File size: 147,958 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 |
DETAILED OVERALL REPORT FOR THE SYSTEM: /scratch/project_465000836/ipoloka/huggingface_asr/experiments/baseline_ebranchformer_v2.3_fp32/dev/15400/eval_librispeech_validation.clean/hyp.trn
SENTENCE RECOGNITION PERFORMANCE
sentences 2816
with errors 48.2% (1357)
with substitutions 47.2% (1330)
with deletions 7.2% ( 203)
with insertions 8.9% ( 252)
WORD RECOGNITION PERFORMANCE
Percent Total Error = 5.9% (3335)
Percent Correct = 94.6% (53226)
Percent Substitution = 4.0% (2268)
Percent Deletions = 1.4% ( 786)
Percent Insertions = 0.5% ( 281)
Percent Word Accuracy = 94.1%
Ref. words = (56280)
Hyp. words = (55775)
Aligned words = (56561)
CONFUSION PAIRS Total (1845)
With >= 1 occurrences (1845)
1: 43 -> in ==> and
2: 32 -> and ==> in
3: 24 -> a ==> the
4: 21 -> the ==> a
5: 9 -> this ==> the
6: 8 -> an ==> and
7: 7 -> bozzle ==> basil
8: 6 -> bartley ==> bartly
9: 6 -> carrie ==> carry
10: 6 -> i'm ==> am
11: 6 -> the ==> to
12: 6 -> wants ==> once
13: 5 -> bozzle ==> bossell
14: 5 -> criss ==> chris
15: 5 -> flour ==> flower
16: 5 -> o ==> oh
17: 5 -> that ==> the
18: 4 -> anyone ==> one
19: 4 -> as ==> is
20: 4 -> clarke ==> clark
21: 4 -> gryce ==> grace
22: 4 -> is ==> was
23: 4 -> men ==> man
24: 4 -> phoebe ==> phoebee
25: 4 -> saucepan ==> pan
26: 3 -> an ==> in
27: 3 -> and ==> a
28: 3 -> ann's ==> marianne's
29: 3 -> for ==> from
30: 3 -> four ==> for
31: 3 -> grethel ==> grettel
32: 3 -> has ==> is
33: 3 -> his ==> as
34: 3 -> his ==> the
35: 3 -> honor ==> honour
36: 3 -> in ==> on
37: 3 -> is ==> as
38: 3 -> kaliko ==> calico
39: 3 -> neighbors ==> neighbours
40: 3 -> nestorius ==> mysterious
41: 3 -> on ==> in
42: 3 -> piece ==> peace
43: 3 -> pigeon ==> woodpigeon
44: 3 -> pyncheon ==> pension
45: 3 -> rhein ==> rhine
46: 3 -> sent ==> set
47: 3 -> splendour ==> splendor
48: 3 -> tad ==> ted
49: 3 -> terrorist ==> terrace
50: 3 -> the ==> that
51: 3 -> the ==> them
52: 3 -> theatre ==> theater
53: 3 -> thing ==> anything
54: 3 -> through ==> to
55: 3 -> trevelyan ==> trevelian
56: 3 -> who ==> he
57: 2 -> abalone's ==> abaloney's
58: 2 -> allspice ==> spice
59: 2 -> and ==> at
60: 2 -> and ==> the
61: 2 -> ann ==> anne
62: 2 -> ann ==> marianne
63: 2 -> any ==> nee
64: 2 -> are ==> were
65: 2 -> at ==> that
66: 2 -> awhile ==> while
67: 2 -> ay ==> aye
68: 2 -> b ==> be
69: 2 -> battlefields ==> fields
70: 2 -> beenie ==> beany
71: 2 -> behaviour ==> behavior
72: 2 -> borrow ==> barrow
73: 2 -> bough ==> bow
74: 2 -> boughs ==> bows
75: 2 -> boys ==> boy's
76: 2 -> bozzle ==> basle
77: 2 -> brow ==> brown
78: 2 -> buren ==> and
79: 2 -> burgess ==> burges
80: 2 -> cauliflower ==> flour
81: 2 -> chef ==> sheff
82: 2 -> colored ==> coloured
83: 2 -> colored ==> covered
84: 2 -> crushed ==> crossed
85: 2 -> d'avrigny ==> davenie
86: 2 -> dante ==> dantes
87: 2 -> deucalion ==> ducalion
88: 2 -> drizzle ==> dristle
89: 2 -> drouet ==> drui
90: 2 -> drouet's ==> his
91: 2 -> dude ==> to
92: 2 -> edition ==> addition
93: 2 -> enquired ==> inquired
94: 2 -> favor ==> favour
95: 2 -> favourable ==> favorable
96: 2 -> favourite ==> favorite
97: 2 -> ferdinand ==> fernand
98: 2 -> fetid ==> fetted
99: 2 -> filing ==> failing
100: 2 -> forcemeat ==> meat
101: 2 -> fulfill ==> fulfil
102: 2 -> gait ==> gate
103: 2 -> gregor ==> mikriggard
104: 2 -> hansel ==> handsome
105: 2 -> hanson ==> hansen
106: 2 -> has ==> as
107: 2 -> he ==> it
108: 2 -> he ==> you
109: 2 -> heady ==> hetty
110: 2 -> his ==> a
111: 2 -> how ==> had
112: 2 -> hurstwood ==> juliahurstwood
113: 2 -> i ==> it
114: 2 -> i'm ==> i
115: 2 -> impassible ==> impassable
116: 2 -> in ==> him
117: 2 -> inclosure ==> enclosure
118: 2 -> instalments ==> installments
119: 2 -> iota ==> ioda
120: 2 -> it ==> at
121: 2 -> jem ==> jim
122: 2 -> kearny ==> kirney
123: 2 -> labourers ==> laborers
124: 2 -> lattimer ==> latimer
125: 2 -> laugh'd ==> laughed
126: 2 -> love ==> loved
127: 2 -> mac ==> mc
128: 2 -> macklewain ==> macawaine
129: 2 -> macklewain ==> machawaine
130: 2 -> macpherson ==> pherson
131: 2 -> madison ==> medicine
132: 2 -> magazzino ==> magazineo
133: 2 -> mama ==> mamma
134: 2 -> mantel ==> mantle
135: 2 -> materialised ==> materialized
136: 2 -> meekin ==> mikhin
137: 2 -> might ==> may
138: 2 -> minnie's ==> minney's
139: 2 -> night ==> night's
140: 2 -> no ==> know
141: 2 -> nuova ==> vetanova
142: 2 -> of ==> a
143: 2 -> of ==> at
144: 2 -> ogden ==> augden
145: 2 -> one ==> when
146: 2 -> or ==> are
147: 2 -> ossipon ==> oscippin
148: 2 -> otto ==> adel
149: 2 -> otto ==> don't
150: 2 -> our ==> a
151: 2 -> our ==> her
152: 2 -> over ==> of
153: 2 -> panacea ==> panetia
154: 2 -> pavel ==> pavlo
155: 2 -> perfunctorily ==> profunctorily
156: 2 -> phoebe ==> feeby
157: 2 -> pitt ==> pit
158: 2 -> praefect ==> prefect
159: 2 -> promised ==> promise
160: 2 -> pyrrha ==> pirah
161: 2 -> quandary ==> quandry
162: 2 -> quilter ==> kilter
163: 2 -> rang ==> wring
164: 2 -> realise ==> realize
165: 2 -> recognising ==> recognizing
166: 2 -> rector's ==> refters
167: 2 -> resident ==> resonant
168: 2 -> round ==> around
169: 2 -> said ==> set
170: 2 -> saw ==> sought
171: 2 -> sea ==> see
172: 2 -> sealed ==> sailed
173: 2 -> set ==> said
174: 2 -> she ==> he
175: 2 -> shimerda ==> shamerda
176: 2 -> shimerdas ==> shamerdas
177: 2 -> shredded ==> shreded
178: 2 -> snellings ==> snullings
179: 2 -> sole ==> soul
180: 2 -> someone ==> one
181: 2 -> stacy ==> sacy
182: 2 -> sue ==> see
183: 2 -> sufferin ==> suffering
184: 2 -> sun ==> son
185: 2 -> sydenham ==> sidnam
186: 2 -> sydney ==> sidney
187: 2 -> sydney's ==> sidney's
188: 2 -> syrtis ==> syrtus
189: 2 -> terra ==> tara
190: 2 -> that ==> without
191: 2 -> the ==> and
192: 2 -> the ==> their
193: 2 -> thee ==> me
194: 2 -> their ==> are
195: 2 -> their ==> the
196: 2 -> then ==> and
197: 2 -> then ==> that
198: 2 -> therein ==> barren
199: 2 -> time ==> bedtime
200: 2 -> time ==> sometime
201: 2 -> to ==> exclaimed
202: 2 -> too ==> to
203: 2 -> touched ==> touch
204: 2 -> traveling ==> travelling
205: 2 -> trevelyan ==> trevilleian
206: 2 -> vague ==> big
207: 2 -> well ==> will
208: 2 -> when ==> but
209: 2 -> whichever ==> ever
210: 2 -> wide ==> quite
211: 2 -> winked ==> think
212: 1 -> a ==> accounts
213: 1 -> a ==> an
214: 1 -> a ==> and
215: 1 -> a ==> as
216: 1 -> a ==> at
217: 1 -> a ==> hail
218: 1 -> a ==> he
219: 1 -> a ==> iac
220: 1 -> a ==> marianna
221: 1 -> a ==> out
222: 1 -> a ==> quintian
223: 1 -> a ==> this
224: 1 -> abalone ==> abaloney
225: 1 -> abalone ==> aboloni
226: 1 -> abalone's ==> of
227: 1 -> abbe ==> albert
228: 1 -> abbess ==> base
229: 1 -> abdicates ==> applicates
230: 1 -> above ==> zobeth
231: 1 -> accessories ==> assessaries
232: 1 -> account ==> count
233: 1 -> accrue ==> accrues
234: 1 -> ached ==> ache
235: 1 -> adamnan ==> adamnon
236: 1 -> adorned ==> adorn
237: 1 -> adventuring ==> avensuring
238: 1 -> advise ==> advis
239: 1 -> aeons ==> ions
240: 1 -> afoot ==> foot
241: 1 -> afore ==> poor
242: 1 -> africanus ==> afracanus
243: 1 -> again ==> a
244: 1 -> again ==> against
245: 1 -> agglomerations ==> eglomerations
246: 1 -> aidan ==> aden
247: 1 -> air ==> heir
248: 1 -> alabama ==> alabamabur
249: 1 -> alarm ==> lawn
250: 1 -> alchemy ==> alcomy
251: 1 -> algae ==> algie
252: 1 -> algebra ==> for
253: 1 -> all ==> while
254: 1 -> allurement ==> alluriment
255: 1 -> alma ==> almah
256: 1 -> almoner ==> ominer
257: 1 -> am ==> i'm
258: 1 -> ambulance ==> abulance
259: 1 -> ambulances ==> ambulences
260: 1 -> amenities ==> eminities
261: 1 -> an ==> at
262: 1 -> an ==> every
263: 1 -> an ==> i
264: 1 -> an ==> martin
265: 1 -> an ==> on
266: 1 -> anachronisms ==> oconisms
267: 1 -> anaesthesia ==> anesthesia
268: 1 -> analyses ==> analysies
269: 1 -> anatolia ==> ametolia
270: 1 -> and ==> antiagan
271: 1 -> and ==> as
272: 1 -> and ==> but
273: 1 -> and ==> eastern
274: 1 -> and ==> it
275: 1 -> and ==> marian
276: 1 -> and ==> on
277: 1 -> and ==> parents
278: 1 -> and ==> rawdon
279: 1 -> and ==> saxon
280: 1 -> and ==> that
281: 1 -> animals ==> animal's
282: 1 -> ann ==> am
283: 1 -> announced ==> not
284: 1 -> answered ==> answer
285: 1 -> antecedents ==> antisedents
286: 1 -> any ==> the
287: 1 -> apiece ==> piece
288: 1 -> apollinaris ==> polonaris
289: 1 -> applaud ==> applode
290: 1 -> appliances ==> pliances
291: 1 -> appropriate ==> propiate
292: 1 -> arabesque ==> arabask
293: 1 -> arc ==> ark
294: 1 -> arch ==> ark
295: 1 -> arched ==> overarched
296: 1 -> arcturus ==> octorus
297: 1 -> ardour ==> ardor
298: 1 -> are ==> and
299: 1 -> are ==> carjur
300: 1 -> arena ==> area
301: 1 -> arians ==> ariens
302: 1 -> arkansas ==> arcansa
303: 1 -> armine ==> mine
304: 1 -> arming ==> army
305: 1 -> aroma ==> erolement
306: 1 -> aroma ==> eroleum
307: 1 -> artist ==> artists
308: 1 -> artists ==> artist's
309: 1 -> as ==> and
310: 1 -> as ==> answers
311: 1 -> as ==> lena's
312: 1 -> ascended ==> ascend
313: 1 -> ask ==> asked
314: 1 -> asked ==> ask
315: 1 -> aslant ==> slant
316: 1 -> asleep ==> sleep
317: 1 -> asparagus ==> esperagous
318: 1 -> asplenium ==> splenium
319: 1 -> ass ==> asked
320: 1 -> assault ==> salt
321: 1 -> assent ==> ascent
322: 1 -> assigned ==> sign
323: 1 -> assiniboine ==> asinnerbone
324: 1 -> assured ==> reassured
325: 1 -> asthma ==> asma
326: 1 -> astir ==> stir
327: 1 -> astride ==> satisfied
328: 1 -> asura ==> usurah
329: 1 -> at ==> a
330: 1 -> at ==> as
331: 1 -> at ==> it
332: 1 -> at ==> of
333: 1 -> at ==> up
334: 1 -> athanasius ==> ephinasius
335: 1 -> atlanta ==> itlana
336: 1 -> aunt ==> end
337: 1 -> aunt ==> for
338: 1 -> autumn ==> sodom
339: 1 -> awakened ==> wakened
340: 1 -> away ==> way
341: 1 -> awls ==> all's
342: 1 -> ay ==> eye
343: 1 -> ay ==> i
344: 1 -> b ==> bee
345: 1 -> babies ==> baby's
346: 1 -> backed ==> back
347: 1 -> balvastro ==> balvestril
348: 1 -> bambeday ==> bambady
349: 1 -> bambeday ==> day
350: 1 -> ban ==> band
351: 1 -> banjo ==> bandit
352: 1 -> barcelona ==> barsalona
353: 1 -> barrel ==> sparrow
354: 1 -> bartley ==> bartle
355: 1 -> bartley ==> bartlee
356: 1 -> bartley ==> partly
357: 1 -> baulked ==> bawled
358: 1 -> bayoneted ==> bayonetted
359: 1 -> bean ==> being
360: 1 -> beans ==> beams
361: 1 -> bear ==> bare
362: 1 -> beat ==> meet
363: 1 -> beatitude ==> attitude
364: 1 -> beauregard ==> burgergregg
365: 1 -> been ==> being
366: 1 -> been ==> then
367: 1 -> began ==> became
368: 1 -> begins ==> particans
369: 1 -> bel ==> bell
370: 1 -> belisarius ==> bellisarius
371: 1 -> belli ==> belly
372: 1 -> belonged ==> belong
373: 1 -> bennet ==> it
374: 1 -> bennydeck ==> benedict
375: 1 -> bennydeck ==> bennydick
376: 1 -> bereaved ==> bereaked
377: 1 -> bergez ==> bergas
378: 1 -> bestia ==> bastia
379: 1 -> bill ==> dogville
380: 1 -> bipeds ==> bipets
381: 1 -> birdikins ==> bertikins
382: 1 -> birdlike ==> like
383: 1 -> blacken ==> in
384: 1 -> blanco's ==> blamcos
385: 1 -> blasphemous ==> the
386: 1 -> bleakest ==> bleakist
387: 1 -> bleating ==> bleeding
388: 1 -> bled ==> blood
389: 1 -> blemmyes ==> blemise
390: 1 -> blessed ==> bless
391: 1 -> blue ==> blew
392: 1 -> bluebells ==> bells
393: 1 -> board ==> freeboard
394: 1 -> board ==> pasteboard
395: 1 -> boats ==> boat
396: 1 -> body ==> everybody
397: 1 -> booth ==> both
398: 1 -> bounties ==> bountees
399: 1 -> boys ==> hoboys
400: 1 -> boys ==> voice
401: 1 -> bozzle's ==> basil's
402: 1 -> brand ==> brant
403: 1 -> brandd ==> brand
404: 1 -> brau ==> brow
405: 1 -> brau ==> hoffro
406: 1 -> brau ==> hoofbrah
407: 1 -> bread ==> bret
408: 1 -> breadhouse ==> house
409: 1 -> break ==> brake
410: 1 -> breakup ==> up
411: 1 -> bremer ==> bremmer
412: 1 -> brewer's ==> bruge
413: 1 -> brides ==> bright
414: 1 -> brigade ==> gait
415: 1 -> bright's ==> bright
416: 1 -> bring ==> braying
417: 1 -> brown ==> bran
418: 1 -> brown ==> briole
419: 1 -> buckinghamshire ==> shire
420: 1 -> bugbears ==> bugbear's
421: 1 -> bui ==> but
422: 1 -> bunch ==> lunk
423: 1 -> buns ==> bonds
424: 1 -> buns ==> bones
425: 1 -> bur ==> ber
426: 1 -> bur ==> burr
427: 1 -> burden ==> and
428: 1 -> burgess ==> berges
429: 1 -> burgess ==> burgeous
430: 1 -> burgoynes ==> bragoins
431: 1 -> burros ==> burrows
432: 1 -> burrow ==> borough
433: 1 -> bush' ==> bush
434: 1 -> but ==> that
435: 1 -> but ==> with
436: 1 -> butte ==> butt
437: 1 -> buttermilk ==> milk
438: 1 -> buttoned ==> but
439: 1 -> buzzer's ==> buzzers
440: 1 -> by ==> bye
441: 1 -> by ==> knew
442: 1 -> by ==> passerby
443: 1 -> caisson ==> on
444: 1 -> calculus ==> copylus
445: 1 -> call ==> called
446: 1 -> called ==> call
447: 1 -> called ==> caught
448: 1 -> callimachus ==> calamacchus
449: 1 -> came ==> him
450: 1 -> can't ==> can
451: 1 -> cancer ==> are
452: 1 -> cannibalistic ==> kennibalistic
453: 1 -> cannon ==> tannon
454: 1 -> canterbury ==> cannibary
455: 1 -> canyou ==> canyon
456: 1 -> capitol ==> capital
457: 1 -> captains ==> captain
458: 1 -> cards ==> carts
459: 1 -> caring ==> carrying
460: 1 -> carrot ==> curret
461: 1 -> casserole ==> roll
462: 1 -> caste ==> cast
463: 1 -> casts ==> cast
464: 1 -> casus ==> cassus
465: 1 -> cat ==> cap
466: 1 -> cease ==> fire
467: 1 -> cedars ==> conspiring
468: 1 -> ceiling ==> feeling
469: 1 -> ceiling ==> sealing
470: 1 -> celery ==> salary
471: 1 -> celestine ==> kellystine
472: 1 -> censure ==> cinger
473: 1 -> center ==> centre
474: 1 -> center ==> her
475: 1 -> center ==> setter
476: 1 -> centred ==> centered
477: 1 -> cerinthus ==> corinthis
478: 1 -> chaba ==> choba
479: 1 -> chablis ==> schibli
480: 1 -> chand ==> bonaciain
481: 1 -> chanticleer ==> champticleer
482: 1 -> chaparral ==> chapparal
483: 1 -> charlie's ==> charley's
484: 1 -> chased ==> chaste
485: 1 -> cheatham ==> em
486: 1 -> chefs ==> shefts
487: 1 -> cheroot ==> charut
488: 1 -> chestnut ==> casnut
489: 1 -> chief ==> chip
490: 1 -> child ==> child's
491: 1 -> chowder ==> charter
492: 1 -> christi ==> creemacisti
493: 1 -> christmases ==> christmass
494: 1 -> chrysostom ==> chrystom
495: 1 -> citric ==> cytric
496: 1 -> claudia ==> claudius
497: 1 -> clear ==> queen
498: 1 -> clews ==> close
499: 1 -> climate ==> climate's
500: 1 -> clothed ==> clothes
501: 1 -> cloudlike ==> like
502: 1 -> cloves ==> clubs
503: 1 -> coal ==> cold
504: 1 -> coal ==> refused
505: 1 -> coarse ==> course
506: 1 -> cold ==> uncalled
507: 1 -> collander ==> calendar
508: 1 -> collapse ==> collapsed
509: 1 -> collier ==> kirker
510: 1 -> color ==> collar
511: 1 -> color ==> colored
512: 1 -> colors ==> collars
513: 1 -> colour ==> color
514: 1 -> coloured ==> colored
515: 1 -> colours ==> colors
516: 1 -> comedian ==> in
517: 1 -> comers ==> newcomers
518: 1 -> coming ==> in
519: 1 -> completely ==> thee
520: 1 -> congal ==> congle
521: 1 -> congal's ==> conglo's
522: 1 -> conjurers ==> conjurors
523: 1 -> connell ==> conall
524: 1 -> connell's ==> conall's
525: 1 -> constraint ==> constrained
526: 1 -> continue ==> continued
527: 1 -> conventicles ==> conventionals
528: 1 -> convolvulus ==> convolviless
529: 1 -> cooler ==> crueler
530: 1 -> copyright ==> right
531: 1 -> coralie ==> corley
532: 1 -> coralie ==> correli
533: 1 -> corncakes ==> cakes
534: 1 -> corridor ==> quarter
535: 1 -> could ==> good
536: 1 -> county ==> country
537: 1 -> coupons ==> coopons
538: 1 -> coupons ==> ons
539: 1 -> cowboy ==> capboy
540: 1 -> cowmen ==> and
541: 1 -> cowpunchers ==> cowpenters
542: 1 -> crawfish ==> craftish
543: 1 -> creeters ==> crater's
544: 1 -> crevassed ==> cloud
545: 1 -> crispness ==> christmas
546: 1 -> cross ==> crossed
547: 1 -> crumpets ==> croppets
548: 1 -> crumpets ==> trumpets
549: 1 -> crusty ==> cresty
550: 1 -> cuisine ==> casine
551: 1 -> cuisine ==> kuzin
552: 1 -> curer ==> cure
553: 1 -> curley ==> curly
554: 1 -> currant ==> current
555: 1 -> cynthy ==> synthy
556: 1 -> cyril ==> carroll
557: 1 -> cyril ==> currol
558: 1 -> d'avrigny ==> daverni
559: 1 -> daguerreotype ==> garotype
560: 1 -> daguerreotype ==> type
561: 1 -> daguerreotypist ==> degarthypus
562: 1 -> daguerreotypist ==> gareotypus
563: 1 -> damson ==> dampsen
564: 1 -> dante's ==> dantes
565: 1 -> darfhulva ==> a
566: 1 -> dashed ==> dash
567: 1 -> david ==> for
568: 1 -> dawes ==> daws
569: 1 -> day ==> terror
570: 1 -> day's ==> days
571: 1 -> dead ==> ded
572: 1 -> deadly ==> douby
573: 1 -> dear ==> beer
574: 1 -> declamations ==> plymations
575: 1 -> declaring ==> clearing
576: 1 -> deep ==> steep
577: 1 -> defense ==> defence
578: 1 -> degenerate ==> maddigitonomy
579: 1 -> delaunay's ==> langes
580: 1 -> delectasti ==> delectassi
581: 1 -> delia's ==> delias
582: 1 -> delicacy ==> delicacies
583: 1 -> dene ==> ordean
584: 1 -> derisive ==> diversive
585: 1 -> descent ==> scent
586: 1 -> desk ==> dusk
587: 1 -> detach ==> attach
588: 1 -> detail ==> tell
589: 1 -> detective ==> deductive
590: 1 -> detective's ==> detectives
591: 1 -> deucalion ==> d'artagnan
592: 1 -> deucalion ==> dacalian
593: 1 -> deucalion ==> ducalian
594: 1 -> devil ==> double
595: 1 -> devotees ==> votis
596: 1 -> dhourra ==> dora
597: 1 -> diced ==> nice
598: 1 -> did ==> that
599: 1 -> difficulty ==> worst
600: 1 -> diocese ==> diasis
601: 1 -> dishes ==> ditches
602: 1 -> dispatch ==> despatch
603: 1 -> dispatched ==> despatched
604: 1 -> distaff ==> staff
605: 1 -> distinguishing ==> distinguisheding
606: 1 -> divers ==> diverse
607: 1 -> divorced ==> divorce
608: 1 -> do ==> did
609: 1 -> do ==> to
610: 1 -> docetes ==> docite
611: 1 -> docile ==> dacile
612: 1 -> docile ==> dawselled
613: 1 -> dock ==> dark
614: 1 -> does ==> is
615: 1 -> dog ==> dense
616: 1 -> dormitories ==> adornatories
617: 1 -> dorriforth ==> doraforth
618: 1 -> dorriforth ==> doroforth
619: 1 -> down ==> on
620: 1 -> dowson ==> dalsen
621: 1 -> dozen ==> doesn't
622: 1 -> drachm ==> home
623: 1 -> drafted ==> draught
624: 1 -> drat ==> at
625: 1 -> drawer ==> door
626: 1 -> drawing ==> drawn
627: 1 -> drawing ==> withdrawing
628: 1 -> dreamed ==> gened
629: 1 -> dreamt ==> tramped
630: 1 -> dress ==> broadstress
631: 1 -> dropping ==> letting
632: 1 -> druidism ==> druitism
633: 1 -> dug ==> do
634: 1 -> dugout ==> out
635: 1 -> dulcinea ==> dosinea
636: 1 -> dulcinea ==> multisineah
637: 1 -> e ==> on
638: 1 -> e'er ==> ere
639: 1 -> ear ==> defir
640: 1 -> earliest ==> earlyst
641: 1 -> earnest ==> ernest
642: 1 -> ease ==> these
643: 1 -> editions ==> additions
644: 1 -> ef ==> if
645: 1 -> effete ==> effite
646: 1 -> eh ==> a
647: 1 -> elbe ==> elb
648: 1 -> ellis ==> ellas
649: 1 -> em ==> adam
650: 1 -> em ==> atom
651: 1 -> embraced ==> embrace
652: 1 -> embryos ==> hydnembryos
653: 1 -> emotions ==> motions
654: 1 -> emphasised ==> emphasized
655: 1 -> emptied ==> emptyed
656: 1 -> encountered ==> counted
657: 1 -> end ==> i
658: 1 -> endeavoring ==> endeavouring
659: 1 -> endeavors ==> endeavours
660: 1 -> endeavoured ==> endeavour
661: 1 -> endorses ==> dorses
662: 1 -> enemy's ==> enemies
663: 1 -> enjoy ==> joy
664: 1 -> ensured ==> insured
665: 1 -> entrees ==> andreas
666: 1 -> epicurism ==> epicureism
667: 1 -> epilobium ==> ipulation
668: 1 -> epistle ==> epistles
669: 1 -> epoch ==> idiominepoch
670: 1 -> equipped ==> equipt
671: 1 -> erewhon ==> irowhon
672: 1 -> esther ==> meant
673: 1 -> etched ==> ets
674: 1 -> eternities ==> ternities
675: 1 -> ethereal ==> ethrial
676: 1 -> ever'body ==> everybody
677: 1 -> every ==> however
678: 1 -> everyday ==> day
679: 1 -> everyone ==> one
680: 1 -> evil ==> evilize
681: 1 -> ewes ==> use
682: 1 -> exaltation ==> exultation
683: 1 -> except ==> accept
684: 1 -> except ==> excepts
685: 1 -> except ==> it
686: 1 -> explained ==> exclaimed
687: 1 -> exprest ==> expressed
688: 1 -> eye ==> eyes
689: 1 -> eyes ==> in
690: 1 -> faber ==> fabre
691: 1 -> faber ==> favour
692: 1 -> facing ==> pacing
693: 1 -> fact ==> effect
694: 1 -> factor's ==> factor
695: 1 -> fagots ==> faggots
696: 1 -> fainted ==> it
697: 1 -> fairs ==> fairies
698: 1 -> fakirs ==> vacres
699: 1 -> fall ==> swell
700: 1 -> farther ==> father
701: 1 -> fat ==> fad
702: 1 -> fate ==> feat
703: 1 -> features ==> feature
704: 1 -> fed ==> set
705: 1 -> feet ==> feat
706: 1 -> felicitous ==> felicity's
707: 1 -> fell ==> felt
708: 1 -> fell ==> found
709: 1 -> fell ==> saw
710: 1 -> felt ==> fell
711: 1 -> felt ==> found
712: 1 -> fencing ==> defensing
713: 1 -> ferdinand ==> our
714: 1 -> fermented ==> it
715: 1 -> ferry ==> steamfarey
716: 1 -> festive ==> festif
717: 1 -> fetes ==> fates
718: 1 -> fevered ==> favourite
719: 1 -> fibi ==> feeby
720: 1 -> field ==> greenfield
721: 1 -> fillmore ==> philmor
722: 1 -> finely ==> finally
723: 1 -> fingernail ==> nail
724: 1 -> finnacta ==> phinocta
725: 1 -> fir ==> fur
726: 1 -> fire ==> prefier
727: 1 -> firing ==> and
728: 1 -> firm ==> infirm
729: 1 -> fish ==> shellfish
730: 1 -> fjord ==> fiord
731: 1 -> fjordungr ==> fiordanger
732: 1 -> flavour ==> flavor
733: 1 -> flog ==> flogged
734: 1 -> fly ==> flight
735: 1 -> foetus ==> featis
736: 1 -> follow ==> fall
737: 1 -> follow ==> followed
738: 1 -> footed ==> surflited
739: 1 -> for ==> before
740: 1 -> for ==> but
741: 1 -> for ==> of
742: 1 -> for ==> therefore
743: 1 -> forbid ==> bed
744: 1 -> force ==> forced
745: 1 -> forcemeat ==> meet
746: 1 -> forecourt ==> forecord
747: 1 -> formed ==> reformed
748: 1 -> fort ==> demoisne
749: 1 -> forward ==> ford
750: 1 -> fought ==> thought
751: 1 -> found ==> followed
752: 1 -> fraid ==> frightened
753: 1 -> franks ==> francs
754: 1 -> free ==> carefully
755: 1 -> friend's ==> friends
756: 1 -> frierson's ==> fryerson's
757: 1 -> from ==> for
758: 1 -> fuchs ==> hooks
759: 1 -> full ==> false
760: 1 -> full ==> food
761: 1 -> fuss ==> our
762: 1 -> gage ==> gauge
763: 1 -> ganny ==> gannie
764: 1 -> gardar ==> guarder
765: 1 -> gas ==> gaff
766: 1 -> gayety ==> gaiety
767: 1 -> gazelle ==> gasaile
768: 1 -> gentlemen ==> gentleman
769: 1 -> gesticulating ==> stikulated
770: 1 -> get ==> did
771: 1 -> get ==> give
772: 1 -> get ==> it
773: 1 -> getting ==> in
774: 1 -> ghoul ==> goul
775: 1 -> giddily ==> giddly
776: 1 -> gillian ==> jellyen
777: 1 -> gilt ==> guilt
778: 1 -> gingle ==> jingle
779: 1 -> girl's ==> girls
780: 1 -> girls ==> girl's
781: 1 -> give ==> get
782: 1 -> glaciers ==> glaccies
783: 1 -> gladden's ==> gladdens
784: 1 -> glared ==> blurred
785: 1 -> gloria ==> glorious
786: 1 -> glycerin ==> glissering
787: 1 -> go ==> like
788: 1 -> god ==> for
789: 1 -> godhead ==> had
790: 1 -> goes ==> poppos
791: 1 -> going ==> goin
792: 1 -> gondola ==> gogdola
793: 1 -> gondola ==> gundola
794: 1 -> gossoons ==> gosoouns
795: 1 -> gothic ==> semigothic
796: 1 -> gourmets ==> gormais
797: 1 -> gown ==> down
798: 1 -> grandparents ==> grandparts
799: 1 -> grate ==> great
800: 1 -> grave ==> grieved
801: 1 -> grethel ==> gretel
802: 1 -> grey ==> gray
803: 1 -> grey ==> great
804: 1 -> griffin's ==> gryphon's
805: 1 -> grocers ==> grocer's
806: 1 -> groom's ==> grooms
807: 1 -> growing ==> going
808: 1 -> grub ==> pyle
809: 1 -> grumblingly ==> grumplingly
810: 1 -> guards ==> upguards
811: 1 -> guiltily ==> guiltyly
812: 1 -> gwynplaine ==> gwynplaine's
813: 1 -> gymnast ==> gimnist
814: 1 -> had ==> have
815: 1 -> had ==> i'd
816: 1 -> had ==> regimented
817: 1 -> had ==> would
818: 1 -> haddock ==> taddock
819: 1 -> half ==> have
820: 1 -> halleck ==> hellock
821: 1 -> halley ==> helly
822: 1 -> hamer ==> hammer
823: 1 -> han ==> had
824: 1 -> hand ==> hands
825: 1 -> hand's ==> hands
826: 1 -> hangar ==> hang
827: 1 -> hansom ==> handsome
828: 1 -> happen ==> happened
829: 1 -> happened ==> happen
830: 1 -> harbor ==> harbour
831: 1 -> hard ==> heart
832: 1 -> hardier ==> heartier
833: 1 -> hardwigg ==> hardwick
834: 1 -> harpies ==> harpees
835: 1 -> has ==> his
836: 1 -> hastened ==> hasten
837: 1 -> hat ==> had
838: 1 -> hatchie ==> hatchy
839: 1 -> have ==> had
840: 1 -> have ==> half
841: 1 -> have ==> of
842: 1 -> having ==> heavy
843: 1 -> he ==> canny
844: 1 -> he ==> he'd
845: 1 -> he ==> we
846: 1 -> he's ==> is
847: 1 -> headlong ==> long
848: 1 -> healthful ==> helpful
849: 1 -> hears ==> here's
850: 1 -> heart's ==> hard
851: 1 -> hearted ==> kindhearted
852: 1 -> hearts ==> heart
853: 1 -> heidelberg ==> hydleberg
854: 1 -> height ==> heights
855: 1 -> helicon ==> halikan
856: 1 -> hepzibah ==> hepsebub
857: 1 -> hepzibah ==> mishapsiver
858: 1 -> hepzibah's ==> as
859: 1 -> hepzibah's ==> hepsippus
860: 1 -> her ==> their
861: 1 -> her's ==> hers
862: 1 -> herbivore ==> war
863: 1 -> heroic ==> hero
864: 1 -> heuchera ==> hoochera
865: 1 -> hi ==> high
866: 1 -> hide ==> horsehide
867: 1 -> hide ==> rawhide
868: 1 -> hilda ==> tilda
869: 1 -> hilda's ==> his
870: 1 -> him ==> ganem
871: 1 -> his ==> is
872: 1 -> his ==> to
873: 1 -> hissed ==> his
874: 1 -> hoard ==> horde
875: 1 -> hochheimer ==> hammer
876: 1 -> hof ==> hove
877: 1 -> holders ==> slaveholders
878: 1 -> holgrave ==> hograve
879: 1 -> holiest ==> holyest
880: 1 -> homecoming ==> coming
881: 1 -> homo ==> helmo
882: 1 -> hon ==> honorable
883: 1 -> honored ==> honoured
884: 1 -> hope ==> hoped
885: 1 -> horror ==> hor
886: 1 -> house ==> farmhouse
887: 1 -> house ==> greenhouse
888: 1 -> housed ==> howlsn
889: 1 -> housemaid ==> made
890: 1 -> how ==> cow
891: 1 -> hows ==> howls
892: 1 -> hugh's ==> has
893: 1 -> huh ==> ha
894: 1 -> huh ==> hump
895: 1 -> hulking ==> hoaking
896: 1 -> hull ==> whole
897: 1 -> humber ==> humbre
898: 1 -> humor ==> humour
899: 1 -> i ==> a
900: 1 -> i ==> eye
901: 1 -> i ==> he
902: 1 -> i'd ==> i
903: 1 -> i've ==> have
904: 1 -> idealisation ==> adilization
905: 1 -> idylls ==> itals
906: 1 -> if ==> with
907: 1 -> il ==> poor
908: 1 -> illusions ==> allusions
909: 1 -> image ==> nimish
910: 1 -> impassibility ==> impossibility
911: 1 -> impetuous ==> petuous
912: 1 -> impost ==> imposed
913: 1 -> impoverished ==> improvished
914: 1 -> in ==> an
915: 1 -> in ==> at
916: 1 -> in ==> engaging
917: 1 -> in ==> esperagus
918: 1 -> in ==> frightened
919: 1 -> in ==> into
920: 1 -> in ==> is
921: 1 -> in ==> jackson
922: 1 -> in ==> knights
923: 1 -> in ==> maiden
924: 1 -> in ==> nin
925: 1 -> in ==> running
926: 1 -> in ==> solden
927: 1 -> in ==> than
928: 1 -> in ==> wherein
929: 1 -> in ==> within
930: 1 -> indian ==> union
931: 1 -> indignation ==> dignity
932: 1 -> inexhausted ==> exhausted
933: 1 -> infuses ==> fuses
934: 1 -> ingratiation ==> ingraciation
935: 1 -> inhale ==> in
936: 1 -> inherent ==> inherited
937: 1 -> iniquitous ==> aniquitous
938: 1 -> inn ==> hydlebergin
939: 1 -> instant ==> instinct
940: 1 -> instrument ==> instruments
941: 1 -> insuperable ==> inseparable
942: 1 -> interests ==> interest
943: 1 -> intermezzo ==> termazo
944: 1 -> intimidated ==> timid
945: 1 -> into ==> and
946: 1 -> into ==> of
947: 1 -> into ==> to
948: 1 -> intruders ==> truetors
949: 1 -> iona ==> ionot
950: 1 -> iona ==> miono
951: 1 -> iona ==> yona
952: 1 -> irolg ==> aronald
953: 1 -> is ==> dangers
954: 1 -> is ==> difficulties
955: 1 -> is ==> fosters
956: 1 -> is ==> it's
957: 1 -> is ==> mazes
958: 1 -> isidore ==> isador
959: 1 -> isn't ==> he'sn't
960: 1 -> it ==> a
961: 1 -> it ==> and
962: 1 -> it ==> brionsonstet
963: 1 -> it ==> culprit
964: 1 -> it ==> divided
965: 1 -> it ==> of
966: 1 -> it ==> that
967: 1 -> it ==> there
968: 1 -> it ==> turneth
969: 1 -> it's ==> it
970: 1 -> it's ==> its
971: 1 -> its ==> his
972: 1 -> its ==> some
973: 1 -> jem's ==> jim's
974: 1 -> jig ==> jerk
975: 1 -> jimmie ==> jimmy
976: 1 -> jingo ==> gingle
977: 1 -> johnston ==> johnson
978: 1 -> jointly ==> joinedly
979: 1 -> jordan ==> jortan
980: 1 -> julian ==> julien
981: 1 -> justin ==> justine
982: 1 -> kaliko ==> kaligo
983: 1 -> karl ==> called
984: 1 -> karl ==> carl
985: 1 -> kate's ==> axicate's
986: 1 -> kearny ==> carey
987: 1 -> kearny ==> nurkirney
988: 1 -> khosala ==> corsala
989: 1 -> kirkland ==> carlin
990: 1 -> kirkleatham ==> thum
991: 1 -> kneading ==> neading
992: 1 -> knight ==> night
993: 1 -> knitted ==> admitted
994: 1 -> knows ==> is
995: 1 -> labours ==> has
996: 1 -> labours ==> laborers
997: 1 -> labours ==> labors
998: 1 -> lacquey's ==> lackeys
999: 1 -> lacrima ==> la
1000: 1 -> lad ==> called
1001: 1 -> ladder ==> latter
1002: 1 -> laid ==> waylaid
1003: 1 -> lamb ==> lamp
1004: 1 -> lamp ==> castlepack
1005: 1 -> lamp ==> gasnep
1006: 1 -> land ==> coastland
1007: 1 -> lands ==> land
1008: 1 -> largess ==> largest
1009: 1 -> larva ==> lava
1010: 1 -> larvae ==> larvie
1011: 1 -> lashes ==> glashes
1012: 1 -> lassen's ==> larsan's
1013: 1 -> lassen's ==> lasson's
1014: 1 -> latter ==> letter
1015: 1 -> lattice ==> latticed
1016: 1 -> lattimer ==> p
1017: 1 -> law ==> all
1018: 1 -> le ==> grip
1019: 1 -> le ==> powd
1020: 1 -> leant ==> leaned
1021: 1 -> leather ==> weather
1022: 1 -> leave ==> leap
1023: 1 -> leaven ==> leban
1024: 1 -> leaven ==> levin
1025: 1 -> lebanon ==> hell
1026: 1 -> led ==> let
1027: 1 -> lee ==> thee
1028: 1 -> leetle ==> little
1029: 1 -> leg ==> legs
1030: 1 -> leighton's ==> latens
1031: 1 -> lemon ==> woman
1032: 1 -> lend ==> let
1033: 1 -> levelled ==> leveled
1034: 1 -> libano ==> delibado
1035: 1 -> lice ==> life
1036: 1 -> lids ==> leeds
1037: 1 -> lie ==> i
1038: 1 -> lie ==> lying
1039: 1 -> lige ==> large
1040: 1 -> lige ==> lyach
1041: 1 -> lige ==> lynch
1042: 1 -> lige ==> mice
1043: 1 -> lighter ==> later
1044: 1 -> like ==> alike
1045: 1 -> like ==> deathlike
1046: 1 -> line ==> aculine
1047: 1 -> linnell's ==> lenell's
1048: 1 -> lisha ==> lycia
1049: 1 -> listen ==> bless
1050: 1 -> literality ==> durality
1051: 1 -> liveryman ==> man
1052: 1 -> lizy ==> lizzie
1053: 1 -> loafing ==> nothing
1054: 1 -> loathe ==> loath
1055: 1 -> lobby ==> molobby
1056: 1 -> logos ==> gossip
1057: 1 -> logos ==> logoss
1058: 1 -> loincloth ==> cloth
1059: 1 -> lombroso ==> bruccil
1060: 1 -> loneliness ==> lowliness
1061: 1 -> long ==> lifelong
1062: 1 -> longer ==> alonggre
1063: 1 -> longer ==> more
1064: 1 -> look'd ==> looked
1065: 1 -> love ==> loves
1066: 1 -> lover ==> her
1067: 1 -> lovest ==> loveest
1068: 1 -> lower ==> lowered
1069: 1 -> lukewarm ==> warm
1070: 1 -> lumpy ==> mobby
1071: 1 -> lumpy ==> slumpy
1072: 1 -> luxuriate ==> exorbiate
1073: 1 -> lycophron ==> rhon
1074: 1 -> lying ==> a
1075: 1 -> lying ==> lined
1076: 1 -> mackerel ==> macrol
1077: 1 -> macklewain ==> alone
1078: 1 -> macklewain ==> awain
1079: 1 -> macklewain ==> mac
1080: 1 -> macklewain ==> maccawaine
1081: 1 -> macklewain's ==> machalwain's
1082: 1 -> madame ==> madam
1083: 1 -> made ==> his
1084: 1 -> made ==> homemaid
1085: 1 -> made ==> maid's
1086: 1 -> made ==> make
1087: 1 -> made ==> may
1088: 1 -> made ==> me
1089: 1 -> made ==> paid
1090: 1 -> madge ==> edge
1091: 1 -> madge ==> match
1092: 1 -> magpie ==> bagpie
1093: 1 -> maid ==> made
1094: 1 -> maidenly ==> a
1095: 1 -> mainhall ==> benhal
1096: 1 -> mainhall ==> manhall
1097: 1 -> mainly ==> lead
1098: 1 -> maize ==> maze
1099: 1 -> make ==> made
1100: 1 -> mall ==> palmal
1101: 1 -> mammal ==> mammo
1102: 1 -> mane ==> man
1103: 1 -> manichaeans ==> manikians
1104: 1 -> mantel ==> mental
1105: 1 -> map ==> at
1106: 1 -> marjoram ==> margerym
1107: 1 -> mark ==> marked
1108: 1 -> marks ==> boermarks
1109: 1 -> marvelling ==> marveling
1110: 1 -> marvelous ==> marvellous
1111: 1 -> masts ==> mass
1112: 1 -> matchmaking ==> maxchmaking
1113: 1 -> matter ==> manner
1114: 1 -> matting ==> mattie
1115: 1 -> may ==> make
1116: 1 -> maybe ==> be
1117: 1 -> mayonnaise ==> manay's
1118: 1 -> mayonnaise ==> manettes
1119: 1 -> me ==> only
1120: 1 -> me ==> think
1121: 1 -> means ==> beans
1122: 1 -> meat ==> meet
1123: 1 -> meath ==> meef
1124: 1 -> mebby ==> maybe
1125: 1 -> medals ==> metals
1126: 1 -> medium ==> immediate
1127: 1 -> meekin ==> and
1128: 1 -> meekin ==> makin
1129: 1 -> meekin ==> mekin
1130: 1 -> meekin ==> miken
1131: 1 -> meet ==> make
1132: 1 -> meeting ==> beating
1133: 1 -> megaphone ==> phone
1134: 1 -> mell ==> mill
1135: 1 -> men's ==> man's
1136: 1 -> men's ==> min's
1137: 1 -> mens ==> men
1138: 1 -> menus ==> use
1139: 1 -> mercantile ==> murkantile
1140: 1 -> mercurial ==> courier
1141: 1 -> mercurial ==> material
1142: 1 -> messrs ==> monsieur's
1143: 1 -> metal ==> middle
1144: 1 -> metropolitan ==> in
1145: 1 -> mezzanine ==> mesonine
1146: 1 -> mezzanine ==> messinine
1147: 1 -> michaelis ==> callis
1148: 1 -> michaelis ==> mechalus
1149: 1 -> michaelis ==> mikhalis
1150: 1 -> michaelis ==> nichalus
1151: 1 -> middle ==> mill
1152: 1 -> mien ==> mean
1153: 1 -> milborough ==> milburgh
1154: 1 -> mines ==> minds
1155: 1 -> minnetaki ==> minnetawki
1156: 1 -> minnetaki ==> minnethocki
1157: 1 -> mint ==> meant
1158: 1 -> mirabel ==> mirabelle
1159: 1 -> misguided ==> misgided
1160: 1 -> miss ==> it
1161: 1 -> mittens ==> numitten's
1162: 1 -> moan ==> moon
1163: 1 -> modoc ==> monarch
1164: 1 -> modocs ==> modox
1165: 1 -> moira ==> moral
1166: 1 -> moling ==> molling
1167: 1 -> moluccas ==> molucus
1168: 1 -> mom ==> mam
1169: 1 -> monstrously ==> modestly
1170: 1 -> monte ==> domantea
1171: 1 -> moorings ==> mournings
1172: 1 -> moraine ==> moraines
1173: 1 -> moribund ==> morbid
1174: 1 -> morrel ==> else
1175: 1 -> mortar ==> mourner
1176: 1 -> moselle ==> mosel
1177: 1 -> moulds ==> mold
1178: 1 -> moulds ==> molds
1179: 1 -> mount ==> mountain
1180: 1 -> mountebank ==> mountabank
1181: 1 -> mountebanks ==> mountabanks
1182: 1 -> move ==> live
1183: 1 -> moving ==> meeting
1184: 1 -> mowed ==> moved
1185: 1 -> muleteers ==> tears
1186: 1 -> mulrady ==> mulradi
1187: 1 -> multitude ==> multitudes
1188: 1 -> mumbled ==> murmured
1189: 1 -> mundane ==> monain
1190: 1 -> mural ==> mule
1191: 1 -> murfreesboro ==> borough
1192: 1 -> murfreesboro ==> spurra
1193: 1 -> musicians ==> musician's
1194: 1 -> my ==> i
1195: 1 -> my ==> one
1196: 1 -> myrdals ==> mitchell's
1197: 1 -> nager ==> nagger
1198: 1 -> near ==> and
1199: 1 -> near ==> nearer
1200: 1 -> nearby ==> by
1201: 1 -> necromancy ==> necrimacy
1202: 1 -> need'st ==> needst
1203: 1 -> neighbor ==> neighbour
1204: 1 -> new ==> what
1205: 1 -> newberg ==> alineuberg
1206: 1 -> newscasts ==> cast
1207: 1 -> newsome's ==> nuison's
1208: 1 -> newsome's ==> nuson's
1209: 1 -> nicless ==> nicholas
1210: 1 -> niece ==> meece
1211: 1 -> night ==> mate
1212: 1 -> night ==> might
1213: 1 -> no ==> nose
1214: 1 -> no ==> sleeping
1215: 1 -> no ==> to
1216: 1 -> noirtier ==> rotier
1217: 1 -> nomes ==> gnomes
1218: 1 -> noontide ==> noontine
1219: 1 -> norfolk ==> ignorfic
1220: 1 -> north ==> norse
1221: 1 -> northwestward ==> westward
1222: 1 -> notwithstanding ==> notwithstandings
1223: 1 -> novatians ==> novations
1224: 1 -> now ==> no
1225: 1 -> now ==> responsibility
1226: 1 -> nowhere ==> where
1227: 1 -> nuova ==> vitannoa
1228: 1 -> nutty ==> netty
1229: 1 -> o ==> at
1230: 1 -> o'clock ==> lock
1231: 1 -> o'farrell ==> opherel
1232: 1 -> obedience ==> opinions
1233: 1 -> occult ==> accalpt
1234: 1 -> occult ==> cold
1235: 1 -> odeon ==> odium
1236: 1 -> of ==> administrative
1237: 1 -> of ==> glorious
1238: 1 -> of ==> have
1239: 1 -> of ==> off
1240: 1 -> of ==> oppressive
1241: 1 -> of ==> sylvine
1242: 1 -> off ==> proromov
1243: 1 -> officinale ==> alley
1244: 1 -> oh ==> o
1245: 1 -> olbinett ==> obenette
1246: 1 -> on ==> an
1247: 1 -> on ==> bound
1248: 1 -> on ==> of
1249: 1 -> on ==> one
1250: 1 -> on ==> under
1251: 1 -> on ==> when
1252: 1 -> once ==> wants
1253: 1 -> once ==> what's
1254: 1 -> one ==> once
1255: 1 -> one ==> what
1256: 1 -> one ==> won
1257: 1 -> or ==> curiousr
1258: 1 -> or ==> goliar
1259: 1 -> or ==> her
1260: 1 -> or ==> where
1261: 1 -> order ==> wanted
1262: 1 -> orestes ==> erastes
1263: 1 -> originally ==> original
1264: 1 -> ossipon's ==> ossippin's
1265: 1 -> ossipon's ==> ossiton's
1266: 1 -> otto ==> otter
1267: 1 -> ought ==> had
1268: 1 -> ought ==> i'll
1269: 1 -> ounce ==> announce
1270: 1 -> ounce ==> oz
1271: 1 -> our ==> are
1272: 1 -> ours ==> ares
1273: 1 -> out ==> northard
1274: 1 -> out ==> up
1275: 1 -> outbuildings ==> buildings
1276: 1 -> outfit ==> oppit
1277: 1 -> pales ==> pails
1278: 1 -> palimpsest ==> sessed
1279: 1 -> palpable ==> popable
1280: 1 -> pampas ==> pompous
1281: 1 -> panacea ==> panassia
1282: 1 -> panada ==> panata
1283: 1 -> papa's ==> papa
1284: 1 -> parent ==> parot
1285: 1 -> parlour ==> parlor
1286: 1 -> parrishes ==> parishes
1287: 1 -> part ==> port
1288: 1 -> pass ==> has
1289: 1 -> pass ==> passed
1290: 1 -> past ==> passed
1291: 1 -> path ==> footpath
1292: 1 -> patients ==> patience
1293: 1 -> pays ==> pace
1294: 1 -> peas ==> pease
1295: 1 -> pell ==> pale
1296: 1 -> pelusium ==> pellesium
1297: 1 -> penitentiary ==> peditantiary
1298: 1 -> perdition ==> tradition
1299: 1 -> perused ==> produced
1300: 1 -> pestle ==> pestal
1301: 1 -> petronels ==> patrinells
1302: 1 -> ph ==> h
1303: 1 -> phantasies ==> fanasies
1304: 1 -> phantasies ==> fantasies
1305: 1 -> phantasy ==> fantasy
1306: 1 -> phases ==> faces
1307: 1 -> phenomenon ==> phenomena
1308: 1 -> philadelphus ==> philodophus
1309: 1 -> philly's ==> fili's
1310: 1 -> phoebe ==> b
1311: 1 -> phoebe ==> feebee
1312: 1 -> phoebe ==> fibi
1313: 1 -> pi ==> grope
1314: 1 -> pickled ==> tickled
1315: 1 -> piglike ==> like
1316: 1 -> pinned ==> pin
1317: 1 -> pinyon ==> opinion
1318: 1 -> pioneer ==> near
1319: 1 -> plains ==> plans
1320: 1 -> plaiting ==> plating
1321: 1 -> plaits ==> plates
1322: 1 -> plane ==> in
1323: 1 -> planned ==> planched
1324: 1 -> playwright ==> rite
1325: 1 -> please ==> pleased
1326: 1 -> pleased ==> placed
1327: 1 -> pleroma ==> plarama
1328: 1 -> plumb ==> plum
1329: 1 -> poems ==> palm
1330: 1 -> polar ==> poor
1331: 1 -> polytheists ==> polyphius
1332: 1 -> pommel ==> palm
1333: 1 -> pommel ==> palmel
1334: 1 -> pong ==> pond
1335: 1 -> poniard ==> poigard
1336: 1 -> ponies ==> pony
1337: 1 -> ponies ==> punnies
1338: 1 -> poorer ==> poor
1339: 1 -> pop ==> papa
1340: 1 -> popcorn ==> with
1341: 1 -> popolo ==> polonais
1342: 1 -> pores ==> poorers
1343: 1 -> poring ==> pouring
1344: 1 -> porphyry ==> porphyri
1345: 1 -> port ==> poor
1346: 1 -> possess'd ==> possessed
1347: 1 -> posturing ==> postering
1348: 1 -> pour ==> poor
1349: 1 -> powell ==> paul
1350: 1 -> pravity ==> privity
1351: 1 -> pretender ==> pretunder
1352: 1 -> primavera ==> immaviata
1353: 1 -> primroses ==> primoses
1354: 1 -> princess ==> princes
1355: 1 -> proceeds ==> precedes
1356: 1 -> program ==> teemy
1357: 1 -> prometheus ==> pometheus
1358: 1 -> promise ==> propos
1359: 1 -> prophets ==> profits
1360: 1 -> proserpina ==> prosepina
1361: 1 -> proteges ==> prodigase
1362: 1 -> proved ==> prude
1363: 1 -> psalm ==> song
1364: 1 -> put ==> but
1365: 1 -> pyre ==> pire
1366: 1 -> quaffed ==> coughed
1367: 1 -> quenelles ==> canals
1368: 1 -> quenelles ==> quinalles
1369: 1 -> quenelles ==> quinals
1370: 1 -> quilter ==> krylter
1371: 1 -> quilter's ==> kulter's
1372: 1 -> racks ==> ranks
1373: 1 -> radiophone ==> phone
1374: 1 -> raimented ==> ramented
1375: 1 -> rain ==> reign
1376: 1 -> rainstorms ==> rainstarms
1377: 1 -> ran ==> work
1378: 1 -> rangitata ==> raggottada
1379: 1 -> rank ==> drink
1380: 1 -> rath ==> wrath
1381: 1 -> rather ==> brother
1382: 1 -> rathskellers ==> colors
1383: 1 -> razetta ==> razeta
1384: 1 -> re ==> awain
1385: 1 -> read ==> red
1386: 1 -> realized ==> realised
1387: 1 -> really ==> ready
1388: 1 -> reals ==> reels
1389: 1 -> reappear ==> appear
1390: 1 -> recognise ==> recognize
1391: 1 -> records ==> contempt
1392: 1 -> regent's ==> regiance
1393: 1 -> regent's ==> regins
1394: 1 -> regiment ==> i
1395: 1 -> reigned ==> and
1396: 1 -> rein ==> rain
1397: 1 -> relating ==> releading
1398: 1 -> remained ==> made
1399: 1 -> remembered ==> remember
1400: 1 -> repertory ==> repetory
1401: 1 -> report ==> port
1402: 1 -> resign'd ==> resigned
1403: 1 -> resort ==> result
1404: 1 -> returned ==> return
1405: 1 -> reverence ==> reference
1406: 1 -> rheumatic ==> romantic
1407: 1 -> rhodes ==> roads
1408: 1 -> rhyme ==> rhine
1409: 1 -> rhymes ==> rhines
1410: 1 -> rhythmically ==> mickly
1411: 1 -> rictus ==> ricktus
1412: 1 -> rider ==> writer
1413: 1 -> riding ==> writing
1414: 1 -> right ==> ride
1415: 1 -> rights ==> rites
1416: 1 -> rigor ==> rigour
1417: 1 -> ring ==> rig
1418: 1 -> ringing ==> wringing
1419: 1 -> rippling ==> ripping
1420: 1 -> riverlike ==> river
1421: 1 -> rosebush ==> bush
1422: 1 -> rosecrans ==> crants
1423: 1 -> rossetti ==> rosetti
1424: 1 -> rounded ==> it
1425: 1 -> roundel ==> surroundal
1426: 1 -> rout ==> ride
1427: 1 -> ruggedo ==> virgado
1428: 1 -> ruggedo's ==> rigados
1429: 1 -> ruled ==> rule
1430: 1 -> run ==> red
1431: 1 -> rusks ==> risks
1432: 1 -> rut ==> rot
1433: 1 -> saknussemm ==> socknoosum
1434: 1 -> salad ==> it
1435: 1 -> salted ==> insulted
1436: 1 -> sana ==> sina
1437: 1 -> sanum ==> sannam
1438: 1 -> satisfier ==> satisfy
1439: 1 -> sauterne ==> sottern
1440: 1 -> sauterne ==> tain
1441: 1 -> savour ==> savor
1442: 1 -> say ==> see
1443: 1 -> says ==> to
1444: 1 -> scalp ==> scoup
1445: 1 -> scantily ==> scantetly
1446: 1 -> scheiler ==> shilar
1447: 1 -> schloss ==> sloss
1448: 1 -> scrubbed ==> grubbed
1449: 1 -> sculpturing ==> sculptureing
1450: 1 -> sear ==> sere
1451: 1 -> secesh ==> sess
1452: 1 -> second's ==> second
1453: 1 -> sectaries ==> secaries
1454: 1 -> sectaries ==> sexuaries
1455: 1 -> seeds ==> seats
1456: 1 -> seeing ==> sing
1457: 1 -> seem ==> seemed
1458: 1 -> seen ==> scene
1459: 1 -> sees ==> seized
1460: 1 -> self ==> hisself
1461: 1 -> selves ==> ownselves
1462: 1 -> semester ==> minister
1463: 1 -> senor ==> signor
1464: 1 -> sensed ==> arrowrogue
1465: 1 -> senseless ==> incenseless
1466: 1 -> serapion ==> serapian
1467: 1 -> servant ==> serpent
1468: 1 -> settled ==> tettled
1469: 1 -> settler ==> supper
1470: 1 -> shampooer ==> shampooler
1471: 1 -> shasta ==> shaster
1472: 1 -> shasta ==> shesta
1473: 1 -> shave ==> shay
1474: 1 -> sheds ==> should
1475: 1 -> sheep's ==> sheeps
1476: 1 -> shell ==> shall
1477: 1 -> shelves ==> walshellves
1478: 1 -> shew ==> show
1479: 1 -> shifting ==> in
1480: 1 -> shimerda ==> merida
1481: 1 -> shimerda ==> to
1482: 1 -> shot ==> shocked
1483: 1 -> should ==> it
1484: 1 -> shrilly ==> surely
1485: 1 -> shut ==> shot
1486: 1 -> sierra ==> era
1487: 1 -> sighs ==> size
1488: 1 -> sight ==> side
1489: 1 -> simmonds ==> simmon's
1490: 1 -> simmonds ==> simmons
1491: 1 -> since ==> sense
1492: 1 -> singer ==> sigur
1493: 1 -> singer ==> sinner
1494: 1 -> sippet ==> cippet
1495: 1 -> sister's ==> sisters
1496: 1 -> site ==> sight
1497: 1 -> sitter ==> citter
1498: 1 -> size ==> sized
1499: 1 -> skelly ==> scowling
1500: 1 -> skint ==> skimps
1501: 1 -> slain ==> lain
1502: 1 -> slaked ==> lake
1503: 1 -> slater ==> slayter
1504: 1 -> slice ==> lace
1505: 1 -> slopes ==> sloped
1506: 1 -> sluicing ==> sloosing
1507: 1 -> smart ==> small
1508: 1 -> smilax ==> similarx
1509: 1 -> smoked ==> smoke
1510: 1 -> snapping ==> snappy
1511: 1 -> snellings ==> snugs
1512: 1 -> so ==> soot
1513: 1 -> so ==> soul
1514: 1 -> soaring ==> soring
1515: 1 -> sofa ==> sopha
1516: 1 -> sold ==> irowan
1517: 1 -> sombrero ==> arrow
1518: 1 -> sombrero ==> submaroke
1519: 1 -> sombrero ==> sumborough
1520: 1 -> sonnet ==> at
1521: 1 -> sorghum ==> sorgum
1522: 1 -> sought ==> saw
1523: 1 -> sounding ==> sending
1524: 1 -> southwark ==> south
1525: 1 -> southwark ==> southward
1526: 1 -> southwark ==> work
1527: 1 -> sow ==> so
1528: 1 -> soyer ==> soire
1529: 1 -> spake ==> speak
1530: 1 -> spare ==> despair
1531: 1 -> speculative ==> of
1532: 1 -> spruce ==> bruce
1533: 1 -> sprucewood ==> brucewood
1534: 1 -> squires ==> choirs
1535: 1 -> stacy ==> cecy
1536: 1 -> stacy ==> she
1537: 1 -> stairs ==> upstairs
1538: 1 -> staked ==> steaked
1539: 1 -> stand ==> stands
1540: 1 -> stand ==> testand
1541: 1 -> start ==> shot
1542: 1 -> stationmaster ==> master
1543: 1 -> stay ==> day
1544: 1 -> stayed ==> state
1545: 1 -> steadily ==> sedley
1546: 1 -> steady ==> assailing
1547: 1 -> stepp'd ==> stepped
1548: 1 -> stept ==> stepped
1549: 1 -> stereos ==> sterio's
1550: 1 -> stevie ==> steedie
1551: 1 -> stevie ==> steepy
1552: 1 -> stevie's ==> stevy's
1553: 1 -> stewpan ==> pan
1554: 1 -> stirrups ==> strips
1555: 1 -> stolidly ==> stoddledly
1556: 1 -> stommick ==> stomach
1557: 1 -> stone's ==> stones
1558: 1 -> stored ==> stord
1559: 1 -> strawberry ==> strapberry
1560: 1 -> street ==> incitiary
1561: 1 -> strength ==> strike
1562: 1 -> strewed ==> strode
1563: 1 -> stronger ==> hunger
1564: 1 -> stube ==> the
1565: 1 -> studied ==> to
1566: 1 -> stupirti ==> parastability
1567: 1 -> succeed ==> succeeded
1568: 1 -> sudvestr ==> sioux
1569: 1 -> suited ==> insuited
1570: 1 -> sundry ==> dream
1571: 1 -> suns ==> sons
1572: 1 -> superior ==> requiminating
1573: 1 -> sure ==> she
1574: 1 -> surprise ==> surprised
1575: 1 -> surprised ==> surprise
1576: 1 -> surprising ==> prizeing
1577: 1 -> surrounded ==> surrendered
1578: 1 -> sutter ==> citter
1579: 1 -> swarthy ==> the
1580: 1 -> sweat ==> swept
1581: 1 -> sweetwater ==> water
1582: 1 -> swooned ==> wound
1583: 1 -> swords ==> swards
1584: 1 -> sydenham ==> sidenham
1585: 1 -> sydenham ==> sidonum
1586: 1 -> synagogues ==> sineagogues
1587: 1 -> synesius's ==> scenesius's
1588: 1 -> tablespoonful ==> spoonful
1589: 1 -> tablespoons ==> spoons
1590: 1 -> tablespoons ==> tablespoonfuls
1591: 1 -> tad's ==> tad
1592: 1 -> tahoe ==> toho
1593: 1 -> takes ==> take
1594: 1 -> taloned ==> tallened
1595: 1 -> tar ==> coltar
1596: 1 -> tarpaulin ==> tarkalan
1597: 1 -> tarrinzeau ==> tadinzo
1598: 1 -> tartaric ==> tertarc
1599: 1 -> tears ==> terrace
1600: 1 -> teaspoonful ==> spoon
1601: 1 -> teaspoonful ==> spoonful
1602: 1 -> telecast ==> telecass
1603: 1 -> telemetering ==> metering
1604: 1 -> television ==> and
1605: 1 -> tell ==> until
1606: 1 -> tempting ==> attempting
1607: 1 -> tense ==> tints
1608: 1 -> terro ==> tarrol
1609: 1 -> than ==> in
1610: 1 -> than ==> that
1611: 1 -> than ==> then
1612: 1 -> thank ==> thing
1613: 1 -> thanked ==> thinked
1614: 1 -> thanking ==> thinking
1615: 1 -> that ==> but
1616: 1 -> that ==> had
1617: 1 -> that ==> if
1618: 1 -> that ==> it
1619: 1 -> that ==> what
1620: 1 -> that'll ==> battle
1621: 1 -> thatched ==> fetched
1622: 1 -> the ==> channer
1623: 1 -> the ==> miss
1624: 1 -> the ==> of
1625: 1 -> the ==> some
1626: 1 -> the ==> they
1627: 1 -> them ==> him
1628: 1 -> them ==> then
1629: 1 -> theocritus ==> theocratus
1630: 1 -> theodosius ==> odosius
1631: 1 -> there ==> here
1632: 1 -> there ==> that
1633: 1 -> there ==> their
1634: 1 -> there's ==> is
1635: 1 -> therefrom ==> from
1636: 1 -> they ==> closely
1637: 1 -> they ==> there
1638: 1 -> they'll ==> don't
1639: 1 -> they're ==> their
1640: 1 -> they've ==> they'd
1641: 1 -> thing ==> everything
1642: 1 -> this ==> to
1643: 1 -> those ==> so
1644: 1 -> those ==> the
1645: 1 -> thou ==> the
1646: 1 -> thou ==> vow
1647: 1 -> though ==> that
1648: 1 -> throb ==> throbbed
1649: 1 -> through ==> three
1650: 1 -> thundercloud ==> cloud
1651: 1 -> tide ==> tied
1652: 1 -> tide ==> tired
1653: 1 -> tightly ==> entirely
1654: 1 -> tilted ==> tufted
1655: 1 -> tis ==> his
1656: 1 -> tishimingo ==> mingo
1657: 1 -> to ==> a
1658: 1 -> to ==> at
1659: 1 -> to ==> budwah
1660: 1 -> to ==> into
1661: 1 -> to ==> load
1662: 1 -> to ==> no
1663: 1 -> to ==> of
1664: 1 -> to ==> rock
1665: 1 -> to ==> too
1666: 1 -> to ==> you
1667: 1 -> tokyo ==> tokia
1668: 1 -> tomatoes ==> tabatos
1669: 1 -> tonight ==> night
1670: 1 -> too ==> two
1671: 1 -> took ==> to
1672: 1 -> tops ==> top
1673: 1 -> touch ==> touched
1674: 1 -> tourmaline ==> tormelee
1675: 1 -> tourmaline ==> tormily
1676: 1 -> towards ==> toward
1677: 1 -> towne ==> town
1678: 1 -> tracing ==> chasing
1679: 1 -> trampe ==> tramp
1680: 1 -> trap ==> wrap
1681: 1 -> trauma ==> deftroma
1682: 1 -> traveled ==> travelled
1683: 1 -> travellers ==> travelers
1684: 1 -> treble ==> trouble
1685: 1 -> trevelyan ==> trevilleion
1686: 1 -> trevelyan's ==> trivaliant's
1687: 1 -> triggered ==> trigger'd
1688: 1 -> trivialities ==> viaialities
1689: 1 -> troke ==> croak
1690: 1 -> troop ==> group
1691: 1 -> trot's ==> trot
1692: 1 -> trouble ==> troubled
1693: 1 -> troublemaker ==> picks
1694: 1 -> trubner ==> tribner
1695: 1 -> trusses ==> tresses
1696: 1 -> trusts ==> trust
1697: 1 -> tryst ==> trust
1698: 1 -> tube ==> two
1699: 1 -> tumble's ==> tumbles
1700: 1 -> tuning ==> tuneing
1701: 1 -> tupper ==> topper
1702: 1 -> tureen ==> tree
1703: 1 -> turn ==> turned
1704: 1 -> twined ==> twine
1705: 1 -> tyrannise ==> tyrannize
1706: 1 -> tyson ==> tison
1707: 1 -> udder ==> adder
1708: 1 -> udder ==> utter
1709: 1 -> una ==> a
1710: 1 -> unadorned ==> unadorn
1711: 1 -> unburied ==> unberry
1712: 1 -> undisciplined ==> undiscipient
1713: 1 -> unfavourable ==> unfavorable
1714: 1 -> uninhabitable ==> uninable
1715: 1 -> unit ==> union
1716: 1 -> unlike ==> like
1717: 1 -> unlooked ==> looked
1718: 1 -> unsoldierly ==> unsulgiary
1719: 1 -> unsolved ==> unsoled
1720: 1 -> unsteadiness ==> steadiness
1721: 1 -> untruss ==> untrusp
1722: 1 -> unworldly ==> unwordly
1723: 1 -> up ==> a
1724: 1 -> upset ==> abset
1725: 1 -> urania ==> yaronia
1726: 1 -> us ==> a
1727: 1 -> usurping ==> assurping
1728: 1 -> v ==> agise
1729: 1 -> v ==> teevy
1730: 1 -> vain ==> vein
1731: 1 -> valkyrie ==> falkery
1732: 1 -> valkyrie ==> vulgary
1733: 1 -> vantages ==> advantages
1734: 1 -> varied ==> buried
1735: 1 -> varlet ==> varlets
1736: 1 -> vaunting ==> fonting
1737: 1 -> vegetated ==> vegetatited
1738: 1 -> vendhya ==> vendia
1739: 1 -> veni ==> vainly
1740: 1 -> veolan ==> telibaylon
1741: 1 -> verandah ==> veranda
1742: 1 -> vernacular ==> vinacular
1743: 1 -> very ==> i
1744: 1 -> very ==> varion
1745: 1 -> viands ==> violence
1746: 1 -> videt ==> vitette
1747: 1 -> view ==> hilvieu
1748: 1 -> vinos ==> phinus
1749: 1 -> vinos ==> venus
1750: 1 -> virgilius ==> vircilius
1751: 1 -> vittles ==> fiddles
1752: 1 -> vladimir ==> fladimir
1753: 1 -> volatile ==> vault
1754: 1 -> wabi ==> he
1755: 1 -> wabi ==> wapi
1756: 1 -> wabigoon's ==> long
1757: 1 -> wabigoon's ==> wabigawan's
1758: 1 -> wahiti ==> wahidi
1759: 1 -> wakened ==> awakened
1760: 1 -> wander ==> wonder
1761: 1 -> waned ==> rain
1762: 1 -> war ==> sueur
1763: 1 -> warning ==> warding
1764: 1 -> wary ==> weary
1765: 1 -> was ==> were
1766: 1 -> was ==> with
1767: 1 -> wayne ==> fortwain
1768: 1 -> we've ==> leave
1769: 1 -> we've ==> we'd
1770: 1 -> weapon ==> wept
1771: 1 -> wedded ==> it
1772: 1 -> week ==> opeak
1773: 1 -> weighed ==> weigh
1774: 1 -> weiser ==> visor
1775: 1 -> were ==> are
1776: 1 -> were ==> rich
1777: 1 -> were ==> there
1778: 1 -> were ==> where
1779: 1 -> were ==> worth
1780: 1 -> wert ==> weret
1781: 1 -> westmere ==> westmore
1782: 1 -> what ==> which
1783: 1 -> what's ==> was
1784: 1 -> what's ==> what
1785: 1 -> wheezed ==> weeded
1786: 1 -> whelm ==> well
1787: 1 -> when ==> went
1788: 1 -> whereby ==> by
1789: 1 -> whether ==> whither
1790: 1 -> whirr ==> were
1791: 1 -> who's ==> is
1792: 1 -> who's ==> whose
1793: 1 -> whole ==> all
1794: 1 -> whole ==> hole
1795: 1 -> wholly ==> holy
1796: 1 -> why ==> well
1797: 1 -> why ==> what
1798: 1 -> whys ==> wise
1799: 1 -> wi ==> with
1800: 1 -> wildering ==> willering
1801: 1 -> wilkerson ==> and
1802: 1 -> wilsons ==> wilson's
1803: 1 -> winding ==> gowining
1804: 1 -> wine ==> wand
1805: 1 -> wine ==> wench
1806: 1 -> wink ==> week
1807: 1 -> winton ==> winter
1808: 1 -> with ==> for
1809: 1 -> within ==> an
1810: 1 -> within ==> in
1811: 1 -> woman ==> woman's
1812: 1 -> womb ==> wound
1813: 1 -> woongas ==> wounders
1814: 1 -> words ==> word
1815: 1 -> work ==> farmwork
1816: 1 -> working ==> looking
1817: 1 -> world's ==> swerld's
1818: 1 -> worse ==> where
1819: 1 -> worshiping ==> worshipping
1820: 1 -> wrangler ==> ringler
1821: 1 -> wrangler's ==> is
1822: 1 -> wronged ==> round
1823: 1 -> wrote ==> rode
1824: 1 -> wry ==> rye
1825: 1 -> yank ==> yax
1826: 1 -> yankee ==> he
1827: 1 -> yard ==> barnyard
1828: 1 -> yo ==> you
1829: 1 -> yokul ==> yokel
1830: 1 -> yolk ==> yoke
1831: 1 -> you ==> he
1832: 1 -> you ==> she
1833: 1 -> you ==> we
1834: 1 -> you ==> your
1835: 1 -> you'll ==> don't
1836: 1 -> you'll ==> old
1837: 1 -> you've ==> you'd
1838: 1 -> your ==> mure
1839: 1 -> your ==> you'll
1840: 1 -> youth ==> youths
1841: 1 -> yulka ==> yolka
1842: 1 -> yulka ==> yolko
1843: 1 -> yundt ==> yank
1844: 1 -> yundt ==> yunt
1845: 1 -> zingiber ==> official
-------
2268
INSERTIONS Total (167)
With >= 1 occurrences (167)
1: 23 -> a
2: 14 -> the
3: 13 -> and
4: 11 -> i
5: 8 -> in
6: 6 -> it
7: 5 -> of
8: 5 -> to
9: 4 -> any
10: 4 -> sauce
11: 4 -> that
12: 3 -> force
13: 3 -> some
14: 2 -> all
15: 2 -> are
16: 2 -> around
17: 2 -> at
18: 2 -> battle
19: 2 -> beer
20: 2 -> big
21: 2 -> but
22: 2 -> color
23: 2 -> corn
24: 2 -> draw
25: 2 -> drew
26: 2 -> due
27: 2 -> he
28: 2 -> may
29: 2 -> mc
30: 2 -> more
31: 2 -> play
32: 2 -> rose
33: 2 -> so
34: 2 -> table
35: 2 -> tea
36: 2 -> there
37: 2 -> which
38: 1 -> abaloneies
39: 1 -> an
40: 1 -> ancestor
41: 1 -> back
42: 1 -> be
43: 1 -> beggar
44: 1 -> bird
45: 1 -> black
46: 1 -> blast
47: 1 -> blue
48: 1 -> boat
49: 1 -> bread
50: 1 -> break
51: 1 -> buckingham
52: 1 -> butter
53: 1 -> by
54: 1 -> case
55: 1 -> castle
56: 1 -> cheat
57: 1 -> coal
58: 1 -> come
59: 1 -> committee
60: 1 -> complete
61: 1 -> copy
62: 1 -> count
63: 1 -> coup
64: 1 -> crevast
65: 1 -> dark
66: 1 -> day
67: 1 -> de
68: 1 -> degarrow
69: 1 -> dish
70: 1 -> du
71: 1 -> dug
72: 1 -> every
73: 1 -> eyelids
74: 1 -> feigned
75: 1 -> fernand
76: 1 -> figure
77: 1 -> from
78: 1 -> get
79: 1 -> god
80: 1 -> got
81: 1 -> had
82: 1 -> half
83: 1 -> haw
84: 1 -> head
85: 1 -> held
86: 1 -> heps
87: 1 -> herb
88: 1 -> home
89: 1 -> house
90: 1 -> hove
91: 1 -> if
92: 1 -> kirkley
93: 1 -> labor
94: 1 -> lake
95: 1 -> latimer
96: 1 -> line
97: 1 -> livery
98: 1 -> look
99: 1 -> love
100: 1 -> low
101: 1 -> mac
102: 1 -> made
103: 1 -> maker
104: 1 -> meek
105: 1 -> men
106: 1 -> metropolis
107: 1 -> mucher
108: 1 -> mule
109: 1 -> murphy
110: 1 -> murphy's
111: 1 -> my
112: 1 -> near
113: 1 -> news
114: 1 -> nor
115: 1 -> north
116: 1 -> oh
117: 1 -> orath's
118: 1 -> out
119: 1 -> outs
120: 1 -> ox
121: 1 -> p
122: 1 -> palom
123: 1 -> pire
124: 1 -> pop
125: 1 -> radio
126: 1 -> rode
127: 1 -> round
128: 1 -> s
129: 1 -> seized
130: 1 -> sell
131: 1 -> sent
132: 1 -> shift
133: 1 -> smere
134: 1 -> son
135: 1 -> south
136: 1 -> spectacle
137: 1 -> station
138: 1 -> stew
139: 1 -> study
140: 1 -> sware
141: 1 -> sweet
142: 1 -> telephone
143: 1 -> tell
144: 1 -> their
145: 1 -> them
146: 1 -> then
147: 1 -> they
148: 1 -> this
149: 1 -> thunder
150: 1 -> tisha
151: 1 -> too
152: 1 -> trouble
153: 1 -> up
154: 1 -> wane
155: 1 -> were
156: 1 -> when
157: 1 -> where
158: 1 -> while
159: 1 -> who
160: 1 -> will
161: 1 -> wish
162: 1 -> with
163: 1 -> workers
164: 1 -> wrangler
165: 1 -> wring
166: 1 -> you
167: 1 -> zingeber
-------
281
DELETIONS Total (452)
With >= 1 occurrences (452)
1: 45 -> the
2: 39 -> and
3: 29 -> of
4: 28 -> to
5: 26 -> a
6: 19 -> in
7: 9 -> it
8: 8 -> with
9: 7 -> as
10: 7 -> at
11: 7 -> mary
12: 6 -> for
13: 6 -> up
14: 5 -> her
15: 5 -> i
16: 5 -> one
17: 5 -> or
18: 5 -> them
19: 5 -> who
20: 4 -> an
21: 4 -> any
22: 4 -> by
23: 4 -> his
24: 4 -> is
25: 4 -> new
26: 4 -> on
27: 3 -> all
28: 3 -> but
29: 3 -> from
30: 3 -> how
31: 3 -> into
32: 3 -> over
33: 3 -> they
34: 3 -> those
35: 3 -> vita
36: 3 -> which
37: 3 -> wood
38: 3 -> would
39: 2 -> along
40: 2 -> among
41: 2 -> bad
42: 2 -> bed
43: 2 -> butter
44: 2 -> call
45: 2 -> can
46: 2 -> death
47: 2 -> divide
48: 2 -> east
49: 2 -> every
50: 2 -> explained
51: 2 -> farm
52: 2 -> found
53: 2 -> gas
54: 2 -> good
55: 2 -> green
56: 2 -> growth
57: 2 -> had
58: 2 -> half
59: 2 -> he
60: 2 -> hell
61: 2 -> hof
62: 2 -> julia
63: 2 -> kind
64: 2 -> let
65: 2 -> longer
66: 2 -> mc
67: 2 -> mean
68: 2 -> mister
69: 2 -> more
70: 2 -> out
71: 2 -> own
72: 2 -> put
73: 2 -> roundel
74: 2 -> some
75: 2 -> sublime
76: 2 -> t
77: 2 -> that
78: 2 -> themselves
79: 2 -> through
80: 2 -> way
81: 1 -> about
82: 1 -> accept
83: 1 -> acknowledge
84: 1 -> administrator
85: 1 -> admired
86: 1 -> age
87: 1 -> alexandria
88: 1 -> alice
89: 1 -> ambition
90: 1 -> ampler
91: 1 -> ancient
92: 1 -> ann
93: 1 -> annex
94: 1 -> another
95: 1 -> answer
96: 1 -> antioch
97: 1 -> appointed
98: 1 -> are
99: 1 -> art
100: 1 -> asparagus
101: 1 -> assign
102: 1 -> attempted
103: 1 -> autumn
104: 1 -> away
105: 1 -> barn
106: 1 -> basin
107: 1 -> battle
108: 1 -> be
109: 1 -> beauty
110: 1 -> behind
111: 1 -> being
112: 1 -> between
113: 1 -> bhunda
114: 1 -> big
115: 1 -> birket
116: 1 -> bliss
117: 1 -> bore
118: 1 -> boudoir
119: 1 -> bride
120: 1 -> brides
121: 1 -> brion
122: 1 -> brood
123: 1 -> butte
124: 1 -> captive
125: 1 -> cards
126: 1 -> care
127: 1 -> carker
128: 1 -> cells
129: 1 -> chandler
130: 1 -> charge
131: 1 -> charles
132: 1 -> charms
133: 1 -> child
134: 1 -> church's
135: 1 -> clean
136: 1 -> close
137: 1 -> coast
138: 1 -> cold
139: 1 -> coming
140: 1 -> condemns
141: 1 -> contemplative
142: 1 -> cornucopias
143: 1 -> could
144: 1 -> cream
145: 1 -> curious
146: 1 -> danger
147: 1 -> dashed
148: 1 -> de
149: 1 -> dead
150: 1 -> deaf
151: 1 -> decay
152: 1 -> deed
153: 1 -> del
154: 1 -> dent's
155: 1 -> des
156: 1 -> destructible
157: 1 -> destruction
158: 1 -> die
159: 1 -> disgrace
160: 1 -> dish
161: 1 -> disturb
162: 1 -> down
163: 1 -> drive
164: 1 -> earth
165: 1 -> egoisms
166: 1 -> encouraged
167: 1 -> engaged
168: 1 -> entangled
169: 1 -> equally
170: 1 -> erewhon
171: 1 -> even
172: 1 -> exploding
173: 1 -> extended
174: 1 -> extraordinary
175: 1 -> fain
176: 1 -> fast
177: 1 -> fearing
178: 1 -> feather
179: 1 -> features
180: 1 -> find
181: 1 -> flash
182: 1 -> follower
183: 1 -> foot
184: 1 -> forbearance
185: 1 -> forest
186: 1 -> forests
187: 1 -> form
188: 1 -> foster's
189: 1 -> france
190: 1 -> free
191: 1 -> frenzy
192: 1 -> fresh
193: 1 -> fried
194: 1 -> full
195: 1 -> gasping
196: 1 -> gently
197: 1 -> german
198: 1 -> give
199: 1 -> glories
200: 1 -> grub
201: 1 -> gully
202: 1 -> guy's
203: 1 -> handed
204: 1 -> hang
205: 1 -> hard
206: 1 -> has
207: 1 -> haut
208: 1 -> heidelberg
209: 1 -> heresies
210: 1 -> hero
211: 1 -> hidden
212: 1 -> hill
213: 1 -> him
214: 1 -> himself
215: 1 -> holiness
216: 1 -> homage
217: 1 -> home
218: 1 -> homoiousios
219: 1 -> homoousios
220: 1 -> horse
221: 1 -> hot
222: 1 -> humanity
223: 1 -> hypocrites
224: 1 -> idiom
225: 1 -> ill
226: 1 -> impara
227: 1 -> ingrained
228: 1 -> instantly
229: 1 -> irolg
230: 1 -> italy
231: 1 -> jack's
232: 1 -> john
233: 1 -> joyous
234: 1 -> king
235: 1 -> kingdoms
236: 1 -> kings
237: 1 -> la
238: 1 -> lady
239: 1 -> landscapes
240: 1 -> large
241: 1 -> lassen's
242: 1 -> laws
243: 1 -> lean
244: 1 -> least
245: 1 -> led
246: 1 -> life
247: 1 -> light
248: 1 -> like
249: 1 -> limit
250: 1 -> live
251: 1 -> loiterers
252: 1 -> love
253: 1 -> low
254: 1 -> magnificent
255: 1 -> maize
256: 1 -> man's
257: 1 -> manifold
258: 1 -> marked
259: 1 -> matched
260: 1 -> meadows
261: 1 -> mediocrity
262: 1 -> middle
263: 1 -> might
264: 1 -> milk
265: 1 -> miserable
266: 1 -> mix
267: 1 -> mixed
268: 1 -> model
269: 1 -> moines
270: 1 -> montesinos
271: 1 -> much
272: 1 -> myself
273: 1 -> mysteries
274: 1 -> nearly
275: 1 -> neighbours
276: 1 -> nights
277: 1 -> no
278: 1 -> nor
279: 1 -> north
280: 1 -> northern
281: 1 -> not
282: 1 -> often
283: 1 -> oh
284: 1 -> oil
285: 1 -> old
286: 1 -> older
287: 1 -> opinion
288: 1 -> opposed
289: 1 -> opposing
290: 1 -> ounce
291: 1 -> our
292: 1 -> oven
293: 1 -> overflowing
294: 1 -> owe
295: 1 -> owed
296: 1 -> owing
297: 1 -> pall
298: 1 -> pare
299: 1 -> park
300: 1 -> part
301: 1 -> passer
302: 1 -> passport
303: 1 -> paste
304: 1 -> path
305: 1 -> pause
306: 1 -> peculiar
307: 1 -> phenomenon
308: 1 -> philosophy
309: 1 -> pi
310: 1 -> pine
311: 1 -> pint
312: 1 -> play
313: 1 -> pop
314: 1 -> portentous
315: 1 -> pre
316: 1 -> press
317: 1 -> pride
318: 1 -> problem
319: 1 -> proceed
320: 1 -> propensity
321: 1 -> quarters
322: 1 -> questions
323: 1 -> quinci
324: 1 -> race
325: 1 -> radically
326: 1 -> rattling
327: 1 -> raw
328: 1 -> re
329: 1 -> reason
330: 1 -> recriminating
331: 1 -> refuse
332: 1 -> region
333: 1 -> relation
334: 1 -> resembled
335: 1 -> responsive
336: 1 -> restraint
337: 1 -> reveries
338: 1 -> rightly
339: 1 -> rivalry
340: 1 -> river
341: 1 -> rocks
342: 1 -> rod
343: 1 -> rolled
344: 1 -> rolls
345: 1 -> rulers
346: 1 -> saint
347: 1 -> saluted
348: 1 -> same
349: 1 -> sat
350: 1 -> savagely
351: 1 -> saw
352: 1 -> schisms
353: 1 -> seemingly
354: 1 -> self
355: 1 -> sell
356: 1 -> semi
357: 1 -> send
358: 1 -> set
359: 1 -> sex
360: 1 -> shall
361: 1 -> shell
362: 1 -> sibyl
363: 1 -> side
364: 1 -> simultaneousness
365: 1 -> sioux
366: 1 -> slave
367: 1 -> sleep
368: 1 -> smile
369: 1 -> smooth
370: 1 -> snatching
371: 1 -> so
372: 1 -> society
373: 1 -> softly
374: 1 -> solitude
375: 1 -> solution
376: 1 -> solve
377: 1 -> sophists
378: 1 -> sources
379: 1 -> south
380: 1 -> spain
381: 1 -> spread
382: 1 -> spring
383: 1 -> steam
384: 1 -> stream
385: 1 -> street
386: 1 -> strive
387: 1 -> striving
388: 1 -> strolled
389: 1 -> such
390: 1 -> sugar
391: 1 -> sun
392: 1 -> sunburnt
393: 1 -> sure
394: 1 -> sutter
395: 1 -> swim
396: 1 -> sylvan
397: 1 -> table
398: 1 -> take
399: 1 -> tear
400: 1 -> teeth
401: 1 -> tempo
402: 1 -> test
403: 1 -> than
404: 1 -> thank
405: 1 -> thee
406: 1 -> their
407: 1 -> theirs
408: 1 -> theosophies
409: 1 -> there
410: 1 -> these
411: 1 -> thought
412: 1 -> thousand
413: 1 -> three
414: 1 -> throbs
415: 1 -> time
416: 1 -> times
417: 1 -> together
418: 1 -> tropical
419: 1 -> troubled
420: 1 -> tully
421: 1 -> turn
422: 1 -> twenty
423: 1 -> tyrants
424: 1 -> unchecked
425: 1 -> unseen
426: 1 -> us
427: 1 -> used
428: 1 -> very
429: 1 -> virgin
430: 1 -> virtue
431: 1 -> volcanic
432: 1 -> wall
433: 1 -> warm
434: 1 -> was
435: 1 -> water
436: 1 -> we
437: 1 -> wear
438: 1 -> were
439: 1 -> where
440: 1 -> while
441: 1 -> whole
442: 1 -> whom
443: 1 -> whose
444: 1 -> wild
445: 1 -> word
446: 1 -> words
447: 1 -> worse
448: 1 -> worthily
449: 1 -> wrong
450: 1 -> yankee
451: 1 -> yeast
452: 1 -> you
-------
786
SUBSTITUTIONS Total (1467)
With >= 1 occurrences (1467)
1: 64 -> in
2: 50 -> and
3: 42 -> the
4: 36 -> a
5: 16 -> an
6: 14 -> bozzle
7: 12 -> is
8: 12 -> that
9: 12 -> to
10: 11 -> it
11: 10 -> his
12: 10 -> of
13: 10 -> this
14: 9 -> bartley
15: 9 -> on
16: 9 -> phoebe
17: 8 -> i'm
18: 8 -> macklewain
19: 7 -> as
20: 7 -> at
21: 7 -> for
22: 7 -> he
23: 7 -> made
24: 6 -> carrie
25: 6 -> has
26: 6 -> meekin
27: 6 -> o
28: 6 -> or
29: 6 -> trevelyan
30: 6 -> wants
31: 5 -> ann
32: 5 -> criss
33: 5 -> deucalion
34: 5 -> flour
35: 5 -> i
36: 5 -> no
37: 5 -> one
38: 5 -> otto
39: 5 -> our
40: 5 -> were
41: 4 -> anyone
42: 4 -> are
43: 4 -> ay
44: 4 -> boys
45: 4 -> burgess
46: 4 -> clarke
47: 4 -> colored
48: 4 -> grethel
49: 4 -> gryce
50: 4 -> had
51: 4 -> kaliko
52: 4 -> kearny
53: 4 -> lige
54: 4 -> men
55: 4 -> michaelis
56: 4 -> night
57: 4 -> saucepan
58: 4 -> shimerda
59: 4 -> stacy
60: 4 -> sydenham
61: 4 -> their
62: 4 -> then
63: 4 -> thing
64: 4 -> through
65: 4 -> time
66: 4 -> you
67: 3 -> abalone's
68: 3 -> ann's
69: 3 -> any
70: 3 -> b
71: 3 -> brau
72: 3 -> by
73: 3 -> center
74: 3 -> d'avrigny
75: 3 -> except
76: 3 -> fell
77: 3 -> ferdinand
78: 3 -> forcemeat
79: 3 -> four
80: 3 -> get
81: 3 -> have
82: 3 -> honor
83: 3 -> how
84: 3 -> into
85: 3 -> iona
86: 3 -> labours
87: 3 -> lattimer
88: 3 -> love
89: 3 -> mantel
90: 3 -> neighbors
91: 3 -> nestorius
92: 3 -> nuova
93: 3 -> panacea
94: 3 -> piece
95: 3 -> pigeon
96: 3 -> pyncheon
97: 3 -> quenelles
98: 3 -> quilter
99: 3 -> rhein
100: 3 -> sent
101: 3 -> snellings
102: 3 -> sombrero
103: 3 -> southwark
104: 3 -> splendour
105: 3 -> tad
106: 3 -> terrorist
107: 3 -> than
108: 3 -> theatre
109: 3 -> there
110: 3 -> too
111: 3 -> when
112: 3 -> who
113: 2 -> abalone
114: 2 -> again
115: 2 -> allspice
116: 2 -> aroma
117: 2 -> aunt
118: 2 -> awhile
119: 2 -> bambeday
120: 2 -> battlefields
121: 2 -> been
122: 2 -> beenie
123: 2 -> behaviour
124: 2 -> bennydeck
125: 2 -> board
126: 2 -> borrow
127: 2 -> bough
128: 2 -> boughs
129: 2 -> brow
130: 2 -> brown
131: 2 -> buns
132: 2 -> bur
133: 2 -> buren
134: 2 -> but
135: 2 -> called
136: 2 -> cauliflower
137: 2 -> ceiling
138: 2 -> chef
139: 2 -> coal
140: 2 -> color
141: 2 -> coralie
142: 2 -> coupons
143: 2 -> crumpets
144: 2 -> crushed
145: 2 -> cuisine
146: 2 -> cyril
147: 2 -> daguerreotype
148: 2 -> daguerreotypist
149: 2 -> dante
150: 2 -> do
151: 2 -> docile
152: 2 -> dorriforth
153: 2 -> drawing
154: 2 -> drizzle
155: 2 -> drouet
156: 2 -> drouet's
157: 2 -> dude
158: 2 -> dulcinea
159: 2 -> edition
160: 2 -> em
161: 2 -> enquired
162: 2 -> faber
163: 2 -> favor
164: 2 -> favourable
165: 2 -> favourite
166: 2 -> felt
167: 2 -> fetid
168: 2 -> filing
169: 2 -> follow
170: 2 -> fulfill
171: 2 -> full
172: 2 -> gait
173: 2 -> gondola
174: 2 -> gregor
175: 2 -> grey
176: 2 -> hansel
177: 2 -> hanson
178: 2 -> heady
179: 2 -> hepzibah
180: 2 -> hepzibah's
181: 2 -> hide
182: 2 -> house
183: 2 -> huh
184: 2 -> hurstwood
185: 2 -> impassible
186: 2 -> inclosure
187: 2 -> instalments
188: 2 -> iota
189: 2 -> it's
190: 2 -> its
191: 2 -> jem
192: 2 -> karl
193: 2 -> labourers
194: 2 -> lamp
195: 2 -> lassen's
196: 2 -> laugh'd
197: 2 -> le
198: 2 -> leaven
199: 2 -> lie
200: 2 -> like
201: 2 -> logos
202: 2 -> longer
203: 2 -> lumpy
204: 2 -> lying
205: 2 -> mac
206: 2 -> macpherson
207: 2 -> madge
208: 2 -> madison
209: 2 -> magazzino
210: 2 -> mainhall
211: 2 -> mama
212: 2 -> materialised
213: 2 -> mayonnaise
214: 2 -> me
215: 2 -> men's
216: 2 -> mercurial
217: 2 -> mezzanine
218: 2 -> might
219: 2 -> minnetaki
220: 2 -> minnie's
221: 2 -> moulds
222: 2 -> murfreesboro
223: 2 -> my
224: 2 -> near
225: 2 -> newsome's
226: 2 -> now
227: 2 -> occult
228: 2 -> ogden
229: 2 -> once
230: 2 -> ossipon
231: 2 -> ossipon's
232: 2 -> ought
233: 2 -> ounce
234: 2 -> out
235: 2 -> over
236: 2 -> pass
237: 2 -> pavel
238: 2 -> perfunctorily
239: 2 -> phantasies
240: 2 -> pitt
241: 2 -> pommel
242: 2 -> ponies
243: 2 -> praefect
244: 2 -> promised
245: 2 -> pyrrha
246: 2 -> quandary
247: 2 -> rang
248: 2 -> realise
249: 2 -> recognising
250: 2 -> rector's
251: 2 -> regent's
252: 2 -> resident
253: 2 -> round
254: 2 -> said
255: 2 -> sauterne
256: 2 -> saw
257: 2 -> sea
258: 2 -> sealed
259: 2 -> sectaries
260: 2 -> set
261: 2 -> shasta
262: 2 -> she
263: 2 -> shimerdas
264: 2 -> shredded
265: 2 -> simmonds
266: 2 -> singer
267: 2 -> so
268: 2 -> sole
269: 2 -> someone
270: 2 -> stand
271: 2 -> stevie
272: 2 -> sue
273: 2 -> sufferin
274: 2 -> sun
275: 2 -> sydney
276: 2 -> sydney's
277: 2 -> syrtis
278: 2 -> tablespoons
279: 2 -> teaspoonful
280: 2 -> terra
281: 2 -> thee
282: 2 -> them
283: 2 -> therein
284: 2 -> they
285: 2 -> those
286: 2 -> thou
287: 2 -> tide
288: 2 -> touched
289: 2 -> tourmaline
290: 2 -> traveling
291: 2 -> udder
292: 2 -> v
293: 2 -> vague
294: 2 -> valkyrie
295: 2 -> very
296: 2 -> vinos
297: 2 -> wabi
298: 2 -> wabigoon's
299: 2 -> was
300: 2 -> we've
301: 2 -> well
302: 2 -> what's
303: 2 -> whichever
304: 2 -> who's
305: 2 -> whole
306: 2 -> why
307: 2 -> wide
308: 2 -> wine
309: 2 -> winked
310: 2 -> within
311: 2 -> you'll
312: 2 -> your
313: 2 -> yulka
314: 2 -> yundt
315: 1 -> abbe
316: 1 -> abbess
317: 1 -> abdicates
318: 1 -> above
319: 1 -> accessories
320: 1 -> account
321: 1 -> accrue
322: 1 -> ached
323: 1 -> adamnan
324: 1 -> adorned
325: 1 -> adventuring
326: 1 -> advise
327: 1 -> aeons
328: 1 -> afoot
329: 1 -> afore
330: 1 -> africanus
331: 1 -> agglomerations
332: 1 -> aidan
333: 1 -> air
334: 1 -> alabama
335: 1 -> alarm
336: 1 -> alchemy
337: 1 -> algae
338: 1 -> algebra
339: 1 -> all
340: 1 -> allurement
341: 1 -> alma
342: 1 -> almoner
343: 1 -> am
344: 1 -> ambulance
345: 1 -> ambulances
346: 1 -> amenities
347: 1 -> anachronisms
348: 1 -> anaesthesia
349: 1 -> analyses
350: 1 -> anatolia
351: 1 -> animals
352: 1 -> announced
353: 1 -> answered
354: 1 -> antecedents
355: 1 -> apiece
356: 1 -> apollinaris
357: 1 -> applaud
358: 1 -> appliances
359: 1 -> appropriate
360: 1 -> arabesque
361: 1 -> arc
362: 1 -> arch
363: 1 -> arched
364: 1 -> arcturus
365: 1 -> ardour
366: 1 -> arena
367: 1 -> arians
368: 1 -> arkansas
369: 1 -> armine
370: 1 -> arming
371: 1 -> artist
372: 1 -> artists
373: 1 -> ascended
374: 1 -> ask
375: 1 -> asked
376: 1 -> aslant
377: 1 -> asleep
378: 1 -> asparagus
379: 1 -> asplenium
380: 1 -> ass
381: 1 -> assault
382: 1 -> assent
383: 1 -> assigned
384: 1 -> assiniboine
385: 1 -> assured
386: 1 -> asthma
387: 1 -> astir
388: 1 -> astride
389: 1 -> asura
390: 1 -> athanasius
391: 1 -> atlanta
392: 1 -> autumn
393: 1 -> awakened
394: 1 -> away
395: 1 -> awls
396: 1 -> babies
397: 1 -> backed
398: 1 -> balvastro
399: 1 -> ban
400: 1 -> banjo
401: 1 -> barcelona
402: 1 -> barrel
403: 1 -> baulked
404: 1 -> bayoneted
405: 1 -> bean
406: 1 -> beans
407: 1 -> bear
408: 1 -> beat
409: 1 -> beatitude
410: 1 -> beauregard
411: 1 -> began
412: 1 -> begins
413: 1 -> bel
414: 1 -> belisarius
415: 1 -> belli
416: 1 -> belonged
417: 1 -> bennet
418: 1 -> bereaved
419: 1 -> bergez
420: 1 -> bestia
421: 1 -> bill
422: 1 -> bipeds
423: 1 -> birdikins
424: 1 -> birdlike
425: 1 -> blacken
426: 1 -> blanco's
427: 1 -> blasphemous
428: 1 -> bleakest
429: 1 -> bleating
430: 1 -> bled
431: 1 -> blemmyes
432: 1 -> blessed
433: 1 -> blue
434: 1 -> bluebells
435: 1 -> boats
436: 1 -> body
437: 1 -> booth
438: 1 -> bounties
439: 1 -> bozzle's
440: 1 -> brand
441: 1 -> brandd
442: 1 -> bread
443: 1 -> breadhouse
444: 1 -> break
445: 1 -> breakup
446: 1 -> bremer
447: 1 -> brewer's
448: 1 -> brides
449: 1 -> brigade
450: 1 -> bright's
451: 1 -> bring
452: 1 -> buckinghamshire
453: 1 -> bugbears
454: 1 -> bui
455: 1 -> bunch
456: 1 -> burden
457: 1 -> burgoynes
458: 1 -> burros
459: 1 -> burrow
460: 1 -> bush'
461: 1 -> butte
462: 1 -> buttermilk
463: 1 -> buttoned
464: 1 -> buzzer's
465: 1 -> caisson
466: 1 -> calculus
467: 1 -> call
468: 1 -> callimachus
469: 1 -> came
470: 1 -> can't
471: 1 -> cancer
472: 1 -> cannibalistic
473: 1 -> cannon
474: 1 -> canterbury
475: 1 -> canyou
476: 1 -> capitol
477: 1 -> captains
478: 1 -> cards
479: 1 -> caring
480: 1 -> carrot
481: 1 -> casserole
482: 1 -> caste
483: 1 -> casts
484: 1 -> casus
485: 1 -> cat
486: 1 -> cease
487: 1 -> cedars
488: 1 -> celery
489: 1 -> celestine
490: 1 -> censure
491: 1 -> centred
492: 1 -> cerinthus
493: 1 -> chaba
494: 1 -> chablis
495: 1 -> chand
496: 1 -> chanticleer
497: 1 -> chaparral
498: 1 -> charlie's
499: 1 -> chased
500: 1 -> cheatham
501: 1 -> chefs
502: 1 -> cheroot
503: 1 -> chestnut
504: 1 -> chief
505: 1 -> child
506: 1 -> chowder
507: 1 -> christi
508: 1 -> christmases
509: 1 -> chrysostom
510: 1 -> citric
511: 1 -> claudia
512: 1 -> clear
513: 1 -> clews
514: 1 -> climate
515: 1 -> clothed
516: 1 -> cloudlike
517: 1 -> cloves
518: 1 -> coarse
519: 1 -> cold
520: 1 -> collander
521: 1 -> collapse
522: 1 -> collier
523: 1 -> colors
524: 1 -> colour
525: 1 -> coloured
526: 1 -> colours
527: 1 -> comedian
528: 1 -> comers
529: 1 -> coming
530: 1 -> completely
531: 1 -> congal
532: 1 -> congal's
533: 1 -> conjurers
534: 1 -> connell
535: 1 -> connell's
536: 1 -> constraint
537: 1 -> continue
538: 1 -> conventicles
539: 1 -> convolvulus
540: 1 -> cooler
541: 1 -> copyright
542: 1 -> corncakes
543: 1 -> corridor
544: 1 -> could
545: 1 -> county
546: 1 -> cowboy
547: 1 -> cowmen
548: 1 -> cowpunchers
549: 1 -> crawfish
550: 1 -> creeters
551: 1 -> crevassed
552: 1 -> crispness
553: 1 -> cross
554: 1 -> crusty
555: 1 -> curer
556: 1 -> curley
557: 1 -> currant
558: 1 -> cynthy
559: 1 -> damson
560: 1 -> dante's
561: 1 -> darfhulva
562: 1 -> dashed
563: 1 -> david
564: 1 -> dawes
565: 1 -> day
566: 1 -> day's
567: 1 -> dead
568: 1 -> deadly
569: 1 -> dear
570: 1 -> declamations
571: 1 -> declaring
572: 1 -> deep
573: 1 -> defense
574: 1 -> degenerate
575: 1 -> delaunay's
576: 1 -> delectasti
577: 1 -> delia's
578: 1 -> delicacy
579: 1 -> dene
580: 1 -> derisive
581: 1 -> descent
582: 1 -> desk
583: 1 -> detach
584: 1 -> detail
585: 1 -> detective
586: 1 -> detective's
587: 1 -> devil
588: 1 -> devotees
589: 1 -> dhourra
590: 1 -> diced
591: 1 -> did
592: 1 -> difficulty
593: 1 -> diocese
594: 1 -> dishes
595: 1 -> dispatch
596: 1 -> dispatched
597: 1 -> distaff
598: 1 -> distinguishing
599: 1 -> divers
600: 1 -> divorced
601: 1 -> docetes
602: 1 -> dock
603: 1 -> does
604: 1 -> dog
605: 1 -> dormitories
606: 1 -> down
607: 1 -> dowson
608: 1 -> dozen
609: 1 -> drachm
610: 1 -> drafted
611: 1 -> drat
612: 1 -> drawer
613: 1 -> dreamed
614: 1 -> dreamt
615: 1 -> dress
616: 1 -> dropping
617: 1 -> druidism
618: 1 -> dug
619: 1 -> dugout
620: 1 -> e
621: 1 -> e'er
622: 1 -> ear
623: 1 -> earliest
624: 1 -> earnest
625: 1 -> ease
626: 1 -> editions
627: 1 -> ef
628: 1 -> effete
629: 1 -> eh
630: 1 -> elbe
631: 1 -> ellis
632: 1 -> embraced
633: 1 -> embryos
634: 1 -> emotions
635: 1 -> emphasised
636: 1 -> emptied
637: 1 -> encountered
638: 1 -> end
639: 1 -> endeavoring
640: 1 -> endeavors
641: 1 -> endeavoured
642: 1 -> endorses
643: 1 -> enemy's
644: 1 -> enjoy
645: 1 -> ensured
646: 1 -> entrees
647: 1 -> epicurism
648: 1 -> epilobium
649: 1 -> epistle
650: 1 -> epoch
651: 1 -> equipped
652: 1 -> erewhon
653: 1 -> esther
654: 1 -> etched
655: 1 -> eternities
656: 1 -> ethereal
657: 1 -> ever'body
658: 1 -> every
659: 1 -> everyday
660: 1 -> everyone
661: 1 -> evil
662: 1 -> ewes
663: 1 -> exaltation
664: 1 -> explained
665: 1 -> exprest
666: 1 -> eye
667: 1 -> eyes
668: 1 -> facing
669: 1 -> fact
670: 1 -> factor's
671: 1 -> fagots
672: 1 -> fainted
673: 1 -> fairs
674: 1 -> fakirs
675: 1 -> fall
676: 1 -> farther
677: 1 -> fat
678: 1 -> fate
679: 1 -> features
680: 1 -> fed
681: 1 -> feet
682: 1 -> felicitous
683: 1 -> fencing
684: 1 -> fermented
685: 1 -> ferry
686: 1 -> festive
687: 1 -> fetes
688: 1 -> fevered
689: 1 -> fibi
690: 1 -> field
691: 1 -> fillmore
692: 1 -> finely
693: 1 -> fingernail
694: 1 -> finnacta
695: 1 -> fir
696: 1 -> fire
697: 1 -> firing
698: 1 -> firm
699: 1 -> fish
700: 1 -> fjord
701: 1 -> fjordungr
702: 1 -> flavour
703: 1 -> flog
704: 1 -> fly
705: 1 -> foetus
706: 1 -> footed
707: 1 -> forbid
708: 1 -> force
709: 1 -> forecourt
710: 1 -> formed
711: 1 -> fort
712: 1 -> forward
713: 1 -> fought
714: 1 -> found
715: 1 -> fraid
716: 1 -> franks
717: 1 -> free
718: 1 -> friend's
719: 1 -> frierson's
720: 1 -> from
721: 1 -> fuchs
722: 1 -> fuss
723: 1 -> gage
724: 1 -> ganny
725: 1 -> gardar
726: 1 -> gas
727: 1 -> gayety
728: 1 -> gazelle
729: 1 -> gentlemen
730: 1 -> gesticulating
731: 1 -> getting
732: 1 -> ghoul
733: 1 -> giddily
734: 1 -> gillian
735: 1 -> gilt
736: 1 -> gingle
737: 1 -> girl's
738: 1 -> girls
739: 1 -> give
740: 1 -> glaciers
741: 1 -> gladden's
742: 1 -> glared
743: 1 -> gloria
744: 1 -> glycerin
745: 1 -> go
746: 1 -> god
747: 1 -> godhead
748: 1 -> goes
749: 1 -> going
750: 1 -> gossoons
751: 1 -> gothic
752: 1 -> gourmets
753: 1 -> gown
754: 1 -> grandparents
755: 1 -> grate
756: 1 -> grave
757: 1 -> griffin's
758: 1 -> grocers
759: 1 -> groom's
760: 1 -> growing
761: 1 -> grub
762: 1 -> grumblingly
763: 1 -> guards
764: 1 -> guiltily
765: 1 -> gwynplaine
766: 1 -> gymnast
767: 1 -> haddock
768: 1 -> half
769: 1 -> halleck
770: 1 -> halley
771: 1 -> hamer
772: 1 -> han
773: 1 -> hand
774: 1 -> hand's
775: 1 -> hangar
776: 1 -> hansom
777: 1 -> happen
778: 1 -> happened
779: 1 -> harbor
780: 1 -> hard
781: 1 -> hardier
782: 1 -> hardwigg
783: 1 -> harpies
784: 1 -> hastened
785: 1 -> hat
786: 1 -> hatchie
787: 1 -> having
788: 1 -> he's
789: 1 -> headlong
790: 1 -> healthful
791: 1 -> hears
792: 1 -> heart's
793: 1 -> hearted
794: 1 -> hearts
795: 1 -> heidelberg
796: 1 -> height
797: 1 -> helicon
798: 1 -> her
799: 1 -> her's
800: 1 -> herbivore
801: 1 -> heroic
802: 1 -> heuchera
803: 1 -> hi
804: 1 -> hilda
805: 1 -> hilda's
806: 1 -> him
807: 1 -> hissed
808: 1 -> hoard
809: 1 -> hochheimer
810: 1 -> hof
811: 1 -> holders
812: 1 -> holgrave
813: 1 -> holiest
814: 1 -> homecoming
815: 1 -> homo
816: 1 -> hon
817: 1 -> honored
818: 1 -> hope
819: 1 -> horror
820: 1 -> housed
821: 1 -> housemaid
822: 1 -> hows
823: 1 -> hugh's
824: 1 -> hulking
825: 1 -> hull
826: 1 -> humber
827: 1 -> humor
828: 1 -> i'd
829: 1 -> i've
830: 1 -> idealisation
831: 1 -> idylls
832: 1 -> if
833: 1 -> il
834: 1 -> illusions
835: 1 -> image
836: 1 -> impassibility
837: 1 -> impetuous
838: 1 -> impost
839: 1 -> impoverished
840: 1 -> indian
841: 1 -> indignation
842: 1 -> inexhausted
843: 1 -> infuses
844: 1 -> ingratiation
845: 1 -> inhale
846: 1 -> inherent
847: 1 -> iniquitous
848: 1 -> inn
849: 1 -> instant
850: 1 -> instrument
851: 1 -> insuperable
852: 1 -> interests
853: 1 -> intermezzo
854: 1 -> intimidated
855: 1 -> intruders
856: 1 -> irolg
857: 1 -> isidore
858: 1 -> isn't
859: 1 -> jem's
860: 1 -> jig
861: 1 -> jimmie
862: 1 -> jingo
863: 1 -> johnston
864: 1 -> jointly
865: 1 -> jordan
866: 1 -> julian
867: 1 -> justin
868: 1 -> kate's
869: 1 -> khosala
870: 1 -> kirkland
871: 1 -> kirkleatham
872: 1 -> kneading
873: 1 -> knight
874: 1 -> knitted
875: 1 -> knows
876: 1 -> lacquey's
877: 1 -> lacrima
878: 1 -> lad
879: 1 -> ladder
880: 1 -> laid
881: 1 -> lamb
882: 1 -> land
883: 1 -> lands
884: 1 -> largess
885: 1 -> larva
886: 1 -> larvae
887: 1 -> lashes
888: 1 -> latter
889: 1 -> lattice
890: 1 -> law
891: 1 -> leant
892: 1 -> leather
893: 1 -> leave
894: 1 -> lebanon
895: 1 -> led
896: 1 -> lee
897: 1 -> leetle
898: 1 -> leg
899: 1 -> leighton's
900: 1 -> lemon
901: 1 -> lend
902: 1 -> levelled
903: 1 -> libano
904: 1 -> lice
905: 1 -> lids
906: 1 -> lighter
907: 1 -> line
908: 1 -> linnell's
909: 1 -> lisha
910: 1 -> listen
911: 1 -> literality
912: 1 -> liveryman
913: 1 -> lizy
914: 1 -> loafing
915: 1 -> loathe
916: 1 -> lobby
917: 1 -> loincloth
918: 1 -> lombroso
919: 1 -> loneliness
920: 1 -> long
921: 1 -> look'd
922: 1 -> lover
923: 1 -> lovest
924: 1 -> lower
925: 1 -> lukewarm
926: 1 -> luxuriate
927: 1 -> lycophron
928: 1 -> mackerel
929: 1 -> macklewain's
930: 1 -> madame
931: 1 -> magpie
932: 1 -> maid
933: 1 -> maidenly
934: 1 -> mainly
935: 1 -> maize
936: 1 -> make
937: 1 -> mall
938: 1 -> mammal
939: 1 -> mane
940: 1 -> manichaeans
941: 1 -> map
942: 1 -> marjoram
943: 1 -> mark
944: 1 -> marks
945: 1 -> marvelling
946: 1 -> marvelous
947: 1 -> masts
948: 1 -> matchmaking
949: 1 -> matter
950: 1 -> matting
951: 1 -> may
952: 1 -> maybe
953: 1 -> means
954: 1 -> meat
955: 1 -> meath
956: 1 -> mebby
957: 1 -> medals
958: 1 -> medium
959: 1 -> meet
960: 1 -> meeting
961: 1 -> megaphone
962: 1 -> mell
963: 1 -> mens
964: 1 -> menus
965: 1 -> mercantile
966: 1 -> messrs
967: 1 -> metal
968: 1 -> metropolitan
969: 1 -> middle
970: 1 -> mien
971: 1 -> milborough
972: 1 -> mines
973: 1 -> mint
974: 1 -> mirabel
975: 1 -> misguided
976: 1 -> miss
977: 1 -> mittens
978: 1 -> moan
979: 1 -> modoc
980: 1 -> modocs
981: 1 -> moira
982: 1 -> moling
983: 1 -> moluccas
984: 1 -> mom
985: 1 -> monstrously
986: 1 -> monte
987: 1 -> moorings
988: 1 -> moraine
989: 1 -> moribund
990: 1 -> morrel
991: 1 -> mortar
992: 1 -> moselle
993: 1 -> mount
994: 1 -> mountebank
995: 1 -> mountebanks
996: 1 -> move
997: 1 -> moving
998: 1 -> mowed
999: 1 -> muleteers
1000: 1 -> mulrady
1001: 1 -> multitude
1002: 1 -> mumbled
1003: 1 -> mundane
1004: 1 -> mural
1005: 1 -> musicians
1006: 1 -> myrdals
1007: 1 -> nager
1008: 1 -> nearby
1009: 1 -> necromancy
1010: 1 -> need'st
1011: 1 -> neighbor
1012: 1 -> new
1013: 1 -> newberg
1014: 1 -> newscasts
1015: 1 -> nicless
1016: 1 -> niece
1017: 1 -> noirtier
1018: 1 -> nomes
1019: 1 -> noontide
1020: 1 -> norfolk
1021: 1 -> north
1022: 1 -> northwestward
1023: 1 -> notwithstanding
1024: 1 -> novatians
1025: 1 -> nowhere
1026: 1 -> nutty
1027: 1 -> o'clock
1028: 1 -> o'farrell
1029: 1 -> obedience
1030: 1 -> odeon
1031: 1 -> off
1032: 1 -> officinale
1033: 1 -> oh
1034: 1 -> olbinett
1035: 1 -> order
1036: 1 -> orestes
1037: 1 -> originally
1038: 1 -> ours
1039: 1 -> outbuildings
1040: 1 -> outfit
1041: 1 -> pales
1042: 1 -> palimpsest
1043: 1 -> palpable
1044: 1 -> pampas
1045: 1 -> panada
1046: 1 -> papa's
1047: 1 -> parent
1048: 1 -> parlour
1049: 1 -> parrishes
1050: 1 -> part
1051: 1 -> past
1052: 1 -> path
1053: 1 -> patients
1054: 1 -> pays
1055: 1 -> peas
1056: 1 -> pell
1057: 1 -> pelusium
1058: 1 -> penitentiary
1059: 1 -> perdition
1060: 1 -> perused
1061: 1 -> pestle
1062: 1 -> petronels
1063: 1 -> ph
1064: 1 -> phantasy
1065: 1 -> phases
1066: 1 -> phenomenon
1067: 1 -> philadelphus
1068: 1 -> philly's
1069: 1 -> pi
1070: 1 -> pickled
1071: 1 -> piglike
1072: 1 -> pinned
1073: 1 -> pinyon
1074: 1 -> pioneer
1075: 1 -> plains
1076: 1 -> plaiting
1077: 1 -> plaits
1078: 1 -> plane
1079: 1 -> planned
1080: 1 -> playwright
1081: 1 -> please
1082: 1 -> pleased
1083: 1 -> pleroma
1084: 1 -> plumb
1085: 1 -> poems
1086: 1 -> polar
1087: 1 -> polytheists
1088: 1 -> pong
1089: 1 -> poniard
1090: 1 -> poorer
1091: 1 -> pop
1092: 1 -> popcorn
1093: 1 -> popolo
1094: 1 -> pores
1095: 1 -> poring
1096: 1 -> porphyry
1097: 1 -> port
1098: 1 -> possess'd
1099: 1 -> posturing
1100: 1 -> pour
1101: 1 -> powell
1102: 1 -> pravity
1103: 1 -> pretender
1104: 1 -> primavera
1105: 1 -> primroses
1106: 1 -> princess
1107: 1 -> proceeds
1108: 1 -> program
1109: 1 -> prometheus
1110: 1 -> promise
1111: 1 -> prophets
1112: 1 -> proserpina
1113: 1 -> proteges
1114: 1 -> proved
1115: 1 -> psalm
1116: 1 -> put
1117: 1 -> pyre
1118: 1 -> quaffed
1119: 1 -> quilter's
1120: 1 -> racks
1121: 1 -> radiophone
1122: 1 -> raimented
1123: 1 -> rain
1124: 1 -> rainstorms
1125: 1 -> ran
1126: 1 -> rangitata
1127: 1 -> rank
1128: 1 -> rath
1129: 1 -> rather
1130: 1 -> rathskellers
1131: 1 -> razetta
1132: 1 -> re
1133: 1 -> read
1134: 1 -> realized
1135: 1 -> really
1136: 1 -> reals
1137: 1 -> reappear
1138: 1 -> recognise
1139: 1 -> records
1140: 1 -> regiment
1141: 1 -> reigned
1142: 1 -> rein
1143: 1 -> relating
1144: 1 -> remained
1145: 1 -> remembered
1146: 1 -> repertory
1147: 1 -> report
1148: 1 -> resign'd
1149: 1 -> resort
1150: 1 -> returned
1151: 1 -> reverence
1152: 1 -> rheumatic
1153: 1 -> rhodes
1154: 1 -> rhyme
1155: 1 -> rhymes
1156: 1 -> rhythmically
1157: 1 -> rictus
1158: 1 -> rider
1159: 1 -> riding
1160: 1 -> right
1161: 1 -> rights
1162: 1 -> rigor
1163: 1 -> ring
1164: 1 -> ringing
1165: 1 -> rippling
1166: 1 -> riverlike
1167: 1 -> rosebush
1168: 1 -> rosecrans
1169: 1 -> rossetti
1170: 1 -> rounded
1171: 1 -> roundel
1172: 1 -> rout
1173: 1 -> ruggedo
1174: 1 -> ruggedo's
1175: 1 -> ruled
1176: 1 -> run
1177: 1 -> rusks
1178: 1 -> rut
1179: 1 -> saknussemm
1180: 1 -> salad
1181: 1 -> salted
1182: 1 -> sana
1183: 1 -> sanum
1184: 1 -> satisfier
1185: 1 -> savour
1186: 1 -> say
1187: 1 -> says
1188: 1 -> scalp
1189: 1 -> scantily
1190: 1 -> scheiler
1191: 1 -> schloss
1192: 1 -> scrubbed
1193: 1 -> sculpturing
1194: 1 -> sear
1195: 1 -> secesh
1196: 1 -> second's
1197: 1 -> seeds
1198: 1 -> seeing
1199: 1 -> seem
1200: 1 -> seen
1201: 1 -> sees
1202: 1 -> self
1203: 1 -> selves
1204: 1 -> semester
1205: 1 -> senor
1206: 1 -> sensed
1207: 1 -> senseless
1208: 1 -> serapion
1209: 1 -> servant
1210: 1 -> settled
1211: 1 -> settler
1212: 1 -> shampooer
1213: 1 -> shave
1214: 1 -> sheds
1215: 1 -> sheep's
1216: 1 -> shell
1217: 1 -> shelves
1218: 1 -> shew
1219: 1 -> shifting
1220: 1 -> shot
1221: 1 -> should
1222: 1 -> shrilly
1223: 1 -> shut
1224: 1 -> sierra
1225: 1 -> sighs
1226: 1 -> sight
1227: 1 -> since
1228: 1 -> sippet
1229: 1 -> sister's
1230: 1 -> site
1231: 1 -> sitter
1232: 1 -> size
1233: 1 -> skelly
1234: 1 -> skint
1235: 1 -> slain
1236: 1 -> slaked
1237: 1 -> slater
1238: 1 -> slice
1239: 1 -> slopes
1240: 1 -> sluicing
1241: 1 -> smart
1242: 1 -> smilax
1243: 1 -> smoked
1244: 1 -> snapping
1245: 1 -> soaring
1246: 1 -> sofa
1247: 1 -> sold
1248: 1 -> sonnet
1249: 1 -> sorghum
1250: 1 -> sought
1251: 1 -> sounding
1252: 1 -> sow
1253: 1 -> soyer
1254: 1 -> spake
1255: 1 -> spare
1256: 1 -> speculative
1257: 1 -> spruce
1258: 1 -> sprucewood
1259: 1 -> squires
1260: 1 -> stairs
1261: 1 -> staked
1262: 1 -> start
1263: 1 -> stationmaster
1264: 1 -> stay
1265: 1 -> stayed
1266: 1 -> steadily
1267: 1 -> steady
1268: 1 -> stepp'd
1269: 1 -> stept
1270: 1 -> stereos
1271: 1 -> stevie's
1272: 1 -> stewpan
1273: 1 -> stirrups
1274: 1 -> stolidly
1275: 1 -> stommick
1276: 1 -> stone's
1277: 1 -> stored
1278: 1 -> strawberry
1279: 1 -> street
1280: 1 -> strength
1281: 1 -> strewed
1282: 1 -> stronger
1283: 1 -> stube
1284: 1 -> studied
1285: 1 -> stupirti
1286: 1 -> succeed
1287: 1 -> sudvestr
1288: 1 -> suited
1289: 1 -> sundry
1290: 1 -> suns
1291: 1 -> superior
1292: 1 -> sure
1293: 1 -> surprise
1294: 1 -> surprised
1295: 1 -> surprising
1296: 1 -> surrounded
1297: 1 -> sutter
1298: 1 -> swarthy
1299: 1 -> sweat
1300: 1 -> sweetwater
1301: 1 -> swooned
1302: 1 -> swords
1303: 1 -> synagogues
1304: 1 -> synesius's
1305: 1 -> tablespoonful
1306: 1 -> tad's
1307: 1 -> tahoe
1308: 1 -> takes
1309: 1 -> taloned
1310: 1 -> tar
1311: 1 -> tarpaulin
1312: 1 -> tarrinzeau
1313: 1 -> tartaric
1314: 1 -> tears
1315: 1 -> telecast
1316: 1 -> telemetering
1317: 1 -> television
1318: 1 -> tell
1319: 1 -> tempting
1320: 1 -> tense
1321: 1 -> terro
1322: 1 -> thank
1323: 1 -> thanked
1324: 1 -> thanking
1325: 1 -> that'll
1326: 1 -> thatched
1327: 1 -> theocritus
1328: 1 -> theodosius
1329: 1 -> there's
1330: 1 -> therefrom
1331: 1 -> they'll
1332: 1 -> they're
1333: 1 -> they've
1334: 1 -> though
1335: 1 -> throb
1336: 1 -> thundercloud
1337: 1 -> tightly
1338: 1 -> tilted
1339: 1 -> tis
1340: 1 -> tishimingo
1341: 1 -> tokyo
1342: 1 -> tomatoes
1343: 1 -> tonight
1344: 1 -> took
1345: 1 -> tops
1346: 1 -> touch
1347: 1 -> towards
1348: 1 -> towne
1349: 1 -> tracing
1350: 1 -> trampe
1351: 1 -> trap
1352: 1 -> trauma
1353: 1 -> traveled
1354: 1 -> travellers
1355: 1 -> treble
1356: 1 -> trevelyan's
1357: 1 -> triggered
1358: 1 -> trivialities
1359: 1 -> troke
1360: 1 -> troop
1361: 1 -> trot's
1362: 1 -> trouble
1363: 1 -> troublemaker
1364: 1 -> trubner
1365: 1 -> trusses
1366: 1 -> trusts
1367: 1 -> tryst
1368: 1 -> tube
1369: 1 -> tumble's
1370: 1 -> tuning
1371: 1 -> tupper
1372: 1 -> tureen
1373: 1 -> turn
1374: 1 -> twined
1375: 1 -> tyrannise
1376: 1 -> tyson
1377: 1 -> una
1378: 1 -> unadorned
1379: 1 -> unburied
1380: 1 -> undisciplined
1381: 1 -> unfavourable
1382: 1 -> uninhabitable
1383: 1 -> unit
1384: 1 -> unlike
1385: 1 -> unlooked
1386: 1 -> unsoldierly
1387: 1 -> unsolved
1388: 1 -> unsteadiness
1389: 1 -> untruss
1390: 1 -> unworldly
1391: 1 -> up
1392: 1 -> upset
1393: 1 -> urania
1394: 1 -> us
1395: 1 -> usurping
1396: 1 -> vain
1397: 1 -> vantages
1398: 1 -> varied
1399: 1 -> varlet
1400: 1 -> vaunting
1401: 1 -> vegetated
1402: 1 -> vendhya
1403: 1 -> veni
1404: 1 -> veolan
1405: 1 -> verandah
1406: 1 -> vernacular
1407: 1 -> viands
1408: 1 -> videt
1409: 1 -> view
1410: 1 -> virgilius
1411: 1 -> vittles
1412: 1 -> vladimir
1413: 1 -> volatile
1414: 1 -> wahiti
1415: 1 -> wakened
1416: 1 -> wander
1417: 1 -> waned
1418: 1 -> war
1419: 1 -> warning
1420: 1 -> wary
1421: 1 -> wayne
1422: 1 -> weapon
1423: 1 -> wedded
1424: 1 -> week
1425: 1 -> weighed
1426: 1 -> weiser
1427: 1 -> wert
1428: 1 -> westmere
1429: 1 -> what
1430: 1 -> wheezed
1431: 1 -> whelm
1432: 1 -> whereby
1433: 1 -> whether
1434: 1 -> whirr
1435: 1 -> wholly
1436: 1 -> whys
1437: 1 -> wi
1438: 1 -> wildering
1439: 1 -> wilkerson
1440: 1 -> wilsons
1441: 1 -> winding
1442: 1 -> wink
1443: 1 -> winton
1444: 1 -> with
1445: 1 -> woman
1446: 1 -> womb
1447: 1 -> woongas
1448: 1 -> words
1449: 1 -> work
1450: 1 -> working
1451: 1 -> world's
1452: 1 -> worse
1453: 1 -> worshiping
1454: 1 -> wrangler
1455: 1 -> wrangler's
1456: 1 -> wronged
1457: 1 -> wrote
1458: 1 -> wry
1459: 1 -> yank
1460: 1 -> yankee
1461: 1 -> yard
1462: 1 -> yo
1463: 1 -> yokul
1464: 1 -> yolk
1465: 1 -> you've
1466: 1 -> youth
1467: 1 -> zingiber
-------
2268
* NOTE: The 'Substitution' words are those reference words
for which the recognizer supplied an incorrect word.
FALSELY RECOGNIZED Total (1515)
With >= 1 occurrences (1515)
1: 70 -> and
2: 51 -> the
3: 49 -> in
4: 42 -> a
5: 22 -> to
6: 18 -> it
7: 15 -> is
8: 14 -> at
9: 14 -> that
10: 12 -> as
11: 12 -> of
12: 10 -> he
13: 10 -> i
14: 9 -> for
15: 9 -> one
16: 8 -> but
17: 8 -> had
18: 8 -> his
19: 8 -> on
20: 7 -> am
21: 7 -> are
22: 7 -> basil
23: 7 -> once
24: 6 -> bartly
25: 6 -> carry
26: 6 -> man
27: 6 -> poor
28: 6 -> set
29: 5 -> bossell
30: 5 -> chris
31: 5 -> flower
32: 5 -> her
33: 5 -> like
34: 5 -> oh
35: 5 -> pan
36: 5 -> see
37: 5 -> their
38: 5 -> was
39: 5 -> what
40: 5 -> with
41: 4 -> an
42: 4 -> clark
43: 4 -> don't
44: 4 -> from
45: 4 -> grace
46: 4 -> have
47: 4 -> him
48: 4 -> made
49: 4 -> phoebee
50: 4 -> rhine
51: 4 -> terrace
52: 4 -> were
53: 4 -> where
54: 4 -> you
55: 3 -> anything
56: 3 -> be
57: 3 -> calico
58: 3 -> called
59: 3 -> cast
60: 3 -> crossed
61: 3 -> dantes
62: 3 -> day
63: 3 -> exclaimed
64: 3 -> favour
65: 3 -> feeby
66: 3 -> grettel
67: 3 -> handsome
68: 3 -> has
69: 3 -> honour
70: 3 -> laborers
71: 3 -> make
72: 3 -> marianne's
73: 3 -> may
74: 3 -> me
75: 3 -> meet
76: 3 -> mysterious
77: 3 -> neighbours
78: 3 -> peace
79: 3 -> pension
80: 3 -> she
81: 3 -> soul
82: 3 -> splendor
83: 3 -> ted
84: 3 -> theater
85: 3 -> them
86: 3 -> then
87: 3 -> there
88: 3 -> think
89: 3 -> trevelian
90: 3 -> up
91: 3 -> when
92: 3 -> while
93: 3 -> woodpigeon
94: 2 -> abaloney's
95: 2 -> addition
96: 2 -> adel
97: 2 -> all
98: 2 -> anne
99: 2 -> ark
100: 2 -> around
101: 2 -> asked
102: 2 -> augden
103: 2 -> awain
104: 2 -> aye
105: 2 -> barren
106: 2 -> barrow
107: 2 -> basle
108: 2 -> beany
109: 2 -> bedtime
110: 2 -> behavior
111: 2 -> being
112: 2 -> big
113: 2 -> bless
114: 2 -> borough
115: 2 -> bow
116: 2 -> bows
117: 2 -> boy's
118: 2 -> bright
119: 2 -> brown
120: 2 -> burges
121: 2 -> bush
122: 2 -> by
123: 2 -> citter
124: 2 -> cloud
125: 2 -> cold
126: 2 -> colored
127: 2 -> colors
128: 2 -> coloured
129: 2 -> covered
130: 2 -> davenie
131: 2 -> did
132: 2 -> dristle
133: 2 -> drui
134: 2 -> ducalion
135: 2 -> enclosure
136: 2 -> ever
137: 2 -> everybody
138: 2 -> eye
139: 2 -> failing
140: 2 -> favorable
141: 2 -> favorite
142: 2 -> feat
143: 2 -> fernand
144: 2 -> fetted
145: 2 -> fields
146: 2 -> flour
147: 2 -> followed
148: 2 -> found
149: 2 -> frightened
150: 2 -> fulfil
151: 2 -> gate
152: 2 -> glorious
153: 2 -> great
154: 2 -> hammer
155: 2 -> hands
156: 2 -> hansen
157: 2 -> heart
158: 2 -> hetty
159: 2 -> if
160: 2 -> impassable
161: 2 -> inquired
162: 2 -> installments
163: 2 -> into
164: 2 -> ioda
165: 2 -> jim
166: 2 -> juliahurstwood
167: 2 -> kilter
168: 2 -> kirney
169: 2 -> know
170: 2 -> latimer
171: 2 -> laughed
172: 2 -> let
173: 2 -> long
174: 2 -> looked
175: 2 -> loved
176: 2 -> macawaine
177: 2 -> machawaine
178: 2 -> magazineo
179: 2 -> mamma
180: 2 -> mantle
181: 2 -> marianne
182: 2 -> materialized
183: 2 -> mc
184: 2 -> meant
185: 2 -> meat
186: 2 -> medicine
187: 2 -> mikhin
188: 2 -> mikriggard
189: 2 -> mill
190: 2 -> minney's
191: 2 -> nee
192: 2 -> night
193: 2 -> night's
194: 2 -> no
195: 2 -> oscippin
196: 2 -> our
197: 2 -> out
198: 2 -> palm
199: 2 -> panetia
200: 2 -> papa
201: 2 -> passed
202: 2 -> pavlo
203: 2 -> pherson
204: 2 -> phone
205: 2 -> pirah
206: 2 -> pit
207: 2 -> port
208: 2 -> prefect
209: 2 -> profunctorily
210: 2 -> promise
211: 2 -> quandry
212: 2 -> quite
213: 2 -> rain
214: 2 -> realize
215: 2 -> recognizing
216: 2 -> red
217: 2 -> refters
218: 2 -> resonant
219: 2 -> ride
220: 2 -> sacy
221: 2 -> said
222: 2 -> sailed
223: 2 -> saw
224: 2 -> shamerda
225: 2 -> shamerdas
226: 2 -> sheff
227: 2 -> shot
228: 2 -> shreded
229: 2 -> sidnam
230: 2 -> sidney
231: 2 -> sidney's
232: 2 -> snullings
233: 2 -> so
234: 2 -> some
235: 2 -> sometime
236: 2 -> son
237: 2 -> sought
238: 2 -> spice
239: 2 -> spoonful
240: 2 -> stepped
241: 2 -> suffering
242: 2 -> syrtus
243: 2 -> tara
244: 2 -> thee
245: 2 -> touch
246: 2 -> travelling
247: 2 -> trevilleian
248: 2 -> trust
249: 2 -> two
250: 2 -> union
251: 2 -> use
252: 2 -> vetanova
253: 2 -> we
254: 2 -> well
255: 2 -> will
256: 2 -> without
257: 2 -> work
258: 2 -> wound
259: 2 -> wring
260: 1 -> abaloney
261: 1 -> aboloni
262: 1 -> abset
263: 1 -> abulance
264: 1 -> accalpt
265: 1 -> accept
266: 1 -> accounts
267: 1 -> accrues
268: 1 -> ache
269: 1 -> aculine
270: 1 -> adam
271: 1 -> adamnon
272: 1 -> adder
273: 1 -> additions
274: 1 -> aden
275: 1 -> adilization
276: 1 -> administrative
277: 1 -> admitted
278: 1 -> adorn
279: 1 -> adornatories
280: 1 -> advantages
281: 1 -> advis
282: 1 -> afracanus
283: 1 -> against
284: 1 -> agise
285: 1 -> alabamabur
286: 1 -> albert
287: 1 -> alcomy
288: 1 -> algie
289: 1 -> alike
290: 1 -> alineuberg
291: 1 -> all's
292: 1 -> alley
293: 1 -> alluriment
294: 1 -> allusions
295: 1 -> almah
296: 1 -> alone
297: 1 -> alonggre
298: 1 -> ambulences
299: 1 -> ametolia
300: 1 -> analysies
301: 1 -> andreas
302: 1 -> anesthesia
303: 1 -> animal's
304: 1 -> aniquitous
305: 1 -> announce
306: 1 -> answer
307: 1 -> answers
308: 1 -> antiagan
309: 1 -> antisedents
310: 1 -> appear
311: 1 -> applicates
312: 1 -> applode
313: 1 -> arabask
314: 1 -> arcansa
315: 1 -> ardor
316: 1 -> area
317: 1 -> ares
318: 1 -> ariens
319: 1 -> army
320: 1 -> aronald
321: 1 -> arrow
322: 1 -> arrowrogue
323: 1 -> artist's
324: 1 -> artists
325: 1 -> ascend
326: 1 -> ascent
327: 1 -> asinnerbone
328: 1 -> ask
329: 1 -> asma
330: 1 -> assailing
331: 1 -> assessaries
332: 1 -> assurping
333: 1 -> atom
334: 1 -> attach
335: 1 -> attempting
336: 1 -> attitude
337: 1 -> avensuring
338: 1 -> awakened
339: 1 -> axicate's
340: 1 -> b
341: 1 -> baby's
342: 1 -> back
343: 1 -> bagpie
344: 1 -> balvestril
345: 1 -> bambady
346: 1 -> band
347: 1 -> bandit
348: 1 -> bare
349: 1 -> barnyard
350: 1 -> barsalona
351: 1 -> bartle
352: 1 -> bartlee
353: 1 -> base
354: 1 -> basil's
355: 1 -> bastia
356: 1 -> battle
357: 1 -> bawled
358: 1 -> bayonetted
359: 1 -> beams
360: 1 -> beans
361: 1 -> beating
362: 1 -> became
363: 1 -> bed
364: 1 -> bee
365: 1 -> beer
366: 1 -> before
367: 1 -> bell
368: 1 -> bellisarius
369: 1 -> bells
370: 1 -> belly
371: 1 -> belong
372: 1 -> benedict
373: 1 -> benhal
374: 1 -> bennydick
375: 1 -> ber
376: 1 -> bereaked
377: 1 -> bergas
378: 1 -> berges
379: 1 -> bertikins
380: 1 -> bipets
381: 1 -> blamcos
382: 1 -> bleakist
383: 1 -> bleeding
384: 1 -> blemise
385: 1 -> blew
386: 1 -> blood
387: 1 -> blurred
388: 1 -> boat
389: 1 -> boermarks
390: 1 -> bonaciain
391: 1 -> bonds
392: 1 -> bones
393: 1 -> both
394: 1 -> bound
395: 1 -> bountees
396: 1 -> bragoins
397: 1 -> brake
398: 1 -> bran
399: 1 -> brand
400: 1 -> brant
401: 1 -> braying
402: 1 -> bremmer
403: 1 -> bret
404: 1 -> briole
405: 1 -> brionsonstet
406: 1 -> broadstress
407: 1 -> brother
408: 1 -> brow
409: 1 -> bruccil
410: 1 -> bruce
411: 1 -> brucewood
412: 1 -> bruge
413: 1 -> budwah
414: 1 -> bugbear's
415: 1 -> buildings
416: 1 -> burgeous
417: 1 -> burgergregg
418: 1 -> buried
419: 1 -> burr
420: 1 -> burrows
421: 1 -> butt
422: 1 -> buzzers
423: 1 -> bye
424: 1 -> cakes
425: 1 -> calamacchus
426: 1 -> calendar
427: 1 -> call
428: 1 -> callis
429: 1 -> can
430: 1 -> canals
431: 1 -> cannibary
432: 1 -> canny
433: 1 -> canyon
434: 1 -> cap
435: 1 -> capboy
436: 1 -> capital
437: 1 -> captain
438: 1 -> carefully
439: 1 -> carey
440: 1 -> carjur
441: 1 -> carl
442: 1 -> carlin
443: 1 -> carroll
444: 1 -> carrying
445: 1 -> carts
446: 1 -> casine
447: 1 -> casnut
448: 1 -> cassus
449: 1 -> castlepack
450: 1 -> caught
451: 1 -> cecy
452: 1 -> centered
453: 1 -> centre
454: 1 -> champticleer
455: 1 -> channer
456: 1 -> chapparal
457: 1 -> charley's
458: 1 -> charter
459: 1 -> charut
460: 1 -> chasing
461: 1 -> chaste
462: 1 -> child's
463: 1 -> chip
464: 1 -> choba
465: 1 -> choirs
466: 1 -> christmas
467: 1 -> christmass
468: 1 -> chrystom
469: 1 -> cinger
470: 1 -> cippet
471: 1 -> claudius
472: 1 -> clearing
473: 1 -> climate's
474: 1 -> close
475: 1 -> closely
476: 1 -> cloth
477: 1 -> clothes
478: 1 -> clubs
479: 1 -> coastland
480: 1 -> collapsed
481: 1 -> collar
482: 1 -> collars
483: 1 -> color
484: 1 -> coltar
485: 1 -> coming
486: 1 -> conall
487: 1 -> conall's
488: 1 -> congle
489: 1 -> conglo's
490: 1 -> conjurors
491: 1 -> conspiring
492: 1 -> constrained
493: 1 -> contempt
494: 1 -> continued
495: 1 -> conventionals
496: 1 -> convolviless
497: 1 -> coopons
498: 1 -> copylus
499: 1 -> corinthis
500: 1 -> corley
501: 1 -> correli
502: 1 -> corsala
503: 1 -> coughed
504: 1 -> count
505: 1 -> counted
506: 1 -> country
507: 1 -> courier
508: 1 -> course
509: 1 -> cow
510: 1 -> cowpenters
511: 1 -> craftish
512: 1 -> crants
513: 1 -> crater's
514: 1 -> creemacisti
515: 1 -> cresty
516: 1 -> croak
517: 1 -> croppets
518: 1 -> crueler
519: 1 -> culprit
520: 1 -> cure
521: 1 -> curiousr
522: 1 -> curly
523: 1 -> current
524: 1 -> curret
525: 1 -> currol
526: 1 -> cytric
527: 1 -> d'artagnan
528: 1 -> dacalian
529: 1 -> dacile
530: 1 -> dalsen
531: 1 -> dampsen
532: 1 -> dangers
533: 1 -> dark
534: 1 -> dash
535: 1 -> daverni
536: 1 -> daws
537: 1 -> dawselled
538: 1 -> days
539: 1 -> deathlike
540: 1 -> ded
541: 1 -> deductive
542: 1 -> defence
543: 1 -> defensing
544: 1 -> defir
545: 1 -> deftroma
546: 1 -> degarthypus
547: 1 -> delectassi
548: 1 -> delias
549: 1 -> delibado
550: 1 -> delicacies
551: 1 -> demoisne
552: 1 -> dense
553: 1 -> despair
554: 1 -> despatch
555: 1 -> despatched
556: 1 -> detectives
557: 1 -> diasis
558: 1 -> difficulties
559: 1 -> dignity
560: 1 -> distinguisheding
561: 1 -> ditches
562: 1 -> diverse
563: 1 -> diversive
564: 1 -> divided
565: 1 -> divorce
566: 1 -> do
567: 1 -> docite
568: 1 -> doesn't
569: 1 -> dogville
570: 1 -> domantea
571: 1 -> door
572: 1 -> dora
573: 1 -> doraforth
574: 1 -> doroforth
575: 1 -> dorses
576: 1 -> dosinea
577: 1 -> double
578: 1 -> douby
579: 1 -> down
580: 1 -> draught
581: 1 -> drawn
582: 1 -> dream
583: 1 -> drink
584: 1 -> druitism
585: 1 -> ducalian
586: 1 -> durality
587: 1 -> dusk
588: 1 -> earlyst
589: 1 -> eastern
590: 1 -> edge
591: 1 -> effect
592: 1 -> effite
593: 1 -> eglomerations
594: 1 -> elb
595: 1 -> ellas
596: 1 -> else
597: 1 -> em
598: 1 -> embrace
599: 1 -> eminities
600: 1 -> emphasized
601: 1 -> emptyed
602: 1 -> end
603: 1 -> endeavour
604: 1 -> endeavouring
605: 1 -> endeavours
606: 1 -> enemies
607: 1 -> engaging
608: 1 -> entirely
609: 1 -> ephinasius
610: 1 -> epicureism
611: 1 -> epistles
612: 1 -> equipt
613: 1 -> era
614: 1 -> erastes
615: 1 -> ere
616: 1 -> ernest
617: 1 -> erolement
618: 1 -> eroleum
619: 1 -> esperagous
620: 1 -> esperagus
621: 1 -> ethrial
622: 1 -> ets
623: 1 -> every
624: 1 -> everything
625: 1 -> evilize
626: 1 -> excepts
627: 1 -> exhausted
628: 1 -> exorbiate
629: 1 -> expressed
630: 1 -> exultation
631: 1 -> eyes
632: 1 -> fabre
633: 1 -> faces
634: 1 -> factor
635: 1 -> fad
636: 1 -> faggots
637: 1 -> fairies
638: 1 -> falkery
639: 1 -> fall
640: 1 -> false
641: 1 -> fanasies
642: 1 -> fantasies
643: 1 -> fantasy
644: 1 -> farmhouse
645: 1 -> farmwork
646: 1 -> fates
647: 1 -> father
648: 1 -> favourite
649: 1 -> featis
650: 1 -> feature
651: 1 -> feebee
652: 1 -> feeling
653: 1 -> felicity's
654: 1 -> fell
655: 1 -> felt
656: 1 -> festif
657: 1 -> fetched
658: 1 -> fibi
659: 1 -> fiddles
660: 1 -> fili's
661: 1 -> finally
662: 1 -> fiord
663: 1 -> fiordanger
664: 1 -> fire
665: 1 -> fladimir
666: 1 -> flavor
667: 1 -> flight
668: 1 -> flogged
669: 1 -> fonting
670: 1 -> food
671: 1 -> foot
672: 1 -> footpath
673: 1 -> forced
674: 1 -> ford
675: 1 -> forecord
676: 1 -> fortwain
677: 1 -> fosters
678: 1 -> francs
679: 1 -> freeboard
680: 1 -> friends
681: 1 -> fryerson's
682: 1 -> fur
683: 1 -> fuses
684: 1 -> gaff
685: 1 -> gaiety
686: 1 -> gait
687: 1 -> ganem
688: 1 -> gannie
689: 1 -> gareotypus
690: 1 -> garotype
691: 1 -> gasaile
692: 1 -> gasnep
693: 1 -> gauge
694: 1 -> gened
695: 1 -> gentleman
696: 1 -> get
697: 1 -> giddly
698: 1 -> gimnist
699: 1 -> gingle
700: 1 -> girl's
701: 1 -> girls
702: 1 -> give
703: 1 -> glaccies
704: 1 -> gladdens
705: 1 -> glashes
706: 1 -> glissering
707: 1 -> gnomes
708: 1 -> gogdola
709: 1 -> goin
710: 1 -> going
711: 1 -> goliar
712: 1 -> good
713: 1 -> gormais
714: 1 -> gosoouns
715: 1 -> gossip
716: 1 -> goul
717: 1 -> gowining
718: 1 -> grandparts
719: 1 -> gray
720: 1 -> greenfield
721: 1 -> greenhouse
722: 1 -> gretel
723: 1 -> grieved
724: 1 -> grip
725: 1 -> grocer's
726: 1 -> grooms
727: 1 -> grope
728: 1 -> group
729: 1 -> grubbed
730: 1 -> grumplingly
731: 1 -> gryphon's
732: 1 -> guarder
733: 1 -> guilt
734: 1 -> guiltyly
735: 1 -> gundola
736: 1 -> gwynplaine's
737: 1 -> h
738: 1 -> ha
739: 1 -> hail
740: 1 -> half
741: 1 -> halikan
742: 1 -> hang
743: 1 -> happen
744: 1 -> happened
745: 1 -> harbour
746: 1 -> hard
747: 1 -> hardwick
748: 1 -> harpees
749: 1 -> hasten
750: 1 -> hatchy
751: 1 -> he'd
752: 1 -> he'sn't
753: 1 -> heartier
754: 1 -> heavy
755: 1 -> heights
756: 1 -> heir
757: 1 -> hell
758: 1 -> hellock
759: 1 -> helly
760: 1 -> helmo
761: 1 -> helpful
762: 1 -> hepsebub
763: 1 -> hepsippus
764: 1 -> here
765: 1 -> here's
766: 1 -> hero
767: 1 -> hers
768: 1 -> high
769: 1 -> hilvieu
770: 1 -> hisself
771: 1 -> hoaking
772: 1 -> hoboys
773: 1 -> hoffro
774: 1 -> hograve
775: 1 -> hole
776: 1 -> holy
777: 1 -> holyest
778: 1 -> home
779: 1 -> homemaid
780: 1 -> honorable
781: 1 -> honoured
782: 1 -> hoochera
783: 1 -> hoofbrah
784: 1 -> hooks
785: 1 -> hoped
786: 1 -> hor
787: 1 -> horde
788: 1 -> horsehide
789: 1 -> house
790: 1 -> hove
791: 1 -> however
792: 1 -> howls
793: 1 -> howlsn
794: 1 -> humbre
795: 1 -> humour
796: 1 -> hump
797: 1 -> hunger
798: 1 -> hydleberg
799: 1 -> hydlebergin
800: 1 -> hydnembryos
801: 1 -> i'd
802: 1 -> i'll
803: 1 -> i'm
804: 1 -> iac
805: 1 -> idiominepoch
806: 1 -> ignorfic
807: 1 -> immaviata
808: 1 -> immediate
809: 1 -> imposed
810: 1 -> impossibility
811: 1 -> improvished
812: 1 -> incenseless
813: 1 -> incitiary
814: 1 -> infirm
815: 1 -> ingraciation
816: 1 -> inherited
817: 1 -> inseparable
818: 1 -> instinct
819: 1 -> instruments
820: 1 -> insuited
821: 1 -> insulted
822: 1 -> insured
823: 1 -> interest
824: 1 -> ionot
825: 1 -> ions
826: 1 -> ipulation
827: 1 -> irowan
828: 1 -> irowhon
829: 1 -> isador
830: 1 -> it's
831: 1 -> itals
832: 1 -> itlana
833: 1 -> its
834: 1 -> jackson
835: 1 -> jellyen
836: 1 -> jerk
837: 1 -> jim's
838: 1 -> jimmy
839: 1 -> jingle
840: 1 -> johnson
841: 1 -> joinedly
842: 1 -> jortan
843: 1 -> joy
844: 1 -> julien
845: 1 -> justine
846: 1 -> kaligo
847: 1 -> kellystine
848: 1 -> kennibalistic
849: 1 -> kindhearted
850: 1 -> kirker
851: 1 -> knew
852: 1 -> knights
853: 1 -> krylter
854: 1 -> kulter's
855: 1 -> kuzin
856: 1 -> la
857: 1 -> labors
858: 1 -> lace
859: 1 -> lackeys
860: 1 -> lain
861: 1 -> lake
862: 1 -> lamp
863: 1 -> land
864: 1 -> langes
865: 1 -> large
866: 1 -> largest
867: 1 -> larsan's
868: 1 -> larvie
869: 1 -> lasson's
870: 1 -> latens
871: 1 -> later
872: 1 -> latter
873: 1 -> latticed
874: 1 -> lava
875: 1 -> lawn
876: 1 -> lead
877: 1 -> leaned
878: 1 -> leap
879: 1 -> leave
880: 1 -> leban
881: 1 -> leeds
882: 1 -> legs
883: 1 -> lena's
884: 1 -> lenell's
885: 1 -> letter
886: 1 -> letting
887: 1 -> leveled
888: 1 -> levin
889: 1 -> life
890: 1 -> lifelong
891: 1 -> lined
892: 1 -> little
893: 1 -> live
894: 1 -> lizzie
895: 1 -> load
896: 1 -> loath
897: 1 -> lock
898: 1 -> logoss
899: 1 -> looking
900: 1 -> loveest
901: 1 -> loves
902: 1 -> lowered
903: 1 -> lowliness
904: 1 -> lunk
905: 1 -> lyach
906: 1 -> lycia
907: 1 -> lying
908: 1 -> lynch
909: 1 -> mac
910: 1 -> maccawaine
911: 1 -> machalwain's
912: 1 -> macrol
913: 1 -> madam
914: 1 -> maddigitonomy
915: 1 -> maid's
916: 1 -> maiden
917: 1 -> makin
918: 1 -> mam
919: 1 -> mammo
920: 1 -> man's
921: 1 -> manay's
922: 1 -> manettes
923: 1 -> manhall
924: 1 -> manikians
925: 1 -> manner
926: 1 -> margerym
927: 1 -> marian
928: 1 -> marianna
929: 1 -> marked
930: 1 -> martin
931: 1 -> marveling
932: 1 -> marvellous
933: 1 -> mass
934: 1 -> master
935: 1 -> match
936: 1 -> mate
937: 1 -> material
938: 1 -> mattie
939: 1 -> maxchmaking
940: 1 -> maybe
941: 1 -> maze
942: 1 -> mazes
943: 1 -> mean
944: 1 -> mechalus
945: 1 -> meece
946: 1 -> meef
947: 1 -> meeting
948: 1 -> mekin
949: 1 -> men
950: 1 -> mental
951: 1 -> merida
952: 1 -> mesonine
953: 1 -> messinine
954: 1 -> metals
955: 1 -> metering
956: 1 -> mice
957: 1 -> mickly
958: 1 -> middle
959: 1 -> might
960: 1 -> miken
961: 1 -> mikhalis
962: 1 -> milburgh
963: 1 -> milk
964: 1 -> min's
965: 1 -> minds
966: 1 -> mine
967: 1 -> mingo
968: 1 -> minister
969: 1 -> minnetawki
970: 1 -> minnethocki
971: 1 -> miono
972: 1 -> mirabelle
973: 1 -> misgided
974: 1 -> mishapsiver
975: 1 -> miss
976: 1 -> mitchell's
977: 1 -> mobby
978: 1 -> modestly
979: 1 -> modox
980: 1 -> mold
981: 1 -> molds
982: 1 -> molling
983: 1 -> molobby
984: 1 -> molucus
985: 1 -> monain
986: 1 -> monarch
987: 1 -> monsieur's
988: 1 -> moon
989: 1 -> moraines
990: 1 -> moral
991: 1 -> morbid
992: 1 -> more
993: 1 -> mosel
994: 1 -> motions
995: 1 -> mountabank
996: 1 -> mountabanks
997: 1 -> mountain
998: 1 -> mourner
999: 1 -> mournings
1000: 1 -> moved
1001: 1 -> mule
1002: 1 -> mulradi
1003: 1 -> multisineah
1004: 1 -> multitudes
1005: 1 -> mure
1006: 1 -> murkantile
1007: 1 -> murmured
1008: 1 -> musician's
1009: 1 -> nagger
1010: 1 -> nail
1011: 1 -> neading
1012: 1 -> near
1013: 1 -> nearer
1014: 1 -> necrimacy
1015: 1 -> needst
1016: 1 -> neighbour
1017: 1 -> netty
1018: 1 -> newcomers
1019: 1 -> nice
1020: 1 -> nichalus
1021: 1 -> nicholas
1022: 1 -> nimish
1023: 1 -> nin
1024: 1 -> noontine
1025: 1 -> norse
1026: 1 -> northard
1027: 1 -> nose
1028: 1 -> not
1029: 1 -> nothing
1030: 1 -> notwithstandings
1031: 1 -> novations
1032: 1 -> nuison's
1033: 1 -> numitten's
1034: 1 -> nurkirney
1035: 1 -> nuson's
1036: 1 -> o
1037: 1 -> obenette
1038: 1 -> oconisms
1039: 1 -> octorus
1040: 1 -> odium
1041: 1 -> odosius
1042: 1 -> off
1043: 1 -> official
1044: 1 -> old
1045: 1 -> ominer
1046: 1 -> only
1047: 1 -> ons
1048: 1 -> opeak
1049: 1 -> opherel
1050: 1 -> opinion
1051: 1 -> opinions
1052: 1 -> oppit
1053: 1 -> oppressive
1054: 1 -> ordean
1055: 1 -> original
1056: 1 -> ossippin's
1057: 1 -> ossiton's
1058: 1 -> otter
1059: 1 -> overarched
1060: 1 -> ownselves
1061: 1 -> oz
1062: 1 -> p
1063: 1 -> pace
1064: 1 -> pacing
1065: 1 -> paid
1066: 1 -> pails
1067: 1 -> pale
1068: 1 -> palmal
1069: 1 -> palmel
1070: 1 -> panassia
1071: 1 -> panata
1072: 1 -> parastability
1073: 1 -> parents
1074: 1 -> parishes
1075: 1 -> parlor
1076: 1 -> parot
1077: 1 -> particans
1078: 1 -> partly
1079: 1 -> passerby
1080: 1 -> pasteboard
1081: 1 -> patience
1082: 1 -> patrinells
1083: 1 -> paul
1084: 1 -> pease
1085: 1 -> peditantiary
1086: 1 -> pellesium
1087: 1 -> pestal
1088: 1 -> petuous
1089: 1 -> phenomena
1090: 1 -> philmor
1091: 1 -> philodophus
1092: 1 -> phinocta
1093: 1 -> phinus
1094: 1 -> picks
1095: 1 -> piece
1096: 1 -> pin
1097: 1 -> pire
1098: 1 -> placed
1099: 1 -> planched
1100: 1 -> plans
1101: 1 -> plarama
1102: 1 -> plates
1103: 1 -> plating
1104: 1 -> pleased
1105: 1 -> pliances
1106: 1 -> plum
1107: 1 -> plymations
1108: 1 -> poigard
1109: 1 -> polonais
1110: 1 -> polonaris
1111: 1 -> polyphius
1112: 1 -> pometheus
1113: 1 -> pompous
1114: 1 -> pond
1115: 1 -> pony
1116: 1 -> poorers
1117: 1 -> popable
1118: 1 -> poppos
1119: 1 -> porphyri
1120: 1 -> possessed
1121: 1 -> postering
1122: 1 -> pouring
1123: 1 -> powd
1124: 1 -> precedes
1125: 1 -> prefier
1126: 1 -> pretunder
1127: 1 -> primoses
1128: 1 -> princes
1129: 1 -> privity
1130: 1 -> prizeing
1131: 1 -> prodigase
1132: 1 -> produced
1133: 1 -> profits
1134: 1 -> propiate
1135: 1 -> propos
1136: 1 -> proromov
1137: 1 -> prosepina
1138: 1 -> prude
1139: 1 -> punnies
1140: 1 -> pyle
1141: 1 -> quarter
1142: 1 -> queen
1143: 1 -> quinalles
1144: 1 -> quinals
1145: 1 -> quintian
1146: 1 -> raggottada
1147: 1 -> rainstarms
1148: 1 -> ramented
1149: 1 -> ranks
1150: 1 -> rawdon
1151: 1 -> rawhide
1152: 1 -> razeta
1153: 1 -> ready
1154: 1 -> realised
1155: 1 -> reassured
1156: 1 -> recognize
1157: 1 -> reels
1158: 1 -> reference
1159: 1 -> reformed
1160: 1 -> refused
1161: 1 -> regiance
1162: 1 -> regimented
1163: 1 -> regins
1164: 1 -> reign
1165: 1 -> releading
1166: 1 -> remember
1167: 1 -> repetory
1168: 1 -> requiminating
1169: 1 -> resigned
1170: 1 -> responsibility
1171: 1 -> result
1172: 1 -> return
1173: 1 -> rhines
1174: 1 -> rhon
1175: 1 -> rich
1176: 1 -> ricktus
1177: 1 -> rig
1178: 1 -> rigados
1179: 1 -> right
1180: 1 -> rigour
1181: 1 -> ringler
1182: 1 -> ripping
1183: 1 -> risks
1184: 1 -> rite
1185: 1 -> rites
1186: 1 -> river
1187: 1 -> roads
1188: 1 -> rock
1189: 1 -> rode
1190: 1 -> roll
1191: 1 -> romantic
1192: 1 -> rosetti
1193: 1 -> rot
1194: 1 -> rotier
1195: 1 -> round
1196: 1 -> rule
1197: 1 -> running
1198: 1 -> rye
1199: 1 -> salary
1200: 1 -> salt
1201: 1 -> sannam
1202: 1 -> satisfied
1203: 1 -> satisfy
1204: 1 -> savor
1205: 1 -> saxon
1206: 1 -> scantetly
1207: 1 -> scene
1208: 1 -> scenesius's
1209: 1 -> scent
1210: 1 -> schibli
1211: 1 -> scoup
1212: 1 -> scowling
1213: 1 -> sculptureing
1214: 1 -> sealing
1215: 1 -> seats
1216: 1 -> secaries
1217: 1 -> second
1218: 1 -> sedley
1219: 1 -> seemed
1220: 1 -> seized
1221: 1 -> semigothic
1222: 1 -> sending
1223: 1 -> sense
1224: 1 -> serapian
1225: 1 -> sere
1226: 1 -> serpent
1227: 1 -> sess
1228: 1 -> sessed
1229: 1 -> setter
1230: 1 -> sexuaries
1231: 1 -> shall
1232: 1 -> shampooler
1233: 1 -> shaster
1234: 1 -> shay
1235: 1 -> sheeps
1236: 1 -> shefts
1237: 1 -> shellfish
1238: 1 -> shesta
1239: 1 -> shilar
1240: 1 -> shire
1241: 1 -> shocked
1242: 1 -> should
1243: 1 -> show
1244: 1 -> side
1245: 1 -> sidenham
1246: 1 -> sidonum
1247: 1 -> sight
1248: 1 -> sign
1249: 1 -> signor
1250: 1 -> sigur
1251: 1 -> similarx
1252: 1 -> simmon's
1253: 1 -> simmons
1254: 1 -> sina
1255: 1 -> sineagogues
1256: 1 -> sing
1257: 1 -> sinner
1258: 1 -> sioux
1259: 1 -> sisters
1260: 1 -> size
1261: 1 -> sized
1262: 1 -> skimps
1263: 1 -> slant
1264: 1 -> slaveholders
1265: 1 -> slayter
1266: 1 -> sleep
1267: 1 -> sleeping
1268: 1 -> sloosing
1269: 1 -> sloped
1270: 1 -> sloss
1271: 1 -> slumpy
1272: 1 -> small
1273: 1 -> smoke
1274: 1 -> snappy
1275: 1 -> snugs
1276: 1 -> socknoosum
1277: 1 -> sodom
1278: 1 -> soire
1279: 1 -> solden
1280: 1 -> song
1281: 1 -> sons
1282: 1 -> soot
1283: 1 -> sopha
1284: 1 -> sorgum
1285: 1 -> soring
1286: 1 -> sottern
1287: 1 -> south
1288: 1 -> southward
1289: 1 -> sparrow
1290: 1 -> speak
1291: 1 -> splenium
1292: 1 -> spoon
1293: 1 -> spoons
1294: 1 -> spurra
1295: 1 -> staff
1296: 1 -> stands
1297: 1 -> state
1298: 1 -> steadiness
1299: 1 -> steaked
1300: 1 -> steamfarey
1301: 1 -> steedie
1302: 1 -> steep
1303: 1 -> steepy
1304: 1 -> sterio's
1305: 1 -> stevy's
1306: 1 -> stikulated
1307: 1 -> stir
1308: 1 -> stoddledly
1309: 1 -> stomach
1310: 1 -> stones
1311: 1 -> stord
1312: 1 -> strapberry
1313: 1 -> strike
1314: 1 -> strips
1315: 1 -> strode
1316: 1 -> submaroke
1317: 1 -> succeeded
1318: 1 -> sueur
1319: 1 -> sumborough
1320: 1 -> supper
1321: 1 -> surely
1322: 1 -> surflited
1323: 1 -> surprise
1324: 1 -> surprised
1325: 1 -> surrendered
1326: 1 -> surroundal
1327: 1 -> swards
1328: 1 -> swell
1329: 1 -> swept
1330: 1 -> swerld's
1331: 1 -> sylvine
1332: 1 -> synthy
1333: 1 -> tabatos
1334: 1 -> tablespoonfuls
1335: 1 -> tad
1336: 1 -> taddock
1337: 1 -> tadinzo
1338: 1 -> tain
1339: 1 -> take
1340: 1 -> tallened
1341: 1 -> tannon
1342: 1 -> tarkalan
1343: 1 -> tarrol
1344: 1 -> tears
1345: 1 -> teemy
1346: 1 -> teevy
1347: 1 -> telecass
1348: 1 -> telibaylon
1349: 1 -> tell
1350: 1 -> termazo
1351: 1 -> ternities
1352: 1 -> terror
1353: 1 -> tertarc
1354: 1 -> testand
1355: 1 -> tettled
1356: 1 -> than
1357: 1 -> theocratus
1358: 1 -> therefore
1359: 1 -> these
1360: 1 -> they
1361: 1 -> they'd
1362: 1 -> thing
1363: 1 -> thinked
1364: 1 -> thinking
1365: 1 -> this
1366: 1 -> thought
1367: 1 -> three
1368: 1 -> throbbed
1369: 1 -> thum
1370: 1 -> tickled
1371: 1 -> tied
1372: 1 -> tilda
1373: 1 -> timid
1374: 1 -> tints
1375: 1 -> tired
1376: 1 -> tison
1377: 1 -> toho
1378: 1 -> tokia
1379: 1 -> too
1380: 1 -> top
1381: 1 -> topper
1382: 1 -> tormelee
1383: 1 -> tormily
1384: 1 -> touched
1385: 1 -> toward
1386: 1 -> town
1387: 1 -> tradition
1388: 1 -> tramp
1389: 1 -> tramped
1390: 1 -> travelers
1391: 1 -> travelled
1392: 1 -> tree
1393: 1 -> tresses
1394: 1 -> trevilleion
1395: 1 -> tribner
1396: 1 -> trigger'd
1397: 1 -> trivaliant's
1398: 1 -> trot
1399: 1 -> trouble
1400: 1 -> troubled
1401: 1 -> truetors
1402: 1 -> trumpets
1403: 1 -> tufted
1404: 1 -> tumbles
1405: 1 -> tuneing
1406: 1 -> turned
1407: 1 -> turneth
1408: 1 -> twine
1409: 1 -> type
1410: 1 -> tyrannize
1411: 1 -> unadorn
1412: 1 -> unberry
1413: 1 -> uncalled
1414: 1 -> under
1415: 1 -> undiscipient
1416: 1 -> unfavorable
1417: 1 -> uninable
1418: 1 -> unsoled
1419: 1 -> unsulgiary
1420: 1 -> until
1421: 1 -> untrusp
1422: 1 -> unwordly
1423: 1 -> upguards
1424: 1 -> upstairs
1425: 1 -> usurah
1426: 1 -> utter
1427: 1 -> vacres
1428: 1 -> vainly
1429: 1 -> varion
1430: 1 -> varlets
1431: 1 -> vault
1432: 1 -> vegetatited
1433: 1 -> vein
1434: 1 -> vendia
1435: 1 -> venus
1436: 1 -> veranda
1437: 1 -> viaialities
1438: 1 -> vinacular
1439: 1 -> violence
1440: 1 -> vircilius
1441: 1 -> virgado
1442: 1 -> visor
1443: 1 -> vitannoa
1444: 1 -> vitette
1445: 1 -> voice
1446: 1 -> votis
1447: 1 -> vow
1448: 1 -> vulgary
1449: 1 -> wabigawan's
1450: 1 -> wahidi
1451: 1 -> wakened
1452: 1 -> walshellves
1453: 1 -> wand
1454: 1 -> wanted
1455: 1 -> wants
1456: 1 -> wapi
1457: 1 -> war
1458: 1 -> warding
1459: 1 -> warm
1460: 1 -> water
1461: 1 -> way
1462: 1 -> waylaid
1463: 1 -> we'd
1464: 1 -> weary
1465: 1 -> weather
1466: 1 -> weeded
1467: 1 -> week
1468: 1 -> weigh
1469: 1 -> wench
1470: 1 -> went
1471: 1 -> wept
1472: 1 -> weret
1473: 1 -> westmore
1474: 1 -> westward
1475: 1 -> what's
1476: 1 -> wherein
1477: 1 -> which
1478: 1 -> whither
1479: 1 -> whole
1480: 1 -> whose
1481: 1 -> willering
1482: 1 -> wilson's
1483: 1 -> winter
1484: 1 -> wise
1485: 1 -> withdrawing
1486: 1 -> within
1487: 1 -> woman
1488: 1 -> woman's
1489: 1 -> won
1490: 1 -> wonder
1491: 1 -> word
1492: 1 -> worshipping
1493: 1 -> worst
1494: 1 -> worth
1495: 1 -> would
1496: 1 -> wounders
1497: 1 -> wrap
1498: 1 -> wrath
1499: 1 -> wringing
1500: 1 -> writer
1501: 1 -> writing
1502: 1 -> yank
1503: 1 -> yaronia
1504: 1 -> yax
1505: 1 -> yoke
1506: 1 -> yokel
1507: 1 -> yolka
1508: 1 -> yolko
1509: 1 -> yona
1510: 1 -> you'd
1511: 1 -> you'll
1512: 1 -> your
1513: 1 -> youths
1514: 1 -> yunt
1515: 1 -> zobeth
-------
2268
* NOTE: The 'Falsely Recognized' words are those hypothesis words
which the recognizer incorrectly substituted for a reference word.
|