File size: 165,221 Bytes
80f48c3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 |
DETAILED OVERALL REPORT FOR THE SYSTEM: /scratch/project_465000836/ipoloka/huggingface_asr/experiments/baseline_ebranchformer_v2.3_fp32/dev/12650/eval_librispeech_validation.clean/hyp.trn
SENTENCE RECOGNITION PERFORMANCE
sentences 2816
with errors 51.9% (1461)
with substitutions 50.9% (1432)
with deletions 8.1% ( 227)
with insertions 10.5% ( 297)
WORD RECOGNITION PERFORMANCE
Percent Total Error = 6.5% (3633)
Percent Correct = 94.2% (53001)
Percent Substitution = 4.6% (2563)
Percent Deletions = 1.3% ( 716)
Percent Insertions = 0.6% ( 354)
Percent Word Accuracy = 93.5%
Ref. words = (56280)
Hyp. words = (55918)
Aligned words = (56634)
CONFUSION PAIRS Total (2100)
With >= 1 occurrences (2100)
1: 56 -> in ==> and
2: 25 -> and ==> in
3: 22 -> a ==> the
4: 10 -> flour ==> flower
5: 9 -> the ==> a
6: 8 -> carrie ==> carry
7: 8 -> is ==> as
8: 7 -> o ==> oh
9: 6 -> bozzle ==> bossell
10: 6 -> randal ==> randall
11: 6 -> the ==> that
12: 6 -> the ==> this
13: 6 -> this ==> the
14: 5 -> an ==> and
15: 5 -> and ==> at
16: 5 -> bartley ==> bartly
17: 5 -> honor ==> honour
18: 5 -> kaliko ==> calico
19: 4 -> and ==> a
20: 4 -> as ==> is
21: 4 -> clarke ==> clark
22: 4 -> claudia ==> clodia
23: 4 -> criss ==> crossed
24: 4 -> gray ==> grey
25: 4 -> gryce ==> grace
26: 4 -> i'm ==> am
27: 4 -> jem ==> jim
28: 4 -> on ==> and
29: 3 -> a ==> i
30: 3 -> a ==> to
31: 3 -> am ==> i'm
32: 3 -> an ==> in
33: 3 -> and ==> an
34: 3 -> ann's ==> marianne's
35: 3 -> anyone ==> one
36: 3 -> are ==> were
37: 3 -> bozzle ==> basil
38: 3 -> bozzle ==> boswell
39: 3 -> burgess ==> burges
40: 3 -> deucalion ==> ducalion
41: 3 -> fuchs ==> folks
42: 3 -> grethel ==> grettel
43: 3 -> has ==> is
44: 3 -> his ==> as
45: 3 -> his ==> its
46: 3 -> his ==> the
47: 3 -> in ==> an
48: 3 -> in ==> into
49: 3 -> lassen's ==> larsan's
50: 3 -> meekin ==> mikin
51: 3 -> minnetaki ==> minnetawki
52: 3 -> of ==> a
53: 3 -> on ==> in
54: 3 -> one ==> when
55: 3 -> pyncheon ==> pension
56: 3 -> snellings ==> smellings
57: 3 -> sole ==> soul
58: 3 -> sydney ==> sidney
59: 3 -> tad ==> ted
60: 3 -> terrorist ==> terrace
61: 3 -> the ==> to
62: 3 -> thing ==> anything
63: 3 -> trevelyan ==> trevellion
64: 3 -> week ==> weak
65: 3 -> who ==> he
66: 2 -> a ==> it
67: 2 -> a ==> of
68: 2 -> abalone ==> aboloni
69: 2 -> abalone's ==> aboloni's
70: 2 -> all ==> oh
71: 2 -> amount ==> mount
72: 2 -> an ==> it
73: 2 -> and ==> on
74: 2 -> ann ==> anne
75: 2 -> ann ==> marianne
76: 2 -> any ==> a
77: 2 -> as ==> headier's
78: 2 -> as ==> his
79: 2 -> asked ==> ask
80: 2 -> assault ==> salt
81: 2 -> at ==> that
82: 2 -> away ==> way
83: 2 -> awhile ==> while
84: 2 -> ay ==> aye
85: 2 -> ay ==> i
86: 2 -> b ==> be
87: 2 -> bartley ==> bartlee
88: 2 -> battlefields ==> fields
89: 2 -> beg ==> begged
90: 2 -> bell ==> bow
91: 2 -> blessed ==> blest
92: 2 -> bordeaux ==> bordeau
93: 2 -> borders ==> boarders
94: 2 -> bough ==> bow
95: 2 -> brau ==> brow
96: 2 -> buren ==> in
97: 2 -> call ==> called
98: 2 -> cauliflower ==> flower
99: 2 -> chanticleer ==> declare
100: 2 -> color ==> colour
101: 2 -> colored ==> coloured
102: 2 -> confluence ==> confidence
103: 2 -> confounded ==> concounted
104: 2 -> cross ==> chris
105: 2 -> desk ==> ask
106: 2 -> drizzle ==> dristle
107: 2 -> drouet ==> drua
108: 2 -> drouet's ==> joyous
109: 2 -> dude ==> to
110: 2 -> enquired ==> inquired
111: 2 -> ever ==> forever
112: 2 -> faber ==> favor
113: 2 -> favour ==> favor
114: 2 -> favourite ==> favorite
115: 2 -> fetid ==> fetted
116: 2 -> filing ==> fileing
117: 2 -> flavour ==> flavor
118: 2 -> flog ==> flogged
119: 2 -> fond ==> found
120: 2 -> forcemeat ==> meat
121: 2 -> four ==> for
122: 2 -> fulfill ==> fulfil
123: 2 -> gentlemen ==> gentleman
124: 2 -> gregor ==> miggreggar
125: 2 -> had ==> have
126: 2 -> hanson ==> hansen
127: 2 -> have ==> had
128: 2 -> he ==> it
129: 2 -> he ==> you
130: 2 -> hilda ==> helder
131: 2 -> his ==> a
132: 2 -> his ==> is
133: 2 -> how ==> had
134: 2 -> i'm ==> i
135: 2 -> i've ==> i
136: 2 -> impassible ==> impassable
137: 2 -> in ==> on
138: 2 -> inclosure ==> enclosure
139: 2 -> instalments ==> installments
140: 2 -> iota ==> ioda
141: 2 -> is ==> was
142: 2 -> it ==> a
143: 2 -> julian ==> julien
144: 2 -> kearny ==> kirny
145: 2 -> kirkland ==> kirklin
146: 2 -> labourers ==> laborers
147: 2 -> labours ==> laborers
148: 2 -> lattimer ==> laddermer
149: 2 -> laugh'd ==> laughed
150: 2 -> leaven ==> levin
151: 2 -> led ==> let
152: 2 -> left ==> laughed
153: 2 -> mac ==> mc
154: 2 -> macklewain ==> macowaine
155: 2 -> macpherson ==> pherson
156: 2 -> madge ==> match
157: 2 -> madison ==> medicine
158: 2 -> mama ==> mamma
159: 2 -> managerial ==> menagiary
160: 2 -> mantel ==> mantle
161: 2 -> materialised ==> materialized
162: 2 -> meekin ==> and
163: 2 -> michaelis ==> callis
164: 2 -> might ==> may
165: 2 -> mule's ==> mules
166: 2 -> nearby ==> by
167: 2 -> neighbors ==> neighbours
168: 2 -> nestorius ==> mysterious
169: 2 -> newsome ==> nuisam
170: 2 -> newsome's ==> nuison's
171: 2 -> of ==> to
172: 2 -> ogden ==> augden
173: 2 -> otto ==> i'll
174: 2 -> otto ==> old
175: 2 -> our ==> a
176: 2 -> our ==> are
177: 2 -> peel ==> peal
178: 2 -> perfunctorily ==> torrely
179: 2 -> pitt ==> pit
180: 2 -> praefect ==> prefect
181: 2 -> put ==> but
182: 2 -> quandary ==> quandry
183: 2 -> quenelles ==> canals
184: 2 -> randal's ==> randall's
185: 2 -> realise ==> realize
186: 2 -> recognising ==> recognizing
187: 2 -> recognized ==> recognised
188: 2 -> rector's ==> rectors
189: 2 -> regent's ==> regions
190: 2 -> requested ==> a
191: 2 -> resident ==> resonant
192: 2 -> rhein ==> rhine
193: 2 -> round ==> around
194: 2 -> russian ==> rushing
195: 2 -> said ==> set
196: 2 -> saw ==> thought
197: 2 -> shasta ==> of
198: 2 -> shell ==> shall
199: 2 -> sighs ==> size
200: 2 -> skinny ==> skenny
201: 2 -> someone ==> one
202: 2 -> southwark ==> work
203: 2 -> splendour ==> splendor
204: 2 -> sue ==> soon
205: 2 -> sufferin ==> suffering
206: 2 -> sun ==> son
207: 2 -> sydney's ==> sidney's
208: 2 -> tablespoons ==> spoons
209: 2 -> terra ==> terror
210: 2 -> that ==> but
211: 2 -> the ==> and
212: 2 -> the ==> they
213: 2 -> theatre ==> theater
214: 2 -> thee ==> me
215: 2 -> them ==> the
216: 2 -> then ==> and
217: 2 -> there ==> that
218: 2 -> there ==> their
219: 2 -> there ==> they
220: 2 -> therein ==> barren
221: 2 -> they're ==> there
222: 2 -> through ==> to
223: 2 -> tide ==> tied
224: 2 -> time ==> bedtime
225: 2 -> to ==> a
226: 2 -> to ==> too
227: 2 -> touched ==> touch
228: 2 -> trevelyan ==> trevidion
229: 2 -> troke ==> choke
230: 2 -> two ==> too
231: 2 -> udder ==> utter
232: 2 -> vague ==> big
233: 2 -> vapours ==> vapors
234: 2 -> vigour ==> vigor
235: 2 -> walks ==> box
236: 2 -> were ==> are
237: 2 -> what's ==> what
238: 2 -> when ==> what
239: 2 -> who's ==> whose
240: 2 -> wide ==> quite
241: 2 -> winked ==> wink
242: 2 -> would ==> what
243: 1 -> a ==> are
244: 1 -> a ==> around
245: 1 -> a ==> hale
246: 1 -> a ==> he
247: 1 -> a ==> is
248: 1 -> a ==> marianna
249: 1 -> a ==> out
250: 1 -> a ==> parastow
251: 1 -> a ==> this
252: 1 -> a ==> turn
253: 1 -> a ==> went
254: 1 -> a ==> with
255: 1 -> a ==> your
256: 1 -> abalone's ==> abolonni's
257: 1 -> abbess ==> base
258: 1 -> abbot ==> abbod
259: 1 -> abjured ==> absorbed
260: 1 -> abode ==> boat
261: 1 -> about ==> of
262: 1 -> above ==> bed
263: 1 -> abundant ==> and
264: 1 -> accessories ==> assesaries
265: 1 -> account ==> counted
266: 1 -> ache ==> ach
267: 1 -> adamnan ==> ademnon
268: 1 -> add ==> at
269: 1 -> admire ==> admirer
270: 1 -> adrift ==> adraft
271: 1 -> adventuring ==> adventurering
272: 1 -> adventurous ==> adventurers
273: 1 -> advise ==> advised
274: 1 -> aeons ==> eaons
275: 1 -> afoot ==> foot
276: 1 -> africanus ==> afrocanus
277: 1 -> again ==> a
278: 1 -> again ==> bad
279: 1 -> age ==> saxon
280: 1 -> agglomerations ==> eglomerations
281: 1 -> agreed ==> great
282: 1 -> aidan ==> aden
283: 1 -> ain't ==> here
284: 1 -> alexandria ==> alexander
285: 1 -> alexandria ==> azandria
286: 1 -> algae ==> algi
287: 1 -> algebra ==> for
288: 1 -> all ==> now
289: 1 -> all ==> old
290: 1 -> all ==> while
291: 1 -> allow ==> allowed
292: 1 -> allspice ==> ospice
293: 1 -> allspice ==> spice
294: 1 -> allurement ==> allurment
295: 1 -> allurements ==> allurments
296: 1 -> almoner ==> ominer
297: 1 -> already ==> ready
298: 1 -> always ==> allah
299: 1 -> amazed ==> diminished
300: 1 -> ambulance ==> abulance
301: 1 -> ambulances ==> abulances
302: 1 -> amenities ==> emanities
303: 1 -> amusing ==> musing
304: 1 -> an ==> a
305: 1 -> an ==> every
306: 1 -> an ==> martin
307: 1 -> an ==> on
308: 1 -> an ==> scalion
309: 1 -> an ==> they
310: 1 -> an ==> wasn't
311: 1 -> anachronisms ==> acarnisms
312: 1 -> analogy ==> anology
313: 1 -> analyses ==> analysis
314: 1 -> and ==> all's
315: 1 -> and ==> antiagonal
316: 1 -> and ==> as
317: 1 -> and ==> blessing
318: 1 -> and ==> doesn't
319: 1 -> and ==> eastern
320: 1 -> and ==> marian
321: 1 -> and ==> of
322: 1 -> and ==> paren
323: 1 -> and ==> that
324: 1 -> and ==> the
325: 1 -> and ==> them
326: 1 -> and ==> trying
327: 1 -> and ==> yokeon
328: 1 -> animals ==> animal's
329: 1 -> ann ==> i
330: 1 -> announced ==> not
331: 1 -> announcement ==> that
332: 1 -> ants ==> aunt's
333: 1 -> any ==> e
334: 1 -> apiece ==> piece
335: 1 -> apollinaris ==> polonaris
336: 1 -> apostle ==> parcel
337: 1 -> apostles ==> apostle
338: 1 -> applaud ==> plot
339: 1 -> applauded ==> aplutted
340: 1 -> appointed ==> pointed
341: 1 -> appropriate ==> propiat
342: 1 -> appropriating ==> propriating
343: 1 -> approve ==> a
344: 1 -> arabesque ==> arabask
345: 1 -> arch ==> arc
346: 1 -> archaeology ==> architeology
347: 1 -> arched ==> overarched
348: 1 -> arcturus ==> terus
349: 1 -> ardour ==> ardor
350: 1 -> are ==> and
351: 1 -> are ==> i
352: 1 -> are ==> there
353: 1 -> arians ==> aarons
354: 1 -> arkansas ==> arcansa
355: 1 -> armine ==> mine
356: 1 -> aroma ==> nettierromo
357: 1 -> artists ==> artist's
358: 1 -> as ==> a
359: 1 -> as ==> ages
360: 1 -> as ==> and
361: 1 -> as ==> answers
362: 1 -> as ==> nina's
363: 1 -> as ==> recognizes
364: 1 -> ascended ==> ascend
365: 1 -> aside ==> side
366: 1 -> aslant ==> slant
367: 1 -> asparagus ==> asperagus
368: 1 -> asparagus ==> sperrigus
369: 1 -> asperity ==> scarity
370: 1 -> asplenium ==> spliniam
371: 1 -> ass ==> asked
372: 1 -> assent ==> ascent
373: 1 -> assiniboine ==> bon
374: 1 -> assured ==> reassured
375: 1 -> asthma ==> asma
376: 1 -> astir ==> stir
377: 1 -> astride ==> satistried
378: 1 -> asura ==> usura
379: 1 -> at ==> it
380: 1 -> at ==> of
381: 1 -> at ==> spruce
382: 1 -> ate ==> innate
383: 1 -> athanasius ==> athenasius
384: 1 -> atlanta ==> lana
385: 1 -> attendance ==> attendants
386: 1 -> attended ==> attempted
387: 1 -> attested ==> tested
388: 1 -> august ==> at
389: 1 -> aunt ==> end
390: 1 -> austrian ==> and
391: 1 -> auto ==> otto
392: 1 -> autobiography ==> biography
393: 1 -> automaton ==> optomaton
394: 1 -> autumn ==> sodom
395: 1 -> auxiliaries ==> oxilliaries
396: 1 -> awakened ==> poetry
397: 1 -> ay ==> eye
398: 1 -> b ==> bee
399: 1 -> backed ==> back
400: 1 -> bag ==> bay
401: 1 -> balvastro ==> balvestro
402: 1 -> bambeday ==> bambade
403: 1 -> bambeday ==> day
404: 1 -> ban ==> band
405: 1 -> banjo ==> bandit
406: 1 -> bank ==> bang
407: 1 -> barcelona ==> barsalona
408: 1 -> bartley ==> bartle
409: 1 -> bartley ==> partly
410: 1 -> basement ==> abasement
411: 1 -> battlefield ==> field
412: 1 -> baulked ==> bawked
413: 1 -> bayoneted ==> bayonetted
414: 1 -> be ==> they
415: 1 -> bean ==> n
416: 1 -> bear ==> bare
417: 1 -> beauregard ==> girl
418: 1 -> been ==> then
419: 1 -> beenie ==> beany
420: 1 -> beenie ==> nie
421: 1 -> being ==> be
422: 1 -> bel ==> bell
423: 1 -> believing ==> leaving
424: 1 -> belisarius ==> bellisarius
425: 1 -> belli ==> belly
426: 1 -> bennet ==> it
427: 1 -> bennydeck ==> benedict
428: 1 -> bergez ==> berga's
429: 1 -> beseech ==> to
430: 1 -> bestia ==> basquer
431: 1 -> betsy ==> bedsey
432: 1 -> bhunda ==> de
433: 1 -> binds ==> buys
434: 1 -> bipeds ==> betricts
435: 1 -> birdikins ==> bodakins
436: 1 -> birdlike ==> like
437: 1 -> birket ==> at
438: 1 -> birthday ==> they
439: 1 -> bivouac ==> bivawak
440: 1 -> blanco's ==> blancos
441: 1 -> blasphemous ==> the
442: 1 -> bleating ==> bleeding
443: 1 -> bled ==> blood
444: 1 -> blemmyes ==> blamise
445: 1 -> blessed ==> bless
446: 1 -> blue ==> blew
447: 1 -> bluebells ==> bells
448: 1 -> blunderbuss ==> blunderbus
449: 1 -> board ==> freeboard
450: 1 -> board ==> pasteboard
451: 1 -> boards ==> signboards
452: 1 -> boats ==> boat
453: 1 -> body ==> everybody
454: 1 -> bond ==> despond
455: 1 -> borrowing ==> barrowing
456: 1 -> both ==> woth
457: 1 -> boughs ==> bows
458: 1 -> boulders ==> bowlders
459: 1 -> bouquet ==> bolkay
460: 1 -> boys ==> boy
461: 1 -> boys ==> boy's
462: 1 -> boys ==> hoboys
463: 1 -> bozzle ==> bosle
464: 1 -> bozzle ==> bosul
465: 1 -> bozzle's ==> bossell's
466: 1 -> brand ==> ground
467: 1 -> brandd ==> brand
468: 1 -> brau ==> hoofbraul
469: 1 -> brazen ==> in
470: 1 -> breadhouse ==> house
471: 1 -> break ==> brake
472: 1 -> breakup ==> up
473: 1 -> breastworks ==> works
474: 1 -> breath ==> bath
475: 1 -> bremer ==> bremmer
476: 1 -> brigade ==> gained
477: 1 -> bright ==> bite
478: 1 -> bright's ==> bright
479: 1 -> brine ==> bride
480: 1 -> brion ==> brionne
481: 1 -> broad ==> brought
482: 1 -> brown ==> brim
483: 1 -> brush ==> brushed
484: 1 -> buckinghamshire ==> shire
485: 1 -> bugbears ==> bugbear's
486: 1 -> bui ==> but
487: 1 -> bunch ==> lunk
488: 1 -> buns ==> bonds
489: 1 -> bur ==> ber
490: 1 -> bur ==> spur
491: 1 -> burden ==> and
492: 1 -> burgess ==> burgeous
493: 1 -> burgess ==> burgers
494: 1 -> burgess ==> burgeus
495: 1 -> burgess ==> burghis
496: 1 -> burgoynes ==> pregoins
497: 1 -> burros ==> burrows
498: 1 -> bursts ==> burst
499: 1 -> bush' ==> bush
500: 1 -> but ==> awlbit
501: 1 -> but ==> with
502: 1 -> butte ==> beaut
503: 1 -> butte ==> beaute
504: 1 -> butte ==> but
505: 1 -> buttermilk ==> milk
506: 1 -> buttoned ==> in
507: 1 -> buttony ==> butny
508: 1 -> buzzer's ==> buzzers
509: 1 -> by ==> bye
510: 1 -> cadence ==> cadent
511: 1 -> caisson ==> on
512: 1 -> cake ==> honeycake
513: 1 -> calculus ==> cobulous
514: 1 -> calico ==> calicolecal
515: 1 -> called ==> call
516: 1 -> called ==> caught
517: 1 -> callimachus ==> calamacus
518: 1 -> can ==> can't
519: 1 -> can ==> him
520: 1 -> cancer ==> counter
521: 1 -> candied ==> candid
522: 1 -> cannibalistic ==> chemicalistic
523: 1 -> canterbury ==> cannibary
524: 1 -> canyou ==> canyon
525: 1 -> cape ==> kate
526: 1 -> capitol ==> capital
527: 1 -> captains ==> captain
528: 1 -> captious ==> captures
529: 1 -> captured ==> it
530: 1 -> caravan ==> van
531: 1 -> caring ==> carrying
532: 1 -> carrot ==> carried
533: 1 -> cascaded ==> castacated
534: 1 -> casserole ==> roll
535: 1 -> castanet ==> castinat
536: 1 -> caste ==> cast
537: 1 -> casts ==> cast
538: 1 -> casus ==> cautious
539: 1 -> cat ==> cap
540: 1 -> catalan ==> cataline
541: 1 -> cease ==> fire
542: 1 -> cease ==> sees
543: 1 -> ceiling ==> sealing
544: 1 -> celestine ==> kelestine
545: 1 -> centaur ==> centar
546: 1 -> center ==> centre
547: 1 -> center ==> her
548: 1 -> cerinthus ==> corinthis
549: 1 -> chaba ==> choba
550: 1 -> chablis ==> chibly
551: 1 -> chand ==> chant
552: 1 -> chapter ==> a
553: 1 -> charmed ==> encharmed
554: 1 -> chattahoochee ==> chattahuti
555: 1 -> cheatham ==> em
556: 1 -> check ==> checked
557: 1 -> chef ==> sheff
558: 1 -> chef ==> shuff
559: 1 -> chefs ==> ship's
560: 1 -> cheroot ==> charrot
561: 1 -> chestnut ==> castnut
562: 1 -> child ==> child's
563: 1 -> child's ==> child
564: 1 -> chiselled ==> chiseled
565: 1 -> chorus ==> course
566: 1 -> christi ==> creemachisti
567: 1 -> chrysostom ==> chrystom
568: 1 -> churchwardens ==> churchwortons
569: 1 -> citric ==> cytric
570: 1 -> clamour ==> clamor
571: 1 -> claret ==> clarat
572: 1 -> clarets ==> clarats
573: 1 -> clarets ==> clarence
574: 1 -> claudia ==> claria
575: 1 -> claus ==> klaus
576: 1 -> clear ==> cleared
577: 1 -> clear ==> queen
578: 1 -> clergymen ==> clergyman
579: 1 -> clews ==> clues
580: 1 -> climbers ==> clamors
581: 1 -> clothed ==> clothes
582: 1 -> cloves ==> clothes
583: 1 -> clump ==> thump
584: 1 -> coal ==> refused
585: 1 -> coarse ==> course
586: 1 -> cold ==> cope
587: 1 -> cold ==> uncolled
588: 1 -> collander ==> calendar
589: 1 -> colloquial ==> coloquoil
590: 1 -> color ==> colored
591: 1 -> colored ==> covered
592: 1 -> colored ==> cuttered
593: 1 -> colors ==> collars
594: 1 -> colors ==> colours
595: 1 -> columns ==> calms
596: 1 -> come ==> the
597: 1 -> comedian ==> communion
598: 1 -> commandant's ==> commonant's
599: 1 -> comrade ==> carmet
600: 1 -> concentrating ==> concentrated
601: 1 -> conclude ==> include
602: 1 -> congal ==> congo
603: 1 -> congal's ==> congls
604: 1 -> conjured ==> contrred
605: 1 -> conjurers ==> conjurors
606: 1 -> conjures ==> conjurs
607: 1 -> connell ==> connul
608: 1 -> connell's ==> karl's
609: 1 -> conscience ==> conscious
610: 1 -> constancy ==> constantity
611: 1 -> constraint ==> constrained
612: 1 -> contemplative ==> of
613: 1 -> continue ==> continued
614: 1 -> conventicles ==> conventiples
615: 1 -> convolvulus ==> convulvia's
616: 1 -> cookery ==> coquetrie
617: 1 -> copyright ==> right
618: 1 -> coralie ==> coreli
619: 1 -> coralie ==> quarrelling
620: 1 -> corncakes ==> cakes
621: 1 -> corner ==> door
622: 1 -> cornucopias ==> copias
623: 1 -> county ==> country
624: 1 -> coupons ==> ons
625: 1 -> courage ==> encouraged
626: 1 -> courier ==> securier
627: 1 -> covering ==> coughering
628: 1 -> cowboy ==> boy
629: 1 -> cowmen ==> cowman
630: 1 -> cowpunchers ==> calpagers
631: 1 -> crawfish ==> craftish
632: 1 -> creeters ==> creeders
633: 1 -> crevassed ==> crevast
634: 1 -> crispness ==> christmas
635: 1 -> criss ==> chris
636: 1 -> cross ==> across
637: 1 -> cross ==> the
638: 1 -> crown ==> ground
639: 1 -> cruder ==> or
640: 1 -> cruise ==> crews
641: 1 -> crumpets ==> croppets
642: 1 -> crumpets ==> trumpets
643: 1 -> cuisine ==> cosin
644: 1 -> cuisine ==> gruasine
645: 1 -> curer ==> cure
646: 1 -> curley ==> curly
647: 1 -> currant ==> current
648: 1 -> currants ==> currents
649: 1 -> customary ==> accustomedry
650: 1 -> cynthy ==> cynthi
651: 1 -> cyril ==> carol
652: 1 -> cyril ==> currol
653: 1 -> d'avrigny ==> daveni
654: 1 -> d'avrigny ==> daverny
655: 1 -> d'avrigny ==> davini
656: 1 -> daguerreotype ==> garrotype
657: 1 -> daguerreotype ==> type
658: 1 -> daguerreotypist ==> degaerotypists
659: 1 -> daguerreotypist ==> garrotypus
660: 1 -> dalliance ==> galleons
661: 1 -> damson ==> and
662: 1 -> dante ==> dantes
663: 1 -> dante's ==> dantesotto
664: 1 -> darfhulva ==> a
665: 1 -> dashed ==> stash
666: 1 -> dauntless ==> dotless
667: 1 -> david ==> for
668: 1 -> day's ==> of
669: 1 -> deadly ==> dubly
670: 1 -> deaf ==> death
671: 1 -> deaf ==> to
672: 1 -> death ==> deck
673: 1 -> declamations ==> flamations
674: 1 -> declaring ==> clearing
675: 1 -> decorum ==> korum
676: 1 -> deep ==> steep
677: 1 -> deer ==> dear
678: 1 -> defective ==> of
679: 1 -> degenerate ==> out
680: 1 -> delaunay's ==> naise
681: 1 -> delectasti ==> delicacaci
682: 1 -> delia's ==> dealia's
683: 1 -> delight ==> delay
684: 1 -> deluge ==> dayluge
685: 1 -> dene ==> deen
686: 1 -> dependents ==> dependence
687: 1 -> derisive ==> risk
688: 1 -> des ==> de
689: 1 -> desk ==> dusk
690: 1 -> despatched ==> dispatched
691: 1 -> destructible ==> distructable
692: 1 -> detach ==> attach
693: 1 -> detective ==> deductive
694: 1 -> detective's ==> detective
695: 1 -> determine ==> determined
696: 1 -> detroit ==> troyt
697: 1 -> deucalion ==> deucalian
698: 1 -> deucalion ==> ukhalion
699: 1 -> develop ==> develope
700: 1 -> devil ==> double
701: 1 -> dhourra ==> dora
702: 1 -> diced ==> dyst
703: 1 -> difficulty ==> worst
704: 1 -> diocese ==> diosis
705: 1 -> disdain ==> hisdain
706: 1 -> disdainful ==> distample
707: 1 -> disdainfully ==> fully
708: 1 -> disheartened ==> heartened
709: 1 -> dishes ==> ditches
710: 1 -> dismay ==> smay
711: 1 -> dispatch ==> despatch
712: 1 -> dispatched ==> despatched
713: 1 -> distaff ==> staff
714: 1 -> distinguishing ==> distinguished
715: 1 -> divide ==> or
716: 1 -> divorced ==> divorce
717: 1 -> docetes ==> dociets
718: 1 -> docile ==> daustled
719: 1 -> dock ==> dark
720: 1 -> doing ==> in
721: 1 -> dole ==> doll
722: 1 -> done ==> gun
723: 1 -> door ==> store
724: 1 -> dormitories ==> adornatories
725: 1 -> dorriforth ==> dorothe
726: 1 -> dorriforth ==> forthwith
727: 1 -> dowle ==> dowl
728: 1 -> down ==> on
729: 1 -> dowson ==> dousson
730: 1 -> drachm ==> home
731: 1 -> drafted ==> raft
732: 1 -> drawer ==> door
733: 1 -> drawing ==> withdrawing
734: 1 -> dress ==> broadstress
735: 1 -> dressed ==> dress
736: 1 -> dropping ==> fastropping
737: 1 -> dug ==> do
738: 1 -> dugout ==> out
739: 1 -> dulcinea ==> docinnaea
740: 1 -> dulcinea ==> maltacenaea
741: 1 -> dummy's ==> dumbmy's
742: 1 -> dyed ==> died
743: 1 -> e ==> on
744: 1 -> e'er ==> ere
745: 1 -> ear ==> defier
746: 1 -> ease ==> these
747: 1 -> ebionites ==> ebianites
748: 1 -> editions ==> additions
749: 1 -> education ==> usation
750: 1 -> ef ==> if
751: 1 -> eggs ==> ex
752: 1 -> eh ==> he
753: 1 -> elbe ==> elb
754: 1 -> electronic ==> elictronic
755: 1 -> ellis ==> ellas
756: 1 -> em ==> adam
757: 1 -> em ==> atom
758: 1 -> embezzlement ==> messlement
759: 1 -> embraced ==> embrace
760: 1 -> emerald ==> ambled
761: 1 -> emotions ==> motions
762: 1 -> emphasised ==> emphasized
763: 1 -> end ==> and
764: 1 -> endeavors ==> endeavours
765: 1 -> endeavoured ==> endeavored
766: 1 -> endorses ==> dorses
767: 1 -> enjoining ==> joining
768: 1 -> enjoy ==> joy
769: 1 -> entreaty ==> treaty
770: 1 -> epicurism ==> epicuresm
771: 1 -> epilobium ==> ipylobium
772: 1 -> epistle ==> epistles
773: 1 -> epoch ==> epic
774: 1 -> erewhile ==> erewyle
775: 1 -> erewhon ==> irowa
776: 1 -> eskimos ==> esquimos
777: 1 -> esther ==> ancestor
778: 1 -> etched ==> at
779: 1 -> eternities ==> eternitys
780: 1 -> ethereal ==> ethical
781: 1 -> ever'body ==> everybody
782: 1 -> everyday ==> day
783: 1 -> everyone ==> one
784: 1 -> ewes ==> use
785: 1 -> except ==> accept
786: 1 -> except ==> excepts
787: 1 -> exclaimed ==> explained
788: 1 -> exempt ==> insempt
789: 1 -> exprest ==> expressed
790: 1 -> extenuating ==> extenduating
791: 1 -> eyes ==> evilize
792: 1 -> face ==> moonface
793: 1 -> facing ==> pacing
794: 1 -> factor's ==> factor
795: 1 -> faintheartedness ==> heartedness
796: 1 -> fairs ==> fairies
797: 1 -> fakirs ==> facres
798: 1 -> fallacy ==> fallency
799: 1 -> farther ==> father
800: 1 -> fate ==> feat
801: 1 -> fated ==> and
802: 1 -> father ==> fother
803: 1 -> fault ==> fall
804: 1 -> features ==> feature
805: 1 -> fed ==> said
806: 1 -> feelings ==> felience
807: 1 -> feet ==> feat
808: 1 -> felicitous ==> felicity's
809: 1 -> fell ==> found
810: 1 -> fencing ==> effencing
811: 1 -> fermented ==> lamented
812: 1 -> ferry ==> fairy
813: 1 -> festive ==> vestif
814: 1 -> fetes ==> fates
815: 1 -> feud ==> affeud
816: 1 -> fevered ==> favourite
817: 1 -> fibi ==> feeby
818: 1 -> field ==> feel
819: 1 -> field ==> greenfield
820: 1 -> field ==> tuddinsofield
821: 1 -> fifth ==> this
822: 1 -> filch ==> filt
823: 1 -> fillmore ==> philmomour
824: 1 -> finely ==> finally
825: 1 -> fingernail ==> nail
826: 1 -> finnacta ==> phinocta
827: 1 -> fir ==> fur
828: 1 -> fire ==> prefier
829: 1 -> firing ==> and
830: 1 -> first ==> versed
831: 1 -> fish ==> shellfish
832: 1 -> fjord ==> fiord
833: 1 -> fjordungr ==> furdinger
834: 1 -> foetus ==> featis
835: 1 -> follow ==> fall
836: 1 -> followers ==> worse
837: 1 -> for ==> before
838: 1 -> for ==> but
839: 1 -> for ==> from
840: 1 -> for ==> of
841: 1 -> for ==> or
842: 1 -> for ==> therefore
843: 1 -> for ==> were
844: 1 -> force ==> forced
845: 1 -> forecourt ==> forecord
846: 1 -> forested ==> at
847: 1 -> forests ==> forest
848: 1 -> forever ==> ever
849: 1 -> formed ==> reformed
850: 1 -> fort ==> ford
851: 1 -> forward ==> ford
852: 1 -> fountains ==> a
853: 1 -> four ==> before
854: 1 -> fraid ==> afraid
855: 1 -> franks ==> ranks
856: 1 -> free ==> carefully
857: 1 -> fretting ==> fredding
858: 1 -> friends ==> threads
859: 1 -> frierson's ==> fryerson's
860: 1 -> from ==> my
861: 1 -> full ==> false
862: 1 -> full ==> folk
863: 1 -> full ==> istle
864: 1 -> fun ==> fund
865: 1 -> furnishing ==> a
866: 1 -> gage ==> gauge
867: 1 -> gait ==> ingate
868: 1 -> gang ==> game
869: 1 -> ganny ==> ganning
870: 1 -> gardar ==> garder
871: 1 -> garden ==> in
872: 1 -> garish ==> gauvish
873: 1 -> garnered ==> garnard
874: 1 -> gas ==> cass
875: 1 -> gasped ==> guessed
876: 1 -> gayety ==> gaiety
877: 1 -> gesticulating ==> stickulating
878: 1 -> get ==> it
879: 1 -> getting ==> gained
880: 1 -> ghoul ==> goal
881: 1 -> gifts ==> ghak
882: 1 -> gillian ==> jellyen
883: 1 -> gingle ==> jingle
884: 1 -> girls ==> girl's
885: 1 -> give ==> get
886: 1 -> give ==> gives
887: 1 -> gladden's ==> gladdens
888: 1 -> glared ==> blurred
889: 1 -> gleamed ==> gleaming
890: 1 -> gloat ==> gload
891: 1 -> gloria ==> glory
892: 1 -> gloria ==> loria
893: 1 -> glorious ==> charles's
894: 1 -> glycerin ==> unlissering
895: 1 -> godhead ==> had
896: 1 -> going ==> goin
897: 1 -> gondola ==> gogdola
898: 1 -> gondola ==> gundola
899: 1 -> gong ==> gang
900: 1 -> gossoons ==> gosooons
901: 1 -> gothic ==> semigothic
902: 1 -> gourmets ==> gormaes
903: 1 -> grandam ==> granddam
904: 1 -> grandparents ==> grandparence
905: 1 -> grant ==> grand
906: 1 -> grate ==> great
907: 1 -> grave ==> graved
908: 1 -> great ==> grade
909: 1 -> greatness ==> grateness
910: 1 -> greed ==> greet
911: 1 -> grethel ==> gretel
912: 1 -> grey ==> great
913: 1 -> grinding ==> downgranding
914: 1 -> grocers ==> grocer's
915: 1 -> grosser ==> grocer
916: 1 -> growing ==> going
917: 1 -> grub ==> pile
918: 1 -> guards ==> upgards
919: 1 -> guides ==> guide
920: 1 -> gully ==> gulley
921: 1 -> gwynplaine ==> claimed
922: 1 -> gwynplaine ==> gwynplaine's
923: 1 -> gymnast ==> jimnist
924: 1 -> had ==> at
925: 1 -> had ==> i'd
926: 1 -> had ==> it
927: 1 -> had ==> would
928: 1 -> haddock ==> hattock
929: 1 -> hair ==> haired
930: 1 -> half ==> hath
931: 1 -> halfpenny ==> penny
932: 1 -> halleck ==> hellock
933: 1 -> hamer ==> hammer
934: 1 -> han ==> had
935: 1 -> hand's ==> hands
936: 1 -> hands ==> hand
937: 1 -> hangar ==> hanger
938: 1 -> hansel ==> handsome
939: 1 -> happen ==> happened
940: 1 -> happened ==> happen
941: 1 -> happy ==> taffy
942: 1 -> hard ==> heart
943: 1 -> hardier ==> harder
944: 1 -> harry's ==> harriage
945: 1 -> harvest ==> harvests
946: 1 -> hatchie ==> hatchet
947: 1 -> hath ==> has
948: 1 -> have ==> that
949: 1 -> haven't ==> have
950: 1 -> he ==> canny
951: 1 -> he ==> heave
952: 1 -> he ==> i
953: 1 -> he ==> who
954: 1 -> he's ==> is
955: 1 -> headlong ==> long
956: 1 -> heads ==> flowerheads
957: 1 -> hear ==> here
958: 1 -> hears ==> here's
959: 1 -> heart's ==> hard
960: 1 -> hearts ==> heart
961: 1 -> hearts ==> heart's
962: 1 -> heidelberg ==> hydleberg
963: 1 -> heidelberg ==> title
964: 1 -> height ==> heights
965: 1 -> heinous ==> haenas
966: 1 -> helicon ==> halikan
967: 1 -> hepsey ==> hapsey
968: 1 -> hepzibah ==> hapsiba
969: 1 -> hepzibah ==> hypsiver
970: 1 -> hepzibah's ==> a
971: 1 -> hepzibah's ==> hypsippus
972: 1 -> her ==> their
973: 1 -> her's ==> hers
974: 1 -> herbivore ==> ore
975: 1 -> here ==> hear
976: 1 -> heroic ==> hero
977: 1 -> herself ==> himself
978: 1 -> heuchera ==> hutchera
979: 1 -> hew ==> hue
980: 1 -> hi ==> high
981: 1 -> hide ==> horsehide
982: 1 -> hide ==> rawhide
983: 1 -> hilda ==> hella
984: 1 -> hilda ==> her
985: 1 -> hilda ==> i
986: 1 -> hilda ==> it
987: 1 -> hilda's ==> heldo's
988: 1 -> hilda's ==> this
989: 1 -> him ==> ganem
990: 1 -> his ==> numitten's
991: 1 -> his ==> this
992: 1 -> hissed ==> his
993: 1 -> hochheimer ==> hawhimer
994: 1 -> hoe ==> ho
995: 1 -> hof ==> hoft
996: 1 -> hof ==> hoof
997: 1 -> holders ==> slaveholders
998: 1 -> holgrave ==> hograve
999: 1 -> holiness ==> wholliness
1000: 1 -> homecoming ==> coming
1001: 1 -> homo ==> homer
1002: 1 -> homoiousios ==> iosius
1003: 1 -> homoousios ==> osius
1004: 1 -> hon ==> honorable
1005: 1 -> honored ==> a
1006: 1 -> honourable ==> honorable
1007: 1 -> hospitable ==> biddible
1008: 1 -> hovel ==> huddle
1009: 1 -> how ==> a
1010: 1 -> howls ==> house
1011: 1 -> hows ==> house
1012: 1 -> hugh's ==> was
1013: 1 -> huh ==> ha
1014: 1 -> huh ==> humph
1015: 1 -> hulking ==> hoping
1016: 1 -> hull ==> hall
1017: 1 -> humble ==> bald
1018: 1 -> humor ==> humour
1019: 1 -> hypatia ==> ipatia
1020: 1 -> i ==> he
1021: 1 -> i'll ==> all
1022: 1 -> i'll ==> how
1023: 1 -> ice ==> eyes
1024: 1 -> icelandic ==> a
1025: 1 -> idealisation ==> idlezation
1026: 1 -> idiom ==> edium
1027: 1 -> idylls ==> itels
1028: 1 -> if ==> have
1029: 1 -> if ==> with
1030: 1 -> il ==> oh
1031: 1 -> illinois ==> illinoi
1032: 1 -> illusion ==> allusion
1033: 1 -> impale ==> impal
1034: 1 -> impara ==> and
1035: 1 -> impassibility ==> impassability
1036: 1 -> impertinence ==> impertinent
1037: 1 -> impetuous ==> petuous
1038: 1 -> impost ==> imposed
1039: 1 -> impulses ==> pulses
1040: 1 -> in ==> at
1041: 1 -> in ==> divided
1042: 1 -> in ==> during
1043: 1 -> in ==> esperagus
1044: 1 -> in ==> frightened
1045: 1 -> in ==> him
1046: 1 -> in ==> servine
1047: 1 -> in ==> solden
1048: 1 -> in ==> to
1049: 1 -> in ==> wherein
1050: 1 -> in ==> with
1051: 1 -> incarnation ==> inclination
1052: 1 -> incipient ==> insipient
1053: 1 -> indecision ==> indecession
1054: 1 -> indignation ==> ignimation
1055: 1 -> inexhausted ==> exhausted
1056: 1 -> infants ==> infant
1057: 1 -> infuses ==> fuses
1058: 1 -> ingratiation ==> engratiation
1059: 1 -> inhale ==> in
1060: 1 -> iniquitous ==> iniquitus
1061: 1 -> inkling ==> engling
1062: 1 -> inn ==> brigand
1063: 1 -> inroad ==> enroad
1064: 1 -> inserting ==> in
1065: 1 -> instant ==> instinct
1066: 1 -> instead ==> some
1067: 1 -> instill ==> still
1068: 1 -> instrument ==> instruments
1069: 1 -> insuperable ==> inseparable
1070: 1 -> interested ==> muntrested
1071: 1 -> interests ==> interest
1072: 1 -> intermezzo ==> termazo
1073: 1 -> intimidated ==> intiminated
1074: 1 -> into ==> and
1075: 1 -> into ==> to
1076: 1 -> into ==> unto
1077: 1 -> introduces ==> reduces
1078: 1 -> iona ==> ionaut
1079: 1 -> iona ==> owna
1080: 1 -> iona ==> owno
1081: 1 -> ireful ==> ironful
1082: 1 -> irolg ==> old
1083: 1 -> is ==> defences
1084: 1 -> is ==> difficulties
1085: 1 -> is ==> has
1086: 1 -> is ==> hears
1087: 1 -> is ==> mazes
1088: 1 -> is ==> teddy's
1089: 1 -> is ==> there's
1090: 1 -> isidore ==> visitor
1091: 1 -> isn't ==> he'sn't
1092: 1 -> it ==> and
1093: 1 -> it ==> at
1094: 1 -> it ==> brionsenstet
1095: 1 -> it ==> guided
1096: 1 -> it ==> it's
1097: 1 -> it ==> of
1098: 1 -> it ==> once
1099: 1 -> it ==> sufficed
1100: 1 -> it ==> there
1101: 1 -> it ==> worriot
1102: 1 -> it's ==> is
1103: 1 -> it's ==> it
1104: 1 -> italians ==> italian's
1105: 1 -> ithaca ==> isaaca
1106: 1 -> jack's ==> jacks
1107: 1 -> jem's ==> jim's
1108: 1 -> jimmie ==> jimmy
1109: 1 -> jingo ==> gingo
1110: 1 -> johnston ==> johnson
1111: 1 -> kaliko ==> cannicle
1112: 1 -> karl ==> as
1113: 1 -> karl ==> call
1114: 1 -> kate's ==> exticates
1115: 1 -> kearny ==> county
1116: 1 -> kearny ==> kirning
1117: 1 -> key ==> latchkie
1118: 1 -> khosala ==> causala
1119: 1 -> kinship ==> kingship
1120: 1 -> kirkland ==> kirkling
1121: 1 -> kirkleatham ==> kirkleehem
1122: 1 -> knapsacks ==> napsacks
1123: 1 -> kneading ==> neading
1124: 1 -> knight ==> night
1125: 1 -> knitted ==> admitted
1126: 1 -> labours ==> has
1127: 1 -> lacrima ==> la
1128: 1 -> lad ==> to
1129: 1 -> ladder ==> latter
1130: 1 -> lamb ==> lam
1131: 1 -> lamp ==> gaslop
1132: 1 -> lands ==> land
1133: 1 -> largess ==> largest
1134: 1 -> larvae ==> larby
1135: 1 -> lashes ==> glashes
1136: 1 -> late ==> laid
1137: 1 -> latter ==> letter
1138: 1 -> lattice ==> ladder
1139: 1 -> lattimer ==> p
1140: 1 -> law ==> door
1141: 1 -> law ==> maw
1142: 1 -> layer ==> lay
1143: 1 -> le ==> grape
1144: 1 -> le ==> pile
1145: 1 -> lean ==> leen
1146: 1 -> leaped ==> leapt
1147: 1 -> learned ==> lain
1148: 1 -> leash ==> leech
1149: 1 -> leather ==> weather
1150: 1 -> leave ==> leap
1151: 1 -> leaves ==> believes
1152: 1 -> lee ==> thee
1153: 1 -> leetle ==> little
1154: 1 -> leighton's ==> laton's
1155: 1 -> lemon ==> woman
1156: 1 -> lend ==> lit
1157: 1 -> leonidas ==> lynida's
1158: 1 -> lets ==> let's
1159: 1 -> levelled ==> leveled
1160: 1 -> libano ==> delibano
1161: 1 -> lice ==> sir
1162: 1 -> lie ==> i
1163: 1 -> lie ==> life
1164: 1 -> lie ==> lying
1165: 1 -> lige ==> large
1166: 1 -> lige ==> luyche
1167: 1 -> lige ==> lyach
1168: 1 -> lige ==> lysh
1169: 1 -> light ==> might
1170: 1 -> lighter ==> later
1171: 1 -> like ==> alike
1172: 1 -> limb ==> lim
1173: 1 -> line ==> akileine
1174: 1 -> linnell's ==> lynnell's
1175: 1 -> lisha ==> show
1176: 1 -> listen ==> yes
1177: 1 -> live ==> life
1178: 1 -> liveryman ==> man
1179: 1 -> lizy ==> lizzie
1180: 1 -> loafing ==> nothing
1181: 1 -> loathe ==> loathed
1182: 1 -> loft ==> aloft
1183: 1 -> logos ==> gossip
1184: 1 -> logos ==> logoss
1185: 1 -> loincloth ==> titling
1186: 1 -> lombroso ==> braca
1187: 1 -> long ==> balm
1188: 1 -> look ==> looked
1189: 1 -> look'd ==> looked
1190: 1 -> looked ==> clock
1191: 1 -> looked ==> look
1192: 1 -> looketh ==> look
1193: 1 -> love ==> loved
1194: 1 -> love ==> loves
1195: 1 -> loved ==> love
1196: 1 -> lover ==> lever
1197: 1 -> lovest ==> unlovest
1198: 1 -> lower ==> lord
1199: 1 -> lower ==> lowered
1200: 1 -> lugubrious ==> lugobrious
1201: 1 -> lumpy ==> lobby
1202: 1 -> lumpy ==> plumpy
1203: 1 -> lust ==> lost
1204: 1 -> luxuriate ==> exorbiate
1205: 1 -> lycophron ==> ron
1206: 1 -> lying ==> a
1207: 1 -> lyric ==> alirick
1208: 1 -> mackerel ==> macro
1209: 1 -> macklewain ==> bacqueline
1210: 1 -> macklewain ==> macawayne
1211: 1 -> macklewain ==> machalane
1212: 1 -> macklewain ==> machuwaine
1213: 1 -> macklewain ==> mackerleyn
1214: 1 -> macklewain's ==> mackerwine's
1215: 1 -> made ==> bait
1216: 1 -> made ==> make
1217: 1 -> made ==> may
1218: 1 -> made ==> me
1219: 1 -> magazzino ==> magazineo
1220: 1 -> magazzino ==> magazino
1221: 1 -> magpie ==> bagpie
1222: 1 -> magpie ==> bye
1223: 1 -> magpie ==> maygpie
1224: 1 -> magpie ==> pie
1225: 1 -> maidenly ==> lay
1226: 1 -> mainhall ==> manhaul
1227: 1 -> mainhall ==> manhaw
1228: 1 -> mainly ==> lead
1229: 1 -> make ==> made
1230: 1 -> makers ==> gasmakers
1231: 1 -> mall ==> i
1232: 1 -> mammal ==> mammo
1233: 1 -> man ==> men
1234: 1 -> manichaeans ==> manikians
1235: 1 -> manipulators ==> manipulars
1236: 1 -> mantel ==> mental
1237: 1 -> marjoram ==> margerum
1238: 1 -> mark ==> marked
1239: 1 -> marriage ==> married
1240: 1 -> marry ==> mary
1241: 1 -> marvel ==> marble
1242: 1 -> masts ==> mass
1243: 1 -> matchmaking ==> maptrovating
1244: 1 -> matter ==> manner
1245: 1 -> may ==> made
1246: 1 -> maybe ==> be
1247: 1 -> mayonnaise ==> manese
1248: 1 -> mc ==> a
1249: 1 -> me ==> only
1250: 1 -> me ==> think
1251: 1 -> meads ==> needs
1252: 1 -> means ==> owings
1253: 1 -> meat ==> meet
1254: 1 -> mebby ==> maybe
1255: 1 -> medals ==> metals
1256: 1 -> meddle ==> metal
1257: 1 -> meekin ==> meek
1258: 1 -> meekin ==> meekan
1259: 1 -> meekin ==> meekon
1260: 1 -> meekin ==> mikeon
1261: 1 -> meet ==> make
1262: 1 -> megaphone ==> fun
1263: 1 -> mell ==> mill
1264: 1 -> men ==> man
1265: 1 -> men's ==> min's
1266: 1 -> mens ==> men
1267: 1 -> menus ==> use
1268: 1 -> mercurial ==> material
1269: 1 -> messengers ==> masters
1270: 1 -> messiah ==> missiah
1271: 1 -> messrs ==> eerst
1272: 1 -> metal ==> middle
1273: 1 -> mezzanine ==> mesoline
1274: 1 -> mezzanine ==> mesonine
1275: 1 -> michaelis ==> allus
1276: 1 -> michaelis ==> callous
1277: 1 -> mien ==> mean
1278: 1 -> milborough ==> milburgh
1279: 1 -> milder ==> or
1280: 1 -> mildew ==> mildo
1281: 1 -> millet ==> mellet
1282: 1 -> mince ==> minced
1283: 1 -> mines ==> minds
1284: 1 -> minnetaki ==> minnatoki
1285: 1 -> mint ==> mental
1286: 1 -> mirabel ==> mirabelle
1287: 1 -> moan ==> moon
1288: 1 -> modoc ==> motork
1289: 1 -> modocs ==> modox
1290: 1 -> moines ==> moine
1291: 1 -> moira ==> mora
1292: 1 -> moling ==> mollyn
1293: 1 -> moluccas ==> molucus
1294: 1 -> mom ==> mahmon
1295: 1 -> monstrously ==> upmostiously
1296: 1 -> monte ==> domante
1297: 1 -> moraine ==> moraines
1298: 1 -> morality ==> moreaudity
1299: 1 -> moribund ==> the
1300: 1 -> morrel ==> else
1301: 1 -> mortar ==> morner
1302: 1 -> morven ==> morvan
1303: 1 -> moselle ==> mosel
1304: 1 -> mosses ==> mossses
1305: 1 -> mother ==> mothor
1306: 1 -> mould ==> mold
1307: 1 -> moulds ==> mold
1308: 1 -> moulds ==> moult
1309: 1 -> mount ==> mountain
1310: 1 -> mountebank ==> bank
1311: 1 -> moving ==> knitting
1312: 1 -> mowed ==> moved
1313: 1 -> muleteers ==> tears
1314: 1 -> mulrady ==> mooratti
1315: 1 -> mundane ==> mondaine
1316: 1 -> mural ==> mirror
1317: 1 -> murfreesboro ==> burrow
1318: 1 -> murfreesboro ==> murphyspera
1319: 1 -> my ==> by
1320: 1 -> my ==> while
1321: 1 -> myrdals ==> mitchell's
1322: 1 -> nager ==> nagger
1323: 1 -> narrow ==> now
1324: 1 -> nation ==> antectate
1325: 1 -> near ==> meer
1326: 1 -> neath ==> nieth
1327: 1 -> necromancy ==> necramanteci
1328: 1 -> need'st ==> needst
1329: 1 -> neighbor ==> neighbour
1330: 1 -> neighborly ==> neighbourly
1331: 1 -> nest ==> announced
1332: 1 -> nest ==> cosyness
1333: 1 -> nestorius ==> nostoricius
1334: 1 -> new ==> knew
1335: 1 -> newberg ==> alanoberg
1336: 1 -> newscasts ==> cast
1337: 1 -> nicless ==> nicholas
1338: 1 -> night ==> might
1339: 1 -> no ==> a
1340: 1 -> no ==> knoll
1341: 1 -> no ==> know
1342: 1 -> no ==> mental
1343: 1 -> noirtier ==> mattier
1344: 1 -> noirtier ==> montier
1345: 1 -> noirtier ==> montre
1346: 1 -> nomes ==> gnomes
1347: 1 -> noontide ==> noontine
1348: 1 -> nor ==> or
1349: 1 -> north ==> norse
1350: 1 -> northwestward ==> westward
1351: 1 -> not ==> cannot
1352: 1 -> notice ==> noticed
1353: 1 -> novatians ==> nevations
1354: 1 -> now ==> no
1355: 1 -> nowhere ==> nor
1356: 1 -> numbness ==> numbnis
1357: 1 -> nuova ==> victunnova
1358: 1 -> nuova ==> vitanova
1359: 1 -> nuova ==> wallah
1360: 1 -> o ==> of
1361: 1 -> o'farrell ==> otharrow
1362: 1 -> objective ==> of
1363: 1 -> objects ==> optics
1364: 1 -> oblations ==> ablaations
1365: 1 -> obscure ==> obscured
1366: 1 -> occult ==> accout
1367: 1 -> occult ==> cold
1368: 1 -> odd ==> i'd
1369: 1 -> odeon ==> odium
1370: 1 -> of ==> administrative
1371: 1 -> of ==> have
1372: 1 -> of ==> in
1373: 1 -> of ==> off
1374: 1 -> of ==> the
1375: 1 -> of ==> vile
1376: 1 -> off ==> programof
1377: 1 -> offences ==> offenses
1378: 1 -> officinale ==> officiali
1379: 1 -> oh ==> o
1380: 1 -> olbinett ==> obernet
1381: 1 -> old ==> of
1382: 1 -> omnipotence ==> emipodence
1383: 1 -> on ==> an
1384: 1 -> on ==> bound
1385: 1 -> on ==> i'm
1386: 1 -> on ==> lawn
1387: 1 -> on ==> when
1388: 1 -> one ==> what
1389: 1 -> one ==> won
1390: 1 -> oppressed ==> pressed
1391: 1 -> or ==> are
1392: 1 -> or ==> augustra
1393: 1 -> or ==> curiousr
1394: 1 -> or ==> fatter
1395: 1 -> or ==> her
1396: 1 -> or ==> may
1397: 1 -> or ==> of
1398: 1 -> or ==> older
1399: 1 -> or ==> savager
1400: 1 -> orbit ==> orbid
1401: 1 -> order ==> ordered
1402: 1 -> orders ==> order
1403: 1 -> orestes ==> is
1404: 1 -> originally ==> original
1405: 1 -> ossipon ==> oscipan
1406: 1 -> ossipon ==> oscippan
1407: 1 -> ossipon's ==> oscipan's
1408: 1 -> ossipon's ==> ostitan's
1409: 1 -> other ==> another
1410: 1 -> others ==> other
1411: 1 -> ounce ==> announce
1412: 1 -> our ==> her
1413: 1 -> our ==> ir
1414: 1 -> our ==> or
1415: 1 -> out ==> northought
1416: 1 -> out ==> not
1417: 1 -> out ==> off
1418: 1 -> outfit ==> outpit
1419: 1 -> over ==> a
1420: 1 -> over ==> for
1421: 1 -> overnight ==> night
1422: 1 -> pales ==> pails
1423: 1 -> palimpsest ==> palumpsist
1424: 1 -> pall ==> palm
1425: 1 -> pampas ==> pompous
1426: 1 -> pane ==> pain
1427: 1 -> pangs ==> pines
1428: 1 -> panting ==> penting
1429: 1 -> papa's ==> papa
1430: 1 -> pardon ==> harden
1431: 1 -> parlor ==> parlour
1432: 1 -> parrishes ==> parishes
1433: 1 -> pass ==> passed
1434: 1 -> pass ==> past
1435: 1 -> past ==> passed
1436: 1 -> path ==> footpath
1437: 1 -> patients ==> patience
1438: 1 -> pavel ==> pavl
1439: 1 -> pavel ==> will
1440: 1 -> pays ==> pace
1441: 1 -> pell ==> pale
1442: 1 -> pelusium ==> pellusium
1443: 1 -> penitentiary ==> peditantiary
1444: 1 -> perdition ==> tradition
1445: 1 -> perform ==> reform
1446: 1 -> pestle ==> pestal
1447: 1 -> petronels ==> patronels
1448: 1 -> ph ==> h
1449: 1 -> phantasies ==> fanasies
1450: 1 -> phantasy ==> fantasy
1451: 1 -> phenomenon ==> phenomena
1452: 1 -> philadelphus ==> philodolphus
1453: 1 -> philly's ==> phylli's
1454: 1 -> phoebe ==> feebi
1455: 1 -> phoebe ==> feeby
1456: 1 -> phoebe ==> feevie
1457: 1 -> phoebe ==> fibi
1458: 1 -> phoebe ==> fiby
1459: 1 -> phoebe ==> phoebi
1460: 1 -> phoebe ==> phoebie
1461: 1 -> pi ==> grape
1462: 1 -> picket ==> pickered
1463: 1 -> pickled ==> tickled
1464: 1 -> piece ==> peace
1465: 1 -> pigeon ==> woodpigeon
1466: 1 -> pigeon ==> woodpitchin
1467: 1 -> pigeon ==> woodpitchon
1468: 1 -> piglike ==> like
1469: 1 -> pigstye ==> pigsty
1470: 1 -> pillows ==> pillars
1471: 1 -> pin ==> pen
1472: 1 -> pinch ==> penge
1473: 1 -> pinned ==> pin
1474: 1 -> pint ==> spoonful
1475: 1 -> pinyon ==> opinion
1476: 1 -> pioneer ==> near
1477: 1 -> piped ==> piced
1478: 1 -> place ==> placed
1479: 1 -> plain ==> playing
1480: 1 -> plains ==> plans
1481: 1 -> plaiting ==> plating
1482: 1 -> plaits ==> plates
1483: 1 -> plane ==> plan
1484: 1 -> plants ==> plans
1485: 1 -> plashing ==> flashing
1486: 1 -> please ==> pleased
1487: 1 -> pleased ==> placed
1488: 1 -> pleroma ==> clarama
1489: 1 -> ploughed ==> plowed
1490: 1 -> plumb ==> plum
1491: 1 -> poem ==> palm
1492: 1 -> poems ==> palm
1493: 1 -> poison ==> poisoned
1494: 1 -> polar ==> poor
1495: 1 -> polytheists ==> polyphiasts
1496: 1 -> pommel ==> paw
1497: 1 -> pong ==> to
1498: 1 -> poniard ==> poiard
1499: 1 -> poniard ==> ponyard
1500: 1 -> ponies ==> pony
1501: 1 -> pony ==> bony
1502: 1 -> poorer ==> poor
1503: 1 -> popcorn ==> with
1504: 1 -> popolo ==> paupilloi
1505: 1 -> pores ==> poorers
1506: 1 -> poring ==> pouring
1507: 1 -> port ==> poor
1508: 1 -> portmanteau ==> montau
1509: 1 -> portraits ==> portrait
1510: 1 -> possess'd ==> possessed
1511: 1 -> pour ==> poor
1512: 1 -> pout ==> powd
1513: 1 -> powell ==> paul
1514: 1 -> power ==> pallor
1515: 1 -> pravity ==> provity
1516: 1 -> preceding ==> proceeding
1517: 1 -> pressed ==> impressed
1518: 1 -> pretender ==> pretundor
1519: 1 -> prices ==> braces
1520: 1 -> primavera ==> imavaera
1521: 1 -> primroses ==> primoses
1522: 1 -> princess ==> princes
1523: 1 -> prison ==> princeton
1524: 1 -> proceeds ==> precedes
1525: 1 -> profit ==> prophet
1526: 1 -> program ==> programme
1527: 1 -> program ==> tebi
1528: 1 -> programs ==> programmes
1529: 1 -> proletariat ==> it
1530: 1 -> prometheus ==> pometheus
1531: 1 -> promised ==> promise
1532: 1 -> prophets ==> profits
1533: 1 -> prose ==> crows
1534: 1 -> proselytes ==> prosulates
1535: 1 -> proserpina ==> prosepina
1536: 1 -> psalm ==> song
1537: 1 -> ptolemy ==> me
1538: 1 -> puerile ==> old
1539: 1 -> pumpkin ==> and
1540: 1 -> pungent ==> punchent
1541: 1 -> putting ==> pudding
1542: 1 -> pyre ==> pire
1543: 1 -> pyrrha ==> pierre
1544: 1 -> pyrrha ==> pyra
1545: 1 -> quarters ==> table
1546: 1 -> quenelles ==> quinnels
1547: 1 -> quilter ==> kilter
1548: 1 -> quilter ==> krylter
1549: 1 -> quilter ==> kulder
1550: 1 -> quilter's ==> kulter's
1551: 1 -> quinci ==> quincy
1552: 1 -> race ==> grace
1553: 1 -> racked ==> wrecked
1554: 1 -> rain ==> reign
1555: 1 -> rainstorms ==> rainstarms
1556: 1 -> ran ==> workmen
1557: 1 -> rangitata ==> a
1558: 1 -> rapine ==> rappeen
1559: 1 -> rath ==> wrath
1560: 1 -> rathskellers ==> arrathskellers
1561: 1 -> razetta ==> rheseta
1562: 1 -> re ==> mackerwaine
1563: 1 -> read ==> red
1564: 1 -> reals ==> reels
1565: 1 -> reappear ==> appear
1566: 1 -> reeling ==> really
1567: 1 -> reigned ==> rode
1568: 1 -> rein ==> rain
1569: 1 -> reincarnation ==> reencarnation
1570: 1 -> remembered ==> remember
1571: 1 -> remote ==> moat
1572: 1 -> repaired ==> prepared
1573: 1 -> repertory ==> repetory
1574: 1 -> reposing ==> reposed
1575: 1 -> resign'd ==> resigned
1576: 1 -> resort ==> result
1577: 1 -> revelling ==> reveling
1578: 1 -> reverence ==> reference
1579: 1 -> rex ==> rax
1580: 1 -> rheumatic ==> romantic
1581: 1 -> rhodes ==> roads
1582: 1 -> rhythmically ==> clee
1583: 1 -> rictus ==> rectus
1584: 1 -> ride ==> rid
1585: 1 -> rider ==> writer
1586: 1 -> riders ==> rider
1587: 1 -> ridicule ==> kill
1588: 1 -> riding ==> writing
1589: 1 -> rigid ==> wretched
1590: 1 -> ring ==> bettering
1591: 1 -> ring ==> rang
1592: 1 -> rites ==> rights
1593: 1 -> riverlike ==> like
1594: 1 -> roads ==> raids
1595: 1 -> roared ==> lord
1596: 1 -> roast ==> arose
1597: 1 -> rock ==> rug
1598: 1 -> rocket ==> at
1599: 1 -> rocks ==> rock
1600: 1 -> rod ==> roda
1601: 1 -> roguish ==> roggish
1602: 1 -> rolls ==> oils
1603: 1 -> root ==> rut
1604: 1 -> rose ==> fishrooms
1605: 1 -> rosebush ==> bush
1606: 1 -> rosecrans ==> crants
1607: 1 -> rossetti ==> rosaity
1608: 1 -> rounded ==> it
1609: 1 -> roundel ==> all
1610: 1 -> rousing ==> rouseing
1611: 1 -> rout ==> add
1612: 1 -> ruggedo ==> virgido
1613: 1 -> ruggedo's ==> riggedo's
1614: 1 -> ruled ==> rule
1615: 1 -> run ==> red
1616: 1 -> run ==> won
1617: 1 -> rut ==> rot
1618: 1 -> sailor's ==> ailer's
1619: 1 -> saint ==> assailant
1620: 1 -> saint ==> saved
1621: 1 -> saknussemm ==> saknusum
1622: 1 -> salt ==> result
1623: 1 -> salted ==> insulted
1624: 1 -> sana ==> cessana
1625: 1 -> sanum ==> sandom
1626: 1 -> satisfier ==> satisfyer
1627: 1 -> sauterne ==> saturn
1628: 1 -> sauterne ==> tarran
1629: 1 -> savour ==> savor
1630: 1 -> say ==> a
1631: 1 -> say ==> see
1632: 1 -> says ==> tell
1633: 1 -> scalp ==> scout
1634: 1 -> scantily ==> scolly
1635: 1 -> scattering ==> scattery
1636: 1 -> scheiler ==> chefshhiler
1637: 1 -> schools ==> rules
1638: 1 -> score ==> scored
1639: 1 -> scrubbed ==> grubbed
1640: 1 -> sculpturing ==> sculptureing
1641: 1 -> scum ==> scumb
1642: 1 -> sea ==> see
1643: 1 -> sear ==> seear
1644: 1 -> secesh ==> cessash
1645: 1 -> second's ==> second
1646: 1 -> sectaries ==> ectaries
1647: 1 -> sectaries ==> sectories
1648: 1 -> seeds ==> seats
1649: 1 -> seeing ==> rejoicing
1650: 1 -> seeing ==> saying
1651: 1 -> seeing ==> sing
1652: 1 -> seem ==> seemed
1653: 1 -> seem ==> seems
1654: 1 -> seen ==> seemed
1655: 1 -> sees ==> seized
1656: 1 -> self ==> hisself
1657: 1 -> selves ==> cells
1658: 1 -> semester ==> master
1659: 1 -> sensed ==> irogue
1660: 1 -> sent ==> set
1661: 1 -> serapion ==> syrapian
1662: 1 -> serge ==> surged
1663: 1 -> serious ==> series
1664: 1 -> servant ==> serpent
1665: 1 -> set ==> said
1666: 1 -> settler ==> supper
1667: 1 -> shasta ==> shastard
1668: 1 -> shasta ==> shaster
1669: 1 -> sheds ==> shed
1670: 1 -> shew ==> show
1671: 1 -> shiloh ==> charlow
1672: 1 -> shimerda ==> shamerda
1673: 1 -> shot ==> shocked
1674: 1 -> shot ==> shut
1675: 1 -> should ==> it's
1676: 1 -> shouldered ==> shorted
1677: 1 -> show ==> shall
1678: 1 -> showed ==> the
1679: 1 -> shut ==> shot
1680: 1 -> shuts ==> shut
1681: 1 -> sibyl ==> sibil
1682: 1 -> sidelong ==> long
1683: 1 -> sierra ==> era
1684: 1 -> similes ==> similies
1685: 1 -> simmonds ==> symond's
1686: 1 -> simmonds ==> symonds
1687: 1 -> simpleton ==> cypleton
1688: 1 -> since ==> sense
1689: 1 -> since ==> sent
1690: 1 -> singer ==> sinner
1691: 1 -> sins ==> ascins
1692: 1 -> site ==> sight
1693: 1 -> sixteen ==> sixteenth
1694: 1 -> size ==> sized
1695: 1 -> skint ==> schint
1696: 1 -> slain ==> claimed
1697: 1 -> slaps ==> slips
1698: 1 -> slater ==> slatter
1699: 1 -> sluicing ==> sloosing
1700: 1 -> smart ==> small
1701: 1 -> smells ==> mills
1702: 1 -> smilax ==> similax
1703: 1 -> smoked ==> smoke
1704: 1 -> snapping ==> dirt
1705: 1 -> snows ==> was
1706: 1 -> so ==> hole
1707: 1 -> so ==> soul
1708: 1 -> sober ==> over
1709: 1 -> sold ==> irowan
1710: 1 -> soldier ==> oxaldier
1711: 1 -> sole ==> so
1712: 1 -> solemn ==> them
1713: 1 -> solve ==> solf
1714: 1 -> sombrero ==> railroad
1715: 1 -> sombrero ==> sumbrero
1716: 1 -> sombrero ==> umbrella
1717: 1 -> sonnet ==> it
1718: 1 -> sorghum ==> sorgum
1719: 1 -> sorrows ==> us
1720: 1 -> sought ==> saw
1721: 1 -> soul ==> saw
1722: 1 -> sounding ==> sending
1723: 1 -> southwark ==> south
1724: 1 -> sow ==> so
1725: 1 -> spacious ==> facia
1726: 1 -> spare ==> despair
1727: 1 -> speculative ==> live
1728: 1 -> spoon ==> teaspoon
1729: 1 -> spread ==> or
1730: 1 -> spread ==> sprayed
1731: 1 -> spruce ==> bruce
1732: 1 -> sprucewood ==> wood
1733: 1 -> squashes ==> squashs
1734: 1 -> stacy ==> cissy
1735: 1 -> stacy ==> sacy
1736: 1 -> stacy ==> safely
1737: 1 -> stand ==> stands
1738: 1 -> stand ==> testad
1739: 1 -> stationmaster ==> master
1740: 1 -> steadily ==> sedley
1741: 1 -> steady ==> setting
1742: 1 -> stepp'd ==> stepped
1743: 1 -> stept ==> stepped
1744: 1 -> stereos ==> sterio's
1745: 1 -> stevie ==> steepy
1746: 1 -> stevie's ==> stevy's
1747: 1 -> stirrups ==> strips
1748: 1 -> stockings ==> stalkings
1749: 1 -> stolidly ==> startledly
1750: 1 -> stommick ==> stomach
1751: 1 -> stone's ==> stones
1752: 1 -> stones ==> stungs
1753: 1 -> stray ==> straight
1754: 1 -> strewed ==> strode
1755: 1 -> striving ==> upstriving
1756: 1 -> stube ==> the
1757: 1 -> stupirti ==> beauty
1758: 1 -> succeed ==> succeeded
1759: 1 -> sudvestr ==> vest
1760: 1 -> suited ==> insuited
1761: 1 -> sundry ==> dream
1762: 1 -> sunk ==> slunk
1763: 1 -> suns ==> sons
1764: 1 -> sure ==> she
1765: 1 -> surprise ==> surprised
1766: 1 -> surround ==> surrounded
1767: 1 -> surrounded ==> surrendered
1768: 1 -> survey ==> servant
1769: 1 -> suspicions ==> suspicion
1770: 1 -> sutter ==> cedar
1771: 1 -> sutter ==> citter
1772: 1 -> sward ==> swaard
1773: 1 -> swarthy ==> the
1774: 1 -> sweat ==> swept
1775: 1 -> sweating ==> slitting
1776: 1 -> sweetwater ==> water
1777: 1 -> sydenham ==> sidnam
1778: 1 -> sydenham ==> sidnem
1779: 1 -> sydenham ==> sidnham
1780: 1 -> sydenham ==> sidonam
1781: 1 -> symbolic ==> balic
1782: 1 -> synesius's ==> cynicius's
1783: 1 -> syrtis ==> cyrtus
1784: 1 -> syrtis ==> syrtus
1785: 1 -> tablespoonful ==> spoonful
1786: 1 -> tablespoonfuls ==> spoonfuls
1787: 1 -> tad ==> tint
1788: 1 -> tad's ==> tad
1789: 1 -> tahoe ==> towe
1790: 1 -> tait ==> jauntite
1791: 1 -> takes ==> take
1792: 1 -> tally ==> tawley
1793: 1 -> taloned ==> tallened
1794: 1 -> tar ==> coltar
1795: 1 -> tarpaulin ==> tarkalan
1796: 1 -> tartaric ==> tertaric
1797: 1 -> tear ==> terror
1798: 1 -> tears ==> terriso
1799: 1 -> teaspoonful ==> teaspoon
1800: 1 -> teeming ==> teening
1801: 1 -> telecast ==> telicas
1802: 1 -> telemetering ==> telemedring
1803: 1 -> television ==> and
1804: 1 -> tempered ==> temper
1805: 1 -> temporary ==> etimporary
1806: 1 -> tense ==> tenth
1807: 1 -> terminates ==> interminates
1808: 1 -> terran ==> in
1809: 1 -> terro ==> terror
1810: 1 -> testbridge ==> bridge
1811: 1 -> than ==> and
1812: 1 -> thank ==> thing
1813: 1 -> thanked ==> thinked
1814: 1 -> that ==> at
1815: 1 -> that ==> cloth
1816: 1 -> that ==> if
1817: 1 -> that ==> sat
1818: 1 -> that ==> the
1819: 1 -> that ==> to
1820: 1 -> that'll ==> will
1821: 1 -> that's ==> that
1822: 1 -> thatched ==> fetched
1823: 1 -> the ==> as
1824: 1 -> the ==> channler
1825: 1 -> the ==> its
1826: 1 -> the ==> mc
1827: 1 -> the ==> me
1828: 1 -> the ==> mix
1829: 1 -> the ==> nappy
1830: 1 -> the ==> no
1831: 1 -> the ==> of
1832: 1 -> the ==> some
1833: 1 -> the ==> thee
1834: 1 -> the ==> their
1835: 1 -> the ==> them
1836: 1 -> the ==> thus
1837: 1 -> theatre ==> to
1838: 1 -> their ==> are
1839: 1 -> their ==> further
1840: 1 -> their ==> the
1841: 1 -> their ==> there
1842: 1 -> their ==> wister
1843: 1 -> them ==> then
1844: 1 -> then ==> done
1845: 1 -> then ==> than
1846: 1 -> there ==> here
1847: 1 -> there ==> once
1848: 1 -> there ==> through
1849: 1 -> there's ==> is
1850: 1 -> therefrom ==> from
1851: 1 -> these ==> this
1852: 1 -> they ==> closely
1853: 1 -> they ==> that
1854: 1 -> they're ==> their
1855: 1 -> thick ==> deck
1856: 1 -> thing ==> everything
1857: 1 -> this ==> to
1858: 1 -> this ==> your
1859: 1 -> thompson ==> thomson
1860: 1 -> those ==> some
1861: 1 -> though ==> that
1862: 1 -> through ==> three
1863: 1 -> thundercloud ==> cloud
1864: 1 -> tiles ==> tiels
1865: 1 -> tilted ==> at
1866: 1 -> time ==> sometime
1867: 1 -> tirade ==> tireat
1868: 1 -> to ==> accrues
1869: 1 -> to ==> at
1870: 1 -> to ==> chop
1871: 1 -> to ==> delighted
1872: 1 -> to ==> into
1873: 1 -> to ==> load
1874: 1 -> to ==> no
1875: 1 -> to ==> of
1876: 1 -> to ==> the
1877: 1 -> tokyo ==> tokia
1878: 1 -> tolled ==> told
1879: 1 -> tomato ==> madeo
1880: 1 -> tonight ==> night
1881: 1 -> tony's ==> toadies
1882: 1 -> too ==> took
1883: 1 -> took ==> to
1884: 1 -> tops ==> top
1885: 1 -> toss ==> tossed
1886: 1 -> touch ==> touched
1887: 1 -> tourmaline ==> tormilie
1888: 1 -> tourmaline ==> tormiline
1889: 1 -> toward ==> tored
1890: 1 -> towards ==> toward
1891: 1 -> towne ==> town
1892: 1 -> trading ==> treating
1893: 1 -> trampe ==> tramp
1894: 1 -> transubstantiation ==> transpastantiation
1895: 1 -> trauma ==> drama
1896: 1 -> traveled ==> travelled
1897: 1 -> travellers ==> travelers
1898: 1 -> tremble ==> trample
1899: 1 -> trevelyan ==> trevian
1900: 1 -> trevelyan's ==> trevelian's
1901: 1 -> tribe ==> try
1902: 1 -> trivialities ==> richrvialities
1903: 1 -> troop ==> group
1904: 1 -> trot's ==> trot
1905: 1 -> troublemaker ==> maker
1906: 1 -> troubling ==> chubbling
1907: 1 -> trubner ==> troubner
1908: 1 -> true ==> a
1909: 1 -> trusses ==> tresses
1910: 1 -> tryst ==> trust
1911: 1 -> tube ==> two
1912: 1 -> tully ==> tuli
1913: 1 -> tumble's ==> tumbles
1914: 1 -> tuning ==> turning
1915: 1 -> tupper ==> topper
1916: 1 -> tureen ==> dream
1917: 1 -> turmoil ==> intermoil
1918: 1 -> turtle ==> all
1919: 1 -> two ==> intoo
1920: 1 -> two ==> to
1921: 1 -> tyrannise ==> rise
1922: 1 -> una ==> a
1923: 1 -> unadorned ==> unadorn
1924: 1 -> unburied ==> unberry
1925: 1 -> uncloud ==> uncloude
1926: 1 -> undisciplined ==> undiscipituent
1927: 1 -> undivided ==> undivied
1928: 1 -> unfavourable ==> unfavorable
1929: 1 -> unhurried ==> unheard
1930: 1 -> uninhabitable ==> uninabitable
1931: 1 -> uninhabited ==> unahapited
1932: 1 -> unit ==> union
1933: 1 -> unofficial ==> artificial
1934: 1 -> unpalatable ==> unpellinable
1935: 1 -> unpaved ==> unpathaved
1936: 1 -> uns ==> ends
1937: 1 -> unsoldierly ==> unsulgily
1938: 1 -> unsolved ==> unsolled
1939: 1 -> unsteadiness ==> unstubbiness
1940: 1 -> until ==> tell
1941: 1 -> untruss ==> untrust
1942: 1 -> up ==> out
1943: 1 -> upholsterer ==> posterer
1944: 1 -> upon ==> at
1945: 1 -> upstairs ==> stairs
1946: 1 -> urania ==> yarania
1947: 1 -> urgent ==> urget
1948: 1 -> us ==> as
1949: 1 -> usurping ==> assurping
1950: 1 -> v ==> aghaise
1951: 1 -> v ==> teevy
1952: 1 -> vain ==> vein
1953: 1 -> vainly ==> vaney
1954: 1 -> valkyrie ==> falkery
1955: 1 -> valkyrie ==> vulgarly
1956: 1 -> vantages ==> advantages
1957: 1 -> vaunting ==> fonting
1958: 1 -> vegetated ==> vegetation
1959: 1 -> vein ==> vain
1960: 1 -> vendhya ==> vendia
1961: 1 -> vengeful ==> inventionful
1962: 1 -> veni ==> vanny
1963: 1 -> veolan ==> valanon
1964: 1 -> verandah ==> veranda
1965: 1 -> vernacular ==> vanacular
1966: 1 -> very ==> berry
1967: 1 -> viands ==> violence
1968: 1 -> videt ==> videte
1969: 1 -> villa ==> hilvivillea
1970: 1 -> vinos ==> phinos
1971: 1 -> vinos ==> venus
1972: 1 -> vintage ==> ventid
1973: 1 -> virgilius ==> virtuius
1974: 1 -> virginity ==> fortunatey
1975: 1 -> virgins ==> fortunes
1976: 1 -> vita ==> vitunna
1977: 1 -> vittles ==> fiddles
1978: 1 -> volatile ==> vault
1979: 1 -> volume ==> divine
1980: 1 -> wabigoon's ==> golon's
1981: 1 -> wabigoon's ==> willbiggawan's
1982: 1 -> wahiti ==> wahidi
1983: 1 -> wakened ==> awakened
1984: 1 -> walnuts ==> walnut
1985: 1 -> wander ==> wonder
1986: 1 -> waned ==> weighing
1987: 1 -> wants ==> once
1988: 1 -> war ==> siuware
1989: 1 -> war ==> ware
1990: 1 -> was ==> his
1991: 1 -> was ==> is
1992: 1 -> was ==> of
1993: 1 -> was ==> whose
1994: 1 -> was ==> with
1995: 1 -> wave ==> waves
1996: 1 -> waverley's ==> released
1997: 1 -> wayne ==> wane
1998: 1 -> we ==> who
1999: 1 -> we ==> you
2000: 1 -> we've ==> leave
2001: 1 -> we've ==> we
2002: 1 -> wear ==> ware
2003: 1 -> wears ==> wares
2004: 1 -> weird ==> nightwird
2005: 1 -> weiser ==> vicer
2006: 1 -> well ==> swell
2007: 1 -> well ==> will
2008: 1 -> wend ==> went
2009: 1 -> wept ==> swept
2010: 1 -> were ==> there
2011: 1 -> wert ==> are
2012: 1 -> wert ==> worth
2013: 1 -> westmere ==> westminre
2014: 1 -> what ==> which
2015: 1 -> what's ==> was
2016: 1 -> wheezed ==> weased
2017: 1 -> whelm ==> well
2018: 1 -> when ==> and
2019: 1 -> when ==> went
2020: 1 -> when ==> would
2021: 1 -> where ==> were
2022: 1 -> whether ==> whither
2023: 1 -> whichever ==> upper
2024: 1 -> while ==> oh
2025: 1 -> whiplash ==> lash
2026: 1 -> whirr ==> were
2027: 1 -> whisky ==> whiskey
2028: 1 -> whole ==> hole
2029: 1 -> why ==> well
2030: 1 -> whys ==> wise
2031: 1 -> wi ==> with
2032: 1 -> widower ==> widow
2033: 1 -> wielded ==> wheeled
2034: 1 -> wildering ==> during
2035: 1 -> wilkerson ==> and
2036: 1 -> will ==> towel
2037: 1 -> wilsons ==> wilson's
2038: 1 -> wine ==> launched
2039: 1 -> wine ==> one
2040: 1 -> wines ==> rhines
2041: 1 -> wink ==> week
2042: 1 -> winton ==> wynton
2043: 1 -> with ==> but
2044: 1 -> with ==> for
2045: 1 -> with ==> fountain's
2046: 1 -> with ==> was
2047: 1 -> with ==> when
2048: 1 -> within ==> an
2049: 1 -> within ==> in
2050: 1 -> womb ==> wound
2051: 1 -> won ==> at
2052: 1 -> wondered ==> wandered
2053: 1 -> woollen ==> woolen
2054: 1 -> woolly ==> woeely
2055: 1 -> woonga ==> wounda
2056: 1 -> woongas ==> wounders
2057: 1 -> words ==> word
2058: 1 -> work ==> talk
2059: 1 -> world's ==> sworld's
2060: 1 -> worries ==> warries
2061: 1 -> worse ==> where
2062: 1 -> worshiping ==> worshipping
2063: 1 -> worth ==> where
2064: 1 -> worthy ==> worthily
2065: 1 -> would ==> had
2066: 1 -> would ==> it
2067: 1 -> would ==> with
2068: 1 -> would ==> you'd
2069: 1 -> wrangler ==> ringbrea
2070: 1 -> wreaths ==> reeves
2071: 1 -> writing ==> riding
2072: 1 -> wronged ==> round
2073: 1 -> wrote ==> read
2074: 1 -> wrung ==> around
2075: 1 -> wry ==> rye
2076: 1 -> yank ==> yak
2077: 1 -> yankee ==> aki
2078: 1 -> yankees ==> yakis
2079: 1 -> yankees ==> yankies
2080: 1 -> yard ==> barnyard
2081: 1 -> years ==> jeers
2082: 1 -> yeast ==> brugeshiest
2083: 1 -> yeast ==> east
2084: 1 -> yo ==> you
2085: 1 -> yokul ==> yokel
2086: 1 -> yolk ==> yoke
2087: 1 -> you ==> he
2088: 1 -> you ==> i
2089: 1 -> you ==> we
2090: 1 -> you'll ==> don't
2091: 1 -> you'll ==> old
2092: 1 -> you're ==> your
2093: 1 -> your ==> mere
2094: 1 -> your ==> you
2095: 1 -> your ==> you'll
2096: 1 -> yulka ==> yoko
2097: 1 -> yundt ==> kaliunt
2098: 1 -> yundt ==> yunt
2099: 1 -> zepplin ==> zeppelin
2100: 1 -> zingiber ==> zingerbre
-------
2563
INSERTIONS Total (203)
With >= 1 occurrences (203)
1: 27 -> a
2: 16 -> the
3: 13 -> and
4: 12 -> in
5: 11 -> to
6: 10 -> of
7: 6 -> it
8: 4 -> at
9: 4 -> i
10: 4 -> mc
11: 4 -> my
12: 4 -> our
13: 4 -> some
14: 4 -> table
15: 3 -> all
16: 3 -> any
17: 3 -> battle
18: 3 -> chris
19: 3 -> he
20: 3 -> held
21: 3 -> that
22: 3 -> with
23: 2 -> an
24: 2 -> around
25: 2 -> beer
26: 2 -> bird
27: 2 -> but
28: 2 -> color
29: 2 -> do
30: 2 -> due
31: 2 -> for
32: 2 -> force
33: 2 -> her
34: 2 -> homo
35: 2 -> life
36: 2 -> may
37: 2 -> more
38: 2 -> near
39: 2 -> perfect
40: 2 -> promised
41: 2 -> request
42: 2 -> rose
43: 2 -> south
44: 2 -> their
45: 2 -> unined
46: 2 -> up
47: 2 -> when
48: 2 -> will
49: 1 -> abundant
50: 1 -> announce
51: 1 -> arrest
52: 1 -> art
53: 1 -> asinor
54: 1 -> austria
55: 1 -> b
56: 1 -> band
57: 1 -> be
58: 1 -> beggar
59: 1 -> blast
60: 1 -> blue
61: 1 -> boat
62: 1 -> bon
63: 1 -> bread
64: 1 -> break
65: 1 -> breast
66: 1 -> broke
67: 1 -> buckingham
68: 1 -> butter
69: 1 -> capture
70: 1 -> care
71: 1 -> case
72: 1 -> castle
73: 1 -> cheat
74: 1 -> chest
75: 1 -> contemptlet
76: 1 -> copy
77: 1 -> corn
78: 1 -> cornel
79: 1 -> count
80: 1 -> coup
81: 1 -> crossed
82: 1 -> crude
83: 1 -> damps
84: 1 -> dark
85: 1 -> day
86: 1 -> days
87: 1 -> de
88: 1 -> defect
89: 1 -> degerrow
90: 1 -> dish
91: 1 -> dora
92: 1 -> draw
93: 1 -> du
94: 1 -> dug
95: 1 -> every
96: 1 -> faint
97: 1 -> fair
98: 1 -> figure
99: 1 -> finishing
100: 1 -> fly
101: 1 -> followed
102: 1 -> forced
103: 1 -> from
104: 1 -> god
105: 1 -> guard
106: 1 -> ha
107: 1 -> half
108: 1 -> hate
109: 1 -> head
110: 1 -> herb
111: 1 -> him
112: 1 -> home
113: 1 -> house
114: 1 -> hove
115: 1 -> iceland
116: 1 -> if
117: 1 -> insert
118: 1 -> la
119: 1 -> labor
120: 1 -> ladder
121: 1 -> lake
122: 1 -> latimer
123: 1 -> line
124: 1 -> livery
125: 1 -> low
126: 1 -> made
127: 1 -> maid
128: 1 -> meek
129: 1 -> men
130: 1 -> mike
131: 1 -> mild
132: 1 -> miss
133: 1 -> mount
134: 1 -> mucher
135: 1 -> mule
136: 1 -> murphy's
137: 1 -> news
138: 1 -> north
139: 1 -> now
140: 1 -> object
141: 1 -> on
142: 1 -> out
143: 1 -> over
144: 1 -> own
145: 1 -> paw
146: 1 -> pawn
147: 1 -> pie
148: 1 -> pig
149: 1 -> poor
150: 1 -> poplar
151: 1 -> port
152: 1 -> praise
153: 1 -> prove
154: 1 -> pump
155: 1 -> pure
156: 1 -> riddle
157: 1 -> river
158: 1 -> rock
159: 1 -> round
160: 1 -> ruggedot
161: 1 -> rum
162: 1 -> saw
163: 1 -> see
164: 1 -> sees
165: 1 -> sent
166: 1 -> sha'n't
167: 1 -> shaft
168: 1 -> shall
169: 1 -> shan't
170: 1 -> side
171: 1 -> snow
172: 1 -> so
173: 1 -> son
174: 1 -> sorrow
175: 1 -> spectre
176: 1 -> stand
177: 1 -> station
178: 1 -> sued
179: 1 -> sweet
180: 1 -> swore
181: 1 -> tear
182: 1 -> telephone
183: 1 -> terror
184: 1 -> test
185: 1 -> tete
186: 1 -> than
187: 1 -> then
188: 1 -> there
189: 1 -> this
190: 1 -> three
191: 1 -> thunder
192: 1 -> told
193: 1 -> trouble
194: 1 -> tucked
195: 1 -> two
196: 1 -> upward
197: 1 -> wake
198: 1 -> were
199: 1 -> which
200: 1 -> whip
201: 1 -> wish
202: 1 -> workers
203: 1 -> you
-------
354
DELETIONS Total (418)
With >= 1 occurrences (418)
1: 36 -> the
2: 33 -> a
3: 30 -> and
4: 25 -> to
5: 22 -> of
6: 15 -> in
7: 9 -> it
8: 8 -> for
9: 7 -> at
10: 7 -> mary
11: 6 -> as
12: 6 -> he
13: 6 -> on
14: 6 -> who
15: 6 -> with
16: 5 -> all
17: 5 -> his
18: 5 -> i
19: 5 -> is
20: 5 -> or
21: 5 -> their
22: 4 -> any
23: 4 -> they
24: 4 -> up
25: 4 -> was
26: 4 -> which
27: 3 -> are
28: 3 -> by
29: 3 -> how
30: 3 -> over
31: 3 -> this
32: 3 -> wood
33: 2 -> an
34: 2 -> back
35: 2 -> bad
36: 2 -> bed
37: 2 -> call
38: 2 -> care
39: 2 -> dead
40: 2 -> down
41: 2 -> end
42: 2 -> even
43: 2 -> every
44: 2 -> from
45: 2 -> gas
46: 2 -> had
47: 2 -> heady
48: 2 -> him
49: 2 -> ill
50: 2 -> into
51: 2 -> john
52: 2 -> little
53: 2 -> love
54: 2 -> mc
55: 2 -> milk
56: 2 -> new
57: 2 -> older
58: 2 -> one
59: 2 -> out
60: 2 -> philosophy
61: 2 -> propensity
62: 2 -> roundel
63: 2 -> shall
64: 2 -> t
65: 2 -> take
66: 2 -> that
67: 2 -> them
68: 2 -> those
69: 2 -> thousand
70: 2 -> very
71: 2 -> vita
72: 2 -> water
73: 1 -> accept
74: 1 -> accrue
75: 1 -> acknowledge
76: 1 -> across
77: 1 -> administrator
78: 1 -> admired
79: 1 -> alexandria
80: 1 -> alike
81: 1 -> along
82: 1 -> among
83: 1 -> ampler
84: 1 -> ancient
85: 1 -> ann
86: 1 -> annex
87: 1 -> another
88: 1 -> answer
89: 1 -> antioch
90: 1 -> arrived
91: 1 -> ask
92: 1 -> asparagus
93: 1 -> assign
94: 1 -> aunt
95: 1 -> away
96: 1 -> awls
97: 1 -> barn
98: 1 -> basin
99: 1 -> bath
100: 1 -> battle
101: 1 -> be
102: 1 -> before
103: 1 -> better
104: 1 -> betwixt
105: 1 -> bewildered
106: 1 -> bless
107: 1 -> bliss
108: 1 -> blooming
109: 1 -> board
110: 1 -> body
111: 1 -> boil
112: 1 -> boudoir
113: 1 -> brethren
114: 1 -> brewer's
115: 1 -> bride
116: 1 -> brides
117: 1 -> brion
118: 1 -> brood
119: 1 -> but
120: 1 -> can
121: 1 -> captive
122: 1 -> cedars
123: 1 -> chandler
124: 1 -> changing
125: 1 -> charles
126: 1 -> cheerful
127: 1 -> chef
128: 1 -> chico
129: 1 -> church's
130: 1 -> close
131: 1 -> closely
132: 1 -> coast
133: 1 -> collier
134: 1 -> coming
135: 1 -> condemns
136: 1 -> cosy
137: 1 -> could
138: 1 -> count
139: 1 -> cover
140: 1 -> cream
141: 1 -> create
142: 1 -> cuff
143: 1 -> curious
144: 1 -> daring
145: 1 -> de
146: 1 -> deed
147: 1 -> defense
148: 1 -> del
149: 1 -> delight
150: 1 -> die
151: 1 -> disgrace
152: 1 -> divide
153: 1 -> do
154: 1 -> dozen
155: 1 -> drive
156: 1 -> dungeon
157: 1 -> east
158: 1 -> effete
159: 1 -> egoisms
160: 1 -> em
161: 1 -> enjoy
162: 1 -> enraged
163: 1 -> entity
164: 1 -> equally
165: 1 -> erewhon
166: 1 -> evil
167: 1 -> explain
168: 1 -> exploding
169: 1 -> fantasies
170: 1 -> fast
171: 1 -> fat
172: 1 -> fertile
173: 1 -> fish
174: 1 -> flower
175: 1 -> foot
176: 1 -> forbearance
177: 1 -> forests
178: 1 -> forlorn
179: 1 -> found
180: 1 -> france
181: 1 -> free
182: 1 -> fried
183: 1 -> gazes
184: 1 -> gibraltar
185: 1 -> give
186: 1 -> gives
187: 1 -> glorious
188: 1 -> greek
189: 1 -> green
190: 1 -> growling
191: 1 -> growth
192: 1 -> grub
193: 1 -> guide
194: 1 -> guy's
195: 1 -> has
196: 1 -> haut
197: 1 -> having
198: 1 -> headed
199: 1 -> hell
200: 1 -> her
201: 1 -> here
202: 1 -> heresies
203: 1 -> hero
204: 1 -> hill
205: 1 -> hof
206: 1 -> holiness
207: 1 -> homage
208: 1 -> honey
209: 1 -> horse
210: 1 -> housemaid
211: 1 -> humanity
212: 1 -> hypocrites
213: 1 -> improve
214: 1 -> inferior
215: 1 -> ingrained
216: 1 -> irolg
217: 1 -> italy
218: 1 -> itself
219: 1 -> joyous
220: 1 -> judge
221: 1 -> king
222: 1 -> kingdoms
223: 1 -> kings
224: 1 -> knowed
225: 1 -> la
226: 1 -> lacquey's
227: 1 -> land
228: 1 -> last
229: 1 -> latch
230: 1 -> law
231: 1 -> laws
232: 1 -> laying
233: 1 -> lean
234: 1 -> least
235: 1 -> lebanon
236: 1 -> led
237: 1 -> light
238: 1 -> like
239: 1 -> limit
240: 1 -> live
241: 1 -> loiterers
242: 1 -> longer
243: 1 -> low
244: 1 -> macklewain
245: 1 -> maize
246: 1 -> makes
247: 1 -> man's
248: 1 -> marked
249: 1 -> matron
250: 1 -> mediocrity
251: 1 -> men
252: 1 -> mister
253: 1 -> mittens
254: 1 -> mix
255: 1 -> montesinos
256: 1 -> moon
257: 1 -> more
258: 1 -> much
259: 1 -> namely
260: 1 -> neighbours
261: 1 -> newly
262: 1 -> night
263: 1 -> no
264: 1 -> north
265: 1 -> northern
266: 1 -> not
267: 1 -> now
268: 1 -> nutty
269: 1 -> obedience
270: 1 -> often
271: 1 -> oh
272: 1 -> oil
273: 1 -> old
274: 1 -> only
275: 1 -> opposed
276: 1 -> opposing
277: 1 -> other
278: 1 -> oven
279: 1 -> overmasters
280: 1 -> owe
281: 1 -> owed
282: 1 -> owing
283: 1 -> own
284: 1 -> pangs
285: 1 -> pare
286: 1 -> park
287: 1 -> paste
288: 1 -> phenomenon
289: 1 -> pi
290: 1 -> pine
291: 1 -> placed
292: 1 -> plains
293: 1 -> poorer
294: 1 -> portentous
295: 1 -> pre
296: 1 -> problem
297: 1 -> proceed
298: 1 -> proper
299: 1 -> radically
300: 1 -> raw
301: 1 -> re
302: 1 -> reason
303: 1 -> recognise
304: 1 -> records
305: 1 -> recriminating
306: 1 -> refuse
307: 1 -> remains
308: 1 -> remonstrances
309: 1 -> restraint
310: 1 -> reveries
311: 1 -> rhein
312: 1 -> rightly
313: 1 -> saint
314: 1 -> saluted
315: 1 -> sat
316: 1 -> saunter
317: 1 -> savage
318: 1 -> savagely
319: 1 -> saw
320: 1 -> says
321: 1 -> schisms
322: 1 -> screaming
323: 1 -> seemingly
324: 1 -> sell
325: 1 -> semi
326: 1 -> serve
327: 1 -> set
328: 1 -> settee
329: 1 -> sex
330: 1 -> shampooer
331: 1 -> shape
332: 1 -> she
333: 1 -> shell
334: 1 -> shrilly
335: 1 -> sign
336: 1 -> simultaneousness
337: 1 -> sioux
338: 1 -> sitter
339: 1 -> skelly
340: 1 -> slap
341: 1 -> slave
342: 1 -> slaves
343: 1 -> smooth
344: 1 -> so
345: 1 -> sofa
346: 1 -> some
347: 1 -> sophists
348: 1 -> sort
349: 1 -> sound
350: 1 -> south
351: 1 -> spain
352: 1 -> spiritual
353: 1 -> spring
354: 1 -> straits
355: 1 -> street
356: 1 -> strive
357: 1 -> stronghold
358: 1 -> student
359: 1 -> suffice
360: 1 -> sugar
361: 1 -> sun
362: 1 -> sunburnt
363: 1 -> tad
364: 1 -> tarrinzeau
365: 1 -> tea
366: 1 -> test
367: 1 -> thank
368: 1 -> thee
369: 1 -> theirs
370: 1 -> themselves
371: 1 -> then
372: 1 -> theosophies
373: 1 -> there
374: 1 -> these
375: 1 -> though
376: 1 -> thought
377: 1 -> three
378: 1 -> through
379: 1 -> tight
380: 1 -> times
381: 1 -> too
382: 1 -> transported
383: 1 -> treble
384: 1 -> try
385: 1 -> turkish
386: 1 -> twin
387: 1 -> tyrants
388: 1 -> unable
389: 1 -> understands
390: 1 -> us
391: 1 -> vandals
392: 1 -> vanity
393: 1 -> varlet
394: 1 -> vial
395: 1 -> view
396: 1 -> warm
397: 1 -> we
398: 1 -> were
399: 1 -> where
400: 1 -> while
401: 1 -> white
402: 1 -> whole
403: 1 -> whom
404: 1 -> wild
405: 1 -> will
406: 1 -> win
407: 1 -> window
408: 1 -> word
409: 1 -> words
410: 1 -> worry
411: 1 -> worse
412: 1 -> would
413: 1 -> wrong
414: 1 -> yankee
415: 1 -> you
416: 1 -> you're
417: 1 -> younger
418: 1 -> yulka
-------
716
SUBSTITUTIONS Total (1658)
With >= 1 occurrences (1658)
1: 75 -> in
2: 53 -> and
3: 45 -> a
4: 42 -> the
5: 17 -> an
6: 17 -> is
7: 15 -> his
8: 14 -> as
9: 14 -> bozzle
10: 13 -> to
11: 12 -> it
12: 12 -> on
13: 11 -> of
14: 10 -> flour
15: 9 -> bartley
16: 9 -> meekin
17: 9 -> or
18: 9 -> there
19: 8 -> carrie
20: 8 -> he
21: 8 -> o
22: 8 -> that
23: 8 -> this
24: 7 -> burgess
25: 7 -> for
26: 7 -> macklewain
27: 7 -> our
28: 7 -> phoebe
29: 6 -> are
30: 6 -> had
31: 6 -> hilda
32: 6 -> i'm
33: 6 -> kaliko
34: 6 -> randal
35: 6 -> trevelyan
36: 6 -> would
37: 5 -> all
38: 5 -> ann
39: 5 -> at
40: 5 -> ay
41: 5 -> claudia
42: 5 -> criss
43: 5 -> deucalion
44: 5 -> honor
45: 5 -> one
46: 5 -> their
47: 5 -> was
48: 5 -> when
49: 5 -> with
50: 4 -> clarke
51: 4 -> colored
52: 4 -> cross
53: 4 -> gray
54: 4 -> grethel
55: 4 -> gryce
56: 4 -> jem
57: 4 -> kearny
58: 4 -> lige
59: 4 -> made
60: 4 -> magpie
61: 4 -> michaelis
62: 4 -> minnetaki
63: 4 -> no
64: 4 -> otto
65: 4 -> shasta
66: 4 -> sole
67: 4 -> sydenham
68: 4 -> tad
69: 4 -> then
70: 4 -> thing
71: 4 -> two
72: 3 -> abalone's
73: 3 -> am
74: 3 -> ann's
75: 3 -> any
76: 3 -> anyone
77: 3 -> b
78: 3 -> blessed
79: 3 -> boys
80: 3 -> brau
81: 3 -> butte
82: 3 -> color
83: 3 -> d'avrigny
84: 3 -> desk
85: 3 -> field
86: 3 -> four
87: 3 -> fuchs
88: 3 -> full
89: 3 -> has
90: 3 -> have
91: 3 -> how
92: 3 -> into
93: 3 -> iona
94: 3 -> kirkland
95: 3 -> labours
96: 3 -> lassen's
97: 3 -> lattimer
98: 3 -> lie
99: 3 -> mantel
100: 3 -> nestorius
101: 3 -> noirtier
102: 3 -> nuova
103: 3 -> out
104: 3 -> pigeon
105: 3 -> pyncheon
106: 3 -> quenelles
107: 3 -> quilter
108: 3 -> seeing
109: 3 -> snellings
110: 3 -> sombrero
111: 3 -> southwark
112: 3 -> stacy
113: 3 -> sydney
114: 3 -> terrorist
115: 3 -> theatre
116: 3 -> them
117: 3 -> they're
118: 3 -> through
119: 3 -> time
120: 3 -> week
121: 3 -> were
122: 3 -> what's
123: 3 -> who
124: 3 -> you
125: 3 -> your
126: 2 -> abalone
127: 2 -> again
128: 2 -> alexandria
129: 2 -> allspice
130: 2 -> amount
131: 2 -> asked
132: 2 -> asparagus
133: 2 -> assault
134: 2 -> away
135: 2 -> awhile
136: 2 -> bambeday
137: 2 -> battlefields
138: 2 -> beenie
139: 2 -> beg
140: 2 -> bell
141: 2 -> board
142: 2 -> bordeaux
143: 2 -> borders
144: 2 -> bough
145: 2 -> bur
146: 2 -> buren
147: 2 -> but
148: 2 -> call
149: 2 -> called
150: 2 -> can
151: 2 -> cauliflower
152: 2 -> cease
153: 2 -> center
154: 2 -> chanticleer
155: 2 -> chef
156: 2 -> clarets
157: 2 -> clear
158: 2 -> cold
159: 2 -> colors
160: 2 -> confluence
161: 2 -> confounded
162: 2 -> coralie
163: 2 -> crumpets
164: 2 -> cuisine
165: 2 -> cyril
166: 2 -> daguerreotype
167: 2 -> daguerreotypist
168: 2 -> deaf
169: 2 -> dorriforth
170: 2 -> drizzle
171: 2 -> drouet
172: 2 -> drouet's
173: 2 -> dude
174: 2 -> dulcinea
175: 2 -> em
176: 2 -> enquired
177: 2 -> ever
178: 2 -> except
179: 2 -> faber
180: 2 -> favour
181: 2 -> favourite
182: 2 -> fetid
183: 2 -> filing
184: 2 -> flavour
185: 2 -> flog
186: 2 -> fond
187: 2 -> forcemeat
188: 2 -> fulfill
189: 2 -> gentlemen
190: 2 -> give
191: 2 -> gloria
192: 2 -> gondola
193: 2 -> gregor
194: 2 -> gwynplaine
195: 2 -> hanson
196: 2 -> hearts
197: 2 -> heidelberg
198: 2 -> hepzibah
199: 2 -> hepzibah's
200: 2 -> hide
201: 2 -> hilda's
202: 2 -> hof
203: 2 -> huh
204: 2 -> i'll
205: 2 -> i've
206: 2 -> if
207: 2 -> impassible
208: 2 -> inclosure
209: 2 -> instalments
210: 2 -> iota
211: 2 -> it's
212: 2 -> julian
213: 2 -> karl
214: 2 -> labourers
215: 2 -> laugh'd
216: 2 -> law
217: 2 -> le
218: 2 -> leaven
219: 2 -> led
220: 2 -> left
221: 2 -> logos
222: 2 -> looked
223: 2 -> love
224: 2 -> lower
225: 2 -> lumpy
226: 2 -> mac
227: 2 -> macpherson
228: 2 -> madge
229: 2 -> madison
230: 2 -> magazzino
231: 2 -> mainhall
232: 2 -> mama
233: 2 -> managerial
234: 2 -> materialised
235: 2 -> me
236: 2 -> mezzanine
237: 2 -> might
238: 2 -> moulds
239: 2 -> mule's
240: 2 -> murfreesboro
241: 2 -> my
242: 2 -> nearby
243: 2 -> neighbors
244: 2 -> nest
245: 2 -> newsome
246: 2 -> newsome's
247: 2 -> occult
248: 2 -> ogden
249: 2 -> ossipon
250: 2 -> ossipon's
251: 2 -> over
252: 2 -> pass
253: 2 -> pavel
254: 2 -> peel
255: 2 -> perfunctorily
256: 2 -> pitt
257: 2 -> poniard
258: 2 -> praefect
259: 2 -> program
260: 2 -> put
261: 2 -> pyrrha
262: 2 -> quandary
263: 2 -> randal's
264: 2 -> realise
265: 2 -> recognising
266: 2 -> recognized
267: 2 -> rector's
268: 2 -> regent's
269: 2 -> requested
270: 2 -> resident
271: 2 -> rhein
272: 2 -> ring
273: 2 -> round
274: 2 -> run
275: 2 -> russian
276: 2 -> said
277: 2 -> saint
278: 2 -> sauterne
279: 2 -> saw
280: 2 -> say
281: 2 -> sectaries
282: 2 -> seem
283: 2 -> shell
284: 2 -> shot
285: 2 -> sighs
286: 2 -> simmonds
287: 2 -> since
288: 2 -> skinny
289: 2 -> so
290: 2 -> someone
291: 2 -> splendour
292: 2 -> spread
293: 2 -> stand
294: 2 -> sue
295: 2 -> sufferin
296: 2 -> sun
297: 2 -> sutter
298: 2 -> sydney's
299: 2 -> syrtis
300: 2 -> tablespoons
301: 2 -> terra
302: 2 -> thee
303: 2 -> therein
304: 2 -> they
305: 2 -> tide
306: 2 -> touched
307: 2 -> tourmaline
308: 2 -> troke
309: 2 -> udder
310: 2 -> v
311: 2 -> vague
312: 2 -> valkyrie
313: 2 -> vapours
314: 2 -> vigour
315: 2 -> vinos
316: 2 -> wabigoon's
317: 2 -> walks
318: 2 -> war
319: 2 -> we
320: 2 -> we've
321: 2 -> well
322: 2 -> wert
323: 2 -> who's
324: 2 -> wide
325: 2 -> wine
326: 2 -> winked
327: 2 -> within
328: 2 -> yankees
329: 2 -> yeast
330: 2 -> you'll
331: 2 -> yundt
332: 1 -> abbess
333: 1 -> abbot
334: 1 -> abjured
335: 1 -> abode
336: 1 -> about
337: 1 -> above
338: 1 -> abundant
339: 1 -> accessories
340: 1 -> account
341: 1 -> ache
342: 1 -> adamnan
343: 1 -> add
344: 1 -> admire
345: 1 -> adrift
346: 1 -> adventuring
347: 1 -> adventurous
348: 1 -> advise
349: 1 -> aeons
350: 1 -> afoot
351: 1 -> africanus
352: 1 -> age
353: 1 -> agglomerations
354: 1 -> agreed
355: 1 -> aidan
356: 1 -> ain't
357: 1 -> algae
358: 1 -> algebra
359: 1 -> allow
360: 1 -> allurement
361: 1 -> allurements
362: 1 -> almoner
363: 1 -> already
364: 1 -> always
365: 1 -> amazed
366: 1 -> ambulance
367: 1 -> ambulances
368: 1 -> amenities
369: 1 -> amusing
370: 1 -> anachronisms
371: 1 -> analogy
372: 1 -> analyses
373: 1 -> animals
374: 1 -> announced
375: 1 -> announcement
376: 1 -> ants
377: 1 -> apiece
378: 1 -> apollinaris
379: 1 -> apostle
380: 1 -> apostles
381: 1 -> applaud
382: 1 -> applauded
383: 1 -> appointed
384: 1 -> appropriate
385: 1 -> appropriating
386: 1 -> approve
387: 1 -> arabesque
388: 1 -> arch
389: 1 -> archaeology
390: 1 -> arched
391: 1 -> arcturus
392: 1 -> ardour
393: 1 -> arians
394: 1 -> arkansas
395: 1 -> armine
396: 1 -> aroma
397: 1 -> artists
398: 1 -> ascended
399: 1 -> aside
400: 1 -> aslant
401: 1 -> asperity
402: 1 -> asplenium
403: 1 -> ass
404: 1 -> assent
405: 1 -> assiniboine
406: 1 -> assured
407: 1 -> asthma
408: 1 -> astir
409: 1 -> astride
410: 1 -> asura
411: 1 -> ate
412: 1 -> athanasius
413: 1 -> atlanta
414: 1 -> attendance
415: 1 -> attended
416: 1 -> attested
417: 1 -> august
418: 1 -> aunt
419: 1 -> austrian
420: 1 -> auto
421: 1 -> autobiography
422: 1 -> automaton
423: 1 -> autumn
424: 1 -> auxiliaries
425: 1 -> awakened
426: 1 -> backed
427: 1 -> bag
428: 1 -> balvastro
429: 1 -> ban
430: 1 -> banjo
431: 1 -> bank
432: 1 -> barcelona
433: 1 -> basement
434: 1 -> battlefield
435: 1 -> baulked
436: 1 -> bayoneted
437: 1 -> be
438: 1 -> bean
439: 1 -> bear
440: 1 -> beauregard
441: 1 -> been
442: 1 -> being
443: 1 -> bel
444: 1 -> believing
445: 1 -> belisarius
446: 1 -> belli
447: 1 -> bennet
448: 1 -> bennydeck
449: 1 -> bergez
450: 1 -> beseech
451: 1 -> bestia
452: 1 -> betsy
453: 1 -> bhunda
454: 1 -> binds
455: 1 -> bipeds
456: 1 -> birdikins
457: 1 -> birdlike
458: 1 -> birket
459: 1 -> birthday
460: 1 -> bivouac
461: 1 -> blanco's
462: 1 -> blasphemous
463: 1 -> bleating
464: 1 -> bled
465: 1 -> blemmyes
466: 1 -> blue
467: 1 -> bluebells
468: 1 -> blunderbuss
469: 1 -> boards
470: 1 -> boats
471: 1 -> body
472: 1 -> bond
473: 1 -> borrowing
474: 1 -> both
475: 1 -> boughs
476: 1 -> boulders
477: 1 -> bouquet
478: 1 -> bozzle's
479: 1 -> brand
480: 1 -> brandd
481: 1 -> brazen
482: 1 -> breadhouse
483: 1 -> break
484: 1 -> breakup
485: 1 -> breastworks
486: 1 -> breath
487: 1 -> bremer
488: 1 -> brigade
489: 1 -> bright
490: 1 -> bright's
491: 1 -> brine
492: 1 -> brion
493: 1 -> broad
494: 1 -> brown
495: 1 -> brush
496: 1 -> buckinghamshire
497: 1 -> bugbears
498: 1 -> bui
499: 1 -> bunch
500: 1 -> buns
501: 1 -> burden
502: 1 -> burgoynes
503: 1 -> burros
504: 1 -> bursts
505: 1 -> bush'
506: 1 -> buttermilk
507: 1 -> buttoned
508: 1 -> buttony
509: 1 -> buzzer's
510: 1 -> by
511: 1 -> cadence
512: 1 -> caisson
513: 1 -> cake
514: 1 -> calculus
515: 1 -> calico
516: 1 -> callimachus
517: 1 -> cancer
518: 1 -> candied
519: 1 -> cannibalistic
520: 1 -> canterbury
521: 1 -> canyou
522: 1 -> cape
523: 1 -> capitol
524: 1 -> captains
525: 1 -> captious
526: 1 -> captured
527: 1 -> caravan
528: 1 -> caring
529: 1 -> carrot
530: 1 -> cascaded
531: 1 -> casserole
532: 1 -> castanet
533: 1 -> caste
534: 1 -> casts
535: 1 -> casus
536: 1 -> cat
537: 1 -> catalan
538: 1 -> ceiling
539: 1 -> celestine
540: 1 -> centaur
541: 1 -> cerinthus
542: 1 -> chaba
543: 1 -> chablis
544: 1 -> chand
545: 1 -> chapter
546: 1 -> charmed
547: 1 -> chattahoochee
548: 1 -> cheatham
549: 1 -> check
550: 1 -> chefs
551: 1 -> cheroot
552: 1 -> chestnut
553: 1 -> child
554: 1 -> child's
555: 1 -> chiselled
556: 1 -> chorus
557: 1 -> christi
558: 1 -> chrysostom
559: 1 -> churchwardens
560: 1 -> citric
561: 1 -> clamour
562: 1 -> claret
563: 1 -> claus
564: 1 -> clergymen
565: 1 -> clews
566: 1 -> climbers
567: 1 -> clothed
568: 1 -> cloves
569: 1 -> clump
570: 1 -> coal
571: 1 -> coarse
572: 1 -> collander
573: 1 -> colloquial
574: 1 -> columns
575: 1 -> come
576: 1 -> comedian
577: 1 -> commandant's
578: 1 -> comrade
579: 1 -> concentrating
580: 1 -> conclude
581: 1 -> congal
582: 1 -> congal's
583: 1 -> conjured
584: 1 -> conjurers
585: 1 -> conjures
586: 1 -> connell
587: 1 -> connell's
588: 1 -> conscience
589: 1 -> constancy
590: 1 -> constraint
591: 1 -> contemplative
592: 1 -> continue
593: 1 -> conventicles
594: 1 -> convolvulus
595: 1 -> cookery
596: 1 -> copyright
597: 1 -> corncakes
598: 1 -> corner
599: 1 -> cornucopias
600: 1 -> county
601: 1 -> coupons
602: 1 -> courage
603: 1 -> courier
604: 1 -> covering
605: 1 -> cowboy
606: 1 -> cowmen
607: 1 -> cowpunchers
608: 1 -> crawfish
609: 1 -> creeters
610: 1 -> crevassed
611: 1 -> crispness
612: 1 -> crown
613: 1 -> cruder
614: 1 -> cruise
615: 1 -> curer
616: 1 -> curley
617: 1 -> currant
618: 1 -> currants
619: 1 -> customary
620: 1 -> cynthy
621: 1 -> dalliance
622: 1 -> damson
623: 1 -> dante
624: 1 -> dante's
625: 1 -> darfhulva
626: 1 -> dashed
627: 1 -> dauntless
628: 1 -> david
629: 1 -> day's
630: 1 -> deadly
631: 1 -> death
632: 1 -> declamations
633: 1 -> declaring
634: 1 -> decorum
635: 1 -> deep
636: 1 -> deer
637: 1 -> defective
638: 1 -> degenerate
639: 1 -> delaunay's
640: 1 -> delectasti
641: 1 -> delia's
642: 1 -> delight
643: 1 -> deluge
644: 1 -> dene
645: 1 -> dependents
646: 1 -> derisive
647: 1 -> des
648: 1 -> despatched
649: 1 -> destructible
650: 1 -> detach
651: 1 -> detective
652: 1 -> detective's
653: 1 -> determine
654: 1 -> detroit
655: 1 -> develop
656: 1 -> devil
657: 1 -> dhourra
658: 1 -> diced
659: 1 -> difficulty
660: 1 -> diocese
661: 1 -> disdain
662: 1 -> disdainful
663: 1 -> disdainfully
664: 1 -> disheartened
665: 1 -> dishes
666: 1 -> dismay
667: 1 -> dispatch
668: 1 -> dispatched
669: 1 -> distaff
670: 1 -> distinguishing
671: 1 -> divide
672: 1 -> divorced
673: 1 -> docetes
674: 1 -> docile
675: 1 -> dock
676: 1 -> doing
677: 1 -> dole
678: 1 -> done
679: 1 -> door
680: 1 -> dormitories
681: 1 -> dowle
682: 1 -> down
683: 1 -> dowson
684: 1 -> drachm
685: 1 -> drafted
686: 1 -> drawer
687: 1 -> drawing
688: 1 -> dress
689: 1 -> dressed
690: 1 -> dropping
691: 1 -> dug
692: 1 -> dugout
693: 1 -> dummy's
694: 1 -> dyed
695: 1 -> e
696: 1 -> e'er
697: 1 -> ear
698: 1 -> ease
699: 1 -> ebionites
700: 1 -> editions
701: 1 -> education
702: 1 -> ef
703: 1 -> eggs
704: 1 -> eh
705: 1 -> elbe
706: 1 -> electronic
707: 1 -> ellis
708: 1 -> embezzlement
709: 1 -> embraced
710: 1 -> emerald
711: 1 -> emotions
712: 1 -> emphasised
713: 1 -> end
714: 1 -> endeavors
715: 1 -> endeavoured
716: 1 -> endorses
717: 1 -> enjoining
718: 1 -> enjoy
719: 1 -> entreaty
720: 1 -> epicurism
721: 1 -> epilobium
722: 1 -> epistle
723: 1 -> epoch
724: 1 -> erewhile
725: 1 -> erewhon
726: 1 -> eskimos
727: 1 -> esther
728: 1 -> etched
729: 1 -> eternities
730: 1 -> ethereal
731: 1 -> ever'body
732: 1 -> everyday
733: 1 -> everyone
734: 1 -> ewes
735: 1 -> exclaimed
736: 1 -> exempt
737: 1 -> exprest
738: 1 -> extenuating
739: 1 -> eyes
740: 1 -> face
741: 1 -> facing
742: 1 -> factor's
743: 1 -> faintheartedness
744: 1 -> fairs
745: 1 -> fakirs
746: 1 -> fallacy
747: 1 -> farther
748: 1 -> fate
749: 1 -> fated
750: 1 -> father
751: 1 -> fault
752: 1 -> features
753: 1 -> fed
754: 1 -> feelings
755: 1 -> feet
756: 1 -> felicitous
757: 1 -> fell
758: 1 -> fencing
759: 1 -> fermented
760: 1 -> ferry
761: 1 -> festive
762: 1 -> fetes
763: 1 -> feud
764: 1 -> fevered
765: 1 -> fibi
766: 1 -> fifth
767: 1 -> filch
768: 1 -> fillmore
769: 1 -> finely
770: 1 -> fingernail
771: 1 -> finnacta
772: 1 -> fir
773: 1 -> fire
774: 1 -> firing
775: 1 -> first
776: 1 -> fish
777: 1 -> fjord
778: 1 -> fjordungr
779: 1 -> foetus
780: 1 -> follow
781: 1 -> followers
782: 1 -> force
783: 1 -> forecourt
784: 1 -> forested
785: 1 -> forests
786: 1 -> forever
787: 1 -> formed
788: 1 -> fort
789: 1 -> forward
790: 1 -> fountains
791: 1 -> fraid
792: 1 -> franks
793: 1 -> free
794: 1 -> fretting
795: 1 -> friends
796: 1 -> frierson's
797: 1 -> from
798: 1 -> fun
799: 1 -> furnishing
800: 1 -> gage
801: 1 -> gait
802: 1 -> gang
803: 1 -> ganny
804: 1 -> gardar
805: 1 -> garden
806: 1 -> garish
807: 1 -> garnered
808: 1 -> gas
809: 1 -> gasped
810: 1 -> gayety
811: 1 -> gesticulating
812: 1 -> get
813: 1 -> getting
814: 1 -> ghoul
815: 1 -> gifts
816: 1 -> gillian
817: 1 -> gingle
818: 1 -> girls
819: 1 -> gladden's
820: 1 -> glared
821: 1 -> gleamed
822: 1 -> gloat
823: 1 -> glorious
824: 1 -> glycerin
825: 1 -> godhead
826: 1 -> going
827: 1 -> gong
828: 1 -> gossoons
829: 1 -> gothic
830: 1 -> gourmets
831: 1 -> grandam
832: 1 -> grandparents
833: 1 -> grant
834: 1 -> grate
835: 1 -> grave
836: 1 -> great
837: 1 -> greatness
838: 1 -> greed
839: 1 -> grey
840: 1 -> grinding
841: 1 -> grocers
842: 1 -> grosser
843: 1 -> growing
844: 1 -> grub
845: 1 -> guards
846: 1 -> guides
847: 1 -> gully
848: 1 -> gymnast
849: 1 -> haddock
850: 1 -> hair
851: 1 -> half
852: 1 -> halfpenny
853: 1 -> halleck
854: 1 -> hamer
855: 1 -> han
856: 1 -> hand's
857: 1 -> hands
858: 1 -> hangar
859: 1 -> hansel
860: 1 -> happen
861: 1 -> happened
862: 1 -> happy
863: 1 -> hard
864: 1 -> hardier
865: 1 -> harry's
866: 1 -> harvest
867: 1 -> hatchie
868: 1 -> hath
869: 1 -> haven't
870: 1 -> he's
871: 1 -> headlong
872: 1 -> heads
873: 1 -> hear
874: 1 -> hears
875: 1 -> heart's
876: 1 -> height
877: 1 -> heinous
878: 1 -> helicon
879: 1 -> hepsey
880: 1 -> her
881: 1 -> her's
882: 1 -> herbivore
883: 1 -> here
884: 1 -> heroic
885: 1 -> herself
886: 1 -> heuchera
887: 1 -> hew
888: 1 -> hi
889: 1 -> him
890: 1 -> hissed
891: 1 -> hochheimer
892: 1 -> hoe
893: 1 -> holders
894: 1 -> holgrave
895: 1 -> holiness
896: 1 -> homecoming
897: 1 -> homo
898: 1 -> homoiousios
899: 1 -> homoousios
900: 1 -> hon
901: 1 -> honored
902: 1 -> honourable
903: 1 -> hospitable
904: 1 -> hovel
905: 1 -> howls
906: 1 -> hows
907: 1 -> hugh's
908: 1 -> hulking
909: 1 -> hull
910: 1 -> humble
911: 1 -> humor
912: 1 -> hypatia
913: 1 -> i
914: 1 -> ice
915: 1 -> icelandic
916: 1 -> idealisation
917: 1 -> idiom
918: 1 -> idylls
919: 1 -> il
920: 1 -> illinois
921: 1 -> illusion
922: 1 -> impale
923: 1 -> impara
924: 1 -> impassibility
925: 1 -> impertinence
926: 1 -> impetuous
927: 1 -> impost
928: 1 -> impulses
929: 1 -> incarnation
930: 1 -> incipient
931: 1 -> indecision
932: 1 -> indignation
933: 1 -> inexhausted
934: 1 -> infants
935: 1 -> infuses
936: 1 -> ingratiation
937: 1 -> inhale
938: 1 -> iniquitous
939: 1 -> inkling
940: 1 -> inn
941: 1 -> inroad
942: 1 -> inserting
943: 1 -> instant
944: 1 -> instead
945: 1 -> instill
946: 1 -> instrument
947: 1 -> insuperable
948: 1 -> interested
949: 1 -> interests
950: 1 -> intermezzo
951: 1 -> intimidated
952: 1 -> introduces
953: 1 -> ireful
954: 1 -> irolg
955: 1 -> isidore
956: 1 -> isn't
957: 1 -> italians
958: 1 -> ithaca
959: 1 -> jack's
960: 1 -> jem's
961: 1 -> jimmie
962: 1 -> jingo
963: 1 -> johnston
964: 1 -> kate's
965: 1 -> key
966: 1 -> khosala
967: 1 -> kinship
968: 1 -> kirkleatham
969: 1 -> knapsacks
970: 1 -> kneading
971: 1 -> knight
972: 1 -> knitted
973: 1 -> lacrima
974: 1 -> lad
975: 1 -> ladder
976: 1 -> lamb
977: 1 -> lamp
978: 1 -> lands
979: 1 -> largess
980: 1 -> larvae
981: 1 -> lashes
982: 1 -> late
983: 1 -> latter
984: 1 -> lattice
985: 1 -> layer
986: 1 -> lean
987: 1 -> leaped
988: 1 -> learned
989: 1 -> leash
990: 1 -> leather
991: 1 -> leave
992: 1 -> leaves
993: 1 -> lee
994: 1 -> leetle
995: 1 -> leighton's
996: 1 -> lemon
997: 1 -> lend
998: 1 -> leonidas
999: 1 -> lets
1000: 1 -> levelled
1001: 1 -> libano
1002: 1 -> lice
1003: 1 -> light
1004: 1 -> lighter
1005: 1 -> like
1006: 1 -> limb
1007: 1 -> line
1008: 1 -> linnell's
1009: 1 -> lisha
1010: 1 -> listen
1011: 1 -> live
1012: 1 -> liveryman
1013: 1 -> lizy
1014: 1 -> loafing
1015: 1 -> loathe
1016: 1 -> loft
1017: 1 -> loincloth
1018: 1 -> lombroso
1019: 1 -> long
1020: 1 -> look
1021: 1 -> look'd
1022: 1 -> looketh
1023: 1 -> loved
1024: 1 -> lover
1025: 1 -> lovest
1026: 1 -> lugubrious
1027: 1 -> lust
1028: 1 -> luxuriate
1029: 1 -> lycophron
1030: 1 -> lying
1031: 1 -> lyric
1032: 1 -> mackerel
1033: 1 -> macklewain's
1034: 1 -> maidenly
1035: 1 -> mainly
1036: 1 -> make
1037: 1 -> makers
1038: 1 -> mall
1039: 1 -> mammal
1040: 1 -> man
1041: 1 -> manichaeans
1042: 1 -> manipulators
1043: 1 -> marjoram
1044: 1 -> mark
1045: 1 -> marriage
1046: 1 -> marry
1047: 1 -> marvel
1048: 1 -> masts
1049: 1 -> matchmaking
1050: 1 -> matter
1051: 1 -> may
1052: 1 -> maybe
1053: 1 -> mayonnaise
1054: 1 -> mc
1055: 1 -> meads
1056: 1 -> means
1057: 1 -> meat
1058: 1 -> mebby
1059: 1 -> medals
1060: 1 -> meddle
1061: 1 -> meet
1062: 1 -> megaphone
1063: 1 -> mell
1064: 1 -> men
1065: 1 -> men's
1066: 1 -> mens
1067: 1 -> menus
1068: 1 -> mercurial
1069: 1 -> messengers
1070: 1 -> messiah
1071: 1 -> messrs
1072: 1 -> metal
1073: 1 -> mien
1074: 1 -> milborough
1075: 1 -> milder
1076: 1 -> mildew
1077: 1 -> millet
1078: 1 -> mince
1079: 1 -> mines
1080: 1 -> mint
1081: 1 -> mirabel
1082: 1 -> moan
1083: 1 -> modoc
1084: 1 -> modocs
1085: 1 -> moines
1086: 1 -> moira
1087: 1 -> moling
1088: 1 -> moluccas
1089: 1 -> mom
1090: 1 -> monstrously
1091: 1 -> monte
1092: 1 -> moraine
1093: 1 -> morality
1094: 1 -> moribund
1095: 1 -> morrel
1096: 1 -> mortar
1097: 1 -> morven
1098: 1 -> moselle
1099: 1 -> mosses
1100: 1 -> mother
1101: 1 -> mould
1102: 1 -> mount
1103: 1 -> mountebank
1104: 1 -> moving
1105: 1 -> mowed
1106: 1 -> muleteers
1107: 1 -> mulrady
1108: 1 -> mundane
1109: 1 -> mural
1110: 1 -> myrdals
1111: 1 -> nager
1112: 1 -> narrow
1113: 1 -> nation
1114: 1 -> near
1115: 1 -> neath
1116: 1 -> necromancy
1117: 1 -> need'st
1118: 1 -> neighbor
1119: 1 -> neighborly
1120: 1 -> new
1121: 1 -> newberg
1122: 1 -> newscasts
1123: 1 -> nicless
1124: 1 -> night
1125: 1 -> nomes
1126: 1 -> noontide
1127: 1 -> nor
1128: 1 -> north
1129: 1 -> northwestward
1130: 1 -> not
1131: 1 -> notice
1132: 1 -> novatians
1133: 1 -> now
1134: 1 -> nowhere
1135: 1 -> numbness
1136: 1 -> o'farrell
1137: 1 -> objective
1138: 1 -> objects
1139: 1 -> oblations
1140: 1 -> obscure
1141: 1 -> odd
1142: 1 -> odeon
1143: 1 -> off
1144: 1 -> offences
1145: 1 -> officinale
1146: 1 -> oh
1147: 1 -> olbinett
1148: 1 -> old
1149: 1 -> omnipotence
1150: 1 -> oppressed
1151: 1 -> orbit
1152: 1 -> order
1153: 1 -> orders
1154: 1 -> orestes
1155: 1 -> originally
1156: 1 -> other
1157: 1 -> others
1158: 1 -> ounce
1159: 1 -> outfit
1160: 1 -> overnight
1161: 1 -> pales
1162: 1 -> palimpsest
1163: 1 -> pall
1164: 1 -> pampas
1165: 1 -> pane
1166: 1 -> pangs
1167: 1 -> panting
1168: 1 -> papa's
1169: 1 -> pardon
1170: 1 -> parlor
1171: 1 -> parrishes
1172: 1 -> past
1173: 1 -> path
1174: 1 -> patients
1175: 1 -> pays
1176: 1 -> pell
1177: 1 -> pelusium
1178: 1 -> penitentiary
1179: 1 -> perdition
1180: 1 -> perform
1181: 1 -> pestle
1182: 1 -> petronels
1183: 1 -> ph
1184: 1 -> phantasies
1185: 1 -> phantasy
1186: 1 -> phenomenon
1187: 1 -> philadelphus
1188: 1 -> philly's
1189: 1 -> pi
1190: 1 -> picket
1191: 1 -> pickled
1192: 1 -> piece
1193: 1 -> piglike
1194: 1 -> pigstye
1195: 1 -> pillows
1196: 1 -> pin
1197: 1 -> pinch
1198: 1 -> pinned
1199: 1 -> pint
1200: 1 -> pinyon
1201: 1 -> pioneer
1202: 1 -> piped
1203: 1 -> place
1204: 1 -> plain
1205: 1 -> plains
1206: 1 -> plaiting
1207: 1 -> plaits
1208: 1 -> plane
1209: 1 -> plants
1210: 1 -> plashing
1211: 1 -> please
1212: 1 -> pleased
1213: 1 -> pleroma
1214: 1 -> ploughed
1215: 1 -> plumb
1216: 1 -> poem
1217: 1 -> poems
1218: 1 -> poison
1219: 1 -> polar
1220: 1 -> polytheists
1221: 1 -> pommel
1222: 1 -> pong
1223: 1 -> ponies
1224: 1 -> pony
1225: 1 -> poorer
1226: 1 -> popcorn
1227: 1 -> popolo
1228: 1 -> pores
1229: 1 -> poring
1230: 1 -> port
1231: 1 -> portmanteau
1232: 1 -> portraits
1233: 1 -> possess'd
1234: 1 -> pour
1235: 1 -> pout
1236: 1 -> powell
1237: 1 -> power
1238: 1 -> pravity
1239: 1 -> preceding
1240: 1 -> pressed
1241: 1 -> pretender
1242: 1 -> prices
1243: 1 -> primavera
1244: 1 -> primroses
1245: 1 -> princess
1246: 1 -> prison
1247: 1 -> proceeds
1248: 1 -> profit
1249: 1 -> programs
1250: 1 -> proletariat
1251: 1 -> prometheus
1252: 1 -> promised
1253: 1 -> prophets
1254: 1 -> prose
1255: 1 -> proselytes
1256: 1 -> proserpina
1257: 1 -> psalm
1258: 1 -> ptolemy
1259: 1 -> puerile
1260: 1 -> pumpkin
1261: 1 -> pungent
1262: 1 -> putting
1263: 1 -> pyre
1264: 1 -> quarters
1265: 1 -> quilter's
1266: 1 -> quinci
1267: 1 -> race
1268: 1 -> racked
1269: 1 -> rain
1270: 1 -> rainstorms
1271: 1 -> ran
1272: 1 -> rangitata
1273: 1 -> rapine
1274: 1 -> rath
1275: 1 -> rathskellers
1276: 1 -> razetta
1277: 1 -> re
1278: 1 -> read
1279: 1 -> reals
1280: 1 -> reappear
1281: 1 -> reeling
1282: 1 -> reigned
1283: 1 -> rein
1284: 1 -> reincarnation
1285: 1 -> remembered
1286: 1 -> remote
1287: 1 -> repaired
1288: 1 -> repertory
1289: 1 -> reposing
1290: 1 -> resign'd
1291: 1 -> resort
1292: 1 -> revelling
1293: 1 -> reverence
1294: 1 -> rex
1295: 1 -> rheumatic
1296: 1 -> rhodes
1297: 1 -> rhythmically
1298: 1 -> rictus
1299: 1 -> ride
1300: 1 -> rider
1301: 1 -> riders
1302: 1 -> ridicule
1303: 1 -> riding
1304: 1 -> rigid
1305: 1 -> rites
1306: 1 -> riverlike
1307: 1 -> roads
1308: 1 -> roared
1309: 1 -> roast
1310: 1 -> rock
1311: 1 -> rocket
1312: 1 -> rocks
1313: 1 -> rod
1314: 1 -> roguish
1315: 1 -> rolls
1316: 1 -> root
1317: 1 -> rose
1318: 1 -> rosebush
1319: 1 -> rosecrans
1320: 1 -> rossetti
1321: 1 -> rounded
1322: 1 -> roundel
1323: 1 -> rousing
1324: 1 -> rout
1325: 1 -> ruggedo
1326: 1 -> ruggedo's
1327: 1 -> ruled
1328: 1 -> rut
1329: 1 -> sailor's
1330: 1 -> saknussemm
1331: 1 -> salt
1332: 1 -> salted
1333: 1 -> sana
1334: 1 -> sanum
1335: 1 -> satisfier
1336: 1 -> savour
1337: 1 -> says
1338: 1 -> scalp
1339: 1 -> scantily
1340: 1 -> scattering
1341: 1 -> scheiler
1342: 1 -> schools
1343: 1 -> score
1344: 1 -> scrubbed
1345: 1 -> sculpturing
1346: 1 -> scum
1347: 1 -> sea
1348: 1 -> sear
1349: 1 -> secesh
1350: 1 -> second's
1351: 1 -> seeds
1352: 1 -> seen
1353: 1 -> sees
1354: 1 -> self
1355: 1 -> selves
1356: 1 -> semester
1357: 1 -> sensed
1358: 1 -> sent
1359: 1 -> serapion
1360: 1 -> serge
1361: 1 -> serious
1362: 1 -> servant
1363: 1 -> set
1364: 1 -> settler
1365: 1 -> sheds
1366: 1 -> shew
1367: 1 -> shiloh
1368: 1 -> shimerda
1369: 1 -> should
1370: 1 -> shouldered
1371: 1 -> show
1372: 1 -> showed
1373: 1 -> shut
1374: 1 -> shuts
1375: 1 -> sibyl
1376: 1 -> sidelong
1377: 1 -> sierra
1378: 1 -> similes
1379: 1 -> simpleton
1380: 1 -> singer
1381: 1 -> sins
1382: 1 -> site
1383: 1 -> sixteen
1384: 1 -> size
1385: 1 -> skint
1386: 1 -> slain
1387: 1 -> slaps
1388: 1 -> slater
1389: 1 -> sluicing
1390: 1 -> smart
1391: 1 -> smells
1392: 1 -> smilax
1393: 1 -> smoked
1394: 1 -> snapping
1395: 1 -> snows
1396: 1 -> sober
1397: 1 -> sold
1398: 1 -> soldier
1399: 1 -> solemn
1400: 1 -> solve
1401: 1 -> sonnet
1402: 1 -> sorghum
1403: 1 -> sorrows
1404: 1 -> sought
1405: 1 -> soul
1406: 1 -> sounding
1407: 1 -> sow
1408: 1 -> spacious
1409: 1 -> spare
1410: 1 -> speculative
1411: 1 -> spoon
1412: 1 -> spruce
1413: 1 -> sprucewood
1414: 1 -> squashes
1415: 1 -> stationmaster
1416: 1 -> steadily
1417: 1 -> steady
1418: 1 -> stepp'd
1419: 1 -> stept
1420: 1 -> stereos
1421: 1 -> stevie
1422: 1 -> stevie's
1423: 1 -> stirrups
1424: 1 -> stockings
1425: 1 -> stolidly
1426: 1 -> stommick
1427: 1 -> stone's
1428: 1 -> stones
1429: 1 -> stray
1430: 1 -> strewed
1431: 1 -> striving
1432: 1 -> stube
1433: 1 -> stupirti
1434: 1 -> succeed
1435: 1 -> sudvestr
1436: 1 -> suited
1437: 1 -> sundry
1438: 1 -> sunk
1439: 1 -> suns
1440: 1 -> sure
1441: 1 -> surprise
1442: 1 -> surround
1443: 1 -> surrounded
1444: 1 -> survey
1445: 1 -> suspicions
1446: 1 -> sward
1447: 1 -> swarthy
1448: 1 -> sweat
1449: 1 -> sweating
1450: 1 -> sweetwater
1451: 1 -> symbolic
1452: 1 -> synesius's
1453: 1 -> tablespoonful
1454: 1 -> tablespoonfuls
1455: 1 -> tad's
1456: 1 -> tahoe
1457: 1 -> tait
1458: 1 -> takes
1459: 1 -> tally
1460: 1 -> taloned
1461: 1 -> tar
1462: 1 -> tarpaulin
1463: 1 -> tartaric
1464: 1 -> tear
1465: 1 -> tears
1466: 1 -> teaspoonful
1467: 1 -> teeming
1468: 1 -> telecast
1469: 1 -> telemetering
1470: 1 -> television
1471: 1 -> tempered
1472: 1 -> temporary
1473: 1 -> tense
1474: 1 -> terminates
1475: 1 -> terran
1476: 1 -> terro
1477: 1 -> testbridge
1478: 1 -> than
1479: 1 -> thank
1480: 1 -> thanked
1481: 1 -> that'll
1482: 1 -> that's
1483: 1 -> thatched
1484: 1 -> there's
1485: 1 -> therefrom
1486: 1 -> these
1487: 1 -> thick
1488: 1 -> thompson
1489: 1 -> those
1490: 1 -> though
1491: 1 -> thundercloud
1492: 1 -> tiles
1493: 1 -> tilted
1494: 1 -> tirade
1495: 1 -> tokyo
1496: 1 -> tolled
1497: 1 -> tomato
1498: 1 -> tonight
1499: 1 -> tony's
1500: 1 -> too
1501: 1 -> took
1502: 1 -> tops
1503: 1 -> toss
1504: 1 -> touch
1505: 1 -> toward
1506: 1 -> towards
1507: 1 -> towne
1508: 1 -> trading
1509: 1 -> trampe
1510: 1 -> transubstantiation
1511: 1 -> trauma
1512: 1 -> traveled
1513: 1 -> travellers
1514: 1 -> tremble
1515: 1 -> trevelyan's
1516: 1 -> tribe
1517: 1 -> trivialities
1518: 1 -> troop
1519: 1 -> trot's
1520: 1 -> troublemaker
1521: 1 -> troubling
1522: 1 -> trubner
1523: 1 -> true
1524: 1 -> trusses
1525: 1 -> tryst
1526: 1 -> tube
1527: 1 -> tully
1528: 1 -> tumble's
1529: 1 -> tuning
1530: 1 -> tupper
1531: 1 -> tureen
1532: 1 -> turmoil
1533: 1 -> turtle
1534: 1 -> tyrannise
1535: 1 -> una
1536: 1 -> unadorned
1537: 1 -> unburied
1538: 1 -> uncloud
1539: 1 -> undisciplined
1540: 1 -> undivided
1541: 1 -> unfavourable
1542: 1 -> unhurried
1543: 1 -> uninhabitable
1544: 1 -> uninhabited
1545: 1 -> unit
1546: 1 -> unofficial
1547: 1 -> unpalatable
1548: 1 -> unpaved
1549: 1 -> uns
1550: 1 -> unsoldierly
1551: 1 -> unsolved
1552: 1 -> unsteadiness
1553: 1 -> until
1554: 1 -> untruss
1555: 1 -> up
1556: 1 -> upholsterer
1557: 1 -> upon
1558: 1 -> upstairs
1559: 1 -> urania
1560: 1 -> urgent
1561: 1 -> us
1562: 1 -> usurping
1563: 1 -> vain
1564: 1 -> vainly
1565: 1 -> vantages
1566: 1 -> vaunting
1567: 1 -> vegetated
1568: 1 -> vein
1569: 1 -> vendhya
1570: 1 -> vengeful
1571: 1 -> veni
1572: 1 -> veolan
1573: 1 -> verandah
1574: 1 -> vernacular
1575: 1 -> very
1576: 1 -> viands
1577: 1 -> videt
1578: 1 -> villa
1579: 1 -> vintage
1580: 1 -> virgilius
1581: 1 -> virginity
1582: 1 -> virgins
1583: 1 -> vita
1584: 1 -> vittles
1585: 1 -> volatile
1586: 1 -> volume
1587: 1 -> wahiti
1588: 1 -> wakened
1589: 1 -> walnuts
1590: 1 -> wander
1591: 1 -> waned
1592: 1 -> wants
1593: 1 -> wave
1594: 1 -> waverley's
1595: 1 -> wayne
1596: 1 -> wear
1597: 1 -> wears
1598: 1 -> weird
1599: 1 -> weiser
1600: 1 -> wend
1601: 1 -> wept
1602: 1 -> westmere
1603: 1 -> what
1604: 1 -> wheezed
1605: 1 -> whelm
1606: 1 -> where
1607: 1 -> whether
1608: 1 -> whichever
1609: 1 -> while
1610: 1 -> whiplash
1611: 1 -> whirr
1612: 1 -> whisky
1613: 1 -> whole
1614: 1 -> why
1615: 1 -> whys
1616: 1 -> wi
1617: 1 -> widower
1618: 1 -> wielded
1619: 1 -> wildering
1620: 1 -> wilkerson
1621: 1 -> will
1622: 1 -> wilsons
1623: 1 -> wines
1624: 1 -> wink
1625: 1 -> winton
1626: 1 -> womb
1627: 1 -> won
1628: 1 -> wondered
1629: 1 -> woollen
1630: 1 -> woolly
1631: 1 -> woonga
1632: 1 -> woongas
1633: 1 -> words
1634: 1 -> work
1635: 1 -> world's
1636: 1 -> worries
1637: 1 -> worse
1638: 1 -> worshiping
1639: 1 -> worth
1640: 1 -> worthy
1641: 1 -> wrangler
1642: 1 -> wreaths
1643: 1 -> writing
1644: 1 -> wronged
1645: 1 -> wrote
1646: 1 -> wrung
1647: 1 -> wry
1648: 1 -> yank
1649: 1 -> yankee
1650: 1 -> yard
1651: 1 -> years
1652: 1 -> yo
1653: 1 -> yokul
1654: 1 -> yolk
1655: 1 -> you're
1656: 1 -> yulka
1657: 1 -> zepplin
1658: 1 -> zingiber
-------
2563
* NOTE: The 'Substitution' words are those reference words
for which the recognizer supplied an incorrect word.
FALSELY RECOGNIZED Total (1694)
With >= 1 occurrences (1694)
1: 88 -> and
2: 48 -> a
3: 45 -> the
4: 42 -> in
5: 23 -> to
6: 19 -> at
7: 19 -> of
8: 17 -> it
9: 16 -> i
10: 16 -> that
11: 15 -> as
12: 15 -> is
13: 12 -> flower
14: 11 -> oh
15: 11 -> this
16: 8 -> an
17: 8 -> are
18: 8 -> but
19: 8 -> carry
20: 8 -> on
21: 8 -> with
22: 7 -> had
23: 7 -> he
24: 7 -> one
25: 7 -> or
26: 7 -> they
27: 7 -> what
28: 6 -> bossell
29: 6 -> for
30: 6 -> old
31: 6 -> randall
32: 6 -> there
33: 6 -> was
34: 6 -> were
35: 5 -> bartly
36: 5 -> calico
37: 5 -> grace
38: 5 -> have
39: 5 -> honour
40: 5 -> me
41: 5 -> their
42: 5 -> when
43: 5 -> you
44: 4 -> am
45: 4 -> around
46: 4 -> ask
47: 4 -> be
48: 4 -> bow
49: 4 -> clark
50: 4 -> clodia
51: 4 -> crossed
52: 4 -> favor
53: 4 -> grey
54: 4 -> her
55: 4 -> his
56: 4 -> i'm
57: 4 -> into
58: 4 -> its
59: 4 -> jim
60: 4 -> laborers
61: 4 -> laughed
62: 4 -> may
63: 4 -> out
64: 4 -> poor
65: 4 -> soul
66: 4 -> terror
67: 4 -> too
68: 4 -> while
69: 3 -> all
70: 3 -> anything
71: 3 -> basil
72: 3 -> boswell
73: 3 -> burges
74: 3 -> by
75: 3 -> cast
76: 3 -> chris
77: 3 -> door
78: 3 -> ducalion
79: 3 -> folks
80: 3 -> found
81: 3 -> great
82: 3 -> grettel
83: 3 -> has
84: 3 -> here
85: 3 -> house
86: 3 -> larsan's
87: 3 -> like
88: 3 -> marianne's
89: 3 -> mc
90: 3 -> mental
91: 3 -> mikin
92: 3 -> minnetawki
93: 3 -> night
94: 3 -> no
95: 3 -> once
96: 3 -> palm
97: 3 -> pension
98: 3 -> set
99: 3 -> shall
100: 3 -> sidney
101: 3 -> smellings
102: 3 -> some
103: 3 -> ted
104: 3 -> terrace
105: 3 -> them
106: 3 -> trevellion
107: 3 -> weak
108: 3 -> went
109: 3 -> whose
110: 3 -> will
111: 3 -> your
112: 2 -> aboloni
113: 2 -> aboloni's
114: 2 -> anne
115: 2 -> augden
116: 2 -> aye
117: 2 -> barren
118: 2 -> bartlee
119: 2 -> bedtime
120: 2 -> before
121: 2 -> begged
122: 2 -> big
123: 2 -> blest
124: 2 -> boarders
125: 2 -> boat
126: 2 -> bordeau
127: 2 -> box
128: 2 -> boy
129: 2 -> brow
130: 2 -> bush
131: 2 -> bye
132: 2 -> call
133: 2 -> called
134: 2 -> callis
135: 2 -> canals
136: 2 -> choke
137: 2 -> claimed
138: 2 -> clothes
139: 2 -> colour
140: 2 -> coloured
141: 2 -> concounted
142: 2 -> confidence
143: 2 -> course
144: 2 -> day
145: 2 -> de
146: 2 -> deck
147: 2 -> declare
148: 2 -> dream
149: 2 -> dristle
150: 2 -> drua
151: 2 -> during
152: 2 -> enclosure
153: 2 -> everybody
154: 2 -> fall
155: 2 -> favorite
156: 2 -> feat
157: 2 -> feeby
158: 2 -> fetted
159: 2 -> fields
160: 2 -> fileing
161: 2 -> flavor
162: 2 -> flogged
163: 2 -> ford
164: 2 -> forever
165: 2 -> from
166: 2 -> fulfil
167: 2 -> gained
168: 2 -> gentleman
169: 2 -> grape
170: 2 -> ground
171: 2 -> hansen
172: 2 -> headier's
173: 2 -> heart
174: 2 -> helder
175: 2 -> him
176: 2 -> hole
177: 2 -> honorable
178: 2 -> i'd
179: 2 -> i'll
180: 2 -> if
181: 2 -> impassable
182: 2 -> inquired
183: 2 -> installments
184: 2 -> ioda
185: 2 -> it's
186: 2 -> joyous
187: 2 -> julien
188: 2 -> kirklin
189: 2 -> kirny
190: 2 -> laddermer
191: 2 -> lay
192: 2 -> let
193: 2 -> levin
194: 2 -> life
195: 2 -> long
196: 2 -> look
197: 2 -> looked
198: 2 -> lord
199: 2 -> macowaine
200: 2 -> made
201: 2 -> make
202: 2 -> mamma
203: 2 -> man
204: 2 -> mantle
205: 2 -> marianne
206: 2 -> master
207: 2 -> match
208: 2 -> materialized
209: 2 -> meat
210: 2 -> medicine
211: 2 -> men
212: 2 -> menagiary
213: 2 -> miggreggar
214: 2 -> might
215: 2 -> mold
216: 2 -> mount
217: 2 -> mules
218: 2 -> mysterious
219: 2 -> neighbours
220: 2 -> not
221: 2 -> now
222: 2 -> nuisam
223: 2 -> nuison's
224: 2 -> off
225: 2 -> passed
226: 2 -> peal
227: 2 -> pherson
228: 2 -> pile
229: 2 -> pit
230: 2 -> placed
231: 2 -> plans
232: 2 -> prefect
233: 2 -> quandry
234: 2 -> quite
235: 2 -> randall's
236: 2 -> realize
237: 2 -> recognised
238: 2 -> recognizing
239: 2 -> rectors
240: 2 -> red
241: 2 -> regions
242: 2 -> resonant
243: 2 -> result
244: 2 -> rhine
245: 2 -> rushing
246: 2 -> said
247: 2 -> salt
248: 2 -> saw
249: 2 -> see
250: 2 -> seemed
251: 2 -> show
252: 2 -> shut
253: 2 -> sidney's
254: 2 -> size
255: 2 -> skenny
256: 2 -> so
257: 2 -> son
258: 2 -> soon
259: 2 -> splendor
260: 2 -> spoonful
261: 2 -> spoons
262: 2 -> stepped
263: 2 -> suffering
264: 2 -> swept
265: 2 -> teaspoon
266: 2 -> tell
267: 2 -> theater
268: 2 -> thee
269: 2 -> then
270: 2 -> thought
271: 2 -> tied
272: 2 -> torrely
273: 2 -> touch
274: 2 -> trevidion
275: 2 -> use
276: 2 -> utter
277: 2 -> vapors
278: 2 -> vigor
279: 2 -> ware
280: 2 -> way
281: 2 -> we
282: 2 -> well
283: 2 -> where
284: 2 -> who
285: 2 -> wink
286: 2 -> won
287: 2 -> work
288: 2 -> would
289: 1 -> aarons
290: 1 -> abasement
291: 1 -> abbod
292: 1 -> ablaations
293: 1 -> abolonni's
294: 1 -> absorbed
295: 1 -> abulance
296: 1 -> abulances
297: 1 -> acarnisms
298: 1 -> accept
299: 1 -> accout
300: 1 -> accrues
301: 1 -> accustomedry
302: 1 -> ach
303: 1 -> across
304: 1 -> adam
305: 1 -> add
306: 1 -> additions
307: 1 -> ademnon
308: 1 -> aden
309: 1 -> administrative
310: 1 -> admirer
311: 1 -> admitted
312: 1 -> adornatories
313: 1 -> adraft
314: 1 -> advantages
315: 1 -> adventurering
316: 1 -> adventurers
317: 1 -> advised
318: 1 -> affeud
319: 1 -> afraid
320: 1 -> afrocanus
321: 1 -> ages
322: 1 -> aghaise
323: 1 -> ailer's
324: 1 -> aki
325: 1 -> akileine
326: 1 -> alanoberg
327: 1 -> alexander
328: 1 -> algi
329: 1 -> alike
330: 1 -> alirick
331: 1 -> all's
332: 1 -> allah
333: 1 -> allowed
334: 1 -> allurment
335: 1 -> allurments
336: 1 -> allus
337: 1 -> allusion
338: 1 -> aloft
339: 1 -> ambled
340: 1 -> analysis
341: 1 -> ancestor
342: 1 -> animal's
343: 1 -> announce
344: 1 -> announced
345: 1 -> anology
346: 1 -> another
347: 1 -> answers
348: 1 -> antectate
349: 1 -> antiagonal
350: 1 -> aplutted
351: 1 -> apostle
352: 1 -> appear
353: 1 -> arabask
354: 1 -> arc
355: 1 -> arcansa
356: 1 -> architeology
357: 1 -> ardor
358: 1 -> arose
359: 1 -> arrathskellers
360: 1 -> artificial
361: 1 -> artist's
362: 1 -> ascend
363: 1 -> ascent
364: 1 -> ascins
365: 1 -> asked
366: 1 -> asma
367: 1 -> asperagus
368: 1 -> assailant
369: 1 -> assesaries
370: 1 -> assurping
371: 1 -> athenasius
372: 1 -> atom
373: 1 -> attach
374: 1 -> attempted
375: 1 -> attendants
376: 1 -> augustra
377: 1 -> aunt's
378: 1 -> awakened
379: 1 -> awlbit
380: 1 -> azandria
381: 1 -> back
382: 1 -> bacqueline
383: 1 -> bad
384: 1 -> bagpie
385: 1 -> bait
386: 1 -> bald
387: 1 -> balic
388: 1 -> balm
389: 1 -> balvestro
390: 1 -> bambade
391: 1 -> band
392: 1 -> bandit
393: 1 -> bang
394: 1 -> bank
395: 1 -> bare
396: 1 -> barnyard
397: 1 -> barrowing
398: 1 -> barsalona
399: 1 -> bartle
400: 1 -> base
401: 1 -> basquer
402: 1 -> bath
403: 1 -> bawked
404: 1 -> bay
405: 1 -> bayonetted
406: 1 -> beany
407: 1 -> beaut
408: 1 -> beaute
409: 1 -> beauty
410: 1 -> bed
411: 1 -> bedsey
412: 1 -> bee
413: 1 -> believes
414: 1 -> bell
415: 1 -> bellisarius
416: 1 -> bells
417: 1 -> belly
418: 1 -> benedict
419: 1 -> ber
420: 1 -> berga's
421: 1 -> berry
422: 1 -> betricts
423: 1 -> bettering
424: 1 -> biddible
425: 1 -> biography
426: 1 -> bite
427: 1 -> bivawak
428: 1 -> blamise
429: 1 -> blancos
430: 1 -> bleeding
431: 1 -> bless
432: 1 -> blessing
433: 1 -> blew
434: 1 -> blood
435: 1 -> blunderbus
436: 1 -> blurred
437: 1 -> bodakins
438: 1 -> bolkay
439: 1 -> bon
440: 1 -> bonds
441: 1 -> bony
442: 1 -> bosle
443: 1 -> bossell's
444: 1 -> bosul
445: 1 -> bound
446: 1 -> bowlders
447: 1 -> bows
448: 1 -> boy's
449: 1 -> braca
450: 1 -> braces
451: 1 -> brake
452: 1 -> brand
453: 1 -> bremmer
454: 1 -> bride
455: 1 -> bridge
456: 1 -> brigand
457: 1 -> bright
458: 1 -> brim
459: 1 -> brionne
460: 1 -> brionsenstet
461: 1 -> broadstress
462: 1 -> brought
463: 1 -> bruce
464: 1 -> brugeshiest
465: 1 -> brushed
466: 1 -> bugbear's
467: 1 -> burgeous
468: 1 -> burgers
469: 1 -> burgeus
470: 1 -> burghis
471: 1 -> burrow
472: 1 -> burrows
473: 1 -> burst
474: 1 -> butny
475: 1 -> buys
476: 1 -> buzzers
477: 1 -> cadent
478: 1 -> cakes
479: 1 -> calamacus
480: 1 -> calendar
481: 1 -> calicolecal
482: 1 -> callous
483: 1 -> calms
484: 1 -> calpagers
485: 1 -> can't
486: 1 -> candid
487: 1 -> cannibary
488: 1 -> cannicle
489: 1 -> cannot
490: 1 -> canny
491: 1 -> canyon
492: 1 -> cap
493: 1 -> capital
494: 1 -> captain
495: 1 -> captures
496: 1 -> carefully
497: 1 -> carmet
498: 1 -> carol
499: 1 -> carried
500: 1 -> carrying
501: 1 -> cass
502: 1 -> castacated
503: 1 -> castinat
504: 1 -> castnut
505: 1 -> cataline
506: 1 -> caught
507: 1 -> causala
508: 1 -> cautious
509: 1 -> cedar
510: 1 -> cells
511: 1 -> centar
512: 1 -> centre
513: 1 -> cessana
514: 1 -> cessash
515: 1 -> channler
516: 1 -> chant
517: 1 -> charles's
518: 1 -> charlow
519: 1 -> charrot
520: 1 -> chattahuti
521: 1 -> checked
522: 1 -> chefshhiler
523: 1 -> chemicalistic
524: 1 -> chibly
525: 1 -> child
526: 1 -> child's
527: 1 -> chiseled
528: 1 -> choba
529: 1 -> chop
530: 1 -> christmas
531: 1 -> chrystom
532: 1 -> chubbling
533: 1 -> churchwortons
534: 1 -> cissy
535: 1 -> citter
536: 1 -> clamor
537: 1 -> clamors
538: 1 -> clarama
539: 1 -> clarat
540: 1 -> clarats
541: 1 -> clarence
542: 1 -> claria
543: 1 -> cleared
544: 1 -> clearing
545: 1 -> clee
546: 1 -> clergyman
547: 1 -> clock
548: 1 -> closely
549: 1 -> cloth
550: 1 -> cloud
551: 1 -> clues
552: 1 -> cobulous
553: 1 -> cold
554: 1 -> collars
555: 1 -> coloquoil
556: 1 -> colored
557: 1 -> colours
558: 1 -> coltar
559: 1 -> coming
560: 1 -> commonant's
561: 1 -> communion
562: 1 -> concentrated
563: 1 -> congls
564: 1 -> congo
565: 1 -> conjurors
566: 1 -> conjurs
567: 1 -> connul
568: 1 -> conscious
569: 1 -> constantity
570: 1 -> constrained
571: 1 -> continued
572: 1 -> contrred
573: 1 -> conventiples
574: 1 -> convulvia's
575: 1 -> cope
576: 1 -> copias
577: 1 -> coquetrie
578: 1 -> coreli
579: 1 -> corinthis
580: 1 -> cosin
581: 1 -> cosyness
582: 1 -> coughering
583: 1 -> counted
584: 1 -> counter
585: 1 -> country
586: 1 -> county
587: 1 -> covered
588: 1 -> cowman
589: 1 -> craftish
590: 1 -> crants
591: 1 -> creeders
592: 1 -> creemachisti
593: 1 -> crevast
594: 1 -> crews
595: 1 -> croppets
596: 1 -> crows
597: 1 -> cure
598: 1 -> curiousr
599: 1 -> curly
600: 1 -> current
601: 1 -> currents
602: 1 -> currol
603: 1 -> cuttered
604: 1 -> cynicius's
605: 1 -> cynthi
606: 1 -> cypleton
607: 1 -> cyrtus
608: 1 -> cytric
609: 1 -> dantes
610: 1 -> dantesotto
611: 1 -> dark
612: 1 -> daustled
613: 1 -> daveni
614: 1 -> daverny
615: 1 -> davini
616: 1 -> dayluge
617: 1 -> dealia's
618: 1 -> dear
619: 1 -> death
620: 1 -> deductive
621: 1 -> deen
622: 1 -> defences
623: 1 -> defier
624: 1 -> degaerotypists
625: 1 -> delay
626: 1 -> delibano
627: 1 -> delicacaci
628: 1 -> delighted
629: 1 -> dependence
630: 1 -> despair
631: 1 -> despatch
632: 1 -> despatched
633: 1 -> despond
634: 1 -> detective
635: 1 -> determined
636: 1 -> deucalian
637: 1 -> develope
638: 1 -> died
639: 1 -> difficulties
640: 1 -> diminished
641: 1 -> diosis
642: 1 -> dirt
643: 1 -> dispatched
644: 1 -> distample
645: 1 -> distinguished
646: 1 -> distructable
647: 1 -> ditches
648: 1 -> divided
649: 1 -> divine
650: 1 -> divorce
651: 1 -> do
652: 1 -> dociets
653: 1 -> docinnaea
654: 1 -> doesn't
655: 1 -> doll
656: 1 -> domante
657: 1 -> don't
658: 1 -> done
659: 1 -> dora
660: 1 -> dorothe
661: 1 -> dorses
662: 1 -> dotless
663: 1 -> double
664: 1 -> dousson
665: 1 -> dowl
666: 1 -> downgranding
667: 1 -> drama
668: 1 -> dress
669: 1 -> dubly
670: 1 -> dumbmy's
671: 1 -> dusk
672: 1 -> dyst
673: 1 -> e
674: 1 -> eaons
675: 1 -> east
676: 1 -> eastern
677: 1 -> ebianites
678: 1 -> ectaries
679: 1 -> edium
680: 1 -> eerst
681: 1 -> effencing
682: 1 -> eglomerations
683: 1 -> elb
684: 1 -> elictronic
685: 1 -> ellas
686: 1 -> else
687: 1 -> em
688: 1 -> emanities
689: 1 -> embrace
690: 1 -> emipodence
691: 1 -> emphasized
692: 1 -> encharmed
693: 1 -> encouraged
694: 1 -> end
695: 1 -> endeavored
696: 1 -> endeavours
697: 1 -> ends
698: 1 -> engling
699: 1 -> engratiation
700: 1 -> enroad
701: 1 -> epic
702: 1 -> epicuresm
703: 1 -> epistles
704: 1 -> era
705: 1 -> ere
706: 1 -> erewyle
707: 1 -> esperagus
708: 1 -> esquimos
709: 1 -> eternitys
710: 1 -> ethical
711: 1 -> etimporary
712: 1 -> ever
713: 1 -> every
714: 1 -> everything
715: 1 -> evilize
716: 1 -> ex
717: 1 -> excepts
718: 1 -> exhausted
719: 1 -> exorbiate
720: 1 -> explained
721: 1 -> expressed
722: 1 -> extenduating
723: 1 -> exticates
724: 1 -> eye
725: 1 -> eyes
726: 1 -> facia
727: 1 -> facres
728: 1 -> factor
729: 1 -> fairies
730: 1 -> fairy
731: 1 -> falkery
732: 1 -> fallency
733: 1 -> false
734: 1 -> fanasies
735: 1 -> fantasy
736: 1 -> fastropping
737: 1 -> fates
738: 1 -> father
739: 1 -> fatter
740: 1 -> favourite
741: 1 -> featis
742: 1 -> feature
743: 1 -> feebi
744: 1 -> feel
745: 1 -> feevie
746: 1 -> felicity's
747: 1 -> felience
748: 1 -> fetched
749: 1 -> fibi
750: 1 -> fiby
751: 1 -> fiddles
752: 1 -> field
753: 1 -> filt
754: 1 -> finally
755: 1 -> fiord
756: 1 -> fire
757: 1 -> fishrooms
758: 1 -> flamations
759: 1 -> flashing
760: 1 -> flowerheads
761: 1 -> folk
762: 1 -> fonting
763: 1 -> foot
764: 1 -> footpath
765: 1 -> forced
766: 1 -> forecord
767: 1 -> forest
768: 1 -> forthwith
769: 1 -> fortunatey
770: 1 -> fortunes
771: 1 -> fother
772: 1 -> fountain's
773: 1 -> fredding
774: 1 -> freeboard
775: 1 -> frightened
776: 1 -> fryerson's
777: 1 -> fully
778: 1 -> fun
779: 1 -> fund
780: 1 -> fur
781: 1 -> furdinger
782: 1 -> further
783: 1 -> fuses
784: 1 -> gaiety
785: 1 -> galleons
786: 1 -> game
787: 1 -> ganem
788: 1 -> gang
789: 1 -> ganning
790: 1 -> garder
791: 1 -> garnard
792: 1 -> garrotype
793: 1 -> garrotypus
794: 1 -> gaslop
795: 1 -> gasmakers
796: 1 -> gauge
797: 1 -> gauvish
798: 1 -> get
799: 1 -> ghak
800: 1 -> gingo
801: 1 -> girl
802: 1 -> girl's
803: 1 -> gives
804: 1 -> gladdens
805: 1 -> glashes
806: 1 -> gleaming
807: 1 -> gload
808: 1 -> glory
809: 1 -> gnomes
810: 1 -> goal
811: 1 -> gogdola
812: 1 -> goin
813: 1 -> going
814: 1 -> golon's
815: 1 -> gormaes
816: 1 -> gosooons
817: 1 -> gossip
818: 1 -> grade
819: 1 -> grand
820: 1 -> granddam
821: 1 -> grandparence
822: 1 -> grateness
823: 1 -> graved
824: 1 -> greenfield
825: 1 -> greet
826: 1 -> gretel
827: 1 -> grocer
828: 1 -> grocer's
829: 1 -> group
830: 1 -> gruasine
831: 1 -> grubbed
832: 1 -> guessed
833: 1 -> guide
834: 1 -> guided
835: 1 -> gulley
836: 1 -> gun
837: 1 -> gundola
838: 1 -> gwynplaine's
839: 1 -> h
840: 1 -> ha
841: 1 -> haenas
842: 1 -> haired
843: 1 -> hale
844: 1 -> halikan
845: 1 -> hall
846: 1 -> hammer
847: 1 -> hand
848: 1 -> hands
849: 1 -> handsome
850: 1 -> hanger
851: 1 -> happen
852: 1 -> happened
853: 1 -> hapsey
854: 1 -> hapsiba
855: 1 -> hard
856: 1 -> harden
857: 1 -> harder
858: 1 -> harriage
859: 1 -> harvests
860: 1 -> hatchet
861: 1 -> hath
862: 1 -> hattock
863: 1 -> hawhimer
864: 1 -> he'sn't
865: 1 -> hear
866: 1 -> hears
867: 1 -> heart's
868: 1 -> heartedness
869: 1 -> heartened
870: 1 -> heave
871: 1 -> heights
872: 1 -> heldo's
873: 1 -> hella
874: 1 -> hellock
875: 1 -> here's
876: 1 -> hero
877: 1 -> hers
878: 1 -> high
879: 1 -> hilvivillea
880: 1 -> himself
881: 1 -> hisdain
882: 1 -> hisself
883: 1 -> ho
884: 1 -> hoboys
885: 1 -> hoft
886: 1 -> hograve
887: 1 -> home
888: 1 -> homer
889: 1 -> honeycake
890: 1 -> hoof
891: 1 -> hoofbraul
892: 1 -> hoping
893: 1 -> horsehide
894: 1 -> how
895: 1 -> huddle
896: 1 -> hue
897: 1 -> humour
898: 1 -> humph
899: 1 -> hutchera
900: 1 -> hydleberg
901: 1 -> hypsippus
902: 1 -> hypsiver
903: 1 -> idlezation
904: 1 -> ignimation
905: 1 -> illinoi
906: 1 -> imavaera
907: 1 -> impal
908: 1 -> impassability
909: 1 -> impertinent
910: 1 -> imposed
911: 1 -> impressed
912: 1 -> inclination
913: 1 -> include
914: 1 -> indecession
915: 1 -> infant
916: 1 -> ingate
917: 1 -> iniquitus
918: 1 -> innate
919: 1 -> insempt
920: 1 -> inseparable
921: 1 -> insipient
922: 1 -> instinct
923: 1 -> instruments
924: 1 -> insuited
925: 1 -> insulted
926: 1 -> interest
927: 1 -> interminates
928: 1 -> intermoil
929: 1 -> intiminated
930: 1 -> intoo
931: 1 -> inventionful
932: 1 -> ionaut
933: 1 -> iosius
934: 1 -> ipatia
935: 1 -> ipylobium
936: 1 -> ir
937: 1 -> irogue
938: 1 -> ironful
939: 1 -> irowa
940: 1 -> irowan
941: 1 -> isaaca
942: 1 -> istle
943: 1 -> italian's
944: 1 -> itels
945: 1 -> jacks
946: 1 -> jauntite
947: 1 -> jeers
948: 1 -> jellyen
949: 1 -> jim's
950: 1 -> jimmy
951: 1 -> jimnist
952: 1 -> jingle
953: 1 -> johnson
954: 1 -> joining
955: 1 -> joy
956: 1 -> kaliunt
957: 1 -> karl's
958: 1 -> kate
959: 1 -> kelestine
960: 1 -> kill
961: 1 -> kilter
962: 1 -> kingship
963: 1 -> kirkleehem
964: 1 -> kirkling
965: 1 -> kirning
966: 1 -> klaus
967: 1 -> knew
968: 1 -> knitting
969: 1 -> knoll
970: 1 -> know
971: 1 -> korum
972: 1 -> krylter
973: 1 -> kulder
974: 1 -> kulter's
975: 1 -> la
976: 1 -> ladder
977: 1 -> laid
978: 1 -> lain
979: 1 -> lam
980: 1 -> lamented
981: 1 -> lana
982: 1 -> land
983: 1 -> larby
984: 1 -> large
985: 1 -> largest
986: 1 -> lash
987: 1 -> latchkie
988: 1 -> later
989: 1 -> laton's
990: 1 -> latter
991: 1 -> launched
992: 1 -> lawn
993: 1 -> lead
994: 1 -> leap
995: 1 -> leapt
996: 1 -> leave
997: 1 -> leaving
998: 1 -> leech
999: 1 -> leen
1000: 1 -> let's
1001: 1 -> letter
1002: 1 -> leveled
1003: 1 -> lever
1004: 1 -> lim
1005: 1 -> lit
1006: 1 -> little
1007: 1 -> live
1008: 1 -> lizzie
1009: 1 -> load
1010: 1 -> loathed
1011: 1 -> lobby
1012: 1 -> logoss
1013: 1 -> loria
1014: 1 -> lost
1015: 1 -> love
1016: 1 -> loved
1017: 1 -> loves
1018: 1 -> lowered
1019: 1 -> lugobrious
1020: 1 -> lunk
1021: 1 -> luyche
1022: 1 -> lyach
1023: 1 -> lying
1024: 1 -> lynida's
1025: 1 -> lynnell's
1026: 1 -> lysh
1027: 1 -> macawayne
1028: 1 -> machalane
1029: 1 -> machuwaine
1030: 1 -> mackerleyn
1031: 1 -> mackerwaine
1032: 1 -> mackerwine's
1033: 1 -> macro
1034: 1 -> madeo
1035: 1 -> magazineo
1036: 1 -> magazino
1037: 1 -> mahmon
1038: 1 -> maker
1039: 1 -> maltacenaea
1040: 1 -> mammo
1041: 1 -> manese
1042: 1 -> manhaul
1043: 1 -> manhaw
1044: 1 -> manikians
1045: 1 -> manipulars
1046: 1 -> manner
1047: 1 -> maptrovating
1048: 1 -> marble
1049: 1 -> margerum
1050: 1 -> marian
1051: 1 -> marianna
1052: 1 -> marked
1053: 1 -> married
1054: 1 -> martin
1055: 1 -> mary
1056: 1 -> mass
1057: 1 -> masters
1058: 1 -> material
1059: 1 -> mattier
1060: 1 -> maw
1061: 1 -> maybe
1062: 1 -> maygpie
1063: 1 -> mazes
1064: 1 -> mean
1065: 1 -> meek
1066: 1 -> meekan
1067: 1 -> meekon
1068: 1 -> meer
1069: 1 -> meet
1070: 1 -> mellet
1071: 1 -> mere
1072: 1 -> mesoline
1073: 1 -> mesonine
1074: 1 -> messlement
1075: 1 -> metal
1076: 1 -> metals
1077: 1 -> middle
1078: 1 -> mikeon
1079: 1 -> milburgh
1080: 1 -> mildo
1081: 1 -> milk
1082: 1 -> mill
1083: 1 -> mills
1084: 1 -> min's
1085: 1 -> minced
1086: 1 -> minds
1087: 1 -> mine
1088: 1 -> minnatoki
1089: 1 -> mirabelle
1090: 1 -> mirror
1091: 1 -> missiah
1092: 1 -> mitchell's
1093: 1 -> mix
1094: 1 -> moat
1095: 1 -> modox
1096: 1 -> moine
1097: 1 -> mollyn
1098: 1 -> molucus
1099: 1 -> mondaine
1100: 1 -> montau
1101: 1 -> montier
1102: 1 -> montre
1103: 1 -> moon
1104: 1 -> moonface
1105: 1 -> mooratti
1106: 1 -> mora
1107: 1 -> moraines
1108: 1 -> moreaudity
1109: 1 -> morner
1110: 1 -> morvan
1111: 1 -> mosel
1112: 1 -> mossses
1113: 1 -> mothor
1114: 1 -> motions
1115: 1 -> motork
1116: 1 -> moult
1117: 1 -> mountain
1118: 1 -> moved
1119: 1 -> muntrested
1120: 1 -> murphyspera
1121: 1 -> musing
1122: 1 -> my
1123: 1 -> n
1124: 1 -> nagger
1125: 1 -> nail
1126: 1 -> naise
1127: 1 -> nappy
1128: 1 -> napsacks
1129: 1 -> neading
1130: 1 -> near
1131: 1 -> necramanteci
1132: 1 -> needs
1133: 1 -> needst
1134: 1 -> neighbour
1135: 1 -> neighbourly
1136: 1 -> nettierromo
1137: 1 -> nevations
1138: 1 -> nicholas
1139: 1 -> nie
1140: 1 -> nieth
1141: 1 -> nightwird
1142: 1 -> nina's
1143: 1 -> noontine
1144: 1 -> nor
1145: 1 -> norse
1146: 1 -> northought
1147: 1 -> nostoricius
1148: 1 -> nothing
1149: 1 -> noticed
1150: 1 -> numbnis
1151: 1 -> numitten's
1152: 1 -> o
1153: 1 -> obernet
1154: 1 -> obscured
1155: 1 -> odium
1156: 1 -> offenses
1157: 1 -> officiali
1158: 1 -> oils
1159: 1 -> older
1160: 1 -> ominer
1161: 1 -> only
1162: 1 -> ons
1163: 1 -> opinion
1164: 1 -> optics
1165: 1 -> optomaton
1166: 1 -> orbid
1167: 1 -> order
1168: 1 -> ordered
1169: 1 -> ore
1170: 1 -> original
1171: 1 -> oscipan
1172: 1 -> oscipan's
1173: 1 -> oscippan
1174: 1 -> osius
1175: 1 -> ospice
1176: 1 -> ostitan's
1177: 1 -> otharrow
1178: 1 -> other
1179: 1 -> otto
1180: 1 -> outpit
1181: 1 -> over
1182: 1 -> overarched
1183: 1 -> owings
1184: 1 -> owna
1185: 1 -> owno
1186: 1 -> oxaldier
1187: 1 -> oxilliaries
1188: 1 -> p
1189: 1 -> pace
1190: 1 -> pacing
1191: 1 -> pails
1192: 1 -> pain
1193: 1 -> pale
1194: 1 -> pallor
1195: 1 -> palumpsist
1196: 1 -> papa
1197: 1 -> parastow
1198: 1 -> parcel
1199: 1 -> paren
1200: 1 -> parishes
1201: 1 -> parlour
1202: 1 -> partly
1203: 1 -> past
1204: 1 -> pasteboard
1205: 1 -> patience
1206: 1 -> patronels
1207: 1 -> paul
1208: 1 -> paupilloi
1209: 1 -> pavl
1210: 1 -> paw
1211: 1 -> peace
1212: 1 -> peditantiary
1213: 1 -> pellusium
1214: 1 -> pen
1215: 1 -> penge
1216: 1 -> penny
1217: 1 -> penting
1218: 1 -> pestal
1219: 1 -> petuous
1220: 1 -> phenomena
1221: 1 -> philmomour
1222: 1 -> philodolphus
1223: 1 -> phinocta
1224: 1 -> phinos
1225: 1 -> phoebi
1226: 1 -> phoebie
1227: 1 -> phylli's
1228: 1 -> piced
1229: 1 -> pickered
1230: 1 -> pie
1231: 1 -> piece
1232: 1 -> pierre
1233: 1 -> pigsty
1234: 1 -> pillars
1235: 1 -> pin
1236: 1 -> pines
1237: 1 -> pire
1238: 1 -> plan
1239: 1 -> plates
1240: 1 -> plating
1241: 1 -> playing
1242: 1 -> pleased
1243: 1 -> plot
1244: 1 -> plowed
1245: 1 -> plum
1246: 1 -> plumpy
1247: 1 -> poetry
1248: 1 -> poiard
1249: 1 -> pointed
1250: 1 -> poisoned
1251: 1 -> polonaris
1252: 1 -> polyphiasts
1253: 1 -> pometheus
1254: 1 -> pompous
1255: 1 -> pony
1256: 1 -> ponyard
1257: 1 -> poorers
1258: 1 -> portrait
1259: 1 -> possessed
1260: 1 -> posterer
1261: 1 -> pouring
1262: 1 -> powd
1263: 1 -> precedes
1264: 1 -> prefier
1265: 1 -> pregoins
1266: 1 -> prepared
1267: 1 -> pressed
1268: 1 -> pretundor
1269: 1 -> primoses
1270: 1 -> princes
1271: 1 -> princeton
1272: 1 -> proceeding
1273: 1 -> profits
1274: 1 -> programme
1275: 1 -> programmes
1276: 1 -> programof
1277: 1 -> promise
1278: 1 -> prophet
1279: 1 -> propiat
1280: 1 -> propriating
1281: 1 -> prosepina
1282: 1 -> prosulates
1283: 1 -> provity
1284: 1 -> pudding
1285: 1 -> pulses
1286: 1 -> punchent
1287: 1 -> pyra
1288: 1 -> quarrelling
1289: 1 -> queen
1290: 1 -> quincy
1291: 1 -> quinnels
1292: 1 -> raft
1293: 1 -> raids
1294: 1 -> railroad
1295: 1 -> rain
1296: 1 -> rainstarms
1297: 1 -> rang
1298: 1 -> ranks
1299: 1 -> rappeen
1300: 1 -> rawhide
1301: 1 -> rax
1302: 1 -> read
1303: 1 -> ready
1304: 1 -> really
1305: 1 -> reassured
1306: 1 -> recognizes
1307: 1 -> rectus
1308: 1 -> reduces
1309: 1 -> reels
1310: 1 -> reencarnation
1311: 1 -> reeves
1312: 1 -> reference
1313: 1 -> reform
1314: 1 -> reformed
1315: 1 -> refused
1316: 1 -> reign
1317: 1 -> rejoicing
1318: 1 -> released
1319: 1 -> remember
1320: 1 -> repetory
1321: 1 -> reposed
1322: 1 -> resigned
1323: 1 -> reveling
1324: 1 -> rheseta
1325: 1 -> rhines
1326: 1 -> richrvialities
1327: 1 -> rid
1328: 1 -> rider
1329: 1 -> riding
1330: 1 -> riggedo's
1331: 1 -> right
1332: 1 -> rights
1333: 1 -> ringbrea
1334: 1 -> rise
1335: 1 -> risk
1336: 1 -> roads
1337: 1 -> rock
1338: 1 -> roda
1339: 1 -> rode
1340: 1 -> roggish
1341: 1 -> roll
1342: 1 -> romantic
1343: 1 -> ron
1344: 1 -> rosaity
1345: 1 -> rot
1346: 1 -> round
1347: 1 -> rouseing
1348: 1 -> rug
1349: 1 -> rule
1350: 1 -> rules
1351: 1 -> rut
1352: 1 -> rye
1353: 1 -> sacy
1354: 1 -> safely
1355: 1 -> saknusum
1356: 1 -> sandom
1357: 1 -> sat
1358: 1 -> satisfyer
1359: 1 -> satistried
1360: 1 -> saturn
1361: 1 -> savager
1362: 1 -> saved
1363: 1 -> savor
1364: 1 -> saxon
1365: 1 -> saying
1366: 1 -> scalion
1367: 1 -> scarity
1368: 1 -> scattery
1369: 1 -> schint
1370: 1 -> scolly
1371: 1 -> scored
1372: 1 -> scout
1373: 1 -> sculptureing
1374: 1 -> scumb
1375: 1 -> sealing
1376: 1 -> seats
1377: 1 -> second
1378: 1 -> sectories
1379: 1 -> securier
1380: 1 -> sedley
1381: 1 -> seear
1382: 1 -> seems
1383: 1 -> sees
1384: 1 -> seized
1385: 1 -> semigothic
1386: 1 -> sending
1387: 1 -> sense
1388: 1 -> sent
1389: 1 -> series
1390: 1 -> serpent
1391: 1 -> servant
1392: 1 -> servine
1393: 1 -> setting
1394: 1 -> shamerda
1395: 1 -> shastard
1396: 1 -> shaster
1397: 1 -> she
1398: 1 -> shed
1399: 1 -> sheff
1400: 1 -> shellfish
1401: 1 -> ship's
1402: 1 -> shire
1403: 1 -> shocked
1404: 1 -> shorted
1405: 1 -> shot
1406: 1 -> shuff
1407: 1 -> sibil
1408: 1 -> side
1409: 1 -> sidnam
1410: 1 -> sidnem
1411: 1 -> sidnham
1412: 1 -> sidonam
1413: 1 -> sight
1414: 1 -> signboards
1415: 1 -> similax
1416: 1 -> similies
1417: 1 -> sing
1418: 1 -> sinner
1419: 1 -> sir
1420: 1 -> siuware
1421: 1 -> sixteenth
1422: 1 -> sized
1423: 1 -> slant
1424: 1 -> slatter
1425: 1 -> slaveholders
1426: 1 -> slips
1427: 1 -> slitting
1428: 1 -> sloosing
1429: 1 -> slunk
1430: 1 -> small
1431: 1 -> smay
1432: 1 -> smoke
1433: 1 -> sodom
1434: 1 -> solden
1435: 1 -> solf
1436: 1 -> sometime
1437: 1 -> song
1438: 1 -> sons
1439: 1 -> sorgum
1440: 1 -> south
1441: 1 -> sperrigus
1442: 1 -> spice
1443: 1 -> spliniam
1444: 1 -> spoonfuls
1445: 1 -> sprayed
1446: 1 -> spruce
1447: 1 -> spur
1448: 1 -> squashs
1449: 1 -> staff
1450: 1 -> stairs
1451: 1 -> stalkings
1452: 1 -> stands
1453: 1 -> startledly
1454: 1 -> stash
1455: 1 -> steep
1456: 1 -> steepy
1457: 1 -> sterio's
1458: 1 -> stevy's
1459: 1 -> stickulating
1460: 1 -> still
1461: 1 -> stir
1462: 1 -> stomach
1463: 1 -> stones
1464: 1 -> store
1465: 1 -> straight
1466: 1 -> strips
1467: 1 -> strode
1468: 1 -> stungs
1469: 1 -> succeeded
1470: 1 -> sufficed
1471: 1 -> sumbrero
1472: 1 -> supper
1473: 1 -> surged
1474: 1 -> surprised
1475: 1 -> surrendered
1476: 1 -> surrounded
1477: 1 -> suspicion
1478: 1 -> swaard
1479: 1 -> swell
1480: 1 -> sworld's
1481: 1 -> symond's
1482: 1 -> symonds
1483: 1 -> syrapian
1484: 1 -> syrtus
1485: 1 -> table
1486: 1 -> tad
1487: 1 -> taffy
1488: 1 -> take
1489: 1 -> talk
1490: 1 -> tallened
1491: 1 -> tarkalan
1492: 1 -> tarran
1493: 1 -> tawley
1494: 1 -> tears
1495: 1 -> tebi
1496: 1 -> teddy's
1497: 1 -> teening
1498: 1 -> teevy
1499: 1 -> telemedring
1500: 1 -> telicas
1501: 1 -> temper
1502: 1 -> tenth
1503: 1 -> termazo
1504: 1 -> terriso
1505: 1 -> tertaric
1506: 1 -> terus
1507: 1 -> testad
1508: 1 -> tested
1509: 1 -> than
1510: 1 -> there's
1511: 1 -> therefore
1512: 1 -> these
1513: 1 -> thing
1514: 1 -> think
1515: 1 -> thinked
1516: 1 -> thomson
1517: 1 -> threads
1518: 1 -> three
1519: 1 -> through
1520: 1 -> thump
1521: 1 -> thus
1522: 1 -> tickled
1523: 1 -> tiels
1524: 1 -> tint
1525: 1 -> tireat
1526: 1 -> title
1527: 1 -> titling
1528: 1 -> toadies
1529: 1 -> tokia
1530: 1 -> told
1531: 1 -> took
1532: 1 -> top
1533: 1 -> topper
1534: 1 -> tored
1535: 1 -> tormilie
1536: 1 -> tormiline
1537: 1 -> tossed
1538: 1 -> touched
1539: 1 -> toward
1540: 1 -> towe
1541: 1 -> towel
1542: 1 -> town
1543: 1 -> tradition
1544: 1 -> tramp
1545: 1 -> trample
1546: 1 -> transpastantiation
1547: 1 -> travelers
1548: 1 -> travelled
1549: 1 -> treating
1550: 1 -> treaty
1551: 1 -> tresses
1552: 1 -> trevelian's
1553: 1 -> trevian
1554: 1 -> trot
1555: 1 -> troubner
1556: 1 -> troyt
1557: 1 -> trumpets
1558: 1 -> trust
1559: 1 -> try
1560: 1 -> trying
1561: 1 -> tuddinsofield
1562: 1 -> tuli
1563: 1 -> tumbles
1564: 1 -> turn
1565: 1 -> turning
1566: 1 -> two
1567: 1 -> type
1568: 1 -> ukhalion
1569: 1 -> umbrella
1570: 1 -> unadorn
1571: 1 -> unahapited
1572: 1 -> unberry
1573: 1 -> uncloude
1574: 1 -> uncolled
1575: 1 -> undiscipituent
1576: 1 -> undivied
1577: 1 -> unfavorable
1578: 1 -> unheard
1579: 1 -> uninabitable
1580: 1 -> union
1581: 1 -> unlissering
1582: 1 -> unlovest
1583: 1 -> unpathaved
1584: 1 -> unpellinable
1585: 1 -> unsolled
1586: 1 -> unstubbiness
1587: 1 -> unsulgily
1588: 1 -> unto
1589: 1 -> untrust
1590: 1 -> up
1591: 1 -> upgards
1592: 1 -> upmostiously
1593: 1 -> upper
1594: 1 -> upstriving
1595: 1 -> urget
1596: 1 -> us
1597: 1 -> usation
1598: 1 -> usura
1599: 1 -> vain
1600: 1 -> valanon
1601: 1 -> van
1602: 1 -> vanacular
1603: 1 -> vaney
1604: 1 -> vanny
1605: 1 -> vault
1606: 1 -> vegetation
1607: 1 -> vein
1608: 1 -> vendia
1609: 1 -> ventid
1610: 1 -> venus
1611: 1 -> veranda
1612: 1 -> versed
1613: 1 -> vest
1614: 1 -> vestif
1615: 1 -> vicer
1616: 1 -> victunnova
1617: 1 -> videte
1618: 1 -> vile
1619: 1 -> violence
1620: 1 -> virgido
1621: 1 -> virtuius
1622: 1 -> visitor
1623: 1 -> vitanova
1624: 1 -> vitunna
1625: 1 -> vulgarly
1626: 1 -> wahidi
1627: 1 -> wallah
1628: 1 -> walnut
1629: 1 -> wandered
1630: 1 -> wane
1631: 1 -> wares
1632: 1 -> warries
1633: 1 -> wasn't
1634: 1 -> water
1635: 1 -> waves
1636: 1 -> weased
1637: 1 -> weather
1638: 1 -> week
1639: 1 -> weighing
1640: 1 -> westminre
1641: 1 -> westward
1642: 1 -> wheeled
1643: 1 -> wherein
1644: 1 -> which
1645: 1 -> whiskey
1646: 1 -> whither
1647: 1 -> wholliness
1648: 1 -> widow
1649: 1 -> willbiggawan's
1650: 1 -> wilson's
1651: 1 -> wise
1652: 1 -> wister
1653: 1 -> withdrawing
1654: 1 -> woeely
1655: 1 -> woman
1656: 1 -> wonder
1657: 1 -> wood
1658: 1 -> woodpigeon
1659: 1 -> woodpitchin
1660: 1 -> woodpitchon
1661: 1 -> woolen
1662: 1 -> word
1663: 1 -> workmen
1664: 1 -> works
1665: 1 -> worriot
1666: 1 -> worse
1667: 1 -> worshipping
1668: 1 -> worst
1669: 1 -> worth
1670: 1 -> worthily
1671: 1 -> woth
1672: 1 -> wound
1673: 1 -> wounda
1674: 1 -> wounders
1675: 1 -> wrath
1676: 1 -> wrecked
1677: 1 -> wretched
1678: 1 -> writer
1679: 1 -> writing
1680: 1 -> wynton
1681: 1 -> yak
1682: 1 -> yakis
1683: 1 -> yankies
1684: 1 -> yarania
1685: 1 -> yes
1686: 1 -> yoke
1687: 1 -> yokel
1688: 1 -> yokeon
1689: 1 -> yoko
1690: 1 -> you'd
1691: 1 -> you'll
1692: 1 -> yunt
1693: 1 -> zeppelin
1694: 1 -> zingerbre
-------
2563
* NOTE: The 'Falsely Recognized' words are those hypothesis words
which the recognizer incorrectly substituted for a reference word.
|