From c9b4a51c2d5939b5ced23c3d13c5941d9bcd4709 Mon Sep 17 00:00:00 2001 From: agnibho Date: Wed, 12 Mar 2014 22:29:09 +0530 Subject: [PATCH] First Commit --- LICENSE.TXT | 674 ++++ README.TXT | 40 + com/agnibho/code/anagram/CheckAnagram.java | 232 ++ com/agnibho/code/anagram/IsAnagram.java | 45 + com/agnibho/code/anagram/IsPalindrome.java | 41 + com/agnibho/code/anagram/IsValid.java | 49 + com/agnibho/code/anagram/LICENSE.TXT | 674 ++++ com/agnibho/code/anagram/UI.java | 252 ++ com/agnibho/code/anagram/dictionary/A1.txt | 1 + com/agnibho/code/anagram/dictionary/A10.txt | 1597 ++++++++ com/agnibho/code/anagram/dictionary/A11.txt | 1210 ++++++ com/agnibho/code/anagram/dictionary/A12.txt | 770 ++++ com/agnibho/code/anagram/dictionary/A13.txt | 510 +++ com/agnibho/code/anagram/dictionary/A14.txt | 297 ++ com/agnibho/code/anagram/dictionary/A15.txt | 150 + com/agnibho/code/anagram/dictionary/A16.txt | 71 + com/agnibho/code/anagram/dictionary/A17.txt | 26 + com/agnibho/code/anagram/dictionary/A18.txt | 15 + com/agnibho/code/anagram/dictionary/A19.txt | 7 + com/agnibho/code/anagram/dictionary/A2.txt | 14 + com/agnibho/code/anagram/dictionary/A20.txt | 3 + com/agnibho/code/anagram/dictionary/A24.txt | 1 + com/agnibho/code/anagram/dictionary/A25.txt | 1 + com/agnibho/code/anagram/dictionary/A28.txt | 1 + com/agnibho/code/anagram/dictionary/A3.txt | 80 + com/agnibho/code/anagram/dictionary/A4.txt | 262 ++ com/agnibho/code/anagram/dictionary/A5.txt | 663 ++++ com/agnibho/code/anagram/dictionary/A6.txt | 1041 +++++ com/agnibho/code/anagram/dictionary/A7.txt | 1389 +++++++ com/agnibho/code/anagram/dictionary/A8.txt | 1621 ++++++++ com/agnibho/code/anagram/dictionary/A9.txt | 1811 +++++++++ com/agnibho/code/anagram/dictionary/B1.txt | 1 + com/agnibho/code/anagram/dictionary/B10.txt | 1108 ++++++ com/agnibho/code/anagram/dictionary/B11.txt | 721 ++++ com/agnibho/code/anagram/dictionary/B12.txt | 347 ++ com/agnibho/code/anagram/dictionary/B13.txt | 181 + com/agnibho/code/anagram/dictionary/B14.txt | 88 + com/agnibho/code/anagram/dictionary/B15.txt | 36 + com/agnibho/code/anagram/dictionary/B16.txt | 9 + com/agnibho/code/anagram/dictionary/B17.txt | 8 + com/agnibho/code/anagram/dictionary/B18.txt | 5 + com/agnibho/code/anagram/dictionary/B19.txt | 2 + com/agnibho/code/anagram/dictionary/B2.txt | 4 + com/agnibho/code/anagram/dictionary/B20.txt | 2 + com/agnibho/code/anagram/dictionary/B3.txt | 61 + com/agnibho/code/anagram/dictionary/B4.txt | 325 ++ com/agnibho/code/anagram/dictionary/B5.txt | 761 ++++ com/agnibho/code/anagram/dictionary/B6.txt | 1298 +++++++ com/agnibho/code/anagram/dictionary/B7.txt | 1748 +++++++++ com/agnibho/code/anagram/dictionary/B8.txt | 1757 +++++++++ com/agnibho/code/anagram/dictionary/B9.txt | 1526 ++++++++ com/agnibho/code/anagram/dictionary/C1.txt | 1 + com/agnibho/code/anagram/dictionary/C10.txt | 2520 ++++++++++++ com/agnibho/code/anagram/dictionary/C11.txt | 1897 +++++++++ com/agnibho/code/anagram/dictionary/C12.txt | 1284 ++++++ com/agnibho/code/anagram/dictionary/C13.txt | 836 ++++ com/agnibho/code/anagram/dictionary/C14.txt | 469 +++ com/agnibho/code/anagram/dictionary/C15.txt | 268 ++ com/agnibho/code/anagram/dictionary/C16.txt | 104 + com/agnibho/code/anagram/dictionary/C17.txt | 66 + com/agnibho/code/anagram/dictionary/C18.txt | 15 + com/agnibho/code/anagram/dictionary/C19.txt | 10 + com/agnibho/code/anagram/dictionary/C2.txt | 2 + com/agnibho/code/anagram/dictionary/C20.txt | 7 + com/agnibho/code/anagram/dictionary/C21.txt | 3 + com/agnibho/code/anagram/dictionary/C3.txt | 47 + com/agnibho/code/anagram/dictionary/C4.txt | 285 ++ com/agnibho/code/anagram/dictionary/C5.txt | 816 ++++ com/agnibho/code/anagram/dictionary/C6.txt | 1536 ++++++++ com/agnibho/code/anagram/dictionary/C7.txt | 2290 +++++++++++ com/agnibho/code/anagram/dictionary/C8.txt | 2731 +++++++++++++ com/agnibho/code/anagram/dictionary/C9.txt | 2710 +++++++++++++ com/agnibho/code/anagram/dictionary/D1.txt | 1 + com/agnibho/code/anagram/dictionary/D10.txt | 1568 ++++++++ com/agnibho/code/anagram/dictionary/D11.txt | 1322 +++++++ com/agnibho/code/anagram/dictionary/D12.txt | 1037 +++++ com/agnibho/code/anagram/dictionary/D13.txt | 673 ++++ com/agnibho/code/anagram/dictionary/D14.txt | 424 ++ com/agnibho/code/anagram/dictionary/D15.txt | 257 ++ com/agnibho/code/anagram/dictionary/D16.txt | 101 + com/agnibho/code/anagram/dictionary/D17.txt | 50 + com/agnibho/code/anagram/dictionary/D18.txt | 15 + com/agnibho/code/anagram/dictionary/D19.txt | 8 + com/agnibho/code/anagram/dictionary/D2.txt | 3 + com/agnibho/code/anagram/dictionary/D20.txt | 3 + com/agnibho/code/anagram/dictionary/D21.txt | 1 + com/agnibho/code/anagram/dictionary/D3.txt | 59 + com/agnibho/code/anagram/dictionary/D31.txt | 1 + com/agnibho/code/anagram/dictionary/D4.txt | 282 ++ com/agnibho/code/anagram/dictionary/D5.txt | 578 +++ com/agnibho/code/anagram/dictionary/D6.txt | 955 +++++ com/agnibho/code/anagram/dictionary/D7.txt | 1383 +++++++ com/agnibho/code/anagram/dictionary/D8.txt | 1634 ++++++++ com/agnibho/code/anagram/dictionary/D9.txt | 1657 ++++++++ com/agnibho/code/anagram/dictionary/E1.txt | 1 + com/agnibho/code/anagram/dictionary/E10.txt | 1266 ++++++ com/agnibho/code/anagram/dictionary/E11.txt | 956 +++++ com/agnibho/code/anagram/dictionary/E12.txt | 679 ++++ com/agnibho/code/anagram/dictionary/E13.txt | 423 ++ com/agnibho/code/anagram/dictionary/E14.txt | 199 + com/agnibho/code/anagram/dictionary/E15.txt | 124 + com/agnibho/code/anagram/dictionary/E16.txt | 39 + com/agnibho/code/anagram/dictionary/E17.txt | 18 + com/agnibho/code/anagram/dictionary/E18.txt | 10 + com/agnibho/code/anagram/dictionary/E19.txt | 12 + com/agnibho/code/anagram/dictionary/E2.txt | 12 + com/agnibho/code/anagram/dictionary/E20.txt | 3 + com/agnibho/code/anagram/dictionary/E21.txt | 2 + com/agnibho/code/anagram/dictionary/E22.txt | 1 + com/agnibho/code/anagram/dictionary/E23.txt | 1 + com/agnibho/code/anagram/dictionary/E3.txt | 55 + com/agnibho/code/anagram/dictionary/E4.txt | 159 + com/agnibho/code/anagram/dictionary/E5.txt | 285 ++ com/agnibho/code/anagram/dictionary/E6.txt | 597 +++ com/agnibho/code/anagram/dictionary/E7.txt | 928 +++++ com/agnibho/code/anagram/dictionary/E8.txt | 1244 ++++++ com/agnibho/code/anagram/dictionary/E9.txt | 1377 +++++++ com/agnibho/code/anagram/dictionary/F1.txt | 1 + com/agnibho/code/anagram/dictionary/F10.txt | 847 ++++ com/agnibho/code/anagram/dictionary/F11.txt | 554 +++ com/agnibho/code/anagram/dictionary/F12.txt | 319 ++ com/agnibho/code/anagram/dictionary/F13.txt | 173 + com/agnibho/code/anagram/dictionary/F14.txt | 91 + com/agnibho/code/anagram/dictionary/F15.txt | 31 + com/agnibho/code/anagram/dictionary/F16.txt | 7 + com/agnibho/code/anagram/dictionary/F17.txt | 4 + com/agnibho/code/anagram/dictionary/F2.txt | 2 + com/agnibho/code/anagram/dictionary/F29.txt | 1 + com/agnibho/code/anagram/dictionary/F3.txt | 52 + com/agnibho/code/anagram/dictionary/F4.txt | 216 ++ com/agnibho/code/anagram/dictionary/F5.txt | 498 +++ com/agnibho/code/anagram/dictionary/F6.txt | 813 ++++ com/agnibho/code/anagram/dictionary/F7.txt | 1125 ++++++ com/agnibho/code/anagram/dictionary/F8.txt | 1280 ++++++ com/agnibho/code/anagram/dictionary/F9.txt | 1114 ++++++ com/agnibho/code/anagram/dictionary/G1.txt | 1 + com/agnibho/code/anagram/dictionary/G10.txt | 724 ++++ com/agnibho/code/anagram/dictionary/G11.txt | 492 +++ com/agnibho/code/anagram/dictionary/G12.txt | 292 ++ com/agnibho/code/anagram/dictionary/G13.txt | 163 + com/agnibho/code/anagram/dictionary/G14.txt | 78 + com/agnibho/code/anagram/dictionary/G15.txt | 34 + com/agnibho/code/anagram/dictionary/G16.txt | 12 + com/agnibho/code/anagram/dictionary/G17.txt | 3 + com/agnibho/code/anagram/dictionary/G18.txt | 2 + com/agnibho/code/anagram/dictionary/G19.txt | 1 + com/agnibho/code/anagram/dictionary/G2.txt | 4 + com/agnibho/code/anagram/dictionary/G3.txt | 55 + com/agnibho/code/anagram/dictionary/G4.txt | 268 ++ com/agnibho/code/anagram/dictionary/G5.txt | 533 +++ com/agnibho/code/anagram/dictionary/G6.txt | 849 ++++ com/agnibho/code/anagram/dictionary/G7.txt | 1118 ++++++ com/agnibho/code/anagram/dictionary/G8.txt | 1096 ++++++ com/agnibho/code/anagram/dictionary/G9.txt | 939 +++++ com/agnibho/code/anagram/dictionary/H1.txt | 1 + com/agnibho/code/anagram/dictionary/H10.txt | 932 +++++ com/agnibho/code/anagram/dictionary/H11.txt | 720 ++++ com/agnibho/code/anagram/dictionary/H12.txt | 505 +++ com/agnibho/code/anagram/dictionary/H13.txt | 290 ++ com/agnibho/code/anagram/dictionary/H14.txt | 181 + com/agnibho/code/anagram/dictionary/H15.txt | 79 + com/agnibho/code/anagram/dictionary/H16.txt | 43 + com/agnibho/code/anagram/dictionary/H17.txt | 10 + com/agnibho/code/anagram/dictionary/H18.txt | 7 + com/agnibho/code/anagram/dictionary/H19.txt | 1 + com/agnibho/code/anagram/dictionary/H2.txt | 4 + com/agnibho/code/anagram/dictionary/H21.txt | 1 + com/agnibho/code/anagram/dictionary/H22.txt | 1 + com/agnibho/code/anagram/dictionary/H23.txt | 1 + com/agnibho/code/anagram/dictionary/H24.txt | 1 + com/agnibho/code/anagram/dictionary/H3.txt | 59 + com/agnibho/code/anagram/dictionary/H4.txt | 236 ++ com/agnibho/code/anagram/dictionary/H5.txt | 443 +++ com/agnibho/code/anagram/dictionary/H6.txt | 691 ++++ com/agnibho/code/anagram/dictionary/H7.txt | 930 +++++ com/agnibho/code/anagram/dictionary/H8.txt | 1009 +++++ com/agnibho/code/anagram/dictionary/H9.txt | 1024 +++++ com/agnibho/code/anagram/dictionary/I1.txt | 1 + com/agnibho/code/anagram/dictionary/I10.txt | 1118 ++++++ com/agnibho/code/anagram/dictionary/I11.txt | 1046 +++++ com/agnibho/code/anagram/dictionary/I12.txt | 877 +++++ com/agnibho/code/anagram/dictionary/I13.txt | 647 ++++ com/agnibho/code/anagram/dictionary/I14.txt | 383 ++ com/agnibho/code/anagram/dictionary/I15.txt | 259 ++ com/agnibho/code/anagram/dictionary/I16.txt | 113 + com/agnibho/code/anagram/dictionary/I17.txt | 75 + com/agnibho/code/anagram/dictionary/I18.txt | 27 + com/agnibho/code/anagram/dictionary/I19.txt | 13 + com/agnibho/code/anagram/dictionary/I2.txt | 6 + com/agnibho/code/anagram/dictionary/I20.txt | 9 + com/agnibho/code/anagram/dictionary/I21.txt | 1 + com/agnibho/code/anagram/dictionary/I3.txt | 36 + com/agnibho/code/anagram/dictionary/I4.txt | 85 + com/agnibho/code/anagram/dictionary/I5.txt | 174 + com/agnibho/code/anagram/dictionary/I6.txt | 352 ++ com/agnibho/code/anagram/dictionary/I7.txt | 558 +++ com/agnibho/code/anagram/dictionary/I8.txt | 776 ++++ com/agnibho/code/anagram/dictionary/I9.txt | 988 +++++ com/agnibho/code/anagram/dictionary/J1.txt | 1 + com/agnibho/code/anagram/dictionary/J10.txt | 163 + com/agnibho/code/anagram/dictionary/J11.txt | 84 + com/agnibho/code/anagram/dictionary/J12.txt | 34 + com/agnibho/code/anagram/dictionary/J13.txt | 21 + com/agnibho/code/anagram/dictionary/J14.txt | 10 + com/agnibho/code/anagram/dictionary/J15.txt | 5 + com/agnibho/code/anagram/dictionary/J16.txt | 3 + com/agnibho/code/anagram/dictionary/J2.txt | 1 + com/agnibho/code/anagram/dictionary/J3.txt | 33 + com/agnibho/code/anagram/dictionary/J4.txt | 115 + com/agnibho/code/anagram/dictionary/J5.txt | 190 + com/agnibho/code/anagram/dictionary/J6.txt | 314 ++ com/agnibho/code/anagram/dictionary/J7.txt | 368 ++ com/agnibho/code/anagram/dictionary/J8.txt | 257 ++ com/agnibho/code/anagram/dictionary/J9.txt | 235 ++ com/agnibho/code/anagram/dictionary/K1.txt | 1 + com/agnibho/code/anagram/dictionary/K10.txt | 162 + com/agnibho/code/anagram/dictionary/K11.txt | 93 + com/agnibho/code/anagram/dictionary/K12.txt | 45 + com/agnibho/code/anagram/dictionary/K13.txt | 35 + com/agnibho/code/anagram/dictionary/K14.txt | 17 + com/agnibho/code/anagram/dictionary/K15.txt | 5 + com/agnibho/code/anagram/dictionary/K16.txt | 2 + com/agnibho/code/anagram/dictionary/K17.txt | 2 + com/agnibho/code/anagram/dictionary/K18.txt | 1 + com/agnibho/code/anagram/dictionary/K2.txt | 3 + com/agnibho/code/anagram/dictionary/K3.txt | 37 + com/agnibho/code/anagram/dictionary/K4.txt | 156 + com/agnibho/code/anagram/dictionary/K5.txt | 283 ++ com/agnibho/code/anagram/dictionary/K6.txt | 392 ++ com/agnibho/code/anagram/dictionary/K7.txt | 441 +++ com/agnibho/code/anagram/dictionary/K8.txt | 348 ++ com/agnibho/code/anagram/dictionary/K9.txt | 253 ++ com/agnibho/code/anagram/dictionary/L1.txt | 1 + com/agnibho/code/anagram/dictionary/L10.txt | 603 +++ com/agnibho/code/anagram/dictionary/L11.txt | 403 ++ com/agnibho/code/anagram/dictionary/L12.txt | 230 ++ com/agnibho/code/anagram/dictionary/L13.txt | 116 + com/agnibho/code/anagram/dictionary/L14.txt | 71 + com/agnibho/code/anagram/dictionary/L15.txt | 25 + com/agnibho/code/anagram/dictionary/L16.txt | 7 + com/agnibho/code/anagram/dictionary/L17.txt | 4 + com/agnibho/code/anagram/dictionary/L18.txt | 1 + com/agnibho/code/anagram/dictionary/L2.txt | 3 + com/agnibho/code/anagram/dictionary/L3.txt | 63 + com/agnibho/code/anagram/dictionary/L4.txt | 278 ++ com/agnibho/code/anagram/dictionary/L5.txt | 513 +++ com/agnibho/code/anagram/dictionary/L58.txt | 1 + com/agnibho/code/anagram/dictionary/L6.txt | 747 ++++ com/agnibho/code/anagram/dictionary/L7.txt | 959 +++++ com/agnibho/code/anagram/dictionary/L8.txt | 940 +++++ com/agnibho/code/anagram/dictionary/L9.txt | 804 ++++ com/agnibho/code/anagram/dictionary/M1.txt | 1 + com/agnibho/code/anagram/dictionary/M10.txt | 1475 +++++++ com/agnibho/code/anagram/dictionary/M11.txt | 1090 ++++++ com/agnibho/code/anagram/dictionary/M12.txt | 760 ++++ com/agnibho/code/anagram/dictionary/M13.txt | 500 +++ com/agnibho/code/anagram/dictionary/M14.txt | 291 ++ com/agnibho/code/anagram/dictionary/M15.txt | 146 + com/agnibho/code/anagram/dictionary/M16.txt | 63 + com/agnibho/code/anagram/dictionary/M17.txt | 28 + com/agnibho/code/anagram/dictionary/M18.txt | 9 + com/agnibho/code/anagram/dictionary/M19.txt | 1 + com/agnibho/code/anagram/dictionary/M2.txt | 8 + com/agnibho/code/anagram/dictionary/M20.txt | 3 + com/agnibho/code/anagram/dictionary/M21.txt | 1 + com/agnibho/code/anagram/dictionary/M3.txt | 62 + com/agnibho/code/anagram/dictionary/M4.txt | 274 ++ com/agnibho/code/anagram/dictionary/M5.txt | 611 +++ com/agnibho/code/anagram/dictionary/M6.txt | 1041 +++++ com/agnibho/code/anagram/dictionary/M7.txt | 1517 ++++++++ com/agnibho/code/anagram/dictionary/M8.txt | 1647 ++++++++ com/agnibho/code/anagram/dictionary/M9.txt | 1608 ++++++++ com/agnibho/code/anagram/dictionary/N1.txt | 1 + com/agnibho/code/anagram/dictionary/N10.txt | 448 +++ com/agnibho/code/anagram/dictionary/N11.txt | 318 ++ com/agnibho/code/anagram/dictionary/N12.txt | 233 ++ com/agnibho/code/anagram/dictionary/N13.txt | 140 + com/agnibho/code/anagram/dictionary/N14.txt | 83 + com/agnibho/code/anagram/dictionary/N15.txt | 36 + com/agnibho/code/anagram/dictionary/N16.txt | 11 + com/agnibho/code/anagram/dictionary/N17.txt | 11 + com/agnibho/code/anagram/dictionary/N18.txt | 7 + com/agnibho/code/anagram/dictionary/N19.txt | 1 + com/agnibho/code/anagram/dictionary/N2.txt | 5 + com/agnibho/code/anagram/dictionary/N20.txt | 1 + com/agnibho/code/anagram/dictionary/N3.txt | 47 + com/agnibho/code/anagram/dictionary/N4.txt | 162 + com/agnibho/code/anagram/dictionary/N5.txt | 307 ++ com/agnibho/code/anagram/dictionary/N6.txt | 439 +++ com/agnibho/code/anagram/dictionary/N7.txt | 539 +++ com/agnibho/code/anagram/dictionary/N8.txt | 545 +++ com/agnibho/code/anagram/dictionary/N9.txt | 531 +++ com/agnibho/code/anagram/dictionary/O1.txt | 1 + com/agnibho/code/anagram/dictionary/O10.txt | 772 ++++ com/agnibho/code/anagram/dictionary/O11.txt | 639 +++ com/agnibho/code/anagram/dictionary/O12.txt | 399 ++ com/agnibho/code/anagram/dictionary/O13.txt | 219 ++ com/agnibho/code/anagram/dictionary/O14.txt | 137 + com/agnibho/code/anagram/dictionary/O15.txt | 64 + com/agnibho/code/anagram/dictionary/O16.txt | 23 + com/agnibho/code/anagram/dictionary/O17.txt | 2 + com/agnibho/code/anagram/dictionary/O18.txt | 7 + com/agnibho/code/anagram/dictionary/O19.txt | 2 + com/agnibho/code/anagram/dictionary/O2.txt | 18 + com/agnibho/code/anagram/dictionary/O21.txt | 1 + com/agnibho/code/anagram/dictionary/O22.txt | 1 + com/agnibho/code/anagram/dictionary/O3.txt | 58 + com/agnibho/code/anagram/dictionary/O4.txt | 158 + com/agnibho/code/anagram/dictionary/O5.txt | 245 ++ com/agnibho/code/anagram/dictionary/O6.txt | 430 +++ com/agnibho/code/anagram/dictionary/O7.txt | 642 +++ com/agnibho/code/anagram/dictionary/O8.txt | 858 ++++ com/agnibho/code/anagram/dictionary/O9.txt | 881 +++++ com/agnibho/code/anagram/dictionary/P1.txt | 1 + com/agnibho/code/anagram/dictionary/P10.txt | 2414 ++++++++++++ com/agnibho/code/anagram/dictionary/P11.txt | 1951 ++++++++++ com/agnibho/code/anagram/dictionary/P12.txt | 1371 +++++++ com/agnibho/code/anagram/dictionary/P13.txt | 921 +++++ com/agnibho/code/anagram/dictionary/P14.txt | 586 +++ com/agnibho/code/anagram/dictionary/P15.txt | 304 ++ com/agnibho/code/anagram/dictionary/P16.txt | 129 + com/agnibho/code/anagram/dictionary/P17.txt | 50 + com/agnibho/code/anagram/dictionary/P18.txt | 20 + com/agnibho/code/anagram/dictionary/P19.txt | 8 + com/agnibho/code/anagram/dictionary/P2.txt | 3 + com/agnibho/code/anagram/dictionary/P20.txt | 5 + com/agnibho/code/anagram/dictionary/P21.txt | 4 + com/agnibho/code/anagram/dictionary/P22.txt | 1 + com/agnibho/code/anagram/dictionary/P23.txt | 1 + com/agnibho/code/anagram/dictionary/P3.txt | 67 + com/agnibho/code/anagram/dictionary/P4.txt | 318 ++ com/agnibho/code/anagram/dictionary/P45.txt | 1 + com/agnibho/code/anagram/dictionary/P5.txt | 746 ++++ com/agnibho/code/anagram/dictionary/P6.txt | 1266 ++++++ com/agnibho/code/anagram/dictionary/P7.txt | 1996 ++++++++++ com/agnibho/code/anagram/dictionary/P8.txt | 2285 +++++++++++ com/agnibho/code/anagram/dictionary/P9.txt | 2455 ++++++++++++ com/agnibho/code/anagram/dictionary/Q1.txt | 1 + com/agnibho/code/anagram/dictionary/Q10.txt | 129 + com/agnibho/code/anagram/dictionary/Q11.txt | 81 + com/agnibho/code/anagram/dictionary/Q12.txt | 63 + com/agnibho/code/anagram/dictionary/Q13.txt | 59 + com/agnibho/code/anagram/dictionary/Q14.txt | 41 + com/agnibho/code/anagram/dictionary/Q15.txt | 20 + com/agnibho/code/anagram/dictionary/Q16.txt | 4 + com/agnibho/code/anagram/dictionary/Q17.txt | 4 + com/agnibho/code/anagram/dictionary/Q18.txt | 4 + com/agnibho/code/anagram/dictionary/Q19.txt | 2 + com/agnibho/code/anagram/dictionary/Q2.txt | 1 + com/agnibho/code/anagram/dictionary/Q3.txt | 4 + com/agnibho/code/anagram/dictionary/Q4.txt | 15 + com/agnibho/code/anagram/dictionary/Q5.txt | 72 + com/agnibho/code/anagram/dictionary/Q6.txt | 109 + com/agnibho/code/anagram/dictionary/Q7.txt | 154 + com/agnibho/code/anagram/dictionary/Q8.txt | 185 + com/agnibho/code/anagram/dictionary/Q9.txt | 166 + com/agnibho/code/anagram/dictionary/R1.txt | 1 + com/agnibho/code/anagram/dictionary/R10.txt | 1284 ++++++ com/agnibho/code/anagram/dictionary/R11.txt | 950 +++++ com/agnibho/code/anagram/dictionary/R12.txt | 679 ++++ com/agnibho/code/anagram/dictionary/R13.txt | 416 ++ com/agnibho/code/anagram/dictionary/R14.txt | 281 ++ com/agnibho/code/anagram/dictionary/R15.txt | 136 + com/agnibho/code/anagram/dictionary/R16.txt | 42 + com/agnibho/code/anagram/dictionary/R17.txt | 19 + com/agnibho/code/anagram/dictionary/R18.txt | 2 + com/agnibho/code/anagram/dictionary/R19.txt | 3 + com/agnibho/code/anagram/dictionary/R2.txt | 3 + com/agnibho/code/anagram/dictionary/R3.txt | 65 + com/agnibho/code/anagram/dictionary/R4.txt | 253 ++ com/agnibho/code/anagram/dictionary/R5.txt | 518 +++ com/agnibho/code/anagram/dictionary/R6.txt | 985 +++++ com/agnibho/code/anagram/dictionary/R7.txt | 1400 +++++++ com/agnibho/code/anagram/dictionary/R8.txt | 1545 ++++++++ com/agnibho/code/anagram/dictionary/R9.txt | 1510 ++++++++ com/agnibho/code/anagram/dictionary/S1.txt | 1 + com/agnibho/code/anagram/dictionary/S10.txt | 2926 ++++++++++++++ com/agnibho/code/anagram/dictionary/S11.txt | 2003 ++++++++++ com/agnibho/code/anagram/dictionary/S12.txt | 1372 +++++++ com/agnibho/code/anagram/dictionary/S13.txt | 852 ++++ com/agnibho/code/anagram/dictionary/S14.txt | 477 +++ com/agnibho/code/anagram/dictionary/S15.txt | 241 ++ com/agnibho/code/anagram/dictionary/S16.txt | 94 + com/agnibho/code/anagram/dictionary/S17.txt | 30 + com/agnibho/code/anagram/dictionary/S18.txt | 7 + com/agnibho/code/anagram/dictionary/S19.txt | 3 + com/agnibho/code/anagram/dictionary/S2.txt | 4 + com/agnibho/code/anagram/dictionary/S20.txt | 1 + com/agnibho/code/anagram/dictionary/S3.txt | 78 + com/agnibho/code/anagram/dictionary/S34.txt | 1 + com/agnibho/code/anagram/dictionary/S4.txt | 452 +++ com/agnibho/code/anagram/dictionary/S5.txt | 1390 +++++++ com/agnibho/code/anagram/dictionary/S6.txt | 2251 +++++++++++ com/agnibho/code/anagram/dictionary/S7.txt | 3070 +++++++++++++++ com/agnibho/code/anagram/dictionary/S8.txt | 3862 +++++++++++++++++++ com/agnibho/code/anagram/dictionary/S9.txt | 3565 +++++++++++++++++ com/agnibho/code/anagram/dictionary/T1.txt | 1 + com/agnibho/code/anagram/dictionary/T10.txt | 1254 ++++++ com/agnibho/code/anagram/dictionary/T11.txt | 946 +++++ com/agnibho/code/anagram/dictionary/T12.txt | 639 +++ com/agnibho/code/anagram/dictionary/T13.txt | 400 ++ com/agnibho/code/anagram/dictionary/T14.txt | 221 ++ com/agnibho/code/anagram/dictionary/T15.txt | 126 + com/agnibho/code/anagram/dictionary/T16.txt | 53 + com/agnibho/code/anagram/dictionary/T17.txt | 24 + com/agnibho/code/anagram/dictionary/T18.txt | 19 + com/agnibho/code/anagram/dictionary/T19.txt | 4 + com/agnibho/code/anagram/dictionary/T2.txt | 4 + com/agnibho/code/anagram/dictionary/T20.txt | 2 + com/agnibho/code/anagram/dictionary/T21.txt | 1 + com/agnibho/code/anagram/dictionary/T22.txt | 1 + com/agnibho/code/anagram/dictionary/T23.txt | 1 + com/agnibho/code/anagram/dictionary/T3.txt | 71 + com/agnibho/code/anagram/dictionary/T4.txt | 322 ++ com/agnibho/code/anagram/dictionary/T5.txt | 724 ++++ com/agnibho/code/anagram/dictionary/T6.txt | 1169 ++++++ com/agnibho/code/anagram/dictionary/T7.txt | 1567 ++++++++ com/agnibho/code/anagram/dictionary/T8.txt | 1663 ++++++++ com/agnibho/code/anagram/dictionary/T9.txt | 1493 +++++++ com/agnibho/code/anagram/dictionary/U1.txt | 1 + com/agnibho/code/anagram/dictionary/U10.txt | 1149 ++++++ com/agnibho/code/anagram/dictionary/U11.txt | 874 +++++ com/agnibho/code/anagram/dictionary/U12.txt | 672 ++++ com/agnibho/code/anagram/dictionary/U13.txt | 436 +++ com/agnibho/code/anagram/dictionary/U14.txt | 247 ++ com/agnibho/code/anagram/dictionary/U15.txt | 137 + com/agnibho/code/anagram/dictionary/U16.txt | 94 + com/agnibho/code/anagram/dictionary/U17.txt | 37 + com/agnibho/code/anagram/dictionary/U18.txt | 16 + com/agnibho/code/anagram/dictionary/U19.txt | 13 + com/agnibho/code/anagram/dictionary/U2.txt | 7 + com/agnibho/code/anagram/dictionary/U21.txt | 1 + com/agnibho/code/anagram/dictionary/U3.txt | 30 + com/agnibho/code/anagram/dictionary/U4.txt | 58 + com/agnibho/code/anagram/dictionary/U5.txt | 154 + com/agnibho/code/anagram/dictionary/U6.txt | 475 +++ com/agnibho/code/anagram/dictionary/U7.txt | 687 ++++ com/agnibho/code/anagram/dictionary/U8.txt | 967 +++++ com/agnibho/code/anagram/dictionary/U9.txt | 1088 ++++++ com/agnibho/code/anagram/dictionary/V1.txt | 1 + com/agnibho/code/anagram/dictionary/V10.txt | 448 +++ com/agnibho/code/anagram/dictionary/V11.txt | 319 ++ com/agnibho/code/anagram/dictionary/V12.txt | 201 + com/agnibho/code/anagram/dictionary/V13.txt | 131 + com/agnibho/code/anagram/dictionary/V14.txt | 82 + com/agnibho/code/anagram/dictionary/V15.txt | 26 + com/agnibho/code/anagram/dictionary/V16.txt | 8 + com/agnibho/code/anagram/dictionary/V17.txt | 5 + com/agnibho/code/anagram/dictionary/V3.txt | 29 + com/agnibho/code/anagram/dictionary/V4.txt | 96 + com/agnibho/code/anagram/dictionary/V5.txt | 214 + com/agnibho/code/anagram/dictionary/V6.txt | 379 ++ com/agnibho/code/anagram/dictionary/V7.txt | 443 +++ com/agnibho/code/anagram/dictionary/V8.txt | 549 +++ com/agnibho/code/anagram/dictionary/V9.txt | 554 +++ com/agnibho/code/anagram/dictionary/W1.txt | 1 + com/agnibho/code/anagram/dictionary/W10.txt | 370 ++ com/agnibho/code/anagram/dictionary/W11.txt | 223 ++ com/agnibho/code/anagram/dictionary/W12.txt | 97 + com/agnibho/code/anagram/dictionary/W13.txt | 34 + com/agnibho/code/anagram/dictionary/W14.txt | 20 + com/agnibho/code/anagram/dictionary/W15.txt | 5 + com/agnibho/code/anagram/dictionary/W16.txt | 3 + com/agnibho/code/anagram/dictionary/W17.txt | 1 + com/agnibho/code/anagram/dictionary/W2.txt | 3 + com/agnibho/code/anagram/dictionary/W3.txt | 39 + com/agnibho/code/anagram/dictionary/W4.txt | 191 + com/agnibho/code/anagram/dictionary/W5.txt | 350 ++ com/agnibho/code/anagram/dictionary/W6.txt | 520 +++ com/agnibho/code/anagram/dictionary/W7.txt | 754 ++++ com/agnibho/code/anagram/dictionary/W8.txt | 744 ++++ com/agnibho/code/anagram/dictionary/W9.txt | 564 +++ com/agnibho/code/anagram/dictionary/X1.txt | 1 + com/agnibho/code/anagram/dictionary/X10.txt | 35 + com/agnibho/code/anagram/dictionary/X11.txt | 24 + com/agnibho/code/anagram/dictionary/X12.txt | 14 + com/agnibho/code/anagram/dictionary/X13.txt | 11 + com/agnibho/code/anagram/dictionary/X14.txt | 5 + com/agnibho/code/anagram/dictionary/X15.txt | 2 + com/agnibho/code/anagram/dictionary/X16.txt | 1 + com/agnibho/code/anagram/dictionary/X2.txt | 2 + com/agnibho/code/anagram/dictionary/X4.txt | 5 + com/agnibho/code/anagram/dictionary/X5.txt | 16 + com/agnibho/code/anagram/dictionary/X6.txt | 23 + com/agnibho/code/anagram/dictionary/X7.txt | 28 + com/agnibho/code/anagram/dictionary/X8.txt | 28 + com/agnibho/code/anagram/dictionary/X9.txt | 33 + com/agnibho/code/anagram/dictionary/Y1.txt | 1 + com/agnibho/code/anagram/dictionary/Y10.txt | 31 + com/agnibho/code/anagram/dictionary/Y11.txt | 14 + com/agnibho/code/anagram/dictionary/Y12.txt | 7 + com/agnibho/code/anagram/dictionary/Y13.txt | 7 + com/agnibho/code/anagram/dictionary/Y14.txt | 2 + com/agnibho/code/anagram/dictionary/Y2.txt | 3 + com/agnibho/code/anagram/dictionary/Y3.txt | 26 + com/agnibho/code/anagram/dictionary/Y4.txt | 96 + com/agnibho/code/anagram/dictionary/Y5.txt | 127 + com/agnibho/code/anagram/dictionary/Y6.txt | 143 + com/agnibho/code/anagram/dictionary/Y7.txt | 129 + com/agnibho/code/anagram/dictionary/Y8.txt | 88 + com/agnibho/code/anagram/dictionary/Y9.txt | 66 + com/agnibho/code/anagram/dictionary/Z1.txt | 1 + com/agnibho/code/anagram/dictionary/Z10.txt | 81 + com/agnibho/code/anagram/dictionary/Z11.txt | 51 + com/agnibho/code/anagram/dictionary/Z12.txt | 36 + com/agnibho/code/anagram/dictionary/Z13.txt | 18 + com/agnibho/code/anagram/dictionary/Z14.txt | 11 + com/agnibho/code/anagram/dictionary/Z15.txt | 6 + com/agnibho/code/anagram/dictionary/Z16.txt | 2 + com/agnibho/code/anagram/dictionary/Z2.txt | 1 + com/agnibho/code/anagram/dictionary/Z3.txt | 21 + com/agnibho/code/anagram/dictionary/Z4.txt | 54 + com/agnibho/code/anagram/dictionary/Z5.txt | 91 + com/agnibho/code/anagram/dictionary/Z6.txt | 122 + com/agnibho/code/anagram/dictionary/Z7.txt | 175 + com/agnibho/code/anagram/dictionary/Z8.txt | 138 + com/agnibho/code/anagram/dictionary/Z9.txt | 129 + 517 files changed, 198724 insertions(+) create mode 100644 LICENSE.TXT create mode 100644 README.TXT create mode 100644 com/agnibho/code/anagram/CheckAnagram.java create mode 100644 com/agnibho/code/anagram/IsAnagram.java create mode 100644 com/agnibho/code/anagram/IsPalindrome.java create mode 100644 com/agnibho/code/anagram/IsValid.java create mode 100644 com/agnibho/code/anagram/LICENSE.TXT create mode 100644 com/agnibho/code/anagram/UI.java create mode 100644 com/agnibho/code/anagram/dictionary/A1.txt create mode 100644 com/agnibho/code/anagram/dictionary/A10.txt create mode 100644 com/agnibho/code/anagram/dictionary/A11.txt create mode 100644 com/agnibho/code/anagram/dictionary/A12.txt create mode 100644 com/agnibho/code/anagram/dictionary/A13.txt create mode 100644 com/agnibho/code/anagram/dictionary/A14.txt create mode 100644 com/agnibho/code/anagram/dictionary/A15.txt create mode 100644 com/agnibho/code/anagram/dictionary/A16.txt create mode 100644 com/agnibho/code/anagram/dictionary/A17.txt create mode 100644 com/agnibho/code/anagram/dictionary/A18.txt create mode 100644 com/agnibho/code/anagram/dictionary/A19.txt create mode 100644 com/agnibho/code/anagram/dictionary/A2.txt create mode 100644 com/agnibho/code/anagram/dictionary/A20.txt create mode 100644 com/agnibho/code/anagram/dictionary/A24.txt create mode 100644 com/agnibho/code/anagram/dictionary/A25.txt create mode 100644 com/agnibho/code/anagram/dictionary/A28.txt create mode 100644 com/agnibho/code/anagram/dictionary/A3.txt create mode 100644 com/agnibho/code/anagram/dictionary/A4.txt create mode 100644 com/agnibho/code/anagram/dictionary/A5.txt create mode 100644 com/agnibho/code/anagram/dictionary/A6.txt create mode 100644 com/agnibho/code/anagram/dictionary/A7.txt create mode 100644 com/agnibho/code/anagram/dictionary/A8.txt create mode 100644 com/agnibho/code/anagram/dictionary/A9.txt create mode 100644 com/agnibho/code/anagram/dictionary/B1.txt create mode 100644 com/agnibho/code/anagram/dictionary/B10.txt create mode 100644 com/agnibho/code/anagram/dictionary/B11.txt create mode 100644 com/agnibho/code/anagram/dictionary/B12.txt create mode 100644 com/agnibho/code/anagram/dictionary/B13.txt create mode 100644 com/agnibho/code/anagram/dictionary/B14.txt create mode 100644 com/agnibho/code/anagram/dictionary/B15.txt create mode 100644 com/agnibho/code/anagram/dictionary/B16.txt create mode 100644 com/agnibho/code/anagram/dictionary/B17.txt create mode 100644 com/agnibho/code/anagram/dictionary/B18.txt create mode 100644 com/agnibho/code/anagram/dictionary/B19.txt create mode 100644 com/agnibho/code/anagram/dictionary/B2.txt create mode 100644 com/agnibho/code/anagram/dictionary/B20.txt create mode 100644 com/agnibho/code/anagram/dictionary/B3.txt create mode 100644 com/agnibho/code/anagram/dictionary/B4.txt create mode 100644 com/agnibho/code/anagram/dictionary/B5.txt create mode 100644 com/agnibho/code/anagram/dictionary/B6.txt create mode 100644 com/agnibho/code/anagram/dictionary/B7.txt create mode 100644 com/agnibho/code/anagram/dictionary/B8.txt create mode 100644 com/agnibho/code/anagram/dictionary/B9.txt create mode 100644 com/agnibho/code/anagram/dictionary/C1.txt create mode 100644 com/agnibho/code/anagram/dictionary/C10.txt create mode 100644 com/agnibho/code/anagram/dictionary/C11.txt create mode 100644 com/agnibho/code/anagram/dictionary/C12.txt create mode 100644 com/agnibho/code/anagram/dictionary/C13.txt create mode 100644 com/agnibho/code/anagram/dictionary/C14.txt create mode 100644 com/agnibho/code/anagram/dictionary/C15.txt create mode 100644 com/agnibho/code/anagram/dictionary/C16.txt create mode 100644 com/agnibho/code/anagram/dictionary/C17.txt create mode 100644 com/agnibho/code/anagram/dictionary/C18.txt create mode 100644 com/agnibho/code/anagram/dictionary/C19.txt create mode 100644 com/agnibho/code/anagram/dictionary/C2.txt create mode 100644 com/agnibho/code/anagram/dictionary/C20.txt create mode 100644 com/agnibho/code/anagram/dictionary/C21.txt create mode 100644 com/agnibho/code/anagram/dictionary/C3.txt create mode 100644 com/agnibho/code/anagram/dictionary/C4.txt create mode 100644 com/agnibho/code/anagram/dictionary/C5.txt create mode 100644 com/agnibho/code/anagram/dictionary/C6.txt create mode 100644 com/agnibho/code/anagram/dictionary/C7.txt create mode 100644 com/agnibho/code/anagram/dictionary/C8.txt create mode 100644 com/agnibho/code/anagram/dictionary/C9.txt create mode 100644 com/agnibho/code/anagram/dictionary/D1.txt create mode 100644 com/agnibho/code/anagram/dictionary/D10.txt create mode 100644 com/agnibho/code/anagram/dictionary/D11.txt create mode 100644 com/agnibho/code/anagram/dictionary/D12.txt create mode 100644 com/agnibho/code/anagram/dictionary/D13.txt create mode 100644 com/agnibho/code/anagram/dictionary/D14.txt create mode 100644 com/agnibho/code/anagram/dictionary/D15.txt create mode 100644 com/agnibho/code/anagram/dictionary/D16.txt create mode 100644 com/agnibho/code/anagram/dictionary/D17.txt create mode 100644 com/agnibho/code/anagram/dictionary/D18.txt create mode 100644 com/agnibho/code/anagram/dictionary/D19.txt create mode 100644 com/agnibho/code/anagram/dictionary/D2.txt create mode 100644 com/agnibho/code/anagram/dictionary/D20.txt create mode 100644 com/agnibho/code/anagram/dictionary/D21.txt create mode 100644 com/agnibho/code/anagram/dictionary/D3.txt create mode 100644 com/agnibho/code/anagram/dictionary/D31.txt create mode 100644 com/agnibho/code/anagram/dictionary/D4.txt create mode 100644 com/agnibho/code/anagram/dictionary/D5.txt create mode 100644 com/agnibho/code/anagram/dictionary/D6.txt create mode 100644 com/agnibho/code/anagram/dictionary/D7.txt create mode 100644 com/agnibho/code/anagram/dictionary/D8.txt create mode 100644 com/agnibho/code/anagram/dictionary/D9.txt create mode 100644 com/agnibho/code/anagram/dictionary/E1.txt create mode 100644 com/agnibho/code/anagram/dictionary/E10.txt create mode 100644 com/agnibho/code/anagram/dictionary/E11.txt create mode 100644 com/agnibho/code/anagram/dictionary/E12.txt create mode 100644 com/agnibho/code/anagram/dictionary/E13.txt create mode 100644 com/agnibho/code/anagram/dictionary/E14.txt create mode 100644 com/agnibho/code/anagram/dictionary/E15.txt create mode 100644 com/agnibho/code/anagram/dictionary/E16.txt create mode 100644 com/agnibho/code/anagram/dictionary/E17.txt create mode 100644 com/agnibho/code/anagram/dictionary/E18.txt create mode 100644 com/agnibho/code/anagram/dictionary/E19.txt create mode 100644 com/agnibho/code/anagram/dictionary/E2.txt create mode 100644 com/agnibho/code/anagram/dictionary/E20.txt create mode 100644 com/agnibho/code/anagram/dictionary/E21.txt create mode 100644 com/agnibho/code/anagram/dictionary/E22.txt create mode 100644 com/agnibho/code/anagram/dictionary/E23.txt create mode 100644 com/agnibho/code/anagram/dictionary/E3.txt create mode 100644 com/agnibho/code/anagram/dictionary/E4.txt create mode 100644 com/agnibho/code/anagram/dictionary/E5.txt create mode 100644 com/agnibho/code/anagram/dictionary/E6.txt create mode 100644 com/agnibho/code/anagram/dictionary/E7.txt create mode 100644 com/agnibho/code/anagram/dictionary/E8.txt create mode 100644 com/agnibho/code/anagram/dictionary/E9.txt create mode 100644 com/agnibho/code/anagram/dictionary/F1.txt create mode 100644 com/agnibho/code/anagram/dictionary/F10.txt create mode 100644 com/agnibho/code/anagram/dictionary/F11.txt create mode 100644 com/agnibho/code/anagram/dictionary/F12.txt create mode 100644 com/agnibho/code/anagram/dictionary/F13.txt create mode 100644 com/agnibho/code/anagram/dictionary/F14.txt create mode 100644 com/agnibho/code/anagram/dictionary/F15.txt create mode 100644 com/agnibho/code/anagram/dictionary/F16.txt create mode 100644 com/agnibho/code/anagram/dictionary/F17.txt create mode 100644 com/agnibho/code/anagram/dictionary/F2.txt create mode 100644 com/agnibho/code/anagram/dictionary/F29.txt create mode 100644 com/agnibho/code/anagram/dictionary/F3.txt create mode 100644 com/agnibho/code/anagram/dictionary/F4.txt create mode 100644 com/agnibho/code/anagram/dictionary/F5.txt create mode 100644 com/agnibho/code/anagram/dictionary/F6.txt create mode 100644 com/agnibho/code/anagram/dictionary/F7.txt create mode 100644 com/agnibho/code/anagram/dictionary/F8.txt create mode 100644 com/agnibho/code/anagram/dictionary/F9.txt create mode 100644 com/agnibho/code/anagram/dictionary/G1.txt create mode 100644 com/agnibho/code/anagram/dictionary/G10.txt create mode 100644 com/agnibho/code/anagram/dictionary/G11.txt create mode 100644 com/agnibho/code/anagram/dictionary/G12.txt create mode 100644 com/agnibho/code/anagram/dictionary/G13.txt create mode 100644 com/agnibho/code/anagram/dictionary/G14.txt create mode 100644 com/agnibho/code/anagram/dictionary/G15.txt create mode 100644 com/agnibho/code/anagram/dictionary/G16.txt create mode 100644 com/agnibho/code/anagram/dictionary/G17.txt create mode 100644 com/agnibho/code/anagram/dictionary/G18.txt create mode 100644 com/agnibho/code/anagram/dictionary/G19.txt create mode 100644 com/agnibho/code/anagram/dictionary/G2.txt create mode 100644 com/agnibho/code/anagram/dictionary/G3.txt create mode 100644 com/agnibho/code/anagram/dictionary/G4.txt create mode 100644 com/agnibho/code/anagram/dictionary/G5.txt create mode 100644 com/agnibho/code/anagram/dictionary/G6.txt create mode 100644 com/agnibho/code/anagram/dictionary/G7.txt create mode 100644 com/agnibho/code/anagram/dictionary/G8.txt create mode 100644 com/agnibho/code/anagram/dictionary/G9.txt create mode 100644 com/agnibho/code/anagram/dictionary/H1.txt create mode 100644 com/agnibho/code/anagram/dictionary/H10.txt create mode 100644 com/agnibho/code/anagram/dictionary/H11.txt create mode 100644 com/agnibho/code/anagram/dictionary/H12.txt create mode 100644 com/agnibho/code/anagram/dictionary/H13.txt create mode 100644 com/agnibho/code/anagram/dictionary/H14.txt create mode 100644 com/agnibho/code/anagram/dictionary/H15.txt create mode 100644 com/agnibho/code/anagram/dictionary/H16.txt create mode 100644 com/agnibho/code/anagram/dictionary/H17.txt create mode 100644 com/agnibho/code/anagram/dictionary/H18.txt create mode 100644 com/agnibho/code/anagram/dictionary/H19.txt create mode 100644 com/agnibho/code/anagram/dictionary/H2.txt create mode 100644 com/agnibho/code/anagram/dictionary/H21.txt create mode 100644 com/agnibho/code/anagram/dictionary/H22.txt create mode 100644 com/agnibho/code/anagram/dictionary/H23.txt create mode 100644 com/agnibho/code/anagram/dictionary/H24.txt create mode 100644 com/agnibho/code/anagram/dictionary/H3.txt create mode 100644 com/agnibho/code/anagram/dictionary/H4.txt create mode 100644 com/agnibho/code/anagram/dictionary/H5.txt create mode 100644 com/agnibho/code/anagram/dictionary/H6.txt create mode 100644 com/agnibho/code/anagram/dictionary/H7.txt create mode 100644 com/agnibho/code/anagram/dictionary/H8.txt create mode 100644 com/agnibho/code/anagram/dictionary/H9.txt create mode 100644 com/agnibho/code/anagram/dictionary/I1.txt create mode 100644 com/agnibho/code/anagram/dictionary/I10.txt create mode 100644 com/agnibho/code/anagram/dictionary/I11.txt create mode 100644 com/agnibho/code/anagram/dictionary/I12.txt create mode 100644 com/agnibho/code/anagram/dictionary/I13.txt create mode 100644 com/agnibho/code/anagram/dictionary/I14.txt create mode 100644 com/agnibho/code/anagram/dictionary/I15.txt create mode 100644 com/agnibho/code/anagram/dictionary/I16.txt create mode 100644 com/agnibho/code/anagram/dictionary/I17.txt create mode 100644 com/agnibho/code/anagram/dictionary/I18.txt create mode 100644 com/agnibho/code/anagram/dictionary/I19.txt create mode 100644 com/agnibho/code/anagram/dictionary/I2.txt create mode 100644 com/agnibho/code/anagram/dictionary/I20.txt create mode 100644 com/agnibho/code/anagram/dictionary/I21.txt create mode 100644 com/agnibho/code/anagram/dictionary/I3.txt create mode 100644 com/agnibho/code/anagram/dictionary/I4.txt create mode 100644 com/agnibho/code/anagram/dictionary/I5.txt create mode 100644 com/agnibho/code/anagram/dictionary/I6.txt create mode 100644 com/agnibho/code/anagram/dictionary/I7.txt create mode 100644 com/agnibho/code/anagram/dictionary/I8.txt create mode 100644 com/agnibho/code/anagram/dictionary/I9.txt create mode 100644 com/agnibho/code/anagram/dictionary/J1.txt create mode 100644 com/agnibho/code/anagram/dictionary/J10.txt create mode 100644 com/agnibho/code/anagram/dictionary/J11.txt create mode 100644 com/agnibho/code/anagram/dictionary/J12.txt create mode 100644 com/agnibho/code/anagram/dictionary/J13.txt create mode 100644 com/agnibho/code/anagram/dictionary/J14.txt create mode 100644 com/agnibho/code/anagram/dictionary/J15.txt create mode 100644 com/agnibho/code/anagram/dictionary/J16.txt create mode 100644 com/agnibho/code/anagram/dictionary/J2.txt create mode 100644 com/agnibho/code/anagram/dictionary/J3.txt create mode 100644 com/agnibho/code/anagram/dictionary/J4.txt create mode 100644 com/agnibho/code/anagram/dictionary/J5.txt create mode 100644 com/agnibho/code/anagram/dictionary/J6.txt create mode 100644 com/agnibho/code/anagram/dictionary/J7.txt create mode 100644 com/agnibho/code/anagram/dictionary/J8.txt create mode 100644 com/agnibho/code/anagram/dictionary/J9.txt create mode 100644 com/agnibho/code/anagram/dictionary/K1.txt create mode 100644 com/agnibho/code/anagram/dictionary/K10.txt create mode 100644 com/agnibho/code/anagram/dictionary/K11.txt create mode 100644 com/agnibho/code/anagram/dictionary/K12.txt create mode 100644 com/agnibho/code/anagram/dictionary/K13.txt create mode 100644 com/agnibho/code/anagram/dictionary/K14.txt create mode 100644 com/agnibho/code/anagram/dictionary/K15.txt create mode 100644 com/agnibho/code/anagram/dictionary/K16.txt create mode 100644 com/agnibho/code/anagram/dictionary/K17.txt create mode 100644 com/agnibho/code/anagram/dictionary/K18.txt create mode 100644 com/agnibho/code/anagram/dictionary/K2.txt create mode 100644 com/agnibho/code/anagram/dictionary/K3.txt create mode 100644 com/agnibho/code/anagram/dictionary/K4.txt create mode 100644 com/agnibho/code/anagram/dictionary/K5.txt create mode 100644 com/agnibho/code/anagram/dictionary/K6.txt create mode 100644 com/agnibho/code/anagram/dictionary/K7.txt create mode 100644 com/agnibho/code/anagram/dictionary/K8.txt create mode 100644 com/agnibho/code/anagram/dictionary/K9.txt create mode 100644 com/agnibho/code/anagram/dictionary/L1.txt create mode 100644 com/agnibho/code/anagram/dictionary/L10.txt create mode 100644 com/agnibho/code/anagram/dictionary/L11.txt create mode 100644 com/agnibho/code/anagram/dictionary/L12.txt create mode 100644 com/agnibho/code/anagram/dictionary/L13.txt create mode 100644 com/agnibho/code/anagram/dictionary/L14.txt create mode 100644 com/agnibho/code/anagram/dictionary/L15.txt create mode 100644 com/agnibho/code/anagram/dictionary/L16.txt create mode 100644 com/agnibho/code/anagram/dictionary/L17.txt create mode 100644 com/agnibho/code/anagram/dictionary/L18.txt create mode 100644 com/agnibho/code/anagram/dictionary/L2.txt create mode 100644 com/agnibho/code/anagram/dictionary/L3.txt create mode 100644 com/agnibho/code/anagram/dictionary/L4.txt create mode 100644 com/agnibho/code/anagram/dictionary/L5.txt create mode 100644 com/agnibho/code/anagram/dictionary/L58.txt create mode 100644 com/agnibho/code/anagram/dictionary/L6.txt create mode 100644 com/agnibho/code/anagram/dictionary/L7.txt create mode 100644 com/agnibho/code/anagram/dictionary/L8.txt create mode 100644 com/agnibho/code/anagram/dictionary/L9.txt create mode 100644 com/agnibho/code/anagram/dictionary/M1.txt create mode 100644 com/agnibho/code/anagram/dictionary/M10.txt create mode 100644 com/agnibho/code/anagram/dictionary/M11.txt create mode 100644 com/agnibho/code/anagram/dictionary/M12.txt create mode 100644 com/agnibho/code/anagram/dictionary/M13.txt create mode 100644 com/agnibho/code/anagram/dictionary/M14.txt create mode 100644 com/agnibho/code/anagram/dictionary/M15.txt create mode 100644 com/agnibho/code/anagram/dictionary/M16.txt create mode 100644 com/agnibho/code/anagram/dictionary/M17.txt create mode 100644 com/agnibho/code/anagram/dictionary/M18.txt create mode 100644 com/agnibho/code/anagram/dictionary/M19.txt create mode 100644 com/agnibho/code/anagram/dictionary/M2.txt create mode 100644 com/agnibho/code/anagram/dictionary/M20.txt create mode 100644 com/agnibho/code/anagram/dictionary/M21.txt create mode 100644 com/agnibho/code/anagram/dictionary/M3.txt create mode 100644 com/agnibho/code/anagram/dictionary/M4.txt create mode 100644 com/agnibho/code/anagram/dictionary/M5.txt create mode 100644 com/agnibho/code/anagram/dictionary/M6.txt create mode 100644 com/agnibho/code/anagram/dictionary/M7.txt create mode 100644 com/agnibho/code/anagram/dictionary/M8.txt create mode 100644 com/agnibho/code/anagram/dictionary/M9.txt create mode 100644 com/agnibho/code/anagram/dictionary/N1.txt create mode 100644 com/agnibho/code/anagram/dictionary/N10.txt create mode 100644 com/agnibho/code/anagram/dictionary/N11.txt create mode 100644 com/agnibho/code/anagram/dictionary/N12.txt create mode 100644 com/agnibho/code/anagram/dictionary/N13.txt create mode 100644 com/agnibho/code/anagram/dictionary/N14.txt create mode 100644 com/agnibho/code/anagram/dictionary/N15.txt create mode 100644 com/agnibho/code/anagram/dictionary/N16.txt create mode 100644 com/agnibho/code/anagram/dictionary/N17.txt create mode 100644 com/agnibho/code/anagram/dictionary/N18.txt create mode 100644 com/agnibho/code/anagram/dictionary/N19.txt create mode 100644 com/agnibho/code/anagram/dictionary/N2.txt create mode 100644 com/agnibho/code/anagram/dictionary/N20.txt create mode 100644 com/agnibho/code/anagram/dictionary/N3.txt create mode 100644 com/agnibho/code/anagram/dictionary/N4.txt create mode 100644 com/agnibho/code/anagram/dictionary/N5.txt create mode 100644 com/agnibho/code/anagram/dictionary/N6.txt create mode 100644 com/agnibho/code/anagram/dictionary/N7.txt create mode 100644 com/agnibho/code/anagram/dictionary/N8.txt create mode 100644 com/agnibho/code/anagram/dictionary/N9.txt create mode 100644 com/agnibho/code/anagram/dictionary/O1.txt create mode 100644 com/agnibho/code/anagram/dictionary/O10.txt create mode 100644 com/agnibho/code/anagram/dictionary/O11.txt create mode 100644 com/agnibho/code/anagram/dictionary/O12.txt create mode 100644 com/agnibho/code/anagram/dictionary/O13.txt create mode 100644 com/agnibho/code/anagram/dictionary/O14.txt create mode 100644 com/agnibho/code/anagram/dictionary/O15.txt create mode 100644 com/agnibho/code/anagram/dictionary/O16.txt create mode 100644 com/agnibho/code/anagram/dictionary/O17.txt create mode 100644 com/agnibho/code/anagram/dictionary/O18.txt create mode 100644 com/agnibho/code/anagram/dictionary/O19.txt create mode 100644 com/agnibho/code/anagram/dictionary/O2.txt create mode 100644 com/agnibho/code/anagram/dictionary/O21.txt create mode 100644 com/agnibho/code/anagram/dictionary/O22.txt create mode 100644 com/agnibho/code/anagram/dictionary/O3.txt create mode 100644 com/agnibho/code/anagram/dictionary/O4.txt create mode 100644 com/agnibho/code/anagram/dictionary/O5.txt create mode 100644 com/agnibho/code/anagram/dictionary/O6.txt create mode 100644 com/agnibho/code/anagram/dictionary/O7.txt create mode 100644 com/agnibho/code/anagram/dictionary/O8.txt create mode 100644 com/agnibho/code/anagram/dictionary/O9.txt create mode 100644 com/agnibho/code/anagram/dictionary/P1.txt create mode 100644 com/agnibho/code/anagram/dictionary/P10.txt create mode 100644 com/agnibho/code/anagram/dictionary/P11.txt create mode 100644 com/agnibho/code/anagram/dictionary/P12.txt create mode 100644 com/agnibho/code/anagram/dictionary/P13.txt create mode 100644 com/agnibho/code/anagram/dictionary/P14.txt create mode 100644 com/agnibho/code/anagram/dictionary/P15.txt create mode 100644 com/agnibho/code/anagram/dictionary/P16.txt create mode 100644 com/agnibho/code/anagram/dictionary/P17.txt create mode 100644 com/agnibho/code/anagram/dictionary/P18.txt create mode 100644 com/agnibho/code/anagram/dictionary/P19.txt create mode 100644 com/agnibho/code/anagram/dictionary/P2.txt create mode 100644 com/agnibho/code/anagram/dictionary/P20.txt create mode 100644 com/agnibho/code/anagram/dictionary/P21.txt create mode 100644 com/agnibho/code/anagram/dictionary/P22.txt create mode 100644 com/agnibho/code/anagram/dictionary/P23.txt create mode 100644 com/agnibho/code/anagram/dictionary/P3.txt create mode 100644 com/agnibho/code/anagram/dictionary/P4.txt create mode 100644 com/agnibho/code/anagram/dictionary/P45.txt create mode 100644 com/agnibho/code/anagram/dictionary/P5.txt create mode 100644 com/agnibho/code/anagram/dictionary/P6.txt create mode 100644 com/agnibho/code/anagram/dictionary/P7.txt create mode 100644 com/agnibho/code/anagram/dictionary/P8.txt create mode 100644 com/agnibho/code/anagram/dictionary/P9.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q1.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q10.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q11.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q12.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q13.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q14.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q15.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q16.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q17.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q18.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q19.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q2.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q3.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q4.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q5.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q6.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q7.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q8.txt create mode 100644 com/agnibho/code/anagram/dictionary/Q9.txt create mode 100644 com/agnibho/code/anagram/dictionary/R1.txt create mode 100644 com/agnibho/code/anagram/dictionary/R10.txt create mode 100644 com/agnibho/code/anagram/dictionary/R11.txt create mode 100644 com/agnibho/code/anagram/dictionary/R12.txt create mode 100644 com/agnibho/code/anagram/dictionary/R13.txt create mode 100644 com/agnibho/code/anagram/dictionary/R14.txt create mode 100644 com/agnibho/code/anagram/dictionary/R15.txt create mode 100644 com/agnibho/code/anagram/dictionary/R16.txt create mode 100644 com/agnibho/code/anagram/dictionary/R17.txt create mode 100644 com/agnibho/code/anagram/dictionary/R18.txt create mode 100644 com/agnibho/code/anagram/dictionary/R19.txt create mode 100644 com/agnibho/code/anagram/dictionary/R2.txt create mode 100644 com/agnibho/code/anagram/dictionary/R3.txt create mode 100644 com/agnibho/code/anagram/dictionary/R4.txt create mode 100644 com/agnibho/code/anagram/dictionary/R5.txt create mode 100644 com/agnibho/code/anagram/dictionary/R6.txt create mode 100644 com/agnibho/code/anagram/dictionary/R7.txt create mode 100644 com/agnibho/code/anagram/dictionary/R8.txt create mode 100644 com/agnibho/code/anagram/dictionary/R9.txt create mode 100644 com/agnibho/code/anagram/dictionary/S1.txt create mode 100644 com/agnibho/code/anagram/dictionary/S10.txt create mode 100644 com/agnibho/code/anagram/dictionary/S11.txt create mode 100644 com/agnibho/code/anagram/dictionary/S12.txt create mode 100644 com/agnibho/code/anagram/dictionary/S13.txt create mode 100644 com/agnibho/code/anagram/dictionary/S14.txt create mode 100644 com/agnibho/code/anagram/dictionary/S15.txt create mode 100644 com/agnibho/code/anagram/dictionary/S16.txt create mode 100644 com/agnibho/code/anagram/dictionary/S17.txt create mode 100644 com/agnibho/code/anagram/dictionary/S18.txt create mode 100644 com/agnibho/code/anagram/dictionary/S19.txt create mode 100644 com/agnibho/code/anagram/dictionary/S2.txt create mode 100644 com/agnibho/code/anagram/dictionary/S20.txt create mode 100644 com/agnibho/code/anagram/dictionary/S3.txt create mode 100644 com/agnibho/code/anagram/dictionary/S34.txt create mode 100644 com/agnibho/code/anagram/dictionary/S4.txt create mode 100644 com/agnibho/code/anagram/dictionary/S5.txt create mode 100644 com/agnibho/code/anagram/dictionary/S6.txt create mode 100644 com/agnibho/code/anagram/dictionary/S7.txt create mode 100644 com/agnibho/code/anagram/dictionary/S8.txt create mode 100644 com/agnibho/code/anagram/dictionary/S9.txt create mode 100644 com/agnibho/code/anagram/dictionary/T1.txt create mode 100644 com/agnibho/code/anagram/dictionary/T10.txt create mode 100644 com/agnibho/code/anagram/dictionary/T11.txt create mode 100644 com/agnibho/code/anagram/dictionary/T12.txt create mode 100644 com/agnibho/code/anagram/dictionary/T13.txt create mode 100644 com/agnibho/code/anagram/dictionary/T14.txt create mode 100644 com/agnibho/code/anagram/dictionary/T15.txt create mode 100644 com/agnibho/code/anagram/dictionary/T16.txt create mode 100644 com/agnibho/code/anagram/dictionary/T17.txt create mode 100644 com/agnibho/code/anagram/dictionary/T18.txt create mode 100644 com/agnibho/code/anagram/dictionary/T19.txt create mode 100644 com/agnibho/code/anagram/dictionary/T2.txt create mode 100644 com/agnibho/code/anagram/dictionary/T20.txt create mode 100644 com/agnibho/code/anagram/dictionary/T21.txt create mode 100644 com/agnibho/code/anagram/dictionary/T22.txt create mode 100644 com/agnibho/code/anagram/dictionary/T23.txt create mode 100644 com/agnibho/code/anagram/dictionary/T3.txt create mode 100644 com/agnibho/code/anagram/dictionary/T4.txt create mode 100644 com/agnibho/code/anagram/dictionary/T5.txt create mode 100644 com/agnibho/code/anagram/dictionary/T6.txt create mode 100644 com/agnibho/code/anagram/dictionary/T7.txt create mode 100644 com/agnibho/code/anagram/dictionary/T8.txt create mode 100644 com/agnibho/code/anagram/dictionary/T9.txt create mode 100644 com/agnibho/code/anagram/dictionary/U1.txt create mode 100644 com/agnibho/code/anagram/dictionary/U10.txt create mode 100644 com/agnibho/code/anagram/dictionary/U11.txt create mode 100644 com/agnibho/code/anagram/dictionary/U12.txt create mode 100644 com/agnibho/code/anagram/dictionary/U13.txt create mode 100644 com/agnibho/code/anagram/dictionary/U14.txt create mode 100644 com/agnibho/code/anagram/dictionary/U15.txt create mode 100644 com/agnibho/code/anagram/dictionary/U16.txt create mode 100644 com/agnibho/code/anagram/dictionary/U17.txt create mode 100644 com/agnibho/code/anagram/dictionary/U18.txt create mode 100644 com/agnibho/code/anagram/dictionary/U19.txt create mode 100644 com/agnibho/code/anagram/dictionary/U2.txt create mode 100644 com/agnibho/code/anagram/dictionary/U21.txt create mode 100644 com/agnibho/code/anagram/dictionary/U3.txt create mode 100644 com/agnibho/code/anagram/dictionary/U4.txt create mode 100644 com/agnibho/code/anagram/dictionary/U5.txt create mode 100644 com/agnibho/code/anagram/dictionary/U6.txt create mode 100644 com/agnibho/code/anagram/dictionary/U7.txt create mode 100644 com/agnibho/code/anagram/dictionary/U8.txt create mode 100644 com/agnibho/code/anagram/dictionary/U9.txt create mode 100644 com/agnibho/code/anagram/dictionary/V1.txt create mode 100644 com/agnibho/code/anagram/dictionary/V10.txt create mode 100644 com/agnibho/code/anagram/dictionary/V11.txt create mode 100644 com/agnibho/code/anagram/dictionary/V12.txt create mode 100644 com/agnibho/code/anagram/dictionary/V13.txt create mode 100644 com/agnibho/code/anagram/dictionary/V14.txt create mode 100644 com/agnibho/code/anagram/dictionary/V15.txt create mode 100644 com/agnibho/code/anagram/dictionary/V16.txt create mode 100644 com/agnibho/code/anagram/dictionary/V17.txt create mode 100644 com/agnibho/code/anagram/dictionary/V3.txt create mode 100644 com/agnibho/code/anagram/dictionary/V4.txt create mode 100644 com/agnibho/code/anagram/dictionary/V5.txt create mode 100644 com/agnibho/code/anagram/dictionary/V6.txt create mode 100644 com/agnibho/code/anagram/dictionary/V7.txt create mode 100644 com/agnibho/code/anagram/dictionary/V8.txt create mode 100644 com/agnibho/code/anagram/dictionary/V9.txt create mode 100644 com/agnibho/code/anagram/dictionary/W1.txt create mode 100644 com/agnibho/code/anagram/dictionary/W10.txt create mode 100644 com/agnibho/code/anagram/dictionary/W11.txt create mode 100644 com/agnibho/code/anagram/dictionary/W12.txt create mode 100644 com/agnibho/code/anagram/dictionary/W13.txt create mode 100644 com/agnibho/code/anagram/dictionary/W14.txt create mode 100644 com/agnibho/code/anagram/dictionary/W15.txt create mode 100644 com/agnibho/code/anagram/dictionary/W16.txt create mode 100644 com/agnibho/code/anagram/dictionary/W17.txt create mode 100644 com/agnibho/code/anagram/dictionary/W2.txt create mode 100644 com/agnibho/code/anagram/dictionary/W3.txt create mode 100644 com/agnibho/code/anagram/dictionary/W4.txt create mode 100644 com/agnibho/code/anagram/dictionary/W5.txt create mode 100644 com/agnibho/code/anagram/dictionary/W6.txt create mode 100644 com/agnibho/code/anagram/dictionary/W7.txt create mode 100644 com/agnibho/code/anagram/dictionary/W8.txt create mode 100644 com/agnibho/code/anagram/dictionary/W9.txt create mode 100644 com/agnibho/code/anagram/dictionary/X1.txt create mode 100644 com/agnibho/code/anagram/dictionary/X10.txt create mode 100644 com/agnibho/code/anagram/dictionary/X11.txt create mode 100644 com/agnibho/code/anagram/dictionary/X12.txt create mode 100644 com/agnibho/code/anagram/dictionary/X13.txt create mode 100644 com/agnibho/code/anagram/dictionary/X14.txt create mode 100644 com/agnibho/code/anagram/dictionary/X15.txt create mode 100644 com/agnibho/code/anagram/dictionary/X16.txt create mode 100644 com/agnibho/code/anagram/dictionary/X2.txt create mode 100644 com/agnibho/code/anagram/dictionary/X4.txt create mode 100644 com/agnibho/code/anagram/dictionary/X5.txt create mode 100644 com/agnibho/code/anagram/dictionary/X6.txt create mode 100644 com/agnibho/code/anagram/dictionary/X7.txt create mode 100644 com/agnibho/code/anagram/dictionary/X8.txt create mode 100644 com/agnibho/code/anagram/dictionary/X9.txt create mode 100644 com/agnibho/code/anagram/dictionary/Y1.txt create mode 100644 com/agnibho/code/anagram/dictionary/Y10.txt create mode 100644 com/agnibho/code/anagram/dictionary/Y11.txt create mode 100644 com/agnibho/code/anagram/dictionary/Y12.txt create mode 100644 com/agnibho/code/anagram/dictionary/Y13.txt create mode 100644 com/agnibho/code/anagram/dictionary/Y14.txt create mode 100644 com/agnibho/code/anagram/dictionary/Y2.txt create mode 100644 com/agnibho/code/anagram/dictionary/Y3.txt create mode 100644 com/agnibho/code/anagram/dictionary/Y4.txt create mode 100644 com/agnibho/code/anagram/dictionary/Y5.txt create mode 100644 com/agnibho/code/anagram/dictionary/Y6.txt create mode 100644 com/agnibho/code/anagram/dictionary/Y7.txt create mode 100644 com/agnibho/code/anagram/dictionary/Y8.txt create mode 100644 com/agnibho/code/anagram/dictionary/Y9.txt create mode 100644 com/agnibho/code/anagram/dictionary/Z1.txt create mode 100644 com/agnibho/code/anagram/dictionary/Z10.txt create mode 100644 com/agnibho/code/anagram/dictionary/Z11.txt create mode 100644 com/agnibho/code/anagram/dictionary/Z12.txt create mode 100644 com/agnibho/code/anagram/dictionary/Z13.txt create mode 100644 com/agnibho/code/anagram/dictionary/Z14.txt create mode 100644 com/agnibho/code/anagram/dictionary/Z15.txt create mode 100644 com/agnibho/code/anagram/dictionary/Z16.txt create mode 100644 com/agnibho/code/anagram/dictionary/Z2.txt create mode 100644 com/agnibho/code/anagram/dictionary/Z3.txt create mode 100644 com/agnibho/code/anagram/dictionary/Z4.txt create mode 100644 com/agnibho/code/anagram/dictionary/Z5.txt create mode 100644 com/agnibho/code/anagram/dictionary/Z6.txt create mode 100644 com/agnibho/code/anagram/dictionary/Z7.txt create mode 100644 com/agnibho/code/anagram/dictionary/Z8.txt create mode 100644 com/agnibho/code/anagram/dictionary/Z9.txt diff --git a/LICENSE.TXT b/LICENSE.TXT new file mode 100644 index 0000000..94a9ed0 --- /dev/null +++ b/LICENSE.TXT @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/README.TXT b/README.TXT new file mode 100644 index 0000000..e4a15ef --- /dev/null +++ b/README.TXT @@ -0,0 +1,40 @@ +============= +Anagram 1.0.0 +============= + +General Usage Notes +------------------- +-Anagram finds angram for a given word +-Multiworded search may take a long time to complete and may be resource consuming +-Grammatical filtering for multiworded search is not yet available +-No installaion is required, just double click the downloaded .jar file to launch Anagram + +Program Notes +------------- +-Anagram is programmed in Java SE 7 +-The source code is available at http://code.agnibho.com/dietsurvey + +Contact Information +------------------- +Agnibho Mondal +mail@agnibho.com +www.agnibho.com + +Copyright Information +--------------------- +Anagram- Find anagrams of a word +Copyright (C) 2013 Agnibho Mondal + +This file is part of Anagram. +Anagram is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +Anagram is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with Anagram. If not, see . \ No newline at end of file diff --git a/com/agnibho/code/anagram/CheckAnagram.java b/com/agnibho/code/anagram/CheckAnagram.java new file mode 100644 index 0000000..7de5a59 --- /dev/null +++ b/com/agnibho/code/anagram/CheckAnagram.java @@ -0,0 +1,232 @@ +/* + Anagram- Find anagrams of a word + Copyright (C) 2013 Agnibho Mondal + + This file is part of Anagram. + + Anagram is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Anagram is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Anagram. If not, see . +*/ +package com.agnibho.code.anagram; + +import javax.swing.SwingWorker; + +/** + * + * @author SPARK + */ +public class CheckAnagram extends SwingWorker { + private String input; + private String result; + private IsAnagram isAnagram= new IsAnagram(); + private java.util.Scanner read=null; + private boolean inDict; + private boolean isMulti; + + private double total=0; //Progress calculation + private double done=0; + private double progress=0; + + CheckAnagram(String in, boolean multi){ + input=in; + isMulti=multi; + } + + @Override + public String doInBackground() throws InterruptedException{ + result=""; + if(!isMulti) singleWord(); + else multiWord(); + return result; + } + + public boolean isWord(){ + return inDict; + } + + private void singleWord(){ //[Finds Anagrams for single word search] + String letters=""; + String filename; + String matched; + inDict=false; + for(int i=0; i=(list.length-1))&&(count>0)){ + count--; + } + i=index[count]; + } + + if(Thread.interrupted()) + throw new InterruptedException(); + + if(index.length<3) //Progress calculation + done=index[0]; + else + done=(index[0]*java.lang.Math.pow(list.length, 2)+index[1]*java.lang.Math.pow(list.length, 1)+index[2]*java.lang.Math.pow(list.length, 0)); + if(calcProgress()>progress){ + progress=calcProgress(); + publish(progress); + } + + } + publish((double)100); + return qualified; + } + + private double calcProgress(){ //[Calculates the progress] + return (double)(done*100)/total; + } +} diff --git a/com/agnibho/code/anagram/IsAnagram.java b/com/agnibho/code/anagram/IsAnagram.java new file mode 100644 index 0000000..f7c11b6 --- /dev/null +++ b/com/agnibho/code/anagram/IsAnagram.java @@ -0,0 +1,45 @@ +/* + Anagram- Find anagrams of a word + Copyright (C) 2013 Agnibho Mondal + + This file is part of Anagram. + + Anagram is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Anagram is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Anagram. If not, see . +*/ +package com.agnibho.code.anagram; + +/** + * + * @author SPARK + */ +public class IsAnagram { + private char[] input; + private char[] reference; + private boolean checked; + + IsAnagram(){ + } + + public boolean check(String in, String ref){ + in=in.replaceAll("\\s", ""); + ref=ref.replaceAll("\\s", ""); + input=in.toLowerCase().toCharArray(); + reference=ref.toLowerCase().toCharArray(); + java.util.Arrays.sort(input); + java.util.Arrays.sort(reference); + if(java.util.Arrays.equals(input, reference)) checked=true; + else checked=false; + return checked; + } +} diff --git a/com/agnibho/code/anagram/IsPalindrome.java b/com/agnibho/code/anagram/IsPalindrome.java new file mode 100644 index 0000000..65a7d59 --- /dev/null +++ b/com/agnibho/code/anagram/IsPalindrome.java @@ -0,0 +1,41 @@ +/* + Anagram- Find anagrams of a word + Copyright (C) 2013 Agnibho Mondal + + This file is part of Anagram. + + Anagram is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Anagram is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Anagram. If not, see . +*/ +package com.agnibho.code.anagram; + +/** + * + * @author SPARK + */ +public class IsPalindrome { + boolean flag; + + IsPalindrome(){ + } + + public boolean check(String input){ + java.lang.StringBuilder reverse; + input=input.toLowerCase(); + reverse=new java.lang.StringBuilder(input); + reverse=reverse.reverse(); + if(input.equals(reverse.toString())) flag=true; + else flag=false; + return flag; + } +} diff --git a/com/agnibho/code/anagram/IsValid.java b/com/agnibho/code/anagram/IsValid.java new file mode 100644 index 0000000..f140775 --- /dev/null +++ b/com/agnibho/code/anagram/IsValid.java @@ -0,0 +1,49 @@ +/* + Anagram- Find anagrams of a word + Copyright (C) 2013 Agnibho Mondal + + This file is part of Anagram. + + Anagram is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Anagram is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Anagram. If not, see . +*/ +package com.agnibho.code.anagram; + +/** + * + * @author SPARK + */ +public class IsValid { + private boolean isValid=true; + + IsValid(){ + } + + public boolean isValid(String in, boolean isMulti){ + if(isMulti){ + for(int i=0; i=65&&in.charAt(i)<=90)||(in.charAt(i)>=97&&in.charAt(i)<=122)||in.charAt(i)==' ')){ + isValid=false; + } + } + } + else{ + for(int i=0; i=65&&in.charAt(i)<=90)||(in.charAt(i)>=97&&in.charAt(i)<=122))){ + isValid=false; + } + } + } + return isValid; + } +} diff --git a/com/agnibho/code/anagram/LICENSE.TXT b/com/agnibho/code/anagram/LICENSE.TXT new file mode 100644 index 0000000..94a9ed0 --- /dev/null +++ b/com/agnibho/code/anagram/LICENSE.TXT @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/com/agnibho/code/anagram/UI.java b/com/agnibho/code/anagram/UI.java new file mode 100644 index 0000000..742c623 --- /dev/null +++ b/com/agnibho/code/anagram/UI.java @@ -0,0 +1,252 @@ +/* + Anagram- Find anagrams of a word + Copyright (C) 2013 Agnibho Mondal + + This file is part of Anagram. + + Anagram is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Anagram is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Anagram. If not, see . +*/ +package com.agnibho.code.anagram; + +import java.awt.*; + +import javax.swing.*; + +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; +import java.util.List; +import java.util.concurrent.ExecutionException; + +/** + * + * @author SPARK + */ +@SuppressWarnings("serial") +public class UI extends JFrame implements ActionListener { + + String in; + String out; + String formatted; + int count; + + CheckAnagram checker; + + public JLabel heading; + public JTextField input; + public JLabel wordInfo; + public JProgressBar progressBar; + public JButton help; + public JButton find; + public JButton cancel; + public JRadioButton single, multi; + public ButtonGroup buttons; + public JEditorPane output; + + GroupLayout layout; + + public UI(){ + heading=new JLabel("Anagram Finder", JLabel.CENTER); + heading.setFont(new java.awt.Font(null, 0, 24)); + + input=new JTextField(30); + input.setActionCommand("entry"); + + wordInfo=new JLabel(); + + progressBar=new JProgressBar(0, 100); + progressBar.setValue(0); + progressBar.setStringPainted(true); + + help=new JButton("Help"); + help.setActionCommand("help"); + + find=new JButton("Find"); + find.setActionCommand("entry"); + + cancel=new JButton("Cancel"); + cancel.setActionCommand("cancel"); + + single=new JRadioButton("Single Word"); + multi=new JRadioButton("Multi Word"); + buttons=new ButtonGroup(); + buttons.add(single); + buttons.add(multi); + single.setSelected(true); + + output=new JEditorPane(); + output.setEditable(false); + output.setContentType("text/html"); + JScrollPane scroll=new JScrollPane(output); + scroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED); + scroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED); + scroll.setPreferredSize(new Dimension(600, 200)); + scroll.setMinimumSize(new Dimension(600, 200)); + + input.addActionListener(this); + find.addActionListener(this); + cancel.addActionListener(this); + help.addActionListener(this); + + layout=new GroupLayout(getContentPane()); + getContentPane().setLayout(layout); + layout.setAutoCreateGaps(true); + layout.setAutoCreateContainerGaps(true); + layout.setVerticalGroup( + layout.createSequentialGroup() + .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE) + .addComponent(heading, 0, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) + .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE) + .addGroup(layout.createParallelGroup(GroupLayout.Alignment.CENTER) + .addComponent(input, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE) + .addComponent(find) + .addComponent(help)) + .addGroup(layout.createParallelGroup(GroupLayout.Alignment.CENTER) + .addComponent(single) + .addComponent(multi) + .addComponent(wordInfo)) + .addComponent(scroll) + .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED, GroupLayout.DEFAULT_SIZE, 50) + ); + layout.setHorizontalGroup( + layout.createParallelGroup() + .addComponent(heading, 0, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) + .addGroup(layout.createSequentialGroup() + .addComponent(input) + .addComponent(find) + .addComponent(help)) + .addGroup(layout.createSequentialGroup() + .addComponent(single) + .addComponent(multi) + .addComponent(wordInfo)) + .addComponent(scroll, 0, GroupLayout.PREFERRED_SIZE, Short.MAX_VALUE) + ); + layout.linkSize(SwingConstants.HORIZONTAL, find, help); + layout.linkSize(SwingConstants.HORIZONTAL, single, multi); + + setTitle("Anagram Finder"); + pack(); + setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); + setSize(600, 400); + setLocationRelativeTo(null); + setResizable(false); + } + + @Override + public void actionPerformed(ActionEvent ae){ + if(ae.getActionCommand().equals("entry")){ + in=input.getText(); + if(!in.isEmpty()){ + if(new IsValid().isValid(in, multi.isSelected())){ + formatted=""; + input.setEnabled(false); + find.setEnabled(false); + wordInfo.setText(""); + layout.replace(find, cancel); + layout.replace(wordInfo, progressBar); + progressBar.setIndeterminate(false); + output.setText("

Search in progress...

Please wait...

"); + checker=new CheckAnagram(in, multi.isSelected()){ + @Override + public void process(List progressValues){ + double progressValue=progressValues.get(progressValues.size()-1); + if(progressValue<100) + progressBar.setValue((int)progressValue); + else{ + progressBar.setIndeterminate(true); + output.setText("

Search Complete

Formatting the Results...

"); + } + } + @Override + public void done(){ + try { + out=get(); + if(out==null) + formatted=formatted+"

No match found

"; + else{ + formatted=""; + count=0; + for(int i=0; i"; + count++; + } + else + formatted=formatted+out.charAt(i); + } + formatted=formatted+"

"+count+" matches found for
"+in+"

"; + } + if(new IsPalindrome().check(in)) + JOptionPane.showMessageDialog(null, "The word you entered is a palindrome", "Palindrome", JOptionPane.PLAIN_MESSAGE); + if(single.isSelected()&&!checker.isWord()) + wordInfo.setText("The word you entered does not exist in the Dictionary"); + } catch (java.util.concurrent.CancellationException e) { + formatted="

Search cancelled

"; + } catch (InterruptedException e) { + formatted="

"+e.toString()+"

"; + } catch (ExecutionException e) { + formatted="

"+e.toString()+"

"; + } + output.setText(formatted); + output.setCaretPosition(0); + input.setEnabled(true); + find.setEnabled(true); + layout.replace(cancel, find); + layout.replace(progressBar, wordInfo); + } + }; + checker.execute(); + } + else + output.setText("

Invalid entry

"); + }else + output.setText("

Enter a word first

"); + } + if(ae.getActionCommand().equals("help")) + JOptionPane.showMessageDialog(getContentPane(), "" + + "

Enter a word in the provided field, choose singleword or multiword mode and click the search button to find its anagrams.

" + + "

The search results are dependent on the attached dictionary. The software is using UKACD for the word list.

" + + "

Grammatical filtering of the multi-worded search results is not avaiable." + + "

Warning: Multi-worded searches may take long time.

" + + "
" + + "Developed by:
" + + "Agnibho Mondal
" + +"http://code.agnibho.com/" + +"
" + +"Anagram Copyright (C) 2013 Agnibho Mondal
" + +"This program comes with ABSOLUTELY NO WARRANTY
" + +"This is free software, and you are welcome to redistribute it under certain conditions" + +"", "Anagram Finder Help", JOptionPane.PLAIN_MESSAGE); + if(ae.getActionCommand().equals("cancel")) + checker.cancel(true); + } + + + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + SwingUtilities.invokeLater(new Runnable(){ + public void run(){ + try{ + UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); + } + catch (Exception ex){ + ex.printStackTrace(); + } + new UI().setVisible(true); + } + }); + } +} diff --git a/com/agnibho/code/anagram/dictionary/A1.txt b/com/agnibho/code/anagram/dictionary/A1.txt new file mode 100644 index 0000000..7898192 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A1.txt @@ -0,0 +1 @@ +a diff --git a/com/agnibho/code/anagram/dictionary/A10.txt b/com/agnibho/code/anagram/dictionary/A10.txt new file mode 100644 index 0000000..b4267ec --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A10.txt @@ -0,0 +1,1597 @@ +aardwolves +abandonees +abandoning +abasements +abashments +abatements +Abbotsford +abbotships +abbreviate +abdicating +abdication +abdicators +abdominals +abdominous +abductions +aberdevine +Aberdonian +aberrating +aberration +abeyancies +abhorrence +abhorrency +abiogenist +abiturient +abjections +abjectness +abjointing +abjunction +abjuration +ablutomane +abnegating +abnegation +abnegators +abnormally +abolishers +abolishing +abolitions +abomasuses +abominable +abominably +abominated +abominates +abominator +abondances +abonnement +aboriginal +aborigines +aborticide +abortional +abortively +abranchial +abrasively +abreacting +abreaction +abreactive +abridgable +abridgment +abrogating +abrogation +abrogative +abrogators +abruptions +abruptness +abscinding +abscissins +abscission +absconders +absconding +abseilings +absinthism +absolutely +absolution +absolutism +absolutist +absolutory +absolvitor +absorbable +absorbance +absorbates +absorbedly +absorbency +absorbents +absorption +absorptive +abstainers +abstaining +abstemious +abstention +abstergent +absterging +abstersion +abstersive +abstinence +abstinency +abstracted +abstracter +abstractly +abstractor +abstricted +abstrusely +abstrusest +absurdists +absurdness +abundances +abundantly +Abyssinian +academical +academists +acalephans +acanaceous +acanthuses +acaricides +acarideans +acaridians +acarophily +acarpelous +acatalepsy +accedences +accelerant +accelerate +accensions +accentuate +acceptable +acceptably +acceptance +acceptancy +acceptants +acceptedly +accessible +accessibly +accessions +accidental +accidented +accipiters +acclaiming +acclimated +acclimates +accoasting +accomplice +accomplish +accomptant +accompting +accordable +accordance +accordancy +accordions +accostable +accoucheur +accountant +accounting +accourting +accoutered +accoutring +accredited +accrescent +accretions +Accrington +accubation +accultural +accumbency +accumulate +accuracies +accurately +accursedly +accusation +accusative +accusatory +accusingly +accustomed +acephalous +aceraceous +acerbating +acerbities +acervately +acervation +acetabular +acetabulum +acetifying +achaeniums +Acherontic +achievable +Achitophel +achromatic +achromatin +aciculated +acidfreaks +acidifiers +acidifying +acidimeter +acidimetry +acidulated +acidulates +acierating +acieration +acinaceous +acolouthic +acolouthos +acotyledon +acoustical +acquainted +acquiesced +acquiesces +acquighted +acquirable +acquitment +acquittals +acquitting +acriflavin +acroamatic +acrobatics +acrobatism +acrogenous +acrolithic +acromegaly +acronychal +acronymous +acrophobia +acrophonic +acrospires +acroterial +acroterion +acroterium +actability +actinolite +actionable +actionably +actionists +activating +activation +activators +activeness +activities +actualised +actualises +actualists +actualit�s +actualized +actualizes +actuations +acuminated +acuminates +adactylous +adamantean +adamantine +Adamitical +adaptation +adaptative +adaptively +adderstone +adderworts +addictions +additament +additional +additively +addressees +addressers +addressing +addressors +adductions +adelantado +ademptions +adenectomy +adenovirus +adequacies +adequately +adequative +adherences +adhesively +adhibiting +adhibition +adiaphoron +Adirondack +adjacently +adjectival +adjectives +adjourning +adjudgment +adjudicate +adjunction +adjunctive +adjuration +adjuratory +adjustable +adjustably +adjustment +admeasured +admeasures +adminicles +administer +admiration +admirative +admiringly +admissible +admissibly +admissions +admittable +admittance +admittedly +admixtures +admonished +admonishes +admonition +admonitive +admonitors +admonitory +adolescent +adorations +adornments +adpressing +adrenaline +adrenergic +adriamycin +adroitness +adsorbable +adsorbates +adsorbents +adsorption +adulations +Adullamite +adulterant +adulterate +adulterers +adulteress +adulteries +adulterine +adulterise +adulterize +adulterous +adumbrated +adumbrates +advantaged +advantages +advections +Adventists +adventives +adventured +adventurer +adventures +adversaria +advertence +advertency +advertised +advertiser +advertises +advertized +advertizer +advertizes +advisatory +advisement +advisorate +advocacies +advocating +advocation +advocatory +aeciospore +aedileship +aeolipiles +aeolipyles +aeolotropy +aerenchyma +aerialists +aerobatics +aerobionts +aerobiosis +aerobiotic +aerodromes +aerogramme +aerographs +aerography +aerologist +aerometers +aerometric +aeromotors +aeronautic +aeronomist +aerophobes +aerophobia +aerophobic +aerophones +aerophytes +aeroplanes +aeroshells +aerostatic +aerotactic +aerotrains +aerotropic +aeruginous +aesthetics +aestivated +aestivates +Aethiopian +affability +affectedly +affections +affectless +affeerment +affettuoso +affiancing +affidavits +affiliable +affiliated +affiliates +affinities +affinitive +affirmable +affirmance +affirmants +afflations +afflatuses +afflicting +affliction +afflictive +affluently +affluxions +affordable +afforested +affricated +affricates +affrighted +affrighten +affronting +affrontive +aficionado +Africander +Africanise +Africanism +Africanist +Africanize +Africanoid +Afrikander +Afrikaners +afrormosia +afterbirth +afterdecks +aftergames +afterglows +aftergrass +aftermaths +afternoons +afterpains +afterpiece +aftersales +aftershaft +aftershave +aftershock +afterswarm +aftertaste +aftertimes +afterwards +afterwords +afterworld +agapanthus +agentivity +agglutinin +aggrandise +aggrandize +aggravated +aggravates +aggregated +aggregates +aggressing +aggression +aggressive +aggressors +aggrieving +agistments +agitatedly +agitations +agonisedly +agonistics +agonizedly +agreements +agr�gation +agrimonies +agrologist +agronomial +agronomics +agronomist +Ahithophel +ahorseback +Ahuramazda +airbrushed +airbrushes +airfreight +airlifting +airmanship +aitchbones +akolouthos +Alabamians +alabandine +alabandite +alabasters +alablaster +Alanbrooke +alarmingly +albarellos +albescence +albespines +albespynes +Albigenses +albinistic +albitising +albitizing +albumenise +albumenize +albuminate +albuminise +albuminize +albuminoid +albuminous +alcaicer�a +alcarrazas +alcatrases +Alcelaphus +alchemical +alchemised +alchemises +alchemists +alchemized +alchemizes +alcheringa +Alcibiades +alcoholics +alcoholise +alcoholism +alcoholize +Alcyonaria +aldermanic +aldermanly +aldermanry +alderwoman +alderwomen +aldohexose +alebenches +alectryons +alexanders +Alexandria +algarrobas +algarrobos +algebraist +algolagnia +algologist +Algonkians +Algonquian +Algonquins +algophobia +algorithms +alienating +alienation +alienators +alignments +alimentary +alimenting +alineation +alinements +Alismaceae +alkalified +alkalifies +alkalinise +alkalinity +alkalinize +alkalising +alkalizing +allantoids +allargando +allayments +allegation +allegiance +allegories +allegorise +allegorist +allegorize +allegretto +alleluiahs +allemandes +allergenic +allergists +alleviated +alleviates +alleviator +alliaceous +alligating +alligation +alligators +alliterate +allocating +allocation +allochiria +allocution +allogamous +allografts +allographs +allometric +allomorphs +allonymous +allopathic +allopatric +allophones +allophonic +alloplasms +Allosaurus +allosteric +allotheism +allotments +allotropes +allotropic +allowances +allurement +alluringly +allusively +almacantar +almandines +almucantar +aloeswoods +alongshore +alpargatas +alpenhorns +alpenstock +alphabetic +alphameric +alphametic +alphasorts +Alphonsine +altarpiece +altazimuth +alteration +alterative +altercated +altercates +alternance +alternants +alternated +alternates +alternatim +alternator +altimeters +altisonant +altitonant +altocumuli +altogether +altostrati +Altrincham +altruistic +aluminates +aluminised +aluminises +aluminized +aluminizes +alveolitis +amalgamate +amanuenses +amanuensis +amaracuses +Amaranthus +amarantine +amaryllids +amassables +amateurish +amateurism +amatorious +amazedness +ambagitory +ambassador +ambassages +amberjacks +ambidexter +ambisexual +ambisonics +ambivalent +Amblyopsis +Amblystoma +amboceptor +ambrotypes +ambulacral +ambulacrum +ambulances +ambulating +ambulation +ambulators +ambulatory +ambuscaded +ambuscades +ambuscados +ambushment +ameliorate +amendatory +amendments +amenorrhea +Amerasians +amerceable +amercement +amerciable +Amerindian +ametabolic +amiability +ammoniacal +ammoniacum +ammoniated +ammunition +amnestying +amoebiasis +amoebiform +amoralists +amortising +amortizing +amourettes +ampelopses +ampelopsis +ampersands +amperzands +amphibians +amphibious +amphiboles +amphibolic +amphibrach +Amphictyon +amphimacer +amphimixis +Amphineura +amphiscian +Amphitryon +ampholytes +amphoteric +Ampicillin +ampliation +ampliative +amplifiers +amplifying +amplitudes +amplosomes +amputating +amputation +amputators +amritattva +amusements +amygdaloid +amylaceous +amyotrophy +anabaptise +anabaptism +anabaptist +anabaptize +anablepses +anabolites +anabolitic +anacardium +anachronic +anaclastic +anacolutha +anacrustic +anadromous +anadyomene +anaglyphic +anaglyptas +anaglyptic +anagogical +anagrammed +analgesics +analogical +analogised +analogises +analogists +analogized +analogizes +analphabet +analysable +analysands +analytical +analyzable +anamnestic +anamorphic +anapaestic +anaphylaxy +anaplastic +anaptyctic +anarchical +anarchised +anarchises +anarchisms +anarchists +anarchized +anarchizes +anarthrous +anastigmat +anastomose +anastrophe +anatomical +anatomised +anatomises +anatomists +anatomized +anatomizes +anatropies +anatropous +ancestress +ancestries +anchorages +anchoretic +anchorites +anchoritic +anchorless +anchylosed +anchyloses +anchylosis +ancipitous +Andalusian +andalusite +andantinos +Anderlecht +androecial +androecium +androgenic +androgynes +Andromache +andromedas +Andronicus +androphore +anecdotage +anecdotist +anemograms +anemograph +anemometer +anemometry +anemophily +anesthesia +anesthetic +aneurismal +aneurysmal +angelhoods +angelology +angiograms +angiosperm +angleberry +angledozer +anglepoise +anglicised +anglicises +anglicisms +anglicists +anglicized +anglicizes +anglifying +Anglistics +anglomania +anglophile +anglophils +anglophobe +anglophone +Anguillula +anguishing +angularity +angulation +angwantibo +anharmonic +anhelation +anhungered +anhydrides +anhydrites +aniconisms +animadvert +animalcula +animalcule +animalised +animalises +animalisms +animalists +animalized +animalizes +animatedly +animations +anisotropy +anklebones +ankylosaur +ankylosing +annalising +annalistic +annalizing +annealings +annexation +annexments +annihilate +annotating +annotation +annotators +announcers +announcing +annoyances +annoyingly +annualised +annualises +annualized +annualizes +annuitants +annularity +annulation +annulments +annunciate +anoestrous +anointment +anonaceous +anonymised +anonymises +anonymized +anonymizes +anopheline +anorectics +ansaphones +Anschauung +answerable +answerably +answerless +antagonise +antagonism +antagonist +antagonize +Antarctica +antecedent +anteceding +antecessor +antechapel +antechoirs +antedating +antennules +antepenult +anteriorly +anteverted +anthelices +anthemwise +antheridia +anthocarps +anthocyans +anthomania +Anthonomus +anthophore +anthracene +anthracite +anthracoid +anthropoid +anthuriums +antiaditis +antibiosis +antibiotic +antibodies +antichlors +Antichrist +Antichthon +anticipant +anticipate +anticivism +anticlimax +anticlinal +anticlines +antidromic +antifreeze +antiheroes +antiheroic +antiknocks +antilogies +antilogous +antilopine +antimasque +antimonate +antimonial +antimonide +antimonies +antimonite +antinomian +antinomies +Antiochene +Antiochian +antipastos +antipathic +antiphonal +antiphoner +antiphonic +antipodean +antiproton +antiquarks +antiquated +antiquates +antiracism +antiracist +antiscians +antisepsis +antiseptic +antiserums +antisocial +antispasts +antistatic +antisyzygy +antitheism +antitheist +antitheses +antithesis +antithetic +antitoxins +antitrades +antitragus +antivenene +antivenins +Antoinette +antonymous +anucleated +anxiolytic +anywhither +apagogical +apartments +aphaeresis +aphetising +aphetizing +aphidicide +aphorisers +aphorising +aphoristic +aphorizers +aphorizing +aphrodisia +apiculture +aplacental +aplanatism +apocalypse +apocarpous +apochromat +apocopated +apocopates +apocryphal +apocryphon +apodeictic +apoenzymes +apolaustic +apolitical +Apollonian +Apollonius +apologetic +apologised +apologiser +apologises +apologists +apologized +apologizer +apologizes +apomorphia +apopemptic +apophthegm +apoplectic +aposematic +aposporous +apostasies +apostatise +apostatize +apostilles +apostolate +apostolise +apostolize +apostrophe +apothecary +apothecial +apothecium +apotheoses +apotheosis +apotropaic +apotropous +Appalachia +Appaloosas +apparelled +apparently +apparition +apparitors +appealable +appearance +appeasable +appellants +appendages +appendants +appendices +appendixes +apperceive +appertains +appetisers +appetising +appetition +appetitive +appetizers +appetizing +applauders +applauding +applausive +applecarts +appliances +applicable +applicably +applicants +applicator +appointees +appointing +appointive +appointors +apportions +appositely +apposition +appositive +appraisals +appraisers +appraising +appraisive +appreciate +apprehends +apprentice +appressing +apprizings +approached +approaches +approbated +approbates +approvable +approvance +approximal +apricating +aprication +apriorisms +apriorists +apsidioles +apterygial +Apterygota +aquabatics +aquaboards +aquadromes +aquafortis +aquamanale +aquamanile +aquamarine +aquaphobes +aquaphobia +aquaphobic +aquaplaned +aquaplaner +aquaplanes +aquarelles +aquariists +aquarobics +aquatintas +aquatinted +aquilegias +arabesqued +arabesques +arachnidan +araeometer +araeometry +araeostyle +Araliaceae +araucarias +arbalester +arbalister +arbitrable +arbitrager +arbitrages +arbitrated +arbitrates +arbitrator +arblasters +arboretums +arborvitae +arcaneness +archaicism +archaisers +archaising +archaistic +archaizers +archaizing +archangels +archbishop +archdeacon +archegonia +archeology +archetypal +archetypes +archimages +Archimedes +Archipenko +architects +architrave +architypes +archivists +archivolts +archonship +archontate +arcseconds +Arctogaean +arctophile +arctophils +arctophily +arcuations +arcubalist +arefaction +arenaceous +arenations +areography +areolation +areometers +Areopagite +areostyles +Argentines +argillites +argonautic +argumentum +arguteness +argyrodite +Arianising +Arianizing +Arimaspian +Arimathaea +Aristippus +aristocrat +aristology +arithmetic +Arizonians +armadillos +Armageddon +armigerous +armillaria +armipotent +armistices +armourless +aromatised +aromatises +aromatized +aromatizes +arpeggiate +arpeggione +arquebuses +arracachas +arragonite +arraigners +arraigning +arrayments +arrearages +arrestable +arrestment +arrhythmia +arrhythmic +arrivistes +arrogances +arrogantly +arrogating +arrogation +arrowheads +arrowroots +arseniates +Artaxerxes +artemisias +arterioles +artfulness +arthralgia +arthralgic +arthromere +Arthropoda +arthropods +Arthuriana +artichokes +articulacy +Articulata +articulate +artificers +artificial +artistical +artistries +artocarpus +arvicoline +Aryanising +Aryanizing +aryballoid +arytaenoid +arytenoids +asafoetida +asarabacca +asbestosis +ascariasis +ascendable +ascendance +ascendancy +ascendants +ascendence +ascendency +ascendents +ascendible +ascensions +ascertains +asceticism +asclepiads +ascomycete +ascorbates +ascospores +ascribable +ascription +asepticise +asepticism +asepticize +asexuality +Ashkenazim +ashlarings +ashlerings +ashramites +Asiaticism +asparagine +aspectable +asperating +aspergilla +aspergills +asperities +aspersions +aspersoirs +asphalters +asphalting +asphyxiant +asphyxiate +aspidistra +aspirating +aspiration +aspirators +aspiratory +aspiringly +assafetida +assagaiing +assailable +assailants +assailment +assaulters +assaulting +assegaiing +assemblage +assemblers +assemblies +assembling +assentator +assentient +assertable +assertions +assessable +assessment +asseverate +assibilate +assignable +assignment +assimilate +assistance +assistants +associable +associated +associates +assoilment +assonances +assonantal +assonating +assortment +assuetudes +assumingly +assumpsits +assumption +assumptive +assurances +assurgency +assythment +astacology +astarboard +asteriated +asteridian +asterisked +asteroidal +Asteroidea +astigmatic +astomatous +astonished +astonishes +astounding +astragalus +astrakhans +astricting +astriction +astrictive +astringent +astringers +astringing +astrodomes +astrolabes +astrolatry +astrologer +astrologic +astrometry +astronauts +astronomer +astronomic +astrophels +astuteness +asymmetric +asymmetron +asymptotes +asymptotic +asynartete +asynchrony +asyndetons +asyntactic +asystolism +ateleiosis +Athanasian +athenaeums +athermancy +athetising +athetizing +athrocytes +atmologist +atmolysing +atmolyzing +atmometers +atmosphere +atonements +atracurium +atramental +atrocities +atrophying +attachable +attachment +attackable +attainable +attainders +attainment +attainting +attainture +attempered +attempting +attendance +attendancy +attendants +attendment +attentions +attenuants +attenuated +attenuates +attenuator +attestable +Atticising +Atticizing +attirement +attollents +attornment +attractant +attracting +attraction +attractive +attractors +attrahents +attrapping +attributed +attributes +attritting +attunement +atypically +aubergines +aubergiste +aubrietias +Auchinleck +auctionary +auctioneer +auctioning +audibility +audiograms +audiograph +audiometer +audiophile +audiophils +audiotapes +audiphones +auditioned +auditories +auditorium +Aufkl�rung +augmenters +augmenting +augmentors +augurships +augustness +aureomycin +auriculate +auriferous +auriscopes +auscultate +auspicated +auspicates +auspicious +austenites +austenitic +Austerlitz +Australian +australite +Australoid +Australorp +austringer +autarchies +autarchist +autarkical +autarkists +autecology +authorings +authorised +authorises +authorized +authorizes +authorless +authorship +autochthon +autoclaves +autocratic +autocycles +autodidact +autoerotic +autoflares +autogamous +autogenics +autogenous +autografts +autographs +autography +autoguides +autologous +autolysing +autolyzing +automatics +automating +automation +automatise +automatism +automatist +automatize +automatons +automobile +automotive +autonomics +autonomies +autonomist +autonomous +autophagia +autophobia +autopilots +autopistas +autoplasty +autopoints +autopsying +autoptical +autoroutes +autoscopic +autostrada +autostrade +autoteller +autotheism +autotheist +autotimers +autotoxins +autotrophs +autotyping +autowinder +autumnally +auxometers +availingly +avalanched +avalanches +avanturine +avaricious +avenaceous +avengement +avengeress +aventailes +aventurine +averseness +avertiment +avgolemono +aviatrices +Avicularia +Aviculidae +aviculture +avizandums +avocations +avoidances +avouchable +avouchment +avvogadore +awakenings +awestrikes +awkwardest +awkwardish +axinomancy +axiologist +axiomatics +ayahuascos +ayatollahs +azeotropes +azeotropic +Azerbaijan +azobenzene diff --git a/com/agnibho/code/anagram/dictionary/A11.txt b/com/agnibho/code/anagram/dictionary/A11.txt new file mode 100644 index 0000000..d6b47c9 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A11.txt @@ -0,0 +1,1210 @@ +abactinally +abandonedly +abandonment +Abbevillian +abbreviated +abbreviates +abbreviator +abdications +abdominally +abecedarian +aberdevines +Aberdonians +aberrancies +aberrations +Aberystwyth +abhominable +abhorrences +abhorrently +abiogenesis +abiogenetic +abiogenists +abiturients +abjunctions +abjurations +ablactation +ablatitious +ablutionary +ablutomanes +abnegations +abnormalism +abnormality +abnormities +abolishable +abolishment +abolitional +abominating +abomination +abominators +abonnements +aboriginals +aborticides +abortionist +abracadabra +abranchiate +abreactions +abridgeable +abridgement +abridgments +abrogations +abscissions +abscondence +absenteeism +absolutions +absolutists +absolvitors +absorbingly +absorptions +abstentions +abstentious +abstergents +abstersions +abstinences +abstinently +abstracters +abstractest +abstracting +abstraction +abstractive +abstractors +abstricting +abstriction +absurdities +abundancies +abusiveness +Abyssinians +academicals +academician +academicism +Acanthaceae +acarologist +acarpellous +acatalectic +acataleptic +acaulescent +accelerando +accelerants +accelerated +accelerates +accelerator +accentually +accentuated +accentuates +acceptances +acceptation +acceptivity +accessaries +accessorial +accessories +accessorily +accessorise +accessorize +accidentals +accipitrine +acclamation +acclamatory +acclimating +acclimation +acclimatise +acclimatize +acclivities +acclivitous +accommodate +accompanied +accompanier +accompanies +accompanist +accomplices +accomptable +accordances +accordantly +accordingly +accoucheurs +accoucheuse +accountable +accountably +accountancy +accountants +accountings +accoutering +accrediting +accrescence +accubations +acculturate +accumulated +accumulates +accumulator +accusations +accusatival +accusatives +accustomary +accustoming +acerbically +acervations +achaenocarp +achievement +achromatins +achromatise +achromatism +achromatize +achromatous +acidanthera +acidifiable +acidimeters +acidulating +acinaciform +acknowledge +acotyledons +acoustician +acquainting +acquiescent +acquiescing +acquighting +acquirement +acquisition +acquisitive +acquittance +acriflavine +acrimonious +acrocentric +acromegalic +acronymania +acropetally +acropolises +acroteriums +actinically +actinometer +Actinomyces +activations +actualising +actualities +actualizing +actuarially +acuminating +acumination +acupressure +acupuncture +acutenesses +adaptations +adderstones +additaments +addititious +addressable +adelantados +adenomatous +adhibitions +adiaphorism +adiaphorist +adiaphorous +adiathermic +adjectively +adjournment +adjudgement +adjudgments +adjudicated +adjudicates +adjudicator +adjunctions +adjurations +adjustments +adjutancies +admeasuring +adminicular +administers +admiralship +admiralties +admittances +admonishing +admonitions +adolescence +adolescents +adoptianism +adoptianist +Adoptionism +adoptionist +adscription +adsorptions +adulterants +adulterated +adulterates +adulterator +adulterines +adulterised +adulterises +adulterized +adulterizes +adumbrating +adumbration +adumbrative +advancement +advantaging +adventurers +adventuress +adventuring +adventurism +adventurist +adventurous +adverbially +adversarial +adversaries +adversative +adverseness +adversities +advertently +advertisers +advertising +advertizing +advertorial +advisedness +advisements +advisership +advisorates +advocations +aeciospores +aedileships +Aeneolithic +aeolotropic +aerenchymas +aerobically +aerobiology +aerobraking +aerodynamic +aeroelastic +aerogrammes +aerological +aerologists +aeronautics +aeronomists +aerostatics +aerostation +aerotropism +Aesculapian +aesthetical +aestivating +aestivation +affectation +affectingly +affectional +affectioned +affectively +affectivity +affettuosos +afficionado +affiliating +affiliation +affirmances +affirmation +affirmative +affirmatory +affirmingly +afflictings +afflictions +afforcement +afforesting +affranchise +affrication +affricative +affrightens +affrightful +affrighting +affrontings +Afghanistan +aficionados +Africanised +Africanises +Africanized +Africanizes +afrormosias +afterbirths +afterburner +aftergrowth +afterpieces +aftershafts +aftershaves +aftershocks +aftersupper +afterswarms +aftertastes +afterworlds +agelessness +agglomerate +agglutinant +agglutinate +aggradation +aggrandised +aggrandises +aggrandized +aggrandizes +aggravating +aggravation +aggregately +aggregating +aggregation +aggregative +aggressions +agnatically +agnosticism +agonisingly +agonistical +agonizingly +agonothetes +agoraphobia +agoraphobic +agranulosis +agrarianism +agr�gations +agriculture +agriproduct +agrobiology +agrological +agrologists +agronomical +agronomists +agrostology +aguardiente +ahistorical +aiguillette +ailanthuses +ailurophile +ailurophobe +aimlessness +airbrushing +aircraftman +aircraftmen +airlessness +airsickness +akoluthoses +alabastrine +albatrosses +Albigensian +albugineous +albumenised +albumenises +albumenized +albumenizes +albuminates +albuminised +albuminises +albuminized +albuminizes +albuminoids +albuminuria +Albuquerque +alcaicer�as +alchemising +alchemizing +Alcibiadean +alcoholised +alcoholises +alcoholized +alcoholizes +alcyonarian +aldermanity +Aldermaston +aldopentose +alembicated +Alessandria +Alexandrian +alexandrine +alexandrite +algebraical +algebraists +algological +algologists +Algonquians +algorithmic +alineations +alismaceous +alkalescent +alkalifying +alkalimeter +alkalimetry +alkalinised +alkalinises +alkalinized +alkalinizes +allantoises +allegations +allegiances +allegorical +allegorised +allegoriser +allegorises +allegorists +allegorized +allegorizer +allegorizes +allegrettos +allelomorph +allelopathy +alleviating +alleviation +alleviative +alleviators +alleviatory +alligations +allineation +alliterated +alliterates +allocatable +allocations +allocheiria +allocutions +allopathist +alloplastic +allopurinol +allotropism +allotropous +allurements +almacantars +almucantars +alpenstocks +alphabetise +alphabetize +alphametics +alphasorted +altarpieces +altazimuths +alterations +altercating +altercation +altercative +alternances +alternately +alternating +alternation +alternative +alternators +altitudinal +altocumulus +altostratus +aluminising +aluminizing +alycompaine +amalgamated +amalgamates +amaranthine +amaryllises +amateurship +amativeness +amatorially +ambassadors +ambergrises +ambidexters +ambiguities +ambiguously +ambilateral +ambitiously +ambivalence +ambivalency +ambiversion +ambrosially +ambulations +ambuscading +ambuscadoes +ambushments +Amelanchier +ameliorated +ameliorates +amenability +amenorrhoea +amentaceous +amercements +amerciament +Americanese +Americanise +Americanism +Americanist +Americanize +Amerindians +ametabolism +ametabolous +amethystine +amiableness +amicability +aminobutene +ammophilous +ammunitions +amontillado +amorousness +amorphously +amphetamine +amphibolies +amphibolite +amphibology +amphibolous +amphibrachs +Amphictyony +amphigories +amphimacers +amphimictic +amphioxuses +amphipathic +amphipodous +amphiprotic +amphisbaena +amphiscians +amplexicaul +ampliations +ampullosity +amputations +amusiveness +amygdaloids +amyloidosis +amyotrophic +anabaptised +anabaptises +anabaptisms +anabaptists +anabaptized +anabaptizes +anabranches +anacardiums +anacharises +anachronism +anachronous +anacoluthia +anacoluthon +Anacreontic +anadiplosis +anaerobiont +anaesthesia +anaesthesis +anaesthetic +anagnorisis +anagramming +analogising +analogizing +analogously +analphabete +analphabets +anamorphous +anaphorical +anaphylaxis +anaplerosis +anaplerotic +anarchising +anarchistic +anarchizing +anastigmats +anastomosed +anastomoses +anastomosis +anastomotic +anastrophes +anatomising +anatomizing +ancestorial +ancestrally +anchoresses +anchorwoman +anchorwomen +anchylosing +ancientness +ancillaries +androgenous +androgynous +androphores +anecdotally +anecdotical +anecdotists +anemographs +anemography +anemometers +anemometric +anemophobia +anemophobic +anencephaly +anesthesias +anesthetics +anesthetist +anesthetize +anfractuous +angelically +angelolatry +angelophany +angiography +angioplasty +angiosperms +angiotensin +angledozers +anglepoises +Anglicanism +anglicising +anglicizing +anglomaniac +anglophiles +anglophilia +anglophilic +anglophobes +anglophobia +anglophobic +anglophones +angwantibos +animadverts +animalcular +animalcules +animalising +animalizing +animatingly +animatronic +animosities +anisocercal +anisomerous +anisotropic +ankylosaurs +annabergite +annexations +annihilated +annihilates +annihilator +anniversary +annotations +annualising +annualizing +annulations +annunciated +annunciates +annunciator +anointments +anomalistic +anomalously +anonymising +anonymizing +anonymously +anopheleses +anophelines +anorthosite +answerphone +antagonised +antagonises +antagonists +antagonized +antagonizes +antecedence +antecedents +antecessors +antechamber +antechapels +antemundane +antenniform +antenuptial +anteorbital +antependium +antepenults +anteriority +anteversion +anteverting +antheridium +antherozoid +Anthesteria +anthochlore +anthocyanin +anthologies +anthologise +anthologist +anthologize +anthomaniac +anthophores +anthracitic +anthracnose +anthracosis +anthropical +antibilious +antibiotics +Antiburgher +anticathode +anticipants +anticipated +anticipates +anticipator +anticlinals +anticyclone +antifouling +antihelices +antiheroine +antijamming +antimasques +antimonates +antimoniate +antimonides +antimonious +antimonites +antimutagen +antineutron +antinomians +antinomical +antioxidant +antipathies +antipathist +antiphonals +antiphonary +antiphoners +antiphonies +antiphrasis +antiprotons +antipyretic +antiquarian +antiquaries +antiquating +antiquation +antiqueness +antiquities +antiracists +antirrhinum +antiseptics +antispastic +antistatics +antistrophe +antithalian +antitheists +antitussive +antitypical +antivenenes +Antofagasta +antonomasia +anxiolytics +anxiousness +apartmental +apathetical +Apatosaurus +Aphaniptera +aphidicides +aphrodisiac +Aphrodisian +aplanospore +apocalypses +apocalyptic +apochromats +apocopating +apocopation +Apocynaceae +apodictical +apodyterium +apogamously +apoliticism +Apollinaire +Apollinaris +apollonicon +apologetics +apologisers +apologising +apologizers +apologizing +apomictical +apomorphine +aponeuroses +aponeurosis +aponeurotic +apophthegms +apophyllite +aposiopesis +aposiopetic +apostatical +apostatised +apostatises +apostatized +apostatizes +apostleship +apostolates +apostolical +apostolised +apostolises +apostolized +apostolizes +apostrophes +apostrophic +apostrophus +apotheosise +apotheosize +apotropaism +Appalachian +appallingly +apparatchik +apparatuses +apparelling +apparelment +apparencies +apparitions +appartement +appealingly +appearances +appeasement +appeasingly +appellation +appellative +apperceived +apperceives +appertained +appertinent +appetitions +application +applicative +applicators +applicatory +appliqu�ing +appointment +apportioned +appositions +appraisable +appreciable +appreciably +appreciated +appreciates +appreciator +apprehended +apprenticed +apprentices +appressoria +approaching +approbating +approbation +approbative +approbatory +appropriate +approvingly +approximate +appurtenant +apriorities +aquaculture +aquafortist +aquamanales +aquamaniles +aquamarines +aquanautics +aquaphobics +aquaplaners +aquaplaning +aquarellist +aquatinting +aquiculture +arabisation +arabization +arachnidans +arachnoidal +arachnology +araeometers +araeometric +araeostyles +araliaceous +arbalesters +arbalisters +arbitragers +arbitrageur +arbitrament +arbitrarily +arbitrating +arbitration +arbitrators +arbitratrix +arbitrement +arbitresses +arboraceous +arborescent +Arcadianism +archaeology +archaically +archangelic +archbishops +archdeacons +archdiocese +archduchess +archduchies +archdukedom +archegonial +archegonium +archenteron +archeometry +archeresses +Archilochus +Archimedean +archipelago +architected +architraved +architraves +archonships +archontates +arctophiles +arctophilia +arcubalists +arduousness +arenicolous +areographic +Areopagitic +areosystile +Argentinean +Argentinian +Argyllshire +Aristarchus +aristocracy +aristocrats +Armenti�res +Arminianism +aromatising +aromatizing +arpeggiated +arpeggiates +arpeggiones +arquebusade +arquebusier +arraignings +arraignment +arrangement +arrestation +arrestments +arrhenotoky +arrivederci +arrogancies +arrogations +artefactual +arterialise +arterialize +arteriotomy +arthrodesis +arthromeres +arthropathy +arthropodal +arthroscopy +arthrospore +articulable +articulated +articulates +articulator +artilleries +artillerist +artiodactyl +artlessness +aryballoses +arytaenoids +asarabaccas +asbestiform +ascendances +ascendences +ascensional +ascertained +ascetically +ascititious +Asclepiadic +asclepiases +ascomycetes +ascriptions +asepticised +asepticises +asepticized +asepticizes +ashamedness +asininities +asparaguses +aspergation +aspergillum +aspergillus +aspersorium +aspheterise +aspheterism +aspheterize +asphyxiants +asphyxiated +asphyxiates +asphyxiator +aspidistras +aspirations +asportation +assafoetida +assailments +assassinate +assemblages +assemblance +assemblyman +assemblymen +assentation +assentingly +assertively +assessments +assessorial +asseverated +asseverates +assibilated +assibilates +assiduities +assiduously +assignation +assignments +assimilable +assimilated +assimilates +assistances +associating +association +associative +assoilments +assortative +assortments +assuagement +assubjugate +assumptions +assuredness +Assyriology +assythments +asteridians +asterisking +asthmatical +astigmatism +astonishing +astoundment +astraphobia +astrictions +astringency +astringents +astrocytoma +astrologers +astronomers +astronomise +astronomize +astuciously +asymmetries +asynartetes +asynartetic +atelectasis +atelectatic +atheistical +Atherinidae +athermanous +athleticism +Atlanticism +Atlanticist +atmologists +atmospheres +atmospheric +atomicities +atomisation +atomization +atrabilious +atramentous +atrociously +attachments +attainments +attaintment +attaintures +attemptable +attendances +attendments +attentional +attentively +attenuating +attenuation +attenuators +attestation +attestative +attirements +attitudinal +attorneydom +attorneyism +attornments +attractable +attractants +attractions +attributing +attribution +attributive +attritional +attuitional +attuitively +attunements +aubergistes +auctioneers +audaciously +audibleness +audiographs +audiologist +audiometers +audiometric +audiophiles +audiotyping +audiotypist +audiovisual +auditioning +auditoriums +auditorship +auditresses +augmentable +Augustinian +auricularly +auriculated +Aurignacian +auscultated +auscultates +auscultator +auspicating +austereness +austerities +Australasia +Australians +Australoids +austringers +autarchical +autarchists +autecologic +authentical +authorcraft +authoresses +authorising +authorities +authorizing +authorships +autocephaly +autochanger +autochthons +autochthony +autocracies +autocrosses +autodidacts +autoerotism +autogenesis +autografted +autographed +autographic +autogravure +autokinesis +autokinetic +automatical +automations +automatised +automatises +automatists +automatized +automatizes +automobiles +automobilia +automorphic +autonomical +autonomists +autophagous +autophanous +autophobies +autophonies +autoplastic +autoscopies +autostradas +autotellers +autotheists +autotrophic +autowinders +auxanometer +auxiliaries +avalanching +avengements +aviatresses +avoirdupois +avouchables +awelessness +awesomeness +awestricken +awestriking +awkwardness +axerophthol +axiological +axiologists +axiomatical +axonometric +Azerbaijani +Azotobacter diff --git a/com/agnibho/code/anagram/dictionary/A12.txt b/com/agnibho/code/anagram/dictionary/A12.txt new file mode 100644 index 0000000..3076b56 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A12.txt @@ -0,0 +1,770 @@ +abandonments +abbreviating +abbreviation +abbreviators +abbreviatory +abbreviature +abecedarians +aberrational +abolishments +abolitionary +abolitionism +abolitionist +abominations +aboriginally +abortionists +abortiveness +abracadabras +abrasiveness +abridgements +abscondences +absinthiated +absoluteness +absorbencies +absorptivity +absquatulate +abstemiously +abstractedly +abstractions +abstractness +abstrictions +abstruseness +absurdnesses +academically +academicians +acanthaceous +acaridomatia +acarodomatia +acarologists +acatalectics +acataleptics +accelerandos +accelerating +acceleration +accelerative +accelerators +acceleratory +accentuality +accentuating +accentuation +acceptations +accessorised +accessorises +accessorized +accessorizes +acciaccatura +accidentally +acclamations +acclimations +acclimatised +acclimatiser +acclimatises +acclimatized +acclimatizer +acclimatizes +accommodable +accommodated +accommodates +accommodator +accompaniers +accompanists +accompanying +accompanyist +accomplished +accomplisher +accomplishes +accordancies +accordionist +accouchement +accoucheuses +accouterment +accoutrement +accrescences +acculturated +acculturates +accumulating +accumulation +accumulative +accumulators +accurateness +accursedness +accusatively +accusatorial +accustrement +acetaldehyde +achaenocarps +achievements +achlamydeous +achromatised +achromatises +achromatized +achromatizes +acknowledged +acknowledges +acolouthoses +acoustically +acousticians +acquaintance +acquiescence +acquirements +acquisitions +acquittances +acroamatical +acrocentrics +acrogenously +acronychally +acrophonetic +acrostically +actinometers +adaptability +adaptiveness +addictedness +additionally +adenectomies +adequateness +adhesiveness +adiaphorists +adjectivally +adjournments +adjudgements +adjudicating +adjudication +adjudicative +adjudicators +adjunctively +adminiculate +administered +administrant +administrate +admiralships +admonishment +adolescences +adoptianists +adoptionists +adorableness +adscititious +adscriptions +adulterating +adulteration +adulterators +adulteresses +adulterising +adulterizing +adulterously +adumbrations +advancements +advantageous +adventitious +adventurists +adverbialise +adverbialize +advisability +aecidiospore +aerodynamics +aeroembolism +aeronautical +aeroneurosis +aeroplankton +aerosiderite +aerostatical +aesthesiogen +aesthetician +aestheticise +aestheticism +aestheticist +aestheticize +aestivations +aethrioscope +aetiological +affectations +affectedness +affectionate +affectioning +afficionados +affiliations +affirmations +affirmatives +affluentness +afforcements +afforestable +affranchised +affranchises +affrications +affrightedly +affrightened +affrightment +affrontingly +aforethought +Africanising +Africanizing +Afrikanerdom +afterburners +afterburning +aftergrasses +aftergrowths +afterthought +agalmatolite +agamogenesis +agapanthuses +agathodaimon +agglomerated +agglomerates +agglutinable +agglutinants +agglutinated +agglutinates +agglutinogen +aggradations +aggrandising +aggrandizing +aggravations +aggregations +aggressively +agoraphobics +agreeability +agribusiness +agricultural +agriproducts +agrobusiness +agrochemical +agroforestry +agroindustry +aguardientes +aichmophobia +aiguillettes +ailourophile +ailourophobe +ailurophiles +ailurophilia +ailurophilic +ailurophobes +ailurophobia +ailurophobic +aircraftsman +aircraftsmen +akolouthoses +albumenising +albumenizing +albuminising +albuminizing +alcoholising +alcoholizing +alcyonarians +aldermanlike +aldermanship +alembication +alexandrines +alexipharmic +Alhambresque +alienability +alimentation +alimentative +alkalescence +alkalescency +alkalimeters +alkalinising +alkalinities +alkalinizing +allegorisers +allegorising +allegorizers +allegorizing +allelomorphs +alleviations +allineations +alliterating +alliteration +alliterative +allopathists +allowability +allusiveness +alphabetical +alphabetised +alphabetises +alphabetized +alphabetizes +alphamerical +alphanumeric +alphasorting +alstroemeria +altaltissimo +alterability +altercations +alternations +alternatives +altimetrical +altitudinous +alycompaines +amalgamating +amalgamation +amalgamative +Amarantaceae +amateurishly +ambassadress +ambidextrous +ambitionless +ambivalences +ambivalently +ambulanceman +ambulancemen +ameliorating +amelioration +ameliorative +amenableness +amentiferous +amerciaments +Americanisms +Americanized +Americanizes +amicableness +amissibility +amitotically +amontillados +amortisation +amortisement +amortization +amortizement +ampelography +amphetamines +amphibrachic +amphictyonic +amphigastria +amphisbaenas +amphisbaenic +amphistomous +amphitheater +amphitheatre +amphitropous +amygdaloidal +anabaptising +anabaptistic +anabaptizing +anacatharsis +anacathartic +anachronisms +anacoluthias +anaerobionts +anaerobiosis +anaerobiotic +anaesthesias +anaesthetics +anaesthetise +anaesthetist +anaesthetize +anagogically +anagrammatic +analogically +analphabetes +analphabetic +analytically +anamorphoses +anamorphosis +anapaestical +anaphylactic +anarchically +anarthrously +anastigmatic +anastomosing +anathematise +anathematize +anatomically +ancestresses +anchoretical +anchoritical +andouillette +androcentric +androsterone +anecdotalist +anemographic +anemophilous +anemophobics +anencephalia +anencephalic +anesthetists +anesthetized +anesthetizes +angiocarpous +angiogenesis +angiosarcoma +Angiospermae +angiospermal +angiostomous +angleberries +Anglocentric +Anglophobiac +anguilliform +angularities +animadverted +animadverter +animalculism +animalculist +animatronics +Ankylosaurus +annihilating +annihilation +annihilative +annihilators +announcement +annularities +annunciating +annunciation +annunciative +annunciators +anotherguess +Anschauungen +answerphones +antagonising +antagonistic +antagonizing +Antananarivo +antarthritic +antasthmatic +antecedences +antecedently +antechambers +antediluvial +antediluvian +antemeridian +antependiums +anteprandial +anthelmintic +antheridiums +antherozoids +antherozooid +anthocarpous +anthologised +anthologises +anthologists +anthologized +anthologizes +anthomaniacs +anthophilous +anthoxanthin +anthropogeny +anthropogony +anthropoidal +anthropology +anthropotomy +antibacchius +antibarbarus +anticathodes +anticatholic +antichthones +anticipating +anticipation +anticipative +anticipators +anticipatory +anticlerical +anticlimaxes +anticyclones +anticyclonic +antidiuretic +antifriction +antihalation +antiheroines +antilegomena +antimacassar +antimalarial +antimetabole +antimnemonic +antimoniates +antimutagens +antineutrino +antineutrons +antioxidants +antiparallel +antiparticle +antipathetic +antipathists +antiperiodic +antipetalous +antiphonally +antiphonical +antiphrastic +antipruritic +antipyretics +antiquarians +antiquations +antirachitic +antirrhinums +antisepalous +antisocially +antistrophes +antistrophic +antistrophon +antitheistic +antithetical +antithrombin +antitussives +antoninianus +apagogically +aperiodicity +apfelstrudel +aphrodisiacs +apiculturist +aplanogamete +aplanospores +apochromatic +apocynaceous +apodeictical +apodyteriums +apogeotropic +apolitically +Apollinarian +apollonicons +apologetical +apoplectical +apostatising +apostatizing +apostolicism +apostolicity +apostolising +apostolizing +apostrophise +apostrophize +apothecaries +apothegmatic +apotheosised +apotheosises +apotheosized +apotheosizes +Appalachians +apparatchiki +apparatchiks +apparentness +apparitional +appartements +appassionato +appellations +appendectomy +appendicitis +appendicular +apperceiving +apperception +apperceptive +appercipient +appertaining +appetisement +appetisingly +appetizingly +applaudingly +applausively +applications +appoggiatura +appointments +apportioning +appositeness +appositional +appraisement +appraisively +appreciating +appreciation +appreciative +appreciators +appreciatory +apprehending +apprehension +apprehensive +apprenticing +appressorium +approachable +approbations +appropriated +appropriates +appropriator +approximated +approximates +appurtenance +appurtenants +aquafortists +aquarellists +arachnophobe +araeosystyle +arbitrageurs +arbitraments +arbitrations +arbitrements +arborescence +arborisation +arborization +archaeometry +archdeaconry +archdioceses +archdukedoms +archegoniate +archenterons +archeometric +archetypical +Archilochian +archipelagic +archipelagos +architecting +architecture +arctophilist +areosystiles +arfvedsonite +Argentineans +Argentinians +argillaceous +aristocratic +Aristolochia +Aristophanes +Aristophanic +Aristotelean +Aristotelian +Aristotelism +arithmetical +arithmomania +arithmometer +armamentaria +aromatherapy +arpeggiating +arpeggiation +arquebusades +arquebusiers +arraignments +arrangements +arrestations +arsphenamine +arterialised +arterialises +arterialized +arterializes +arthroplasty +arthrospores +articulately +articulating +articulation +articulators +articulatory +artificially +artillerists +Artiodactyla +artiodactyls +artistically +artocarpuses +ascendancies +ascendencies +ascertaining +Asclepiadean +asepticising +asepticizing +asparaginase +aspergations +aspergillums +aspheterised +aspheterises +aspheterized +aspheterizes +asphyxiating +asphyxiation +asphyxiators +aspirational +aspiringness +assassinated +assassinates +assassinator +assentaneous +assessorship +asseverating +asseveration +assibilating +assibilation +assignations +assimilating +assimilation +assimilative +associations +assortedness +assuagements +assuefaction +astacologist +astonishment +astoundingly +astragaluses +astringently +astrocytomas +astrogeology +astrological +astronautics +astronomical +astronomised +astronomises +astronomized +astronomizes +astrophysics +asymmetrical +asymptomatic +asymptotical +asynchronism +asynchronous +atheological +atheromatous +athletically +athrocytoses +athrocytosis +Atlanticists +atmospherics +atomisations +atomizations +attaintments +Attenborough +attenuations +attestations +attitudinise +attitudinize +attorneyship +attractingly +attractively +attributable +attributions +auctioneered +audiological +audiologists +audiotypists +auditorships +augmentation +augmentative +auscultating +auscultation +auscultators +auscultatory +auspiciously +Australasian +Austronesian +authenticate +authenticity +authorisable +authorizable +autistically +autoantibody +autocatalyse +autocatalyze +autochangers +autochthones +autocritique +autodestruct +autodidactic +autoexposure +autografting +autographing +autohypnosis +automaticity +automatising +automatizing +automobilism +automobilist +automorphism +autonomously +autoptically +autorickshaw +auxanometers +availability +avariciously +avengeresses +avitaminosis +avowableness +ayuntamiento +azathioprine +Azerbaijanis diff --git a/com/agnibho/code/anagram/dictionary/A13.txt b/com/agnibho/code/anagram/dictionary/A13.txt new file mode 100644 index 0000000..ed62947 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A13.txt @@ -0,0 +1,510 @@ +abbreviations +Aberdeenshire +abnormalities +abolitionists +aboriginalism +aboriginality +abortifacient +absorbability +absquatulated +absquatulates +abstentionism +abstentionist +abstractional +abstractively +abyssopelagic +academicalism +acaridomatium +acarodomatium +acatamathesia +accelerations +accelerometer +accentuations +acceptability +acceptilation +accessibility +accessorising +accessorizing +acciaccaturas +accidentalism +accidentality +acclimatation +acclimatisers +acclimatising +acclimatizers +acclimatizing +accommodating +accommodation +accommodative +accommodators +accompaniment +accompanyists +accomplishers +accomplishing +accordionists +accouchements +accountancies +accoustrement +accouterments +accoutrements +accreditation +acculturating +acculturation +accumulations +accustrements +acetification +acetylcholine +achromaticity +achromatising +achromatizing +achromatopsia +acidification +acknowledging +acotyledonous +acquaintances +acquiescences +acquiescently +acquiescingly +acquirability +acquisitively +acrimoniously +acrobatically +acrylonitrile +actinobacilli +actinomorphic +actinomycosis +actinotherapy +actualisation +actualization +acupuncturist +adaptableness +Addressograph +adenoidectomy +adiabatically +adiaphoristic +adiathermancy +adjudications +admeasurement +adminiculated +adminiculates +administering +administrable +administrants +administrated +administrates +administrator +admirableness +admissibility +admonishments +adsorbability +adulterations +adumbratively +adventuresome +adventuresses +adventuristic +adventurously +adverbialised +adverbialises +adverbialized +adverbializes +advertisement +advertizement +advisableness +aecidiospores +aerobiologist +aerodynamical +aerogenerator +aerolithology +aesthesiogens +aesthetically +aestheticians +aestheticised +aestheticises +aestheticists +aestheticized +aestheticizes +aethrioscopes +affectivities +affenpinscher +affirmatively +affordability +afforestation +affranchising +affreightment +affrightening +affrightments +aforethoughts +afterthoughts +aggiornamento +agglomerating +agglomeration +agglomerative +agglutinating +agglutination +agglutinative +aggravatingly +agonistically +agreeableness +agriculturist +agrobiologist +agrochemicals +agrostologist +ailourophiles +ailourophilia +ailourophilic +ailourophobes +ailourophobia +ailourophobic +aircraftwoman +aircraftwomen +airworthiness +alcoholometer +alcoholometry +aldermanships +alembications +algebraically +algologically +alimentations +alkalescences +allegorically +allelomorphic +alliterations +allochthonous +allowableness +alongshoreman +alongshoremen +alphabetarian +alphabetiform +alphabetising +alphabetizing +alphanumerics +alstroemerias +altaltissimos +alternatively +aluminiferous +amalgamations +amarantaceous +Amaranthaceae +ambassadorial +ambidexterity +ambiguousness +ambitiousness +ambivalencies +ameliorations +amenabilities +Americanizing +amicabilities +amitryptyline +amniocenteses +amniocentesis +amorphousness +amortisations +amortizations +amphigastrium +amphitheaters +amphitheatral +amphitheatres +amphitheatric +amplification +amygdalaceous +Anacardiaceae +anacathartics +anachronistic +anachronously +anaerobically +anaesthetised +anaesthetises +anaesthetists +anaesthetized +anaesthetizes +anagrammatise +anagrammatism +anagrammatist +anagrammatize +analogousness +anaphorically +anaphrodisiac +anaphylactoid +anastigmatism +anathematical +anathematised +anathematises +anathematized +anathematizes +andouillettes +androdioecism +anecdotalists +anemometrical +anesthetizing +anfractuosity +angiosarcomas +angiospermous +anglicisation +anglicization +animadversion +animadverters +animadverting +animalculists +animalisation +animalization +anisophyllous +annexationist +annihilations +anniversaries +announcements +annunciations +anomalistical +answerability +antediluvians +antenniferous +anthelminthic +anthelmintics +antherozooids +anthologising +anthologizing +anthophyllite +anthropogenic +anthropolatry +anthropometry +anthropomorph +anthropopathy +anthropophagi +anthropophagy +anthropophyte +anthroposophy +antiarthritic +antiasthmatic +antibacterial +antiballistic +antichristian +anticipations +anticlericals +anticlimactic +anticlinorium +anticlockwise +anticoagulant +anticorrosive +antidesiccant +antigenically +antihalations +antihistamine +antilogarithm +antimacassars +antimetaboles +antimicrobial +antimnemonics +antimodernist +antinephritic +antineutrinos +antinomianism +antiochianism +antiparallels +antiparticles +antiperiodics +antiphonaries +antipruritics +antipsychotic +antiquitarian +antirachitics +antiscorbutic +antisepticise +antisepticism +antisepticize +antisocialism +antisocialist +antisociality +antispasmodic +antistrophons +antisubmarine +antiterrorist +anythingarian +apathetically +apfelstrudels +aphanipterous +apheliotropic +apiculturists +aplanogametes +apocalyptical +apocatastasis +apochromatism +apodictically +apogeotropism +apoliticality +apomictically +apophlegmatic +apostolically +apostrophised +apostrophises +apostrophized +apostrophizes +apothegmatise +apothegmatist +apothegmatize +apotheosising +apotheosizing +appealingness +appellational +appellatively +appendiculate +apperceptions +appertainment +appetisements +applicability +appoggiaturas +apportionment +appraisements +appreciations +apprehensible +apprehensions +appropinquate +appropinquity +appropriately +appropriating +appropriation +appropriative +appropriators +approximately +approximating +approximation +approximative +appurtenances +Aquifoliaceae +arachnoiditis +arachnologist +arachnophobes +arachnophobia +araeometrical +araeosystyles +arbitrariness +arbitratrixes +arborescences +arboriculture +arborisations +arborizations +archaeologist +archaeometric +archaeopteryx +archbishopric +archduchesses +Archegoniatae +archeometrist +archidiaconal +archimandrite +archipelagoes +architectonic +architectural +architectures +arctophilists +argentiferous +argumentation +argumentative +aristocracies +aristocratism +arithmetician +arithmometers +arithmophobia +armamentarium +arpeggiations +arsenopyrites +arterialising +arterializing +arteriography +arteriotomies +articulations +artificialise +artificiality +artificialize +arundinaceous +Ascensiontide +ascertainable +ascertainment +aspergillosis +aspheterising +aspheterizing +asphyxiations +assassinating +assassination +assassinators +assemblywoman +assemblywomen +assentiveness +assertiveness +assessorships +asseverations +assibilations +assiduousness +assimilations +assistantship +associability +associateship +associativity +assuefactions +assumptionist +Assyriologist +astacological +astacologists +asthenosphere +asthmatically +astonishingly +astonishments +astrapophobia +astringencies +astrocytomata +astrodynamics +astronomising +astronomizing +astrophysical +atheistically +athematically +Atlantosaurus +atmospherical +atomistically +atrociousness +attainability +attentiveness +attitudinised +attitudiniser +attitudinises +attitudinized +attitudinizer +attitudinizes +attorneyships +attributively +auctioneering +audaciousness +audiocassette +audiovisually +augmentations +Australianism +Austroasiatic +autecological +authentically +authenticated +authenticates +authenticator +authorisation +authoritarian +authoritative +authorization +autobiography +autocatalysed +autocatalyses +autocatalysis +autocatalytic +autocatalyzed +autocatalyzes +autocephalous +autochthonism +autochthonous +autodestructs +autodigestion +autoeroticism +automatically +automobilists +autorickshaws +autoschediasm +autoschediaze +availableness +Aviculariidae +axiomatically +ayuntamientos diff --git a/com/agnibho/code/anagram/dictionary/A14.txt b/com/agnibho/code/anagram/dictionary/A14.txt new file mode 100644 index 0000000..13efa85 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A14.txt @@ -0,0 +1,297 @@ +abominableness +abortifacients +absorbefacient +absorptiometer +absorptiveness +absquatulating +abstemiousness +abstentionists +abstractedness +abstractionism +abstractionist +Acanthocephala +accelerometers +acceptableness +acceptilations +acclimatisable +acclimatizable +accommodations +accompaniments +accomplishable +accomplishment +accountability +accountantship +accoustrements +accreditations +accumulatively +accustomedness +achondroplasia +achromatically +acknowledgment +actinobacillus +actualisations +actualizations +acupuncturists +addressability +Addressographs +adenocarcinoma +adiathermanous +admeasurements +adminiculating +administrating +administration +administrative +administrators +administratrix +admissibleness +adscititiously +advantageously +adventitiously +adverbialising +adverbializing +advertisements +advertizements +aerenchymatous +aerobiological +aerobiologists +aerobiotically +aerodynamicist +aeroelastician +aerogenerators +aerohydroplane +aeronautically +aesthesiogenic +aestheticising +aestheticizing +affectionately +affectlessness +affenpinschers +affreightments +aforementioned +Africanisation +Africanization +agglomerations +agglutinations +aggrandisement +aggrandizement +aggressiveness +agriculturally +agriculturists +agrobiological +agrobiologists +agroindustrial +agroindustries +agrostological +agrostologists +aircraftswoman +aircraftswomen +Albigensianism +alcoholisation +alcoholization +alcoholometers +alexipharmakon +alimentiveness +alkalescencies +allegorisation +allegorization +allelomorphism +alloiostrophos +allopathically +alphabetarians +alphabetically +alphamerically +alphanumerical +altimetrically +altitudinarian +altruistically +amaranthaceous +Amaryllidaceae +amateurishness +ambassadorship +ambassadresses +ambidextrously +ambulancewoman +ambulancewomen +amissibilities +amphibological +amplifications +anacardiaceous +anachronically +anaesthetising +anaesthetizing +anagrammatical +anagrammatised +anagrammatises +anagrammatists +anagrammatized +anagrammatizes +anamnestically +anaphrodisiacs +anarthrousness +anathematising +anathematizing +androcephalous +androdioecious +andromedotoxin +andromonoecism +anesthesiology +anesthetically +angiostomatous +angustifoliate +animadversions +anisodactylous +annexationists +antagonisation +antagonization +antaphrodisiac +antediluvially +anthelminthics +anthropography +anthropologist +anthropometric +anthropomorphs +anthropopathic +anthropophobia +anthropophobic +anthropophuism +antiarrhythmic +antibacchiuses +antibarbaruses +anticipatively +anticipatorily +anticlinoriums +anticoagulants +anticonvulsant +anticonvulsive +antidepressant +antidesiccants +antihistamines +antilogarithms +antimetathesis +antimodernists +antimonarchist +antiodontalgic +antipathetical +antiperistasis +antiperspirant +antiphlogistic +antiphonically +antiphrastical +antiquarianism +antiquitarians +antiscriptural +antiseptically +antisepticised +antisepticises +antisepticized +antisepticizes +antisocialists +antithetically +antoninianuses +anythingarians +apheliotropism +aphoristically +apodeictically +apologetically +apophthegmatic +apoplectically +apostrophising +apostrophizing +apothegmatical +apothegmatised +apothegmatises +apothegmatists +apothegmatized +apothegmatizes +appendectomies +appendicectomy +Appendicularia +appertainments +apportionments +appreciatively +apprehensively +apprenticehood +apprenticement +apprenticeship +appropinquated +appropinquates +appropriations +approximations +aquifoliaceous +arachnological +arachnologists +arboricultural +archaeological +archaeologists +archaeometrist +Archaeornithes +archaeozoology +archbishoprics +archdeaconries +archeometrists +archgenethliac +archiepiscopal +archimandrites +architectonics +Arctostaphylos +argumentations +aristocratical +arithmetically +arithmeticians +armamentariums +aromatherapist +arrondissement +articulateness +artificialised +artificialises +artificialized +artificializes +artificialness +Asclepiadaceae +assassinations +asseveratingly +assistantships +associateships +associationism +assumptionists +astigmatically +astrogeologist +astrologically +astronomically +astrophysicist +asymmetrically +asymptotically +asynchronously +attainableness +attemptability +attitudinarian +attitudinisers +attitudinising +attitudinizers +attitudinizing +attractiveness +audiocassettes +audiometrician +Augustinianism +auspiciousness +Aussichtspunkt +authenticating +authentication +authenticators +authorisations +authoritarians +authorizations +autoantibodies +autobiographer +autobiographic +autocatalysing +autocatalyzing +autocoprophagy +autocratically +autodestructed +autoradiograph +autoschediazed +autoschediazes +autotypography +avariciousness +azidothymidine diff --git a/com/agnibho/code/anagram/dictionary/A15.txt b/com/agnibho/code/anagram/dictionary/A15.txt new file mode 100644 index 0000000..bea5b83 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A15.txt @@ -0,0 +1,150 @@ +abiogenetically +absorbefacients +absorptiometers +abstractionists +acanthocephalan +acceptabilities +accessibilities +acclimatisation +acclimatization +accommodatingly +accomplishments +accountableness +achondroplastic +achromatisation +achromatization +acknowledgeable +acknowledgeably +acknowledgement +acknowledgments +acquisitiveness +acrimoniousness +adenocarcinomas +adenohypophyses +adenohypophysis +adenoidectomies +administrations +admissibilities +adventurousness +aerodynamically +aerodynamicists +aeroelasticians +aerohydroplanes +affranchisement +aggrandisements +aggrandizements +agranulocytosis +agriculturalist +alexipharmakons +algorithmically +allegorisations +allegorizations +allotriomorphic +alphabetisation +alphabetization +altitudinarians +amaryllidaceous +ambassadorships +americanisation +americanization +amphitheatrical +anacreontically +anaesthesiology +anaesthetically +anagrammatising +anagrammatizing +andromonoecious +anesthetization +anfractuosities +angustirostrate +ankylostomiasis +annihilationism +anomalistically +antagonisations +antagonizations +antaphrodisiacs +antepenultimate +anthropobiology +anthropocentric +anthropogenesis +anthropological +anthropologists +anthropomorphic +anthropopathism +anthropophagite +anthropophagous +anthropophobics +anthropopsychic +anthroposophist +anticholinergic +antichristianly +anticlericalism +anticonvulsants +antidepressants +antimonarchical +antimonarchists +antiperistalsis +antiperistaltic +antiperspirants +antisepticising +antisepticizing +antitrinitarian +antivivisection +apocalyptically +Apollinarianism +apophthegmatise +apophthegmatist +apophthegmatize +apothegmatising +apothegmatizing +appendicularian +applicabilities +apprenticements +apprenticeships +approachability +appropinquating +appropinquation +appropriateness +arboriculturist +archaeometrists +archaeopteryxes +archgenethliacs +Archichlamydeae +archiepiscopacy +archiepiscopate +architecturally +argumentatively +Aristotelianism +aromatherapists +arrondissements +arterialisation +arterialization +artificialising +artificialities +artificializing +asclepiadaceous +assimilationist +astrodynamicist +astrogeologists +astronavigation +astrophysicists +atherosclerosis +atherosclerotic +atmospherically +attitudinarians +attitudinisings +attitudinizings +audiometricians +Aussichtspunkte +authentications +authoritatively +autobiographers +autobiographies +autodestructing +autodidacticism +autographically +automorphically +autoradiographs +autoradiography +autoschediastic +autoschediazing diff --git a/com/agnibho/code/anagram/dictionary/A16.txt b/com/agnibho/code/anagram/dictionary/A16.txt new file mode 100644 index 0000000..009253d --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A16.txt @@ -0,0 +1,71 @@ +acanthopterygian +acclimatisations +acclimatizations +accountabilities +accumulativeness +acknowledgements +acquaintanceship +actinobacillosis +adenocarcinomata +administratively +administratrixes +advantageousness +aerobiologically +affectionateness +alphanumerically +ambidextrousness +anaerobiotically +anaesthetisation +anaesthetization +anagrammatically +anathematisation +anathematization +anathemitisation +anchylostomiasis +anemographically +anesthesiologist +antagonistically +anthropomorphise +anthropomorphism +anthropomorphist +anthropomorphite +anthropomorphize +anthropomorphous +anthropopithecus +anthropopsychism +anthroposophical +antichristianism +antihypertensive +antiinflammatory +antipathetically +antiphrastically +antistrophically +anythingarianism +apogeotropically +apophthegmatical +apophthegmatised +apophthegmatises +apophthegmatized +apophthegmatizes +apothegmatically +appendicectomies +apprehensibility +apprehensiveness +archaeoastronomy +archaeologically +archaeomagnetism +archaeozoologist +archichlamydeous +aristocratically +Aristolochiaceae +arteriosclerosis +arteriosclerotic +assimilationists +astrodynamicists +astrometeorology +asymptomatically +Australopithecus +authoritarianism +autobiographical +autodidactically +autoradiographic diff --git a/com/agnibho/code/anagram/dictionary/A17.txt b/com/agnibho/code/anagram/dictionary/A17.txt new file mode 100644 index 0000000..0a3b14a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A17.txt @@ -0,0 +1,26 @@ +accommodativeness +acquaintanceships +administratorship +amphitheatrically +anachronistically +anaesthesiologist +anesthesiologists +anthropogeography +anthropologically +anthropomorphised +anthropomorphises +anthropomorphitic +anthropomorphized +anthropomorphizes +anthropomorphosis +anthropophaginian +anticlimactically +antihypertensives +apophthegmatising +apophthegmatizing +appropriativeness +archaeometallurgy +archaeozoologists +argumentativeness +Australopithecine +authoritativeness diff --git a/com/agnibho/code/anagram/dictionary/A18.txt b/com/agnibho/code/anagram/dictionary/A18.txt new file mode 100644 index 0000000..5b6b363 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A18.txt @@ -0,0 +1,15 @@ +anaesthesiologists +anarchosyndicalism +anarchosyndicalist +anthropomorphising +anthropomorphitism +anthropomorphizing +anthropopathically +antitrinitarianism +antivaccinationism +antivaccinationist +antivivisectionism +antivivisectionist +apophthegmatically +Australopithecinae +autobiographically diff --git a/com/agnibho/code/anagram/dictionary/A19.txt b/com/agnibho/code/anagram/dictionary/A19.txt new file mode 100644 index 0000000..7bec566 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A19.txt @@ -0,0 +1,7 @@ +adrenocorticotropic +adrenocorticotropin +anarchosyndicalists +anthropopsychically +antivaccinationists +antivivisectionists +autotransplantation diff --git a/com/agnibho/code/anagram/dictionary/A2.txt b/com/agnibho/code/anagram/dictionary/A2.txt new file mode 100644 index 0000000..1f8fba7 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A2.txt @@ -0,0 +1,14 @@ +aa +Ab +ad +ae +ah +ai +am +an +ar +as +at +aw +ax +ay diff --git a/com/agnibho/code/anagram/dictionary/A20.txt b/com/agnibho/code/anagram/dictionary/A20.txt new file mode 100644 index 0000000..a52c0e0 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A20.txt @@ -0,0 +1,3 @@ +adrenocorticotrophic +adrenocorticotrophin +antiphiloprogenitive diff --git a/com/agnibho/code/anagram/dictionary/A24.txt b/com/agnibho/code/anagram/dictionary/A24.txt new file mode 100644 index 0000000..615f2ad --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A24.txt @@ -0,0 +1 @@ +Aldiborontiphoscophornia diff --git a/com/agnibho/code/anagram/dictionary/A25.txt b/com/agnibho/code/anagram/dictionary/A25.txt new file mode 100644 index 0000000..dbcd8c4 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A25.txt @@ -0,0 +1 @@ +antidisestablishmentarian diff --git a/com/agnibho/code/anagram/dictionary/A28.txt b/com/agnibho/code/anagram/dictionary/A28.txt new file mode 100644 index 0000000..fc49bc8 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A28.txt @@ -0,0 +1 @@ +antidisestablishmentarianism diff --git a/com/agnibho/code/anagram/dictionary/A3.txt b/com/agnibho/code/anagram/dictionary/A3.txt new file mode 100644 index 0000000..cc6b2ad --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A3.txt @@ -0,0 +1,80 @@ +aba +abb +ABC +Abe +aby +ace +act +Ada +add +ado +ads +adz +aft +aga +age +ago +aha +ahs +aia +aid +ail +aim +ain +air +ais +ait +aka +ake +ala +alb +ale +Alf +Ali +all +alp +als +alt +ami +amp +Amy +ana +and +ane +ani +ann +ant +any +ape +apt +Ara +arb +arc +ard +are +ark +arm +Arp +art +ary +Asa +ash +ask +asp +ass +ate +Ats +auf +auk +ava +ave +awa +awe +awl +awn +aws +axe +aye +Ayr +ays +ayu diff --git a/com/agnibho/code/anagram/dictionary/A4.txt b/com/agnibho/code/anagram/dictionary/A4.txt new file mode 100644 index 0000000..b97b6e7 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A4.txt @@ -0,0 +1,262 @@ +abac +abas +abba +abb� +abbs +Abby +abed +Abel +abet +Abib +able +ably +abut +abye +aced +Acer +aces +ache +achy +acid +Acis +acme +acne +Acol +acre +acta +acts +acyl +Adam +Adar +adaw +adds +Addy +Aden +Adie +adit +ados +adry +adze +aeon +aero +aery +aesc +afar +affy +afro +agar +agas +aged +agee +agen +ages +agha +agin +agio +agma +agog +agon +Agra +ague +Ahab +ahas +ahem +ahoy +aias +Aida +aide +aids +ails +aims +a�n� +Ainu +Aire +airn +airs +airt +airy +aits +aitu +ajar +Ajax +ajee +aked +akee +akes +akin +alae +Alan +alap +alar +alas +alay +albe +Albi +albs +Alda +Alec +Aled +alee +ales +alew +Alex +alfa +Alfs +alga +Algy +alit +alky +ally +alma +alme +alms +alod +aloe +alow +Alph +alps +also +alto +alts +alum +Alun +amah +ambo +amen +Amex +amid +amie +Amin +amir +amis +amla +ammo +amok +Amos +amps +Amun +amyl +anal +anan +anas +ance +ands +Andy +anes +anew +anil +anis +ankh +anna +Anne +anno +anns +anoa +anon +anta +ante +anti +ants +anus +apay +aped +apes +apex +Apia +Apis +apod +apse +Apus +aqua +Arab +arak +Aran +arar +arba +arbs +arch +arco +arcs +ards +area +ared +areg +ares +aret +arew +Argo +aria +arid +aril +aris +arks +arle +arms +army +arna +Arne +Arno +arow +arts +arty +arum +Arup +arvo +aryl +asci +Ashe +ashy +Asia +asks +Asma +asps +Asti +atap +Aten +atoc +atok +atom +Aton +atop +Aube +Aude +Auer +aufs +auks +aula +auld +aune +aunt +aura +auto +aval +avas +aver +aves +avid +Avon +avow +away +awdl +awed +awes +awls +awns +awny +AWOL +awry +axed +axel +axes +axil +axis +axle +axon +ayah +Ayer +ayes +ayre +ayus +azan +Azed +azym diff --git a/com/agnibho/code/anagram/dictionary/A5.txt b/com/agnibho/code/anagram/dictionary/A5.txt new file mode 100644 index 0000000..46106cb --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A5.txt @@ -0,0 +1,663 @@ +Aaron +abaca +abaci +aback +abacs +abaft +aband +abase +abash +abask +abate +abaya +abbas +abb�s +abbey +abbot +Abdul +abeam +abear +abele +abets +abhor +abide +abies +abled +abler +ablet +ablow +abode +aboil +abord +abore +abort +about +above +abram +abray +abrim +abrin +Abrus +absey +absit +Abuja +abuna +abune +abuse +abuts +abuzz +abyes +abysm +abyss +acari +accoy +Accra +acerb +acers +ached +aches +acids +acing +acini +ackee +acmes +acock +acold +acorn +acred +acres +acrid +acted +actin +acton +actor +acute +adage +Adams +Adana +adapt +adays +addax +added +adder +Addie +addio +addle +adeem +Adela +Adele +Adeni +adept +adieu +adi�s +adits +Adler +admin +admit +admix +adobe +Adolf +adopt +adore +adorn +adown +adrad +adred +adsum +aduki +adult +adunc +adust +advew +adyta +adzes +aecia +aedes +aegis +aeons +aerie +aesir +Aesop +afara +afear +affix +afire +aflaj +afoot +afore +afoul +Afric +afrit +afros +after +again +agama +agami +agape +agars +agast +agate +agave +agaze +agene +agent +agger +Aggie +aggri +aggro +aggry +aghas +agila +agile +aging +agios +agism +agist +aglee +aglet +agley +aglow +agmas +Agnes +Agnew +agoge +agone +agons +agony +agood +agora +agree +agrin +agued +agues +aguti +ahead +aheap +ahems +Ahern +ahigh +ahind +ahint +Ahmad +Ahmed +ahold +ahoys +ahull +Ahvaz +Ahwaz +Aidan +aided +Aiden +aider +aides +aidos +ailed +Ailsa +aimed +a�n�e +ain't +a�oli +aired +airer +airns +airts +Aisha +aisle +Aisne +aitch +aitus +aizle +ajwan +Akaba +akees +Akela +akene +aking +akkas +Akron +alaap +alack +Alamo +aland +alang +alapa +alarm +alary +alate +alays +Alban +albee +album +aldea +alder +aleft +aleph +alert +Aleut +alfas +Alfie +algae +algal +algid +algin +Algol +algum +alias +alibi +Alice +alien +align +alike +aline +alive +aliya +alkie +alkyd +alkyl +Allah +Allan +allay +all�e +allel +Allen +alley +Allie +allis +Alloa +allod +allot +allow +alloy +allyl +almah +almas +almeh +almes +almug +Alnus +alods +aloed +aloes +aloft +aloha +alone +along +aloof +aloud +alowe +alpha +altar +alter +altos +alula +alums +alure +alway +Alwyn +amahs +amain +amass +amate +Amati +amaze +amban +amber +ambit +amble +ambos +ambry +ameba +ameer +amend +amene +amens +ament +amice +amici +amide +amigo +Amina +amine +amirs +Amish +amiss +amity +amlas +amman +ammon +amnia +amnio +among +amort +amour +amove +Ampex +ample +amply +ampul +amrit +amuck +amuse +Ana�s +anana +anans +ancle +ancon +Andes +Andre +anear +anele +anent +angel +anger +Angie +angle +Anglo +angry +angst +Angus +anigh +anile +anils +anima +anime +anion +anise +Anita +Anjou +anker +ankhs +ankle +ankus +annal +Annam +Annan +annas +annat +annex +Annie +Annis +annoy +annul +anoas +anode +anomy +Anona +anons +antae +antar +anted +antes +antic +antis +Anton +antra +antre +antsy +Anura +anvil +Anwar +Anzac +Anzio +Anzus +aorta +apace +apage +apaid +apart +apayd +apays +apeak +apeek +apert +apery +aphid +aphis +apian +aping +apiol +apish +apism +apnea +apode +apods +apoop +aport +appal +appay +appel +apple +apply +appro +appui +appuy +apr�s +April +apron +apses +apsis +apter +aptly +Aqaba +araba +Arabs +Araby +araks +arame +arars +arbas +arbor +arced +Archy +arcus +Ardea +ardeb +Arden +ardor +aread +areal +arear +areas +areca +aredd +arede +arefy +arena +arere +ar�te +arets +arett +argal +argan +argil +argol +argon +Argos +argot +argue +argus +Arian +arias +ariel +Aries +arils +ariot +arise +arish +Arita +Arkle +arled +arles +Armco +armed +armet +armil +armor +arnut +aroba +aroid +aroma +arose +arrah +Arran +arras +Arrau +array +arr�t +arris +arrow +arsis +arson +artal +artel +Artex +artic +Artie +artsy +Aruba +arums +arval +arvos +Aryan +aryls +asana +Ascot +ascus +Asdic +ashen +Asher +ashes +ashet +Asian +aside +asked +asker +askew +Askey +Aslan +aspen +asper +aspic +Assad +assai +Assam +assay +asses +asset +assot +aster +astir +Aston +Astor +Aswan +asway +aswim +ataps +ataxy +Athos +atilt +atimy +atlas +atman +atocs +atoke +atoks +atoll +atoms +atomy +atone +atony +atopy +atria +atrip +attap +attar +attic +Auber +Auden +audio +audit +auger +aught +augur +aulas +aulic +auloi +aulos +aumil +aunes +aunts +aunty +aurae +aural +auras +aurei +auric +aurum +autos +auxin +avail +avale +avant +avast +Avena +avens +avers +avert +avgas +avian +avine +avion +avise +aviso +avize +avoid +avows +Avril +await +awake +award +aware +awarn +awash +awave +aways +awdls +Awdry +aweel +aweto +awful +awing +awned +awner +awoke +awork +axels +axial +axile +axils +axing +axiom +axles +axman +axmen +axoid +axons +ayahs +ayelp +ayont +ayres +ayrie +azans +Azeri +azide +azine +azoic +azote +azoth +Aztec +azure +azury +azygy +azyme +azyms diff --git a/com/agnibho/code/anagram/dictionary/A6.txt b/com/agnibho/code/anagram/dictionary/A6.txt new file mode 100644 index 0000000..e274e7a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A6.txt @@ -0,0 +1,1041 @@ +Aachen +Aarhus +abacas +abacus +Abadan +abased +abases +abated +abates +abatis +abator +abattu +abayas +abbacy +Abbado +abbess +abbeys +abbots +Abbott +abdabs +abduce +abduct +abears +abeigh +abeles +abelia +abhors +abided +abides +abject +abjure +ablate +ablaut +ablaze +ablest +ablets +ablins +abloom +ablush +aboard +abodes +a'body +abolla +aboral +abords +aborne +aborts +abound +abouts +abrade +abraid +abrazo +abr�g� +abroad +Abroma +abrupt +abseil +absent +absorb +absurd +abulia +abunas +aburst +abused +abuser +abuses +abvolt +Abydos +abying +abysms +acacia +Acadia +acajou +acanth +acarid +acarus +acater +acates +accede +accend +accent +accept +access +accite +accloy +accoil +accord +accost +accrue +accuse +acedia +acetal +acetic +acetyl +Achaea +achage +Achaia +Achebe +achene +achier +aching +achkan +acidic +acidly +acinus +ackees +ackers +acmite +acorns +Acorus +acquit +acrawl +across +acting +action +Actium +active +actons +actors +actual +acture +acuity +acumen +acuter +adages +adagio +Adamic +adapts +Addams +addeem +addend +adders +addict +adding +addios +addled +addles +addoom +adduce +adduct +adeems +Adenis +adepts +adhere +Adidas +adieus +adieux +adipic +adjoin +adjure +adjust +adland +admass +admins +admire +admits +adnate +adnoun +adobes +Adonai +Adonia +Adonic +Adonis +adoors +adopts +adored +adorer +adores +adorns +adread +Adrian +adrift +adroit +adsorb +adsuki +adults +advene +advent +adverb +advert +advice +advise +adward +adytum +adzuki +aecium +aedile +aefald +Aegean +Aeneas +Aeneid +Aeolic +aerate +aerial +aerier +aeries +aerobe +aesces +aether +afaras +afeard +afears +affair +affear +affect +affeer +affied +affine +affirm +afflux +afford +affrap +affray +affret +afghan +afield +aflame +afloat +afraid +afreet +afresh +Africa +afrits +afront +afters +Agadic +agamas +agamic +agamid +agamis +agapae +agaric +Agassi +agates +Agatha +agaves +agazed +ageing +ageism +ageist +agency +agenda +agents +aggers +aggros +aghast +agilas +agiler +agings +agists +Aglaia +agleam +aglets +agnail +agname +agnate +Agnesi +agnise +agnize +agoges +agogic +agoing +agonic +agorae +agoras +agorot +agouta +agouti +agouty +agreed +agrees +agr�g� +agrise +aguise +aguish +agutis +ahimsa +ahorse +aidant +aiders +aidful +aiding +aiglet +aigret +aikido +aikona +Aileen +ailing +aiming +airbus +airers +airier +airily +airing +airman +airmen +airned +airted +airway +aisled +aisles +Aitken +aizles +Aizoon +ajowan +ajwans +akedah +Akelas +akenes +akimbo +alacks +alalia +alangs +Alaric +alarms +alarum +alases +Alaska +alated +alayed +Albany +albata +albedo +albeit +albert +albino +Albion +albite +albugo +albums +Alcaic +Alcock +Alcott +alcove +Alcuin +aldern +alders +Aldine +Aldiss +aldose +Aldous +aldrin +Alecto +alegar +alegge +alephs +Aleppo +alerce +alerts +Aleuts +alevin +alexia +alexic +alexin +Alexis +Alfred +algate +algoid +algums +Alhagi +alibis +Alicia +alidad +aliens +alight +aligns +alined +alines +aliped +alisma +Alison +aliyah +alkali +alkane +alkene +alkies +alkyds +alkyls +alkyne +allays +all�es +allege +allele +allels +Alleyn +alleys +allice +allied +Allier +allies +Allium +allods +allons +allots +allows +alloys +allude +allure +almahs +almain +almehs +almery +almond +almost +almous +almuce +almugs +alnage +alogia +alohas +Alonso +alpaca +alpeen +alphas +alpine +Alpini +Alpino +Alsace +alsike +Altaic +Altair +altars +altern +alters +alteza +Althea +Altman +aludel +alulas +alumna +alumni +alvine +always +Amabel +amadou +Amalfi +Amanda +amated +amates +Amatis +amatol +amazed +amazes +amazon +ambage +ambans +ambers +ambery +ambits +ambled +ambler +ambles +ambush +amebae +amebas +amebic +ameers +amelia +amende +amends +amened +amener +amenta +aments +amerce +amices +amicus +amides +Amidol +amidst +Amiens +amigos +amines +ammans +ammons +amnion +amnios +amoeba +amomum +amoral +amorce +amoret +amount +amours +ampere +ampler +ampule +ampuls +amrita +amrits +amtman +Amtrak +amulet +amused +amuser +amuses +amylum +Amytal +anabas +anadem +anally +analog +ananas +ananke +anarch +anatta +anatto +anbury +anchor +ancile +ancles +ancome +Ancona +ancora +Andean +Andine +Andrea +Andrew +anears +aneath +aneled +aneles +anemia +anemic +anerly +anetic +angary +Angela +Angelo +angels +angers +angico +angina +angled +angler +angles +Anglia +Anglos +Angola +angora +angsts +Anguis +anicut +anight +aniler +animal +animas +animes +animus +anions +anises +Ankara +ankers +ankled +ankles +anklet +Ankole +anlace +anlage +annals +annats +anneal +Annecy +Anneka +annexe +Annika +Annona +annoys +annual +annuli +annuls +anodal +anodes +anodic +anoint +anomic +anomie +anonym +anorak +Anoura +anoxia +anoxic +ansate +Anselm +answer +antara +Anthea +anthem +anther +antiar +antick +antics +anting +antler +antlia +Antony +antres +Antrim +antrum +Anubis +anuria +anuses +anvils +anyhow +anyone +anyway +Aonian +aorist +aortae +aortal +aortas +aortic +aoudad +apache +apathy +apedom +apeman +apemen +apepsy +aper�u +apexes +aphids +aphony +aphtha +apiary +apical +apices +apiece +aplite +aplomb +apneas +apnoea +apodal +apodes +apogee +apollo +aporia +apozem +appair +appall +appals +appayd +appays +appeal +appear +appels +append +apples +applet +apport +appose +appuis +appuys +aprons +aptest +aptote +Apulia +Aquila +Aquino +arabas +Arabia +Arabic +arabin +Arabis +arable +Arafat +Aragon +araise +aralia +Aramis +Aranea +Ararat +arbors +arbour +arbute +arcade +Arcady +arcana +arcane +arched +archer +arches +Archie +archil +archly +archon +arcing +arcked +arctic +ardebs +ardent +ardors +ardour +areach +areads +arecas +aredes +arenas +Arendt +aren't +areola +areole +ar�tes +Aretha +aretts +Arezzo +argala +argali +argand +argans +argent +arghan +argils +Argive +argols +argosy +argots +argued +arguer +argues +argufy +arguli +argute +argyle +Argyll +Ariane +arider +aridly +Ari�ge +ariels +aright +arilli +ariosi +arioso +arisen +arises +arista +aristo +arkite +arkose +arling +Arlott +armada +Armagh +Armani +armets +armful +armies +armils +arming +armlet +armors +armory +armour +armpit +armure +Arnaut +Arnhem +arnica +Arnold +arnuts +arobas +aroids +aroint +arolla +aromas +Arouet +around +arouse +aroynt +arpent +arrack +arrahs +arrant +arrays +arrear +arrect +arrest +arr�ts +arrish +arrive +arroba +arrows +arrowy +arroyo +arshin +arsine +Artaud +artels +artery +artful +Arthur +artics +artier +artist +Aryans +asanas +asarum +ascend +ascent +ascian +aseity +Asgard +ashake +ashame +ashery +ashets +ashier +ashine +ashlar +ashler +Ashley +ashore +ashram +Ashton +Ashura +Asians +asides +Asimov +askant +askari +askers +asking +aslant +asleep +aslope +Asmara +asmear +aspect +aspens +aspers +aspics +aspire +asport +aspout +asquat +assail +assais +assart +assays +assent +assert +assess +assets +assign +Assisi +assist +assize +assoil +assort +assume +assure +astare +astart +astely +astern +asters +asthma +astone +astony +astoop +astral +astray +Astrex +Astrid +astrut +astute +aswarm +aswing +aswirl +aswoon +asylum +atabal +atabeg +atabek +ataman +ataxia +ataxic +Athena +Athene +Athens +athrob +Ativan +atlatl +atmans +atocia +atokal +atokes +atolls +atomic +atonal +atoned +atoner +atones +atonic +atopic +Atreus +atrial +atrium +Atropa +attach +attack +attain +attaps +attend +attent +attest +Attica +attics +Attila +attire +Attlee +attorn +attrap +attrit +attune +atwain +atweel +atween +atwixt +Atwood +aubade +Aubrey +auburn +aucuba +audile +audios +audits +Audrey +Augean +augers +aughts +augite +augurs +augury +august +auklet +aulder +aumail +aumbry +aumils +auntie +auntly +aurate +aureus +aurify +Auriga +aurist +aurora +aurous +Aussie +Austen +Auster +Austin +auteur +author +autism +autumn +auxins +availe +avails +Avalon +avanti +avasts +avatar +avaunt +avenge +avenir +avenue +averse +averts +Avesta +aviary +aviate +avider +avidin +avidly +avised +avises +avisos +avital +avized +avizes +avocet +avoids +avoset +avouch +avoure +avowal +avowed +avower +avowry +avoyer +avulse +awaits +awaked +awaken +awakes +awards +awarer +awarns +awatch +aweary +aweels +awetos +awhape +awheel +awhile +awmous +awners +awnier +awning +awoken +awrack +awrier +awrong +axeman +axemen +axilla +axioms +axises +axoids +Ayesha +Aymara +ayries +azalea +Azania +Azeris +azides +azines +azione +azolla +azonal +azonic +Azores +azotic +Azrael +Aztecs +azures +azygos +azymes diff --git a/com/agnibho/code/anagram/dictionary/A7.txt b/com/agnibho/code/anagram/dictionary/A7.txt new file mode 100644 index 0000000..1d4fccd --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A7.txt @@ -0,0 +1,1389 @@ +Aaronic +abactor +Abaddon +abalone +abandon +abashed +abashes +abasing +abating +abators +abattis +abature +abaxial +Abbasid +abdomen +abduced +abduces +abducts +Abelard +abettal +abetted +abetter +abettor +abeyant +abidden +abiding +Abidjan +abieses +abigail +ability +abioses +abiosis +abiotic +abjects +abjoint +abjured +abjurer +abjures +ablated +ablates +ablator +ablauts +abolish +abollae +abollas +abomasa +aborded +aborted +abought +aboulia +abounds +abraded +abrader +abrades +Abraham +abraids +abraxas +abrazos +abreact +abreast +abridge +abroach +Absalom +abscess +abscind +abscise +absciss +abscond +abseils +absence +absents +absinth +absolve +absorbs +abstain +abthane +abusage +abusers +abusing +abusion +abusive +abuttal +abutted +abutter +abvolts +abyeing +abysmal +abyssal +abysses +acacias +academe +academy +Acadian +acajous +acaleph +acantha +acanths +acapnia +acarian +Acarida +acarids +Acarina +acarine +acaroid +acaters +acatour +acaudal +accabl� +acceded +acceder +accedes +accents +accepts +accidie +accinge +accited +accites +acclaim +accoast +accoils +accompt +accords +accosts +account +accourt +accrete +accrual +accrued +accrues +accurse +accurst +accusal +accused +accuser +accuses +acerate +acerbic +acerose +acerous +acetals +acetate +acetify +acetone +acetose +acetous +Achaean +achages +Achaian +acharn� +acharya +Achates +achenes +Acheron +Acheson +achiest +achieve +achings +achkans +acidify +acidity +aciform +acinose +acinous +aclinic +Acmeism +Acmeist +acmites +acolyte +aconite +acorned +acouchi +acouchy +acquest +acquire +acquist +acquite +acquits +acreage +acridin +acridly +Acrilan +acrobat +acrogen +acromia +acronym +acroter +acrylic +actable +Actaeon +actinal +actings +actinia +actinic +actinon +actions +ActiveX +actress +actuary +actuate +aculeus +acumens +acushla +acutely +acutest +acyclic +adagios +adamant +Adamite +adapted +adapter +adaptor +adaxial +addaxes +addenda +addends +addicts +Addison +addling +address +addrest +adduced +adducer +adduces +adducts +adeemed +adenine +adenoid +adenoma +adeptly +adermin +adharma +adhered +adherer +adheres +adhibit +adipose +adjoins +adjoint +adjourn +adjudge +adjunct +adjured +adjures +adjusts +admiral +admired +admirer +admires +admixed +admixes +adnouns +Adonais +adonise +adonize +adopted +adoptee +adopter +adorers +adoring +adorned +adpress +adrenal +adsorbs +adulate +advance +advened +advenes +advents +adverbs +adverse +adverts +advices +advised +adviser +advises +advisor +aecidia +aediles +aefauld +aegises +aeneous +aeolian +aeonian +aerated +aerates +aerator +aerials +aeriest +aerobes +aerobic +aerobus +aerosol +afeared +affable +affably +affaire +affairs +affeard +affeare +affears +affects +affeers +affiche +affined +affines +affirms +affixed +affixes +afflict +afforce +affords +affrays +affront +afghani +afghans +afreets +African +aftmost +aga�ant +against +agamids +agamoid +agamous +agarics +ageings +ageists +agelast +ageless +agelong +agendas +agendum +agented +aggrace +aggrade +aggrate +aggress +agilely +agilest +agility +aginner +agisted +agister +agistor +agitate +agitato +agitpop +agnails +agnamed +agnames +agnates +agnatic +agnised +agnises +agnized +agnizes +agnomen +agnosia +agogics +agonies +agonise +agonist +agonize +agoutas +agoutis +agraffe +agrapha +agraste +agravic +agr�g�s +Agrippa +aground +Agutter +aheight +Ahriman +ahungry +aiblins +aidance +aidless +aiglets +aigrets +ailanto +aileron +ailette +ailment +aimless +Aintree +aircrew +Airdrie +airfare +airflow +airfoil +airhead +airhole +airiest +airings +airless +airlift +airline +airning +airplay +airport +airship +airsick +airside +airstop +airtime +airting +airward +airwave +airways +aisling +aitches +Ajaccio +ajowans +ajutage +Akihito +akvavit +Alabama +Aladdin +alameda +Alamein +alamode +alamort +alanine +alannah +alarmed +alarums +Alaskan +alaying +Albania +albedos +Albeniz +albergo +Alberta +Alberti +alberts +albinic +albinos +albitic +albugos +albumen +albumin +Alcaics +alcaide +alcalde +alcayde +alc�zar +alchemy +alchera +alchymy +Alcidae +Alcides +alcohol +alcopop +Alcoran +alcorza +alcoves +Aldhelm +aldoses +Aldwych +alecost +alegars +alegges +alembic +Alencon +alength +alepine +alerces +alerion +alerted +alertly +aleuron +alevins +alewife +alexins +alfalfa +alfaqu� +alf�rez +Alfonso +alforja +Alfreda +Alfredo +Algarve +algates +algebra +Algeria +algesia +algesis +Algiers +alginic +aliases +alicant +alidade +alidads +aliened +alienee +alienor +aliform +alights +aligned +aliment +alimony +alining +alipeds +aliquot +alismas +Alister +aliunde +alizari +alkalis +alkanes +alkanet +alkenes +Alkoran +alkynes +allayed +allayer +alleged +alleger +alleges +allegge +Allegri +allegro +alleles +Allenby +Allende +allergy +alleyed +allheal +allices +allises +Allison +allness +allonge +allonym +allowed +alloyed +allseed +alluded +alludes +allured +allurer +allures +alluvia +allying +Almaine +almanac +Almeria +almirah +almonds +almoner +almonry +almuces +alnager +alnages +alodial +alodium +aloetic +alongst +aloofly +alpacas +alpeens +alphorn +alpines +already +alright +Alsatia +alsikes +altered +alterne +altesse +altezza +althaea +Althing +althorn +aludels +alumina +alumish +alumium +alumnae +alumnus +alunite +alveary +alveole +alveoli +alyssum +amabile +Amadeus +amadous +amalgam +amanita +amarant +amassed +amasses +amateur +amating +amation +amative +amatory +amazing +amazons +ambages +ambassy +ambatch +ambient +ambitty +amblers +ambling +amboina +ambones +amboyna +ambries +ambroid +Ambrose +ameboid +amenage +amended +amender +amenest +amening +amenity +amental +amentia +amentum +amerced +amerces +America +Amerind +Ameslan +Amharic +amiable +amiably +amildar +amities +ammeter +ammiral +ammonal +ammonia +amnesia +amnesic +amnesty +amoebae +amoebas +amoebic +amomums +amongst +amorant +amorces +amorets +amorini +amorino +amorism +amorist +amorosa +amoroso +amorous +amosite +amounts +ampassy +amperes +amphora +amplest +amplify +ampoule +ampules +ampulla +amputee +amritas +amtmans +amtrack +amulets +amusers +amusing +amusive +amygdal +amylase +amylene +amyloid +anadems +anaemia +anaemic +anagoge +anagogy +anagram +Anaheim +analogs +analogy +analyse +analyst +analyze +Ananias +anapest +anarchs +anarchy +Anasazi +anatase +Anatole +anatomy +anattas +anattos +anaxial +anchors +anchovy +ancient +ancomes +ancones +ancress +andante +andiron +Andorra +Andover +Andrews +android +andvile +aneared +anelace +aneling +anemone +aneroid +aneurin +Anfield +angekok +angelic +Angelou +angelus +angered +angerly +Angevin +angicos +anginal +angioma +anglers +Anglian +anglice +anglify +angling +anglist +Angolan +angoras +angrier +angrily +anguine +anguish +angular +anicuts +anilest +aniline +anility +animals +animate +animism +animist +anionic +aniseed +anklets +anklong +anklung +Ankoles +ankuses +anlaces +anlages +Annabel +annates +annatta +annatto +anneals +annelid +Annette +annexed +annexes +annicut +annoyed +annoyer +annuals +annuity +annular +annulet +annulus +anodise +anodize +anodyne +anoeses +anoesis +anoetic +anoints +anomaly +anonyma +anonyms +anoraks +anorexy +anosmia +another +Anouilh +ansated +answers +antacid +Antaeus +Antares +antefix +anteing +antenna +anthems +anthers +anthoid +Anthony +anthrax +antiars +Antibes +antigay +antigen +Antigua +antilog +antings +Antioch +antique +antiwar +antlers +antliae +antlike +Antonia +Antonio +antonym +antrums +Antwerp +anurous +anxiety +anxious +anybody +anyroad +anytime +anyways +anywhen +anywise +anziani +aorists +aoudads +apaches +apadana +apagoge +apanage +aparejo +apatite +apaying +apehood +apepsia +aper�us +aperies +apetaly +aphagia +aphasia +aphasic +aphelia +aphesis +aphetic +aphides +aphonia +aphonic +aphotic +aphthae +aphylly +Apician +apishly +aplanat +aplasia +aplenty +apnoeas +apocope +apodous +apogamy +apogeal +apogean +apogees +apollos +apology +apoplex +apostil +apostle +apothem +apozems +appalls +appalti +appalto +apparat +apparel +appeals +appears +appease +appends +apperil +applaud +Appleby +applets +applied +applier +applies +appoint +apports +apposed +apposer +apposes +appress +apprise +apprize +approof +approve +appuied +appulse +appuyed +apraxia +apricot +aproned +apropos +apsaras +apsidal +apsides +apteral +apteria +apteryx +aptness +aptotes +aptotic +aquafer +aquaria +aquatic +aquavit +aqueous +aquifer +Aquilon +Aquinas +Arabian +arabica +arabise +Arabism +Arabist +Arabize +araceae +arachis +Arachne +aralias +Aramaic +Araneae +araneid +Arapaho +araroba +arbiter +arblast +arboret +arbours +arbutes +arbutus +arcaded +arcades +Arcadia +arcanum +archaic +archers +archery +archest +Archeus +archils +arching +archive +archlet +archons +archway +arcings +arcking +arctiid +arctoid +arcuate +arcuses +Ard�che +ardency +ardours +arduous +areaway +areding +areolae +areolar +areoles +aretted +argalas +argalis +argands +argents +arghans +arguers +arguing +argulus +arguses +argyles +argyria +Ariadne +Arianna +Arianne +aridest +aridity +arietta +ariette +arillus +Arimasp +ariosos +Ariosto +aripple +arishes +arising +aristas +aristos +Arizona +arkites +armadas +armband +Armenia +armfuls +armhole +armiger +armilla +armless +armlets +armlock +armoire +armored +armorer +Armoric +armours +armoury +armpits +armrest +armures +arnicas +arnotto +aroints +arollas +arousal +aroused +arouser +arouses +aroynts +arpents +arracks +arraign +arrange +arrased +arrases +arrayal +arrayed +arrayer +arrears +arreede +arrests +arriage +arri�r� +arriero +arrises +arrival +arrived +arrives +arrobas +arroyos +arsenal +arsenic +arsheen +arshine +arshins +arsines +Artegal +Artemis +article +artiest +artisan +artiste +artists +artless +artsman +artwork +arugula +Arundel +asarums +ascarid +ascaris +ascends +ascents +ascesis +ascetic +ascians +ascidia +ascites +ascitic +ascribe +asepses +asepsis +aseptic +asexual +ashamed +Ashanti +Ashdown +Ashford +ashiest +ashiver +ashlars +ashlers +Ashling +Ashmole +ashrama +ashrams +Asianic +Asiatic +asinine +askance +askaris +askesis +asklent +Asmoday +asocial +Aspasia +aspects +asperge +asperse +asphalt +asphyxy +aspidia +aspired +aspires +aspirin +asports +asprawl +aspread +asprout +asquint +Asquith +assagai +assails +assarts +assault +assayed +assayer +assegai +assents +asserts +assiege +assigns +assists +assized +assizer +assizes +assoils +assorts +assuage +assumed +assumes +assured +assurer +assures +asswage +Assyria +astable +Astaire +Astarte +astatic +astatki +asteism +astelic +asteria +asterid +Asterix +asthore +astilbe +astound +astrand +astrict +astride +astroid +astuter +astylar +asudden +asunder +asylums +atabals +atabegs +atabeks +atabrin +atactic +ataghan +atalaya +atamans +ataraxy +Atat�rk +atavism +atebrin +atelier +athanor +atheise +atheism +atheist +atheize +atheous +a'thing +athirst +athlete +Athlone +athrill +athwart +atingle +atishoo +Atlanta +atlases +atlatls +atokous +atomies +atomise +atomism +atomist +atomize +atoners +atoning +atopies +atresia +atriums +atrophy +atropia +atropin +Atropos +attaboy +attach� +attacks +attains +attaint +attempt +attends +attests +Atticus +attired +attires +attorns +attract +attraps +attrist +attrite +attrits +attuent +attuite +attuned +attunes +atweels +aubades +auberge +Auberon +auction +aucubas +audible +audibly +audient +audiles +audited +auditor +Audubon +aufgabe +augitic +augment +augural +augured +augurer +Augusta +auguste +augusts +auklets +auldest +aumails +aunties +aurally +aurated +aurates +aureate +aureity +aurelia +aureola +aureole +auricle +aurists +aurochs +aurorae +auroral +auroras +Auslese +auspice +Aussies +austere +austral +Austria +Austric +autarky +auteurs +authors +autobus +autocar +autocue +automat +autonym +autopsy +autovac +autumns +autumny +Auxerre +auxesis +auxetic +availed +avarice +avatars +avaunts +Avebury +avenged +avenger +avenges +avenses +aventre +avenues +average +Avernus +averred +averted +Avertin +Avestan +Avestic +Aveyron +aviated +aviates +aviator +Avicula +avidest +avidins +avidity +aviette +aviform +Avignon +avionic +avising +avizing +avocado +avocets +avoided +avosets +avowals +avowers +avowing +avoyers +avulsed +avulses +awaited +awakens +awaking +awarded +awarest +awarned +aweless +awesome +awfully +awhaped +awhapes +awheels +awkward +awlbird +awniest +awnings +awnless +awriest +axially +axillae +axillar +axinite +axolotl +Aykroyd +Aymaran +Aymaras +azaleas +Azanian +Azilian +azimuth +aziones +azotise +azotize +azotous +Aztecan +azulejo +azurean +azurine +azurite +azygous +azymite +azymous diff --git a/com/agnibho/code/anagram/dictionary/A8.txt b/com/agnibho/code/anagram/dictionary/A8.txt new file mode 100644 index 0000000..172c5df --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A8.txt @@ -0,0 +1,1621 @@ +aardvark +aardwolf +aasvogel +abactors +abacuses +abalones +abampere +abandons +abashing +abatable +abattoir +abatures +abbacies +Abbasids +abbatial +abbesses +Abderian +Abderite +abdicant +abdicate +abdomens +abducent +abducing +abducted +abductee +abductor +Abdullah +abearing +Abednego +Aberdare +Aberdeen +aberrant +aberrate +abessive +abetment +abettals +abetters +abetting +abettors +abeyance +abeyancy +abhorred +abhorrer +abidance +abidings +abigails +Abingdon +abjected +abjectly +abjoints +abjurers +abjuring +ablating +ablation +ablative +ablators +ablution +abnegate +abnormal +aboideau +aboiteau +abomasal +abomasum +abomasus +abording +aborning +aborting +abortion +abortive +abounded +abradant +abraders +abrading +Abrahams +abraided +abrasion +abrasive +abreacts +abricock +abridged +abridger +abridges +abrogate +abrupter +abruptly +abscinds +abscised +abscises +abscisin +abscissa +abscisse +absconds +abseiled +absences +absented +absentee +absently +absinthe +absinths +absolute +absolved +absolver +absolves +absonant +absorbed +absorber +abstains +absterge +abstract +abstrict +abstruse +absurder +absurdly +abthanes +abundant +abusages +abusions +abutilon +abutment +abuttals +abutters +abutting +academes +academia +academic +Acadians +Acalepha +acalephe +acalephs +acanthas +acanthin +acanthus +Acapulco +acaridan +acarpous +acatours +acaudate +acauline +acaulose +Accadian +acceders +acceding +accented +accentor +accepted +accepter +acceptor +accessed +accesses +accident +accinged +accinges +acciting +acclaims +accoasts +accolade +accompts +accorage +accorded +accorder +accosted +accounts +accourts +accouter +accoutre +accredit +accreted +accretes +accruals +accruing +accuracy +accurate +accursed +accurses +accusals +accusers +accusing +accustom +acerbate +acerbity +acervate +acescent +acetates +acetones +Achaeans +Achaians +acharyas +achenial +achenium +Achernar +achieved +achiever +achieves +achillea +Achilles +achingly +achromat +acicular +acidhead +acidness +acidosis +acierage +acierate +Acmeists +acoemeti +acolytes +aconites +aconitic +aconitum +acosmism +acosmist +acoustic +acquaint +acquests +acquight +acquiral +acquired +acquires +acquited +acquites +acridine +acridity +acrimony +acrobats +acrogens +acrolein +acrolith +acromial +acromion +acronyms +acrosome +acrostic +acroters +acrotism +acrylics +actiniae +actinian +actinias +actinide +actinism +actinium +actinoid +actioned +actioner +activate +actively +activism +activist +activity +actressy +actually +actuated +actuates +actuator +aculeate +acupoint +acushlas +adamants +Adamical +Adamitic +adapters +adapting +adaption +adaptive +adaptors +addebted +addendum +addicted +addition +additive +addorsed +adducent +adducers +adducing +adducted +adductor +adeeming +Adelaide +Adenauer +adenitis +adenoids +adenomas +adequacy +adequate +adespota +adessive +adherent +adherers +adhering +adhesion +adhesive +adhibits +Adiantum +adjacent +adjoined +adjourns +adjudged +adjudges +adjuncts +adjuring +adjusted +adjuster +adjustor +adjutage +adjutant +adjuvant +admasses +admirals +admirers +admiring +admitted +admixing +admonish +adnation +adonised +adonises +adonized +adonizes +adoptees +adopters +adopting +adoption +adoptive +adorable +adorably +adorning +adrenals +Adrianne +Adriatic +Adrienne +adroiter +adroitly +adscript +adsorbed +adularia +adulated +adulates +adulator +adultery +aduncate +aduncity +aduncous +advanced +advances +advening +adverser +adverted +advisers +advising +advisors +advisory +advocaat +advocacy +advocate +advowson +adynamia +adynamic +aecidium +aegirine +aegirite +aeglogue +aegrotat +aerating +aeration +aerators +aerially +aeriform +aerobics +aerobomb +aerodart +aerodyne +Aeroflot +aerofoil +aerogram +aerolite +aerolith +aerology +aeronaut +aeronomy +aerosols +aerostat +aesculin +Aesculus +aesthete +aestival +afearing +affabler +affeared +affected +affecter +affeered +afferent +affiance +affiches +affinity +affirmed +affirmer +affixing +afflated +afflatus +afflicts +affluent +affluxes +afforced +afforces +afforded +afforest +affrayed +affright +affront� +affronts +affusion +afghanis +aflutter +Africana +Africans +aftereye +aga�ante +agacerie +agalloch +Agamidae +agamoids +Aganippe +agedness +agelasts +agencies +agendums +agential +agenting +agentive +ageratum +aggraces +aggraded +aggrades +aggrated +aggrates +aggrieve +aginners +agiotage +agisters +agisting +agistors +agitated +agitates +agitator +agitprop +aglimmer +aglitter +aglossia +agnation +agnising +agnizing +agnomens +agnostic +agonised +agonises +agonists +agonized +agonizes +Agostini +agraffes +agraphia +agraphic +agraphon +agrarian +agreeing +agr�mens +agr�ment +agrestal +agrestic +Agricola +agrimony +agrology +agronomy +aguacate +aguishly +aidances +aigrette +aiguille +ailantos +ailerons +ailettes +ailments +airborne +airbrush +airburst +airbuses +aircraft +aircrews +airdrome +Airedale +airfares +airfield +airflows +airfoils +airframe +airgraph +airheads +airholes +airiness +airlifts +airliner +airlines +airplane +airports +airscrew +airshaft +airships +airspace +airspeed +airstops +airstrip +airtight +airtimes +airwards +airwaves +airwoman +airwomen +ajutages +akaryote +akineses +akinesia +akinesis +Akkadian +akvavits +Alabaman +alacrity +alamedas +alannahs +alarming +alarmism +alarmist +alarumed +Alasdair +Alaskans +Alastair +alastrim +albacore +Albanian +alberghi +Alberich +Albertan +albicore +albiness +albinism +Albinoni +albitise +albitize +alburnum +alcahest +alcaides +alcaldes +alcatras +Alcatraz +alcaydes +alc�zars +Alcestis +alchemic +alcohols +alcopops +alcorzas +Aldaniti +aldehyde +alderman +aldermen +Alderney +aleatory +alebench +alecosts +Alekhine +alembics +alerions +alerting +aleurone +alewives +alfalfas +alforjas +alfresco +algaroba +algebras +Algerian +algerine +Algernon +algicide +algidity +alginate +algology +Algonkin +algorism +alguacil +alguazil +Alhambra +aliasing +Alicante +alicants +alidades +alienage +alienate +alienees +aliening +alienism +alienist +alienors +alighted +aligning +aliments +aliquant +Alistair +alizarin +alizaris +alkahest +alkalies +alkalify +alkaline +alkalise +alkalize +alkaloid +alkanets +allative +allayers +allaying +allegers +allegges +alleging +allegory +allegros +alleluia +allergen +allergic +allerion +alleyway +allheals +alliance +alligate +allocate +allodial +allodium +allogamy +allonges +allonyms +allopath +allosaur +allotted +allottee +allowing +alloying +allseeds +allspice +alluding +allurers +alluring +allusion +allusive +alluvial +alluvion +alluvium +Almagest +almanacs +almeries +almighty +almirahs +almoners +alnagers +alodiums +aloetics +alogical +alopecia +Aloysius +alphabet +alphorns +alpinism +alpinist +Alsatian +altarage +alterant +altering +alterity +alternat +alternes +althaeas +althorns +although +altitude +altrices +altruism +altruist +aluminum +alveated +alveolar +alveoles +alveolus +alyssums +amadavat +amalgams +amandine +amanitas +amaracus +amaranth +amarants +amaretto +Amarillo +amassing +amateurs +amazedly +Amazonas +amberite +amberoid +amberous +ambiance +ambience +ambients +ambition +ambivert +amblings +ambrosia +ambulant +ambulate +ambushed +ambusher +ambushes +ameiosis +amelcorn +amenable +amenably +amenders +amending +amercing +American +Americas +Amerinds +amethyst +amiantus +amicable +amicably +amidmost +amildars +amissing +amitosis +amitotic +ammeters +ammirals +ammoniac +ammonite +ammonium +ammonoid +amnesiac +amnesics +amniotic +amoeboid +amorally +amorance +amoretti +amoretto +amorists +amorosas +amorosos +amortise +amortize +amounted +amperage +Amphibia +amphipod +amphorae +amphoric +amplexus +ampoules +ampullae +amputate +amputees +Amritsar +amtracks +amuletic +Amundsen +amusable +amusedly +amusette +amygdala +amygdale +amygdule +amylases +amylenes +anabases +anabasis +anabatic +anableps +anabolic +anaconda +Anacreon +anaerobe +anaglyph +anagoges +anagogic +anagrams +analcime +analcite +analecta +analects +analemma +analogic +analogon +analogue +analysed +analyser +analyses +analysis +analysts +analytic +analyzed +analyzer +analyzes +ananases +anapaest +anapests +anaphase +anaphora +anarchal +anarchic +anasarca +Anasazis +anathema +Anatolia +anatomic +anatropy +anburies +ancestor +ancestry +anchored +anchoret +ancients +andantes +Andersen +Anderson +andesine +andesite +andirons +Andorran +Andretti +androgen +androids +Andropov +andviles +anearing +anecdote +anechoic +anelaces +anemones +aneroids +anestrum +anestrus +aneurism +aneurysm +angekkok +angekoks +Angeleno +angelica +Angelico +Angelina +angering +angiomas +angklung +Anglesey +Anglican +anglings +anglists +Angolans +angriest +Anguilla +anguiped +angulate +anhedral +anhungry +aniconic +animalic +animally +animated +animater +animates +animatic +animator +animists +animuses +aniseeds +anisette +ankerite +anklongs +anklungs +ankylose +annalise +annalist +annalize +annattas +annattos +annealed +annealer +Annelida +annelids +annexing +annexion +annexure +annicuts +Annigoni +annotate +announce +annoyers +annoying +annually +annulars +Annulata +annulate +annulets +annulled +annulose +anodised +anodises +anodized +anodizes +anodynes +anointed +anointer +Anoplura +anoretic +anorexia +anorexic +anorthic +anourous +Ansafone +anserine +Ansermet +answered +answerer +Antabuse +antacids +antecede +antedate +antefixa +antelope +antenati +antennae +antennal +antennas +antepast +anterior +anteroom +antevert +anthelia +anthelix +anthemed +anthemia +antheses +anthesis +Anthozoa +antibody +anticked +anticous +antidote +Antietam +antigens +Antigone +Antiguan +antihero +Antilles +antilogs +antilogy +Antilope +antimask +antimony +antinode +antinomy +antiphon +antipode +antipole +antipope +antiqued +antiques +antiriot +antirust +antisera +antiship +antiskid +antistat +antitank +antithet +antitype +antlered +antliate +Antonine +antonyms +antonymy +antrorse +anyplace +anything +anywhere +aoristic +aortitis +apagogic +apanaged +apanages +aparejos +apatetic +aperient +aperitif +aperture +aphanite +aphasiac +aphelian +aphelion +aphetise +aphetize +aphicide +aphidian +aphonous +aphorise +aphorism +aphorist +aphorize +aphthous +apiarian +apiaries +apiarist +apically +aplanats +aplastic +aplustre +apocrine +Apocynum +apodoses +apodosis +apogaeic +apogamic +apograph +apolline +Apollyon +apologia +apologue +apomixis +apophyge +apoplexy +apositia +apositic +apospory +apostasy +apostate +apostils +apostles +apothegm +appalled +appanage +apparels +apparent +appaying +appealed +appeared +appearer +appeased +appeaser +appeases +appended +appendix +appestat +appetent +appetise +appetite +appetize +applauds +applause +Appleton +appliers +appliqu� +applying +appoints +apposers +apposing +apposite +appraise +apprised +appriser +apprises +apprized +apprizer +apprizes +approach +approofs +approval +approved +approver +approves +appulses +appuying +apricate +apricots +Aprilian +Aprilish +apronful +aproning +apterism +apterium +apterous +aptitude +Apuleius +apyretic +apyrexia +aquacade +aquafers +aqualung +aquanaut +aquarian +aquarist +aquarium +Aquarius +aquatics +aquatint +aquavits +aqueduct +aquifers +aquiline +Arabella +Arabians +arabised +arabises +Arabists +arabized +arabizes +araceous +arachnid +Araldite +Aramaean +Aramaism +Araneida +araneids +araneous +Arapahos +arapaima +araponga +arapunga +Arawakan +arbalest +arbalist +arbiters +arbitral +arblasts +arboreal +arboreta +arborist +arborous +arboured +Arbroath +Arcadian +arcading +arcanely +arcanist +Archaean +Archaeus +archaise +archaism +archaist +archaize +archduke +archival +archived +archives +archlets +archlute +archmock +archness +archways +archwise +arckings +arctiids +Arcturus +arcuated +Ardennes +ardently +areading +areaways +Arenaria +areolate +Arethusa +aretting +argemone +argentum +Argestes +arginine +argonaut +argosies +arguable +arguably +argufied +argufier +argufies +argument +argutely +argyrite +Arianise +Arianism +Arianize +aridness +ariettas +arillary +arillate +arillode +arilloid +arisings +aristate +Arizonan +Arkansan +Arkansas +Armagnac +Armalite +armament +armature +armbands +armchair +Armenian +Armenoid +armgaunt +armholes +armigero +armigers +armillas +Arminian +armlocks +armoires +armorers +armorial +armories +armoring +armorist +armoured +armourer +armozeen +armozine +armrests +arnottos +arointed +aromatic +arousals +arousers +arousing +aroynted +arpeggio +arquebus +arraigns +arranged +arranger +arranges +arrantly +arrasene +arrayals +arrayers +arraying +arreeded +arreedes +arrested +arrestee +arrester +arrestor +arriages +arrieros +arrishes +arrivals +arriving +arrogant +arrogate +arsenals +arsenate +arsenide +arsenite +arsheens +arshines +arsonist +arsonite +artefact +arterial +arteries +Artesian +artfully +articled +articles +artifact +artifice +artiness +artisans +artistes +artistic +artistry +artworks +Arvicola +arvicole +Aryanise +Aryanize +asbestic +asbestos +ascarids +ascended +ascender +ascetics +ascidian +ascidium +ascorbic +ascribed +ascribes +aseismic +aseptate +aseptics +Ashcroft +asheries +ashlared +Ashleigh +ashlered +ashramas +Asmodeus +asperate +asperged +asperger +asperges +asperity +asperous +aspersed +asperses +asphalts +aspheric +asphodel +asphyxia +aspidium +aspirant +aspirate +aspiring +aspirins +asported +assagais +assailed +assailer +Assamese +assarted +assassin +assaults +assayers +assaying +assegais +assemble +assembly +assented +assenter +assentor +asserted +asserter +assertor +assessed +assesses +assessor +assieged +assieges +assiento +assignat +assigned +assignee +assignor +assisted +assizers +assizing +assoiled +assonant +assonate +assorted +assorter +assuaged +assuages +assuming +assureds +assuring +asswaged +asswages +Assyrian +astatine +Asterias +asterids +asterisk +asterism +asteroid +asthenia +asthenic +asthores +astigmia +astilbes +astomous +astonied +astonish +astounds +astragal +Astrexes +astricts +astringe +astroids +astucity +astutely +astutest +Asunci�n +asynergy +asystole +ataghans +Atalanta +ataraxia +ataraxic +ateliers +athanasy +athanors +atheised +atheises +atheists +atheized +atheizes +atheling +atheneum +Athenian +atherine +atheroma +Atherton +athetise +athetize +athetoid +athletes +athletic +Atkinson +Atlantes +Atlantic +Atlantis +atmology +atmolyse +atmolyze +atomical +atomised +atomiser +atomises +atomists +atomized +atomizer +atomizes +atrament +atrazine +atremble +atrocity +atropine +atropism +atropous +attaboys +attached +attach�s +attacked +attacker +attained +attaints +attemper +attempts +attended +attendee +attender +attentat +attercop +attested +attester +attestor +Atticise +Atticism +Atticize +attiring +attitude +attorned +attorney +attracts +attuited +attuites +attuning +atwitter +atypical +auberges +aubretia +aubrieta +Aubusson +Auckland +auctions +audacity +audience +audients +auditing +audition +auditive +auditors +auditory +Auerbach +aufgabes +Aufidius +augments +Augsburg +auguries +auguring +Augustan +augustly +Augustus +aularian +aumailed +aumbries +aurelian +aurelias +Aurelius +aureolas +aureoled +aureoles +auricled +auricles +auricula +aurified +aurifies +auriform +aurorean +Ausonian +auspices +austerer +Austrian +autacoid +autarchy +autarkic +authored +autistic +Autobahn +autocade +autocarp +autocars +autocrat +autocues +autodyne +autogamy +autogeny +autogiro +autogyro +autoharp +autology +autolyse +autolyze +automata +automate +automats +autonomy +autonyms +autopsia +autoptic +autosome +autotomy +autotype +autovacs +autumnal +autunite +Auvergne +auxiliar +avadavat +availing +avarices +avengers +avenging +aventail +aventred +aventres +aventure +averaged +averages +averment +averring +aversely +aversion +aversive +averting +aviaries +aviarist +aviating +aviation +aviators +aviatrix +avidness +Aviemore +aviettes +avifauna +avionics +avocados +Avogadro +avoiding +avoision +avouched +avouches +avowable +avowedly +avowries +avulsing +avulsion +awaiting +awakened +awakings +awanting +awarding +awarning +awearied +awhaping +awlbirds +axiality +axillary +axiology +axolotls +axoplasm +Aycliffe +ayenbite +Ayrshire +Ayurveda +Azanians +azimuths +azotised +azotises +azotized +azotizes +azoturia +azulejos +azurines +azygoses +azymites diff --git a/com/agnibho/code/anagram/dictionary/A9.txt b/com/agnibho/code/anagram/dictionary/A9.txt new file mode 100644 index 0000000..0f040cb --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/A9.txt @@ -0,0 +1,1811 @@ +aardvarks +Aaronical +aasvogels +abactinal +abamperes +abandoned +abandonee +abasement +abashedly +abashless +abashment +abatement +abattises +abattoirs +abbotship +abdicable +abdicated +abdicates +abdicator +abdominal +abductees +abducting +abduction +abductors +Abernethy +aberrance +aberrancy +aberrated +aberrates +abetments +abeyances +abhorrent +abhorrers +abhorring +abidances +abidingly +abilities +abjecting +abjection +abjointed +ablations +ablatival +ablatives +ablutions +abnegated +abnegates +abnegator +abnormity +abnormous +abodement +aboideaus +aboideaux +aboiteaus +aboiteaux +abolished +abolisher +abolishes +abolition +abominate +abondance +aborigine +abortions +abounding +abradants +abraiding +abrasions +abrasives +abraxases +abreacted +abridgers +abridging +abrogated +abrogates +abrogator +abruptest +abruption +abscessed +abscesses +abscinded +abscising +abscisins +abscissae +abscissas +abscisses +abscissin +absconded +absconder +abseiling +absentees +absenting +absinthes +absolvers +absolving +absorbate +absorbent +absorbers +absorbing +abstained +abstainer +absterged +absterges +abstinent +abstracts +abstricts +abstruser +absurdest +absurdism +absurdist +absurdity +abundance +abundancy +abusively +abutilons +abutments +abysmally +Abyssinia +academics +academies +academism +academist +Acalephae +acalephan +acalephas +acalephes +acanthine +acanthoid +acanthous +acariasis +acaricide +acaridans +acaridean +acaridian +acarology +accedence +accension +accenting +accentors +accentual +acceptant +accepters +accepting +acceptive +acceptors +accessary +accessing +accession +accessory +accidence +accidents +accinging +accipiter +acclaimed +acclimate +acclivity +acclivous +accoasted +accolades +accompany +accompted +accordant +accorders +according +accordion +accosting +accounted +accourage +accourted +accouters +accoutred +accoutres +accredits +accreting +accretion +accretive +accumbent +accursing +accusable +accustoms +acellular +Aceraceae +acerbated +acerbates +acescence +acescency +acetabula +acetamide +acetified +acetifies +acetylene +achaenium +acheniums +Acheulean +Acheulian +achievers +achieving +Achillean +achilleas +achimenes +achromats +aciculate +acidfreak +acidheads +acidified +acidifier +acidifies +acidulate +acidulent +acidulous +acierated +acierates +aciniform +acoluthic +aconitine +aconitums +acosmists +acouchies +acoustics +acquaints +acquiesce +acquights +acquirals +acquiring +acquiting +acquittal +acquitted +acridness +acrobatic +acrogenic +acroliths +acronical +acronycal +acronymic +acropetal +acrophony +acropolis +acrosomes +acrospire +acrostics +acroteria +actinally +actinians +actinides +actinoids +Actinozoa +actioners +actioning +actionist +activated +activates +activator +activists +actresses +actualise +actualist +actualit� +actuality +actualize +actuarial +actuaries +actuating +actuation +actuators +aculeated +acuminate +acuminous +acupoints +acuteness +acyclovir +adamantly +Adamitism +Adansonia +adaptable +adaptions +adderwort +addicting +addiction +addictive +additions +additives +addlement +addressed +addressee +addresser +addresses +addressor +adducible +adducting +adduction +adductive +adductors +ademption +adenoidal +adenomata +adenosine +adeptness +adherence +adherents +adhesions +adhesives +adhibited +adiabatic +adiaphora +adigranth +adipocere +adiposity +adjacency +adjective +adjoining +adjourned +adjudging +adjunctly +adjusters +adjusting +adjustors +adjutages +adjutancy +adjutants +adjuvancy +adjuvants +Adlestrop +admeasure +adminicle +admirable +admirably +admiralty +admission +admissive +admitting +admixture +admonitor +adnascent +adnominal +adonising +adonizing +adoptions +adoptious +adoration +adoringly +adornment +adpressed +adpresses +Adrenalin +adroitest +adscripts +adsorbate +adsorbent +adsorbing +adulating +adulation +adulators +adulatory +adulterer +adulthood +adumbrate +aduncated +advancing +advantage +advection +Adventist +adventive +adventure +adverbial +adversary +adversely +adversest +adversity +advertent +adverting +advertise +advertize +adviceful +advisable +advisably +advisedly +advocaats +advocated +advocates +advocator +advowsons +Aegisthus +aeglogues +aegrotats +aeolipile +aeolipyle +Aepyornis +aerations +aerialist +aeriality +aerobatic +aerobiont +aerobombs +aerobuses +aerodarts +aerodrome +aerodynes +aerofoils +aerograms +aerograph +aerolites +aeroliths +aerolitic +aeromancy +aerometer +aerometry +aeromotor +aeronauts +aerophobe +aerophone +aerophyte +aeroplane +aeroshell +aerospace +aerostats +aerotaxis +aerotrain +Aeschylus +aesthesia +aesthesis +aesthetes +aesthetic +aestivate +aetiology +affablest +affearing +affecters +affecting +affection +affective +affeering +affianced +affiances +affidavit +affiliate +affirmant +affirmers +affirming +afflation +afflicted +affluence +affluents +affluenza +affluxion +afforcing +affording +afforests +affraying +affricate +affrights +affronted +affront�e +affusions +aflatoxin +aforehand +aforesaid +aforetime +Afrikaans +Afrikaner +aftercare +afterdeck +aftergame +afterglow +afterheat +afterings +aftermath +aftermost +afternoon +aftertime +afterward +afterword +agalactia +agallochs +Agamemnon +Agapemone +agateware +agelastic +agelessly +aggracing +aggrading +aggrating +aggravate +aggregate +aggressed +aggresses +aggressor +aggrieved +aggrieves +Agincourt +agistment +agitating +agitation +agitative +agitators +agnatical +agnominal +agnostics +agonising +agonistes +agonistic +agonizing +agreeable +agreeably +agreement +agr�ments +agrestial +agriology +Agrippina +agronomic +aguacates +Aguecheek +Ahmadabad +ahungered +aigrettes +aiguilles +ailanthus +aimlessly +airbursts +airdromes +Airedales +airfields +airframes +airgraphs +airlifted +airliners +airplanes +airscrews +airshafts +airspaces +airstream +airstrips +airworthy +aitchbone +Aizoaceae +akaryotes +Akhenaten +Akhmatova +akinesias +akoluthos +Alabamans +Alabamian +alabamine +alabaster +alalagmoi +alalagmos +alarmedly +alarmists +alaruming +albacores +Albanians +albarelli +albarello +albatross +Albertans +Albertina +Albertine +albertite +albescent +albespine +albespyne +albicores +albinoism +albinotic +albitised +albitises +albitized +albitizes +albricias +alburnous +alcarraza +alchemise +alchemist +alchemize +alcoholic +Alcyonium +Aldebaran +Aldeburgh +Aldershot +aleatoric +alectryon +Alemannic +alembroth +alertness +Aleurites +alewashed +Alexander +Alexandra +alf�rezes +algarobas +algarroba +algarrobo +algebraic +Algerians +algerines +algicides +alginates +Algonkian +Algonkins +Algonquin +algorithm +alguacils +alguazils +alicyclic +alienable +alienated +alienates +alienator +alienists +alighting +alignment +alimental +alimented +alimonies +alinement +aliphatic +aliveness +alizarine +alkalised +alkalises +alkalized +alkalizes +alkaloids +alkalosis +Allahabad +allantoic +allantoid +allantois +allayings +allayment +allegedly +allegiant +allegoric +alleluiah +alleluias +allemande +allenarly +allergens +allergies +allergist +allerions +alleviate +alleyways +alliances +alligated +alligates +alligator +Allingham +allocable +allocarpy +allocated +allocates +allodiums +allograft +allograph +allometry +allomorph +allopaths +allopathy +allophone +alloplasm +allosaurs +allostery +allotment +allotrope +allotropy +allottees +allotting +allowable +allowably +allowance +allowedly +allusions +alluvions +alluviums +Almagests +almandine +almonries +aloeswood +aloneness +alongside +aloofness +alopecoid +alpargata +alpenhorn +alphabets +alphasort +alpinists +Alsatians +altarwise +Altdorfer +alterable +alterants +altercate +alternant +alternate +altimeter +altimetry +Altiplano +altissimo +altitudes +altricial +altruists +aluminate +aluminise +aluminium +aluminize +aluminous +alvearies +alveolate +amadavats +amandines +amaranths +Amarantus +amarettos +amaryllid +amaryllis +amassable +amassment +amatorial +amatorian +amaurosis +amaurotic +amazement +amazingly +amazonian +amazonite +ambagious +ambassage +ambassies +ambatches +ambergris +amberjack +amberoids +ambiguity +ambiguous +ambisonic +ambitions +ambitious +ambiverts +amblyopia +ambrosial +ambrosian +ambrotype +ambulacra +ambulance +ambulants +ambulated +ambulates +ambulator +ambuscade +ambuscado +ambushers +ambushing +Ambystoma +amebiform +amelcorns +amendable +amendment +Amenhotep +amenities +Amerasian +Americana +Americans +americium +Amerindic +Ametabola +amethysts +amianthus +amidships +amissible +ammonites +amnesiacs +amnestied +amnesties +amniotomy +amoebaean +amoralism +amoralist +amorality +amornings +amorosity +amorously +amorphism +amorphous +amortised +amortises +amortized +amortizes +amounting +amourette +ampassies +amperages +ampersand +amperzand +amphibian +amphibole +amphiboly +amphigory +amphioxus +Amphipoda +amphipods +ampholyte +ampleness +amplified +amplifier +amplifies +amplitude +amplosome +amputated +amputates +amputator +Amsterdam +amusement +amusettes +amusingly +amygdalas +amygdales +amygdalin +Amygdalus +amygdules +amyloidal +amylopsin +anabiosis +anabiotic +anabolism +anabolite +anabranch +anacharis +anacondas +anacruses +anacrusis +anaerobes +anaerobic +anaglyphs +anaglypta +anagogies +analectic +analemmas +analeptic +analgesia +analgesic +analogies +analogise +analogist +analogize +analogons +analogous +analogues +analysand +analysers +analysing +analytics +analyzers +analyzing +anamneses +anamnesis +anandrous +ananthous +anapaests +anaphoras +anaphoric +anaplasty +anaptyxis +anarchial +anarchies +anarchise +anarchism +anarchist +anarchize +Anastasia +anastasis +anastatic +anathemas +Anatolian +anatomies +anatomise +anatomist +anatomize +ancestors +ancestral +anchorage +anchoress +anchorets +anchoring +anchorite +anchorman +anchormen +anchoveta +anchovies +anchylose +anciently +ancientry +ancillary +ancipital +ancresses +Andalusia +andantino +andesitic +Andorrans +Androcles +androgens +androgyne +androgyny +andrology +andromeda +anecdotal +anecdotes +anemogram +anemology +aneuploid +aneurisms +aneurysms +angekkoks +Angelenos +angelhood +angelical +angelicas +angeluses +angerless +angiogram +angiomata +angklungs +anglesite +anglewise +Anglicans +anglicise +anglicism +anglicist +anglicize +anglified +anglifies +anglophil +Angostura +angriness +anguiform +anguipede +anguished +anguishes +angulated +anhedonia +anhedonic +anhydride +anhydrite +anhydrous +aniconism +animalise +animalism +animalist +animality +animalize +animaters +animating +animation +animatism +animators +animistic +animosity +anisettes +anklebone +ankylosed +ankyloses +ankylosis +Annabelle +annalised +annalises +annalists +annalized +annalizes +Annapolis +Annapurna +annealers +annealing +annectent +annexions +annexment +annexures +annotated +annotates +annotator +announced +announcer +announces +annoyance +annualise +annualize +annuitant +annuities +annulated +annulling +annulment +anobiidae +anodising +anodizing +anoestrum +anoestrus +anointers +anointing +anomalies +anomalous +Anonaceae +anonymise +anonymity +anonymize +anonymous +anopheles +anorectal +anorectic +anoretics +anorexics +anorthite +Ansafones +ansaphone +Anschluss +answerers +answering +Antarctic +anteceded +antecedes +antechoir +antedated +antedates +antefixal +antefixes +antelopes +antelucan +antenatal +antennary +antennule +anterooms +anteverts +anthelion +antheming +anthemion +anthocarp +anthocyan +anthology +anthracic +anthraxes +anthropic +anthurium +antichlor +anticivic +anticking +anticline +antidotal +antidotes +antiflash +antigenic +Antiguans +antihelix +antiknock +antimasks +antimonic +antinodal +antinodes +antinoise +antinomic +Antiochus +antipapal +antipasto +antipathy +antiphons +antiphony +antipodal +antipodes +antipoles +antipopes +antiquark +antiquary +antiquate +antiquely +antiquing +antiquity +antiscian +antiserum +antispast +antistats +antitheft +antithets +antitoxic +antitoxin +antitrade +antitragi +antitypal +antitypes +antitypic +antivenin +antiviral +antivirus +Antoninus +Antonioni +antonymic +anucleate +anxieties +anxiously +apartheid +apartment +apartness +apathaton +apathetic +Apeldoorn +Apennines +aperients +aperiodic +aperitifs +aperitive +apertness +apertures +apetalous +aphanites +aphereses +apheresis +aphetised +aphetises +aphetized +aphetizes +aphicides +aphidians +aphidious +aphorised +aphoriser +aphorises +aphorisms +aphorists +aphorized +aphorizer +aphorizes +Aphrodite +aphyllous +apiarists +apiculate +apishness +apivorous +aplanatic +aplustres +apocopate +apocrypha +apodictic +apoenzyme +apogamous +apographs +apologias +apologies +apologise +apologist +apologize +apologues +apomictic +apophasis +apophatic +apophyges +apophyses +apophysis +apostates +apostatic +apostille +apostolic +apothecia +apothegms +appalling +Appaloosa +appanaged +appanages +apparatus +apparency +apparitor +appealing +appearers +appearing +appeasers +appeasing +appellant +appellate +appendage +appendant +appending +appertain +appestats +appetence +appetency +appetible +appetised +appetiser +appetises +appetites +appetized +appetizer +appetizes +applauded +applauder +applecart +appliable +appliance +applicant +applicate +appliqu�d +appliqu�s +appointed +appointee +appointor +apportion +appraisal +appraised +appraiser +appraises +apprehend +appressed +appresses +apprisers +apprising +apprizers +apprizing +approbate +approvals +approvers +approving +apricated +apricates +apriorism +apriorist +apriority +apsarases +apsidiole +apteryxes +aptitudes +aquabatic +aquaboard +aquacades +aquadrome +aqualungs +aquanauts +aquaphobe +aquaplane +aquarelle +aquarians +aquariist +aquarists +aquariums +aquarobic +aquatinta +aquatints +aqueducts +aquilegia +Aquitaine +arabesque +arabinose +arabising +arabizing +arachises +Arachnida +arachnids +arachnoid +aragonite +arapaimas +arapongas +arapungas +araucaria +Arawakans +arbalests +arbalists +arbitrage +arbitrary +arbitrate +arbitress +arbitrium +arblaster +arboreous +arboretum +arborists +Arbuthnot +arbutuses +Arcadians +arcadings +arcanists +archaised +archaiser +archaises +archaisms +archaists +archaized +archaizer +archaizes +archangel +archducal +archduchy +archdukes +archeress +archeries +archetype +Archibald +archilowe +archimage +architect +architype +archiving +archivist +archivolt +archlutes +archology +archontic +arcsecond +Arctiidae +Arctogaea +arctophil +arcuation +arduously +arenation +areolated +areometer +Areopagus +areostyle +Aretinian +argemones +Argentina +Argentine +Argentino +argentite +argillite +argonauts +argufiers +argufying +argumenta +arguments +arhythmia +arhythmic +Arianised +Arianises +Arianized +Arianizes +arillated +arillodes +Arimathea +Aristarch +Aristides +Aristotle +Arizonans +Arizonian +Arkansans +Arkwright +Arlington +armadillo +armaments +armatures +armchairs +Armenians +armigeral +armigeros +armillary +armistice +Armorican +armorists +armourers +armouries +armouring +armozeens +armozines +Armstrong +arointing +aromatics +aromatise +aromatize +aroynting +arpeggios +arpillera +arracacha +arraigned +arraigner +arrangers +arranging +arrayment +arrearage +arreeding +arrestees +arresters +arresting +arrestive +arrestors +Arrhenius +arrivance +arrivisme +arriviste +arrogance +arrogancy +arrogated +arrogates +arrowhead +arrowroot +arrowwood +arseniate +arsenical +arsenides +arsenious +arsenites +arsonists +arsonites +artefacts +artemisia +arteriole +arteritis +arthritic +arthritis +arthropod +arthrosis +Arthurian +artichoke +articling +articular +artifacts +artificer +artifices +artillery +artisanal +artlessly +Aryanised +Aryanises +Aryanized +Aryanizes +aryballos +arytenoid +asafetida +asbestine +asbestous +Ascaridae +ascarides +ascendant +ascendent +ascenders +ascending +ascension +ascensive +ascertain +ascetical +ascidians +ascitical +asclepiad +asclepias +Asclepius +ascorbate +ascospore +ascribing +asepalous +asexually +ashamedly +Ashkenazi +Ashkenazy +Ashkhabad +ashlaring +ashlering +Ashmolean +ashramite +Ashtaroth +Ashtoreth +asininity +asmoulder +asparagus +aspartame +aspectual +asperated +asperates +aspergers +aspergill +asperging +aspersing +aspersion +aspersive +aspersoir +aspersory +asphalted +asphalter +asphaltic +asphaltum +asphodels +asphyxial +aspidioid +aspirants +aspirated +aspirates +aspirator +Asplenium +asporting +assagaied +assailant +assailers +assailing +assarting +assassins +assaulted +assaulter +assayable +assayings +assegaied +assembled +assembler +assembles +assenters +assenting +assentive +assentors +asserters +asserting +assertion +assertive +assertors +assertory +assessing +assessors +assiduity +assiduous +assieging +assientos +assignats +assignees +assigning +assignors +assistant +assisting +associate +assoiling +assonance +assonated +assonates +assorters +assorting +assuaging +assuasive +assuetude +assumable +assumably +assumedly +assumings +assumpsit +assurable +assurance +assuredly +assurgent +asswaging +Assyrians +asterisks +asteroids +asthmatic +astichous +astounded +astraddle +astragals +astrakhan +Astrantia +astricted +astringed +astringer +astringes +astrocyte +astrodome +astrolabe +astrology +astronaut +astronomy +astrophel +Astroturf +astucious +asymmetry +asymptote +asyndetic +asyndeton +asynergia +atacamite +ataractic +atavistic +Athabasca +Athabaska +atheising +atheistic +atheizing +athelings +Athelstan +athematic +athenaeum +atheneums +Athenians +atheology +atherines +atheromas +athetesis +athetised +athetises +athetized +athetizes +athetoids +athetosic +athetosis +athetotic +athletics +athrocyte +Atlantean +atmolysed +atmolyses +atmolysis +atmolyzed +atmolyzes +atmometer +atomicity +atomisers +atomising +atomistic +atomizers +atomizing +atonalism +atonalist +atonality +atonement +atonicity +atoningly +atraments +atrocious +atrophied +atrophies +attaching +attackers +attacking +attainder +attaining +attainted +attempted +attempter +attendant +attendees +attenders +attending +attentats +attention +attentive +attenuant +attenuate +attercops +attesters +attesting +attestors +Atticised +Atticises +Atticized +Atticizes +attirings +attitudes +attollens +attollent +attorneys +attorning +attracted +attractor +attrahens +attrahent +attrapped +attribute +attrition +attritted +attuiting +attuition +attuitive +aubergine +aubretias +aubrietas +aubrietia +auctioned +auctorial +audacious +audiences +audiencia +audiogram +audiology +audiophil +audiotape +audiphone +auditions +auditoria +auditress +augmented +augmenter +augmentor +augurship +Augustine +aumailing +auricular +auriculas +aurifying +auriscope +aurochses +aurorally +Auschwitz +Ausgleich +Ausl�nder +auspicate +austenite +austerely +austerest +austerity +australes +Australia +Austrians +autacoids +autarchic +autarkist +authentic +authoress +authorial +authoring +authorise +authorish +authorism +authority +authorize +Autobahns +autobuses +autocades +autocarps +autoclave +autocracy +autocrats +autocrime +autocross +autocycle +autoflare +autofocus +autogamic +autogenic +autogiros +autograft +autograph +autoguide +autogyros +autoharps +autolatry +Autolycus +autolysed +autolyses +autolysis +autolytic +autolyzed +autolyzes +automated +automates +automatic +automaton +autonomic +autophagy +autophoby +autophony +autopilot +autopista +autopoint +autopsias +autopsied +autopsies +autoroute +autoscopy +autosomal +autosomes +autotelic +autotimer +autotoxin +autotroph +autotyped +autotypes +auxiliary +auxometer +avadavats +available +availably +avalanche +avascular +avengeful +aventaile +aventails +aventring +averaging +averments +Averroism +Averroist +aversions +avertable +avertedly +avertible +aviarists +aviatress +avifaunas +avisement +avizandum +avizefull +avocation +avoidable +avoidably +avoidance +avouching +avulsions +avuncular +awakening +awareness +awesomely +awestrike +awestruck +awfulness +awkwarder +awkwardly +axiomatic +Axminster +ayahuasco +ayatollah +Ayckbourn +Aylesbury +ayurvedic +azeotrope +azimuthal +Azobacter +azotising +azotizing diff --git a/com/agnibho/code/anagram/dictionary/B1.txt b/com/agnibho/code/anagram/dictionary/B1.txt new file mode 100644 index 0000000..6178079 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B1.txt @@ -0,0 +1 @@ +b diff --git a/com/agnibho/code/anagram/dictionary/B10.txt b/com/agnibho/code/anagram/dictionary/B10.txt new file mode 100644 index 0000000..82b46b2 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B10.txt @@ -0,0 +1,1108 @@ +babacootes +babbitting +Babbittism +babblative +babblement +babelesque +babesiasis +babesiosis +babiroussa +babirussas +Babylonian +Babylonish +bacchanals +bacchantes +bacharachs +bacillemia +bacitracin +backbiters +backbiting +backbitten +backboards +backcombed +backfilled +backfiring +backgammon +background +backhanded +backhander +backheeled +backlashes +backpacked +backpacker +backpieces +backplates +backsheesh +backsights +backslider +backslides +backspaced +backspacer +backspaces +backstairs +backstalls +backstitch +backstroke +backswords +backtracks +backvelder +backwardly +backwashed +backwashes +backwaters +backworker +bacteremia +bacterioid +bacterised +bacterises +bacterized +bacterizes +bacteroids +baculiform +badmintons +badmouthed +bafflement +bafflingly +bagassosis +bagatelles +bahuvrihis +baignoires +bailieship +bailiwicks +baitfishes +bakeapples +bakeboards +bakehouses +bakestones +Balaclavas +balalaikas +Balanchine +Balbriggan +balbutient +balconette +baldachins +baldaquins +balderdash +baldmoneys +balections +balefuller +balibuntal +Balkanised +Balkanises +balkanized +balkanizes +ballabiles +balladeers +balladines +balladists +Ballantyne +ballasting +ballerinas +ballistics +ballistite +ballocksed +ballockses +ballooning +balloonist +ballplayer +ballyhooed +balmacaans +balnearies +balneation +balneology +balthasars +Balthazars +balustered +balustrade +balzarines +bamboozled +bamboozles +banalising +banalities +banalizing +Bananaland +bandeliers +banderilla +banderoles +bandicoots +bandleader +bandmaster +bandobasts +bandoleers +bandoleons +bandoleros +bandoliers +bandolines +bandoneons +bandonions +bandstands +bandwagons +banefuller +Banffshire +Bangladesh +bangsrings +banishment +banjuleles +bankrolled +bankruptcy +bankrupted +bannisters +banqueteer +banqueters +banqueting +banquettes +banterings +bantingism +baphometic +baptistery +baragouins +barasingha +barathrums +Barbadians +barbarians +barbarised +barbarises +barbarisms +barbarized +barbarizes +Barbarossa +barbastels +barbecuing +barbellate +barbequing +barberries +Barbirolli +barbitones +barbituric +barcaroles +barcarolle +Barchester +bardolatry +barebacked +barefooted +barehanded +bareheaded +barelegged +bargainers +bargaining +barganders +bargeboard +bargepoles +barghaists +barkeepers +barkentine +barleycorn +barleymows +barmbracks +Barmecidal +Barmecides +barnbracks +Barnstaple +barnstorms +barographs +barometers +barometric +barometzes +baronesses +baronetage +baronetess +baroscopes +barpersons +barrackers +barracking +barracoons +barracoota +barracouta +barracudas +barramunda +barramundi +barratrous +barrelages +barrelfuls +barrelling +barrenness +barrenwort +barretters +barricaded +barricades +barricados +barristers +bartenders +Bartimaeus +bartisaned +bartizaned +barysphere +baseballer +baseboards +basecourts +baseplates +baserunner +bashawship +basilicons +basketball +basketfuls +basketwork +basophilic +bassoonist +bastardise +bastardism +bastardize +bastinaded +bastinades +bastinados +bastn�site +Basutoland +batfowling +bathhouses +batholites +batholiths +batholitic +bathometer +bathylites +bathyliths +bathylitic +bathymeter +bathymetry +bathyscape +batologist +batrachian +battailous +battalions +battements +Battenberg +Battenburg +battenings +battledoor +battledore +battlement +battleship +Baudelaire +bavardages +bayberries +bayoneting +bayonetted +beachfront +beachheads +beadledoms +beadlehood +beadleship +beadswoman +beadswomen +beanfeasts +beanstalks +b�arnaises +beasthoods +beastliest +beatifical +beatifying +beatitudes +Beaujolais +beautician +beautified +beautifier +beautifies +bebeerines +beccaficos +bechancing +becharming +beclouding +becomingly +becquerels +bedabbling +bedaggling +bedarkened +bedazzling +bedchamber +bedclothes +bedeafened +bedevilled +bedfellows +bedighting +bedizening +bedlamisms +bedlamites +Bedlington +bedraggled +bedraggles +bedrenched +bedrenches +bedropping +bedspreads +bedwarfing +bedwarmers +beefburger +beefeaters +beefsteaks +beekeepers +beekeeping +beemasters +beeswaxing +beeswinged +beetlehead +beetmister +beflowered +beforehand +beforetime +befriended +befriender +befringing +befuddling +beggardoms +beginnings +beglamours +beglerbegs +beglooming +begrudging +beguinages +behavioral +behaviours +bejesuited +bejewelled +belaboring +belaboured +beleaguers +belemnites +Belgravian +beliefless +believable +believably +Belisarius +belittling +belladonna +bellarmine +belletrist +bellhanger +bellibones +bellpushes +bellwether +bellyached +bellyacher +bellyaches +bellylands +bellylaugh +belongings +Belorussia +belshazzar +belvederes +bemedalled +bemoanings +bemuddling +bemusement +benedicite +Benedictus +benefacted +benefactor +beneficent +beneficial +benefiting +benefitted +benevolent +bengalines +benighters +benignancy +Benthamism +Benthamite +benumbment +Benzedrine +benzocaine +benzpyrene +bepainting +bequeathal +bequeathed +berberines +berberises +bergamasks +berganders +bergomasks +Bergsonian +Bergsonism +beribboned +Berkeleian +Bermudians +Bernadette +Bernardine +berserkers +Bertolucci +bescreened +beseechers +beseeching +beseemings +besetments +beshadowed +beshrewing +besiegings +beslobbers +beslubbers +besmearing +besmirched +besmirches +besmutting +besottedly +bespangled +bespangles +bespatters +bespeaking +bespeckled +bespeckles +bespitting +besporting +bespotting +bespouting +besprinkle +Bessarabia +besteading +bestialise +bestialism +bestiality +bestialize +bestiaries +besticking +bestirring +bestowment +bestraddle +bestreaked +bestrewing +bestridden +bestriding +bestudding +Betelgeuse +bethankits +bethinking +bethumbing +bethumping +bethwacked +betokening +betreading +betrimming +betrothals +betrotheds +betrothing +betterings +betterment +bettermost +betterness +Betulaceae +betweenity +bevellings +bevelments +bewailings +bewildered +bewitchery +bewitching +biannually +biathletes +biblically +biblicisms +biblicists +bibliology +bibliomane +bibliopegy +bibliophil +bibliopole +bibliopoly +bibulously +bichromate +bicultural +bicyclists +bidentated +bidonville +biennially +biens�ance +bierkeller +bifurcated +bifurcates +bigamously +bighearted +bijouterie +bilberries +bilimbings +bilinguist +biliverdin +billboards +billionths +billowiest +billposter +billycocks +bilocation +bimanually +bimestrial +bimetallic +bimodality +binaurally +binoculars +binturongs +biochemist +biodynamic +bioecology +biogenesis +biogenetic +biographee +biographer +biographic +biohazards +biological +biologists +biomedical +biometrics +biomorphic +bioparents +biophysics +bioplasmic +biopoiesis +biorhythms +bioscience +biospheres +biospheric +biotically +bipartisan +bipedalism +bipetalous +bipinnaria +bipolarity +bipyramids +biquintile +biracially +birdbrains +birdhouses +Birkenhead +Birmingham +birostrate +birthmarks +birthnight +birthplace +birthright +birthstone +birthworts +Birtwistle +bisections +bisexually +bishopdoms +bishoprics +bishopweed +bismillahs +bissextile +bistouries +bisulphate +bisulphide +bitcheries +bitchiness +bitonality +bitterling +bitterness +bitterwood +bituminate +bituminise +bituminize +bituminous +bivalences +bivalvular +bivariants +bivariates +bivouacked +bizarrerie +blabbering +Blackadder +blackamoor +blackballs +blackbands +Blackbeard +blackberry +blackbirds +blackboard +blackbucks +blackcocks +blackening +blackfaced +blackgames +blackguard +blackheads +blackheart +Blackheath +blackjacks +blacklight +blacklists +blackmails +Blackshirt +blacksmith +blackthorn +blackwater +blackwoods +blamefully +blancmange +blandished +blandishes +blanketing +blanquette +blarneying +blasphemed +blasphemer +blasphemes +blastocoel +blastocyst +blastoderm +Blastoidea +blastomere +blastopore +blatherers +blathering +blattering +bleachings +bleariness +blemishing +blepharism +bletherers +blethering +blightings +blindfolds +blindingly +blindworms +blinkering +blissfully +blistering +blitheness +blithering +blithesome +blitzkrieg +blizzardly +blockaders +blockading +blockboard +blockheads +blockhouse +blondeness +bloodhound +bloodiness +bloodlines +bloodlusts +bloodroots +bloodsheds +bloodstain +bloodstock +bloodstone +bloodwoods +bloomeries +Bloomfield +Bloomsbury +blossoming +blotchiest +blotchings +blottesque +blowvalves +blubberers +blubbering +bludgeoned +bluebeards +bluebottle +bluebreast +bluefishes +bluejacket +blueprints +bluestones +bluethroat +blunderers +blundering +blurriness +blushingly +blusterers +blustering +blusterous +blutwursts +boardrooms +boardwalks +boarfishes +boarhounds +boastfully +boathouses +boatswains +bobbysocks +bobbysoxer +bobsleighs +bobtailing +Boccherini +bodegueros +bodyguards +bodyshells +bogtrotter +boilersuit +boisterous +bolections +bolivianos +Bollandist +bolletries +bollocking +bollocksed +bollockses +bolometers +bolometric +Bolsheviks +bolshevise +bolshevism +bolshevist +bolshevize +bolstering +bombardier +bombarding +bombardons +bombasines +bombazines +bombilated +bombilates +bombinated +bombinates +bombshells +bombsights +Bombycidae +bonamiasis +bonassuses +bondstones +bondswoman +bondswomen +boneheaded +bonesetter +boneshaker +Bonhoeffer +bonkbuster +bonnibells +bookbinder +bookhunter +bookkeeper +bookmakers +bookmaking +bookmarker +bookmobile +bookplates +bookseller +bookstalls +bookstands +boomerangs +boondoggle +bootblacks +bootlegged +bootlegger +bootlessly +bootlicker +bootmakers +bootmaking +bootstraps +Bordelaise +bordereaux +borderland +borderless +borderline +borghettos +borrowings +boschvelds +bossyboots +Boswellian +Boswellise +Boswellism +Boswellize +botanising +botanizing +botcheries +bothersome +botryoidal +Botticelli +bottlefuls +bottleneck +bottomless +bottommost +bottomness +bouillotte +boulevards +bounciness +boundaries +bourasques +Bourbonism +Bourbonist +bourgeoise +bourgeoned +Bourignian +bowdlerise +bowdlerism +bowdlerize +bowerwoman +bowerwomen +bowstrings +boxkeepers +boxwallahs +boycotters +boycotting +boyfriends +boyishness +braaivleis +brachiopod +brachyaxis +brachydome +brachylogy +brachyural +bracketing +bracteates +bracteoles +bradyseism +braggartly +braggingly +Brahmanism +Brahminism +Braillists +brainboxes +braincases +brainchild +braininess +brainpower +brainstorm +brainwaves +brambliest +bramblings +branchiate +branchiest +branchings +branchless +branchlets +branchlike +brandering +brandished +brandishes +brandlings +brandreths +branglings +brasseries +brassieres +brassiness +Bratislava +bratpacker +bratticing +brattlings +bratwursts +bravadoing +Braveheart +bravissimo +brawniness +brazenness +Brazilians +breadberry +breadfruit +breadheads +breadlines +breadrooms +breadroots +breadstuff +breakaways +breakdance +breakdowns +breakfasts +breakpoint +breakwater +breastbone +breastpins +breastrail +breastwork +breathable +breathiest +breathings +breathless +brecciated +breechings +breechless +breezeless +breeziness +bressummer +bretasches +bretticing +brevetting +breviaries +brewmaster +brickfield +brickkilns +bricklayer +brickmaker +brickwalls +brickworks +brickyards +bridecakes +bridegroom +bridemaids +Brideshead +bridesmaid +bridewells +bridgeable +bridgehead +bridgeless +Bridgeport +Bridgerama +Bridgetown +bridgework +Bridgwater +bridleways +briefcases +brigadiers +brigandage +brigandine +brigantine +brightened +brightener +brightness +brightsome +brightwork +brilliance +brilliancy +brilliants +brimstones +briquettes +briskening +bristliest +Britishers +Britishism +britschkas +broadbrush +broadcasts +broadcloth +broadening +broadpiece +broadsheet +broadsides +broadsword +broadtails +Brobdignag +brocatelle +brochettes +broiderers +broidering +brokenness +brokerages +bromeliads +Bromsgrove +bronchiole +bronchitic +bronchitis +brontosaur +bronzified +bronzifies +broodiness +broodingly +Brooklands +brooklimes +brookweeds +broomrapes +broomstaff +broomstick +browbeaten +browbeater +brownfield +Brownshirt +Brownstone +Brundisium +Br�nnhilde +brushwheel +brushwoods +brushworks +brusquerie +brutalised +brutalises +brutalists +brutalized +brutalizes +brutifying +bryologist +bryophytes +bubonocele +buccaneers +buccaniers +buccinator +bucellases +Bucephalus +Buchenwald +Buchmanism +Buchmanite +buckboards +bucketfuls +buckhounds +Buckingham +buckraming +buckthorns +buckwheats +buckyballs +buckytubes +Buddhistic +budgerigar +buffaloing +buffetings +bufflehead +buffoonery +bufotenine +buhrstones +Bulgarians +bulldogged +bulldozers +bulldozing +bulletries +bullfights +bullionist +bullroarer +bullwhacks +bulwarking +bumbailiff +bumfreezer +bummalotis +bumpkinish +Bunburying +bunchiness +Bundesbank +Bundeswehr +bundobusts +bungaloids +bunglingly +bunkhouses +Buonaparte +Buonarroti +Burberries +burdensome +bureaucrat +burgeoning +burglaries +burglarise +burglarize +Burgundian +burgundies +burlesqued +burlesques +Burlington +burnettise +burnettize +burnishers +burnishing +burrawangs +burrstones +bursarship +burthening +bushbabies +bushcrafts +bushellers +bushelling +bushmaster +bushranger +bushwalked +bushwalker +bushwhacks +businesses +busybodies +butcheries +butchering +butlerages +butlership +butterball +butterburs +buttercups +butterdock +butteriest +butterines +Buttermere +butternuts +butterwort +buttocking +buttonhole +buttressed +buttresses +byssaceous +byssinosis +bystanders diff --git a/com/agnibho/code/anagram/dictionary/B11.txt b/com/agnibho/code/anagram/dictionary/B11.txt new file mode 100644 index 0000000..b8d56a2 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B11.txt @@ -0,0 +1,721 @@ +babiroussas +babooneries +Babylonians +bacchanalia +bacciferous +baccivorous +bachelordom +bachelorism +Bacillaceae +bacillaemia +bacillicide +bacilliform +backbencher +backbitings +backbreaker +backcombing +backcrosses +backfilling +backfitting +backgrounds +backhanders +backheeling +backpackers +backpacking +backscatter +backscratch +backshishes +backslashes +backsliders +backsliding +backspacers +backspacing +backstabber +backstrokes +backtracked +backwashing +backworkers +Baconianism +bacteraemia +bactericide +bacterioids +bacteriosis +bacterising +bacterizing +baculovirus +baddeleyite +badmouthing +bafflements +bailieships +baillieship +bakhshishes +baksheeshes +balconettes +balefullest +balefulness +balibuntals +Balkanising +balkanizing +balladeered +Ballesteros +balletomane +ballocksing +balloonings +balloonists +ballplayers +ballyhooing +ballyragged +balmorality +Baltoslavic +Baluchistan +balustraded +balustrades +bamboozling +bandeirante +banderillas +bandleaders +bandmasters +bandoleered +bandoliered +baneberries +banefullest +banefulness +Bangladeshi +bankability +bankrolling +bankrupting +Bannockburn +banqueteers +banteringly +baptismally +baptistries +barbaresque +barbarising +barbarities +barbarizing +barbarously +barbastelle +barbiturate +barcarolles +Barclaycard +barefacedly +bareknuckle +bargeboards +barkentines +barleycorns +barnstormed +barnstormer +barometries +baronetages +baronetcies +baronetical +barquentine +barrackings +barracootas +barracoutas +barramundas +barramundis +barrenworts +barricading +barricadoed +barricadoes +Bartholomew +barycentric +Baryshnikov +baseballers +baserunners +bashawships +bashfulness +Basingstoke +Baskerville +basketballs +bassoonists +bastardised +bastardises +bastardized +bastardizes +bastinading +bastinadoed +bastinadoes +bastnaesite +batholithic +bathometers +bathophobia +bathybiuses +bathylithic +bathymeters +bathymetric +bathyscapes +bathyscaphe +bathysphere +batological +batologists +batrachians +batsmanship +battledoors +battledores +battledress +battlefield +battlements +battleplane +battleships +battologies +bayonetting +beachcomber +beadlehoods +beadleships +bearishness +beastliness +beaumontage +beauteously +beauticians +beautifiers +beautifully +beautifying +beaverboard +Beaverbrook +beblubbered +Beckenbauer +bedarkening +bedchambers +bedeafening +bedevilling +bedevilment +bedizenment +Bedlingtons +bedraggling +bedrenching +beefburgers +beetlebrain +beetleheads +beetmisters +befittingly +beflowering +befriending +beggarwoman +beggarwomen +beglamoured +Begoniaceae +beguilement +beguilingly +behaviorism +behaviorist +behavioural +Beiderbecke +bejesuiting +bejewelling +belabouring +belatedness +beleaguered +believingly +belladonnas +bellarmines +Bellerophon +belletrists +bellettrist +bellhangers +bellicosely +bellicosity +belligerent +bellwethers +bellyachers +bellyaching +bellylanded +bellylaughs +belomancies +Belorussian +belowstairs +belshazzars +benchership +benedicites +Benedictine +benediction +benedictive +benedictory +benefacting +benefaction +benefactors +benefactory +beneficence +beneficiary +beneficiate +benefitting +beneplacito +benevolence +benightedly +benightment +benignantly +benthoscope +benzylidine +bequeathals +bequeathing +bereavement +bergschrund +Berkhamsted +Bernardette +bersagliere +bersaglieri +berylliosis +bescreening +beseechings +beseemingly +beshadowing +besiegement +besiegingly +beslobbered +beslubbered +besmirching +bespangling +bespattered +bespeckling +bespreading +besprinkled +besprinkles +Bessarabian +bestialised +bestialises +bestialized +bestializes +bestowments +bestraddled +bestraddles +bestreaking +bestridable +bethwacking +betrothment +betterments +betweenness +betweentime +bewhiskered +bewildering +bewitchment +bibliolater +bibliolatry +bibliomancy +bibliomanes +bibliomania +bibliopegic +bibliophile +bibliophils +bibliophily +bibliopoles +bibliopolic +bibliotheca +bicarbonate +bicentenary +bicephalous +bicorporate +bicuspidate +bidonvilles +Biedermeier +biens�ances +bierkellers +bifariously +bifoliolate +bifurcating +bifurcation +bilaterally +bilingually +bilinguists +biliousness +billionaire +billposters +billsticker +bimetallism +bimetallist +bimillenary +bimolecular +binocularly +biocatalyst +biochemical +biochemists +biocoenoses +biocoenosis +biocoenotic +biodynamics +bioengineer +biofeedback +biographers +biographies +biomaterial +biomedicine +biophysical +biosciences +bipartition +bipinnarias +biquadratic +biquintiles +biracialism +birthnights +birthplaces +birthrights +birthstones +bisexuality +bishopesses +bisociation +bisociative +bissextiles +bittercress +bitterlings +bittersweet +bitterwoods +bituminated +bituminates +bituminised +bituminises +bituminized +bituminizes +bivalencies +bivouacking +bizarreness +bizarreries +blackamoors +blackballed +blackbirder +blackboards +blackfellow +blackfishes +Blackfriars +blackguards +blackheaded +blackhearts +blacklegged +blacklisted +blackmailed +blackmailer +blacknesses +Blackshirts +blacksmiths +blackthorns +bladderwort +blaeberries +blamelessly +blameworthy +blancmanges +blandishing +blandnesses +blanketings +blanketweed +blanknesses +blasphemers +blasphemies +blaspheming +blasphemous +blastocoele +blastocysts +blastoderms +blastogenic +blastomeres +blastopores +bleacheries +bleaknesses +blemishment +blepharitis +blessedness +bletherings +blightingly +blindfishes +blindfolded +blindnesses +blitzkriegs +blizzardous +bloatedness +blockbuster +blockhouses +bloodhounds +bloodlessly +bloodletter +bloodmobile +bloodsprent +bloodstains +bloodstones +bloodstream +bloodsucker +Bloomington +blossomings +blotchiness +blottesques +blowtorches +bludgeoning +blueberries +bluebottles +bluebreasts +bluegrasses +bluejackets +blueprinted +bluethroats +bluffnesses +blunderbuss +blunderings +bluntnesses +blushlessly +boardsailor +bobbysoxers +Bodhisattva +bogtrotters +bogtrotting +Bohemianism +boilermaker +boilerplate +boilersuits +Bolingbroke +bollocksing +bolshevised +bolshevises +bolshevists +bolshevized +bolshevizes +bolsterings +Bombacaceae +bombardiers +bombardment +bombilating +bombilation +bombinating +bombination +Bonapartean +Bonapartism +Bonapartist +bonbonni�re +bondmanship +bondservant +bonesetters +boneshakers +bonkbusters +bookbinders +bookbindery +bookbinding +bookhunters +bookishness +bookkeepers +bookkeeping +bookmarkers +bookmobiles +booksellers +bookselling +bookshelves +boomeranged +boondoggled +boondoggler +boondoggles +boorishness +bootleggers +bootlegging +bootlickers +bootlicking +borborygmic +borborygmus +borderlands +borderlines +Boswellised +Boswellises +Boswellized +Boswellizes +botanically +botanomancy +botheration +bottlebrush +bottlenecks +boundlessly +bounteously +bountifully +bouqueti�re +bourgeoisie +bourgeoning +bourguignon +Bournemouth +boutonni�re +bowdlerised +bowdleriser +bowdlerises +bowdlerisms +bowdlerized +bowdlerizer +bowdlerizes +bowstringed +boysenberry +brabblement +brachiation +Brachiopoda +brachiopods +brachydomes +brachyprism +brachyurous +bracteolate +bradycardia +bradypeptic +braggadocio +braggartism +Brahmanical +Brahmaputra +Brahminical +brainlessly +brainsickly +brainstorms +brainwashed +brainwashes +brancheries +branchiopod +Brandenburg +brandishing +branfulness +brankursine +bratpackers +bratticings +brattishing +Brazzaville +breadfruits +breadstuffs +breadthways +breadthwise +breadwinner +breakdanced +breakdancer +breakdances +breakfasted +breakpoints +breakwaters +breastbones +breastplate +breastrails +breastworks +breathalyse +breathalyze +breathiness +Breconshire +breechblock +Bremerhaven +bressummers +brickfields +bricklayers +bricklaying +brickmakers +brickmaking +brickshaped +bridegrooms +bridemaiden +bridesmaids +bridewealth +bridgeboard +bridgeheads +brigandines +brigantines +brighteners +brightening +brilliances +brilliantly +brimfulness +brinjarries +bristlecone +bristliness +Britishness +brittleness +broadcasted +broadcaster +broadcloths +broadpieces +broadsheets +broadswords +Brobdingnag +Broederbond +broiderings +bromidrosis +bromination +bronchioles +bronchitics +brontosaurs +bronzifying +broomstaffs +broomsticks +brotherhood +brotherlike +browbeaters +browbeating +Brownshirts +brucellosis +brushwheels +brusqueness +brusqueries +brutalising +brutalities +brutalizing +brutishness +bryological +bryologists +bubonoceles +buccaneered +buccaniered +buccinators +buccinatory +buckshishes +bucktoothed +bucolically +budgerigars +buffleheads +bulbiferous +bulbousness +bulldogging +bullfighter +bullfinches +bullfronted +bullionists +bullishness +bullroarers +bullwhipped +bullyragged +bumbailiffs +bumbershoot +bumfreezers +bumpsadaisy +bumptiously +buoyantness +Buprestidae +bureaucracy +bureaucrats +burglarious +burglarised +burglarises +burglarized +burglarizes +burgomaster +burlesquing +burnettised +burnettises +burnettized +burnettizes +burnishings +burnishment +burrowstown +bursarships +Burschenism +Burseraceae +bursiculate +bushellings +bushmanship +bushmasters +bushrangers +bushwalkers +bushwalking +bushwhacked +bushwhacker +businessman +businessmen +Butazolidin +butcherings +butlerships +butterdocks +Butterfield +butterflies +butteriness +Butterworth +butterworts +buttonholed +buttonholer +buttonholes +buttonmould +buttressing +butyraceous +Byelorussia +Byronically +Byzantinism +Byzantinist diff --git a/com/agnibho/code/anagram/dictionary/B12.txt b/com/agnibho/code/anagram/dictionary/B12.txt new file mode 100644 index 0000000..477f68b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B12.txt @@ -0,0 +1,347 @@ +babingtonite +baccalaurean +bacchanalian +bachelorhood +bachelorship +bacillicides +backbenchers +backboneless +backbreakers +backbreaking +backscatters +backsheeshes +backslapping +backstabbers +backstabbing +backstarting +backswordman +backswordmen +backtracking +backwardness +backwoodsman +backwoodsmen +bactericidal +bactericides +bacteriology +bacteriostat +baillieships +Balaamitical +balderdashes +balladeering +balladmonger +ballanwrasse +balletically +balletomanes +balletomania +ballyragging +balneologist +banalisation +banalization +Bananalander +bandeirantes +banderillero +bandersnatch +Bangladeshis +bankruptcies +baptisteries +barbastelles +barbiturates +Barclaycards +bardolatrous +bareknuckled +barnstormers +barnstorming +barodynamics +barometrical +baronetesses +baroreceptor +barquentines +Barquisimeto +Barranquilla +barratrously +barricadoing +barristerial +baselessness +basidiospore +bastardising +bastardizing +bastinadoing +bathypelagic +bathyscaphes +bathyspheres +battlefields +battleground +battlemented +battological +beachcombers +beachcombing +Beaconsfield +bearableness +beatifically +Beaumarchais +beaumontages +beaumontague +Bechuanaland +becomingness +bedazzlement +Bedfordshire +beetlebrains +beggarliness +beglamouring +begrudgingly +beguilements +behaviorally +behaviorists +behaviourism +behaviourist +beleaguering +belittlement +belletristic +bellettrists +belligerence +belligerency +belligerents +bellylaughed +Benedictines +benedictions +benefactions +benefactress +beneficences +beneficently +beneficially +beneficiated +beneficiates +benevolences +benevolently +benightments +benthoscopes +benumbedness +benzaldehyde +bequeathable +bequeathment +bereavements +bergschrunds +Bertholletia +bertillonage +Berufsverbot +Berwickshire +beseechingly +besiegements +beslobbering +beslubbering +besottedness +bespattering +bespectacled +besprinkling +Besserwisser +bestialising +bestializing +bestraddling +betacarotene +betrothments +betweentimes +bewilderment +bewitchingly +bewitchments +bibliography +bibliolaters +bibliologies +bibliologist +bibliomaniac +bibliopegist +bibliophiles +bibliophobia +bibliopolist +bibliothecas +bibulousness +bicameralism +bicameralist +bicarbonates +bicentennial +bifurcations +Bignoniaceae +bilateralism +bilharziasis +bilharziosis +bilingualism +billingsgate +billionaires +billstickers +bimetallists +bimillennium +bioavailable +biochemistry +biocoenology +biodiversity +bioengineers +bioflavonoid +biogeography +biographical +biologically +biomechanics +biometrician +biophysicist +biorhythmics +biosatellite +bioscientist +biosynthesis +biosynthetic +bipartitions +bipropellant +birefringent +bisociations +bittersweets +bituminating +bituminising +bituminizing +blabbermouth +blackballing +blackberries +blackbirders +blackbirding +blackcurrant +blackfellows +blackguarded +blackguardly +blacklegging +blacklisting +blackmailers +blackmailing +bladderworts +blamableness +blamefulness +Blanchflower +blandishment +blastosphere +blastulation +blatherskite +blennorrhoea +bletheration +bletherskate +blimpishness +blindfolding +blissfulness +blisteringly +blithesomely +blockbusters +blockbusting +Bloemfontein +bloodletters +bloodletting +bloodmobiles +bloodstained +bloodstreams +bloodsuckers +bloodsucking +bloodthirsty +blueprinting +bluestocking +blunderingly +blusteringly +boardsailing +boardsailors +boastfulness +boilermakers +boisterously +bolshevising +bolshevizing +bombacaceous +bombardments +bombilations +bombinations +bonbonni�res +bondservants +bookbindings +boomeranging +boondogglers +boondoggling +bootlessness +bootstrapped +Boraginaceae +borosilicate +Boswellising +Boswellizing +bougainvilia +Bougainville +boulevardier +bouqueti�res +bourgeoisies +bourgeoisify +boutonni�res +bowdlerisers +bowdlerising +bowdlerizers +bowdlerizing +bowstringing +brachiations +brachycephal +brachydactyl +brachygraphy +brackishness +braggadocios +brainwashing +Branchiopoda +branchiopods +brankursines +brassfounder +brattishings +Braunschweig +breadberries +breadwinners +breakdancers +breakdancing +breakfasting +breakthrough +breastplates +breastplough +breaststroke +breastsummer +breathalysed +breathalyser +breathalyses +breathalyzed +breathalyzer +breathalyzes +breathlessly +breathtaking +breechblocks +brevipennate +brickfielder +bridemaidens +bridgeboards +brightnesses +brilliancies +brilliantine +brinkmanship +broadcasters +broadcasting +Bromeliaceae +bromhidrosis +bronchoscope +bronchoscopy +brontosaurus +brotherhoods +Brunelleschi +buccaneering +buccaneerish +buccaniering +Buddenbrooks +bullfighters +bullwhipping +bullyragging +bumbershoots +bureaucratic +burglarising +burglarizing +burgomasters +burnettising +burnettizing +burrowstowns +burseraceous +bushwhackers +bushwhacking +butterscotch +buttonholers +buttonholing +Byelorussian +Byzantinists diff --git a/com/agnibho/code/anagram/dictionary/B13.txt b/com/agnibho/code/anagram/dictionary/B13.txt new file mode 100644 index 0000000..e89ee20 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B13.txt @@ -0,0 +1,181 @@ +baccalaureate +bacchanalians +bachelorships +backscattered +backscratched +backscratcher +backscratches +backwardation +bacteriolysin +bacteriolysis +bacteriolytic +bacteriophage +bacteriostats +baculoviruses +Balanoglossus +Balkanisation +balkanization +balladmongers +ballanwrasses +balneologists +balneotherapy +balsamiferous +Balsaminaceae +Baltoslavonic +bamboozlement +Bananalanders +banderilleros +barbarisation +barbarization +barbarousness +barefacedness +barnsbreaking +baroreceptors +barristership +basidiospores +bathymetrical +battlegrounds +beatification +beaumontagues +beauteousness +beetlebrained +beginningless +behaviourally +behaviourists +beleaguerment +belligerently +bellylaughing +benedictional +beneficential +beneficiaries +beneficiating +beneficiation +benightedness +benthopelagic +bequeathments +Berberidaceae +Berchtesgaden +Berkeleianism +beseemingness +bespottedness +bestsellerdom +betweenwhiles +bewilderingly +bibliographer +bibliographic +bibliolatrist +bibliolatrous +bibliological +bibliologists +bibliomaniacs +bibliopegists +bibliophagist +bibliophilism +bibliophilist +bibliopolical +bibliopolists +bibliothecary +bicameralists +bicentenaries +bicentennials +biculturalism +bidirectional +bigheadedness +bignoniaceous +Bildungsroman +billionairess +bimillenaries +bimillenniums +biochemically +bioconversion +biodegradable +biogeographer +biometricians +biophysicists +biopsychology +biosatellites +bioscientific +bioscientists +biosystematic +biotechnology +birefringence +Birminghamise +Birminghamize +blabbermouths +blackberrying +blackbirdings +blackcurrants +blackguarding +blackguardism +blacklistings +blameableness +blamelessness +blanchisseuse +blandishments +blasphemously +blastogenesis +blastospheres +blastulations +blatherskites +blepharospasm +bletherskates +bloodlessness +bloodlettings +Bloomsburyite +bluestockings +blunderbusses +bombastically +bookbinderies +bootstrapping +boraginaceous +bottlebrushes +bougainvilias +Bougainvillea +bouillabaisse +boulevardiers +boundlessness +bounteousness +bountifulness +boustrophedon +boysenberries +brachiosaurus +brachycephals +brachycephaly +brachydactyly +brachypterous +brainchildren +brainlessness +brainsickness +brainstorming +brassfounders +brassfounding +breakableness +breakthroughs +breastploughs +breaststrokes +breastsummers +breathalysers +breathalysing +breathalyzers +breathalyzing +breechloading +brilliantness +brinksmanship +broadcastings +Brobdignagian +bromeliaceous +bronchography +bronchoscopes +bronchoscopic +brotherliness +brutalisation +brutalization +bumptiousness +bureaucracies +bureaucratise +bureaucratist +bureaucratize +burglariously +businesswoman +businesswomen +Byelorussians diff --git a/com/agnibho/code/anagram/dictionary/B14.txt b/com/agnibho/code/anagram/dictionary/B14.txt new file mode 100644 index 0000000..2fff8aa --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B14.txt @@ -0,0 +1,88 @@ +baccalaureates +backscattering +backscratchers +backscratching +bacteriologist +bacteriophages +bacteriostasis +bacteriostatic +Balkanisations +balkanizations +Ballykissangel +Baluchitherium +bandersnatches +barbarisations +barbarizations +barometrically +barristerships +Basidiomycetes +bastardisation +bastardization +bathygraphical +batrachophobia +batrachophobic +beatifications +beautification +beleaguerments +belletristical +benefactresses +beneficialness +beneficiations +benzodiazepine +berberidaceous +beseechingness +bibliographers +bibliographies +bibliolatrists +bibliomaniacal +bibliophagists +bibliophilists +bigheartedness +bioclimatology +biodegradation +bioelectricity +bioengineering +biogeochemical +biogeographers +biographically +bioluminescent +biomathematics +biometeorology +biosystematics +bipartisanship +bituminisation +bituminization +blanchisseuses +blepharoplasty +blithesomeness +bloodthirstier +bloodthirstily +Bloomsburyites +boisterousness +Bophuthatswana +bougainvillaea +bougainvilleas +bouillabaisses +bouleversement +bowdlerisation +bowdlerization +brachycephalic +brachydactylic +brachydiagonal +brachypinakoid +breathlessness +breathtakingly +bremsstrahlung +bridgebuilding +brobdingnagian +bronchiectasis +bronchoscopies +brontosauruses +brutalisations +brutalizations +bureaucratised +bureaucratises +bureaucratists +bureaucratized +bureaucratizes +Burschenschaft diff --git a/com/agnibho/code/anagram/dictionary/B15.txt b/com/agnibho/code/anagram/dictionary/B15.txt new file mode 100644 index 0000000..ca023ae --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B15.txt @@ -0,0 +1,36 @@ +bacchanalianism +bacteriological +bacteriologists +basidiomycetous +bastardisations +bastardizations +beautifications +bibliographical +bibliothecaries +billionairesses +bioastronautics +bioavailability +biodestructible +biogeochemistry +biogeographical +bioluminescence +biostratigraphy +biotechnologist +blameworthiness +bloodthirstiest +bougainvillaeas +bouleversements +bowdlerisations +bowdlerizations +brachiosauruses +brachistochrone +brachycephalous +brachydactylous +brachydiagonals +brachypinakoids +brokenheartedly +bronchoscopical +Buckinghamshire +bureaucratising +bureaucratizing +butteryfingered diff --git a/com/agnibho/code/anagram/dictionary/B16.txt b/com/agnibho/code/anagram/dictionary/B16.txt new file mode 100644 index 0000000..543be02 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B16.txt @@ -0,0 +1,9 @@ +biodegradability +biodeterioration +biomathematician +biopsychological +biostratigraphic +biotechnological +biotechnologists +bloodthirstiness +bureaucratically diff --git a/com/agnibho/code/anagram/dictionary/B17.txt b/com/agnibho/code/anagram/dictionary/B17.txt new file mode 100644 index 0000000..bb92057 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B17.txt @@ -0,0 +1,8 @@ +bathyorographical +bibliographically +biomathematicians +biometeorological +brokenheartedness +bronchoscopically +bureaucratisation +bureaucratization diff --git a/com/agnibho/code/anagram/dictionary/B18.txt b/com/agnibho/code/anagram/dictionary/B18.txt new file mode 100644 index 0000000..0de5e89 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B18.txt @@ -0,0 +1,5 @@ +ballistocardiogram +biobibliographical +biostratigraphical +bourgeoisification +bronchoconstrictor diff --git a/com/agnibho/code/anagram/dictionary/B19.txt b/com/agnibho/code/anagram/dictionary/B19.txt new file mode 100644 index 0000000..3c4d832 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B19.txt @@ -0,0 +1,2 @@ +bacteriochlorophyll +ballistocardiograph diff --git a/com/agnibho/code/anagram/dictionary/B2.txt b/com/agnibho/code/anagram/dictionary/B2.txt new file mode 100644 index 0000000..0764f56 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B2.txt @@ -0,0 +1,4 @@ +be +bi +bo +by diff --git a/com/agnibho/code/anagram/dictionary/B20.txt b/com/agnibho/code/anagram/dictionary/B20.txt new file mode 100644 index 0000000..bc12e94 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B20.txt @@ -0,0 +1,2 @@ +ballistocardiography +buckminsterfullerene diff --git a/com/agnibho/code/anagram/dictionary/B3.txt b/com/agnibho/code/anagram/dictionary/B3.txt new file mode 100644 index 0000000..74e3e2d --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B3.txt @@ -0,0 +1,61 @@ +ba' +baa +Bab +bad +bag +bah +bam +ban +bap +bar +bat +Bax +bay +Bea +bed +bee +beg +bel +ben +bet +bey +bez +bib +bid +big +Bim +bin +bio +bis +bit +biz +BMX +boa +bob +bod +bog +boh +bok +bon +boo +bop +bor +bos +bot +bow +box +boy +Boz +bra +bro +bub +bud +bug +bum +bun +bur +bus +but +buy +bye +bys diff --git a/com/agnibho/code/anagram/dictionary/B4.txt b/com/agnibho/code/anagram/dictionary/B4.txt new file mode 100644 index 0000000..acb94b4 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B4.txt @@ -0,0 +1,325 @@ +Baal +baas +baba +babe +Babi +Babs +babu +baby +bach +back +bade +bael +Baez +baff +baft +bags +bahs +baht +bail +bait +baju +bake +Baku +Bala +bald +bale +Bali +balk +ball +balm +Balt +balu +bams +banc +band +bane +bang +bani +bank +bans +bant +baps +bapu +barb +bard +bare +barf +Bari +bark +barm +barn +bars +Bart +base +bash +bask +bass +bast +bate +bath +bats +batt +baud +Baum +baur +bawd +bawl +bawn +bawr +bays +bead +beak +beam +bean +bear +beat +beau +beck +bede +beds +Bedu +Beeb +beef +been +beep +beer +bees +beet +bego +begs +Behn +bein +bell +bels +belt +bema +bend +bene +beni +benj +Benn +bens +bent +Benz +bere +berg +berk +berm +Bern +Bert +Bess +best +beta +bete +beth +bets +bevy +beys +bhel +bias +bibs +bice +bide +bids +bien +bier +biff +biga +bigg +bigs +bike +Biko +bile +bilk +bill +bind +bine +bing +bink +bins +biog +bios +bird +birk +birl +Biro +birr +bise +bish +bisk +bite +bito +bits +bitt +Bixa +blab +blad +blae +blag +blah +blat +blay +bleb +bled +blee +blet +blew +bley +blin +blip +blob +bloc +blot +blow +blub +blue +blur +Blut +boak +boar +boas +boat +Boaz +boba +bobs +bock +bode +bods +body +Boer +boff +bogs +bogy +B�hm +Bohr +bohs +boil +boke +boko +boks +bola +bold +bole +boll +bolo +bolt +boma +bomb +bona +bond +bone +bong +bonk +Bonn +bony +boob +booh +book +boom +boon +boor +boos +boot +bops +bora +bord +bore +Borg +born +bors +bort +Bose +bosh +bosk +boss +both +bots +bott +bouk +bout +bowl +bows +boxy +Boyd +boyg +boyo +boys +bozo +brad +brae +brag +Bram +bran +bras +brat +braw +bray +bred +bree +Brel +bren +brew +Brie +brig +brim +brio +brit +Brno +brog +broo +bros +brow +brrr +Brum +brut +Bryn +buat +buba +bubo +bubs +buck +budo +buds +buff +bufo +bugs +buhl +bulb +bulk +bull +bumf +bump +bums +buna +bund +bung +bunk +buns +bunt +buoy +burd +burg +burk +burl +burn +burp +burr +burs +Burt +bury +bush +busk +buss +bust +busy +bute +buts +butt +buys +buzz +byes +byke +Byrd +byre +byte diff --git a/com/agnibho/code/anagram/dictionary/B5.txt b/com/agnibho/code/anagram/dictionary/B5.txt new file mode 100644 index 0000000..3d4f3df --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B5.txt @@ -0,0 +1,761 @@ +baaed +Babar +babas +Babee +Babel +Baber +babes +Babis +baboo +babul +babus +bacca +bacco +baccy +bachs +backs +bacon +baddy +Baden +Bader +badge +badly +baels +baffs +baffy +bagel +baggy +Bahai +Bahia +bahts +bahut +bails +Baird +bairn +baits +baize +bajan +Bajau +bajra +bajri +bajus +baked +baken +baker +bakes +Bakst +balas +baldy +baled +baler +bales +balks +balky +balls +bally +balms +balmy +baloo +balsa +Balti +balus +Bambi +banal +Banat +banco +bancs +banda +B�nde +bands +bandy +baned +banes +Banff +bangs +bania +banjo +banks +banns +bants +Bantu +bapus +barbe +barbs +barca +bardo +bards +bardy +bared +barer +bares +barfs +barge +baric +barks +barky +barms +barmy +barns +baron +Barra +barre +Barry +barye +basal +basan +based +Basel +baser +bases +basho +basic +Basie +basil +basin +basis +basks +Basle +bason +Basra +basse +bassi +basso +bassy +basta +baste +basto +basts +batch +bated +bates +bathe +baths +batik +baton +batta +batts +batty +bauds +baulk +baurs +bavin +bawds +bawdy +bawls +bawns +bawrs +bayed +bayle +bayou +bazar +beach +beads +beady +beaks +beaky +Beale +beams +beamy +beano +beans +beany +beard +bears +beast +beath +beats +beaut +beaux +bebop +becks +Becky +bedad +bedel +bedew +bedim +bedye +beech +beefs +beefy +beeps +beers +beery +beets +befit +befog +begad +began +begar +begat +begem +beget +begin +begot +begum +begun +Behan +beige +being +bekah +belah +belay +belch +belee +Bel�m +belga +belie +Bella +belle +bells +belly +below +belts +bemas +bench +bends +bendy +benes +benet +Benin +benis +Benjy +benne +benni +Benny +bents +benty +Benxi +beray +beres +beret +bergs +Beria +Berio +berks +berms +Berne +berob +berry +berth +beryl +besat +besee +beset +besit +besom +besot +Bessy +bests +betas +betel +betes +beths +betid +b�ton +Betsy +betty +Bevan +bevel +bever +Bevin +bevue +bevvy +bewet +bewig +bezel +bezes +bhaji +bhang +bhels +Bibby +bible +biccy +biddy +bided +bides +bidet +bidon +bield +biers +biffs +bifid +bigae +biggs +biggy +bigha +bight +bigot +Bihar +bijou +biked +biker +bikes +bikie +bilbo +biles +bilge +bilgy +Bilko +bilks +bills +billy +bimbo +binds +bines +binge +bingo +bings +bingy +binks +biogs +biome +biont +biota +biped +bipod +birch +birds +birks +birle +birls +Biros +birrs +birse +birsy +birth +bises +bisks +bison +Bisto +bitch +biter +bites +bitos +bitsy +bitte +bitts +bitty +bivvy +Bizet +Bj�rk +Bj�rn +blabs +black +blade +blads +blaes +blags +blahs +blain +Blair +Blake +blame +bland +blank +blare +blas� +blash +blast +blate +blats +blatt +blays +blaze +bleak +blear +bleat +blebs +bleed +bleep +blees +blend +blent +bless +blest +blets +bleys +Bligh +blimp +blimy +blind +blini +blink +blins +blips +bliss +blite +blitz +bloat +blobs +Bloch +block +blocs +Blois +bloke +blond +blood +bloom +bloop +blore +blots +blown +blows +blowy +blubs +blude +blued +bluer +blues +bluet +bluey +bluff +blunt +blurb +blurs +blurt +blush +Blyth +boaks +board +boars +boart +boast +boats +bobac +bobak +bobby +bocca +bocce +boche +bocks +boded +bodes +bodge +bodle +Boers +boffo +boffs +bogan +bogey +boggy +bogie +bogle +Bogor +bogus +bohea +Bohol +boils +boing +boink +Boise +Boito +boked +bokes +bokos +bolas +boldo +boles +bolix +bolls +bolos +bolts +bolus +bomas +bombe +bombo +bombs +bonce +bonds +boned +boner +bones +bongo +bongs +bonks +bonne +bonny +bonus +bonza +bonze +boobs +booby +boody +booed +boohs +books +booky +Boole +booms +Boone +boons +boors +boost +booth +boots +booty +booze +boozy +borak +boras +borax +borde +bored +boree +borel +borer +bores +borgo +boric +Boris +borne +boron +borts +Bosch +bosks +bosky +bos'n +bosom +boson +bossy +bosun +botch +botel +Botha +bothy +botte +botts +botty +bouge +bough +bouks +boule +boult +bound +bourd +bourg +bourn +bouse +bousy +bouts +bovid +bowed +bowel +Bowen +bower +bowet +Bowie +bowls +bowse +boxed +boxen +boxer +boxes +boyar +boyau +Boyce +Boyer +boygs +Boyle +boyos +bozos +brace +brach +brack +bract +brads +braes +Bragg +brags +Brahe +braid +brail +brain +brake +braky +brame +brand +brank +brans +brant +brash +brass +brats +Braun +brava +brave +bravi +bravo +brawl +brawn +braws +braxy +brays +braze +bread +break +bream +Breda +brede +breed +brees +breme +brens +brent +br'er +brere +Brest +Brett +breve +brews +Brian +briar +bribe +brick +bride +brief +brier +brigs +brill +brims +brine +bring +brink +briny +bris� +brisk +brits +broad +broch +brock +brogh +brogs +broil +broke +Bronx +brood +brook +brool +broom +broos +brose +broth +brown +brows +Bruce +Bruch +Bruin +bruit +br�l� +brume +Bruno +brunt +brush +brust +brute +Bryan +buats +buaze +bubal +bubby +buchu +bucko +bucks +bucku +buddy +budge +budos +buffa +buffe +buffi +buffo +buffs +buggy +bugle +buhls +build +built +bulbs +bulge +bulgy +bulks +bulky +bulla +bulls +bully +bulse +bumbo +bumfs +bumph +bumps +bumpy +bunce +bunch +bunco +bunds +bundu +bundy +bungs +bungy +bunia +bunje +bunjy +bunko +bunks +bunny +bunts +bunty +bunya +buoys +buppy +buran +burds +buret +burgh +burgs +burin +burka +burke +burks +burls +burly +Burma +burns +burnt +buroo +burps +burqa +burro +burrs +burry +bursa +burse +burst +busby +bused +buses +bushy +busks +busky +bussu +busts +busty +butch +Butea +butte +butts +butty +butyl +buxom +buyer +buzzy +bwana +bwazi +Byatt +byked +Byker +bykes +bylaw +byres +Byron +bytes +byway diff --git a/com/agnibho/code/anagram/dictionary/B6.txt b/com/agnibho/code/anagram/dictionary/B6.txt new file mode 100644 index 0000000..4a09ccb --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B6.txt @@ -0,0 +1,1298 @@ +baaing +Baalim +babaco +Babbie +babble +babbly +Babees +babels +babied +babier +babies +Babism +Babist +bablah +baboon +baboos +babuls +Bacall +baccas +baccos +bached +backed +backer +backet +backra +bacons +baddie +badger +badges +badman +badmen +baetyl +baffed +Baffin +baffle +Bagdad +bagels +bagful +bagged +baggit +Bagley +bagman +bagmen +bagnio +baguio +bagwig +bahada +bahuts +Baikal +bailed +bailee +bailer +bailey +bailie +bailli +bailor +bainin +Bairam +bairns +baited +baiter +baized +baizes +bajada +bajans +bajras +bajree +bajris +bakers +bakery +baking +Balaam +balata +balboa +Balcon +Balder +baldly +baleen +balers +baling +Balkan +balked +balker +ballad +ballan +ballat +balled +ballet +ballon +ballot +ballow +ballup +baloos +balsam +balsas +Baltic +Baltis +Baluch +Balzac +Bamako +bamboo +bammed +banana +Banate +bandar +bandas +banded +bandit +bandog +banged +banger +bangle +Bangor +Bangui +banian +banias +baning +banish +banjax +banjos +Banjul +banked +banker +banket +banned +banner +Banquo +bantam +banted +banter +Bantus +banyan +banzai +baobab +baraza +barbed +barbel +barber +barbes +barbet +barbie +barcas +barded +bardic +Bardot +barege +barely +barest +barfed +barfly +barful +barged +bargee +barges +Barham +baring +barish +barite +barium +barkan +barked +barken +barker +Barkis +barley +barman +barmen +barned +Barnes +Barnet +barney +Barnum +barock +barong +barons +barony +barque +barrat +barred +barrel +barren +barres +barret +Barrie +barrio +barrow +Barsac +Barset +barter +Bart�k +barton +Baruch +baryes +baryon +baryta +basalt +basans +basely +basest +bashaw +bashed +basher +bashes +basics +basils +basing +basins +basked +basket +basnet +basons +basque +basses +basset +bassos +basted +baster +bastes +bastos +Basuto +batata +bateau +bathed +bather +bathes +bathos +batiks +bating +batler +Batley +batman +batmen +batons +batoon +battas +batted +battel +batten +batter +battle +battue +bauble +bauera +baulks +bavins +bawbee +bawble +bawdry +bawled +bawler +bawley +baxter +Bayard +Bayern +Bayeux +baying +bayles +bayous +bazaar +bazars +bazazz +beachy +beacon +beaded +beadle +beagle +beaked +beaker +beamed +beamer +beanie +beanos +beards +bearer +beasts +beaten +beater +beaths +Beaton +Beatty +Beaune +beauts +beauty +beaver +Beavis +bebops +bebung +becall +becalm +became +becked +Becker +becket +beckon +become +becurl +bedads +bedash +bedaub +bedaze +bedbug +bedded +bedder +bedeck +bedell +bedels +bedews +bedide +bedims +bedlam +bedpan +bedral +bedrid +bedrop +bedsit +beduck +beduin +bedung +bedust +bedyde +bedyed +bedyes +beefed +beegah +beenah +beeped +beeper +beetle +Beeton +beeves +befall +befana +befell +befits +befogs +befool +before +befoul +begems +begets +beggar +begged +begift +begild +begins +begird +begirt +begnaw +begone +beguin +begums +behalf +behave +behead +beheld +behest +behind +behold +behoof +behove +behowl +beigel +beiges +beings +Beirut +bejade +bejant +B�jart +bekahs +bekiss +belace +belahs +belaid +belamy +belate +belaud +belays +beldam +belfry +belgas +Belgic +Belial +belied +belief +belier +belies +belike +belive +Belize +belled +belles +Belloc +bellow +Belone +belong +belove +belted +belter +beluga +bemata +Bembex +Bembix +bemean +bemire +bemoan +bemock +bemoil +bemuse +bename +Benaud +bended +bendee +bender +Benesh +benets +Bengal +benign +bennes +bennet +bennis +Benson +benumb +benzal +benzil +benzol +benzyl +berate +Berber +Berean +bereft +berets +Bergen +Bering +berley +berlin +Bernie +berobs +berret +bertha +berthe +berths +Bertie +beryls +Besant +beseem +beseen +besets +beside +besits +besmut +besoin +besoms +besort +besots +bespat +besped +bespit +bespot +Bessel +Bessie +bestad +bested +bestir +bestow +bestud +betake +beteem +betels +bethel +betide +betime +b�tise +betoil +b�tons +betony +betook +betoss +betray +betrim +betrod +betted +better +bettor +Betula +Beulah +beurre +bevels +bevers +bevies +bevues +bewail +beware +beweep +bewept +Bewick +bewigs +bewray +Bexley +beyond +bezant +bezazz +bezels +bezoar +bezzle +bhagee +bhajan +bhajee +bhajis +bhakti +bharal +Bharat +bhindi +Bhopal +Bhutan +Bhutto +Biafra +Bianca +biased +biases +biaxal +bibbed +bibber +bibite +bibles +bicarb +biceps +bicker +bickie +bicorn +bidden +bidder +bident +bidets +biding +bidons +bields +bieldy +Bierce +biffed +biffin +bifold +biform +bigamy +bigged +bigger +biggie +biggin +bighas +bights +bigots +bigwig +Bihari +bijoux +bikers +bikies +biking +bikini +Bilbao +bilbos +bilged +bilges +bilian +bilked +bilker +billed +billet +billie +billon +billow +Bimana +bimbos +binary +binate +binder +binged +Bingen +binger +binges +bingle +bingos +binman +binmen +binned +biogas +biogen +biomes +bionic +bionts +biopic +biopsy +biosis +biotas +biotic +biotin +bipeds +bipods +birded +birder +birdie +bireme +birken +birkie +birled +birler +birles +birses +births +Biscay +bisect +bishes +bishop +Bisley +bismar +bisons +bisque +Bissau +bisson +bister +bistre +bistro +bitchy +biters +biting +bitmap +bitted +bitten +bitter +bivium +bizazz +bizone +bizzes +blacks +bladed +blades +blague +blahed +blains +blaise +blaize +Blakey +blamed +blames +blanch +blanco +blanks +blanky +blared +blares +blashy +blasts +blatts +blazed +blazer +blazes +blazon +bleach +bleaks +bleaky +blears +bleary +bleats +bleeds +bleeps +blench +blende +blends +blenny +blight +blimey +blimps +blinds +blinis +blinks +blintz +blites +blithe +Blixen +bloats +blobby +blocks +blocky +blokes +blonde +blonds +bloods +bloody +blooms +bloomy +bloops +blores +blotch +blotto +blotty +blouse +blowed +blower +blowie +blowse +blowsy +blowze +blowzy +bluded +bludes +bludge +bluely +bluest +bluesy +blueys +bluffs +bluggy +bluing +bluish +blunge +blunks +blunts +blurbs +blurry +blurts +Blyton +boaked +boards +boarts +boasts +boated +boatel +boater +boatie +bobacs +bobaks +bobbed +Bobbie +bobbin +bobble +bobbly +bobcat +bobwig +bocage +boccia +Bochum +bocked +bodach +boddle +bodega +bodged +bodger +bodges +bodgie +bodice +bodied +bodies +bodily +boding +bodkin +bodles +Bodmin +Bodoni +bodrag +Boeing +boffed +boffin +bogans +Bogart +bogeys +bogged +boggle +bogies +bogles +Bognor +bogoak +bogong +Bogot� +bohunk +boiled +boiler +boings +boinks +boking +Bokm�l +bolden +bolder +boldly +bolero +boleti +Boleyn +bolide +bolled +bollen +bollix +bolshy +bolted +bolter +Bolton +bombax +Bombay +bombed +bomber +bombes +bombos +Bombyx +bonbon +bonces +bonded +bonder +bonduc +boners +bonged +bongos +bonier +boning +bonism +bonist +bonito +bonked +bonnet +bonnie +bonsai +bonxie +bonzer +bonzes +boobed +booboo +boodie +boodle +boogie +boohed +boohoo +booing +Boojum +booked +Booker +bookie +booksy +boomed +boomer +boorka +boosts +booted +bootee +Bo�tes +booths +bootie +Bootle +boozed +boozer +boozes +boozey +bopped +bopper +borage +borane +borate +bordar +bordel +border +Bordet +boreal +Boreas +boreen +borers +Borges +Borgia +borgos +boride +boring +Borneo +borrel +borrow +borsch +borzoi +bosche +boshes +bosker +bosket +Bosnia +bos'ns +bosoms +bosomy +bosons +bossed +bosser +bosses +boston +bosuns +botany +botchy +botels +botfly +Botham +bother +bothie +boton� +bottle +bottom +bouche +boucl� +boughs +bought +bougie +boules +Boulez +boulle +boults +bounce +bouncy +bounds +bounty +bourgs +bourne +bourns +bourse +boused +bouses +bouton +bovate +bovine +Bovril +bovver +bowels +bowers +bowery +bowets +bowfin +bowing +bowled +bowler +Bowles +bowman +bowmen +bowpot +bowsed +bowser +bowses +bowwow +bowyer +boxers +boxful +boxing +boyars +boyaux +boyish +braced +bracer +braces +bracks +bracts +bragly +Brahma +Brahmi +Brahms +braids +brails +Braine +brains +brainy +braise +braize +braked +brakes +branch +Brando +brands +Brandt +brandy +branks +branle +branny +brants +Braque +brashy +brassy +bratty +bravas +braved +braver +braves +bravos +brawer +brawls +brawly +brawny +brayed +brayer +brazed +brazen +brazer +brazes +brazil +breach +breads +breaks +breams +breast +breath +Brecht +Brecon +breded +bredes +Bredon +breech +breeds +breeks +breeze +breezy +bregma +brehon +Bremen +Brenda +breton +breves +brevet +brewed +brewer +brewis +Briard +briars +bribed +briber +bribes +bricks +bricky +bridal +brides +bridge +bridie +bridle +briefs +briers +briery +Briggs +bright +Brigid +Brigit +brigue +brills +brined +brines +brings +brinks +briony +bris�s +brisks +Briton +broach +broads +broch� +brochs +brocks +brogan +broghs +brogue +broils +broken +broker +brolga +brolly +bromic +bronco +Bronte +bronze +bronzy +brooch +broods +broody +Brooke +brooks +brools +brooms +broomy +broose +broses +broths +brough +Browne +browns +browny +browse +browst +browsy +Br�cke +Bruges +Brugge +bruise +bruits +brumal +brumby +brumes +brunch +Brunei +Brunel +brunet +brunts +brushy +brutal +bruted +bruter +brutes +Brutus +Bryant +bryony +Bryson +buazes +bubals +bubble +bubbly +buboes +buccal +Buchan +buchus +bucked +bucker +bucket +buckie +buckle +buckra +buckus +budded +Buddha +buddle +budged +budger +budges +budget +budgie +buffed +buffer +buffet +bugged +bugled +bugler +bugles +buglet +bugong +builds +bukshi +bulbar +bulbed +bulbel +bulbil +bulbul +Bulgar +bulged +bulger +bulges +bulgur +bulimy +bulked +bulker +bullae +bullas +bulled +bullet +bulses +bumalo +bumbag +bumble +bumbos +Bumbry +bumkin +bummed +bummel +bummer +bumped +bumper +bumphs +bunced +bunces +bunchy +buncos +bunded +bundle +Bungay +bunged +bungee +bungey +bungie +bungle +bunias +bunion +bunjee +bunjes +bunjie +bunked +bunker +bunkos +bunkum +bunnia +Bunsen +buntal +bunted +bunter +Bu�uel +Bunyan +bunyas +bunyip +buoyed +burans +burble +burbot +burden +burdie +bureau +burgee +burger +burghs +burgle +burgoo +Burgos +burhel +burial +buried +buries +burins +buriti +burkas +burked +burkes +burlap +burled +burler +burley +Burman +burned +burner +burnet +Burney +buroos +burped +burqas +burred +burrel +burros +burrow +bursae +bursal +bursar +Bursch +burses +bursts +burton +busboy +bushed +bushel +bushes +busied +busier +busies +busily +busing +busked +busker +busket +buskin +busman +busmen +Busoni +bussed +busses +bussus +busted +bustee +buster +bustle +butane +butene +butler +Butlin +butted +butter +buttes +buttle +button +Buxton +buyers +buying +buyout +Buzfuz +buzzed +buzzer +buzzes +bwanas +bwazis +bygone +byking +bylaws +byline +bylive +bypass +bypath +byrlaw +byrnie +byroad +byroom +byssal +byssus +byways +byword +bywork +byzant diff --git a/com/agnibho/code/anagram/dictionary/B7.txt b/com/agnibho/code/anagram/dictionary/B7.txt new file mode 100644 index 0000000..1681241 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B7.txt @@ -0,0 +1,1748 @@ +baaings +Baalbek +Baalism +Baalite +babacos +babassu +Babbage +babbitt +babbled +babbler +babbles +babesia +babiche +babiest +Babiism +Babists +bablahs +baboons +baboosh +babuche +babudom +babuism +Babygro +babying +babyish +Babylon +Bacardi +baccara +baccate +Bacchae +Bacchic +bacchii +Bacchus +baccies +baccoes +baching +bacilli +backare +backbit +backers +backets +backhoe +backing +backlit +backlog +backlot +backout +backpay +backras +backsaw +backset +backsey +baclava +baconer +Bactria +baculum +Badajoz +baddies +baddish +badgers +badious +badmash +badness +baetyls +baffies +baffing +baffled +baffler +baffles +bagarre +bagasse +Bagehot +bagfuls +baggage +baggier +baggies +baggily +bagging +Baggins +baggits +Baghdad +bagnios +bagpipe +Bagpuss +baguios +bagwash +bagwigs +bahadas +Bahadur +Bahaism +Bahaist +Bahamas +Bahrain +Bahrein +bailees +bailers +baileys +bailies +bailiff +bailing +baillie +bailors +bainite +bairnly +Baisaki +baiters +baiting +baizing +bajadas +bajrees +bakings +baklava +baladin +balance +Balanus +balases +balboas +balcony +baldest +baldies +balding +baldish +baldric +Baldwin +baleful +Balfour +balista +Balkans +balkers +balkier +balking +ballade +ballads +ballans +ballant +Ballard +ballast +ballats +ballets +ballier +balling +Balliol +ballium +balloon +ballots +ballows +ballpen +balmier +balmily +balneal +baloney +balsams +balsamy +Balthus +Baluchi +bambini +bambino +bamboos +bamming +banaler +banally +bananas +Banbury +bandage +bandana +bandars +bandeau +bandied +bandier +bandies +banding +bandito +bandits +bandogs +bandook +bandora +bandore +bandrol +Bandung +bandura +baneful +bangers +banging +Bangkok +bangled +bangles +banians +banjoes +bankers +banking +banksia +banners +banning +bannock +banquet +banshee +bantams +banteng +banters +banting +Bantock +banyans +banzais +baobabs +baptise +baptism +baptist +baptize +barazas +Barbara +Barbary +barbate +barbels +barbers +barbets +barbies +barbing +barbola +Barbour +Barbuda +barbule +barchan +Barclay +bardash +barding +barfing +bargain +bargees +bargest +barging +barilla +barkans +barkens +barkers +barkhan +barkier +barking +barleys +barmaid +barmier +barmkin +Barnaby +Barnard +barneys +barning +barocco +barocks +baronet +barongs +baronne +baroque +Barotse +barques +barrace +barrack +barrage +barrels +Barrens +barrets +barrico +barrier +barring +barrios +barrows +barters +Barthes +bartons +barwood +baryons +barytes +barytic +baryton +basalts +bascule +baseman +basemen +basenji +bashaws +bashers +bashful +bashing +bashlik +bashlyk +basidia +basilar +basinet +baskets +basking +basmati +basnets +basoche +Basotho +basqued +basques +bassets +bassist +bassoon +bastard +basters +bastide +basting +bastion +Basutos +batable +batatas +Batavia +batched +batches +bateaux +batfish +bathers +bathing +bathmat +bathmic +bathtub +bathyal +Batista +batiste +batlers +batoned +batoons +batsman +batsmen +battels +battens +batters +battery +battier +batting +battled +battler +battles +battues +battuta +batwing +baubles +bauchle +baueras +Bauhaus +baulked +bausond +bauxite +Bavaria +bawbees +bawbles +bawcock +bawdier +bawdily +bawdkin +bawlers +bawleys +bawling +bayonet +Bayonne +bazaars +bazooka +bazouki +beached +beaches +beacons +beadier +beadily +beading +beadles +beadman +beadmen +beagled +beagler +beagles +beakers +beamers +beamier +beamily +beaming +beamish +beamlet +beanery +beanies +bearded +beardie +bearers +bearing +bearish +beastie +beastly +beaters +beathed +beatify +beating +Beatles +beatnik +Beatrix +beaufet +beaufin +beauish +beavers +beavery +bebeeru +bebungs +becalls +becalms +b�casse +because +becharm +beckets +Beckett +becking +beckons +becloud +becomes +becurls +bedaubs +bedawin +bedazed +bedazes +bedbugs +bedders +bedding +bedecks +bedells +bedeman +bedemen +bedevil +bedewed +bedfast +Bedford +bedight +bedizen +bedlams +bedouin +bedpans +bedpost +bedrals +bedrock +bedroom +bedrops +bedside +bedsits +bedsock +bedsore +bedtick +bedtime +beducks +beduins +bedungs +bedusts +bedward +bedwarf +Beecham +beechen +Beecher +beeches +beefalo +beefier +beefing +beegahs +beehive +beeline +beenahs +beepers +beeping +beerage +beerier +beerily +beeswax +beetled +beetles +befalls +befanas +beffana +befools +befouls +beggars +beggary +begging +beghard +begifts +begilds +begirds +begloom +begnaws +begones +begonia +begorra +begrime +beguile +beguine +beguins +behaved +behaves +beheads +behests +behight +behinds +beholds +behoofs +behoove +behoved +behoves +behowls +Behrens +Behring +beigels +beignet +Beijing +beinked +bejants +bejesus +bejewel +beknave +beknown +belabor +belaced +belaces +Belarus +belated +belates +belauds +belayed +belched +belcher +belches +beldame +beldams +Belfast +belgard +Belgian +Belgium +beliefs +beliers +believe +Belinda +Bellamy +bellied +bellies +belling +Bellini +bellman +bellmen +Bellona +bellows +belongs +beloved +beloves +Beltane +belting +beltman +beltway +belugas +belying +bemazed +bemeans +bemired +bemires +bemoans +bemocks +bemused +bemuses +benamed +benames +Benares +benched +bencher +benches +benders +Bendigo +bending +bendlet +beneath +benefic +benefit +Benelux +benempt +Bengali +Bengals +benight +benison +bennets +Bennett +Bentham +benthic +benthos +Bentine +Bentley +benumbs +benzene +benzine +benzoic +benzoin +benzole +benzoyl +Beograd +Beowulf +bepaint +bequest +berated +berates +Berbers +berceau +berdash +bereave +bergama +Bergamo +berg�re +Bergman +Bergson +bergylt +Berkoff +berline +berlins +Berlioz +Bermuda +Bernard +Bernice +Bernini +berrets +berried +berries +berserk +berthas +berthed +berthes +Bertram +Berwick +beseech +beseems +beshame +beshrew +besides +besiege +beslave +besmear +besmuts +besomed +bespake +bespate +bespeak +bespits +bespoke +besport +bespots +bespout +bestead +bestial +bestick +besting +bestirs +bestows +bestrew +bestrid +bestuck +bestuds +betaine +betaken +betakes +beteeme +beteems +Bethany +bethels +bethink +bethumb +bethump +betided +betides +betimes +b�tises +betitle +betoils +betoken +betrays +betread +betrims +betroth +betters +betties +Bettina +betting +bettors +between +betwixt +beurres +beveled +beveler +bevvied +bevvies +bewails +beweeps +bewhore +bewitch +bewrays +Bexhill +bezants +B�ziers +bezique +bezoars +bezzazz +bezzled +bezzles +bhagees +bhajans +bhajees +bhaktis +bhangra +bharals +Bharati +bheesty +Biafran +biasing +biassed +biaxial +bibbers +Bibbies +bibbing +bibcock +bibelot +biblist +biccies +bichord +bickers +bickies +bicorne +bicycle +bidarka +bidders +biddies +bidding +bidents +biffing +biffins +bifilar +bifocal +bigener +bigfeet +bigfoot +biggest +biggies +bigging +biggins +biggish +Biggles +bighead +bighorn +bigness +bigoted +bigotry +bigwigs +Biharis +bikeway +bikinis +bilboes +bilgier +bilging +bilians +biliary +bilimbi +bilious +bilkers +bilking +billets +billies +billing +billion +billman +billmen +billons +billows +billowy +bilobar +bilobed +biltong +bimanal +bimodal +binders +bindery +binding +bingers +bingies +binging +bingled +bingles +binning +binocle +biocide +biodata +biogens +biogeny +biology +biomass +bionics +biontic +biophor +biopics +biotite +biotype +bipedal +biplane +bipolar +birched +birchen +birches +birders +birdies +birding +birdman +birdmen +biremes +biretta +biriani +birkies +birlers +birling +birlinn +biryani +biscuit +bisects +bishops +Bislett +bismars +bismuth +bisques +bistort +bistred +bistros +bitched +bitches +bitings +bitless +bitmaps +bitonal +bittern +bitters +bittier +bitting +bittock +bitumed +bitumen +bivalve +bivious +biviums +bivouac +bivvied +bivvies +bizarre +Bizerta +bizonal +bizones +bizzazz +blabbed +blabber +blacked +blacken +blacker +blackly +bladder +blagged +blagger +blagues +blahing +blaming +Blanche +blander +blandly +blanked +blanker +blanket +blankly +blaring +blarney +blashes +blasted +blaster +blatant +blather +blatted +blatter +blaubok +blawort +blazers +blazing +blazons +bleaker +bleakly +bleared +bleated +bleater +bleeder +bleeped +bleeper +blemish +blended +blender +Bl�riot +blesbok +blessed +blesses +blether +bletted +blewits +blights +blighty +blimeys +blimies +blinded +blinder +blindly +blinked +blinker +blintze +blipped +blister +blither +blitzed +blitzes +bloated +bloater +blobbed +blocked +blocker +blonder +blondes +Blondie +Blondin +blooded +bloomed +bloomer +blooped +blooper +blossom +blotchy +blotted +blotter +bloubok +bloused +blouses +blouson +blowers +blowfly +blowgun +blowier +blowies +blowing +blowoff +blowsed +blowses +blowzed +blowzes +blubbed +blubber +blucher +bludged +bludger +bludges +bluding +bluecap +blueing +bluejay +bluetit +bluette +bluffed +bluffer +bluffly +bluings +Blunden +blunder +blunged +blunger +blunges +blunted +blunter +bluntly +blurred +blurted +blushed +blusher +blushes +bluster +boaking +boarded +boarder +boarish +boasted +boaster +boatels +boaters +boaties +boating +boatman +boatmen +Bobadil +bobbery +bobbies +bobbing +bobbins +bobbish +bobbled +bobbles +bobcats +bobsled +bobstay +bobtail +bobwigs +bocages +bocking +bodachs +boddles +bodeful +bodegas +bodgers +bodgies +bodging +bodhr�n +bodices +bodikin +bodings +bodkins +bodying +Boeotia +boffing +boffins +Bogarde +bogbean +boggard +boggart +boggier +bogging +boggled +boggler +boggles +bogland +bogoaks +bogongs +bogyism +Bohemia +bohrium +bohunks +Boileau +boilers +boilery +boiling +boinged +boinked +Bokassa +Bokhara +boldest +boleros +boletus +bolides +bolivar +Bolivia +bollard +bolling +bollock +Bologna +boloney +bolshie +Bolshoi +bolster +bolters +bolting +boluses +Bolzano +bombard +bombast +bombers +bombing +bomblet +bombora +bonamia +bonanza +bonasus +bonbons +bondage +bonders +bonding +bondman +bondmen +bonducs +boneset +bonfire +bonging +bongoes +boniest +bonings +bonists +bonitos +bonjour +bonkers +bonking +Bonnard +bonnets +bonnier +bonnily +bonsoir +bonuses +bonxies +boobies +boobing +boobook +booboos +boodied +boodies +boodles +boogied +boogies +boohing +boohoos +bookful +bookies +booking +bookish +booklet +bookman +bookmen +booksie +Boolean +boomers +booming +boomlet +boorish +boorkas +Boorman +boosted +booster +bootboy +bootees +booties +booting +bootleg +bootses +boozers +boozier +boozily +boozing +boppers +bopping +boracic +borages +boranes +borates +borazon +bordars +bordels +borders +bordure +boredom +boreens +borides +borings +bornite +Borodin +boronia +borough +borrows +borscht +borstal +bortsch +borzois +boscage +boskage +boskets +boskier +Bosnian +bosomed +bosquet +bossier +bossily +bossing +bossism +bostons +bostryx +Boswell +botanic +botargo +botched +botcher +botches +bothers +bothies +bothole +bottega +botties +bottine +bottled +bottler +bottles +bottoms +bottony +Bottrop +bouch�e +Boucher +boucl�s +boudoir +bougies +bouilli +boulder +boulles +boulted +boulter +Boulton +bounced +bouncer +bounces +bounded +bounden +bounder +bouquet +bourbon +bourder +bourdon +bourkha +bourlaw +bournes +bourr�e +bourses +bousing +boutade +boutons +bouvier +bovates +Bovidae +bowbent +Bowdler +bowered +bowfins +bowhead +bowknot +bowlder +bowlers +bowlful +bowline +bowling +bowpots +bowsers +bowshot +bowsing +bowwows +bowyang +bowyers +boxfuls +boxings +boxlike +boxroom +boxwood +boycott +boyhood +Brabant +brabble +Brabham +braccia +braccio +bracers +braches +brachet +bracing +bracken +bracket +bradawl +Bradley +Bradman +Braemar +bragged +bragger +Brahman +Brahmin +braided +braider +brailed +Braille +brained +braised +braises +braizes +brakier +braking +braless +bramble +brambly +Bramley +Branagh +branchy +branded +brander +brangle +branked +branles +bransle +Branson +brantle +brasero +brasher +brashes +brashly +brasier +brasses +brasset +brassie +brattle +bravado +bravely +bravery +bravest +braving +bravoes +bravura +brawest +brawled +brawler +brawned +braxies +braying +brazens +brazers +brazier +brazils +brazing +breaded +breadth +breaker +breamed +breasts +breathe +breaths +breathy +breccia +brecham +breding +breeder +breezed +breezes +Bregenz +brehons +Bremner +Brendan +Brescia +bretons +brevet� +brevets +brevier +brevity +brewage +brewers +brewery +brewing +brewpub +briared +bribers +bribery +bribing +bricked +bricken +brickie +brickle +bricole +bridals +bridged +bridges +Bridget +bridies +bridled +bridler +bridles +bridoon +briefed +briefer +briefly +briered +brigade +brigand +brights +brigued +brigues +brimful +briming +brimmed +brimmer +brinded +brindle +bringer +brinier +brining +brinish +brinjal +brioche +briquet +brisked +brisken +brisker +brisket +briskly +bristle +bristly +Bristol +Bristow +brisure +Britain +British +Britons +Britpop +britska +Britten +brittle +brittly +britzka +Brixton +broaden +broader +broadly +brocade +brocage +brocard +brochan +broch�s +brocked +brocket +brogans +brogged +Broglie +brogues +broider +broiled +broiler +brokage +brokers +brokery +broking +brolgas +bromate +bromide +bromine +bromism +Bromley +brommer +bronchi +broncho +broncos +Bronson +Bronwen +bronzed +bronzen +bronzer +bronzes +brooded +brooder +brooked +broomed +brooses +Brosnan +brothel +brother +broughs +brought +browned +browner +brownie +browsed +browser +browses +browsts +Brubeck +bruchid +brucine +brucite +bruckle +Bruegel +bruhaha +bruised +bruiser +bruises +bruited +brulyie +brulzie +Brummie +brumous +brunets +brunted +brushed +brusher +brushes +brusque +Brussel +bruters +brutify +bruting +brutish +bruxism +Brynmor +Bryozoa +Brython +bubalis +bubbies +bubbled +bubbles +bubinga +bubonic +bubukle +buccina +Buchner +buckeen +buckers +buckets +buckies +bucking +buckish +buckled +buckler +buckles +buckoes +buckram +buckras +bucolic +buddies +budding +buddled +buddles +budgero +budgers +budgets +budgies +budging +budless +budmash +Budweis +budworm +buffalo +buffers +buffets +buffing +buffoon +bugaboo +Bugatti +bugbane +bugbear +buggies +bugging +buglers +buglets +bugling +bugloss +bugongs +bugwort +builded +builder +buirdly +bukshee +bukshis +bulbels +bulbils +bulbing +bulbous +bulbuls +bulgers +bulghur +bulgier +bulgine +bulging +bulimia +bulimic +bulimus +bulkers +bulkier +bulkily +bulking +bullace +bullary +bullate +bullbar +bullbat +bulldog +bullets +bullied +bullies +bulling +bullion +bullish +bullock +bulrush +bulwark +bumbags +bumbled +bumbler +bumbles +bumkins +bummalo +bummels +bummers +bumming +bummock +bumpers +bumpier +bumpily +bumping +bumpkin +Bunbury +bunched +bunches +buncing +bundies +bunding +bundled +bundles +bundook +bungees +bungeys +bungies +bunging +bungled +bungler +bungles +bunions +bunjees +bunjies +bunkers +bunking +bunnias +bunnies +bunraku +Bunsens +bunters +bunting +bunyips +buoyage +buoyant +buoying +Buphaga +buppies +burbled +burbler +burbles +burbots +burdash +burdens +burdies +burdock +bureaus +bureaux +burette +burgage +burgees +burgeon +burgers +burgess +burghal +burgher +burghul +burglar +burgled +burgles +burgoos +burhels +burials +buritis +burking +burlaps +burlers +burlier +burling +Burmese +burners +burnets +Burnett +Burnham +burning +burnish +Burnley +burnous +burping +burrell +burrels +burrhel +burrier +burring +burrito +burrows +bursars +bursary +Bursera +bursted +burster +burthen +burtons +Burundi +burweed +burying +busbies +busboys +busgirl +bushels +bushido +bushier +bushily +bushing +bushman +bushmen +busiest +busings +buskers +busking +buskins +bussing +bustard +bustees +busters +bustier +busting +bustled +bustler +bustles +busying +butanol +butcher +butches +butlers +butlery +butment +butters +buttery +butties +butting +buttled +buttles +buttock +buttons +buttony +butyric +buyable +buyouts +buzzard +buzzers +buzzing +bycatch +bycoket +bygoing +bygones +bylines +bypaths +byplace +byreman +byremen +byrlady +byrlaws +byrnies +byroads +Byronic +byssine +byssoid +bywoner +bywords +byzants diff --git a/com/agnibho/code/anagram/dictionary/B8.txt b/com/agnibho/code/anagram/dictionary/B8.txt new file mode 100644 index 0000000..d8e56a5 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B8.txt @@ -0,0 +1,1757 @@ +babassus +Babbitry +babbitts +babblers +babblier +babbling +Babeeism +babeldom +babelish +babelism +babirusa +babouche +babuches +babushka +Babycham +babyfood +Babygros +babyhood +Bacardis +baccarat +bacchant +bacchiac +bacchian +bacchius +bachelor +bacillar +bacillus +backache +backband +backbeat +backbite +backbond +backbone +backchat +backcomb +backdown +backdrop +backfall +backfile +backfill +backfire +backflip +backhand +backheel +backhoes +backings +backland +backlash +backless +backlift +backlist +backlogs +backlots +backmost +backpack +backrest +backroom +backsaws +backseat +backsets +backseys +backside +backslid +backspin +backstop +backveld +backward +backwash +backword +backwork +backyard +baclavas +baconers +Baconian +bacteria +bacteric +Bactrian +baculine +baculite +Badalona +badgered +badgerly +badinage +badlands +badmouth +Baedeker +bafflers +baffling +bagarres +baggages +baggiest +baggings +Bagheera +bagpiper +bagpipes +baguette +Bahamian +Bahraini +bailable +bailiffs +baillies +bailment +bailsman +bailsmen +baitfish +baitings +Bajocian +Bakelite +bakemeat +bakeries +Bakerloo +bakeware +Bakewell +baklavas +baladine +baladins +balanced +balancer +balances +balconet +baldness +baldpate +baldrick +baldrics +Balearic +Balinese +balistas +balkiest +balkings +balkline +ballades +balladin +balladry +ballants +Ballarat +ballasts +ballcock +balletic +ballgown +balliest +ballings +ballista +ballocks +ballonet +balloons +balloted +ballotee +ballpens +ballyhoo +ballyrag +balmiest +balmoral +balneary +balsamed +balsamic +baluster +bambinos +banalest +banalise +banality +banalize +banausic +bandaged +bandages +bandanas +bandanna +bandeaux +bandelet +banderol +bandiest +bandings +banditos +banditry +banditti +bandooks +bandoras +bandores +bandrols +bandsman +bandsmen +bandster +banduras +bandying +bandyman +bandymen +bangster +banished +banishes +banister +banjaxed +banjaxes +banjoist +bankable +bankerly +Bankhead +bankroll +bankrupt +banksias +banksman +banksmen +banlieue +bannered +banneret +bannerol +bannocks +banquets +banshees +bantengs +bantered +banterer +bantings +bantling +banxring +Baphomet +baptised +baptises +baptisms +baptists +baptized +baptizes +Barabbas +barathea +Barbados +barbaric +barbasco +barbated +barbecue +barbeque +barbered +barberry +barbette +barbican +barbicel +barbital +Barbizon +barbolas +Barbours +barbules +Barbusse +barchane +barchans +bardling +Bardolph +bardship +bareback +bareboat +barebone +barefoot +baregine +bareness +baresark +barflies +bargains +bargeese +bargello +bargeman +bargemen +bargests +barghest +bargoose +baritone +barkened +barkhans +barkiest +barkless +barmaids +barmiest +barmkins +Barnabas +barnacle +Barnardo +barndoor +Barnsley +barnyard +baroccos +barogram +barometz +baronage +baroness +baronets +baronial +baronies +baronnes +baroques +barostat +Barotses +barouche +barracan +barracks +barrages +barranca +barranco +barrator +barratry +Barrault +barrette +barricos +barriers +barrings +barrulet +barstool +bartered +barterer +bartisan +bartizan +Bartlemy +Bartlett +barwoods +barytone +barytons +basaltic +basanite +bascules +baseball +baseband +baselard +baseless +basement +baseness +basenjis +bashings +bashless +bashliks +bashlyks +basicity +basidial +basidium +Basildon +Basilian +basilica +basilisk +basinets +basinful +Basinger +basketry +basophil +Basothos +basquine +Bassanio +basseted +bassinet +bassists +bassoons +basswood +bastards +bastardy +bastides +bastille +bastings +bastions +Batavian +batching +bateleur +batement +bathetic +bathmats +bathmism +bathorse +bathrobe +bathroom +bathtubs +Bathurst +batology +batoning +batswing +battalia +batteled +batteler +battened +battered +batterer +batterie +battiest +battings +battlers +battling +batwoman +batwomen +baubling +bauchles +baudekin +Baudrons +Bauhinia +baulking +bauxitic +Bavarian +bawcocks +bawdiest +bawdkins +bawlings +bayad�re +bayberry +bayonets +Bayreuth +Baywatch +bazookas +bazoukis +bdellium +beachier +beaching +beaconed +beadiest +beadings +beadsman +beadsmen +beaglers +beagling +beamiest +beamings +beamless +beamlets +beanpole +bearable +bearably +bearbine +beardies +bearding +bearings +bearlike +bearskin +bearward +beasties +beastily +beatable +beathing +beatific +beatings +beatniks +Beatrice +beauffet +beaufins +Beaufort +Beaulieu +Beaumont +beauties +beautify +Beauvais +Beauvoir +beauxite +beavered +bebeerus +bebopped +bebopper +becalled +becalmed +b�casses +bechamel +bechance +becharms +Bechuana +Beckford +Beckmann +beckoned +beclouds +becoming +becurled +bedabble +bedaggle +bedarken +bedashed +bedashes +bedaubed +bedawins +bedazing +bedazzle +bedcover +beddable +beddings +bedeafen +bedecked +bedeguar +bedesman +bedesmen +bedevils +bedewing +bedights +bedimmed +Bedivere +bedizens +bedmaker +bedouins +bedposts +bedrench +bedright +bedrocks +bedrooms +bedsides +bedsocks +bedsores +bedstead +bedstraw +bedtable +bedticks +bedtimes +beducked +bedunged +bedusted +bedwards +bedwarfs +bedyeing +Beeching +beefalos +beefcake +beefiest +beehives +beelines +Beerbohm +beeriest +beeswing +beetling +beetroot +befallen +beffanas +befinned +befitted +beflower +befogged +befooled +befouled +befriend +befringe +befuddle +begemmed +begetter +beggared +beggarly +beggings +beghards +begifted +begilded +beginner +begirded +beglooms +begnawed +begonias +begorrah +begorras +begotten +begrimed +begrimes +begrudge +beguiled +beguiler +beguiles +beguines +behalves +behatted +behaving +behavior +beheadal +beheaded +behemoth +beholden +beholder +behooved +behooves +behoving +behowled +beignets +bejabers +bejesuit +bejewels +bekissed +bekisses +beknaved +beknaves +belabors +belabour +belacing +belating +belauded +belaying +belchers +belching +beldames +belfried +belfries +Belgians +Belgrade +believed +believer +believes +belittle +Belizean +bellbind +bellcote +belleter +bellevue +bellowed +bellower +bellpull +bellpush +bellwort +bellyful +bellying +belonged +belonger +beloving +beltings +beltways +Bembexes +Bembixes +bemeaned +bemiring +bemoaned +bemoaner +bemocked +bemuddle +bemusing +benaming +benchers +benching +bendings +bendlets +bendwise +Benedick +Benedict +benefact +benefice +benefits +benetted +Benetton +Benfleet +Bengalis +Benghazi +Benidorm +benights +benignly +Beninese +beniseed +benisons +b�nitier +benjamin +benthoal +Bentinck +bentwood +benumbed +benzoate +benzoyls +bepaints +bequeath +bequests +berating +berberis +berceaux +berceuse +berdache +bereaved +bereaven +bereaves +Berenice +bergamas +bergamot +bergenia +Bergerac +berg�res +bergfall +berghaan +bergmehl +bergylts +beriberi +Berkeley +Berliner +berlines +Bermudan +Bermudas +berobbed +berrying +berserks +berthage +berthing +Berthold +Bertrand +beryllia +Besan�on +bescreen +beseemed +beseemly +besetter +beshadow +beshamed +beshames +beshrews +besieged +besieger +besieges +beslaved +beslaves +besmears +besmirch +besognio +besoming +besotted +besought +bespeaks +bespoken +besports +bespouts +bespread +besprent +Bessemer +bestadde +besteads +bestiary +besticks +bestowal +bestowed +bestower +bestreak +bestrewn +bestrews +bestride +bestrode +bestrown +besuited +betacism +betaking +betatron +beteemed +beteemes +Bethesda +bethinks +bethrall +bethumbs +bethumps +bethwack +betiding +betitled +betitles +Betjeman +betoiled +betokens +betonies +betrayal +betrayed +betrayer +betreads +betroths +bettered +bettings +betweens +bevatron +bevelers +beveling +bevelled +beveller +beverage +Beverley +bewailed +bewigged +bewilder +bewrayed +beziques +bezonian +bezzling +bheestie +Biafrans +biannual +Biarritz +biasings +biassing +biathlon +bibation +bibcocks +bibelots +biblical +biblists +bibulous +bicepses +bickered +bickerer +biconvex +bicuspid +bicycled +bicycler +bicycles +bidarkas +biddable +biddings +bidental +Biennale +biennial +bifacial +bifocals +bigamies +bigamist +bigamous +bigarade +bigeners +bigheads +bighorns +bigmouth +Bignonia +bijwoner +bikeways +bilabial +bilander +bilberry +bilgiest +bilimbis +billbook +billeted +billfish +billfold +billhead +billhook +billiard +billings +billions +Billiton +billowed +billyboy +bilobate +bimanous +bimanual +bimbashi +bimbette +binaries +binaural +bindings +bindweed +bingling +binnacle +binocles +binomial +bioassay +bioblast +biocidal +biocides +biogases +biogenic +biograph +biolysis +biometry +biomorph +bionomic +biophore +biophors +bioplasm +bioplast +biopsies +bioscope +biotypes +biparous +biphasic +biphenyl +biplanes +biracial +biramous +birching +birdbath +birdcage +birdcall +birdings +birdlike +birdseed +birdshot +birdwing +birettas +birianis +biriyani +Birkbeck +birlings +birlinns +birthday +birthing +biryanis +biscacha +Biscayan +biscuits +biscuity +bisected +bisector +biserial +bisexual +bishoped +Bismarck +bistable +bistorts +bistoury +bitchery +bitchier +bitchily +bitching +bitesize +bitingly +bittacle +bitterer +bitterly +bitterns +bittiest +bittocks +bitumens +bivalent +bivalves +bivouacs +bivvying +Bixaceae +biyearly +bizcacha +blabbers +blabbing +blackboy +blackcap +blackens +blackest +blackfly +blacking +blackish +blackleg +blackout +blacktop +bladders +bladdery +blaggers +blagging +blagueur +Blairism +Blairite +blamable +blamably +blameful +blanched +blanches +blancoed +blancoes +blandest +blandish +blankest +blankets +blankety +blanking +blanquet +blarneys +blashier +blastema +blasters +blasting +blastoid +blastula +blatancy +blathers +blatters +blatting +blauboks +blaworts +blazered +blazoned +blazoner +blazonry +bleached +bleacher +bleaches +bleakest +blearier +blearily +blearing +bleaters +bleating +bleeders +bleeding +bleepers +bleeping +blenched +blenches +blenders +blending +Blenheim +blennies +blesboks +blessing +blethers +bletting +bleu�tre +blighted +blighter +blimbing +blimpish +blindage +blinders +blindest +blinding +blinkard +blinkers +blinking +blinkses +blintzes +blipping +blissful +blisters +blistery +blithely +blithers +blithest +blitzing +blizzard +bloaters +bloating +blobbing +blockade +blockage +blockers +blocking +blockish +blokeish +blondest +bloodied +bloodier +bloodies +bloodily +blooding +bloomers +bloomery +bloomier +blooming +bloopers +blooping +blossoms +blossomy +blotched +blotches +blotters +blottier +blotting +blouboks +blousing +blousons +blowback +blowball +blowdown +blowfish +blowguns +blowhard +blowhole +blowiest +blowlamp +blowoffs +blowpipe +blowsier +blowzier +blubbers +blubbery +blubbing +bluchers +bludgeon +bludgers +bludging +blueback +bluebell +bluebird +bluecaps +bluecoat +bluefish +bluegill +bluegown +blueings +bluejays +blueness +bluenose +bluetits +bluettes +blueweed +bluewing +bluffers +bluffest +bluffing +blunders +blungers +blunging +Blunkett +bluntest +blunting +bluntish +blurring +blurting +blushers +blushful +blushing +blusters +blustery +Boadicea +boarders +boarding +boarfish +boasters +boastful +boasting +boatbill +boatrace +boattail +bobbinet +bobbling +bobolink +bobsleds +bobstays +bobtails +bobwheel +bodement +bodhr�ns +bodikins +bodiless +Bodleian +bodysuit +bodywork +Boeotian +Boethius +bogbeans +bogeyism +bogeyman +bogeymen +boggards +boggarts +boggiest +bogglers +boggling +boglands +Bohemian +boilings +boinging +boinking +boldness +bolivars +Bolivian +bollards +bollocks +bolshies +bolsters +bolthole +boltings +bombards +bombasts +bombaxes +bomblets +bomboras +bombycid +bonamani +bonamano +bonanzas +bonassus +bondager +bondings +bondmaid +bondsman +bondsmen +bonefish +bonehead +boneless +bonesets +boneyard +bonfires +bongrace +bonhomie +bonibell +boniface +boniness +bonneted +bonniest +bonsella +bonspiel +bontebok +boobooks +boobyish +boobyism +boodying +boofhead +boohooed +bookable +bookcase +bookings +bookland +bookless +booklets +booklice +booklore +bookmark +bookrest +bookshop +bookwork +bookworm +boomings +boomlets +boomtown +boosters +boosting +bootboys +boothose +bootikin +bootlace +bootlast +bootlegs +bootless +bootlick +booziest +borachio +boracite +Bordeaux +bordello +bordered +borderer +bordures +borecole +borehole +Borghese +boringly +Bornholm +Borodino +boronias +boroughs +borrowed +borrower +borsches +borschts +borstall +borstals +boscages +boschbok +boskages +boskiest +Bosnians +bosoming +bosquets +bossiest +bostangi +botanise +botanist +botanize +botargos +botchers +botchery +botchier +botching +botflies +bothered +botholes +botryoid +botryose +Botrytis +Botswana +bottegas +bottines +bottlers +bottling +bottomed +bottomry +botulism +bouch�es +bouderie +Boudicca +boudoirs +bouffant +boughpot +boughten +bouillis +bouillon +boulders +Boulogne +boulters +boulting +bouncers +bouncier +bouncily +bouncing +boundary +bounders +bounding +bounties +bountree +bouquets +Bourbaki +bourbons +bourdons +bourgeon +bourkhas +bourlaws +bourr�es +boursier +bourtree +boutades +boutique +boutonn� +bouviers +bouzouki +bovinely +bowelled +bowering +bowheads +bowknots +bowlders +bowlfuls +bowlines +bowlings +bowshots +bowsprit +bowyangs +boxiness +boxrooms +boxwoods +boycotts +boyhoods +boyishly +bozzetti +bozzetto +brabbled +brabbles +braccate +bracelet +brachets +brachial +brachium +brackens +brackets +brackish +bracteal +bractlet +bradawls +Bradbury +Bradford +Bradshaw +braggart +braggers +bragging +Brahmins +braiding +Braidism +brailing +brailler +brainbox +brainier +braining +brainish +brainpan +braising +brakeman +brakemen +brakiest +Bramante +brambles +Bramleys +brancard +branched +brancher +branches +branchia +Brancusi +brandade +branders +brandied +brandies +branding +brandise +brandish +brangled +brangles +branking +brannier +bransles +brantles +braseros +brashest +brashier +brasiers +Brasilia +brassard +brassart +brassets +brassica +brassier +brassies +brassily +bratchet +bratling +bratpack +brattice +brattish +brattled +brattles +braunite +bravados +bravuras +brawlers +brawlier +brawling +brawnier +brazened +brazenly +brazenry +braziers +brazilin +breached +breaches +breading +breadnut +breadths +breakage +breakers +breaking +breaming +breasted +breathed +breather +breathes +breccias +brechams +breeched +breeches +breeders +breeding +breezier +breezily +breezing +bregmata +breloque +Bretagne +bretesse +brethren +brettice +Breughel +breveted +breviary +breviate +breviers +brewages +brewings +brewises +brewpubs +brewster +Brezhnev +Brezonek +Briarean +bribable +brickbat +brickier +brickies +bricking +bricoles +brideman +bridemen +bridging +bridlers +bridling +bridoons +briefest +briefing +brigaded +brigades +brigalow +brigands +brighten +brighter +brightly +Brighton +briguing +brimless +brimmers +brimming +brindisi +brindled +Brindley +bringers +bringing +briniest +brinjals +brinkman +brinkmen +brioches +brionies +briquets +Brisbane +briskens +briskest +briskets +brisking +briskish +brisling +bristled +bristles +bristols +brisures +britches +britskas +Brittany +brittler +britzkas +britzska +broached +broacher +broaches +broadens +broadest +broadish +broadway +brocaded +brocades +brocages +brocards +brocatel +broccoli +brochans +brochure +brockage +brockets +brogging +broguish +broiders +broidery +broilers +broiling +brokages +brokenly +brollies +bromates +bromelia +bromelin +bromides +bromidic +brommers +bronchia +bronchos +bronchus +bronzers +bronzier +bronzify +bronzing +bronzite +brooches +brooders +broodier +brooding +brooking +brookite +brooklet +Brooklyn +Brookner +broomier +brooming +brothels +brothers +brougham +brouhaha +browband +browbeat +browless +brownest +Brownian +brownier +brownies +browning +brownish +Brownism +Brownist +Brownlow +brownout +browsers +browsing +bruchids +Bruckner +Brueghel +bruhahas +bruisers +bruising +bruiting +brulyies +brulzies +Brumaire +brumbies +Brummell +Brummies +brunches +Brunella +brunette +Brunhild +brunting +brushers +brushier +brushing +brusquer +Brussels +brutally +Brynhild +bryology +bryonies +bubaline +bubblier +bubbling +bubingas +buccinas +Buccinum +bucellas +Buchanan +buckaroo +buckayro +buckbean +buckeens +buckeroo +bucketed +buckhorn +buckings +bucklers +buckling +buckrams +buckshee +buckshot +buckskin +bucolics +Budapest +Buddhism +Buddhist +buddings +buddleia +buddling +budgeree +budgeros +budgerow +budgeted +buffered +buffeted +buffoons +bugaboos +bugbanes +bugbears +buggings +bughouse +bugworts +builders +building +Bukovina +bukshees +Bulawayo +Bulgaria +Bulgaric +bulgiest +bulgines +bulkhead +bulkiest +bullaces +bullbars +bulldogs +bulldoze +bulletin +bullfrog +bullgine +bullhead +bullions +bullnose +bullocks +bullocky +bullwhip +bullying +bullyism +bullyrag +bulnbuln +bulrushy +bulwarks +bumaloti +bumblers +bumbling +bummaree +bummocks +bumpered +bumpiest +bumpkins +bunchier +bunching +buncombe +bundling +bundooks +bungalow +bunglers +bungling +bunkered +bunodont +buntings +buntline +buoyages +buoyance +buoyancy +buplever +Burberry +burblers +burbling +burdened +burdocks +burettes +burgages +burganet +burgeons +burghers +Burghley +burglars +burglary +burgling +burgonet +Burgoyne +burgrave +burgundy +burinist +burletta +burliest +burnings +burnouse +Burnsian +burnside +burrells +burrhels +burriest +burritos +burrowed +burrower +burschen +bursitis +bursters +bursting +burthens +burweeds +busgirls +bushbaby +bushfire +bushiest +bushveld +bushwalk +business +buskined +buskings +bussings +bustards +bustiest +bustlers +bustling +busybody +busyness +butchers +butchery +butching +butlered +Butlin's +butments +buttered +buttling +buttocks +buttoned +buttress +buttyman +buttymen +butylene +butyrate +buzzards +buzzings +bycokets +Bygraves +bylander +bypassed +bypasses +byplaces +byrlakin +Byronism +byssuses +bywoners diff --git a/com/agnibho/code/anagram/dictionary/B9.txt b/com/agnibho/code/anagram/dictionary/B9.txt new file mode 100644 index 0000000..53bb2d6 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/B9.txt @@ -0,0 +1,1526 @@ +babacoote +babbitted +Babbittry +babbliest +babblings +babirusas +babirussa +baboonery +baboonish +babooshes +babouches +babushkas +Babylonia +bacchanal +bacchante +bacchants +bacciform +bacharach +bachelors +bacillary +backaches +backbands +backbeats +backbiter +backbites +backboard +backbonds +backboned +backbones +backcombs +backcourt +backcross +backdowns +backdrops +backfalls +backfield +backfills +backfired +backfires +backflips +backhands +backheels +backlands +backlifts +backpacks +backpiece +backplate +backrests +backshish +backsides +backsight +backslash +backslide +backspace +backspins +backstage +backstair +backstall +backstays +backstops +backswept +backswing +backsword +backtrack +backwards +backwater +backwoods +backwords +backworks +backyards +bacterial +bacterian +bacterise +bacterium +bacterize +bacteroid +baculites +badgering +badminton +badmouths +Baedekers +bafflegab +bagatelle +bagginess +bagpipers +bagpiping +baguettes +bagwashes +Bahamians +Bahrainis +bahuvrihi +baignoire +bailiwick +bailliage +bailments +baisemain +bakeapple +bakeboard +bakehouse +bakestone +bakhshish +baksheesh +Balaamite +Balaclava +baladines +Balakirev +Balaklava +balalaika +balancers +balancing +balanitis +balconets +balconied +balconies +baldachin +baldaquin +baldmoney +baldpated +baldpates +baldricks +balection +balefully +Balkanise +balkanize +balkiness +balkingly +balklines +ballabile +ballabili +balladeer +balladine +balladins +balladist +ballasted +ballcocks +ballerina +ballerine +ballgowns +ballistae +ballistas +ballistic +ballonets +ballooned +ballotees +balloting +ballyhoos +Ballymena +ballyrags +balmacaan +balminess +balmorals +Balsamina +balsaming +balsawood +balthasar +Balthazar +Baltimore +Baltoslav +balusters +balzarine +bamboozle +banalised +banalises +banalized +banalizes +banausian +bandaging +bandalore +bandannas +bandelets +bandelier +banderole +banderols +bandicoot +bandobast +bandoleer +bandoleon +bandolero +bandolier +bandoline +bandoneon +bandonion +bandstand +bandsters +bandwagon +bandwidth +bandyings +baneberry +banefully +Bangalore +bangsring +bangsters +banishing +banisters +banjaxing +banjoists +banjulele +bankrolls +bankrupts +bannerets +bannerols +bannister +banqueted +banqueter +banquette +banterers +bantering +bantlings +Bantustan +banxrings +baptising +baptismal +baptistry +baptizing +baragouin +barasinga +barathrum +Barbadian +Barbadoes +barbarian +barbarise +barbarism +barbarity +barbarize +barbarous +barbascos +barbastel +barbecued +barbecues +barbequed +barbeques +barbering +barbettes +barbicans +barbicels +barbitone +barbotine +barcarole +Barcelona +barchanes +bardashes +bardlings +barefaced +Barenboim +bargained +bargainer +bargander +bargellos +bargepole +barghaist +barghests +baritones +barkeeper +barkening +barleymow +barmbrack +Barmecide +barminess +Barnabite +barnacled +barnacles +barnbrack +barndoors +barnstorm +barnyards +barograms +barograph +barometer +barometry +baronages +baronetcy +baroscope +barostats +barouches +barperson +barracked +barracker +barracoon +barracuda +barrancos +barrators +barrelage +barrelful +barrelled +barretter +barrettes +barricade +barricado +barricoes +barrister +barrulets +Barrymore +barstools +bartender +barterers +bartering +Bartholdi +bartisans +bartizans +barytones +basanites +baseballs +baseboard +basecourt +baselevel +baseliner +basements +baseplate +bashawism +bashfully +basically +basifixed +basifugal +basilical +basilican +basilicas +basilicon +basilisks +basinfuls +basipetal +basketful +basophils +basquines +basseting +bassinets +basswoods +bastardly +bastilles +bastinade +bastinado +bastioned +bateleurs +bathhouse +batholite +batholith +Bathonian +bathorses +bathrobes +bathrooms +Bathsheba +bathybius +bathylite +bathylith +batrachia +batswings +batswoman +batswomen +battalias +battalion +battelers +batteling +battement +battening +batterers +batteries +battering +Battersea +battology +baudekins +bavardage +bawdiness +bayad�res +bayoneted +Bayswater +beachhead +beachiest +beachwear +beaconing +beadiness +beadledom +beaglings +beaminess +beamingly +beaneries +beanfeast +beanpoles +beanstalk +bearbines +beardless +Beardsley +bearishly +b�arnaise +bearskins +bearwards +beasthood +beastings +beastlier +beastlike +beatified +beatifies +beatitude +beauffets +Beaumaris +beauteous +beautiful +beaveries +bebeerine +Bebington +beboppers +bebopping +becalling +becalming +beccaccia +beccafico +bechamels +bechanced +bechances +becharmed +Bechstein +beckoning +beclouded +becquerel +becurling +bedabbled +bedabbles +bedaggled +bedaggles +bedarkens +bedashing +bedaubing +bedazzled +bedazzles +bedcovers +bedeafens +bedecking +bedeguars +bedfellow +bedimming +bedizened +bedlamism +bedlamite +bedmakers +bedraggle +bedridden +bedropped +bedspread +bedsteads +bedstraws +bedtables +beducking +bedunging +bedusting +bedwarfed +bedwarmer +beefaloes +beefcakes +beefeater +beefiness +beefsteak +beekeeper +Beelzebub +beemaster +beeriness +Beersheba +beestings +beeswaxed +beeswaxes +Beethoven +beetroots +befalling +befitting +beflowers +befogging +befooling +befortune +befouling +befriends +befringed +befringes +befuddled +befuddles +begemming +begetters +begetting +beggardom +beggaring +beggarman +beggarmen +beggingly +begifting +begilding +beginners +beginning +begirding +beglamour +beglerbeg +begloomed +begnawing +begorrahs +begriming +begrudged +begrudges +beguilers +beguiling +beguinage +behaviors +behaviour +beheadals +beheading +behemoths +beholders +beholding +behooving +behowling +beingless +beingness +bejesuits +bejeweled +bekissing +beknaving +belabored +belabours +belatedly +belauding +beleaguer +belemnite +Belgravia +believers +believing +belittled +belittles +Belizeans +Bellatrix +bellbinds +bellcotes +belleters +bellibone +bellicose +bellowers +bellowing +bellpulls +bellworts +bellyache +bellyfuls +bellyings +bellyland +belomancy +belonging +Belonidae +belvedere +bemeaning +bemoaners +bemoaning +bemocking +bemuddled +bemuddles +Benbecula +bendingly +benedight +benefacts +beneficed +benefices +benefited +benetting +Bengalese +bengaline +benighted +benighter +benignant +benignity +beniseeds +b�nitiers +benjamins +benthonic +benthoses +bentonite +benumbing +benzidine +benzoline +bepainted +bepatched +bequeaths +berberine +berceuses +berdaches +berdashes +bereaving +Beresford +bergamask +bergamots +bergander +bergenias +bergfalls +bergomask +berkelium +Berkshire +Berliners +Bermudans +Bermudian +Bernadine +Bernhardt +Bernoulli +Bernstein +berobbing +berryings +berserker +berserkly +beryllium +bescreens +beseeched +beseecher +beseeches +beseeming +besetment +besetters +besetting +beshadows +beshaming +beshrewed +besiegers +besieging +besitting +beslaving +beslobber +beslubber +besmeared +besmutted +besognios +besotting +bespangle +bespatter +bespeckle +besported +bespotted +bespouted +bespreads +besteaded +bestially +bestirred +bestowals +bestowers +bestowing +bestreaks +bestrewed +bestrides +bestudded +betacisms +betatrons +beteeming +Betelgeux +bethankit +Bethlehem +bethought +bethumbed +bethumped +bethwacks +betitling +betoiling +betokened +betrayals +betrayers +betraying +betrimmed +betrodden +betrothal +betrothed +bettering +betumbled +bevatrons +bevelings +bevellers +bevelling +bevelment +beverages +Beveridge +bewailing +beweeping +bewigging +bewilders +bewitched +bewitches +bewraying +bezoardic +bheesties +Bialystok +biathlete +biathlons +bibacious +bibations +biblicism +biblicist +bicameral +bicipital +bickerers +bickering +biconcave +bicuspids +bicyclers +bicycling +bicyclist +bidentals +bidentate +Bielefeld +biennials +biestings +bifarious +bifoliate +bifurcate +bigamists +bigarades +bigeneric +bigheaded +bigotries +biguanide +bijection +bijwoners +bilabials +bilabiate +bilanders +bilateral +bilharzia +bilimbing +bilingual +biliously +bilirubin +biliteral +billabong +billboard +billbooks +billeting +billfolds +billheads +billhooks +billiards +billionth +billowier +billowing +billyboys +billycock +bilobular +bilocular +bimbashis +bimbettes +bimonthly +binderies +bindweeds +binervate +binnacles +binocular +binomials +binominal +binturong +bioblasts +bioethics +biogenous +biographs +biography +biohazard +biologist +biomasses +biometric +biomining +biomorphs +bionomics +bioparent +biophores +bioplasts +biorhythm +biosphere +biostable +bipartite +bipinnate +bipyramid +birdbaths +birdbrain +birdcages +birdcalls +birdhouse +birdseeds +birdshots +birdwings +biriyanis +birlieman +birliemen +birthdays +birthmark +birthwort +biscachas +bisecting +bisection +bisectors +biserrate +bisexuals +bishopdom +bishopess +bishoping +bishopric +bismillah +bisulcate +bitchiest +bittacles +bitterest +bitterish +bivalence +bivalency +bivalents +bivariant +bivariate +bizarrely +bizcachas +blabbered +blabbings +blackball +blackband +blackbird +blackbody +blackboys +blackbuck +Blackburn +blackbutt +blackcaps +blackcock +blackdamp +blackened +blackface +Blackfeet +blackfish +Blackfoot +blackgame +blackhead +blackings +blackjack +blacklead +blacklegs +blacklist +blackmail +Blackmore +blackness +blackouts +Blackpool +blacktops +blackwood +bladdered +bladework +blaeberry +blagueurs +Blairites +blameable +blameably +blameless +blanching +blancoing +Blandings +blandness +blanketed +blankness +blanquets +blarneyed +blashiest +blaspheme +blasphemy +blastemas +blastings +blastment +blastoids +blastular +blastulas +blatantly +blathered +blatherer +blattered +blazoners +blazoning +bleachers +bleachery +bleaching +bleakness +bleariest +bleatings +bleedings +blemished +blemishes +blenching +blendings +blessedly +blessings +blethered +bletherer +blewitses +blighters +blighties +blighting +blimbings +blindages +blindfish +blindfold +blindings +blindless +blindness +blindworm +blinkards +blinkered +blissless +blistered +blithered +blizzards +blizzardy +bloatings +blockaded +blockader +blockades +blockages +blockhead +blockings +blockwork +blondness +bloodheat +bloodiest +bloodless +bloodline +bloodlust +bloodroot +bloodshed +bloodshot +bloodwood +bloodying +bloomiest +bloomless +blossomed +blotchier +blotching +blottiest +blottings +blowbacks +blowballs +blowdowns +blowflies +blowhards +blowholes +blowlamps +blowpipes +blowsiest +blowtorch +blowvalve +blowziest +blubbered +blubberer +bludgeons +bluebacks +bluebeard +bluebells +blueberry +bluebirds +bluecoats +bluegills +bluegowns +bluegrass +bluenoses +blueprint +bluestone +blueweeds +bluewings +bluffness +blundered +blunderer +bluntness +blurtings +blushings +blushless +blustered +blusterer +blutwurst +Boanerges +boardings +boardroom +boardwalk +boarhound +boastings +boastless +boatbills +boathouse +boatraces +boatswain +boattails +bobberies +bobbinets +bobbysock +bobolinks +bobsleigh +bobtailed +bobwheels +Boccaccio +bodacious +bodeguero +bodements +bodyguard +bodyshell +bodysuits +bodyworks +boerewors +bogginess +Bohemians +boileries +bolection +boletuses +boliviano +Bolivians +bolletrie +bollocked +Bollywood +Bolognese +bolometer +bolometry +Bolshevik +bolstered +boltholes +Boltzmann +bombarded +bombardon +bombasine +bombastic +bombazine +bombilate +bombinate +bombproof +bombshell +bombsight +bombycids +Bonaparte +bonasuses +bondagers +bondmaids +bondstone +boneheads +boneyards +bongraces +bonhommie +bonhomous +bonibells +bonifaces +Bonington +bonneting +bonnibell +bonniness +bonsellas +bonspiels +bonteboks +boofheads +boogieing +boohooing +bookcases +booklands +booklouse +bookmaker +bookmarks +bookplate +bookrests +bookshelf +bookshops +bookstall +bookstand +bookstore +bookworks +bookworms +boomerang +boomtowns +boondocks +boorishly +bootblack +bootikins +bootlaces +bootlasts +bootmaker +bootstrap +booziness +borachios +bordellos +bordereau +borderers +bordering +borecoles +boreholes +borghetto +borrowers +borrowing +borstalls +bortsches +boschveld +boskiness +Bosphorus +bossiness +bostangis +bostryxes +botanical +botanised +botanises +botanists +botanized +botanizes +botargoes +botchiest +botchings +bothering +bottleful +bottoming +Botvinnik +boughpots +bouillons +Boulanger +boulevard +bounciest +boundless +bounteous +bountiful +bountrees +bourasque +bourgeois +bourgeons +boursiers +bourtrees +boutiques +boutonn�e +bouzoukis +bowelling +bowsprits +bowstring +bowstrung +boxercise +boxkeeper +boxwallah +boycotted +boycotter +boyfriend +Brabantio +brabbling +bracelets +brachiate +Brachyura +bracketed +Bracknell +bracteate +bracteole +bractless +bractlets +Bradburys +braggarts +Brahmanic +Brahminee +Brahminic +braidings +braillers +Braillist +braincase +braindead +brainiest +brainless +brainpans +brainsick +brainwash +brainwave +brakeless +bramblier +brambling +brancards +branchers +branchery +branchiae +branchial +branchier +branching +branchlet +brandades +brandered +brandises +brandling +brandreth +brangling +branniest +Brasenose +brashiest +brashness +brassards +brassarts +brasserie +brassicas +brassiere +brassiest +bratchets +bratlings +bratticed +brattices +brattling +bratwurst +bravadoed +bravadoes +braveness +braveries +brawliest +brawlings +brawniest +brazeless +brazening +brazilein +Brazilian +breaching +breadhead +breadline +breadnuts +breadroom +breadroot +breakable +breakages +breakaway +breakback +breakdown +breakeven +breakfast +breakings +breakneck +breaktime +breasting +breastpin +breathers +breathful +breathier +breathily +breathing +Brechtian +Brecknock +breeching +breedings +breezeway +breeziest +bregmatic +breloques +Brentford +Brentwood +bretasche +bretesses +bretticed +brettices +Bretwalda +breveting +brevetted +breviates +breweries +brewsters +bribeable +briberies +brickbats +brickiest +brickings +brickkiln +brickwall +brickwork +brickyard +bricolage +bridecake +bridemaid +bridesman +bridesmen +bridewell +bridgable +bridgings +bridleway +briefcase +briefings +briefless +briefness +brigadier +brigading +Brigadoon +brigalows +brigandry +Brighouse +brightens +brightest +briguings +brilliant +brimstone +brimstony +brindisis +bringings +brininess +brinjarry +briquette +briskened +briskness +brislings +bristlier +bristling +Britannia +Britannic +Briticism +Britisher +Britomart +Britoness +britschka +brittlely +brittlest +Brittonic +britzskas +broachers +broaching +broadband +broadbill +broadcast +broadened +broadloom +Broadmoor +broadness +broadside +broadtail +broadways +broadwise +brocading +broccolis +brochette +brochures +brogueish +broidered +broiderer +brokerage +brokeries +bromelain +bromeliad +bromelias +brominism +bromoform +bronchial +bronziest +bronzings +broodiest +brooklets +brooklime +Brookside +brookweed +broomball +broomiest +broomrape +brotherly +broughams +brouhahas +browbeats +browniest +brownings +brownness +brownouts +browsings +Bruchidae +bruisings +Brummagem +brunettes +Brunonian +Brunswick +brushiest +brushings +brushless +brushwood +brushwork +brusquely +brusquest +brutalise +brutalism +brutalist +brutality +brutalize +brutelike +bruteness +brutified +brutifies +brutishly +Bruxelles +Brylcreem +Bryophyta +bryophyte +Brythonic +bubalises +bubbliest +buccaneer +buccanier +Bucentaur +Bucharest +buckaroos +buckayros +buckbeans +buckboard +buckeroos +bucketful +bucketing +buckhorns +buckhound +buckishly +Buckley's +bucklings +buckramed +buckshish +buckshots +buckskins +buckteeth +buckthorn +bucktooth +buckwheat +buckyball +buckytube +bucolical +Bucuresti +Buddhists +buddleias +budgerows +budgetary +budgeting +Budweiser +buffaloed +buffaloes +buffering +buffeting +bugleweed +buglosses +buhrstone +buildings +bulbosity +bulbously +Bulgarian +bulginess +bulgingly +bulkheads +bulkiness +bullaries +bulldozed +bulldozer +bulldozes +bulletins +bulletrie +bullfight +bullfinch +bullfrogs +bullgines +bullheads +bullishly +bullswool +bullwhack +bullwhips +bullyrags +bulnbulns +bulrushes +bulwarked +Bumbledom +bummaloti +bummarees +bumpering +bumpiness +bumpology +bumptious +bunchiest +bunchings +Bundesrat +Bundestag +bundlings +bundobust +bungaloid +bungalows +bunglings +bunkhouse +Bunthorne +buntlines +buonamani +buonamano +buoyantly +buprestid +Buprestis +burblings +burdashes +burdening +burdenous +burganets +burgeoned +burgesses +burgonets +burgraves +burinists +burlesque +burlettas +burliness +burningly +burnished +burnisher +burnishes +burnouses +burnsides +burrawang +Burroughs +burrowers +burrowing +burrstone +bursarial +bursaries +bursiform +burthened +bushcraft +busheller +bushfires +bushiness +bushvelds +bushwalks +bushwhack +bushwoman +butadiene +butchered +butcherly +butlerage +butleries +butlering +butterbur +buttercup +butterfly +butterier +butteries +butterine +buttering +butternut +buttocked +buttoning +buttonses +buxomness +Buxtehude +buzzingly +bycatches +bylanders +bypassing +byrewoman +byrewomen +bystander +bytownite +Byzantine +Byzantium diff --git a/com/agnibho/code/anagram/dictionary/C1.txt b/com/agnibho/code/anagram/dictionary/C1.txt new file mode 100644 index 0000000..f2ad6c7 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C1.txt @@ -0,0 +1 @@ +c diff --git a/com/agnibho/code/anagram/dictionary/C10.txt b/com/agnibho/code/anagram/dictionary/C10.txt new file mode 100644 index 0000000..2da0dc2 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C10.txt @@ -0,0 +1,2520 @@ +cabalettas +cabalistic +caballeros +cabbalists +cablegrams +cabriolets +cacafuegos +cacciatora +cacciatore +cachinnate +cacholongs +cacodaemon +cacodemons +cacogenics +cacography +cacomistle +cacophonic +cacotopian +cacotopias +cacotrophy +cactaceous +cacuminous +cadaverous +cadetships +caducities +Cadwalader +caecilians +Caernarfon +Caernarvon +Caerphilly +Caesareans +Caesarship +caespitose +cafeterias +cafetieres +caffeinism +cailleachs +cairngorms +cajolement +cajolingly +cakewalked +cakewalker +calabashes +calabooses +calabreses +Calabrians +calamancos +calamander +calamaries +calamities +calamitous +calandrias +calavances +calcaneums +calcareous +calceating +calcedonio +calceiform +calceolate +calciferol +calcifying +calcimined +calcimines +calcinable +calcitonin +calculable +calculably +calculated +calculates +calculator +calculuses +Caledonian +calefactor +calembours +calendared +calendarer +calendered +calendrers +calendries +calendulas +calentures +calescence +calfdozers +calibrated +calibrates +calibrator +California +caliginous +Caligulism +calipashes +caliphates +Callicarpa +calligrams +callowness +calmatives +calmodulin +caloricity +calorifier +calotypist +calumniate +calumnious +Calvinists +calyciform +calyculate +calyptrate +camanachds +camarillas +Camberwell +Cambodians +cambozolas +camcorders +camelbacks +camelopard +Camemberts +cameration +camerawork +camerlengo +camerlingo +Cameronian +Camorrista +camouflage +camouflets +camoufleur +campaigned +campaigner +campaneros +campaniles +campanists +campanular +campeadors +campesinos +campestral +campground +camphorate +Camptonite +Canaanites +canaliculi +canalising +canalizing +cancellate +cancellers +cancelling +cancellous +Cancerians +cancionero +cancriform +cancrizans +candelabra +candelilla +candescent +candidates +candidness +candlepins +candlewick +candytufts +canefruits +canephoras +canephores +canephorus +canescence +canistered +cankeredly +cannabinol +cannellini +cannelloni +cannelures +cannibally +cannonaded +cannonades +cannonball +cannoneers +cannoniers +canonesses +canonicals +canonicate +canonicity +canonising +canonistic +canonizing +canoodling +canophilia +canophobia +canorously +cantabanks +cantaloupe +cantaloups +cantatrice +Canteloube +canterbury +cantharids +canticoing +canticoyed +cantilenas +cantilever +cantillate +cantonised +cantonises +cantonized +cantonizes +cantonment +Cantuarian +canvassers +canvassing +canzonetta +canzonette +caoutchouc +capability +Capablanca +capacitate +capacities +capacitors +caparisons +capellines +Capernaite +capernoity +capillaire +capitalise +capitalism +capitalist +capitalize +capitation +capitellum +capitolian +capitoline +capitulant +capitulars +capitulary +capitulate +capnomancy +capocchias +capodastro +caponieres +caponising +caponizing +capotastos +Cappadocia +cappuccino +capreolate +capriccios +capricious +Capricorns +caprifying +caprylates +capsizable +capsulised +capsulises +capsulized +capsulizes +captaining +captioning +captiously +captivance +captivated +captivates +captivator +carabineer +carabiners +carabinier +caracoling +caracolled +Caractacus +carambolas +caramboled +caramboles +caramelise +caramelize +caramelled +Carangidae +carapacial +Caravaggio +caravances +caravaneer +caravaners +caravaning +caravanned +caravanner +carbamates +carbamides +carbanions +carbineers +carbiniers +carbonades +carbonados +carbonated +carbonates +carbonised +carbonises +carbonized +carbonizes +carbonnade +carboxylic +carbuncled +carbuncles +carburated +carburates +carbureter +carburetor +carburised +carburises +carburized +carburizes +carcassing +carcinogen +carcinomas +carcinosis +cardamines +cardboards +cardboardy +cardialgia +cardiganed +cardinally +cardiogram +cardiology +cardphones +careenages +careerists +carefuller +caregivers +carelessly +caressings +caretakers +caretaking +careworker +carfuffled +carfuffles +Caricaceae +caricature +cariogenic +carjackers +carjacking +carmagnole +Carmarthen +Carmelites +Carmichael +carnahubas +carnalised +carnalises +carnalisms +carnalists +carnalized +carnalizes +carnallite +carnassial +carnations +carnelians +carnifying +carnivores +Carolinian +carotenoid +carotinoid +carpellary +carpellate +carpenters +carpetings +carphology +carpophore +carpospore +carrageens +carragheen +carrefours +Carrington +carritches +carronades +carrotiest +carrousels +cartelised +cartelises +cartelists +cartelized +cartelizes +carthamine +Carthusian +cartilages +cartograms +cartomancy +cartonages +cartonnage +cartooning +cartoonish +cartoonist +cartophile +cartophily +cartouches +cartridges +cartwheels +cartwright +caruncular +carvacrols +caryatidal +caryatides +caryatidic +Casabianca +Casablanca +cascaduras +cascarilla +caseinogen +casemakers +casemented +cashierers +cashiering +cashpoints +cassareeps +cassaripes +cassations +Cassegrain +casseroled +casseroles +cassimeres +cassingles +Cassiopeia +cassolette +cassonades +cassumunar +castellans +castellums +castigated +castigates +castigator +Castleford +castoreums +castrating +castration +casualised +casualises +casualisms +casualized +casualizes +casualness +casualties +catabolism +cataclases +cataclasis +cataclasms +cataclysms +catacumbal +catafalque +catalectic +cataleptic +catalogers +cataloging +catalogize +catalogued +cataloguer +catalogues +catalysers +catalysing +catalyzers +catalyzing +catamarans +catamenial +catamounts +catananche +cataphonic +cataphract +cataphylls +cataplasms +catapulted +catapultic +catarrhine +catarrhous +catastases +catastasis +catatonics +catcalling +catchflies +catchiness +catchlines +catchments +catchpenny +catchpoles +catchpolls +catchweeds +catchwords +catechesis +catechetic +catechised +catechiser +catechises +catechisms +catechists +catechized +catechizer +catechizes +catechumen +categorial +categories +categorise +categorist +categorize +catenarian +catenaries +catenating +catenation +cateresses +caterwauls +catharised +catharises +catharized +catharizes +cathartics +cathedrals +cathetuses +catholicon +catholicos +catnapping +catoptrics +Caucasians +Caucasoids +cauchemars +caulescent +cauliculus +cauliflory +causations +causatives +causewayed +causticity +cauterants +cauterised +cauterises +cauterisms +cauterized +cauterizes +cautionary +cautioners +cautioning +cautiously +cavalcaded +cavalcades +Cavalcanti +cavaliered +cavalierly +cavalryman +cavalrymen +cavefishes +Cavicornia +cavillings +cavitating +cavitation +cecutiency +ceilometer +celandines +celebrants +celebrated +celebrates +celebrator +celestials +cellarages +cellarists +cellobiose +cellophane +cellphones +cellulated +cellulites +cellulitis +celluloids +celluloses +cellulosic +Celticists +Celtomania +cembalists +cemeteries +censorious +censorship +censurable +censurably +centaureas +centaurian +centauries +centeniers +centennial +centerfold +centerings +centesimal +centigrade +centigrams +centiliter +centilitre +centillion +centimeter +centimetre +centipedes +centonists +centralise +centralism +centralist +centrality +centralize +centrefold +centreline +centricity +centrifuge +centrioles +centroidal +centromere +centrosome +centumviri +centupling +centurions +cephalagra +cephalitis +Cephalonia +cephalopod +ceramicist +ceratopsid +cerebellar +cerebellic +cerebellum +cerebrated +cerebrates +cerebritis +ceremonial +ceremonies +ceriferous +Cerinthian +cerographs +cerography +certifiers +certifying +certiorari +certitudes +ceruminous +cervicitis +cesarevich +cesarevnas +cessations +cessionary +cestoidean +Cestracion +cevadillas +chaetodons +Chaetopoda +chaetopods +chafferers +chaffering +chaffingly +chagrining +chainplate +chainworks +chairborne +chairbound +chairlifts +chairwoman +chairwomen +chalazions +chalcedony +Chalcidian +chalcocite +Chaldaeans +chaldaisms +chalkboard +chalkiness +chalkstone +challenged +challenger +challenges +chalumeaux +chalybeate +chamaeleon +Chamaerops +chamberers +chambering +chamberpot +Chambertin +chambranle +chameleons +chamfering +chamfrains +chamomiles +champagnes +champaigns +champerses +champignon +championed +champlev�s +chanceless +chancellor +chanceries +chanciness +chancroids +chandelier +chandelled +chandelles +chandlerly +changeable +changeably +changeless +changeling +channelers +channelise +channelize +channelled +chanteuses +chaparajos +chaparejos +chaparrals +chapelries +chaperoned +chaperones +chapfallen +chaplaincy +chaplainry +chappesses +chaprassis +chaptalise +chaptalize +chaptering +charabancs +characters +charactery +Charadrius +charbroils +chardonnay +Charentais +chargeable +chargeably +chargeless +chargrills +charioteer +charioting +charitable +charitably +charivaris +charladies +charlatans +Charleston +charlottes +charmeuses +charmingly +Charollais +charophyta +charterers +chartering +charthouse +Chartreuse +chartrooms +chartulary +Charybdian +chasmogamy +Chassidism +chasteners +chasteness +chastening +chastisers +chastising +ch�telaine +ch�telains +chatoyance +chatoyancy +Chatsworth +chatterbox +chatterers +chattering +Chatterley +Chatterton +chattiness +Chaucerian +Chaucerism +chaudfroid +chauffeurs +chauffeuse +chaulmugra +chauntress +chauntries +chaussures +Chautauqua +chauvinism +chauvinist +chavenders +cheapeners +cheapening +cheapskate +chechakoes +chechaquas +chechaquos +checkbooks +checkclerk +checkering +checklaton +checklists +checkmated +checkmates +checkpoint +checkrooms +cheechakos +cheechalko +cheekiness +cheekpiece +cheerfully +cheeriness +cheesecake +cheesewire +cheesewood +cheesiness +cheirology +Chekhovian +chelations +chelicerae +Chelmsford +chelonians +Cheltenham +chemiatric +chemically +chemicking +chemisette +chemitypes +chemonasty +chemostats +chemotaxis +chequebook +chequering +cherimoyas +cherimoyer +cherishing +Cherkesses +chersonese +cherubical +cherubimic +chessboard +chesspiece +chessylite +Chesterton +chestiness +chevaliers +chevelures +chevesaile +chevisance +chevrettes +Chevrolets +chevrotain +chiasmuses +chibouques +chicanings +chiccories +Chichester +chickadees +chickarees +chickening +chickenpox +chicklings +chickweeds +chieferies +chiefesses +chieflings +chiefships +chieftains +chiffonier +chihuahuas +chilblains +childbirth +Childermas +childhoods +childishly +chiliagons +chiliarchs +chiliarchy +chiliastic +chilliness +chillingly +chilopodan +chimerical +chimneying +chimpanzee +chinachina +Chinagraph +chinaroots +chincapins +chinchilla +chinkapins +chinovniks +chinquapin +chinstraps +chintziest +chinwagged +chionodoxa +chipboards +chipolatas +chirimoyas +chirognomy +chirograph +chiromancy +chironomer +chironomic +chironomid +Chironomus +Chiroptera +chirpiness +chirruping +chirurgeon +chirurgery +chisellers +chiselling +chitarrone +chitarroni +chittagong +chittering +chivalrous +chlamydate +chlamydial +chloralism +chloralose +chloridate +chloridise +chloridize +chlorinate +chlorinise +chlorinize +chlorodyne +chloroform +chlorophyl +chloroquin +choanocyte +chocaholic +chockstone +chocoholic +chocolates +chocolatey +choiceness +choirgirls +chokeberry +chokebores +cholagogic +cholagogue +cholecysts +choleliths +choliambic +chondrites +chondritic +chondritis +chondrules +chopfallen +choppiness +chopsticks +choraguses +chordotomy +choregraph +choreguses +choriambic +choriambus +choristers +chorizonts +choultries +chowkidars +chrematist +Christabel +christened +Christhood +Christiana +Christians +Christless +Christlike +Christmasy +chromatics +chromatype +chromidium +chromogram +chromomere +chromophil +chromosome +chromotype +chronicity +chronicled +chronicler +chronicles +chronogram +chronology +chronotron +chrysalids +chrysanths +chrysolite +chrysophan +Chrysostom +chrysotile +chubbiness +chuckholes +chucklings +chuckwalla +chuffiness +chumminess +chundering +chunderous +chunkiness +chuntering +churchiest +churchings +churchless +churchward +churchways +churchyard +churlishly +Chuzzlewit +chylaceous +chylifying +chymifying +cibachrome +cicadellid +cicatrices +cicatricle +cicatrised +cicatrises +cicatrixes +cicatrized +cicatrizes +Ciceronian +cicinnuses +cicisbeism +cigarettes +cigarillos +ciliophora +cimetidine +cinchonine +cinchonise +cinchonism +cinchonize +cincinnate +Cincinnati +cincturing +Cinderella +cinemagoer +cinephiles +cineplexes +cinerarias +cinerarium +cineration +cinerators +cinnabaric +cinnamonic +cipherings +cipollinos +Circassian +circensial +circensian +circuiteer +circuities +circuiting +circuitous +circulable +circularly +circulated +circulates +circulator +circumcise +circumduct +circumflex +circumfuse +circummure +circumpose +circumvent +cirrhopods +cirrigrade +cirripedes +Cirripedia +Cisleithan +cismontane +cispontine +cistaceous +Cistercian +citharists +citizeness +citizenise +citizenize +citronella +citronwood +citrulline +cityscapes +civilisers +civilising +civilities +civilizers +civilizing +Clactonian +cladistics +cladograms +claircolle +clamberers +clambering +clamjamfry +clamminess +clamourers +clamouring +clampdowns +clampering +clangboxes +clangorous +clangoured +clannishly +clanswoman +clanswomen +clapboards +clapbreads +clapometer +clapperboy +clappering +clarabella +Clarenceux +clarichord +clarifiers +clarifying +clarionets +classicise +classicism +classicist +classicize +classified +classifier +classifies +classiness +classmates +classrooms +clatterers +clattering +clauchting +claughting +Clausewitz +clavichord +clavicorns +clavicular +claviculas +Clayhanger +claymation +cleanliest +cleansable +cleansings +cleanskins +clearances +clearcoles +clearskins +clearwings +clematises +Clemenceau +Clementina +clementine +clepsydrae +clepsydras +clerecoles +clerestory +clergiable +clergyable +clerically +clericates +clerkesses +clerkliest +clerkships +cleverdick +cleverness +clicketing +clientages +client�les +clientship +cliffhangs +climatical +climatised +climatises +climatized +climatizes +clinginess +clingstone +clinically +clinicians +clinkstone +clinometer +clinometry +clinquants +cliquiness +cliquishly +clistogamy +clitorises +clittering +cloacaline +cloakrooms +clobbering +clockfaces +clockmaker +clockworks +clodhopper +clofibrate +clogdances +clogginess +cloistered +cloisterer +cloistress +clomiphene +clonazepam +clostridia +clottering +clottiness +cloudberry +cloudburst +cloudiness +cloudlands +cloudscape +cloverleaf +clowneries +clownishly +clubhouses +clubmaster +cluelessly +clumpiness +clumsiness +Clusiaceae +clustering +cluttering +Clydesdale +Clydesider +clypeiform +cnidoblast +coacervate +coachloads +coachwhips +coachworks +coactivity +coadjacent +coadjutant +coadjutors +coadjutrix +coadunated +coadunates +coagulable +coagulants +coagulated +coagulates +coagulator +coalescent +coalescing +coalfields +coalfishes +coalitions +coalmaster +coaptation +coarseness +coarsening +coastguard +coastlines +coastwards +Coatbridge +coatstands +cobbleries +Cobdenites +cobwebbery +cobwebbing +cocainised +cocainises +cocainists +cocainized +cocainizes +coccineous +coccolites +coccoliths +Cochabamba +cochineals +Cochlearia +cochleated +cockabully +cockalorum +cockamamie +cockateels +cockatiels +cockatrice +cockchafer +cockernony +cockfights +cockhorses +cocklairds +cockleboat +cockneydom +cockneyish +cockneyism +cocknified +cocknifies +cockscombs +cocksfoots +cockswains +cocktailed +cockyleeky +cocultured +cocultures +codicology +codswallop +coelacanth +coelomates +coelomatic +coelostats +coemptions +coenobites +coenobitic +coenocytes +coenosarcs +coenosteum +coequality +coercively +coercivity +coetaneous +cogitating +cogitation +cogitative +cogitators +cognisable +cognisably +cognisance +cognitions +cognizable +cognizably +cognizance +cognominal +cohabitant +cohabitees +cohabiting +cohabitors +coherences +coherently +coheritors +cohesively +cohibiting +cohibition +cohibitive +cohobating +cohyponyms +coiffeuses +coincident +coinciding +colatitude +Colbertine +colcannons +Colchester +colchicine +colchicums +coldhouses +Coldstream +colemanite +Coleoptera +coleoptile +coleorhiza +collagenic +collagists +collapsars +collapsing +collarette +collatable +collateral +collations +colleagued +colleagues +collecting +collection +collective +collectors +collegiate +collegiums +Collembola +colliculus +collieries +colligated +colligates +collimated +collimates +collimator +colliquate +collisions +collocated +collocates +collocutor +colloguing +colloquial +colloquied +colloquies +colloquing +colloquise +colloquist +colloquium +colloquize +collotypic +collusions +collyriums +colocynths +Colombians +colonially +colonisers +colonising +colonizers +colonizing +colonnaded +colonnades +coloration +coloratura +colorectal +colorizing +colossally +colosseums +Colossians +colossuses +colostrous +colostrums +colotomies +colourable +colourably +colourants +colourfast +colourings +colourised +colourises +colourists +colourized +colourizes +colourless +colourways +colportage +colporteur +colposcope +colposcopy +coltsfoots +Colubridae +columbaria +columbines +columellae +columellas +columnated +columnists +comanchero +comatulids +combatable +combatants +combinable +combretums +comburgess +combusting +combustion +combustive +combustors +comedienne +comedietta +comeliness +comestible +cometology +comforters +comforting +comicality +comitadjis +comitative +commandant +commandeer +commanders +commandery +commanding +commandoes +commeasure +commencing +commendams +commending +commensals +commentary +commentate +commenters +commenting +commentors +commercial +commercing +commerging +comminated +comminates +commingled +commingles +comminuted +comminutes +Commiphora +commissars +commissary +commission +commissure +commitment +committals +committees +committing +commixtion +commixture +commodious +commodores +commonable +commonages +commonalty +commonhold +commonness +commonweal +commorants +commotions +communally +communards +communings +communions +communique +communised +communises +communisms +communists +communized +communizes +commutable +commutated +commutates +commutator +compactest +compactify +compacting +compaction +compactors +companders +compandors +companions +companying +comparable +comparably +comparator +comparison +comparting +compassing +compassion +compatible +compatibly +compatriot +compearant +compellers +compelling +compendium +compensate +competence +competency +competitor +compilator +complacent +complained +complainer +complaints +complanate +compleated +complected +complement +completely +completing +completion +completist +completive +completory +complexify +complexing +complexion +complexity +compliable +compliance +compliancy +complicacy +complicant +complicate +complicity +compliment +complished +complishes +complotted +compluvium +componency +components +comporting +composedly +Compositae +composites +compositor +composters +composting +composture +composures +compotator +compotiers +compounded +compounder +compradore +compradors +comprehend +compressed +compresses +compressor +comprinted +comprisals +comprising +compromise +compulsing +compulsion +compulsive +compulsory +compursion +computable +computants +computator +computists +comstocker +conacreism +concealers +concealing +conceiving +concentred +concentres +concentric +Concepci�n +conception +conceptive +conceptual +concerning +concertina +concerting +concertino +concession +concessive +concettism +concettist +conchiform +conchiglie +conchiolin +conchoidal +conchology +concierges +conciliary +conciliate +concinnity +concinnous +concipient +conclavist +concluding +conclusion +conclusive +conclusory +concocters +concocting +concoction +concoctive +concoctors +concordant +concordats +concordial +concording +concourses +concretely +concreting +concretion +concretise +concretism +concretist +concretive +concretize +concrewing +concubines +concurrent +concurring +concussing +concussion +concussive +condemners +condemning +condensate +condensers +condensery +condensing +condescend +condiments +conditions +condolence +condonable +conducible +conducting +conduction +conductive +conductors +condylomas +confabbing +confabular +confecting +confection +confederal +conference +conferment +conferrals +conferrers +conferring +confervoid +confessant +confessing +confession +confessors +confidante +confidants +confidence +confidency +configured +configures +confinable +confirmand +confirmees +confirmers +confirming +confirmors +confiscate +confiserie +confiteors +conflating +conflation +conflicted +confluence +confluents +conformers +conforming +conformist +conformity +confounded +confr�ries +confronted +Confucians +confusable +confusedly +confusible +confusions +confutable +congealing +congeneric +congenetic +congenital +congesting +congestion +congestive +congiaries +conglobate +conglobing +congreeing +congreeted +congregant +congregate +congressed +congresses +congruence +congruency +coniferous +conjecting +conjecture +conjoiners +conjoining +conjointly +conjugally +Conjugatae +conjugated +conjugates +conjunctly +conjurator +conjurings +connascent +connatural +connatures +connecters +connecting +connection +connective +connectors +connexions +conniption +connivance +connivancy +connivence +connivency +connotated +connotates +conoidical +conqueress +conquering +conquerors +conscience +conscribed +conscribes +conscripts +consecrate +consectary +consension +consensual +consenting +consequent +conservant +conservers +conserving +considered +consignees +consigners +consignify +consigning +consignors +consilient +consimilar +consistent +consisting +consistory +consociate +consolable +consolated +consolates +consonance +consonancy +consonants +consorters +consorting +consortism +consortium +conspectus +conspiracy +conspirant +conspiring +constables +constantan +Constantia +constantly +constating +constative +constipate +constitute +constrains +constraint +constricts +constringe +constructs +construers +construing +consubsist +consuetude +consulages +consulates +consulship +consultant +consultees +consulters +consulting +consultive +consultors +consultory +consumable +consumedly +consumings +consummate +contacting +contactors +contactual +contadinas +contagions +contagious +contagiums +containers +containing +contemners +contemning +contemnors +contempers +contendent +contenders +contending +contenting +contention +contestant +contesting +contextual +contexture +contiguity +contiguous +continence +continency +continents +contingent +continuant +continuate +continuers +continuing +continuity +continuous +continuums +contorting +contortion +contortive +contouring +contraband +contrabass +contracted +contractor +contradict +contraflow +contrahent +contraltos +contraplex +contraprop +contraried +contraries +contrarily +contrasted +contravene +contrecoup +contribute +contritely +contrition +contrivers +contriving +controlled +controller +controvert +contusions +conundrums +convalesce +convection +convective +convectors +convenable +convenance +convenient +convention +conventual +convergent +converging +conversant +conversely +conversing +conversion +convertend +converters +converting +convertite +convertors +convexedly +convexness +conveyable +conveyance +convicting +conviction +convictism +convictive +convincing +convocated +convocates +convoluted +convolving +convolvuli +convulsant +convulsing +convulsion +convulsive +cookhouses +coolhunter +coomceiled +coonhounds +cooperages +cooperated +cooperates +cooperator +cooperings +coordinate +Copacabana +coparcener +copartners +copartnery +copatriots +Copenhagen +Copernican +Copernicus +copesettic +copperhead +copperskin +copperwork +copperworm +coprolalia +coprolites +coproliths +coprolitic +coprophagy +copsewoods +copulating +copulation +copulative +copulatory +copyholder +copyreader +copyrights +copywriter +coquelicot +coquetries +coquetting +coquettish +coquimbite +coradicate +corallines +corallites +corbeilles +corbelling +corbiculae +corbiculas +cordectomy +cordialise +cordiality +cordialize +cordierite +cordillera +cordwainer +cordylines +coregonine +coriaceous +corianders +Corinthian +Coriolanus +cormophyte +cormorants +cornaceous +cornacring +cornborers +cornbrakes +cornbrandy +corncockle +corncrakes +cornelians +cornemuses +cornerback +cornerways +cornerwise +cornetcies +cornetists +cornettino +cornettist +cornfields +cornflakes +cornflower +cornhusker +corniculum +Cornishman +cornishmen +cornmiller +cornopeans +cornstalks +cornstarch +cornstones +cornucopia +Cornwallis +coromandel +coronaries +coronation +corporally +corporator +corporeity +corposants +corpulence +corpulency +corpuscles +corpuscule +corralling +corrasions +correcting +correction +corrective +correctors +correctory +corregidor +correlated +correlates +correption +correspond +corrigenda +corrigents +corrigible +corrivalry +corroboree +corrodents +corrodible +corrosible +corrosions +corrosives +corrugated +corrugates +corrugator +corrupters +corruptest +corrupting +corruption +corruptive +corselette +corseti�re +corsetiers +Cortaderia +corticated +corticoids +cortisones +coruscated +coruscates +corvetting +corybantes +corybantic +corydaline +corylopsis +coryphaeus +coryphenes +cosherings +cosmetical +cosmically +cosmocrats +cosmodrome +cosmogenic +cosmogonic +cosmolatry +cosmonauts +cosmopolis +cosmoramas +cosmoramic +cosmotrons +cosponsors +costeaning +costliness +costmaries +costumiers +cotangents +c�telettes +cotillions +Cotingidae +cottabuses +cottierism +cottonades +cottonbush +cottonseed +cottontail +cotyledons +cotyliform +couchettes +coulibiaca +coulometer +coulometry +coumarilic +councillor +councilman +councilmen +counselled +counsellor +counselors +counteract +counterbid +countering +countersue +countesses +countryman +countrymen +countships +couplement +courageous +courbarils +courbettes +courgettes +coursebook +coursework +courtcraft +courtesans +courtesied +courtesies +courtezans +courtierly +courtliest +courtlings +courtrooms +courtships +courtyards +couscouses +cousinages +cousinhood +cousinship +couturi�re +couturiers +covariance +covariants +covenanted +covenantee +covenanter +covenantor +coverslips +covertness +covertures +covetingly +covetously +cowberries +cowcatcher +coweringly +cowfeeders +cowgrasses +cowpuncher +coxcomical +coxswained +coyishness +coyotillos +crabbiness +crabsticks +crackajack +crackbrain +crackdowns +crackheads +crackliest +cracklings +cradlesong +craftiness +cragginess +craigfluke +crakeberry +cramoisies +cranesbill +craniology +craniotomy +crankcases +crankiness +crankshaft +cranreuchs +crapulence +craquelure +crassitude +craunching +cravatting +cravenness +crawfishes +crayfishes +creakiness +creameries +creaminess +creasoting +creatinine +creational +creatively +creativity +creatrixes +creaturely +credential +creditable +creditably +creepiness +creepingly +creepmouse +cremasters +cremations +crematoria +cremocarps +crenations +crenatures +crenelated +crenelates +crenellate +crenelling +crenulated +creolising +creolizing +creosoting +crepitated +crepitates +crepituses +crepolines +crepuscule +crescendos +crescented +crescentic +cretaceous +cretinised +cretinises +cretinized +cretinizes +crevassing +crewelists +crewellery +crewelling +crewelwork +cribellums +cribration +cribriform +cricketers +cricketing +criminally +criminated +criminates +crimsoning +cringeling +cringingly +crinkliest +crinoidean +crinolette +crinolined +crinolines +crippledom +crispation +crispature +crispbread +crispiness +crisscross +cristiform +criterions +crithidial +critically +criticised +criticiser +criticises +criticisms +criticized +criticizer +criticizes +croakiness +crocheters +crocheting +crocodiles +Crocodilia +Crocodilus +crocoisite +crocosmias +croissants +croquantes +croqueting +croquettes +crossandra +crossbeams +crossbench +crossbills +crossbites +crossbones +crossbower +crossbreed +crosscourt +crossettes +crossfalls +crossfires +crosshairs +crosshatch +crossjacks +crosslight +crossmatch +crossovers +crosspatch +crosspiece +crossroads +crosstrees +crosswalks +crosswinds +crosswords +crossworts +crotalaria +Crotalidae +crotcheted +croupiness +crowkeeper +crownworks +Cruciferae +crucifiers +crucifixes +crucifying +Cruikshank +cruiseways +cruisewear +crumbliest +crunchiest +crushingly +crustacean +crustation +crustiness +cryoconite +cryogenics +cryometers +cryometric +cryophilic +cryophorus +cryoscopes +cryoscopic +cryptogams +cryptogamy +cryptogram +cryptology +cryptonyms +Ctenophora +ctenophore +cuckolding +cuckoldise +cuckoldize +cuckoldoms +cucullated +cucumiform +cucurbital +cuddlesome +cudgellers +cudgelling +Cuernavaca +cuffuffled +cuffuffles +cuirassier +cuirassing +cuisiniers +culiciform +cullenders +culminated +culminates +cultivable +cultivated +cultivates +cultivator +cultriform +culturable +culturally +culturists +culvertage +Cumberland +cumberless +cumberment +cumbersome +cumbrances +cumbrously +cummerbund +cumulating +cumulation +cumulative +cumuliform +cunctation +cunctative +cunctators +cunctatory +Cunningham +cupbearers +cupboarded +cupidinous +curability +curarising +curarizing +curateship +curatorial +curatrixes +curbstones +curcumines +curettages +curfuffled +curfuffles +curialists +curmudgeon +curmurring +currawongs +currencies +curricular +curriculum +cursedness +curtailing +curtaining +curtalaxes +curtations +curtilages +curtseying +curvaceous +curvacious +curvations +curvatures +curvetting +cushionets +cushioning +cuspidated +cuspidores +cussedness +custodians +custodiers +customable +customised +customises +customized +customizes +cutcheries +cutinising +cutinizing +cuttlefish +cyanamides +cyanidings +cyanometer +cyanophyte +cyanotypes +cyathiform +cybercaf�s +cybernated +cybernates +cybernetic +cyberpunks +cyberspace +cybersquat +cyclamates +cyclically +cyclograph +cycloidian +cycloliths +cyclometer +cyclopedia +cyclopedic +cycloramas +cycloramic +cyclostome +cyclostyle +cyclothyme +cyclotrons +cylindrite +cylindroid +cymagraphs +cymbalists +cymbidiums +cymographs +cymophanes +cymotrichy +cynghanedd +cynophilia +cynophobia +Cyperaceae +Cyprinidae +cypripedia +cystectomy +cysticerci +cystinosis +cystinuria +cystocarps +cystoceles +cystoliths +cystoscope +cystoscopy +cystostomy +cytochrome +cytokinins +cytologist +cytometers +cytometric +cytoplasms +cytotoxins +czarevitch diff --git a/com/agnibho/code/anagram/dictionary/C11.txt b/com/agnibho/code/anagram/dictionary/C11.txt new file mode 100644 index 0000000..42e9257 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C11.txt @@ -0,0 +1,1897 @@ +cabbagetown +cabbageworm +cabbalistic +cabinetwork +cablevision +cachectical +cachinnated +cachinnates +cacodaemons +cacogastric +cacographer +cacographic +cacomistles +cacophonies +cacophonous +caddishness +Caesalpinia +caffeinated +cakewalkers +cakewalking +calamancoes +calamanders +calcariform +calcedonies +calceolaria +calcicolous +calciferous +calcifugous +calcigerous +calcimining +calcination +calculating +calculation +calculative +calculators +Caledonians +calefacient +calefaction +calefactive +calefactors +calefactory +calendarers +calendaring +calendarise +calendarist +calendarize +calendering +calendrical +calibrating +calibration +calibrators +Californian +californium +calisthenic +Callanetics +calligramme +calligraphy +Callimachus +callipygean +callipygous +Callistemon +Callitriche +callosities +callousness +calorifiers +calorimeter +calorimetry +calotypists +calumniated +calumniates +calumniator +Calvinistic +calycanthus +calypsonian +calyptrogen +Camaldolese +Camaldolite +camaraderie +cambistries +cameleopard +camelopards +camerations +camerawoman +camerawomen +camerlengos +camerlingos +camouflaged +camouflages +camoufleurs +campaigners +campaigning +campaniform +campanology +campanulate +Campbellite +campestrian +campgrounds +camphorated +camphorates +Campodeidae +Camulodunum +canalicular +canaliculus +cancellated +cancioneros +candelabras +candelabrum +candelillas +candescence +candidacies +candidature +candidiasis +candlewicks +Canellaceae +canescences +canistering +canisterise +canisterize +cannabinoid +cannibalise +cannibalism +cannibalize +cannonading +cannonballs +canonically +canophilist +cantaloupes +cantatrices +canterburys +cantharidal +cantharides +cantharidic +canticoying +cantilevers +cantillated +cantillates +cantonising +cantonizing +cantonments +capableness +capaciously +capacitance +capacitated +capacitates +caparisoned +Capernaitic +capernoited +capernoitie +capillaires +capillaries +capillarity +capillitium +capitalised +capitalises +capitalists +capitalized +capitalizes +capitations +capitellums +capitulants +capitularly +capitulated +capitulates +capodastros +cappuccinos +capriccioso +Capricornus +caprolactam +capsulising +capsulizing +captaincies +captainship +captivating +captivation +captivators +captivities +carabineers +carabiniere +carabinieri +carabiniers +caracolling +caramboling +caramelised +caramelises +caramelized +caramelizes +caramelling +caravaneers +caravanette +caravanners +caravanning +caravansary +carbocyclic +carbonadoes +Carbonarism +carbonating +carbonation +carbonising +carbonizing +carbonnades +carbonylate +Carborundum +carbuncular +carburating +carburation +carbureters +carburetion +carburetors +carburetted +carburetter +carburettor +carburising +carburizing +Carcassonne +carcinogens +carcinology +carcinomata +cardinalate +cardinality +cardiograms +cardiograph +cardiomotor +cardophagus +carefullest +carefulness +caressingly +careworkers +carfuffling +caricatural +caricatured +caricatures +carilloneur +carillonist +Carlylesque +carmagnoles +carminative +carnalising +carnalities +carnalizing +carnaptious +carnationed +carnificial +carnivorous +carnosities +Carolingian +carotenoids +carotinoids +carousingly +Carpathians +carpentaria +carpentered +carpogonium +carpophores +carpospores +carrageenan +carrageenin +carragheens +carriageway +carsickness +cartelising +cartelizing +Carthusians +cartography +cartonnages +cartoonists +cartophiles +cartophilic +cartularies +cartwheeled +cartwrights +carunculate +carunculous +caryatidean +caryopsides +caryopteris +cascarillas +cashierings +cashierment +casseroling +cassiopeium +cassiterite +cassolettes +cassowaries +castellated +castigating +castigation +castigators +castigatory +Castlereagh +castrations +casualising +casualizing +casuistical +casuistries +catacaustic +catachresis +cataclasmic +cataclastic +cataclysmal +cataclysmic +catadromous +catafalcoes +catafalques +cataleptics +catallactic +cataloguers +cataloguing +cataloguise +cataloguize +catalytical +cataphonics +cataphracts +cataplectic +catapultier +catapulting +catastrophe +catchweight +catechetics +catechisers +catechising +catechismal +catechistic +catechizers +catechizing +catechumens +categorical +categorised +categorises +categorists +categorized +categorizer +categorizes +catenations +catercorner +caterpillar +caterwauled +catharising +catharizing +cathartical +cathedratic +catheterise +catheterism +catheterize +catholicise +catholicism +catholicity +catholicize +catholicons +cattishness +caulicolous +cauliculate +cauliflower +cauligenous +causalities +causatively +causelessly +caustically +causticness +cauterising +cauterizing +cavalcading +cavaliering +cavalierish +cavalierism +cavendishes +cavernously +cavernulous +cavillation +cavitations +ceaselessly +celebrating +celebration +celebrators +celebratory +celebrities +celestially +celliferous +cementation +cementatory +cenesthesia +cenesthesis +cenogenesis +cenospecies +censorships +centenarian +centenaries +centennials +centerboard +centerfolds +centigramme +centiliters +centilitres +centillions +centimetres +centimetric +centimorgan +centralised +centraliser +centralises +centralists +centralized +centralizer +centralizes +centreboard +centrefolds +centrically +centrifugal +centrifuged +centrifuges +centripetal +centrobaric +centrosomes +centuriator +cephalalgia +cephalalgic +Cephalaspis +cephalocele +Cephalopoda +cephalopods +cephalotomy +ceramicists +cerargyrite +ceratoduses +ceratopsian +cerebellous +cerebellums +cerebralism +cerebralist +cerebrating +cerebration +cerebriform +cerebroside +ceremonials +ceremonious +cerographic +ceroplastic +certainties +certifiable +certifiably +certificate +certioraris +cesarevitch +cesarewitch +cestoideans +chaenomeles +chaetognath +chaffinches +chainplates +chairladies +chairperson +chalazogamy +chalcedonic +chalcedonyx +chalkboards +chalkstones +challengers +challenging +chalybeates +chamaeleons +chamaephyte +chamberings +chamberlain +chambermaid +chamberpots +chambranles +chameleonic +champerties +champertous +champignons +championess +championing +chancellery +chancellors +chancellory +chancroidal +chandeliers +chandelling +chandlering +changefully +changelings +channelised +channelises +channelized +channelizes +channelling +chansonette +chansonnier +chantarelle +chanterelle +chanticleer +chantresses +chaotically +chaperonage +chaperoning +chaprassies +chaptalised +chaptalises +chaptalized +chaptalizes +characinoid +charactered +charbroiled +charcuterie +chargrilled +charioteers +charismatic +charlatanic +charlatanry +Charlemagne +charmlessly +Charpentier +chartaceous +chartbuster +charthouses +chasmogamic +chastenment +chastisable +ch�telaines +Chattanooga +chatterings +chaudfroids +chauffeured +chauffeuses +chaulmoogra +chaulmugras +Chautauquan +chauvinists +cheapskates +checkclerks +checkmating +checkpoints +cheechakoes +cheechalkos +cheerfuller +cheerlessly +cheeseboard +cheesecakes +cheesecloth +cheeseparer +cheirognomy +cheiromancy +Cheiroptera +chelicerate +cheliferous +chemisettes +chemistries +chemitypies +chemosphere +chemotactic +chemotropic +chemurgical +Chenopodium +chequebooks +chequerwise +cherimoyers +cherishment +chersoneses +chessboards +chesspieces +chevesailes +chevrotains +chiaroscuro +chiastolite +chicaneries +chieftaincy +chieftainry +chiffoniers +chiffonnier +Chilognatha +chilopodans +Chimaeridae +chimpanzees +chinchillas +chinoiserie +chinquapins +chinwagging +chionodoxas +Chippendale +chiragrical +chirographs +chirography +chirologist +chiromantic +chironomers +chironomids +chiropodial +chiropodist +chiropteran +chirurgeons +chisellings +chittagongs +chitterings +chitterling +chlamydeous +chloanthite +chloridated +chloridates +chloridised +chloridises +chloridized +chloridizes +chlorimeter +chlorimetry +chlorinated +chlorinates +chlorinator +chlorinised +chlorinises +chlorinized +chlorinizes +chloroforms +chlorometer +chlorometry +chlorophyll +chloroplast +chloroprene +chloroquine +chocaholics +chockstones +chocoholics +chocolatier +choirmaster +chokecherry +cholagogues +cholestasis +cholesteric +cholesterin +cholesterol +choliambics +cholinergic +chondrified +chondrifies +Chondrostei +chordophone +choregraphs +choregraphy +choreograph +choriambics +chorisation +chorization +chorography +choroiditis +chorologist +chrematists +chrismatory +Christendom +christening +Christiania +Christianly +Christingle +Christmassy +Christogram +Christology +Christopher +chromatypes +chrominance +chromograms +chromophore +chromoplast +chromoscope +chromosomal +chromosomes +chromotypes +chronically +chroniclers +chronicling +chronograms +chronograph +chronologer +chronologic +chronometer +chronometry +chronoscope +chronotrons +chrysalides +chrysalises +chrysarobin +chrysoberyl +chrysocolla +chrysocracy +chrysoprase +chrysotiles +chuckwallas +chuprassies +churchwards +churchwoman +churchwomen +churchyards +chyliferous +chylomicron +chymiferous +cibachromes +cicadellids +cicatricles +cicatricula +cicatrising +cicatrizing +cinchoninic +cinchonised +cinchonises +cinchonized +cinchonizes +Cincinnatus +cincinnuses +Cinderellas +cinemagoers +Cinemascope +cinerations +cineritious +cinnabarine +cinnarizine +cinquecento +circuiteers +circuitries +circularise +circularity +circularize +circulating +circulation +circulative +circulators +circulatory +circumcised +circumciser +circumcises +circumducts +circumflect +circumfused +circumfuses +circumlunar +circummured +circummures +circumpolar +circumposed +circumposes +circumsolar +circumspect +circumvents +circumvolve +Cirencester +Cisatlantic +citharistic +citizenised +citizenises +citizenized +citizenizes +citizenries +citizenship +citronellal +citronellas +civilianise +civilianize +civilisable +civilizable +Clackmannan +clairschach +clairvoyant +clamorously +clandestine +clangouring +clanjamfray +clapometers +clapperboys +clapperclaw +clapperings +clarabellas +Clarencieux +clarichords +clarinetist +classically +classicised +classicises +classicists +classicized +classicizes +classifiers +classifying +clavecinist +clavichords +Clavicornia +clavigerous +cleanliness +Cleethorpes +cleistogamy +clementines +clenbuterol +cleptomania +clericalism +clericalist +Clerkenwell +cleverality +cleverdicks +clianthuses +clientships +cliffhanger +climacteric +climactical +climatising +climatizing +climatology +clindamycin +clingstones +clinochlore +clinometers +clinometric +cliometrics +Clochemerle +clockmakers +clodhoppers +clodhopping +cloisonnage +cloisterers +cloistering +clostridial +clostridium +cloudbursts +cloudlessly +cloxacillin +clubability +clubmanship +clubmasters +cnidoblasts +coacervated +coacervates +coadjacency +coadjutants +coadjutress +coadunating +coadunation +coadunative +coagulating +coagulation +coagulative +coagulators +coagulatory +coalescence +coalitional +coalitioner +coalmasters +coarctation +coastguards +cobblestone +cocainising +cocainizing +coccidiosis +cockaleekie +cockalorums +cockatrices +cockchafers +cockleshell +cockmatches +cockneyfied +cockneyfies +cocknifying +cockroaches +coconscious +cocooneries +coculturing +codicillary +coeducation +coefficient +coelacanths +coelurosaur +coenenchyma +coenobitism +coercimeter +coercionist +coevolution +cogitations +cognateness +cognitional +cognitively +cognitivity +cognominate +cognoscente +cognoscenti +cognoscible +cohabitants +coheiresses +coherencies +cohibitions +cohortative +coincidence +coincidency +colatitudes +coleopteral +coleopteran +coleopteron +coleoptiles +coleorhizas +collaborate +collagenase +collagenous +collapsable +collapsible +collarettes +collaterals +colleaguing +collectable +collectanea +collectedly +collectible +collectings +collections +collectives +collegianer +collembolan +collenchyma +colligating +colligation +colligative +collimating +collimation +collimators +colliquable +collocating +collocation +collocutors +collocutory +colloquised +colloquises +colloquists +colloquiums +colloquized +colloquizes +colloquying +collusively +cologarithm +colonelcies +colonelship +colonialism +colonialist +colonoscope +colonoscopy +colorations +coloraturas +colorimeter +colorimetry +colostomies +colouration +colourising +colourizing +colportages +colporteurs +colposcopes +colubriform +columbaries +columbarium +columnarity +columniated +comancheros +combatively +combination +combinative +combinatory +combustible +combustions +combustious +comediennes +comediettas +comestibles +comeuppance +comfortable +comfortably +comfortless +comicalness +comitatives +comitatuses +commandants +commandeers +commandment +commeasured +commeasures +commemorate +commendable +commendably +commendator +commensally +commentated +commentates +commentator +commercials +comminating +commination +comminative +comminatory +commingling +comminuting +comminution +commiserate +commissions +commissural +commissures +commitments +commixtions +commixtures +commodities +commonality +commonplace +commonsense +commonweals +commotional +communalise +communalism +communalist +communalize +communicant +communicate +communiques +communising +communistic +communities +communizing +commutating +commutation +commutative +commutators +compactedly +compactions +compactness +compaginate +companioned +comparative +comparators +comparisons +compartment +compassable +compassings +compassions +compatriots +compearance +compearants +compellable +compendious +compendiums +compensated +compensates +compensator +competences +competently +competition +competitive +competitors +compilation +compilators +compilatory +compilement +complacence +complacency +complainant +complainers +complaining +complaisant +compleating +complecting +complements +completable +completions +completists +complexions +complexness +complexuses +compliances +compliantly +complicated +complicates +compliments +complishing +complotting +compluviums +componental +comportment +compositely +composition +compositive +compositors +compositous +compossible +compotation +compotators +compotatory +compounders +compounding +compradores +comprehends +compressing +compression +compressive +compressors +compressure +comprimario +comprinting +comprisable +compromised +compromises +Comptometer +comptroller +compulsions +compulsitor +compunction +compurgator +compursions +computation +computative +computators +computerate +computerese +computerise +computerize +comradeship +comstockers +comstockery +comstockism +concatenate +concaveness +concavities +concealable +concealment +conceitedly +conceitless +conceivable +conceivably +concentered +concentrate +concentring +conceptacle +conceptions +conceptuses +concernancy +concernedly +concernment +concertante +concertedly +concertgoer +concertinas +concertinos +concessible +concessions +concettists +conciliable +conciliated +conciliates +conciliator +concipiency +conciseness +conclavists +conclusions +concoctions +concolorate +concolorous +concomitant +concordance +concrescent +concretions +concretised +concretises +concretists +concretized +concretizes +concubinage +concubinary +concubitant +concurrence +concurrency +concurrents +concussions +condemnable +condensable +condensated +condensates +condescends +condignness +condisciple +conditional +conditioned +conditioner +condolatory +condolement +condolences +condominium +condonation +condottiere +condottieri +conducement +conducingly +conductance +conductible +conductions +conductress +condylomata +confabulate +confarreate +confections +confederacy +confederate +conferences +conferments +conferrable +confessedly +confessions +confidantes +confidences +confidently +confidingly +configurate +configuring +confineless +confinement +confirmable +confirmands +confirmator +confirmings +confiscable +confiscated +confiscates +confiscator +conflagrant +conflagrate +conflations +conflicting +confliction +conflictive +confluences +confluently +conformable +conformably +conformance +conformists +confounding +confronting +confusingly +confutation +confutative +confutement +congealable +congealment +congelation +congenerics +congenerous +congenially +congestible +congestions +conglobated +conglobates +congreeting +congregants +congregated +congregates +congressing +congressman +congressmen +congruences +congruently +congruities +congruously +conirostral +conjectural +conjectured +conjecturer +conjectures +conjugality +conjugating +conjugation +conjugative +conjunction +conjunctiva +conjunctive +conjuncture +conjuration +conjurators +conjurement +connascency +connectable +connectedly +connectible +Connecticut +connections +connectives +conniptions +connoisseur +connotating +connotation +connotative +connubially +connumerate +conquerable +consanguine +consciences +consciously +conscribing +conscripted +consecrated +consecrates +consecrator +consecution +consecutive +consensuses +consentient +consequence +consequents +conservable +conservancy +conservator +considerate +considering +consignable +consignment +consilience +consimility +consistence +consistency +consociated +consociates +consolating +consolation +consolatory +consolatrix +consolement +consolidate +consolingly +consonances +consonantal +consonantly +consortiums +conspecific +conspicuity +conspicuous +conspirator +constancies +Constantine +constatives +constellate +consternate +constipated +constipates +constituent +constituted +constitutes +constitutor +constrained +constraints +constricted +constrictor +constringed +constringes +construable +constructed +constructer +constructor +constuprate +consubsists +consuetudes +consulships +consultancy +consultants +consumables +consumerism +consumerist +consummated +consummates +consummator +consumption +consumptive +contactable +containable +containment +contaminant +contaminate +contemnible +contempered +contemplant +contemplate +contendents +contendings +contenement +contentedly +contentions +contentious +contentless +contentment +conterminal +contestable +contestants +contextures +continental +continently +contingence +contingency +contingents +continuable +continually +continuance +continuants +continuator +continuedly +contorniate +contortions +contrabands +contrabasso +contractile +contracting +contraction +contractive +contractors +contractual +contracture +contradance +contradicts +contraflows +contrahents +contraprops +contraption +contrariety +contrarious +contrarying +contrasting +contrastive +contravened +contravenes +contrayerva +contrecoups +contredance +contretemps +contributed +contributes +contributor +contrivable +contrivance +controllers +controlling +controlment +controverse +controversy +controverts +contubernal +contumacies +contumacity +contumelies +conurbation +convalesced +convalesces +Convallaria +convections +convenances +convenience +conveniency +conventicle +conventions +conventuals +convergence +convergency +conversable +conversably +conversance +conversancy +conversions +convertends +convertible +convertibly +convertites +convexities +conveyancer +conveyances +convicinity +convictions +convincible +convivially +convocating +convocation +convolution +convolvulus +convulsants +convulsible +convulsions +coolhunters +cooperating +cooperation +cooperative +cooperators +coordinance +coordinated +coordinates +coordinator +coparcenary +coparceners +coparcenery +copiousness +coplanarity +Copperfield +copperheads +copperplate +copperskins +coppersmith +copperworks +coprocessor +coprolaliac +coprophagan +coprophagic +coprophilia +coprosterol +copulations +copulatives +copyholders +copyreaders +copyreading +copyrighted +copywriters +coraciiform +coralflower +coralliform +coralloidal +corbellings +corbiculate +cordialised +cordialises +cordialized +cordializes +cordialness +cordilleras +cordotomies +cordwainers +cordwainery +Corinthians +cormophytes +cormophytic +cornbrashes +corncockles +cornerbacks +cornettists +cornflowers +cornhuskers +cornhusking +corniculate +corniculums +corniferous +cornigerous +cornmillers +cornucopian +cornucopias +corollaries +corolliform +coromandels +coronagraph +coronations +coronograph +corporality +corporately +corporation +corporatism +corporatist +corporative +corporators +corporeally +corporified +corporifies +corpulently +corpuscular +corpuscules +correctable +correctible +corrections +correctives +correctness +corregidors +correlating +correlation +correlative +corresponds +corrigendum +corroborant +corroborate +corroborees +Corrodentia +corrosively +corrugating +corrugation +corrugators +corruptible +corruptibly +corruptions +corruptness +corselettes +corseti�res +corticolous +coruscating +coruscation +corybantism +cosmetician +cosmeticise +cosmeticism +cosmeticize +cosmetology +cosmocratic +cosmodromes +cosmogonies +cosmogonist +cosmography +cosmologies +cosmologist +cosmopolicy +cosmopolite +cosmosphere +cosmotheism +cosmothetic +cosponsored +costeanings +costiveness +coterminous +cothurnuses +cotoneaster +cottonmouth +cottonseeds +cottontails +Cotylophora +coulometers +coulometric +councillors +counselling +counsellors +countenance +counteracts +counterbase +counterbids +counterbore +counterdraw +counterdrew +counterfeit +counterfoil +countermand +countermark +countermine +countermure +counterpane +counterpart +counterplay +counterplea +counterplot +countersank +counterseal +countersign +countersink +countersued +countersues +countersunk +countervail +countrified +countryfied +countryside +countrywide +couplements +coursebooks +courteously +courtesying +courtierism +courtliness +CourtNeidge +couturi�res +covalencies +covariances +covenantees +covenanters +covenanting +covenantors +cowcatchers +cowpunchers +coxcombical +coxcombries +coxswaining +crabbedness +crackajacks +crackbrains +crackerjack +crackleware +cracovienne +cradlesongs +craftswoman +craftswomen +craggedness +craigflukes +cranberries +cranesbills +craniectomy +craniognomy +craniometer +craniometry +cranioscopy +crankhandle +crankshafts +crapehanger +crapshooter +crapulosity +craquelures +Craterellus +crateriform +crazingmill +creatianism +creationism +creationist +creatorship +creatresses +credentials +credibility +credulities +credulously +cr�maill�re +crematorial +crematories +crematorium +crenelating +crenelation +crenellated +crenellates +creophagous +crepehanger +crepitating +crepitation +crepitative +crepuscular +crepuscules +crescendoed +crescendoes +crescentade +crescograph +crestfallen +cretinising +cretinizing +cribrations +criminalese +criminalise +criminalist +criminality +criminalize +criminating +crimination +criminative +criminatory +criminology +cringelings +crinigerous +crinoideans +crinolettes +Cripplegate +crippleware +crispations +crispatures +crispbreads +crithomancy +criticality +criticaster +criticisers +criticising +criticizers +criticizing +crochetings +crocidolite +crocodilian +crocodilite +Cromwellian +crookbacked +crookedness +crossandras +crossbanded +crossbarred +crossbearer +crossbowers +crossbowman +crossbowmen +crossbreeds +crossfishes +crosslights +crosspieces +crotalarias +crotcheteer +cruciferous +crucifixion +cruciverbal +crumbliness +crunchiness +crustaceans +crustaceous +crustations +cryobiology +cryophysics +cryosurgeon +cryosurgery +cryotherapy +cryptically +Cryptogamia +cryptogamic +cryptogenic +cryptograms +cryptograph +Cryptomeria +cryptorchid +crystalline +crystallise +crystallite +crystallize +crystalloid +ctenophoran +ctenophores +cubicalness +cuckoldised +cuckoldises +cuckoldized +cuckoldizes +cuckoldries +cudgellings +cuffuffling +cuirassiers +culmiferous +culminating +culmination +culpability +cultivating +cultivation +cultivators +cultureless +culverineer +culvertages +cumberments +Cumbernauld +cummerbunds +cumulations +cunctations +cunctatious +cunnilingus +cunningness +cupboarding +cupellation +cupriferous +Cupuliferae +curableness +curateships +curatorship +curettement +curfuffling +curialistic +curiosities +curiousness +curmudgeons +curmurrings +currentness +curriculums +currishness +cursoriness +curtailment +curvilineal +curvilinear +customaries +customarily +customising +customizing +custumaries +cutcherries +cyanometers +Cyatheaceae +cybernating +cybernation +cybernetics +cyberphobia +cybersquats +cycadaceous +cyclicality +cyclographs +cyclohexane +cycloidians +cyclometers +cyclopaedia +cyclopaedic +cyclopedias +cycloplegia +cycloserine +cyclostomes +cyclostyled +cyclostyles +cyclothymes +cyclothymia +cyclothymic +cylindrical +cylindroids +cymophanous +cynicalness +cynophilist +cyperaceous +Cyprinodont +cypripedium +cysticercus +cystoscopes +cystotomies +cytochromes +cytogenesis +cytogenetic +cytological +cytologists +cytoplasmic +czareviches diff --git a/com/agnibho/code/anagram/dictionary/C12.txt b/com/agnibho/code/anagram/dictionary/C12.txt new file mode 100644 index 0000000..8234b65 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C12.txt @@ -0,0 +1,1284 @@ +cabalistical +cabbageworms +cabinetmaker +cachinnating +cachinnation +cachinnatory +cacographers +cacophonical +cacophonious +caenogenesis +calamitously +calceamentum +calceolarias +calcinations +calculations +calefacients +calefactions +calendarised +calendarises +calendarists +calendarized +calendarizes +calibrations +Californians +calisthenics +calligrammes +calligrapher +calligraphic +callisthenic +calorescence +calorimeters +calumniating +calumniation +calumniators +calumniatory +calumniously +calycanthemy +calycoideous +calyptrogens +cameleopards +Camelopardus +camiknickers +camouflaging +Campanularia +camphorating +campodeiform +canaliculate +canalisation +canalization +cancellarial +cancellarian +cancellation +candescences +candidatures +canephoruses +canisterised +canisterises +canisterized +canisterizes +cankeredness +cannibalised +cannibalises +cannibalized +cannibalizes +canonisation +canonization +canophilists +canorousness +Cantabrigian +cantankerous +canterburies +cantharidian +cantharidine +cantilevered +cantillating +cantillation +cantillatory +capabilities +capacitating +capacitation +caparisoning +capercaillie +capercailzie +capernoities +capillaceous +capillitiums +capitalising +capitalistic +capitalizing +capitularies +capitulating +capitulation +capitulatory +capriciously +Capricornian +captainships +captiousness +caramelising +caramelizing +caravanettes +caravansarai +caravanserai +carbohydrate +carbonaceous +carbonylated +carbonylates +carburetters +carburettors +carcinogenic +cardinalship +cardiographs +cardiography +cardiologist +carelessness +caricaturing +caricaturist +carilloneurs +carillonists +carillonneur +Carlovingian +carminatives +carpentarias +carpentering +carpetbagger +carpetmonger +carpogoniums +carpophagous +carragheenin +carriageable +carriageways +carriwitchet +Cartesianism +Carthaginian +cartographer +cartographic +cartological +cartophilist +cartwheeling +Casterbridge +castigations +catacaustics +catachrestic +catacoustics +catadioptric +catallactics +cataloguised +cataloguises +cataloguized +cataloguizes +catamountain +cataphoresis +cataphractic +cataphyllary +cataphysical +catapultiers +catastrophes +catastrophic +catchpennies +catechetical +categorially +categorising +categorizers +categorizing +caterpillars +caterwauling +catheterised +catheterises +catheterized +catheterizes +cathetometer +cathodograph +catholicised +catholicises +catholicized +catholicizes +catilinarian +cauliculuses +cauliflowers +causationism +causationist +causticities +cautiousness +cavillations +cedrelaceous +celebrations +celibatarian +cementations +cementitious +censoriously +centenarians +centennially +centerboards +centesimally +centigrammes +centillionth +centimorgans +centralisers +centralising +centralities +centralizers +centralizing +centreboards +centricities +centrifuging +centroclinal +centrosphere +centumvirate +centuplicate +centuriation +centuriators +cephalometry +ceramography +Ceratosaurus +cerebralists +cerebrations +cerebrotonia +cerebrotonic +ceremonially +cerographist +ceroplastics +certificated +certificates +cesareviches +cessionaries +chaetiferous +chairmanship +chairpersons +chalazogamic +chalcanthite +chalcography +chalcolithic +chalcopyrite +chalicothere +chamaephytes +chamberlains +chambermaids +championship +Chandragupta +channelising +channelizing +channellings +chansonettes +chansonniers +chantarelles +chanterelles +chanticleers +chapelmaster +chaperonages +chaplaincies +chaplainries +chaplainship +Chaplinesque +chaptalising +chaptalizing +Characinidae +characterful +characteries +charactering +characterise +characterism +characterize +Charadriidae +charbroiling +charcuteries +chargrilling +charioteered +charlatanism +chartbusters +Charterhouse +charterparty +chartography +chartularies +chastenments +chastisement +chatterboxes +chauffeuring +chaulmoogras +chauntresses +chauvinistic +cheechalkoes +cheerfullest +cheerfulness +cheerishness +cheeseboards +cheeseburger +cheesecloths +cheeseparers +cheesetaster +cheirography +cheluviation +chemotherapy +chemotropism +chequerboard +cherubically +chesterfield +Chiantishire +chiaroscuros +chieftainess +chiffonniers +childbearing +childcrowing +childishness +chiliahedron +chimerically +Chimonanthus +Chippendales +chiquichiqui +chirographer +chirologists +Chironomidae +chiropodists +chiropractic +chiropractor +chiropterans +chiropterous +chitterlings +chivalrously +chlorambucil +chloridating +chloridising +chloridizing +chlorimeters +chlorimetric +chlorinating +chlorination +chlorinising +chlorinizing +chloroformed +chloroformer +chlorometers +chlorometric +chloroplasts +chocolatiers +choirmasters +chokeberries +cholerically +chondrifying +chondriosome +chondroblast +chondrostian +chordophones +chordophonic +choregraphed +choregrapher +choregraphic +choreographs +choreography +choripetalae +chorizontist +chorographer +chorographic +chorological +chorologists +chorusmaster +chrematistic +chrestomathy +Christchurch +christenings +Christianise +Christianism +Christianity +Christianize +Christingles +Christliness +Christograms +Christolatry +christophany +chromaticism +chromaticity +chromatogram +chromatopsia +chrominances +chromophilic +chromophonic +chromoplasts +chromoscopes +chromosphere +chronographs +chronography +chronologers +chronologies +chronologise +chronologist +chronologize +chronometers +chronometric +chronoscopes +churchianity +Churchillian +churchpeople +churlishness +chylomicrons +chymotrypsin +cicatrichule +cicatriculas +cichoraceous +Cicindelidae +cinchonising +cinchonizing +cinematheque +circassienne +circuitously +circularised +circularises +circularized +circularizes +circulations +circumcentre +circumcisers +circumcising +circumcision +circumducted +circumflects +circumflexes +circumfluent +circumfluous +circumfusile +circumfusing +circumfusion +circumgyrate +circumjacent +circumlocute +circummuring +circumnutate +circumposing +circumscribe +circumstance +circumvented +circumvolved +circumvolves +citification +citizenesses +citizenising +citizenizing +citizenships +Citlalt�petl +cityfication +civilianised +civilianises +civilianized +civilianizes +civilisation +civilization +cladogenesis +cladosporium +clairaudient +clairschachs +clairvoyance +clairvoyancy +clairvoyants +clamjamphrie +clangorously +clannishness +clapperboard +clapperclaws +claptrappery +clarinetists +clarinettist +classicalism +classicalist +classicality +classicising +classicizing +classifiable +clatteringly +claudication +claustration +clavecinists +clavicembalo +cleistogamic +clerestories +clericalists +cliffhangers +cliffhanging +climatically +cliquishness +cloddishness +cloudberries +cloverleaves +clownishness +clubbability +cluelessness +Clytemnestra +coacervating +coacervation +coachbuilder +coactivities +coadaptation +coadjutrixes +coadunations +coagulations +coalescences +coalitioners +coalitionism +coalitionist +coarctations +cobblestones +coccidiostat +cockaleekies +cockfighting +cockieleekie +cockleshells +cockneyfying +cockyleekies +codification +coefficients +coelacanthic +Coelenterata +coelenterate +coelurosaurs +coenesthesia +coenobitical +coenospecies +coequalities +coercimeters +coercionists +coerciveness +cognominated +cognominates +cohabitation +cohesibility +cohesiveness +cohortatives +coincidences +coincidental +coincidently +coleopterist +coleopterous +collaborated +collaborates +collaborator +collaterally +collectively +collectivise +collectivism +collectivist +collectivity +collectivize +collectorate +collegialism +collegiality +collegianers +collembolans +colligations +collimations +collinearity +colliquation +colliquative +collocations +colloquially +colloquising +colloquizing +colluctation +collywobbles +cologarithms +colonelships +colonialisms +colonialists +colonisation +colonization +coloquintida +colorimeters +colorization +colourations +colposcopies +columniation +combinations +Combretaceae +comburgesses +combustibles +cometography +comeuppances +comfortingly +comicalities +Cominformist +commandeered +commanderies +commandingly +commandments +commeasuring +commemorable +commemorated +commemorates +commemorator +commencement +commendation +commendators +commendatory +commensalism +commensality +commensurate +commentaries +commentating +commentation +commentators +commercially +comminations +comminutions +commiserable +commiserated +commiserates +commiserator +commissarial +commissariat +commissaries +commissioned +commissioner +committeeman +committeemen +commodiously +commonalties +commonplaced +commonplaces +commonwealth +commorientes +communalised +communalises +communalists +communalized +communalizes +communicable +communicably +communicants +communicated +communicates +communicator +communitaire +commutations +compaginated +compaginates +companionate +compartments +compatriotic +compearances +compellation +compellative +compensating +compensation +compensative +compensators +compensatory +competencies +competitions +compilations +compilements +complacently +complainants +complainings +complaisance +complanation +complemental +complemented +completeness +complexified +complexifies +complexional +complexioned +complexities +compliancies +complicating +complication +complicative +complicities +complimental +complimented +complimenter +componential +composedness +compositions +compotations +compoundable +comprehended +compressible +compressions +compressures +comprimarios +compromising +comptrollers +compulsative +compulsatory +compulsitors +compulsively +compulsories +compulsorily +compunctions +compunctious +compurgation +compurgators +compurgatory +computations +computerised +computerises +computerized +computerizes +concatenated +concatenates +concealments +concelebrant +concelebrate +concentering +concentrated +concentrates +concentrator +concentrical +conceptional +conceptually +concernments +concertantes +concertgoers +concertinaed +concertst�ck +conchiferous +conchologist +conciliating +conciliation +conciliative +conciliators +conciliatory +conclamation +conclusively +concomitance +concomitancy +concomitants +concordances +concordantly +concremation +concrescence +concreteness +concretising +concretizing +concubitancy +concubitants +concupiscent +concurrences +concurrently +condemnation +condemnatory +condensating +condensation +condenseries +condescended +condisciples +conditionals +conditionate +conditioners +conditioning +condolements +condominiums +condonations +conducements +conductances +conductivity +conduplicate +confabulated +confabulates +confabulator +confectioner +confederated +confederates +conf�rencier +conferencing +conferential +confessional +confessoress +confidencies +confidential +configurated +configurates +confinements +confirmation +confirmative +confirmators +confirmatory +confiscating +confiscation +confiscators +confiscatory +conflagrated +conflagrates +conflictions +conformation +conformities +confoundedly +confrontment +Confucianism +Confucianist +confusedness +confutations +confutements +congealments +congelations +congenerical +congeniality +congenitally +conglobating +conglobation +conglobulate +conglomerate +conglutinant +conglutinate +congratulant +congratulate +congregating +congregation +congruencies +conidiophore +conidiospore +conjecturing +conjugatings +conjugations +conjunctions +conjunctival +conjunctivas +conjunctures +conjurations +conjurements +connaturally +connectively +connectivity +connoisseurs +connotations +connubiality +connumerates +conqueresses +conqueringly +conquistador +conscionable +conscionably +conscripting +conscription +consecrating +consecration +consecrative +consecrators +consecratory +consectaries +consecutions +consensually +consentience +consentingly +consequences +consequently +conservation +conservatism +conservative +conservators +conservatory +conservatrix +considerable +considerably +considerance +considerings +consignation +consignatory +consignified +consignifies +consignments +consiliences +consistences +consistently +consistorial +consistorian +consistories +consociating +consociation +consolations +consolements +consolidated +consolidates +consolidator +consonancies +conspecifics +conspectuity +conspectuses +conspiracies +conspiration +conspirators +conspiringly +constabulary +constatation +constellated +constellates +consternated +consternates +constipating +constipation +constituency +constituents +constituting +constitution +constitutive +constraining +constricting +constriction +constrictive +constrictors +constringent +constringing +constructers +constructing +construction +constructive +constructors +constructure +constuprated +constuprates +consubsisted +consultation +consultative +consultatory +consumerists +consummately +consummating +consummation +consummative +consummators +consummatory +consumptions +consumptives +contabescent +contagionist +contagiously +containerise +containerize +containments +contaminable +contaminants +contaminated +contaminates +contaminator +contempering +contemplable +contemplants +contemplated +contemplates +contemplator +contemporary +contemporise +contemporize +contemptible +contemptibly +contemptuous +contentation +conterminant +conterminate +conterminous +contestation +contestingly +contextually +contignation +contiguities +contiguously +continentals +contingences +contingently +continuances +continuation +continuative +continuators +continuities +continuously +contorniates +contortional +contrabasses +contrabassos +contrabbasso +contractable +contractedly +contractible +contractions +contractural +contractures +contradicted +contradictor +contranatant +contrapposto +contraptions +contrapuntal +contrariness +contrariwise +contravening +contrayervas +contributary +contributing +contribution +contributive +contributors +contributory +contriteness +contrivances +contrivement +controllable +controlments +controverted +contumacious +contumelious +conurbations +convalescent +convalescing +convectional +conveniences +conveniently +conventicler +conventicles +conventional +conventioner +convergences +conversation +conversative +convertibles +conveyancers +conveyancing +convincement +convincingly +convivialist +conviviality +convocations +convolutions +convulsional +convulsively +cooperations +cooperatives +coordinances +coordinately +coordinating +coordination +coordinative +coordinators +copartneries +copolymerise +copolymerize +copperplates +coppersmiths +coprocessors +coproduction +coprophagans +coprophagist +coprophagous +coprophilous +copyrighting +coquettishly +corallaceous +Cordaitaceae +cordectomies +cordialising +cordialities +cordializing +cornhuskings +corollaceous +coronagraphs +coronographs +corporalship +corporations +corporatists +corporealise +corporealism +corporealist +corporeality +corporealize +corporeities +corporifying +correctional +correctioner +correctitude +correlatable +correlations +correlatives +corresponded +corrivalship +corroborable +corroborated +corroborates +corroborator +corrugations +coruscations +coscinomancy +cosmetically +cosmeticians +cosmeticised +cosmeticises +cosmeticized +cosmeticizes +cosmogonical +cosmogonists +cosmographer +cosmographic +cosmological +cosmologists +cosmonautics +cosmoplastic +cosmopolises +cosmopolitan +cosmopolites +cosmopolitic +cosmospheres +cosponsoring +costermonger +cotoneasters +cottonmouths +cottonocracy +cotyledonary +cotyledonous +coulombmeter +councilmanic +councilwoman +councilwomen +counsellable +counsellings +countenanced +countenancer +countenances +counteracted +counterbases +counterbluff +countercheck +counterdrawn +counterdraws +counterfeits +counterfoils +counterlight +countermands +countermarch +countermarks +countermined +countermines +countermured +countermures +counteroffer +counterpanes +counterparts +counterplays +counterplead +counterpleas +counterplots +counterpoint +counterpoise +counterproof +counterpunch +counterscarp +countershaft +countersigns +countersinks +countersuing +countervails +countrywoman +countrywomen +courageously +courtierlike +covetiveness +covetousness +cowardliness +crackbrained +crackerjacks +cracoviennes +craftmanship +craftsmaster +craftsperson +crakeberries +craniologist +craniometers +craniotomies +crankhandles +crapehangers +crapehanging +crapshooters +crassamentum +Crassulaceae +creationists +creativeness +creatorships +creatureship +credibleness +creditworthy +cr�maill�res +cremationist +crematoriums +crenelations +crenellating +crenellation +creolisation +creolization +crepehangers +crepehanging +crepitations +crepusculous +crescendoing +crescentades +crescographs +criminalised +criminalises +criminalists +criminalized +criminalizes +criminations +criminogenic +crisscrossed +crisscrosses +cristobalite +criticalness +criticasters +criticisable +criticizable +crocodilians +crossbanding +crossbearers +crossbencher +crossbenches +crosscutting +crosshatched +crosshatches +crossmatched +crossmatches +crosspatches +crotcheteers +crucifixions +crymotherapy +cryoglobulin +cryophoruses +cryosurgeons +cryptanalyst +cryptogamian +cryptogamist +cryptogamous +cryptographs +cryptography +cryptologist +cryptomnesia +cryptomnesic +cryptonymous +crystallines +crystallised +crystallises +crystallitis +crystallized +crystallizes +ctenophorans +cubistically +cuckoldising +cuckoldizing +culminations +culpableness +cultivatable +cultivations +culverineers +culvertailed +cumbrousness +cumulatively +cunnilinctus +cuprammonium +cupuliferous +curatorships +curietherapy +curliewurlie +curmudgeonly +curtailments +curvicaudate +curvicostate +curvifoliate +curvirostral +cutinisation +cutinization +cuttlefishes +cyanogenesis +Cyanophyceae +cyclandelate +cyclographic +cyclopaedias +cyclopropane +Cyclostomata +cyclostomous +cyclostyling +cylindricity +cylindriform +cymotrichous +Cynocephalus +cynophilists +Cyprinodonts +cystectomies +cytogenetics +cytoskeletal +cytoskeleton +cytotoxicity +czarevitches +Czechoslovak diff --git a/com/agnibho/code/anagram/dictionary/C13.txt b/com/agnibho/code/anagram/dictionary/C13.txt new file mode 100644 index 0000000..d75be2a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C13.txt @@ -0,0 +1,836 @@ +cabbalistical +cabinetmakers +cacographical +caesaropapism +calceamentums +calcification +calculatingly +calculational +calefactories +calendarising +calendarizing +calligraphers +calligraphist +callisthenics +calumniations +Calvinistical +calycanthuses +campanologist +Campanulaceae +camphoraceous +campylobacter +canaliculated +canalisations +canalizations +cancellariate +cancellations +cancerophobia +candidateship +canisterising +canisterizing +cannibalising +cannibalistic +cannibalizing +canonisations +canonizations +canthaxanthin +cantilevering +cantillations +cantonisation +cantonization +capaciousness +capacitations +capellmeister +capercaillies +capercailzies +capillarities +capitulations +Capparidaceae +Capricornians +caprification +caravansarais +caravansaries +caravanserais +carbohydrates +carboniferous +carbonisation +carbonization +carbonylating +carbonylation +carburisation +carburization +carcinologist +carcinomatous +Cardiganshire +cardinalatial +cardinalitial +cardinalships +cardiographer +cardiological +cardiologists +cardophaguses +caricaturists +carillonneurs +carnification +carnivalesque +carnivorously +carpetbaggers +carpetbagging +Carrickfergus +carriwitchets +cartelisation +cartelization +cartilaginous +cartographers +cartophilists +Caryocaraceae +casualisation +casualization +Casuarinaceae +casuistically +cataloguising +cataloguizing +catalytically +catamountains +catastrophism +catastrophist +catechistical +catecholamine +catechumenate +catechumenism +categorematic +categorically +catercornered +caterwaulings +catheterising +catheterizing +cathetometers +cathodographs +cathodography +catholicising +catholicizing +causationists +causelessness +cauterisation +cauterization +celluliferous +centillionths +centricalness +centrifugally +centrifugence +centripetally +centumvirates +centuplicates +centuriations +cephalisation +cephalization +Cephalochorda +cephalosporin +cephalothorax +cephalotomies +cercopithecid +Cercopithecus +cerebrospinal +ceremonialism +ceremoniously +cerographical +cerographists +certificating +certification +certificatory +ceruloplasmin +cesarevitches +cesarewitches +chairmanships +chalcographer +chalcographic +chalicotheres +challengeable +challengingly +chameleonlike +championesses +championships +chancelleries +chancellories +Chandrasekhar +changeability +changefulness +chapelmasters +chaplainships +characterised +characterises +characterisms +characterized +characterizes +characterless +charioteering +charlatanical +Charlottetown +chastisements +Chateaubriand +cheerlessness +cheeseburgers +cheesetasters +Cheirotherium +chemisorption +chemoreceptor +chesterfields +chieftaincies +chieftainries +chieftainship +childlessness +chiliahedrons +chinkerinchee +chiquichiquis +chirographers +chirographist +chiromantical +chiropractors +Chlamydomonas +chlamydospore +chlorargyrite +chlorobromide +chlorocruorin +chloroformers +chloroforming +chloroformist +Chloromycetin +Chlorophyceae +chloroplastal +choirmistress +chokecherries +cholecystitis +chondriosomes +chondrostians +choregraphers +choregraphing +choreographed +choreographer +choreographic +chorepiscopal +chorizontists +chorusmasters +chrematistics +chrestomathic +chrismatories +Christianised +Christianiser +Christianises +Christianized +Christianizer +Christianizes +Christianlike +Christianness +Christologist +chromatically +chromatograms +chromatograph +chromatophore +chronobiology +chronographer +chronological +chronologised +chronologises +chronologists +chronologized +chronologizes +chrysanthemum +chrysophilite +churchmanship +chylification +chymification +cicatrichules +cicatrisation +cicatrization +Ciceronianism +cinchonaceous +cinematheques +cinematograph +circassiennes +circularising +circularities +circularizing +circumambages +circumambient +circumcentres +circumcisions +circumducting +circumduction +circumference +circumflected +circumflexion +circumfluence +circumfusions +circumgyrated +circumgyrates +circumjacency +circumlocuted +circumlocutes +circumnutated +circumnutates +circumscribed +circumscriber +circumscribes +circumspectly +circumstances +circumvallate +circumventing +circumvention +circumventive +circumvolving +civilianising +civilianizing +civilisations +civilizations +clairaudience +clairaudients +clamorousness +clandestinely +clandestinity +clapperboards +clapperclawed +clapperclawer +clarification +clarinettists +classicalists +classicalness +classlessness +claustrophobe +clavicembalos +cleavableness +cleistogamous +climacterical +climactically +climatography +climatologist +clinodiagonal +clinopinacoid +clinopinakoid +clishmaclaver +Clytaemnestra +coacervations +coachbuilders +coachbuilding +coadjacencies +coadjutorship +coadjutresses +coagulability +coalitionists +cobaltiferous +cocainisation +cocainization +coccidiostats +cochleariform +cockieleekies +codeclination +codicological +codifications +coeducational +coelenterates +coenaesthesis +cognominating +cognomination +cohabitations +coincidencies +coldheartedly +coleopterists +collaborating +collaboration +collaborative +collaborators +colleagueship +collectedness +collectivised +collectivises +collectivists +collectivized +collectivizes +collectorates +collectorship +collieshangie +colloquialism +colloquialist +colluctations +colonisations +colonizations +coloquintidas +colourisation +colourization +columniations +combativeness +combinability +combinatorial +combinatorics +commandeering +commandership +commeasurable +Commelinaceae +commemorating +commemoration +commemorative +commemorators +commemoratory +commencements +commendations +commensurable +commensurably +commentations +commercialese +commercialise +commercialism +commercialist +commerciality +commercialize +commiserating +commiseration +commiserative +commiserators +commissariats +commissioners +commissioning +committeeship +commonalities +commonplacing +commonwealths +communalising +communalizing +communautaire +communicating +communication +communicative +communicators +communicatory +communitarian +commutability +commutatively +compactedness +compaginating +compagination +companionable +companionably +companionates +companionhood +companionless +companionship +comparability +comparatively +compartmental +compassionate +compatibility +compatriotism +compellations +compellatives +compendiously +compensations +competitively +complainingly +complaisantly +complanations +complementary +complementing +complexedness +complexifying +complicatedly +complications +complimentary +complimenters +complimenting +compositeness +compositional +comprehending +comprehension +comprehensive +compressional +comprovincial +Compsognathus +compulsionist +compurgations +computational +computerising +computerizing +concatenating +concatenation +conceitedness +concelebrants +concelebrated +concelebrates +concentrating +concentration +concentrative +concentrators +concentricity +conceptionist +conceptualise +conceptualism +conceptualist +conceptualize +concernedness +Concertgebouw +concertinaing +concessionary +concessionist +conchological +conchologists +conciliations +conclamations +concomitantly +concremations +concrescences +concretionary +concupiscence +concupiscible +concurrencies +concyclically +condemnations +condensations +condescending +condescension +conditionally +conditionings +conductorship +conductresses +condylomatous +confabulating +confabulation +confabulators +confabulatory +confarreation +confectionary +confectioners +confectionery +confederacies +confederating +confederation +confederative +conf�renciers +confessionals +confessionary +confessorship +confidingness +configurating +configuration +confirmations +confiscations +conflagrating +conflagration +conformations +confoundingly +confraternity +confrontation +confrontments +conglobations +conglobulated +conglobulates +conglomerated +conglomerates +conglomeratic +conglutinated +conglutinates +conglutinator +congratulable +congratulants +congratulated +congratulates +congratulator +congregations +congressional +congresswoman +congresswomen +congruousness +conidiophores +conidiospores +conjecturable +conjecturally +conjugational +conjunctional +conjunctively +connascencies +connaturality +connectionism +connumeration +conquistadors +consanguinity +conscientious +consciousness +conscriptions +consecrations +consecutively +consenescence +consenescency +consentaneity +consentaneous +consequential +conservancies +conservations +conservatives +conservatoire +considerately +consideration +considerative +consideringly +consignations +consignifying +consimilarity +consimilities +consimilitude +consistencies +consociations +consolatrixes +consolidating +consolidation +consolidative +consolidators +conspicuously +conspirations +conspiratress +constableship +constablewick +Constantinian +constatations +constellating +constellation +constellatory +consternating +consternation +constitutions +constrainable +constrainedly +constrictions +constringency +constructable +constructible +constructions +constructures +constuprating +constupration +consubsisting +consultancies +consultations +consummations +consumptively +consumptivity +contabescence +contagionists +containerised +containerises +containerized +containerizes +contaminating +contamination +contaminative +contaminators +contemplating +contemplation +contemplatist +contemplative +contemplators +contemporised +contemporises +contemporized +contemporizes +contentedness +contentiously +contestations +contextualise +contextualize +contignations +contingencies +continuations +continuedness +contortionate +contortionism +contortionist +contrabandism +contrabandist +contrabassoon +contraception +contraceptive +contractility +contractional +contractually +contradicting +contradiction +contradictive +contradictors +contradictory +contrafagotto +contralateral +contrappostos +contrapuntist +contrarieties +contrariously +contrastingly +contraterrene +contravention +contributable +contributions +contrivements +controversial +controversies +controverting +controvertist +contumacities +convalescence +convalescency +convalescents +conveniencies +conventiclers +conventionary +conventioneer +conventioners +conventionist +convergencies +conversations +conversazione +conversazioni +convertiplane +convicinities +convivialists +convocational +convolvuluses +convulsionary +convulsionist +cooperatively +coparcenaries +coparceneries +copartnership +copolymerised +copolymerises +copolymerized +copolymerizes +coproductions +coprophagists +copyrightable +coralliferous +coralligenous +cordocentesis +coreferential +corinthianise +corinthianize +cornification +Corolliflorae +corollifloral +corporalships +corporateness +corporealised +corporealises +corporealists +correctioners +correctitudes +correlatively +correlativity +correspondent +corresponding +corresponsive +corrigibility +corroborating +corroboration +corroborative +corroborators +corroboratory +corrosibility +corrosiveness +corruptionist +cosmeceutical +cosmeticising +cosmeticizing +cosmetologist +cosmochemical +cosmographers +cosmopolitans +cosmopolitics +cosmopolitism +cosmothetical +costardmonger +costermongers +coulombmeters +counselorship +countenancers +countenancing +counteracting +counteraction +counteractive +counterbidder +counterchange +countercharge +counterchecks +counterfeited +counterfeiter +counterfeitly +counterlights +countermanded +countermining +countermuring +counteroffers +counterpleads +counterpoints +counterpoised +counterpoises +counterproofs +counterscarps +countershafts +countersigned +counterstroke +countervailed +courteousness +coxcombically +craftmanships +craftsmanship +craftsmasters +craniectomies +craniological +cranioscopist +crassulaceous +credulousness +cremationists +crenellations +criminalising +criminalistic +criminalizing +criminologist +criminousness +crinicultural +crisscrossing +crossbenchers +crossbreeding +crosshatching +crossmatching +cryobiologist +cryptanalysis +cryptanalysts +cryptesthesia +cryptesthetic +cryptogamists +cryptographer +cryptographic +cryptological +cryptologists +crystallinity +crystallising +crystallizing +Cucurbitaceae +culpabilities +cummingtonite +cumulostratus +curculionidae +curliewurlies +custodianship +customariness +customisation +customization +cyanoacrylate +Cyathophyllum +cyberneticist +cybersquatted +cybersquatter +Cyclanthaceae +cyclodialyses +cyclodialysis +cyclospermous +cylindraceous +cylindrically +cysticercosis +cytochemistry +cytodiagnosis +cytopathology +Czechoslovaks diff --git a/com/agnibho/code/anagram/dictionary/C14.txt b/com/agnibho/code/anagram/dictionary/C14.txt new file mode 100644 index 0000000..1852e39 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C14.txt @@ -0,0 +1,469 @@ +cadaverousness +calamitousness +calligraphical +calligraphists +calorification +Calycanthaceae +Cambridgeshire +Camelopardalis +campanological +campanologists +campanulaceous +campylotropous +cancellariates +candidateships +cantankerously +canthaxanthine +capellmeisters +capitalisation +capitalization +capparidaceous +capriciousness +Caprifoliaceae +caramelisation +caramelization +carbonisations +carbonizations +carburisations +carburizations +carcinogenesis +carcinological +carcinologists +carcinomatosis +cardiographers +cardiomyopathy +cardiothoracic +cardiovascular +cartelisations +cartelizations +cartographical +Castanospermum +castrametation +casualisations +casualizations +catachrestical +catadioptrical +catastrophists +catechetically +catechumenates +catechumenical +catechumenship +categorisation +categorization +cathodographer +cauterisations +cauterizations +censoriousness +censurableness +centenarianism +centralisation +centralization +centrifugalise +centrifugalize +centrifugation +centripetalism +centuplication +cercopithecoid +certifications +Chaetodontidae +chalcographers +chalcographist +chancellorship +changeableness +Chappaquiddick +chaptalisation +chaptalization +characterising +characteristic +characterizing +characterology +chargeableness +charitableness +charterparties +chemoautotroph +chemoreceptive +chemoreceptors +chemosynthesis +Chenopodiaceae +chieftainesses +chieftainships +chincherinchee +chinkerinchees +chirographists +chivalrousness +chlamydospores +chloritisation +chloritization +chlorobromides +chloroformists +chlorpromazine +cholecystotomy +cholelithiasis +cholinesterase +chondrocranium +chondrogenesis +chondrophorine +chordamesoderm +choreographers +choreographing +chorographical +chrestomathies +Christianisers +Christianising +Christianizers +Christianizing +Christocentric +Christological +christophanies +chromatographs +chromatography +chromatophores +chromatosphere +chronographers +chronologising +chronologizing +chronometrical +chrysanthemums +chymifications +cicatrisations +cicatrizations +cinchonisation +cinchonization +cinematographs +cinematography +circuitousness +circumambience +circumambiency +circumambulate +circumbendibus +circumferences +circumferentor +circumflecting +circumflexions +circumfluences +circumforanean +circumgyrating +circumgyration +circumgyratory +circumlittoral +circumlocuting +circumlocution +circumlocutory +circumnavigate +circumnutating +circumnutation +circumnutatory +circumposition +circumscissile +circumscribers +circumscribing +circumspection +circumspective +circumstantial +circumvallated +circumvallates +circumventions +circumvolution +clapperclawers +clapperclawing +clarifications +classification +classificatory +claustrophobia +claustrophobic +clavicytherium +climatological +climatologists +clinodiagonals +clinopinacoids +clinopinakoids +clitoridectomy +coadjutorships +coastguardsman +coastguardsmen +coelanaglyphic +cognominations +coincidentally +collaborations +collapsability +collapsibility +colleagueships +collectivising +collectivizing +collectorships +collegialities +collieshangies +colliquescence +colloquialisms +colloquialists +combustibility +commandantship +commanderships +commemorations +commensalities +commensurately +commensuration +commentatorial +commercialised +commercialises +commercialists +commercialized +commercializes +commiserations +commissaryship +commissionaire +committeeships +committeewoman +committeewomen +commodiousness +commonsensical +communications +communitarians +companionships +comparableness +compassionable +compatibleness +compensational +complexionless +compossibility +comprehensible +comprehensibly +comprehensions +comprehensives +compulsionists +compulsiveness +compulsoriness +compunctiously +compurgatorial +concatenations +conceivability +concelebrating +concelebration +concentrations +concentrically +conceptionists +conceptualised +conceptualises +conceptualists +conceptualized +conceptualizes +concessionaire +concessionists +conclusiveness +condensability +condescendence +condescensions +conditionality +conductibility +conductivities +conductorships +confabulations +confarreations +confederations +confessoresses +confidentially +configurations +conflagrations +conformability +confrontations +congenialities +conglobulating +conglobulation +conglomerating +conglomeration +conglutinating +conglutination +conglutinative +conglutinators +congratulating +congratulation +congratulative +congratulators +congratulatory +congregational +congresspeople +congressperson +conjunctivitis +connaturalness +conquistadores +consanguineous +conscienceless +conscriptional +conservational +conservatively +conservatoires +conservatories +conservatorium +conservatrixes +considerations +consignatories +consociational +consolidations +conspiratorial +constableships +constablewicks +constabularies +Constantinople +constellations +consternations +constituencies +constitutional +construability +constructional +constructively +constructivism +consubstantial +consuetudinary +contagiousness +containerising +containerizing +contaminations +contemperation +contemperature +contemplations +contemplatists +contemporanean +contemporaries +contemporising +contemporizing +contemptuously +conterminously +contesseration +contextualised +contextualises +contextualized +contextualizes +contiguousness +continentalism +continentalist +continuousness +contortionists +contrabandists +contrabassoons +contraceptions +contraceptives +contractedness +contractionary +contracyclical +contradictable +contradictions +contradictious +contrafagottos +contraindicant +contraindicate +contraposition +contrapositive +contrapuntally +contrapuntists +contrarotating +contraventions +controllership +controvertible +controvertibly +controvertists +contumaciously +contumeliously +convalescences +conventionally +conventioneers +conventionists +conversational +conversaziones +convertibility +convertiplanes +convivialities +convocationist +Convolvulaceae +convulsionists +convulsiveness +copartnerships +copolymerising +copolymerizing +coquettishness +corinthianised +corinthianises +corinthianized +corinthianizes +corolliflorous +corporealising +corpuscularian +corpuscularity +correligionist +correspondence +correspondency +correspondents +corroborations +corruptibility +corruptionists +corticosteroid +corticotrophin +cosmetologists +cosmochemistry +cosmographical +cosmopolitical +costardmongers +cotemporaneous +counsellorship +counteractions +counterbalance +counterbidders +counterchanges +countercharges +counterchecked +counterculture +counterdrawing +counterexample +counterfeiters +counterfeiting +countermanding +countermarched +countermarches +counterpleaded +counterplotted +counterpoising +countershading +countersigning +countersinking +counterstrokes +countervailing +courageousness +coxcombicality +cranioscopists +creditableness +criminalistics +criminologists +Crossopterygii +cruciverbalism +cruciverbalist +cryobiological +cryobiologists +cryptaesthesia +cryptaesthetic +cryptococcosis +cryptographers +cryptographist +cryptorchidism +cryptosporidia +crystallisable +crystallizable +crystallomancy +cucurbitaceous +cumbersomeness +curvilinearity +custodianships +customisations +customizations +cyanoacetylene +cyanobacterium +cyanocobalamin +cyberneticists +cybersquatters +cybersquatting +cyclanthaceous +cyclobarbitone +cyclopentolate +cyproheptadine +cystolithiasis +cytogeneticist +cytotoxicities +Czechoslovakia diff --git a/com/agnibho/code/anagram/dictionary/C15.txt b/com/agnibho/code/anagram/dictionary/C15.txt new file mode 100644 index 0000000..8a3d3e7 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C15.txt @@ -0,0 +1,268 @@ +Caernarvonshire +Caesalpiniaceae +calendarisation +calendarization +Callitrichaceae +calorifications +canisterisation +canisterization +cannibalisation +cannibalization +capernaitically +capitalisations +capitalizations +caprifoliaceous +caramelisations +caramelizations +carcinogenicity +cardiopulmonary +Carmarthenshire +carnivorousness +carpometacarpus +Caryophyllaceae +castanospermine +cataclysmically +catallactically +categoricalness +categorisations +categorizations +catheterisation +catheterization +cathodographers +Catholicisation +catholicization +centralisations +centralizations +centrifugalised +centrifugalises +centrifugalized +centrifugalizes +centuplications +cephalochordate +cephalothoraces +cerebrovascular +ceremoniousness +chalcographical +chalcographists +chamberlainship +chancellorships +chaptalisations +chaptalizations +characteristics +chemoattractant +chemoautotrophs +chemopsychiatry +chenopodiaceous +chincherinchees +chiroromantical +chloramphenicol +chloritisations +chloritizations +choirmistresses +cholangiography +cholecalciferol +cholecystectomy +cholecystostomy +cholesterolemia +chondrification +chondrocraniums +chondropterygii +choriocarcinoma +chrestomathical +Christadelphian +chromatographic +chromoxylograph +chronologically +churrigueresque +cinchonisations +cinchonizations +cineangiography +cinematographer +cinematographic +cinemicrography +circumambagious +circumambulated +circumambulates +circumferential +circumferentors +circumforaneous +circumgyrations +circumincession +circuminsession +circumlocutions +circumnavigable +circumnavigated +circumnavigates +circumnavigator +circumnutations +circumpositions +circumscribable +circumscription +circumscriptive +circumspections +circumspectness +circumstantials +circumstantiate +circumvallating +circumvallation +circumvolutions +clandestineness +classifications +clavicytheriums +cockneyfication +coconsciousness +codetermination +coldheartedness +collenchymatous +combustibleness +comfortableness +comfortlessness +commandantships +commendableness +commensurations +commercialising +commercializing +commissaryships +commissionaires +communalisation +communalization +communicability +communicatively +compartmentally +compassionately +compatibilities +compendiousness +competitiveness +complementarily +complementarity +complementation +complicatedness +compotationship +comprehensively +comprehensivise +comprehensivize +compressibility +computerisation +computerization +conceivableness +concelebrations +concentricities +conceptualising +conceptualistic +conceptualizing +concessionaires +concessionnaire +condescendences +condescendingly +confectionaries +confectioneries +confessionalism +confessionalist +confessionaries +confidentiality +configurational +confraternities +confrontational +congealableness +conglobulations +conglomerations +conglutinations +congratulations +conjunctionally +conjunctiveness +connoisseurship +conquerableness +conscientiously +conscriptionist +consecratedness +consecutiveness +consentaneously +consequentially +conservationist +conservatoriums +conservatorship +considerateness +consideratively +conspicuousness +conspiratresses +constitutionals +constitutionist +constringencies +constructionism +constructionist +consubstantiate +consumptiveness +contemperatures +contemplatively +contemporaneans +contemporaneity +contemporaneous +contemptibility +contentiousness +contesserations +contextualising +contextualizing +continentalisms +continentalists +contractability +contractibility +contradictively +contradictorily +contraindicants +contraindicated +contraindicates +contrapositions +contrapositives +contrapropeller +contravallation +controllability +controllerships +controversially +convalescencies +conventionalise +conventionalism +conventionalist +conventionality +conventionalize +conversationism +conversationist +convocationists +convolvulaceous +cooperativeness +corinthianising +corinthianizing +corporification +corpuscularians +correlativeness +correspondences +correspondently +correspondingly +corruptibleness +corticosteroids +Corynebacterium +cosmopolitanism +counsellorships +counteractively +counterbalanced +counterbalances +counterchecking +counterexamples +counterfeisance +countermandable +countermarching +counterpleading +counterplotting +countervailable +criminalisation +criminalization +crossopterygian +cruciverbalists +cryoprecipitate +cryptographists +cryptosporidium +crystallisation +crystallization +crystallography +cytogenetically +cytomegalovirus +Czechoslovakian diff --git a/com/agnibho/code/anagram/dictionary/C16.txt b/com/agnibho/code/anagram/dictionary/C16.txt new file mode 100644 index 0000000..263f341 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C16.txt @@ -0,0 +1,104 @@ +caducibranchiate +caesalpiniaceous +cantankerousness +caryophyllaceous +catachrestically +catastrophically +catechumenically +centrifugalising +centrifugalizing +characterisation +characteristical +characterization +characterologist +chauvinistically +chemoattractants +chemoprophylaxis +chemopsychiatric +cholecystography +cholecystotomies +cholesterolaemia +Christianisation +Christianization +chromolithograph +chromotypography +chromoxylography +chryselephantine +cinematographist +circumambulating +circumambulation +circumbendibuses +circumdenudation +circumlocutional +circumnavigating +circumnavigation +circumscriptions +circumstantially +circumvallations +Clackmannanshire +climatographical +collaborationism +collaborationist +collectivisation +collectivization +commensurability +commensurateness +commissionership +communicableness +compactification +compartmentalise +compartmentalize +complexification +comprehensivised +comprehensivises +comprehensivized +comprehensivizes +compressibleness +concessionnaires +confrontationism +confrontationist +conscionableness +consequentialism +conservationists +conservativeness +considerableness +consignification +consignificative +conspiratorially +constitutionally +constructionists +constructiveness +consubstantially +consuetudinaries +containerisation +containerization +contemporariness +contemptibleness +contemptuousness +contradictiously +contraindicating +contraindication +contraindicative +contrapropellers +controversialist +contumaciousness +contumeliousness +conventionalised +conventionalises +conventionalized +conventionalizes +conversationally +copolymerisation +copolymerization +correspondencies +counterbalancing +counterclockwise +counterextension +counterintuitive +creditworthiness +cryopreservation +crystallogenesis +crystallogenetic +crystallographer +crystallographic +Czechoslovakians diff --git a/com/agnibho/code/anagram/dictionary/C17.txt b/com/agnibho/code/anagram/dictionary/C17.txt new file mode 100644 index 0000000..d3018e1 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C17.txt @@ -0,0 +1,66 @@ +cardiorespiratory +characterisations +characterizations +characterlessness +chemiluminescence +chemotherapeutics +chiropterophilous +chromolithography +cinematographical +circumlocutionary +circumlocutionist +circumnavigations +circumstantiality +circumterrestrial +collaborationists +commensurableness +commercialisation +commercialization +commissionerships +communicativeness +companionableness +compartmentalised +compartmentalises +compartmentalized +compartmentalizes +compassionateness +comprehensibility +comprehensiveness +comprehensivising +comprehensivizing +concentrativeness +conceptualisation +conceptualization +Congregationalism +Congregationalist +conscientiousness +consentaneousness +constitutionalise +constitutionalism +constitutionalist +constitutionality +constitutionalize +consubstantialism +consubstantialist +consubstantiality +consubstantiation +contemplativeness +contemporaneously +contextualisation +contextualization +contradictoriness +contradistinction +contradistinctive +contradistinguish +contrasuggestible +controversialists +conventionalising +conventionalities +conventionalizing +conversationalist +copolymerisations +copolymerizations +counterinsurgency +cryptocrystalline +cryptosporidiosis +crystallographers diff --git a/com/agnibho/code/anagram/dictionary/C18.txt b/com/agnibho/code/anagram/dictionary/C18.txt new file mode 100644 index 0000000..50639bf --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C18.txt @@ -0,0 +1,15 @@ +campylobacteriosis +characteristically +chlorofluorocarbon +coccidioidomycosis +compartmentalising +compartmentalizing +comprehensibleness +Constantinopolitan +constitutionalised +constitutionalises +constitutionalists +constitutionalized +constitutionalizes +contradistinctions +conversationalists diff --git a/com/agnibho/code/anagram/dictionary/C19.txt b/com/agnibho/code/anagram/dictionary/C19.txt new file mode 100644 index 0000000..df274de --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C19.txt @@ -0,0 +1,10 @@ +chlorofluorocarbons +comprehensivisation +comprehensivization +constitutionalising +constitutionalizing +contemporaneousness +contradistinguished +contradistinguishes +counterconditioning +cytodifferentiation diff --git a/com/agnibho/code/anagram/dictionary/C2.txt b/com/agnibho/code/anagram/dictionary/C2.txt new file mode 100644 index 0000000..f4f96bc --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C2.txt @@ -0,0 +1,2 @@ +ch +Cy diff --git a/com/agnibho/code/anagram/dictionary/C20.txt b/com/agnibho/code/anagram/dictionary/C20.txt new file mode 100644 index 0000000..1857e80 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C20.txt @@ -0,0 +1,7 @@ +Chrononhotonthologos +compartmentalisation +compartmentalization +comprehensivisations +comprehensivizations +consubstantiationist +contradistinguishing diff --git a/com/agnibho/code/anagram/dictionary/C21.txt b/com/agnibho/code/anagram/dictionary/C21.txt new file mode 100644 index 0000000..299a207 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C21.txt @@ -0,0 +1,3 @@ +compartmentalisations +compartmentalizations +counterproductiveness diff --git a/com/agnibho/code/anagram/dictionary/C3.txt b/com/agnibho/code/anagram/dictionary/C3.txt new file mode 100644 index 0000000..e56ff3b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C3.txt @@ -0,0 +1,47 @@ +ca' +cab +cad +cam +can +cap +car +cat +caw +cay +cee +cel +cep +cha +che +chi +Cid +cig +cit +cly +co' +cob +cod +Coe +cog +col +con +coo +cop +cor +cos +cot +cow +cox +coy +coz +cru +cry +cub +cud +cue +cum +cup +cur +cut +cuz +cwm diff --git a/com/agnibho/code/anagram/dictionary/C4.txt b/com/agnibho/code/anagram/dictionary/C4.txt new file mode 100644 index 0000000..6556294 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C4.txt @@ -0,0 +1,285 @@ +caba +cabs +cade +cadi +cads +Caen +caf� +caff +cage +cagy +cain +cake +caky +calf +Cali +calk +call +calm +calp +calx +Cama +came +camp +cams +Cana +cane +cang +cann +cans +cant +cany +capa +cape +capi +capo +Capp +caps +Cara +carb +card +care +cark +carl +Caro +carp +carr +cars +cart +Cary +casa +case +cash +cask +cast +cate +Cato +cats +cauk +caul +cave +cavy +cawk +caws +cays +ceas +ceca +cede +cedi +cees +ceil +cell +cels +celt +cens +cent +ceps +cere +Ceri +cert +cess +cete +chad +chai +chal +cham +chap +char +chas +chat +chaw +chay +chef +Cher +chew +chez +chic +chid +chik +chin +chip +chis +chit +chiv +chiz +choc +chon +chop +chou +chow +chub +chug +chum +chut +ciao +cigs +cill +cion +cir� +cirl +cist +cite +cito +cits +city +cive +clad +clag +clam +clan +clap +claw +clay +clef +cleg +clem +Cleo +clew +Clio +clip +clod +clog +clop +clot +clou +clow +cloy +club +clue +Cnut +coal +coat +coax +cobb +C�bh +cobs +coca +cock +coco +coda +code +cods +Cody +coed +coff +coft +cogs +coho +coif +coil +coin +coir +coit +coke +coky +cola +cold +cole +coll +Colm +cols +colt +coma +comb +come +Como +comp +coms +cond +cone +conk +conn +cons +cony +coof +cook +cool +coom +coon +coop +coos +coot +cope +cops +Copt +copy +Cora +cord +core +corf +cork +corm +corn +cors +cose +cosh +coss +cost +cosy +cote +coth +cots +cott +Cou� +coup +cove +cowl +cowp +cows +coxa +coxy +coze +cozy +crab +crag +cram +cran +crap +craw +Crax +cray +cred +cree +crew +crib +crit +croc +crop +crow +crud +crux +Cuba +cube +cubs +cuds +cued +cues +cuff +cuif +cuit +cull +culm +cult +cups +curb +curd +cure +curl +curn +curr +curs +curt +cush +cusk +cusp +cuss +cute +cuts +Cuyp +cwms +cyan +cyma +cyme +cyst +cyte +czar diff --git a/com/agnibho/code/anagram/dictionary/C5.txt b/com/agnibho/code/anagram/dictionary/C5.txt new file mode 100644 index 0000000..d244ec6 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C5.txt @@ -0,0 +1,816 @@ +Caaba +cabal +cabas +cabby +caber +cabin +cable +cabob +caboc +Cabot +cabr� +cacao +cache +cacti +caddy +cadee +cades +cadet +cadge +cadgy +cadie +cadis +Cadiz +cadre +caeca +caese +caf�s +caffs +caged +cages +cagey +cagot +Caine +cains +caird +cairn +Cairo +Caius +cajun +caked +cakes +cakey +calfs +calid +calif +calix +calks +calla +calls +calms +calmy +calpa +Calum +calve +calyx +caman +camas +camel +cameo +cames +camis +campo +camps +campy +camus +canal +candy +caned +caneh +caner +canes +cangs +canid +Canis +canna +canns +canny +canoe +canon +canst +canto +cants +canty +capas +caped +Capek +caper +capes +Capet +capiz +caple +capon +capos +capot +Capra +Capri +capul +caput +carap +carat +carbs +carby +cardi +cards +cardy +cared +carer +cares +caret +carex +Carey +cargo +Carib +carks +Carla +carls +Carly +carny +carob +carol +carom +carpi +carps +carrs +carry +carse +carta +carte +carts +carve +carvy +Carys +casas +Casca +casco +cased +cases +Casey +casks +caste +casts +catch +cater +cates +Cathy +catty +cauld +caulk +cauls +causa +cause +Cavan +caved +cavel +caver +caves +cavie +cavil +cawed +caxon +cease +Cebus +cecal +Cecil +cecum +cedar +ceded +ceder +cedes +cedis +ceili +ceils +celeb +Celia +cella +cello +cells +celom +celts +cense +cento +cents +ceorl +cered +ceres +cerge +ceria +ceric +certs +cesse +cetes +Cetus +cetyl +chace +chack +chaco +chads +chafe +chaff +chaft +Chaim +chain +chair +chais +chalk +chals +champ +chams +chank +chant +chaos +chape +chaps +chara +chard +chare +chark +charm +charr +chars +chart +chary +chase +chasm +chats +chaws +chaya +chays +cheap +cheat +check +cheek +cheep +cheer +chefs +cheka +chela +Chere +chert +chess +chest +chevy +chews +chewy +Chian +chiao +Chiba +chica +chich +chick +chico +chide +chief +chiel +chiks +child +chile +chili +chill +chimb +chime +chimo +chimp +china +chine +chink +chino +chins +Chios +chips +chirk +chirm +chirp +chirr +chirt +Chita +chits +chive +chivs +chivy +chizz +Chloe +chock +choco +chocs +choir +choke +choko +choky +choli +chomp +choof +chook +choom +chops +chord +chore +chose +chota +chott +chout +choux +chows +Chris +Chubb +chubs +chuck +chufa +chuff +chugs +chump +chums +chunk +churl +churn +churr +chuse +chute +chuts +chyle +chyme +ciaos +Ciara +cibol +cider +cigar +ciggy +cilia +Cilla +cills +cimar +cimex +cinch +cinct +Cindy +Cinna +cions +cippi +circa +Circe +circs +cir�s +cirls +cirri +cisco +cissy +cists +cital +cited +citer +cites +cives +civet +civic +civil +civvy +clack +clade +clads +claes +clags +claim +Clair +clame +clamp +clams +clang +clank +clans +claps +Clara +Clare +Clark +claro +clart +clary +clash +clasp +class +clast +Claud +Claus +clave +claws +clays +clean +clear +cleat +cleck +cleek +clefs +cleft +clegs +clems +clepe +clerk +cleve +clews +click +clied +clies +cliff +clift +climb +clime +cline +cling +clink +clint +clips +clipt +Clive +cloak +cloam +clock +clods +cloff +clogs +cloke +clomb +clomp +clone +clonk +cloop +cloot +clops +close +clote +cloth +clots +cloud +clour +clous +clout +clove +clown +clows +cloys +cloze +clubs +cluck +clued +clues +clump +clung +clunk +Cluny +Clwyd +Clyde +clype +cnida +coach +coact +coals +coaly +coapt +coarb +coast +coati +coats +cobbs +cobby +cobia +coble +Cobol +cobra +cobza +cocas +cocci +cocco +cocks +cocky +cocoa +cocos +codas +coded +coder +codes +codex +codon +coeds +coffs +cogie +cogue +cohab +cohoe +cohog +cohos +coifs +coign +coils +coins +coked +cokes +colas +colds +coles +coley +colic +colin +colly +colon +color +colts +Colum +colza +comae +comal +comas +combe +combo +combs +comby +comer +comes +comet +comfy +comic +comma +commo +comms +commy +compo +comps +compt +Comte +comus +Conan +conch +condo +coned +cones +coney +conga +cong� +congo +conia +conic +conin +conks +conky +conns +Conor +conte +conto +convo +Conwy +cooed +cooee +cooey +coofs +cooks +cooky +cools +cooly +coomb +cooms +coomy +coons +coops +coopt +coost +coots +copal +coped +coper +copes +coppy +copra +copse +copsy +Copts +coral +coram +corbe +Corby +cords +cored +corer +cores +Corfu +corgi +Corin +corks +corky +corms +corni +corno +corns +cornu +corny +Corot +corps +corse +corso +cosec +cosed +coses +coset +Cosmo +costa +coste +costs +cotes +coths +cotta +cotts +couch +coud� +cough +could +count +coupe +coups +courb +court +couth +coved +coven +cover +coves +covet +covey +covin +cowal +cowan +cowed +cower +Cowes +cowls +cowps +cowry +coxae +coxal +coxed +coxes +coyer +coyly +coypu +cozed +cozen +cozes +crabs +crack +craft +crags +craig +crake +cramp +crams +crane +crank +crans +crape +craps +crapy +crare +crash +crass +crate +crave +crawl +craws +crays +craze +crazy +creak +cream +Crecy +credo +creed +creek +creel +creep +crees +creme +crena +Creon +crepe +crept +crepy +cress +crest +Crete +crewe +crews +cribs +crick +cried +crier +cries +crime +crimp +crine +crise +crisp +crith +crits +croak +Croat +crock +crocs +croft +Crome +crone +cronk +crony +crook +croon +crops +crore +cross +croup +crout +crowd +crown +crows +croze +cruck +crude +cruds +crudy +cruel +cruet +Cruft +crumb +crump +cruor +cruse +crush +crust +crwth +crypt +ctene +Cuban +cubby +cubeb +cubed +cubes +cubic +cubit +cuddy +cuffs +Cufic +cuifs +cuing +cuish +cuits +culch +culet +culex +culls +cully +culms +cults +cumec +cumin +Cuneo +cupel +cupid +cuppa +curat +curbs +curch +curds +curdy +cured +curer +cures +curia +curie +curio +curls +curly +curns +currs +curry +curse +cursi +curst +curve +curvy +cusec +cushy +cusks +cusps +cutch +cuter +cutes +cutey +cutie +cutin +cutis +cutto +cutty +cuv�e +Cuzco +cyans +cycad +cycle +cyclo +cyder +cylix +cymar +cymas +cymes +Cymru +Cymry +cynic +Cyril +Cyrus +cysts +cytes +cyton +czars +Czech diff --git a/com/agnibho/code/anagram/dictionary/C6.txt b/com/agnibho/code/anagram/dictionary/C6.txt new file mode 100644 index 0000000..fc2c053 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C6.txt @@ -0,0 +1,1536 @@ +cabala +cabals +cabana +cabbie +cabers +cabins +Cabiri +cabled +cables +cablet +cabman +cabmen +cabobs +cabocs +cabrie +cabrit +cacaos +cached +caches +cachet +cachou +cackle +cacoon +cactus +caddie +caddis +cadeau +cadees +cadent +cadets +cadged +cadger +cadges +cadies +Cadmus +cadres +caduac +caecal +caecum +Caelum +caesar +cafard +Caffre +cafila +caftan +cagier +cagily +caging +Cagney +cagots +cagoul +cahier +caille +caimac +caiman +caique +cairds +cairns +cajole +cajuns +cakier +caking +Calais +calami +calash +calcar +calced +calces +calcic +Calder +calefy +Calgon +calico +califs +caligo +calima +caliph +calked +calker +calkin +callan +callas +called +caller +callet +callid +callop +callow +Callum +callus +calmed +calmer +calmly +calory +calpac +calpas +calque +caltha +calved +calver +calves +Calvin +calxes +camans +camash +camass +camber +cambia +Camden +camels +cameos +camera +camese +camion +camise +camlet +cammed +camote +camped +camper +cample +camply +campos +campus +camsho +Canaan +ca�ada +canals +canap� +canard +canary +cancan +cancel +cancer +candid +candie +candle +candor +canehs +caners +canful +cangle +cangue +canids +canine +caning +canker +cannae +canned +cannel +canner +Cannes +cannon +cannot +canoed +canoes +canons +canopy +Canova +Cantab +cantal +cantar +canted +canter +canthi +cantle +canton +cantor +cantos +cantus +canuck +canula +Canute +canvas +canyon +capers +capias +caping +capita +caples +caplet +caplin +Capone +capons +capote +capots +capped +capper +capric +caprid +Capris +capsid +captan +captor +capuls +carack +caract +carafe +Caranx +Carapa +caraps +carats +carbon +carboy +carded +carder +cardie +Cardin +cardis +careen +career +car�me +carers +caress +carets +carfax +carfox +carhop +caribe +Carica +caries +carina +caring +carked +Carlie +Carlos +carlot +Carlow +carman +Carmel +carmen +Carnac +carnal +Carnap +carnet +carney +Carnot +carobs +Carole +caroli +carols +caroms +carpal +carped +carpel +carper +carpet +carpus +carrat +carrel +Carrie +carrot +carses +carsey +Carson +cartas +carted +cartel +carter +cartes +carton +Caruso +carved +carvel +carven +carver +carves +casaba +Casals +casbah +cascos +casein +casern +cashaw +cashed +cashes +cashew +casing +casino +casked +casket +Caslon +Caspar +Casper +casque +cassia +Cassie +Cassio +cassis +Casson +casted +caster +castes +castle +castor +Castro +casual +catalo +catchy +catena +caters +catgut +Cathar +Cathay +cation +catkin +catnap +catnep +catnip +catsup +catted +cattle +caucus +caudad +caudal +caudex +caudle +caught +caulds +caules +caulis +caulks +causal +caused +causer +causes +causey +cautel +cauter +Cavafy +cavass +caveat +Cavell +cavels +cavern +cavers +caviar +cavies +cavils +caving +cavity +cavort +cawing +cawker +Cawley +caxons +Caxton +cayman +cayuse +ceased +ceases +cecils +Cecily +cecity +cedarn +cedars +ceders +ceding +Cedric +cedula +Ceefax +ceiled +celebs +celery +celiac +Celina +cellae +cellar +celled +cellos +celoms +Celtic +cembra +cement +cendr� +cenote +censed +censer +censes +censor +census +centai +cental +centas +center +centos +centre +centry +centum +ceorls +cerate +cercal +cercus +cereal +Cereus +cerges +cering +ceriph +cerise +cerite +cerium +cermet +ceroon +cerous +cerris +certes +cerule +ceruse +cervid +cervix +cesium +cessed +cesser +cesses +Cessna +cestos +cestui +cestus +cesura +cesure +cetane +Ceylon +chacks +chacma +chacos +chadar +Chadic +chador +chaeta +chafed +chafer +chafes +chaffs +chaffy +chafts +chagan +cha�n� +chains +chairs +chaise +chakra +chalan +chalet +chalks +chalky +champs +chance +chancy +Chanel +Chaney +change +chanks +chants +chanty +chapel +chapes +chapka +chappy +charas +chards +chared +chares +charet +charge +charka +charks +charms +Charon +charrs +charry +charta +charts +chased +chaser +chases +Chasid +chasms +chasmy +chass� +chaste +chaton +chatta +chatti +chatty +chaunt +chawed +chayas +chazan +cheapo +cheapy +cheats +checks +checky +cheeks +cheeky +cheeps +cheers +cheery +cheese +cheesy +Chekov +chelae +chelas +chemic +chemmy +chenar +chenet +chenix +Cheops +cheque +chequy +Cherie +cherry +cherty +cherub +cherup +Cheryl +chesil +chests +chesty +chetah +cheven +chevet +chevin +ch�vre +chewed +chewer +chewet +chewie +chiack +chiasm +chiaus +chibol +chicer +chicha +chichi +chicks +chicle +chicly +chicon +chided +chider +chides +chiefs +chield +chiels +chigoe +chigre +chikor +childe +chiles +chilis +chilli +chills +chilly +chimbs +chimed +chimer +chimes +chimps +chinar +chinas +chinch +chined +Chinee +chines +chinks +chinky +chinos +chintz +chippy +Chirac +chiral +chirks +chirms +Chiron +chirps +chirpy +chirre +chirrs +chirts +chisel +chital +chitin +chiton +chitty +chives +chivvy +chized +chizes +choana +choccy +chocho +chocko +chocks +chocos +choice +choirs +choked +choker +chokes +chokey +chokos +chokra +chokri +choler +cholic +cholis +chomps +choofs +chooks +chooms +choose +choosy +chopin +choppy +choral +chorda +chords +chorea +choree +chores +choria +choric +chorus +chosen +choses +chotts +chough +chouse +chouts +chowri +chowry +chrism +Christ +chroma +chrome +chromo +chubby +chucks +chuddy +chufas +chuffs +chuffy +chukar +chukka +chukor +chummy +chumps +chunks +chunky +church +churls +churns +churrs +chutes +chyack +chypre +Ciaran +Cibber +cibols +cicada +cicala +cicely +cicero +cicuta +ciders +cidery +cierge +cigars +ciggie +cilice +cilium +cimars +cimier +cinder +cinema +cineol +cinque +cipher +cippus +circar +circle +circus +cirque +cirrus +ciscos +Ciskei +cissus +cisted +cistic +cistus +citals +citers +citess +cither +cities +citify +citing +citole +citric +citrin +citron +citrus +cityfy +civets +civics +civies +civism +clacks +claggy +claims +Claire +clammy +clamor +clamps +Clancy +clangs +clanks +claque +claret +Clarke +claros +clarts +clarty +clasps +classy +clasts +Claude +clause +claver +claves +clavie +clavis +clawed +claxon +clayed +clayey +cleans +clears +cleats +cleave +clech� +clecks +cleeks +Cleese +clefts +clench +clepes +clergy +cleric +clerks +cleuch +clever +cleves +clevis +clewed +clich� +clicks +client +cliffs +cliffy +clifts +clifty +climax +climbs +climes +clinch +clines +clings +clingy +clinic +clinks +clints +clique +cliquy +clitic +clivia +cloaca +cloaks +cloams +cloche +clocks +cloddy +clodly +cloffs +cloggy +clokes +clomps +clonal +cloned +clones +clonic +clonks +clonus +cloops +cloots +cloqu� +closed +closer +closes +closet +clotes +clothe +Clotho +cloths +clotty +clouds +cloudy +Clouet +clough +clours +clouts +cloven +clover +cloves +Clovis +clowns +cloyed +clubby +clucks +clucky +Cluedo +clumps +clumpy +clumsy +clunch +clunks +clunky +Clupea +clusia +clutch +Clutha +clying +clyped +clypes +Cnicus +cnidae +coachy +coacts +coaita +coaled +coaler +coapts +coarbs +coarse +coasts +coated +coatee +coater +Coates +coatis +coaxed +coaxer +coaxes +cobalt +cobbed +cobber +cobble +Cobden +cobias +cobles +cobnut +cobras +cobric +coburg +cobweb +cobzas +coccal +coccid +coccos +coccus +coccyx +Cochin +cocked +cocker +cocket +cockle +cocksy +cocoas +cocoon +codded +codder +coddle +coders +codger +codify +coding +codist +codlin +codons +coedit +coelom +coerce +coeval +coffed +coffee +coffer +coffin +coffle +cogent +cogged +cogger +coggie +coggle +coggly +cogies +Cognac +cogues +cohabs +cohere +cohoes +cohogs +cohorn +cohort +cohune +coifed +coigne +coigns +coiled +coined +coiner +coital +coitus +cojoin +coking +colder +coldly +coleus +coleys +Colima +colins +collar +collet +collie +collop +Colmar +colobi +colons +colony +colors +colory +colour +colter +colugo +column +colure +colzas +comarb +comart +comate +combat +combed +comber +combes +comble +combos +comedo +comedy +comely +comers +comets +comfit +comice +comics +coming +comity +commas +commie +commis +commit +commix +common +commos +commot +comodo +comose +comous +compel +comper +comply +compos +compot +comsat +concha +conche +conchs +conchy +concur +conder +condom +condor +condos +coneys +confab +confer +confit +confix +congas +cong�d +congee +conger +conges +congii +congos +congou +conics +conies +conima +conine +coning +conjee +conked +conker +conned +conner +Connie +Connor +conoid +Conrad +consul +contes +contos +contra +conure +convex +convey +convos +convoy +Conway +cooeed +cooees +cooeys +cooing +cooked +cooker +cookie +cooled +cooler +coolie +coolly +coolth +coombe +coombs +coomed +coonty +cooped +cooper +coopts +cooser +cootie +copeck +copers +copied +copier +copies +coping +copita +copped +copper +coppin +copple +copras +copsed +copses +copter +Coptic +copula +coquet +corals +corban +corbel +corbie +corded +cordon +corers +Corfam +corgis +coring +corium +corked +corker +cormel +cormus +cornea +corned +cornel +corner +cornet +cornua +Cornus +corody +corona +corozo +corpse +corpus +corral +corrie +corsac +corses +corset +corsos +Cortes +cortex +Cortez +Cortot +corv�e +corves +corvet +corvid +corvus +corymb +coryza +cosech +cosets +coshed +cosher +coshes +cosier +cosies +cosily +Cosima +cosine +cosing +cosmea +cosmic +cosmos +cosses +cosset +cossie +costae +costal +costed +coster +costes +costly +costus +coteau +cotise +cottar +cottas +cotted +cotter +cottid +cotton +Cottus +cotwal +cotyle +coucal +couch� +cougar +coughs +coul�e +coulis +counts +county +couped +coupee +couper +coupes +couple +coupon +course +courts +cousin +couter +couthy +coutil +covary +covens +covent +covers +covert +covets +coveys +coving +covins +covyne +cowage +cowals +cowans +coward +cowboy +cowers +cowing +cowish +cowled +Cowley +cowman +cowmen +cowpat +Cowper +cowpox +cowrie +coxing +coyest +coyish +coyote +coypus +cozens +cozier +cozily +cozing +cozzes +Crabbe +crabby +cracks +Cracow +cradle +crafts +crafty +craggy +craigs +craked +crakes +crambo +cramps +crampy +cranch +craned +cranes +crania +Cranko +cranks +cranky +cranny +crants +craped +crapes +crares +crases +crasis +cratch +crated +crater +crates +craton +cratur +cravat +craved +craven +craver +craves +crawls +crawly +crayer +crayon +crazed +crazes +creagh +creaks +creaky +creams +creamy +creant +crease +creasy +create +cr�che +credal +credit +credos +creeds +creeks +creeky +creels +creeps +creepy +creese +creesh +cremor +crenas +crenel +creole +creped +crepes +crepey +crepon +cresol +cressy +crests +Cretan +cretic +cretin +Creuse +crewed +crewel +criant +cribl� +cricks +cricky +criers +crikey +crimbo +Crimea +crimed +crimen +crimes +crimps +crimpy +crinal +crined +crines +cringe +crinum +cripes +Cripps +crises +crisis +crisps +crispy +crissa +crista +criths +critic +croaks +croaky +croche +crocks +crocus +crofts +Cromer +crones +cronet +Cronin +crooks +croons +croppy +crores +Crosby +crosse +crotal +crotch +croton +crouch +croupe +croups +croupy +crouse +cro�te +crouts +crowds +crowed +crowns +crozes +cruces +crucks +cruddy +Cruden +cruder +cruels +cruets +cruise +cruive +crumbs +crumby +crumen +crummy +crumps +crumpy +crunch +crural +cruses +cruset +crusie +Crusoe +crusta +crusts +crusty +crutch +cruxes +Cruyff +crwths +crying +crypto +crypts +ctenes +cubage +Cubans +cubbed +cubebs +cubica +cubing +cubism +cubist +cubits +cuboid +cuckoo +cudden +cuddie +cuddle +cuddly +cudgel +cueing +cueist +cuesta +cuffed +cuffin +cuisse +Culdee +culets +Culham +culled +culler +cullet +cullis +culmed +culmen +cultch +culter +cultic +cultus +culver +cumber +cumecs +cumins +cummer +cummin +cumuli +Cunard +cuneal +cunner +cupels +cupful +cupids +cupman +cupmen +cupola +cuppas +cupped +cupper +cupric +cupule +curacy +curara +curare +curari +curate +curbed +curdle +curers +curfew +curiae +curias +curies +curiet +curing +curios +curium +curled +curler +curlew +curney +curred +currie +cursal +cursed +curser +curses +cursor +cursus +curtal +curter +curtly +curtsy +curule +curved +curves +curvet +Curzon +Cusack +cuscus +cusecs +cushat +cushaw +cushes +cusped +cuspid +cussed +cusser +cusses +Custer +custom +custos +cutcha +cutely +cutest +cutesy +cuteys +cuties +cutler +cutlet +cutter +cuttle +cuttoe +cuv�es +cyanic +cyanin +Cybele +cyborg +cybrid +cycads +cycled +cycler +cycles +cyclic +cyclos +cyclus +cyders +cyeses +cyesis +cygnet +Cygnus +cymars +cymbal +cymoid +cymose +cymous +Cymric +cynics +Cynips +cypher +cyprid +cypris +cyprus +Cyrano +Cyrene +cystic +cystid +cytase +cytisi +cytode +cytoid +cytons +czapka +Czechs diff --git a/com/agnibho/code/anagram/dictionary/C7.txt b/com/agnibho/code/anagram/dictionary/C7.txt new file mode 100644 index 0000000..4f14c8f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C7.txt @@ -0,0 +1,2290 @@ +Caball� +cabaret +cabases +cabbage +cabbagy +cabbala +cabbies +cabined +cabinet +Cabiric +cablets +cabling +caboose +cabries +cabrits +cachets +cachexy +caching +cachous +cacique +cackled +cackler +cackles +cacodyl +cacoepy +cacolet +cacoons +cadaver +Cadbury +caddice +caddied +caddies +caddish +cadeaux +cadelle +cadence +cadency +cadenza +Cadfael +cadgers +cadging +Cadmean +cadmium +cadrans +caducei +Caedmon +caesars +caesium +caestus +caesura +cafards +caffein +caffila +cafilas +caftans +cagiest +cagoule +cagouls +cahiers +cahoots +cailles +caimacs +caimans +Cainite +caiques +Cairene +cairned +caisson +caitiff +Caitlin +cajeput +cajoled +cajoler +cajoles +cajuput +cakiest +cakings +Calabar +calamus +calando +calathi +calcars +calcify +calcine +calcite +calcium +calculi +caldera +caldron +calends +Calgary +Caliban +caliber +calibre +calices +caliche +calicle +calicos +calimas +calipee +caliper +caliphs +caliver +calkers +calking +calkins +callans +callant +callers +calling +callous +callows +Calluna +calmant +calmest +calming +Calmuck +calomel +caloric +calorie +calotte +caloyer +calpack +calpacs +calqued +calques +calthas +caltrap +caltrop +calumba +calumet +calumny +Calvary +calvers +Calvert +calving +calyces +calycle +calypso +calyxes +calzone +calzoni +cama�eu +camaron +camases +cambers +cambial +cambism +cambist +cambium +camboge +Cambrai +cambrel +Cambria +cambric +camelid +camelot +camelry +camerae +cameral +cameras +Cameron +cameses +Camilla +Camille +Camillo +camions +camises +camlets +camogie +Camorra +camotes +campana +Campari +campers +campest +camphor +campier +camping +campion +ca�adas +Canajan +canakin +canap�s +canards +canasta +canbank +cancans +cancels +cancers +Candace +candela +candent +Candice +candida +Candide +candied +candies +candled +candler +candles +candock +candour +canella +Canetti +canfuls +cangled +cangles +cangues +Canidae +canikin +canines +canings +cankers +cankery +cannach +canners +cannery +cannier +cannily +canning +Cannock +cannons +cannula +canonic +canonry +Canopic +Canopus +cantala +cantars +cantata +cantate +cantdog +canteen +canters +canthus +cantico +cantina +canting +cantion +cantled +cantles +cantlet +Cantona +cantons +cantors +cantred +cantref +cantrip +canucks +canulae +canulas +canvass +canyons +canzona +canzone +canzoni +capable +capably +capelet +capelin +Capella +capered +caperer +capital +capitan +Capitol +caplets +caplins +caporal +capoted +capotes +capouch +cappers +capping +caprate +caprice +caprify +caprine +caproic +Capsian +capsids +capsize +capstan +capsule +captain +caption +captive +captors +capture +capuche +capuera +Capulet +carabao +carabid +carabin +Carabus +caracal +Caracas +caracks +caracol +caracul +Caradoc +carafes +caramel +caranna +carauna +caravan +caravel +caraway +carbide +carbies +carbine +carbons +carboys +carcake +carcase +carcass +cardecu +carders +cardiac +cardies +Cardiff +carding +cardoon +carduus +careens +careers +careful +carfare +cargoed +cargoes +carhops +cariama +Cariban +caribes +caribou +carices +carinas +carioca +cariole +carious +caritas +carjack +carking +Carlene +carline +carling +carlish +Carlism +Carlist +carload +carlock +Carlton +Carlyle +carmine +carnage +carnets +carneys +carnied +carnies +carnify +carnose +caroche +caroled +caroler +carolus +Carolyn +caromed +caromel +carotid +carotin +carouse +carpals +carpels +carpers +carpets +carping +carport +carrack +carract +Carrara +carrats +carrect +carrell +carrels +carried +carrier +carries +carrion +Carroll +carrots +carroty +carseys +carsick +cartage +cartels +carters +Cartier +carting +cartons +cartoon +cartway +carvels +carvers +carvery +carvies +carving +casabas +casbahs +cascade +cascara +caseman +casemen +caseous +caserne +caserns +Caserta +cashaws +cashbox +cashews +cashier +cashing +Casimir +casings +casinos +caskets +casking +Caspian +casques +cassata +Cassatt +cassava +cassias +Cassidy +Cassini +cassino +Cassius +cassock +cassone +casters +Castile +casting +castled +castles +castock +castors +castory +castral +casuals +casuist +Cataian +Catalan +catalog +catalos +catalpa +Catania +catapan +catarrh +catasta +catawba +catbird +catboat +catcall +catched +catcher +catches +catchup +catechu +catenae +catenas +cateran +catered +caterer +Catesby +catfish +catguts +Cathari +Cathars +cathead +cathode +cathood +cations +catkins +catling +catmint +catnaps +catneps +catnips +catskin +catsuit +catsups +cattabu +cattalo +cattery +cattier +catties +cattily +catting +cattish +catworm +caudate +caudled +caudles +cauline +caulked +caulker +caulome +causers +causeys +causing +caustic +cauters +cautery +caution +cavalla +cavally +cavalry +caveats +caveman +cavemen +caverns +cavetti +cavetto +caviare +caviars +caviled +caviler +cavings +cavorts +cawings +cawkers +cayenne +caymans +cayuses +cazique +ceasing +Cebidae +Cecilia +cecitis +cedared +cedilla +cedrate +Cedrela +cedrine +cedulas +ceilidh +ceiling +celadon +Celebes +celesta +celeste +cellars +Cellini +cellist +Cellnet +cellose +cellule +Celsius +cembali +cembalo +cembras +cements +cenacle +cenotes +censers +censing +censors +censual +censure +centage +centals +centare +centaur +centavo +centers +centile +centime +centimo +centner +central +centred +centres +centric +centrum +centums +century +cepheid +Cepheus +ceramal +ceramic +cerasin +cerated +cerates +cereals +cerebra +cereous +ceresin +ceriphs +cermets +cerrial +certain +certify +cerumen +cervine +cessing +cession +cesspit +cestode +cestoid +cestuis +cesural +cesuras +Cetacea +ceviche +Cezanne +Chablis +chabouk +Chabrol +chacked +chacmas +chadars +chaddar +chaddor +Chadian +chadors +chaetae +chafers +chaffed +chaffer +chafing +Chagall +chagans +chagrin +chained +chaired +chaises +chakras +chalans +chalaza +chalcid +Chaldea +Chaldee +chalder +chalets +chalice +chalked +challah +challan +challie +challis +chalone +chalutz +chamade +chamber +chambr� +chamfer +chamise +chamiso +chamlet +chamois +champac +champak +champed +chanced +chancel +chancer +chances +chancey +chancre +Chander +Chandra +changed +changer +changes +channel +channer +chanoyu +chanson +Chantal +chanted +chanter +chantey +chantie +chantor +chantry +chaotic +chapati +chapeau +chapels +chapess +chapkas +chaplet +Chaplin +chapman +chapmen +chappal +chapped +chappie +chapter +charade +Chardin +charets +charged +charger +charges +charier +charily +charing +chariot +charism +charity +charkas +charked +charkha +Charles +Charley +Charlie +charmed +charmer +charnel +charpie +charpoy +charqui +charred +chartas +charted +charter +chasers +chasing +chasmal +chasmed +chasmic +chassed +chass�s +Chassid +chassis +chasten +chaster +ch�teau +Chatham +chatons +chattas +chatted +chattel +chatter +chattis +Chaucer +chaufer +chaunts +chauvin +chawing +chayote +chazans +cheapen +cheaper +cheapie +cheaply +cheated +cheater +Chechen +ch�chia +checked +checker +Cheddar +cheeked +cheeped +cheeper +cheered +cheerer +cheerio +cheerly +cheesed +cheeses +cheetah +Cheiron +Chekhov +chekist +chelate +cheloid +chelone +Chelsea +Chelsey +chemics +chemise +chemism +chemist +chenars +chenets +Chengdu +chequer +cheques +cherish +cheroot +cherubs +cherups +chervil +chesils +chessel +chesses +chested +Chester +Chesvan +chetahs +chetnik +chevens +chevied +chevies +chevins +Cheviot +chevron +chewers +chewier +chewing +chewink +chiacks +Chianti +chiasma +chiasmi +chiasms +chibols +chibouk +Chicago +chicana +chicane +chicano +chicest +chichas +chiches +chichis +chicken +chicles +chicory +chidden +chiding +chiefer +chiefly +chiefry +chields +chiffon +chigger +chignon +chigoes +chigres +chikara +chikhor +chikors +childed +childly +Chilean +chiliad +Chilian +chilies +chilled +chiller +chillis +Chillon +chillum +chimera +chimere +chimers +chiming +chimley +chimney +chinars +Chindit +Chinese +chining +chinked +chinook +chintzy +chinwag +chipped +chipper +chippie +chipses +Chirico +chirked +chirmed +chirped +chirper +chirred +chirres +chirrup +chirted +chisels +chitals +chitons +chitter +chivied +chivies +chivved +chizing +chizzed +chizzes +Chladni +chlamys +chloral +chloric +chlorin +choanae +chobdar +chochos +chocked +chocker +chockos +choctaw +choenix +Chogyal +choicer +choices +chokers +chokeys +chokier +chokies +choking +chokras +chokris +cholent +cholera +choline +choltry +chomped +Chomsky +chondre +chondri +choofed +chookie +chooser +chooses +choosey +chopine +chopins +chopped +chopper +chorale +chorals +chordae +chordal +chordee +chorees +choreic +choreus +chorial +chorine +chorion +chorism +chorist +chorizo +Chorley +choroid +chortle +choughs +choused +chouses +chowder +chowris +chrisms +chrisom +Christy +chromas +chromel +chromes +chromic +chromos +chronic +chronon +chubbed +chucked +chuckie +chuckle +chuddah +chuddar +chuffed +chugged +chukars +chukkas +chukker +chukors +chumley +chummed +chunder +chunked +Chunnel +chunter +chupati +chuppah +churchy +churned +churner +churred +churrus +chutist +chutney +chyacks +chylify +chymify +chymous +chypres +ciboria +cicadas +cicalas +cichlid +cicutas +cidaris +cierges +ciggies +ciliary +Ciliata +ciliate +cilices +Cilicia +cimelia +cimices +cimiers +cinched +cinches +cinders +cindery +cineast +cinemas +cineole +cinerea +cinerin +cingula +cinques +Cinzano +ciphers +cipolin +Circaea +circars +Circean +circled +circler +circles +circlet +circlip +circuit +circusy +cirques +cirrate +cirrose +cirrous +cirsoid +ciscoes +cissies +cissoid +cistern +cistron +citable +citadel +cithara +cithern +cithers +citizen +citoles +citrate +citrine +Citroen +citrons +citrous +cittern +civilly +civvies +clabber +clachan +clacked +clacker +Clacton +cladded +cladder +cladism +cladist +cladode +clagged +claimed +claimer +clamant +clamber +clammed +clamour +clamped +clamper +clanged +clanger +clangor +clanked +Clapham +clapnet +clapped +clapper +Clapton +claques +clarain +clarets +Clarice +claries +clarify +clarini +clarino +clarion +clarity +clarkia +claroes +clarted +clashed +clasher +clashes +clasped +clasper +classed +classes +classic +classis +clastic +clatter +claucht +Claudia +Claudio +claught +clausal +clauses +clavate +clavers +clavier +clavies +clawing +claxons +clayier +claying +clayish +claypan +cleaned +cleaner +cleanly +cleanse +cleared +clearer +clearly +cleated +cleaved +cleaver +cleaves +clecked +cleeked +Clemens +clement +clemmed +cleping +clerics +clerisy +clerked +clerkly +cleruch +cleuchs +clewing +clich�d +clich�s +clicked +clicker +clicket +clients +cliffed +clifted +climate +climbed +climber +clinged +clinger +clinics +clinked +clinker +Clinton +clipped +clipper +clippie +cliques +cliquey +clitter +clivers +clivias +cloacae +cloacal +cloaked +clobber +cloches +clocked +clocker +clodded +clogged +clogger +cloison +clomped +cloning +clonked +Clonmel +Clootie +clopped +closely +closers +closest +closets +closing +closure +clotbur +clothed +clothes +clotted +clotter +cloture +clouded +cloughs +cloured +clouted +clouter +clovers +clovery +clowder +clowned +cloying +clubbed +clubber +clubman +clubmen +clucked +cludgie +clueing +clumber +clumped +clumper +Cluniac +clunked +clunker +clupeid +clusias +cluster +clutter +clypeal +clypeus +clyping +clyster +cnemial +coached +coachee +coacher +coaches +coacted +coaitas +coalers +coalier +coaling +coalise +Coalite +coalize +coalman +coalmen +coaming +coapted +coarsen +coarser +coastal +coasted +coaster +coatees +coaters +coating +coaxers +coaxial +coaxing +cobbers +Cobbett +cobbier +cobbing +cobbled +cobbler +cobbles +Coblenz +cobloaf +cobnuts +coburgs +cobwebs +cocaine +coccids +coccoid +cochlea +cockade +cockers +cockets +cockeye +cockier +cockily +cocking +cockled +cockles +cockney +cockpit +cockshy +coconut +cocoons +cocopan +cocotte +Cocteau +coctile +coction +codding +coddled +coddles +codeine +codetta +codfish +codgers +codices +codicil +codilla +codille +codists +codling +codlins +coedits +coehorn +coeliac +coeloms +coequal +coerced +coercer +coerces +Coetzee +coevals +coffees +coffers +coffing +coffins +coffles +coffret +cogence +cogency +cogener +coggers +coggies +cogging +coggled +coggles +cognate +cognise +cognize +cohabit +cohered +coherer +coheres +cohibit +cohorns +cohorts +cohunes +coiffed +coifing +coigned +coignes +coiling +coinage +coiners +coining +coition +cojones +Colbert +coldest +coldish +Colditz +Coleman +Colette +colibri +colicky +colitis +collage +collard +collars +collate +collect +colleen +college +collets +collide +collied +collier +collies +colling +Collins +colloid +collops +collude +colobid +colobus +Cologne +Colombo +colonel +colones +colonic +colored +colossi +colours +coloury +colters +coltish +coluber +colugos +Columba +Columbo +columel +columns +colures +comarbs +combats +combers +combine +combing +combust +Comecon +comedic +comedos +cometic +comfier +comfits +comfort +comfrey +comical +comices +comings +comital +comitia +command +commend +comment +comm�re +commies +commits +commode +commodo +commons +commote +commots +commove +commune +commute +Comorin +Comoros +compact +company +compare +compart +compass +compeer +compels +comp�re +compers +compete +compile +comping +complex +complin +complot +compon� +compony +comport +compose +compost +compote +compots +compter +Compton +compute +comrade +Comtian +Comtism +Comtist +comuses +conacre +Conakry +conaria +conatus +concave +conceal +concede +concedo +conceit +concent +concept +concern +concert +conchae +conchal +conchas +conched +conches +conchie +concise +concoct +concord +concrew +concupy +concurs +concuss +condemn +conders +condign +condole +condoms +condone +condors +conduce +conduct +conduit +condyle +confabs +confect +confers +confess +confest +confide +confine +confirm +conflux +conform +confuse +confute +congaed +congeal +congeed +congees +congers +congest +congius +congous +congree +congrue +conical +conidia +conifer +coniine +conject +conjeed +conjees +conjoin +conjure +conjury +conkers +conkies +conking +connate +connect +conners +Connery +conning +connive +Connors +connote +conoids +conquer +conseil +consent +Consett +consign +consist +console +consols +consort +consuls +consult +consume +contact +contain +conteck +contemn +contend +content +contest +context +contort +contour +contras +contrat +control +contuse +convene +convent +convert +conveys +convict +convive +convoke +convoys +cooeyed +cooings +cookers +cookery +cookies +cooking +cookout +Cookson +coolant +coolers +coolest +coolies +cooling +coolish +coombes +cooming +coondog +coontie +coopers +coopery +cooping +coopted +coosers +cooties +copaiba +copaiva +copecks +copepod +copered +copiers +copilot +copings +copious +copitas +Copland +coppers +coppery +coppice +coppies +copping +coppins +Coppola +copshop +copsing +copters +copular +copulas +copycat +copying +copyism +copyist +coquets +coquina +coquito +coracle +coralla +coranto +corbans +corbeau +corbeil +corbels +Corbett +corbies +corcass +cordage +cordate +cordial +cording +cordite +c�rdoba +cordons +Cordova +corella +Corelli +Corfiot +Corinna +Corinne +Corinth +corious +coriums +corkage +corkers +corkier +corking +cormels +cormous +cornage +corneal +corneas +cornels +corners +cornets +cornett +cornfly +cornice +cornier +corning +Cornish +cornist +cornrow +cornual +cornute +cornuto +corolla +coronae +coronal +coronas +coroner +coronet +coronis +corozos +corpora +corpses +corrade +corrals +correct +Corr�ze +corrida +corries +corrode +corrody +corrupt +corsacs +corsage +corsair +corsets +Corsica +corslet +corsned +cort�ge +cortile +cortili +Corunna +corv�es +corvets +corvids +corvine +Corydon +Corylus +corymbs +Corypha +coryzas +cosechs +Cosenza +coshers +coshery +coshing +cosiest +cosines +cosmeas +cosmism +cosmist +Cossack +cossets +cossies +costals +costard +costate +costean +costers +costing +costive +Costner +costrel +costume +coteaux +coterie +cothurn +cotinga +cotised +cotises +cotland +cottage +cottars +Cottbus +cotters +cottier +cottise +cottoid +cottons +cottony +cotwals +cotylae +cotyles +coucals +couched +couchee +couches +Cou�ism +Cou�ist +cougars +coughed +cougher +couguar +coul�es +couloir +coulomb +coulter +council +counsel +counted +counter +country +coupees +coupers +couping +coupled +coupler +couples +couplet +coupons +coupure +courage +courant +Courbet +courier +courlan +coursed +courser +courses +courted +courtly +cousins +couters +couther +couthie +coutils +couture +couvade +couvert +covelet +covents +covered +coverer +coverts +coveted +covings +covynes +cowages +cowards +cowbane +cowbell +cowbird +cowboys +Cowdrey +cowered +cowfish +cowgirl +cowhage +cowhand +cowheel +cowherb +cowherd +cowhide +cowitch +cowlick +cowling +cowpats +cowpoke +cowries +cowshed +cowslip +coxcomb +coxless +coyness +coyotes +cozened +cozener +coziest +crabbed +crabber +cracked +cracker +crackle +crackly +crackup +cradled +cradles +crafted +cragged +craking +crammed +crammer +cramped +crampet +crampit +crampon +cranage +cranial +craning +cranium +cranked +cranker +crankle +Cranmer +crannog +crapaud +craping +crashed +crashes +crasser +crassly +Crassus +craters +crating +cratons +craturs +craunch +cravats +cravens +cravers +craving +crawled +crawler +Crawley +crayers +crayons +crazier +crazies +crazily +crazing +creaghs +creaked +creamed +creamer +creance +creased +creaser +creases +created +creates +creatic +creatin +creator +cr�ches +credent +credits +creedal +creeing +creeper +creepie +creesed +creeses +creeshy +cremate +cremona +cremors +cremsin +crenate +crenels +creoles +creosol +creping +cresses +cresset +crested +creston +Cretans +cretics +cretins +cretism +crevice +crewels +crewing +crewman +crewmen +cribbed +cribber +cribble +cribl�e +cricked +cricket +crickey +cricoid +crikeys +Crimean +crimina +crimine +criming +crimmer +crimped +crimper +crimple +crimson +crinate +cringed +cringer +cringes +cringle +crining +crinite +crinkle +crinkly +crinoid +crinose +crinums +criollo +Crippen +cripple +crisped +crisper +crispin +crisply +crissum +cristae +cristas +critics +critter +crittur +croaked +croaker +Croatia +crocein +croches +crochet +crocked +crocket +Croesus +crofter +cromack +crombie +cronies +crooked +Crookes +crooned +crooner +cropful +cropped +cropper +croquet +croquis +crosier +crossed +crosser +crosses +crossly +crotala +crotals +crotons +crottle +crouped +crouper +croupes +croupon +cro�tes +cro�ton +crowded +crowder +crowdie +crowing +crowned +crowner +crownet +Croydon +crozier +crubeen +crucial +crucian +crucify +crudely +crudest +crudity +crueler +cruelly +cruelty +Cruft's +cruised +cruiser +cruises +cruisie +cruives +cruller +crumbed +crumble +crumbly +crumens +crumpet +crumple +crunchy +crunkle +cruores +crupper +crusade +crusado +crusets +crushed +crusher +crushes +crusian +crusies +crustae +crustal +crusted +crustie +cruzado +cryings +cryogen +cryonic +cryptal +cryptic +crypton +cryptos +crystal +cs�rd�s +ctenoid +cubages +cubbies +cubbing +cubbish +cubhood +cubical +cubicle +cubists +cubital +cubitus +cubless +cuboids +cuckold +cuckoos +cudbear +cuddies +cuddled +cuddles +cudgels +cudweed +cueists +cuestas +cuffing +cuffins +cuirass +cuishes +cuisine +cuisses +cuittle +culches +culchie +culices +culicid +cullers +cullets +cullied +cullies +culling +cullion +culmens +culming +culprit +cultish +cultism +cultist +culture +culvers +culvert +cumarin +cumbent +cumbers +Cumbria +cummers +cummins +cumquat +cumshaw +cumulus +cuneate +cunette +cunners +cunning +cupcake +cupeled +cupfuls +cupgall +cuphead +cupolar +cupolas +cuppers +cupping +cuprite +cuprous +cupular +cupules +curable +cura�ao +cura�oa +curates +curator +curbing +curches +curcuma +curdier +curdled +curdles +curette +curfews +curiosa +curious +curlers +curlews +curlier +curling +currach +curragh +currant +current +curried +currier +curries +curring +currish +cursers +cursing +cursive +cursors +cursory +curtail +curtain +curtals +curtana +curtate +curtest +curtesy +curtsey +curvate +curvets +curvier +curving +curvity +cushats +cushaws +cushier +Cushing +cushion +Cushite +cuspate +cussers +cussing +custard +custode +custody +customs +custrel +cutaway +cutback +cutches +cuticle +cutikin +cutises +cutlass +cutlers +cutlery +cutlets +cutline +cutling +cutters +cutties +cutting +cuttles +cuttoes +cutwork +cutworm +cuvette +Cwmbran +cyanate +cyanide +cyanine +cyanise +cyanite +cyanize +Cyathea +cyathus +cyborgs +cybrids +cycling +cyclist +cycloid +cyclone +cyclops +cygnets +cylices +cymbalo +cymbals +cynical +Cynthia +Cyperus +cyphers +cypress +cyprian +cyprids +cyprine +Cypriot +cypsela +cystids +cystine +cystoid +cytisus +cytodes +czapkas +czardas +czardom +czarina +czarism +czarist +Czechic diff --git a/com/agnibho/code/anagram/dictionary/C8.txt b/com/agnibho/code/anagram/dictionary/C8.txt new file mode 100644 index 0000000..1000042 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C8.txt @@ -0,0 +1,2731 @@ +caatinga +cabalism +cabalist +caballed +caballer +cabarets +cabbages +cabernet +cabinets +cabining +Cabirian +cableway +cablings +caboceer +caboched +cabochon +caboodle +cabooses +caboshed +cabotage +cabretta +cabriole +cachalot +cachexia +cacholot +cachucha +caciques +cacklers +cackling +cacodoxy +cacolets +cacology +cacomixl +cactuses +cadastre +cadavers +caddices +caddises +caddying +cadelles +cadenced +cadences +cadenzas +Cadillac +caducean +caduceus +caducity +caducous +caecitis +Caerleon +Caesarea +caesious +caesurae +caesural +caesuras +caffeine +caffeism +caffilas +cagebird +cageling +cagework +caginess +Cagliari +cagoules +cagyness +caimacam +caissons +caitiffs +cajolers +cajolery +cajoling +cakewalk +calabash +Calabria +caladium +calamari +calamary +calamine +calamint +calamite +calamity +calanthe +calashes +calathea +calathus +calcanea +calcanei +calcaria +calceate +calcific +calcined +calcines +calcrete +calcspar +calcular +calculus +Calcutta +caldaria +calderas +caldrons +Caldwell +calefied +calefies +calendar +calender +calendry +calfless +calfskin +calibers +calibred +calibres +calicles +calicoes +calidity +califont +Caligula +calipash +calipees +calipers +caliphal +calisaya +Calixtin +callable +callants +callings +Calliope +calliper +Callisto +Calloway +callower +calluses +calmants +calmness +calories +calorist +calottes +calotype +caloyers +calpacks +calquing +calthrop +caltraps +caltrops +calumbas +calumets +calutron +Calvados +calvaria +calvered +calycine +calycled +calycles +calycoid +calycule +calypsos +calyptra +calzones +cama�eux +Camargue +camarons +camashes +camasses +cambered +cambisms +cambists +cambiums +Cambodia +camboges +cambrels +Cambrian +cameleer +cameleon +cameline +camelish +camellia +cameloid +Cameroon +Cameroun +camisade +camisado +camisard +camisole +camomile +campagna +campaign +campanas +Campbell +Campeche +camphane +camphene +camphine +camphire +camphors +campiest +Campinas +campions +campness +Campodea +camporee +campsite +campuses +camshaft +camstane +camstone +Canadian +canaigre +canaille +canakins +canalise +canalize +Canarese +canaried +canaries +canastas +canaster +canbanks +Canberra +canceler +cancelli +cancrine +cancroid +candelas +candidal +candidas +candidly +candlers +candling +candocks +candying +canephor +canfield +cangling +Canicula +canikins +caninity +canister +canities +cankered +cannabic +cannabin +cannabis +cannachs +cannibal +canniest +cannikin +cannoned +cannonry +cannulae +cannular +cannulas +canoeing +canoeist +canoness +canonise +canonist +canonize +canoodle +canopied +canopies +canorous +canstick +cantatas +cantdogs +canteens +cantered +canthari +canthook +canticle +canticos +canticoy +canticum +cantinas +cantings +cantions +cantlets +cantling +cantonal +cantoned +cantoris +cantrail +cantreds +cantrefs +cantrips +canvased +canvases +canzonas +canzonet +capabler +capacity +capelets +capeline +capelins +capellet +caperers +capering +capeskin +Capetian +capework +capiases +capitals +capitani +capitano +capitans +capitate +capitula +capoeira +caponier +caponise +caponize +caporals +capoting +Capparis +cappings +caprates +capricci +caprices +caprifig +capriole +caproate +caprylic +capsicum +capsizal +capsized +capsizes +capstans +capstone +capsular +capsules +captains +captions +captious +captives +captured +capturer +captures +capuches +capuchin +Capulets +capybara +carabaos +carabids +carabine +caracals +caracara +caracole +caracols +caraculs +caramba! +caramels +carangid +carapace +caravans +caravels +caraways +carbaryl +carbides +carbines +carbolic +carbonic +carbonyl +carboxyl +carburet +carcajou +carcakes +carcanet +carcased +carcases +carceral +cardamom +cardamon +cardamum +cardiacs +cardigan +cardinal +cardioid +carditis +cardoons +careened +careered +carefree +careless +caressed +caresses +caretake +caretook +careworn +carfares +carfaxes +carfoxes +cargeese +cargoing +cargoose +cariacou +cariamas +caribous +carillon +carinate +cariocas +carioles +carjacks +carjacou +carlines +carlings +Carlisle +Carlsbad +carnages +carnally +Carnatic +carnauba +Carnegie +carneous +carneyed +carnifex +carnival +carnying +caroches +Carolean +carolers +Carolina +Caroline +caroling +carolled +caroller +caromels +caroming +carotene +carousal +caroused +carousel +carouser +carouses +carpeted +carpings +carports +carpuses +Carracci +carracks +carracts +carraway +carrects +carrells +Carreras +carriage +carriers +carriole +carrions +carritch +carryall +carrycot +carrying +cartages +Carthage +Cartland +cartload +cartoons +cartouch +cartways +carucage +carucate +caruncle +carvings +caryatic +caryatid +Caryocar +Casanova +Casaubon +cascabel +cascaded +cascades +cascaras +caschrom +casebook +casemate +casement +casernes +cashback +cashcard +cashiers +cashless +cashmere +casimere +cassatas +cassavas +cassette +cassinos +cassises +cassocks +cassones +Castanea +castanet +castaway +Castilla +castings +castling +castocks +castrate +castrati +castrato +casually +casualty +casuists +catacomb +catalase +cataloes +catalogs +catalpas +catalyse +catalyst +catalyze +catamite +catapans +catapult +cataract +catarrhs +catastas +catawbas +catbirds +catboats +catcalls +catchers +catchfly +catchier +catching +catchups +catechol +category +catenane +catenary +catenate +caterans +caterers +cateress +catering +Cathayan +catheads +cathedra +catheter +cathetus +cathexes +cathexis +cathisma +cathodal +cathodes +cathodic +catholic +cathouse +Catiline +catlings +catmints +Catonian +Catriona +catskins +catsuits +cattabus +cattalos +cattiest +cattleya +Catullus +catworks +catworms +Caucasia +Caucasus +caucused +caucuses +caudally +caudated +caudexes +caudices +caudicle +caudillo +caudling +cauldron +caulicle +caulkers +caulking +caulomes +causally +causerie +causeway +caustics +cautions +cautious +cavalier +cavallas +cavasses +cavatina +cavefish +caverned +cavesson +caviares +cavicorn +cavilers +caviling +cavilled +caviller +cavitate +cavitied +cavities +cavorted +cayenned +cayennes +caziques +ceasings +Cecropia +cedillas +cedrates +ceilidhs +ceilings +ceinture +celadons +celeriac +celeries +celerity +celestas +celestes +celibacy +celibate +cellared +cellarer +cellaret +cellists +cellular +cellules +cembalos +cemented +cementer +cementum +cemetery +cenacles +cenobite +cenotaph +Cenozoic +censored +censured +censurer +censures +censuses +centages +centares +centaurs +centaury +centavos +centered +centeses +centesis +centiare +centimes +centners +centoist +centones +centring +centrism +centrist +centrode +centroid +centrums +centuple +cephalad +cephalic +cephalin +cepheids +ceramals +ceramics +ceramist +cerastes +ceratoid +Cerberus +cercaria +cercuses +cerebral +cerebric +cerebrum +cerement +ceremony +Cerenkov +ceresine +cernuous +cerotype +cerrises +cerulean +cerulein +cerusite +cervelat +cervical +cervices +cervixes +Cesarean +cessions +cesspits +cesspool +cestodes +cestoids +cestuses +cetacean +ceterach +cetology +C�vennes +chabouks +Chabrier +chacking +chaconne +Chadband +chaddars +chaddors +Chadians +Chadwick +chaffers +chaffery +chaffier +chaffing +chaffron +chagrins +chaining +chainlet +chainman +chainmen +chainsaw +chairing +chairman +chairmen +chalazae +chalazas +chalcids +Chaldaea +Chaldaic +Chaldean +chalders +chaldron +chaliced +chalices +chalkier +chalking +chalkpit +challans +chalones +chalonic +chamades +chambers +Chamb�ry +chambray +chamfers +chamfron +chamisal +chamises +chamisos +Chamonix +champacs +champaks +champart +champers +champing +champion +chancels +chancers +Chancery +chancier +chancing +chancres +chandler +changers +changing +Changsha +channels +chanoyus +chansons +chantage +chanters +chanteys +chanties +chanting +chantors +Chanukah +chaology +chapatis +chapatti +chapbook +chapeaus +chapeaux +chapelry +chaperon +chapiter +chaplain +chapless +chaplets +Chappell +chappess +chappies +chapping +chapters +chaptrel +characid +characin +charades +charango +charcoal +Charente +chargers +charging +chariest +chariots +charisma +Charites +charkhas +charking +charlady +Charlene +charlock +Charlton +charmers +charmful +Charmian +charming +charneco +charoset +charpies +charpoys +charrier +charring +charters +charting +chartism +chartist +Chartres +Chasidic +chasseur +chastely +chastens +chastest +chastise +chastity +chasuble +ch�teaux +chatline +chattels +chatters +chattier +chattily +chatting +chaufers +chauffer +chaunted +chaunter +chauntry +chausses +chauvins +chawdron +chayotes +chazanim +cheapens +cheapest +cheapies +cheaters +cheatery +cheating +chechako +Chechens +ch�chias +Chechnya +checkers +checking +checkout +cheddite +cheekier +cheekily +cheeking +cheepers +cheeping +cheerers +cheerful +cheerier +cheerily +cheering +cheerios +cheerses +cheesier +cheesing +cheetahs +cheewink +chekists +chelated +chelates +chelator +Chelifer +cheliped +Chellean +cheloids +chelones +Chelonia +chemical +chemises +chemists +Chemnitz +chemurgy +chenille +chenixes +chenopod +Chepstow +chequers +Cherkess +Cherokee +cheroots +cherries +chertier +Chertsey +cherubic +cherubim +cherubin +cheruped +chervils +Cherwell +Cheshire +Cheshunt +Cheshvan +chessels +chessman +chessmen +chestful +chestier +chestnut +chetniks +chevalet +cheverel +cheveril +cheveron +cheville +Cheviots +chevrons +chevrony +chevying +chewable +chewiest +chewinks +Cheyenne +chiacked +chiasmas +chiasmus +chiastic +chiaused +chiauses +chibouks +chicanas +chicaned +chicaner +chicanes +chicanos +chiccory +Chichewa +chickens +chidings +chiefdom +chiefery +chiefess +chiefest +chiffons +chiggers +chignons +Chigwell +chikaras +chikhors +childbed +Childers +childing +childish +children +Chileans +chiliads +Chilians +chiliasm +chiliast +chillada +chillest +chillier +chillies +chillily +chilling +chillums +chilopod +Chiltern +chimaera +chimeras +chimeres +chimeric +chimleys +chimneys +Chinaman +Chinamen +chinampa +chinches +Chindits +chinkara +chinkier +chinking +chinless +chinooks +chintzes +chinwags +chipmuck +chipmunk +Chippewa +chippier +chippies +chipping +chiragra +chirking +chirming +chirpers +chirpier +chirpily +chirping +chirring +chirrups +chirrupy +chirting +chiseled +chitchat +chitters +chitties +chivalry +chivaree +chivvied +chivvies +chivving +chivying +chizzing +chloasma +chlorate +chlordan +chloride +chlorine +chlorite +chlorous +chobdars +chocking +choctaws +choicely +choicest +choirboy +choirman +choirmen +chokidar +chokiest +cholemia +choleric +choliamb +chomping +chondral +chondres +chondrin +chondrus +choofing +chookies +choosers +choosier +choosing +chopines +choppers +choppier +choppily +chopping +choragic +choragus +chorales +chorally +Chordata +chordate +chording +choregic +choregus +choriamb +chorines +chorioid +chorisis +chorists +chorizos +choroids +chortled +chortler +chortles +chorused +choruses +choultry +chousing +chowders +chowries +chrismal +chrisoms +Chrissie +christen +Christie +Christly +christom +chromate +chromene +chromite +chromium +chronics +chronons +Chrysler +Chrystal +chthonic +chubbier +chuckies +chucking +chuckled +chuckles +chuddahs +chuddars +chuffier +chugging +chukkers +chumleys +chummage +chummier +chummies +chummily +chumming +chumping +chunders +chunkier +chunking +chunters +chupatis +chupatti +churched +churches +churchly +churinga +churlish +churners +churning +churring +chutists +chutneys +chutzpah +chyacked +chyluria +ciabatta +ciabatte +cibation +ciborium +cicatrix +cicelies +cicerone +ciceroni +cichlids +cichloid +cicinnus +cicisbei +cicisbeo +ciderkin +cilantro +ciliated +ciliates +Cimarosa +cimbalom +ciminite +cimolite +cinching +Cinchona +cincture +cineaste +cineasts +cinefilm +cineplex +Cinerama +cinerary +cinereal +cinerins +cingulum +cinnabar +cinnamic +cinnamon +cinquain +ciphered +cipolins +Circinus +circiter +circlers +circlets +circling +circlips +circuits +circuity +circular +circuses +circussy +cirriped +ciseleur +ciselure +cislunar +cissoids +cisterna +cisterns +cistrons +cistuses +cistvaen +citadels +citation +citatory +citeable +citesses +citharas +citherns +citified +citifies +citizens +citrange +citrates +citreous +citrines +citruses +citterns +cityfied +cityfies +civilian +civilise +civilist +civility +civilize +clabbers +clachans +clackers +clacking +cladders +cladding +cladists +cladodes +clagging +claimant +claimers +claiming +clamancy +clambake +clambers +clammier +clammily +clamming +clamours +clampers +clamping +clangbox +clangers +clanging +clangors +clangour +clanking +clannish +clanship +clansman +clansmen +clapnets +clappers +clapping +claptrap +claqueur +clarence +clareted +Clarinda +clarinet +clarinos +clarions +Clarissa +clarkias +clarsach +clarting +clashers +clashing +claspers +clasping +classics +classier +classify +classing +classist +classman +classmen +clatters +clattery +clauchts +Claudian +Claudine +Claudius +claughts +Clausius +claustra +clausula +clavated +clavecin +clavered +clavicle +claviers +claviger +clawback +clawless +clayiest +claymore +claypans +cleaners +cleanest +cleaning +cleansed +cleanser +cleanses +clearage +clearers +clearest +clearing +clearway +cleating +cleavage +cleavers +cleaving +clecking +cleeking +cleidoic +clematis +clemency +clemming +clenched +clenches +clergies +clerical +clerihew +clerkdom +clerkess +clerking +clerkish +cleruchs +cleruchy +cleveite +cleverer +cleverly +clevises +clich�ed +clickers +clickets +clicking +cliental +cliffier +Clifford +climatal +climates +climatic +climaxed +climaxes +climbers +climbing +clinamen +clinched +clincher +clinches +clingers +clingier +clinging +clinical +clinique +clinkers +clinking +clippers +clippies +clipping +cliquier +cliquish +cliquism +clitella +clithral +clitoral +clitoris +clitters +Cliveden +cloaking +clobbers +clochard +clockers +clocking +cloddier +clodding +cloddish +clodpate +clodpole +clodpoll +cloggers +cloggier +clogging +cloisons +cloister +clomping +clonally +clonking +clonuses +clopping +closeted +closings +closured +closures +clotburs +clotebur +clothier +clothing +clotters +clotting +clotured +clotures +cloudage +cloudier +cloudily +clouding +cloudlet +clouring +Clouseau +clouters +clouting +Clovelly +clovered +clowders +clownery +clowning +clownish +cloyless +cloysome +clubable +clubbing +clubbish +clubbism +clubbist +clubland +clubroom +clubroot +clucking +cludgies +clueless +clumbers +clumpier +clumping +clumsier +clumsily +clunches +clunkers +clunkier +clunking +clupeids +clupeoid +clusters +clustery +clutched +clutches +clutters +clypeate +clysters +coachdog +coachees +coachers +coachies +coaching +coachman +coachmen +coacting +coaction +coactive +coagulum +Coahuila +coalball +coalesce +coalfish +coalised +coalises +coalized +coalizes +Coalport +coamings +coapting +coarsely +coarsens +coarsest +coarsish +coasters +coasting +coatings +coatless +coatrack +coattail +cobaltic +cobbiest +cobblers +cobblery +cobbling +cobwebby +Cocaigne +Coccidae +coccidia +Cocculus +coccyges +cochleae +cochlear +cochleas +cockades +cockatoo +Cockayne +cockbird +cockboat +cockerel +cockeyed +cockeyes +cockiest +cockling +cockloft +cockneys +cocknify +cockpits +cockshot +cockshut +cockspur +cocksure +cocktail +cocoanut +coconuts +cocooned +cocopans +cocoplum +cocottes +coctions +coddling +codebook +codettas +codeword +codicils +codified +codifier +codifies +codillas +codilles +codlings +codomain +coedited +coeditor +coehorns +coelomic +coenobia +coenzyme +coequals +coercers +coercing +coercion +coercive +coevally +cofactor +coffered +coffined +coffrets +cogeners +cogently +coggling +cogitate +cognates +cognised +cognises +cognized +cognizes +cognomen +cognovit +cohabits +coherent +coherers +cohering +cohesion +cohesive +cohibits +cohobate +coiffeur +coiffing +coiffure +coigning +coinages +coincide +coinings +coistrel +coistril +coituses +cokernut +colander +colchica +coldness +coldslaw +coleuses +colibris +coliform +coliseum +collagen +collages +collapse +collards +collared +collated +collates +collator +collects +colleens +colleger +colleges +collegia +collided +collider +collides +colliers +colliery +collings +collogue +colloids +colloque +colloquy +colluded +colluder +colludes +collying +collyria +coloboma +Colombia +colonels +colonial +colonies +colonise +colonist +colonize +Colonsay +colophon +Colorado +colorant +coloreds +colorful +coloring +colorist +colorize +colorman +colormen +colossal +colossus +colotomy +coloured +colourer +Coltrane +colubers +colubrid +Columban +Columbia +Columbic +Columbus +columels +columnal +columnar +columned +Comanche +Comaneci +comatose +combated +combined +combiner +combines +combings +combless +combusts +comedian +comedies +comedown +comelier +cometary +comether +comfiest +comforts +comfreys +commando +commands +commence +commends +comments +commerce +comm�res +commerge +commixed +commixes +commodes +commoner +commoney +commonly +commotes +commoved +commoves +communal +communed +communes +commuted +commuter +commutes +compacts +compadre +compages +compared +compares +comparts +compeers +comp�red +comp�res +competed +competes +compiled +compiler +compiles +compital +complain +compleat +complect +complete +complice +complied +complier +complies +compline +complins +complish +complots +comports +composed +composer +composes +composts +compotes +compound +compress +comprint +comprise +compulse +computed +computer +computes +comrades +Comsomol +conacred +conacres +conarial +conarium +conation +conative +concause +concaved +concaver +concaves +conceals +conceded +conceder +concedes +conceits +conceity +conceive +concents +concepti +concepts +concerns +concerti +concerto +concerts +concetti +concetto +conchate +conchies +conching +conchoid +conciser +conclave +conclude +concocts +concolor +Concorde +concords +concours +concrete +concrews +condemns +condense +condoled +condoles +condoned +condones +conduced +conduces +conducti +conducts +conduits +condylar +condyles +confects +conferee +conferva +confetti +confided +confider +confides +confined +confiner +confines +confirms +conflate +conflict +confocal +conforms +confound +confr�re +confront +confused +confuses +confuted +confutes +congaing +congeals +cong�ing +congener +congenic +congests +congiary +conglobe +Congoese +congrats +congreed +congrees +congreet +congress +Congreve +conicals +conidial +conidium +conifers +coniform +Coniston +conjects +conjoins +conjoint +conjugal +conjunct +conjured +conjurer +conjures +conjuror +Connacht +connects +connings +connived +conniver +connives +Connolly +connoted +connotes +conodont +conoidal +conoidic +conquers +conquest +consents +conserve +consider +consigns +consists +consoled +consoler +consoles +consomm� +consorts +conspire +constant +constate +construe +consular +consulta +consults +consumed +consumer +consumes +consumpt +contacts +contains +contango +contemns +contempt +contends +contents +contessa +contests +contexts +continua +continue +continuo +contline +contorno +contorts +contours +contract +contrail +contrary +contrast +contrate +contrist +contrite +contrive +contr�l� +controls +contused +contuses +conurban +conurbia +convened +convener +convenes +convenor +convents +converge +converse +converts +convexed +convexes +convexly +conveyal +conveyed +conveyer +conveyor +convicts +convince +convived +convives +convoked +convokes +convolve +convoyed +convulse +cooeeing +cooeying +cooingly +cookable +cookmaid +cookouts +cookroom +cookshop +cookware +coolabah +coolamon +coolants +coolibah +coolibar +Coolidge +coolness +coondogs +coonskin +coonties +coopered +coopting +copemate +Copepoda +copepods +copering +Cophetua +copilots +coplanar +copperas +coppered +coppiced +coppices +coprosma +copshops +copulate +copybook +copycats +copydesk +copyhold +copyists +copyread +coquetry +coquette +coquilla +coquille +coquinas +coquitos +coracles +coracoid +coraggio +corallum +coramine +coranach +corantos +corbeils +corbeled +Corbetts +cordages +Cordelia +cordials +cordiner +cordings +cordless +c�rdobas +cordoned +cordovan +corduroy +cordwain +coreless +corellas +Corfiote +Corfiots +corkages +corkiest +corkwing +corkwood +cormuses +cornacre +cornages +corncrib +Cornelia +corneous +cornered +cornetcy +cornetti +cornetto +cornetts +Cornhill +cornhusk +corniced +cornices +corniche +cornicle +corniest +cornific +cornists +cornland +cornloft +cornmill +cornmoth +cornpipe +cornrows +cornuted +cornutos +Cornwall +cornworm +corocore +corocoro +corodies +corollas +coronach +coronary +coronate +coroners +coronets +coronium +coronoid +corporal +corporas +corpsman +corpsmen +corraded +corrades +corrects +corridas +corridor +corrival +corroded +corrodes +corrupts +corsages +corsairs +corselet +corseted +corsetry +Corsican +corslets +corsneds +cort�ges +cortexes +cortical +cortices +cortisol +corundum +corveted +corvette +Corvidae +Corvinae +corvuses +corybant +coryphee +cosecant +coshered +cosherer +cosiness +cosmesis +cosmetic +cosmical +cosmists +cosmoses +Cossacks +cosseted +costards +costated +costeans +Costello +costlier +costmary +costrels +costumed +costumer +costumes +costuses +coteline +coteries +cothurni +cothurns +cotillon +cotingas +cotising +cotlands +Cotopaxi +cotquean +Cotswold +cottabus +cottaged +cottager +cottages +cottagey +cottidae +cottiers +cottised +cottises +cottoids +cottoned +cotyloid +couchant +couchees +couching +Cou�ists +coughers +coughing +couguars +couldn't +coulisse +couloirs +coulombs +coulters +coumaric +coumarin +councils +counsels +counters +countess +counties +counting +Couperin +couplers +couplets +coupling +coupures +courante +courants +couriers +courlans +coursers +coursing +courtesy +courtier +courting +courtlet +Courtney +couscous +cousinly +cousinry +Cousteau +couthest +couthier +coutille +couverts +covalent +covaried +covaries +covelets +covenant +Coventry +coverage +coverall +coverers +covering +coverlet +coverlid +covertly +coveting +covetise +covetous +covinous +cowarded +cowardly +cowbanes +cowbells +cowberry +cowbirds +cowering +cowgirls +cowgrass +cowhages +cowhands +cowheels +cowherds +cowhided +cowhides +cowhouse +cowlicks +cowlings +cowsheds +cowslips +coxalgia +coxcombs +coxswain +coystrel +coystril +cozenage +cozeners +cozening +coziness +crabbers +crabbier +crabbily +crabbing +crablike +crabwise +crackers +cracking +crackjaw +crackled +crackles +cracknel +crackpot +crackups +cradling +craftier +craftily +crafting +cragfast +craggier +cragsman +cragsmen +cramboes +crammers +cramming +cramoisy +crampets +cramping +crampits +crampons +cranages +cranched +cranches +Cranford +Craniata +craniate +craniums +crankest +crankier +crankily +cranking +crankled +crankles +crankpin +crannied +crannies +crannogs +Cranwell +crapauds +crashing +crassest +cratches +cravenly +cravings +crawfish +Crawford +crawlers +crawlier +crawling +crayfish +crayoned +craziest +creakier +creakily +creaking +creamers +creamery +creamier +creamily +creaming +creances +creasers +creasier +creasing +creasote +creatine +creating +creation +creative +creators +creatrix +creature +credence +credenda +credenza +credible +credibly +credited +creditor +creepers +creepier +creepies +creepily +creeping +creeshed +creeshes +creesing +cremated +cremates +cremator +cremonas +cremorne +cremosin +crenated +creneled +crenelle +creodont +creolian +creolise +creolist +creolize +creosote +crepance +creperie +crepitus +crescent +crescive +cressets +Cressida +cresting +crestons +cresylic +cretisms +cretonne +creutzer +crevasse +crevette +crevices +cribbage +cribbers +cribbing +cribbled +cribbles +cribella +cribrate +cribrose +cribrous +cribwork +cricetid +Cricetus +Crichton +crickets +crickeys +cricking +cricoids +crimeful +criminal +crimines +crimmers +crimpers +crimpier +crimping +crimpled +crimples +crimsons +crinated +cringers +cringing +cringles +crinites +crinkled +crinkles +crinoids +criollos +cripeses +crippled +crippler +cripples +crispate +crispers +crispest +Crispian +crispier +crispily +crisping +crispins +cristate +criteria +critical +critique +critters +critturs +croakers +croakier +croakily +croaking +Croatian +croceate +croceins +croceous +crochets +crockery +crockets +Crockett +crocking +crocoite +crocuses +crofters +crofting +cromacks +crombies +cromlech +cromorna +cromorne +Crompton +Cromwell +cronyism +crooking +crooners +crooning +cropfull +cropfuls +cropland +croppers +croppies +cropping +cropsick +croquets +crosiers +crossbar +crossbow +crosscut +crossest +crossing +crossish +crosslet +Crossman +crossway +crostini +crotalum +Crotalus +crotched +crotches +crotchet +crottles +crouched +crouches +croupade +croupers +croupier +crouping +croupous +crousely +cro�tons +crowboot +crowdies +crowding +crowfoot +crowners +crownets +crowning +crownlet +croziers +crubeens +crucians +cruciate +crucible +crucifer +crucifix +cruddier +crudit�s +cruelest +crueller +cruisers +cruisies +cruising +crumbier +crumbing +crumbled +crumbles +crumbses +crumenal +crumhorn +crummack +crummier +crummies +Crummles +crummock +crumpets +crumpled +crumples +crunched +Cruncher +crunches +crunkled +crunkles +cruppers +crusaded +crusader +crusades +crusados +crushers +crushing +crusians +crustate +crustier +crusties +crustily +crusting +crutched +crutches +cruzados +cruzeiro +cryogens +cryogeny +cryolite +cryonics +cryostat +cryotron +crystals +cubature +cubbings +cubicles +cubiform +cubistic +cuboidal +cuckolds +cuckoldy +cucumber +cucurbit +cuddlier +cuddling +cudweeds +cufflink +cuisines +cuittled +cuittles +culchies +culicids +culicine +culinary +cullings +cullions +cullises +Culloden +cullying +culottes +culpable +culpably +Culpeper +culprits +cultches +cultigen +cultists +cultivar +cultrate +cultural +cultured +cultures +cultuses +culverin +culverts +cumbered +cumberer +Cumbrian +cumbrous +Cummings +cumquats +cumshaws +cumulate +cumulose +cunabula +cuneatic +cunettes +cunjevoi +cunnings +cupboard +cupcakes +cupeling +cupelled +cupgalls +cupheads +cupidity +cupolaed +cuppings +cupreous +cupulate +cura�aos +curacies +cura�oas +curarine +curarise +curarize +curassow +curative +curators +curatory +curatrix +curbable +curbless +curbside +curculio +curcumas +curcumin +curdiest +curdling +cureless +curetted +curettes +Curitiba +curlicue +curliest +currachs +curraghs +currants +curranty +currency +currents +curricle +curriers +currying +cursedly +cursings +cursitor +cursores +curtails +curtains +curtanas +curtness +curtseys +curtsied +curtsies +curvated +curveted +curviest +curvital +cuscuses +cushiest +cushions +cushiony +Cushitic +cuspidal +cuspidor +cussedly +custards +custodes +customed +customer +custrels +cutaways +cutbacks +cutchery +cuteness +Cuthbert +cuticles +cutikins +cutinise +cutinize +cutlines +cutlings +cutpurse +cuttings +cutworms +cuvettes +Cuxhaven +cyanates +cyanided +cyanides +cyanines +cyanised +cyanises +cyanized +cyanizes +cyanogen +cyanosed +cyanosis +cyanotic +cyanuret +cyathium +cyberpet +cybersex +Cyclades +cyclamen +cycleway +cyclical +cyclists +cycloids +cyclones +cyclonic +cyclopes +cyclopic +cycloses +cyclosis +cycluses +cylinder +cymatium +cymbalom +cymbalos +cymbidia +cynanche +Cynewulf +cynicism +cynosure +cyphered +cyprians +cyprides +cyprinid +Cyprinus +Cypriote +Cypriots +Cyrenaic +Cyrillic +cysteine +cystitis +cystoids +cytisine +cytokine +cytology +cytosine +cytosome +czarevna +czarinas +czarists +czaritsa +czaritza diff --git a/com/agnibho/code/anagram/dictionary/C9.txt b/com/agnibho/code/anagram/dictionary/C9.txt new file mode 100644 index 0000000..23e12c7 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/C9.txt @@ -0,0 +1,2710 @@ +caatingas +cabaletta +cabalette +cabalists +caballero +caballers +caballine +caballing +cabbalism +cabbalist +cablegram +cableways +caboceers +cabochons +cabrioles +cabriolet +cacafuego +cachalots +cachectic +cacholong +cacholots +cachuchas +caciquism +cacodemon +cacodylic +cacoepies +cacoethes +cacomixls +cacophony +cacotopia +Cactaceae +cactiform +cacuminal +cadastral +cadastres +cadaveric +cadencies +cadential +cadetship +Cadillacs +cadranses +caecilian +Caenozoic +caerulean +Caesarean +Caesarian +Caesarism +Caesarist +caestuses +cafeteria +cafetiere +cagebirds +cagelings +cageyness +cailleach +caimacams +Cainozoic +cairngorm +Caithness +cakewalks +calaboose +calabrese +Calabrian +caladiums +calamanco +calamints +calamites +calamuses +calandria +calanthes +calavance +calcaneal +calcanean +calcaneum +calcaneus +calcarine +calceated +calceates +calcedony +calcicole +calcified +calcifies +calcifuge +calcimine +calcining +calculary +calculate +calculose +calculous +caldarium +Caledonia +calefying +calembour +calendars +calenders +calendrer +calendric +calendula +calenture +calfdozer +calfskins +calibered +calibrate +califonts +caliology +caliphate +calisayas +Callaghan +callidity +calligram +callipers +callosity +callouses +callously +callowest +calmative +calorific +calorists +calthrops +calumnies +calutrons +calvering +Calvinism +Calvinist +calvities +calycinal +calycules +calyculus +calyptras +camanachd +camarilla +cambering +cambiform +cambistry +Cambodian +cambozola +Cambridge +camcorder +camelback +cameleers +cameleons +Camelidae +camellias +Camembert +cameraman +cameramen +camerated +Cameroons +camisades +camisados +camisards +camisoles +camomiles +Camorrism +Camorrist +camouflet +campaigns +campanero +campanile +campanili +campanist +Campanula +campeador +campesino +camphoric +campodeid +camporees +campsites +camshafts +camstairy +camstanes +camstones +Canaanite +Canadians +canaigres +canailles +Canaletto +canalised +canalises +canalized +canalizes +canarying +Canaveral +cancelers +cancelled +canceller +Cancerian +cancerous +candidacy +candidate +candlelit +Candlemas +candlepin +candytuft +canefruit +canellini +canephora +canephore +canephors +canescent +canicular +canisters +cankering +cankerous +cannelure +canneries +cannibals +cannikins +canniness +cannonade +cannoneer +cannonier +cannoning +cannulate +canoeings +canoeists +canonical +canonised +canonises +canonists +canonized +canonizes +canonries +canoodled +canoodles +canopying +cantabank +cantabile +cantaloup +cantering +cantharid +cantharis +cantharus +canthooks +canticles +canticoed +canticoys +canticums +cantilena +cantiness +Cantonese +cantoning +cantonise +cantonize +cantorial +cantrails +canvasing +canvassed +canvasser +canvasses +canzonets +capablest +capacious +capacitor +caparison +capelines +capellets +capelline +capillary +capitally +capitanos +capitella +capitular +capitulum +capocchia +caponiere +caponiers +caponised +caponises +caponized +caponizes +capotasto +capouches +capriccio +Capricorn +caprified +caprifies +caprifigs +caprifoil +capriform +caprioles +caprylate +capsaicin +capsicums +capsizals +capsizing +capstones +capsulary +capsulate +capsulise +capsulize +captaincy +captained +captainry +captioned +captivate +captivity +capturers +capturing +capuchins +capybaras +Carabidae +carabiner +carabines +caracaras +caracoled +caracoles +carambola +carambole +carangids +carangoid +carapaces +Caratacus +caravance +caravaned +caravaner +carbachol +carbamate +carbamide +carbanion +carbaryls +carbazole +carbineer +carbinier +carbonade +carbonado +Carbonari +carbonate +carbonise +carbonize +carbuncle +carburate +carburise +carburize +carcajous +carcanets +carcasing +carcassed +carcasses +carcinoma +cardamine +cardamoms +cardamons +cardamums +cardboard +cardiacal +cardialgy +cardigans +cardinals +cardioids +cardphone +careenage +careening +careering +careerism +careerist +carefully +caregiver +caressing +caressive +caretaken +caretaker +caretakes +carfuffle +cariacous +Caribbean +carillons +carjacked +carjacker +carjacous +Carlylean +Carlylese +Carlylism +Carmelite +carnahuba +carnalise +carnalism +carnalist +carnality +carnalize +Carnarvon +carnation +carnaubas +carnelian +carneying +carnified +carnifies +carnivals +Carnivora +carnivore +carnosity +carnotite +carollers +carolling +caroluses +carousals +carousels +carousers +carousing +Carpaccio +carpenter +carpentry +carpetbag +carpeting +carpingly +carpology +carrageen +carraways +carrefour +carriages +carrioles +carronade +carrotier +carrousel +carryalls +carrycots +carrytale +Cartagena +cartelise +cartelism +cartelist +cartelize +Cartesian +cartilage +cartloads +cartogram +cartology +cartonage +cartooned +cartouche +cartridge +cartulary +cartwheel +carucages +carucates +caruncles +carvacrol +carveries +caryatids +caryopses +caryopsis +cascabels +cascading +cascadura +caschroms +caseation +casebooks +casemaker +casemated +casemates +casements +cashboxes +cashcards +cashiered +cashierer +cashmeres +cashpoint +Cassandra +cassareep +cassaripe +cassation +casserole +cassettes +cassimere +cassingle +cassocked +cassonade +cassoulet +cassowary +Castalian +castanets +castaways +casteless +castellan +castellum +castigate +Castilian +Castlebar +castoreum +castrated +castrates +casualise +casualism +casualize +Casuarina +casuistic +casuistry +catabases +catabasis +catabolic +cataclasm +cataclysm +catacombs +catafalco +catalepsy +catalexis +cataloged +cataloger +catalogue +Catalonia +catalysed +catalyser +catalyses +catalysis +catalysts +catalytic +catalyzed +catalyzer +catalyzes +catamaran +catamenia +catamites +catamount +cataphyll +cataplasm +cataplexy +catapults +cataracts +catarhine +catarrhal +catatonia +catatonic +catcalled +catchable +catchiest +catchings +catchline +catchment +catchpole +catchpoll +catchweed +catchword +catechise +catechism +catechist +catechize +categoric +catenanes +catenated +catenates +caterings +caterwaul +catfishes +Catharine +catharise +Catharism +Catharist +catharize +catharses +catharsis +cathartic +cathectic +cathedral +cathedras +Catherina +Catherine +catheters +cathismas +catholics +cathouses +catnapped +catoptric +cattaloes +Catterick +catteries +cattiness +cattishly +cattleman +cattlemen +cattleyas +Caucasian +Caucasoid +cauchemar +caucusing +caudicles +caudillos +cauldrons +caulicles +cauliform +caulinary +caulkings +causality +causation +causative +causeless +causeries +causeways +cautelous +cauterant +cauteries +cauterise +cauterism +cauterize +cautioned +cautioner +cavalcade +cavaliers +cavallies +cavalries +cavatinas +cavendish +caverning +cavernous +cavessons +cavicorns +cavillers +cavilling +cavitated +cavitates +cavorting +Ceanothus +ceaseless +Ceausescu +cebadilla +cedarwood +ceilinged +ceintures +celandine +celebrant +celebrate +celebrity +celeriacs +celestial +Celestine +celestite +celibates +cellarage +cellarers +cellarets +cellaring +cellarist +cellarman +cellarmen +cellarous +cellphone +cellulase +cellulite +celluloid +cellulose +celsitude +Celticism +Celticist +cembalist +cementers +cementing +cementite +cenobites +cenotaphs +censorial +censorian +censoring +censurers +censuring +centaurea +Centaurus +centenary +centenier +centering +centesimo +centiares +centigram +centipede +centoists +centonate +centonist +centrally +centreing +centrical +centrings +centriole +centrists +centrodes +centroids +centumvir +centupled +centuples +centurial +centuries +centurion +cepaceous +cephalate +cephalics +cephalous +ceraceous +ceramists +Cerastium +ceratitis +ceratodus +cerberean +cercariae +cercarian +cercarias +cerebella +cerebrate +cerebrums +cerements +cerograph +ceromancy +cerotypes +certainly +certainty +certified +certifier +certifies +certitude +ceruleous +cerussite +Cervantes +cervelats +cesarevna +cespitose +cessation +cesspools +cetaceans +cetaceous +ceterachs +Cetshwayo +cevadilla +cevapcici +ceylanite +Ceylonese +ceylonite +chabazite +chaconnes +chaetodon +chaetopod +chaffered +chafferer +chaffiest +chaffinch +chaffings +chaffless +chaffrons +chagrined +chainless +chainlets +chainsaws +chainwork +chairdays +chairlady +chairlift +chalazion +Chaldaean +chaldaism +chaldrons +Chaliapin +chalkface +chalkiest +chalkpits +challenge +chalumeau +chalutzim +Chalybean +chalybite +chambered +chamberer +chambrays +chameleon +chamfered +chamfrain +chamfrons +chamisals +chamomile +champagne +champaign +champarts +champerty +champions +Champlain +champlev� +chanceful +chanciest +chancroid +chancrous +chandelle +chandlers +chandlery +Changchun +changeful +channeler +chanteuse +Chantilly +chantress +chantries +Chanukkah +chaparral +chapattis +chapbooks +chapeless +chaperone +chaperons +chapesses +chapiters +chaplains +chapleted +chaprassi +chaprassy +chapstick +chaptered +chaptrels +charabanc +Characeae +characids +characins +character +charangos +charbroil +chargeful +chargrill +chariness +charioted +charismas +charities +charivari +charlatan +charlocks +charlotte +Charmaine +charmeuse +charmless +Charolais +charoseth +charriest +chartered +charterer +Charteris +chartists +chartless +chartroom +Chartwell +charwoman +charwomen +Charybdis +Chasidism +chasseing +Chassepot +chasseurs +Chassidic +chastened +chastener +chastised +chastiser +chastises +chasubles +ch�telain +chatlines +chatoyant +chattered +chatterer +chattiest +chauffers +chauffeur +chaunters +chaunting +chavender +cheapened +cheapener +cheapness +Cheapside +chechakos +chechaqua +chechaquo +checkbook +checkered +checklist +checkmate +checkouts +checkroom +cheechako +cheekiest +cheeriest +cheerless +Cheeryble +cheesiest +cheewinks +cheilitis +Chekovian +chelaship +chelating +chelation +chelators +chelicera +cheliform +chelipeds +cheloidal +chelonian +chemicals +chemicked +chemistry +chemitype +chemitypy +chemostat +chemurgic +chequered +cheralite +Cherbourg +Cherenkov +cherimoya +cherished +cherishes +Chernenko +Chernobyl +chernozem +Cherokees +chertiest +cherubims +Cherubini +cheruping +chestfuls +chestiest +chestnuts +chevalets +chevalier +chevelure +cheverels +cheverils +chevilles +chevrette +Chevrolet +chevroned +Cheyennes +chiacking +chiarezza +chiasmata +chiausing +chibouque +chicaners +chicanery +chicaning +chickadee +chickaree +chickened +chickling +chickweed +chicories +chidingly +chidlings +chiefdoms +chiefless +chiefling +chiefries +chiefship +chieftain +chihuahua +chilblain +childcare +childhood +childless +childlike +childness +chiliagon +chiliarch +chiliasts +chilladas +chilliest +chillings +chillness +Chilopoda +chilopods +chimaeras +chimaerid +chimerism +chimneyed +chinampas +chinaroot +Chinatown +chincapin +chincough +chinkapin +chinkaras +chinkiest +chinovnik +chinstrap +chintzier +chipboard +chipmucks +chipmunks +chipolata +Chippewas +chippiest +chippings +chiragric +chirality +chirimoya +chirology +chironomy +chiropody +chirpiest +chirruped +chiseling +chiselled +chiseller +chitinoid +chitinous +chitlings +chittered +chivalric +chivarees +chivvying +chiyogami +chlamydes +chlamydia +chlamyses +chloracne +chlorates +chlordane +Chlorella +chlorides +chlorites +chloritic +chlorosis +chlorotic +chocolate +chocolaty +choenixes +choiceful +choirboys +choirgirl +chokebore +chokedamp +chokidars +cholaemia +cholaemic +cholecyst +cholelith +choleraic +choliambs +choltries +chondrify +chondrite +chondroid +chondrule +Chongqing +choosiest +choppiest +choppings +chopstick +choralist +chordates +choreuses +choriambs +chorioids +chorionic +chorister +chorizont +chorology +chortlers +chortling +chorusing +chowkidar +chrismals +christens +Christian +Christies +Christina +Christine +Christmas +christoms +chromakey +chromates +chromatic +chromatid +chromatin +chromidia +chromogen +chronaxie +chronical +chronicle +chrysalid +chrysalis +chrysanth +Chryslers +chthonian +chubbiest +chuckhole +chuckling +chuffiest +chummages +chummiest +chundered +chunkiest +chuntered +chupattis +chuprassy +churchier +Churchill +churching +churchism +churchman +churchmen +churchway +churidars +churingas +churnings +chyacking +chylified +chylifies +chymified +chymifies +ciabattas +cicatrice +cicatrise +cicatrize +cicerones +Ciceronic +Cichlidae +Cichorium +Cicindela +ciclatoun +cidarises +ciderkins +cigarette +cigarillo +cilicious +ciliolate +cimbaloms +Cimicidae +Cimmerian +cinchonic +cincinnus +cinctured +cinctures +cineastes +cinematic +cinephile +cineramic +cineraria +cinerator +cinereous +Cingalese +cinnamons +cinquains +ciphering +cipollino +circadian +Circassia +circinate +circlings +circuital +circuited +circuitry +circulars +circulate +circumfer +cirrhopod +cirrhosis +cirrhotic +cirriform +cirripede +cirripeds +Cisalpine +ciseleurs +ciselures +Cispadane +cisplatin +Cistaceae +cisternae +cistvaens +citations +citharist +citifying +citigrade +citizenry +citranges +cityfying +cityscape +civically +civilians +civilised +civiliser +civilises +civilists +civilized +civilizer +civilizes +clackdish +claddings +cladistic +cladogram +claimable +claimants +clamantly +clambakes +clambered +clamberer +clammiest +clamorous +clamoured +clamourer +clampdown +clampered +clangings +clangours +clankings +clankless +clapboard +clapbread +clappered +clappings +claptraps +claqueurs +clarences +clarendon +clareting +clarified +clarifier +clarifies +clarinets +clarionet +clarsachs +clashings +claspings +classable +classible +classical +classiest +classific +classless +classmate +classroom +clathrate +clattered +clatterer +clauchted +Claudette +claughted +claustral +claustrum +clausulae +clausular +clavation +clavecins +clavering +clavicles +clavicorn +clavicula +claviform +clavigers +clavulate +clawbacks +claymores +claytonia +cleanable +cleanings +cleanlier +cleanness +cleansers +cleansing +cleanskin +clearages +clearance +clearcole +clearings +clearness +clearskin +clearways +clearwing +cleavable +cleavages +cleavings +cleckings +cleithral +clemently +clenching +Cleopatra +clepsydra +clerecole +clergyman +clergymen +clericals +clericate +clericity +clerihews +clerisies +clerkdoms +clerklier +clerkship +cleruchia +Cleveland +cleverest +cleverish +clianthus +clicketed +clickings +clientage +client�le +cliffhang +cliffhung +cliffiest +climactic +climatise +climatize +climature +climaxing +climbable +climbings +clinchers +clinching +clingfilm +clingiest +clinician +cliniques +clinoaxes +clinoaxis +clinquant +clippings +cliquiest +clitellar +clitellum +clittered +cloacalin +cloacinal +cloakroom +clobbered +clochards +clockface +clockwise +clockwork +cloddiest +clodpated +clodpates +clodpoles +clodpolls +clogdance +cloggiest +cloisonn� +cloisters +cloistral +clonicity +closeness +closeting +closuring +cloteburs +clothiers +clothings +clottered +clottings +cloturing +cloudiest +cloudings +cloudland +cloudless +cloudlets +clownings +clubbable +clubbings +clubbists +clubhouse +clubrooms +clubwoman +clubwomen +clumpiest +clumsiest +clunkiest +Clupeidae +clustered +clutching +cluttered +Clydebank +Clydeside +clypeuses +cnidarian +coachdogs +coachings +coachload +coachwhip +coachwood +coachwork +coadapted +coadjutor +coadunate +coagulant +coagulase +coagulate +coagulums +coalballs +coalesced +coalesces +coalfield +coalising +coalition +coalizing +coarctate +coarsened +coastings +coastline +coastward +coastwise +coatracks +coatstand +coattails +coaxially +coaxingly +cobalamin +cobaltite +cobblings +Cobdenism +Cobdenite +cobloaves +cobriform +cobwebbed +cocainise +cocainism +cocainist +cocainize +coccidium +coccolite +coccolith +coccygeal +coccygian +cochineal +cochleate +Cockaigne +cockateel +cockatiel +cockatoos +cockbirds +cockboats +Cockcroft +Cockerell +cockerels +cockfight +cockhorse +cockiness +cocklaird +cockleman +cocklemen +cocklofts +cockmatch +cockneyfy +cockroach +cockscomb +cocksfoot +cockshies +cockshots +cockspurs +cockswain +cocktails +cocoanuts +cocoonery +cocooning +cocoplums +coculture +codebooks +codewords +codfishes +codifiers +codifying +coediting +coeditors +Coelomata +coelomate +coelostat +coemption +coenobite +coenobium +coenocyte +coenosarc +coenourus +coenzymes +coequally +coercible +coercibly +coercions +coeternal +cofactors +coffering +coffining +coffinite +cogitable +cogitated +cogitates +cogitator +cognation +cognisant +cognising +cognition +cognitive +cognizant +cognizing +cognomens +cognomina +cognovits +cohabited +cohabitee +cohabitor +coheiress +coherence +coherency +coheritor +cohesible +cohesions +cohibited +cohobated +cohobates +cohyponym +coiffeurs +coiffeuse +coiffured +coiffures +coincided +coincides +Cointreau +coistrels +coistrils +cokernuts +colanders +colcannon +colchicum +colcothar +coldblood +coldhouse +colectomy +Coleraine +Coleridge +coliforms +coliseums +collagist +collapsar +collapsed +collapses +collaring +collating +collation +collative +collators +colleague +collected +collector +collegers +collegial +collegian +collegium +colliculi +colliders +colliding +colligate +collimate +collinear +Collinses +collision +collocate +collodion +collogued +collogues +colloidal +colloqued +colloques +colloquia +collotype +colluders +colluding +collusion +collusive +colluvies +collyrium +colobuses +Colocasia +colocynth +Colombian +colonelcy +colonials +colonised +coloniser +colonises +colonists +colonitis +colonized +colonizer +colonizes +colonnade +colophons +colophony +colorable +colorants +colorfast +colorific +colorings +colorists +colorized +colorizes +colorless +colosseum +Colossian +colostomy +colostric +colostrum +colourant +coloureds +colourers +colourful +colouring +colourise +colourist +colourize +colourman +colourmen +colourway +coltsfoot +colubrids +colubrine +columbary +columbate +Columbian +columbine +columbite +columbium +columella +columnist +Comanches +comatulid +combatant +combating +combative +combinate +combiners +combining +combretum +combusted +combustor +comedians +comedowns +comeliest +comethers +comfiture +comforted +comforter +comically +Cominform +Comintern +comitadji +comitatus +commanded +commander +commandos +Commelina +commenced +commences +commendam +commended +commensal +commented +commenter +commentor +commerced +commerces +commerged +commerges +comminate +commingle +comminute +commissar +committal +committed +committee +commixing +commodity +commodore +commonage +commoners +commonest +commoneys +commorant +commotion +commoving +communard +communing +communion +communise +communism +communist +community +communize +commutate +commuters +commuting +commutual +compacted +compacter +compactly +compactor +compadres +compander +compandor +companied +companies +companion +comparing +comparted +compassed +compasses +compelled +compeller +compendia +comp�ring +competent +competing +compilers +compiling +complains +complaint +compleats +complects +completed +completes +complexed +complexes +complexly +complexus +compliant +compliers +complines +complying +component +comported +composers +composing +composite +composted +composter +composure +compotier +compounds +comprador +comprints +comprisal +comprised +comprises +compulsed +compulses +computant +computers +computing +computist +comradely +conacring +concauses +concavely +concaving +concavity +concealed +concealer +conceders +conceding +conceited +conceived +conceives +concenter +concentre +concentus +conceptus +concerned +concerted +concertos +conchitis +conchoids +concierge +conciliar +concisely +concisest +concision +conclaves +concluded +concludes +concocted +concocter +concoctor +concordat +concorded +concourse +concreted +concreter +concretes +concrewed +concubine +concurred +concussed +concusses +concyclic +condemned +condemner +condensed +condenser +condenses +condignly +condiment +condition +condolent +condoling +condoning +conducing +conducive +conducted +conductor +conductus +condyloid +condyloma +confabbed +confected +conferees +conferral +conferred +conferrer +confervae +confervas +confessed +confesses +confessor +confestly +confidant +confident +confiders +confiding +configure +confining +confirmed +confirmee +confirmer +confirmor +confiseur +confiteor +confiture +conflated +conflates +conflicts +confluent +confluxes +conformal +conformed +conformer +confounds +confr�res +confr�rie +confront� +confronts +Confucian +Confucius +confusing +confusion +confuting +congealed +congeeing +congeners +congenial +congeries +congested +conglobed +conglobes +Congolese +congreets +congruent +congruity +congruous +conically +Coniferae +Coningsby +conjected +conjeeing +conjoined +conjoiner +conjugant +conjugate +conjurers +conjuries +conjuring +conjurors +connation +connature +Connaught +connected +connecter +connector +Connemara +connexion +connexive +connivent +connivers +conniving +connotate +connoting +connotive +connubial +conodonts +conquered +conqueror +conquests +conscient +conscious +conscribe +conscript +consensus +consented +conserved +conserver +conserves +considers +consigned +consignee +consigner +consignor +consisted +consocies +consolate +consolers +consoling +consolute +consomm�s +consonant +consonous +consorted +consorter +consortia +conspired +conspirer +conspires +constable +Constance +constancy +constants +constated +constates +constrain +constrict +construct +construed +construer +construes +consulage +consulars +consulate +consulted +consultee +consulter +consultor +consumers +consuming +consumpts +contacted +contactor +contadina +contadine +contadini +contadino +contagion +contagium +contained +container +contangos +contemned +contemner +contemnor +contemper +contempts +contended +contender +contented +contently +contessas +contested +contester +conticent +continent +continual +continued +continuer +continues +continuos +continuua +continuum +contlines +contornos +contorted +contoured +contracts +contrails +contralti +contralto +contrasts +contrasty +contrived +contriver +contrives +contr�l�e +contumacy +contumely +contusing +contusion +contusive +conundrum +convector +conveners +convening +convenors +converged +converges +conversed +converses +converted +converter +convertor +convexity +conveyals +conveyers +conveying +conveyors +convicted +convinced +convinces +convivial +conviving +convocate +convoking +convolute +convolved +convolves +convoying +convulsed +convulses +cookhouse +cookmaids +cookrooms +cookshops +coolabahs +coolamons +coolibahs +coolibars +coonhound +cooperage +cooperant +cooperate +cooperies +coopering +copacetic +copartner +copataine +copatriot +copemates +copiously +coppering +copperish +coppicing +coprolite +coprolith +coprology +coprosmas +coprozoic +copsewood +copulated +copulates +copybooks +copydesks +copyholds +copyreads +copyright +coquetted +coquettes +coquillas +coquilles +coracoids +coraggios +Corallian +coralline +corallite +coralloid +coranachs +corantoes +corbeille +corbeling +corbelled +corbicula +Corbi�res +Corbusier +corcasses +Corchorus +Cordaites +Cordelier +cordially +cordiform +cordiners +cordoning +cordotomy +cordovans +corduroys +cordwains +cordyline +Coregonus +coreopsis +Corfiotes +coriander +corkboard +corkiness +corkwings +corkwoods +cormidium +cormorant +Cornaceae +cornacred +cornacres +cornborer +cornbrake +cornbrash +corncrake +corncribs +Corneille +cornelian +cornemuse +cornering +cornetist +cornfield +cornflake +cornflies +corniches +cornicles +corniform +cornlands +cornlofts +cornmills +cornmoths +cornopean +cornpipes +cornstalk +cornstone +cornworms +corocores +corocoros +corollary +corolline +coronachs +coronated +coroneted +coronises +coroniums +corporals +corporate +corporeal +corporify +corposant +corpulent +corpuscle +corrading +corralled +corrasion +corrected +correctly +corrector +Correggio +correlate +corridors +corrigent +corrivals +corrodent +corrodies +corroding +corrosion +corrosive +corrugate +corrupted +corrupter +corruptly +corselets +corsetier +corseting +corsleted +corticate +corticoid +cortisone +coruscant +coruscate +corveting +corvetted +corvettes +corybants +Corydalis +corymbose +coryphaei +coryphene +cosecants +coseismal +coseismic +cosherers +cosheries +coshering +cosmetics +cosmocrat +cosmogeny +cosmogony +cosmology +cosmonaut +cosmorama +cosmotron +cosponsor +cosseting +costalgia +costeaned +costively +costliest +costumers +costumier +costuming +cotangent +c�telette +cotelines +cothurnus +coticular +cotillion +cotillons +Cotswolds +cottagers +cottaging +cottising +cottonade +cottoning +cotyledon +couchette +coughings +coulisses +councilor +counselor +countable +countered +countless +countline +countries +countship +coupledom +couplings +courantes +courbaril +courbette +courgette +coursings +Courtauld +Courtelle +courteous +courtesan +courtezan +courtiers +courtings +courtlets +courtlier +courtlike +courtling +courtroom +courtship +courtyard +cousinage +couthiest +coutilles +couturier +covalency +covariant +covarying +covellite +covenants +coverable +coveralls +coverings +coverless +coverlets +coverlids +coverslip +coverture +covetable +cowardice +cowarding +cowfeeder +cowfishes +cowhiding +cowhouses +cowitches +cowslip'd +coxcombic +coxcombry +coxswains +coyotillo +coystrels +coystrils +crabbedly +crabbiest +crabstick +crackdown +crackhead +cracklier +crackling +cracknels +crackpots +cracksman +cracksmen +cradlings +craftiest +craftless +craftsman +craftsmen +craftwork +craggiest +crammable +cranberry +cranching +crankcase +crankiest +crankling +crankness +crannying +cranreuch +crapulent +crapulous +crassness +Crataegus +craterous +craunched +craunches +cravatted +crawliest +crawlings +crayoning +craziness +creakiest +creamiest +creamlaid +creamware +creamwove +creasiest +creasoted +creasotes +creatable +creations +creatress +creatural +creatures +credences +credendum +crediting +creditors +credulity +credulous +creepered +creepiest +creeshing +cremaster +cremating +cremation +cremators +crematory +cremocarp +cremornes +crenation +crenature +crenelate +creneling +crenelled +crenelles +crenulate +creodonts +creolians +creolised +creolises +creolists +creolized +creolizes +creosoted +creosotes +crepances +creperies +crepiness +crepitant +crepitate +crepoline +crepuscle +crescendo +crescents +crestless +cretinise +cretinism +cretinize +cretinoid +cretinous +creutzers +crevassed +crevasses +crevettes +crewelist +crewelled +cribbling +cribellar +cribellum +cricetids +cricketed +cricketer +crimeless +criminals +criminate +criminous +crimpiest +Crimplene +crimpling +crimsoned +cringings +crinklier +crinklies +crinkling +crinoidal +Crinoidea +crinoline +cripplers +crippling +crispated +crispiest +crispness +criterion +criticise +criticism +criticize +critiques +croakiest +croakings +crocheted +crocheter +Crockford +crocodile +crocosmia +croftings +croissant +cromlechs +cromornas +cromornes +crookback +crookedly +croonings +cropbound +croquante +croqueted +croquette +crosiered +crossband +crossbars +crossbeam +crossbill +crossbite +crossbows +crossbred +crosscuts +crossette +crossfall +crossfire +crossfish +crossings +crossjack +crosslets +crossness +crossover +crossroad +crosstown +crosstree +crosswalk +crossways +crosswind +crosswise +crossword +crosswort +crostinis +crotaline +crotalism +crotalums +crotchets +crotchety +crouching +croupades +croupiers +croupiest +croustade +crowboots +crowfoots +crownings +crownless +crownlets +crownwork +crucially +crucibles +crucifers +crucified +crucifier +crucifies +cruciform +cruddiest +crudeness +crudities +cruellest +cruelness +cruelties +cruiseway +crumbiest +crumblier +crumblies +crumbling +crumhorns +crummacks +crummiest +crummocks +crumpling +crunchier +crunching +crunkling +crusaders +crusading +crushable +Crustacea +crustated +crustiest +crustless +crutching +cruzadoes +cruzeiros +cryogenic +cryometer +cryoprobe +cryoscope +cryoscopy +cryostats +cryotrons +cryptadia +cryptical +cryptogam +cryptonym +cs�rd�ses +cteniform +Ctesiphon +cuadrilla +cubatures +cubically +cubituses +cuckolded +cuckoldom +cuckoldry +cucullate +cucumbers +cucurbits +cuddliest +cudgelled +cudgeller +cufflinks +cuffuffle +cuirassed +cuirasses +cuisinier +cuittling +Culicidae +cullender +culminant +culminate +culpatory +cultigens +cultivars +cultivate +cultrated +culturing +culturist +culverins +cumberers +cumbering +cumbrance +cumulated +cumulates +cunctator +cuneiform +cunningly +cupbearer +cupboards +cupelling +cupolaing +cupolated +Cupressus +curarised +curarises +curarized +curarizes +curassows +curbsides +curbstone +curculios +curcumine +curdiness +curettage +curetting +curfuffle +curialism +curialist +curiosity +curiously +curlicues +curliness +currajong +currawong +currently +curricles +curricula +currishly +curryings +cursitors +cursively +cursorary +cursorial +cursorily +curstness +curtailed +curtained +curtalaxe +curtation +curtilage +curtseyed +curtsying +curvation +curvative +curvature +curvesome +curveting +curvetted +curviform +cushioned +cushionet +cuspidate +cuspidore +cuspidors +custodial +custodian +custodier +custodies +customary +customers +customise +customize +custumary +cutaneous +cutcherry +cuticular +cutinised +cutinises +cutinized +cutinizes +cutlasses +cutleries +cutpurses +cuttingly +cyanamide +cyaniding +cyanising +cyanizing +cyanotype +cyathiums +cyathuses +cybercaf� +cybernate +cyberpets +cyberpunk +cyclamate +cyclamens +cycleways +cyclicism +cyclicity +cycloidal +cyclolith +cyclonite +cyclopean +cyclopian +cyclopses +cyclorama +cyclotron +cylinders +cylindric +cymagraph +cymatiums +cymbalist +cymbaloes +cymbaloms +Cymbeline +cymbidium +cymbiform +cymograph +cymophane +cynegetic +cynically +Cynipidae +cynosures +Cynosurus +cyphering +cypresses +cyprinids +cyprinoid +Cyrenaica +cystidean +cystiform +cystocarp +cystocele +Cystoidea +cystolith +cystotomy +Cytherean +cytokines +cytokinin +cytolysis +cytometer +cytometry +cytopenia +cytoplasm +cytotoxic +cytotoxin +czardases +czarevich +czarevnas +czaritsas +czaritzas diff --git a/com/agnibho/code/anagram/dictionary/D1.txt b/com/agnibho/code/anagram/dictionary/D1.txt new file mode 100644 index 0000000..4bcfe98 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D1.txt @@ -0,0 +1 @@ +d diff --git a/com/agnibho/code/anagram/dictionary/D10.txt b/com/agnibho/code/anagram/dictionary/D10.txt new file mode 100644 index 0000000..0d4f441 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D10.txt @@ -0,0 +1,1568 @@ +dabblingly +dachshunds +dacoitages +dactylists +daffodilly +daguerrean +dahabeeahs +dahabiyahs +dahabiyehs +daintiness +dairymaids +dairywoman +dairywomen +daisywheel +dalliances +Dalmatians +damageable +damagingly +damasceene +damascened +damascenes +damaskeens +damaskined +damasquins +damnations +damnifying +damselfish +dandelions +dandifying +dandiprats +dandyprats +dannebrogs +D'Annunzio +dapperling +dapperness +Darjeeling +Darlington +D'Artagnan +dartboards +Darwinians +Darwinists +dashboards +Dasyuridae +datagloves +datamation +daughterly +daundering +dauntingly +dauphiness +davenports +dawdlingly +daydreamed +daydreamer +daysprings +dazzlement +dazzlingly +deaconhood +deaconries +deaconship +deactivate +deadenings +deadheaded +deadlights +deadliness +deadlocked +deafenings +dealbation +dealership +dealfishes +dearbought +deaspirate +deathliest +deathwards +debarments +debasement +debasingly +debateable +debatement +debatingly +debauchees +debauchers +debauchery +debauching +debentured +debentures +debilitate +debonairly +debonnaire +debouching +debouchure +debriefing +d�butantes +decachords +decadences +decadently +decagramme +decagynian +decagynous +decahedral +decahedron +decalitres +decalogist +decalogues +decamerous +decametres +decampment +decandrian +decandrous +decapitate +decapodous +decasteres +decastichs +decastyles +decathlete +decathlons +decaudated +decaudates +deceivable +deceivably +decelerate +Decemberly +Decembrist +decemviral +decenniums +decennoval +deceptible +deceptions +deceptious +decessions +decigramme +deciliters +decilitres +decillions +decimalise +decimalism +decimalist +decimalize +decimating +decimation +decimators +decimeters +decimetres +decinormal +deciphered +decipherer +decisively +decisteres +decivilise +decivilize +declaimant +declaimers +declaiming +declarable +declarants +declarator +declaredly +d�class�es +declassify +declassing +declension +declinable +declinator +declutched +declutches +decoctible +decoctions +decoctures +decoherers +decollated +decollates +decollator +decolonise +decolonize +decolorant +decolorate +decoloring +decolorise +decolorize +decoloured +decomposed +decomposer +decomposes +decompound +decompress +decongests +decontrols +decorating +decoration +decorative +decorators +decorously +decoupling +decrassify +decreasing +decreeable +decrements +decrescent +decretists +decrowning +decrypting +decryption +decumbence +decumbency +decurrency +decursions +decussated +decussates +dedicatees +dedicating +dedication +dedicative +dedicators +dedicatory +deducement +deductible +deductions +defacement +defacingly +defalcator +defamation +defamatory +defaulters +defaulting +defeasance +defeasible +defeatists +defecating +defecation +defecators +defectible +defections +defectives +defenceman +defencemen +defendable +defendants +defenseman +defensemen +defensible +defensibly +deferences +deferments +deferrable +deficience +deficiency +deficients +defilading +defilement +definement +definienda +definitely +definition +definitive +definitude +deflagrate +deflations +deflecting +deflection +deflective +deflectors +deflexions +deflexures +deflorated +deflorates +deflowered +deflowerer +defoliants +defoliated +defoliates +defoliator +deforciant +deforested +deformable +deformedly +defrauders +defrauding +defrayable +defrayment +defreezing +defrocking +defrosters +defrosting +defunction +defunctive +degaussing +degeneracy +degenerate +degradable +degreasant +degreasing +degression +degressive +degustated +degustates +dehiscence +dehumanise +dehumanize +dehumidify +dehydrated +dehydrater +dehydrates +dehydrator +Deinoceras +deinosaurs +deinothere +deionising +deionizing +dejectedly +dejections +dekalogies +delaminate +delapsions +delayingly +delectable +delectably +delegacies +delegating +delegation +deliberate +delicacies +delicately +deligation +delightful +delighting +delimitate +delimiting +delineable +delineated +delineates +delineator +delineavit +delinquent +deliquesce +deliquiums +deliration +deliriants +deliverers +deliveries +delivering +delphinium +delphinoid +deltiology +delundungs +delusional +delusively +delustrant +demagogism +demagogues +demandable +demandants +demarcated +demarcates +demeanours +dementated +dementates +dementedly +demersions +demipiques +demirepdom +demissions +demitasses +demivoltes +demobilise +demobilize +democratic +Democritus +demodulate +Demogorgon +demography +demoiselle +demolished +demolisher +demolishes +demolition +demonesses +demonetise +demonetize +demoniacal +demonising +demonizing +demonology +demoralise +demoralize +demoticist +demotivate +demounting +demulcents +demureness +demurrable +demurrages +denaturant +denaturing +denaturise +denaturize +denazified +denazifies +dendriform +dendrobium +dendrogram +dendroidal +dendrology +dendrophis +denegation +denervated +denervates +denigrated +denigrates +denigrator +denitrated +denitrates +denization +denizening +denominate +denotating +denotation +denotative +denotement +denouement +denouncers +denouncing +densimeter +densimetry +dentaliums +dentations +dentifrice +dentitions +denudating +denudation +denunciate +deodorants +deodorised +deodoriser +deodorises +deodorized +deodorizer +deodorizes +deontology +deoppilate +deoxidated +deoxidates +deoxidised +deoxidiser +deoxidises +deoxidized +deoxidizer +deoxidizes +depainting +departings +department +departures +depastured +depastures +dependable +dependably +dependance +dependants +dependence +dependency +dependents +depictions +depictured +depictures +depilating +depilation +depilators +depilatory +depletable +depletions +deplorable +deplorably +deployment +depolarise +depolarize +depopulate +deportment +depositary +depositing +deposition +depositive +depositors +depository +depravedly +deprecable +deprecated +deprecates +deprecator +depreciate +depredated +depredates +depredator +depressant +depressing +depression +depressive +depressors +deprivable +deprograms +depurating +depuration +depurative +depurators +depuratory +deputation +deputising +deputizing +deracinate +d�railleur +derailment +derationed +Derbyshire +deregister +deregulate +derestrict +deridingly +derisively +derivation +derivative +Dermaptera +dermatitis +dermatogen +dermatoses +dermatosis +Dermoptera +derogately +derogating +derogation +derogative +derogatory +derringers +desalinate +desalinise +desalinize +desaltings +descanting +descendant +descendent +descenders +descending +descension +deschooled +deschooler +descramble +describers +describing +descriptor +descriving +desecrated +desecrater +desecrates +desecrator +deselected +desertions +desertless +deservedly +d�shabill� +desiccants +desiccated +desiccates +desiccator +desiderata +desiderate +desiderium +designable +designated +designates +designator +designedly +designless +designment +desilvered +desinences +desipience +desireless +desirously +desistance +desistence +deskilling +desmodiums +desmosomal +desolately +desolaters +desolating +desolation +desolators +desolatory +d�sorient� +desorption +despairful +despairing +despatched +despatches +desperados +despicable +despicably +despisable +despiteful +despiteous +despoilers +despoiling +despondent +desponding +despotates +despotical +despotisms +despumated +despumates +desquamate +Dessalines +dessiatine +dessyatine +destempers +destroyers +destroying +destructed +destructor +desuetudes +detachable +detachedly +detachment +detainable +detainment +detectable +detectible +detections +detectives +detentions +detergence +detergency +detergents +determents +determined +determiner +determines +deterrence +deterrents +detersions +detersives +detestable +detestably +dethroners +dethroning +detonating +detonation +detonators +detorsions +detortions +detoxicant +detoxicate +detoxified +detoxifies +detracting +detraction +detractive +detractors +detractory +detraining +d�traqu�es +detriments +detritions +detruncate +deuterated +deuterates +deutoplasm +devalorise +devalorize +devaluated +devaluates +devanagari +devastated +devastates +devastator +devastavit +developers +developing +deviancies +deviations +devilesses +devilishly +devilments +devitalise +devitalize +devocalise +devocalize +devolution +devonports +Devonshire +devotement +devotional +devourment +devoutness +dewatering +dexterwise +dextrality +dextrogyre +dextrously +dharmsalas +dharmshala +diabetical +diableries +diabolical +diabolised +diabolises +diabolisms +diabolized +diabolizes +diacaustic +diachronic +diachylons +diachylums +diacodions +diacodiums +diaconates +diaconicon +diacoustic +diacritics +Diadelphia +diagenesis +diagenetic +diagnosing +diagnostic +diagometer +diagonally +diagraphic +diakineses +diakinesis +dialectics +diallagoid +dialogised +dialogises +dialogists +dialogized +dialogizes +dialysable +dialyzable +diamagnets +diamantine +dianthuses +diapedesis +diapedetic +diaperings +diaphanous +diaphragms +diapyetics +diarrhoeal +diarrhoeic +diaskeuast +diastaltic +diastemata +diathermal +diathermic +diatomists +diatretums +diatribist +diatropism +diazeuctic +Dibranchia +dichlorvos +dichotomic +dichroitic +dichromate +dichromats +dichromism +dickcissel +Dickensian +dictaphone +dictations +dictatress +dictatures +dictionary +Dictograph +dicynodont +didactical +didascalic +didelphian +didelphine +didelphous +didgeridoo +didrachmas +Didunculus +didynamian +didynamous +dielectric +dieselised +dieselises +dieselized +dieselizes +dietarians +dietetical +dieticians +dietitians +difference +differency +difficulty +diffidence +difformity +diffracted +diffusedly +diffusible +diffusions +digestedly +digestible +digestions +digestives +digitalise +digitalize +digitately +digitation +digitiform +digitisers +digitising +digitizers +digitizing +digitorium +digladiate +dignifying +digoneutic +digressing +digression +digressive +dijudicate +dilacerate +dilapidate +dilatation +dilatators +dilatorily +dilemmatic +dilettante +dilettanti +diligences +diligently +dilucidate +diluteness +dimensions +dimerising +dimerizing +dimidiated +dimidiates +diminished +diminishes +diminuendo +diminution +diminutive +dimorphism +dimorphous +dimplement +dinanderie +dinnerless +Dinosauria +dinosauric +dinotheres +Diocletian +Diophantus +diophysite +dioptrical +diorthoses +diorthosis +diorthotic +dipetalous +diphtheria +diphtheric +diphthongs +diphyletic +diphyodont +diphysites +Diplodocus +diplomaing +diplomates +diplomatic +Diprotodon +dipsomania +dipterists +dipteroses +directions +directives +directness +Directoire +directress +dirempting +diremption +dirigibles +disability +disabusing +disadorned +disadvance +disaffects +disaffirms +disallowed +disallying +disamenity +disanalogy +disanchors +disanimate +disannexed +disannexes +disanoints +disapparel +disappears +disapplied +disapplies +disappoint +disapprove +disarrange +disarrayed +disastrous +disattuned +disattunes +disavowals +disavowing +disbanding +disbarking +disbarment +disbarring +disbeliefs +disbelieve +disbenched +disbenches +disbenefit +disbosomed +disbudding +disburdens +disbursals +disbursing +disburthen +discanting +discarding +discarnate +discepting +discerners +discerning +discerping +discharged +discharger +discharges +dischuffed +discipline +discission +disclaimed +disclaimer +disclosing +disclosure +discobolus +discolored +discolours +discomfits +discomfort +discommend +discommode +discommons +discompose +disconcert +disconfirm +disconnect +disconsent +discontent +discophile +Discophora +discordant +discordful +discording +discounsel +discounted +discounter +discourage +discoursal +discoursed +discourser +discourses +discovered +discoverer +discredits +discreeter +discreetly +discrepant +discretely +discretion +discretive +discrowned +disculpate +discursion +discursist +discursive +discursory +discussing +discussion +discussive +discutient +disdainful +disdaining +diseaseful +diseconomy +disembarks +disembogue +disembosom +disembowel +disembroil +disemploys +disenabled +disenables +disenchain +disenchant +disenclose +disendowed +disengaged +disengages +disennoble +disenslave +disentails +disenthral +disentitle +disentombs +disentrail +disentrain +disentwine +disenvelop +disenviron +disepalous +disespouse +disesteems +disfavored +disfavours +disfeature +disfigured +disfigures +disfluency +disforests +disforming +disfrocked +disfurnish +disgarnish +disglorify +disgorging +disgowning +disgracers +disgracing +disgrading +disgruntle +disguisers +disguising +disgustful +disgusting +dishabille +dishallows +disharmony +dishearten +dishelming +disherison +disheritor +disheveled +dishonesty +dishonored +dishonorer +dishonours +dishorning +dishorsing +dishousing +dishumours +dishwasher +disilluded +disilludes +disimagine +disimmured +disimmures +disimprove +disincline +disinclose +disinfects +disinfests +disinherit +disinhibit +disinhumed +disinhumes +disinvests +disinvolve +disjecting +disjection +disjoining +disjointed +disjunctor +disleafing +disleaving +dislikable +dislikeful +dislimbing +dislimning +dislinking +disloading +dislocated +dislocates +dislodging +disloyally +disloyalty +dismalness +dismanning +dismantled +dismantler +dismantles +dismasking +dismasting +dismembers +dismissals +dismissing +dismission +dismissive +dismissory +dismounted +disnatured +disnesting +Disneyfied +Disneyfies +Disneyland +disobeying +disobliged +disobliges +disordered +disorderly +disorganic +disorients +disownment +disparaged +disparager +disparages +disparates +disparking +disparting +dispassion +dispatched +dispatcher +dispatches +dispaupers +dispelling +dispensary +dispensers +dispensing +dispeopled +dispeoples +dispermous +dispersals +dispersant +dispersers +dispersing +dispersion +dispersive +dispersoid +dispirited +dispiteous +displacing +displanted +displayers +displaying +displeased +displeases +displosion +displuming +dispondaic +dispondees +disponging +disporting +disposable +disposedly +disposings +dispositor +dispossess +disposting +disposures +dispraised +dispraiser +dispraises +disprinced +disprizing +disprofess +disprofits +disprovals +disproving +dispunging +dispursing +disputable +disputably +disputants +disqualify +disquieted +disquieten +disquieter +disquietly +disranking +disregards +disrespect +disrooting +disrupters +disrupting +disruption +disruptive +disruptors +dissatisfy +disseating +dissecting +dissection +dissective +dissectors +disseising +disseisins +disseisors +disseizing +disseizins +disseizors +disselboom +dissembled +dissembler +dissembles +dissension +dissenters +dissenting +dissertate +disserting +disservice +disserving +dissevered +disshivers +dissidence +dissidents +dissilient +dissimilar +dissimiles +dissipable +dissipated +dissipates +dissociate +dissoluble +dissolutes +dissolvent +dissolving +dissonance +dissonancy +dissuaders +dissuading +dissuasion +dissuasive +dissuasory +distaining +distancing +distasting +distempers +distending +distensile +distension +distensive +distention +disthroned +disthrones +distichous +distilland +distillate +distillers +distillery +distilling +distincter +distinctly +distingu�e +distorting +distortion +distortive +distracted +distrained +distrainee +distrainer +distrainor +distraints +distraught +distressed +distresser +distresses +distribute +districted +distringas +distrouble +distrusted +distruster +disturbant +disturbers +disturbing +disulfiram +disulphate +disulphide +disunities +disuniting +disutility +disvaluing +disworship +disyllabic +disyllable +ditheistic +dithionate +dithyrambs +ditriglyph +ditrochean +ditrochees +dittanders +diurnalist +diuturnity +divagating +divagation +divaricate +divergence +divergency +diversions +divertible +divestible +divestment +divination +divinators +divinatory +divineness +divineress +divinified +divinifies +divinising +divinities +divinizing +divisional +divisively +divulgated +divulgates +divulgence +divulsions +dizzyingly +djellabahs +Dobermanns +Docetistic +dochmiacal +dochmiuses +docibility +docimasies +docimastic +docimology +doctorands +doctorated +doctorates +doctorship +doctresses +docudramas +documental +documented +dodecagons +Dodecanese +dogaressas +dogberries +doggedness +dogmatical +dogmatised +dogmatiser +dogmatises +dogmatists +dogmatized +dogmatizer +dogmatizes +dolcelatte +dolcemente +dolesomely +dolichoses +Dolichotis +dolichurus +D'Oliveira +dollarless +dollarship +dolomitise +dolomitize +dolorously +domiciling +dominances +dominantly +dominating +domination +dominative +dominators +dominatrix +domineered +Dominicans +donataries +donatistic +donatories +Donnybrook +doodlebugs +doohickeys +doomsayers +doomsaying +doorframes +doorhandle +doorknocks +dopplerite +Dorchester +Dormobiles +dorsifixed +dorsigrade +dosimeters +Dostoevski +Dostoevsky +doubleness +doubletons +doubletree +doubtfully +doubtingly +doughfaced +doughiness +doughtiest +Doukhobors +doulocracy +dovetailed +dowitchers +downbursts +downcomers +downfallen +downgraded +downgrades +downloaded +downlooked +downplayed +downrushes +downshifts +downsizing +downspouts +downstairs +downstream +downstroke +downswings +downtrends +downturned +downwardly +doxography +doxologies +drabbiness +drabblings +draconites +Dracontium +draftiness +dragonhead +dragonised +dragonises +dragonized +dragonizes +dragonlike +dragonnade +dragooning +drainboard +drakestone +dramatical +dramatised +dramatises +dramatists +dramatized +dramatizes +dramaturge +dramaturgy +dratchells +draughters +draughtier +draughting +draughtman +draughtmen +drawbridge +Drawcansir +drawlingly +dreadfully +dreadlocks +dreamboats +dreameries +dreamholes +dreaminess +dreamingly +dreamlands +dreamwhile +drearihead +dreariment +dreariness +drearisome +dregginess +dreikanter +drepaniums +dressiness +dressmaker +drivellers +drivelling +driverless +drizzliest +drolleries +droopiness +droopingly +drosometer +drosophila +drossiness +droughtier +drouthiest +drowsiness +drudgeries +drudgingly +Druidesses +drumfishes +drumsticks +drupaceous +drysalters +drysaltery +dubitating +dubitation +dubitative +duckfooted +duckshoved +duckshoves +dukkeripen +dulcamaras +dulcifying +dulciloquy +dulcitones +dullsville +dumbfounds +dumbledore +dumbstruck +dumbwaiter +dumfounded +dumfounder +dunderfunk +dunderhead +dunderpate +Dundonians +dungeoners +dungeoning +duniwassal +duodecimal +duodecimos +duodenitis +dupability +duplicands +duplicated +duplicates +duplicator +durability +durational +D�sseldorf +Dutchwoman +Dutchwomen +duumvirate +dwarfishly +dynamicist +dynamising +dynamistic +dynamitard +dynamiters +dynamiting +dynamizing +dynamogeny +dynamotors +dynastical +dyophysite +dyothelete +dyothelism +dysarthria +dyscrasite +dysenteric +dysgraphia +dysgraphic +dyskinesia +dyslectics +dyspeptics +dysphemism +dysplastic +dysprosium +dysthymiac +dystrophia +dystrophic +dystrophin +dziggetais diff --git a/com/agnibho/code/anagram/dictionary/D11.txt b/com/agnibho/code/anagram/dictionary/D11.txt new file mode 100644 index 0000000..42c0b92 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D11.txt @@ -0,0 +1,1322 @@ +dactylogram +dactylology +damasceened +damasceenes +damascening +damaskeened +damaskining +damasquined +damnability +dampishness +damselflies +dangerously +dapperlings +Dardanelles +Dasipodidae +dastardness +dauntlessly +daydreamers +daydreaming +deaconesses +deaconhoods +deaconships +deactivated +deactivates +deadheading +deadlocking +deafeningly +dealerships +deaspirated +deaspirates +deathlessly +deathliness +debarcation +debarkation +debarrassed +debarrasses +debasedness +debasements +debauchedly +debauchment +debilitated +debilitates +debouchment +debouchures +d�bridement +decadencies +decagrammes +decahedrons +decalcified +decalcifies +decalogists +decameronic +decampments +decantation +decapitated +decapitates +decapitator +decarbonate +decarbonise +decarbonize +decarburise +decarburize +decathletes +decaudating +deceitfully +deceivingly +decelerated +decelerates +decelerator +Decemberish +decemvirate +decennaries +deceptively +decerebrate +decerebrise +decerebrize +decigrammes +decillionth +decimalised +decimalises +decimalists +decimalized +decimalizes +decimations +decipherers +deciphering +decivilised +decivilises +decivilized +decivilizes +declaimants +declaimings +declamation +declamatory +declaration +declarative +declarators +declaratory +declensions +declination +declinatory +declinature +declivities +declivitous +declutching +decoctibles +decollating +decollation +d�colletage +decolonised +decolonises +decolonized +decolonizes +decolorants +decolorated +decolorates +decolorised +decolorises +decolorized +decolorizes +decolouring +decolourise +decolourize +decomposers +decomposing +decomposite +decompounds +decongested +deconstruct +decorations +decorticate +decremented +decrepitate +decrepitude +decrescendo +decryptions +decubituses +decumbences +decumbently +decumbiture +decurionate +decurrently +decursively +decurvation +decussately +decussating +decussation +dedications +dedramatise +dedramatize +deducements +deductively +deemphasise +deemphasize +deerberries +deerstalker +defacements +defalcation +defalcators +defamations +defeasanced +defeasances +defecations +defectively +defenceless +defensative +defenseless +defensively +deferential +defeudalise +defeudalize +defiantness +defibrinate +defibrinise +defibrinize +deficiences +deficiently +defilements +defiliation +definiendum +definientia +definitions +definitives +deflagrable +deflagrated +deflagrates +deflagrator +deflections +deflexional +deflorating +defloration +deflowerers +deflowering +defoliating +defoliation +defoliators +deforcement +deforciants +deforesting +deformation +deformities +defraudment +defrayments +degarnished +degarnishes +degenerated +degenerates +deglutinate +deglutition +deglutitive +deglutitory +degradation +degreasants +degressions +d�gringoler +degustating +degustation +degustatory +dehiscences +dehortation +dehortative +dehortatory +dehumanised +dehumanises +dehumanized +dehumanizes +dehydraters +dehydrating +dehydration +dehydrators +dehypnotise +dehypnotize +deictically +deification +deistically +delaminated +delaminates +d�lassement +delectation +delegations +deleterious +deliberated +deliberates +deliberator +deliciously +deligations +delightedly +delightless +delightsome +delimitated +delimitates +delineating +delineation +delineative +delineators +delinquency +delinquents +deliquesced +deliquesces +delirations +deliriously +delitescent +deliverable +deliverance +delphically +Delphinidae +delphiniums +delusionist +demagnetise +demagnetize +demagogical +demagoguery +demagoguism +demarcating +demarcation +demarkation +dementating +demigoddess +demigration +demiurgeous +demiurgical +demiurguses +demobilised +demobilises +demobilized +demobilizes +democracies +democratise +democratist +democratize +demodulated +demodulates +demodulator +demographer +demographic +demoiselles +demolishers +demolishing +demolitions +demonetised +demonetises +demonetized +demonetizes +demoniacism +demonianism +demonocracy +demonolater +demonolatry +demonologic +demonomania +demonstrate +demoralised +demoralises +demoralized +demoralizes +Demosthenes +Demosthenic +demoticists +demotivated +demotivates +demountable +demulsified +demulsifier +demulsifies +demutualise +demutualize +demyelinate +demystified +demystifies +denaturants +denaturised +denaturises +denaturized +denaturizes +denazifying +dendrachate +dendritical +dendrobiums +dendroglyph +dendrograms +dendrolatry +dendrometer +denegations +denervating +denervation +deniability +denigrating +denigration +denigrators +denitrating +denitration +denitrified +denitrifies +denizations +denizenship +denominable +denominated +denominates +denominator +denotations +denouements +densimeters +densimetric +denticulate +dentifrices +dentigerous +denudations +denumerable +denumerably +denunciated +denunciates +denunciator +deobstruent +deodorisers +deodorising +deodorizers +deodorizing +deoppilated +deoppilates +deoxidating +deoxidation +deoxidisers +deoxidising +deoxidizers +deoxidizing +deoxygenate +deoxygenise +deoxygenize +deoxyribose +d�partement +departments +depasturing +depauperate +depauperise +depauperize +dependences +dependently +dependingly +dephlegmate +depicturing +depilations +deploration +deploringly +deployments +deplumation +depolarised +depolarises +depolarized +depolarizes +depopulated +depopulates +depopulator +deportation +deportments +depositions +depravation +depravement +depravingly +depravities +deprecating +deprecation +deprecative +deprecators +deprecatory +depreciated +depreciates +depreciator +depredating +depredation +depredators +depredatory +depressants +depressible +depressions +depressives +deprivation +deprivative +deprivement +deprogramme +depurations +depuratives +deputations +deracialise +deracialize +deracinated +deracinates +d�railleurs +derailments +derangement +derationing +derecognise +derecognize +deregisters +deregulated +deregulates +dereliction +derestricts +derivations +derivatives +dermatogens +dermatology +dermography +derogations +desacralise +desacralize +d�sagr�ment +desalinated +desalinates +desalinator +desalinised +desalinises +desalinized +desalinizes +descendable +descendants +descendible +descensions +deschoolers +deschooling +descrambled +descrambler +descrambles +describable +description +descriptive +descriptors +desecraters +desecrating +desecration +desecrators +desegregate +deselecting +deselection +desensitise +desensitize +deserpidine +deservingly +desexualise +desexualize +d�shabill�s +desiccating +desiccation +desiccative +desiccators +desiderated +desiderates +desideratum +designating +designation +designative +designators +designatory +designingly +designments +desilvering +desilverise +desilverize +desipiences +desistances +desistences +desmodromic +desolations +desorptions +despatching +desperadoes +desperately +desperation +despoilment +despondence +despondency +despondings +despumating +despumation +desquamated +desquamates +dessiatines +dessyatines +destabilise +destabilize +destempered +destination +destitution +destroyable +destructing +destruction +destructive +destructors +desulphured +desultorily +detachments +detainments +detectivist +deteriorate +deteriorism +deteriority +determinacy +determinant +determinate +determiners +determining +determinism +determinist +deterrences +detestation +dethronings +detonations +detoxicants +detoxicated +detoxicates +detoxifying +detractings +detractions +detractress +detrainment +detribalise +detribalize +detrimental +detruncated +detruncates +deuteranope +deuterating +deuteration +deuterogamy +Deuteronomy +deutoplasms +Deutschland +Deutschmark +devalorised +devalorises +devalorized +devalorizes +devaluating +devaluation +devastating +devastation +devastative +devastators +developable +development +deviousness +devitalised +devitalises +devitalized +devitalizes +devitrified +devitrifies +devocalised +devocalises +devocalized +devocalizes +devolutions +devolvement +devotedness +devotionist +devouringly +devourments +dexiotropic +dexterities +dexterously +dharmshalas +diabolising +diabolizing +diabologies +diabolology +diachronism +diachronous +diaconicons +diacoustics +diacritical +diadelphous +diagnosable +diagnostics +diagometers +dialectally +dialectical +dialogising +dialogistic +dialogizing +diamagnetic +diametrally +diametrical +diamondback +diamorphine +diaphaneity +diaphoresis +diaphoretic +diaphragmal +diapophyses +diapophysis +diapositive +diarthrosis +diascordium +diaskeuasts +diastematic +diastrophic +diatessaron +diathermacy +diathermous +diatribists +dicasteries +dicephalous +dichogamies +dichogamous +dichotomies +dichotomise +dichotomist +dichotomize +dichotomous +dichromatic +dichroscope +dickcissels +dicotyledon +dictaphones +dictatorial +dictatrixes +dicynodonts +didacticism +didactylous +Didelphidae +didgeridoos +dielectrics +dieselising +dieselizing +differences +differentia +differently +difficultly +diffidently +diffracting +diffraction +diffractive +diffuseness +diffusively +diffusivity +digestively +digitalised +digitalises +digitalized +digitalizes +digitations +digitigrade +digitoriums +digladiated +digladiates +digladiator +dignitaries +digressions +dijudicated +dijudicates +dilacerated +dilacerates +dilapidated +dilapidates +dilapidator +dilatations +dilettantes +dilutionary +diluvialism +diluvialist +dimensional +dimensioned +dimidiating +dimidiation +diminishing +diminuendos +diminutions +diminutives +dimplements +Dinotherium +dioestruses +Diophantine +diophysites +dioristical +diphtheroid +diphthongal +diphthongic +diphycercal +diphyodonts +diphysitism +diplococcus +diplomacies +diplomatics +diplomatise +diplomatist +diplomatize +diprotodont +Dipsacaceae +dipsomaniac +dipterocarp +directional +directivity +directorate +directorial +directories +directrices +directrixes +direfulness +diremptions +disablement +disaccustom +disadorning +disadvanced +disadvances +disaffected +disaffirmed +disafforest +disagreeing +disallowing +disanchored +disanimated +disanimates +disannexing +disannulled +disannuller +disanointed +disapparels +disappeared +disapplying +disappoints +disapproval +disapproved +disapproves +disarmament +disarmingly +disarranged +disarranges +disarraying +disassemble +disassembly +disattuning +disbandment +disbarments +disbelieved +disbeliever +disbelieves +disbenching +disbenefits +disbosoming +disbowelled +disbranched +disbranches +disburdened +disburthens +discalceate +discardment +disceptator +discernible +discernibly +discernment +discerpible +discerption +discerptive +dischargers +discharging +disciplinal +disciplined +discipliner +disciplines +discissions +disclaimers +disclaiming +disclosures +discography +discoloring +discoloured +discomfited +discomforts +discommends +discommoded +discommodes +discommoned +discomposed +discomposes +discomycete +disconcerts +disconfirms +disconnects +disconsents +discontents +discontinue +discophiles +discophoran +discordance +discordancy +discotheque +discounters +discounting +discouraged +discourages +discoursing +discoursive +discourtesy +discoverers +discoveries +discovering +discredited +discreetest +discrepance +discrepancy +discretions +discrowning +disculpated +disculpates +discursions +discursists +discussable +discussible +discussions +disembarked +disembitter +disembodied +disembodies +disembogued +disembogues +disembosoms +disembowels +disembroils +disemburden +disemployed +disenabling +disenchains +disenchants +disenclosed +disencloses +disencumber +disendowing +disengaging +disennobled +disennobles +disenrolled +disenshroud +disenslaved +disenslaves +disentailed +disentangle +disenthrall +disenthrals +disenthrone +disentitled +disentitles +disentombed +disentrains +disentrance +disentwined +disentwines +disenvelops +disenvirons +disesteemed +disfavoring +disfavoured +disfavourer +disfeatured +disfeatures +disfiguring +disforested +disfrocking +disgarrison +disgavelled +disgraceful +disgracious +disgruntled +disgruntles +disguisable +disguisedly +disguisings +disgustedly +dishabilles +dishallowed +disharmonic +disheartens +disheritors +disheveling +dishevelled +dishonestly +dishonorary +dishonorers +dishonoring +dishonoured +dishonourer +dishumoured +dishwashers +disilluding +disillusion +disillusive +disimagined +disimagines +disimmuring +disimprison +disimproved +disimproves +disinclined +disinclines +disinclosed +disincloses +disinfected +disinfector +disinfested +disinherits +disinhibits +disinhuming +disinterest +disinterred +disinvested +disinvolved +disinvolves +disjections +disjointing +disjunction +disjunctive +disjunctors +disjuncture +dislikeable +dislikeness +dislocating +dislocation +dislodgment +dismantlers +dismantling +dismastment +dismayfully +dismembered +dismissible +dismissions +dismounting +dismutation +Disneyesque +Disneyfying +disobedient +disobliging +disordering +disordinate +disorganise +disorganize +disoriented +disownments +disparagers +disparaging +disparately +disparities +dispatchers +dispatchful +dispatching +dispaupered +dispensable +dispensably +dispensator +dispeopling +dispersants +dispersedly +dispersions +dispersoids +dispiriting +displanting +displeasant +displeasing +displeasure +disportment +disposingly +disposition +dispositive +dispositors +dispraisers +dispraising +dispreading +disproperty +disprovable +disputation +disputative +disquietens +disquietful +disquieting +disquietive +disquietous +disquietude +disregarded +disrelished +disrelishes +disremember +disruptions +dissectible +dissectings +dissections +dissemblers +dissemblies +dissembling +disseminate +disseminule +dissensions +dissentient +dissentious +dissepiment +dissertated +dissertates +dissertator +disservices +dissevering +disshivered +dissidences +dissilience +dissimilate +dissimulate +dissipating +dissipation +dissipative +dissociable +dissociably +dissociated +dissociates +dissolutely +dissolution +dissolutive +dissolvable +dissolvents +dissolvings +dissonances +dissonantly +dissuasions +dissyllable +dissymmetry +Distalgesic +distantness +distasteful +distempered +distensible +distensions +distentions +disthroning +distillable +distillands +distillates +distillings +distinctest +distinction +distinctive +distincture +distinguish +distortions +distracting +distraction +distractive +distrainees +distrainers +distraining +distrainors +distressers +distressful +distressing +distribuend +distributed +distributee +distributer +distributes +distributor +districting +distrusters +distrustful +distrusting +disturbance +disturbants +disulphates +disulphides +disulphuret +disulphuric +disunionist +disyllabify +disyllabism +disyllables +dithionates +dithyrambic +ditriglyphs +dittography +dittologies +diurnalists +divagations +divaricated +divaricates +divellicate +divergement +divergences +divergently +divergingly +diverseness +diversified +diversifies +diversities +diverticula +divertingly +divestiture +divestments +divinations +divinifying +divisionary +divisionism +divisionist +divorceable +divorcement +divulgating +divulgation +divulgement +divulgences +docibleness +dockisation +dockization +doctorating +doctoresses +doctorships +doctrinaire +doctrinally +documentary +documenting +Dodecagynia +Dodecandria +dodecaphony +dodecastyle +Dogberrydom +Dogberryism +doggishness +dogmatisers +dogmatising +dogmatizers +dogmatizing +dogmatology +dolabriform +dolcelattes +dolefulness +dollarships +dollishness +dolomitised +dolomitises +dolomitized +dolomitizes +dolphinaria +doltishness +domesticate +domesticise +domesticity +domesticize +domiciliary +domiciliate +dominancies +dominations +domineering +Donnybrooks +doomwatched +doomwatcher +doomwatches +doorhandles +doorstepped +doorstepper +doorstopper +dormitories +dorsiferous +dorsolumbar +Dostoyevski +Dostoyevsky +doublespeak +doubletrees +doubtlessly +doughnutted +doughtiness +douroucouli +dovetailing +downgrading +downhearted +downlighter +downloading +Downpatrick +downplaying +downshifted +downstrokes +downtrodden +doxographer +dracunculus +draftswoman +draftswomen +dragonesses +dragonflies +dragonheads +dragonising +dragonizing +dragonnades +drainboards +drakestones +dramaticism +dramatising +dramatizing +dramaturges +dramaturgic +drastically +draughtiest +draughtsman +draughtsmen +drawbridges +Drawcansirs +dreadlessly +dreadnaught +dreadnought +dreamlessly +dreikanters +dressmakers +dressmaking +drivability +dromedaries +dromophobia +dronishness +Droseraceae +drosometers +drosophilas +droughtiest +drunkenness +drunkometer +dubiousness +dubitations +duckshoving +ductileness +dulcifluous +dulocracies +dumbfounded +dumbfounder +dumbledores +dumbwaiters +dumfounders +dumfounding +dumpishness +dunderfunks +dunderheads +dunderpates +Dunfermline +duniewassal +duniwassals +duplicating +duplication +duplicative +duplicators +duplicature +duplicities +duplicitous +dupondiuses +durableness +duskishness +duteousness +dutifulness +duumvirates +dwindlement +dynamically +dynamicists +dynamitards +dynamograph +dynamometer +dynamometry +dyophysites +dyotheletes +dyotheletic +dysfunction +dysharmonic +dyslogistic +dyspareunia +dyspathetic +dyspeptical +dysphemisms +dysrhythmia +dysthymiacs diff --git a/com/agnibho/code/anagram/dictionary/D12.txt b/com/agnibho/code/anagram/dictionary/D12.txt new file mode 100644 index 0000000..e37437f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D12.txt @@ -0,0 +1,1037 @@ +dactylically +dactyliology +dactylograms +dactyloscopy +daffodillies +Dallapiccola +damasceening +damaskeening +damasquining +damnableness +Dantophilist +Darlingtonia +dasyphyllous +daughterling +dauphinesses +deactivating +deactivation +dealcoholise +dealcoholize +deambulatory +dearticulate +deaspirating +deaspiration +debarcations +debarkations +debarrassing +debaucheries +debauchments +debilitating +debilitation +debilitative +debonairness +debouchments +decaffeinate +decalcifying +decalcomania +decalescence +decantations +decapitalise +decapitalize +decapitating +decapitation +decapitators +decarbonated +decarbonates +decarbonised +decarbonises +decarbonized +decarbonizes +decarburised +decarburises +decarburized +decarburizes +decasyllabic +decasyllable +decelerating +deceleration +decelerators +decemvirates +decentralise +decentralize +decerebrated +decerebrates +decerebrised +decerebrises +decerebrized +decerebrizes +decillionths +decimalising +decimalizing +decipherable +decipherment +decisiveness +decitizenise +decitizenize +decivilising +decivilizing +declamations +declarations +declassified +declassifies +declensional +declinations +declinatures +declinometer +decollations +d�colletages +decolonising +decolonizing +decolorating +decoloration +decolorising +decolorizing +decolourised +decolourises +decolourized +decolourizes +decommission +decomposable +decompounded +decompressed +decompresses +decompressor +decongestant +decongesting +decongestion +decongestive +deconsecrate +deconstructs +decontrolled +decoratively +decorousness +decorticated +decorticates +decrassified +decrassifies +decreasingly +decrementing +decrepitated +decrepitates +decrepitness +decrescendos +decrustation +decumbencies +decumbitures +decurionates +decurrencies +decussations +dedicational +dedicatorial +dedramatised +dedramatises +dedramatized +dedramatizes +deducibility +deemphasised +deemphasises +deemphasized +deemphasizes +deepwaterman +deepwatermen +deerstalkers +deerstalking +defalcations +defamatorily +defectionist +defenestrate +defensatives +defeudalised +defeudalises +defeudalized +defeudalizes +defibrinated +defibrinates +defibrinised +defibrinises +defibrinized +defibrinizes +deficiencies +defiliations +definability +definiteness +definitional +definitively +deflagrating +deflagration +deflagrators +deflationary +deflationist +deflectional +deflorations +defoliations +deforcements +deformations +deformedness +defraudation +defraudments +degarnishing +degeneracies +degenerately +degenerating +degeneration +degenerative +deglutinated +deglutinates +deglutitions +degradations +d�gringolade +d�gringolers +degustations +dehortations +dehumanising +dehumanizing +dehumidified +dehumidifier +dehumidifies +dehydrations +dehypnotised +dehypnotises +dehypnotized +dehypnotizes +deifications +Deinotherium +dejectedness +delaminating +delamination +delectations +deliberately +deliberating +deliberation +deliberative +deliberators +delicateness +delicatessen +delightfully +delimitating +delimitation +delimitative +delineations +delinquently +deliquescent +deliquescing +delitescence +deliverances +deltiologist +delusionists +delusiveness +demagnetised +demagnetiser +demagnetises +demagnetized +demagnetizer +demagnetizes +demarcations +demarkations +dementedness +demigrations +demilitarise +demilitarize +demineralise +demineralize +demobilising +demobilizing +democratical +democratised +democratises +democratists +democratized +democratizes +demodulating +demodulation +demographers +demographics +demolishment +demonetising +demonetizing +demoniacally +demonolaters +demonologies +demonologist +demonstrable +demonstrably +demonstrated +demonstrates +demonstrator +demoralising +demoralizing +demotivating +demulsifiers +demulsifying +demutualised +demutualises +demutualized +demutualizes +demyelinated +demyelinates +demystifying +denaturalise +denaturalize +denaturising +denaturizing +Denbighshire +dendroglyphs +dendrologist +dendrologous +dendrometers +dendrophises +denigrations +denitrations +denitrifying +denominating +denomination +denominative +denominators +denotatively +denouncement +densitometer +densitometry +denticulated +dentilingual +dentirostral +denuclearise +denuclearize +denunciating +denunciation +denunciators +denunciatory +deobstruents +deontologist +deoppilating +deoppilation +deoppilative +deoxidations +deoxygenated +deoxygenates +deoxygenised +deoxygenises +deoxygenized +deoxygenizes +d�partements +departmental +depauperated +depauperates +depauperised +depauperises +depauperized +depauperizes +dependencies +dephlegmated +dephlegmates +dephlegmator +depilatories +deplorations +depolarising +depolarizing +depoliticise +depoliticize +depolymerise +depolymerize +depopulating +depopulation +depopulators +deportations +depositaries +depositation +depositional +depositories +depravations +depravedness +depravements +deprecations +depreciating +depreciation +depreciative +depreciators +depreciatory +depredations +depressingly +depressurise +depressurize +deprivations +deprivements +deprogrammed +deprogrammes +deracialised +deracialises +deracialized +deracializes +deracinating +deracination +derangements +derecognised +derecognises +derecognized +derecognizes +deregistered +deregulating +deregulation +derelictions +derestricted +derisiveness +derivational +derivatively +dermabrasion +dermatophyte +derogatively +derogatorily +Derwentwater +desacralised +desacralises +desacralized +desacralizes +desalinating +desalination +desalinators +desalinising +desalinizing +desaturation +descensional +descramblers +descrambling +descriptions +desecrations +desegregated +desegregates +deselections +desensitised +desensitiser +desensitises +desensitized +desensitizer +desensitizes +deservedness +desexualised +desexualises +desexualized +desexualizes +desiccations +desiccatives +desiderating +desideration +desiderative +designations +desilverised +desilverises +desilverized +desilverizes +desirability +desirousness +desolateness +despairingly +despisedness +despitefully +despoliation +despondently +despondingly +despotically +despotocracy +despumations +desquamating +desquamation +desquamative +desquamatory +dessertspoon +destabilised +destabiliser +destabilises +destabilized +destabilizer +destabilizes +destempering +destinations +destructible +destructions +desulphurate +desulphuring +desulphurise +desulphurize +detachedness +detectivists +detectophone +deteriorated +deteriorates +determinable +determinably +determinants +determinedly +determinists +detestations +dethronement +detoxicating +detoxication +detractingly +detractively +detrainments +detribalised +detribalises +detribalized +detribalizes +detruncating +detruncation +detumescence +deuteranopes +deuteranopia +deuteranopic +Deuteronomic +deuteroplasm +deuteroscopy +deutoplasmic +Deutschmarks +devalorising +devalorizing +devaluations +devastations +developments +deviationism +deviationist +devilishness +devitalising +devitalizing +devitrifying +devocalising +devocalizing +devolvements +devotionally +devotionists +dextrocardia +dextrogyrate +dextrousness +diabolically +diageotropic +diagrammatic +dialectician +dialecticism +dialectology +diamagnetism +diaphanously +diaphoretics +diapophysial +diastrophism +diatessarons +diathermancy +diatomaceous +diatonically +Dibranchiata +dibranchiate +dicarpellary +dichotomised +dichotomises +dichotomists +dichotomized +dichotomizes +dichromatism +dichrooscope +dichroscopes +dichroscopic +dicotyledons +dictatorship +dictatresses +dictionaries +didactically +Didelphyidae +diencephalon +dietetically +diethylamine +differencies +differentiae +differential +difficulties +difformities +diffractions +diffrangible +diffusedness +diffusionism +diffusionist +digitalising +digitalizing +digitisation +digitization +digladiating +digladiation +digladiators +digressional +digressively +dijudicating +dijudication +dilacerating +dilaceration +dilapidating +dilapidation +dilapidators +dilatability +dilatoriness +dilettantish +dilettantism +dilucidation +diluvialists +dimensioning +dimerisation +dimerization +dimidiations +diminishable +diminishings +diminishment +diminuendoes +diminutively +diphtheritic +diphtheritis +diphthongise +diphthongize +diplogenesis +diplomatical +diplomatised +diplomatises +diplomatists +diplomatized +diplomatizes +diprionidian +diprotodonts +dipsomaniacs +dipterocarps +directorates +directorship +directresses +disabilities +disablements +disaccharide +disaccordant +disaccustoms +disadvancing +disadvantage +disadventure +disaffecting +disaffection +disaffiliate +disaffirming +disafforests +disaggregate +disagreeable +disagreeably +disagreement +disallowable +disallowance +disambiguate +disanalogies +disanalogous +disanchoring +disanimating +disannullers +disannulling +disannulment +disanointing +disappearing +disappointed +disapprovals +disapproving +disarranging +disassembled +disassembler +disassembles +disassociate +disastrously +disauthorise +disauthorize +disbandments +disbelievers +disbelieving +disbowelling +disbranching +disburdening +disbursement +disburthened +discalceates +disceptation +disceptators +discerningly +discerptible +discerptions +discipleship +disciplinant +disciplinary +discipliners +disciplining +disclamation +discographer +discolouring +Discomedusae +discomedusan +discomfiting +discomfiture +discomforted +discommended +discommoding +discommodity +discommoning +discommunity +discomposing +discomposure +discomycetes +disconcerted +disconfirmed +disconnected +disconnexion +disconsented +disconsolate +discontented +discontinued +discontinues +discophorans +discophorous +discordances +discordantly +discorporate +discotheques +discountable +discouraging +discourteous +discoverable +discoverture +discrediting +discreetness +discrepances +discreteness +discretional +discretively +discriminant +discriminate +disculpating +discursively +disdainfully +diseasedness +diseconomies +disembarking +disembarrass +disembellish +disembitters +disembodying +disemboguing +disembosomed +disembroiled +disemburdens +disemploying +disenchained +disenchanted +disenchanter +disenclosing +disencumbers +disendowment +disennobling +disenrolling +disenshrouds +disenslaving +disentailing +disentangled +disentangles +disenthralls +disentitling +disentombing +disentrained +disentranced +disentrances +disentwining +disenveloped +disenvironed +disestablish +disesteeming +disfavourers +disfavouring +disfeaturing +disforesting +disfranchise +disgarnished +disgarnishes +disgarrisons +disgavelling +disgorgement +disgradation +disgregation +disgruntling +disguiseless +disguisement +disgustfully +disgustingly +dishallowing +disharmonies +disharmonise +disharmonize +disheartened +dishevelling +dishevelment +dishonesties +dishonorable +dishonorably +dishonourers +dishonouring +dishumouring +disillusions +disimagining +disimprisons +disimproving +disincentive +disinclining +disinclosing +disinfectant +disinfecting +disinfection +disinfectors +disinfesting +disinflation +disingenuity +disingenuous +disinherison +disinherited +disinhibited +disintegrate +disinterment +disinterring +disintricate +disinvesting +disinvolving +disjointedly +disjunctions +disjunctives +disjunctures +dislocatedly +dislocations +dislodgement +dislodgments +disloyalties +dismastments +dismayedness +dismembering +dismutations +disobedience +disoperation +disorganised +disorganises +disorganized +disorganizes +disorientate +disorienting +dispaupering +dispauperise +dispauperize +dispensaries +dispensation +dispensative +dispensators +dispensatory +dispiritedly +dispiritment +dispiteously +displaceable +displacement +displeasance +displeasedly +displeasures +dispositions +dispossessed +dispossesses +dispossessor +disprivacied +disprivilege +disprofessed +disprofesses +disputations +disputatious +disqualified +disqualifier +disqualifies +disquietened +disquietness +disquisition +disquisitive +disquisitory +disregardful +disregarding +disrelishing +disremembers +disreputable +disreputably +disruptively +dissatisfied +dissatisfies +dissemblance +disseminated +disseminates +disseminator +disseminules +dissenterish +dissenterism +dissentients +dissentingly +dissepiments +dissertating +dissertation +dissertative +dissertators +disseverance +disseverment +disshivering +dissimilarly +dissimilated +dissimilates +dissimulated +dissimulates +dissimulator +dissipatedly +dissipations +dissocialise +dissociality +dissocialize +dissociating +dissociation +dissociative +dissolutions +dissonancies +dissuasively +dissuasories +dissyllables +dissymmetric +distanceless +distemperate +distempering +distillation +distillatory +distilleries +distinctions +distinctness +distractedly +distractible +distractions +distrainable +distrainment +distribuends +distributary +distributees +distributers +distributing +distribution +distributive +distributors +distringases +distrustless +disturbances +disturbative +disturbingly +disunionists +disutilities +ditheistical +dithyrambist +ditriglyphic +divaricating +divarication +divellicated +divellicates +divergencies +diversifying +diversionary +diversionist +diverticular +diverticulum +divertimenti +divertimento +divinatorial +divineresses +divisibility +divisionists +divisiveness +divorcements +divulgations +doctrinaires +doctrinarian +dodecagynian +dodecagynous +dodecahedral +dodecahedron +dodecandrous +dodecaphonic +dodecastyles +dogmatically +dolichuruses +dollarocracy +dolomitising +dolomitizing +doloriferous +dolorousness +dolphinarium +domesticable +domestically +domesticated +domesticates +domesticator +domesticised +domesticises +domesticized +domesticizes +domiciliated +domiciliates +dominatrices +donatistical +Donnerwetter +doomwatchers +doomwatching +doorsteppers +doorstepping +doorstoppers +doppelg�nger +dorsiflexion +dorsiventral +doubtfulness +doughnutting +douroucoulis +downlighters +downshifting +downwardness +doxographers +dracontiasis +dramatically +dramatisable +dramatizable +dramaturgist +draughtboard +draughtiness +drawlingness +dreadfulness +dreadnaughts +dreadnoughts +driveability +droseraceous +droughtiness +drunkometers +drysalteries +dubitatively +dumbfounders +dumbfounding +dumfoundered +dumortierite +dunderheaded +duniewassals +dunniewassal +duodecennial +duodenectomy +duplications +duplicatures +dwarfishness +dynamographs +dynamometers +dynamometric +dynastically +dyotheletism +dysaesthesia +dysaesthetic +dysfunctions +dysmenorrhea +dysphemistic +dysteleology diff --git a/com/agnibho/code/anagram/dictionary/D13.txt b/com/agnibho/code/anagram/dictionary/D13.txt new file mode 100644 index 0000000..1c51607 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D13.txt @@ -0,0 +1,673 @@ +dactyliomancy +dactylography +daguerreotype +daguerreotypy +damageability +damnification +dangerousness +dastardliness +daughterboard +daughterlings +dauntlessness +deactivations +dealcoholised +dealcoholises +dealcoholized +dealcoholizes +dearticulated +dearticulates +deaspirations +deathlessness +debauchedness +debilitations +decaffeinated +decaffeinates +decalcomanias +decapitalised +decapitalises +decapitalized +decapitalizes +decapitations +decarbonating +decarbonation +decarbonising +decarbonizing +decarboxylase +decarburising +decarburizing +decasyllables +deceitfulness +deceivability +decelerometer +decentralised +decentralises +decentralized +decentralizes +deceptibility +deceptiveness +decerebrating +decerebration +decerebrising +decerebrizing +deciduousness +decipherments +decitizenised +decitizenises +decitizenized +decitizenizes +declamatorily +declaratively +declaratorily +declassifying +declinometers +decolorations +decolourising +decolourizing +decommissions +decomposition +decompounding +decompressing +decompression +decompressive +decompressors +decongestants +decongestions +deconsecrated +deconsecrates +deconstructed +decontaminant +decontaminate +decontrolling +decorticating +decortication +decrassifying +decrepitating +decrepitation +decriminalise +decriminalize +dedramatising +dedramatizing +deducibleness +deductibility +deemphasising +deemphasizing +defeasibility +defectibility +defectionists +defectiveness +defencelessly +defenestrated +defenestrates +defenselessly +defensibility +defensiveness +deferentially +defervescence +defervescency +defeudalising +defeudalizing +defibrillator +defibrinating +defibrination +defibrinising +defibrinizing +deficientness +deflagrations +deflationists +deforestation +deformability +defraudations +degenerations +deglutinating +deglutination +d�gringolades +d�gringolered +dehumidifiers +dehumidifying +dehydrogenate +dehypnotising +dehypnotizing +deipnosophist +delectability +deleteriously +deliberations +delicatessens +deliciousness +delightedness +delimitations +delinquencies +deliquescence +delirifacient +deliriousness +deltiologists +demagnetisers +demagnetising +demagnetizers +demagnetizing +dematerialise +dematerialize +demigoddesses +demilitarised +demilitarises +demilitarized +demilitarizes +demineralised +demineralises +demineralized +demineralizes +demiurgically +democratising +democratizing +demodulations +demographical +demolishments +demolitionist +demonocracies +demonological +demonologists +demonstrating +demonstration +demonstrative +demonstrators +demonstratory +demutualising +demutualizing +demyelinating +demyelination +demythologise +demythologize +denationalise +denationalize +denaturalised +denaturalises +denaturalized +denaturalizes +Dendrocalamus +dendrological +dendrologists +denominations +denouncements +densitometers +densitometric +denticulation +denuclearised +denuclearises +denuclearized +denuclearizes +denunciations +deodorisation +deodorization +deontological +deontologists +deoxidisation +deoxidization +deoxygenating +deoxygenising +deoxygenizing +depauperating +depauperising +depauperizing +dependability +depersonalise +depersonalize +dephlegmating +dephlegmation +dephlegmators +deplorability +depoliticised +depoliticises +depoliticized +depoliticizes +depolymerised +depolymerises +depolymerized +depolymerizes +depopulations +depositations +deprecatingly +deprecatorily +depreciations +depressurised +depressurises +depressurized +depressurizes +deprogramming +deracialising +deracializing +deracinations +derecognising +derecognition +derecognizing +deregistering +deregulations +dereligionise +dereligionize +derequisition +derestricting +derestriction +derivationist +dermatography +dermatologist +dermatophytes +dermatoplasty +desacralising +desacralizing +descriptively +descriptivism +desegregating +desegregation +desensitisers +desensitising +desensitizers +desensitizing +desertisation +desertization +desexualising +desexualizing +desilverising +desilverizing +desirableness +d�sobligeante +desperateness +despicability +dessertspoons +destabilisers +destabilising +destabilizers +destabilizing +destructional +destructively +destructivist +destructivity +desulphurated +desulphurates +desulphurised +desulphuriser +desulphurises +desulphurized +desulphurizer +desulphurizes +desultoriness +detectophones +deteriorating +deterioration +deteriorative +determinately +determination +determinative +deterministic +detestability +dethronements +detoxications +detractresses +detribalising +detribalizing +detrimentally +detruncations +deuteragonist +deuterogamist +Deuteronomist +deuteroplasms +deuteroscopic +devastatingly +developmental +deviationists +devolutionary +devolutionist +devotionalist +devotionality +dexterousness +dextrocardiac +diabetologist +diacatholicon +diachronistic +diageotropism +diagnostician +dialectically +dialecticians +dialogistical +dialypetalous +diametrically +diaphanometer +diaphototropy +diaphragmatic +diathermanous +dichlamydeous +dichotomising +dichotomizing +dichotomously +dichrooscopes +dichrooscopic +Dicotyledones +dictatorially +dictatorships +diencephalons +dieselisation +dieselization +diffarreation +differentials +differentiate +diffusibility +diffusionists +diffusiveness +digestibility +dignification +dijudications +dilettanteism +dimensionless +dimerisations +dimerizations +dimethylamine +diminishingly +dioristically +Dioscoreaceae +diphthongally +diphthongised +diphthongises +diphthongized +diphthongizes +dipleidoscope +diplomatising +diplomatizing +diplomatology +Diprotodontia +diprotodontid +directionless +directorships +disaccharides +disaccustomed +disadvantaged +disadvantages +disadventures +disaffectedly +disaffiliated +disaffiliates +disaffirmance +disafforested +disaggregated +disaggregates +disagreeables +disagreements +disallowances +disambiguated +disambiguates +disannulments +disapparelled +disappearance +disappointing +disarticulate +disassemblers +disassembling +disassimilate +disassociated +disassociates +disauthorised +disauthorises +disauthorized +disauthorizes +disbursements +disburthening +discapacitate +disceptations +disceptatious +discipleships +disciplinable +disciplinants +disclamations +discographers +discographies +discoloration +discomedusans +discomfitures +discomforting +discommending +discommission +discommodious +discomycetous +disconcerting +disconcertion +disconfirming +disconformity +disconnecting +disconnection +disconnexions +disconsenting +discontentful +discontenting +discontiguity +discontiguous +discontinuing +discontinuity +discontinuous +discordancies +discourtesies +discovertures +discreditable +discreditably +discrepancies +discretionary +discriminants +discriminated +discriminates +discriminator +disembarkment +disembittered +disembodiment +disembosoming +disembowelled +disembroiling +disemburdened +disemployment +disenchaining +disenchanters +disenchanting +disencumbered +disengagement +disenshrouded +disentangling +disenthralled +disentraining +disentrancing +disenveloping +disenvironing +disequilibria +disestimation +disfellowship +disfiguration +disfigurement +disfranchised +disfranchises +disgarnishing +disgarrisoned +disgorgements +disgracefully +disguisedness +disguisements +disgustedness +dishabilitate +disharmonious +disharmonised +disharmonises +disharmonized +disharmonizes +disheartening +dishonourable +dishonourably +disillusioned +disimprisoned +disincentives +disinfectants +disinfections +disinheriting +disinhibiting +disinhibition +disinhibitory +disintegrable +disintegrated +disintegrates +disintegrator +disinterested +disinterments +disintricated +disintricates +disinvestment +disjunctively +dislodgements +dismantlement +dismemberment +disnaturalise +disnaturalize +disobediently +disobligation +disobligatory +disobligement +disobligingly +disoperations +disorganising +disorganizing +disorientated +disorientates +disparagement +disparagingly +disparateness +dispassionate +dispauperised +dispauperises +dispauperized +dispauperizes +dispensations +dispersedness +dispiritingly +displacements +displantation +displeasingly +disposability +dispositional +dispositioned +dispositively +dispossessing +dispossession +dispossessors +dispraisingly +disprivileged +disprivileges +disprofessing +disproportion +disputability +disputatively +disqualifiers +disqualifying +disquietening +disquietingly +disquisitions +disremembered +disreputation +disrespectful +dissatisfying +dissemblances +dissemblingly +disseminating +dissemination +disseminative +disseminators +dissepimental +dissertations +disseverances +disseveration +disseverments +dissimilarity +dissimilating +dissimilation +dissimilitude +dissimulating +dissimulation +dissimulative +dissimulators +dissocialised +dissocialises +dissocialized +dissocializes +dissociations +dissolubility +dissoluteness +distastefully +distillations +distinctively +distinguished +distinguisher +distinguishes +distractingly +distractively +distrainments +distressfully +distressingly +distributable +distributions +distrustfully +disyllabified +disyllabifies +dithyrambists +divarications +divellicating +diversifiable +diversionists +divertibility +diverticulate +divertimentos +divertisement +divisibleness +doctrinairism +doctrinarians +documentalist +documentaries +documentarily +documentarise +documentarist +documentarize +documentation +dodecahedrons +dodecaphonism +dodecaphonist +dolichocephal +Dolichosauria +Dolichosaurus +dollarisation +dollarization +dolphinariums +domesticating +domestication +domesticators +domesticising +domesticizing +domiciliating +domiciliation +domineeringly +doppelg�ngers +downheartedly +downrightness +dracunculuses +draftsmanship +dramatisation +dramatization +dramaturgical +dramaturgists +draughtboards +draughtswoman +draughtswomen +dreadlessness +dreamlessness +drinkableness +dualistically +dulcification +dumbfoundered +dumfoundering +Dumfriesshire +dunderheadism +dunniewassals +dynamogenesis +dyotheletical +dysfunctional +dysmenorrheal +dysmenorrheic +dysmenorrhoea +dyspeptically diff --git a/com/agnibho/code/anagram/dictionary/D14.txt b/com/agnibho/code/anagram/dictionary/D14.txt new file mode 100644 index 0000000..c90dffb --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D14.txt @@ -0,0 +1,424 @@ +dactyliography +dactyloscopies +daffadowndilly +daguerreotyped +daguerreotyper +daguerreotypes +daughterboards +daughterliness +dealcoholising +dealcoholizing +deambulatories +dearticulating +decaffeinating +decapitalising +decapitalizing +decarbonations +deceivableness +decelerometers +decentralising +decentralizing +dechristianise +dechristianize +decimalisation +decimalization +decitizenising +decitizenizing +decolonisation +decolonization +decolorisation +decolorization +decommissioned +decommissioner +decompositions +decompoundable +decompressions +deconsecrating +deconsecration +deconstructing +deconstruction +decontaminants +decontaminated +decontaminates +decontaminator +decorativeness +decriminalised +decriminalises +decriminalized +decriminalizes +defeasibleness +defenestrating +defenestration +defibrillation +defibrillators +definabilities +definitiveness +deflagrability +degenerateness +deglutinations +d�gringolering +dehumanisation +dehumanization +dehydrogenated +dehydrogenates +deipnosophists +delectableness +deliberateness +deliberatively +delightfulness +delirifacients +deliverability +dematerialised +dematerialises +dematerialized +dematerializes +demilitarising +demilitarizing +demineralising +demineralizing +demobilisation +demobilization +democratically +demolitionists +demonetisation +demonetization +demonstrations +demoralisation +demoralization +demythologised +demythologises +demythologized +demythologizes +denationalised +denationalises +denationalized +denationalizes +denaturalising +denaturalizing +denazification +denitrificator +denominational +denominatively +denuclearising +denuclearizing +deodorisations +deodorizations +deoxidisations +deoxidizations +departmentally +depersonalised +depersonalises +depersonalized +depersonalizes +deplorableness +depolarisation +depolarization +depoliticising +depoliticizing +depolymerising +depolymerizing +depreciatingly +depressurising +depressurizing +derecognitions +deregistration +dereligionised +dereligionises +dereligionized +dereligionizes +derequisitions +derivationists +dermatographia +dermatographic +dermatological +dermatologists +dermatoplastic +derogatoriness +desalinisation +desalinization +desegregations +desertisations +desertizations +d�sobligeantes +despicableness +despitefulness +despoticalness +despotocracies +destructionist +destructivists +desulphurating +desulphuration +desulphurisers +desulphurising +desulphurizers +desulphurizing +deteriorations +determinations +determinatives +detestableness +detoxification +deuterogamists +Deuteronomical +devalorisation +devalorization +devitalisation +devitalization +devolutionists +devotionalists +devotionalness +dexamphetamine +dextrocardiacs +dextrorotation +dextrorotatory +diabetologists +diachronically +diagnosability +diagnostically +diagnosticians +diaheliotropic +dialectologist +diamantiferous +diamondiferous +diaphanometers +diaphanousness +diaphototropic +diathermaneity +dicotyledonous +differentially +differentiated +differentiates +differentiator +diffractometer +digitalisation +digitalization +diminutiveness +dinitrobenzene +dinoflagellate +dioscoreaceous +diphthongising +diphthongizing +dipleidoscopes +diplomatically +diplostemonous +diprotodontids +dipterocarpous +disaccommodate +disaccustoming +disacknowledge +disadventurous +disaffiliating +disaffiliation +disaffirmation +disafforesting +disaggregating +disaggregation +disambiguating +disambiguation +disapparelling +disappearances +disapplication +disappointedly +disappointment +disapprobation +disapprobative +disapprobatory +disappropriate +disapprovingly +disarrangement +disarticulated +disarticulates +disassimilated +disassimilates +disassociating +disassociation +disattribution +disauthorising +disauthorizing +disbelievingly +discapacitated +discapacitates +disceptatorial +discerpibility +disciplinarian +disciplinarium +discolorations +discolouration +discomboberate +discombobulate +discomfortable +discommendable +discommissions +discommodities +disconcertions +disconcertment +disconformable +disconnectedly +disconnections +disconsolately +disconsolation +discontentedly +discontentment +discontinuance +discountenance +discouragement +discouragingly +discourteously +discretionally +discriminately +discriminating +discrimination +discriminative +discriminators +discriminatory +discursiveness +disdainfulness +disembarkation +disembarkments +disembarrassed +disembarrasses +disembellished +disembellishes +disembittering +disembodiments +disemboguement +disembowelling +disembowelment +disemburdening +disenchantment +disenchantress +disencumbering +disencumbrance +disenfranchise +disengagedness +disengagements +disenshrouding +disenthralling +disenthralment +disentrainment +disequilibrate +disequilibrium +disestablished +disestablishes +disestimations +disfellowships +disfigurations +disfigurements +disfranchising +disfurnishment +disgarrisoning +disgruntlement +disgustfulness +disgustingness +dishabilitated +dishabilitates +disharmonising +disharmonizing +disillusionary +disillusioning +disillusionise +disillusionize +disimpassioned +disimprisoning +disincarcerate +disinclination +disincorporate +disinfestation +disinformation +disingenuously +disinheritance +disinhibitions +disintegrating +disintegration +disintegrative +disintegrators +disinteresting +disintricating +disinvestiture +disinvestments +disjointedness +dismemberments +disnaturalised +disnaturalises +disnaturalized +disnaturalizes +Disneyfication +disobligations +disobligements +disorderliness +disorientating +disorientation +disparagements +dispauperising +dispauperizing +dispensability +dispensational +dispensatively +dispensatories +dispensatorily +dispiritedness +dispiteousness +displantations +displeasedness +disposableness +dispossessions +disprivileging +disproportions +disputableness +disputatiously +disqualifiable +disquisitional +disregardfully +disremembering +disrespectable +disseminations +dissertational +disserviceable +disseverations +dissimilations +dissimulations +dissociability +dissocialising +dissocializing +dissolubleness +dissolutionism +dissolutionist +dissolvability +dissymmetrical +distemperature +distensibility +distinguishers +distinguishing +distractedness +distributaries +distributional +distributively +disyllabifying +diverticulated +diverticulitis +diverticulosis +divertisements +divertissement +divisibilities +documentalists +documentarised +documentarises +documentarists +documentarized +documentarizes +documentations +dodecaphonists +dodecasyllabic +dodecasyllable +dolichocephaly +dollarocracies +dolomitisation +dolomitization +domestications +domiciliations +dramatisations +dramatizations +dumbfoundering +Dunbartonshire +duodenectomies +dynamometrical +dysteleologist diff --git a/com/agnibho/code/anagram/dictionary/D15.txt b/com/agnibho/code/anagram/dictionary/D15.txt new file mode 100644 index 0000000..75dbfe0 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D15.txt @@ -0,0 +1,257 @@ +daguerreotypers +daguerreotyping +daguerreotypist +decalcification +decarbonisation +decarbonization +decarburisation +decarburization +dechristianised +dechristianises +dechristianized +dechristianizes +decimalisations +decimalizations +decipherability +decolonisations +decolonizations +decolorisations +decolorizations +decolourisation +decolourization +decommissioners +decommissioning +decomposability +deconsecrations +decontaminating +decontamination +decontaminative +decontaminators +decriminalising +decriminalizing +defencelessness +defenestrations +defenselessness +degenerationist +dehydrogenating +dehypnotisation +dehypnotization +deindustrialise +deindustrialize +deleteriousness +demagnetisation +demagnetization +dematerialising +dematerializing +demobilisations +demobilizations +democratifiable +democratisation +democratization +demographically +demonetisations +demonetizations +demonstrability +demonstratively +demoralisations +demulsification +demutualisation +demutualization +demystification +demythologising +demythologizing +denationalising +denationalizing +denitrification +denitrificators +departmentalise +departmentalism +departmentalize +depauperisation +depauperization +depersonalising +depersonalizing +dephlogisticate +depolarisations +depolarizations +deregistrations +dereligionising +dereligionizing +derequisitioned +dermatoglyphics +dermatomyositis +desacralisation +desacralization +descriptiveness +desensitisation +desensitization +desertification +desexualisation +desexualization +desilverisation +desilverization +dessertspoonful +destabilisation +destabilization +destructibility +destructionists +destructiveness +destructivities +desulphurations +determinability +detoxifications +detribalisation +detribalization +devalorisations +devalorizations +developmentally +devitalisations +devitalizations +devitrification +dextrophosphate +diaheliotropism +dialectologists +diamagnetically +diaphototropism +diaphragmatitis +diastereoisomer +differentiating +differentiation +differentiators +diffractometers +diffrangibility +dimethylaniline +dinoflagellates +Diprotodontidae +disaccommodated +disaccommodates +disacknowledged +disacknowledges +disadvantageous +disaffectedness +disaffectionate +disaffiliations +disaffirmations +disafforestment +disagreeability +disambiguations +disapplications +disappointingly +disappointments +disapprobations +disappropriated +disappropriates +disarrangements +disarticulating +disarticulation +disassimilating +disassimilation +disassimilative +disassociations +discapacitating +disciplinarians +disciplinariums +discolourations +discomboberated +discomboberates +discombobulated +discombobulates +discommendation +discommodiously +disconcertingly +disconcertments +disconformities +discontentments +discontinuances +discontinuation +discontinuities +discontinuously +discountenanced +discountenances +discouragements +discretionarily +discriminations +disembarkations +disembarrassing +disembellishing +disemboguements +disembowelments +disenchantments +disenfranchised +disenfranchises +disentanglement +disenthrallment +disenthralments +disentrainments +disentrancement +disestablishing +disgracefulness +dishabilitating +dishabilitation +disharmoniously +dishearteningly +disillusionised +disillusionises +disillusionized +disillusionizes +disillusionment +disimprisonment +disincarcerated +disincarcerates +disinclinations +disincorporated +disincorporates +disinfestations +disinflationary +disinheritances +disintegrations +disinterestedly +disinvestitures +disnaturalising +disnaturalizing +disobligingness +disorganisation +disorganization +disorientations +dispassionately +dispensableness +displeasingness +disproportional +disputativeness +disquisitionary +disreputability +disrespectfully +dissatisfaction +dissatisfactory +dissimilarities +dissociableness +dissolutionists +dissolvableness +distastefulness +distemperatures +distinctiveness +distinguishable +distinguishably +distinguishment +distractibility +distressfulness +distrustfulness +dithyrambically +diversification +divertissements +doctrinarianism +documentarising +documentarizing +dodecasyllables +dolichocephalic +dolomitisations +dolomitizations +dorsibranchiate +dorsiventrality +downheartedness +draughtsmanship +durchkomponiert +dyslogistically +dysmorphophobia +dysteleological +dysteleologists diff --git a/com/agnibho/code/anagram/dictionary/D16.txt b/com/agnibho/code/anagram/dictionary/D16.txt new file mode 100644 index 0000000..a374141 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D16.txt @@ -0,0 +1,101 @@ +daffadowndillies +decapitalisation +decapitalization +decentralisation +decentralization +dechristianising +dechristianizing +declassification +decolourizations +dehumidification +dehypnotisations +dehypnotizations +deindustrialised +deindustrialises +deindustrialized +deindustrializes +deliberativeness +demilitarisation +demilitarization +demineralisation +demineralization +demonstrableness +demutualisations +demutualizations +denaturalisation +denaturalization +dendrochronology +denominationally +denuclearisation +denuclearization +deoxyribonucleic +departmentalised +departmentalises +departmentalized +departmentalizes +dephlogisticated +dephlogisticates +depolymerisation +depolymerization +depressurisation +depressurization +derequisitioning +desegregationist +desensitisations +desensitizations +dessertspoonfuls +destructibleness +desulphurisation +desulphurization +deteriorationist +determinableness +deuterocanonical +diacetylmorphine +diageotropically +diagrammatically +diastereoisomers +differentiations +dipterocarpaceae +disaccommodating +disaccommodation +disacknowledging +disafforestation +disagreeableness +disappropriating +discomboberating +discombobulating +disconnectedness +disconsolateness +discontentedness +discountenancing +discourteousness +discriminatingly +discriminatively +disembarrassment +disenchantresses +disenfranchising +disentanglements +disestablishment +disfranchisement +dishonorableness +disillusionising +disillusionizing +disillusionments +disincarcerating +disincarceration +disincorporating +disincorporation +disindividualise +disindividualize +disindustrialise +disindustrialize +disingenuousness +disproportionate +disputatiousness +disqualification +disreputableness +dissymmetrically +distributiveness +dolichocephalism +dolichocephalous +dunderheadedness diff --git a/com/agnibho/code/anagram/dictionary/D17.txt b/com/agnibho/code/anagram/dictionary/D17.txt new file mode 100644 index 0000000..b4124f1 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D17.txt @@ -0,0 +1,50 @@ +declassifications +deconstructionist +decriminalisation +decriminalization +dedifferentiation +deindustrialising +deindustrializing +dematerialisation +dematerialization +demonstrativeness +demythologisation +demythologization +denationalisation +denationalization +dendroclimatology +denominationalism +denominationalist +departmentalising +departmentalizing +depersonalisation +depersonalization +dephlogisticating +desegregationists +dextroamphetamine +diastereoisomeric +dipterocarpaceous +disadvantageously +disembarrassments +disfranchisements +dishonourableness +disindividualised +disindividualises +disindividualized +disindividualizes +disindustrialised +disindustrialises +disindustrialized +disindustrializes +disinterestedness +dispassionateness +disproportionable +disproportionably +disproportionally +disqualifications +disrespectfulness +disyllabification +divisionalisation +divisionalization +documentarisation +documentarization diff --git a/com/agnibho/code/anagram/dictionary/D18.txt b/com/agnibho/code/anagram/dictionary/D18.txt new file mode 100644 index 0000000..cf7c5b6 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D18.txt @@ -0,0 +1,15 @@ +dechristianisation +dechristianization +deconstructionists +demythologisations +demythologizations +dendrochronologist +diastereoisomerism +dichloralphenazone +discommendableness +disenfranchisement +disindividualising +disindividualizing +disindustrialising +disindustrializing +disproportionately diff --git a/com/agnibho/code/anagram/dictionary/D19.txt b/com/agnibho/code/anagram/dictionary/D19.txt new file mode 100644 index 0000000..6fc2eec --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D19.txt @@ -0,0 +1,8 @@ +deindustrialisation +deindustrialization +dendrochronological +dendrochronologists +departmentalisation +departmentalization +disadvantageousness +dissatisfactoriness diff --git a/com/agnibho/code/anagram/dictionary/D2.txt b/com/agnibho/code/anagram/dictionary/D2.txt new file mode 100644 index 0000000..8dab718 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D2.txt @@ -0,0 +1,3 @@ +da +Di +do diff --git a/com/agnibho/code/anagram/dictionary/D20.txt b/com/agnibho/code/anagram/dictionary/D20.txt new file mode 100644 index 0000000..ed1e88b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D20.txt @@ -0,0 +1,3 @@ +disindustrialisation +disindustrialization +disproportionateness diff --git a/com/agnibho/code/anagram/dictionary/D21.txt b/com/agnibho/code/anagram/dictionary/D21.txt new file mode 100644 index 0000000..5903335 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D21.txt @@ -0,0 +1 @@ +disproportionableness diff --git a/com/agnibho/code/anagram/dictionary/D3.txt b/com/agnibho/code/anagram/dictionary/D3.txt new file mode 100644 index 0000000..7600138 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D3.txt @@ -0,0 +1,59 @@ +dab +dad +dae +dag +dah +Dai +dak +dal +dam +dan +dap +das +daw +day +deb +dee +def +del +den +Deo +Dev +dew +dey +dib +did +die +dig +dim +din +dip +Dis +dit +div +dob +doc +dod +doe +dog +doh +Dom +don +doo +dop +dor +dos +dot +dow +dry +dso +dub +dud +due +dug +dun +duo +dup +dux +dye +dzo diff --git a/com/agnibho/code/anagram/dictionary/D31.txt b/com/agnibho/code/anagram/dictionary/D31.txt new file mode 100644 index 0000000..691833a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D31.txt @@ -0,0 +1 @@ +dichlorodiphenyltrichloroethane diff --git a/com/agnibho/code/anagram/dictionary/D4.txt b/com/agnibho/code/anagram/dictionary/D4.txt new file mode 100644 index 0000000..65f7dca --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D4.txt @@ -0,0 +1,282 @@ +dabs +dace +Dada +Dadd +dado +dads +daff +daft +dags +dahl +dahs +D�il +dais +daks +dale +dali +dals +dalt +dame +damn +damp +dams +Dana +Dane +dang +dank +dans +daps +Dard +dare +darg +dari +dark +darn +dart +dash +data +date +daub +daud +daur +daut +Dave +Davy +dawk +dawn +daws +dawt +days +daze +dead +deaf +deal +dean +dear +debs +debt +deck +deco +deed +deek +deem +deep +deer +dees +deev +deft +defy +deid +deil +dele +delf +deli +dell +dels +delt +deme +demo +demy +dene +dens +dent +deny +dere +derm +dern +derv +desk +deus +deva +Devi +Dewi +dews +dewy +deys +dhak +dhal +dhow +dial +Dian +Dias +Diaz +dibs +dice +dich +dick +dict +dido +dieb +died +dies +diet +Dieu +digs +dika +dike +dill +dime +dims +dine +ding +dink +dins +dint +Dior +dips +dire +dirk +dirl +dirt +Disa +disc +dish +disk +diss +dita +dite +dits +ditt +diva +dive +divi +divs +dixi +dixy +doab +doat +dock +docs +dodo +dods +doek +doer +does +doff +doge +dogs +dogy +dohs +doit +dojo +dole +doll +dolt +dome +domy +dona +done +dong +dons +doob +dook +dool +doom +door +doos +dopa +dope +dops +dopy +Dora +Dor� +dork +dorm +dorp +dorr +dors +dort +dory +dose +dosh +doss +dost +dote +doth +dots +doty +douc +Doug +doum +doup +dour +dout +dove +dowd +dowf +dowl +down +dowp +dows +doxy +doze +dozy +drab +drad +drag +dram +drap +drat +draw +dray +dree +dreg +drek +drew +drey +drib +drip +drop +drow +drub +drug +drum +Druz +dsos +duad +dual +duan +duar +dubs +duce +duck +duct +dude +duds +duel +dues +duet +duff +Dufy +dugs +duke +dule +dull +duly +duma +dumb +dump +dune +dung +dunk +duns +dunt +duos +dupe +dura +dure +durn +duro +dusk +dust +duty +dwam +dyad +Dyak +dyed +dyer +dyes +dyke +dyne +dzho +dzos diff --git a/com/agnibho/code/anagram/dictionary/D5.txt b/com/agnibho/code/anagram/dictionary/D5.txt new file mode 100644 index 0000000..56c9eab --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D5.txt @@ -0,0 +1,578 @@ +Dacca +daces +dacha +Dacia +daddy +dados +daffs +daffy +dagga +daggy +Dagon +dahls +daily +daint +dairy +daisy +Dakar +Dalek +dales +dalis +dalle +dally +dalts +daman +damar +dames +damme +damns +Damon +damps +dampy +Dana� +dance +dandy +Danes +dangs +danio +Danny +Dante +daraf +darcy +dared +darer +dares +darga +dargs +daric +daris +darks +darns +darts +darzi +datal +dated +Datel +dater +dates +Datuk +datum +daube +daubs +dauby +dauds +daunt +dauts +Davao +daven +David +Davie +Davis +davit +Davos +dawks +dawns +dawts +Dayak +daynt +dazed +dazer +dazes +deals +dealt +deans +deare +dearn +dears +deary +death +deave +debag +debar +debby +debel +debit +Debra +debts +debug +debus +debut +Debye +decad +decaf +decal +decay +Decca +decko +decks +decor +decoy +decry +dedal +deeds +deedy +deems +deeps +deere +deevs +defat +defer +Defoe +Degas +degum +deify +deign +deils +deism +deist +deity +dekko +delay +delfs +delft +Delhi +Delia +delis +Della +dells +Delos +delph +delta +delts +delve +deman +demes +demit +demob +demon +demos +demur +denay +Dench +Deneb +denes +denim +Denis +Denny +dense +dents +Denys +depot +depth +deray +derby +Derek +derig +derma +derms +derry +derth +Desai +desex +desks +desse +deter +detox +deuce +devas +devel +devil +Devon +d�vot +dewan +dewar +dewed +Dewey +Dhaka +dhaks +dhals +dhobi +dhole +dholl +dhoti +dhows +diact +dials +Diana +Diane +diary +diazo +dibbs +diced +dicer +dices +dicey +dicks +dicky +dicot +dicta +dicty +diddy +didos +didst +diebs +Diego +diene +diets +Digby +dight +digit +Dijon +dikas +diked +diker +dikes +dildo +Dilip +dilli +dills +dilly +Dilys +dimer +dimes +dimly +Dinah +dinar +dined +diner +dines +dinge +dingo +dings +dingy +dinic +dinks +dinky +dints +diode +Dione +diota +Dipak +dippy +dipso +Dirac +direr +dirge +dirks +dirls +dirts +dirty +disco +discs +dishy +disks +disme +dital +ditas +ditch +ditsy +ditto +ditts +ditty +ditzy +divan +divas +dived +diver +dives +divot +divvy +diwan +dixie +Dixon +dizen +dizzy +djinn +doabs +doats +dobby +dobra +Dobro +docks +doddy +dodge +dodgy +dodos +doeks +doers +doest +doeth +doffs +doges +doggo +doggy +dogie +dogma +dohyo +doily +doing +doits +dojos +Dolby +dolce +doled +doles +dolia +Dolin +dolls +dolly +dolma +dolor +dolts +domal +domed +domes +donah +donas +Donat +Donau +donee +Donet +donga +dongs +Donna +donn� +donor +don't +donut +dooks +dools +dooms +doomy +doona +doorn +doors +doped +doper +dopes +dopey +dorad +Doras +doree +Doric +Doris +dorks +dorky +dorms +dormy +dorps +dorrs +dorsa +dorse +dorts +dorty +dosed +doseh +doses +dotal +doted +doter +dotes +dotty +Douai +douar +Douay +Doubs +doubt +douce +doucs +dough +douma +doums +doups +doura +Douro +douse +douts +doved +dover +doves +dowar +dowds +dowdy +dowed +dowel +dower +dowie +downa +downs +downy +dowps +dowry +dowse +doyen +Doyle +doyly +dozed +dozen +dozer +dozes +drabs +drack +Draco +draff +draft +drags +drail +drain +drake +drama +drams +drank +drant +drape +draps +drats +drave +drawl +drawn +draws +drays +dread +dream +drear +dreck +dreed +drees +dregs +drent +dress +drest +dreys +dribs +dried +drier +dries +drift +drill +drily +drink +drips +drive +droit +dr�le +droll +drome +drone +drony +droob +Drood +droog +drook +drool +droop +drops +dross +drouk +drove +drown +drows +drubs +drugs +Druid +drums +drunk +drupe +druse +drusy +druxy +Druze +dryad +dryer +dryly +dsobo +dsomo +duads +Duala +duals +Duane +duans +duars +Dubai +Dubya +ducal +ducat +duces +duchy +ducks +ducky +ducts +duddy +dudes +duels +duets +duett +duffs +Dukas +duked +dukes +dules +dulia +dulls +dully +dulse +dumas +dumbo +dumka +dumky +dummy +dumps +dumpy +dunce +dunch +dunes +dungs +dungy +dunks +dunno +dunny +dunts +duomi +duomo +duped +duper +dupes +duple +duply +duppy +dural +duras +dured +D�rer +dures +Durex +durns +duros +duroy +durra +durst +durum +durzi +dusks +dusky +dusts +dusty +dutch +duvet +duxes +dwale +dwalm +dwams +dwang +dwarf +dwaum +dweeb +dwell +dwelt +dwile +dwine +dyads +Dyaks +dyers +Dyfed +dying +dyked +dykes +Dylan +dynes +dzhos diff --git a/com/agnibho/code/anagram/dictionary/D6.txt b/com/agnibho/code/anagram/dictionary/D6.txt new file mode 100644 index 0000000..1e538ea --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D6.txt @@ -0,0 +1,955 @@ +dabbed +dabber +dabble +dachas +dacite +dacker +dacoit +Dacron +dactyl +daddle +dadoes +daedal +daemon +daftar +dafter +daftie +daftly +Dafydd +dagaba +daggas +dagged +dagger +daggle +dagoba +dahlia +daiker +daikon +daimen +daimio +daimon +dainty +daises +dakoit +Dakota +Daleks +Dallas +dalles +dallop +Dalton +damage +damans +damars +damask +Damian +Damien +dammar +dammed +dammer +dammes +dammit +damned +damped +dampen +damper +damply +damsel +damson +danced +dancer +dances +dander +dandle +danged +danger +dangle +dangly +Daniel +danios +Danish +Danite +danker +dankly +Danton +Danube +Danzig +daphne +dapped +dapper +dapple +darafs +darcys +Dardan +Dardic +darers +dargas +darics +Darien +daring +Darius +darken +darker +darkle +darkly +darned +darnel +darner +Darren +darted +darter +dartle +dartre +Darwin +darzis +dashed +dasher +dashes +dassie +datary +daters +dating +dative +Datsun +Datuks +datura +daubed +dauber +Daudet +daunts +dauted +dautie +davens +Davies +Davina +davits +dawdle +dawish +dawned +Dawson +dawted +dawtie +Dayaks +dayglo +Dayton +dazers +dazing +dazzle +deacon +deaden +deader +deadly +deafen +deafer +deafly +dealer +deaner +Deanna +dearer +dearie +dearly +dearth +deasil +deaths +deathy +deaved +deaves +debags +debark +debars +debase +debate +Debbie +debels +debile +debits +debone +debosh +deboss +debris +debted +debtee +debtor +debugs +debunk +debuts +decade +decads +decaff +decafs +decals +decamp +decane +decani +decant +decarb +decare +decays +deccie +deceit +decent +decern +decide +decile +d�cime +decked +decker +deckle +deckos +decoct +decode +decoke +decors +decoys +decree +decrew +dectet +decury +dedans +deduce +deduct +deeded +deeing +deejay +deemed +Deepak +deepen +deeper +deepie +deeply +deface +defame +defats +defeat +defect +defend +defers +defied +defier +defies +defile +define +deflex +deform +defoul +defray +defter +deftly +defuse +defuze +d�gag� +d�go�t +degras +degree +degums +degust +dehorn +dehort +deific +deigns +deists +deixis +deject +Dekker +dekkos +delate +delays +delete +Delian +delice +delict +Delius +Deller +delope +Delors +Delphi +delphs +Delroy +deltas +delude +deluge +delved +delver +delves +Delyth +demain +demand +demans +demark +demean +dement +demies +demise +demiss +demist +demits +demobs +d�mod� +demons +demote +demure +demurs +denary +dengue +denial +denied +denier +denies +denims +Denise +denned +dennet +Dennis +denote +denser +dental +dented +dentel +dentex +dentil +dentin +denude +Denver +Denzil +deodar +depart +depend +depict +deploy +depone +deport +depose +depots +depths +depute +deputy +derail +derate +derham +deride +derigs +derive +dermal +dermas +dermic +dermis +Dermot +derris +derths +Dervla +Deryck +desalt +descry +desert +design +desire +desist +desman +desmid +desorb +despot +Dessau +desses +detach +detail +detain +detect +detent +d�tenu +deters +detest +detort +detour +Dettol +detune +deuced +deuces +deuton +Devdan +devels +devest +device +devils +devise +devoid +devoir +devote +d�vots +devour +devout +dewani +dewans +dewars +dewier +dewily +dewing +dewitt +dewlap +dexter +dharma +dharna +dhobis +dholes +dholls +dhooly +dhooti +dhotis +dhurra +diable +diacid +diadem +dialed +dialog +diamyl +Dianne +diaper +diapir +diarch +diatom +diaxon +diazos +dibbed +dibber +dibble +dicast +dicers +dicier +dicing +dicker +dickey +dickie +Dickon +dickty +dicots +dictum +diddle +didn't +didoes +di�dre +dienes +Dieppe +diesel +dieses +diesis +dieted +dieter +differ +digamy +digest +digged +digger +dights +digits +diglot +dikast +dikers +diking +dikkop +diktat +dilate +dildoe +dildos +dillis +dilute +Dilwyn +dimble +dimers +dimity +dimmed +dimmer +dimple +dimply +dimwit +dinars +dindle +d'Indy +diners +dinful +dinged +dinger +dinges +dingey +dinghy +dingle +dingus +dinics +dining +dinked +dinkum +dinned +dinner +dinted +diodes +Diodon +Dionne +diotas +dioxan +dioxin +diplex +diploe +diplon +Dipnoi +dipody +dipole +dipped +dipper +dipsas +dipsos +dirdum +direct +direly +direst +dirges +dirham +dirhem +dirige +dirked +dirled +dirndl +dirted +disarm +disbar +disbud +discal +disced +discos +discus +diseur +dished +dishes +disked +dismal +disman +dismay +Disney +disown +dispel +disple +dissed +disses +distal +distil +disuse +ditals +dither +ditone +dittay +dittos +Divali +divans +divers +divert +divest +divide +divied +divies +divine +diving +divots +Diwali +diwans +dixies +dizain +djebel +djinni +djinns +doable +doated +doater +dobbed +dobber +dobbie +dobbin +dobras +Dobros +docent +Docete +docile +docked +docken +docker +docket +doctor +dodded +dodder +doddle +dodged +dodgem +dodger +dodges +dodkin +dodman +dodoes +Dodoma +doffed +doffer +dogate +dogfox +dogged +dogger +doggie +dogman +dogmas +dogmen +dohyos +doiled +doings +doited +doitit +dolces +dolent +dolina +doline +doling +dolium +dollar +dolled +dollop +dolman +dolmas +dolmen +dolors +dolour +domain +Dombey +domett +doming +domino +donahs +Donald +donary +donate +donder +donees +Donets +dongas +donged +dongle +doning +D�nitz +donjon +donkey +donnat +donned +donn�e +donn�s +Donnie +donnot +donors +donsie +donuts +donzel +doocot +doodad +doodah +doodle +dooked +dooket +doolie +doomed +doonas +doorns +dopant +dopers +dopier +doping +dopped +dopper +doppie +dorado +dorads +Dor�ti +Dorcas +Doreen +dorees +Dorian +dories +dorise +Dorism +dorize +dormer +dormie +Dorris +dorsal +dorsel +dorser +dorses +Dorset +dorsum +dorted +dorter +dosage +dosehs +dosing +dossal +dossed +dossel +dosser +dosses +dossil +dotage +dotant +dotard +dotcom +doters +dotier +doting +dotish +dotted +Dottie +dottle +Douala +douane +douars +double +doubly +doubts +doucet +douche +Dougal +doughs +dought +doughy +doumas +douras +dourer +dourly +doused +douser +douses +douted +douter +dovers +doving +dovish +dowars +dowels +dowers +dowing +dowlas +downed +downer +Downie +dowsed +dowser +dowses +dowset +Dowson +doxies +doyens +doyley +dozens +dozers +dozier +dozing +drabby +drably +drachm +draffs +draffy +drafts +drafty +drag�e +draggy +dragon +drails +drains +drakes +Dralon +dramas +drants +draped +draper +drapes +drapet +drawee +drawer +drawls +drazel +dreads +dreams +dreamt +dreamy +dreary +drecky +dredge +dreggy +dreich +drench +dressy +driers +driest +drifts +drifty +drills +drinks +drippy +drivel +driven +driver +drives +droger +drogue +droits +dr�les +drolls +drolly +dromes +dromic +dromoi +dromon +dromos +droned +drones +drongo +droobs +droogs +drooks +drools +droops +droopy +dropsy +drosky +drossy +drouks +drouth +drover +droves +drowns +drowse +drowsy +drudge +druggy +Druids +drumly +drunks +drupel +drupes +druses +dryads +Dryden +dryers +drying +dryish +dsobos +dsomos +dualin +dually +dubbed +dubbin +Dubcek +Dublin +Dubois +ducats +Duccio +ducked +ducker +duckie +dudder +duddie +dudeen +dudish +dudism +Dudley +dueful +dueled +duello +duende +duenna +duetti +duetto +duetts +duffed +duffel +duffer +duffle +Dugald +dugong +dugout +duiker +dukery +duking +dulcet +Dulcie +dulled +duller +Dulles +dulses +Duluth +dumber +dumbly +dumbos +dumdum +dumose +dumped +dumper +Dunbar +Duncan +dunces +Dundee +dunder +dunged +dunite +dunked +Dunker +dunlin +Dunlop +Dunmow +dunned +dunner +Dunoon +dunted +duomos +dupers +dupery +duping +dupion +duplet +duplex +durant +Durban +durbar +duress +durgan +Durham +durian +during +durion +durras +durrie +durums +durzis +dusked +dusken +duskly +dusted +duster +Dustin +dutied +duties +duvets +duyker +Dvor�k +dwales +dwalms +dwangs +dwarfs +dwaums +dweebs +dwells +Dwight +dwiles +dwined +dwines +dyable +dyadic +dybbuk +dyeing +dyings +dyking +Dympna +dynamo +dynast +dynode +dysury +dyvour +dzeren diff --git a/com/agnibho/code/anagram/dictionary/D7.txt b/com/agnibho/code/anagram/dictionary/D7.txt new file mode 100644 index 0000000..094eaec --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D7.txt @@ -0,0 +1,1383 @@ +dabbers +dabbing +dabbity +dabbled +dabbler +dabbles +dabster +dackers +dacoits +dacoity +dactyls +Dadaism +Dadaist +daddies +daddled +daddles +daddock +daemons +daffier +daffing +daftars +daftest +dafties +dagabas +daggers +dagging +daggled +daggles +daglock +dagobas +dagwood +dahlias +Dahomey +daikers +daikons +dailies +daimios +Daimler +daimons +dairies +daisied +daisies +dakoiti +dakoits +dallied +dallier +dallies +dallops +damaged +damages +damasks +dambrod +damfool +dammars +dammers +damming +dammits +damnify +damning +damosel +damozel +dampens +dampers +dampest +Dampier +damping +dampish +damsels +damsons +dancers +dancing +danders +dandier +dandies +dandify +dandily +dandled +dandler +dandles +Danelaw +dangers +danging +dangled +dangler +dangles +Daniela +dankest +dankish +Danmark +danseur +Dansker +Dantean +Dantist +daphnes +Daphnia +daphnid +Daphnis +dappers +dapping +dappled +dapples +dapsone +darbies +darcies +dareful +dariole +darkens +darkest +darkish +darkled +darkles +darling +darnels +darners +darning +Darnley +darshan +darters +darting +dartled +dartles +dasheen +dasheki +dashers +dashiki +dashing +dassies +dastard +dasypod +Dasypus +dasyure +datable +databus +dataria +datival +datives +Datsuns +daturas +daubers +daubery +daubier +daubing +Daumier +daunder +daunted +daunter +dauphin +dauties +dauting +davened +davidia +dawdled +dawdler +dawdles +Dawkins +dawning +dawties +dawting +daylong +daymark +dayroom +daysman +daysmen +daystar +daytale +daytime +dazedly +dazzled +dazzler +dazzles +deacons +deadens +deaders +deadest +deafens +deafest +dealers +dealing +deaners +deanery +dearest +dearies +dearths +deathly +deaving +debacle +debarks +debased +debaser +debases +debated +debater +debates +debauch +debbies +debited +debitor +deboned +debones +Deborah +debouch +Debrett +d�bride +debrief +debtees +debtors +debunks +Debussy +decadal +decades +decaffs +decagon +decamps +decanal +decants +decapod +decarbs +decares +Decatur +decayed +deccies +decease +deceits +deceive +decency +decerns +deciare +decibel +decided +decider +decides +decidua +deciles +decimal +d�cimes +deckers +decking +deckled +deckles +deckoed +declaim +declare +declass +decline +decocts +decoded +decoder +decodes +decoked +decokes +decolor +decorum +decoyed +decreed +decrees +decreet +decrial +decried +decrier +decries +decrown +decrypt +dectets +decuman +decuple +decuria +decurve +dedimus +Dedlock +deduced +deduces +deducts +deedful +deedier +deedily +deeding +deejays +deeming +deepens +deepest +deepies +Deepika +deerlet +defaced +defacer +defaces +defamed +defamer +defames +default +defeats +defects +defence +defends +defense +defiant +deficit +defiers +defiled +defiler +defiles +defined +definer +defines +deflate +deflect +deforce +deforms +defouls +defraud +defrays +defrock +defrost +defroze +deftest +defunct +defused +defuses +defuzed +defuzes +defying +degauss +degrade +degrees +degusts +dehisce +dehorns +dehorts +deicide +deictic +deified +deifier +deifies +deiform +deigned +Deirdre +deiseal +deistic +deities +dejecta +dejects +dejeune +dekkoed +delaine +delapse +delated +delates +delator +delayed +delayer +deleble +delenda +deleted +deletes +Delibes +delible +delices +delicts +delight +Delilah +DeLillo +delimit +deliria +deliver +deloped +delopes +delouse +Delphic +delphin +deltaic +deltoid +deluded +deluder +deludes +deluged +deluges +delvers +delving +demagog +demains +demands +demarks +demeans +Demelza +d�menti +dements +demerge +demerit +demerse +demesne +Demeter +demigod +demirep +demised +demises +demists +demoded +demonic +demonry +demoted +demotes +demotic +demount +Dempsey +demurer +denarii +dendron +Deneuve +Denholm +denials +deniers +denizen +Denmark +dennets +denning +denoted +denotes +densely +densest +densify +density +dentals +dentary +dentate +dentels +dentils +dentine +denting +dentist +dentoid +denture +denuded +denudes +denying +deodand +deodars +deodate +deontic +depaint +departs +d�p�che +depends +depicts +deplane +deplete +deplore +deploys +deplume +deponed +depones +deports +deposal +deposed +deposer +deposes +deposit +deprave +depress +deprive +depside +deputed +deputes +deraign +derails +derange +derated +derates +derbies +derhams +derided +derider +derides +derived +derives +dermoid +dernier +derrick +Derrida +dervish +Derwent +desalts +descale +descant +descend +descent +deserts +deserve +desexed +desexes +designs +desired +D�sir�e +desirer +desires +desists +deskill +desktop +desmans +desmids +desmine +desmoid +Desmond +desorbs +despair +despise +despite +despoil +despond +despots +Desprez +dessert +destine +destiny +destroy +details +detains +detects +d�tente +detents +d�tenue +d�tenus +deterge +detests +detinue +detorts +detours +detract +detrain +Detroit +detrude +detuned +detunes +deutons +deutzia +devalue +develop +devests +deviant +deviate +devices +deviled +devilet +devilry +devious +devisal +devised +devisee +deviser +devises +devisor +Devizes +devling +devoice +devoirs +devolve +devoted +devotee +devotes +devours +dewanis +dewanny +dewater +dewiest +dewitts +dewlaps +dewlapt +dexters +dextral +dextran +dextrin +Dhahran +dhansak +dharmas +dharnas +dhootis +dhurras +dhurrie +diabase +diables +diabolo +diadems +diadrom +diagram +diagrid +dialect +dialing +dialist +dialled +dialler +dialyse +dialyze +diamond +diandry +diapase +diapers +diapirs +diarchy +diarial +diarian +diaries +diarise +diarist +diarize +diaster +diatoms +diaxons +diazoes +dibasic +dibbers +dibbing +dibbled +dibbler +dibbles +dibutyl +dicasts +dichord +diciest +dicings +dickens +dickers +dickeys +dickier +dickies +dictate +diction +dictums +didakai +didakei +diddies +diddled +diddler +diddles +diddums +Diderot +didicoi +didicoy +dieback +diedral +di�dres +diesels +dietary +dieters +diethyl +dietine +dieting +dietist +differs +difform +diffuse +digamma +digests +diggers +digging +dighted +digital +diglots +diglyph +dignify +dignity +digonal +digraph +digress +Digynia +dikasts +dikkops +diktats +dilated +dilater +dilates +dilator +Dilbert +dildoes +dilemma +dillies +dilling +diluent +diluted +dilutee +diluter +dilutes +dilutor +Dimashq +dimbles +dimeric +dimeter +Dimitry +dimmers +dimmest +dimming +dimmish +dimness +dimorph +dimpled +dimples +dimwits +dindled +dindles +Dinesen +dinette +dingbat +dingers +dingeys +dingier +dingily +dinging +dingles +dingoes +dinkier +dinkies +dinking +dinmont +dinners +dinning +dinting +diocese +Dioecia +Dionaea +diopter +dioptre +diorama +diorism +diorite +dioxane +dioxide +diphone +diploes +diploid +diploma +diplont +dipnoan +dipolar +dipoles +dippers +dippier +dipping +Diptera +diptych +dirdums +directs +direful +dirempt +dirhams +dirhems +diriges +dirking +dirling +dirndls +dirtied +dirtier +dirties +dirtily +dirting +disable +disally +disarms +disavow +disband +disbark +disbars +disbuds +discage +discant +discard +discase +discept +discern +discerp +discide +discing +discoed +discoer +discoid +discord +discure +discuss +disdain +disease +disedge +diseurs +diseuse +disfame +disform +disgown +disgust +dishelm +dishful +dishier +dishing +dishome +dishorn +dishpan +disject +disjoin +disjune +disking +disleaf +disleal +dislike +dislimb +dislimn +dislink +disload +dismals +dismans +dismask +dismast +dismays +dismiss +disnest +disobey +disowns +dispace +dispark +dispart +dispels +dispend +display +displed +disples +dispone +disport +dispose +dispost +dispute +disrank +disrate +disrobe +disroot +disrupt +disseat +dissect +dissent +dissert +dissing +distaff +distain +distant +distend +distent +distich +distill +distils +distort +disturb +distyle +disused +disuses +disyoke +ditched +ditcher +ditches +dithers +dithery +ditones +dittany +dittays +dittied +ditties +dittoed +diurnal +diverge +diverse +diverts +divests +divided +divider +divides +divined +diviner +divines +divings +divisim +divisor +divorce +divulge +divvied +divvies +divying +dizains +dizzard +dizzied +dizzier +dizzies +dizzily +djebels +djibbah +doaters +doating +dobbers +dobbies +dobbing +dobbins +dobhash +docents +Docetae +Docetic +docible +dockage +dockens +dockers +dockets +docking +dockise +dockize +doctors +doddard +dodders +doddery +dodding +doddles +dodgems +dodgers +dodgery +dodgier +dodging +Dodgson +dodkins +dodmans +doesn't +doffers +doffing +dogates +dogbane +dogbolt +dogcart +dogdays +dogeate +dogfish +doggers +doggery +doggess +doggier +doggies +dogging +doggish +doggone +doggrel +doghole +doglike +dogship +dogsick +dogskin +dogsled +Dogstar +dogtown +dogtrot +dogvane +dogwood +doilies +doitkin +doleful +dollars +dolldom +dollied +dollier +dollies +dolling +dollish +dollops +dolmans +dolmens +Dolores +dolours +dolphin +doltish +domains +domatia +domical +domicil +dominee +Domingo +Dominic +dominie +dominos +Dominus +donated +donates +donator +Donatus +donders +Donegal +Donetsk +donging +dongles +donjons +donkeys +donnard +donnart +donnats +donn�es +donnerd +donnert +donning +donnish +donnism +donnots +donship +doocots +doodads +doodahs +doodled +doodler +doodles +dookets +dooking +doolies +doomful +dooming +doormat +doorway +dopants +dopatta +dopiest +dopings +doppers +doppies +dopping +Doppler +dorados +dorhawk +dorised +dorises +dorized +dorizes +Dorking +dorlach +dormant +dormers +dormice +dornick +Dornier +Dorothy +dorsals +dorsels +dorsers +dorsums +dorters +dorting +dortour +dosages +dossals +dossels +dossers +dossier +dossils +dossing +dotages +dotards +dotcoms +dotiest +dotings +dottier +dotting +dottler +dottles +dottrel +doubled +doubler +doubles +doublet +doubted +doubter +doucely +douceur +douched +douches +doucine +doughty +Douglas +douleia +Doulton +dourest +dourine +dousers +dousing +douters +douting +dovecot +dovekie +dovelet +dovered +dowable +dowager +dowdier +dowdies +dowdily +Dowding +dowered +Dowland +downbow +downers +downier +Downies +downing +dowries +dowsers +dowsing +doyenne +doyleys +doylies +dozenth +doziest +dozings +drabbed +drabber +drabbet +drabble +drabler +drachma +drachms +dracone +Dracula +drafted +draftee +drafter +drag�es +dragged +draggle +dragons +dragoon +drailed +drained +drainer +drammed +dranted +drapers +drapery +draping +drapped +drappie +drastic +dratted +draught +drawees +drawers +drawing +drawled +drawler +drayage +drayman +draymen +Drayton +drazels +dreaded +dreader +dreadly +dreamed +dreamer +dredged +dredger +dredges +dreeing +Dresden +dressed +dresser +dresses +Dreyfus +dribble +dribbly +driblet +drifted +drifter +drilled +driller +drinker +dripped +drivels +drivers +driving +drizzle +drizzly +drogers +drogher +drogues +droguet +drolled +droller +dromond +dromons +drongos +droning +dronish +drooked +drookit +drooled +drooped +dropfly +droplet +dropped +dropper +drosera +droshky +drostdy +drought +drouked +droukit +drouths +drouthy +drovers +droving +drowned +drowner +drowsed +drowses +drubbed +drucken +drudged +drudger +drudges +drugged +drugger +drugget +druggie +druidic +drumble +drumlin +drummed +drummer +drunken +drunker +drupels +Drusian +dryades +drybeat +dryings +dryness +dualism +dualist +duality +duarchy +dubbing +dubbins +dubiety +dubious +dubnium +ducally +ducdame +Duchamp +duchess +duchies +duckers +duckier +duckies +ducking +ductile +dudders +duddery +duddier +dudeens +dudgeon +dueling +duelled +dueller +duellos +duendes +duennas +duetted +duettos +duffers +duffing +dugongs +dugouts +duikers +dukedom +dulcian +dulcify +dulcite +dulcose +dullard +dullest +dulling +dullish +dulness +dulosis +dulotic +Dulwich +dumaist +dumbest +dumdums +dummied +dummies +dumpbin +dumpers +dumpier +dumpies +dumping +dumpish +Dunaway +duncery +dunched +dunches +Dunciad +Dundalk +dunders +Dunedin +dungeon +dungier +dunging +dunking +Dunkirk +dunlins +dunnage +dunnart +dunnest +dunnies +dunning +dunnish +dunnite +dunnock +Dunsany +Dunstan +dunting +duodena +duopoly +duotone +dupable +dupatta +dupions +duplets +duplied +duplies +duppies +durable +durably +duramen +durance +Durante +durbars +duresse +durgans +durians +durions +durmast +Durrell +Durufl� +duskens +duskier +duskily +dusking +duskish +dustbin +dusters +dustier +dustily +dusting +dustman +dustmen +dutches +duteous +dutiful +duumvir +duvetyn +duykers +dvandva +dvornik +dwalmed +dwarfed +dwarves +dwaumed +dwelled +dweller +dwindle +dwining +dyarchy +dybbuks +dyeable +dyeings +dyeline +dyester +dyingly +Dymphna +dynamic +dynamos +dynasts +dynasty +dynodes +dyslogy +dysodil +dyspnea +dysuria +dysuric +dyvours +dzerens diff --git a/com/agnibho/code/anagram/dictionary/D8.txt b/com/agnibho/code/anagram/dictionary/D8.txt new file mode 100644 index 0000000..fb9b539 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D8.txt @@ -0,0 +1,1634 @@ +dabblers +dabbling +dabchick +dabsters +d'accord +dackered +dactylar +dactylic +Dactylis +Dadaists +daddling +daddocks +daedalic +Daedalus +daemonic +daffiest +daffings +daffodil +daftness +Dagenham +daggings +daggling +daglocks +Daguerre +dagwoods +dahabieh +daikered +daimonic +daintier +dainties +daintily +daiquiri +dairying +dairyman +dairymen +dalesman +dalesmen +Dalglish +dalliers +dallying +dalmahoy +Dalmatia +dalmatic +damaging +Damascus +damasked +damaskin +damassin +dambrods +damnable +damnably +Damocles +damoisel +damosels +damozels +dampened +dampener +dampness +dancette +dancetty +dancings +dandered +dandiest +dandlers +dandling +dandriff +dandruff +dandyish +dandyism +Danegeld +Danegelt +Danelagh +danglers +dangling +Daniella +Danielle +dankness +danseurs +danseuse +Danskers +dapperer +dapperly +dappling +Darbyite +daringly +darioles +darkened +darkener +darkling +darkmans +darkness +darksome +darlings +darnings +darraign +darshans +Dartford +dartling +Dartmoor +dartrous +dasheens +dashekis +dashikis +dastards +dastardy +dasypods +dasyures +Dasyurus +database +dataflow +Datapost +datarias +dataries +dateable +dateless +dateline +datolite +daturine +daubiest +Daubigny +daubings +daughter +daunders +daunters +daunting +dauphine +dauphins +davening +Daventry +davidias +dawdlers +dawdling +dawnings +daybreak +daydream +daylight +daymarks +dayrooms +daystars +daytimes +dazzlers +dazzling +deaconry +deadened +deadener +deadhead +deadlier +deadline +deadlock +deadness +deafened +deafness +dealbate +dealfish +dealings +deanship +dearling +dearness +deathful +debacles +debagged +debarked +debarred +debasers +debasing +debaters +debating +debelled +debility +debiting +debitors +debonair +deboning +deboshed +deboshes +debossed +debosses +d�bouch� +d�brided +d�brides +debriefs +debugged +debugger +debunked +debussed +debusses +d�butant +decadent +decagons +decagram +decamped +decanted +decanter +Decapoda +decapods +decarbed +decaying +deceased +deceases +decedent +deceived +deceiver +deceives +December +decemvir +decently +decerned +deciares +decibels +deciders +deciding +deciduae +decidual +deciduas +decigram +decimals +decimate +decipher +decision +decisive +decisory +deckoing +declaims +declared +declarer +declares +d�class� +declinal +declined +decliner +declines +declutch +decocted +decoders +decoding +decoking +decolors +decolour +decorate +decorous +decorums +decouple +decoying +decrease +decreets +decrepit +decretal +decrials +decrowns +decrying +decrypts +decumans +decupled +decuples +decurias +decuries +decurion +decurved +decurves +dedalian +dedicant +dedicate +deducing +deducted +deediest +deedless +deemster +deepened +deepmost +deepness +deerlets +deerskin +defacers +defacing +defamers +defaming +defatted +defaults +defeated +defeater +defecate +defected +defector +defenced +defences +defended +defender +defenses +deferent +deferral +deferred +deferrer +defiance +deficits +defilade +defilers +defiling +definers +defining +definite +deflated +deflater +deflates +deflator +deflects +deflexed +deflexes +deflower +defluent +deforced +deforces +deforest +deformed +deformer +defouled +defrauds +defrayal +defrayed +defrayer +defreeze +defrocks +defrosts +defrozen +deftness +defuncts +defusing +defuzing +degender +degraded +degrades +degrease +degummed +degusted +dehisced +dehisces +dehorned +dehorner +dehorted +dehorter +deicidal +deicides +deictics +deifical +deifiers +deifying +Deighton +deigning +deionise +deionize +dejected +d�jeuner +dejeunes +dekalogy +dekkoing +delating +delation +delators +Delaunay +Delaware +delayers +delaying +delegacy +delegate +deleting +deletion +deletive +deletory +delicacy +delicate +delights +delimits +delirium +delivers +delivery +deloping +deloused +delouses +Delphian +delubrum +deluders +deluding +deluging +delusion +delusive +delusory +demagogs +demagogy +demanded +demander +demanned +d�marche +demarked +demeaned +demeanor +demented +dementia +d�mentis +demerara +demerged +demerger +demerges +demerits +demersal +demersed +demesnes +demigods +demijohn +demireps +demising +demissly +demisted +demister +demitted +demiurge +demivolt +demobbed +democrat +demolish +demology +demoness +demoniac +Demonian +demonise +demonism +demonist +demonize +demoting +demotion +demotist +demounts +dempster +demurely +demurest +demurral +demurred +demurrer +demyship +denaries +denarius +denature +denazify +dendrite +dendroid +dendrons +Denebola +deniable +deniably +denizens +denotate +denoting +denounce +dentalia +dentaria +dentated +dentelle +dentexes +denticle +dentists +dentures +denudate +denuding +deodands +deodates +deontics +depaints +departed +departer +depeinct +depended +depicted +depicter +depictor +depilate +deplaned +deplanes +depleted +depletes +deplored +deplores +deployed +deplumed +deplumes +deponent +deponing +deported +deportee +deposals +deposers +deposing +deposits +depraved +depraves +deprival +deprived +deprives +depsides +Deptford +depurant +depurate +deputies +deputing +deputise +deputize +d�racin� +derailed +derailer +deranged +deranges +derating +deration +derelict +deriders +deriding +derigged +derision +derisive +derisory +derivate +deriving +dermatic +dermises +derogate +derricks +derri�re +derrises +desalted +descaled +descales +descants +descends +descents +deschool +describe +descried +descries +descrive +deselect +deserted +deserter +deserved +deserver +deserves +desexing +designed +designer +desilver +desinent +desirers +desiring +desirous +desisted +deskills +desolate +desorbed +despairs +despatch +despisal +despised +despiser +despises +despites +despoils +desponds +despotat +despotic +desserts +destined +destines +destrier +destroys +destruct +desyatin +detached +detaches +detailed +detained +detainee +detainer +detected +detector +d�tenues +deterged +deterges +deterred +detested +detester +dethrone +detinues +detonate +detorted +detoured +detoxify +detracts +detrains +d�traqu� +detrital +detritus +detruded +detrudes +detuning +deucedly +deuddarn +deuteron +deutzias +devalued +devalues +develled +develope +develops +Devereux +devested +deviance +deviancy +deviants +deviated +deviates +deviator +devildom +deviless +devilets +deviling +devilish +devilism +devilkin +devilled +deviltry +devisals +devisees +devisers +devising +devisors +devlings +devoiced +devoices +devolved +devolves +Devonian +devotees +devoting +devotion +devoured +devourer +devoutly +dewaters +dewiness +dewitted +dewpoint +Dewsbury +dextrine +dextrose +dextrous +dhansaks +dhoolies +diabases +diabasic +diabetes +diabetic +diablery +diabolic +diaconal +diactine +diademed +diadochi +diadroms +diaglyph +diagnose +diagonal +diagrams +diagraph +diagrids +dialects +dialists +diallage +diallers +dialling +dialogic +dialogue +dialysed +dialyser +dialyses +dialysis +dialytic +dialyzed +dialyzer +dialyzes +diamant� +diameter +diamonds +Diandria +dianodal +dianthus +diapason +diapause +diapente +diapered +diaphone +diapiric +diarchal +diarchic +diarised +diarises +diarists +diarized +diarizes +diarrhea +diascope +diaspora +diaspore +diastase +diastema +diastole +diastyle +diatomic +diatonic +diatribe +diazepam +dibblers +dibbling +dicacity +dicastic +dicentra +dichasia +dichords +dichroic +dickered +dickiest +dicrotic +dictated +dictates +dictator +dictions +dicyclic +didactic +didactyl +didakais +didakeis +didapper +diddicoy +diddlers +diddling +diddycoy +didicois +didicoys +didrachm +didymium +didymous +diebacks +diedrals +diegeses +diegesis +dieldrin +dielytra +diereses +dieresis +diestrus +dietetic +dietines +dietists +Dietrich +differed +diffract +diffused +diffuser +diffuses +digamies +digamist +digammas +digamous +digerati +digested +digester +digestif +diggable +diggings +dighting +digitals +digitate +digitise +digitize +diglyphs +digraphs +digynian +digynous +dihedral +dihedron +dihybrid +dihydric +dilatant +dilaters +dilating +dilation +dilative +dilators +dilatory +dilemmas +diligent +dillings +dillybag +diluents +dilutees +diluters +diluting +dilution +dilutors +diluvial +diluvian +diluvion +diluvium +DiMaggio +Dimbleby +dimerise +dimerism +dimerize +dimerous +dimeters +dimethyl +dimetric +diminish +dimorphs +dimplier +dimpling +dindling +dinettes +dingbats +dingeses +dinghies +dingiest +dinguses +dinkiest +dinmonts +dinnered +Dinornis +dinosaur +diocesan +dioceses +dioecism +Diogenes +Diogenic +Diomedes +Dionysia +Dionysus +diopside +dioptase +diopters +dioptres +dioptric +dioramas +dioramic +diorisms +dioritic +Dioscuri +dioxides +dipchick +diphenyl +diphones +diplegia +diplogen +diploidy +diplomas +diplomat +diplonts +diplopia +diplozoa +dipnoans +dipnoous +dipodies +dippiest +Dipsacus +dipsades +dipteral +dipteran +dipteros +diptychs +directed +directly +director +dirempts +direness +dirigent +dirigism +diriment +dirtiest +dirtying +disabled +disables +disabuse +disadorn +disagree +disallow +disannex +disannul +disapply +disarmed +disarmer +disarray +disaster +disavows +disbands +disbarks +disbench +disbosom +disbowel +disburse +discaged +discages +discandy +discants +discards +discased +discases +discepts +discerns +discerps +discided +discides +discinct +disciple +disclaim +disclose +discoers +discoing +discolor +discords +discount +discover +discreet +discrete +discrown +discuses +disdains +diseased +diseases +disedged +disedges +disendow +disenrol +diseuses +disfavor +disforms +disfrock +disgavel +disgorge +disgowns +disgrace +disgrade +disguise +disgusts +dishabit +dishable +dishelms +disherit +dishevel +dishfuls +dishiest +dishings +dishomed +dishomes +dishonor +dishorns +dishorse +dishouse +dishpans +disinter +disinure +disjects +disjoins +disjoint +disjunct +disjunes +diskette +diskless +disleafs +disleave +disliked +disliken +dislikes +dislimbs +dislimns +dislinks +disloads +dislodge +disloign +disloyal +dismaler +dismally +dismasks +dismasts +dismayed +dismoded +dismount +disnests +Disneyfy +disobeys +disorder +disowned +disowner +dispaced +dispaces +disparks +disparts +dispatch +dispathy +dispeace +dispence +dispense +disperse +dispirit +displace +displant +displays +displing +displode +displume +disponed +disponee +disponer +dispones +disponge +disports +disposal +disposed +disposer +disposes +disposts +dispread +disprize +disproof +disprove +dispunge +dispurse +disputed +disputer +disputes +disquiet +Disraeli +disranks +disrated +disrates +disrobed +disrobes +disroots +disrupts +disseats +dissects +disseise +disseize +dissents +disserts +disserve +dissever +dissight +dissolve +dissuade +distaffs +distains +distally +distance +distaste +distends +disthene +distichs +distills +distinct +distorts +distract +distrail +distrain +distrait +distress +district +distrust +disturbs +distyles +disunion +disunite +disunity +disusage +disusing +disvalue +disvouch +disyoked +disyokes +ditchers +ditching +dithecal +ditheism +ditheist +dithered +ditherer +ditokous +dittoing +dittying +diuresis +diuretic +diurnals +divagate +divalent +diverged +diverges +diversly +diverted +divested +dividant +dividend +dividers +dividing +dividivi +dividual +divinely +diviners +divinest +divinify +divining +divinise +divinity +divinize +division +divisive +divisors +divorced +divorc�e +divorcer +divorces +divulged +divulges +divvying +dizzards +dizziest +dizzying +Djakarta +djellaba +djibbahs +Djibouti +doatings +dobchick +Doberman +Docetism +Docetist +Docherty +dochmiac +dochmius +docilely +docility +docimasy +dockages +docketed +dockings +dockised +dockises +dockized +dockizes +dockland +dockside +dockyard +doctoral +doctored +doctorly +Doctorow +doctress +doctrine +document +doddered +dodderer +dodgiest +Dodonian +dogbanes +dogberry +dogbolts +dogcarts +dogeates +dogeship +dogfoxes +doggedly +doggerel +doggiest +doggings +doggoned +dogholes +dogmatic +dogshore +dogskins +dogsleds +dogteeth +dogtooth +dogtowns +dogtrots +dogvanes +dogwoods +Dohn�nyi +doitkins +doldrums +dolerite +dolesome +dolichos +Dolittle +dollared +dollhood +dolliers +dollying +dolmades +dolomite +doloroso +dolorous +dolphins +domainal +domanial +domatium +Domesday +domestic +domicile +domicils +dominant +dominate +domineer +dominees +Dominica +Dominick +dominies +dominion +dominoes +Domitian +donaries +donatary +donating +donation +donatism +Donatist +donative +donators +donatory +dondered +doneness +donnered +doodlers +doodling +doolally +doomsday +doomsman +doomsmen +doomster +doorbell +doorjamb +doorknob +doormats +doornail +doorpost +doorsman +doorsmen +doorstep +doorstop +doorways +dopamine +dopattas +dopiness +doppings +Dordogne +dorhawks +Doricism +doridoid +dorising +dorizing +dorlachs +dormancy +dormants +dormient +dormouse +Dorothea +dorsally +Dortmund +dortours +dosology +dossiers +dotation +dotingly +dotterel +dottiest +dottrels +douanier +doublers +doublets +doubling +doubloon +doublure +doubters +doubtful +doubting +douceurs +douching +doucines +doughier +doughnut +Dounreay +dourness +douzeper +dovecote +dovecots +dovekies +dovelets +dovelike +dovering +dovetail +dowagers +dowdiest +dowdyish +dowdyism +dowelled +dowering +downbeat +downbows +downcome +downfall +downflow +downhill +downhole +downhome +downiest +downland +download +downmost +downpipe +downplay +downpour +downrush +downside +downsize +downtime +downturn +downward +downwind +doxology +doyennes +dozenths +doziness +drabbers +drabbest +drabbing +drabbish +drabbled +drabbler +drabbles +drabette +drablers +drabness +Dracaena +drachmae +drachmai +drachmas +dracones +draconic +draffish +draftees +drafters +draftier +draftily +drafting +dragging +draggled +draggles +dragline +dragoman +dragomen +dragonet +dragonn� +dragoons +dragsman +dragsmen +dragster +drailing +drainage +drainers +draining +draisene +draisine +dramatic +Drambuie +drammach +dramming +drammock +dranting +drappies +drapping +draughts +draughty +drawable +drawback +drawings +drawlers +drawling +dreaders +dreadful +dreading +dreamers +dreamery +dreamful +dreamier +dreamily +dreaming +drearier +drearily +drearing +dredgers +dredging +dreggier +drenched +drencher +drenches +dressage +dressers +dressier +dressily +dressing +Dreyfuss +dribbled +dribbler +dribbles +dribblet +driblets +dricksie +driftage +drifters +driftier +drifting +driftpin +drillers +drilling +drinkers +drinking +drippier +dripping +drisheen +drivable +driveled +driveler +driveway +drizzled +drizzles +Drogheda +droghers +droguets +drollery +drollest +drolling +drollish +dromical +dromonds +drongoes +droogish +drooking +drooling +droopier +droopily +drooping +drophead +droppers +dropping +dropsied +dropwise +droseras +droskies +drossier +droughts +droughty +drouking +drownded +drowners +drowning +drowsier +drowsily +drowsing +drubbing +drudgers +drudgery +drudging +drudgism +druggers +druggets +druggies +drugging +druggist +Druidess +druidism +drumbeat +drumfire +drumfish +drumhead +drumlier +drumlins +drummers +drumming +drummock +Drummond +drunkard +drunkest +drupelet +druthers +drymouth +Drysdale +dualisms +dualists +dubbings +dubitate +Dubliner +Dubonnet +Dubuffet +ducatoon +Duchenne +duchesse +duckbill +duckiest +duckings +duckling +duckweed +ductless +duddiest +dudgeons +duellers +duelling +duellist +duelsome +duetting +duettino +duettist +Duisburg +dukedoms +dukeling +dukeries +dukeship +Dukhobor +dulciana +dulcians +dulcimer +Dulcinea +dulcitol +dullards +dullness +dumaists +dumbbell +dumbness +dumfound +Dumfries +dummerer +dummkopf +dummying +dumosity +dumpbins +dumpiest +dumpling +dumpster +duncedom +dunching +dungaree +dungeons +dunghill +dungiest +dungmere +dunnages +dunnakin +dunnarts +dunnocks +duodenal +duodenum +duologue +duotones +dupattas +duperies +duplexer +duplexes +duplying +dupondii +durables +duramens +duration +durative +duresses +durmasts +durukuli +Dushanbe +duskened +duskiest +duskness +dustbins +dustiest +dustless +Dutchman +Dutchmen +dutiable +duumviri +duumvirs +duvetine +duvetyne +duvetyns +duxelles +dvandvas +dvorniks +dwalming +dwarfing +dwarfish +dwarfism +dwauming +dwellers +dwelling +dwindled +dwindles +dyelines +dyesters +dyestuff +dynamics +dynamise +dynamism +dynamist +dynamite +dynamize +dynastic +dynatron +dyschroa +dysgenic +dyslexia +dyslexic +dysmelia +dysmelic +dysodile +dysodyle +dyspathy +dyspepsy +dysphagy +dyspneal +dyspneic +dyspnoea +dystocia +dystonia +dystonic +dystopia +dytiscid +Dytiscus diff --git a/com/agnibho/code/anagram/dictionary/D9.txt b/com/agnibho/code/anagram/dictionary/D9.txt new file mode 100644 index 0000000..e15c36e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/D9.txt @@ -0,0 +1,1657 @@ +dabbities +dabblings +dabchicks +dachshund +dackering +dacoitage +dacoities +dactylist +Dadaistic +Daedalian +daffodils +dahabeeah +dahabiehs +dahabiyah +dahabiyeh +daikering +daintiest +daiquiris +dairyings +dairymaid +Dalhousie +dalliance +dalmahoys +Dalmatian +dalmatics +Dalradian +Daltonian +Daltonism +damascene +damaskeen +damasking +damaskins +damasquin +damassins +damnation +damnatory +damnedest +damnified +damnifies +Damoclean +damoisels +dampeners +dampening +damselfly +danceable +dancettee +dancettes +dandelion +dandering +dandiacal +dandified +dandifies +dandiprat +dandyfunk +dandyprat +dangerous +danglings +Dankworth +dannebrog +danseuses +Dantesque +danthonia +dapperest +Dardanian +darkeners +darkening +darklings +Darmstadt +dartboard +dartingly +Dartmouth +Darwinian +Darwinism +Darwinist +dashboard +dashingly +dastardly +databases +databuses +datacomms +dataglove +datelines +dauberies +daughters +daundered +dauntless +dauphines +davenport +daybreaks +daydreams +daydreamt +daylights +dayspring +dazzlings +deaconess +deadeners +deadening +deadheads +deadliest +deadlight +deadlines +deadlocks +deadstock +deafening +deaneries +deanships +deathless +deathlier +deathlike +deathsman +deathward +Deauville +debagging +debarking +debarment +debarrass +debarring +debatable +debateful +debauched +debauchee +debaucher +debauches +debelling +debenture +deboshing +debossing +debouched +debouches +d�briding +debriefed +debruised +debuggers +debugging +debunking +debussing +d�butante +d�butants +decachord +decadence +decadency +decadents +decagonal +decagrams +Decagynia +decalcify +decalitre +decalogue +Decameron +decametre +decamping +Decandria +decantate +decanters +decanting +decapodal +decapodan +Decapolis +decarbing +decastere +decastich +decastyle +decathlon +decaudate +deceasing +deceitful +deceivers +deceiving +decemviri +decemvirs +decencies +decennary +decennial +decennium +deception +deceptive +deceptory +decerning +decession +d�ch�ance +decidable +decidedly +deciduate +deciduous +decigrams +deciliter +decilitre +decillion +decimally +decimated +decimates +decimator +decimeter +decimetre +deciphers +decisions +decistere +declaimed +declaimer +declarant +declarers +declaring +declassed +d�class�e +d�class�s +declinant +declinate +decliners +declining +declivity +declivous +decocting +decoction +decoctive +decocture +decoherer +decollate +d�collet� +decolored +decolours +decomplex +decompose +decongest +decontrol +decorated +decorates +decorator +decoupage +decoupled +decouples +decreased +decreases +decreeing +decrement +decretals +decretist +decretive +decretory +decrowned +decrypted +decubitus +decumbent +decupling +decurions +decurrent +decursion +decursive +decurving +decussate +dedicants +dedicated +dedicatee +dedicates +dedicator +dedimuses +deducible +deducting +deduction +deductive +deemsters +deepening +deerberry +deerskins +defalcate +defamings +defatting +defaulted +defaulter +defeaters +defeating +defeatism +defeatist +defeature +defecated +defecates +defecator +defecting +defection +defective +defectors +defendant +defenders +defending +defensive +deferable +deference +deferents +deferment +deferrals +deferrers +deferring +defiances +defiantly +deficient +defiladed +defilades +definable +definably +definiens +deflaters +deflating +deflation +deflators +deflected +deflector +deflexing +deflexion +deflexure +deflorate +deflowers +defluxion +defoliant +defoliate +deforcing +deforests +deformers +deforming +deformity +defouling +defrauded +defrauder +defrayals +defrayers +defraying +defreezes +defrocked +defrosted +defroster +degarnish +degaussed +degausses +degrading +degreased +degreases +degumming +degustate +degusting +dehiscent +dehiscing +dehorners +dehorning +dehorters +dehorting +dehydrate +Deinornis +deinosaur +deionised +deionises +deionized +deionizes +deiparous +deistical +dejecting +dejection +dejectory +d�jeuners +Dekabrist +Delacroix +delapsion +delegable +delegated +delegates +deletions +Delftware +delicates +delicious +delighted +delimited +delineate +deliquium +deliriant +delirious +deliriums +delivered +deliverer +deliverly +delousing +delphinia +Delphinus +delubrums +deludable +delundung +delusions +demagogic +demagogue +demandant +demanders +demanding +demanning +demantoid +demarcate +d�marches +demarking +demeaning +demeanors +demeanour +dementate +dementias +dementing +demergers +demerging +demersion +Demetrius +demijohns +demipique +demisable +demission +demissive +demisters +demisting +demitasse +demitting +demiurges +demiurgic +demiurgus +demivolte +demivolts +demobbing +democracy +democrats +demoniacs +demonised +demonises +demonists +demonized +demonizes +demotions +demotists +demounted +dempsters +demulcent +demulsify +demurrage +demurrals +demurrers +demurring +demyships +demystify +denatured +denatures +dendrites +dendritic +denervate +denigrate +denitrate +denitrify +denizened +denotable +denotated +denotates +denounced +denouncer +denounces +denseness +densified +densifier +densifies +densities +dentalium +dentarias +dentaries +dentation +denticles +dentiform +dentistry +dentition +denudated +denudates +denyingly +deodorant +deodorise +deodorize +deoxidate +deoxidise +deoxidize +depainted +Depardieu +departers +departing +departure +depasture +dependant +dependent +depending +depicters +depicting +depiction +depictive +depictors +depicture +depilated +depilates +depilator +deplaning +depleting +depletion +depletive +depletory +deploring +deploying +depluming +deponents +deportees +deporting +deposable +deposited +depositor +depraving +depravity +deprecate +depredate +deprehend +depressed +depresses +depressor +deprivals +depriving +deprogram +depthless +depurants +depurated +depurates +depurator +deputised +deputises +deputized +deputizes +derailers +derailing +deranging +deratings +derations +derelicts +derigging +derisible +derisions +derivable +derivably +dermatoid +dermatome +derogated +derogates +derri�res +derringer +dervishes +desalting +descaling +descanted +Descartes +descended +descender +deschools +described +describer +describes +descrived +descrives +descrying +Desdemona +desecrate +deselects +deserters +deserting +desertion +deservers +deserving +desiccant +desiccate +designate +designers +designful +designing +desilvers +desinence +desipient +desirable +desirably +desisting +deskilled +desmodium +desmosome +d�soeuvr� +desolated +desolater +desolates +desolator +desorbing +despaired +desperado +desperate +despisers +despising +despoiled +despoiler +desponded +despotate +despotats +despotism +despumate +destemper +destinate +destinies +destining +destitute +destriers +destroyed +destroyer +destructs +desuetude +desulphur +desultory +desyatins +detaching +detailing +detainees +detainers +detaining +detecting +detection +detective +detectors +detention +detergent +deterging +determent +determine +deterrent +deterring +detersion +detersive +detesters +detesting +dethroned +dethroner +dethrones +detonated +detonates +detonator +detorsion +detorting +detortion +detouring +detracted +detractor +detrained +d�traqu�e +d�traqu�s +detriment +detrition +detruding +detrusion +Deucalion +deuddarns +deuterate +deuteride +deuterium +deuterons +devaluate +devaluing +devastate +develling +developed +developer +devesting +deviances +deviating +deviation +deviators +deviatory +deviceful +devilings +devilkins +devilling +devilment +devilries +devilship +deviously +devisable +devitrify +devoicing +devolving +devonport +devotedly +devotions +devourers +devouring +dewannies +dewatered +dewitting +dewlapped +Dexedrine +dexterity +dexterous +dextrally +dextrorse +dharmsala +diabetics +diablerie +diabolise +diabolism +diabolist +diabolize +diabology +diachylon +diachylum +diacodion +diacodium +diaconate +diacritic +diactinal +diactinic +diaereses +diaeresis +Diaghilev +diaglyphs +diagnosed +diagnoses +diagnosis +diagonals +diagraphs +dialectal +dialectic +diallages +diallagic +diallings +dialogise +dialogist +dialogite +dialogize +dialogues +dialysers +dialysing +dialyzers +dialyzing +diamagnet +diamant�s +diameters +diametral +diametric +diamonded +diandrous +dianetics +dianoetic +diapasons +diapauses +diapentes +diapering +diaphones +diaphragm +diaphyses +diaphysis +diapirism +diapyeses +diapyesis +diapyetic +diarchies +diarising +diarizing +diarrheal +diarrheic +diarrhoea +diascopes +diasporas +diastasic +diastasis +diastatic +diastoles +diastolic +diastyles +diathermy +diatheses +diathesis +diathetic +diatomist +diatomite +diatretum +diatribes +diatropic +diazeuxis +diazonium +dicastery +dicentras +dichasial +dichasium +dichogamy +dichotomy +dichroism +dichroite +dichromat +dichromic +dickenses +dickering +Dickinson +Dicksonia +diclinism +diclinous +dicrotism +dicrotous +dictating +dictation +dictators +dictatory +dictatrix +dictature +dictyogen +didactics +didactyls +didappers +diddicoys +diddycoys +Didelphia +didelphic +didelphid +Didelphis +didrachma +didrachms +Didynamia +dielytras +dieselise +dieselize +dietarian +dietetics +dietician +dietitian +different +differing +difficile +difficult +diffident +diffluent +diffracts +diffusely +diffusers +diffusing +diffusion +diffusive +digamists +digastric +digesters +digesting +digestion +digestive +digitalin +Digitalis +digitally +digitated +digitised +digitiser +digitises +digitized +digitizer +digitizes +dignified +dignifies +dignitary +dignities +digressed +digresses +dihedrals +dihedrons +dihybrids +dilatable +dilatancy +dilatator +dilations +diligence +dillybags +dilutable +dilutions +diluvions +diluviums +dimension +dimerised +dimerises +dimerized +dimerizes +dimidiate +dimissory +dimorphic +dimpliest +dimwitted +dimyarian +Dinantian +dinginess +dinnering +Dinoceras +dinomania +dinosaurs +dinothere +diocesans +dioecious +dioestrus +Dionysiac +Dionysian +Dionysius +dioptrate +dioptrics +dioristic +Dioscorea +diosgenin +dipchicks +dipeptide +diphthong +diphysite +diplomacy +diplomaed +diplomate +diplomats +diplozoon +dipodidae +dipterans +dipterist +dipterous +directing +direction +directive +directors +directory +directrix +direfully +dirempted +dirigible +dirigisme +dirigiste +dirtiness +disabling +disabused +disabuses +disaccord +disadorns +disaffect +disaffirm +disagreed +disagrees +disallied +disallies +disallows +disanchor +disannuls +disanoint +disappear +disarmers +disarming +disarrays +disasters +disattire +disattune +disavowal +disavowed +disbanded +disbarked +disbarred +disbelief +disbodied +disbosoms +disbowels +disbranch +disbudded +disburden +disbursal +disbursed +disburses +discaging +discalced +discanted +discarded +discasing +discepted +discerned +discerner +discerped +discharge +disciding +disciples +disclaims +disclosed +discloses +discoboli +discoidal +discology +discolors +discolour +discomfit +discommon +discorded +discounts +discourse +discovers +discovert +discovery +discredit +discrowns +discursus +discussed +discusses +disdained +disedging +disembark +disembody +disemploy +disenable +disendows +disengage +disenrols +disentail +disentomb +disesteem +disfavors +disfavour +disfigure +disfluent +disforest +disformed +disfrocks +disgavels +disgodded +disgorged +disgorges +disgowned +disgraced +disgracer +disgraces +disgraded +disgrades +disguised +disguiser +disguises +disgusted +dishallow +dishelmed +dishevels +dishoming +dishonest +dishonors +dishonour +dishorned +dishorsed +dishorses +dishoused +dishouses +dishumour +disillude +disimmure +disinfect +disinfest +disinhume +disinters +disinvest +disjected +disjoined +disjoints +diskettes +disleafed +disleaved +disleaves +disliking +dislimbed +dislimned +dislinked +disloaded +dislocate +dislodged +dislodges +dismalest +dismality +dismanned +dismantle +dismasked +dismasted +dismayful +dismaying +dismember +dismissal +dismissed +dismisses +dismounts +disnested +disobeyed +disoblige +disorders +disorient +disowners +disowning +dispacing +disparage +disparate +disparity +disparked +disparted +dispauper +dispelled +dispensed +dispenser +dispenses +dispeople +dispersal +dispersed +disperser +disperses +dispirits +displaced +displaces +displants +displayed +displayer +displease +displumed +displumes +dispondee +disponees +disponers +disponged +disponges +disponing +disported +disposals +disposers +disposing +disposted +disposure +dispraise +dispreads +disprized +disprizes +disprofit +disproofs +disproval +disproved +disproven +disproves +dispunged +dispunges +dispursed +dispurses +disputant +disputers +disputing +disquiets +disranked +disrating +disregard +disrelish +disrepair +disrepute +disrobing +disrooted +disrupted +disrupter +disruptor +dissaving +disseated +dissected +dissector +disseised +disseises +disseisin +disseisor +disseized +disseizes +disseizin +disseizor +dissemble +dissembly +dissented +dissenter +disserted +disserved +disserves +dissevers +disshiver +dissident +dissights +dissimile +dissipate +dissocial +dissolute +dissolved +dissolves +dissonant +dissuaded +dissuader +dissuades +distained +distanced +distances +distantly +distasted +distastes +distemper +distended +disthrone +distichal +distilled +distiller +distingu� +distorted +distracts +distrails +distrains +distraint +distraite +districts +distrusts +disturbed +disturber +disunions +disunited +disunites +disvalued +disvalues +disyoking +dithecous +ditheists +ditherers +dithering +dithyramb +ditrochee +dittander +dittanies +dittology +diuretics +diurnally +diuturnal +divagated +divagates +divalency +divalents +divellent +divergent +diverging +diversely +diversify +diversion +diversity +diverting +divertive +divesting +divesture +dividable +dividedly +dividends +dividings +dividuous +divinator +divinised +divinises +divinized +divinizes +divisible +divisibly +divisions +divorc�es +divorcers +divorcing +divorcive +divulgate +divulging +divulsion +divulsive +Dixieland +dizygotic +dizziness +djellabah +djellabas +dobchicks +Dobermann +Dobermans +dobhashes +Docetists +docketing +dockising +dockizing +Docklands +docksides +dockyards +doctorand +doctorate +doctoress +doctorial +doctoring +doctrinal +doctrines +docudrama +documents +dodderers +doddering +doddypoll +dodecagon +Dodonaean +dogaressa +dogfishes +doggeries +doggerman +doggermen +doggesses +dogginess +doggishly +dogmatics +dogmatise +dogmatism +dogmatist +dogmatize +dogmatory +dog'sbane +dogshores +dolefully +doleritic +Dolgellau +dollhouse +dolliness +dolomites +dolomitic +dolorific +doltishly +Domdaniel +domestics +domiciled +domiciles +dominance +dominancy +dominants +dominated +dominates +dominator +domineers +dominical +Dominican +dominions +Donatello +donations +donatives +Doncaster +dondering +Donizetti +doodlebug +doohickey +Doolittle +doomsayer +doomsdays +doomsters +doomwatch +doorbells +doorframe +doorjambs +doorknobs +doorknock +doornails +doorposts +doorsteps +doorstops +Dordrecht +Dorididae +doridoids +dormition +dormitive +dormitory +Dormobile +doronicum +dorsiflex +dosimeter +dosimetry +dosiology +dotations +dotterels +dottiness +douaniers +doubleton +doublings +doubloons +doublures +doubtable +doubtings +doubtless +douceness +doucepere +doughiest +doughnuts +doughtier +doughtily +Doukhobor +douzepers +dovecotes +dovetails +dowdiness +dowelling +dowerless +dowitcher +downbeats +downburst +downcomer +downcomes +downfalls +downflows +downforce +downgrade +downhills +downiness +downlands +downloads +downpipes +downplays +downpours +downrange +downright +downriver +downshift +downsized +downsizes +downspout +downstage +downstair +downstate +downswing +downtimes +downtrend +downturns +downwards +drabblers +drabbling +drabettes +draconian +draconism +dracontic +draftiest +draftsman +draftsmen +draggling +draglines +dragomans +dragoness +dragonets +dragonfly +dragonise +dragonish +dragonism +dragonize +dragooned +dragsters +drainable +drainages +draisenes +draisines +Dramamine +dramatics +dramatise +dramatist +dramatize +dramaturg +drammachs +drammocks +draperied +draperies +dratchell +draughted +draughter +Dravidian +drawbacks +dreadless +dreamboat +dreamhole +dreamiest +dreamings +dreamland +dreamless +dreamlike +dreariest +dreggiest +drenchers +drenching +drepanium +dressiest +dressings +dressmake +dribblers +dribblets +dribbling +driftages +driftiest +driftless +driftpins +drinkable +drinkings +drippiest +drippings +driveable +drivelers +driveling +drivelled +driveller +driveways +drizzlier +drizzling +Droitwich +drollings +drollness +dromedary +droningly +dronishly +drookings +droopiest +dropflies +droppings +dropsical +dropstone +droshkies +drossiest +droukings +drouthier +drownings +drowsiest +drubbings +drudgisms +druggists +druidical +drumbeats +drumheads +drumliest +drummocks +drumstick +drunkards +drunkenly +drupelets +Dryasdust +drysalter +dualistic +dualities +duarchies +dubiosity +dubiously +dubitable +dubitably +dubitancy +dubitated +dubitates +Dubliners +Dubrovnik +ducatoons +duchesses +duckbills +ducklings +duckshove +duckweeds +ductility +dudderies +duellists +duettinos +duettists +dufferdom +dufferism +dukelings +dukeships +Dukhobors +dulcamara +dulcianas +dulcified +dulcifies +dulcimers +dulcitone +dulcitude +dulocracy +Dumbarton +dumbbells +dumbfound +dumfounds +dummerers +dumminess +dummkopfs +dumpiness +dumpishly +dumplings +dumpsters +Dundonian +Dundreary +Dungannon +dungarees +Dungeness +dungeoned +dungeoner +dunghills +dungmeres +Dunkerque +dunnakins +Dunroamin +Dunsinane +Dunstable +duodecimo +duodenary +duodenums +duologues +duopolies +duplexers +duplicand +duplicate +duplicity +dupondius +duralumin +durations +duratives +durukulis +duskening +duskiness +duskishly +dustiness +dustproof +duteously +dutifully +duumviral +duvetines +duvetynes +dwellings +dwindling +dyarchies +dyestuffs +dyingness +dynamical +dynamised +dynamises +dynamists +dynamited +dynamiter +dynamites +dynamized +dynamizes +dynamotor +dynasties +dynatrons +dyschroia +dyscrasia +dysentery +dysgenics +dyslectic +dyslexics +dyspepsia +dyspeptic +dysphagia +dysphagic +dysphasia +dysphonia +dysphonic +dysphoria +dysphoric +dysplasia +dyspnoeal +dyspnoeic +dyspraxia +dystectic +dysthesia +dysthetic +dysthymia +dysthymic +dystocias +dystonias +dystopian +dystopias +dystrophy +dytiscids +dziggetai diff --git a/com/agnibho/code/anagram/dictionary/E1.txt b/com/agnibho/code/anagram/dictionary/E1.txt new file mode 100644 index 0000000..d905d9d --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E1.txt @@ -0,0 +1 @@ +e diff --git a/com/agnibho/code/anagram/dictionary/E10.txt b/com/agnibho/code/anagram/dictionary/E10.txt new file mode 100644 index 0000000..660d11e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E10.txt @@ -0,0 +1,1266 @@ +eaglewoods +earbashing +earlierise +earlierize +earmarking +earthbound +earthfalls +earthiness +earthliest +earthlings +earthmover +earthquake +earthwards +earthwoman +earthwomen +earthworks +earthworms +earwigging +Eastbourne +EastEnders +easterlies +easterling +eastermost +easterners +Eastertide +eastwardly +Eatanswill +eavesdrips +eavesdrops +ebionising +ebionitism +ebionizing +ebracteate +ebullience +ebulliency +ebullition +eburnation +ecardinate +eccentrics +ecchymosed +ecchymosis +ecchymotic +ecclesiast +eccoprotic +ecdysiasts +echinoderm +Echinoidea +echopraxia +echopraxis +ecological +ecologists +economical +economised +economiser +economises +economists +economized +economizer +economizes +ecospecies +ecospheres +ecosystems +ecotourism +ecotourist +ecphoneses +ecphonesis +ecphractic +ecstasised +ecstasises +ecstasized +ecstasizes +ecstasying +ecthlipses +ecthlipsis +ectoblasts +ectocrines +ectodermal +ectodermic +ectoenzyme +ectogenous +ectomorphs +ectomorphy +ectophytes +ectophytic +ectoplasms +ectotherms +ectropions +ectropiums +Ecuadorans +Ecuadorian +ecumenical +eczematous +edaciously +edaphology +edentulous +edibleness +edifyingly +editorials +editorship +editresses +educations +educements +edulcorant +edulcorate +Edwardiana +eelgrasses +effaceable +effacement +effectible +effectless +effectuate +effeminacy +effeminate +effeminise +effeminize +effervesce +effeteness +efficacity +efficience +efficiency +efficients +effigurate +effleurage +effloresce +effluences +effluviums +effluxions +effortless +effrontery +effulgence +effusively +eglandular +eglantines +egocentric +egoistical +egomaniacs +egressions +Egyptology +eiderdowns +eidographs +eigentones +eigenvalue +eighteenmo +eighteenth +eightieths +eightpence +eightpenny +eightscore +eightsomes +eirenicons +Eisenhower +Eisenstadt +Eisenstein +eisteddfod +ejaculated +ejaculates +ejectments +ekistician +elaborated +elaborates +elaborator +elaeolites +elastances +elasticate +elasticise +elasticity +elasticize +elastomers +elatedness +elderberry +elderships +elecampane +electively +electivity +electorate +electoress +electorial +electrical +electrised +electrises +electrized +electrizes +electrodes +electrogen +electromer +electronic +elementals +elementary +Eleusinian +elevations +eleventhly +eliminable +eliminants +eliminated +eliminates +eliminator +ellipsoids +elliptical +elocutions +eloignment +elongating +elongation +elopements +eloquences +eloquently +elucidated +elucidates +elucidator +elutriated +elutriates +elutriator +elytriform +emaciating +emaciation +emalangeni +emanations +emanatists +emancipate +emancipist +emarginate +emasculate +embalmings +embalmment +embankment +embargoing +embarkment +embarrings +embasement +embassador +embassages +embattling +embayments +embedments +embezzlers +embezzling +embittered +embitterer +emblazoned +emblazoner +emblazonry +emblematic +emblements +emblemised +emblemises +emblemized +emblemizes +emblooming +emblossoms +embodiment +emboldened +emboldener +embolismic +embonpoint +emboscatas +embosoming +embossment +embouchure +embowelled +embowering +embraceors +embrangled +embrangles +embrasures +embrazures +embreading +embreathed +embreathes +embrittled +embrittles +embrocated +embrocates +embroglios +embroiders +embroidery +embroiling +embrowning +embryogeny +embryology +embryonate +embryotomy +embryulcia +emendating +emendation +emendators +emendatory +emergences +emergently +emetically +emigrating +emigration +emigratory +eminencies +eminential +emissaries +emissivity +Emmanuelle +emmarbling +emmenology +Emmentaler +emmetropes +emmetropia +emmetropic +emolliated +emolliates +emollients +emollition +emoluments +empalement +empanelled +emparadise +empathetic +empathised +empathises +empathized +empathizes +Empedocles +empennages +emperising +emperizing +Empfindung +emphasised +emphasises +emphasized +emphasizes +emphatical +emphractic +emphysemas +emphysemic +empiricism +empiricist +emplastron +emplastrum +emplectons +emplectums +employable +employment +empoisoned +empoldered +empoverish +empowering +empurpling +empyreumas +emulations +emulatress +emulsified +emulsifier +emulsifies +enactments +enamelists +enamellers +enamelling +enamellist +enamorados +enamouring +enantiomer +enantiosis +enarration +encampment +encarpuses +encasement +encashment +encaustics +encephalic +encephalin +encephalon +enchaining +enchanters +enchanting +enchiladas +encincture +enciphered +encircling +enclasping +encloister +enclosures +enclothing +enclouding +encoignure +encoloured +encolpions +encolpiums +encomiasts +encomienda +encounters +encouraged +encourager +encourages +encradling +encreasing +encrimsons +encrinital +encrinites +encrinitic +encroached +encroacher +encroaches +encrusting +encrypting +encryption +encumbered +encurtains +encyclical +encystment +endamaging +endamoebae +endangered +endangerer +endearment +endeavored +endeavours +endemicity +endenizens +endermatic +endermical +endoblasts +endocrinal +endocrinic +endocritic +endodermal +endodermic +endodermis +endogamies +endogamous +endogenous +endolymphs +endomorphs +endomorphy +endophytes +endophytic +endoplasms +endopleura +endopodite +endorhizal +endorphins +endorsable +endoscopes +endoscopic +endosmoses +endosmosis +endosmotic +endosperms +endospores +endosteums +endothelia +endowments +endungeons +endurances +enduringly +energetics +energisers +energising +energizers +energizing +energumens +enervating +enervation +enervative +enfacement +enfeebling +enfeoffing +enfestered +enfettered +enfilading +enfleshing +enflowered +enfoldment +enforcedly +enforested +enfreezing +engagement +engagingly +engarlands +engarrison +engendered +engenderer +engendrure +engineered +engirdling +Englanders +Englishism +Englishman +Englishmen +englooming +englutting +engouement +engo�ments +engrafting +engrailing +engrainers +engraining +engravings +engrooving +engrossers +engrossing +engulfment +enharmonic +enheartens +enhungered +enhydrites +enhydritic +enhydroses +enigmatise +enigmatist +enigmatize +enjambment +enjoinment +enjoyments +enkephalin +enkindling +enlacement +enlargedly +enlevement +enlightens +enlistment +enliveners +enlivening +enmeshment +enneagonal +Enneandria +enneastyle +enormities +enormously +enragement +enraptured +enraptures +enravished +enravishes +enregiment +enregister +enrheuming +enrichment +enrollment +enrolments +ensanguine +enschedule +ensconcing +ensheathed +ensheathes +enshielded +enshrining +enshrouded +ensigncies +ensignship +ensilaging +ensnarling +ensorcells +ensphering +enstamping +enstatites +enswathing +entailment +entamoebae +entangling +entelluses +enterocele +enterolith +enterotomy +enterprise +entertains +enthraldom +enthralled +enthroning +enthronise +enthronize +enthusiasm +enthusiast +enthymemes +enticeable +enticement +enticingly +entireness +entitative +entoblasts +entoilment +entombment +entomology +entophytal +entophytes +entophytic +entourages +entr'actes +entraining +entrammels +entrancing +entrapment +entrappers +entrapping +entreaties +entreating +entrechats +entrec�tes +entrenched +entrenches +entropions +entropiums +entrusting +Entryphone +entwisting +enucleated +enucleates +enumerable +enumerated +enumerates +enumerator +enunciable +enunciated +enunciates +enunciator +enuredness +enveloping +envenoming +environics +environing +envisaging +envisioned +envoyships +enwrapment +enwrapping +enwreathed +enwreathes +enzymology +eosinophil +epagomenal +epanaphora +eparchates +epaulement +epaulettes +epeirogeny +epentheses +epenthesis +epenthetic +epexegeses +epexegesis +epexegetic +ephemerals +ephemerids +ephemerist +ephemerons +ephemerous +epiblastic +epicalyxes +epicanthic +epicanthus +epicenters +epicentral +epicentres +epicondyle +epicureans +epicurised +epicurises +epicurized +epicurizes +epicuticle +epicycloid +epideictic +epidemical +epidendrum +epidermoid +epididymis +epidiorite +epidosites +epidotised +epidotized +epigastric +epigenesis +epigenetic +epiglottic +epiglottis +epigraphed +epigrapher +epigraphic +epilations +epileptics +epilimnion +epilobiums +epilogised +epilogises +epilogists +epilogized +epilogizes +epiloguise +epiloguize +epimeletic +epinicions +epinikions +epiphonema +epiphragms +epiphytism +epiplastra +epirrhemas +episcopacy +episcopant +episcopate +episcopise +episcopize +episematic +episiotomy +episodical +epispastic +epistemics +episternal +episternum +epistolary +epistolers +epistolets +epistolise +epistolist +epistolize +epistrophe +epitaphers +epitaphian +epitaphing +epitaphist +epithelial +epithelium +epithemata +epithermal +epitheting +epithetons +epitomical +epitomised +epitomiser +epitomises +epitomists +epitomized +epitomizer +epitomizes +epizootics +eponychium +epulations +epurations +equability +equalisers +equalising +equalities +equalizers +equalizing +equanimity +equanimous +equatorial +equestrian +equilibria +equiparate +equipoised +equipoises +equipotent +equisetums +equitation +equivalent +equivocate +equivoques +eradiating +eradiation +eradicable +eradicated +eradicates +eradicator +erasements +erectility +eremitical +erethismic +erethistic +Erewhonian +ergataners +ergativity +ergatogyne +ergodicity +ergographs +ergomaniac +ergometers +ergonomics +ergonomist +ergophobia +ergosterol +ergotising +ergotizing +ericaceous +Eriocaulon +eriometers +eriophorum +Ermintrude +erotically +eroticised +eroticises +eroticists +eroticized +eroticizes +erotogenic +erotomania +erubescent +erubescite +eructating +eructation +eruptional +eruptivity +erysipelas +erythrinas +erythrites +erythritic +escadrille +escalading +escaladoes +escalating +escalation +escalators +escalatory +escallonia +escalloped +escamotage +escapadoes +escapeless +escapement +escapology +escarpment +escharotic +escheatage +escheating +escheators +esclandres +escribanos +escritoire +Esculapian +escutcheon +esophageal +espadrille +espaliered +especially +espionages +esplanades +espressivo +essayettes +essayistic +essentials +estafettes +estaminets +estanciero +estatesman +estatesmen +esterified +esterifies +Esthonians +estimating +estimation +estimative +estimators +estipulate +estivating +estivation +estoppages +estrangelo +estrangers +estranging +estrapades +estreating +estrildids +esuriences +esuriently +eternalise +eternalist +eternalize +eternising +eternities +eternizing +ethambutol +Etheostoma +ethereally +etherifies +etherising +etherizing +ethicality +ethicising +ethicizing +Ethiopians +ethnically +ethnocides +ethologist +ethylamine +ethylating +etiolating +etiolation +etiologies +etiquettes +eubacteria +eucalyptol +eucalyptus +eucaryotes +eucaryotic +eucharises +Eucharists +euchlorine +eudaemonia +eudaemonic +eudemonics +eudemonism +eudialytes +eudiometer +eugenicist +Euglenales +euharmonic +euhemerise +euhemerism +euhemerist +euhemerize +eukaryotes +eukaryotic +eulogisers +eulogising +eulogistic +eulogizers +eulogizing +eumelanins +eunuchised +eunuchises +eunuchized +eunuchizes +euonymuses +euphausids +euphausiid +euphemised +euphemises +euphemisms +euphemized +euphemizes +euphonical +euphonious +euphonised +euphonises +euphoniums +euphonized +euphonizes +euphorbias +euphorbium +euphoriant +euphrasies +Euphrosyne +euphuising +euphuistic +euphuizing +Eurafrican +eurhythmic +Eurobabble +eurocheque +Euroclydon +Eurodollar +euromarket +Europhiles +Eurotunnel +Eurovision +eurypterid +Eurypterus +eurytherms +eurythmics +eurythmies +Eustachian +euthanasia +euthenists +Euthyneura +evacuating +evacuation +evacuative +evacuators +evagations +evaginated +evaginates +evaluating +evaluation +evaluative +evanescent +evanescing +evangeliar +Evangeline +evangelise +evangelism +evangelist +evangelize +evanishing +evanitions +Evansville +evaporable +evaporated +evaporates +evaporator +eventfully +eventually +eventuated +eventuates +everglades +evergreens +everyplace +everything +everywhere +evidencing +evidential +evincement +eviscerate +evitations +eviternity +evocations +evolutions +evolvement +evulgating +exacerbate +exactingly +exactitude +exactments +exaggerate +exaltation +examinable +examinants +examinates +examinator +exanthemas +exarations +exarchates +exarchists +exasperate +excavating +excavation +excavators +excellence +excellency +excelsiors +exceptants +exceptions +exceptious +exceptless +excerpting +excerption +excerptors +exchangers +exchanging +exchequers +excipients +excitation +excitative +excitatory +excitement +excitingly +exclaiming +exclosures +excludable +exclusions +exclusives +excogitate +excoriated +excoriates +excrementa +excrescent +excretions +excruciate +exculpable +exculpated +exculpates +excursions +excursuses +excusatory +execrating +execration +execrative +execratory +executable +executancy +executants +executions +executives +executress +exegetical +exegetists +exemptions +exenterate +exequaturs +exercisers +exercising +exfoliated +exfoliates +exfoliator +exhalation +exhausters +exhausting +exhaustion +exhaustive +exhibiters +exhibiting +exhibition +exhibitive +exhibitors +exhibitory +exhilarant +exhilarate +exhumating +exhumation +exigencies +exiguously +exilements +eximiously +existences +exobiology +exocytosis +exogenetic +exonerated +exonerates +exonerator +exophagous +exopodites +exopoditic +exorbitant +exorbitate +exorcisers +exorcising +exorcizers +exorcizing +exospheres +exospheric +exosporous +exoterical +exothermal +exothermic +exotically +exoticisms +exoticness +expandable +expansible +expansibly +expansions +expatiated +expatiates +expatiator +expatriate +expectable +expectably +expectance +expectancy +expectants +expectedly +expectings +expedience +expediency +expedients +expeditate +expeditely +expediters +expediting +expedition +expeditive +expeditors +expellants +expellents +expendable +experience +experiment +expertised +expertises +expertized +expertizes +expertness +expiations +expiration +expiratory +explainers +explaining +explanting +expletives +explicable +explicated +explicates +explicator +explicitly +exploitage +exploiters +exploiting +exploitive +explosible +explosions +explosives +exportable +exposition +expositive +expositors +expository +expounders +expounding +expressage +expressing +expression +expressive +expressman +expressmen +expressure +expressway +expugnable +expulsions +expuncting +expunction +expurgated +expurgates +expurgator +exquisites +exsanguine +exscinding +exsections +exsertions +exsiccated +exsiccates +exsiccator +exsufflate +extemporal +extempores +extendable +extendedly +extendible +extensible +extensions +extenuated +extenuates +extenuator +exteriorly +externally +extinction +extinctive +extinguish +extirpable +extirpated +extirpates +extirpator +extolments +extortions +extractant +extracting +extraction +extractive +extractors +extradited +extradites +extradoses +extradotal +extraneity +extraneous +extraposed +extraposes +extraverts +extremists +extricable +extricated +extricates +extroverts +extrusible +extrusions +exuberance +exuberancy +exuberated +exuberates +exudations +exulcerate +exultantly +exultation +exultingly +exurbanite +exuviating +exuviation +eyeballing +eyebrights +eyebrowing +eyeglasses +eyeleteers +eyepatches +eyestrains diff --git a/com/agnibho/code/anagram/dictionary/E11.txt b/com/agnibho/code/anagram/dictionary/E11.txt new file mode 100644 index 0000000..e1740c7 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E11.txt @@ -0,0 +1,956 @@ +earlierised +earlierises +earlierized +earlierizes +earnestness +earthenware +earthflaxes +earthliness +earthmovers +earthmoving +earthquaked +earthquakes +earthwolves +easterlings +easternmost +ebulliences +ebulliently +ebullitions +eburnations +ecblastesis +eccaleobion +eccentrical +ecclesiarch +ecclesiasts +eccrinology +Echinoderma +echinoderms +echoviruses +eclecticism +ecofriendly +econometric +economisers +economising +economizers +economizing +ecotourists +ecstasising +ecstasizing +ectoblastic +ectogenesis +ectogenetic +ectomorphic +ectoplasmic +ectoplastic +ectothermic +ectotrophic +Ecuadorians +ecumenicism +edelweisses +edification +edificatory +editorially +editorships +educability +educational +edulcorated +edulcorates +edulcorator +edutainment +effacements +effectively +effectually +effectuated +effectuates +effeminates +effeminised +effeminises +effeminized +effeminizes +effervesced +effervesces +efficacious +efficiences +efficiently +effleurages +effloresced +effloresces +effulgences +effulgently +egalitarian +eglandulose +egocentrism +egomaniacal +egotistical +egregiously +eidetically +eigenvalues +eighteenmos +eighteenths +eightpences +eightscores +Einsteinian +einsteinium +eisteddfods +ejaculating +ejaculation +ejaculative +ejaculatory +ejectamenta +ekisticians +elaborately +elaborating +elaboration +elaborative +elaborators +elaboratory +elastically +elasticated +elasticates +elasticised +elasticises +elasticized +elasticizes +elasticness +elastomeric +Elastoplast +elderflower +elderliness +elecampanes +electioneer +electorates +electorship +electresses +electrician +electricity +electrified +electrifier +electrifies +electrising +electrizing +electrocute +electrogens +electrolier +electrology +electrolyse +electrolyte +electrolyze +electromers +electronics +electrotint +electrotype +electrotypy +electuaries +elegiacally +elementally +elephantine +elephantoid +eleutherian +elicitation +eligibility +eliminating +elimination +eliminative +eliminators +eliminatory +Elizabethan +ellipsoidal +ellipticity +eloignments +elongations +elsewhither +elucidating +elucidation +elucidative +elucidators +elucidatory +eludicatory +elusiveness +elusoriness +elutriating +elutriation +elutriators +emanational +emancipated +emancipates +emancipator +emancipists +emarginated +emarginates +emasculated +emasculates +emasculator +embalmments +embankments +embarcation +embarkation +embarkments +embarrassed +embarrasses +embasements +embellished +embellisher +embellishes +embitterers +embittering +emblazoners +emblazoning +emblematise +emblematist +emblematize +emblemising +emblemizing +emblossomed +embodiments +embo�tement +emboldeners +emboldening +embossments +embouchures +embowelling +embowelment +embowerment +embraceable +embracement +embracingly +embrangling +embreathing +embrittling +embrocating +embrocation +embroidered +embroiderer +embroilment +embryologic +embryonated +embryulcias +emendations +emergencies +emigrations +emmenagogic +emmenagogue +Emmenthaler +emolliating +emollitions +emolumental +emotionable +emotionally +emotionless +empalements +empanelling +empanelment +empanoplied +empanoplies +empathising +empathizing +emperorship +emphasising +emphasizing +emphractics +emphyteusis +emphyteutic +empiecement +empirically +empiricists +emplacement +emplastrons +emplastrums +employments +empoisoning +empoldering +empowerment +empyreumata +emulousness +emulsifiers +emulsifying +emulsionise +emulsionize +emunctories +enamellings +enamellists +enarrations +enarthrosis +encampments +encanthises +encapsulate +encarnalise +encarnalize +encasements +encashments +encephalins +encephaloid +encephalons +encephalous +enchainment +enchantment +enchantress +enchiridion +enchondroma +encinctured +encinctures +enciphering +encirclings +encoignures +encolouring +encomendero +encomiastic +encompassed +encompasses +encountered +encouragers +encouraging +encrimsoned +encroachers +encroaching +encrustment +encryptions +encumbering +encumbrance +encurtained +encyclicals +encystation +encystments +endangerers +endangering +endearingly +endearments +endeavoring +endeavoured +endemically +endemiology +endenizened +endlessness +endocardiac +endocardial +endocardium +endochylous +endometrial +endometrium +endomitosis +endomorphic +endophagies +endophagous +endoplasmic +endoplastic +endopleuras +endopodites +endorsement +endoscopies +endospermic +endothelial +endothelium +endothermic +endotrophic +endungeoned +energetical +enfacements +enfeoffment +enfettering +enflowering +enfoldments +enforceable +enforcement +enforesting +enfranchise +engagements +engarlanded +engarrisons +engendering +engendrures +Enghalskrug +engineering +Englishness +engorgement +engouements +engraftment +engrailment +engrammatic +engrossment +engulfments +enhancement +enheartened +enhungering +enigmatical +enigmatised +enigmatises +enigmatists +enigmatized +enigmatizes +enjambement +enjambments +enjoinments +enkephalins +enkernelled +enlacements +enlargeable +enlargement +enlevements +enlightened +enlistments +enlivenment +enneahedral +enneahedron +enneandrian +enneandrous +Enniskillen +ennoblement +enragements +enrapturing +enravishing +enregiments +enregisters +enrichments +enrollments +ensanguined +ensanguines +ensepulchre +ensheathing +enshielding +enshrouding +ensignships +enslavement +ensnarement +ensorcelled +entablature +entablement +entailments +entelechies +enterectomy +enteroceles +enteroliths +enterostomy +enterotoxin +enterovirus +enterpriser +enterprises +entertained +entertainer +enthraldoms +enthralling +enthralment +enthronised +enthronises +enthronized +enthronizes +enthusiasms +enthusiasts +enticements +entitlement +entoilments +entombments +entomophagy +entomophily +entophytous +entrainment +entrapments +entreatment +entrenching +entrustment +Entryphones +enucleating +enucleation +enumerating +enumeration +enumerative +enumerators +enunciating +enunciation +enunciative +enunciators +enunciatory +envelopment +enviousness +environment +envisioning +enwrapments +enwrappings +enwreathing +Eoanthropus +epanalepses +epanalepsis +epaulements +epeirogenic +ephemerally +Ephemeridae +ephemerides +ephemerists +ephoralties +epicheirema +epicurising +epicurizing +epicycloids +epidemicity +epidendrone +epidendrums +epidermises +epidiascope +epigastrium +epigenesist +epigenetics +epigraphers +epigraphies +epigraphing +epigraphist +epileptical +epilimnions +epilogising +epilogistic +epilogizing +epiloguised +epiloguises +epiloguized +epiloguizes +epinephrine +epipetalous +epiphonemas +epiphyllous +epiphytical +epiplastral +epiplastron +episcopally +episcopates +episcopised +episcopises +episcopized +episcopizes +episepalous +epispastics +epistilbite +epistolical +epistolised +epistolises +epistolists +epistolized +epistolizes +epitaphists +epitaxially +epithalamia +epithalamic +epithelioma +epitheliums +epithymetic +epitomisers +epitomising +epitomizers +epitomizing +epitrochoid +eponychiums +equableness +equestrians +equiangular +equibalance +equidistant +equilateral +equilibrate +equilibrist +equilibrity +equilibrium +equinoctial +equiparated +equiparates +equipoising +equipollent +Equisetales +Equisetinae +equivalence +equivalency +equivalents +equivocally +equivocated +equivocates +equivocator +eradicating +eradication +eradicative +eradicators +Erastianism +eremacausis +ergatocracy +ergatogynes +ergatomorph +ergomaniacs +ergonomists +Eriodendron +Eriophorous +eriophorums +eroticising +eroticizing +erotomaniac +erotophobia +erratically +erroneously +erubescence +erubescency +eructations +erythematic +erythrocyte +escadrilles +escalations +escallonias +escapements +escarmouche +escarpments +eschatology +escheatable +escheatages +escheatment +Escherichia +escritoires +escritorial +escutcheons +esemplastic +esophaguses +esotericism +espadrilles +espaliering +Esperantist +espi�glerie +essentially +established +establisher +establishes +estancieros +esterifying +esthesiogen +estimations +estramazone +estrangelos +estranghelo +estrepement +Estrildidae +esuriencies +eternalised +eternalises +eternalists +eternalized +eternalizes +eternalness +etherealise +ethereality +etherealize +etherifying +etheromania +ethicalness +ethnarchies +ethnobotany +ethnography +ethnologist +ethological +ethologists +etiolations +etiological +Etruscology +etymologies +etymologise +etymologist +etymologize +eubacterium +eucalyptole +eucharistic +euchologies +euchologion +eudaemonics +eudaemonism +eudaemonist +eugenically +eugenicists +euhemerised +euhemerises +euhemerists +euhemerized +euhemerizes +eunuchising +eunuchizing +eupepticity +euphausiids +euphemising +euphemistic +euphemizing +euphonising +euphonizing +euphoriants +eurhythmics +eurhythmies +eurhythmist +Eurocentric +eurocheques +Eurodollars +Eurofighter +europeanise +Europeanism +Europeanist +europeanize +Eurypharynx +Eurypterida +eurypterids +eurypteroid +eurythermal +eurythermic +eurythmical +euthanasias +euthanasies +evacuations +evaginating +evagination +evaluations +evanescence +evangeliars +evangeliary +evangelical +evangelised +evangelises +evangelists +evangelized +evangelizes +evanishment +evaporating +evaporation +evaporative +evaporators +evasiveness +eventration +eventualise +eventuality +eventualize +eventuating +everlasting +everywhence +evidentiary +evincements +eviscerated +eviscerates +eviscerator +eviternally +evocatively +evolutional +evolvements +exacerbated +exacerbates +exactitudes +exactresses +exaggerated +exaggerates +exaggerator +exaltations +exaltedness +examination +examinators +exanimation +exanthemata +exasperated +exasperates +exasperator +excarnation +excavations +exceedingly +excellences +excellently +exceptional +excerptible +excerptings +excerptions +excessively +excitancies +excitations +excitedness +excitements +exclamation +exclamative +exclamatory +exclusively +exclusivism +exclusivist +exclusivity +excogitated +excogitates +excogitator +excoriating +excoriation +excorticate +excremental +excrementum +excrescence +excrescency +excretories +excruciated +excruciates +exculpating +exculpation +exculpatory +excursively +execrations +executioner +executively +executorial +executrices +executrixes +exemplarily +exemplarity +exemplified +exemplifier +exemplifies +exenterated +exenterates +exercisable +exfoliating +exfoliation +exfoliative +exfoliators +exhalations +exhaustible +exhaustions +exhaustless +exhibitions +exhilarants +exhilarated +exhilarates +exhilarator +exhortation +exhortative +exhortatory +exhumations +existential +exodermises +exonerating +exoneration +exonerative +exonerators +exorability +exorbitance +exorbitancy +exoskeletal +exoskeleton +exotericism +expansional +expansively +expansivity +expatiating +expatiation +expatiative +expatiators +expatiatory +expatriated +expatriates +expectances +expectantly +expectation +expectative +expectingly +expectorant +expectorate +expediences +expediently +expeditated +expeditates +expeditions +expeditious +expendables +expenditure +expensively +experienced +experiences +experiments +expertising +expertizing +expirations +expiscatory +explainable +explanation +explanative +explanatory +explicating +explication +explicative +explicators +explicatory +exploitable +exploitages +exploration +explorative +exploratory +explosively +exponential +exportation +exposedness +expositions +expositress +expostulate +expressages +expressible +expressions +expressness +expressures +expressways +expromissor +expropriate +expugnation +expunctions +expurgating +expurgation +expurgators +expurgatory +exquisitely +exsanguined +exsiccating +exsiccation +exsiccative +exsiccators +exstipulate +exsufflated +exsufflates +extemporary +extemporise +extemporize +extensional +extensities +extensively +extenuating +extenuation +extenuative +extenuators +extenuatory +exteriorise +exteriority +exteriorize +exterminate +externalise +externalism +externalist +externality +externalize +extinctions +extirpating +extirpation +extirpative +extirpators +extirpatory +extorsively +extortioner +extractable +extractants +extractible +extractions +extractives +extraditing +extradition +extrapolate +extraposing +extravagant +extravagate +extravasate +extraverted +extremeness +extremities +extricating +extrication +extrinsical +extroverted +exuberances +exuberantly +exuberating +exulcerated +exulcerates +exultations +exurbanites +exuviations +eyebrowless diff --git a/com/agnibho/code/anagram/dictionary/E12.txt b/com/agnibho/code/anagram/dictionary/E12.txt new file mode 100644 index 0000000..477e201 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E12.txt @@ -0,0 +1,679 @@ +earlierising +earlierizing +earthquaking +earthshaking +eavesdropped +eavesdropper +ebracteolate +ebulliencies +ebullioscope +ebullioscopy +eccaleobions +eccentricity +ecclesiarchs +Ecclesiastes +ecclesiastic +ecclesiology +Echinocactus +echinococcus +echinodermal +echolocation +eclectically +ecologically +econometrics +econometrist +economically +ecstatically +ectoparasite +ectypography +ecumenically +edaciousness +editorialise +editorialize +educationist +edulcorating +edulcoration +edulcorative +edulcorators +Edwardianism +effectuality +effectuating +effectuation +effeminately +effeminising +effeminizing +effervescent +effervescing +efficacities +efficiencies +effiguration +efflorescent +efflorescing +effortlessly +effronteries +effusiometer +effusiveness +egalitarians +egoistically +Egyptologist +eighteenthly +eisteddfodau +eisteddfodic +ejaculations +Ekaterinburg +elaborations +Elaeagnaceae +elasmobranch +elasmosaurus +elasticating +elasticising +elasticizing +Elastoplasts +elderberries +elderflowers +electability +electioneers +electoresses +electorships +electrically +electricians +electrifiers +electrifying +electrocuted +electrocutes +electrogenic +electrograph +electroliers +electrolysed +electrolyses +electrolysis +electrolytes +electrolytic +electrolyzed +electrolyzes +electromeric +electrometer +electrometry +electromotor +electrooptic +electrophile +electroplate +electropolar +electroscope +electroshock +electrosonde +electrotints +electrotonic +electrotonus +electrotyper +electrotypes +electrotypic +eleemosynary +elementalism +elementarily +eleutherarch +elicitations +eliminations +Elizabethans +ellipsograph +elliptically +elocutionary +elocutionist +elucidations +elucubration +elytrigerous +emancipating +emancipation +emancipators +emancipatory +emarginating +emargination +emasculating +emasculation +emasculators +emasculatory +embarcations +embarkations +embarrassing +embattlement +embellishers +embellishing +embezzlement +embitterment +emblazonment +emblematical +emblematised +emblematises +emblematists +emblematized +emblematizes +emblossoming +embourgeoise +embowelments +embowerments +embracements +embranchment +embrocations +embroiderers +embroideries +embroidering +embroilments +embryologist +embryotomies +emigrational +emmenagogues +emollescence +emolumentary +emotionalise +emotionalism +emotionality +emotionalize +empanelments +empanoplying +emperorships +emphatically +empiecements +emplacements +empoisonment +empressement +empyreumatic +emulsionised +emulsionises +emulsionized +emulsionizes +enantiomeric +enantiomorph +enantiopathy +enantiostyly +enantiotropy +enarthrodial +encapsulated +encapsulates +encarnalised +encarnalises +encarnalized +encarnalizes +encephalitic +encephalitis +enchainments +enchantingly +enchantments +encheiridion +enchiridions +enchondromas +encincturing +encirclement +enclitically +encomenderos +encompassing +encountering +encrimsoning +encroachment +encrustation +encumberment +encumbrancer +encumbrances +encurtaining +encyclopedia +encyclopedic +encystations +endamagement +endangerment +endeavouring +endenizening +endocarditis +endocardiums +endogenously +endometritis +endometriums +endonuclease +endoparasite +endophyllous +endorsements +endoskeletal +endoskeleton +endosmometer +endosymbiont +endungeoning +enfeeblement +enfeoffments +enforcements +enfranchised +enfranchises +engagingness +engarlanding +engarrisoned +engenderment +Englishwoman +Englishwomen +engorgements +engraftation +engraftments +engrailments +engrossments +enhancements +enharmonical +enheartening +enhypostasia +enhypostatic +enigmatising +enigmatizing +enjambements +enkernelling +enlargedness +enlargements +enlightening +enlivenments +enneahedrons +ennoblements +enormousness +enregimented +enregistered +ensanguining +ensepulchred +ensepulchres +enshrinement +enslavements +ensorcelling +enstructured +enswathement +entablatures +entablements +entanglement +Enteromorpha +enteropneust +enteroptosis +enterotomies +enterotoxins +enterprisers +enterprising +entertainers +entertaining +enthrallment +enthralments +enthronement +enthronising +enthronizing +enthusiastic +entitlements +entomologise +entomologist +entomologize +Entomostraca +entoplastral +entoplastron +entra�nement +entrainments +entrammelled +entrancement +entreatingly +entreatments +entrenchment +entrepreneur +entrustments +enucleations +enumerations +enunciations +envelopments +enviableness +environments +envisagement +enzymologist +eosinophilia +eosinophilic +Epacridaceae +epanorthoses +epanorthosis +epencephalic +epencephalon +epexegetical +ephemerality +ephemeridian +epicanthuses +epicheiremas +Epicureanism +epicuticular +epicycloidal +epideictical +epidemically +epidemiology +epidendrones +epidiascopes +epididymides +epigastriums +epigenesists +epiglottides +epiglottises +epigrammatic +epigraphists +epiloguising +epiloguizing +epiphenomena +epirrhematic +episcopacies +episcopalian +episcopalism +episcopising +episcopizing +episodically +epistemology +epistolarian +epistolatory +epistolising +epistolizing +epithalamion +epithalamium +epitheliomas +epitrochoids +equabilities +equalisation +equalitarian +equalization +equanimities +equanimously +equatorially +equestrienne +equibalanced +equibalances +equidistance +equilibrated +equilibrates +equilibrator +equilibrists +equilibriums +equimultiple +equiparating +equiparation +equipollence +equipollency +equiprobable +Equisetaceae +equisetiform +equivalences +equivalently +equivocality +equivocating +equivocation +equivocators +equivocatory +eradications +Eratosthenes +ergatomorphs +erubescences +eruptiveness +erythematous +erythroblast +erythrocytes +erythromycin +erythropenia +escapologist +escarmouches +eschatologic +eschscholzia +escutcheoned +esoterically +espagnolette +essentialism +essentialist +essentiality +establishers +establishing +esthetically +estrangement +estranghelos +etepimeletic +eternalising +eternalizing +eternisation +eternization +etheostomine +etherealised +etherealises +etherealized +etherealizes +etherisation +etherization +etheromaniac +ethnocentric +ethnographer +ethnographic +ethnological +ethnologists +ethnoscience +etymological +etymologicon +etymologicum +etymologised +etymologises +etymologists +etymologized +etymologizes +eucalyptuses +euchologions +eudaemonists +Euglenoidina +euhemerising +euhemeristic +euhemerizing +eulogistical +eunuchoidism +Euphausiacea +Euphausiidae +euphoniously +eurhythmical +eurhythmists +Eurocentrism +eurocurrency +europeanised +europeanises +europeanized +europeanizes +Eurosterling +Euroterminal +eurythermous +evaginations +evanescences +evanescently +evangelicals +evangelicism +evangelising +evangelistic +evangelizing +evaporations +evaporimeter +evaporograph +evaporometer +eventfulness +eventrations +eventualised +eventualises +eventualized +eventualizes +everydayness +everywhither +evidentially +eviscerating +evisceration +eviscerators +eviternities +evolutionary +evolutionism +evolutionist +exacerbating +exacerbation +exaggerating +exaggeration +exaggerative +exaggerators +exaggeratory +exalbuminous +examinations +examinership +exanthematic +exasperating +exasperation +exasperative +exasperators +excellencies +exchangeable +exchangeably +excitability +exclamations +exclusionary +exclusionism +exclusionist +exclusivists +excogitating +excogitation +excogitative +excoriations +excorticated +excorticates +excrescences +excruciating +excruciation +exculpations +excursionise +excursionist +excursionize +execratively +executancies +executioners +executorship +executresses +exegetically +exemplifiers +exemplifying +exenterating +exenteration +exercitation +exhaustively +exhibitioner +exhibitively +exhilarating +exhilaration +exhilarative +exhilaratory +exhortations +exiguousness +exobiologist +exonerations +exophthalmia +exophthalmic +exophthalmos +exophthalmus +exorbitances +exorbitantly +exoskeletons +exospherical +exoterically +exothermally +expansionary +expansionism +expansionist +expatiations +expatriating +expatriation +expectancies +expectations +expectorants +expectorated +expectorates +expectorator +expediencies +expediential +expeditating +expeditation +expenditures +experiencing +experiential +experimental +experimented +experimenter +explanations +explantation +explications +explicitness +exploitation +exploitative +explorations +exponentials +exportations +expositional +expostulated +expostulates +expostulator +expressional +expressively +expressivity +exprobratory +expromission +expromissors +expropriable +expropriated +expropriates +expropriator +expugnations +expurgations +exsanguinate +exsanguinity +exsanguinous +exsiccations +exsufflating +exsufflation +exsufflicate +extemporised +extemporises +extemporized +extemporizes +extensimeter +extensionist +extensometer +extenuations +exteriorised +exteriorises +exteriorized +exteriorizes +exterminable +exterminated +exterminates +exterminator +externalised +externalises +externalists +externalized +externalizes +exteroceptor +extinguished +extinguisher +extinguishes +extirpations +extortionary +extortionate +extortioners +extortionist +extraditable +extraditions +extraneities +extraneously +extranuclear +extrapolated +extrapolates +extrapolator +extravagance +extravagancy +extravaganza +extravagated +extravagates +extravasated +extravasates +extraversion +extraversive +extraverting +extrications +extroversion +extroversive +extroverting +exuberancies +exulcerating +exulceration diff --git a/com/agnibho/code/anagram/dictionary/E13.txt b/com/agnibho/code/anagram/dictionary/E13.txt new file mode 100644 index 0000000..767dd62 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E13.txt @@ -0,0 +1,423 @@ +eavesdroppers +eavesdropping +ebullioscopes +ebullioscopic +eccentrically +ecclesiastics +ecclesiolater +ecclesiolatry +Echinodermata +econometrical +econometrists +economisation +economization +ecotoxicology +ectoparasites +ecumenicalism +editorialised +editorialises +editorialized +editorializes +educatability +educationally +educationists +effectiveness +effectualness +effectuations +effervescence +effervescency +effervescible +efficaciously +effigurations +efflorescence +effusiometers +egocentricity +egotistically +egregiousness +Egyptological +eigenfunction +elaborateness +elasmobranchs +electioneered +electioneerer +electrifiable +electrisation +electrization +electrocement +electrochemic +electrocuting +electrocution +electrographs +electrography +electrolysing +electrolyzing +electromagnet +electromerism +electrometers +electrometric +electromotive +electromotors +electrooptics +electrophiles +electrophilic +electrophorus +electroplated +electroplater +electroplates +electroscopes +electroscopic +electroshocks +electrosondes +electrostatic +electrothermy +electrotypers +electrotypist +electrovalent +elephantiasis +eleutherarchs +ellipsographs +ellipticities +elocutionists +emancipations +emarginations +emasculations +embarrassment +embattlements +embellishment +embezzlements +embitterments +emblazonments +emblematising +emblematizing +embourgeoised +embourgeoises +embracingness +embranglement +embrittlement +embryogenesis +embryological +embryologists +emigrationist +emotionalised +emotionalises +emotionalized +emotionalizes +emphysematous +empyreumatise +empyreumatize +emulsionising +emulsionizing +enantiodromia +enantiodromic +enantiomorphs +enantiomorphy +enantiotropic +encapsulating +encapsulation +encarnalising +encarnalizing +Encephalartos +encephalocele +encephalogram +encephalotomy +enchantresses +encheiridions +enchondromata +encirclements +encomiastical +encompassment +encouragement +encouragingly +encroachingly +encroachments +encrustations +encumberments +encumbrancers +encyclopaedia +encyclopaedic +encyclopedian +encyclopedias +encyclopedism +encyclopedist +endearingness +endocrinology +endometriosis +endoparasites +endoskeletons +endosmometers +endosmometric +endosymbionts +endosymbiotic +endurableness +energetically +enfranchising +engarrisoning +enhypostatise +enhypostatize +enigmatically +enjoyableness +enlightenment +enregimenting +enregistering +ensanguinated +ensepulchring +enshrinements +entanglements +enterectomies +Enteropneusta +enteropneusts +enterostomies +enteroviruses +entertainment +enthrallments +enthronements +entomological +entomologised +entomologises +entomologists +entomologized +entomologizes +entomophagous +entomophilous +entomostracan +entoplastrons +entrammelling +entrancements +entrenchments +entrepreneurs +entrepreneuse +environmental +envisagements +enzymologists +eosinophilous +epanadiploses +epanadiplosis +epeirogenesis +epeirogenetic +epencephalons +Ephemeroptera +epicondylitis +epidotisation +epidotization +epigeneticist +epigrammatise +epigrammatist +epigrammatize +epinastically +epiphenomenon +episcopalians +epitheliomata +epitrachelion +equalisations +equalitarians +equalizations +equestrianism +equestriennes +equibalancing +equidifferent +equidistances +equidistantly +equilibrating +equilibration +equilibrators +equimultiples +equinoctially +equipollences +equiponderant +equiponderate +equipotential +equisetaceous +equitableness +equivalencies +equivocalness +equivocations +ergatocracies +ergatomorphic +ergonomically +Eriocaulaceae +erroneousness +erubescencies +erysipelatous +erythroblasts +erythrophobia +escapologists +eschatologist +eschscholtzia +espagnolettes +essentialists +essentialness +establishment +estrangedness +estrangements +etherealising +etherealizing +etheromaniacs +ethnobotanist +ethnocentrism +ethnographers +ethnographies +ethnolinguist +ethologically +Etruscologist +etymologicons +etymologicums +etymologising +etymologizing +Eubacteriales +eucharistical +euphausiacean +Euphorbiaceae +Eurocommunism +Eurocommunist +europeanising +europeanizing +Europocentric +eusporangiate +evangeliarion +evangeliarium +evangelically +evangelistary +evaporability +evaporimeters +evaporographs +eventualising +eventualities +eventualizing +everlastingly +eviscerations +evocativeness +evolutionists +exacerbations +exaggeratedly +exaggerations +examinability +examinational +exanthematous +exasperations +exceptionable +exceptionably +exceptionally +excessiveness +excitableness +exclamational +exclusionists +exclusiveness +excogitations +excommunicate +excorticating +excortication +excrescencies +excrescential +excruciations +excursionised +excursionises +excursionists +excursionized +excursionizes +excursiveness +excusableness +execrableness +executorships +exemplariness +exemplifiable +exenterations +exercitations +exhibitioners +exhibitionism +exhibitionist +exhilarations +existentially +exobiological +exobiologists +exorbitancies +exothermicity +expandability +expansibility +expansionists +expansiveness +expatriations +expectorating +expectoration +expectorative +expectorators +expeditations +expeditionary +expeditiously +expendability +expensiveness +experimenters +experimenting +experimentist +explanatorily +explantations +exploitations +explosiveness +exponentially +exportability +expositresses +expostulating +expostulation +expostulative +expostulators +expostulatory +expressionism +expressionist +expromissions +expropriating +expropriation +expropriators +expurgatorial +exquisiteness +exsanguinated +exsanguinates +exsanguineous +exsufflations +exsufflicated +exsufflicates +extemporarily +extemporising +extemporizing +extendability +extendibility +extensibility +extensimeters +extensionally +extensionists +extensiveness +extensometers +extenuatingly +exteriorising +exteriorizing +exterminating +extermination +exterminative +exterminators +exterminatory +externalising +externalities +externalizing +exteroceptive +exteroceptors +exterritorial +extinguishant +extinguishers +extinguishing +extortionists +extraordinary +extrapolating +extrapolation +extrapolative +extrapolators +extrapolatory +extraposition +extravagances +extravagantly +extravaganzas +extravagating +extravagation +extravasating +extravasation +extraversions +extrinsically +extroversions +exulcerations diff --git a/com/agnibho/code/anagram/dictionary/E14.txt b/com/agnibho/code/anagram/dictionary/E14.txt new file mode 100644 index 0000000..e8357a6 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E14.txt @@ -0,0 +1,199 @@ +eburnification +eccentricities +ecclesiastical +Ecclesiasticus +ecclesiolaters +ecclesiologist +echocardiogram +econometrician +editorialising +editorializing +edriophthalmic +educationalist +effeminateness +effervescences +effervescently +effervescingly +efflorescences +effortlessness +egalitarianism +Elasmobranchii +electioneerers +electioneering +electrobiology +electrochemist +electroculture +electrocutions +electroforming +electrogenesis +electrogilding +electromagnets +electromotance +electronically +electrooptical +electroosmosis +electroplating +electrostatics +electrotherapy +electrothermal +electrothermic +electrotypists +electrovalency +electrowinning +elementariness +eleutheromania +Elizabethanism +embarrassingly +embarrassments +embellishingly +embellishments +emblematically +embourgeoising +embranglements +emigrationists +emotionalising +emotionalizing +emphaticalness +empyreumatical +empyreumatised +empyreumatises +empyreumatized +empyreumatizes +emulsification +enantiomorphic +enantiostylous +encapsulations +encephaloceles +encephalograms +encephalograph +encephalopathy +encompassments +encouragements +encyclopaedian +encyclopaedias +encyclopaedism +encyclopaedist +encyclopedical +encyclopedists +endoradiosonde +endosmotically +enharmonically +enhypostatised +enhypostatises +enhypostatized +enhypostatizes +enigmatography +enlightenments +enterocentesis +enteropneustal +enterprisingly +entertainingly +entertainments +enthronisation +enthronization +enthusiastical +enthymematical +entomologising +entomologizing +entomostracans +entomostracous +entrepreneuses +epexegetically +epicontinental +epidemiologist +Epidermophyton +epigeneticists +epigrammatical +epigrammatised +epigrammatises +epigrammatists +epigrammatized +epigrammatizes +epistemologist +epistolography +epitrachelions +equiangularity +equipollencies +equiponderance +equiponderated +equiponderates +erythropoiesis +erythropoietin +eschatological +eschatologists +establishments +esterification +eternalisation +eternalization +etherification +ethnobotanical +ethnobotanists +ethnographical +ethnolinguists +ethnologically +etymologically +eulogistically +euphausiaceans +euphorbiaceous +euphuistically +eutrophication +evangeliarions +evangeliariums +evangelicalism +evangelisation +evangelization +evolutionistic +exacerbescence +exceptionalism +exclaustration +excommunicable +excommunicated +excommunicates +excommunicator +excrementitial +excruciatingly +excursionising +excursionizing +exhaustibility +exhaustiveness +exhibitionists +exhilaratingly +existentialism +existentialist +exothermically +expansionistic +expectorations +expedientially +experienceless +experientially +experimentally +experimentists +explorationist +expostulations +expressionists +expressionless +expressiveness +expressivities +expropriations +exsanguinating +exsanguination +exsufflicating +extemporaneity +extemporaneous +extensionalism +extensionality +exterminations +extinguishable +extinguishants +extinguishment +extortionately +extracanonical +extracorporeal +extractability +extraforaneous +extraneousness +extrapolations +extravagancies +extravasations +extravehicular +extrinsicality diff --git a/com/agnibho/code/anagram/dictionary/E15.txt b/com/agnibho/code/anagram/dictionary/E15.txt new file mode 100644 index 0000000..5c00d46 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E15.txt @@ -0,0 +1,124 @@ +earthshattering +ebullioscopical +ecclesiasticism +ecclesiological +ecclesiologists +echinodermatous +echocardiograms +econometricians +ecotoxicologist +edriophthalmian +edriophthalmous +educationalists +effervescencies +efficaciousness +egocentricities +electioneerings +electrification +electroacoustic +electroanalysis +electrochemical +electrochemists +electrodialysis +electrodynamics +electrokinetics +electromagnetic +electrometrical +electromyograph +electronegative +electrophoresis +electrophoretic +electroplatings +electropositive +electrotechnics +electrothermics +electrowinnings +eleutherococcus +eleutherodactyl +eleutherophobia +eleutherophobic +emancipationist +empyreumatising +empyreumatizing +emulsifications +enantiomorphism +enantiomorphous +encephalographs +encephalography +encephalotomies +encomiastically +encyclopaedical +encyclopaedists +endocrinologist +endoradiosondes +enfranchisement +enhypostatising +enhypostatizing +enthronisations +enthronizations +entomologically +entrepreneurial +environmentally +epidemiological +epidemiologists +epigrammatising +epigrammatizing +episcopalianism +epistemological +epistemologists +epitheliomatous +equalitarianism +equiponderating +equiprobability +ergatandromorph +Erziehungsroman +esterifications +etherealisation +etherealization +etherifications +ethnolinguistic +ethnomusicology +euphemistically +Europeanisation +Europeanization +evangelicalness +evangelisations +evangelistaries +evangelistarion +evangelizations +everlastingness +exacerbescences +exchangeability +exclaustrations +excommunicating +excommunication +excommunicative +excommunicators +excommunicatory +excrementitious +exemplification +exemplificative +exhibitionistic +existentialists +expeditiousness +experientialism +experientialist +experimentalise +experimentalism +experimentalist +experimentalize +experimentation +experimentative +explorationists +expressionistic +extemporariness +extemporisation +extemporization +extensification +exteriorisation +exteriorization +externalisation +externalization +extinguishments +extraordinaries +extraordinarily diff --git a/com/agnibho/code/anagram/dictionary/E16.txt b/com/agnibho/code/anagram/dictionary/E16.txt new file mode 100644 index 0000000..8a968f8 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E16.txt @@ -0,0 +1,39 @@ +ecclesiastically +echocardiography +editorialisation +editorialization +electroacoustics +electrobiologist +electrochemistry +electrohydraulic +electrolytically +electromagnetism +electromechanics +electromyography +embourgeoisement +emotionalisation +emotionalization +enantiodromiacal +endocrinologists +enfranchisements +enthusiastically +entrepreneurship +environmentalism +environmentalist +epigrammatically +epiphenomenalism +epiphenomenalist +ethnobotanically +ethnocentrically +ethnolinguistics +ethnomethodology +euhemeristically +excommunications +exemplifications +experimentalised +experimentalises +experimentalized +experimentalizes +expressionlessly +extemporaneously +exterritoriality diff --git a/com/agnibho/code/anagram/dictionary/E17.txt b/com/agnibho/code/anagram/dictionary/E17.txt new file mode 100644 index 0000000..a6c4b05 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E17.txt @@ -0,0 +1,18 @@ +ebullioscopically +echoencephalogram +electroanalytical +electrobiologists +electrocardiogram +electrodeposition +electroextraction +electromechanical +electrometallurgy +electrometrically +electronegativity +electrophysiology +electrostatically +electrotechnology +ethnomusicologist +experimentalising +experimentalizing +extraordinariness diff --git a/com/agnibho/code/anagram/dictionary/E18.txt b/com/agnibho/code/anagram/dictionary/E18.txt new file mode 100644 index 0000000..344f66b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E18.txt @@ -0,0 +1,10 @@ +echoencephalograms +electrocardiograms +electrocardiograph +electrodynamometer +electrophotography +entrepreneurialism +establishmentarian +ethnomethodologist +evapotranspiration +extemporaneousness diff --git a/com/agnibho/code/anagram/dictionary/E19.txt b/com/agnibho/code/anagram/dictionary/E19.txt new file mode 100644 index 0000000..69dc271 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E19.txt @@ -0,0 +1,12 @@ +echoencephalography +electrocardiographs +electrocardiography +electroluminescence +electromagnetically +electromechanically +electrometallurgist +electrophotographic +electrophysiologist +electrotherapeutics +ethnomethodologists +exhibitionistically diff --git a/com/agnibho/code/anagram/dictionary/E2.txt b/com/agnibho/code/anagram/dictionary/E2.txt new file mode 100644 index 0000000..4756291 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E2.txt @@ -0,0 +1,12 @@ +ea +Ed +ee +ef +eh +el +em +en +Eo +er +es +ex diff --git a/com/agnibho/code/anagram/dictionary/E20.txt b/com/agnibho/code/anagram/dictionary/E20.txt new file mode 100644 index 0000000..693cdf8 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E20.txt @@ -0,0 +1,3 @@ +electroencephalogram +electrometallurgical +electrophysiological diff --git a/com/agnibho/code/anagram/dictionary/E21.txt b/com/agnibho/code/anagram/dictionary/E21.txt new file mode 100644 index 0000000..c35c3d0 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E21.txt @@ -0,0 +1,2 @@ +electroencephalograph +establishmentarianism diff --git a/com/agnibho/code/anagram/dictionary/E22.txt b/com/agnibho/code/anagram/dictionary/E22.txt new file mode 100644 index 0000000..e75ccfd --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E22.txt @@ -0,0 +1 @@ +electroencephalography diff --git a/com/agnibho/code/anagram/dictionary/E23.txt b/com/agnibho/code/anagram/dictionary/E23.txt new file mode 100644 index 0000000..50361b0 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E23.txt @@ -0,0 +1 @@ +electroencephalographic diff --git a/com/agnibho/code/anagram/dictionary/E3.txt b/com/agnibho/code/anagram/dictionary/E3.txt new file mode 100644 index 0000000..8d78e44 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E3.txt @@ -0,0 +1,55 @@ +ean +ear +eas +eat +eau +ebb +Eco +ecu +edh +eek +eel +een +eff +eft +egg +ego +ehs +eke +eld +elf +Eli +elk +ell +elm +Elo +els +elt +Ely +eme +ems +emu +Ena +end +ene +ens +eon +era +ere +erf +erg +erk +ern +err +ers +ess +est +eta +eth +euk +Eva +eve +ewe +ewk +Exe +eye diff --git a/com/agnibho/code/anagram/dictionary/E4.txt b/com/agnibho/code/anagram/dictionary/E4.txt new file mode 100644 index 0000000..6e41f6a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E4.txt @@ -0,0 +1,159 @@ +each +eale +eard +earl +earn +Earp +ears +ease +east +easy +eath +eats +eaus +ebbs +ebon +Ebro +ecad +ecce +ecco +eche +echo +echt +ecod +ecru +ecus +Edam +Edda +eddo +eddy +Eden +edge +edgy +Edie +edit +Edna +Edom +eeks +eels +eely +e'er +eery +effs +Efik +efts +egad +egal +eger +eggs +eggy +egis +egma +Egon +egos +ehed +Eigg +eild +Eire +eked +ekes +ekka +Elam +Elba +Elbe +elds +Elea +Elia +elks +Ella +ells +Elma +Elmo +elms +elmy +Elsa +else +elts +elul +emes +emeu +emir +emit +emma +Emmy +emus +emys +ends +enew +Enid +Enos +enow +ENSA +envy +eoan +Eoin +eons +eorl +epha +epic +epos +eras +Erda +ergo +ergs +eric +Erie +Erin +erks +erne +erns +Eros +errs +Erse +erst +Esau +Esky +esne +espy +esse +Esth +E.T. +etas +etch +eten +ethe +etna +Eton +euge +euks +euoi +Eure +euro +Evan +even +ever +eves +evet +Evie +evil +evoe +Ewen +ewer +ewes +ewks +exam +exes +exit +exon +expo +ex's +exul +eyas +eyed +eyes +eyne +eyot +eyra +eyre +eyry +Ezra diff --git a/com/agnibho/code/anagram/dictionary/E5.txt b/com/agnibho/code/anagram/dictionary/E5.txt new file mode 100644 index 0000000..fc29922 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E5.txt @@ -0,0 +1,285 @@ +eager +eagle +eagre +eards +eared +earls +early +earns +earth +eased +easel +eases +easle +easts +eaten +eater +eathe +eaves +ebbed +Eblis +ebons +ebony +ecads +Eddic +Eddie +edema +Edgar +edged +edger +edges +edict +edify +edile +edite +Edith +edits +educe +educt +Edwin +eejit +eerie +effed +egads +egers +egest +eggar +egged +egger +Egham +egret +Egypt +ehing +eider +Eifel +Eiger +eight +eigne +eikon +Eilat +eisel +eject +eking +ekkas +eland +Elaps +elate +elbow +Elche +elchi +elder +eldin +elect +elegy +elemi +elfin +Elgar +Elgin +Elian +Elias +elide +Eliot +elite +Eliza +Ellen +Ellie +Ellis +elmen +elogy +eloin +elope +elops +elpee +Elroy +Elsan +Elsie +elsin +Elton +elude +elute +elvan +elver +elves +Elvis +Elwyn +embar +embay +embed +ember +embog +embow +embox +embus +emcee +Emden +emeer +emend +emery +emeus +Emily +emirs +emits +Emlyn +emmas +emmer +emmet +emmew +Emmys +emong +emote +empty +Emrys +emule +emure +enact +enate +ended +endew +endow +endue +enema +enemy +enews +enfix +eniac +enjoy +enmew +Ennis +ennui +Enoch +enoki +enorm +enrol +ensew +ensky +ensue +enter +entia +entry +enure +envoi +envoy +Enzed +Eolic +eorls +eosin +epact +ephah +ephas +ephod +ephor +epics +epoch +epode +epopt +epoxy +Epsom +equal +equid +equip +Equus +erase +Erato +erbia +erect +ergon +ergot +erica +erick +erics +erned +ernes +Ernie +Ernst +erode +erose +erred +Errol +error +erses +Eruca +eruct +erupt +erven +escot +Esher +esile +eskar +esker +esnes +essay +Essen +esses +Essex +ester +estoc +estop +estro +etens +ethal +Ethel +ether +ethic +ethos +ethyl +etnas +Etons +ettin +ettle +etwee +etyma +euges +euked +Euler +euois +eupad +euros +Eurus +eusol +evade +Evans +evens +event +evert +every +evets +evhoe +evict +evils +Evita +evite +evoes +evohe +evoke +ewers +ewked +exact +exalt +exams +excel +exeat +exert +exies +exile +exine +exist +exits +exode +exons +expat +expel +expos +extol +extra +exude +exuls +exult +exurb +Exxon +Eyeti +eying +eyots +eyras +eyres +eyrie +Eytie diff --git a/com/agnibho/code/anagram/dictionary/E6.txt b/com/agnibho/code/anagram/dictionary/E6.txt new file mode 100644 index 0000000..0e0fcc9 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E6.txt @@ -0,0 +1,597 @@ +eadish +eagles +eaglet +eagres +Ealing +earbob +earcon +earded +earful +earing +earlap +earned +earner +Eartha +earths +earthy +earwax +earwig +easels +easier +easies +easily +easing +easles +eassel +easter +eatage +eaters +eatery +eathly +eating +ebbing +ecbole +Eccles +echoed +echoer +echoes +echoic +eclose +econut +ectopy +ectype +eczema +Edberg +eddaic +Eddery +eddied +eddies +eddish +eddoes +edemas +Edenic +edgers +edgier +edgily +edging +edible +edicts +ediles +Edison +edited +editor +Edmund +Edrich +educed +educes +educts +Edward +Edwina +eejits +eerier +eerily +Eeyore +efface +effect +effeir +effete +effigy +effing +efflux +effort +effray +effuse +eftest +Egbert +egence +egency +Egeria +egesta +egests +eggars +eggcup +eggers +eggery +eggier +egging +eggler +eggnog +egises +Egmont +egoism +egoist +egoity +egress +egrets +eident +eiders +eidola +Eiffel +eighth +eights +eighty +eikons +Eileen +Eilidh +Eirian +Eirlys +eisell +either +Eithne +ejecta +ejects +ekuele +Elaeis +Elaine +elance +elands +elanet +Elanus +elapse +elated +elater +elates +elbows +elchee +elchis +elders +eldest +elding +eldins +elects +elegit +elench +eleven +elevon +elfins +elfish +Elians +elicit +elided +elides +Elijah +Elinor +Elisha +elites +elixir +ellops +elmier +Elodea +Elohim +eloign +eloins +Eloisa +Eloise +eloped +eloper +elopes +elpees +elsins +Elspet +eltchi +eluant +eluate +eluded +eluder +eludes +eluent +eluted +elutes +elutor +elvers +Elvira +elvish +Elys�e +elytra +embace +embale +emball +embalm +embank +embark +embars +embase +embays +embeds +embers +emblem +emblic +embody +embogs +emboil +emboly +emboss +embows +embrue +embryo +embusy +emceed +emcees +emeers +emends +emerge +emeses +emesis +emetic +emetin +Emilia +Emmaus +emmesh +emmets +emmews +Emmies +emmove +emoted +emotes +empale +emparl +empery +empire +employ +Empson +empusa +empuse +emunge +emured +emures +emydes +enable +enacts +enamel +enamor +enarch +encage +encamp +encase +encash +encave +encode +encore +encyst +endart +endear +Enders +ending +endite +endive +endoss +endows +endued +endues +endure +enemas +energy +enerve +enewed +enface +enfant +enfire +enfold +enfree +engage +engaol +Engels +engild +engine +engird +engirt +englut +engobe +engore +engram +engulf +enhalo +eniacs +enigma +enisle +enjamb +enjoin +enjoys +enlace +enlard +enlev� +enlink +enlist +enlock +enmesh +enmews +enmity +enmove +ennage +ennead +Ennius +ennuis +ennuy� +enodal +enoses +enosis +enough +enrace +enrage +enrank +enrapt +enrich +enring +enrobe +enroll +enrols +enroot +ensate +enseam +ensear +ensign +ensile +ensoul +ensued +ensues +ensure +entail +entame +entera +enters +ent�t� +entice +entire +entity +entoil +entomb +entrap +entr�e +entrez +enured +enures +envied +envier +envies +envois +envoys +enwall +enwind +enwomb +enwrap +enzian +enzone +enzyme +Eocene +Eolian +eolith +eonism +eothen +Eozoic +Eozoon +epacts +eparch +epaule +epeira +ephahs +ephebe +ephebi +ephods +ephors +epical +epigon +epilog +epimer +epizoa +epocha +epochs +epodes +epodic +eponym +epopee +epopts +eposes +Epping +epulis +equals +equant +equate +equids +equine +equips +equity +erased +eraser +erases +erbium +Erebus +erects +eremic +erenow +Erfurt +ergate +eriach +ericas +ericks +eringo +Erinys +ermine +Ernani +Ernest +erning +eroded +erodes +Eroica +erotic +errand +errant +errata +erring +errors +ersatz +eructs +erupts +eryngo +escape +escarp +eschar +Escher +eschew +escort +escroc +escrol +escrow +escudo +Esdras +eskars +eskers +Eskies +Eskimo +esnecy +espada +Espa�a +espial +espied +espies +esprit +essays +Essene +essive +essoin +estate +esteem +esters +Esther +estocs +estops +estray +estrum +estrus +etalon +etched +etcher +etches +eterne +ethane +ethene +ethers +ethics +Ethiop +ethnic +ethyls +ethyne +Etnean +ettins +ettled +ettles +etwees +etymic +etymon +etypic +eucain +euchre +Euclid +Eugene +euking +eulogy +Eunice +eunuch +euouae +euphon +eureka +Europa +Europe +Euston +eutaxy +evaded +evader +evades +Evadne +evejar +Evelyn +evened +evener +evenly +events +everts +evhoes +evicts +evilly +evince +evited +evites +evohes +evoked +evoker +evokes +evolve +evovae +evulse +evzone +ewking +exacts +exalts +examen +exarch +exceed +excels +except +excess +excide +excise +excite +excuse +exeats +exedra +exempt +exequy +exerts +Exeter +exeunt +exhale +exhort +exhume +exiled +exiles +exilic +exines +exists +exited +Exmoor +Exocet +exodes +exodic +exodus +exogen +exomis +exonic +exonym +exopod +exotic +expand +expats +expect +expels +expend +expert +expire +expiry +export +expose +expugn +exsect +exsert +extant +extend +extent +extern +extine +extirp +extoll +extols +extort +extras +exuded +exudes +exults +exurbs +eyalet +eyases +eyecup +eyeful +eyeing +eyelet +eyelid +Eyetie +eyries +Eyties diff --git a/com/agnibho/code/anagram/dictionary/E7.txt b/com/agnibho/code/anagram/dictionary/E7.txt new file mode 100644 index 0000000..2739b65 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E7.txt @@ -0,0 +1,928 @@ +eagerly +eaglets +eanling +earache +earbash +earbobs +earcons +earding +eardrop +eardrum +earflap +earfuls +Earhart +earings +earlaps +earldom +earless +earlier +earlies +earlobe +earlock +earmark +earmuff +earners +earnest +earning +earpick +earplug +earring +earthed +earthen +earthly +earwigs +easeful +easiest +eastern +easting +Eastman +eatable +eatings +ebbless +ebonies +ebonise +ebonist +ebonite +ebonize +ebriate +ebriety +ebriose +ecboles +ecbolic +eccrine +ecdyses +ecdysis +echelon +echidna +echinus +echoers +echoing +echoise +echoism +echoist +echoize +eclipse +eclogue +eclosed +ecloses +ecocide +ecology +economy +econuts +ecotype +ecstasy +ectases +ectasis +ecthyma +ectopia +ectopic +ectozoa +ectypal +ectypes +Ecuador +edacity +edaphic +eddying +edental +edgiest +edgings +edibles +edictal +edifice +edified +edifier +edifies +editing +edition +editors +Edomite +educate +educing +eductor +eelfare +eelpout +eelworm +eeriest +effable +effaced +effaces +effects +effeirs +effendi +efforce +efforts +effrays +effulge +effused +effuses +egality +egences +egested +eggcups +egghead +eggiest +egglers +eggmass +eggnogs +eggwash +egoists +egotise +egotism +egotist +egotize +Ehrlich +eidetic +eidolon +eighths +eightvo +einkorn +eirenic +ejected +ejector +ekistic +ekpwele +Elamite +elanced +elances +elanets +elapsed +elapses +elastic +elastin +elaters +elating +elation +elative +elbowed +elchees +elderly +eldings +Eleanor +Eleatic +elected +elector +Electra +electro +elegant +elegiac +elegies +elegise +elegist +elegits +elegize +Elektra +element +elenchi +elevate +elevens +elevons +elfhood +elfland +elflock +elicits +eliding +elision +elitism +elitist +elixirs +ellagic +ellipse +ellwand +elmiest +elmwood +elocute +elogist +elogium +Elohist +eloigns +eloined +eloiner +elopers +eloping +Elspeth +Elstree +eltchis +eluants +eluates +eluders +eluding +eluents +elusion +elusive +elusory +eluting +elution +elutors +eluvial +eluvium +Elysian +Elysium +elytral +elytron +elytrum +Elzevir +emanant +emanate +embaced +embaces +embaled +embales +emballs +embalms +embanks +embargo +embarks +embased +embases +embassy +embayed +emblaze +emblema +emblems +emblics +embloom +embogue +embolic +embolus +embosom +embound +embowed +embowel +embower +emboxed +emboxes +embrace +embraid +embrave +embread +embroil +embrown +embrued +embrues +embrute +embryon +embryos +emended +emerald +emerged +emerges +emeried +emeries +emeriti +emerods +emersed +Emerson +emetics +emetine +emicant +emicate +eminent +emirate +emitted +emitter +emmewed +emmoved +emmoves +emoting +emotion +emotive +empaled +empales +empanel +emparls +empathy +emperor +empight +empires +empiric +emplace +emplane +employs +emporia +empower +empress +emprise +emptied +emptier +empties +emptily +emption +empusas +empuses +empyema +emulate +emulous +emulsin +emulsor +emuring +enabled +enabler +enables +enacted +enactor +enamels +enamors +enamour +enarmed +enation +encaged +encages +encamps +encased +encases +enchafe +enchain +enchant +encharm +enchase +enclasp +enclave +enclose +encloud +encoded +encoder +encodes +encomia +encored +encores +encraty +encrust +encrypt +encysts +endarch +endarts +endears +endemic +enderon +endgame +endings +endiron +endited +endites +endives +endless +endlong +endmost +endogen +endorse +endowed +endower +endozoa +endplay +enduing +endured +endurer +endures +endways +endwise +enemata +enemies +energic +energid +enewing +enfaced +enfaces +enfants +enfelon +enfeoff +Enfield +enfiled +enfixed +enfixes +enflame +enflesh +enfolds +enforce +enframe +enfroze +engaged +Engager +engages +engaols +engilds +engined +engines +engirds +England +English +englobe +engloom +engluts +engored +engores +engorge +engrace +engraff +engraft +engrail +engrain +engrams +engrasp +engrave +engross +enguard +engulfs +enhalos +enhance +enigmas +enisled +enisles +enjambs +enjoins +enjoyed +enjoyer +enlaced +enlaces +enlarge +enlinks +enlists +enliven +enlocks +enmewed +enneads +ennoble +ennuied +ennuyed +enology +enomoty +enoughs +enounce +enplane +enprint +enquire +enquiry +enraged +enrages +enrange +enrheum +enrings +enrobed +enrobes +enrolls +enroots +enround +enseams +enshell +ensigns +ensiled +ensiles +enskied +enskies +enslave +ensnare +ensnarl +ensouls +enstamp +ensteep +ensuing +ensured +ensurer +ensures +entails +entamed +entames +entases +entasis +Entebbe +entente +enteral +entered +enterer +enteric +enteron +ent�t�e +enthral +enthuse +enticed +enticer +entices +entires +entitle +entoils +entombs +entomic +entopic +entotic +entozoa +entrail +entrain +entrant +entraps +entreat +entr�es +entries +entrism +entrist +entropy +entrust +entwine +entwist +enuring +envault +envelop +envenom +enviers +envious +environ +envying +enwalls +enwheel +enwinds +enwombs +enwound +enwraps +enzians +enzoned +enzones +enzymes +enzymic +eoliths +epacrid +epacris +epagoge +eparchs +eparchy +epaules +epaulet +epaxial +epeiras +epeirid +epergne +ephebes +ephebic +ephebos +ephebus +ephedra +ephelis +Ephesus +Ephraim +epicarp +epicede +epicene +epicism +epicist +epicure +epidote +epigeal +epigean +epigene +epigone +epigoni +epigons +epigram +epigyny +epilate +epilogs +epimers +episode +episome +epistle +epitaph +epitaxy +epithem +epithet +epitome +epizoan +epizoic +epizoon +epochal +epochas +eponyms +epopees +epoxide +epoxies +epsilon +Epstein +epulary +epurate +equable +equably +equally +equated +equates +equator +equerry +Equidae +equinal +equinia +equinox +erasers +erasing +erasion +Erasmus +Erastus +erasure +erathem +erected +erecter +erectly +erector +erelong +eremite +erepsin +Erewhon +ergates +ergodic +eriachs +ericoid +eringos +erinite +Erinyes +eristic +Eritrea +ermelin +ermined +ermines +erodent +eroding +erodium +erosion +erosive +erotema +eroteme +erotica +erotics +erotism +errable +errands +errants +erratic +erratum +errhine +errings +Erskine +eructed +erudite +erupted +eryngos +escalop +escaped +escapee +escaper +escapes +escarps +eschars +escheat +eschews +escolar +escorts +escribe +escrocs +escroll +escrols +escrows +escuage +escudos +Esfahan +Eskimos +esotery +espadas +esparto +espials +espouse +espying +esquire +essayed +essayer +essence +Essenes +essoins +Essonne +essoyne +estated +estates +esteems +Estella +Estelle +esthete +estival +estoile +Estonia +Estoril +estover +estrade +estrays +estreat +estrepe +estrich +estrous +estuary +etacism +etaerio +etalons +etchant +etchers +etching +eternal +etesian +ethanal +ethanol +etheric +ethical +ethiops +ethmoid +ethoses +etiolin +Etonian +Etruria +ettling +etymons +eucaine +euchred +euchres +euclase +eucrite +Eugenia +eugenic +Eugenie +eugenol +Euglena +eulogia +eunuchs +euouaes +eupepsy +euphons +euphony +euphory +euphroe +Eurasia +Euratom +eurekas +euripus +Eustace +eustacy +eustasy +eustyle +Euterpe +eutexia +eutropy +evacuee +evaders +evading +evangel +evanish +evasion +evasive +evejars +evenest +evening +eventer +Everage +Everest +everted +Everton +evertor +Evesham +evicted +evictor +evident +eviller +evinced +evinces +evirate +evitate +eviting +evocate +evokers +evoking +evolute +evolved +evolver +evolves +evovaes +evulsed +evulses +evzones +exacted +exacter +exactly +exactor +exalted +examens +examine +example +exarate +exarchs +exarchy +exceeds +excepts +excerpt +excided +excides +excised +excises +excited +exciter +excites +exciton +excitor +exclaim +exclave +exclude +excreta +excrete +excudit +excusal +excused +excuser +excuses +execute +exedrae +exegete +exempla +exempts +exergue +exerted +exhaled +exhales +exhaust +exhedra +exhibit +exhorts +exhumed +exhumer +exhumes +exigent +exilian +exiling +exility +existed +exiting +Exmouth +exocarp +Exocets +exoderm +exodist +exogamy +exomion +exonyms +exopods +exordia +exotica +exotics +expands +expanse +expects +expends +expense +experts +expiate +expired +expires +explain +explant +explode +exploit +explore +exports +exposal +exposed +exposer +exposes +expound +express +expugns +expulse +expunct +expunge +expurge +exscind +exsects +exserts +extends +extense +extents +externe +externs +extinct +extines +extolls +extorts +extract +extrait +extreat +extreme +extrude +exudate +exuding +exulted +exurban +exurbia +exuviae +exuvial +eyalets +eyeball +eyebolt +eyebrow +eyecups +eyefuls +eyehook +eyelash +eyeless +eyelets +eyelids +eyesore +Eyeties +eyewear +Eysenck +Ezekiel diff --git a/com/agnibho/code/anagram/dictionary/E8.txt b/com/agnibho/code/anagram/dictionary/E8.txt new file mode 100644 index 0000000..063b6b7 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E8.txt @@ -0,0 +1,1244 @@ +earaches +eardrops +eardrums +earflaps +earldoms +earliest +earlobes +earlocks +earmarks +earmuffs +earnings +earphone +earpicks +earpiece +earplugs +earrings +earthier +earthing +earthman +earthmen +earthwax +earwiggy +easeless +easement +easiness +easterly +eastings +eastland +eastmost +eastward +Eastwood +eatables +eateries +ebenezer +ebionise +ebionism +Ebionite +ebionize +ebonised +ebonises +ebonists +ebonized +ebonizes +Eboracum +ebriated +eburnean +ecaudate +ecbolics +ecclesia +eccrisis +eccritic +echelons +echidnas +echinate +echinoid +Echinops +echogram +echoised +echoises +echoists +echoized +echoizes +echoless +Eckhardt +eclectic +eclipsed +eclipses +ecliptic +eclogite +eclogues +eclosing +eclosion +ecocides +ecofreak +ecologic +economic +ecostate +ecotoxic +ecotypes +ecstasis +ecstatic +ectoderm +ectogeny +ectosarc +ectozoan +ectozoic +ectozoon +ectropic +ecumenic +edacious +eddishes +Edentata +edentate +edgebone +Edgehill +edgeless +edgeways +edgewise +edginess +edifices +edifiers +edifying +editions +editress +Edmonton +Edomites +educable +educated +educates +educator +educible +eduction +eductors +eelfares +eelgrass +eelpouts +eelworms +eelwrack +eeriness +effacing +effected +effecter +effector +effendis +efferent +effetely +efficacy +effierce +effigies +effluent +effluvia +effluxes +effulged +effulges +effusing +effusion +effusive +eftsoons +egencies +egesting +egestion +egestive +eggeries +eggheads +eggshell +eglatere +egoistic +egomania +egotised +egotises +egotists +egotized +egotizes +egresses +Egyptian +eidetics +eighteen +eighthly +eighties +eightvos +Einstein +ejecting +ejection +ejective +ejectors +ekistics +eklogite +Elamites +elancing +elaphine +elapsing +elastase +elastics +elatedly +elaterin +elatives +elbowing +Eldorado +eldritch +Eleanore +electing +election +elective +electors +electret +electric +electron +electros +electrum +elegance +elegancy +elegiacs +elegiast +elegised +elegises +elegists +elegized +elegizes +elements +elenchus +elenctic +elephant +elevated +elevates +elevator +eleventh +elflocks +elicited +elicitor +eligible +eligibly +elisions +elitists +elkhound +ellipses +ellipsis +elliptic +ellwands +elocuted +elocutes +elogists +eloigned +eloigner +eloiners +eloining +elongate +eloquent +elsewise +Elsinore +eludible +elusions +eluviums +elvanite +elytrons +emaciate +emanated +emanates +embacing +embaling +emballed +embalmed +embalmer +embanked +embanker +embargos +embarked +embarred +embasing +embattle +embaying +embedded +embezzle +embitter +emblazed +emblazes +emblazon +emblemed +emblooms +embodied +embodies +embogged +embogued +embogues +embolden +embolies +embolism +emborder +embosoms +embossed +embosser +embosses +embowels +embowers +embowing +emboxing +embraced +embracer +embraces +embrasor +embraved +embraves +embreads +embroils +embrowns +embruing +embruted +embrutes +embryoid +embryons +embusqu� +embussed +embusses +emceeing +emendals +emendate +emending +emeralds +emeraude +emergent +emerging +emeritus +emersion +emerying +emetical +emicated +emicates +emiction +emictory +emigrant +emigrate +eminence +eminency +emirates +emissary +emissile +emission +emissive +emitters +emitting +Emmanuel +emmarble +Emmeline +Emmental +emmeshed +emmeshes +emmewing +emmoving +emoticon +emotions +empaling +empanels +emparled +empathic +empeople +emperies +emperise +emperish +emperize +emperors +emphases +emphasis +emphatic +empierce +empirics +emplaced +emplaces +emplaned +emplanes +employed +employee +employer +empoison +empolder +emporium +empowers +emprises +emptiers +emptiest +emptions +emptying +emptysis +empurple +empyemic +empyesis +empyreal +empyrean +Emsworth +emulated +emulates +emulator +emulsify +emulsion +emulsive +emulsoid +emulsors +enablers +enabling +enacting +enaction +enactive +enactors +enallage +enameled +enameler +enamored +enamours +enarched +enarches +enations +enaunter +encaenia +encaging +encamped +encarpus +encashed +encashes +encasing +enceinte +enchains +enchants +enchased +enchases +enchoric +encierro +encipher +encircle +enclasps +enclaved +enclaves +enclises +enclisis +enclitic +enclosed +encloser +encloses +enclothe +enclouds +encoders +encoding +encolour +encomion +encomium +encoring +encradle +encrease +encrinal +encrinic +encroach +encrusts +encrypts +encumber +encyclic +encysted +endamage +endanger +endarted +endeared +endeavor +endeixes +endeixis +endemial +endemics +endemism +endermic +enderons +endgames +endirons +enditing +endocarp +endoderm +endodyne +endogamy +endogens +endogeny +endorsed +endorsee +endorser +endorses +endosarc +endowers +endowing +endozoic +endozoon +endpaper +endurers +enduring +Endymion +energids +energies +energise +energize +enervate +enfacing +enfeeble +enfeoffs +enfetter +enfierce +enfilade +enfixing +enflamed +enflames +enflower +enfolded +enforced +enforcer +enforces +enforest +enframed +enframes +enfreeze +enfrosen +enfrozen +engaging +engaoled +engender +engilded +engineer +enginery +engining +engirdle +englobed +englobes +englooms +engorged +engorges +engoring +engouled +engraced +engraces +engrafts +engrails +engrains +engramma +engraved +engraven +engraver +engraves +engrieve +engroove +engulfed +enhaloed +enhanced +enhancer +enhances +enhearse +enhunger +enhydros +enisling +enjambed +enjoined +enjoiner +enjoyers +enjoying +enkernel +enkindle +enlacing +enlarged +enlarger +enlarges +enlinked +enlisted +enlivens +enlocked +enlumine +enmeshed +enmeshes +enmewing +enmities +enmossed +enneadic +enneagon +ennobled +ennobles +ennuying +enormity +enormous +enounced +enounces +enplaned +enplanes +enprints +enquired +enquirer +enquires +enraging +enravish +enrheums +enriched +enriches +enridged +enringed +enrobing +enrolled +enroller +enrooted +ensample +Enschede +ensconce +enseamed +ensemble +ensheath +enshield +enshrine +enshroud +ensiform +ensigncy +ensigned +ensilage +ensiling +enskying +enslaved +enslaver +enslaves +ensnared +ensnares +ensnarls +ensouled +ensphere +enstamps +ensurers +ensuring +enswathe +entailed +entailer +entaming +entangle +entellus +entender +ententes +enterate +enterers +entering +enthalpy +enthetic +enthrall +enthrals +enthrone +enthused +enthuses +enticers +enticing +entirely +entirety +entities +entitled +entitles +entoderm +entoiled +entombed +entoptic +entozoal +entozoic +entozoon +entrails +entrains +entrance +entrants +entreats +entreaty +entrench +entrepot +entresol +entrisms +entrists +entrusts +entryism +entryist +entwined +entwines +entwists +enuresis +enuretic +envassal +envelope +envelops +envenoms +enviable +enviably +environs +envisage +envision +enwalled +enwombed +Enzedder +enzoning +enzootic +Eohippus +eolipile +eolithic +epacrids +epagogic +epanodos +epaulets +epeirids +epergnes +ephedras +ephemera +Ephesian +epiblast +epically +epicalyx +epicarps +epicedes +epicedia +epicenes +epicists +epicotyl +epicures +Epicurus +epicycle +epidemic +epidotes +epidotic +epidural +epifocal +epigaeal +epigaean +epigamic +epigeous +epigones +epigrams +epigraph +epilated +epilates +epilator +epilepsy +epilogic +epilogue +epimeric +epinasty +epinosic +Epiphany +epiphyte +epiploic +epiploon +epipolic +episcope +episcopy +episemon +episodal +episodes +episodic +episomes +episperm +epispore +epistler +epistles +epistyle +epitaphs +epitases +epitasis +epithema +epithems +epithets +epitomes +epitomic +epitonic +epitrite +epizoans +eponymic +epopoeia +epoxides +epsomite +epulises +epulotic +epurated +epurates +epyllion +equalise +equality +equalize +equalled +equating +equation +equators +equinity +equipage +equipped +equitant +equities +equivoke +Equuleus +eradiate +erasable +erasions +Erastian +erasures +Erdgeist +erecters +erectile +erecting +erection +erective +erectors +eremital +eremites +eremitic +erethism +erewhile +ergative +ergatoid +ergogram +ergotise +ergotism +ergotize +Ericsson +Eridanus +erigeron +eringoes +erionite +Eritrean +Erlangen +ermelins +erodents +erodible +erodiums +erogenic +erosions +erotemas +erotemes +eroteses +erotesis +erotetic +erotical +errantly +errantry +errhines +erringly +errorist +ersatzes +eructate +eructing +erumpent +erupting +eruption +eruptive +eryngium +eryngoes +Erysimum +erythema +escalade +escalado +escalate +escalier +escallop +escalope +escalops +escapade +escapado +escapees +escapers +escaping +escapism +escapist +escargot +escarole +escarped +eschalot +escheats +eschewal +eschewed +eschewer +escolars +Escorial +escorted +escribed +escribes +escrolls +escuages +esculent +esophagi +esoteric +espalier +espartos +especial +espi�gle +espousal +espoused +espouser +espouses +espresso +espumoso +Esquimau +esquires +esquisse +essayers +essaying +essayish +essayist +essences +Essencia +Essenism +essoiner +essonite +essoynes +estacade +estancia +estating +esteemed +esterify +esthesia +esthetes +esthetic +Esthonia +estimate +estivate +estoiles +Estonian +estopped +estoppel +estovers +estrades +estrange +estrayed +estreats +estreped +estrepes +estrogen +esurient +etaerios +etchants +etchings +eternise +eternity +eternize +Ethelred +ethereal +etherial +etherify +etherion +etherise +etherism +etherist +etherize +Ethernet +ethicise +ethicism +ethicist +ethicize +Ethiopia +Ethiopic +ethnarch +ethnical +ethology +ethylate +ethylene +etiolate +etiology +Etonians +Etrurian +Etruscan +ettercap +etypical +eucalypt +eucaryon +eucaryot +eucharis +euchring +eucrites +eucritic +eucyclic +eudemony +eugenics +eugenism +eugenist +Eugubine +eukaryon +eukaryot +eulachan +eulachon +eulogies +eulogise +eulogist +eulogium +eulogize +eumerism +euonymin +euonymus +eupatrid +eupepsia +eupeptic +Euphemia +euphobia +euphonia +euphonic +euphoria +euphoric +euphrasy +euphroes +euphuise +euphuism +euphuist +euphuize +Eurasian +eurobond +Eurocrat +Euroland +European +europium +Euroseat +Eurostar +Eurydice +eurythmy +Eusebian +Eusebius +eustatic +eustyles +eutaxite +eutectic +Eutheria +eutrophy +eutropic +euxenite +evacuant +evacuate +evacuees +evadable +evaluate +evanesce +evangels +evangely +evasible +evasions +evection +evenfall +evenings +evenness +evensong +eventers +eventful +eventide +eventing +eventual +evermore +eversion +everting +evertors +everyday +Everyman +everyone +everyway +evicting +eviction +evictors +evidence +evidents +evildoer +evillest +evilness +evincing +evincive +evirated +evirates +evitable +evocable +evocated +evocates +evocator +evoluted +evolutes +evolvent +evolvers +evolving +evulgate +evulsing +evulsion +Ewigkeit +exacters +exacting +exaction +exactors +exalting +examined +examinee +examiner +examines +examplar +exampled +examples +exanthem +exarchal +excavate +exceeded +excelled +excepted +exceptor +excerpta +excerpts +excesses +exchange +exciding +excising +excision +excitant +exciters +exciting +excitons +excitors +exclaims +exclaves +excluded +excludee +excluder +excludes +excretal +excreted +excreter +excretes +excubant +excursus +excusals +excusers +excusing +excusive +execrate +executed +executer +executes +executor +executry +exegeses +exegesis +exegetes +exegetic +exemplar +exemplum +exempted +exequial +exequies +exercise +exergual +exergues +exerting +exertion +exertive +exhalant +exhaling +exhausts +exhedrae +exhibits +exhorted +exhorter +exhumate +exhumers +exhuming +exigeant +exigence +exigency +exigents +exigible +exiguity +exiguous +eximious +existent +existing +exitance +exocarps +exocrine +exoderms +exodists +exoduses +exoergic +exogamic +exomions +exomises +exophagy +exoplasm +exorable +exorcise +exorcism +exorcist +exorcize +exordial +exordium +exosmose +exospore +exoteric +exotoxic +exotoxin +expanded +expander +expandor +expanses +expected +expecter +expedite +expelled +expellee +expeller +expended +expender +expenses +expertly +expiable +expiated +expiates +expiator +expirant +expiries +expiring +explains +explants +explicit +exploded +exploder +explodes +exploits +explored +explorer +explores +exponent +exported +exporter +exposals +exposers +exposing +exposure +expounds +expresso +expugned +expuncts +expunged +expunger +expunges +expurged +expurges +exscinds +exsected +exserted +extended +extender +extensor +exterior +external +externat +externes +extolled +extoller +extorted +extracts +extrados +extremer +extremes +extrorse +extruded +extruder +extrudes +exudates +exultant +exulting +exuviate +eyeballs +eyeblack +eyebolts +eyebrows +eyeglass +eyehooks +eyeleted +eyeliner +eyepatch +eyeshade +eyesight +eyesores +eyestalk diff --git a/com/agnibho/code/anagram/dictionary/E9.txt b/com/agnibho/code/anagram/dictionary/E9.txt new file mode 100644 index 0000000..20ae94f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/E9.txt @@ -0,0 +1,1377 @@ +eachwhere +eagerness +eaglewood +ealdorman +ealdormen +earbashed +earbashes +earliness +earmarked +earnestly +earphones +earpieces +earthborn +earthfall +earthfast +earthflax +earthiest +earthlier +earthling +earthrise +earthward +earthwolf +earthwork +earthworm +earwigged +eastbound +Eastender +easterner +eastlands +Eastleigh +eastwards +eavesdrip +eavesdrop +Ebenaceae +ebenezers +ebionised +ebionises +Ebionites +ebionitic +ebionized +ebionizes +ebonising +ebonizing +ebriosity +ebullient +eburneous +Ecardines +eccentric +ecclesial +ecclesias +eccritics +ecdysiast +echeveria +echidnine +echinated +echinoids +echinuses +echograms +echoising +echoizing +echolalia +echovirus +eclampsia +eclamptic +eclectics +eclipsing +ecliptics +ecofreaks +ecologist +economics +economies +economise +economism +economist +economize +ecophobia +ecosphere +ecosystem +ecstasied +ecstasies +ecstasise +ecstasize +ectoblast +ectocrine +ectoderms +ectogenic +ectomorph +ectophyte +ectoplasm +ectosarcs +ectotherm +ectropion +ectropium +Ecuadoran +ecumenics +ecumenism +Eddington +Eddystone +edelweiss +edematose +edematous +Edgbaston +edgebones +edibility +edictally +edificial +Edinburgh +editorial +educating +education +educative +educators +educatory +educement +eductions +Eduskunta +Edwardian +effecters +effecting +effective +effectors +effectual +efficient +effluence +effluents +effluvial +effluvium +effluxion +effortful +effulgent +effulging +effusions +egalities +eggshells +eglantine +eglateres +egomaniac +egotheism +egotising +egotistic +egotizing +egregious +egression +Egyptians +eiderdown +eidograph +eigentone +eighteens +eightfold +eightfoot +eightieth +eightsman +eightsmen +eightsome +Eindhoven +eirenicon +ejaculate +ejections +ejectment +ekphrasis +elaborate +Elaeagnus +elaeolite +elastance +elastomer +elaterite +elaterium +eldership +electable +elections +electoral +electress +electrets +electrics +electrify +electrise +electrize +electrode +electrons +electuary +elegantly +elegiacal +elegiasts +elegising +elegizing +elemental +elephants +eleutheri +elevating +elevation +elevators +elevatory +elevenses +elevenths +eliciting +elicitors +eliminant +eliminate +Elisabeth +Elizabeth +elkhounds +Ellington +ellipsoid +elocuting +elocution +Elohistic +eloigners +eloigning +elongated +elongates +elopement +eloquence +elsewhere +elucidate +elusively +elutriate +emaciated +emaciates +emanating +emanation +emanatist +emanative +emanatory +emballing +embalmers +embalming +embankers +embanking +embargoed +embargoes +embarking +embarrass +embarring +embassade +embassage +embassies +embattled +embattles +embayment +embedding +embedment +embellish +embezzled +embezzler +embezzles +embitters +emblazing +emblazons +emblemata +embleming +emblemise +emblemize +embloomed +emblossom +embodying +embogging +emboguing +emboldens +embolisms +emboluses +emboscata +embosomed +embossers +embossing +embowered +embraceor +embracers +embracery +embracing +embracive +embrangle +embrasors +embrasure +embraving +embrazure +embreaded +embreathe +embrittle +embrocate +embroglio +embroider +embroiled +embrowned +embruting +embryonal +embryonic +embryotic +embusqu�s +embussing +emendable +emendated +emendates +emendator +emergence +emergency +emersions +emicating +emication +emigrants +emigrated +emigrates +eminences +eminently +emissions +emmarbled +emmarbles +Emmenthal +emmeshing +emmetrope +emolliate +emollient +emolument +emoticons +emotional +emotivism +empaestic +empanoply +emparling +empathies +empathise +empathize +empennage +emperised +emperises +emperized +emperizes +emphasise +emphasize +emphlyses +emphlysis +emphysema +empirical +emplacing +emplaning +emplastic +emplecton +emplectum +employees +employers +employing +empoisons +empolders +emporiums +empowered +empresses +emptiness +emptional +emptyings +empurpled +empurples +empyreans +empyreuma +emulating +emulation +emulative +emulators +emulously +emulsions +emulsoids +emunctory +enactions +enactment +enamelers +enameling +enamelist +enamelled +enameller +enamorado +enamoring +enamoured +enarching +encamping +encanthis +encashing +encaustic +enceintes +Enceladus +enchained +enchanted +enchanter +enchasing +encheason +enchilada +enchorial +encierros +enciphers +encircled +encircles +enclasped +enclaving +enclitics +enclosers +enclosing +enclosure +enclothed +enclothes +enclouded +encolours +encolpion +encolpium +encomiast +encomions +encomiums +encompass +encounter +encourage +encradled +encradles +Encratism +Encratite +encreased +encreases +encrimson +encrinite +encrusted +encrypted +encumbers +encurtain +encyclics +encysting +endamaged +endamages +endamoeba +endangers +endarting +endearing +endeavors +endeavour +endeictic +endemical +endenizen +endlessly +endoblast +endocarps +endocrine +endoderms +endogamic +endogenic +endolymph +endomixes +endomixis +endomorph +endophagy +endophyte +endoplasm +endorphin +endorsees +endorsers +endorsing +endosarcs +endoscope +endoscopy +endosmose +endosperm +endospore +endosteal +endosteum +endowment +endpapers +endungeon +endurable +endurably +endurance +energetic +energised +energiser +energises +energized +energizer +energizes +energumen +enervated +enervates +enfeebled +enfeebles +enfeoffed +enfetters +enfiladed +enfilades +enflaming +enfleshed +enfleshes +enflowers +enfolding +enforcers +enforcing +enforests +enframing +enfreezes +engaoling +engarland +Engelbert +engenders +engilding +engineers +engirding +engirdled +engirdles +engiscope +Englander +Englisher +Englishry +englobing +engloomed +englutted +engorging +engo�ment +engracing +engrafted +engrailed +engrained +engrainer +engrammas +engravers +engravery +engraving +engrenage +engrooved +engrooves +engrossed +engrosser +engrosses +engulfing +engyscope +enhaloing +enhancers +enhancing +enhancive +enhearten +enhungers +enhydrite +enhydrous +enigmatic +enjambing +enjoiners +enjoining +enjoyable +enjoyably +enjoyment +enkernels +enkindled +enkindles +enlargers +enlarging +enlighten +enlinking +enlisting +enlivened +enlivener +enlocking +enmeshing +enneagons +ennobling +enomoties +enouncing +enplaning +enquirers +enquiries +enquiring +enrapture +enrheumed +enriching +enringing +enrollers +enrolling +enrolment +enrooting +ensamples +ensconced +ensconces +enseaming +ensembles +ensheathe +ensheaths +enshelter +enshields +enshrined +enshrines +enshrouds +ensigning +ensilaged +ensilages +enslavers +enslaving +ensnaring +ensnarled +ensorcell +ensouling +ensphered +enspheres +enstamped +enstatite +enswathed +enswathes +entailers +entailing +entamoeba +entangled +entangles +entelechy +enterable +enterings +enteritis +entertain +entertake +enthralls +enthroned +enthrones +enthusing +enthymeme +enticings +entitling +entoblast +entoderms +entoiling +entombing +entophyte +entoptics +entourage +entr'acte +entrained +entrammel +entranced +entrances +entrapped +entrapper +entreated +entrechat +entrec�te +entremets +entrepots +entresols +entropion +entropium +entrusted +entryists +entwining +entwisted +enucleate +enumerate +enunciate +enurement +enuretics +enveloped +envelopes +envenomed +envermeil +enviously +environed +envisaged +envisages +envisions +envoyship +envyingly +enwalling +enwinding +enwombing +enwrapped +enwreathe +Enzedders +enzootics +enzymatic +eolipiles +epacrises +epaenetic +eparchate +eparchies +epaulette +epedaphic +Epeiridae +epeolatry +ephedrine +ephelides +ephemerae +ephemeral +ephemeras +ephemerid +ephemeris +ephemeron +Ephesians +ephialtes +ephoralty +epicedial +epicedian +epicedium +epicenter +epicentre +epicleses +epiclesis +epicotyls +epicritic +Epictetus +Epicurean +epicurise +epicurism +epicurize +epicycles +epicyclic +Epidaurus +epidemics +epidermal +epidermic +epidermis +epidosite +epidurals +epigaeous +epigraphs +epigraphy +epigynous +epilating +epilation +epilators +epileptic +epilobium +epilogise +epilogist +epilogize +epilogues +epinastic +epineural +epinician +epinicion +epinikian +epinikion +epiphanic +epiphragm +epiphyses +epiphysis +epiphytal +epiphytes +epiphytic +epiploons +epipolism +epirrhema +episcopal +episcopes +episemons +episodial +episperms +epispores +epistases +epistasis +epistatic +epistaxes +epistaxis +epistemic +epistlers +epistoler +epistolet +epistolic +epistyles +epitaphed +epitapher +epitaphic +epitaxial +epitaxies +epithelia +epitheses +epithesis +epitheted +epithetic +epitheton +epitomise +epitomist +epitomize +epitrites +epizeuxes +epizeuxis +epizootic +eponymous +epopoeias +epulation +epulotics +epurating +epuration +epyllions +equalised +equaliser +equalises +equalized +equalizer +equalizes +equalling +equalness +equatable +equations +equerries +equinoxes +equipages +equipment +equipoise +equipping +equisetic +equisetum +equitable +equitably +equivalve +equivocal +equivokes +equivoque +eradiated +eradiates +eradicate +erasement +Erastians +erections +erectness +eremitism +erethitic +ergataner +ergograms +ergograph +ergomania +ergometer +ergonomic +ergotised +ergotises +ergotized +ergotizes +Ericaceae +erigerons +eriometer +eristical +Eritreans +Ernestine +erogenous +erostrate +eroticise +eroticism +eroticist +eroticize +erotology +erratical +erroneous +errorists +erstwhile +eruciform +eructated +eructates +eruditely +erudition +eruptions +eryngiums +erythemal +erythrina +erythrism +erythrite +escaladed +escalades +escalated +escalates +escalator +escallops +escalopes +escapable +escapades +escapists +escargots +escaroles +escarping +eschalots +escheated +escheator +eschewals +eschewers +eschewing +esclandre +escopette +escortage +escorting +escribano +escribing +esculents +esemplasy +Esmeralda +esophagus +esoterica +esoteries +esoterism +espagnole +espaliers +esperance +Esperanto +espionage +esplanade +espousals +espousers +espousing +espressos +espumosos +Esquimaux +esquisses +essayette +essayists +essential +Essequibo +essoiners +establish +estacades +estafette +estaminet +estancias +esteeming +Esterh�zy +esthetics +Esthonian +estimable +estimably +estimated +estimates +estimator +estivated +estivates +Estonians +estoppage +estoppels +estopping +estranged +estranger +estranges +estrapade +estraying +estreated +estreping +estrildid +estuarial +estuarian +estuaries +estuarine +esurience +esuriency +eternally +eternised +eternises +eternized +eternizes +Ethelbert +ethereous +etherical +etherised +etherises +etherists +etherized +etherizes +ethically +ethicised +ethicises +ethicists +ethicized +ethicizes +Ethiopian +ethiopses +ethmoidal +ethnarchs +ethnarchy +ethnicism +ethnicity +ethnocide +ethnology +ethologic +ethylated +ethylates +etiolated +etiolates +etiquette +Etruscans +ettercaps +etymology +eucalypti +eucalypts +eucaryons +eucaryote +eucaryots +Eucharist +euchloric +euchology +Euclidean +eudaemony +eudemonic +eudialyte +eugenists +eukaryons +eukaryote +eukaryots +eulachans +eulachons +eulogised +eulogiser +eulogises +eulogists +eulogiums +eulogized +eulogizer +eulogizes +eumelanin +Eumenides +Eumycetes +eunuchise +eunuchism +eunuchize +eunuchoid +eupatrids +Euphausia +euphausid +euphemise +euphemism +euphemize +euphenics +euphonies +euphonise +euphonium +euphonize +euphorbia +euphories +Euphrates +euphuised +euphuises +euphuisms +euphuists +euphuized +euphuizes +Euraquilo +Eurasians +eurhythmy +Euripides +euripuses +eurobonds +Eurocrats +Europeans +Europhile +Euroseats +Eurospeak +Eurotrash +Euryanthe +eurytherm +eurythmic +Euskarian +eutaxitic +eutectoid +Euterpean +euthanasy +euthenics +euthenist +eutherian +eutrophic +eutropous +Eutychian +evacuants +evacuated +evacuates +evacuator +evagation +evaginate +evaluated +evaluates +evanesced +evanesces +evangelic +evanished +evanishes +evanition +evaporate +evaporite +evasively +evections +evenfalls +evensongs +eventides +eventuate +everglade +evergreen +eversible +eversions +everybody +everywhen +evictions +evidenced +evidences +evidently +evildoers +evildoing +evincible +evincibly +evirating +evitation +eviternal +evocating +evocation +evocative +evocators +evocatory +evoluting +evolution +evolutive +evolvable +evulgated +evulgates +evulsions +exactable +exactions +exactment +exactness +exactress +exaltedly +examinant +examinate +examinees +examiners +examining +examplars +exampling +exanimate +exanthema +exanthems +exaration +exarchate +exarchies +exarchist +Excalibur +excarnate +excaudate +excavated +excavates +excavator +exceeding +excellent +excelling +excelsior +excentric +exceptant +excepting +exception +exceptive +exceptors +excerpted +excerptor +excerptum +excessive +exchanged +exchanger +exchanges +exchequer +excipient +excisable +exciseman +excisemen +excisions +excitable +excitably +excitancy +excitants +excitedly +exclaimed +exclosure +excludees +excluders +excluding +exclusion +exclusive +exclusory +excoriate +excrement +excreters +excreting +excretion +excretive +excretory +exculpate +excurrent +excursion +excursive +excusable +excusably +execrable +execrably +execrated +execrates +executant +executers +executing +execution +executive +executors +executory +executrix +exegetics +exegetist +exemplars +exemplary +exemplify +exempting +exemption +exequatur +exercised +exerciser +exercises +exergonic +exertions +exfoliate +exhalable +exhalants +exhausted +exhauster +exhibited +exhibiter +exhibitor +exhorters +exhorting +exhumated +exhumates +exigeante +exigences +exigently +exilement +existence +exodermal +exodermis +exoenzyme +exogamous +exogenous +exonerate +exoplasms +exopodite +exorcised +exorciser +exorcises +exorcisms +exorcists +exorcized +exorcizer +exorcizes +exordiums +exosmosis +exosmotic +exosphere +exosporal +exospores +exostoses +exostosis +exoticism +exotoxins +expanders +expanding +expandors +expansile +expansion +expansive +expatiate +expectant +expecters +expecting +expedient +expedited +expediter +expedites +expeditor +expellant +expellees +expellent +expellers +expelling +expenders +expending +expensive +expertise +expertize +expiating +expiation +expiators +expiatory +expirable +expirants +explained +explainer +explanted +expletive +expletory +explicate +exploders +exploding +exploited +exploiter +explorers +exploring +explosion +explosive +exponents +exponible +exporters +exporting +exposable +expositor +exposture +exposures +expounded +expounder +expressed +expresses +expressly +expugning +expulsion +expulsive +expuncted +expungers +expunging +expurgate +expurging +exquisite +exscinded +exsecting +exsection +exsertile +exserting +exsertion +exsiccant +exsiccate +exsuccous +extempore +extendant +extenders +extending +extensile +extension +extensity +extensive +extensors +extenuate +exteriors +extermine +externals +extincted +extirpate +extollers +extolling +extolment +extorsive +extorting +extortion +extortive +extracted +extractor +extradite +extrapose +extraught +extravert +extremely +extremest +extremism +extremist +extremity +extricate +extrinsic +extrorsal +extrovert +extruders +extruding +extrusion +extrusive +extrusory +exuberant +exuberate +exudation +exudative +exultance +exultancy +exuviated +exuviates +eyeballed +eyebright +eyebrowed +eyelashes +eyeleteer +eyeleting +eyeliners +eyeshades +eyestalks +eyestrain diff --git a/com/agnibho/code/anagram/dictionary/F1.txt b/com/agnibho/code/anagram/dictionary/F1.txt new file mode 100644 index 0000000..6a69f92 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F1.txt @@ -0,0 +1 @@ +f diff --git a/com/agnibho/code/anagram/dictionary/F10.txt b/com/agnibho/code/anagram/dictionary/F10.txt new file mode 100644 index 0000000..d4282d6 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F10.txt @@ -0,0 +1,847 @@ +fabricants +fabricated +fabricates +fabricator +fabulising +fabulizing +fabulosity +fabulously +faceworker +facileness +facilitate +facilities +facinorous +facsimiled +facsimiles +factionary +factionist +factiously +factitious +factorable +factorages +factorials +factorised +factorises +factorized +factorizes +factorship +factsheets +factuality +fadelessly +faggotings +fagottists +Fahrenheit +fairground +fairylands +Faisalabad +faithfully +falangists +falcations +faldistory +faldstools +fallacious +fallfishes +fallowness +falsehoods +falseworks +falsidical +falsifiers +falsifying +falterings +familiarly +familistic +famishment +famousness +fanaticise +fanaticism +fanaticize +fancifully +fandangles +fanfarades +fanfaronas +fantasised +fantasises +fantasists +fantasized +fantasizes +fantasques +fantastico +fantasying +fantoccini +faradising +faradizing +farandines +farandoles +farcically +farcifying +farfetched +farmhouses +farmsteads +fasciation +fascicular +fascicules +fasciculus +fascinated +fascinates +fascinator +fashioners +fashioning +fashionist +Fassbinder +fastenings +fastidious +fastigiate +fastigiums +fastnesses +fatalistic +fatalities +fatherhood +fatherland +fatherless +fatherlike +fathership +fathomable +fathometer +fathomless +fatiguable +fatiscence +fattenings +faultiness +Fauntleroy +favoritism +favourable +favourably +favourites +favourless +fazendeiro +fearlessly +fearnought +fearsomely +featherbed +feathering +febriculas +febricules +febrifugal +febrifuges +fecklessly +fecundated +fecundates +federacies +federalise +federalism +federalist +federalize +federating +federation +federative +feebleness +feedstocks +feedstuffs +feistiness +felicitate +felicities +felicitous +Felixstowe +fellations +fellmonger +fellowship +felspathic +femaleness +feminality +feminility +femininely +femininism +femininity +feminising +feministic +feminizing +fenestella +fenestrate +Fenriswolf +fenugreeks +feoffments +feretories +fermenting +fermentive +ferntickle +fernticled +fernticles +ferrograms +ferroni�re +ferroprint +ferrotypes +fertilised +fertiliser +fertilises +fertilized +fertilizer +fertilizes +fervescent +fervidness +Fescennine +festinated +festinates +festoonery +festooning +fetchingly +fetichised +fetichises +fetichisms +fetichists +fetichized +fetichizes +fetishised +fetishises +fetishisms +fetishists +fetishized +fetishizes +fetterless +fetterlock +fettuccine +feudalised +feudalises +feudalists +feudalized +feudalizes +feuilleton +feverishly +Ffestiniog +fianchetti +fianchetto +fiberboard +fiberglass +fiberscope +fibreboard +fibreglass +fibrescope +fibrillary +fibrillate +fibrillose +fibrillous +fibrinogen +fibroblast +fibrocytes +fibrolines +fibrolites +fibrositis +fickleness +fictionist +fictitious +fiddlehead +fiddlewood +fidelities +fiducially +fieldboots +fieldfares +fieldmouse +fieldpiece +fieldstone +fieldwards +fieldworks +fiendishly +fierceness +fifteeners +fifteenths +fightbacks +figurantes +figuration +figurative +figurehead +filariasis +filatories +filchingly +filiations +filibuster +Filicineae +filicinean +filigranes +fillisters +filmmakers +filoplumes +filopodium +filoselles +filterable +filthiness +filtrating +filtration +fimbriated +fimbriates +fimicolous +finalising +finalities +finalizing +financiers +finessings +fingerbowl +fingerhold +fingerhole +fingerings +fingerless +fingerling +fingermark +fingernail +fingerpost +fingertips +finicality +finishings +Finisterre +finiteness +firebombed +firebrands +firebricks +firecrests +firefloats +fireguards +firehouses +firelights +fireplaces +fireproofs +firestones +firmaments +firstlings +Fishbourne +fishburger +fishmonger +fistfights +fisticuffs +fitfulness +Fittipaldi +Fitzgerald +fivepences +fivestones +flabbiness +flabellate +flabellums +flaccidity +flagellant +Flagellata +flagellate +flageolets +flagginess +flagitated +flagitates +flagitious +flagrances +flagrantly +flagstaffs +flagsticks +flagstones +flamboyant +flameproof +Flamingant +flamingoes +flaminical +flammables +flanconade +flannelled +flapdoodle +flapperish +flaptracks +flashcubes +flashiness +flashlight +flashpoint +flatfishes +flattening +flatterers +flatteries +flattering +flatulence +flatulency +flaughters +flaughting +flaunching +flauntiest +flavescent +flavonoids +flavorings +flavorless +flavorsome +flavourful +flavouring +flavourous +flawlessly +flechettes +fleckering +fledgeling +fledglings +fleeceless +fleechings +fleechment +fleeciness +fleeringly +fleetingly +fleshiness +fleshlings +fleshworms +fleurettes +flexihours +flichtered +flickering +flightiest +flightless +flimsiness +flindersia +flintified +flintifies +flintiness +flintlocks +Flintshire +Flintstone +flippantly +flirtation +flirtingly +flittering +floatation +floatingly +floatplane +flocculate +flocculent +floodgates +floodlight +floodmarks +floodplain +floodtides +floodwater +floorboard +floorcloth +floorheads +flophouses +floppiness +florentine +florescent +floribunda +florideans +florideous +floridness +florilegia +floristics +flosculous +flotations +flouncings +floundered +flourished +flourishes +floutingly +flowcharts +flowerages +floweriest +flowerings +flowerless +flowerpots +flowmeters +fluctuated +fluctuates +fluentness +fluffiness +flugelhorn +fluidified +fluidifies +fluidising +fluidizing +flukeworms +flummeries +flummoxing +flunkeydom +flunkeyish +flunkeyism +fluoresced +fluoresces +fluoridate +fluoridise +fluoridize +fluorinate +fluorotype +flustering +fluttering +fluvialist +fluviatile +fluxionary +fluxionist +flycatcher +flypitcher +flypitches +flyposting +flyweights +focalising +focalizing +focimeters +fo'c's'les +fodderings +foeticides +foetoscopy +fogramites +fogsignals +foisonless +foliaceous +foliations +foliatures +Folkestone +folklorist +folksiness +follicular +followings +fontanelle +fonticulus +fontinalis +foodstuffs +footballer +footboards +footbridge +footcloths +footguards +footlights +footplates +footprints +footstalks +footstools +foraminous +forbearant +forbearing +forbiddals +forbidding +forcedness +forcefully +forcemeats +forcipated +forearming +forebitter +foreboders +foreboding +forecabins +forecasted +forecaster +forecastle +forechosen +foreclosed +forecloses +forecloths +forecourse +forecourts +foredating +foredoomed +forefather +forefinger +forefronts +foregather +foregleams +foregoings +foreground +forehanded +forehented +foreigners +foreignism +forejudged +forejudges +forelaying +forenights +foreordain +forepoints +forerunner +foresaying +foreseeing +foreshadow +foresheets +foreshocks +foreshores +foreshowed +foresights +forespeaks +forespends +forespoken +forestages +forestairs +forestalls +foretasted +foretastes +foreteller +forethinks +foretokens +forewarned +forfairing +forfaiters +forfaiting +forfeiting +forfeiture +forfending +forfoughen +forgathers +forgetters +forgettery +forgetting +forgivable +forgivably +forhenting +forinsecal +forjudging +forkedness +formalised +formalises +formalisms +formalists +formaliter +formalized +formalizes +formations +formatters +formatting +formicaria +formidable +formidably +formlessly +formulated +formulates +formulator +formulised +formulises +formulists +formulized +formulizes +fornicated +fornicates +fornicator +forsakenly +forsakings +forsythias +fortalices +fortepiano +forthgoing +forthright +fortifiers +fortifying +Fortinbras +fortissimo +fortitudes +fortnights +fortresses +fortuitism +fortuitist +fortuitous +Fortunatus +forwarders +forwarding +forwarning +fossicking +fossilised +fossilises +fossilized +fossilizes +fosterages +fosterings +fosterling +fostresses +foudroyant +foundation +foundering +founderous +foundlings +fourchette +Fourierism +fourpences +fourscores +foursquare +fourteener +fourteenth +foxberries +foxtrotted +frabjously +fractality +fractional +fracturing +fragmental +fragmented +fragrances +fragrantly +framboesia +framboises +frameworks +franchised +franchisee +franchiser +franchises +Franciscan +francolins +francophil +frangipane +frangipani +fratchiest +Fratercula +fraternise +fraternity +fraternize +fratricide +fraudfully +fraudsters +fraudulent +fraughtage +Fraunhofer +Fraxinella +freakiness +freakishly +freckliest +frecklings +freebasing +freebooted +freebooter +freedwoman +freedwomen +freeholder +freelanced +freelancer +freelances +freeloaded +freeloader +freemartin +freemasons +freesheets +freestones +freestyler +freewheels +freightage +freighters +freighting +fremescent +fremituses +frenetical +frenziedly +frequences +frequented +frequenter +frequently +frescoings +frescoists +fresheners +freshening +fresherdom +freshwater +friability +friarbirds +fricandeau +fricasseed +fricassees +fricatives +frictional +friendless +friendlier +friendlies +friendlily +friendship +frigatoons +frightened +frightener +frightsome +Frigidaire +frigidness +frigorific +frikkadels +frilliness +fringeless +fringillid +fripperers +fripperies +friskiness +friskingly +frithborhs +frithsoken +frithstool +fritillary +fritterers +frittering +frivolling +frizzliest +Froebelian +Froebelism +frogfishes +froggeries +frogmouths +frolickers +frolicking +frolicsome +fromenties +frontagers +frontwards +frostbites +frostbound +frostiness +frostworks +frothiness +frowningly +frowstiest +fructified +fructifies +fructuated +fructuates +frugalists +fruitarian +fruiterers +fruiteress +fruiteries +fruitfully +fruitiness +fruitwoods +frumenties +frumpiness +frumpishly +frustrated +frustrates +frutescent +fugitation +fugitively +fulfillers +fulfilling +fulfilment +fulgurated +fulgurates +fuliginous +fullerenes +fulminants +fulminated +fulminates +fulmineous +fumatories +fumatorium +fumblingly +fumigating +fumigation +fumigators +fumigatory +fumitories +fumosities +functional +functioned +fundaments +funereally +fungicidal +fungicides +funiculars +funiculate +funnelling +furbelowed +furbishers +furbishing +furcations +furloughed +furmenties +furnishers +furnishing +furrieries +furtherers +furthering +furuncular +fusibility +fusillades +fusionists +fusionless +fustanella +fustianise +fustianist +fustianize +fustigated +fustigates +futilities +futureless +futuristic +futurities +futurition +futurology diff --git a/com/agnibho/code/anagram/dictionary/F11.txt b/com/agnibho/code/anagram/dictionary/F11.txt new file mode 100644 index 0000000..bf36f32 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F11.txt @@ -0,0 +1,554 @@ +fabricating +fabrication +fabricative +fabricators +facetiously +faceworkers +facilitated +facilitates +facilitator +facsimiling +facsimilist +factionists +factorising +factorizing +factorships +factualness +facultative +faddishness +fain�antise +fairgrounds +faithlessly +faithworthy +fallaleries +fallalishly +fallibilism +fallibilist +fallibility +falsifiable +Falstaffian +falteringly +familiarise +familiarity +familiarize +fanatically +fanaticised +fanaticises +fanaticisms +fanaticized +fanaticizes +fancymonger +fanfaronade +fantasising +fantasizing +fantastical +fantastries +farawayness +farcicality +farinaceous +farmeresses +Farnborough +farraginous +farthermore +farthermost +farthingale +fasciations +fasciculate +fascinating +fascination +fascinators +fashionable +fashionably +fashionists +fastigiated +fatefulness +fatherlands +fathometers +fatidically +fatiguingly +fatuousness +faultlessly +fauxbourdon +favoredness +favouritism +fawningness +fazendeiros +fearfulness +feasibility +featherbeds +featherings +featherless +featureless +febricities +febrilities +fecundating +fecundation +fecundities +federalised +federalises +federalists +federalized +federalizes +federations +feelingless +Fehmgericht +feignedness +feldspathic +felicitated +felicitates +fellmongers +fellowships +feloniously +felspathoid +femininisms +fenestellas +fenestrated +fermentable +fernitickle +ferntickled +ferntickles +fernytickle +ferociously +ferriferous +ferrochrome +ferrography +ferronickel +ferroni�res +ferronni�re +ferruginous +fertilisers +fertilising +fertilizers +fertilizing +ferulaceous +festilogies +festinately +festinating +festination +festiveness +festivities +festologies +festschrift +fetichising +fetichistic +fetichizing +fetishising +fetishistic +fetishizing +fetterlocks +feudalising +feudalistic +feudalizing +feudatories +feuilletons +fian�ailles +fiberboards +fiberscopes +fibreboards +fibrescopes +fibrillated +fibrillates +fibrinogens +fibroblasts +fibrocement +fictionally +fictionists +fiddleheads +fiddlestick +fiddlewoods +fidgetiness +fiduciaries +fieldpieces +fieldstones +fieldworker +fifteenthly +figurations +figureheads +filamentary +filamentous +filibusters +filmography +filmsetting +filtrations +fimbriating +fimbriation +financially +fingerboard +fingerbowls +fingerglass +fingerguard +fingerholds +fingerholes +fingerlings +fingermarks +fingernails +fingerplate +fingerposts +fingerprint +fingerstall +finicalness +firebombing +firelighter +fireproofed +firmamental +fishburgers +fishmongers +fissilities +fissionable +fissiparism +fissiparity +fissiparous +Fitzherbert +Fitzwilliam +fivefingers +flabbergast +flaccidness +flagellants +flagellated +flagellates +flagellator +flagitating +flagitation +flagrancies +flamboyance +flamboyancy +flamboyante +flamboyants +flammulated +flanconades +flannelette +flannelling +flapperhood +flashlights +flashpoints +flatulently +flaunchings +flauntingly +flavourings +flavourless +flavoursome +fledgelings +fleechments +fleshliness +flexibility +flexography +flichtering +flickertail +flightiness +flinchingly +flindersias +flintifying +Flintstones +flirtations +flirtatious +floatations +flocculated +flocculates +flocculence +floodlights +floodwaters +floorboards +floorcloths +floorwalker +florentines +florescence +floribundas +floriferous +florilegium +floundering +flourishing +floweriness +flowingness +fluctuating +fluctuation +flugelhorns +fluidifying +fluorescein +fluorescent +fluorescing +fluoridated +fluoridates +fluoridised +fluoridises +fluoridized +fluoridizes +fluorimeter +fluorinated +fluorinates +fluorometer +fluoroscope +fluoroscopy +flusterment +fluvialists +fluxionists +flycatchers +flypitchers +fogramities +folklorists +folliculose +folliculous +fomentation +fontanelles +foolhardier +foolhardily +foolishness +footballene +footballers +footballing +footballist +footbreadth +footbridges +footfaulted +footslogged +footslogger +footstooled +foppishness +foraminated +foraminifer +forbearance +forbiddance +forbiddenly +forbiddings +forcibility +forcipation +forebodings +forecasters +forecasting +forecastles +foreclosing +foreclosure +forecourses +foredooming +forefathers +forefeeling +forefingers +foregathers +foregrounds +forehenting +foreignness +forejudging +foreknowing +foremastman +foremastmen +foreordains +forepayment +foreplanned +forepointed +forequarter +forereached +forereaches +forereading +forerunners +forerunning +foreseeable +foreshadows +foreshorten +foreshowing +foresighted +forestalled +forestaller +forestation +foretasting +foretellers +foretelling +forethinker +forethought +foretokened +foretopmast +forevermore +forevouched +forewarning +forfeitable +forfeitures +forficulate +forfoughten +forgathered +forgetfully +forgettable +forgettings +forgiveness +forgivingly +forlornness +formalising +formalistic +formalities +formalizing +formational +formicaries +formicarium +formication +formularies +formularise +formularize +formulating +formulation +formulators +formulising +formulizing +fornicating +fornication +fornicators +forspeaking +forspending +forswearing +fortepianos +forthcoming +forthgoings +fortifiable +fortissimos +fortnightly +fortuitists +fortunately +fortuneless +forwardings +forwardness +fossilising +fossilizing +fosterlings +fothergilla +foundations +foundresses +fourchettes +fourpennies +fourteeners +fourteenths +foxtrotting +fractionary +fractionate +fractionise +fractionize +fractionlet +fractiously +fragileness +fragmentary +fragmenting +fragrancies +franchisees +franchisers +franchising +Franciscans +francomania +francophile +francophils +francophobe +francophone +frangipanes +frangipanis +frankfurter +franklinite +frantically +franticness +fraternally +fraternised +fraterniser +fraternises +fraternized +fraternizer +fraternizes +fratricidal +fratricides +fraudulence +fraudulency +Fredericton +freebooters +freebootery +freebooting +freeholders +freelancers +freelancing +freeloaders +freeloading +freemartins +freemasonic +freemasonry +freestylers +freewheeled +freightages +fremescence +Frenchiness +Frenchwoman +frenchwomen +frequencies +frequenters +frequentest +frequenting +Frescobaldi +fretfulness +friableness +fricandeaux +friendliest +friendships +frighteners +frightening +frightfully +Frigidaires +frigidarium +frigorifico +fringilline +friponnerie +frithsokens +frithstools +frivolities +frivolously +frogmarched +frogmarches +frondescent +frontlessly +frontolysis +frostbitten +frowardness +frowstiness +fructifying +fructuaries +fructuating +fructuation +frugalities +frugiferous +frugivorous +fruitarians +fruitlessly +frustrating +frustration +fugitations +fulfillings +fulfillment +fulfilments +fulgurating +fulguration +fulminating +fulmination +fulminatory +fulsomeness +Fumariaceae +fumatoriums +fumigations +funambulate +funambulist +functionary +functionate +functioning +fundamental +fungistatic +furbelowing +furciferous +furiousness +furloughing +furnishings +furnishment +furtherance +furthermore +furthermost +furthersome +furtiveness +Furtw�ngler +furunculous +fustanellas +fustianised +fustianises +fustianists +fustianized +fustianizes +fustigating +fustigation +fustilarian +futuritions diff --git a/com/agnibho/code/anagram/dictionary/F12.txt b/com/agnibho/code/anagram/dictionary/F12.txt new file mode 100644 index 0000000..001f7a3 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F12.txt @@ -0,0 +1,319 @@ +fabrications +fabulousness +facilitating +facilitation +facilitative +facilitators +facsimileing +facsimilists +factionalism +factionalist +factionaries +factiousness +factitiously +factualities +faintishness +fairnitickle +fairnytickle +faithfulness +fallaciously +fallibilists +fallibleness +familiarised +familiarises +familiarized +familiarizes +fanaticising +fanaticizing +fancifulness +fanfaronaded +fanfaronades +fantasticate +fantasticism +fantasticoes +faradisation +faradization +farmsteading +farthingales +farthingland +farthingless +fasciculated +fascinations +fashiousness +fastidiously +fatherliness +fauxbourdons +favouredness +fearlessness +feasibleness +featheriness +febrifacient +Febronianism +fecklessness +federalising +federalizing +Fehmgerichte +feldspathoid +felicitating +felicitation +felicitously +felspathoids +feminineness +feminisation +feminization +fenestration +Ferlinghetti +fermentation +fermentative +fernitickles +fernytickles +ferricyanide +ferrocyanide +ferronni�res +ferrugineous +festinations +festschrifts +Feuchtwanger +feverishness +fianchettoed +fianchettoes +fibrillating +fibrillation +fibrinolysin +fibroblastic +fictionalise +fictionalize +fictitiously +fiddlesticks +fieldworkers +fiendishness +figurability +figuratively +filibustered +filibusterer +filtrability +fimbriations +finalisation +finalization +financialist +fingerboards +fingerguards +fingerplates +fingerprints +fingerstalls +finicalities +firelighters +fireproofing +fissicostate +fissilingual +fissirostral +Fitzcarraldo +flabbergasts +flabellation +flabelliform +flagellating +flagellation +flagellators +flagellatory +flagelliform +flagitations +flagitiously +flamboyantes +flamboyantly +flamethrower +flammability +flammiferous +flammulation +flannelboard +flannelgraph +flatteringly +flawlessness +fleetingness +flexibleness +flickeringly +flippantness +flocculating +flocculation +floodlighted +floorwalkers +florescences +floriculture +fluctuations +fluidisation +fluidization +fluorescence +fluoridating +fluoridation +fluoridising +fluoridizing +fluorimeters +fluorimetric +fluorinating +fluorination +fluorocarbon +fluorochrome +fluorometers +fluorometric +fluoroscopes +fluoroscopic +flusterments +focalisation +focalization +folliculated +fomentations +fonticuluses +fontinalises +foolhardiest +footballists +footbreadths +footfaulting +footplateman +footplatemen +footsloggers +footslogging +Foraminifera +foraminifers +forbearingly +forbiddances +forbiddingly +forcefulness +forcibleness +forebodement +forebodingly +forecarriage +foreclosable +foreclosures +foregathered +foregoneness +forejudgment +foreknowable +forensically +foreordained +forepayments +foreplanning +forepointing +forequarters +forereaching +forereadings +foreseeingly +foreshadowed +foreshortens +foresightful +forespeaking +forespending +forestallers +forestalling +forestalment +forestations +forethinkers +forethinking +forethoughts +foretokening +foretopmasts +forewarnings +forgathering +forgettingly +formaldehyde +formications +formlessness +formularised +formularises +formularized +formularizes +formulations +fornications +fornicatress +forsakenness +forswornness +fortepianist +forthrightly +fortuitously +fothergillas +Fotheringhay +foundational +foundationer +fountainless +fourfoldness +Fourieristic +fourteenthly +fowlingpiece +fractionally +fractionated +fractionates +fractionator +fractionised +fractionises +fractionized +fractionizes +fractionlets +fractography +fragrantness +francophiles +francophobes +Francophobia +francophones +frangibility +frankalmoign +Frankenstein +frankfurters +frankincense +fraternisers +fraternising +fraternities +fraternizers +fraternizing +fraudulently +Frauendienst +freakishness +freebootings +freeloadings +freewheeling +freightliner +frenetically +frequentness +freshmanship +fricasseeing +frictionless +friendliness +frigorificos +Fringillidae +fritillaries +frogmarching +frolicsomely +frondescence +frondiferous +frontiersman +frontiersmen +frontispiece +fructiferous +fructivorous +fructuations +fruiteresses +fruitfulness +frumentation +frumpishness +frustrations +fugitiveness +fulfillments +fulgurations +fuliginosity +fuliginously +fulminations +funambulated +funambulates +funambulator +funambulists +functionally +functionated +functionates +functionless +fundamentals +furfuraceous +furnishments +furtherances +furunculosis +fustianising +fustianizing +fustigations +futilitarian +futurologist diff --git a/com/agnibho/code/anagram/dictionary/F13.txt b/com/agnibho/code/anagram/dictionary/F13.txt new file mode 100644 index 0000000..f766c43 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F13.txt @@ -0,0 +1,173 @@ +facetiousness +factionalists +factorability +factorisation +factorization +facultatively +fairnitickles +fairnytickles +faithlessness +falsification +familiarising +familiarities +familiarizing +fanfaronading +fantastically +fantasticated +fantasticates +faradisations +faradizations +farthinglands +fasciculation +fascinatingly +fatigableness +faultlessness +favorableness +featherbedded +feldspathoids +felicitations +feloniousness +fenestrations +fermentations +fermentitious +ferociousness +ferricyanogen +ferrimagnetic +ferrochromium +ferroconcrete +ferrocyanogen +ferroelectric +ferromagnetic +ferrosoferric +fertilisation +fertilization +festschriften +feudalisation +feudalization +feuilletonism +feuilletonist +fianchettoing +fibrillations +fibrovascular +fictionalised +fictionalises +fictionalized +fictionalizes +filibusterers +filibustering +filibusterism +filibusterous +filipendulous +filmographies +filterability +financialists +fingerglasses +fingerlickin' +fingerprinted +fissiparously +flabbergasted +flabellations +flagellantism +flagellations +flagellomania +flamethrowers +Flammenwerfer +flammulations +flannelboards +flannelgraphs +flirtatiously +floccillation +floodlighting +floricultural +floristically +flourishingly +flugelhornist +fluidisations +fluidizations +fluorocarbons +fluvioglacial +fonctionnaire +Fontainebleau +foolhardiness +foraminiferal +forebodements +forefeelingly +foregathering +forejudgement +forejudgments +foreknowingly +foreknowledge +forementioned +forensicality +foreordaining +foreshadowing +foreshortened +foresightless +forestallings +forestalments +foretokenings +forgetfulness +forgivingness +forgottenness +formalisation +formalization +formidability +formularising +formularistic +formularizing +fortepianists +fortification +fortississimo +fortitudinous +fortnightlies +fortunateness +fossiliferous +fossilisation +fossilization +foundationers +fowlingpieces +fractionalise +fractionalism +fractionalist +fractionalize +fractionating +fractionation +fractionators +fractionising +fractionizing +fractiousness +fragmentarily +fragmentation +franchisement +Frankeniaceae +Frankensteins +Frederiksberg +freightliners +frequentation +frequentative +freshmanships +frighteningly +frightfulness +fringilliform +frivolousness +frontispieces +frontogenesis +fruitlessness +frumentaceous +frumentarious +frustratingly +fugaciousness +funambulating +funambulation +funambulators +funambulatory +functionalism +functionalist +functionality +functionaries +functionating +fundamentally +furaciousness +futilitarians +futurological +futurologists diff --git a/com/agnibho/code/anagram/dictionary/F14.txt b/com/agnibho/code/anagram/dictionary/F14.txt new file mode 100644 index 0000000..68b9660 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F14.txt @@ -0,0 +1,91 @@ +facinorousness +factitiousness +factorisations +factorizations +fallaciousness +falsifiability +falsifications +fantasticality +fantasticating +fantastication +farsightedness +farthingsworth +fashionmonging +fastidiousness +fatalistically +fatherlessness +fatiguableness +favourableness +featherbedding +featherbrained +federalisation +federalization +fermentability +fermentescible +ferrimagnetism +ferromagnesian +ferromagnetism +ferroprussiate +fertilisations +fertilizations +feuilletonists +fibrocartilage +fictionalising +fictionalizing +figurativeness +filibusterings +filiopietistic +fingerprinting +Finlandisation +Finlandization +flabbergasting +flagelliferous +flagellomaniac +flagitiousness +floriculturist +flugelhornists +fonctionnaires +footplatewoman +footplatewomen +foraminiferous +forbiddingness +forejudgements +foreordination +foreseeability +foreshadowings +foreshortening +forethoughtful +forisfamiliate +formalisations +formalizations +formidableness +fornicatresses +forthrightness +fortifications +fortississimos +fortuitousness +fossilisations +fossilizations +fractionalised +fractionalises +fractionalists +fractionalized +fractionalizes +fractionations +fragmentations +franchisements +fraternisation +fraternization +freehandedness +frequentations +friendlessness +fringillaceous +frolicsomeness +frontierswoman +frontierswomen +fructification +functionalists +fundamentalism +fundamentalist +fundamentality +furfuraldehyde diff --git a/com/agnibho/code/anagram/dictionary/F15.txt b/com/agnibho/code/anagram/dictionary/F15.txt new file mode 100644 index 0000000..24478d7 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F15.txt @@ -0,0 +1,31 @@ +faithworthiness +familiarisation +familiarization +fantasticalness +farthingsworths +fashionableness +federalisations +federalizations +ferroprussiates +fissiparousness +flagellomaniacs +flibbertigibbet +flirtatiousness +floriculturists +foreordinations +foreshortenings +foresightedness +forisfamiliated +forisfamiliates +formularisation +formularization +fractionalising +fractionalizing +fractionisation +fractionization +fragmentariness +fraternisations +fraternizations +Frenchification +fructifications +fundamentalists diff --git a/com/agnibho/code/anagram/dictionary/F16.txt b/com/agnibho/code/anagram/dictionary/F16.txt new file mode 100644 index 0000000..454492b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F16.txt @@ -0,0 +1,7 @@ +fermentativeness +ferroelectricity +fictionalisation +fictionalization +flibbertigibbets +forisfamiliating +forisfamiliation diff --git a/com/agnibho/code/anagram/dictionary/F17.txt b/com/agnibho/code/anagram/dictionary/F17.txt new file mode 100644 index 0000000..9bcbe72 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F17.txt @@ -0,0 +1,4 @@ +fictionalisations +fictionalizations +fractionalisation +fractionalization diff --git a/com/agnibho/code/anagram/dictionary/F2.txt b/com/agnibho/code/anagram/dictionary/F2.txt new file mode 100644 index 0000000..f7422bc --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F2.txt @@ -0,0 +1,2 @@ +fa +fy diff --git a/com/agnibho/code/anagram/dictionary/F29.txt b/com/agnibho/code/anagram/dictionary/F29.txt new file mode 100644 index 0000000..04499bb --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F29.txt @@ -0,0 +1 @@ +floccinaucinihilipilification diff --git a/com/agnibho/code/anagram/dictionary/F3.txt b/com/agnibho/code/anagram/dictionary/F3.txt new file mode 100644 index 0000000..395e05d --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F3.txt @@ -0,0 +1,52 @@ +fab +fad +fag +fah +fan +far +fas +fat +faw +fax +fay +fed +fee +fen +fet +feu +few +fey +fez +fib +fid +fie +fig +fil +fin +fir +fit +fix +fiz +Flo +flu +fly +fob +foe +fog +foh +fon +fop +for +fou +fox +foy +fra +fro +fry +fub +fud +fug +fum +fun +fur +fys diff --git a/com/agnibho/code/anagram/dictionary/F4.txt b/com/agnibho/code/anagram/dictionary/F4.txt new file mode 100644 index 0000000..99c6e3e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F4.txt @@ -0,0 +1,216 @@ +face +fact +fade +fado +fads +fady +faff +fags +fahs +fail +fain +fair +fake +Falk +fall +falx +fame +fand +fane +fang +fans +fard +fare +farl +farm +faro +fash +fast +fate +fats +faun +faux +fave +fawn +faws +Faye +fays +faze +feal +fear +feat +feck +feds +feed +feel +feer +fees +feet +fegs +Fehm +feis +fell +felt +feme +fend +feni +fens +fent +feod +fere +ferm +fern +fess +fest +feta +f�te +feud +feus +fiar +fiat +fibs +fico +fide +Fido +fids +fief +fies +fife +figo +figs +Fiji +file +fill +film +filo +fils +find +fine +fini +fink +Finn +fino +fins +fire +firm +firn +firs +fisc +fish +fisk +fist +fits +fitt +five +fizz +flab +flag +flak +flam +flan +flap +flat +flaw +flax +flay +flea +fled +flee +flew +flex +fley +flic +flip +flit +flix +floe +flog +flop +flor +flow +flub +flue +flus +flux +foal +foam +fobs +Foch +foci +foes +Fogg +fogs +fogy +f�hn +fohs +foid +foil +foin +fold +folk +fond +fone +font +food +fool +foot +fops +fora +forb +ford +fore +fork +form +fort +foss +foud +foul +four +fowl +Foxe +foxy +foys +fozy +frae +frag +frap +frat +frau +fray +Fred +free +fret +Frey +fris +frit +friz +froe +frog +from +frow +fubs +fuci +fuds +fuel +fugs +Fuji +Fula +full +fume +fums +fumy +fund +fung +funk +funs +furl +furs +fury +fusc +fuse +fuss +fust +fuze +fuzz +fyke +fyrd diff --git a/com/agnibho/code/anagram/dictionary/F5.txt b/com/agnibho/code/anagram/dictionary/F5.txt new file mode 100644 index 0000000..becd266 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F5.txt @@ -0,0 +1,498 @@ +fable +faced +facer +faces +facet +facia +facts +faddy +faded +fader +fades +fadge +fados +faery +faffs +Fagin +fagot +Fagus +fails +fains +faint +fairs +fairy +faith +faked +faker +fakes +fakir +falaj +Faldo +Falla +falls +false +famed +fames +fanal +fancy +fanes +fango +fangs +fanny +fanon +Fanti +faqir +farad +farce +farci +farcy +fards +fared +fares +Fargo +Farid +farle +farls +farms +farse +Farsi +Faruq +fasci +fasti +fasts +fatal +fated +fates +fatly +fatty +fatwa +faugh +fault +fauna +fauns +faurd +Faur� +Faust +Fauve +favel +favor +favus +fawns +faxed +faxes +fayed +fayre +fazed +fazes +feals +feare +fears +feast +feats +fecal +feces +fecht +fecit +fecks +feeds +feels +feers +feeze +Fehme +feign +feint +felid +Felis +Felix +fella +fells +felly +felon +felts +felty +femes +femme +femur +fence +fends +fendy +fenks +fenny +fents +feods +feoff +feral +feres +ferly +fermi +ferms +ferns +ferny +ferry +fesse +festa +Feste +fests +fetal +fetas +fetch +feted +f�tes +fetid +fetor +fetta +fetus +fetwa +feuar +feuds +fever +fewer +feyer +fezes +Ffion +fiars +fiats +fiber +fibre +fibro +fiche +fichu +ficos +ficus +fidge +fiefs +field +fiend +fient +fiere +fiery +fifed +fifer +fifes +fifth +fifty +fight +figos +filar +filch +filed +filer +files +filet +fille +fills +filly +films +filmy +filth +final +finch +finds +fined +finer +fines +finis +finks +Finns +finny +finos +Finzi +Fiona +fiord +fired +firer +fires +firms +firns +firry +first +firth +fiscs +fishy +fisks +fists +fisty +fitch +fitly +fitte +fitts +fiver +fives +fixed +fixer +fixes +fizzy +fjord +flabs +flack +flags +flail +flair +flake +flaks +flaky +flame +flams +flamy +flank +flans +flaps +flare +flary +flash +flask +flats +flawn +flaws +flawy +flaxy +flays +fleam +fleas +fleck +fleer +flees +fleet +fleme +flesh +Fleur +flews +fleys +flick +flics +flier +flies +flimp +fling +flint +flips +flirt +flisk +flite +flits +float +flock +floes +flogs +flong +flood +floor +flops +flora +flory +flosh +floss +flota +flote +flour +flout +flown +flows +Floyd +flubs +fluer +flues +fluey +fluff +fluid +fluke +fluky +flume +flump +flung +flunk +Fluon +fluor +flush +flute +fluty +flyer +Flymo +Flynn +flype +flyte +foals +foams +foamy +focal +focus +foehn +fogey +foggy +fogle +f�hns +foils +foins +foist +folds +folia +folie +folio +folks +folky +folly +fomes +fonda +fonds +fonly +fonts +foods +foody +fools +foots +footy +foray +forbs +forby +force +fordo +fords +forel +fores +forge +forgo +forks +forky +Forli +forme +forms +forte +forth +forts +forty +forum +fossa +fosse +fouds +foul� +fouls +found +fount +fours +fouth +fovea +Fowey +fowls +foxed +foxes +foyer +Foyle +fract +frags +frail +frame +franc +frank +Franz +fraps +frass +frate +frati +frats +fraud +fraus +Frayn +frays +freak +Freda +freed +freer +frees +freet +freit +fremd +frena +Freon +fr�re +fresh +frets +Freud +Freya +Freyr +friar +fried +frier +fries +frill +Friml +Frink +frisk +frist +frith +frits +Fritz +frize +frizz +frock +Frodo +froes +frogs +Frome +frond +front +frore +frorn +frory +frost +froth +frown +frows +frowy +froze +fruit +frump +frust +fryer +fubby +fubsy +Fuchs +fucus +fudge +fuels +fuero +fugal +fuggy +fugie +fugle +fugue +Fulah +Fulas +fulls +fully +fumed +fumes +fumet +fundi +funds +fundy +fungi +fungs +funks +funky +funny +fural +furan +furby +furls +furol +furor +furry +furth +furze +furzy +fused +fusee +fuses +fusil +fussy +fusts +fusty +Fusus +futon +fuzee +fuzes +fuzzy +fykes +Fylde +fyrds +fytte diff --git a/com/agnibho/code/anagram/dictionary/F6.txt b/com/agnibho/code/anagram/dictionary/F6.txt new file mode 100644 index 0000000..d75037e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F6.txt @@ -0,0 +1,813 @@ +fa'ard +Fabian +Fabius +fabled +fabler +fables +Fablon +fabric +facade +facers +facete +facets +facial +facias +facies +facile +facing +factis +factor +factum +facula +faders +fadeur +fadged +fadges +fading +faecal +faeces +faerie +faffed +Fafnir +fagged +faggot +Fagins +fagots +faible +faikes +failed +faille +fained +fainer +fainly +faints +fainty +faired +fairer +fairly +Faisal +faiths +faitor +fajita +fakers +fakery +faking +fakirs +falces +falcon +fallal +fallen +faller +fallow +falser +falsie +falter +family +famine +faming +famish +famous +fanals +fandom +fanged +Fangio +fangle +fangos +fanion +fankle +fanned +fannel +fanner +fanons +fantad +Fantee +fantod +fantom +faqirs +faquir +farads +farand +farced +farces +farcin +farded +fardel +Fareed +farfet +Farida +farina +faring +farles +farmed +farmer +Faroes +Farouk +farrow +farsed +farses +fasces +fascia +fascio +fashed +fashes +fasted +fasten +faster +fastly +father +fathom +Fatima +fatsia +fatted +fatten +fatter +fatwah +fatwas +faucal +fauces +faucet +faughs +faults +faulty +faunae +faunal +faunas +Faunus +fautor +Fauves +favela +favism +favors +favose +favour +favous +Fawkes +Fawley +Fawlty +fawned +fawner +faxing +faying +fayres +Faysal +fazing +feague +fealed +fealty +feared +feares +feasts +featly +fechts +fecial +feckly +fecula +fecund +fedora +feeble +feebly +feeder +feeing +feeler +feezed +feezes +fegary +Fehmic +feigns +Feijoa +feints +feisty +Felice +feline +fellah +fellas +felled +feller +felloe +fellow +felons +felony +felsic +felted +felter +female +femmes +femora +femurs +fenced +fencer +fences +fended +fender +Fenian +fenman +fenmen +fennec +fennel +Fenrir +Fenris +feodal +feoffs +Fergie +Fergus +ferial +ferine +ferity +Fermat +fermis +ferrel +ferret +ferric +Ferris +ferula +ferule +fervid +fervor +fescue +fesses +festal +fester +fetial +fetich +feting +fetish +fettas +fetter +Fettes +fettle +fetwas +feuars +feudal +feuded +fevers +fewest +fewmet +fewter +feyest +fezzed +fezzes +fiacre +fianc� +Fianna +fiasco +fiated +fiaunt +fibbed +fibber +fibers +fibred +fibres +fibril +fibrin +fibros +fibula +fiches +fichus +fickle +fictor +fiddle +fiddly +fidged +fidges +fidget +fields +fiends +fierce +fieres +fiesta +fifers +fifing +Fifish +fifths +Figaro +figged +fights +figure +Fijian +filers +filfot +filial +filing +filled +filler +filles +fillet +fillip +filmed +filmic +filose +filter +filthy +fimble +finale +finals +Finbar +finder +finely +finers +finery +finest +Fingal +fingan +finger +finial +fining +finish +finite +finjan +finked +Finlay +Finley +finnac +finnan +finned +finner +Finney +Finnic +Finola +finsko +fiords +fiorin +fipple +firers +firing +firkin +firlot +firman +firmed +firmer +firmly +firsts +firths +fiscal +fisgig +fished +fisher +fishes +fisted +fistic +fitch� +fitchy +fitful +fitted +fitter +fittes +fivers +fixate +fixers +fixing +fixity +fixive +fixure +fizgig +fizzed +fizzer +fizzes +fizzle +fjords +flabby +flacks +flacon +flaggy +flagon +flails +flairs +flaked +flakes +flamb� +flamed +flamen +flames +flanch +flange +flanks +flappy +flared +flares +flaser +flashy +flasks +flatly +flatus +flaunt +Flavia +flavin +flavor +flawed +flawns +flaxen +flaxes +flayed +flayer +fleadh +fleams +fl�che +flecks +fledge +fledgy +fleece +fleech +fleecy +fleers +fleets +flemes +flench +flense +fleshy +fletch +fleury +flewed +flexed +flexes +flexor +fleyed +Flicka +flicks +fliers +fliest +flight +flimps +flimsy +flinch +flings +flints +flinty +flirts +flirty +flisks +flisky +flitch +flited +flites +flixes +floats +floaty +flocci +flocks +flongs +floods +floors +floosy +floozy +floppy +Flopsy +florae +floral +floras +Flores +floret +Florey +florid +florin +flossy +flotas +flotel +Flotow +flours +floury +flouts +flowed +flower +fluate +fluent +fluffs +fluffy +flugel +fluids +fluked +flukes +flukey +flumes +flumps +flunks +flunky +flurry +flushy +fluted +fluter +flutes +fluxed +fluxes +flyers +flying +Flymos +flyped +flypes +Flysch +flyted +flytes +flyway +foaled +foamed +fobbed +fodder +foehns +foeman +foemen +foetal +foetid +foetor +foetus +fogash +fogeys +fogged +fogger +Foggia +fogies +fogles +fogman +fogmen +fogram +foible +foiled +foined +foison +foists +Fokine +Fokker +folate +folded +folder +foliar +folios +folium +folkie +folksy +follow +foment +fondas +fonded +fonder +fondle +fondly +fondue +fontal +foodie +fooled +footed +footer +footie +footle +foozle +forage +forane +forays +forbad +forbid +forbye +for�at +forced +forcer +forces +forded +fordid +foreby +forego +forels +forest +Forfar +forfex +forgat +forged +forger +forges +forget +forgot +forint +forked +forker +formal +Forman +format +Formby +formed +former +formes +formic +formol +Fornax +fornix +forpet +forpit +forrad +forrit +forsay +forted +fortes +forthy +fortis +forums +forwhy +fossae +fossas +fossed +fosses +fossil +fossor +foster +fother +fought +fouled +fouler +foully +founds +founts +fourth +foussa +fousty +fouter +foutre +foveae +foveal +fowled +fowler +Fowles +foxier +foxily +foxing +foyers +fozier +fracas +fracts +fraena +fragor +frails +fraise +framed +framer +frames +France +Franck +Franco +francs +franks +franzy +frapp� +Fraser +fratch +frater +fratry +frauds +Frauen +frayed +Frazer +frazil +freaks +freaky +Freddy +freely +freers +freest +freets +freety +freeze +freits +freity +fremds +french +frenne +frenum +frenzy +fr�res +fresco +Fresno +fretty +Freyja +friand +friars +friary +Friday +fridge +Frieda +friend +friers +frieze +Frigga +fright +frigid +frijol +frills +frilly +fringe +fringy +fripon +Frisch +fris�e +frises +friska +frisks +frisky +friths +frivol +frizes +frizzy +frocks +froggy +froise +frolic +Fronde +fronds +fronts +frosts +frosty +froths +frothy +frowns +frowst +frowsy +frowzy +frozen +frugal +fruits +fruity +frumps +frumpy +frusta +frusts +frutex +fryers +frying +fubbed +fucoid +fuddle +fudged +fudges +fueros +Fugard +fugato +fugged +fugies +fugled +fugles +fugues +F�hrer +Fulahs +Fulani +fulcra +fulfil +fulgid +fulgor +fulham +fullam +fullan +fulled +fuller +fulmar +fulvid +fumado +fumage +fumble +fumets +fumier +fuming +fumous +funded +funder +fundie +fundus +funest +fungal +fungus +funked +funkia +funned +funnel +furane +furans +furcal +fureur +furfur +furies +furled +furole +furore +furors +furphy +furred +furrow +fusain +fusees +Fuseli +Fushun +fusile +fusils +fusing +fusion +fussed +fusser +fusses +fusted +fustet +fustic +fustoc +futile +futons +future +fuzees +Fuzhou +fuzzed +fuzzes +fylfot +fynbos +Fyodor +fyttes diff --git a/com/agnibho/code/anagram/dictionary/F7.txt b/com/agnibho/code/anagram/dictionary/F7.txt new file mode 100644 index 0000000..7ac66bc --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F7.txt @@ -0,0 +1,1125 @@ +Faberg� +Fabians +fablers +fabliau +fabling +fabrics +fabular +facades +faceman +facemen +faceted +facials +facings +fa�onn� +factice +faction +factive +factoid +factors +factory +factual +factums +facture +faculae +facular +faculas +faculty +fadable +fadaise +faddier +faddish +faddism +faddist +fadedly +fadging +fadings +faeries +Faeroes +faffing +faggery +fagging +faggots +fagoted +fagotti +fagotto +fahlerz +fahlore +faibles +fa�ence +failing +failure +fainest +faining +fainted +fainter +faintly +fairest +Fairfax +fairies +fairily +fairing +fairish +fairway +faitors +faitour +fajitas +falafel +Falange +Falasha +falbala +falcade +falcate +falcons +falcula +faldage +Falkirk +fallacy +fallals +fallers +falling +fallows +falsely +falsest +falsies +falsify +falsish +falsism +falsity +falters +famille +famines +famulus +fanatic +fancied +fancier +fancies +fancily +fanfare +fanfold +fangled +fanions +fankled +fankles +fannell +fannels +fanners +fannies +fanning +fantads +fantail +fantasm +fantast +fantasy +fanteeg +fantods +fantoms +fanwise +fanzine +faquirs +faraday +faradic +faraway +farceur +farcied +farcify +farcing +fardage +fardels +farding +Fareeda +farinas +farmers +farmery +farming +farmost +farness +Farnham +Faroese +farrago +farrand +Farrell +farrier +farrows +farruca +farsing +farther +fartlek +fascial +fascias +fascine +fascism +fascist +fashery +fashing +fashion +fastens +fasters +fastest +Fastext +fasting +fastish +fatally +fatback +fateful +fathers +fathoms +fatigue +Fatimid +fatless +fatling +fatness +fattens +fattest +fattier +fatties +fatting +fattish +fatuity +fatuous +fatwa'd +fatwahs +faucets +faucial +faulted +faunist +Faustus +fautors +Fauvism +Fauvist +favelas +favored +favorer +favours +favrile +fawners +fawning +fayence +fazenda +feagued +feagues +fealing +fearful +fearing +feasted +feaster +feather +featous +feature +febrile +fechted +fechter +fedarie +fedayee +federal +fedoras +feebler +feedbag +feeders +feeding +feedlot +feelers +feeling +feezing +feigned +feinted +felafel +F�libre +Felicia +Felidae +Felinae +felines +fellahs +fellate +fellers +fellest +fellies +felling +Fellini +felloes +fellows +felonry +felsite +felspar +felters +felting +felucca +felwort +females +femidom +feminal +femoral +fencers +fencing +fenders +fending +Fenella +Fenians +fenland +fennecs +fennels +fennish +feodary +feoffed +feoffee +feoffer +feoffor +ferlied +ferlies +fermata +fermate +ferment +fermion +fermium +fernery +fernier +ferning +ferrara +Ferrari +ferrate +ferrels +ferrets +ferrety +ferried +Ferrier +ferries +ferrite +ferrous +ferrugo +ferrule +fertile +ferulas +ferules +fervent +fervour +fescues +festals +festers +festive +festoon +fetched +fetcher +fetches +fetiche +fetlock +fetters +fettled +fettler +fettles +fetuses +feudary +feuding +feudist +fevered +fewmets +fewness +Feydeau +Feynman +fiacres +fianc�e +fianc�s +fiascos +fiating +fibbers +fibbery +fibbing +fibered +fibrils +fibroid +fibroin +fibroma +fibrose +fibrous +fibster +fibulae +fibular +fibulas +fickler +fictile +fiction +fictive +fiddled +fiddler +fiddles +fiddley +fideism +fideist +Fidelio +fidgets +fidgety +fidging +fidibus +fiefdom +fielded +fielder +fiercer +fierier +fierily +fiestas +fifteen +fifthly +fifties +figgery +figging +fighter +figment +figural +figured +figures +figwort +Fijians +filabeg +filacer +Filaria +filasse +filazer +filbert +filched +filcher +filches +filemot +filfots +filiate +filibeg +Filices +filings +fillers +fillets +fillies +filling +fillips +filmdom +filmier +filming +filmish +filmset +Filofax +filters +fimbles +fimbria +finable +finagle +finales +finally +finance +finback +finched +finches +finders +finding +fineish +finesse +fingans +fingers +finials +finical +finicky +finikin +finings +finises +finjans +finking +Finland +finless +finnack +finnacs +finnans +finners +finnier +Finnish +finnock +finnsko +fiorins +fipples +Firbank +firebox +firebug +firedog +firefly +fireman +firemen +Firenze +firepan +firepot +firings +firkins +firlots +firmans +firmest +firming +firring +firstly +fiscals +Fischer +fisgigs +fishers +fishery +fisheye +fishful +fishgig +fishier +fishify +fishily +fishing +fissile +fission +fissive +fissure +fistful +fisting +fistula +fitch�e +fitches +fitchet +fitchew +fitment +fitness +fitters +fittest +fitting +Fitzroy +fivepin +fixable +fixated +fixates +fixedly +fixings +fixture +fizgigs +fizzers +fizzgig +fizzier +fizzing +fizzled +fizzles +flaccid +flacket +flacons +flagged +flagman +flagmen +flagons +flailed +flakier +flaking +flamens +flamfew +flamier +flaming +flammed +fl�neur +flanged +flanges +flanked +flanker +flannel +flapped +flapper +flaring +flasers +flashed +flasher +flashes +flasket +flatbed +flatcar +flatlet +flatted +flatten +flatter +flattie +flattop +flaught +flaunch +flaunts +flaunty +Flavian +flavine +flavone +flavors +flavour +flawier +flawing +flaxier +Flaxman +flayers +flaying +fl�ches +flecked +flecker +fledged +fledges +fleeced +fleecer +fleeces +fleeing +fleered +fleerer +fleeted +fleeter +fleetly +fleming +Flemish +flensed +flenses +fleshed +flesher +fleshes +fleshly +fletton +fleuret +fleuron +flexile +flexing +flexion +flexors +flexure +fleying +flicked +flicker +flights +flighty +flimped +flinder +flinger +flipped +flipper +flirted +flisked +fliting +flitted +flitter +flivver +floated +floatel +floater +floccus +flocked +Flodden +Floella +flogged +flogger +flokati +flooded +floored +floorer +floosie +floozie +flopped +Flor�al +floreat +florets +Florida +florins +florist +Florrie +floruit +floshes +flosses +Flossie +flotage +flotant +flotels +flotsam +flounce +flouncy +floured +flouted +flouter +flowage +flowers +flowery +flowing +flubbed +fluence +fluency +fluents +fluffed +flugels +fluidal +fluidic +fluidly +flukier +fluking +flummox +flumped +flunked +flunkey +fluoric +flushed +flusher +flushes +fluster +Flustra +fluters +flutier +flutina +fluting +flutist +flutter +fluvial +fluxing +fluxion +fluxive +flyable +flyaway +flyback +flybane +flybelt +flyblow +flyboat +flybook +flyings +flyleaf +flyover +flypast +flyping +flyting +flyways +foaling +foamier +foamily +foaming +fobbing +focally +focused +focuses +fodders +foggage +foggers +foggier +foggily +fogging +foghorn +fogless +fograms +fogydom +fogyish +fogyism +foibles +foiling +foining +foisted +foister +folacin +folders +folding +foliage +foliate +folioed +foliole +foliose +folkies +folkish +folkway +follies +follows +foments +fomites +fondant +fondest +fonding +fondled +fondler +fondles +fondues +Fonteyn +fontlet +foodful +foodies +foodism +foolery +fooling +foolish +footage +footbar +footboy +footier +footing +footled +footles +footman +footmen +footpad +footrot +footsie +footway +foozled +foozler +foozles +fopling +foppery +foppish +foraged +forager +forages +foramen +forayed +forayer +forbade +forbear +forbids +forbode +forbore +for�ats +forceps +forcers +forcing +fording +fordoes +fordone +forearm +forecar +foreday +foregut +foreign +forelay +foreleg +forelie +foreman +foremen +forepaw +foreran +forerun +foresaw +foresay +foresee +forests +foretop +forever +forfair +forfeit +forfend +forgave +forgers +forgery +forgets +forging +forgive +forgoer +forgoes +forgone +forhent +forints +forkers +forkful +forkier +forking +forlana +forlese +forlore +forlorn +formant +formate +formats +formers +Formica +forming +Formosa +formula +fornent +forpets +forpine +forpits +forsake +forslow +forsook +Forster +Forsyte +Forsyth +forties +fortify +forting +fortlet +Fortran +Fortuna +fortune +forward +forwarn +forwent +forworn +forzati +forzato +Fosbury +fossick +fossils +fossors +fossula +fosters +fothers +foudrie +fouett� +fougade +foughty +foulard +foulder +foulest +fouling +foumart +founded +founder +foundry +fourgon +Fourier +fourths +foussas +fouters +foutres +foveate +foveola +foveole +fowlers +fowling +foxfire +foxhole +foxiest +foxings +foxship +foxtrot +Foyle's +foziest +frabbit +fractal +fracted +fraenum +fragged +fragile +fragors +frailer +frailly +frailty +fraised +fraises +Fraktur +framers +framing +Frances +Francis +franion +franked +franker +Frankie +frankly +frantic +frapped +frapp�e +fratchy +fraters +fratery +fraught +fraying +Frazier +frazils +frazzle +freaked +freckle +freckly +Freddie +freebee +freebie +freedom +freeing +freeman +freemen +freesia +freeway +freez'd +freezer +freezes +freight +Frenchy +frenula +frescos +freshed +freshen +fresher +freshes +freshet +freshly +fresnel +fretful +fretsaw +fretted +friable +friande +friarly +fribble +Fridays +fridges +friends +Friesic +friezed +friezes +frigate +frigger +frights +frijole +frilled +fringed +fringes +fripons +fripper +frippet +Frisbee +friseur +frisian +friskas +frisked +frisker +frisket +frisson +frisure +fritted +fritter +friture +frivols +frizzed +frizzes +frizzle +frizzly +frocked +frogbit +frogged +froglet +frogman +frogmen +froises +frolics +fronded +frontal +fronted +fronton +frosted +frothed +froughy +frounce +froward +frowned +frowsts +frowsty +fructed +fruited +fruiter +frustum +frutify +fryings +fubbery +fubbing +fubsier +fuchsia +fucoids +fucused +fucuses +fuddled +fuddler +fuddles +fudging +Fuehrer +fuelled +fueller +fugally +fugatos +fuggier +fugging +fugling +fuguist +F�hrers +Fukuoka +Fulanis +fulcrum +fulfill +fulfils +fulgent +fulgour +fulhams +fullage +fullams +fullans +fullers +fullest +fulling +fullish +fulmars +fulmine +fulness +fulsome +fulvous +fumados +fumages +Fumaria +fumbled +fumbler +fumbles +fumette +fumetti +fumetto +fumiest +funders +fundies +funding +fun�bre +funeral +funfair +fungoid +fungous +funicle +funkias +funkier +funking +funnels +funnier +funnies +funnily +funning +funster +furanes +furbies +furbish +furcate +furcula +furfurs +furioso +furious +furlana +furling +furlong +furmety +furmity +furnace +Furness +furnish +furores +furrier +furring +furrows +furrowy +further +furtive +furzier +fusains +fusarol +fuscous +fusible +fusilli +fusions +fussers +fussier +fussily +fussing +fustets +fustian +fustics +fustier +fustily +fusting +fustocs +futchel +futhark +futhorc +futhork +futtock +futures +fuzzier +fuzzily +fuzzing +fylfots diff --git a/com/agnibho/code/anagram/dictionary/F8.txt b/com/agnibho/code/anagram/dictionary/F8.txt new file mode 100644 index 0000000..33bdea0 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F8.txt @@ -0,0 +1,1280 @@ +fabliaux +fablings +fabulise +fabulist +fabulize +fabulous +faburden +faceless +facetiae +faceting +facially +facilely +facility +fa�onn�s +factions +factious +factoids +factored +factotum +factures +fadaises +faddiest +faddists +fadeless +Faeroese +Fagaceae +faggings +faggoted +fagoting +fahlband +fa�ences +failings +failures +fain�ant +fainites +fainness +faintest +fainting +faintish +fairings +fairness +fairways +fairydom +fairyism +faithful +faitours +fakement +fakirism +falafels +Falashas +falbalas +falcades +falcated +falchion +falconer +falconet +falconry +falculas +faldages +falderal +falderol +faldetta +Falkland +fallfish +fallible +fallibly +fallings +fallowed +Falmouth +falsetto +Falstaff +faltboat +faltered +fameless +familial +familiar +families +familism +Familist +famished +famishes +famously +Fanagalo +fanatics +fanciers +fanciest +fanciful +fancying +fandango +fanfares +fanfaron +fangless +fankling +fanlight +fannells +fannings +fantails +fantasia +fantasms +fantasts +fantigue +fantoosh +fanzines +faradaic +faradays +faradise +faradism +faradize +farceurs +farceuse +farcical +farcings +fardings +farewell +farinose +farmings +farmland +farmyard +farnesol +farouche +Farquhar +farragos +farriers +farriery +farrowed +farthest +farthing +Fasching +fasciate +fascicle +fascines +fasciola +fasciole +Fascismo +Fascista +Fascisti +fascists +fashions +fashious +fastback +fastball +fastened +fastener +fastings +fastness +fastuous +fatalism +fatalist +fatality +fathered +fatherly +fathomed +fatigate +fatigued +fatigues +fatlings +fatstock +fattened +fattener +fattiest +fattrels +faubourg +Faulkner +faultful +faultier +faultily +faulting +faunists +faustian +fauteuil +fauvette +Fauvists +Favonian +favorers +favoring +favorite +favoured +favourer +fawnings +fayalite +fayences +fazendas +fealties +fearless +fearsome +feasible +feasibly +feasters +feastful +feasting +feateous +feathers +feathery +featuous +featured +features +febrific +February +fechters +fechting +feckless +feculent +fedayeen +fedelini +federacy +federals +federate +feeblest +feeblish +feedbags +feedings +feedlots +feelings +feetless +fegaries +feigning +feinting +feistier +felafels +feldgrau +feldsher +feldspar +felicity +felinity +fellable +fellahin +fellated +fellates +fellatio +fellness +fellowly +felonies +felonous +felsitic +felspars +felstone +feltered +feltings +feluccas +felworts +femality +femerall +femidoms +feminine +feminise +feminism +feminist +feminity +feminize +fencible +fencings +fenestra +fenlands +feoffees +feoffers +feoffing +feoffors +feracity +feretory +Ferguson +ferlying +fermatas +ferments +fermions +fernbird +ferniest +fernland +fernshaw +ferocity +Ferranti +ferrates +ferreous +ferreted +ferreter +ferriage +ferrites +ferritic +ferritin +ferrules +ferrying +ferryman +ferrymen +fervency +fervidly +fervidor +fesswise +festally +festered +festival +festoons +fetchers +fetching +fetiches +feticide +fetishes +fetlocks +fettered +fettlers +fettling +feudally +feudings +feudists +feverfew +fevering +feverish +feverous +fewtrils +fianc�es +fiascoes +fibrilla +fibroids +fibromas +fibrosed +fibroses +fibrosis +fibrotic +fibsters +ficklest +fictions +fiddlers +fiddleys +fiddlier +fiddling +fideists +fidelity +fidgeted +fiducial +fiefdoms +fielders +fielding +fiendish +fiercely +fiercest +fieriest +fifteens +fiftieth +fiftyish +fighters +fighting +figments +figuline +figurant +figurate +figurine +figuring +figurist +figworts +filabegs +filacers +filagree +filament +filander +filarial +filatory +filature +filazers +filberts +filchers +filching +filename +filially +filiated +filiates +filibegs +filicide +filiform +filigree +filioque +Filipina +Filipino +filleted +fillibeg +fillings +filliped +Fillmore +filmable +filmgoer +filmiest +filmland +filmsets +filtered +filthier +filthily +filtrate +fimbrias +finagled +finagler +finagles +finalise +finalism +finalist +finality +finalize +financed +finances +finbacks +Finchley +findings +fineable +fineless +fineness +fineries +finessed +finesser +finesses +fingered +finished +finisher +finishes +finitely +finitism +finitude +finnacks +finnesko +finniest +finnocks +finochio +fippence +fireboat +firebomb +firebrat +firebugs +firedamp +firedogs +fireless +firepans +firepots +fireship +fireside +firetrap +firewall +fireweed +firewood +firework +fireworm +firmless +firmness +firmware +firrings +fiscally +fishable +fishball +fishbowl +fishcake +fisheyes +fishgigs +fishiest +fishings +fishpond +fishskin +fishtail +fishwife +fissions +fissiped +fissured +fissures +fistfuls +fistiana +fistical +fistmele +fistulae +fistular +fistulas +fitchets +fitchews +fitfully +fitments +fittings +fivefold +fivepins +fixating +fixation +fixative +fixature +fixtures +fizzgigs +fizziest +fizzings +fizzling +flabbier +flabbily +flackets +flagella +flaggier +flagging +flagpole +flagrant +flagship +Flagstad +flailing +flakiest +flambeau +flamb�ed +flamelet +flamenco +flamfews +flamiest +flamingo +flamming +flammule +flanched +flanches +Flanders +fl�nerie +fl�neurs +flanging +flankers +flanking +flannels +flapjack +flappers +flapping +flashers +flashier +flashily +flashing +Flashman +flaskets +flatback +flatbeds +flatboat +flatcars +flatfish +flathead +flatiron +flatlets +flatling +flatlong +flatmate +flatness +flatpack +flattens +flatters +flattery +flattest +flatties +flatting +flattish +flattops +flatuous +flatuses +flatware +flatways +flatwise +Flaubert +flaughts +flaunted +flaunter +flautist +flavones +flavored +flavours +flawiest +flawless +flaxiest +fleasome +fleawort +fleckers +flecking +flection +fledgier +fledging +fleecers +fleeched +fleeches +fleecier +fleecing +fleerers +fleering +fleetest +fleeting +flenched +flenches +flensing +fleshers +fleshier +fleshing +fletched +fletcher +fletches +flettons +fleurets +fleurons +flexible +flexibly +flexions +Flextime +flexuose +flexuous +flexural +flexures +flexwing +flichter +flickers +flicking +flighted +flimping +flimsier +flimsies +flimsily +flinched +flincher +flinches +flinders +flingers +flinging +flintier +flintify +flintily +flippant +flippers +flipping +flirting +flirtish +flisking +flitches +flittern +flitters +flitting +flivvers +floatage +floatant +floatels +floaters +floatier +floating +floccose +floccule +flocculi +flocking +floggers +flogging +flokatis +flooding +floodlit +floodway +floorers +flooring +floorpan +floosies +floozies +floppier +floppies +floppily +flopping +florally +floreant +florence +floridly +florigen +florists +Florizel +floruits +floscule +flossier +flossing +flotages +flotilla +flounced +flounces +flounder +flourier +flouring +flourish +flouters +flouting +flowages +flowered +flowerer +floweret +flubbing +Fluellen +fluellin +fluently +fluework +fluffier +fluffing +fluidics +fluidify +fluidise +fluidity +fluidize +flukiest +flummery +flumping +flunkeys +flunkies +flunking +fluoride +fluorine +fluorite +flurried +flurries +flushers +flushing +flusters +flustery +flutiest +flutinas +flutings +flutists +flutters +fluttery +fluxions +flybanes +flybelts +flyblows +flyboats +flybooks +flymaker +flyovers +flypaper +flypasts +flypitch +flyspeck +flytings +flywheel +foalfoot +foamiest +foamings +foamless +focaccia +focalise +focalize +focusing +focussed +focusses +foddered +fodderer +foetuses +fogashes +fogbound +fogeydom +fogeyish +fogeyism +foggaged +foggages +foggiest +foghorns +foilings +foisters +foisting +foldable +foldaway +foldboat +folderol +foldings +foliaged +foliages +foliated +foliates +folioing +folioles +folkland +folklore +folkmoot +folksier +folksong +folktale +folkways +follicle +followed +follower +fomented +fomenter +fondants +fondlers +fondling +fondness +fontanel +fontange +Fontenoy +fontlets +foodless +foolings +foolscap +footages +football +footbars +footbath +footboys +footfall +footgear +foothill +foothold +footiest +footings +footless +footling +footmark +footmuff +footnote +footpace +footpads +footpage +footpath +footpost +footrest +footrule +footslog +footsore +footstep +footways +footwear +footwell +footwork +footworn +foozlers +foozling +foplings +foragers +foraging +foramina +forayers +foraying +forbears +forbodes +forborne +forcedly +forceful +forcible +forcibly +forcipes +fordable +fordoing +forearms +forebear +forebitt +forebode +forecars +forecast +foredate +foredays +foredeck +foredoom +forefeel +forefeet +forefelt +forefoot +foregoer +foregoes +foregone +foreguts +forehand +forehead +forehent +forehock +foreking +foreknew +foreknow +forelaid +foreland +forelays +forelegs +forelied +forelies +forelimb +forelock +foremast +foremost +forename +forenoon +forensic +forepart +forepast +forepaws +forepeak +foreplan +foreplay +foreread +foreruns +foresaid +foresail +foresays +foreseen +foreseer +foresees +foreship +foreshow +foreside +foreskin +foreslow +forestal +forestay +forested +forester +forestry +foretell +foretime +foretold +foretops +foreward +forewarn +forewent +forewind +forewing +foreword +foreyard +forfairn +forfairs +forfault +forfeits +forfends +forfexes +forgeman +forgemen +forgings +forgiven +forgiver +forgives +forgoers +forgoing +forhents +forinsec +forjudge +forkedly +forkfuls +forkhead +forkiest +forklift +forlanas +formable +formalin +formally +formants +formated +formates +formerly +formiate +formings +formless +formulae +formular +formulas +formwork +fornenst +fornical +fornixes +forrader +forsaken +forsakes +forslack +forsooth +forspeak +forspend +forspent +forspoke +forswear +forswore +forsworn +fortieth +fortlets +fortress +fortuity +fortuned +fortunes +fortyish +forwards +forwarns +forwaste +forweary +forzandi +forzando +forzatos +fossette +fossicks +fossulas +fostered +fosterer +fostress +fothered +Foucault +foudries +fougades +fougasse +foughten +foulards +foulmart +foulness +foumarts +founders +founding +fountain +fountful +fourfold +fourgons +foursome +fourteen +fourthly +foveolas +foveoles +fowlings +foxberry +foxglove +foxholes +foxhound +foxiness +foxtrots +foziness +frabjous +fractals +fracting +fraction +fracture +Fragaria +fragging +fragment +fragrant +frailest +frailish +fraising +framings +frampler +frampold +Francine +francium +Fran�ois +Francome +frankest +franking +Frankish +franklin +frappant +frapping +frascati +fratches +fratries +fraudful +fr�ulein +Fraxinus +frayings +frazzled +frazzles +freakful +freakier +freaking +freakish +freckled +freckles +fredaine +Frederic +freebase +freebees +freebies +freeboot +freeborn +freedman +freedmen +freedoms +Freefone +freehold +freeload +freeness +Freepost +freesias +Freetown +freeware +freeways +freezers +freezing +Freiburg +freights +fremitus +frenetic +frenulum +frenzied +frenzies +frequent +frescade +frescoed +frescoer +frescoes +freshens +freshers +freshest +freshets +freshing +freshish +freshman +freshmen +fresnels +fretsaws +fretting +fretwork +Freudian +friaries +fribbled +fribbler +fribbles +fricadel +friction +Friedman +friended +friendly +Friesian +Friesish +friezing +frigates +friggers +frighted +frighten +frigidly +frijoles +frillier +frillies +frilling +Frimaire +fringing +frippers +frippery +frippets +Frisbees +frisette +friseurs +friskers +friskets +friskful +friskier +friskily +frisking +frissons +fritters +fritting +fritures +frizzier +frizzing +frizzled +frizzles +frocking +frogbits +frogfish +froggery +froggier +frogging +froglets +frogling +fromenty +frondage +frondent +frondeur +frondose +frontage +frontals +frontier +fronting +frontlet +frontons +frontoon +frostier +frostily +frosting +frothery +frothier +frothily +frothing +frottage +frotteur +frowning +frowsier +frowsted +frowzier +fructans +fructify +fructive +fructose +frugally +fruitage +fruitery +fruitful +fruitier +fruiting +fruition +fruitive +fruitlet +frumenty +frumpier +frumpily +frumpish +frustule +frustums +frutices +fubsiest +fuchsias +fuchsine +fuchsite +fucoidal +fuddlers +fuddling +fuellers +fuelling +fugacity +fuggiest +fughetta +fugitive +fugleman +fuglemen +fuguists +fulcrate +fulcrums +fulfills +fulgency +fulgural +fullages +fullback +fullness +fumadoes +fumarole +fumatory +fumblers +fumbling +fumerole +fumettes +fumigant +fumigate +fumitory +fumosity +funboard +function +fundable +fundings +fundless +funebral +funerals +funerary +funereal +funfairs +fungible +funguses +funicles +funiculi +funkhole +funkiest +funniest +funsters +Funtumia +furacity +furbelow +furcated +Furcraea +furcular +furculas +furfural +furfuran +furfurol +furibund +furiosos +furlanas +furlongs +furlough +furmenty +furnaced +furnaces +furphies +furriers +furriery +furriest +furrings +furrowed +furthers +furthest +furuncle +furziest +fusarole +fusarols +fuselage +fusiform +fusileer +fusilier +fussiest +fustians +fustiest +futchels +futilely +futility +futtocks +futurism +futurist +futurity +fuzziest +Fuzzypeg diff --git a/com/agnibho/code/anagram/dictionary/F9.txt b/com/agnibho/code/anagram/dictionary/F9.txt new file mode 100644 index 0000000..be7ca6c --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/F9.txt @@ -0,0 +1,1114 @@ +fabaceous +Fabianism +Fabianist +fabricant +fabricate +fabulised +fabulises +fabulists +fabulized +fabulizes +faburdens +facetious +facsimile +facticity +factional +factitive +factorage +factorial +factories +factoring +factorise +factorize +factotums +factsheet +factually +faculties +facundity +faddiness +fadedness +fagaceous +faggeries +faggoting +fagottist +fahlbands +fain�ance +faineancy +fain�ants +faintings +faintness +Fairbanks +fairyhood +fairyland +fairylike +faithless +falangism +falangist +falcation +falchions +falciform +falconers +falconets +falconine +falculate +falderals +falderols +faldettas +faldstool +Falernian +fallacies +fallalery +Fallopian +fallowing +falsehood +falseness +falsettos +falsework +falsified +falsifier +falsifies +falsities +faltboats +faltering +familiars +famishing +famuluses +fanatical +fanciable +fanciless +fanciness +fancywork +fandangle +fandangos +fanfarade +fanfarons +fanlights +fantailed +fantasias +fantasied +fantasies +fantasise +fantasist +fantasize +fantasque +fantastic +fantastry +faradised +faradises +faradized +faradizes +farandine +farandole +farceuses +farcified +farcifies +farewells +Faridabad +farmeress +farmeries +farmhouse +farmstead +farmyards +farragoes +farrowing +farthings +fasciated +fascicled +fascicles +fascicule +fasciculi +fascinate +fasciolas +fascioles +fascistic +fashioned +fashioner +fastbacks +fastballs +fasteners +fastening +fastigium +fatalists +fatefully +fathering +fathoming +fatidical +fatigable +fatiguing +fatiscent +fatteners +fattening +fattiness +fatuities +fatuitous +fatuously +faubourgs +faultiest +faultless +faunistic +fauteuils +fauvettes +faveolate +favorable +favorably +favorites +favorless +favourers +favouring +favourite +fawningly +feagueing +fearfully +feastings +feathered +featurely +featuring +febricity +febricula +febricule +febrifuge +febrility +feculence +feculency +fecundate +fecundity +federally +federarie +federated +federates +feedstock +feedstuff +feelingly +feignedly +feignings +feiseanna +feistiest +feldshers +feldspars +F�librige +felicific +feliciter +fellaheen +fellating +fellation +fellatios +felonious +felonries +feltering +femeralls +femineity +feminines +feminised +feminises +feminists +feminized +feminizes +fenceless +fencibles +fenestral +fenestras +Fenianism +fenugreek +feodaries +feoffment +feracious +feralised +feralized +Ferdinand +Feringhee +Fermanagh +fermented +ferneries +fernshaws +fernticle +ferocious +ferreters +ferreting +ferriages +ferrogram +ferrotype +fertilely +fertilise +fertility +fertilize +fervently +fervidity +fervorous +festering +festilogy +festinate +festivals +festively +festivity +festivous +festology +festooned +fetichise +fetichism +fetichist +fetichize +feticidal +feticides +fetidness +fetishise +fetishism +fetishist +fetishize +fetlocked +fetoscopy +fettering +fettlings +fettucine +fettucini +feudalise +feudalism +feudalist +feudality +feudalize +feudaries +feudatory +Feuerbach +feuillet� +feverfews +fiberless +Fibonacci +fibreless +fibriform +fibrillae +fibrillar +fibrillin +fibrinous +fibrocyte +fibroline +fibrolite +fibromata +fibrosing +fictional +fiddliest +fideistic +fidgeting +fidibuses +fiduciary +fieldboot +fieldfare +fieldings +fieldmice +fieldsman +fieldsmen +fieldward +fieldwork +fieriness +fifteener +fifteenth +fiftieths +fightable +fightback +fightings +figulines +figurable +figurante +figurants +figurines +figurists +filaceous +filagrees +filaments +filanders +filatures +filchings +filenames +filiating +filiation +Filicales +filicides +filigrane +filigreed +filigrees +Filipinos +filleting +fillibegs +fillipeen +filliping +fillister +filmgoers +filminess +filmmaker +filmstrip +Filofaxes +filoplume +filopodia +filoselle +filtering +filthiest +filtrable +filtrated +filtrates +fimbriate +finaglers +finagling +finalised +finalises +finalists +finalized +finalizes +financial +financier +financing +finessers +finessing +fingering +fingertip +finically +finickety +finicking +finishers +finishing +Finist�re +Finlander +Finlandia +finnochio +finocchio +Fionnuala +fioritura +fioriture +fireboats +firebombs +fireboxes +firebrand +firebrats +firebrick +firecrest +fireflies +firefloat +fireguard +firehouse +firelight +fireplace +fireproof +fireships +firesides +firestone +firetraps +firewalls +fireweeds +firewoman +firewomen +fireworks +fireworms +firmament +firstling +fishballs +fishbowls +fishcakes +fisheries +fisherman +fishermen +Fishguard +fishiness +fishponds +fishskins +fishtails +fishwives +fishyback +fissility +fissipede +fissuring +fistfight +fisticuff +fistulose +fistulous +fittingly +Fitzrovia +fivepence +fivepenny +fixations +fixatives +fixatures +fixedness +fizziness +flabbiest +flabellum +flaccidly +flagellum +flageolet +flaggiest +flagitate +flagpoles +flagrance +flagrancy +flagships +flagstaff +flagstick +flagstone +flakiness +flambeaus +flambeaux +flameless +flamelets +flamencos +flamingly +flamingos +Flaminius +flammable +flammules +flanching +flannelly +flapjacks +flappable +flaptrack +flaringly +flashcube +flashiest +flashings +flatboats +flatheads +flatirons +flatlings +flatmates +flatpacks +flattened +flattered +flatterer +flatulent +flatwares +flaughted +flaughter +flaunches +flaunters +flauntier +flaunting +flautists +flavonoid +flavorful +flavoring +flavorous +flavoured +flechette +fleckered +fleckless +flections +fledgiest +fledgling +fleeching +fleeciest +fleerings +fleetness +Fleetwood +flenching +Flensburg +fleshiest +fleshings +fleshless +fleshling +fleshment +fleshworm +fletchers +fletching +fleurette +flexitime +flexwings +flichters +flickered +flightier +flightily +flighting +flimsiest +flinchers +flinching +flintiest +flintlock +flippancy +flirtings +flittered +flitterns +flittings +floatable +floatages +floatants +floatiest +floatings +floccular +floccules +flocculus +floggings +floodgate +floodings +floodmark +floodtide +floodwall +floodways +floorhead +floorings +flophouse +floppiest +floreated +florences +floriated +Florideae +floridean +floridity +floriform +florigens +floristic +floristry +floscular +floscules +flossiest +flotation +flotillas +flouncing +flounders +flouriest +flourishy +flowchart +flowerage +flowerers +flowerets +flowerier +flowering +flowerpot +flowingly +flowmeter +fluctuant +fluctuate +fluellins +fluffiest +flugelman +flugelmen +fluidised +fluidises +fluidized +fluidizes +fluidness +flukeworm +flummoxed +flummoxes +fluoresce +fluorides +fluorosis +fluorspar +Fluothane +flurrying +flushings +flushness +flustered +fluttered +fluviatic +fluxional +flyleaves +flymakers +flypapers +flyweight +flywheels +foalfoots +foaminess +foamingly +focaccias +focalised +focalises +focalized +focalizes +focimeter +fo'c's'le +focussing +fodderers +foddering +foeticide +foggaging +fogginess +fogramite +fogramity +fogsignal +foilborne +foiningly +foldboats +folderols +foliating +foliation +foliature +foliolate +foliolose +Folketing +folklands +folkloric +folkmoots +folksiest +folksongs +folktales +folkweave +follicles +followers +following +Fomalhaut +fomenters +fomenting +fondlings +fontanels +fontanges +foodstuff +fooleries +foolhardy +foolishly +foolproof +footballs +footbaths +footboard +footcloth +footfalls +foothills +footholds +footlight +footlings +footmarks +footmuffs +footnotes +footpaces +footpages +footpaths +footplate +footposts +footprint +footrests +footrules +footslogs +footstalk +footsteps +footstool +footwells +foozlings +fopperies +foppishly +foraminal +forasmuch +forbiddal +forbidden +forbidder +forceless +forcemeat +forcepses +forcipate +forearmed +forebears +forebitts +foreboded +foreboder +forebodes +forecabin +forecasts +foreclose +forecloth +forecourt +foredated +foredates +foredecks +foredooms +forefeels +forefront +foregleam +foregoers +foregoing +forehands +foreheads +forehents +foreigner +forejudge +forekings +foreknown +foreknows +forelands +forelimbs +forelocks +forelying +foremasts +forenamed +forenames +forenight +forenoons +forensics +foreparts +forepeaks +foreplans +forepoint +forereach +forereads +foresails +foreseers +foresheet +foreships +foreshock +foreshore +foreshown +foreshows +foresides +foresight +foreskins +foreskirt +foreslack +forespeak +forespend +forespent +forespoke +forestage +forestair +forestall +forestays +foresteal +foresters +forestine +foresting +foretaste +foreteeth +foretells +forethink +foretimes +foretoken +foretooth +forewards +forewarns +forewinds +forewings +forewoman +forewomen +forewords +foreyards +forfaired +forfaiter +forfeited +forfeiter +forfended +forficate +Forficula +forgather +forgeable +forgeries +forgetful +forgetive +forgetter +forgivers +forgiving +forgotten +forhented +forjudged +forjudges +forkheads +forkiness +forklifts +forlornly +formalise +formalism +formalist +formality +formalize +formating +formation +formative +formatted +formatter +formiates +formicant +formicary +formicate +formulaic +formulary +formulate +formulise +formulism +formulist +formulize +fornicate +forsaking +forspeaks +forspends +forspoken +forswears +forsythia +Fortaleza +fortalice +Fortescue +forthcome +forthwith +fortieths +fortified +fortifier +fortifies +fortilage +fortitude +fortnight +fortunate +fortunize +forwarded +forwarder +forwardly +forwarned +forzandos +fossettes +fossicked +fossicker +fossilise +fossilize +fossorial +fossulate +fosterage +fosterers +fostering +fothering +fougasses +foulmarts +foundered +foundings +foundling +foundress +foundries +fountains +fourpence +fourpenny +fourscore +foursomes +fourteens +foxgloves +foxhounds +fractions +fractious +fractured +fractures +fraggings +fragilely +fragility +fragments +Fragonard +fragrance +fragrancy +fra�cheur +frailness +frailties +framboise +framework +framplers +Francesca +franchise +Fran�oise +francolin +frangible +Franglais +Frankenia +Frankfort +Frankfurt +franklins +frankness +franticly +frascatis +fratchety +fratchier +fratching +frateries +fraternal +fraudsman +fraudsmen +fraudster +fr�uleins +frazzling +freakiest +frecklier +freckling +fredaines +Frederica +Frederick +freebased +freebases +freeboots +freebooty +freeholds +freeloads +freemason +freephone +freesheet +freestone +freewheel +freewoman +freewomen +freezable +freighted +freighter +Fremantle +Frenchify +Frenchman +Frenchmen +frenetics +frenzical +frenzying +frequence +frequency +frequents +frescades +frescoers +frescoing +frescoist +freshened +freshener +freshness +fretfully +Freudians +friarbird +fribblers +fribbling +fribblish +fricadels +fricassee +fricative +frictions +friedcake +Friedrich +friending +Friesland +frigatoon +frightens +frightful +frighting +frigidity +frikkadel +frilliest +frillings +fripperer +frisettes +friskiest +friskings +frithborh +frittered +fritterer +frivolity +frivolled +frivolous +frizzante +frizziest +frizzlier +frizzling +Frobisher +frockless +froggiest +froglings +frogmarch +frogmouth +Froissart +frolicked +frolicker +frondeurs +frontager +frontages +frontally +frontiers +frontless +frontlets +frontoons +frontward +frontways +frontwise +frostbite +frostiest +frostless +frostlike +frostwork +frothiest +frothless +frottages +frotteurs +frowardly +frowsiest +frowstier +frowsting +frowziest +Fructidor +fructuary +fructuate +fructuous +frugalist +frugality +fruiterer +fruitiest +fruitings +fruitions +fruitless +fruitlets +fruitwood +frumpiest +frustrate +frustules +fruticose +fugacious +fughettas +fugitives +Fulbright +fulfilled +fulfiller +fulgently +fulgorous +fulgurant +fulgurate +fulgurite +fulgurous +fullbacks +fullerene +fulminant +fulminate +fulminous +fulsomely +fumaroles +fumarolic +fumatoria +fumeroles +fumigants +fumigated +fumigates +fumigator +funboards +functions +fundament +funebrial +fungibles +fungicide +fungiform +fungoidal +fungosity +funicular +funiculus +funkholes +funkiness +funnelled +funniness +furacious +furbelows +furbished +furbisher +furbishes +furcation +furfurole +furfurous +furiosity +furiously +furloughs +furmeties +furmities +furnacing +furniment +furnished +furnisher +furnishes +furniture +furriness +furrowing +furthered +furtherer +furtively +furuncles +fusaroles +fuselages +fusileers +fusiliers +fusillade +fusionism +fusionist +fussiness +fustigate +fustilugs +fustiness +futurists +fuzziness diff --git a/com/agnibho/code/anagram/dictionary/G1.txt b/com/agnibho/code/anagram/dictionary/G1.txt new file mode 100644 index 0000000..01058d8 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G1.txt @@ -0,0 +1 @@ +g diff --git a/com/agnibho/code/anagram/dictionary/G10.txt b/com/agnibho/code/anagram/dictionary/G10.txt new file mode 100644 index 0000000..711ab38 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G10.txt @@ -0,0 +1,724 @@ +gabardines +gabblement +gabbroitic +gaberdines +gabionades +gadgeteers +gadolinite +gadolinium +gadrooning +gadzookses +gaelicised +gaelicises +gaelicisms +gaelicized +gaelicizes +gaingiving +gainsayers +gainsaying +gainstrive +gainstrove +galabiyahs +galantines +Galashiels +galengales +galimatias +galingales +galiongees +gallabeahs +gallabiahs +gallabiehs +gallabiyah +gallabiyas +gallabiyeh +galleasses +gallerying +galleryite +galliambic +gallicised +gallicises +gallicisms +Gallicized +Gallicizes +gallinazos +gallinules +gallisised +gallisises +gallisized +gallisizes +gallivants +galliwasps +galloglass +gallomania +gallonages +gallopaded +gallopades +gallophile +gallophobe +gallumphed +galravages +Galsworthy +galumphers +galumphing +galvanised +galvaniser +galvanises +galvanists +galvanized +galvanizer +galvanizes +gambolling +gamekeeper +gametangia +gametocyte +gaminesque +gammations +gammonings +gamotropic +gangboards +gangbuster +gangliated +gangliform +ganglionic +gangplanks +gangrening +gangrenous +gannetries +gannisters +garagistes +garbageman +garderobes +gargantuan +gargarised +gargarises +gargarized +gargarizes +gargoylism +garibaldis +garishness +garlandage +garlanding +garmenting +garmenture +garnierite +garnisheed +garnishees +garnishers +garnishing +garnitures +garottings +garreteers +garrisoned +garrotters +garrotting +garryowens +Gasconader +gashliness +gasometers +gasometric +gasteropod +gastraeums +gastralgia +gastralgic +gastrology +gastronome +gastronomy +Gastropoda +gastropods +gastrosoph +gastrotomy +gatehouses +gatherings +gaucheness +gaucheries +gauffering +gauleiters +gaultheria +gauntleted +gavelkinds +gawkihoods +gazetteers +gazundered +gearsticks +gefuffling +gelatinate +gelatinise +gelatinize +gelatinoid +gelatinous +geminating +gemination +gemmaceous +gemologist +genderless +genealogic +generalate +generalise +generalist +generality +generalize +generalled +generating +generation +generative +generators +generatrix +generosity +generously +Genesiacal +genethliac +geneticist +genetrixes +genevrette +genialised +genialises +genialized +genializes +genialness +geniculate +genitively +genitrixes +genophobia +gensdarmes +genteelest +genteelise +genteelish +genteelism +genteelize +gentilesse +gentilised +gentilises +gentilized +gentilizes +gentlefolk +gentlehood +gentleness +gentrified +gentrifier +gentrifies +genuflects +geocentric +geochemist +geodesical +geodesists +geodetical +Geodimeter +geodynamic +geognostic +geographer +geographic +geologians +geological +geologised +geologises +geologists +geologized +geologizes +geomancers +geomedical +geometrids +geometries +geometrise +geometrist +geometrize +geophagism +geophagist +geophagous +geophilous +geophysics +geoponical +geoscience +geostatics +geotechnic +geothermal +geothermic +geotropism +gerfalcons +geriatrics +geriatrist +germanders +Germanicus +Germanised +Germanises +Germanized +Germanizes +germicidal +germicides +germinable +germinated +germinates +gerundival +gerundives +gestaltism +gestaltist +gestations +Gesundheit +Gethsemane +getterings +Gettysburg +geyserites +ghastfully +ghastliest +ghettoised +ghettoises +ghettoized +ghettoizes +Ghibelines +Ghibelline +ghostliest +ghoulishly +Giacometti +giantesses +giardiasis +Gibberella +giftedness +gigglesome +Gilbertian +Gilbertine +gillflirts +Gillingham +gilravager +gilravages +gimmicking +gingellies +gingerades +gingersnap +gingivitis +ginglimoid +Ginkgoales +girandolas +girandoles +girlfriend +girthlines +glacialist +glaciating +glaciation +glaciology +gladdening +gladiators +gladiatory +gladsomely +gladsomest +Glagolitic +glamorised +glamoriser +glamorises +glamorized +glamorizer +glamorizes +glamouring +glamourous +glancingly +glanderous +glandiform +glandulous +glasnostic +glasshouse +glassified +glassifies +glassiness +glasswares +glassworks +glassworts +Glaswegian +glauberite +glauconite +gleemaiden +Gleneagles +Glenrothes +glimmering +gliomatous +glissading +glissandos +glistening +glistering +glitterati +glittering +glitziness +gloatingly +globalised +globalises +globalized +globalizes +globularly +globulites +glomerated +glomerates +glomerular +glomerules +glomerulus +gloominess +glorifying +gloriously +glossarial +glossaries +glossarist +glossators +glossiness +glossology +glottidean +glottology +Gloucester +glucosides +glucosuria +glucosuric +glumaceous +glutamates +gluttonise +gluttonish +gluttonize +gluttonous +glycerides +glycogenic +glycolysis +glycolytic +glycosidic +glycosuria +glycosuric +glyptodont +Gnaphalium +gnashingly +gneissitic +gnomonical +gnoseology +gnosiology +Gnosticise +Gnosticism +Gnosticize +gnotobiote +goalkicker +goalmouths +goalscorer +goatsucker +gobemouche +gobsmacked +gobstopper +godfathers +godmothers +godparents +godrooning +gofferings +goldcrests +goldfields +Goldfinger +goldfishes +goldilocks +goldminers +goldsmiths +goldspinks +goldsticks +goldthread +goliardery +goliathise +goliathize +golomynkas +goloptious +goluptious +gondoliers +goniatites +goniometer +goniometry +gonococcal +gonococcic +gonococcus +gonophores +gonorrheal +gonorrheic +gonorrhoea +Goodfellas +goodlihead +goodliness +googolplex +goosanders +gooseberry +goosefoots +gopherwood +gorblimeys +gorblimies +Gorbymania +gorgeously +gorgoneion +gorgonised +gorgonises +gorgonized +gorgonizes +Gorgonzola +gorillians +gorillines +gormandise +gormandism +gormandize +goslarites +gospelised +gospelises +gospelized +gospelizes +gospellers +gospellise +gospellize +gossipings +Gothamists +Gothamites +Gothenburg +gothicised +gothicises +Gothicists +gothicized +gothicizes +gourdiness +governable +governance +governante +governessy +government +gracefully +graciosity +graciously +gradations +gradienter +gradualism +gradualist +graduality +graduating +graduation +graduators +Graecising +Graecizing +graffitist +graininess +gralloched +gramercies +gramicidin +gramineous +grammarian +grammatist +gramophone +granadilla +grandchild +granddaddy +grandmamas +grandmamma +grandniece +grandpapas +grandsires +grandstand +granduncle +grangerise +Grangerism +grangerize +granitised +granitises +granitized +granitizes +granophyre +granularly +granulated +granulater +granulates +granulator +granulites +granulitic +granulomas +grapefruit +grapeseeds +grapestone +grapetrees +grapevines +graphemics +graphicacy +graphitise +graphitize +graphitoid +graphology +graptolite +graspingly +grasshooks +grassiness +grasslands +grasswrack +gratefully +graticules +gratifiers +gratifying +gratillity +gratinated +gratinates +gratuities +gratuitous +gratulated +gratulates +graunchers +graunching +gravelling +graveolent +gravestone +Gravettian +graveyards +gravimeter +gravimetry +gravitated +gravitates +graybeards +greaseband +greasewood +greasiness +greatcoats +greatening +greediness +greenbacks +greencloth +greenfield +greenfinch +greenflies +greengages +greenhands +greenheads +greenheart +greenhorns +greenhouse +Greenpeace +greenrooms +Greensboro +greenshank +greenspeak +greenstick +greenstone +greenstuff +greensward +greenweeds +greenwoods +gregarines +gregarious +greisenise +greisenize +Grenadians +grenadiers +grenadilla +grenadines +gressorial +greybeards +greyhounds +greywether +gridironed +gridlocked +grievances +grievingly +grievously +griffinish +griffinism +grillework +grillsteak +grimalkins +grinderies +grindingly +grindstone +grinningly +gripewater +grisailles +grisliness +gristliest +gritstones +grittiness +grizzliest +Grobianism +groceteria +grogginess +grosgrains +grotesques +grouchiest +groundages +groundbait +groundedly +groundings +groundless +groundling +groundmass +groundplan +groundplot +groundprox +groundsels +groundsill +groundsman +groundsmen +groundwork +grovellers +grovelling +growleries +growlingly +growthists +grubbiness +grudgingly +gruellings +gruesomely +gruesomest +grumblings +grumpiness +gruntingly +guacamoles +Guadeloupe +Guamanians +guaranteed +guarantees +guarantied +guaranties +guarantors +guardhouse +Guarnerius +Guarnieris +Guatemalan +gubernator +guerdoning +guerrillas +guessingly +guestimate +Guggenheim +guidelines +guideships +guildhalls +guilefully +guillemots +guilloched +guilloches +guillotine +guiltiness +guitarists +Gujranwala +Gulbenkian +gumdiggers +gumshields +gumshoeing +guncottons +gunfighter +gunpowders +gunrunners +gunrunning +gunslinger +gustations +guttations +Guttiferae +gutturally +gymnasiast +gymnasiums +gymnastics +gymnosophs +gymnosophy +gymnosperm +gynandrism +gynandrous +gynecology +gyniolatry +gynocratic +gynoeciums +gynophobia +gynophobic +gynophores +gypsophila +gypsyworts +gyrational +gyrfalcons +gyrocopter +gyroplanes +gyroscopes +gyroscopic +gyrostatic +gyrovagues diff --git a/com/agnibho/code/anagram/dictionary/G11.txt b/com/agnibho/code/anagram/dictionary/G11.txt new file mode 100644 index 0000000..bd1d13f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G11.txt @@ -0,0 +1,492 @@ +gabblements +gaberlunzie +gadroonings +gaelicising +gaelicizing +gainfulness +gainsayings +gainstriven +gainstrives +gallabiyahs +gallabiyehs +gallantness +gallantries +galleryites +galliambics +galliardise +Gallicanism +gallicising +Gallicizing +gallimaufry +gallisising +gallisizing +gallivanted +gallopading +gallophiles +gallophobes +gallophobia +Gallovidian +gallowglass +gallowsness +gallumphing +galvanisers +galvanising +galvanizers +galvanizing +gamekeepers +gametangium +gametocytes +gametophyte +gammerstang +gamogenesis +gamotropism +gangbusters +gangbusting +gangsterdom +gangsterism +garbologist +Gargantuism +Gargantuist +gargarising +gargarizing +garlandages +garlandless +garmentless +garmentures +garnishings +garnishment +garrisoning +garrottings +garrulously +gaseousness +Gasteropoda +gasteropods +gastrectomy +gastrologer +gastromancy +gastronomer +gastronomes +gastronomic +gastroscope +gastrosophs +gastrosophy +gastrostomy +gatecrashed +gatecrasher +gatecrashes +gaultherias +gazetteered +gazundering +geanticline +gegenschein +geitonogamy +gelatinated +gelatinates +gelatinised +gelatiniser +gelatinises +gelatinized +gelatinizer +gelatinizes +gelatinoids +gelseminine +geminations +gemmiferous +gemmiparous +gemmologist +gemmulation +gemological +gemologists +gendarmerie +genealogies +genealogise +genealogist +genealogize +generalised +generalises +generalists +generalized +generalizes +generalling +generalship +generations +generically +genethliacs +genetically +geneticists +genevrettes +genialising +genialities +genializing +geniculated +geniculates +genitivally +genouill�re +genteelised +genteelises +genteelisms +genteelized +genteelizes +genteelness +gentianella +gentilhomme +gentilising +gentilitial +gentilitian +gentilities +gentilizing +gentlefolks +gentlemanly +gentlewoman +gentlewomen +gentrifiers +gentrifying +genuflected +genuflexion +genuineness +geochemical +geochemists +Geodimeters +geodynamics +geographers +geologising +geologizing +geomagnetic +geomedicine +geometrical +Geometridae +geometrised +geometrises +geometrists +geometrized +geometrizes +geophagists +geophysical +geopolitics +geostrategy +geostrophic +geosyncline +geotactical +geotechnics +geotectonic +Geraniaceae +geriatrists +germaneness +Germanesque +Germanising +Germanistic +Germanizing +Germanophil +germinating +germination +germinative +gerontology +gerrymander +gestaltists +gestational +gestatorial +gesticulate +ghastliness +ghettoising +ghettoizing +Ghibellines +ghostbuster +ghostliness +gibberellin +gibbousness +giftwrapped +gigantesque +giganticide +gigantology +gillyflower +gilravagers +gimcrackery +gimmickries +gingerbread +gingersnaps +ginglymuses +girdlestead +girlfriends +girlishness +glacialists +glaciations +gladfulness +gladioluses +Gladstonian +glamorisers +glamorising +glamorizers +glamorizing +glamorously +glamourpuss +glandularly +glaringness +glasnostian +glasshouses +glassifying +glassworker +Glastonbury +Glaswegians +glaucescent +glauconitic +gleefulness +gleemaidens +glengarries +glimmerings +gliomatosis +glitterings +globalising +globalizing +globerigina +globigerina +globosities +globularity +glomerating +glomeration +glomerulate +glossarists +glossectomy +glossodynia +glossolalia +glottogonic +gloweringly +glumiferous +Glumiflorae +glutaminase +glutinously +gluttonised +gluttonises +gluttonized +gluttonizes +glycosylate +glyphograph +glyptodonts +glyptotheca +gnatcatcher +gnathonical +gnomonology +gnostically +Gnosticised +Gnosticises +Gnosticized +Gnosticizes +gnotobiosis +gnotobiotes +gnotobiotic +goalkickers +goalkicking +goalscorers +goatishness +goatsuckers +gobemouches +gobstoppers +godchildren +goddaughter +godlessness +Goldbergian +goldenberry +goldfinches +goldfinnies +goldsinnies +goldsmithry +goliathised +goliathises +goliathized +goliathizes +gonfalonier +Gongoristic +goniatitoid +gonimoblast +goniometers +goniometric +gonococcoid +Gordonstoun +gorgonising +gorgonizing +gormandised +gormandiser +gormandises +gormandized +gormandizer +gormandizes +Gormenghast +gospelising +gospelizing +gospellised +gospellises +gospellized +gospellizes +gothicising +gothicizing +gourmandise +gourmandism +gouvernante +governances +governesses +governments +gracefuller +gracelessly +gradational +gradationed +gradienters +gradiometer +gradualists +gradualness +graduations +graffitists +Grallatores +gralloching +grammalogue +grammarians +grammatical +grammatists +gramophones +gramophonic +granadillas +grandaddies +grandeeship +grandfather +grandiosely +grandiosity +grandmammas +grandmaster +grandmother +grandnephew +grandnieces +grandparent +grandstands +granduncles +Grangemouth +grangerised +grangerises +grangerized +grangerizes +graniteware +granitiform +granitising +granivorous +granolithic +granophyric +granularity +granulaters +granulating +granulation +granulative +granulators +granuliform +granulocyte +granulomata +grapefruits +grapestones +graphically +graphicness +graphitised +graphitises +graphitized +graphitizes +graphologic +graphomania +graptolites +graptolitic +grasshopper +gratefuller +gratinating +gratulating +gratulation +gratulatory +gravestones +gravimeters +gravimetric +gravitating +gravitation +gravitative +greasebands +greasepaint +greasewoods +greenbottle +greencloths +greengrocer +greenhearts +greenhouses +greenockite +greenshanks +greenstones +greenstuffs +greenwashed +greenwashes +Gregarinida +greisenised +greisenises +greisenized +greisenizes +grenadillas +gressorious +greywethers +griddlecake +gridironing +grillsteaks +grindstones +gristliness +groatsworth +groceterias +grossi�ret� +grotesquely +grotesquery +grouchiness +groundbaits +groundburst +groundlings +groundplans +groundplots +groundsheet +groundsills +groundspeed +groundswell +groundworks +groupuscule +grumblingly +Guadalajara +Guadalcanal +guaniferous +guarantying +guardedness +guardhouses +Guatemalans +gubernacula +gubernation +gubernators +guerrillero +guesstimate +guestimates +guildswoman +guildswomen +guilelessly +guilloching +guillotined +guillotines +guiltlessly +gullibility +gummiferous +gunfighters +gunfighting +gunslingers +gurgitation +Gurrelieder +guttersnipe +guttiferous +gutturalise +gutturalize +gymnasiarch +gymnasiasts +gymnastical +gymnorhinal +gymnosperms +gynaecology +gynecologic +gynophobics +gynostemium +gypsiferous +gypsophilas +gyrocompass +gyrocopters +gyrostatics diff --git a/com/agnibho/code/anagram/dictionary/G12.txt b/com/agnibho/code/anagram/dictionary/G12.txt new file mode 100644 index 0000000..d7aa33c --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G12.txt @@ -0,0 +1,292 @@ +gaberlunzies +gainlessness +Gainsborough +gainstriving +galactagogue +galactometer +galimatiases +galliardises +galligaskins +gallinaceous +gallivanting +galloglasses +galvanically +galvanometer +galvanometry +galvanoscope +gamesmanship +gamesomeness +gametophytes +gammerstangs +gamopetalous +gamophyllous +gamosepalous +gangsterland +garbologists +Gargantuists +garnisheeing +garnishments +gasification +gasometrical +Gastarbeiter +gastrocnemii +gastrologers +gastronomers +gastronomist +gastropodous +gastroscopes +gastrosopher +gastrotomies +gastrulation +gatecrashers +gatecrashing +gazetteering +gazetteerish +geanticlinal +geanticlines +gelatinating +gelatination +gelatinisers +gelatinising +gelatinizers +gelatinizing +Gemeinschaft +gemmological +gemmologists +gendarmeries +genealogical +genealogised +genealogises +genealogists +genealogized +genealogizes +generalising +generalities +generalizing +generalships +generational +generatrices +generosities +generousness +genethliacal +genethliacon +geniculately +geniculating +geniculation +genotypicity +genouill�res +genteelising +genteelizing +Gentianaceae +gentianellas +gentilhommes +gentilitious +genuflecting +genuflection +genuflexions +geocentrical +geochemistry +geodetically +geodynamical +geognostical +geographical +geologically +geomagnetism +geomagnetist +geometrician +geometrising +geometrizing +geophysicist +geopolitical +geostrategic +geosynclinal +geosynclines +geotechnical +geotectonics +geriatrician +Germanically +Germanophile +Germanophils +Germanophobe +germinations +gerontocracy +gerrymanders +Gesellschaft +Gesneriaceae +gesticulated +gesticulates +gesticulator +ghostbusters +ghoulishness +gibberellins +Gibraltarian +giftwrapping +gigantically +giganticides +gigantomachy +gillyflowers +gingerbreads +gingivectomy +girdlesteads +glaciologist +gladiatorial +gladsomeness +glandiferous +glandulously +glassworkers +glaucescence +glaucomatous +glimmeringly +glioblastoma +glisteringly +glitteringly +globeriginae +globeriginas +globigerinae +glockenspiel +glomerations +gloriousness +glossarially +glossography +glossologist +glucoprotein +gluttonising +gluttonizing +gluttonously +glycogenesis +glycogenetic +glycoprotein +glycosylated +glycosylates +Glyndebourne +glyphographs +glyphography +glyptography +glyptothecas +gnatcatchers +gnomonically +Gnosticising +Gnosticizing +gnotobiology +gnotobiotics +gobbledegook +gobbledygook +goddaughters +goldenfleece +goldsmithery +goliathising +goliathizing +gonadotropic +gonadotropin +Gondwanaland +gonfaloniers +goniatitoids +gonimoblasts +googolplexes +gooseberries +gorgeousness +gormandisers +gormandising +gormandizers +gormandizing +gospellising +gospellizing +gossipmonger +gouvernantes +governmental +governorship +gracefullest +gracefulness +graciousness +Gradgrindery +gradiometers +gradualistic +gradualities +graduateship +grallatorial +graminaceous +grammalogues +grammaticise +grammaticism +grammaticize +grammatology +gramophonist +granddaddies +grandfathers +Grandisonian +grandmasters +grandmothers +grandnephews +grandparents +grangerising +grangerizing +granodiorite +Grantchester +granulations +granulocytes +granulocytic +graphitising +graphitizing +graphologist +graphophobia +graspingness +grasshoppers +gratefullest +gratefulness +gratifyingly +gratuitously +gratulations +gravitations +gravitometer +greenbottles +greenfinches +greengrocers +greengrocery +greenishness +Greensleeves +greenwashing +gregarianism +gregariously +greisenising +greisenizing +griddlecakes +grievousness +griseofulvin +groatsworths +Grolieresque +grossularite +grotesquerie +groundbursts +groundlessly +groundmasses +groundproxes +groundsheets +groundspeeds +groupuscules +gruesomeness +Guadalquivir +guaranteeing +guardianship +Guarneriuses +gubernacular +gubernaculum +gubernations +guerrilleros +guesstimates +Guildenstern +guilefulness +guillotining +gurgitations +guttersnipes +gutturalised +gutturalises +gutturalized +gutturalizes +gymnasiarchs +gymnosophist +gynaecocracy +gynaecologic +gynecologist +gynodioecism +gynostemiums +gyromagnetic diff --git a/com/agnibho/code/anagram/dictionary/G13.txt b/com/agnibho/code/anagram/dictionary/G13.txt new file mode 100644 index 0000000..c529803 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G13.txt @@ -0,0 +1,163 @@ +Gaidhealtachd +galactagogues +galactometers +galactorrhoea +galactosaemia +Galeopithecus +gallimaufries +gallowglasses +galvanisation +galvanization +galvanometers +galvanometric +galvanoplasty +galvanoscopes +gametogenesis +gangsterlands +garnetiferous +garnisheement +garrulousness +Gastarbeiters +gasteropodous +gastrectomies +gastrocnemius +gastroenteric +gastrological +gastronomical +gastronomists +gastrosophers +gastrostomies +geitonogamous +gelatinations +Gelsenkirchen +Gem�tlichkeit +genealogising +genealogizing +generalisable +generalissimo +generalizable +generationism +genethliacons +genethlialogy +genetotrophic +genotypically +gentianaceous +gentlemanhood +gentlemanlike +gentlemanship +gentlewomanly +genuflections +geocentricism +geochemically +geochronology +geomagnetists +geometrically +geometricians +geomorphogeny +geomorphology +geophysicists +geopolitician +geoscientific +geostationary +geotactically +geotechnology +geotropically +geriatricians +Germanisation +Germanization +Germanophilia +gerontocratic +gerontologist +gerontophilia +gerrymandered +gerrymanderer +gesticulating +gesticulation +gesticulative +gesticulators +gesticulatory +Gibraltarians +gigantomachia +glaciological +glaciologists +gladiatorship +glamorisation +glamorization +glamourpusses +globalisation +globalization +globuliferous +glockenspiels +glorification +glossectomies +glossographer +glossological +glossologists +gluconeogenic +glucoproteins +Glumdalclitch +glycoproteins +glycosylating +glycosylation +glyphographer +glyphographic +glyptographic +gnathonically +goldenberries +gonadotrophic +gonadotrophin +gonadotropins +goniometrical +gormandisings +gossipmongers +governorships +gracelessness +gradationally +graminivorous +grammatically +grammaticised +grammaticises +grammaticisms +grammaticized +grammaticizes +gramophonists +grandchildren +granddaughter +grandfatherly +grandiloquent +grandiloquous +grandmotherly +granitisation +granitization +granuliferous +granulomatous +graphemically +graphological +graphologists +graticulation +gratification +gravimetrical +gravitational +gravitometers +greensickness +grotesqueness +grotesqueries +Grumbletonian +guardianships +gubernatorial +guilelessness +guiltlessness +gutturalising +gutturalizing +gymnastically +gymnosophists +gymnospermous +gynaecocratic +gynaecologist +gynaecomastia +gynandromorph +gynecological +gynodioecious +gynomonoecism +gyrocompasses +gyromagnetism diff --git a/com/agnibho/code/anagram/dictionary/G14.txt b/com/agnibho/code/anagram/dictionary/G14.txt new file mode 100644 index 0000000..cece126 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G14.txt @@ -0,0 +1,78 @@ +galactophorous +galactopoietic +galeopithecine +galeopithecoid +galvanisations +galvanizations +galvanoplastic +Gasteromycetes +gelatinisation +gelatinization +genealogically +generalisation +generalissimos +generalization +genethliacally +genethlialogic +genotypicities +gentrification +geocentrically +geognostically +geographically +geolinguistics +geometrisation +geometrization +geomorphogenic +geomorphologic +geopolitically +geopoliticians +geostrategical +geosynchronous +geothermometer +gerontocracies +gerontological +gerontologists +gerrymanderers +gerrymandering +gesticulations +Gew�rztraminer +gigantomachias +gigantomachies +gingivectomies +Glamorganshire +glamorisations +glamorizations +glanduliferous +globalisations +globalizations +glorifications +glossographers +glucocorticoid +glyphographers +Gnathobdellida +grammaticaster +grammaticising +grammaticizing +granddaughters +grandiloquence +grangerisation +grangerization +graphitisation +graphitization +graticulations +gratifications +gratuitousness +greengroceries +gregariousness +greisenisation +greisenization +groundbreaking +groundlessness +gynaecocracies +gynaecological +gynaecologists +gynandromorphs +gynandromorphy +gynomonoecious +gyrostabiliser +gyrostabilizer diff --git a/com/agnibho/code/anagram/dictionary/G15.txt b/com/agnibho/code/anagram/dictionary/G15.txt new file mode 100644 index 0000000..c0b6571 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G15.txt @@ -0,0 +1,34 @@ +gastroenteritis +gastronomically +gelatinisations +gelatinizations +generalisations +generalizations +gentlemanliness +gentrifications +geochronologist +geomorphogenist +geomorphologist +geothermometers +Gleichschaltung +glossographical +Gloucestershire +gluconeogenesis +gnotobiological +gnotobiotically +goniometrically +G�tterd�mmerung +grammaticasters +gramophonically +grandiloquently +grangerisations +grangerizations +granitification +granulitisation +granulitization +graphitisations +graphitizations +gravitationally +gynandromorphic +gyrostabilisers +gyrostabilizers diff --git a/com/agnibho/code/anagram/dictionary/G16.txt b/com/agnibho/code/anagram/dictionary/G16.txt new file mode 100644 index 0000000..a6e0c49 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G16.txt @@ -0,0 +1,12 @@ +gastroenterology +gastrointestinal +genethlialogical +geochronological +geomorphogenists +geomorphological +geotechnological +glauconitisation +glauconitization +glottochronology +gynandromorphism +gynandromorphous diff --git a/com/agnibho/code/anagram/dictionary/G17.txt b/com/agnibho/code/anagram/dictionary/G17.txt new file mode 100644 index 0000000..02a103d --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G17.txt @@ -0,0 +1,3 @@ +gentlewomanliness +gyrostabilisation +gyrostabilization diff --git a/com/agnibho/code/anagram/dictionary/G18.txt b/com/agnibho/code/anagram/dictionary/G18.txt new file mode 100644 index 0000000..21b3ef3 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G18.txt @@ -0,0 +1,2 @@ +gastroenterologist +geomorphologically diff --git a/com/agnibho/code/anagram/dictionary/G19.txt b/com/agnibho/code/anagram/dictionary/G19.txt new file mode 100644 index 0000000..7812a56 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G19.txt @@ -0,0 +1 @@ +gerontotherapeutics diff --git a/com/agnibho/code/anagram/dictionary/G2.txt b/com/agnibho/code/anagram/dictionary/G2.txt new file mode 100644 index 0000000..bb6ecfe --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G2.txt @@ -0,0 +1,4 @@ +Ge +gi +go +gu diff --git a/com/agnibho/code/anagram/dictionary/G3.txt b/com/agnibho/code/anagram/dictionary/G3.txt new file mode 100644 index 0000000..e246685 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G3.txt @@ -0,0 +1,55 @@ +gab +gad +gae +gag +gal +gam +gan +gap +gar +gas +gat +gau +gay +ged +gee +gel +gem +gen +geo +get +gey +ghi +gib +gid +gie +gif +gig +Gil +gin +gio +gip +gis +git +gju +gnu +Goa +gob +god +goe +Gog +goo +got +gov +goy +gue +gum +gun +gup +gur +gus +gut +guv +guy +gym +gyp diff --git a/com/agnibho/code/anagram/dictionary/G4.txt b/com/agnibho/code/anagram/dictionary/G4.txt new file mode 100644 index 0000000..12f0b79 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G4.txt @@ -0,0 +1,268 @@ +gabs +gaby +gade +gadi +gads +Gaea +gaed +Gael +gaes +gaff +gaga +gage +gags +Gaia +gaid +Gail +gain +gair +gait +gajo +gala +gale +gall +gals +Galt +gamb +game +gamp +gams +gamy +gane +gang +gant +gaol +gape +gap� +gaps +garb +Gard +gare +Garp +gars +Gary +gash +gasp +gast +gate +Gath +gats +gaud +Gaul +gaum +gaun +gaup +gaur +gaus +gave +Gawd +gawk +gawp +Gaya +Gaye +gays +Gaza +gaze +gazy +geal +gean +gear +geat +geck +geds +geed +geek +geep +gees +Ge�z +geld +gels +gelt +gems +gena +gene +gens +gent +genu +geos +gere +germ +Gers +gest +geta +gets +Getz +geum +ghat +ghee +ghis +gibe +gibs +Gide +gied +gien +gies +gift +giga +Gigi +gigs +gila +gild +gill +gilt +gimp +Gina +ging +gink +ginn +gins +gios +gips +gird +girl +girn +giro +girr +girt +Gish +gist +Gita +gite +gits +give +Giza +gizz +gjus +glad +glam +gled +glee +gleg +glei +glen +gley +glia +glib +glim +glob +glom +glop +glow +glue +glug +glum +glut +Glyn +gnar +gnat +gnaw +gnus +goad +goaf +goal +Goan +goat +Gobi +gobo +gobs +goby +gods +goel +goer +goes +goey +goff +gogo +gold +golf +golp +gone +gong +gonk +good +goof +goog +gool +goon +goop +goor +goos +gore +gorp +gory +gosh +Goss +Goth +gout +govs +gowd +gowk +gowl +gown +Goya +goys +grab +grad +Graf +gram +gran +grat +gray +Graz +gree +Greg +grew +grey +grid +grig +grim +grin +grip +gris +grit +grog +grot +grow +grub +grue +grum +Grus +Guam +guan +guar +guck +gude +gues +guff +guga +guid +gula +gule +gulf +gull +gulp +guly +gums +gunk +Gunn +guns +G�nz +gups +gurn +guru +gush +gust +guts +guys +Gwen +Gwyn +gyal +gybe +gymp +gyms +gyny +gyps +gyre +gyro +gyte +gyve diff --git a/com/agnibho/code/anagram/dictionary/G5.txt b/com/agnibho/code/anagram/dictionary/G5.txt new file mode 100644 index 0000000..6ce09a8 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G5.txt @@ -0,0 +1,533 @@ +gabby +gable +Gabon +gades +gadge +gadis +gadso +Gadus +Gaels +gaffe +gaffs +gaged +gages +gaids +gaily +gains +gairs +gaits +Gaius +gajos +galah +galas +Galba +galea +Galen +gales +galls +gally +galop +galut +Gamal +gamay +gamba +gambo +gambs +gamed +gamer +games +gamey +gamic +gamin +gamma +gamme +gammy +gamps +gamut +ganch +gangs +ganja +gants +gaols +gaped +gaper +gapes +gap�s +gappy +garbe +garbo +garbs +garda +garni +Garry +garth +garum +gases +gasps +gaspy +gassy +gated +gates +gator +Gaud� +gauds +gaudy +gauge +Gauls +gault +gaums +gaumy +gaunt +gaups +gaurs +gauss +gauze +gauzy +gavel +Gavin +gavot +gawks +gawky +gawps +gawsy +gayal +gayer +gazal +gazed +gazel +gazer +gazes +gazon +gazoo +Gazza +g'day +geals +geans +geare +gears +geats +gebur +gecko +gecks +Gedda +geeks +geeky +geese +geist +gelds +gelid +gelly +gelts +gemel +gemma +gemmy +gemot +genal +genas +genes +genet +genic +genie +genii +genip +genoa +genom +genre +Genro +gents +genty +genus +geode +Geoff +geoid +gerah +gerbe +Gerda +germs +Gerry +gesso +geste +gests +getas +Getty +geums +geyan +Ghana +ghast +ghats +ghaut +ghazi +ghees +Ghent +ghost +ghoul +ghyll +giant +Gibbs +gibed +gibel +giber +gibes +gibus +giddy +gifts +gigas +Gigli +gigot +gigue +gilas +gilds +Giles +gilet +gills +gilly +gilpy +gilts +gimme +gimps +gimpy +ginks +ginny +gipsy +girds +girls +girly +girns +giron +giros +girrs +girth +girts +gismo +gists +gites +giust +given +giver +gives +gizmo +glac� +glade +glads +glady +glaik +glair +gland +glans +glare +glary +glass +glaur +Glaux +glaze +glazy +gleam +glean +glebe +gleby +glede +gleds +gleed +gleek +glees +gleet +Glenn +glens +gleys +glial +glide +gliff +glike +glims +glint +glisk +glitz +gloat +globe +globs +globy +Glock +glogg +gloms +gloom +gloop +glops +glory +gloss +glout +glove +glows +gloze +Gluck +glued +gluer +glues +gluey +glugs +glume +gluon +gluts +glyph +gnarl +gnarr +gnars +gnash +gnats +gnawn +gnaws +gnome +goads +goafs +goals +Goans +goats +goaty +gobbi +gobbo +gobos +G�del +godet +godly +Godot +goels +goers +goety +gofer +goffs +Gogol +going +Golda +golds +goldy +golem +golfs +Golgi +golly +golpe +golps +gombo +gompa +gonad +goner +gongs +gonia +gonks +gonna +gonys +gonzo +Gooch +goods +goody +gooey +goofs +goofy +googs +Goole +gools +gooly +goons +goops +goopy +goose +goosy +gopak +Gopal +goral +Gorby +gored +gores +gorge +Gorki +Gorky +gorps +gorse +gorsy +gosht +Gosse +Gotha +Goths +gotta +Gouda +gouge +Gould +Goura +gourd +gouts +gouty +gowan +gowds +Gower +gowks +gowls +gowns +goyim +graal +grabs +grace +grade +grads +graft +grail +grain +graip +grama +grame +grams +grand +grans +grant +grape +graph +grapy +grasp +grass +grate +grave +gravy +grays +graze +great +grebe +grece +greed +Greek +green +Greer +grees +greet +gr�ge +grego +Greig +grese +Greta +greve +greys +grice +gride +grids +grief +Grieg +griff +grift +grigs +grike +grill +grime +Grimm +grimy +grind +grins +griot +gripe +grips +grise +grist +grisy +grith +grits +grize +groan +groat +Grock +grody +grogs +groin +groma +groof +groom +grope +gross +Grosz +grots +grouf +group +grout +grove +growl +grown +grows +grubs +grued +gruel +grues +gruff +grume +grump +grunt +gryke +guaco +guana +guano +guans +guard +guars +guava +Gucci +gucky +Guelf +guess +guest +Gueux +guffs +gugas +guide +guild +guile +guilt +guimp +guiro +guise +gulag +gular +gulas +gulch +gules +gulfs +gulfy +gulls +gully +gulph +gulps +gumbo +gumma +Gummo +gummy +gundy +gunge +gungy +gunks +gunny +guppy +Gupta +gurge +gurns +gurry +gurus +gushy +gusla +gusle +gusli +gusto +gusts +gusty +gutsy +gutta +gutty +guyed +guyot +Gwent +gyals +gybed +gybes +gymps +gynae +gypsy +gyral +gyred +gyres +gyron +gyros +gyrus +gytes +gyved +gyves diff --git a/com/agnibho/code/anagram/dictionary/G6.txt b/com/agnibho/code/anagram/dictionary/G6.txt new file mode 100644 index 0000000..299b238 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G6.txt @@ -0,0 +1,849 @@ +gabbed +gabber +gabble +gabbro +gabies +gabion +gabled +gables +gablet +gadded +gadder +gadfly +gadges +gadget +Gadhel +gadoid +gadsos +Gaelic +Gaenor +gaffed +gaffer +gaffes +gagaku +gagged +gagger +gaggle +gaging +gagman +gagmen +gaiety +gaijin +gained +gainer +gainly +gainst +gaited +gaiter +galage +galago +galahs +galant +galaxy +galeas +galena +gal�re +galiot +galled +gallet +galley +Gallic +Gallio +gallon +gallop +gallow +Gallup +gallus +galoot +galops +galore +galosh +Galton +galuth +galuts +Galway +gamash +gambas +gambet +Gambia +gambir +gambit +gamble +gambol +Gambon +gambos +gamely +gamest +gamesy +gamete +gamgee +gamier +gamine +gaming +gamins +gammas +gammed +gammer +gammes +gammon +gamuts +gander +Gandhi +Ganesa +Ganesh +ganged +ganger +Ganges +gangly +gangue +gannet +ganoid +ganoin +gansey +ganted +gantry +gaoled +gaoler +gapers +gaping +gapped +garage +garbed +garbes +garble +garbos +Garcia +gar�on +gardai +garden +Gareth +garget +gargle +garial +garish +garjan +garlic +garner +garnet +garran +garred +garret +garron +garrot +garrya +garter +garths +garuda +garvie +gascon +gashed +gasher +gashes +gasify +gasket +gaskin +gasman +gasmen +gasped +gasper +gassed +gasser +gasses +gaster +Gaston +gateau +gather +gating +gators +Gatsby +gauche +gaucho +gaufer +gaufre +gauged +gauger +gauges +Gaulle +gaults +gaumed +gaunts +gauped +gauper +gaupus +gauzes +gavage +gavels +gavial +gavots +Gawain +gawked +gawker +gawped +gawper +gawpus +gayals +gayest +gayety +Gaynor +gazals +gazebo +gazels +gazers +gazing +gazons +gazoos +gazump +Gdansk +gealed +geared +geason +geburs +gecked +geckos +geddit +geegaw +geeing +geezer +Geiger +geisha +geists +gelada +gelati +gelato +gelded +gelder +Geldof +gelled +Gemara +gemels +Gemini +gemmae +gemman +gemmed +gemots +gender +genera +genets +geneva +Gen�ve +genial +genies +genips +genius +genned +gennet +genoas +genome +genoms +Genova +genres +gentes +gentle +gently +gentoo +gentry +geodes +geodic +geoids +Geomys +George +gerahs +Gerald +Gerard +gerbes +gerbil +gerent +german +germen +germin +Gertie +gerund +Geryon +gestes +gestic +getter +gewgaw +geyser +gharri +gharry +ghauts +ghazal +ghazel +ghazis +Gheber +Ghebre +gherao +ghetto +ghosts +ghosty +ghouls +ghylls +giants +giaour +gibbed +gibber +gibbet +gibbon +gibels +gibers +gibing +giblet +Gibson +giddap +gidday +giddup +Gideon +gidgee +gidjee +gifted +gigged +Giggit +giggle +giggly +giglet +giglot +gigman +gigmen +gigolo +gigots +gigues +gilded +gilden +gilder +Gilead +gilets +gilgai +gilgie +gilled +gillie +gimbal +gimlet +gimmal +gimmer +gimped +gingal +ginger +gingko +gingle +ginkgo +ginned +ginnel +ginner +Giotto +gipsen +Giraud +girded +girder +girdle +girkin +girlie +girned +girner +girnie +girons +girted +girths +Girton +gismos +gitana +Gitane +gitano +giusto +givers +giving +gizmos +glac�s +glacis +glades +gladly +Gladys +glairs +glairy +glaive +Glamis +glamor +glance +glands +glared +glares +glassy +glaury +glazed +glazen +glazer +glazes +gleams +gleamy +gleans +glebes +gledes +gleeds +gleeks +gleets +gleety +Glenda +Glenys +gleyed +glibly +glided +glider +glides +gliffs +Glinka +glints +glioma +Glires +glisks +glitch +glitzy +gloats +global +globby +globed +globes +globin +gloggs +gloire +glooms +gloomy +gloops +gloopy +gloria +glossa +glossy +glouts +gloved +glover +gloves +glowed +glower +glozed +glozes +gluers +gluing +gluish +glumes +glumly +glumps +glumpy +gluons +glutei +gluten +glycin +glycol +Glynis +glyphs +gnamma +gnarls +gnarly +gnarrs +gnawed +gnawer +gneiss +Gnetum +gnomae +gnomes +gnomic +gnomon +gnoses +gnosis +goaded +goalie +goanna +goatee +gobang +gobbet +gobble +gobies +gobiid +Gobind +goblet +goblin +goboes +gobony +Godard +goddam +godded +godets +Godiva +godown +godson +Godwin +godwit +Goethe +goetic +gofers +goffed +goffer +goggle +goggly +goglet +goidel +goings +goiter +goitre +golden +golder +Goldie +golems +golfed +golfer +gollop +Gollum +golosh +golpes +gombos +gombro +gomoku +gompas +gomuti +gomuto +gonads +goners +gonged +gonion +goober +goodie +goodly +goofed +google +googly +googol +gooier +gooley +goolie +goonda +gooney +gooroo +goosed +gooses +goosey +gopaks +gopher +gopura +gorals +goramy +Gordon +gorged +gorges +gorget +gorgia +gorgio +gorgon +gorier +gorily +goring +gormed +Goshen +goshes +goslet +gospel +gossan +gossip +gotcha +Gotham +Gothic +gotten +gouged +gouger +gouges +goujon +Gounod +gourde +gourds +gourdy +gousty +goutte +govern +Govind +gowans +gowany +Gowers +gowned +gowpen +goyish +gozzan +graals +graben +graced +graces +Gracie +graded +grader +grades +gradin +gradus +Graeae +Graeme +Gr�fin +grafts +Graham +Graiae +grails +graine +grains +grainy +graips +grakle +gramma +gramme +Grammy +grande +grands +grange +Grania +granny +Granta +Granth +grants +Granya +graped +grapes +grapey +graphs +grappa +grasps +grassy +grated +grater +grates +gratin +gratis +graved +gravel +graven +graver +graves +gravid +grayed +grayer +grazed +grazer +grazes +grease +greasy +greats +greave +grebes +greces +Greece +greeds +greedy +Greeks +Greene +greens +greeny +greese +greets +Gregor +gregos +greige +greses +Gretel +Gretna +greves +greyed +greyer +greyly +gricer +grices +grided +grides +griece +griefs +griesy +grieve +griffe +griffs +grifts +grikes +grille +grills +grilse +grimed +grimes +grimly +grinch +grinds +gringo +griots +griped +griper +gripes +grippe +grippy +Griqua +grises +grisly +grison +grists +griths +gritty +grivet +grizes +groans +groats +grocer +groggy +groins +gromas +gromet +groofs +grooly +grooms +groove +groovy +groped +groper +gropes +groser +groset +grotto +grotty +grouch +groufs +grough +ground +groups +groupy +grouse +grouts +grouty +grovel +groves +grovet +grower +growls +growly +growth +groyne +Grozny +grubby +grudge +gruels +grumes +grumly +grumps +grumpy +Grundy +grunge +grungy +grunts +grutch +grykes +grysie +Gstaad +guacos +guaiac +guanas +guango +guanin +guanos +guards +guavas +guddle +Gudrun +Gueber +Guebre +Guelfs +Guelph +guenon +guests +guffaw +guffie +guggle +guided +guider +guides +guidon +guilds +guiled +guiler +guiles +guilts +guilty +guimpe +guimps +guinea +guiros +guised +guiser +guises +guitar +guizer +gulags +gulden +gulfed +Gullah +gulled +guller +gullet +gulley +Gullit +gulped +gulper +gulphs +gumbos +gummed +gunges +gunite +gunman +gunmen +gunned +gunnel +gunner +gunsel +gunter +Guntur +gunyah +gurami +gurges +gurgle +gurjun +Gurkha +gurlet +gurned +gurnet +gurney +gurrah +gushed +gusher +gushes +guslar +guslas +gusles +guslis +gusset +Gussie +Gustav +gusted +gutful +gutrot +gutsed +gutser +guttae +guttas +gutted +gutter +guttle +gutzer +Guyana +guying +guyots +guzzle +Gwenda +Gwilym +gybing +gymbal +gymmal +gymnic +gymped +gypped +gypsum +gyrant +gyrate +gyring +gyrons +gyrose +gyrous +gyving diff --git a/com/agnibho/code/anagram/dictionary/G7.txt b/com/agnibho/code/anagram/dictionary/G7.txt new file mode 100644 index 0000000..31e6ad5 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G7.txt @@ -0,0 +1,1118 @@ +gabbard +gabbart +gabbers +gabbier +gabbing +gabbled +gabbler +gabbles +gabbros +gabelle +gabfest +gabions +gablets +Gabriel +Gaddafi +gadders +gadding +gadgets +Gadhels +Gadidae +gadling +gadoids +gadroon +gadsman +gadsmen +gadwall +Gaekwar +Gaeldom +gaffers +gaffing +Gagarin +gaggers +gagging +gaggled +gaggles +gagster +gahnite +Gaikwar +gainers +gainful +gaining +gainsay +gaiters +galabea +galabia +galages +galagos +Galahad +galanga +galatea +Galatia +galeate +Galenic +gal�res +galette +Galicia +galilee +Galileo +galiots +galipot +gallant +gallate +galleon +gallery +gallets +galleys +Gallice +gallied +gallies +galling +Gallios +galliot +gallise +gallium +gallize +gallons +galloon +gallops +gallows +galoche +galoots +galoped +galumph +galuths +Galvani +gambade +gambado +gambets +Gambian +gambier +gambist +gambits +gambled +gambler +gambles +gamboge +gambols +gambrel +gamelan +gametal +gametes +gametic +gamiest +gamines +gamings +gammers +gammier +gamming +gammons +gampish +ganched +ganches +Gandalf +ganders +Ganesha +gangers +ganging +ganglia +gangrel +gangues +gangway +gannets +ganoids +ganoine +ganseys +ganting +gantlet +gaolers +gaoling +gapings +gappier +gapping +garaged +garages +garbage +garbing +garbled +garbler +garbles +garboil +garbure +gar�ons +gardant +gardens +Gardner +garfish +gargety +gargled +gargles +garials +garigue +garjans +garland +garlics +garment +garners +garnets +Garnett +garnish +Garonne +garotte +garpike +garrans +garrets +Garrick +garring +garrons +garrote +garrots +garryas +garters +garudas +garvies +garvock +gasahol +gascons +Gascony +gaseity +gaseous +gashest +gashful +gashing +Gaskell +gaskets +gaskins +gasohol +gaspers +gasping +gassers +gassier +gassing +Gasthof +gastric +gastrin +gateaus +gateaux +gateleg +gateman +gatemen +gateway +gathers +gatings +Gatling +Gatting +Gatwick +gaucher +gauchos +gaudery +gaudier +gaudies +gaudily +gaufers +gauffer +gaufres +gaugers +gauging +Gauguin +Gaulish +gaulter +gauming +Gaumont +gaunted +gaunter +gauntly +gauntry +gaupers +gauping +gausses +gauzier +gavages +gavials +gavotte +gawkers +gawkier +gawkily +gawking +gawpers +gawping +gayness +gaysome +gazania +gazebos +gazeful +gazelle +gazette +gazooka +gazumps +gealing +gearbox +gearing +gecking +geckoes +geebung +geechee +geegaws +geezers +Gehenna +geishas +geladas +gelatin +gelders +gelding +gelidly +gelling +gemfish +Geminid +Geminis +gemmate +gemmery +gemmier +gemming +gemmule +gemsbok +genappe +genders +general +generic +geneses +genesis +genetic +genette +Genevan +genevas +Genghis +genipap +genista +genital +genitor +genizah +genlock +gennets +Genoese +genomes +genteel +gentian +gentile +gentled +gentler +gentles +gentoos +genuine +genuses +geodesy +geofact +geogeny +geogony +geoidal +geology +geomant +geordie +Georgia +georgic +Georgie +Geraint +gerbera +gerbils +gerents +gerenuk +germain +germane +germans +Germany +germens +germing +germins +gertcha +gerunds +Gervase +gessoes +gestalt +gestant +Gestapo +gestate +gesture +getaway +getters +getting +gewgaws +geysers +gharial +gharris +ghastly +ghazals +ghazels +Ghebers +Ghebres +gheraos +gherkin +ghettos +ghilgai +ghillie +ghosted +ghostly +Giacomo +giantly +giantry +giaours +Giardia +gibbers +gibbets +gibbing +gibbons +gibbose +gibbous +giblets +gibuses +giddied +giddier +giddies +giddily +gidgees +gidjees +Gielgud +gifting +gigging +giggled +giggler +giggles +giglets +giglots +gigolos +gilbert +gilders +gilding +gilgais +gilgies +Gilliam +Gillian +gillied +gillies +gilling +gillion +Gillray +giltcup +gimbals +gimlets +gimmals +gimmers +gimmick +gimping +gingall +gingals +gingers +gingery +gingham +gingili +gingiva +gingles +ginnels +ginners +ginnery +ginning +ginseng +ginshop +giocoso +gipsens +gipsied +gipsies +giraffe +girasol +girders +girding +girdled +girdler +girdles +girkins +girlies +girlish +girners +girnier +girning +Gironde +gironic +girosol +girthed +girting +gisarme +Giselle +Gissing +Gitanes +gitanos +gittern +Giulini +Giverny +givings +gizzard +glac�ed +glacial +glacier +gladded +gladden +gladder +gladdie +gladdon +gladful +gladier +gladius +glaiket +glaikit +glaired +glairin +glaived +glamors +glamour +glanced +glances +glandes +glareal +glarier +glaring +Glasgow +glassed +glassen +glasses +Glaucus +glazers +glazier +glazing +gleamed +gleaned +gleaner +glebous +gleeful +gleeing +gleeked +gleeman +gleemen +gleeted +Glencoe +Glennie +glenoid +gleying +gliadin +glibber +glidder +gliders +gliding +glimmer +glimpse +glinted +gliomas +gliosis +glisten +glister +glitter +Gliwice +gloated +gloater +globate +globing +globoid +globose +globous +globule +glommed +glonoin +gloomed +glooped +glorias +gloried +glories +glorify +glossal +glossas +glossed +glosser +glosses +Glossic +glottal +glottic +glottis +glouted +glovers +gloving +glowers +glowing +glozing +glucina +glucose +glugged +glummer +glutaei +gluteal +gluteus +glutted +glutton +glycine +glycols +glycose +glyphic +glyptic +gnarled +gnarred +gnashed +gnasher +gnashes +gnathal +gnathic +gnawers +gnawing +gnocchi +gnomish +gnomist +gnomons +gnostic +goading +goalies +Goanese +goannas +goateed +goatees +goatish +gobbets +gobbled +gobbler +gobbles +Gobelin +gobioid +goblets +goblins +goburra +goddamn +goddess +godetia +Godfrey +godhead +godhood +godless +godlier +godlike +godlily +godling +godowns +godroon +godsend +godship +godslot +godsons +Godunov +godward +godwits +goffers +goffing +goggled +goggler +goggles +goglets +Goi�nia +goitred +goitres +goldarn +goldest +goldeye +Golding +goldish +Goldwyn +golfers +golfing +goliard +Goliath +golland +gollies +gollops +gombeen +gombros +gomeral +gomeril +gomutis +gomutos +gonadal +gonadic +gondola +Goneril +gonging +gonidia +gonidic +Gonzalo +goobers +goodies +goodish +goodman +goodmen +goofier +goofily +goofing +googled +googles +googols +gooiest +gooleys +goolies +goondas +gooneys +goopier +Goorkha +gooroos +goosery +gooseys +goosier +goosies +goosing +gophers +gopuram +gopuras +Gorbals +gorcock +gorcrow +Gordian +Gordius +G�recki +gorgets +gorgias +gorging +gorgios +gorgons +goriest +gorilla +gorings +gormand +gorsedd +gorsier +gorsoon +goshawk +goslets +gosling +gospels +Gosplan +Gosport +gossans +gossips +gossipy +gossoon +Gothick +g�thite +Gotland +gouache +goug�re +gougers +gouging +goujons +goulash +gourami +gourdes +gourmet +goutfly +goutier +gouttes +governs +gowaned +gownboy +gowning +gownman +gownmen +gowpens +goyisch +gozzans +grabbed +grabber +grabble +grabens +gracile +gracing +grackle +gradate +gradely +graders +gradine +grading +gradini +gradino +gradins +gradual +grafted +grafter +Grahame +grained +grainer +Gr�inne +grakles +Grallae +gramary +gramash +grammar +grammes +grampus +Granada +granary +grandad +grandam +grandee +grander +grandly +grandma +grandpa +granger +granges +granita +granite +grannam +grannie +granola +granted +grantee +granter +grantor +granule +grapery +graphed +graphic +Graphis +grapier +graping +grapnel +grappas +grapple +grasped +grasper +grassed +grasser +grasses +graters +gratify +gratin� +grating +graunch +graupel +gravels +gravely +gravers +gravest +gravies +graving +gravity +gravlax +gravure +grayest +grayfly +graying +grayish +grazers +grazier +grazing +greased +greaser +greases +greaten +greater +greatly +greaved +greaves +Grecian +Grecism +Grecize +grecque +greeces +greened +greener +greenie +greenly +greenth +greeses +greeted +greeter +gregale +gregory +greisen +gremial +gremlin +Grenada +grenade +Grendel +Gresham +greyest +greyhen +greying +greyish +greylag +gribble +gricers +gricing +gridder +griddle +griding +grieced +grieces +grieved +griever +grieves +griffes +griffin +griffon +grifted +grifter +grigged +grigris +grilled +grilles +grilses +grimace +grimier +grimily +griming +grimmer +Grimsby +Grimwig +grinded +grinder +gringos +grinned +grinner +gripers +griping +gripped +gripper +gripple +griskin +grisled +grisons +gristle +gristly +gritted +gritter +grivets +grizzle +grizzly +groaned +groaner +Grobian +grocers +grocery +grockle +grodier +grogged +grogram +groined +Grolier +gromets +grommet +Gromyko +groomed +groomer +grooved +groover +grooves +gropers +groping +Gropius +grosers +grosets +grossed +grosser +grosses +grossly +Grotian +Grotius +grottos +Groucho +grouchy +groughs +grounds +grouped +grouper +groupie +groused +grouser +grouses +grouted +grouter +grovels +grovets +growers +growing +growled +growler +growths +groynes +grubbed +grubber +grudged +grudges +grueing +grueled +gruffer +gruffly +grufted +grumble +grumbly +grummer +grummet +grumose +grumous +grumped +grunion +grunted +grunter +gruntle +grutten +Gruy�re +gryphon +grysbok +guanaco +guangos +guanine +guaran� +guarani +guarded +guardee +guarder +guarish +guayule +gubbins +guddled +guddles +gudgeon +Guebers +Guebres +Guelfic +Guelphs +guenons +guerdon +guereza +gu�rite +guessed +guesser +guesses +guested +Guevara +guffaws +guffies +guggled +guggles +guichet +guidage +guiders +guiding +guidons +Guignol +guilder +guildry +guimped +guimpes +Guinean +guineas +guipure +guisard +guisers +guising +guitars +Guiyang +guizers +Gujarat +gulches +guldens +gulfier +gulfing +gullers +gullery +gullets +gulleys +gullied +gullies +gulling +gullish +gulpers +gulping +gumboil +gumboot +gumdrop +gummata +gummier +gumming +gummite +gummous +gumshoe +gunboat +gundies +gunfire +gunless +gunnage +Gunnell +gunnels +gunnera +gunners +gunnery +gunning +gunplay +gunport +gunroom +gunship +gunshot +gunters +Gunther +gunwale +G�nzian +guppies +guramis +gurgled +gurgles +gurjuns +Gurkhas +gurlets +gurnard +gurnets +gurneys +gurning +gurudom +guruism +gushers +gushier +gushing +guslars +gussets +Gustave +gustful +gustier +gustily +gusting +Guthrie +gutless +gutsers +gutsful +gutsier +gutsing +guttate +gutters +guttier +gutties +gutting +guttled +guttles +gutzers +guv'nor +guzzled +guzzler +guzzles +Gwalior +Gwenyth +Gwillym +gwiniad +Gwynedd +Gwyneth +gwyniad +gymbals +gymmals +gymnast +gymping +gynecia +gypping +gypsied +gypsies +gyrally +gyrated +gyrates +gyrator +gyrocar +gyronny +gyruses +gytrash diff --git a/com/agnibho/code/anagram/dictionary/G8.txt b/com/agnibho/code/anagram/dictionary/G8.txt new file mode 100644 index 0000000..39e6948 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G8.txt @@ -0,0 +1,1096 @@ +gabbards +gabbarts +gabbiest +gabblers +gabbling +gabbroic +gabbroid +gabeller +gabelles +gabfests +gabioned +Gabonese +Gabrieli +gadabout +Gadarene +gadflies +gadgetry +Gadhelic +gadroons +Gadshill +gadwalls +gadzooks +gaffings +gaggling +gagsters +gaillard +gainable +gainings +gainless +gainlier +gainsaid +gainsays +gairfowl +galabeah +galabeas +galabiah +galabias +galabieh +galabiya +galactic +Galahads +galangal +galangas +galapago +Galatian +galaxies +galbanum +galeated +Galenism +Galenist +galenite +galenoid +galettes +Galician +Galilean +galilees +gallabea +gallabia +gallants +gallates +galleass +galleons +galleria +galleted +Galliano +galliard +galliass +Gallican +galliots +gallipot +gallised +gallises +gallivat +gallized +gallizes +galloons +galloped +galloper +Galloway +gallumph +galluses +gallying +galoched +galoches +galoping +galoshed +galoshes +Galtonia +galumphs +galvanic +gamashes +gambades +gambados +gambeson +gambetta +Gambians +gambists +gamblers +gambling +gambogic +gambrels +gambroon +gamecock +gamelans +gameness +gamesman +gamesmen +gamesome +gamester +gaminess +gammadia +gammiest +gammoned +gammoner +gamyness +ganching +Gandhian +Gandhism +Gandhist +gangbang +gangings +gangland +gangliar +ganglier +gangling +ganglion +gangrels +gangrene +gangsman +gangsmen +gangster +gangways +ganister +gannetry +Ganoidei +gantlets +gantline +gantlope +gantries +Ganymede +gapeseed +gapeworm +gapingly +gappiest +garaging +garagist +Garamond +garbages +garbanzo +garblers +garbling +garboard +Garcinia +gardened +gardener +gardenia +gardyloo +garefowl +Garfield +garganey +gargling +gargoyle +garishly +garlands +garlicky +garments +garnered +garotted +garotter +garottes +garpikes +garreted +garrigue +garrison +garroted +garrotes +garrotte +gartered +garvocks +gasahols +gasalier +gaselier +gasified +gasifier +gasifies +gasiform +gaslight +gasogene +gasohols +gasolene +gasolier +gasoline +gaspings +gassiest +gassings +Gasthaus +Gasth�fe +gastness +gastraea +gastrula +gatefold +gateless +gatepost +gateways +gathered +gatherer +gauchely +gauchest +gaudiest +gauffers +gaugings +Gaullism +Gaullist +Gauloise +gaulters +Gaultier +gaumless +gauntest +gaunting +gauntlet +gauntree +gaupuses +gaussian +gauziest +Gavaskar +gavelman +gavelmen +gavelock +gavottes +gawkiest +gawpuses +gazanias +gazeboes +gazelles +gazement +gazetted +gazettes +gazogene +gazookas +gazpacho +gazumped +gazumper +gazunder +gearcase +gearless +geebungs +geechees +gefuffle +gelastic +gelatine +gelation +geldings +gelidity +gematria +geminate +Geminian +Geminids +geminous +gemmated +gemmates +gemmeous +gemmiest +gemmules +gemology +gemsboks +gemshorn +gemstone +gendarme +gendered +generale +generals +generant +generate +generous +Genesiac +genetics +genetrix +genettes +Genevese +genially +genipaps +genistas +genitals +genitive +genitors +genitrix +geniture +geniuses +genizahs +genocide +genotype +Genovese +gentians +gentiles +gentilic +gentlest +gentling +gentrice +gentries +gentrify +geocarpy +geodesic +geodetic +geofacts +Geoffrey +geognost +geognosy +geogonic +geolatry +geologer +geologic +geomancy +geometer +geometry +geomyoid +geophagy +geophone +geophyte +geoponic +geordies +Georgian +georgics +Georgina +geotaxis +geraniol +geranium +gerberas +gerbille +gerenuks +geriatry +germaine +Germanic +germinal +Geronimo +gerontic +geropiga +Gershwin +Gertrude +gesneria +gestalts +gestapos +gestated +gestates +gestural +gestured +gestures +getaways +gettable +gettered +gettings +Ghanaian +gharials +gharries +ghastful +gheraoed +gherkins +ghettoes +ghilgais +ghillied +ghillies +ghostier +ghosting +ghoulish +giambeux +giantess +giantism +gibbered +gibbeted +gibbsite +gibingly +giddiest +giddying +giftedly +giftwrap +gigabyte +gigaflop +gigantic +gigawatt +gigglers +gigglier +giggling +gilberts +gildings +gillaroo +Gillette +gillions +gillying +giltcups +giltwood +gimcrack +gimleted +gimmicks +gimmicky +gingalls +gingelly +gingered +gingerly +ginghams +gingilis +gingivae +gingival +gingkoes +ginglymi +ginhouse +ginkgoes +Ginsberg +ginsengs +ginshops +Gioconda +gipsying +giraffes +giraffid +girasole +girasols +girdings +girdlers +girdling +girlhood +girniest +Girondin +girosols +girthing +girtline +gisarmes +Gisborne +gitterns +Giuseppe +giveaway +Givenchy +gizzards +glabella +glabrate +glabrous +glac�ing +glaciate +glaciers +glacises +gladdens +gladdest +gladdies +gladding +gladdons +gladiate +gladiest +gladiole +gladioli +gladness +gladsome +glairier +glairing +glamours +glancing +glanders +glandule +glareous +glariest +glasnost +glassful +glassier +glassify +glassily +glassine +glassing +Glassite +glassman +glassmen +glaucoma +glaucous +glaziers +glaziest +glazings +Glazunov +gleamier +gleaming +gleaners +gleaning +gleeking +gleesome +gleetier +gleeting +glenoids +gliadine +glibbery +glibbest +glibness +gliddery +glidings +gliffing +glimmers +glimmery +glimpsed +glimpses +glinting +gliomata +glissade +glistens +glisters +glitches +glitters +glittery +glitzier +glitzily +gloaming +gloaters +gloating +globally +globated +globular +globules +globulet +globulin +glomming +gloomful +gloomier +gloomily +glooming +glooping +Gloriana +gloriole +gloriosa +glorious +glorying +glossary +glosseme +glossers +glossier +glossies +glossily +glossina +glossing +glouting +glowered +glowlamp +gloxinia +glozings +glucagon +glucinum +glucosic +glugging +gl�hwein +glumella +glummest +glumness +glumpier +glumpish +glutaeal +glutaeus +glutelin +glutting +gluttons +gluttony +glyceria +glyceric +glycerin +glycerol +glyceryl +glycogen +glycolic +glyconic +glycosyl +glyptics +gnarlier +gnarling +gnarring +gnashers +gnashing +gnathite +gnatling +gneissic +Gnetales +gnocchis +gnomists +gnomonic +goadsman +goadsmen +goadster +goalball +goalless +goalpost +goatherd +goatling +goatskin +goatweed +gobblers +gobbling +Gobelins +Gobiidae +goburras +godchild +godetias +godheads +godliest +godlings +godroons +godsends +godships +godspeed +godwards +Godzilla +Goebbels +goethite +goffered +gogglers +gogglier +goggling +Goidelic +goitrous +Golconda +Goldblum +goldenly +goldeyes +goldfish +goldless +goldsize +golfiana +golgotha +goliards +goliardy +Goliaths +Gollancz +gollands +golliwog +golloped +gollywog +goloshed +goloshes +gomerals +gomerils +Gomorrah +gonadial +Goncourt +gondelay +gondolas +Gondwana +goneness +gonfalon +gonfanon +gongster +gonidial +gonidium +gonocyte +Gonzales +Gonzalez +goodlier +goodness +goodtime +goodwife +goodwill +Goodwood +goodyear +goofball +goofiest +googlies +googling +goopiest +Goorkhas +goosegob +goosegog +goosiest +Goossens +gophered +gopurams +goramies +gorblimy +gorcocks +gorcrows +Gordimer +gorgeous +gorgerin +Gorgonia +gorillas +goriness +gormands +gormless +gorsedds +gorsiest +gorsoons +goshawks +goslings +gospodar +gossamer +gossiped +gossiper +gossipry +gossoons +gossypol +G�teborg +gouaches +goujeers +gouramis +gourmand +gourmets +goutiest +goutweed +goutwort +governed +governor +gownboys +gownsman +gownsmen +Graafian +grabbers +grabbing +grabbled +grabbler +grabbles +Gracchus +graceful +gracioso +gracious +grackles +gradable +gradated +gradates +gradatim +gradient +gradines +graduals +graduand +graduate +graduses +Graecise +Graecism +Graecize +graffiti +graffito +grafters +grafting +grainage +grainers +Grainger +grainier +graining +gralloch +gramarye +gramercy +grammars +Grammies +Grampian +Granados +grandads +grandams +granddad +grandees +grandest +grandeur +grandmas +grandpas +grandson +grangers +Granicus +granitic +grannams +grannies +grantees +granters +Grantham +granting +grantors +granular +granules +grapheme +graphics +graphing +graphite +graphium +grapiest +grapnels +grappled +grapples +Grasmere +graspers +grasping +grassers +grassier +grassing +grateful +gratin�e +gratings +grattoir +gratuity +Grauniad +graupels +gravamen +gravelly +gravings +gravitas +graviton +gravures +grayling +grayness +graziers +grazings +grazioso +greasers +greasier +greasies +greasily +greasing +greatens +greatest +greaving +Grecized +Grecizes +grecques +greedier +greedily +greegree +Greekdom +Greeking +Greekish +greenery +greenest +greenfly +greenier +greenies +greening +greenish +greenlet +Greenock +greesing +greeters +greeting +greffier +gregales +gregatim +gremials +gremlins +grenades +Grenfell +Grenoble +gressing +greyhens +greylags +greyness +gribbles +gridders +griddles +gridelin +gridiron +gridlock +griefful +Grierson +grievers +grieving +grievous +griffins +Griffith +griffons +grifters +grifting +grigging +grillade +grillage +grilling +grimaced +grimaces +Grimaldi +grimiest +grimmest +grimness +grimoire +Grimshaw +grinches +grinders +grindery +grinding +grinners +grinning +grippers +grippier +gripping +gripples +gripsack +Griselda +griseous +grisette +grisgris +griskins +grislier +gristles +gritters +grittier +gritting +Grizelda +grizzled +grizzler +grizzles +groaners +groanful +groaning +grockles +grodiest +groggery +groggier +groggily +grogging +groining +grommets +gromwell +groomers +grooming +groovers +groovier +grooving +grosbeak +groschen +grossart +grossest +grossing +grottier +grottoes +grouched +grouches +grounded +grounden +grounder +groupage +groupers +groupies +grouping +groupist +grouplet +grousers +grousing +grouters +groutier +grouting +groveled +groveler +growable +growings +growlers +growlery +growlier +growling +grubbers +grubbier +grubbily +grubbing +grudging +grueling +gruelled +gruesome +gruffest +gruffish +grumbled +grumbler +grumbles +grummest +grummets +grumness +grumphie +grumpier +grumpily +grumping +Grundies +grungier +grunions +grunters +grunting +gruntled +gruntles +grutched +grutches +gryphons +grysboks +guacharo +guaiacum +guanacos +guaran�s +guaranis +guaranty +guardage +guardant +guardees +guarders +guardian +guarding +Guarneri +guayules +guddling +gudesire +gudgeons +guerdons +guerezas +gu�ridon +guerilla +gu�rites +Guernica +guernsey +guessers +guessing +guesting +guffawed +guggling +guichets +guidable +guidance +guidings +guilders +guileful +guiltier +guiltily +guimbard +guimping +Guineans +Guinness +guipures +guisards +Gujarati +Gujerati +gulfiest +gulfweed +gullable +gulleyed +gullible +Gulliver +gulosity +gumboils +gumboots +gumdrops +Gummidge +gummiest +gummosis +gumption +gumshoed +gumshoes +gunboats +gunfight +gunfires +gunflint +gunhouse +gunlayer +gunmaker +gunmetal +gunnages +gunneras +gunnings +gunplays +gunpoint +gunports +gunrooms +gunships +gunshots +gunsmith +gunstick +gunstock +gunstone +gunwales +gurdwara +gurgling +gurgoyle +Gurkhali +Gurmukhi +gurnards +guruship +gushiest +gusseted +gustable +Gustavus +gustiest +gutsiest +guttated +guttered +guttiest +guttling +guttural +guv'nors +Guyanese +guzzlers +guzzling +gwiniads +gwyniads +gymkhana +gymnasia +gymnasic +gymnasts +gynaecea +gynaecia +gynandry +gynecium +gynecoid +gypseous +gypsydom +gypsying +gypsyism +gyrating +gyration +gyrators +gyratory +gyrocars +gyrodyne +gyroidal +gyrolite +gyrostat diff --git a/com/agnibho/code/anagram/dictionary/G9.txt b/com/agnibho/code/anagram/dictionary/G9.txt new file mode 100644 index 0000000..872ef33 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/G9.txt @@ -0,0 +1,939 @@ +gabardine +gabblings +gabellers +gaberdine +gabionade +gabionage +Gabrielle +gadabouts +gadgeteer +gadrooned +gaelicise +gaelicism +gaelicize +Gaeltacht +gagglings +gaillards +gainfully +gainliest +gainsayer +gairfowls +Gaitskell +galabeahs +galabiahs +galabiehs +galabiyah +galabiyas +galactose +galangals +galantine +galapagos +Galatians +Galbraith +galengale +Galenical +Galicians +galingale +galiongee +gallabeah +gallabeas +gallabiah +gallabias +gallabieh +gallabiya +gallantly +gallantry +gallerias +galleried +galleries +galleting +galliards +gallicise +gallicism +Gallicize +gallinazo +gallingly +gallinule +Gallipoli +gallipots +gallising +gallisise +gallisize +gallivant +gallivats +galliwasp +gallizing +gallonage +gallooned +gallopade +gallopers +galloping +gallowses +gallumphs +galoching +galoshing +galravage +Galtonias +galumphed +galumpher +galvanise +galvanism +galvanist +galvanize +Galwegian +gambadoes +gambesons +gambogian +gambolled +gamecocks +gamesters +gaminerie +gammadion +gammation +Gammexane +gammoners +gammoning +ganderism +Gandhiism +gangbangs +gangboard +ganglands +gangliate +gangliest +ganglions +gangplank +gangrened +gangrenes +gangsters +gannister +gantlines +gapeseeds +gapeworms +garagings +garagiste +garagists +garbanzos +garblings +garboards +garbology +gardeners +gardenias +gardening +garderobe +gardyloos +garefowls +garfishes +Garfunkel +garganeys +Gargantua +gargarise +gargarism +gargarize +gargoyles +garibaldi +garlanded +garlandry +garmented +garnering +garnished +garnishee +garnisher +garnishes +garnishry +garniture +garotters +garotting +garreteer +garrisons +garroting +garrotted +garrotter +garrottes +garrulity +garrulous +garryowen +gartering +gasaliers +Gascoigne +Gasconade +Gasconism +gaseliers +gasifiers +gasifying +gaslights +gasoliers +gasometer +gasometry +gaspereau +gaspiness +gaspingly +gassiness +Gasth�use +gastraeas +gastraeum +gastritis +gastropod +gastrulas +gatecrash +gatefolds +gatehouse +gateposts +Gateshead +gatherers +gathering +gaucherie +gauchesco +gaudeamus +gaudiness +gauffered +Gaugamela +gaugeable +gauleiter +Gauloises +gauntlets +gauntness +gauntrees +gauntries +gauziness +gavelkind +gavelocks +gawkihood +gawkiness +gazetteer +gazetting +Gaziantep +gazogenes +gazpachos +gazumpers +gazumping +gazunders +gearboxes +gearcases +gearstick +gefuffled +gefuffles +gelidness +gelignite +Gelligaer +gelsemine +Gelsemium +gemfishes +geminated +geminates +Geminians +gemmating +gemmation +gemmative +gemmology +gemstones +gem�tlich +gendarmes +gendering +genealogy +generable +generalia +generally +generants +generated +generates +generator +generical +Genesitic +genetical +Genevieve +genialise +geniality +genialize +genitalia +genitalic +genitival +genitives +genocidal +genocides +genotypes +genotypic +genteeler +genteelly +gentilise +gentilish +gentilism +gentility +gentilize +gentleman +gentlemen +genuflect +genuinely +geocarpic +geodesist +geodetics +geognosis +geognosts +geography +geologers +geologian +geologise +geologist +geologize +geomancer +geomantic +geometers +geometric +geometrid +Geomyidae +geophilic +geophones +geophytes +geophytic +geoponics +georgette +Georgiana +Georgians +geosphere +geostatic +geotactic +geotropic +Geraldine +geraniums +gerbilles +gerfalcon +geriatric +Gericault +germander +germanely +Germanise +Germanish +Germanism +Germanist +germanium +Germanize +germanous +germicide +germinant +germinate +Gerontion +geropigas +gerundial +gerundive +gesnerias +gessamine +gestating +gestation +gestative +gestatory +gesturing +gettering +geyserite +Ghanaians +ghastlier +gheraoing +ghettoise +ghettoize +Ghibeline +ghillying +Ghislaine +ghostiest +ghostlier +gianthood +giantship +gibbering +gibberish +gibbeting +Gibbonian +gibbosity +gibbously +Gibeonite +Gibraltar +giddiness +giftwraps +gigabytes +gigaflops +gigahertz +gigantean +gigantism +gigawatts +giggliest +gigglings +gigmanity +Gilgamesh +gillaroos +Gillespie +gillflirt +gilravage +gilsonite +gimcracks +gimleting +gimmalled +gimmicked +gimmickry +gingerade +gingering +gingerous +ginglymus +ginhouses +ginneries +ginormous +Giorgione +giraffine +giraffoid +girandola +girandole +girasoles +girlhoods +girlishly +Girondism +Girondist +girthline +girtlines +gismology +giveaways +givenness +gizmology +glabellae +glabellar +glacially +glaciated +glaciates +gladdened +gladiator +gladioles +gladiolus +gladiuses +gladsomer +Gladstone +glaireous +glairiest +Glamorgan +glamorise +glamorize +glamorous +glamoured +glancings +glandered +glandular +glandules +glaringly +glassfuls +glassiest +glasslike +glassware +glasswork +glasswort +gleamiest +gleamings +gleanings +gleefully +gleetiest +Glendower +glengarry +Glenlivet +glenoidal +glidingly +gliffings +glimmered +glimpsing +glissaded +glissades +glissandi +glissando +glistened +glistered +glittered +glitziest +gloamings +globalise +globalism +globalize +globosity +globulets +globulite +globulous +glomerate +glomerule +glomeruli +gloomiest +gloomings +glorified +glorifies +glorioles +gloriosas +glossator +glossemes +glossiest +glossinas +glossitis +glottides +glottises +glowering +glowingly +glowlamps +gloxinias +glucinium +glucoside +glueyness +glumellas +glumpiest +glutamate +glutamine +glutelins +glutenous +glutinous +glyceride +glycerine +glycocoll +glycollic +glyconics +glycoside +Glyptodon +gmelinite +gnarliest +gnathites +gnathonic +gnatlings +gneissoid +gneissose +Gnetaceae +gnomonics +gnostical +goadsters +goalmouth +goalposts +goatherds +goatlings +goatskins +goatweeds +goddamned +goddesses +godfather +godlessly +godliness +godmother +godparent +godrooned +godspeeds +goffering +goggliest +Golcondas +goldcrest +goldfield +goldfinch +goldfinny +goldminer +goldsinny +goldsmith +goldspink +goldstick +goldstone +golgothas +goliardic +golliwogs +golloping +gollywogs +golomynka +goloshing +gomphoses +gomphosis +gondolier +gonfalons +gonfanons +Gongorism +Gongorist +gongsters +goniatite +gonococci +gonocytes +gonophore +gonorrhea +goodiness +goodliest +goodwives +goodyears +goofballs +goofiness +Goolagong +Goonhilly +goosander +goosefoot +goosegobs +goosegogs +gooseries +gophering +Gorbachev +Gorbachov +gorblimey +gorgerins +gorgoneia +gorgonian +gorgonise +gorgonize +gorillian +gorilline +gorilloid +goslarite +gospelise +gospelize +gospeller +gospodars +gossamers +gossamery +gossipers +gossiping +gossypine +Gossypium +Gothamist +Gothamite +gothicise +Gothicism +Gothicist +gothicize +Gottfried +G�ttingen +goulashes +gourmands +goustrous +goutflies +goutiness +goutweeds +goutworts +governess +governing +governors +grabblers +grabbling +Graceland +graceless +gracility +graciosos +gradables +gradating +gradation +gradatory +Gradgrind +gradients +gradually +graduands +graduated +graduates +graduator +Graecised +Graecises +Graecized +Graecizes +graftings +grainiest +grainings +grallochs +gramashes +Gramineae +grammatic +grampuses +granaries +grandaddy +granddads +grandiose +grandioso +grandmama +grandness +grandpapa +grandsire +grandsons +granitise +granitite +granitize +granitoid +granivore +grantable +granulary +granulate +granulite +granuloma +granulose +granulous +Granville +grapeless +graperies +grapeseed +grapeshot +grapetree +grapevine +graphemes +graphemic +graphical +graphicly +graphitic +graphiums +Grappelli +grappling +graspable +graspless +grasshook +grassiest +grassings +grassland +graticule +gratified +gratifier +gratifies +gratinate +gratingly +gratitude +grattoirs +gratulant +gratulate +graunched +grauncher +graunches +gravadlax +gravamina +graveless +gravelled +graveness +Gravesend +graveyard +gravidity +gravitate +gravities +gravitons +graybeard +graylings +graywacke +greasiest +greatcoat +greatened +greatness +Grecizing +greediest +greegrees +Greekless +Greekling +Greenaway +greenback +greengage +greenhand +greenhead +greenhorn +greeniest +greenings +Greenland +greenlets +greenmail +greenness +greenroom +greensand +greensick +greenwash +greenweed +Greenwich +greenwood +greetings +greffiers +gregarian +Gregarina +gregarine +Gregorian +gregories +gremolata +Grenadian +grenadier +grenadine +Grenville +grewhound +greybeard +greyhound +Greystoke +greystone +greywacke +gridelins +gridirons +griefless +grievance +Griffiths +grillades +grillages +grillings +grillwork +grimacing +grimalkin +griminess +grimoires +grindings +gripingly +grippiest +gripsacks +grisaille +grisettes +grisliest +gristlier +gritstone +grittiest +grizzlers +grizzlier +grizzlies +grizzling +groanings +groceries +groggiest +groinings +gromwells +Groningen +groomsman +groomsmen +grooviest +gropingly +grosbeaks +groschens +grosgrain +grossarts +Grossmith +grossness +grossular +Grosvenor +grotesque +grottiest +grouchier +grouchily +grouching +groundage +grounders +grounding +groundman +groundmen +groundsel +groupable +groupages +groupings +groupists +groupware +groutiest +groutings +grovelers +groveling +grovelled +groveller +growliest +growlings +growthist +grubbiest +grudgeful +grudgings +gruelings +gruelling +gruesomer +gruffness +grumblers +grumbling +grumphies +grumpiest +Grundyism +Gr�newald +grungiest +gruntings +gruntling +gruppetti +gruppetto +grutching +guacamole +guacharos +guaiacums +Guamanian +guanazolo +Guangzhou +guaranies +guarantee +guarantor +guardable +guardedly +guardians +guardless +guardsman +guardsmen +Guarneris +Guarnieri +Guatemala +Guayaquil +gubbinses +gudesires +guerdoned +gu�ridons +guerillas +guernseys +guerrilla +guessable +guessings +guesswork +guestwise +guffawing +guideless +guideline +guideship +Guildford +guildhall +guildries +guildsman +guileless +guillemot +guilloche +Guillotin +guiltiest +guiltless +guimbards +Guinevere +guitarist +gulfweeds +gulleying +gumdigger +gummatous +gumminess +gummosity +gumptious +gumshield +guncotton +gunfights +gunflints +gunfought +gunlayers +gunmakers +gunmetals +gunneries +gunpowder +gunrunner +gunsmiths +gunsticks +gunstocks +Gurdjieff +gurdwaras +gurgoyles +gushingly +gusseting +gustation +gustative +gustatory +gustiness +gutbucket +Gutenberg +gutsiness +guttation +guttering +gutturals +Gwendolen +gymkhanas +gymnasial +gymnasien +gymnasium +gymnastic +gymnosoph +gynaeceum +gynaecium +gynaecoid +gynocracy +gynoecium +gynophore +gypsywort +gyrations +gyrfalcon +gyrodynes +gyromancy +gyroplane +gyroscope +gyrostats +gyrovague +gytrashes diff --git a/com/agnibho/code/anagram/dictionary/H1.txt b/com/agnibho/code/anagram/dictionary/H1.txt new file mode 100644 index 0000000..6e9f0da --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H1.txt @@ -0,0 +1 @@ +h diff --git a/com/agnibho/code/anagram/dictionary/H10.txt b/com/agnibho/code/anagram/dictionary/H10.txt new file mode 100644 index 0000000..d3ff74f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H10.txt @@ -0,0 +1,932 @@ +haanepoots +haberdines +habergeons +habilatory +habiliment +habilitate +habitation +habitually +habituated +habituates +hackamores +hackbuteer +hackmatack +hackneying +hackneyman +hackneymen +hacquetons +hadrosaurs +Haemanthus +haematinic +haematomas +haematosis +haematuria +haemoconia +haemocytes +haemolysis +haemolytic +haemostats +hagberries +hagiocracy +hagiolater +hagiolatry +hagiologic +hagioscope +hailstones +haircloths +hairspring +hairstreak +hairstyles +Hakenkreuz +halberdier +halfpences +halieutics +Haliotidae +hallalling +halleluiah +hallelujah +hallmarked +Hallowe'en +halloysite +hallstands +halobionts +halobiotic +halocarbon +halogenate +halogenous +halophobes +halophytes +halophytic +hamadryads +hamburgers +hamburgher +hamesucken +hamfatters +Hammerfest +hammerhead +hammerings +hammerless +hammerlock +hamshackle +hamstrings +handbagged +handbrakes +handcrafts +handcuffed +handedness +handfasted +handicraft +handicuffs +handiworks +handlebars +handmaiden +handselled +handshakes +handsomely +handsomest +handspikes +handspring +handstaffs +handstands +handstaves +handsturns +handtowels +handworked +hankerings +Hanoverian +hansardise +hansardize +hanselling +ha'pennies +haphazards +ha'p'orths +happenings +haranguers +haranguing +harassedly +harassings +harassment +harbingers +harborages +harborless +harbourage +harbourers +harbouring +hardbacked +hardboards +hardcovers +hardiments +hardliners +hardnesses +Hargreaves +hariolated +hariolates +harlequins +harmattans +harmlessly +harmonical +harmonicas +harmonicon +harmonious +harmonised +harmoniser +harmonises +harmonists +harmoniums +harmonized +harmonizer +harmonizes +harmosties +Harmsworth +harnessing +harpooneer +harpooners +harpooning +Harrisburg +harrumphed +harshening +hartebeest +Hartlepool +hartshorns +haruspical +haruspices +harvesters +harvesting +harvestman +harvestmen +hatbrushes +hatchbacks +hatchelled +hatcheries +hatchetman +hatchetmen +hatchlings +hatchments +hatemonger +hateworthy +Hattersley +haughtiest +hauntingly +hausfrauen +haustellum +haustorium +haversacks +haversines +hawfinches +hawksbills +hawsepipes +haymakings +hazardable +headachier +headbanged +headbanger +headboards +headchairs +headcloths +headframes +headguards +headhunted +headhunter +Headingley +headlights +headliners +headlining +headmaster +headphones +headpieces +headshakes +headsheets +headspring +headsquare +headstalls +headstands +headsticks +headstocks +headstones +headstrong +headwaiter +headwaters +headworker +healthcare +healthiest +healthless +healthsome +heapsteads +hearkeners +hearkening +heartaches +heartbreak +heartbroke +heartening +hearthrugs +heartiness +heartlands +heartseeds +heartwater +heartwoods +heatedness +Heathcliff +heathcocks +heathendom +heathenise +heathenish +heathenism +heathenize +heatstroke +heavenlier +heavenward +hebdomadal +hebdomadar +hebdomader +hebetating +hebetation +Hebraicism +Hebraising +Hebraistic +Hebraizing +hectically +hectograms +hectograph +hectolitre +hectometre +hectorship +hectostere +hedgebills +hedonistic +heedlessly +heffalumps +hegemonial +hegemonies +hegemonism +hegemonist +Heidelberg +heightened +Heisenberg +heliacally +Helianthus +helicoidal +Heliconian +helicopter +helidromes +Heligoland +heliograph +heliolater +heliolatry +heliometer +heliophyte +Heliopolis +helioscope +heliostats +heliotaxis +heliotrope +heliotropy +heliotypes +heliotypic +heliozoans +helipilots +heliscoops +heliskiers +heliskiing +hellbender +hellebores +hellenised +hellenises +hellenized +hellenizes +Hellespont +hellhounds +hellraiser +helminthic +helplessly +hemangioma +hematology +hemianopia +hemichorda +hemicrania +hemicyclic +hemihedral +hemihedron +hemionuses +hemiplegia +hemiplegic +hemipteral +hemipteran +hemisphere +hemistichs +hemitropal +hemitropes +hemitropic +hemizygous +hemoglobin +hemophilia +hemorrhage +hempbushes +henceforth +henchwoman +henchwomen +hendecagon +henotheism +henotheist +henpeckery +henpecking +heortology +hepatising +hepatizing +hepatology +heptachlor +heptachord +heptaglots +heptagonal +Heptagynia +Heptameron +heptameter +Heptandria +heptapodic +heptarchic +Heptateuch +heptathlon +heptatonic +Heraclidan +Heraclitus +heraldship +herbaceous +herbalists +herbarians +herbariums +Herbartian +herbicidal +herbicides +herbivores +herborised +herborises +herborists +herborized +herborizes +hereabouts +hereditary +hereditist +heresiarch +hereticate +heretofore +heriotable +heritrices +heritrixes +hermetical +hermitages +hermitical +herniotomy +heroically +heroicness +heronshaws +Herrenvolk +herringers +Herrnhuter +hesitances +hesitantly +hesitating +hesitation +hesitative +hesitators +hesitatory +Hesperides +hetaerisms +hetaerists +hetairisms +hetairists +Heterocera +heterocont +heterodont +heterodoxy +heterodyne +heterogamy +heterogeny +heterogony +heterokont +heterology +heteronomy +heteronyms +Heteropoda +heteropods +heterotaxy +hetmanates +hetmanship +heulandite +heuristics +hexachords +hexactinal +hexaemeron +hexagynian +hexagynous +hexahedral +hexahedron +hexamerous +hexameters +hexametric +hexandrian +hexandrous +hexaplaric +hexaploids +hexapodies +hexastichs +hexastyles +hexavalent +hibernacle +hibernated +hibernates +hibernator +hibernised +hibernises +hibernized +hibernizes +hiccoughed +hiccupping +hidalgoish +hidalgoism +hiddenmost +hiddenness +hierarchal +hierarchic +hieraticas +hierocracy +hierocrats +hierodules +hieroglyph +hierograms +hierograph +hierolatry +hierologic +hieromancy +Hieronymic +Hieronymus +hierophant +hieroscopy +hierurgies +highballed +highbinder +highermost +highjacked +highjacker +Highlander +highlights +highnesses +hightailed +highwayman +highwaymen +Hildebrand +Hildesheim +Hillingdon +hillwalker +Himyaritic +Hindenburg +hinderance +hinderlins +hindermost +hindrances +hindsights +Hinduising +Hinduizing +Hindustani +hinterland +Hipparchus +hippiatric +hippocampi +Hippocrene +hippodrome +hippogriff +hippogryph +Hippolytus +hippomanes +hippophagy +hippophile +hippophobe +hippurites +hippuritic +hirselling +hirudinean +hirudinoid +hirudinous +Hispaniola +histamines +histidines +histiocyte +histiology +histoblast +histogenic +histograms +histologic +histolysis +histolytic +historians +historical +histrionic +hithermost +hitherside +hitherward +Hitlerites +hoarhounds +hoarseness +hoarsening +hobblingly +hobbyhorse +hobgoblins +hobnailing +hobnobbing +Hochheimer +Hockenheim +hodgepodge +hodmandods +hodographs +hodometers +hodoscopes +holderbats +holidaying +holinesses +Hollanders +Hollandish +hollandses +hollowares +hollowness +hollyhocks +Holmesians +holocausts +holodiscus +holoenzyme +Holofernes +holographs +holography +holohedral +holohedron +holophotal +holophotes +holophrase +holophytes +holophytic +holosteric +holystoned +holystones +homaloidal +homebuyers +homecomers +homecoming +homecrafts +homeliness +homemakers +homemaking +homeomeric +homeomorph +homeopaths +homeopathy +homeowners +homesteads +homeworker +homiletics +homoblasty +homocercal +homochromy +homocyclic +homoeomery +homoeopath +homoerotic +homogamous +homogenate +homogenise +homogenize +homogenous +homografts +homographs +homologate +homologise +homologize +homologous +homologues +homomorphs +homonymity +homonymous +homoousian +homophiles +homophobes +homophobia +homophobic +homophones +homophonic +homoplasmy +homopteran +Homorelaps +homosexual +homotaxial +homothally +homotonous +homousians +homozygote +homozygous +homuncular +homuncules +homunculus +honeybunch +honeycombs +honeymonth +honeymoons +honoraries +honorarily +honorarium +honourable +honourably +honourless +hoodwinked +hoodwinker +hoofprints +hookedness +hootananny +hootenanny +hootnannie +hopelessly +hopsacking +hordeolums +horehounds +horizontal +hornblende +Hornblower +hornfelses +hornstones +hornwracks +hornyheads +horography +horologers +horologist +horologium +horoscopes +horoscopic +horrendous +horridness +horrifying +horsebacks +horseflesh +horseflies +horsehairs +horsehides +horselaugh +horsemeats +horsemints +horseplays +horsepower +horseshoer +horseshoes +horsetails +horsewhips +horsewoman +horsewomen +hortations +hospitable +hospitably +hospitaler +hospitiums +hostellers +hostelling +hostelries +hotchpotch +hotfooting +hottentots +hourplates +housebound +housecoats +housecraft +houseguest +households +houselling +housemaids +houseplant +housetrain +housewives +Houyhnhnms +hovercraft +hoveringly +hoverports +hovertrain +Howleglass +howsomever +howtowdies +hoydenhood +huckabacks +huckstered +huckstress +Huddleston +hullabaloo +humaneness +humanisers +humanising +humanistic +humanities +humanizers +humanizing +Humberside +humbleness +humblingly +humbuggers +humbuggery +humbugging +humdingers +humdudgeon +humectants +humectated +humectates +humectives +humgruffin +humidified +humidifier +humidifies +humidistat +humiliated +humiliates +humiliator +humoralism +humoralist +humoresque +humoristic +humorously +humourless +humoursome +humpbacked +hunchbacks +hundreders +hundredths +Hungarians +hungriness +Huntingdon +Huntington +huntresses +Huntsville +hupaithric +hurricanes +hurryingly +hurtlessly +husbandage +husbanding +husbandman +husbandmen +hushabying +Hyacinthus +hyalinised +hyalinises +hyalinized +hyalinizes +hyalomelan +hyalonemas +hyalophane +hyaloplasm +hybridised +hybridiser +hybridises +hybridized +hybridizer +hybridizes +hydathodes +hydragogue +hydrangeas +hydraulics +hydrazides +hydrically +hydroceles +hydrochore +hydrofoils +hydrograph +hydrologic +hydrolysed +hydrolyses +hydrolysis +hydrolytes +hydrolytic +hydrolyzed +hydrolyzes +hydromancy +hydromania +hydrometer +hydrometry +hydronauts +hydropathy +hydrophane +hydrophily +hydrophone +hydrophyte +hydroplane +hydropolyp +hydroponic +hydropower +hydropults +hydroscope +hydrosomal +hydrosomes +hydrospace +hydrostats +hydrotaxis +hydrotheca +hydrovanes +hydroxides +hydrozoans +hydrozoons +hyetograph +hyetometer +hygienists +hygristors +hygrochasy +hygrodeiks +hygrograph +hygrometer +hygrometry +hygrophobe +hygrophyte +hygroscope +hygrostats +hylophytes +hylotheism +hylotheist +hylotomous +hylozoical +hylozoists +hymnodists +hyoplastra +Hyoscyamus +hypabyssal +hypaethral +hypaethron +hypalgesia +hypalgesic +hypallages +hypanthium +hyperacute +hyperaemia +hyperaemic +hyperbaric +hyperbatic +hyperbaton +hyperbolas +hyperboles +hyperbolic +hypercubes +hyperdulia +hyperfocal +hypergolic +hyperlinks +hypermania +hypermanic +hypermarts +hypermedia +hypersonic +hyperspace +hypertonic +hyphenated +hyphenates +hyphenised +hyphenises +hyphenized +hyphenizes +hypnagogic +hypnogenic +hypnogogic +hypnoidise +hypnoidize +hypnotised +hypnotiser +hypnotises +hypnotists +hypnotized +hypnotizer +hypnotizes +hypoblasts +hypocausts +hypocentre +hypocorism +hypocotyls +hypocrites +hypocritic +hypodermal +hypodermas +hypodermic +hypodermis +hypodorian +hypogaeous +hypogynous +hypolydian +hypophyses +hypophysis +hypoplasia +hypostases +hypostasis +hypostatic +hypostress +hypostyles +hypotactic +hypotenuse +hypotheses +hypothesis +hypothetic +hypoxaemia +hypoxaemic +hypsometer +hypsometry +hypsophobe +hypsophyll +Hyracoidea +hysteresis +hysteretic +hysterical +hystericky diff --git a/com/agnibho/code/anagram/dictionary/H11.txt b/com/agnibho/code/anagram/dictionary/H11.txt new file mode 100644 index 0000000..d366dbb --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H11.txt @@ -0,0 +1,720 @@ +haberdasher +habiliments +habilitated +habilitates +habilitator +habitations +habituating +habituation +habitudinal +hackberries +hackbuteers +hackmatacks +haemangioma +haematinics +haematocele +haematocrit +haematology +haemocyanin +haemoglobin +haemophilia +haemoptysis +haemorrhage +haemorrhoid +haemostasis +haemostatic +Haggadistic +haggardness +hagiarchies +Hagiographa +hagiography +hagiolaters +hagiologies +hagiologist +hagioscopes +hagioscopic +hairdresser +hairsprings +hairstreaks +hairstylist +halberdiers +halfpennies +h�lleflinta +halleluiahs +hallelujahs +hallmarking +hallucinate +halobiontic +halogenated +halogenates +halophilous +hamadryades +hamadryases +hamfattered +Hamiltonian +hammercloth +hammerheads +hammerlocks +Hammersmith +Hammerstein +hamshackled +hamshackles +hamstringed +handbagging +handcrafted +handcuffing +handfasting +handicapped +handicapper +handicrafts +handkercher +handmaidens +handselling +handshaking +handsprings +handwriting +handwritten +handwrought +hangability +hansardised +hansardises +hansardized +hansardizes +haphazardly +haplessness +haplography +haptotropic +harassingly +harassments +harbingered +harbourages +harbourless +Hardecanute +hardgrasses +Hardicanute +hardwareman +hardwaremen +hariolating +hariolation +harlequined +harmfulness +harmonicons +harmoniphon +harmonisers +harmonising +harmonistic +harmonizers +harmonizing +harmonogram +harpooneers +harpsichord +harquebuses +harrowingly +harrumphing +hartebeests +haruspicate +haruspicies +hatchelling +hatchettite +hatefulness +hatemongers +hatlessness +haughtiness +haustellate +hawkishness +Hawthornden +hazardously +headachiest +headbangers +headbanging +headborough +headhunters +headhunting +headmasters +headquarter +headreached +headreaches +headscarves +headsprings +headsquares +headwaiters +headworkers +healthfully +healthiness +heartbreaks +heartbroken +heartlessly +heartstring +heathenesse +heathenised +heathenises +heathenized +heathenizes +heavenliest +heavenwards +heavyweight +hebdomadars +hebdomadary +hebephrenia +hebephrenic +hebetations +Hebraically +heckelphone +hectogramme +hectographs +hectolitres +hectometres +hectorships +hectosteres +heedfulness +Hegelianism +hegemonical +hegemonists +heightening +heinousness +Heldentenor +helichrysum +helicograph +helicopters +heliochrome +heliochromy +heliographs +heliography +heliolaters +heliolithic +heliometers +heliometric +heliophobic +heliophytes +helioscopes +helioscopic +heliotropes +heliotropic +heliotropin +helispheric +hellbenders +helleborine +hellenising +Hellenistic +hellenizing +hellgramite +hellishness +hellraisers +helminthoid +helminthous +helpfulness +hemangiomas +hematologic +hemeralopia +hemianopsia +hemianoptic +hemihedrism +hemihedrons +hemimorphic +hemipterous +hemispheres +hemispheric +hemistichal +hemitropous +hemophiliac +hemorrhaged +hemorrhages +hemorrhagic +hemorrhoids +hemstitched +hemstitcher +hemstitches +henchperson +hendecagons +henotheists +hepatectomy +hepatoscopy +Hepplewhite +heptachords +heptagynous +heptahedron +heptamerous +heptameters +heptandrous +heptapodies +heptarchies +heptarchist +heptathlete +heptathlons +heptavalent +Heracleidan +Heraclitean +heraldships +herbivorous +herborising +herborizing +Hercegovina +hercogamous +Herculaneum +hereditable +hereinafter +heresiarchs +heresiology +heretically +hereticated +hereticates +heritresses +hermeneutic +hermeticity +hermitesses +herpetology +Hertzsprung +Herzegovina +hesitancies +hesitations +hesperidium +Hesperiidae +hesychastic +hetaerismic +hetairismic +heterocercy +heteroclite +heteroconts +heteroecism +heterograft +heterokonts +heteropolar +Heteroptera +heteroscian +heterospory +heterostyly +heterotaxis +heterotopia +heterotopic +heterotroph +heterotypic +heterousian +hetmanships +hexadecimal +hexaemerons +hexagonally +hexahedrons +hexametrise +hexametrist +hexametrize +hexaplarian +hexastichal +hexateuchal +hibernacles +hibernacula +hibernating +hibernation +hibernators +hibernicise +Hibernicism +hibernicize +hibernising +hibernizing +hiccoughing +hideousness +hierarchies +hierarchism +hierocratic +hieroglyphs +hierographs +hierography +hierologist +Hieronymian +Hieronymite +hierophants +hierophobia +hierophobic +hierurgical +highballing +highbrowism +highjackers +highjacking +Highlanders +Highlandman +Highlandmen +highlighted +highlighter +hightailing +highwrought +hilariously +hillwalkers +hillwalking +hindberries +hinderances +hinderingly +hinderlands +hinderlings +hindquarter +Hindustanis +hinterlands +hippeastrum +hippiatrics +hippiatrist +hippocampal +hippocampus +hippocrases +Hippocrates +Hippocratic +hippodamist +hippodamous +hippodromes +hippodromic +hippogriffs +hippogryphs +hippologist +hippophiles +hippophobes +hippopotami +hircocervus +hirsuteness +hirudineans +hispanicise +hispanicism +hispanicize +histaminase +histiocytic +histoblasts +histologist +historiated +historicise +historicism +historicist +historicity +historicize +historiette +historified +historifies +histrionics +histrionism +hitherwards +Hobbistical +hobbledehoy +hobbyhorses +hobgoblinry +hobnobbings +hodgepodges +hoggishness +holobenthic +holoblastic +holocaustal +holocaustic +holoenzymes +holographic +holohedrism +holohedrons +holophrases +holophytism +holothurian +holystoning +homecomings +homeomerous +homeomorphs +homeomorphy +homeopathic +homeostasis +homeostatic +homesteader +homeworking +homiletical +homoblastic +homocentric +homoeomeric +homoeomorph +homoeopaths +homoeopathy +homoerotism +homogametic +homogenates +homogeneity +homogeneous +homogenesis +homogenetic +homogenised +homogeniser +homogenises +homogenized +homogenizer +homogenizes +homoiousian +homologated +homologates +homological +homologised +homologises +homologized +homologizes +homomorphic +homoousians +homophonies +homophonous +homoplasies +homoplastic +homopolymer +homopterous +homosexuals +homosporous +homothallic +homothermal +homothermic +homozygosis +homozygotes +homozygotic +honeycombed +honeymooned +honeymooner +honeysuckle +honorariums +honorifical +hoodwinkers +hoodwinking +hooliganism +hootanannie +hootenannie +hootnannies +hopefulness +hoplologist +horizontals +hornblendic +hornswoggle +horographer +horological +horologists +horologiums +horoscopies +horoscopist +horripilant +horripilate +horrisonant +horrisonous +horselaughs +horseradish +horseshoers +hortatively +hortatorily +hospitalers +hospitalise +hospitality +hospitalize +hospitaller +hostilities +hotheadedly +houndstooth +hourglasses +housefather +householder +housekeeper +houselights +housellings +housemaster +housemother +houseparent +houseplants +housetrains +housewifely +housewifery +hovercrafts +hovertrains +huckleberry +hucksterage +hucksteress +hucksteries +huckstering +Hudibrastic +huffishness +hugeousness +hullabaloos +humbuggable +humdudgeons +humectating +humectation +humgruffian +humgruffins +humidifiers +humidifying +humidistats +humiliating +humiliation +humiliative +humiliators +humiliatory +humoralists +humoresques +Humperdinck +hunchbacked +hundredfold +hurricanoes +hurriedness +hurtfulness +hurtleberry +husbandages +husbandland +husbandless +husbandlike +hyacinthine +hyalinising +hyalinizing +hyalomelane +hybridisers +hybridising +hybridizers +hybridizing +Hydnocarpus +hydragogues +hydrargyral +hydrargyrum +hydrobromic +hydrocarbon +Hydrocharis +hydrochores +hydrochoric +hydrocyanic +hydrogenate +hydrogenise +hydrogenize +hydrogenous +hydrographs +hydrography +hydrologist +hydrolysate +hydrolysing +hydrolyzing +hydromantic +hydromedusa +hydrometeor +hydrometers +hydrometric +hydropathic +hydrophanes +Hydrophidae +hydrophilic +hydrophobia +hydrophobic +hydrophones +hydrophytes +hydrophytic +hydrophyton +hydroplaned +hydroplanes +hydropolyps +hydroponics +hydroscopes +hydrosomata +hydrospaces +hydrosphere +hydrostatic +hydrotactic +hydrothecas +hydrothorax +hydrotropic +hyetographs +hyetography +hyetometers +hygrographs +hygrometers +hygrometric +hygrophytes +hygrophytic +hygroscopes +hygroscopic +hylogenesis +hylomorphic +hylopathism +hylopathist +hylophagous +hylotheists +hylozoistic +Hymenoptera +hymnography +hymnologist +hyoplastral +hyoplastron +hyoscyamine +hypaethrons +hypallactic +hypanthiums +hyperactive +hyperacusis +hyperbatons +hyperbolise +hyperbolism +hyperbolize +hyperboloid +hyperborean +hypercharge +hypercritic +hyperdactyl +hyperdorian +hyperemesis +hyperemetic +hypergamous +hyperinosis +hyperinotic +hyperlydian +hypermarket +hyperphagia +hyperplasia +hypersomnia +hypersonics +hypersthene +hyperstress +hypertrophy +hyphenating +hyphenation +hyphenising +hyphenizing +hypnogenous +hypnoidised +hypnoidises +hypnoidized +hypnoidizes +hypnopaedia +hypnopompic +hypnotisers +hypnotising +hypnotistic +hypnotizers +hypnotizing +hypoaeolian +hypoblastic +hypocentres +hypocorisma +hypocrisies +hypocycloid +hypodermics +hypogastric +hypoglossal +hypolimnion +hyponitrite +hypophyseal +hypophysial +hypoplastic +hypostasise +hypostasize +hypostatise +hypostatize +hypostrophe +hypotension +hypotensive +hypotenuses +hypothalami +hypothecary +hypothecate +hypothenuse +hypothermal +hypothermia +hypothesise +hypothesize +hypothetise +hypothetize +hypothyroid +hypotyposis +hypsography +hypsometers +hypsometric +hypsophobes +hypsophobia +hypsophylls +hysteresial +hysterogeny +hysteroidal +hysterotomy diff --git a/com/agnibho/code/anagram/dictionary/H12.txt b/com/agnibho/code/anagram/dictionary/H12.txt new file mode 100644 index 0000000..f3f2a89 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H12.txt @@ -0,0 +1,505 @@ +haberdashers +haberdashery +habilitating +habilitation +habilitators +habitability +habitational +habitualness +habituations +haematemesis +haematoblast +haematoceles +haematocrits +haematolysis +haematoxylin +haematoxylon +haemophiliac +haemorrhaged +haemorrhages +haemorrhagic +haemorrhoids +hagiocracies +hagiographer +hagiographic +hagiological +hagiologists +hairdressers +hairdressing +hairlessness +hairstylists +hallucinated +hallucinates +hallucinogen +hallucinosis +halogenating +halogenation +hamarthritis +hamartiology +hamfattering +hammercloths +hamshackling +hamstringing +handfastings +handicappers +handicapping +handkerchers +handkerchief +handshakings +handsomeness +handwritings +hansardising +hansardizing +happenstance +haptotropism +harbingering +hardheadedly +hardscrabble +hardstanding +hariolations +harlequinade +harlequining +harmlessness +harmonically +harmonichord +harmoniously +harmoniphone +harmoniphons +harmoniumist +harmonograms +harmonograph +harmonometer +harpsichords +Harthacanute +haruspicated +haruspicates +hatelessness +haussmannise +haussmannize +headboroughs +headforemost +headhuntings +headmistress +headquarters +headreaching +headshrinker +heartbreaker +heartburning +heartstrings +heathenishly +heathenising +heathenizing +heavenliness +heavyweights +hebdomadader +hebdomadally +hebephreniac +hebetudinous +Hebraistical +heckelphones +hectogrammes +hectographed +hectographic +heedlessness +Heldenten�re +Heldentenors +Helianthemum +helichrysums +helicographs +helicoptered +heliocentric +heliochromes +heliochromic +heliographed +heliographer +heliographic +heliogravure +heliolatrous +heliophilous +heliotherapy +heliotropism +hellgramites +hellgrammite +helplessness +hematologist +Hemerocallis +Hemichordata +hemimorphism +hemimorphite +hemiparasite +hemispheroid +hemophiliacs +hemorrhaging +hemstitchers +hemstitching +henceforward +henchpersons +hendecagonal +henotheistic +heortologist +hepaticology +hepatisation +hepatization +hepatologist +hepatomegaly +hephthemimer +heptarchists +heptathletes +Heracleitean +heraldically +hereditament +hereditarian +hereditarily +hereinbefore +hereticating +heritability +hermeneutics +hermeneutist +hermetically +herniotomies +heroicalness +herpetofauna +herpetologic +Herstmonceux +hesitatingly +hesperidiums +heterauxesis +heteroblasty +heterocercal +heterochrony +heteroclites +heteroclitic +Heterocontae +heterocyclic +heterodactyl +heterodoxies +heteroecious +heterogamous +heterogenies +heterogonous +heterografts +heterokontan +heterologous +heteromerous +heteromorphy +heteronomous +heteroousian +heterophylly +heteroplasia +heteroplasty +heteropteran +heteroscians +heterosexism +heterosexist +heterosexual +Heterosomata +heterostyled +heterotactic +heterothally +heterotrophs +heterotrophy +heterousians +heterozygote +heterozygous +hexadactylic +hexametrical +hexametrised +hexametrises +hexametrists +hexametrized +hexametrizes +hibernaculum +hibernations +Hibernianism +Hibernically +hibernicised +hibernicises +hibernicized +hibernicizes +hierarchical +hierocracies +hieroglyphed +hieroglyphic +hierogrammat +hierographer +hierographic +hierological +hierologists +hierophantic +highlighters +highlighting +Hildebrandic +hindforemost +hindquarters +hippeastrums +hippiatrists +hippocentaur +Hippocratism +hippocrepian +hippodamists +hippologists +hippophagist +hippophagous +hippopotamic +hippopotamus +hispanicised +hispanicises +hispanicisms +hispanicized +hispanicizes +Hispaniolise +Hispaniolize +Histiophorus +histochemist +histogenesis +histogenetic +histological +histologists +historically +historicised +historicises +historicisms +historicists +historicized +historicizes +historiettes +historifying +historiology +histrionical +hobbledehoys +hobgoblinism +Hofmannsthal +hojatolesman +hojatolisman +holidaymaker +holistically +Hollywoodise +Hollywoodize +holophrastic +holoplankton +homelessness +homeomorphic +homeopathist +homeothermal +homeothermic +homesickness +homesteaders +homesteading +homochromous +homoeomerous +homoeomorphs +homoeomorphy +homoeopathic +homoeostasis +homoeostatic +homogenisers +homogenising +homogenizers +homogenizing +homoiomerous +homologating +homologation +homologising +homologizing +homologumena +homomorphism +homomorphous +homonymously +homopolarity +homothallism +homothermous +honeybunches +honeycombing +honeycreeper +honeymooners +honeymooning +honeysuckles +hootanannies +hootenannies +hopelessness +hoplologists +horizontally +hornswoggled +hornswoggles +horographers +horometrical +horoscopists +horrendously +horribleness +horrifically +horrifyingly +horripilated +horripilates +horsemanship +horseshoeing +horsewhipped +horticulture +hospitalised +hospitalises +hospitalized +hospitalizes +hospitallers +hotchpotches +housefathers +householders +housekeepers +housekeeping +housemasters +housemothers +houseparents +housesitting +housetrained +huckstresses +Huddersfield +Hudibrastics +humanisation +humanitarian +humanization +humgruffians +humification +humiliations +humorousness +hundredfolds +huntsmanship +Hurstmonceux +hurtlessness +husbandlands +hybridisable +hybridizable +hydatidiform +hydrargyrism +hydraulicked +hydrobiology +hydrocarbons +hydrochloric +hydrodynamic +hydroelastic +hydrofluoric +hydrogenated +hydrogenates +hydrogenised +hydrogenises +hydrogenized +hydrogenizes +hydrogeology +hydrographer +hydrographic +hydrokinetic +hydrological +hydrologists +hydrolysates +Hydromedusae +hydromedusan +hydromedusas +hydrometeors +hydropathist +hydrophanous +hydrophilite +hydrophilous +hydrophobous +hydrophytons +hydrophytous +hydroplaning +hydroquinone +hydrostatics +hydrotherapy +hydrothermal +hydrotropism +hydrozincite +hyetographic +hygienically +hygrochastic +hygrographic +hygrophilous +hylomorphism +hylopathists +hymenopteran +hymnographer +hymnologists +hyperacidity +hyperalgesia +hyperalgesic +hyperbolical +hyperbolised +hyperbolises +hyperbolized +hyperbolizes +hyperboloids +hyperboreans +hypercharged +hypercharges +hypercorrect +hypercritics +hyperdactyly +Hypericaceae +hyperidrosis +hypermarkets +hyperplastic +hyperpyretic +hyperpyrexia +hypersarcoma +hypersensual +hypersthenia +hypersthenic +hypertension +hypertensive +hyperthermal +hyperthermia +hypertrophic +hyphenations +hypnogenesis +hypnogenetic +hypnoidising +hypnoidizing +hypnotherapy +hypnotically +hypnotisable +hypnotizable +hypochlorite +hypochondria +hypocoristic +hypocritical +hypocycloids +hypodermises +hypoeutectic +hypogastrium +hypoglycemia +hypoglycemic +hypognathism +hypognathous +hypolimnions +hypophrygian +hypoplastron +hypostasised +hypostasises +hypostasized +hypostasizes +hypostatical +hypostatised +hypostatises +hypostatized +hypostatizes +hypostrophes +hyposulphate +hyposulphite +hypotensives +hypothalamic +hypothalamus +hypothecated +hypothecates +hypothecator +hypothenuses +hypothesised +hypothesises +hypothesized +hypothesizes +hypothetical +hypothetised +hypothetises +hypothetized +hypothetizes +hypotrochoid +hysterectomy +hysterically +hysterogenic +hysteromania diff --git a/com/agnibho/code/anagram/dictionary/H13.txt b/com/agnibho/code/anagram/dictionary/H13.txt new file mode 100644 index 0000000..85cc6de --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H13.txt @@ -0,0 +1,290 @@ +habilitations +habitableness +haematoblasts +haematogenous +haematologist +haemodialyses +haemodialysis +haemophiliacs +haemorrhaging +haemorrhoidal +hagiographers +hagiographies +hagiographist +hairdressings +Halicarnassus +hallucinating +hallucination +hallucinative +hallucinatory +hallucinogens +Hammerklavier +handkerchiefs +ha'pennyworth +haphazardness +happenstances +harlequinades +harmonichords +harmoniphones +harmonisation +harmoniumists +harmonization +harmonographs +harmonometers +haruspicating +haruspication +haussmannised +haussmannises +haussmannized +haussmannizes +hazardousness +headquartered +headshrinkers +healthfulness +heartbreakers +heartbreaking +heartlessness +hebdomadaders +hebdomadaries +hebephreniacs +hectographing +helicoptering +heliographers +heliographing +heliometrical +heliotropical +helispherical +Hellenistical +hellgrammites +helminthiasis +helminthology +Hemerobaptist +hemicellulose +hemiparasites +hemiparasitic +hemispherical +hemispheroids +heortological +heortologists +hepatectomies +hepatologists +hephthemimers +heptasyllabic +herborisation +herborization +hereditaments +Herefordshire +heresiography +heresiologist +hermaphrodite +hermeneutical +hermeneutists +herniorrhaphy +herpetologist +Hertfordshire +heteroblastic +heterocarpous +heterochronic +heteroclitous +heterodactyls +heterogeneity +heterogeneous +heterogenesis +heterogenetic +heteromorphic +heteroousians +heteroplastic +heteropterous +heterosexists +heterosexuals +heterosporous +heterostrophy +heterostylism +heterostylous +heterothallic +heterothermal +heterotrophic +heterozygotes +heuristically +hexactinellid +hexadactylous +hexametrising +hexametrizing +hibernicising +hibernicizing +hibernisation +hibernization +hieroglyphics +hieroglyphing +hieroglyphist +hierogrammate +hierogrammats +hierographers +hilariousness +Hildebrandism +hippocentaurs +hippophagists +hippopotamian +hircocervuses +hispanicising +hispanicizing +Hispaniolised +Hispaniolises +Hispaniolized +Hispaniolizes +histiophoroid +histochemists +historicising +historicizing +histrionicism +holidaymakers +hollowhearted +Hollywoodised +Hollywoodises +Hollywoodized +Hollywoodizes +holometabolic +Holothuroidea +Holyroodhouse +homeomorphism +homeomorphous +homeopathists +homeoteleuton +homeothermous +homesteadings +homiletically +homochromatic +homoeomorphic +homoeopathist +homoeothermal +homoeothermic +homoeroticism +homogeneously +homogenetical +homoiothermal +homoiothermic +homologations +homologically +homologoumena +homomorphosis +homosexualism +homosexualist +homosexuality +honorableness +honorifically +horizontality +hornswoggling +horripilating +horripilation +horsefeathers +horseradishes +horseshoeings +horsewhipping +horticultural +hospitalising +hospitalizing +hotheadedness +housemistress +housetraining +housewifeship +hubristically +huckleberries +hucksteresses +humanitarians +humiliatingly +humorlessness +hundredweight +hurtleberries +Hutchinsonian +hyalinisation +hyalinization +hybridisation +hybridization +Hydrangeaceae +hydrarthrosis +hydraulically +hydraulicking +hydrocephalic +hydrocephalus +hydrochloride +hydrocracking +hydrodynamics +hydroelectric +hydrogenating +hydrogenation +hydrogenising +hydrogenizing +hydrographers +hydrokinetics +hydromagnetic +hydromedusoid +hydrometrical +hydropathical +hydropathists +hydrosomatous +hydrostatical +hydrosulphide +hydrosulphite +hydrothoraxes +hydroxylamine +hygrometrical +hygroscopical +Hymenomycetes +hymenopterans +hymenopterous +hymnographers +hyperactivity +hyperbolising +hyperbolizing +hypercalcemia +hypercharging +hypercritical +hyperesthesia +hyperesthetic +hypereutectic +hyperglycemia +hyperhidrosis +hypermetrical +hypermetropia +hypermetropic +hyperparasite +hyperphrygian +hyperphysical +hypersarcomas +hypersarcosis +hypersthenite +hypertrophied +hypertrophous +hypervelocity +hyphenisation +hyphenization +hypnotisation +hypnotization +hypochlorites +hypochondriac +hypochondrium +hypocycloidal +hypogastriums +hypoglycaemia +hypoglycaemic +hypomenorrhea +hypophosphite +hypostasising +hypostasizing +hypostatising +hypostatizing +hyposulphates +hyposulphites +hyposulphuric +hypothecating +hypothecation +hypothecators +hypothesising +hypothesizing +hypothetising +hypothetizing +hypotrochoids +hypsographies +hypsophyllary +hysteranthous +hysterotomies diff --git a/com/agnibho/code/anagram/dictionary/H14.txt b/com/agnibho/code/anagram/dictionary/H14.txt new file mode 100644 index 0000000..ccf0d35 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H14.txt @@ -0,0 +1,181 @@ +haberdasheries +haematogenesis +haematologists +haematopoiesis +haematopoietic +hagiographical +hagiographists +halfpennyworth +hallucinations +hallucinogenic +Haloragidaceae +Hamamelidaceae +handicraftsman +handicraftsmen +handkerchieves +haplostemonous +hardheadedness +harmoniousness +harmonisations +harmonizations +harpsichordist +haruspications +haussmannising +haussmannizing +headmastership +headmistresses +headquartering +healthlessness +heathenishness +hebetudinosity +hebraistically +heliographical +heliosciophyte +helminthologic +hemispheroidal +hepaticologist +hephthemimeral +herborisations +herborizations +hereditability +hereditariness +heresiographer +heresiologists +hermaphrodites +hermaphroditic +herpetological +herpetologists +heterochromous +heterochronism +heterochronous +heteromorphism +heteromorphous +heterophyllous +heterosomatous +heterospecific +heterostrophic +heterothallism +heterozygosity +Hexactinellida +hexactinellids +hibernisations +hierarchically +hieroglyphical +hieroglyphists +hierogrammates +hierogrammatic +hierographical +Hierosolymitan +hippopotamuses +Hispaniolising +Hispaniolizing +histochemistry +histogenically +histologically +histolytically +histopathology +histoplasmosis +historiography +histrionically +hobbledehoydom +hobbledehoyish +hobbledehoyism +Hollywoodising +Hollywoodizing +holometabolism +holometabolous +homeoteleutons +homoeomorphism +homoeomorphous +homoeopathists +homoeoteleuton +homoeothermous +homogenisation +homogenization +homoiothermous +homosexualists +honourableness +horrendousness +horripilations +horticulturist +hospitableness +huckleberrying +humidification +humourlessness +humoursomeness +hundredweights +hyalinisations +hyalinizations +hybridisations +hybridizations +hydrobiologist +hydrocellulose +hydrocephalous +hydrochlorides +hydrocoralline +hydrocortisone +hydrodynamical +hydroextractor +hydrogenations +hydrogeologist +hydrographical +hydrologically +hydromagnetics +hydromechanics +hydromedusoids +hydronephrosis +hydronephrotic +hydrophobicity +hydropneumatic +hydroponically +Hydropterideae +hydrosulphides +hydrosulphites +hydrosulphuric +hydroxylamines +hyetographical +hygrographical +hygroscopicity +hyperacuteness +hyperaesthesia +hyperaesthesic +hyperaesthetic +hyperbatically +hyperbolically +hypercalcaemia +hypercatalexis +hyperconscious +hypercriticise +hypercriticism +hypercriticize +hyperglycaemia +hyperinflation +hypernatraemia +hypersensitise +hypersensitive +hypersensitize +hypertrophical +hyperventilate +hyphenisations +hyphenizations +hypnotisations +hypnotizations +hypoallergenic +hypochondriacs +hypochondriasm +hypochondriast +hypocoristical +hypocritically +hypodermically +hypomenorrhoea +hypomixolydian +hypophosphites +hypophysectomy +hypostatically +hyposulphurous +hypothecations +hypothetically +hypothyroidism +hysterectomies +hysterectomise +hysterectomize diff --git a/com/agnibho/code/anagram/dictionary/H15.txt b/com/agnibho/code/anagram/dictionary/H15.txt new file mode 100644 index 0000000..ec9a60f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H15.txt @@ -0,0 +1,79 @@ +halfpennyworths +harpsichordists +heliosciophytes +heliotropically +hellenistically +helminthologist +hemicrystalline +hendecasyllabic +hendecasyllable +hepaticologists +hereditarianism +hereditarianist +heresiographers +heresiographies +hermaphroditism +hermeneutically +heterocercality +heterochromatic +heterochronisms +heterodactylous +heterogeneously +heteromorphisms +heterosexuality +hexachlorophane +hexachlorophene +hierogrammatist +historiographer +historiographic +hobbledehoyhood +holocrystalline +homeopathically +homochlamydeous +homogeneousness +horticulturists +hospitalisation +hospitalization +housemistresses +humanitarianism +Huntingdonshire +hydrobiological +hydrobiologists +Hydrocorallinae +hydrodynamicist +hydroextractors +hydrogeologists +hydrometallurgy +hydropathically +hydrostatically +hyetometrograph +hyperadrenalism +hypercatalectic +hypercorrection +hypercritically +hypercriticised +hypercriticises +hypercriticisms +hypercriticized +hypercriticizes +hypersensitised +hypersensitises +hypersensitized +hypersensitizes +hyperthyroidism +hypervelocities +hyperventilated +hyperventilates +hypnotisability +hypnotizability +hypochondriacal +hypochondriasis +hypochondriasts +hypomagnesaemia +hypophosphorous +hypopituitarism +hypoventilation +hysterectomised +hysterectomises +hysterectomized +hysterectomizes diff --git a/com/agnibho/code/anagram/dictionary/H16.txt b/com/agnibho/code/anagram/dictionary/H16.txt new file mode 100644 index 0000000..1598d4b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H16.txt @@ -0,0 +1,43 @@ +haemochromatosis +handicraftswoman +haussmannisation +haussmannization +headmistressship +heliocentrically +heliographically +helminthological +hereditarianists +hermaphroditical +herpetologically +heterochronistic +hieroglyphically +hierogrammatical +Hippocastanaceae +histogenetically +histopathologist +homoeopathically +hospitalisations +hospitalizations +Hydrocharitaceae +hydroelectricity +hydroferricyanic +hydroferrocyanic +hydrographically +hydrometeorology +hydrotherapeutic +hyetographically +Hymenophyllaceae +hypercorrectness +hypercriticising +hypercriticizing +hypersensitising +hypersensitivity +hypersensitizing +hyperventilating +hyperventilation +hypervitaminosis +hypochondriacism +hypocoristically +hypocotyledonary +hysterectomising +hysterectomizing diff --git a/com/agnibho/code/anagram/dictionary/H17.txt b/com/agnibho/code/anagram/dictionary/H17.txt new file mode 100644 index 0000000..3f32159 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H17.txt @@ -0,0 +1,10 @@ +haemoglobinopathy +hemiparasitically +heterochlamydeous +heterogeneousness +histopathological +historiographical +hydrofluorocarbon +hydrogasification +hydrotherapeutics +hymenophyllaceous diff --git a/com/agnibho/code/anagram/dictionary/H18.txt b/com/agnibho/code/anagram/dictionary/H18.txt new file mode 100644 index 0000000..90a3c04 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H18.txt @@ -0,0 +1,7 @@ +hemidemisemiquaver +hermaphroditically +histocompatibility +hydrofluorocarbons +hypersensitisation +hypersensitiveness +hypersensitization diff --git a/com/agnibho/code/anagram/dictionary/H19.txt b/com/agnibho/code/anagram/dictionary/H19.txt new file mode 100644 index 0000000..a958acd --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H19.txt @@ -0,0 +1 @@ +historiographically diff --git a/com/agnibho/code/anagram/dictionary/H2.txt b/com/agnibho/code/anagram/dictionary/H2.txt new file mode 100644 index 0000000..b852141 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H2.txt @@ -0,0 +1,4 @@ +ha +he +hi +ho diff --git a/com/agnibho/code/anagram/dictionary/H21.txt b/com/agnibho/code/anagram/dictionary/H21.txt new file mode 100644 index 0000000..a47fbdc --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H21.txt @@ -0,0 +1 @@ +hypercholesterolaemia diff --git a/com/agnibho/code/anagram/dictionary/H22.txt b/com/agnibho/code/anagram/dictionary/H22.txt new file mode 100644 index 0000000..bf4970a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H22.txt @@ -0,0 +1 @@ +honorificabilitudinity diff --git a/com/agnibho/code/anagram/dictionary/H23.txt b/com/agnibho/code/anagram/dictionary/H23.txt new file mode 100644 index 0000000..20c695a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H23.txt @@ -0,0 +1 @@ +hydrochlorofluorocarbon diff --git a/com/agnibho/code/anagram/dictionary/H24.txt b/com/agnibho/code/anagram/dictionary/H24.txt new file mode 100644 index 0000000..fb565a7 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H24.txt @@ -0,0 +1 @@ +hydrochlorofluorocarbons diff --git a/com/agnibho/code/anagram/dictionary/H3.txt b/com/agnibho/code/anagram/dictionary/H3.txt new file mode 100644 index 0000000..cb0c9db --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H3.txt @@ -0,0 +1,59 @@ +had +hae +hag +hah +haj +Hal +ham +han +hap +has +hat +haw +hay +Hel +hem +hen +hep +her +hes +het +hew +hex +hey +hic +hid +hie +him +hin +hip +his +hit +hoa +hob +hoc +hod +hoe +hog +hoh +hoi +hon +hoo +hop +hos +hot +how +hox +hoy +hub +hue +hug +huh +hui +hum +Hun +hup +hut +Huw +hye +hyp diff --git a/com/agnibho/code/anagram/dictionary/H4.txt b/com/agnibho/code/anagram/dictionary/H4.txt new file mode 100644 index 0000000..d49659e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H4.txt @@ -0,0 +1,236 @@ +haaf +haar +hack +hade +hadj +haed +haem +haes +haet +haff +haft +hags +Hahn +hahs +Haig +haik +hail +hain +hair +haji +hajj +haka +hake +hale +half +hall +halm +halo +Hals +halt +hame +hams +hand +hang +Hani +hank +haps +hard +hare +Hari +hark +harl +harm +harn +haro +harp +hart +Harz +hash +hask +hasp +hast +hate +hath +hats +haud +haul +haut +have +hawk +haws +hays +haze +hazy +head +heal +heap +hear +heat +Hebe +hech +heck +he'd +heed +heel +heft +heid +heir +held +hell +helm +help +heme +hemp +hems +hend +hens +hent +heps +Hera +herb +herd +here +herl +herm +hern +hero +Herr +hers +hery +Hess +hest +hete +hets +hewn +hews +heys +hick +hics +hide +hied +hies +high +hike +hila +hili +hill +hilt +hind +hing +hins +hint +hips +hipt +hire +hisn +hiss +hist +hits +hive +hiya +hizz +hoar +hoas +hoax +hobo +hobs +hock +hods +hoed +hoer +hoes +hogg +hogs +hohs +hoik +hoke +hoki +hold +hole +Holi +holm +holp +hols +holt +holy +home +homo +homy +hond +hone +hong +honk +hood +hoof +hook +hoon +hoop +hoot +hope +Hopi +hops +hore +horn +hors +hose +hoss +host +hote +hots +hour +hout +Hova +hove +howe +howf +howk +howl +hows +hoya +hoys +hubs +huck +hued +huer +hues +Huey +huff +huge +Hugh +Hugo +hugs +hugy +huhs +huia +hula +hule +hulk +hull +huma +Hume +humf +hump +hums +hung +hunk +huns +hunt +hups +Hurd +hurl +hurt +hush +husk +huso +huss +huts +Hutu +hwyl +Hyde +hyke +hyle +hymn +hype +hypo +hyps diff --git a/com/agnibho/code/anagram/dictionary/H5.txt b/com/agnibho/code/anagram/dictionary/H5.txt new file mode 100644 index 0000000..fdf5ce4 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H5.txt @@ -0,0 +1,443 @@ +haafs +haars +habit +hable +hacek +hacks +hadal +haded +hades +hadji +hadst +haets +haffs +hafiz +hafts +Hagen +Hague +haick +Haifa +Haikh +haiks +haiku +hails +haily +hairs +hairy +ha'it +haith +Haiti +hajes +hajis +hajji +hakam +hakas +hakes +hakim +halal +haler +Haley +halfa +halfs +Hall� +hallo +halls +halma +halms +halon +halos +halts +halva +halve +hamal +hamba +hames +hammy +hamza +hanap +hance +hands +handy +hangs +hanks +hanky +Hanoi +Hansa +Hanse +han't +haoma +haply +happy +haram +hards +hardy +hared +harem +hares +harim +harks +harls +harms +harns +haros +Harpo +harps +harpy +harry +harsh +harts +Harun +Hasan +hashy +Hasid +hasps +hasta +haste +hasty +hatch +hated +hater +hates +Hatty +hauds +haugh +hauld +haulm +hauls +hault +haunt +Hausa +hause +haute +Havel +haven +haver +haves +havoc +hawed +Hawke +hawks +hawse +Haydn +hayed +Hayek +Hayes +hayle +hazan +hazed +hazel +hazer +hazes +heads +heady +heald +heals +heaps +heapy +heard +heare +hears +heart +heath +heats +heave +heavy +heben +hechs +hecks +hedge +hedgy +heeds +heedy +heels +heeze +Hefei +hefts +hefty +Hegel +Heide +Heidi +heids +heigh +heil! +heils +Heine +Heinz +heirs +heist +hejab +Hejaz +hejra +Helen +Helga +helix +hello +hells +helms +helot +helps +helve +hemal +hemes +hemps +hempy +hence +henge +henna +henny +Henri +henry +Henze +hepar +Herat +herbs +herby +herds +Herg� +herls +herma +herms +herns +Herod +heron +herry +herse +hertz +Hesse +hests +Hetty +heuch +heugh +hevea +Hever +hewed +hewer +hewgh +hexad +hexed +hexes +heyed +Heyer +hiant +hicks +hided +hider +hides +hiems +highs +hight +hijab +hijra +hiked +hiker +hikes +hilar +Hilda +hillo +hills +hilly +hilts +hilum +hilus +Hindi +hinds +Hindu +Hines +hinge +hings +hinny +hints +hippo +hippy +Hiram +hired +hirer +hires +hists +hitch +hithe +hived +hiver +hives +hiyas +Hizen +hoard +hoary +hoast +Hobbs +hobby +hobos +hocks +hocus +Hodge +hodja +hoers +Hofei +hogan +hogen +hoggs +hoick +hoiks +hoise +hoist +hoked +hokes +hokey +hokku +hokum +holds +holed +holes +holey +holla +hollo +holly +holms +Holst +holts +homed +homer +homes +homey +homme +homos +Honda +honed +honer +hones +honey +hongi +hongs +honks +Honor +hooch +hoods +hooey +hoofs +hooka +Hooke +hooks +hooky +hooly +hoons +hoops +hoosh +hoots +hoove +hoped +hoper +hopes +Hopis +hoppy +horal +horde +Horeb +horme +horns +horny +Horsa +horse +horst +horsy +Horus +Hosea +hosed +hosen +hoses +hosta +hosts +hotch +hotel +hoten +hotly +hough +hound +houri +hours +house +houts +Hovas +hovel +hoven +hover +howdy +Howel +howes +howff +howfs +howks +howls +howso +hoyed +Hoyle +hubby +Hubli +hucks +huffs +huffy +huger +huias +huies +hulas +hules +hulks +hulky +hullo +hulls +hully +Hulme +Hulot +human +humas +humfs +humic +humid +humor +humph +humps +humpy +humus +hunch +hunks +hunky +hunts +hurds +hurls +hurly +Huron +hurra +hurry +hurst +hurts +hushy +husks +husky +husos +hussy +hutch +hutia +Hutus +huzza +huzzy +hwyls +Hyads +hydra +hydro +hyena +hying +hykes +hyleg +hylic +hymen +hymns +hynde +hyoid +hyped +hyper +hypes +hypha +hypos +hyrax +hyson +hythe +Hywel diff --git a/com/agnibho/code/anagram/dictionary/H6.txt b/com/agnibho/code/anagram/dictionary/H6.txt new file mode 100644 index 0000000..f97fad4 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H6.txt @@ -0,0 +1,691 @@ +habile +habits +haboob +haceks +hachis +hacked +hackee +hacker +hackle +hackly +hadden +haddie +hading +hadith +hadjes +hadjis +Hadlee +hadn't +hadron +haeing +haemal +haemic +haemin +haffet +haffit +hafted +hagbut +hagden +hagdon +Haggai +hagged +haggis +haggle +haglet +haicks +haiduk +haikai +haikus +hailed +hailer +haique +hairdo +haired +haiths +hajjes +hajjis +hakams +hakims +halals +halers +halest +halfas +halfen +halide +halite +hallal +hallan +Halley +halloa +halloo +hallos +hallow +hallux +halmas +halo'd +haloed +haloes +haloid +halser +halted +halter +halvah +halvas +halved +halver +halves +hamals +hamate +hamble +Hamish +hamite +hamlet +hammal +hammam +hammed +hammer +hamose +hamous +hamper +hamuli +hamzah +hamzas +hanaps +hances +handed +Handel +hander +handle +hangar +hanged +hanger +hanjar +hanked +hanker +hankie +Hannah +Hannay +hansel +hansom +hantle +haomas +happed +happen +hapten +haptic +harams +Harare +harass +Harbin +harbor +harden +harder +Hardie +hardly +hareem +hareld +harems +harims +haring +harish +harked +harken +Harlem +Harley +harlot +Harlow +harman +harmed +harmel +harmin +Harold +Haroun +harped +harper +Harris +harrow +hartal +Harvey +hashed +hashes +haslet +hasn't +hasped +Hassan +hassar +Hassid +hassle +hasted +hasten +hastes +hatbox +haters +hatful +hating +hatpeg +hatpin +hatred +hatted +hatter +haughs +haught +haulds +hauled +hauler +haulms +haunch +haunts +Hausas +haused +hauses +ha�yne +Havana +Havant +havens +havers +having +havocs +Hawaii +Hawick +hawing +hawked +hawker +hawkey +hawkie +hawsed +hawser +hawses +haybox +Hayden +haying +Hayley +haymow +haysel +hazans +hazard +hazels +hazers +hazier +hazily +hazing +hazzan +headed +header +healds +healed +healer +Healey +health +Heaney +heaped +hearer +hearie +hearse +Hearst +hearsy +hearth +hearts +hearty +heated +heater +heaths +heathy +heaume +heaved +heaven +heaver +heaves +Hebrew +Hebron +Hecate +heckle +hectic +hector +Hecuba +heddle +Hedera +hedged +hedger +hedges +heeded +heehaw +heeled +heeler +heezed +heezes +heezie +hefted +hegira +Heiduc +heifer +heighs +height +heired +heists +hejabs +hejira +Helena +heliac +Helios +helium +Hellas +helled +Hellen +heller +hellos +helmed +helmet +helots +helped +helper +helved +helves +hemina +hemmed +hempen +hences +Hendon +Hendry +henges +Henley +Henman +hennas +hennin +henrys +hepars +heptad +herald +herbal +Herbar +herded +herden +herder +herdic +hereat +hereby +herein +hereof +hereon +Herero +heresy +hereto +heriot +hermae +Hermes +Hermia +hermit +hernia +heroes +heroic +heroin +herons +heroon +herpes +Herren +hersed +Hervey +Herzog +Hesiod +Hesper +Hester +Hesvan +hetero +hetman +heuchs +heughs +heveas +hewers +hewing +hexact +hexads +hexane +hexene +hexing +hexose +heyday +heying +hiatus +hiccup +hickey +Hickok +hidage +hidden +hidder +hiders +hiding +hieing +hiemal +higgle +higher +highly +highth +hights +hijabs +hijack +hijrah +hikers +hiking +Hilary +hilled +hillos +hilted +Hilton +hinder +Hindoo +Hindus +hinged +hinges +Hingis +hinted +hinter +hipped +hipper +hippic +hippie +hippos +hippus +hirage +hirers +hiring +hirple +hirsel +hirsle +hispid +hissed +hisses +histed +histie +hitchy +hither +hithes +Hitler +hitter +hivers +hiving +hoards +hoarse +hoasts +hoaxed +hoaxer +hoaxes +Hobart +Hobbes +hobbit +hobble +hobday +hobnob +hoboed +hoboes +Hobson +hocked +hocker +hocket +hockey +hodden +hoddle +Hodges +hodjas +hodman +hodmen +hoeing +hogans +hogged +hogger +hogget +hoggin +hognut +hogtie +hoicks +hoiden +hoiked +hoised +hoises +hoists +hokier +hoking +hokkus +holden +holder +holier +holies +holily +holing +holism +holist +hollas +holler +holloa +hollos +hollow +Holmes +holmia +holmic +holpen +homage +hombre +homely +homers +homier +homily +homing +hominy +hommes +honcho +honers +honest +honeys +honied +honing +honked +honker +Honora +honors +honour +Honshu +hooded +hoodie +hoodoo +hoofed +hoofer +hookah +hookas +hooked +hooker +hookey +hooley +hoolie +hooped +hooper +hoopoe +hoorah +hooray +hooroo +hootch +hooted +hooter +hooven +hoover +hooves +hopdog +hopers +hoping +hopped +hopper +hopple +Horace +horary +horded +hordes +Hormuz +Hornby +horned +horner +hornet +Hornie +horrid +horror +horsed +horses +horsey +horsts +hosier +hosing +hosses +hostas +hosted +hostel +hostry +hotbed +hotels +hotpot +hotted +hotter +hottie +houdah +houdan +houghs +houmus +hounds +houris +hourly +housed +housel +houses +houted +hovels +hovers +Howard +howdah +howdie +Howell +howffs +howked +howker +howled +howler +howlet +howzat +hoyden +hoying +Hubble +hubbub +hubcap +Hubert +hubris +huckle +hudden +huddle +huddup +Hudson +huffed +hugely +hugest +hugged +Hughes +Hughie +hulled +huller +hullos +humane +humans +Humber +humble +humbly +humbug +Humean +humect +humeri +humfed +humhum +Humian +humify +Humism +Humist +humite +humlie +hummed +hummel +hummer +hummum +hummus +humors +humour +humous +humped +humpen +humper +humphs +humpty +humusy +hunger +hungry +hunker +Hunnic +hunted +hunter +huppah +hupped +hurden +hurdle +hurled +hurler +hurley +hurrah +hurras +hurray +hursts +hurter +hurtle +Husain +Husayn +hushed +hushes +husked +husker +hussar +husses +hustle +Huston +hutias +hutted +Hutton +Huxley +huzoor +huzzah +huzzas +Hyades +hyaena +hybrid +hybris +hydrae +hydras +hydria +hydric +hydros +Hydrus +hydyne +hyenas +hyetal +Hyksos +hylegs +hylism +hylist +hymens +hymnal +hymned +hymnic +hyndes +hypate +hypers +hyphae +hyphal +hyphen +hyping +hypnic +Hypnos +hypnum +hypoid +hypped +hysons +hyssop +hythes diff --git a/com/agnibho/code/anagram/dictionary/H7.txt b/com/agnibho/code/anagram/dictionary/H7.txt new file mode 100644 index 0000000..5c3b176 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H7.txt @@ -0,0 +1,930 @@ +Haarlem +habdabs +habitat +habited +habitu� +habitus +haboobs +hachure +hackbut +hackees +hackers +hackery +hacking +hackled +hackler +hackles +hacklet +Hackman +hackney +haddies +haddock +Hadrian +hadrome +hadrons +haemony +haffets +haffits +Haffner +hafnium +hafting +hagbolt +hagbuts +hagdens +hagdons +hagdown +hagfish +Haggada +haggard +hagging +haggish +haggled +haggler +haggles +haglets +hahnium +Haiduck +haiduks +haikais +hailers +hailing +haiques +haircut +hairdos +hairier +hairing +hairpin +Haitian +Haitink +Hakluyt +Halacha +Halakah +halavah +halberd +halbert +halcyon +Haldane +halfway +halibut +halides +halidom +Halifax +halimot +halitus +hallali +hallals +hallans +hallian +halling +hallion +halloas +halloed +halloes +halloos +hallows +hallway +hallyon +halogen +haloids +haloing +halsers +halters +halting +halvahs +halvers +halving +halyard +hambled +hambles +Hamburg +Hamhung +Hamitic +hamlets +hammals +hammams +hammers +Hammett +hammier +hammily +hamming +hammock +Hammond +hampers +Hampton +hamster +hamular +hamulus +hamzahs +hanaper +Hancock +handbag +handcar +handers +handful +handier +handily +handing +handjar +handled +handler +handles +handout +handsaw +handsel +handset +hangars +hangdog +hangers +hanging +hangman +hangmen +hangout +Haniyya +hanjars +hankers +hankies +hanking +Hanover +Hansard +hansels +hansoms +hantles +hanuman +hapless +haploid +happens +happier +happily +happing +haptens +haptics +harbors +harbour +hardbag +hardens +hardest +hardhat +hardier +hardily +Harding +hardish +hardtop +hareems +harelds +haricot +Harijan +harkens +harking +Harlech +harlots +harmala +harmans +harmels +harmful +harmine +harming +harmony +harmost +harness +haroset +harpers +harpies +harping +harpist +harpoon +harried +harrier +harries +Harriet +harrows +harshen +harsher +harshly +harslet +Hartley +Harvard +harvest +Harwich +hashing +hashish +Hasidic +Hasidim +haslets +hasping +hassars +hassled +hassles +hassock +hastate +hastens +hastier +hastily +hasting +hatable +hatband +hatched +hatchel +hatcher +hatches +hatchet +hateful +hatfuls +hatless +hatpegs +hatpins +hatrack +hatreds +hatters +hatting +hattock +hauberk +hauding +Haughey +haughty +haulage +haulers +haulier +hauling +haunted +haunter +hausing +hautboy +hauteur +Havanas +havened +haven't +haveour +havered +haverel +havings +haviour +hawbuck +hawkbit +hawkers +hawkeys +hawkies +hawking +Hawkins +hawkish +Haworth +hawsers +hawsing +hayband +haycock +hayfork +hayings +hayloft +haymows +hayrick +hayride +hayseed +haysels +hayward +haywire +hazanim +hazards +hazelly +haziest +hazings +Hazlitt +hazzans +headage +headers +headier +headily +heading +headman +headmen +headpin +headset +headway +healded +healers +healing +healths +healthy +heaping +hearers +hearing +hearken +hearsay +hearsed +hearses +hearted +hearten +hearths +heartly +heaters +heathen +heather +heating +heaumes +heavens +heavers +heavier +heavies +heavily +heaving +hebenon +Hebraic +Hebrews +heckled +heckler +heckles +hectare +hectics +hectors +heddled +heddles +hederal +hedgers +hedgier +hedging +hedonic +heedful +heeding +heehaws +heelers +heeling +heezies +heezing +heftier +heftily +hefting +Heiducs +heifers +Heifetz +heights +Heimweh +Heinkel +heinous +heirdom +heiress +heiring +heisted +heister +heitiki +helcoid +helibus +helical +helices +helicon +heliman +helimen +helipad +helixes +Hellene +hellers +hellier +helling +hellion +hellish +Hellman +helloed +hellova +helluva +helmets +helming +H�loise +helotry +helpers +helpful +helping +helving +hemiola +hemione +hemline +hemlock +hemming +hempier +henbane +Hendrix +Hengist +hennaed +hennery +hennies +henning +henotic +henpeck +henries +heparin +hepatic +Hepburn +hepster +heptads +heptane +heralds +H�rault +herbage +herbals +herbary +Herbert +herbier +herbist +herblet +herbose +herbous +herdboy +herders +herdess +herdics +herding +herdman +herdmen +Hereros +heretic +heriots +h�riss� +heritor +herling +hermits +hernial +hernias +heroics +heroine +heroise +heroism +heroize +heronry +heroons +Herrick +herried +herries +herring +Herriot +hersall +herself +Hershey +hership +Hertzog +Heshvan +Hesione +hessian +hetaera +hetaira +heteros +hetmans +heureka +heurism +hewings +hexacts +hexadic +hexagon +hexapla +hexapod +hexarch +hexings +hexoses +heydays +Heyduck +Heysham +Heywood +hibachi +hicatee +hiccups +hiccupy +hickeys +hickory +hidages +hidalga +hidalgo +hidders +hideous +hideout +hidings +hidling +Hieland +Higgins +higgled +higgler +higgles +highboy +highest +highish +highman +highmen +highway +hijacks +hijinks +Hilbert +hilding +Hillary +hillier +hilling +hillmen +hillock +hilloed +hilltop +hilting +himself +Hinault +hinders +hindleg +Hindoos +hinging +hinnied +hinnies +hinters +hinting +hipness +hippest +hippier +hippies +hipping +hippish +hipster +hirable +hircine +hireage +hirings +hirpled +hirples +hirsels +hirsled +hirsles +hirsute +hirudin +hissing +histing +histoid +histone +history +histrio +Hitachi +hitched +hitcher +hitches +hithers +Hitlers +hitters +hitting +Hittite +hoarded +hoarder +hoarier +hoarily +hoarsen +hoarser +hoasted +hoatzin +hoaxers +hoaxing +Hobbian +hobbies +hobbish +Hobbism +Hobbist +hobbits +hobbled +hobbler +hobbles +hobdays +hobnail +hobnobs +hobodom +hoboing +hoboism +hockers +hockets +hockeys +hocking +Hockney +hocused +hocuses +hoddled +hoddles +Hodgkin +hoedown +Hoffman +Hofmann +Hogarth +hogback +hoggers +hoggery +hoggets +hogging +hoggins +hoggish +hoghood +hognuts +hogtied +hogties +hogward +hogwash +hoicked +hoidens +hoiking +hoising +hoisted +hoister +hokiest +Hokusai +Holbein +Holberg +Holborn +holdall +holders +holding +holibut +holiday +holiest +holings +holists +holland +hollers +hollies +holloas +holloed +holloes +hollows +holmium +holster +homaged +homager +homages +Homburg +homeboy +homelyn +Homeric +Homerid +homiest +homings +hominid +hommock +homolog +homonym +honchos +honesty +honeyed +Honiton +honkers +honking +honorer +honours +hooches +hoodies +hooding +hoodlum +hoodman +hoodoos +hoofers +hoofing +hookahs +hookers +hookier +hooking +hooleys +hoolies +hoolock +hoopers +hooping +hoopoes +hoorahs +hoorays +hooroos +hoosgow +hooshed +hooshes +hooters +hooting +hoovers +hopbind +hopbine +hopdogs +hopeful +Hopkins +hoplite +hoppers +hoppier +hopping +hoppled +hopples +hopsack +Horatio +hordein +Hordern +Hordeum +hording +horizon +hormone +hornbug +horners +hornets +hornful +hornier +horning +hornish +hornist +hornito +hornlet +Hornung +horrent +horrify +horrors +horsier +horsing +hosanna +hoseman +hosemen +hosiers +hosiery +Hoskins +hospice +hostage +hostels +hostess +hostile +hosting +hostler +hotbeds +hotched +hotches +hotfoot +hothead +hotline +hotness +hotpots +hotshot +Hotspur +hotters +hottest +hotties +hotting +hottish +houdahs +houdans +Houdini +houghed +hoummos +hounded +housels +housing +Housman +Houston +houting +hoveled +hovered +howbeit +howdahs +howdies +howe'er +however +howkers +howking +howlers +howlets +howling +howzats +hoydens +Hoylake +huanaco +hubbies +hubbubs +hubcaps +huckles +huddled +huddles +hueless +huffier +huffily +huffing +huffish +hugeous +hugging +huitain +hulkier +hulking +hullers +hulling +hulloed +Hulsean +humaner +humanly +humbled +humbler +humbles +humbugs +humbuzz +humdrum +humects +humeral +humerus +humfing +humhums +humidly +humidor +humlies +hummaum +hummels +hummers +humming +hummock +hummums +humogen +humoral +humored +humours +humpens +humpers +humphed +Humphry +humpier +humpies +humping +humuses +hunched +hunches +hundred +Hungary +hungers +hunkers +hunkses +Hunnish +hunters +hunting +hupping +hurdies +hurdled +hurdler +hurdles +hurlers +hurleys +hurlies +hurling +hurraed +hurrahs +hurrays +hurried +hurries +hurters +hurtful +hurting +hurtled +hurtles +husband +hushaby +hushing +huskers +huskier +huskies +huskily +husking +Hussain +hussars +Hussein +hussies +Hussite +hustled +hustler +hustles +huswife +hutches +hutment +hutting +hutzpah +Huygens +huzoors +huzzaed +huzzahs +huzzies +hyacine +hyaenas +hyaline +hyalite +hyaloid +hybrids +hydatid +hydrant +hydrate +hydrias +hydride +hydroid +hydrous +hydroxy +Hygeian +hygiene +hylists +hyloist +hymenal +hymnals +hymnary +hymning +hymnist +hymnody +hypates +Hypatia +hyperon +hyphens +hypnics +hypnoid +hypnone +hypnums +hypogea +hyponym +hypoxia +hypoxic +hypping +hypural +hyraces +hyraxes +hyssops diff --git a/com/agnibho/code/anagram/dictionary/H8.txt b/com/agnibho/code/anagram/dictionary/H8.txt new file mode 100644 index 0000000..c87f86e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H8.txt @@ -0,0 +1,1009 @@ +Habakkuk +habanera +Habanero +habitans +habitant +habitats +habiting +habitual +habitude +habitu�s +hachures +hacienda +hackbolt +hackbuts +hackette +hackings +hacklers +hacklets +hacklier +hackling +hackneys +haddocks +hadronic +haematic +haematin +haeremai +hagberry +hagbolts +hagdowns +Haggadah +Haggadic +haggards +haggises +hagglers +haggling +Haiducks +Hailsham +hailshot +hairbell +haircare +haircuts +hairgrip +hairiest +hairless +hairlike +hairline +hairpins +Haitians +Halachah +halalled +halation +halavahs +halberds +halberts +halcyons +haleness +halfling +halfpace +halftone +halibuts +halicore +halidoms +halimote +halimots +haliotis +halitous +hallalis +hallians +halliard +hallings +hallions +hallmark +halloaed +halloing +hallooed +halloumi +hallowed +halluces +hallways +hallyons +halogens +haltered +halteres +haltings +halyards +hamartia +hambling +Hamburgh +Hamburgs +hamewith +Hamheung +Hamilton +hammered +hammerer +hammiest +hammocks +hampered +hampster +hamsters +hamulate +hanapers +handbags +handbell +handbill +handbook +handcart +handclap +handcuff +handfast +handfuls +handgrip +handhold +handicap +handiest +handjars +handlers +handless +handling +handmade +handmaid +handouts +handover +handplay +handrail +handsaws +handsels +handsets +handsome +handwork +handyman +handymen +hanepoot +hangable +hangbird +Hangchow +hangdogs +hangfire +hangings +hangnail +hangnest +hangouts +hangover +Hangzhou +hankered +Hannibal +Hannover +Hanukkah +hanumans +ha'penny +haploidy +happened +happiest +Hapsburg +hapteron +haqueton +harambee +harangue +harassed +harasser +harasses +harbored +harborer +harbours +hardback +hardbake +hardball +hardbeam +hardcase +hardcore +hardened +hardener +hardface +hardhack +hardhats +hardhead +hardiest +hardline +hardness +hardship +hardtack +hardtops +hardware +hardwood +harebell +harewood +Harfleur +haricots +Harijans +Haringey +harkened +Harleian +harlotry +harmalas +harmalin +harmless +harmonic +harmosts +harmosty +haroseth +harpings +harpists +harpoons +harridan +harriers +Harrison +harrowed +harrumph +harrying +harshens +harshest +harslets +Hartford +Hartnell +haruspex +harvests +hasheesh +Hasidism +Hassidic +hassling +hassocks +hassocky +hastated +hastened +hastener +hastiest +hastings +hatbands +hatboxes +hatbrush +hatchels +hatchers +hatchery +hatchets +hatchety +hatching +hatchway +hateable +hateless +Hatfield +hatguard +Hathaway +hatracks +hatstand +Hatteria +hattings +hattocks +hauberks +haulages +hauliers +haunched +haunches +haunters +haunting +hauriant +haurient +hausfrau +hautbois +hautboys +havelock +havening +haveours +haverels +havering +havildar +haviours +havocked +Hawaiian +hawbucks +hawfinch +hawkbell +hawkbits +hawklike +hawkweed +hawthorn +haybands +hayboxes +haycocks +hayfield +hayforks +haylofts +haymaker +hayricks +hayrides +hayseeds +haystack +haywards +haywires +Hayworth +hazarded +hazardry +hazelnut +haziness +hazzanim +headache +headachy +headages +headband +headbang +headcase +headfast +headgear +headhunt +headiest +headings +headlamp +headland +headless +headline +headlock +headlong +headmark +headmost +headnote +headpins +headrace +headrail +headrest +headring +headroom +headrope +headsets +headship +headshot +headsman +headsmen +headways +headwind +headword +headwork +healable +healding +healings +healsome +hearings +hearkens +hearsays +hearsing +heartens +heartier +hearties +heartily +hearting +heartlet +heartpea +heatedly +heathens +heathers +heathery +heathier +Heathrow +heatspot +heavenly +heaviest +heavings +hebdomad +hebetant +hebetate +hebetude +Hebraise +Hebraism +Hebraist +Hebraize +Hebrides +hecatomb +hecklers +heckling +hectares +hectical +hectored +hectorer +hectorly +heddling +hedgehog +hedgepig +hedgerow +hedgiest +hedgings +hedonics +hedonism +hedonist +heedless +heehawed +heelings +heelless +heftiest +Hegelian +hegemony +heighten +heirless +heirloom +heirship +heisters +heisting +heitikis +helenium +heliacal +helicoid +helicons +helideck +heliodor +heliosis +Heliozoa +helipads +heliport +helistop +Helladic +Hellenes +Hellenic +hellicat +helliers +hellions +helloing +hellward +helmeted +helminth +helmless +helmsman +helmsmen +helotage +helotism +helpable +helpdesk +helpings +helpless +helpline +Helpmann +helpmate +helpmeet +Helsinki +Helvetia +Helvetic +Helvetii +hematite +hemiolas +hemiolia +hemiolic +hemiones +hemionus +hemiopia +hemiopic +hemlines +hemlocks +hemostat +hempbush +hempiest +henbanes +henchman +henchmen +henequen +henequin +heniquin +Henmania +henpecks +henroost +Hepatica +hepatics +hepatise +hepatite +hepatize +hepsters +heptagon +heptarch +Hepworth +Heracles +Heraclid +heralded +heraldic +heraldry +herbaged +herbages +herbaria +herbelet +herbiest +herbists +herbless +Hercules +herdboys +herdsman +herdsmen +herdwick +hereaway +heredity +Hereford +hereness +Hereroes +heresies +heretics +hereunto +hereupon +Hereward +herewith +herisson +heritage +heritors +heritrix +herlings +hermetic +Hermione +hernshaw +Herodias +heroical +heroicly +heroines +heroised +heroises +heroized +heroizes +heronsew +heroship +herpetic +herrings +herrying +Herschel +herstory +Hertford +Hertzian +hesitant +hesitate +Hesperia +hesperid +Hesperis +Hesperus +hetaerae +hetaerai +hetairai +hetairas +hetairia +heuchera +heurekas +heuretic +hexafoil +hexaglot +hexagons +hexagram +hexaplar +hexaplas +Hexapoda +hexapods +hexapody +hexylene +Heyducks +Hezekiah +hiatuses +Hiawatha +hibachis +hibernal +Hibernia +Hibiscus +hicatees +hiccatee +hiccough +hiccuped +hickwall +hidalgas +hidalgos +hiddenly +hideaway +hideouts +hidlings +hidrosis +hidrotic +hielaman +hierarch +hieratic +hierurgy +higglers +higgling +highball +highboys +highbrow +Highbury +Highgate +highjack +highland +highmost +highness +highroad +hightail +highting +highways +hijacked +hijacker +hilarity +hildings +hillfolk +hilliest +hillocks +hillocky +hilloing +hillside +hilltops +Himalaya +himation +Hinayana +Hinckley +hindered +hinderer +hindfeet +hindfoot +hindhead +hindlegs +hindmost +Hinduise +Hinduism +Hinduize +hindward +hinnying +hipparch +hippiest +hippings +hippuric +Hippuris +hippuses +hippydom +hipsters +hiragana +hireable +hireling +Hirohito +hirpling +hirrient +hirsling +Hispania +Hispanic +hissings +histioid +histogen +histones +historic +histrion +histrios +hitchers +hitchily +hitching +hithered +hitherto +hiveless +hivelike +hiveward +hoactzin +hoarders +hoarding +hoarhead +hoariest +hoarsely +hoarsens +hoarsest +hoasting +hoastman +hoastmen +hoatzins +Hobbists +hobbitry +hobblers +hobbling +hobbyism +hobbyist +hobdayed +hobnails +hobnobby +Hochheim +hocusing +hocussed +hocusses +hoddling +hoedowns +Hoffmann +Hoffnung +hogbacks +hoggerel +hoggings +Hogmanay +hogshead +hogtying +hogwards +hoicking +hoicksed +hoickses +hoisters +hoisting +hoistman +hoistmen +hoistway +Hokkaido +holdalls +holdback +holdings +holibuts +holidays +holiness +holistic +hollands +hollered +Holliger +holloaed +holloing +Holloway +hollowed +hollower +hollowly +Holocene +hologram +holoptic +Holostei +holotype +holozoic +Holstein +holsters +Holyhead +homagers +homaging +homaloid +Homburgs +homeboys +homegirl +homeland +homeless +homelier +homelike +homelily +homelyns +homeobox +homeosis +homeotic +homesick +homespun +homeward +homework +homicide +homilies +homilist +hominess +hominids +hominies +hominoid +hommocks +homodont +homodyne +homogamy +homogeny +homologs +homology +homonyms +homonymy +homotony +homotype +homotypy +homuncle +Honduran +Honduras +Honecker +Honegger +honester +honestly +honewort +honeybun +honeying +honeypot +Honolulu +honorand +honorary +honorers +honoured +honourer +hoodless +hoodlums +hoodooed +hoodwink +hoofbeat +hoofless +hookiest +hookworm +hooligan +hoolocks +hoorahed +hoorayed +hoosegow +hoosgows +hooshing +hootches +hoovered +hopbinds +hopbines +hopefuls +hopeless +hopingly +hoplites +hoppiest +hoppings +hoppling +hopsacks +Horatian +horizons +Horlicks +hormonal +hormones +hormonic +hornbeak +hornbeam +hornbill +hornbook +hornfels +hornfuls +horngeld +horniest +hornings +hornists +hornitos +hornless +hornlets +hornlike +hornpipe +horntail +hornwork +hornworm +hornwort +horologe +horology +Horowitz +horrible +horribly +horridly +horrific +horsecar +horsefly +horseman +horsemen +horseway +horsiest +horsings +Hortense +hosannas +hosepipe +hospices +hospital +hospitia +hospodar +hostages +hosteler +hostelry +hotching +hotchpot +hotelier +hotfoots +hotheads +hothouse +hotlines +hotplate +hotshots +hottered +houghing +houmuses +hounding +Hounslow +hourlong +houseboy +housedog +houseful +houseman +housemen +housesat +housesit +housetop +housings +housling +hovelled +hoveller +hovering +howitzer +howlings +huanacos +huaquero +huarache +hubbuboo +huckster +huddling +Hudibras +huffiest +hugeness +huggable +Huguenot +huissier +huitains +hulkiest +hulloing +humanely +humanest +humanise +humanism +humanist +humanity +humanize +humanoid +humblest +humbling +Humboldt +humdrums +humected +humidify +humidity +humidors +humified +humifies +humility +hummable +hummaums +hummings +hummocks +hummocky +hummuses +humoresk +humoring +humorist +humorous +humoured +humpback +humphing +Humphrey +humpiest +humpties +humstrum +hunching +hundreds +hungered +hungerly +hungrier +hungrily +hunkered +huntaway +huntings +huntress +huntsman +huntsmen +hurcheon +hurdlers +hurdling +Huronian +hurrahed +hurraing +hurrayed +hurrying +hurtless +hurtling +husbands +huskiest +huskings +hustings +hustlers +hustling +hutments +hutzpahs +huzzahed +huzzaing +hyacinth +hyblaean +hydatids +hydatoid +hydranth +hydrants +hydrated +hydrates +hydremia +hydrides +hydrogen +hydroids +hydromel +Hydromys +hydropic +hydropsy +hydroski +hydroxyl +hydrozoa +hygienic +hylicism +hylicist +hylobate +hyloists +hymeneal +hymenean +hymenial +hymenium +hymnbook +hymnists +hyoscine +hypalgia +Hyperion +hypernym +hyperons +hyphened +hyphenic +hypnoses +hypnosis +hypnotee +hypnotic +hypobole +hypocist +hypoderm +hypogaea +hypogeal +hypogean +hypogene +hypogeum +hypogyny +hyponyms +hyponymy +hypothec +hyracoid +hysteria +hysteric diff --git a/com/agnibho/code/anagram/dictionary/H9.txt b/com/agnibho/code/anagram/dictionary/H9.txt new file mode 100644 index 0000000..2c90f43 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/H9.txt @@ -0,0 +1,1024 @@ +haanepoot +habaneras +Habaneros +haberdine +habergeon +habilable +habitable +habitably +habitants +habituals +habituate +haciendas +hackamore +hackberry +hackbolts +hackeries +hackettes +hackliest +hackneyed +hacqueton +hadrosaur +haecceity +haematite +haematoid +haematoma +haemocoel +haemocyte +haemonies +haemostat +hagfishes +Haggadist +haggardly +haggishly +hagiarchy +hagiology +hailshots +hailstone +hairbells +haircloth +hairgrips +hairiness +hairlines +hairstyle +halalling +halations +Halesowen +halflings +halfpaces +halfpence +halfpenny +halftones +halicores +halieutic +halimotes +halitosis +halitotic +halituses +hallalled +halliards +Halliwell +hallmarks +halloaing +hallooing +halloumis +hallowing +Hallowmas +hallstand +Hallstatt +halobiont +halophile +halophily +halophobe +halophyte +Haloragis +halothane +haltering +haltingly +halverses +hamadryad +hamadryas +Hamamelis +hamartias +hamburger +Hamburghs +hamfatter +hammerers +hammering +hammerkop +hammerman +hammermen +hampering +Hampshire +Hampstead +hampsters +hamstring +hamstrung +handbells +handbills +handbooks +handbrake +handcarts +handclaps +handcraft +handcuffs +handfasts +handgrips +handholds +handicaps +handiness +handiwork +handlebar +handlings +handmaids +handovers +handplays +handrails +handshake +handsomer +handspike +handstaff +handstand +handsturn +handtowel +hanepoots +hangbirds +hangnails +hangnests +hangovers +hankering +Hanseatic +hanselled +haphazard +haplessly +haplology +ha'p'orth +happening +happiness +hapterons +haquetons +harambees +harangued +haranguer +harangues +harassers +harassing +harbinger +harborage +harborers +harboring +harboured +harbourer +hardbacks +hardbakes +hardbeams +hardboard +hardcover +hardeners +hardening +hardfaces +hardgrass +hardhacks +hardheads +hardihood +hardiment +hardiness +hardliner +hardshell +hardships +hardtacks +hardwired +harebells +harigalds +hariolate +harkening +harlequin +harmaline +harmattan +harmfully +harmonica +harmonics +harmonies +harmonise +harmonist +Harmonite +harmonium +harmonize +harmotome +harnessed +harnesses +harpooned +harpooner +harquebus +harridans +Harrogate +Harrovian +harrowing +harrumphs +harshened +harshness +hartshorn +haruspicy +harvested +harvester +Hasdrubal +Hassidism +hasteners +hastening +hastiness +hatchback +hatchings +hatchling +hatchment +hatchways +hatefully +hatguards +hatstands +haughtier +haughtily +haunching +hauntings +Hauptmann +hausfraus +haustella +haustoria +havelocks +haverings +haversack +haversine +havildars +havocking +hawaiians +hawkbells +hawkishly +hawksbill +Hawksmoor +hawkweeds +hawsehole +hawsepipe +Hawthorne +hawthorns +hayfields +haymakers +haymaking +haystacks +hazarding +hazardize +hazardous +hazelnuts +headaches +headbands +headbangs +headboard +headcases +headchair +headcloth +headcount +headfasts +headfirst +headframe +headguard +headhunts +headiness +headlamps +headlands +headlease +headlight +headlined +headliner +headlines +headlocks +headmarks +headnotes +headphone +headpiece +headraces +headrails +headreach +headrests +headrings +headrooms +headropes +headscarf +headshake +headships +headshots +headstall +headstand +headstick +headstock +headstone +headwater +headwinds +headwords +healingly +healthful +healthier +healthily +heapstead +hearkened +hearkener +heartache +heartburn +heartened +heartfelt +hearthrug +heartiest +heartikin +heartland +heartless +heartlets +heartling +heartpeas +heartseed +heartsome +heartwood +heartworm +heathcock +heathenry +heathfowl +heathiest +heatproof +heatspots +heaviness +Heaviside +hebdomads +hebetated +hebetates +Hebraical +Hebraised +Hebraiser +Hebraises +Hebraized +Hebraizer +Hebraizes +Hebrewess +Hebrewism +Hebridean +hecatombs +hecogenin +hectogram +hectorers +hectoring +hectorism +hederated +hedgebill +hedgehogs +hedgepigs +hedgerows +hedonists +hedyphane +heedfully +heediness +heehawing +heffalump +heftiness +hegemonic +Heidegger +heightens +Heilbronn +heinously +heiresses +heirlooms +heliborne +helibuses +helically +Helicidae +helictite +helidecks +helidrome +heliology +heliostat +heliotype +heliotypy +heliozoan +heliozoic +helipilot +heliports +heliscoop +heliskier +helistops +hellebore +hellenise +Hellenism +Hellenist +hellenize +hellhound +hellishly +hellwards +Helmholtz +helminths +helotries +helpdesks +helpfully +helplines +helpmates +helpmeets +Helvellyn +Helvetian +helvetium +hemialgia +hemicycle +hemihedry +Hemingway +hemiolias +hemiopsia +Hemiptera +hemispace +hemistich +hemitrope +hemostats +hemstitch +Henderson +hendiadys +henequens +henequins +heniquins +henneries +henpecked +Henrietta +henroosts +Hepaticae +hepatical +hepatised +hepatises +hepatites +hepatitis +hepatized +hepatizes +heptaglot +heptagons +heptapody +heptarchs +heptarchy +Heraclean +Heraklion +heralding +herbalism +herbalist +herbarian +herbaries +herbarium +herbelets +herbicide +herbivora +herbivore +herbivory +herborise +herborist +herborize +hercogamy +Herculean +Hercynian +hercynite +herdesses +herdwicks +hereabout +hereafter +heretical +hereunder +herissons +heritable +heritably +heritages +heritress +herkogamy +hermandad +hermetics +hermitage +hermitess +herniated +hernshaws +Herodotus +heroising +heroizing +heronries +heronsews +heronshaw +Herpestes +herpetoid +herringer +Heseltine +hesitance +hesitancy +hesitated +hesitates +hesitator +Hesperian +hesperids +hessonite +hesternal +Hesychasm +Hesychast +hetaerism +hetaerist +hetairias +hetairism +hetairist +heterodox +heteronym +heteropod +heterosis +heterotic +hetmanate +heuristic +hexachord +hexagonal +hexagrams +Hexagynia +hexahedra +hexameter +Hexandria +hexaploid +hexastich +hexastyle +Hexateuch +Heyerdahl +Hezbollah +hibakusha +hibernate +Hibernian +hibernise +hibernize +hiccatees +hiccoughs +hiccuping +hiccupped +hickories +Hickstead +hickwalls +hiddenite +hideaways +hideosity +hideously +hidrotics +hielamans +Hieracium +hierarchs +hierarchy +hieratica +hierocrat +hierodule +hierogram +hierology +higglings +highballs +highbrows +highjacks +highlands +highlight +highroads +Highsmith +hightails +hijackers +hijacking +hilarious +hillfolks +hilliness +hillsides +Hilversum +Himalayan +Himalayas +himations +Himyarite +hindberry +Hindemith +hinderers +hindering +hindheads +hindrance +hindsight +Hinduised +Hinduises +Hinduized +Hinduizes +Hindustan +hintingly +hipparchs +Hipparion +hippiatry +hippiedom +hippocras +hippodame +hippology +Hippolyta +Hippolyte +hippurite +hircosity +hirelings +Hiroshima +hirrients +hirselled +hirsutism +Hirudinea +hirundine +hispidity +hissingly +histamine +histidine +histogens +histogeny +histogram +histology +historian +histories +historify +historism +Hitchcock +hithering +Hitlerism +Hitlerite +hivewards +Hizbollah +Hizbullah +hoactzins +hoardings +hoarheads +hoarhound +hoariness +hoarsened +Hobbesian +Hobbinoll +hobbyists +hobbyless +hobdaying +hobgoblin +hobnailed +hobnobbed +hocketing +hocussing +hodiernal +hodmandod +hodograph +hodometer +hodoscope +hoggerels +hoggeries +hoggishly +hogsheads +hogwashes +hoicksing +hoistways +Holarctic +holdbacks +holderbat +H�lderlin +holidayed +Hollander +hollering +Hollerith +holloaing +holloware +hollowest +hollowing +hollyhock +Hollywood +Holmesian +holocaust +holocrine +holograms +holograph +holophote +holophyte +holotypes +holotypic +Holsteins +holstered +holystone +homaloids +homebound +homebuyer +homecomer +homecraft +homegirls +homelands +homeliest +homemaker +homeomery +homeopath +homeowner +Homeridae +homespuns +homestall +homestead +homewards +homeyness +homicidal +homicides +homiletic +homilists +hominidae +hominoids +homoeobox +homoeosis +homoeotic +homogamic +homograft +homograph +homologue +homomorph +homonymic +homophile +homophobe +homophone +homophony +homophyly +homoplasy +homopolar +Homoptera +homotaxic +homotaxis +homotonic +homotypal +homotypes +homotypic +homousian +homuncles +homuncule +homunculi +Hondurans +honestest +honesties +honeworts +honeybuns +honeycomb +honeyless +honeymoon +honeypots +honorable +honorably +honorands +honoraria +honorific +honourers +honouring +hoodooing +hoodwinks +hoofbeats +hoofprint +hookworms +hooligans +hoorahing +hooraying +hoosegows +hootnanny +hoovering +hopefully +hoplology +hordeolum +horehound +hornbeaks +hornbeams +hornbills +hornbooks +horniness +hornpipes +hornstone +horntails +hornworks +hornworms +hornworts +hornwrack +hornyhead +horologer +horologes +horologic +horometry +horoscope +horoscopy +horrified +horrifies +horseback +horsebean +horsefair +horsehair +horsehide +horseless +horsemeat +horsemint +horseplay +horseshoe +horsetail +horseways +horsewhip +horsiness +hortation +hortative +hortatory +Hortensio +hosepipes +hospitage +hospitals +hospitium +hospodars +hostelers +hosteller +hostesses +hostilely +hostility +hotchpots +hoteliers +hotfooted +hotheaded +hothouses +hotplates +Hottentot +hottering +hoummoses +hourglass +hourplate +houseboys +housecoat +housedogs +housefuls +household +houseless +houselled +housemaid +housesits +housetops +housewife +housework +Houyhnhnm +hovellers +hovelling +hoverport +howitzers +howsoever +howtowdie +hoydenish +hoydenism +huaqueros +huaraches +hubbuboos +hubristic +huckaback +hucksters +huckstery +huffiness +huffishly +hugeously +Huguenots +huissiers +humanised +humaniser +humanises +humanists +humanized +humanizer +humanizes +humankind +humanlike +humanness +humanoids +humbleses +humblesse +humblings +humbugged +humbugger +humbuzzes +humdinger +humectant +humectate +humecting +humective +humidness +humifying +humiliant +humiliate +hummocked +humongous +humorally +humoresks +humorists +humorless +humouring +humpbacks +Humphries +humstrums +humungous +hunchback +hundreder +hundredth +Hungarian +hungerful +hungering +hungriest +hunkering +Hunniford +huntaways +Hunterian +hurcheons +hurdlings +hurrahing +hurraying +hurricane +hurricano +hurriedly +hurryings +hurtfully +husbanded +husbandly +husbandry +hushabied +hushabies +huskiness +hustlings +Huttonian +huzzahing +huzzaings +hyacinths +Hyaenidae +hyalinise +hyalinize +hyalonema +hybridise +hybridism +hybridity +hybridize +hybridoma +hybridous +hydathode +Hyderabad +hydraemia +hydrangea +hydranths +hydrating +hydration +hydraulic +hydrazide +hydrazine +hydriodic +hydrocele +hydrofoil +hydrology +hydrolyse +hydrolyte +hydrolyze +hydronaut +hydroptic +hydropult +hydroskis +hydrosoma +hydrosome +hydrostat +hydrovane +hydroxide +hydrozoan +hydrozoon +hyetology +hygienics +hygienist +hygristor +hygrodeik +hygrology +hygrophil +hygrostat +hylicists +hylobates +hylophyte +hylozoism +hylozoist +hymenaeal +hymenaean +hymeneals +hymeniums +hymnaries +hymnbooks +hymnodist +hymnology +hypallage +hyperbola +hyperbole +hypercube +hyperemia +hyperemic +hypergamy +Hypericum +hyperlink +hypermart +hypernyms +hypernymy +hyperopia +hypertext +hyphenate +hyphening +hyphenise +hyphenism +hyphenize +hypinosis +hypnogeny +hypnoidal +hypnology +hypnotees +hypnotics +hypnotise +hypnotism +hypnotist +hypnotize +hypnotoid +hypoblast +hypocaust +hypocists +hypocotyl +hypocrisy +hypocrite +hypoderma +hypoderms +hypogaeal +hypogaean +hypogaeum +hypogeous +hypomania +hypomanic +hyponasty +hypostyle +hypotaxis +hypothecs +hypotonia +hypotonic +hypoxemia +hypoxemic +hysterias +hysterics +hysteroid diff --git a/com/agnibho/code/anagram/dictionary/I1.txt b/com/agnibho/code/anagram/dictionary/I1.txt new file mode 100644 index 0000000..0ddf2ba --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I1.txt @@ -0,0 +1 @@ +i diff --git a/com/agnibho/code/anagram/dictionary/I10.txt b/com/agnibho/code/anagram/dictionary/I10.txt new file mode 100644 index 0000000..00bac40 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I10.txt @@ -0,0 +1,1118 @@ +iambically +iatrogenic +Icelanders +ichneumons +ichnolites +ichthyoids +ichthyosis +ichthyotic +iconically +iconifying +iconoclasm +iconoclast +iconolater +iconolatry +iconomachy +iconomatic +iconometer +iconometry +iconoscope +icosahedra +Icosandria +idealisers +idealising +idealistic +idealities +idealizers +idealizing +idealogues +ideational +idempotent +identified +identifier +identifies +identikits +identities +ideographs +ideography +ideologics +ideologies +ideologist +ideologues +ideophones +idioblasts +idiographs +idiolectal +idiolectic +idiopathic +idiophones +idioplasms +idioticons +idolatress +idolatrise +idolatrize +idolatrous +idoloclast +ignescents +ignimbrite +ignipotent +ignobility +ignominies +ignorances +ignorantly +ignoration +IJsselmeer +illaqueate +illatively +illaudable +illaudably +Illecebrum +illegalise +illegality +illegalize +Illinoians +illiteracy +illiterate +illocution +illuminant +illuminate +illuminati +illuminato +illuminers +illumining +illuminism +illuminist +illusively +illustrate +imaginable +imaginably +imaginings +imaginists +imbalances +imbecility +imbibition +imbittered +imbosoming +imbowering +imbrangled +imbrangles +imbricated +imbricates +imbroccata +imbroglios +imbrowning +imbruement +imipramine +imitations +immaculacy +immaculate +immanation +immanental +immanently +immantling +immaterial +immaturely +immaturity +immeasured +immemorial +immeritous +immersible +immersions +immigrants +immigrated +immigrates +imminently +immingling +imminution +immiscible +immiserise +immiserize +immissions +immobilise +immobilism +immobility +immobilize +immoderacy +immoderate +immodestly +immolating +immolation +immolators +immoralism +immoralist +immorality +immortally +immortelle +immotility +immoveable +immunising +immunities +immunizing +immunoblot +immunology +immurement +impactions +impainting +impairment +impalement +impalpable +impalpably +impaludism +impanation +impanelled +imparadise +imparlance +impartable +impartible +impartibly +impartment +impassable +impassably +impassible +impassibly +impassions +impatience +impeachers +impeaching +impearling +impeccable +impeccably +impeccancy +impedances +impediment +impeditive +impellents +impendence +impendency +impenitent +imperative +imperators +imperfects +imperially +imperilled +impersonal +impervious +impetrated +impetrates +impishness +implacable +implacably +implanting +impleaders +impleading +impledging +implements +impletions +implexions +implexuous +implicated +implicates +implicitly +implodents +implorator +implosions +implunging +impocketed +impoldered +impolitely +importable +importance +importancy +importless +importuned +importuner +importunes +imposingly +imposition +impossible +impossibly +imposthume +impostumed +impostumes +impostures +impotently +impoundage +impounders +impounding +impoverish +imprecated +imprecates +impregnant +impregnate +impresario +impressing +impression +impressive +impressure +impresting +imprimatur +imprinters +imprinting +imprisoned +improbable +improbably +impromptus +improperly +improvable +improvably +improvided +improvised +improviser +improvises +imprudence +impudences +impudently +impudicity +impugnable +impugnment +impuissant +impulsions +impundulus +impureness +impurities +impurpling +imputation +imputative +inaccuracy +inaccurate +inactivate +inactively +inactivity +inadaptive +inadequacy +inadequate +inamoratas +inamoratos +inanimated +inappetent +inapposite +inaptitude +inartistic +inaugurals +inaugurate +inbreathed +inbreathes +inbreeding +inbringing +incandesce +incantator +incapables +incapacity +Incaparina +incarnated +incarnates +incasement +incautions +incautious +incedingly +incendiary +incentives +inceptions +inceptives +incessancy +incestuous +inchoately +inchoating +inchoation +inchoative +incidences +incidental +incinerate +incipience +incipiency +incisiform +incisively +incisorial +incitation +incitative +incitement +incitingly +incivility +inclasping +inclemency +inclinable +inclinings +inclipping +inclosures +includable +includible +inclusions +incogitant +incognitas +incognitos +incoherent +incohesion +incohesive +incommoded +incommodes +incompared +incomplete +incomposed +inconstant +incoronate +incorporal +incrassate +increasers +increasing +incredible +incredibly +increments +increscent +incrusting +incubating +incubation +incubative +incubators +incubatory +inculcated +inculcates +inculcator +inculpable +inculpably +inculpated +inculpates +incumbency +incumbents +incunables +incunabula +incurables +incurrable +incurrence +incursions +incurvated +incurvates +indagating +indagation +indagative +indagators +indagatory +indapamide +indebtment +indecenter +indecently +indecision +indecisive +indecorous +indecorums +indefinite +indelicacy +indelicate +indentions +indentured +indentures +indexation +Indianised +Indianises +Indianized +Indianizes +indicating +indication +indicative +indicators +indicatory +indicolite +indictable +indictions +indictment +indigences +indigenise +indigenize +indigenous +indigently +indigested +indignance +Indigofera +indigolite +indirectly +indiscreet +indiscrete +indisposed +indisposes +indistinct +inditement +individual +individuum +indocility +indolences +indolently +Indonesian +indraughts +inducement +inductance +inductions +indulgence +indulgency +indumentum +indurating +induration +indurative +industrial +industries +indwellers +indwelling +inearthing +inebriants +inebriated +inebriates +ineducable +inefficacy +inelegance +inelegancy +ineligible +ineligibly +ineloquent +ineptitude +inequality +inequation +inequities +inerasable +inerasably +inerasible +inerasibly +inesculent +inevitable +inevitably +inexistant +inexistent +inexorable +inexorably +inexpertly +inexpiable +inexpiably +inexplicit +inextended +infallible +infallibly +infamising +infamizing +infamonise +infamonize +infamously +infanthood +infantries +infarction +infatuated +infatuates +infeasible +infections +infectious +infelicity +inferences +inferiorly +infernally +inferrable +inferrible +infibulate +infidelity +infielders +infighters +infighting +infillings +infiltered +infiltrate +infinitant +infinitary +infinitate +infinitely +infinitive +infinitude +infirmarer +infirmness +inflatable +inflations +inflecting +inflection +inflective +inflexible +inflexibly +inflexions +inflexures +inflicting +infliction +inflictive +influenced +influences +influenzal +influxions +informally +informants +infortunes +infracting +infraction +infractors +infragrant +infrahuman +infraposed +infrasonic +infrasound +infrequent +infringing +infuriated +infuriates +infusorial +infusorian +ingathered +ingeminate +ingenerate +ingestible +ingestions +inglorious +Ingolstadt +ingrafting +ingraining +ingrateful +ingratiate +ingredient +ingression +ingressive +ingrooving +inhabitant +inhabiters +inhabiting +inhabitors +inhalation +inhalators +inharmonic +inherences +inherently +inheriting +inheritors +inheritrix +inhibiting +inhibition +inhibitive +inhibitors +inhibitory +inhumanely +inhumanity +inhumating +inhumation +inimically +inimitable +inimitably +iniquities +iniquitous +initialing +initialise +initialize +initialled +initiating +initiation +initiative +initiators +initiatory +injectable +injections +injudicial +injuncting +injunction +injunctive +injustices +inkberries +inkholders +innateness +innervated +innervates +innholders +innkeepers +innocently +innominate +innovating +innovation +innovative +innovators +innovatory +innuendoed +innuendoes +innumeracy +innumerate +innumerous +innutrient +inobedient +inoculable +inoculated +inoculates +inoculator +inoperable +inoperably +inordinacy +inordinate +inosculate +inpayments +inpourings +inquieting +inquietude +inquilines +inquilinic +inquinated +inquinates +inquirendo +inquisitor +inrushings +insalivate +insalutary +insaneness +insanitary +insatiable +insatiably +inscribers +inscribing +insculping +insectaria +insections +insecurely +insecurity +inselberge +inseminate +insensible +insensibly +insensuous +insentient +inseparate +insertable +insertions +Insessores +insheathed +insheathes +inshelters +inshrining +insightful +insinuated +insinuates +insinuator +insipidity +insipience +insistence +insistency +insobriety +insociable +insolating +insolation +insolently +insolidity +insolvable +insolvably +insolvency +insolvents +insomniacs +insomnious +insouciant +insoulment +inspanning +inspecting +inspection +inspective +inspectors +insphering +inspirable +inspirator +inspirited +inspissate +installant +installers +installing +instalment +instancing +instantial +instarring +instigated +instigates +instigator +instillers +instilling +instilment +instituted +instituter +institutes +institutor +instressed +instresses +instructed +instructor +instrument +insufflate +insulances +insularism +insularity +insulating +insulation +insulators +insulinase +insultable +insultment +insurances +insurgence +insurgency +insurgents +inswathing +inswingers +intactness +intaglioed +intaglioes +intangible +intangibly +integrable +integrally +integrands +integrated +integrates +integrator +integument +intellects +intemerate +intendance +intendancy +intendants +intendedly +intendment +intenerate +intensions +intentions +intentness +interacted +interbrain +interbreed +intercalar +interceded +interceder +intercedes +intercepts +interchain +interclude +intercrops +intercross +interdeals +interdealt +interdicts +interdined +interdines +interested +interfaced +interfaces +interfaith +interfered +interferer +interferes +interferon +Interflora +interflows +interfolds +interfused +interfuses +intergrade +intergrown +intergrows +interiorly +interjects +interknits +interlaced +interlaces +Interlaken +interlards +interleave +interlined +interlines +interlinks +interlocks +interloped +interloper +interlopes +interluded +interludes +interlunar +intermarry +interments +intermezzi +intermezzo +intermixed +intermixes +intermodal +internally +internists +internment +internodal +internodes +internship +interpaged +interpages +interphase +interphone +interplant +interplays +interplead +interpolar +interponed +interpones +interposal +interposed +interposer +interposes +interprets +interradii +interrails +interramal +interregal +interreges +interregna +interreign +interrupts +intersects +intersexes +interspace +interstate +interstice +intertidal +intertrigo +intertwine +intertwist +interunion +interurban +interveins +intervened +intervener +intervenes +intervenor +interviews +intervital +intervolve +interweave +interwinds +interworks +interwound +interwoven +interzonal +interzones +intestates +intestinal +intestines +inthralled +intimacies +intimately +intimating +intimation +intimidate +intimistes +intinction +intituling +intolerant +intonating +intonation +intonators +intoningly +intorsions +intortions +intoxicant +intoxicate +intradoses +intramural +intrastate +intravitam +intreating +intrenched +intrenches +intrepidly +intrigante +intrigants +intriguant +intriguers +intriguing +introduced +introducer +introduces +introjects +introrsely +introspect +introverts +intrusions +intrusting +intubating +intubation +intuitions +intumesced +intumesces +intwisting +inumbrated +inumbrates +inunctions +inundating +inundation +inurbanely +inurbanity +inuredness +inurements +invaginate +invalidate +invaliding +invalidish +invalidism +invalidity +invaluable +invaluably +invariable +invariably +invariance +invariants +invectives +inveighing +inveiglers +inveigling +invendible +inventable +inventible +inventions +inventress +inveracity +inversions +invertedly +investment +inveteracy +inveterate +invigilate +invigorant +invigorate +invincible +invincibly +inviolable +inviolably +inviolated +invisibles +invitation +invitatory +invitement +invitingly +invocating +invocation +invocatory +involucels +involucral +involucres +involucrum +involuting +involution +inwardness +inworkings +inwrapping +inwreathed +inwreathes +iodometric +Ionicising +Ionicizing +ionisation +ionization +ionosphere +Iphigeneia +iracundity +irefulness +irenically +iridaceous +iridectomy +iridescent +iridosmine +iridosmium +irisations +Irishwoman +Irishwomen +Ironbridge +ironfisted +ironically +ironmonger +ironsmiths +ironstones +irradiance +irradiancy +irradiated +irradiates +irradicate +irrational +irregulars +irregulous +irrelation +irrelative +irrelevant +irreligion +irremeable +irremeably +irrenowned +irresolute +irreverent +irrigating +irrigation +irrigative +irrigators +irritating +irritation +irritative +irritators +irruptions +Irvingites +isabelline +isallobars +ischaemias +ischaemics +ischuretic +isentropic +Ishmaelite +Islamicise +Islamicist +Islamicize +Islamising +Islamizing +isoaminile +isoantigen +isochasmic +isocheimal +isocheimic +isochimals +isochronal +isochrones +isoclinals +isoclinics +isocracies +isocrymals +isocyanide +isodynamic +Isoetaceae +isogametes +isogametic +isogenetic +isoglossal +isoglosses +isoglottal +isoglottic +isokinetic +isokontans +isolations +isoleucine +isomerised +isomerises +isomerisms +isomerized +isomerizes +isometrics +isomorphic +isoniazide +isopterous +isoseismal +isoseismic +isosporous +isothermal +isotropism +isotropous +Israelites +Israelitic +Italianate +Italianise +Italianism +Italianist +italianize +italicised +italicises +italicisms +italicized +italicizes +iterations +ithyphalli +itinerancy +itinerants +itinerated +itinerates diff --git a/com/agnibho/code/anagram/dictionary/I11.txt b/com/agnibho/code/anagram/dictionary/I11.txt new file mode 100644 index 0000000..7d63ae8 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I11.txt @@ -0,0 +1,1046 @@ +ichnography +ichthyoidal +ichthyolite +ichthyology +ichthyopsid +Ichthyornis +ichthyosaur +iconoclasts +iconography +iconolaters +iconologist +iconometers +iconoscopes +iconostases +iconostasis +icosahedral +icosahedron +icosandrian +icosandrous +icteritious +idempotency +idempotents +identically +identifiers +identifying +ideographic +ideological +ideologists +ideopraxist +idioblastic +idioglossia +idiographic +idiomatical +idiomorphic +idiopathies +idiotically +idolatrised +idolatrises +idolatrized +idolatrizes +idolisation +idolization +idoloclasts +idoxuridine +idyllically +ignobleness +ignominious +ignoramuses +Ignorantine +ignorations +illaqueated +illaqueates +illegalised +illegalises +illegalized +illegalizes +illiberally +illicitness +illimitable +illimitably +Illingworth +illiquation +illiquidity +illiterates +illocutions +illogically +illuminable +illuminance +illuminants +illuminated +illuminates +illuminator +illuminatus +illuminists +illusionism +illusionist +illustrated +illustrates +illustrator +illustrious +illuviation +illywhacker +imagination +imaginative +imbittering +imbrangling +imbricately +imbricating +imbrication +imbroccatas +imitability +imitatively +immanations +immanentism +immanentist +immarginate +immediacies +immediately +immediatism +immedicable +immenseness +immensities +immigrating +immigration +imminutions +immiserised +immiserises +immiserized +immiserizes +immitigable +immitigably +immobilised +immobilises +immobilized +immobilizes +immodesties +immolations +immomentous +immoralists +immortalise +immortality +immortalize +immortelles +immoveables +immunoassay +immunoblots +immunogenic +immunotoxic +immunotoxin +impairments +impalements +impanelling +impannelled +imparkation +imparlances +impartation +impartially +impassioned +impassively +impassivity +impastation +impatienses +impatiently +impeachable +impeachment +impeccables +impecunious +impedimenta +impediments +impenetrate +impenitence +impenitency +impenitents +imperatives +imperfectly +imperforate +imperialise +imperialism +imperialist +imperiality +imperialize +imperilling +imperilment +imperiously +impermanent +impermeable +impermeably +impersonate +impertinent +imperviable +impetigines +impetrating +impetration +impetrative +impetratory +impetuosity +impetuously +impignorate +impingement +impiousness +implacental +implausible +implausibly +implemental +implemented +implementer +implementor +implicating +implication +implicative +imploration +imploratory +imploringly +impocketing +impoldering +impolitical +impoliticly +imponderous +importances +importantly +importation +importunacy +importunate +importunely +importuners +importuning +importunity +impositions +impossibles +imposthumed +imposthumes +impostumate +impoundable +impoundment +impractical +imprecating +imprecation +imprecatory +imprecisely +imprecision +impregnable +impregnably +impregnated +impregnates +impresarios +impressible +impressions +impressment +impressures +imprimaturs +imprisoning +improbation +improbative +improbatory +improbities +impropriate +impropriety +improvement +improvident +improvingly +improvisate +improvisers +improvising +imprudently +impugnation +impugnments +impuissance +impulsively +impulsivity +imputations +inabilities +inactivated +inactivates +inadaptable +inadequates +inadvertent +inadvisable +inadvisably +inalienable +inalienably +inalterable +inalterably +inanimately +inanimation +inappetence +inappetency +inattention +inattentive +inaugurated +inaugurates +inaugurator +inauthentic +inbreathing +incalescent +incandesced +incandesces +incantation +incantators +incantatory +incapacious +incapsulate +incarcerate +incardinate +incarnadine +incarnating +incarnation +incarvillea +incasements +incendivity +incensation +incensement +incensories +incentivise +incentivize +incertainty +incertitude +incessantly +inchoations +inchoatives +incidentals +incinerated +incinerates +incinerator +incipiently +incitations +incitatives +incitements +inclemently +inclination +inclinatory +inclusively +incoercible +incogitable +incogitancy +incognisant +incognizant +incoherence +incoherency +incommoding +incommodity +incompetent +incompliant +incomposite +incongruent +incongruity +incongruous +inconscient +inconscious +inconsonant +inconstancy +incontinent +incoronated +incorporate +incorporeal +incorrectly +incorruptly +incrassated +incrassates +increasable +increaseful +increasings +incredulity +incredulous +incremation +incremental +incremented +incriminate +incrossbred +incubations +inculcating +inculcation +inculcative +inculcators +inculcatory +inculpating +inculpation +inculpatory +incumbently +incunabular +incunabulum +incuriosity +incuriously +incurrences +incurvating +incurvation +incurvature +incurvities +indagations +indecencies +indecentest +indeciduate +indeciduous +indefinable +indefinably +indehiscent +indemnified +indemnifies +indemnifing +indemnities +indentation +indenturing +independent +indesignate +indexterity +Indianising +Indianizing +indications +indicatives +indictments +indifferent +indigencies +indigenised +indigenises +indigenized +indigenizes +indigestion +indigestive +indignantly +indignation +indignities +indirection +indisposing +inditements +individable +individuals +individuate +individuums +indivisible +indivisibly +indomitable +indomitably +Indonesians +indubitable +indubitably +inducements +inductances +inductility +inductional +inductively +inductivity +indulgences +indulgently +indumentums +induplicate +industrials +industrious +inebriating +inebriation +inebrieties +inedibility +ineffective +ineffectual +inefficient +inelaborate +inelegantly +ineloquence +ineluctable +ineluctably +inenarrable +inequations +inequitable +inequitably +inescapable +inescapably +inessential +inestimable +inestimably +inexactness +inexcitable +inexcusable +inexcusably +inexecrable +inexecution +inexhausted +inexistence +inexpectant +inexpedient +inexpensive +inextension +infamonised +infamonises +infamonized +infamonizes +infangthief +infanticide +infantilism +infantryman +infantrymen +infarctions +infatuating +infatuation +infecundity +inferential +inferiority +infernality +infertility +infestation +infeudation +infibulated +infibulates +infiltering +infiltrated +infiltrates +infiltrator +infinitated +infinitates +infinitival +infinitives +infirmarian +infirmaries +infirmities +inflammable +inflammably +inflatables +inflatingly +inflections +inflexional +inflictions +influencing +influential +infomercial +informality +informatics +information +informative +informatory +infracostal +infractions +infrangible +infrangibly +infrequence +infrequency +infructuous +infundibula +infuriating +infuriation +infusorians +ingathering +ingeminated +ingeminates +ingenerated +ingenerates +ingeniously +ingenuities +ingenuously +ingratiated +ingratiates +ingratitude +ingredients +ingressions +ingurgitate +inhabitable +inhabitance +inhabitancy +inhabitants +inhabitress +inhalations +inharmonies +inherencies +inheritable +inheritance +inheritress +inhibitions +inhumations +inimicality +initialised +initialises +initialized +initializes +initialling +initiations +initiatives +injudicious +injunctions +injuriously +innavigable +innavigably +innervating +innervation +innocuously +innominable +innovations +innoxiously +innuendoing +innumerable +innumerably +innumerates +innutrition +inobedience +inobservant +inobtrusive +inoculating +inoculation +inoculative +inoculators +inoculatory +inodorously +inoffensive +inofficious +inoperative +inopportune +inorganised +inorganized +inosculated +inosculates +inquilinism +inquilinity +inquilinous +inquinating +inquination +inquiration +inquirendos +inquiringly +inquisition +inquisitive +inquisitors +insalivated +insalivates +insalubrity +insatiately +inscribable +inscription +inscriptive +inscrutable +inscrutably +insectaries +insectarium +insecticide +insectiform +insectifuge +Insectivora +insectivore +insectology +inseminated +inseminates +inseminator +insensately +insensitive +insentience +insentiency +inseparable +inseparably +insertional +insessorial +inseverable +insheathing +insheltered +insidiously +insincerely +insincerity +insinuating +insinuation +insinuative +insinuators +insinuatory +insipidness +insipiently +insistences +insistently +insolations +insouciance +inspections +inspectress +inspiration +inspirative +inspirators +inspiratory +inspiringly +inspiriting +inspissated +inspissates +inspissator +instability +installants +installment +instalments +instantiate +instatement +instaurator +instigating +instigation +instigative +instigators +instillment +instilments +instinctive +instinctual +institorial +instituters +instituting +institution +institutist +institutive +institutors +instreaming +instressing +instructing +instruction +instructive +instructors +instruments +insufflated +insufflates +insufflator +insulations +insultingly +insuperable +insuperably +insurgences +intagliated +intaglioing +intangibles +integrality +integrating +integration +integrative +integrators +integuments +intellected +intelligent +intemperant +intemperate +intendiment +intenerated +intenerates +intensative +intenseness +intensified +intensifier +intensifies +intensional +intensities +intensitive +intensively +intentional +intentioned +interactant +interacting +interaction +interactive +interallied +interatomic +interbedded +interbreeds +intercalary +intercalate +intercedent +interceders +interceding +intercensal +intercepted +intercepter +interceptor +intercessor +interchains +interchange +intercluded +intercludes +intercooled +intercooler +intercostal +intercourse +intercrural +interdashed +interdashes +interdealer +interdental +interdepend +interdicted +interdining +interesting +interfacial +interfacing +interferers +interfering +interflowed +interfluent +interfluous +interfolded +interfusing +interfusion +intergatory +intergraded +intergrades +intergrowth +interiority +interjacent +interjected +interjector +interlacing +interlarded +interlaying +interleaved +interleaves +interleukin +interlinear +interlingua +interlining +interlinked +interlocked +interlopers +interloping +interludial +interluding +interlunary +intermeddle +intermedial +intermedium +intermezzos +interminate +intermingle +intermitted +intermixing +internalise +internality +internalize +internecine +internecive +interneural +internments +internodial +internships +internuncio +interocular +interosseal +interpaging +interphases +interphones +interplants +interpleads +interpolate +interponing +interposals +interposers +interposing +interpreted +interpreter +interracial +interradial +interradius +interrailed +interrailer +interregnum +interreigns +interrelate +interrogant +interrogate +interrupted +interrupter +interruptor +interscribe +intersected +interseptal +intersertal +intersexual +interspaced +interspaces +intersperse +interspinal +interstices +intertangle +intertarsal +intertribal +intertrigos +intertwined +intertwines +intertwists +interunions +intervallic +intervallum +interveined +interveners +intervening +intervenors +interventor +interviewed +interviewee +interviewer +intervolved +intervolves +interweaved +interweaves +interworked +intestacies +inthralling +intimations +intimidated +intimidates +intolerable +intolerably +intolerance +intolerants +intonations +intoxicants +intoxicated +intoxicates +Intoximeter +intractable +intractably +intradermal +intrathecal +intravenous +intrenchant +intrenching +intrepidity +intricacies +intricately +intrigantes +intriguante +intriguants +intrinsical +introducers +introducing +introituses +introjected +intromitted +intromitter +introspects +introverted +intrusively +intubations +intuitional +intuitively +intuitivism +intumescent +intumescing +inturbidate +inumbrating +inundations +inusitation +inutilities +inutterable +invaginated +invaginates +invalidated +invalidates +invalidhood +invalidings +invalidness +invectively +inventively +inventorial +inventories +investigate +investitive +investiture +investments +inviability +invidiously +invigilated +invigilates +invigilator +invigorants +invigorated +invigorates +invigorator +inviolately +invitations +invitements +invocations +involucrate +involucrums +involuntary +involutions +involvement +inwreathing +ionospheric +ipecacuanha +ipratropium +ipselateral +ipsilateral +iridescence +iridisation +iridization +iridologist +iridotomies +irksomeness +ironmongers +ironmongery +irradiating +irradiation +irradiative +irradicated +irradicates +irrationals +irreceptive +irrecusable +irrecusably +irredentism +irredentist +irreducible +irreducibly +irreduction +irreflexion +irrefutable +irrefutably +irregularly +irrelevance +irrelevancy +irreligious +irremission +irremissive +irremovable +irremovably +irreparable +irreparably +irresoluble +irresolubly +irretention +irretentive +irreverence +irrevocable +irrevocably +irrigations +irritancies +irritations +irruptively +isapostolic +ischuretics +Islamicised +Islamicises +Islamicists +Islamicized +Islamicizes +isoantibody +isoantigens +isocheimals +isochronise +isochronism +isochronize +isochronous +isocyanides +isodiaphere +isodynamics +isoelectric +isogeotherm +isolability +isolecithal +isomagnetic +isomerising +isomerizing +isometrical +isomorphism +isomorphous +isorhythmic +isothermals +isotonicity +isoxsuprine +Israelitish +Istiophorus +itacolumite +Italianised +Italianises +italianized +italianizes +italicising +italicizing +itemisation +itemization +iteratively +ithyphallic +ithyphallus +itineracies +itinerantly +itineraries +itinerating diff --git a/com/agnibho/code/anagram/dictionary/I12.txt b/com/agnibho/code/anagram/dictionary/I12.txt new file mode 100644 index 0000000..c88fab2 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I12.txt @@ -0,0 +1,877 @@ +iambographer +iatrochemist +ichnographic +ichthyocolla +ichthyolatry +ichthyolites +ichthyolitic +ichthyophagy +ichthyopsida +ichthyopsids +ichthyosaurs +iconoclastic +iconologists +iconomachist +iconophilism +iconophilist +idealisation +idealization +ideationally +identifiable +identifiably +ideopraxists +idiorhythmic +idiosyncrasy +idiothermous +idolatresses +idolatrising +idolatrizing +idolatrously +idolisations +idolizations +ignitability +ignitibility +illaqueating +illaqueation +illegalising +illegalities +illegalizing +illegibility +illegitimacy +illegitimate +illiberalise +illiberality +illiberalize +illimitation +illiquations +illiterately +illogicality +illuminances +illuminating +illumination +illuminative +illuminators +illusionists +illusiveness +illustrateds +illustrating +illustration +illustrative +illustrators +illustratory +illywhackers +imaginations +imbibitional +imbrications +imitableness +immaculately +immanentists +immaterially +immatureness +immeasurable +immeasurably +immemorially +immensurable +immersionism +immersionist +immethodical +immigrations +immiseration +immiserising +immiserizing +immobilising +immobilizing +immoderately +immoderation +immoralities +immortalised +immortalises +immortalized +immortalizes +immovability +immunisation +immunization +immunologist +immutability +impannelling +impartiality +impassionate +impassioning +impeachments +impedimental +impenetrable +impenetrably +impenetrated +impenetrates +impenitently +imperatively +imperatorial +imperceptive +impercipient +imperfection +imperfective +imperforable +imperforated +imperialised +imperialises +imperialisms +imperialists +imperialized +imperializes +imperilments +imperishable +imperishably +impermanence +impermanency +impersistent +impersonally +impersonated +impersonates +impersonator +impertinence +impertinency +impertinents +imperviously +impetiginous +impetrations +impierceable +impignorated +impignorates +impingements +implantation +implementers +implementing +implementors +implications +implicitness +implorations +impoliteness +imponderable +importations +importunated +importunates +imposingness +imposthumate +impostumated +impostumates +impoundments +impoverished +impoverishes +imprecations +imprecisions +impregnating +impregnation +impressively +impressments +imprisonable +imprisonment +improbations +impropriated +impropriates +impropriator +improvements +improvidence +improvisated +improvisates +improvisator +impuissances +imputability +imputatively +inabstinence +inaccessible +inaccessibly +inaccuracies +inaccurately +inactivating +inactivation +inadaptation +inadequacies +inadequately +inadmissible +inadmissibly +inadvertence +inadvertency +inappeasable +inappellable +inapplicable +inapplicably +inappositely +inarticulacy +inarticulate +inartificial +inartistical +inaudibility +inaugurating +inauguration +inaugurators +inauguratory +inauspicious +incalculable +incalculably +incalescence +incandescent +incandescing +incantations +incapability +incapacitate +incapacities +incapsulated +incapsulates +incarcerated +incarcerates +incardinated +incardinates +incarnadined +incarnadines +incarnations +incatenation +incautiously +incendiaries +incendiarism +incentivised +incentivises +incentivized +incentivizes +incertitudes +incestuously +incharitable +incidentally +incinerating +incineration +incinerators +incisiveness +incivilities +inclinations +inclinometer +incoagulable +incogitative +incognisable +incognisance +incognizable +incognizance +incoherences +incoherently +incommodious +incommutable +incommutably +incomparable +incomparably +incompatible +incompatibly +incompetence +incompetency +incompetents +incompletely +incompletion +incompliance +incomputable +inconcinnity +inconcinnous +inconclusion +inconclusive +inconsequent +inconsistent +inconsolable +inconsolably +inconsonance +inconstantly +inconsumable +inconsumably +incontiguous +incontinence +incontinency +inconvenient +inconversant +incoordinate +incoronation +incorporated +incorporates +incorporator +incorporeity +incorrigible +incorrigibly +incorrodible +incorrosible +incorruption +incorruptive +incrassating +incrassation +incrassative +increasingly +incrementing +incriminated +incriminates +incrossbreed +incrustation +inculcations +inculpations +incumbencies +incunabulist +incurability +incurvations +incurvatures +indebtedness +indecisively +indeclinable +indeclinably +indecorously +indefeasible +indefeasibly +indefectible +indefensible +indefensibly +indefinitely +indehiscence +indelibility +indelicacies +indelicately +indemnifying +indentations +independence +independency +independents +indetectable +indetectible +indetermined +Indianapolis +indicatively +indifference +indifferency +indigenising +indigenizing +indigenously +indigestible +indigestibly +indignations +indirections +indirectness +indiscipline +indiscreetly +indiscretely +indiscretion +indisputable +indisputably +indissoluble +indissolubly +indistinctly +indivertible +individually +individuated +individuates +indoctrinate +indomethacin +indulgencies +induplicated +industrially +inebriations +ineffability +ineffaceable +ineffaceably +inefficiency +inelasticity +ineloquences +ineloquently +inequalities +inequipotent +ineradicable +ineradicably +inerrability +inescutcheon +inessentials +inexactitude +inexecutable +inexhaustive +inexistences +inexpansible +inexpectancy +inexpedience +inexpediency +inexperience +inexpertness +inexplicable +inexplicably +inexpressive +inexpugnable +inexpugnably +inexpungible +inextensible +inextensions +inextirpable +inextricable +inextricably +infamonising +infamonizing +infanticidal +infanticides +infantilisms +infatuations +infectiously +infelicities +infelicitous +infestations +infibulating +infibulation +infidelities +infiltrating +infiltration +infiltrative +infiltrators +infinitating +infiniteness +infinitively +infirmarians +inflammation +inflammatory +inflationary +inflationism +inflationist +inflectional +inflorescent +informidable +infotainment +infraorbital +infrequences +infrequently +infringement +infundibular +infundibulum +infusibility +ingatherings +ingeminating +ingemination +ingenerating +Ingleborough +ingloriously +ingratiating +ingratiation +ingratitudes +ingravescent +ingurgitated +ingurgitates +inhabitances +inhabitation +inharmonical +inharmonious +inheritances +inheritrixes +inhospitable +inhospitably +inimicalness +inimicitious +iniquitously +initialising +initializing +injudicially +injunctively +innutritious +inobediences +inobediently +inobservable +inobservance +inoccupation +inoculations +inoperculate +inordinately +inordination +inosculating +inosculation +inquisitions +inquisitress +insalivating +insalivation +insalubrious +insanitation +inscriptions +insectariums +insecticidal +insecticides +insectifuges +insectivores +insecurities +inseminating +insemination +inseminators +insheltering +insinuations +insistencies +insolubilise +insolubility +insolubilize +insolvencies +insomnolence +insouciances +insouciantly +inspectingly +inspectional +inspectorate +inspectorial +inspirations +inspissating +inspissation +inspissators +installation +installments +instantiated +instantiates +instatements +instauration +instaurators +instigations +instillation +instillments +institutions +institutists +instreamings +instructible +instructions +instructress +instrumental +instrumented +insubjection +insufferable +insufferably +insufficient +insufflating +insufflation +insufflators +insurability +insurgencies +insurrection +insusceptive +integrations +intellection +intellective +intellectual +intelligence +intelligible +intelligibly +intemerately +intemperance +intemperants +intempestive +intendancies +intenerating +inteneration +intensifiers +intensifying +interactants +interactions +interbedding +intercalated +intercalates +intercepters +intercepting +interception +interceptive +interceptors +intercession +intercessors +intercessory +interchained +interchanged +interchanger +interchanges +interchapter +intercipient +intercluding +interclusion +intercolline +intercommune +interconnect +interconvert +intercoolers +intercropped +intercrossed +intercrosses +intercurrent +intercutting +interdashing +interdealers +interdealing +interdicting +interdiction +interdictive +interdictory +interdigital +interestedly +interfacings +interfemoral +interference +interfertile +interflowing +interfluence +interfolding +interfoliate +interfretted +interfrontal +interfusions +interglacial +intergrading +intergrowing +intergrowths +interjacency +interjecting +interjection +interjectors +interkinesis +interknitted +interlaminar +interlarding +interleaving +interleukins +interlingual +interlinguas +interlinings +interlinking +interlobular +interlocking +interlocutor +intermarried +intermarries +intermaxilla +intermeddled +intermeddler +intermeddles +intermediacy +intermediary +intermediate +intermediums +interminable +interminably +intermingled +intermingles +intermission +intermissive +intermittent +intermitting +intermixture +intermontane +intermundane +internalised +internalises +internalized +internalizes +internetting +internuncial +internuncios +interoceanic +interoceptor +interorbital +interosseous +interpellant +interpellate +interplanted +interpleaded +interpleader +interpleural +interpolable +interpolated +interpolater +interpolates +interpolator +interpreters +interpreting +interpretive +interrailers +interrailing +interregnums +interrelated +interrelates +interrogable +interrogants +interrogated +interrogatee +interrogates +interrogator +interrupters +interrupting +interruption +interruptive +interruptors +intersecting +intersection +interservice +interspacing +interspatial +interspersal +interspersed +intersperses +interspinous +interstadial +interstellar +interstitial +intertangled +intertangles +intertexture +intertissued +intertraffic +intertwining +intertwisted +interveining +intervenient +intervention +interventors +interviewees +interviewers +interviewing +intervocalic +intervolving +interweaving +interwinding +interworking +interwreathe +interwrought +intimidating +intimidation +intimidatory +intolerances +intolerantly +intoleration +intoxicating +intoxication +Intoximeters +intracardiac +intracranial +intramundane +intransigent +intransitive +intrapreneur +intrenchment +intriguantes +intriguingly +intrinsicate +introducible +introduction +introductive +introductory +introjecting +introjection +intromission +intromissive +intromittent +intromitters +intromitting +introspected +introversion +introversive +introverting +introvertive +intrusionist +intuitionism +intuitionist +intumescence +inturbidated +inturbidates +intussuscept +invaginating +invagination +invalidating +invalidation +inveiglement +inventresses +inveracities +Invercargill +Invertebrata +invertebrate +investigable +investigated +investigates +investigator +investitures +inveterately +invigilating +invigilation +invigilators +invigorating +invigoration +invigorators +invisibility +invitingness +involutional +involvements +invulnerable +invulnerably +invultuation +ionophoresis +iracundulous +irascibility +iridectomies +iridescences +iridescently +iridologists +irradiations +irradicating +irrationally +irrealisable +irrealizable +irrebuttable +irreciprocal +irreconciled +irredeemable +irredeemably +irredentists +irreductions +irreflection +irreflective +irreflexions +irreformable +irreformably +irrefragable +irrefragably +irregularity +irrelatively +irrelevances +irrelevantly +irrelievable +irremediable +irremediably +irremissible +irrepairable +irrepealable +irrepealably +irreprovable +irreprovably +irresistance +irresistible +irresistibly +irresolutely +irresolution +irresolvable +irresolvably +irrespective +irrespirable +irresponsive +irreverences +irreverently +irreversible +irreversibly +irrigational +irritability +Ishmaelitish +Islamicising +Islamicizing +Islamisation +Islamization +isobilateral +isocheimenal +isochromatic +isochronally +isochronised +isochronises +isochronized +isochronizes +isodiametric +isodimorphic +isogeotherms +isolationism +isolationist +isoperimeter +isoperimetry +isoprenaline +isostemonous +isothermally +isotretinoin +Italianising +italianizing +itemisations +itemizations diff --git a/com/agnibho/code/anagram/dictionary/I13.txt b/com/agnibho/code/anagram/dictionary/I13.txt new file mode 100644 index 0000000..5294a6b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I13.txt @@ -0,0 +1,647 @@ +iambographers +iatrochemical +iatrochemists +iatrogenicity +ichnographies +ichthyography +ichthyologist +ichthyopsidan +Ichthyosauria +Ichthyosaurus +iconomachists +iconomaticism +iconophilists +idealisations +idealizations +identicalness +ideographical +ideologically +idiomatically +idiorrhythmic +idiosyncratic +ignominiously +illaqueations +Illecebraceae +illegibleness +illegitimated +illegitimates +illiberalised +illiberalises +illiberalized +illiberalizes +illocutionary +illogicalness +illuminations +illustrations +illustriously +illustrissimo +imaginariness +imaginatively +imitativeness +immarcescible +immaterialise +immaterialism +immaterialist +immateriality +immaterialize +immediateness +immersionists +immiscibility +immortalising +immortalities +immortalizing +immovableness +immunifacient +immunisations +immunizations +immunological +immunologists +immunotherapy +immutableness +impalpability +imparipinnate +impartialness +impartibility +impassability +impassibility +impassiveness +impassivities +impeccability +impecuniosity +impecuniously +impenetrating +impenetration +imperceptible +imperceptibly +imperfectible +imperfections +imperfectness +imperforation +imperialising +imperialistic +imperialities +imperializing +imperiousness +impermanently +impermissible +impermissibly +imperseverant +impersonalise +impersonality +impersonalize +impersonating +impersonation +impersonators +impertinences +impertinently +imperturbable +imperturbably +impetuosities +impetuousness +impignorating +impignoration +implacability +implantations +implicatively +impolitically +impoliticness +imponderables +importunacies +importunately +importunating +importunities +impossibilism +impossibilist +impossibility +imposthumated +imposthumates +impostumating +impostumation +impoverishing +impracticable +impracticably +impractically +impreciseness +impregnations +impressionism +impressionist +imprisonments +improbability +impropriating +impropriation +impropriators +improprieties +improvability +improvidently +improvisating +improvisation +improvisators +improvisatory +improvisatrix +impulsiveness +imputableness +inadvertently +inanimateness +inappreciable +inappreciably +inappropriate +inattentively +inaudibleness +inaugurations +incandescence +incantational +incapacitated +incapacitates +incapsulating +incarcerating +incarceration +incardinating +incardination +incarnadining +incatenations +incendivities +incentivising +incentivizing +incessantness +incinerations +inclinational +inclinatorium +inclinometers +inclusiveness +incognoscible +incoherencies +incombustible +incombustibly +incommiscible +incommodities +incommunicado +incompatibles +incompetently +incompliances +incompossible +inconceivable +inconceivably +incondensable +incongruities +incongruously +inconsciently +inconsecutive +inconsequence +inconsiderate +inconsistence +inconsistency +inconsonantly +inconspicuous +inconstancies +inconstruable +incontestable +incontestably +incontinently +inconvenience +inconveniency +inconversable +inconvertible +inconvertibly +inconvincible +incoronations +incorporating +incorporation +incorporative +incorporators +incorporeally +incorrectness +incorruptible +incorruptibly +incorruptness +incrassations +incredibility +incredulities +incredulously +incriminating +incrimination +incriminatory +incrossbreeds +incrustations +incunabulists +incurableness +incuriousness +indefatigable +indefatigably +indelibleness +independences +independently +indescribable +indescribably +indeterminacy +indeterminate +indeterminism +indeterminist +Indianisation +Indianization +indifferently +indiscernible +indiscernibly +indiscretions +indispensable +indispensably +indisposition +indissociable +indissolvable +indissuadable +indissuadably +indistinction +indistinctive +individualise +individualism +individualist +individuality +individualize +individuating +individuation +indoctrinated +indoctrinates +indoctrinator +inductivities +induplication +industrialise +industrialism +industrialist +industrialize +industriously +ineducability +ineffableness +ineffectively +ineffectually +inefficacious +inefficiently +inegalitarian +inelaborately +ineligibility +inerrableness +inescutcheons +inevitability +inexactitudes +inexhaustible +inexhaustibly +inexorability +inexpectation +inexpediently +inexpensively +inexperienced +inexplainable +inexpressible +inexpressibly +infallibilism +infallibilist +infallibility +infeasibility +infectiveness +inferentially +inferiorities +infibulations +infiltrations +infinitesimal +inflammations +inflationists +inflexibility +inflexionless +inflorescence +influentially +informalities +informatician +informational +informatively +infraposition +infraspecific +infrequencies +infringements +infructuously +infundibulate +infuriatingly +ingeminations +ingeniousness +ingenuousness +ingurgitating +ingurgitation +inhabitancies +inhabitations +inhabitresses +inharmonicity +inheritresses +inhomogeneity +inhomogeneous +inhospitality +inimitability +injudiciously +injuriousness +innocuousness +innovationist +innoxiousness +inobservation +inobtrusively +inoculability +inodorousness +inoffensively +inofficiously +inoperability +inopportunely +inopportunist +inopportunity +inordinations +inorganically +inosculations +inquisitional +inquisitively +inquisitorial +insalivations +insatiability +insatiateness +inscriptional +inscriptively +insectivorous +insectologist +inseminations +insensateness +insensibility +insensitively +insensitivity +insidiousness +insignificant +insincerities +insinuatingly +insociability +insolubilised +insolubilises +insolubilized +insolubilizes +insolubleness +insolvability +inspectorates +inspectorship +inspectresses +inspirational +inspiritingly +inspissations +instabilities +installations +instantaneity +instantaneous +instantiating +instantiation +instaurations +instigatingly +instillations +instinctively +instinctivity +instinctually +institutional +institutively +instructional +instructively +instrumentals +insubordinate +insubstantial +insufficience +insufficiency +insufflations +insupportable +insupportably +insuppressive +insurrections +insusceptible +insusceptibly +intangibility +integumentary +intellections +intellectuals +intelligencer +intelligences +intelligently +intemperately +intenerations +intensiveness +intentionally +interbreeding +intercalating +intercalation +intercalative +intercellular +interceptions +intercessions +interchaining +interchangers +interchanging +interchapters +interclusions +intercolonial +intercolumnar +intercommunal +intercommuned +intercommunes +interconnects +interconverts +intercropping +intercrossing +intercurrence +interdentally +interdictions +interdigitate +interestingly +interferences +interferingly +interferogram +interfluences +interfoliated +interfoliates +intergalactic +interiorities +interjaculate +interjections +interjectural +interknitting +interlacement +interlaminate +interlocation +interlocution +interlocutors +interlocutory +interlocutrix +interlunation +intermarriage +intermarrying +intermaxillae +intermeddlers +intermeddling +intermediated +intermediates +intermediator +intermetallic +intermingling +intermissions +intermittence +intermittency +intermixtures +internalising +internalizing +international +interoceptive +interoceptors +interosculant +interosculate +interparietal +interpellants +interpellated +interpellates +interpersonal +interpetiolar +interpilaster +interplanting +interpleaders +interpleading +interpolating +interpolation +interpolative +interpolators +interposition +interpretable +interpretress +interproximal +interpunction +interradially +interrelating +interrelation +interrogatees +interrogating +interrogation +interrogative +interrogators +interrogatory +interruptedly +interruptions +interscapular +intersections +intersidereal +interspecific +interspersals +interspersing +interspersion +interstellary +interstratify +intertangling +intertropical +intertwinings +intertwisting +interventions +interwreathed +interwreathes +intimidations +intoxications +intracapsular +intracellular +intramuscular +intranational +intransigeant +intransigence +intransigency +intransigents +intraparietal +intrapetiolar +intrapreneurs +intratropical +intravasation +intravascular +intravenously +intrenchments +intricateness +intrinsically +introductions +introgression +introjections +intromissions +introspecting +introspection +introspective +introversible +introversions +intrusionists +intrusiveness +intuitionists +intuitiveness +inturbidating +intussuscepts +invaginations +invalidations +invariability +inveiglements +invendibility +inventiveness +inventorially +invertebrates +investigating +investigation +investigative +investigators +investigatory +inviabilities +invidiousness +invigilations +invigorations +invincibility +inviolability +inviolateness +invisibleness +involucellate +involuntarily +invultuations +iontophoresis +iontophoretic +ironmongeries +irrationalise +irrationalism +irrationalist +irrationality +irrationalize +irreciprocity +irreclaimable +irreclaimably +irrecognition +irrecoverable +irrecoverably +irredeemables +irrefrangible +irrefrangibly +irrelevancies +irreligionist +irreligiously +irreplaceable +irreplaceably +irrepleviable +irrepressible +irrepressibly +irresponsible +irresponsibly +irretrievable +irretrievably +irreverential +irritableness +ismaticalness +isoagglutinin +isoantibodies +isobarometric +isocheimenals +isochronising +isochronizing +isochronously +isodimorphism +isodimorphous +isoelectronic +isogeothermal +isogeothermic +isolationisms +isolationists +isomerisation +isomerization +isometrically +isostatically +italicisation +italicization diff --git a/com/agnibho/code/anagram/dictionary/I14.txt b/com/agnibho/code/anagram/dictionary/I14.txt new file mode 100644 index 0000000..12a48f3 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I14.txt @@ -0,0 +1,383 @@ +iatrochemistry +ichnographical +ichthyolatrous +ichthyological +ichthyologists +ichthyophagist +ichthyophagous +ichthyopsidans +ichthyosaurian +idealistically +identification +idiopathically +idiosyncrasies +illegitimately +illegitimating +illegitimation +illiberalising +illiberalizing +illimitability +illiterateness +illuminatingly +illustrational +illustratively +imaginableness +immaculateness +immaterialised +immaterialises +immaterialists +immaterialized +immaterializes +immaterialness +immethodically +immiserisation +immiserization +immitigability +immobilisation +immobilization +immoderateness +immunochemical +immunogenicity +immunoglobulin +immunophoresis +immunosuppress +imparidigitate +imparisyllabic +impassableness +impassibleness +imperforations +impermeability +impersonalised +impersonalises +impersonalized +impersonalizes +impersonations +impertinencies +imperturbation +imperviability +imperviousness +implacableness +implausibility +implementation +imponderabilia +impossibilists +imposthumating +imposthumation +impostumations +impoverishment +impracticality +impregnability +impressibility +impressionable +impressionists +impressiveness +impropriations +improvableness +improvisations +improvvisatore +inaccurateness +inadequateness +inadvisability +inalienability +inalterability +inappositeness +inappreciation +inappreciative +inapprehension +inapprehensive +inapproachable +inapproachably +inarticulately +inarticulation +inartificially +inartistically +inauspiciously +incandescently +incapacitating +incapacitation +incarcerations +incautiousness +incestuousness +incidentalness +inclinableness +inclinatoriums +incogitability +incommensurate +incommodiously +incommunicable +incommunicably +incompleteness +incompressible +inconclusively +inconscionable +inconsequently +inconsiderable +inconsiderably +inconsistences +inconsistently +incontiguously +incontrollable +incontrollably +inconvenienced +inconveniences +inconveniently +incoordination +incorporations +incorporealism +incorporeality +incredibleness +indecipherable +indecisiveness +indecomposable +indecorousness +indefiniteness +indemonstrable +indemonstrably +independencies +indescribables +indestructible +indestructibly +indeterminable +indeterminably +indeterminists +indifferentism +indifferentist +indigenisation +indigenization +indiscerptible +indiscoverable +indiscreetness +indiscreteness +indiscriminate +indisposedness +indispositions +indistinctions +indistinctness +individualised +individualises +individualists +individualized +individualizes +individuations +indivisibility +indoctrinating +indoctrination +indoctrinators +indomitability +indubitability +induplications +industrialised +industrialises +industrialists +industrialized +industrializes +ineffectuality +inefficiencies +inestimability +inevitableness +inexcusability +inexorableness +inexpiableness +inexpressibles +infallibilists +infeasibleness +infectiousness +infinitesimals +inflammability +inflectionless +inflexibleness +inflorescences +infopreneurial +informaticians +infralapsarian +inframaxillary +infrangibility +infrastructure +ingloriousness +ingratiatingly +ingurgitations +inhabitiveness +inharmoniously +inimitableness +iniquitousness +initialisation +initialization +innovationists +innumerability +inoperableness +inopportunists +inordinateness +inorganisation +inorganization +inquisitresses +inquisiturient +insalubriously +insanitariness +insatiableness +inscrutability +insectologists +insensibleness +inseparability +insignificance +insignificancy +insolubilising +insolubilizing +inspectorships +inspirationism +inspirationist +instantiations +institutionary +instructresses +instrumentally +insufficiently +insuperability +insuppressible +insuppressibly +insurmountable +insurmountably +insurrectional +insusceptively +intangibleness +integrationist +intellectually +intelligencers +intelligential +intelligentsia +intempestively +intempestivity +intentionality +interactionism +interactionist +interambulacra +interbreedings +intercalations +intercessional +intercessorial +intercommuning +intercommunion +intercommunity +interconnected +interconnector +interconnexion +interconverted +interdependent +interdigitated +interdigitates +interestedness +interferential +interferograms +interferometer +interferometry +interfoliating +intergradation +interjaculated +interjaculates +interjectional +interlacements +interlaminated +interlaminates +interlineation +interlingually +interlocations +interlocutions +interlocutress +interlocutrice +interlunations +intermarriages +intermaxillary +intermediaries +intermediately +intermediating +intermediation +intermediators +intermediatory +intermigration +intermittently +intermittingly +intermolecular +Internationale +internationals +interosculated +interosculates +interpellating +interpellation +interpenetrant +interpenetrate +interpilasters +interplanetary +interpolations +interpositions +interpretation +interpretative +interpretively +interpunctions +interpunctuate +interrelations +interrogations +interrogatives +interruptively +intersectional +intersexuality +interspatially +interspersions +intertwinement +intertwiningly +interwreathing +intolerability +intractability +intramedullary +intramercurial +intramolecular +intransigeance +intransigently +intransitively +intransmutable +intravasations +intrinsicality +introductorily +introgressions +introspections +intuitionalism +intuitionalist +intussuscepted +invariableness +investigations +inveterateness +invigoratingly +invincibleness +inviolableness +irrationalised +irrationalises +irrationalists +irrationalized +irrationalizes +irrecognisable +irrecognizable +irreconcilable +irreconcilably +irreducibility +irrefutability +irregularities +irrelativeness +irreligionists +irremovability +irreparability +irreplevisable +irreproachable +irreproachably +irreproducible +irresolubility +irresoluteness +irrespectively +irresponsively +irrestrainable +irresuscitable +irresuscitably +irrevocability +isodiametrical +isomerisations +isomerizations +Italianisation +Italianization +italicisations +italicizations diff --git a/com/agnibho/code/anagram/dictionary/I15.txt b/com/agnibho/code/anagram/dictionary/I15.txt new file mode 100644 index 0000000..8734b41 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I15.txt @@ -0,0 +1,259 @@ +ichthyodorulite +ichthyodorylite +ichthyophagists +Ichthyopterygia +icositetrahedra +identifications +ideographically +idiosyncratical +illegitimations +illimitableness +illustriousness +imaginativeness +immaterialising +immaterializing +immensurability +immobilisations +immobilizations +immortalisation +immortalization +immunochemistry +immunologically +immunopathology +impecuniousness +impenetrability +imperishability +impermeableness +impersonalising +impersonalizing +imperviableness +implausibleness +implementations +imponderability +importunateness +impossibilities +imposthumations +impracticalness +imprescriptible +impressionistic +improbabilities +improvisational +improvisatorial +improvisatrixes +improvvisatrice +inaccessibility +inadmissibility +inadvisableness +inalterableness +inapplicability +inapprehensible +inappropriately +inattentiveness +incalculability +incapaciousness +incentivisation +incentivization +incommensurable +incommensurably +incommunicative +incommutability +incomparability +incompatibility +incomprehension +incomprehensive +incongruousness +inconsequential +inconsiderately +inconsideration +inconsistencies +inconsolability +inconspicuously +inconveniencing +incorrigibility +incredulousness +incrossbreeding +indefeasibility +indefensibility +indefinableness +indemnification +indeterminately +indetermination +indifferentists +indigenisations +indigenizations +indigestibility +indisciplinable +indisputability +indissolubility +indistinctively +indistributable +individualising +individualistic +individualities +individualizing +indivisibleness +indoctrinations +indomitableness +indubitableness +industrialising +industrializing +industriousness +ineffaceability +ineffectiveness +ineffectualness +inefficaciously +inequitableness +inestimableness +inexcusableness +inexpensiveness +inexplicability +inexpugnability +inextensibility +infinitesimally +inflammableness +informativeness +infralapsarians +infrangibleness +infrastructural +infrastructures +infundibuliform +initialisations +initializations +injudiciousness +innumerableness +inobtrusiveness +inoffensiveness +inofficiousness +inoperativeness +inopportuneness +inquisitiveness +inquisitorially +inscrutableness +insensitiveness +inseparableness +insignificantly +insignificative +inspirationally +inspirationists +instantaneously +institutionally +instructiveness +instrumentalism +instrumentalist +instrumentality +instrumentation +insubordinately +insubordination +insubstantially +insuperableness +insurrectionary +insurrectionism +insurrectionist +integrationists +intellectualise +intellectualism +intellectualist +intellectuality +intellectualize +intelligibility +intemperateness +intensification +interactionists +interambulacral +interambulacrum +interchangeable +interchangeably +interchangement +interclavicular +intercollegiate +intercolonially +interconnecting +interconnection +interconnectors +interconnexions +interconversion +interconverting +interdependence +interdigitating +interdigitation +interestingness +interfascicular +interferometers +interferometric +intergradations +interjaculating +interjaculatory +interjectionary +interlaminating +interlamination +interlineations +interlocutrices +interlocutrixes +intermediations +intermigrations +intermodulation +internalisation +internalization +internationally +interosculating +interosculation +interpellations +interpenetrable +interpenetrated +interpenetrates +interpersonally +interpretations +interpretership +interpretresses +interprovincial +interpunctuated +interpunctuates +interrogatively +interscholastic +interstratified +interstratifies +intersubjective +intertanglement +intertentacular +intertwistingly +interventionism +interventionist +intolerableness +intractableness +intramuscularly +intransigentism +intransigentist +intransmissible +intrapreneurial +intrinsicalness +introspectively +introsusception +intuitionalists +intussuscepting +intussusception +intussusceptive +involuntariness +invulnerability +irrationalising +irrationalistic +irrationalizing +irreconcilement +irredeemability +irreducibleness +irreductibility +irrefragability +irrefutableness +irreligiousness +irremissibility +irremovableness +irreparableness +irrepealability +irreprehensible +irreprehensibly +irresistibility +irresolvability +irretentiveness +irreversibility +irrevocableness +isoimmunization +isoperimetrical diff --git a/com/agnibho/code/anagram/dictionary/I16.txt b/com/agnibho/code/anagram/dictionary/I16.txt new file mode 100644 index 0000000..b222f8d --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I16.txt @@ -0,0 +1,113 @@ +ichnographically +icositetrahedron +illegitimateness +immeasurableness +immunochemically +immunodeficiency +immunosuppressed +immunosuppresses +imperceptibility +imperfectibility +imperishableness +impermissibility +imperturbability +imponderableness +impracticability +impracticalities +inaccessibleness +inapplicableness +inappreciatively +inarticulateness +inauspiciousness +incalculableness +incognoscibility +incombustibility +incommensurately +incommodiousness +incommutableness +incomparableness +incompatibleness +incompossibility +incomprehensible +incomprehensibly +inconceivability +inconclusiveness +inconsolableness +incontestability +incontiguousness +incontrovertible +incontrovertibly +inconvertibility +incorrigibleness +incorruptibility +indefensibleness +indescribability +indiscernibility +indiscriminately +indiscriminating +indiscrimination +indiscriminative +indispensability +indisputableness +indissolubleness +ineradicableness +inexhaustibility +inexplicableness +inexpressiveness +inexpugnableness +inextinguishable +inextinguishably +inharmoniousness +inhospitableness +institutionalise +institutionalism +institutionalist +institutionalize +instrumentalists +insubstantiality +insusceptibility +intellectualised +intellectualises +intellectualized +intellectualizes +intelligibleness +intercommunicate +interconnections +intercontinental +interconvertible +interdependences +interjectionally +interlocutresses +interminableness +internationalise +internationalism +internationalist +internationalize +interpenetrating +interpenetration +interpenetrative +interpretatively +interpunctuating +interpunctuation +interstratifying +interterritorial +intraterritorial +introspectionist +invulnerableness +iridodiagnostics +irreclaimability +irredeemableness +irrefragableness +irrefrangibility +irremediableness +irremissibleness +irrepealableness +irrepressibility +irreprovableness +irresistibleness +irresolvableness +irresponsibility +irresponsiveness +irretrievability +irreversibleness +isoagglutination diff --git a/com/agnibho/code/anagram/dictionary/I17.txt b/com/agnibho/code/anagram/dictionary/I17.txt new file mode 100644 index 0000000..877dd64 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I17.txt @@ -0,0 +1,75 @@ +idiosyncratically +immunocompromised +immunodiagnostics +immunosuppressant +immunosuppressing +immunosuppression +immunosuppressive +immunotransfusion +imperceptibleness +imperialistically +impracticableness +impressionability +inapproachability +inappropriateness +incombustibleness +incommunicability +incommunicatively +incompatibilities +incompressibility +inconceivableness +inconsecutiveness +inconsequentially +inconsiderateness +inconspicuousness +incorruptibleness +indefatigableness +indemonstrability +indescribableness +indestructibility +indeterminateness +indiscernibleness +indiscerptibility +indispensableness +indistinctiveness +indistinguishable +indistinguishably +individualisation +individualization +industrialisation +industrialization +Infralapsarianism +inquisitorialness +instantaneousness +institutionalized +institutionalizes +insupportableness +insurmountability +intellectualising +intellectualizing +intercolumniation +intercommunicable +intercommunicated +intercommunicates +interdepartmental +interdisciplinary +interfenestration +intergovernmental +internationalised +internationalises +internationalists +internationalized +internationalizes +interramification +interrelationship +intersubjectively +intersubjectivity +intransmutability +irreclaimableness +irreconcilability +irrecoverableness +irrefrangibleness +irrepressibleness +irreproachability +irresponsibleness +irretrievableness diff --git a/com/agnibho/code/anagram/dictionary/I18.txt b/com/agnibho/code/anagram/dictionary/I18.txt new file mode 100644 index 0000000..ab61186 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I18.txt @@ -0,0 +1,27 @@ +immunocytochemical +immunofluorescence +immunopathological +immunosuppressants +imprescriptibility +inappreciativeness +inapprehensiveness +incommensurability +incommensurateness +incommunicableness +incompressibleness +inconsiderableness +indestructibleness +indeterminableness +indiscriminateness +institutionalizing +insurmountableness +interchangeability +intercommunicating +intercommunication +interconnectedness +internationalising +internationalistic +internationalizing +interrelationships +irreconcilableness +irreproachableness diff --git a/com/agnibho/code/anagram/dictionary/I19.txt b/com/agnibho/code/anagram/dictionary/I19.txt new file mode 100644 index 0000000..207795d --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I19.txt @@ -0,0 +1,13 @@ +immunocytochemistry +impressionistically +incommensurableness +incommunicativeness +incomprehensibility +incomprehensiveness +incontrovertibility +individualistically +interchangeableness +interdenominational +interdepartmentally +interstratification +irreprehensibleness diff --git a/com/agnibho/code/anagram/dictionary/I2.txt b/com/agnibho/code/anagram/dictionary/I2.txt new file mode 100644 index 0000000..71f8096 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I2.txt @@ -0,0 +1,6 @@ +id +if +in +io +is +it diff --git a/com/agnibho/code/anagram/dictionary/I20.txt b/com/agnibho/code/anagram/dictionary/I20.txt new file mode 100644 index 0000000..a773c32 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I20.txt @@ -0,0 +1,9 @@ +immunocytochemically +immunopathologically +incomprehensibleness +indistinguishability +inextinguishableness +institutionalisation +institutionalization +internationalisation +internationalization diff --git a/com/agnibho/code/anagram/dictionary/I21.txt b/com/agnibho/code/anagram/dictionary/I21.txt new file mode 100644 index 0000000..bddba61 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I21.txt @@ -0,0 +1 @@ +indistinguishableness diff --git a/com/agnibho/code/anagram/dictionary/I3.txt b/com/agnibho/code/anagram/dictionary/I3.txt new file mode 100644 index 0000000..6ef27a9 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I3.txt @@ -0,0 +1,36 @@ +Ian +Ibo +ice +ich +icy +Ida +ide +Ido +ids +Ife +iff +ifs +Ike +ilk +ill +I'm +imp +Ina +Ind +ink +inn +ins +ion +ios +IOU +Ira +ire +irk +Isa +ish +ism +ita +Ito +its +Ivo +ivy diff --git a/com/agnibho/code/anagram/dictionary/I4.txt b/com/agnibho/code/anagram/dictionary/I4.txt new file mode 100644 index 0000000..0217a44 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I4.txt @@ -0,0 +1,85 @@ +Iago +Iain +iamb +ibex +ibis +Ibos +iced +icer +ices +icky +icon +idea +id�e +idem +ides +idle +idly +idol +idyl +iffy +Ifni +igad +Igbo +iglu +Igor +ikat +ikon +Ilan +ilea +ilex +ilia +ilka +ilks +ills +illy +imam +IMAX +impi +imps +inby +Inca +inch +Indy +Ines +Inez +info +Inga +Inge +ingo +inia +inks +inky +inly +inns +inro +inti +into +Iona +ions +iota +Iowa +Ipoh +Iran +Iraq +ires +irid +iris +irks +Irma +iron +Isis +Isla +isle +isms +ismy +itas +itch +item +iure +Ivan +I've +Ives +Ivor +iwis +ixia diff --git a/com/agnibho/code/anagram/dictionary/I5.txt b/com/agnibho/code/anagram/dictionary/I5.txt new file mode 100644 index 0000000..25ca16a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I5.txt @@ -0,0 +1,174 @@ +iambi +iambs +Ibert +Ibiza +Ibrox +Ibsen +Iceni +icers +ichor +icier +icily +icing +icker +icons +ictal +ictic +ictus +Idaho +idant +ideal +ideas +idiom +idiot +Idist +idled +idler +idles +Idola +idols +Idris +idyll +idyls +Ieuan +igads +igap� +Igbos +igloo +iglus +ihram +ikons +Ilana +ileac +ileum +ileus +iliac +Iliad +Ilian +ilium +iller +illth +Ilona +image +imago +imams +imari +imaum +imbed +imbue +imide +imine +immew +immit +immix +Imola +imped +impel +impis +imply +impot +imshi +imshy +inane +inapt +inarm +inbye +Incan +Incas +incle +incog +incur +incus +incut +indew +index +India +Indic +indie +indol +Indra +Indre +indri +indue +Indus +inept +inerm +inert +infer +infix +infra +ingan +ingle +ingot +Inigo +inion +Injun +inked +inker +inkle +inlay +inlet +inned +inner +inorb +input +inset +Intal +inter +intil +intis +intro +Inuit +inula +inure +inurn +inust +Invar +inwit +iodic +Ionia +ionic +iotas +ippon +Iqbal +irade +Iraqi +irate +Irbil +Irena +Irene +irids +Irish +irked +iroko +irons +irony +Isaac +Isbel +Is�re +ishes +Isiac +Islam +Islay +isled +isles +islet +isn't +issei +issue +Issus +istle +Itala +Italy +itchy +items +it'll +ivied +ivies +ivory +Ixion +ixtle +Iyyar +izard +Izmir +izzat diff --git a/com/agnibho/code/anagram/dictionary/I6.txt b/com/agnibho/code/anagram/dictionary/I6.txt new file mode 100644 index 0000000..b1bf3a5 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I6.txt @@ -0,0 +1,352 @@ +iambic +iambus +Iastic +iatric +Ibadan +Iberia +Iberis +ibexes +ibices +ibidem +ibises +Icarus +icebox +iceman +icemen +ichors +icicle +iciest +icings +ickers +ickier +iconic +Idaean +idants +idea'd +ideaed +ideals +ideate +idiocy +idioms +idiots +idlers +idlest +idling +Idoist +Idolum +idylls +igap�s +igloos +ignaro +ignite +ignore +Igorot +Igua�� +iguana +ihrams +IJssel +ilexes +ilices +Ilkley +illest +illipe +illite +illude +illume +illupi +Ilorin +imaged +images +imagos +imaret +imaris +imaums +imbark +imbase +imbeds +imbibe +imbody +imbosk +imbrex +imbrue +imbued +imbues +Imelda +imides +imidic +imines +immane +immask +immesh +immews +immits +immune +immure +Imogen +impact +impair +impala +impale +impark +imparl +impart +impawn +impede +impels +impend +impies +imping +impish +implex +impone +import +impose +impost +impots +improv +impugn +impure +impute +imshis +inaner +inarch +inarms +inbent +inborn +inbred +incage +incase +incave +incavi +incavo +incede +incept +incest +inched +inches +Inchon +incise +incite +inclip +income +incony +incubi +incult +incurs +incuse +indaba +indart +indeed +indene +indent +Indian +indict +indies +indign +indigo +indite +indium +indole +indoor +Indore +indris +induce +induct +indued +indues +indult +induna +infall +infame +infamy +infant +infare +infect +infelt +infers +infest +infill +infirm +inflow +influx +infold +inform +infula +infuse +ingans +ingate +ing�nu +ingest +ingine +ingles +Ingmar +ingoes +ingots +ingram +Ingres +Ingrid +ingrum +ingulf +inhale +inhaul +inhere +inhoop +inhume +inisle +inject +injera +injure +injury +inkers +inkier +inking +inkpot +inlace +inlaid +inland +inlays +inlets +inlier +inline +inlock +inmate +inmesh +inmost +innate +inners +inning +Innuit +inorbs +inputs +inroad +inrush +insane +inseam +insect +insert +insets +inship +inside +insist +insole +insoul +inspan +instal +instar +instep +instil +insula +insult +insure +intact +intake +intend +intent +intern +inters +intima +intime +intine +intire +intoed +intomb +intone +intown +intron +intros +intuit +intuse +Inuits +inulas +inulin +inured +inures +inurns +invade +invent +invert +invest +invite +invoke +inwall +inward +inwick +inwind +inwith +inwork +inworn +inwove +inwrap +inyala +iodate +iodide +iodine +iodise +iodism +iodize +iodous +iolite +Ionian +ionise +Ionism +Ionist +ionium +ionize +ionone +ipecac +ippons +irades +Iranic +Iraqis +ireful +irenic +iridal +irides +iridic +irised +irises +iritic +iritis +irking +irokos +ironed +ironer +ironic +irrupt +Irvine +Irving +Irwell +isabel +Isaiah +isatin +Isatis +ischia +Iseult +Ishbel +Ishtar +island +islets +isling +isobar +Isobel +isogon +isohel +Isolda +Isolde +isomer +isopod +Israel +isseis +issued +issuer +issues +Italia +italic +itched +itches +itemed +iterum +Ithaca +itself +izards +izzard diff --git a/com/agnibho/code/anagram/dictionary/I7.txt b/com/agnibho/code/anagram/dictionary/I7.txt new file mode 100644 index 0000000..5eb2475 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I7.txt @@ -0,0 +1,558 @@ +Iachimo +iambics +iambist +Iapetus +Iberian +Ibrahim +Icarian +iceball +iceberg +icefloe +Iceland +icepack +ichabod +ichnite +ichthic +ichthys +icicles +iciness +ickiest +iconify +iconise +iconize +icteric +icterid +icterus +Ictinus +ictuses +Idahoan +Idalian +ideally +ideated +ideates +identic +idiotcy +idiotic +idlesse +idolise +idolism +idolist +idolize +idyllic +igarap� +ignaros +igneous +ignited +igniter +ignites +ignoble +ignobly +ignored +ignorer +ignores +Igorots +iguanas +iguanid +Iguvine +ijtihad +ikebana +ileitis +ileuses +iliacus +illapse +illegal +illicit +illipes +illness +illogic +illuded +illudes +illumed +illumes +illupis +illuvia +Illyria +imagery +imagine +imaging +imagism +imagist +imagoes +imamate +imarets +imbarks +imbased +imbases +imbathe +imbibed +imbiber +imbibes +imbosom +imbower +imbrown +imbrued +imbrues +imbrute +imbuing +imburse +Imhotep +imitant +imitate +immense +immerge +immerse +immewed +immoral +immured +immures +impacts +impaint +impairs +impalas +impaled +impales +impanel +imparks +imparls +imparts +impasse +impaste +impasto +impavid +impawns +impeach +impearl +impeded +impedes +impends +imperia +imperil +impetus +impiety +impinge +impious +implant +implate +implead +implete +implied +implies +implode +implore +imponed +impones +imports +imposed +imposer +imposes +imposts +impound +impregn +impresa +imprese +impress +imprest +imprint +improve +impugns +impulse +imputed +imputer +imputes +imshies +inanely +inanest +inanity +inaptly +inarmed +inbeing +inboard +inbound +inbreak +inbreed +inbring +inburst +incaged +incages +incased +incases +inceded +incedes +incense +incepts +inchase +Incheon +inching +inchpin +incipit +incised +incises +incisor +incited +inciter +incites +incivil +inclasp +incline +inclips +inclose +include +incomer +incomes +inconnu +incross +incrust +incubus +incudes +incurve +incused +incuses +indabas +indeeds +indents +indexal +indexed +indexer +indexes +Indiana +Indians +indican +indices +indicia +indicts +indigos +indited +inditer +indites +indoors +indorse +indoxyl +indraft +indrawn +induced +inducer +induces +inducts +induing +indulge +indulin +indults +indunas +indusia +indwell +indwelt +inearth +ineptly +inertia +inertly +inexact +infalls +infamed +infames +infancy +infanta +infante +infants +infarct +infares +infaust +infects +inferno +infests +infidel +infield +infills +infimum +infixed +infixes +inflame +inflate +inflect +inflict +inflows +infolds +inforce +informs +infract +infulae +infused +infuser +infuses +ingates +ing�nue +ingesta +ingests +inglobe +ingoing +ingraft +ingrain +ingrate +ingress +ingroup +ingrown +ingulfs +inhabit +inhaled +inhaler +inhales +inhauls +inhered +inheres +inherit +inhibit +inhuman +inhumed +inhumer +inhumes +inisled +inisles +initial +injects +injoint +injunct +injured +injurer +injures +Inkatha +inkblot +inkfish +inkhorn +inkiest +inkling +inkpots +inkspot +inkwell +inlaced +inlaces +inlands +inlayer +inliers +inlocks +inlying +inmates +innards +innerve +innings +Innuits +innyard +inorbed +inphase +inqilab +inquest +inquiet +inquire +inquiry +inroads +insaner +insanie +inscape +insculp +Insecta +insects +inserts +inshell +inshore +insider +insides +insight +insigne +insinew +insipid +insists +insnare +insoles +insooth +insouls +inspans +inspect +inspire +install +instals +instant +instars +instate +instead +insteps +instill +instils +insular +insulas +insulin +insulse +insults +insured +insurer +insures +inswing +intakes +integer +intends +intense +intents +interim +interne +interns +inthral +intimae +intines +intombs +intoned +intoner +intones +intrada +intrant +intreat +introit +introns +intrude +intrust +intuits +intuses +intwine +intwist +inulase +inuring +inurned +invaded +invader +invades +invalid +inveigh +invenit +invents +inverse +inverts +invests +invexed +invious +invited +invitee +inviter +invites +invoice +invoked +invokes +involve +inwalls +inwards +inweave +inwicks +inwinds +inworks +inwoven +inwraps +inyalas +iodates +iodides +iodised +iodises +iodized +iodizes +Ionesco +ionised +ioniser +ionises +Ionists +ionized +ionizer +ionizes +ionomer +ionones +ipecacs +ipomoea +Ipswich +Iquique +Iquitos +iracund +Iranian +irately +Ireland +irenics +irideal +iridial +iridian +iridise +iridium +iridize +irisate +Irisher +Irishry +irising +irksome +Irkutsk +ironers +ironies +ironing +ironise +ironist +ironize +ironman +irrupts +Isadora +Isadore +isagoge +isatine +ischial +ischium +Isegrim +Isfahan +Ishmael +Isiacal +Isidora +Isidore +Islamic +islands +isleman +islemen +Ismaili +ismatic +isobare +isobars +isobase +isobath +isochor +isodoma +isodont +isoetes +isogamy +isogeny +isogram +isohels +isohyet +isokont +isolate +isoline +isomere +isomers +isonomy +Isopoda +isopods +isospin +isotone +isotope +isotopy +isotron +isotype +Israeli +issuant +issuers +issuing +isthmus +itacism +Italian +italics +Italiot +itchier +itching +iteming +itemise +itemize +iterant +iterate +Ivanhoe +Ivorian +ivoried +ivories +ivorist +ivresse +izzards diff --git a/com/agnibho/code/anagram/dictionary/I8.txt b/com/agnibho/code/anagram/dictionary/I8.txt new file mode 100644 index 0000000..8ab787c --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I8.txt @@ -0,0 +1,776 @@ +iambists +iambuses +ianthine +iatrical +Iberians +Ibsenian +Ibsenism +Ibsenite +iceballs +icebergs +iceblink +iceboxes +icefield +icefloes +icehouse +icepacks +ichnites +ichorous +ichthyic +iconised +iconises +iconized +iconizes +icterics +icterids +icterine +Idahoans +idealess +idealise +idealism +idealist +ideality +idealize +ideating +ideation +ideative +identify +identity +ideogram +ideology +idiocies +idiolect +idiotish +idiotism +idlehood +idleness +idocrase +idolater +idolatry +idolised +idoliser +idolises +idolized +idolizer +idolizes +Idomeneo +idyllian +idyllist +iffiness +igarap�s +Iglesias +ignaroes +Ignatian +Ignatius +igniters +igniting +ignition +ignitron +ignominy +ignorant +ignorers +ignoring +iguanids +Ikhnaton +Ilkeston +illapsed +illapses +illation +illative +illinium +Illinois +illiquid +illision +illuding +illumine +illuming +illusion +illusive +illusory +illuvial +illuvium +Illyrian +ilmenite +imaginal +imagined +imaginer +imagines +imagists +imamates +imbarked +imbasing +imbathed +imbathes +imbecile +imbedded +imbibers +imbibing +imbitter +imbodied +imbodies +imborder +imbosoms +imbowers +imbrices +imbrowns +imbruing +imbruted +imbrutes +imbursed +imburses +imitable +imitancy +imitants +imitated +imitates +imitator +immanely +immanent +immanity +immantle +Immanuel +immature +immerged +immerges +immersed +immerses +immeshed +immeshes +immewing +imminent +immingle +imminute +immitted +immobile +immodest +immolate +immoment +immortal +immotile +immunise +immunity +immunize +immuring +impacted +impaints +impaired +impairer +impaling +impanate +impanels +impannel +imparity +imparked +imparled +imparted +imparter +impasses +impasted +impastes +impastos +impawned +impearls +impeding +impelled +impeller +impended +imperial +imperils +imperium +impetigo +impinged +impinges +impishly +implants +implated +implates +impleach +impleads +impledge +impleted +impletes +implexes +implicit +imploded +implodes +implored +implorer +implores +implunge +impluvia +implying +impocket +impolder +impolicy +impolite +imponent +imponing +imported +importer +imposers +imposing +imposter +impostor +impotent +impounds +imprests +imprimis +imprints +imprison +improper +improved +improver +improves +impudent +impugned +impugner +impulses +impunity +impurely +impurity +impurple +imputers +imputing +inaction +inactive +inarable +inarched +inarches +inarming +inasmuch +inaurate +inbeings +inbreaks +inbreeds +inbursts +incaging +incasing +inceding +incensed +incenser +incenses +incensor +incentre +incepted +inceptor +inchased +inchases +inchmeal +inchoate +incident +incising +incision +incisive +incisors +incisory +incisure +incitant +inciters +inciting +incivism +inclasps +inclined +inclines +inclosed +incloser +incloses +included +includes +incomers +incoming +inconnue +incorpse +increase +increate +incrusts +incubate +incubous +incurred +incurved +incurves +incusing +indagate +indamine +indebted +indecent +indented +indenter +indexers +indexing +Indiaman +Indiamen +indicant +indicate +indicial +indicium +indicted +indictee +indigene +indigent +indigest +indigoes +indirect +inditers +inditing +indocile +indolent +Indology +indorsed +indorses +indrafts +indrench +indrises +inducers +induciae +inducing +inducted +inductee +inductor +indulged +indulger +indulges +induline +Indurain +indurate +indusial +indusium +industry +induviae +induvial +indwells +inearths +inedible +inedited +inequity +inermous +inerrant +inertial +inessive +inexpert +infamies +infaming +infamise +infamize +infamous +infantas +infantes +infantry +infarcts +infected +infector +infecund +inferiae +inferior +infernal +infernos +inferred +infested +inficete +infidels +infields +infilled +infilter +infinite +infinity +infirmly +infixing +inflamed +inflamer +inflames +inflated +inflates +inflator +inflatus +inflects +inflexed +inflicts +influent +influxes +infobahn +infolded +inforced +inforces +informal +informed +informer +infracts +infringe +infusers +infusing +infusion +infusive +infusory +ingather +ing�nues +ingested +ingoings +ingrafts +ingrains +ingrates +ingroove +ingroups +ingrowth +inguinal +ingulfed +inhabits +inhalant +inhalers +inhaling +inhauler +inhearse +inherent +inhering +inherits +inhesion +inhibits +inholder +inhumane +inhumate +inhumers +inhuming +inimical +iniquity +inisling +initials +initiate +injected +injector +injuncts +injurant +injurers +injuries +injuring +inkberry +inkblots +Inkerman +inkhorns +inkiness +inklings +inkspots +inkstand +inkstone +inkwells +inlacing +inlander +inlayers +inlaying +inlocked +inmeshed +inmeshes +innately +innative +innerved +innerves +innocent +innovate +innuendo +innyards +inoculum +inorbing +inornate +inositol +inputted +inputter +inqilabs +inquests +inquiets +inquired +inquirer +inquires +inrushes +insanely +insanest +insanity +inscapes +inscient +insconce +inscribe +inscroll +insculps +insecure +inserted +inserter +inshrine +insiders +insights +insignes +insignia +insisted +insnared +insnares +insolate +insolent +insomnia +insomuch +insouled +inspects +insphere +inspired +inspirer +inspires +inspirit +instable +installs +instance +instancy +instants +instated +instates +instills +instinct +instress +instruct +insucken +insulant +insulate +insulted +insulter +insurant +insurers +insuring +inswathe +inswings +intaglio +intarsia +integers +integral +Intelsat +intended +intender +intently +interact +intercom +intercut +interess +interest +interims +interior +interlay +intermit +intermix +internal +interned +internee +internes +internet +Interpol +interred +interrex +intersex +intertie +interval +interwar +inthrall +inthrals +intifada +intimacy +intimate +intimism +intimist +intimity +intitule +intombed +intonaco +intonate +intoners +intoning +intorted +intrados +intranet +intrants +intreats +intrench +intrepid +intrigue +intrince +introits +intromit +introrse +intruded +intruder +intrudes +intrusts +intubate +intuited +intwined +intwines +intwists +inundant +inundate +inurbane +inurning +inustion +invaders +invading +invalids +invasion +invasive +invecked +invected +inveighs +inveigle +invented +inventor +inversed +inverses +inverted +inverter +invertin +invertor +invested +investor +inviable +Invictus +invitees +inviters +inviting +invocate +invoiced +invoices +invoking +involute +involved +involves +inwalled +inwardly +inweaves +inwicked +inworked +iodising +iodizing +iodoform +iodyrite +Iolanthe +Ionicise +Ionicize +ionisers +ionising +ionizers +ionizing +ionomers +iopanoic +iotacism +ipomoeas +Ir�klion +Irangate +Iranians +irefully +irenical +irenicon +iridised +iridises +iridized +iridizes +irisated +irisates +iriscope +Irishers +Irishism +Irishman +Irishmen +ironbark +ironclad +ironical +ironings +ironised +ironises +ironists +ironized +ironizes +Ironside +ironware +ironwood +ironwork +Iroquois +irrigate +irrision +irrisory +irritant +irritate +irrupted +isabella +isagoges +isagogic +ischemia +ischemic +ischuria +Ishiguro +Islamise +Islamism +Islamite +Islamize +islanded +islander +islesman +islesmen +Ismailis +isobares +isobaric +isobases +isobaths +isobront +isochasm +isocheim +isochime +isochore +isochors +isocline +isocracy +isocryme +isodicon +isodomon +isodomum +isodonts +isogamic +isogloss +isogonal +isogonic +isograms +isohyets +isokonts +isolable +isolated +isolates +isolator +isolines +isologue +isomeres +isomeric +isometry +isomorph +isonomic +isopleth +isopodan +isoprene +isoptera +isospory +isostasy +isothere +isotherm +isotones +isotonic +isotopes +isotopic +isotrons +isotropy +isotypes +Israelis +issuable +issuably +issuance +Istanbul +isthmian +Italians +Italiote +itchiest +itchweed +itemised +itemises +itemized +itemizes +iterance +iterated +iterates +Ivorians +ivorists +Izvestia diff --git a/com/agnibho/code/anagram/dictionary/I9.txt b/com/agnibho/code/anagram/dictionary/I9.txt new file mode 100644 index 0000000..3a08ad8 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/I9.txt @@ -0,0 +1,988 @@ +iatrogeny +Ibsenites +ibuprofen +iceblinks +icefields +icehouses +Icelander +Icelandic +ichneumon +ichnolite +ichnology +ichthyoid +ichthyses +iconified +iconifies +iconising +iconizing +iconology +iconostas +icterical +Icteridae +idealised +idealiser +idealises +idealists +idealized +idealizer +idealizes +idealless +idealogue +identical +identikit +ideograms +ideograph +ideologic +ideologue +ideomotor +ideophone +idioblast +idiograph +idiolects +idiomatic +idiopathy +idiophone +idioplasm +idiotcies +idiotical +idioticon +idolaters +idolisers +idolising +idolizers +idolizing +Idomeneus +idyllists +ignescent +ignitable +ignitible +ignitions +ignitrons +ignorable +ignoramus +ignorance +ignorants +Iguanidae +Iguanodon +ileostomy +illapsing +illations +Illawarra +illegally +illegible +illegibly +illiberal +illicitly +illimited +Illinoian +illisions +illnesses +illogical +illumined +illuminer +illumines +illusions +imageable +imageless +imaginary +imaginers +imagining +imaginist +imagistic +imbalance +imbarking +imbathing +imbeciles +imbecilic +imbedding +imbitters +imbodying +imbosomed +imbowered +imbrangle +imbricate +imbroglio +imbrowned +imbruting +imbursing +imidazole +imitating +imitation +imitative +imitators +immanacle +immanence +immanency +immantled +immantles +immatured +immediacy +immediate +Immelmann +immensely +immensity +immerging +immersing +immersion +immeshing +immigrant +immigrate +imminence +imminency +Immingham +immingled +immingles +immission +immitting +immixture +immodesty +immolated +immolates +immolator +immorally +immortals +immovable +immovably +immunised +immunises +immunized +immunizes +immunogen +immutable +immutably +impacable +impacting +impaction +impactite +impactive +impainted +impairers +impairing +impannels +imparking +imparling +imparters +impartial +imparting +impassion +impassive +impasting +impastoed +impatiens +impatient +impavidly +impawning +impeached +impeacher +impeaches +impearled +impeccant +impedance +impellent +impellers +impelling +impendent +impending +impennate +imperator +imperfect +imperials +imperious +impeticos +impetigos +impetrate +impetuous +impetuses +impieties +impingent +impinging +impiously +implanted +implating +impleaded +impleader +impledged +impledges +implement +impleting +impletion +implexion +implicate +impliedly +implodent +imploding +imploring +implosion +implosive +implunged +implunges +impluvium +impockets +impolders +impolitic +imponents +important +importers +importing +importune +imposable +imposters +impostors +impostume +imposture +impotence +impotency +impounded +impounder +imprecate +imprecise +impresari +impressed +impresses +imprested +imprinted +imprinter +imprisons +improbity +impromptu +improvers +improving +improvise +imprudent +impsonite +impudence +impugners +impugning +impulsion +impulsive +impulsory +impundulu +impurpled +impurples +imputable +imputably +inability +inaidable +inamorata +inamorato +inaneness +inanimate +inanities +inanition +inaptness +inarching +inaudible +inaudibly +inaugural +inbreathe +inbrought +inburning +incapable +incapably +incarnate +incaution +incensers +incensing +incensors +incensory +incentive +incentres +incepting +inception +inceptive +inceptors +incertain +incessant +inchasing +inchoated +inchoates +incidence +incidents +incipient +incisions +incisures +incitants +inclasped +inclement +inclining +inclipped +inclosers +inclosing +inclosure +including +inclusion +inclusive +incognita +incognito +incomings +incommode +incondite +incorrect +incorrupt +increased +increaser +increases +incremate +increment +incretion +incrusted +incubated +incubates +incubator +incubuses +inculcate +inculpate +incumbent +incunable +incurable +incurably +incurious +incurrent +incurring +incursion +incursive +incurvate +incurving +incurvity +indagated +indagates +indagator +indecency +indecorum +indelible +indelibly +indemnify +indemnity +indenters +indenting +indention +indenture +indexical +indexings +indexless +Indianise +Indianist +Indianize +indicants +indicated +indicates +indicator +indictees +indicting +indiction +indigence +indigency +indigenes +indignant +indignify +indignity +indigotin +indirubin +indispose +indocible +indolence +indolency +Indonesia +indorsing +indraught +indrawing +indubious +inducible +inductees +inductile +inducting +induction +inductive +inductors +indulgent +indulgers +indulging +indulines +indumenta +indurated +indurates +indusiate +induviate +indweller +inearthed +inebriant +inebriate +inebriety +inebrious +ineffable +ineffably +inelastic +inelegant +ineptness +inequable +inerrable +inerrably +inerrancy +inertness +inerudite +inexactly +infamised +infamises +infamized +infamizes +infancies +infantile +infantine +infatuate +infecting +infection +infective +infectors +inferable +inference +inferiors +inferring +infertile +infesting +infidelic +infielder +infighter +infilling +infilters +infinites +infirmary +infirmity +inflamers +inflaming +inflating +inflation +inflative +inflators +inflected +inflexion +inflexure +inflicted +inflicter +inflictor +inflowing +influence +influents +influenza +influxion +infolding +inforcing +informant +informers +informing +infortune +infracted +infractor +infringed +infringes +infuriate +infuscate +infusible +infusions +infusoria +ingathers +ingenious +ingenuity +ingenuous +ingesting +ingestion +ingestive +ingluvial +ingluvies +Ingoldsby +ingrafted +ingrained +ingrately +ingresses +ingrooved +ingrooves +ingrowing +ingrowths +ingulfing +inhabited +inhabiter +inhabitor +inhalants +inhalator +inharmony +inhaulers +inherence +inherency +inherited +inheritor +inhibited +inhibitor +inhumanly +inhumated +inhumates +initialed +initially +initiated +initiates +initiator +injecting +injection +injectors +injuncted +injurants +injurious +injustice +inkholder +inkstands +inkstones +inlanders +inlayings +inlocking +inmeshing +innermost +innervate +innerving +innerwear +innholder +Innisfree +innkeeper +innocence +innocency +innocents +innocuity +innocuous +innovated +innovates +innovator +innoxious +Innsbruck +innuendos +inoculate +inoculums +inodorous +inopinate +inorganic +inotropic +inpayment +inpouring +inputters +inputting +inquieted +inquietly +inquiline +inquinate +inquirers +inquiries +inquiring +inquorate +inrushing +insatiate +insatiety +inscience +inscribed +inscriber +inscribes +insculped +insectary +insectile +insection +inselberg +insensate +inserters +inserting +insertion +insetting +inshallah +insheathe +inshelter +inshrined +inshrines +insidious +insignias +insincere +insinuate +insipidly +insipient +insistent +insisting +insisture +insnaring +insolated +insolates +insolence +insoluble +insolubly +insolvent +insomniac +insouling +inspanned +inspected +inspector +insphered +inspheres +inspirers +inspiring +inspirits +installed +installer +instanced +instances +instanter +instantly +instarred +instating +instigate +instilled +instiller +instincts +institute +instructs +insulance +insulants +insularly +insulated +insulates +insulator +insulsity +insultant +insulters +insulting +insurable +insurance +insurants +insurgent +inswathed +inswathes +inswinger +intaglios +intarsias +integrals +integrand +integrant +integrate +integrity +intellect +Intelpost +intenable +intendant +intendeds +intending +intenible +intensely +intensify +intension +intensity +intensive +intention +intentive +interacts +interbank +interbred +intercede +intercept +intercity +intercoms +intercrop +intercuts +interdash +interdeal +interdict +interdine +interests +interface +interfere +interflow +interfold +interfuse +intergrew +intergrow +interiors +interject +interjoin +interknit +interlace +interlaid +interlard +interlays +interleaf +interline +interlink +interlock +interlope +interlude +interment +intermits +intermure +internals +internees +interning +internist +internode +interpage +interplay +interpone +interpose +interpret +interrail +interring +interrupt +intersect +intersert +interties +intervale +intervals +intervein +intervene +interview +interwind +interwork +interwove +interzone +intestacy +intestate +intestine +inthralls +intimated +intimates +intimiste +intimists +intituled +intitules +intombing +intonated +intonates +intonator +intonings +intorsion +intortion +intranets +intreated +intricacy +intricate +intrigant +intrigued +intriguer +intrigues +intrinsic +introduce +introitus +introject +intromits +introvert +intruders +intruding +intrusion +intrusive +intrusted +intubated +intubates +intuiting +intuition +intuitive +intumesce +intwining +intwisted +Inuktitut +inumbrate +inunction +inundated +inundates +inurement +inusitate +inutility +invalided +invalidly +invariant +invasions +invective +inveighed +inveigled +inveigler +inveigles +inventing +invention +inventive +inventors +inventory +Inveraray +Inverness +inversely +inversing +inversion +inversive +invertase +inverters +inverting +invertors +investing +investors +invidious +inviolate +invisible +invisibly +invocated +invocates +invoicing +involucel +involucre +involuted +involutes +involving +inwalling +inweaving +inwicking +inwinding +inworking +inwrapped +inwreathe +inwrought +iodophile +Ionicised +Ionicises +Ionicized +Ionicizes +ionopause +ionophore +iotacisms +Iphigenia +iprindole +irascible +irascibly +irenicism +irenicons +irenology +Iridaceae +iridising +iridizing +iridology +iridotomy +irisating +irisation +iriscopes +Irishness +irksomely +ironbarks +ironclads +ironising +ironizing +Ironsides +ironsmith +ironstone +ironworks +Iroquoian +irradiant +irradiate +Irrawaddy +irreality +irregular +irrelated +irrigable +irrigated +irrigates +irrigator +irriguous +irrisions +irritable +irritably +irritancy +irritants +irritated +irritates +irritator +irrupting +irruption +irruptive +Irvingism +Irvingite +isagogics +isallobar +ischaemia +ischaemic +ischiadic +ischiatic +isenergic +Isherwood +Isidorian +isinglass +Islamabad +Islamised +Islamises +Islamitic +Islamized +Islamizes +islanders +islanding +Islington +Ismailian +ismatical +isobathic +isobronts +isochasms +isocheims +isochimal +isochimes +isochores +isochoric +isochrone +isoclinal +isoclines +isoclinic +Isocrates +isocratic +isocrymal +isocrymes +isocyclic +isodicons +isodomous +isodontal +isogamete +isogamous +isogenous +isogonals +isogonics +isohyetal +Isokontae +isokontan +isolating +isolation +isolative +isolators +isologous +isologues +isomerase +isomerise +isomerism +isomerize +isomerous +isometric +isomorphs +isoniazid +isonomous +isopleths +isopodous +isopolity +isopropyl +isosceles +isostatic +isosteric +isotactic +isotheral +isotheres +isotherms +isotopies +isotropic +Israelite +Issigonis +issuances +issueless +isthmuses +italicise +italicism +italicize +itchiness +itchweeds +itemising +itemizing +iterating +iteration +iterative +itineracy +itinerant +itinerary +itinerate +ixodiasis +Izvestiya diff --git a/com/agnibho/code/anagram/dictionary/J1.txt b/com/agnibho/code/anagram/dictionary/J1.txt new file mode 100644 index 0000000..4c559f7 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/J1.txt @@ -0,0 +1 @@ +j diff --git a/com/agnibho/code/anagram/dictionary/J10.txt b/com/agnibho/code/anagram/dictionary/J10.txt new file mode 100644 index 0000000..0bc26d3 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/J10.txt @@ -0,0 +1,163 @@ +jabberings +jabberwock +jacarandas +jackalling +jackanapes +jackarooed +jackerooed +jackhammer +Jacksonian +Jacobethan +Jacobinise +Jacobinism +Jacobinize +Jacobitism +Jacqueline +jactations +jaculating +jaculation +jaculators +jaculatory +Jagannatha +jaggedness +jaghirdars +jaguarondi +jaguarundi +jamahiriya +jambalayas +jambokking +jambolanas +Jamesonite +Jamshedpur +janitorial +janitrixes +janizarian +janizaries +Jansenists +Japanesery +Japanesque +Japanising +Japanizing +jardini�re +jargoneers +jargonelle +jargonised +jargonises +jargonists +jargonized +jargonizes +Jaruzelski +jasperised +jasperises +jasperized +jasperizes +jasperware +jaspideous +jaundicing +jauntiness +jawbations +jawbreaker +jaywalkers +jaywalking +jealousies +Jehovistic +jeistiecor +jejuneness +jellifying +jellybeans +jellygraph +jennetings +jeoparders +jeopardise +jeopardize +jeopardous +jerfalcons +jerkinhead +jerkwaters +jessamines +Jesuitical +jettisoned +Jewishness +jigamarees +jiggumbobs +jillarooed +jillflirts +jingoistic +jinricksha +jinrikisha +jitterbugs +Jobcentres +jobernowls +jobsworths +jockeyship +jockstraps +jocktelegs +jocoseness +jocularity +joculators +jocundness +johanneses +Johnsonese +Johnsonian +Johnsonism +jointuress +jointuring +jokesmiths +jollifying +jollyboats +jolterhead +Jordanians +jostlement +journalese +journalise +journalism +journalist +journalize +journeyers +journeying +journeyman +journeymen +jouysaunce +jovialness +joyfulness +joyousness +joypopping +jubilances +jubilantly +jubilating +jubilation +Judaically +judgements +judgeships +judgmental +judication +judicative +judicators +judicatory +judicature +judicially +Jugendstil +juggernaut +juggleries +jugglingly +Jugoslavia +jugulating +jumblingly +jumboising +jumboizing +jumhouriya +juncaceous +junkerdoms +junkerisms +junketeers +junketings +juristical +justiciars +justiciary +justifiers +justifying +Juvenalian +juvenilely +juvenility +juxtaposed +juxtaposes diff --git a/com/agnibho/code/anagram/dictionary/J11.txt b/com/agnibho/code/anagram/dictionary/J11.txt new file mode 100644 index 0000000..35a262d --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/J11.txt @@ -0,0 +1,84 @@ +jabberingly +jabberwocks +jabberwocky +jackarooing +jackerooing +jackhammers +Jacksonians +Jacobinical +Jacobinised +Jacobinises +Jacobinized +Jacobinizes +Jacobitical +Jacqueminot +jactitation +jaculations +jaguarondis +jaguarundis +jaileresses +janissaries +janitorship +janitresses +Japanophile +jardini�res +jargonelles +jargonising +jargonizing +jasperising +jasperizing +jawbreakers +jawbreaking +jealoushood +jealousness +Jehoshaphat +jeistiecors +jellyfishes +jellygraphs +jeopardised +jeopardises +jeopardized +jeopardizes +jerkinheads +jerrymander +jettisoning +jewelfishes +jewelleries +jillarooing +jinrickshas +jinrickshaw +jinrikishas +joblessness +jockeyships +jocoserious +jocundities +Johnsoniana +jointresses +jolterheads +josephinite +journalised +journalises +journalists +journalized +journalizes +jovialities +joylessness +jubilancies +jubilations +Judaisation +Judaization +judgemental +judications +judicatures +judiciaries +judiciously +juggernauts +Jugoslavian +juniorities +juridically +justiceship +justiciable +justifiable +justifiably +juvenescent +juxtaposing diff --git a/com/agnibho/code/anagram/dictionary/J12.txt b/com/agnibho/code/anagram/dictionary/J12.txt new file mode 100644 index 0000000..fe80ed2 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/J12.txt @@ -0,0 +1,34 @@ +jackanapeses +Jacksonville +Jacobinising +Jacobinizing +janitorships +Japanophiles +japonaiserie +Jeffersonian +jellygraphed +jeopardising +jeopardizing +jeopardously +jerrymanders +Jesuitically +jinrickshaws +jitterbugged +Johannesburg +jointuresses +journalising +journalistic +journalizing +Juglandaceae +Jugoslavians +jurisconsult +jurisdiction +jurisdictive +jurisprudent +juristically +justiceships +justicialism +justiciaries +justificator +juvenescence +juvenileness diff --git a/com/agnibho/code/anagram/dictionary/J13.txt b/com/agnibho/code/anagram/dictionary/J13.txt new file mode 100644 index 0000000..1ff4569 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/J13.txt @@ -0,0 +1,21 @@ +Jacobinically +jargonisation +jargonization +jawbreakingly +jawdroppingly +jellygraphing +jerrymandered +jitterbugging +Johnsonianism +jollification +Judaistically +judiciousness +juglandaceous +jurisconsults +jurisdictions +jurisprudence +justification +justificative +justificators +justificatory +juxtaposition diff --git a/com/agnibho/code/anagram/dictionary/J14.txt b/com/agnibho/code/anagram/dictionary/J14.txt new file mode 100644 index 0000000..75e110f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/J14.txt @@ -0,0 +1,10 @@ +jargonisations +jargonizations +jerrymandering +jingoistically +Johannisberger +jollifications +jurisdictional +justifiability +justifications +juxtapositions diff --git a/com/agnibho/code/anagram/dictionary/J15.txt b/com/agnibho/code/anagram/dictionary/J15.txt new file mode 100644 index 0000000..829856a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/J15.txt @@ -0,0 +1,5 @@ +Jungermanniales +jurisprudential +jusqu'auboutist +justifiableness +juxtapositional diff --git a/com/agnibho/code/anagram/dictionary/J16.txt b/com/agnibho/code/anagram/dictionary/J16.txt new file mode 100644 index 0000000..11f5134 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/J16.txt @@ -0,0 +1,3 @@ +journalistically +jusqu'auboutisme +jusqu'auboutiste diff --git a/com/agnibho/code/anagram/dictionary/J2.txt b/com/agnibho/code/anagram/dictionary/J2.txt new file mode 100644 index 0000000..a9f5e3b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/J2.txt @@ -0,0 +1 @@ +jo diff --git a/com/agnibho/code/anagram/dictionary/J3.txt b/com/agnibho/code/anagram/dictionary/J3.txt new file mode 100644 index 0000000..f6e6da6 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/J3.txt @@ -0,0 +1,33 @@ +jab +jag +Jah +jai +jak +jam +Jan +jap +jar +Jat +jaw +jay +jee +Jem +Jen +jet +jeu +Jew +jib +jig +Jim +job +joe +jog +Jon +jor +jot +jow +joy +jud +jug +jus +jut diff --git a/com/agnibho/code/anagram/dictionary/J4.txt b/com/agnibho/code/anagram/dictionary/J4.txt new file mode 100644 index 0000000..f83a541 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/J4.txt @@ -0,0 +1,115 @@ +jabs +jack +jade +jags +jail +Jain +jake +jaks +jamb +jams +jane +jann +jape +japs +jark +jarl +jars +jasp +jass +jato +jaup +Java +Jawi +jaws +jays +jazz +jean +jeed +jeep +jeer +jees +Jeez +jeff +Jehu +jell +Jena +jerk +jess +jest +Jesu +jet� +jets +jeux +Jews +jiao +jibe +jibs +jiff +jigs +jill +jilt +jimp +jink +jinn +jinx +jird +jism +jive +jizz +Joab +Joan +jobe +jobs +jock +Jodi +Jody +Joel +joes +joey +jogs +john +join +joke +joky +jole +joll +jolt +jomo +Joni +jook +josh +joss +jota +jots +jouk +jour +Jove +jowl +jows +joys +Juan +juba +jube +Jude +judo +juds +judy +juga +jugs +juju +juke +July +jump +June +Jung +junk +Juno +jura +jure +jury +just +jute +juts +juve +jynx diff --git a/com/agnibho/code/anagram/dictionary/J5.txt b/com/agnibho/code/anagram/dictionary/J5.txt new file mode 100644 index 0000000..c3bc11c --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/J5.txt @@ -0,0 +1,190 @@ +jabot +jacks +Jacky +Jacob +jaded +jades +Jaffa +j�ger +jaggy +jagir +jails +Jaime +Jaina +jakes +jalap +Jamal +jambe +jambo +jambs +jambu +james +Jamie +Jamil +Jammu +jammy +janes +Janet +Janey +Janie +Janis +janty +Janus +japan +japed +japer +japes +Jared +jarks +jarls +Jarry +jarul +jasey +Jason +jaspe +jatos +jaunt +jaups +Javan +javel +jawan +jawed +jazzy +jeans +jebel +Jedda +jeely +jeeps +jeers +Jeeze +jeffs +jehad +jelab +jello +jells +jelly +jemmy +Jenna +jenny +Jerez +jerid +jerks +jerky +jerry +Jesse +jests +Jesus +jet�s +jeton +jetty +jeune +jewel +Jewry +jhala +jiaos +jibed +jiber +jibes +Jidda +jiffs +jiffy +jigot +jihad +Jilin +jills +jilts +jimmy +jimpy +Jinan +jingo +jinks +jinni +jinns +jirds +jirga +jived +jiver +jives +jnana +jobed +jobes +jocko +jocks +jodel +Jodie +joeys +johns +joins +joint +joist +joked +joker +jokes +jokey +joled +joles +Jolie +jolls +jolly +jolts +jolty +jomos +Jonah +Jones +jonty +jooks +Jools +Joppa +joram +jorum +Josie +jotas +jotun +joual +jougs +jouks +joule +joust +jowar +jowed +jowls +jowly +Joyce +joyed +jubas +jubes +Judah +judas +Judea +judge +Judie +jugal +jugum +juice +juicy +jujus +juked +jukes +julep +Jules +Julia +Julie +jumar +jumbo +jumby +Jumna +jumps +jumpy +junco +junks +junky +junta +junto +jupon +jural +jurat +juror +justs +jutes +jutty +juves diff --git a/com/agnibho/code/anagram/dictionary/J6.txt b/com/agnibho/code/anagram/dictionary/J6.txt new file mode 100644 index 0000000..68c8980 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/J6.txt @@ -0,0 +1,314 @@ +jabbed +jabber +jabble +jabers +jabiru +jabots +jacana +jacent +jackal +jacked +jacket +Jackie +jacksy +Jacobi +Jacobs +jadery +jading +jadish +jaeger +Jaffas +Jaffna +j�gers +jagged +jagger +jaghir +jagirs +jaguar +Jahveh +jailed +jailer +jailor +Jaipur +Jalapa +jalaps +jalopy +jambee +jamber +jambes +jambok +jambos +jambul +jambus +jamjar +jammed +jammer +jampan +jampot +Jancis +Jandal +jangle +jangly +Janian +Janice +Janina +Janine +janker +Jansen +jansky +japans +japers +japing +Jaques +jarful +jargon +Jarley +Jarman +jarool +jarrah +jarred +Jarrow +jaruls +jarvey +jarvie +Jarvis +jaseys +jasper +jaspis +jataka +jaunce +jaunts +jaunty +jauped +jawans +jawari +jawing +jawohl +Jaycee +jazzed +jazzer +jazzes +Jeames +Jeanie +jebels +jeeing +jeelie +jeered +jeerer +Jeeves +jeffed +jehads +jejune +Jekyll +jelabs +jelled +jellos +jemima +Jenner +jennet +Jennie +Jenufa +jerbil +jerboa +jereed +Jeremy +jerids +jerked +jerker +jerkin +Jerome +jerque +jersey +Jervis +jessed +jesses +jessie +jested +jestee +jester +Jesuit +Jethro +jetons +jetsam +jetsom +jetted +jetton +jewels +Jewess +Jewish +jezail +jibbah +jibbed +jibber +jibers +jibing +jigged +jigger +jiggle +jiggly +jigjig +jigots +jigsaw +jihads +jilgie +jillet +jilted +jiminy +jimjam +Jimmie +jimper +jimply +jingal +jingle +jingly +jinked +jinker +jinnee +jinxed +jinxes +jirgas +jissom +jitney +jitter +jivers +jiving +jizzes +Joanie +Joanna +Joanne +jobbed +jobber +jobing +jockey +jockos +jocose +jocund +jodels +Joelle +Joffre +jogged +jogger +joggle +Johann +johnny +joined +joiner +joints +joists +jojoba +jokers +jokier +joking +Joleen +Jolene +joling +jolled +jolley +Jolson +jolted +jolter +Jolyon +Jonson +jooked +Joplin +jorams +Jordan +jorums +joseph +joshed +josher +joshes +Joshua +Josiah +joskin +josser +josses +jostle +jotted +jotter +jotunn +jotuns +jouked +joules +jounce +journo +jousts +jovial +Jovian +jowari +jowars +Jowett +jowing +jowled +jowler +joyful +joying +joyous +joypop +Ju�rez +jubate +jubbah +Jubjub +Judaea +Judaic +judder +Judean +judged +judges +Judica +judies +Judith +judogi +judoka +jugals +jugate +jugful +jugged +juggle +juglet +juiced +juicer +juices +jujube +juking +juleps +Julian +Juliet +Julius +jumars +jumart +jumbal +jumbie +jumble +jumbly +jumbos +jumped +jumper +juncos +juncus +Juneau +jungle +jungli +jungly +junior +Junius +junked +junker +junket +junkie +juntas +juntos +jupati +jupons +jurant +jurats +juries +jurist +jurors +justed +Justin +justle +justly +jutted +jymold +jynxes diff --git a/com/agnibho/code/anagram/dictionary/J7.txt b/com/agnibho/code/anagram/dictionary/J7.txt new file mode 100644 index 0000000..b523a6b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/J7.txt @@ -0,0 +1,368 @@ +jabbers +jabbing +jabbled +jabbles +jabirus +jacamar +jacanas +jacchus +Jacinta +jacinth +jackals +jackass +jackdaw +jackeen +jackets +Jackies +jacking +Jacklin +jackman +jackmen +jackpot +jacksie +Jackson +Jacobin +jacobus +jaconet +Jacques +Jacuzzi +jadedly +jadeite +jaegers +jaggers +jaggery +jaggier +jagging +jaghire +jaghirs +jaguars +Jahvism +Jahvist +jailers +jailing +jailors +Jainism +Jainist +Jakarta +jalapic +jalapin +jaloppy +jalouse +jamadar +Jamaica +jambeau +jambees +jambers +jambeux +jambiya +jamboks +jambone +jambool +jambuls +jamdani +jameses +jamjars +jammers +jammier +jamming +jampani +jampans +jampots +Jamshid +Janacek +Jandals +Janeite +Janette +jangled +jangler +jangles +janitor +janizar +jankers +jannock +janskys +janties +January +Japheth +Japonic +jarfuls +jargons +jargoon +jarkman +jarkmen +jarools +jarrahs +jarring +jarveys +jarvies +jasmine +jaspers +jaspery +jatakas +jaunced +jaunces +jaunted +jauntie +jauping +javelin +jawaris +jawbone +jawfall +jawings +Jaycees +jaywalk +jazzers +jazzier +jazzily +jazzing +jazzman +jazzmen +jealous +Jeannie +jeelies +Jeepers +jeepney +jeerers +jeering +jeffing +Jeffrey +Jehovah +jejunum +jellaba +jellied +jellies +jellify +jelling +Jellyby +jemadar +jemidar +jemimas +jemmied +jemmies +Jenifer +Jenkins +jennets +jennies +jeofail +jeopard +jerbils +jerboas +jereeds +Jericho +jerkers +jerkier +jerkily +jerking +jerkins +jerqued +jerquer +jerques +jerries +jerseys +Jersian +jessamy +jessant +Jessica +jessies +jestees +jesters +jestful +jesting +Jesuits +jetfoil +jettied +jetties +jetting +jettons +jeweled +jeweler +jewelry +jewfish +jezails +Jezebel +Jezreel +jibbahs +jibbers +jibbing +jiffies +jigajig +jigajog +jiggers +jigging +jiggish +jiggled +jiggles +jigsaws +jilgies +jillets +Jillian +jillion +jilting +Jimenez +jimjams +jimmies +jimpest +jingals +jingled +jingler +jingles +jinglet +jingoes +jinjili +jinkers +jinking +jipyapa +jitneys +jitters +jittery +Joachim +joannes +jobbers +jobbery +jobbing +jobless +Jocasta +Jocelin +Jocelyn +jockeys +jocular +Jodhpur +joggers +jogging +joggled +joggles +Johanna +Johnian +johnnie +Johnson +joinder +joiners +joinery +joining +jointed +jointer +jointly +joisted +jojobas +jokiest +jolleys +jollied +jollier +jollies +jollify +jollily +jolling +jollity +jollyer +jolters +joltier +jolting +Joneses +jonquil +jonties +jooking +Josepha +josephs +Josette +joshers +joshing +joskins +jossers +jostled +jostles +jotters +jotting +jotunns +jouking +jounced +jounces +journal +journey +journos +jousted +jouster +jowaris +jowlers +jowlier +joyance +Joycean +joyless +joypops +jubbahs +jubilee +Judaean +Judaica +Judaise +Judaism +judaist +Judaize +judases +judders +judging +judogis +judoist +judokas +jugfuls +jugging +juggins +juggled +juggler +juggles +jughead +Juglans +juglets +jugular +juicers +juicier +juicily +juicing +jujubes +jukebox +jukskei +Juliana +jumared +jumarts +jumbals +jumbies +jumbled +jumbler +jumbles +jumbuck +jumelle +jumpers +jumpier +jumpily +jumping +juncoes +Jungian +jungles +Juninho +juniors +juniper +junkers +junkets +junkies +junking +junkman +junkmen +jupatis +Jupiter +jurally +jurants +juridic +jurists +juryman +jurymen +jussive +justice +justify +Justina +Justine +justing +justled +justles +Jutland +juttied +jutties +jutting +juvenal diff --git a/com/agnibho/code/anagram/dictionary/J8.txt b/com/agnibho/code/anagram/dictionary/J8.txt new file mode 100644 index 0000000..4f1640f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/J8.txt @@ -0,0 +1,257 @@ +Jabalpur +jabbered +jabberer +jabbling +jacamars +j'accuse +Jacintha +Jacinthe +jacinths +jackaroo +jackboot +jackdaws +jackeroo +jacketed +jackfish +jackpots +jacksies +Jacobean +Jacobian +Jacobins +Jacobite +jacquard +jaculate +Jacuzzis +jaderies +j'adoube +jaggedly +jaggiest +Jahvists +Jainists +jalape�o +jalopies +jalouses +jalousie +jamadars +Jamaican +jambeaux +jambiyah +jambiyas +jambolan +jambones +jambools +jamboree +Jamesian +jammiest +Jamnagar +jampanee +jampanis +Janeites +janglers +jangling +janiform +janitors +janitrix +janizars +janizary +jannocks +Japanese +japanesy +Japanise +Japanize +japanned +japanner +Japhetic +japonica +jararaca +jararaka +jargoned +Jarndyce +jarosite +jarrings +jasmines +jaspises +jauncing +jaundice +jauntier +jaunties +jauntily +jaunting +Javanese +javelins +jawbones +jawfalls +jaywalks +jazerant +jazziest +jealousy +jeanette +Jebusite +Jedburgh +jeepneys +jeerings +Jehovist +jejunely +jejunity +jejunums +jellabas +Jellicoe +jellying +jelutong +jemadars +jemidars +jemmying +Jennifer +Jennings +jeopardy +Jephthah +jeremiad +Jeremiah +jerkiest +jerkings +jeroboam +jerquers +jerquing +jerrican +jerrycan +Jersians +jestbook +jestings +Jesuitic +Jesuitry +jetfoils +jetliner +jettison +jettying +jewelers +jeweling +jewelled +jeweller +Jewesses +Jewishly +Jezebels +Jhabvala +jibbings +jickajog +jigajigs +jigajogs +jiggered +jiggings +jiggling +jigsawed +jillaroo +jillions +jimcrack +jimpness +jingbang +jinglers +jinglets +jinglier +jingling +jingoish +jingoism +jingoist +jinjilis +jipyapas +jirkinet +jittered +jobation +Joceline +jockette +jockeyed +jocosely +jocosity +jocundly +jodelled +jodhpurs +joggling +johannes +Johnners +johnnies +joinders +joinings +jointers +jointing +jointure +joisting +jokesome +jokingly +jolleyer +jolliest +jollyers +jollying +jolthead +joltiest +Jonagold +Jonathan +Jonathon +joncanoe +jongleur +jonquils +jordeloo +Jorrocks +Josephus +jostling +jottings +jouncing +journals +journeys +jousters +jousting +J'Ouvert +jovially +jowliest +joyances +joyfully +joyously +jubilant +jubilate +jubilees +Judaical +Judaiser +Judaized +Judaizer +Judaizes +juddered +judgment +judicial +judoists +jugglers +jugglery +juggling +jugheads +Jugoslav +jugulars +jugulate +Jugurtha +juiciest +julienne +jumaring +jumblers +jumbling +jumboise +jumboize +jumbucks +jumelles +jumpable +jumpiest +junction +juncture +juncuses +Jungfrau +junglier +junipers +junkanoo +junketed +Junonian +Jurassic +juratory +juristic +jurymast +jussives +justicer +justices +justling +justness +juttying +juvenile diff --git a/com/agnibho/code/anagram/dictionary/J9.txt b/com/agnibho/code/anagram/dictionary/J9.txt new file mode 100644 index 0000000..6f5894b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/J9.txt @@ -0,0 +1,235 @@ +jabberers +jabbering +jaborandi +jacaranda +jacchuses +jackalled +Jackanory +jackaroos +jackasses +jackboots +jackeroos +jacketing +jackshaft +Jacobinic +Jacobites +Jacobitic +jacobuses +jacquards +Jacquelyn +Jacquerie +Jacquetta +jactation +jaculated +jaculates +jaculator +jadedness +Jagannath +jaghirdar +jaileress +jailhouse +Jalandhar +jalape�os +jaloppies +jalousied +jalousies +Jamaicans +jambalaya +jambiyahs +jambokked +jambolana +jambolans +jamborees +Jamestown +jampanees +janglings +janissary +janitress +Jansenism +Jansenist +Japaneses +Japanised +Japanises +Japanized +Japanizes +japanners +japanning +japonicas +Jaqueline +jararacas +jararakas +jargoneer +jargoning +jargonise +jargonist +jargonize +Jarlsberg +jarringly +jasperise +jasperize +jasperous +jaspidean +jaundiced +jaundices +jauntiest +jawbation +jawboning +jaywalked +jaywalker +jazziness +jealously +jeanettes +Jeannette +Jebusitic +jeeringly +Jefferson +jellified +jellifies +jelliform +jellybean +jellyfish +jelutongs +jemminess +jenneting +jeoparder +jequirity +jeremiads +jerfalcon +jerkiness +jerkwater +jeroboams +jerquings +jerricans +jerrycans +Jerusalem +jessamine +jesserant +jestbooks +jestingly +Jesuitism +jetliners +jettatura +jettiness +jettisons +jewelfish +jewellers +jewellery +jewelling +jewfishes +jickajogs +jigamaree +jiggering +jiggumbob +jigsawing +jillaroos +jillflirt +jimcracks +jingbangs +jingliest +jingoists +jirkinets +jitterbug +jittering +joanneses +jobations +Jobcentre +jobernowl +jobsworth +jockettes +jockeying +jockeyism +jockstrap +jockteleg +jocularly +joculator +jocundity +jodelling +Johannean +Johannine +jointless +jointness +jointress +jointured +jointures +jokesmith +joliotium +jolleyers +jolleying +jollified +jollifies +jolliness +jollities +jollyboat +jollyhead +joltheads +joltingly +jongleurs +J�nk�ping +Jonsonian +Jordanian +jordeloos +Josephine +Josephson +jostlings +jouisance +journeyed +journeyer +joviality +joylessly +joypopped +jubilance +jubilancy +jubilated +jubilates +Judaistic +Judaizing +juddering +judgement +judgeship +judgments +judicable +judicator +judiciary +judicious +jugginses +jugglings +jugulated +jugulates +juiceless +juiciness +Juilliard +jukeboxes +juliennes +jumboised +jumboises +jumboized +jumboizes +jumpiness +Juncaceae +junctions +junctures +juneating +Juneberry +jungliest +juniority +Juniperus +junkerdom +junkerism +junketeer +junketing +junkiness +Junoesque +juridical +jurymasts +jurywoman +jurywomen +justicers +justiciar +justified +justifier +justifies +Justinian +juttingly +juveniles +juvenilia +juxtapose diff --git a/com/agnibho/code/anagram/dictionary/K1.txt b/com/agnibho/code/anagram/dictionary/K1.txt new file mode 100644 index 0000000..b68fde2 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K1.txt @@ -0,0 +1 @@ +k diff --git a/com/agnibho/code/anagram/dictionary/K10.txt b/com/agnibho/code/anagram/dictionary/K10.txt new file mode 100644 index 0000000..408af74 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K10.txt @@ -0,0 +1,162 @@ +kabeljouws +Kafkaesque +kaiserdoms +kaisership +kalamkaris +kalendared +Kalgoorlie +Kalimantan +kallitypes +kalsomined +kalsomines +kamerading +Kampuchean +kangarooed +Kantianism +kantikoyed +kaolinised +kaolinises +kaolinitic +kaolinized +kaolinizes +kaolinosis +karabiners +Karamanlis +karateists +Karmathian +karstified +karstifies +karyolymph +karyolysis +karyoplasm +karyotypic +katabolism +Kathakalis +Kazakhstan +keelhauled +keelivines +keeperless +keepership +kefuffling +Kelvinside +Kenilworth +kennelling +kenophobia +kenoticist +Kensington +kenspeckle +keratinise +keratinize +keratinous +keratotomy +kerbstones +kerchiefed +kerfuffled +kerfuffles +kernelling +kersantite +kerseymere +kerygmatic +kettledrum +kettlefuls +keyboarder +keypunched +keypunches +keystrokes +khalifates +khansamahs +khedivates +khediviate +khidmutgar +khitmutgar +Khrushchev +khuskhuses +kibbutznik +kicksorter +kickstands +kiddiewink +kiddywinks +kidnappers +kidnapping +kidologist +kieselguhr +kilderkins +Kilmarnock +kilocycles +kilogramme +kilolitres +kilometers +kilometres +kimberlite +kindliness +kindnesses +kinematics +kinescopes +kinesipath +kingfisher +kingfishes +kinglihood +kingliness +kirbigrips +kirkyairds +kissagrams +kissograms +Kitakyushu +kitchendom +kitcheners +kitchening +kitemarked +kittiwakes +klangfarbe +klebsiella +klendusity +klinostats +klondikers +Klondiking +klondykers +Klondyking +kloochmans +klootchman +klootchmen +knackeries +knackering +knackiness +knackwurst +knagginess +knapbottle +knaveships +kneecapped +knickpoint +knightages +knighthood +knightless +knobbiness +knobbliest +knobkerrie +knockabout +knockwurst +knottiness +kolinskies +K�nigsberg +konimeters +koniscopes +kookaburra +kottaboses +koulibiaca +kourbashed +kourbashes +kouskouses +kreasoting +kriegspiel +Krishnaism +kromeskies +Krugerrand +krummhorns +kryometers +Kuomintang +kurbashing +kurdaitcha +kurtosises +kymographs +kymography +Kyrgyzstan diff --git a/com/agnibho/code/anagram/dictionary/K11.txt b/com/agnibho/code/anagram/dictionary/K11.txt new file mode 100644 index 0000000..62f9401 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K11.txt @@ -0,0 +1,93 @@ +kaiserships +kalashnikov +kalendaring +Kaliningrad +kalsomining +kamelaukion +Kampucheans +kangarooing +kantikoying +kaolinising +kaolinizing +karstifying +katabothron +katadromous +katavothron +Kazantzakis +keelhauling +keeperships +kenoticists +keratinised +keratinises +keratinized +keratinizes +keratometer +keratophyre +kerchiefing +kerfuffling +kernicterus +kettledrums +keyboarders +keyboardist +keypunching +keystroking +khediviates +khidmutgars +khitmutgars +kibbutzniks +kicksorters +kiddiewinks +kidologists +Kierkegaard +Kilimanjaro +killifishes +killikinick +kilocalorie +kilogrammes +Kimeridgian +kinderspiel +kindredness +kindredship +kinematical +kinesiatric +kinesiology +kinesipaths +kinesipathy +kinesthesia +kinesthesis +kinesthetic +kinetically +kinetochore +kinetograph +kinetoscope +kingdomless +kingfishers +kinnikinick +Kirkpatrick +kitchenette +kitchenware +kleptocracy +kleptomania +klootchmans +knackwursts +knavishness +kneecapping +knickpoints +knighthoods +knobkerries +knockabouts +knockwursts +knotgrasses +knowingness +Kommersbuch +kookaburras +kourbashing +Krasnoyarsk +kriegspiels +kriegsspiel +Krugerrands +Kulturkampf +Kulturkreis +kurdaitchas +kwashiorkor +kymographic diff --git a/com/agnibho/code/anagram/dictionary/K12.txt b/com/agnibho/code/anagram/dictionary/K12.txt new file mode 100644 index 0000000..d9aa2e1 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K12.txt @@ -0,0 +1,45 @@ +kakistocracy +kalashnikovs +kaleidophone +kaleidoscope +kamelaukions +karyokinesis +katabothrons +katavothrons +Katharevousa +katharometer +katzenjammer +keratinising +keratinizing +keratogenous +keratoplasty +keraunograph +keyboardists +Keynesianism +Khachaturian +kiddiewinkie +kinaesthesia +kinaesthesis +kinaesthetic +kindergarten +kinderspiels +kinesiatrics +kinesipathic +kinetographs +kinetoscopes +kinnikinnick +kirschwasser +kitchenettes +kleptocratic +kleptomaniac +Kletterschuh +klipspringer +kneecappings +knightliness +knowableness +knowledgable +knowledgably +Krameriaceae +Kremlinology +kriegsspiels +kurchatovium diff --git a/com/agnibho/code/anagram/dictionary/K13.txt b/com/agnibho/code/anagram/dictionary/K13.txt new file mode 100644 index 0000000..0b1d805 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K13.txt @@ -0,0 +1,35 @@ +kaffeeklatsch +kaleidophones +kaleidoscopes +kaleidoscopic +Kangchenjunga +kapellmeister +katharometers +katzenjammers +keraunographs +kettledrummer +Kidderminster +kiddiewinkies +Killiecrankie +kindergartens +kinderg�rtner +kindheartedly +kinematograph +kinesiologist +kinesipathist +kinesitherapy +Kirkcudbright +kirschwassers +kittenishness +kleptocracies +kleptomaniacs +Kletterschuhe +klipspringers +Knaresborough +knickerbocker +Knightsbridge +knowledgeable +knowledgeably +knuckleduster +knuckleheaded +KwaZulu/Natal diff --git a/com/agnibho/code/anagram/dictionary/K14.txt b/com/agnibho/code/anagram/dictionary/K14.txt new file mode 100644 index 0000000..3254908 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K14.txt @@ -0,0 +1,17 @@ +Kaiserslautern +kakistocracies +kapellmeisters +karstification +keratinisation +keratinization +kettledrummers +kindergartener +kinderg�rtners +kinematographs +kinesiologists +kinesipathists +kinetheodolite +knickerbockers +knuckledusters +Kremlinologist +Kupferschiefer diff --git a/com/agnibho/code/anagram/dictionary/K15.txt b/com/agnibho/code/anagram/dictionary/K15.txt new file mode 100644 index 0000000..aa224f9 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K15.txt @@ -0,0 +1,5 @@ +katathermometer +Kincardineshire +kindergarteners +kinetheodolites +knowledgability diff --git a/com/agnibho/code/anagram/dictionary/K16.txt b/com/agnibho/code/anagram/dictionary/K16.txt new file mode 100644 index 0000000..475b464 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K16.txt @@ -0,0 +1,2 @@ +katathermometers +knowledgeability diff --git a/com/agnibho/code/anagram/dictionary/K17.txt b/com/agnibho/code/anagram/dictionary/K17.txt new file mode 100644 index 0000000..303ce0a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K17.txt @@ -0,0 +1,2 @@ +kaleidoscopically +Kindertotenlieder diff --git a/com/agnibho/code/anagram/dictionary/K18.txt b/com/agnibho/code/anagram/dictionary/K18.txt new file mode 100644 index 0000000..4930b94 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K18.txt @@ -0,0 +1 @@ +Kirkcudbrightshire diff --git a/com/agnibho/code/anagram/dictionary/K2.txt b/com/agnibho/code/anagram/dictionary/K2.txt new file mode 100644 index 0000000..9b6b322 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K2.txt @@ -0,0 +1,3 @@ +ka +ko +ky diff --git a/com/agnibho/code/anagram/dictionary/K3.txt b/com/agnibho/code/anagram/dictionary/K3.txt new file mode 100644 index 0000000..db081ec --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K3.txt @@ -0,0 +1,37 @@ +Kaa +kae +kai +kam +kas +kat +kaw +kay +kea +ked +kef +keg +ken +kep +Kes +ket +Kew +kex +key +kid +kif +Kim +kin +kip +kir +kit +koa +kob +koi +kon +kop +kos +Kru +Kum +Kwa +kye +kyu diff --git a/com/agnibho/code/anagram/dictionary/K4.txt b/com/agnibho/code/anagram/dictionary/K4.txt new file mode 100644 index 0000000..e233f16 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K4.txt @@ -0,0 +1,156 @@ +kade +kadi +kaes +kago +Kahn +kaid +kaif +kail +kaim +kain +kaka +kaki +kale +kali +Kama +kame +kami +kana +kang +Kano +kans +kant +kaon +kara +Karl +kart +kata +Kate +Kath +kati +kats +kava +kaws +Kaye +kayo +kays +kazi +Kean +keas +keck +keds +keek +keel +keen +keep +kefs +kegs +keir +keks +kell +kelp +kelt +kemp +keno +kens +kent +kepi +keps +kept +kerb +kerf +kern +kesh +keta +kets +keys +khan +khat +khor +khud +kibe +kick +Kidd +kids +Kiel +kier +Kiev +kifs +kill +kiln +kilo +kilp +kilt +kina +kind +kine +king +kink +kino +kins +kipe +kipp +kips +kiri +kirk +kirn +kish +kiss +kist +kite +kith +kits +kiva +kiwi +Klan +Klee +knag +knap +knar +knee +knew +knit +knob +knop +knot +know +Knox +knub +knur +knut +koan +koas +Kobe +kobs +KO'd +koel +koff +kohl +kola +K�ln +kolo +konk +kook +koph +kora +kore +koss +koto +krab +k'ri +kris +Kroo +ksar +kudu +kuku +Kurd +kuri +Kurt +kuru +Kuyp +kuzu +kyat +kyle +Kyra +kyte +kyus diff --git a/com/agnibho/code/anagram/dictionary/K5.txt b/com/agnibho/code/anagram/dictionary/K5.txt new file mode 100644 index 0000000..788291b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K5.txt @@ -0,0 +1,283 @@ +Kaaba +kaama +kabab +kabob +Kabul +kacha +kades +kadis +Kafir +Kafka +kagos +kahal +kaiak +kaids +kaifs +kails +kaims +kains +kakas +kakis +kales +kalif +kalis +kalpa +Kamal +kames +kamik +kamis +Kanak +kandy +kaneh +kanga +kangs +kanji +Kanta +kants +kanzu +kaons +kapok +kappa +kaput +karas +karat +Karen +Karin +Karla +karma +Karoo +karri +karst +karsy +karts +karzy +kasha +katas +Kathy +Katie +katis +katti +Katya +kauri +kavas +kawed +kayak +kayle +kayos +Kazak +Kazan +kazis +kazoo +Keats +kebab +Keble +kebob +kecks +kedge +keech +keeks +keels +keens +keeps +keeve +kefir +keirs +Keith +kelim +kells +Kelly +kelps +kelpy +kelts +kelty +kembo +Kempe +kemps +kempt +kenaf +kendo +Kenna +Kenny +kents +Kenya +kepis +kerbs +kerfs +kerne +kerns +Kerry +kerve +kesar +Kesey +ketas +ketch +kevel +Kevin +kexes +keyed +khadi +khaki +khans +khats +khaya +kheda +Khios +Khmer +khoja +khors +khuds +kiang +kibes +kicks +kiddo +kiddy +kidel +Kiera +kiers +kieve +kikoi +kiley +kilim +kills +kilns +kilos +kilps +kilts +kilty +kimbo +kinas +kinda +kinds +kindy +kings +kinin +kinks +kinky +kinos +kiosk +kipes +kippa +kipps +Kiran +kirks +kirns +Kirov +kisan +kists +kited +kites +kithe +kiths +kitty +kivas +kiwis +klang +Klein +Klimt +kloof +klutz +knack +knags +knaps +knarl +knars +knave +knead +kneed +kneel +knees +knell +knelt +knife +knish +knits +knive +knobs +knock +knoll +knops +knosp +knots +knout +knowe +known +knows +knubs +knurl +knurr +knurs +knuts +koala +koans +koban +Kodak +koels +koffs +kofta +Kohen +Koine +Kojak +koker +kokra +kokum +kolas +kolos +kombu +konks +kooks +kooky +koori +kopek +kophs +kopje +koppa +Koran +koras +Korda +Korea +kores +korma +koses +kotos +kotow +Kotys +kraal +krabs +kraft +krait +krang +krans +kranz +Krebs +kreng +krill +kr�na +krone +Krupp +ksars +kudos +kudus +kudzu +Kufic +kukri +kukus +kulak +kulan +kulfi +Kumar +kuris +kurta +kutch +kvass +kwela +kyang +kyats +kyles +kylie +kylin +kylix +kyloe +Kyoto +Kyrie +kytes +kythe diff --git a/com/agnibho/code/anagram/dictionary/K6.txt b/com/agnibho/code/anagram/dictionary/K6.txt new file mode 100644 index 0000000..a34c085 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K6.txt @@ -0,0 +1,392 @@ +kaamas +kababs +kabala +kabaya +kabele +kabobs +kabuki +Kabyle +kaccha +Kaduna +Kaffir +kafila +Kafirs +kaftan +kagool +kagoul +kahals +kaiaks +kaikai +kaiser +kaizen +kakapo +kalian +kalifs +kalium +kalmia +kalong +kalpak +kalpas +kalpis +kamala +kamees +kameez +kamela +kamiks +kamila +kamsin +kanaka +Kanaks +kanehs +kangas +kangha +Kangol +kanjis +Kanpur +Kansas +kantar +kanted +kanten +kantha +kanzus +kaolin +kaputt +karait +karaka +karate +karats +Karens +Kariba +Karina +karite +karmas +karmic +Karnak +Karoos +kaross +Karpov +karris +Karroo +karsey +karsts +karter +karyon +kasbah +kashas +Kassel +katana +kathak +kation +katipo +kattis +kauris +kavass +kawing +kayaks +kayles +kayoed +kayoes +Kazakh +Kazaks +kazoos +keasar +Keaton +kebabs +kebbie +kebele +keblah +kebobs +kecked +keckle +kecksy +keddah +kedged +kedger +kedges +Keegan +keeked +keeker +keeled +keeler +keelie +keened +keener +keenly +keeper +keeves +keffel +kefirs +kelims +Keller +keloid +Kelper +kelpie +kelson +kelter +Keltic +keltie +kelvin +Kemble +kembos +kemped +kemper +Kempis +kemple +kenafs +Kendal +kenned +kennel +kenner +Kennet +kented +Kentia +Kenyan +kephir +Kepler +Kerala +kerbed +kermes +kermis +Kermit +kerned +kernel +kernes +kerria +kersey +kerved +kerves +ketene +ketone +ketose +kettle +Keuper +kevels +Kevlar +kewpie +keying +Keynes +keypad +kgotla +khakis +khalat +khalif +Khalka +Khalsa +khanga +khanum +kharif +khayas +khedas +khilat +khilim +khodja +khojas +Khulna +khurta +kiangs +kiaugh +kibble +kibitz +kiblah +kibosh +kicked +kicker +kidded +kidder +kiddie +kiddle +kidels +kidlet +kidnap +kidney +kidult +kidvid +Kielce +Kieran +kierie +Kieron +kieves +Kigali +Kikuyu +kilerg +kileys +kilims +killas +killed +killer +killut +kilned +Kilroy +kilted +kilter +kiltie +kimbos +kimchi +kimono +kinase +kincob +kinder +kindie +kindle +kindly +kinema +kinged +kingly +kinins +kinked +kinkle +kinone +Kinsey +kiosks +kippas +kipped +kipper +kirbeh +Kirkby +kirked +Kirman +kirned +kirpan +kirsch +Kirsty +kirtle +kisans +kishes +kishke +Kislev +kismet +kissed +kissel +kisser +kisses +kisted +kithed +kithes +kiting +kitsch +kitted +kitten +kittle +kittly +kittul +klangs +klaxon +klepht +klooch +kloofs +kludge +klutzy +knacks +knacky +knaggy +knarls +knaves +knawel +kneads +kneels +Kneipe +knells +knicks +knifed +knifes +knight +knitch +knived +knives +knobby +knocks +knolls +knosps +knotty +knouts +knower +knowes +knubby +knurls +knurly +knurrs +koalas +kobang +kobans +kobold +K�chel +kochia +Kodaly +Kodiak +KO'ing +kokers +kokums +Kolyma +konfyt +konked +koodoo +kooked +kookie +koolah +kopeck +kopeks +kopjes +koppie +Korbut +Korean +korero +kormas +korora +koruna +kosher +kosmos +Kosovo +kosses +kotows +kotwal +koulan +kouroi +kouros +kowhai +kowtow +kraals +kraits +kraken +Krakow +krangs +krantz +krater +kreese +krengs +krills +krised +krises +kronen +kroner +kronor +Kronos +kr�nur +Kruger +Kuchen +kudzus +kukris +kulaks +kulans +Kultur +kumara +kumari +kumiss +k�mmel +kunkar +kunkur +kurgan +kurtas +kurvey +kutcha +Kuwait +kvetch +kwacha +kwanza +kyangs +kybosh +kylies +kylins +kyloes +Kyrgyz +kythed +kythes diff --git a/com/agnibho/code/anagram/dictionary/K7.txt b/com/agnibho/code/anagram/dictionary/K7.txt new file mode 100644 index 0000000..51f64ce --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K7.txt @@ -0,0 +1,441 @@ +kabaddi +kabayas +Kabbala +kabeles +kacchas +kachcha +kacheri +kachina +Kaddish +Kaesong +Kaffirs +kafilas +kaftans +kagools +kagoule +kagouls +kahawai +kainite +kaisers +kajawah +kakapos +kakodyl +kalends +kalians +Kalinin +Kallima +kalmias +Kalmuck +kalongs +kalpaks +kamalas +kamelas +kamerad +kamichi +kamilas +kamises +Kampala +kampong +kamseen +kamsins +kanakas +Kananga +kandies +kanghas +Kannada +kantars +kantela +kantele +kantens +kanthas +Kantian +kanting +Kantism +Kantist +kaoline +Karachi +karaism +Karaite +karaits +Karajan +karakas +karakul +karaoke +Karenni +karites +Karling +Karloff +karoshi +Karroos +karseys +karsies +karstic +karters +karting +karzies +kasbahs +Kashmir +kashrus +kashrut +katanas +Katanga +kathaks +kathode +kations +katipos +katorga +Katrina +Katrine +katydid +Kaufman +kayaked +kayoing +Kazakhs +keasars +Keating +kebbies +kebbock +kebbuck +kebeles +kecking +keckled +keckles +keckses +keddahs +kedgers +kedging +keeches +keekers +keeking +keelage +keelers +keelies +keeling +keelman +keelmen +keelson +keeners +keenest +keening +keepers +keeping +keepnet +keffels +Keillor +keister +keitloa +kellaut +Kellogg +keloids +Kelpers +kelpies +kelsons +kelters +kelties +kelvins +kemboed +kempers +kemping +kemples +Kennedy +kennels +kenners +Kenneth +kenning +kenosis +kenotic +kenting +Kentish +Kenwood +Kenyans +kephirs +keramic +keratin +kerbing +kernels +kerning +kernish +kernite +kerogen +Kerouac +kerrias +kerving +kerygma +kestrel +Keswick +ketches +ketchup +ketenes +ketones +ketosis +kettles +Ketubah +keyhole +keyless +keyline +keynote +keypads +keyword +kgotlas +khaddar +Khadija +khalats +khalifa +khalifs +khamsin +khanate +khangas +khanjar +khanums +kharifs +Kharkov +Khartum +khediva +khedive +khilats +khilims +khodjas +khotbah +khotbeh +khurtas +khutbah +kiaughs +kibbled +kibbles +kibbutz +kibitka +kickers +kicking +kidders +kiddied +kiddier +kiddies +kidding +kiddles +kiddush +kidling +kidnaps +kidneys +kidults +kieries +kikumon +Kikuyus +Kildare +kilergs +killcow +killdee +killers +killick +killing +killjoy +killock +killuts +kilning +kilobar +kilobit +kiloton +kilties +kilting +Kilvert +Kimball +kimboed +kimonos +kinases +kinchin +kindest +kindies +kindled +kindler +kindles +kindred +kinemas +kineses +kinesis +kinetic +kinfolk +kingcup +kingdom +kinging +kinglet +kingpin +kinkier +kinkily +kinking +kinkles +kinless +Kinnock +kinship +kinsman +kinsmen +Kintyre +Kipling +kippage +kippers +kipping +kirbehs +kirghiz +kirimon +kirking +kirkman +kirkmen +Kirmans +kirmess +kirning +kirpans +kirtled +kirtles +kishkes +kismets +kissers +kissing +kisting +kitchen +kitenge +kithara +kithing +kitling +kitschy +kittens +kitteny +kitties +kitting +kittled +kittles +kittuls +klavier +klaxons +Kleenex +klephts +klezmer +klinker +klipdas +klootch +kludges +klutzes +knacker +knaidel +knapped +knapper +knapple +knarred +knavery +knavish +knawels +kneaded +kneader +kneecap +kneeing +kneeled +kneeler +kneepad +Kneipes +knelled +Knesset +knicker +knifing +knights +knishes +knitted +knitter +knittle +kniving +knobbed +knobber +knobble +knobbly +knocked +knocker +knolled +Knossos +knotted +knotter +knouted +knowers +knowing +knubble +knubbly +knuckle +knuckly +knurled +Knussen +kobangs +Koblenz +kobolds +kochias +Kodiaks +koftgar +kokanee +kolkhoz +komatik +Kommers +konfyts +konking +koodoos +kookier +kooking +koolahs +koories +kopecks +koppies +Koranic +Koreans +koreros +kororas +korunas +kotowed +kotwals +Kotytto +koulans +koumiss +kouprey +kowhais +Kowloon +kowtows +kraaled +krakens +kranses +kranzes +kraters +kreesed +kreeses +kremlin +kreuzer +Krilium +krimmer +Krishna +krising +krissed +krisses +kruller +krypsis +krypton +Krystal +Krystle +krytron +Kubelik +Kubrick +kuchcha +kufiyah +kumaras +k�mmels +kumquat +Kundera +kunkars +kunkurs +Kunming +kunzite +kurbash +Kurdish +kurgans +Kurhaus +kursaal +kutches +Kuwaiti +kvasses +kwachas +Kwangju +kyanise +kyanite +kyanize +kylices +kything diff --git a/com/agnibho/code/anagram/dictionary/K8.txt b/com/agnibho/code/anagram/dictionary/K8.txt new file mode 100644 index 0000000..9ee49da --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K8.txt @@ -0,0 +1,348 @@ +Kabbalah +kabeljou +Kabinett +kachahri +kacheris +kachinas +kaffiyeh +kagoules +kahawais +kailyard +kaimakam +kaiserin +kajawahs +kakemono +kakiemon +Kalahari +kalamdan +kalendar +Kalevala +kaleyard +kalinite +Kaliyuga +Kalmucks +kalpises +kalumpit +kalyptra +kamacite +kameeses +kameezes +kamerads +kamichis +kamikaze +kampongs +kamseens +Kanarese +Kandahar +kangaroo +kantelas +kanteles +kantikoy +kaoliang +kaolines +karakuls +karateka +Karennis +karosses +karstify +karyotin +kashmiri +kashruth +Kasparov +katakana +Kathleen +kathodes +Katmandu +Katowice +Kattegat +katydids +kavasses +Kawasaki +kayaking +kayoeing +kazatzka +kebbocks +kebbucks +keckling +kecksies +kedgeree +keelages +keelboat +keelhaul +keelings +keelsons +keenness +keepings +keepnets +keepsake +keepsaky +keeshond +keffiyeh +kefuffle +Keighley +keisters +keitloas +kellauts +keloidal +kemboing +kempings +Keneally +Kennelly +kennings +kenspeck +Kentucky +Kenyatta +kephalic +kephalin +keramics +keratoid +keratose +kerbside +kerchief +kermeses +kermesse +kermises +kernelly +kerosene +kerosine +kestrels +ketamine +ketchups +Ketubahs +keyboard +keybugle +keyholes +keylines +keynotes +keypunch +keystone +keywords +khalifah +khalifas +khalifat +khamsins +khanates +khanjars +khansama +Khartoum +khedival +khedivas +khedives +khilafat +Khoikhoi +khotbahs +khotbehs +khuskhus +khutbahs +kibbling +kibitkas +kibitzed +kibitzer +kibitzes +kiboshed +kiboshes +kickable +kickback +kickball +kickdown +kickshaw +kiddiers +kiddying +kidlings +kidology +kikumons +Kilkenny +killadar +killcows +killcrop +killdeer +killdees +killicks +killings +killjoys +killocks +killogie +kilobars +kilobits +kilobyte +kilogram +kilogray +kilotons +kilovolt +kilowatt +kimboing +Kinabalu +kinakina +kinchins +kindlers +kindless +kindlier +kindlily +kindling +kindness +kinesics +kinetics +kinfolks +kingcups +kingdoms +kingfish +kinghood +kingklip +kingless +kinglets +kinglier +kinglike +kingling +kingpins +kingpost +kingship +Kingsley +Kingston +kingwood +kinkajou +kinkiest +kinsfolk +Kinshasa +kinships +kippered +kipperer +Kirchner +Kiribati +kirimons +kirkings +kirktown +Kirkwall +kirkward +kirkyard +kirsches +Kishinev +kissable +kistvaen +kitchens +Kitemark +kitenges +kitharas +kitlings +kittened +kittling +Klansman +klaviers +klephtic +klinkers +Klondike +Klondyke +Klosters +klystron +knackers +knackery +knackish +knappers +knapping +knappled +knapples +knapsack +knapweed +knarring +kneaders +kneading +kneecaps +kneehole +kneelers +kneeling +kneepads +knelling +knickers +knifeman +knighted +knightly +knitches +knitters +knitting +knittles +knitwear +knobbers +knobbier +knobbled +knobbles +knockers +knocking +knockout +knolling +knothole +knotless +knotters +knottier +knotting +knotweed +knotwork +knouting +knowable +knubbled +knubbles +knuckled +knuckles +knurlier +knurling +Koestler +koftgari +koftgars +koftwork +kohlrabi +Kolarian +kolinsky +komatiks +komissar +komitaji +Komsomol +kookiest +Korchnoi +korfball +Korngold +kosmoses +kotowing +kottabos +koupreys +kourbash +kouskous +kowtowed +kraaling +Krakatoa +krameria +krantzes +kreasote +kreatine +kreesing +Kreisler +kremlins +kreosote +kreplach +kreutzer +kreuzers +krimmers +krissing +kromesky +krullers +krumhorn +kufiyahs +kumquats +Kurosawa +Kuroshio +kursaals +kurtosis +kurveyor +Kuwaitis +kvetched +kvetcher +kvetches +kwakiutl +Kweichow +kyanised +kyanises +kyanized +kyanizes +kyboshed +kyboshes +kymogram +kyphosis +kyphotic +kyrielle diff --git a/com/agnibho/code/anagram/dictionary/K9.txt b/com/agnibho/code/anagram/dictionary/K9.txt new file mode 100644 index 0000000..d491f2b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/K9.txt @@ -0,0 +1,253 @@ +kabeljous +kabeljouw +kachahris +Kaddishim +kaffiyehs +kailyards +kaimakams +Kainozoic +kaiserdom +kaiserism +kakemonos +Kalamazoo +kalamdans +kalamkari +Kalanchoe +kalendars +kaleyards +kallitype +kalsomine +kalumpits +kalyptras +Kamchatka +kameraded +kamikazes +Kampuchea +Kandinsky +kangaroos +kantikoys +Kaohsiung +kaoliangs +kaolinise +kaolinite +kaolinize +karabiner +Karamazov +karateist +Karlsruhe +karyogamy +karyology +karyosome +karyotype +Kashmiris +katabases +katabasis +katabatic +katabolic +katakanas +Kathakali +Katharina +Katharine +katharses +katharsis +Katherine +Kathmandu +Kauffmann +Kazakstan +kazatzkas +kedgerees +keelboats +keelhauls +keelivine +keepsakes +keeshonds +keffiyehs +kefuffled +kefuffles +Kelmscott +kennelled +kentledge +Keplerian +keratitis +keratoses +keratosis +kerbstone +kerchiefs +kerfuffle +kermesite +kermesses +kernelled +Kettering +kettleful +keyboards +keybugles +Keynesian +keystones +keystroke +khalifahs +khalifate +khalifats +khansamah +khansamas +khedivate +khedivial +khilafats +kibbutzim +kibitzers +kibitzing +kiboshing +kickbacks +kickdowns +kickshaws +kickstand +kiddushes +kiddywink +kidnapped +kidnapper +Kidsgrove +kidstakes +kieserite +kilderkin +killadars +Killarney +killcrops +killdeers +killifish +killingly +killogies +kilobytes +kilocycle +kilograms +kilograys +kilohertz +kilojoule +kilolitre +kilometer +kilometre +kilovolts +kilowatts +Kimberley +kindliest +kindlings +kinematic +kinescope +kinetical +kingdomed +kingklips +kingliest +kinglings +kingposts +kingships +Kingstown +kingwoods +kinkajous +kinkiness +kinsfolks +kinswoman +kinswomen +kintledge +kipperers +kippering +kirbigrip +Kirchhoff +Kirkcaldy +kirktowns +kirkyaird +kirkyards +kirmesses +Kisangani +kissagram +Kissinger +kissogram +kistvaens +kitchened +kitchener +Kitemarks +kitschily +kittening +kittenish +kittiwake +Kitzb�hel +Kleenexes +Klemperer +klendusic +klephtism +klezmorim +klinostat +Klinsmann +klipdases +Klondiked +klondiker +Klondikes +Klondyked +klondyker +Klondykes +kloochman +kloochmen +klystrons +knackered +knaidloch +knappling +knapsacks +knapweeds +knaveries +knaveship +knavishly +Knebworth +kneeholes +kneidlach +knickered +knifeless +knightage +knighting +Kniphofia +knobbiest +knobblier +knobbling +knockings +knockouts +knotgrass +knotholes +knottiest +knotweeds +knowingly +knowledge +Knoxville +knubbling +knuckling +knurliest +Knutsford +kohlrabis +kolkhozes +Kominform +Komintern +komissars +komitajis +konimeter +koniology +koniscope +kopasetic +kowtowing +kramerias +kreasoted +kreasotes +kreutzers +Kropotkin +krumhorns +krummhorn +kryometer +Kshatriya +Kunstlied +kurbashed +kurbashes +Kurdistan +kurrajong +kvetchers +kvetching +kwakiutls +kyanising +kyanizing +kyboshing +kymograms +kymograph +kyrielles diff --git a/com/agnibho/code/anagram/dictionary/L1.txt b/com/agnibho/code/anagram/dictionary/L1.txt new file mode 100644 index 0000000..1f9d725 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L1.txt @@ -0,0 +1 @@ +l diff --git a/com/agnibho/code/anagram/dictionary/L10.txt b/com/agnibho/code/anagram/dictionary/L10.txt new file mode 100644 index 0000000..918d321 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L10.txt @@ -0,0 +1,603 @@ +labialised +labialises +labialisms +labialized +labializes +labiovelar +laboratory +labourists +Labourites +laboursome +labyrinths +laccoliths +laccolitic +lacerating +laceration +lacerative +Lacertilia +lachrymals +lachrymary +lachrymose +laciniated +lackadaisy +lackluster +lacklustre +laconicism +lacquerers +lacquering +lacqueying +lacrimator +lacrymator +lactarians +lactations +lactescent +lactogenic +lactometer +lactoscope +lacustrine +ladieswear +ladyfinger +laeotropic +lageniform +lagerphone +lagniappes +lagomorphs +lairdships +lallations +L'Alouette +Lamarckian +Lamarckism +lamaserais +lamaseries +lambasting +lambdacism +lambdoidal +Lambeggers +lambencies +lambitives +lambrequin +Lambrettas +Lambruscos +lamellated +lamentable +lamentably +lamentings +laminarian +laminarise +laminarize +laminating +lamination +laminators +lamingtons +lampadists +lampholder +lamplights +lampooners +lampoonery +lampooning +lampoonist +lampshades +Lancashire +lancejacks +lanceolate +lancinated +lancinates +landammann +landammans +landaulets +landdroses +landdrosts +landgraves +landholder +landladies +landlopers +landmasses +landowners +landscaped +landscapes +landslides +Langerhans +langoustes +langridges +langspiels +languettes +languished +languisher +languishes +languorous +laniferous +lanigerous +lansquenet +lanterning +lanternist +lanthanide +lanuginose +lanuginous +lanzknecht +laparotomy +lapidarian +lapidaries +lapidarist +lapidating +lapidation +lapidified +lapidifies +Laplanders +Laplandish +lapstreaks +larcenists +lardaceous +larghettos +largitions +larvicidal +larvicides +laryngitic +laryngitis +lascivious +laserdiscs +laserdisks +laserworts +lassitudes +laterality +latescence +lathyruses +laticlaves +latifundia +Latinising +latinizing +latitation +latrations +lattermath +lattermost +latticinio +laudations +laughingly +Launceston +launderers +laundering +laundrette +Laundromat +laundryman +laundrymen +lauraceous +laurdalite +laureating +laureation +Laurentian +laurustine +laurvikite +lavalieres +lavalli�re +lavatorial +lavatories +lavendered +lavishment +lavishness +lawfulness +lawmongers +lawrencium +Lawrentian +laybacking +lazarettes +lazarettos +leadenness +leaderenes +leaderette +leaderless +leadership +leafleteer +leafleting +leafletted +leaguering +leasebacks +leaseholds +leastaways +leathering +leavenings +Leavisites +Lebensraum +lectionary +lectorates +lectorship +lectresses +lederhosen +leechcraft +leftwardly +legalising +legalistic +legalizing +legataries +legateship +legendists +legibility +legionella +legislated +legislates +legislator +legitimacy +legitimate +legitimise +legitimism +legitimist +legitimize +leguminous +legwarmers +Leibnizian +leiotrichy +leishmania +leistering +leisurable +leisurably +leitmotifs +leitmotivs +lekythoses +lemmatised +lemmatises +lemmatized +lemmatizes +lemniscate +Lemuroidea +lengthened +lengthiest +lengthsman +lengthways +lengthwise +lentamente +lenticular +lentigines +lentissimo +lentivirus +Leominster +leontiasis +leopardess +lepidolite +leprechaun +leproserie +leptosomes +leptosomic +Leptospira +lesbianism +lessonings +Letchworth +lethargied +lethargise +lethargize +letterhead +letterings +letterless +leuchaemia +leucoblast +leucocytes +leucocytic +leucoderma +leucopenia +leucoplast +leucotomes +leukocytes +Levantines +leveraging +Leverhulme +Leverkusen +leviathans +levigating +levigation +leviration +levitating +levitation +lexicology +lexigraphy +lherzolite +libecchios +libellants +liberalise +liberalism +liberalist +liberality +liberalize +liberating +liberation +liberators +liberatory +libertines +libidinist +libidinous +librairies +librarians +librations +librettist +Libreville +licensable +licensures +licentiate +licentious +lichanoses +lichenists +lieutenant +lifeguards +lifelessly +lifestyles +ligamental +ligaturing +lightbulbs +lightening +lighterage +lighterman +lightermen +lighthouse +lightproof +lightships +lignifying +lignocaine +likelihood +likeliness +likenesses +liliaceous +Lilienthal +limaciform +limacology +limburgite +limelights +limestones +limicolous +limitarian +limitation +limitative +limitrophe +Limnaeidae +limousines +limpidness +lincomycin +lineaments +lineations +linebacker +lingerings +linguiform +linguister +linguistic +linguistry +Lingulella +Linlithgow +lintstocks +lioncelles +Lipizzaner +lipochrome +lipography +lipomatous +lippitudes +Lippizaner +lipsticked +liquations +liquefiers +liquefying +liquescent +liquescing +liqueuring +liquidated +liquidates +liquidator +liquidised +liquidiser +liquidises +liquidized +liquidizer +liquidizes +liquidness +liquorices +lissomness +listenable +Listerised +Listerises +Listerized +Listerizes +listlessly +literalise +literalism +literalist +literality +literalize +literarily +literately +literation +literators +literature +literosity +Lithistida +lithistids +lithoclast +lithocysts +Lithodomus +lithoglyph +lithograph +litholatry +lithologic +lithomancy +lithomarge +lithophane +lithophysa +lithophyte +lithoprint +lithotomes +lithotomic +lithotrite +lithotrity +Lithuanian +litigating +litigation +litigators +littermate +littleness +Littlewood +liturgical +liturgists +livability +livelihead +livelihood +liveliness +liverworts +liverwurst +Livingston +lixiviated +lixiviates +Llangollen +loadmaster +loadstones +loanholder +loathingly +loathliest +loblollies +lobotomies +lobotomise +lobotomize +lobscourse +lobscouses +lobulation +localisers +localising +localities +localizers +localizing +locateable +lockhouses +locksmiths +lockstitch +locomobile +locomoting +locomotion +locomotive +locomotors +locomotory +loculament +Locustidae +locutories +lodestones +lodgements +lodgepoles +loganberry +logarithms +loggerhead +logicality +logicising +logicizing +logistical +logographs +logography +logogriphs +logopaedic +logopedics +logophiles +logorrhoea +logothetes +loiterings +Lollardism +Londonised +Londonises +Londonized +Londonizes +loneliness +lonesomely +longaevous +Longchamps +Longfellow +longicorns +longitudes +lookalikes +loopholing +looseboxes +looyenwork +lophophore +lopsidedly +loquacious +lordliness +lordolatry +lorgnettes +loricating +lorication +lossmakers +loudhailer +loudmouths +Louisville +loungingly +louseworts +lovelights +lovelihead +loveliness +loveworthy +lovingness +loweringly +lowlanders +loxodromes +loxodromic +lubricants +lubricated +lubricates +lubricator +lubricious +Lubumbashi +luciferase +Luciferian +luciferous +lucifugous +lucklessly +luctations +lucubrated +lucubrates +lucubrator +luculently +lugubrious +lukewarmly +lukewarmth +lullabying +lumberings +lumbersome +lumbricals +lumbricoid +luminaires +luminances +luminaries +luminarism +luminarist +lumination +luminesced +luminesces +luminosity +luminously +lumpectomy +lumpfishes +lumpsucker +lunarnauts +luncheoned +lunchrooms +lunchtimes +Lupercalia +lusciously +Lusitanian +Lusophiles +lusterless +lusterware +lustrating +lustration +lustreless +lustreware +lustrously +luteinised +luteinises +luteinized +luteinizes +lutestring +Luxembourg +luxuriance +luxuriancy +luxuriated +luxuriates +Lycaenidae +Lycopodium +lymphocyte +lymphogram +lymphokine +lyophilise +lyophilize +Lysenkoism +lysigenous +lysimeters +Lysistrata +Lythraceae diff --git a/com/agnibho/code/anagram/dictionary/L11.txt b/com/agnibho/code/anagram/dictionary/L11.txt new file mode 100644 index 0000000..0a918d4 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L11.txt @@ -0,0 +1,403 @@ +labefaction +labialising +labializing +labiodental +laboriously +labradorite +labyrinthal +labyrinthic +laccolithic +lacerations +lacertilian +lachrymator +laciniation +laconically +laconicisms +lacquerings +lacrimation +lacrimators +lacrimatory +lacrymators +lacrymatory +lactescence +lactiferous +lactifluous +lactoflavin +lactometers +lactoscopes +laddishness +ladyfingers +lagerphones +lagomorphic +laicisation +laicization +lalapalooza +lallygagged +lambrequins +lamellicorn +lamelliform +lamentation +lamentingly +laminarised +laminarises +laminarized +laminarizes +laminations +lammergeier +lammergeyer +lampadaries +lampholders +lamplighter +lampoonists +lamprophyre +Lanarkshire +Lancastrian +lanceolated +lancinating +lancination +landammanns +landaulette +landfilling +landgravate +landgravine +landholders +landholding +landlordism +landscaping +landscapist +landsknecht +langoustine +languescent +languidness +languishers +languishing +lansquenets +lanternists +lanthanides +lanzknechts +laparoscope +laparoscopy +lapidarists +lapidations +lapidescent +lapidifying +lapilliform +larcenously +larrikinism +larviparous +laryngismus +laryngology +laryngotomy +Laserpitium +lastingness +laterigrade +lateritious +latifundium +latirostral +latiseptate +latitudinal +latrocinium +laudability +laughworthy +launderette +laundresses +laundrettes +Laundromats +laureations +laurustinus +lavalli�res +lavendering +lavishments +lawlessness +leaderettes +leaderships +leafleteers +leafletting +leapfrogged +learnedness +leaseholder +leatherette +leatherings +leatherneck +lecherously +lectorships +lectureship +Leeuwenhoek +legateships +legatissimo +legendaries +legerdemain +legibleness +legionaries +legionnaire +legislating +legislation +legislative +legislators +legislature +legitimised +legitimises +legitimists +legitimized +legitimizes +leglessness +Leguminosae +Leibnitzian +leishmaniae +leishmanias +leisurewear +lemmatising +lemmatizing +lemniscates +lengthening +lengthiness +lentiginose +lentiginous +Leoncavallo +Lepidoptera +Lepidosiren +Lepidosteus +leprechauns +leprosarium +leproseries +leprosities +leptocercal +leptodactyl +leptorrhine +lethalities +lethargical +lethargised +lethargises +lethargized +lethargizes +lethiferous +letterboxed +letterboxes +letterheads +letterpress +leucaemogen +leucocratic +leucodermal +leucodermia +leucodermic +leucoplakia +leucoplasts +leucorrhoea +leucotomies +leviratical +levitations +levitically +lexigraphic +liabilities +libellously +liberalised +liberalises +liberalists +liberalized +liberalizes +liberalness +liberations +libertarian +liberticide +libertinage +libertinism +libidinists +librational +librettists +licentiates +lichenology +lickerishly +lickpennies +lickspittle +Liebestraum +lieutenancy +lieutenants +lifeboatman +lifeboatmen +lifemanship +ligamentary +ligamentous +lightenings +lighterages +lighthouses +lightkeeper +lightsomely +lightweight +lignivorous +likableness +likelihoods +lilliputian +limelighted +limitarians +limitations +limitedness +limitlessly +limnologist +Lindisfarne +linearities +linebackers +lingeringly +linguistics +lionisation +lionization +lipectomies +Lipizzaners +lipomatosis +lipoprotein +liposuction +Lippizaners +Lippizzaner +lipsticking +liquefiable +liquescence +liquescency +Liquidambar +liquidating +liquidation +liquidators +liquidisers +liquidising +liquidities +liquidizers +liquidizing +lissomeness +listeriosis +Listerising +Listerizing +literalised +literaliser +literalises +literalists +literalized +literalizer +literalizes +literalness +literaryism +literatures +lithochromy +lithoclasts +lithodomous +lithogenous +lithoglyphs +lithographs +lithography +litholapaxy +lithologist +lithophysae +lithophytes +lithophytic +lithoprints +lithosphere +lithotomies +lithotomist +lithotomous +lithotripsy +lithotrites +lithotritic +lithotritor +Lithuanians +litigiously +litt�rateur +littermates +littleworth +liveability +livelihoods +liverwursts +Livingstone +lixiviating +lixiviation +loadmasters +loadsamoney +loanholders +loathedness +loathliness +loathsomely +lobectomies +Lobeliaceae +lobotomised +lobotomises +lobotomized +lobotomizes +locomobiles +locomotions +locomotives +loculaments +loculicidal +locutionary +Loganiaceae +logarithmic +loggerheads +logicalness +logistician +logodaedaly +logographer +logographic +logomachist +logopaedics +loiteringly +Loliginidae +lollygagged +Londonderry +Londonising +Londonizing +longanimity +longanimous +longevities +longinquity +longwearing +lophobranch +Lossiemouth +loudhailers +loudspeaker +loutishness +lovableness +loxodromics +Lubavitcher +lubricating +lubrication +lubricative +lubricators +lubritorium +luckengowan +lucratively +lucubrating +lucubration +lucubrators +ludicrously +lukewarmish +lumbaginous +lumbricalis +Lumbricidae +lumbricuses +luminarists +luminescent +luminescing +lumpishness +lumpsuckers +luncheoning +Lupercalian +lustfulness +lustrations +luteinising +luteinizing +lutestrings +Lutheranism +Lutoslawski +luxulianite +luxulyanite +luxuriantly +luxuriating +luxuriation +luxuriously +lycanthrope +lycanthropy +lychnoscope +Lycopodinae +lymphangial +lymphocytes +lymphograms +lyophilised +lyophilises +lyophilized +lyophilizes +lythraceous diff --git a/com/agnibho/code/anagram/dictionary/L12.txt b/com/agnibho/code/anagram/dictionary/L12.txt new file mode 100644 index 0000000..ab7311e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L12.txt @@ -0,0 +1,230 @@ +Labanotation +labefactions +labiodentals +laboratories +labyrinthian +labyrinthine +lachrymaries +lachrymation +lachrymators +lachrymatory +lachrymosely +lachrymosity +lackadaisies +lactobacilli +lactoprotein +lagomorphous +lallapalooza +lallygagging +lamellicorns +lamentations +laminarising +laminarizing +lammergeiers +lammergeyers +lampadedromy +lampadomancy +lamplighters +lampooneries +lamprophyric +Lancasterian +lanceolately +landaulettes +landgraviate +landgravines +landscapists +landsknechts +langoustines +languageless +Languedocian +languishings +languishment +languorously +Laodiceanism +laparoscopes +laparotomies +lapidicolous +laryngectomy +laryngophony +laryngoscope +laryngoscopy +laryngospasm +lasciviously +laterisation +laterization +laticiferous +latirostrate +latitudinous +laudableness +launderettes +laundrywoman +laundrywomen +laureateship +laxativeness +leapfrogging +learnability +leaseholders +leathergoods +leathernecks +lectionaries +lectureships +legalisation +legalization +legionnaires +legislations +legislatress +legislatures +legitimately +legitimation +legitimatise +legitimatize +legitimising +legitimizing +leiotrichous +lenticellate +lenticularly +lentiviruses +leopardesses +lepidomelane +leprosariums +leptodactyls +leptosomatic +lethargising +lethargizing +leucaemogens +leucocytosis +leucoplastid +leucopoiesis +levorotatory +lexicography +lexicologist +liberalising +liberalistic +liberalities +liberalizing +libertarians +liberticidal +liberticides +libidinosity +libidinously +licentiously +Lichtenstein +lickspittles +lieutenantry +lifelessness +lightkeepers +lightweights +ligniperdous +Liguliflorae +ligulifloral +Lillibullero +Lilliburlero +Lilliputians +limacologist +limnological +limnologists +limnophilous +Lincolnshire +linguistical +lipoproteins +Lippizzaners +liquefacient +liquefaction +liquidations +liriodendron +listenership +listlessness +literalisers +literalising +literalistic +literalizers +literalizing +literariness +lithographed +lithographer +lithographic +litholatrous +lithological +lithologists +lithophagous +lithophilous +Lithospermum +lithospheric +lithotomical +lithotomists +lithotripter +lithotriptor +lithotritics +lithotrities +lithotritise +lithotritist +lithotritize +lithotritors +litt�rateurs +liturgically +liturgiology +Liverpudlian +lixiviations +loansharking +loathfulness +lobotomising +lobotomizing +localisation +localization +lockstitches +locomobility +locomotivity +loganberries +loggerheaded +logistically +logisticians +logodaedalic +logodaedalus +logographers +logomachists +lollapalooza +lollygagging +lomentaceous +lonesomeness +longicaudate +longipennate +longitudinal +longshoreman +longshoremen +lophobranchs +lopsidedness +loquaciously +loudspeakers +Loughborough +loveableness +lovelornness +loxodromical +lubrications +luckengowans +lucklessness +lucubrations +Ludwigshafen +lugubriously +lukewarmness +lumberjacket +lumbriciform +luminescence +luminiferous +luminosities +luminousness +lumpectomies +luncheonette +lusciousness +Luxembourger +luxullianite +luxuriations +lycanthropes +lycanthropic +lychnoscopes +Lycopodiales +Lycopodineae +Lymantriidae +lymphangitis +lymphography +lyophilising +lyophilizing diff --git a/com/agnibho/code/anagram/dictionary/L13.txt b/com/agnibho/code/anagram/dictionary/L13.txt new file mode 100644 index 0000000..589aa98 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L13.txt @@ -0,0 +1,116 @@ +labefactation +labialisation +labialization +laboriousness +labyrinthical +labyrinthitis +lachrymations +lackadaisical +lacrimatories +lacrymatories +lactobacillus +lactoproteins +laevorotation +laevorotatory +Lamarckianism +lamellibranch +Lamellicornia +lampadephoria +landgraviates +landownership +languishingly +laryngectomee +laryngologist +laryngoscopes +laryngoscopic +laryngospasms +laryngotomies +Lasiocampidae +laughableness +laurustinuses +lecherousness +lectisternium +Lecythidaceae +legalisations +legalizations +legislatively +legislatorial +legitimations +legitimatised +legitimatises +legitimatized +legitimatizes +Leibnizianism +leishmaniases +leishmaniasis +leishmanioses +leishmaniosis +leisureliness +Lepidodendron +lepidopterist +lepidopterous +Lepidostrobus +leptocephalic +leptocephalus +leptophyllous +leptospirosis +lethargically +letterpresses +leucaemogenic +leucitohedron +leucoplastids +lexicographer +lexicographic +lexicologists +lexigraphical +liberationism +liberationist +librarianship +lichenologist +lickerishness +Liebfraumilch +Liechtenstein +lieutenancies +lighthouseman +lighthousemen +lightsomeness +lignification +limacologists +limitlessness +linguistician +lipogrammatic +liquefacients +liriodendrons +lissotrichous +lithesomeness +lithographers +lithographing +lithontriptic +lithontriptor +lithotripters +lithotriptors +lithotritised +lithotritises +lithotritists +lithotritized +lithotritizes +litigiousness +Liverpudlians +loathsomeness +localisations +localizations +logarithmical +logographical +lucrativeness +ludicrousness +lumberjackets +lumbricalises +luncheonettes +luteinisation +luteinization +Luxembourgers +luxuriousness +lycanthropist +Lycopodiaceae +lymphatically +lymphotrophic diff --git a/com/agnibho/code/anagram/dictionary/L14.txt b/com/agnibho/code/anagram/dictionary/L14.txt new file mode 100644 index 0000000..30ee506 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L14.txt @@ -0,0 +1,71 @@ +labefactations +labyrinthodont +lachrymatories +laevorotations +lamellibranchs +lamellirostral +lampadedromies +languorousness +lapidification +laryngectomies +laryngological +laryngologists +laryngoscopies +laryngoscopist +lasciviousness +lateralisation +lateralization +latitudinarian +lectisterniums +lecythidaceous +legalistically +legislatorship +legislatresses +legitimateness +legitimatising +legitimatizing +legitimisation +legitimization +Leibnitzianism +Leicestershire +lepidodendroid +lepidopterists +leptodactylous +leucitohedrons +leucocythaemia +leucocytolysis +leucocytopenia +lexicographers +lexicographist +liberalisation +liberalization +liberationists +libertarianism +libidinousness +licentiousness +lichenologists +lieutenantship +lignocellulose +linguistically +linguisticians +lipogrammatism +lipogrammatist +lithochromatic +lithographical +lithontriptics +lithontriptist +lithontriptors +lithotritising +lithotritizing +liturgiologist +logodaedaluses +longitudinally +loquaciousness +lugubriousness +lumbersomeness +luteinisations +luteinizations +lycanthropists +lymphangiogram +lyophilisation +lyophilization diff --git a/com/agnibho/code/anagram/dictionary/L15.txt b/com/agnibho/code/anagram/dictionary/L15.txt new file mode 100644 index 0000000..fd881db --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L15.txt @@ -0,0 +1,25 @@ +labyrinthodonts +lackadaisically +lactovegetarian +lamellirostrate +laryngoscopists +latitudinarians +legislatorships +lepidodendroids +lepidopterology +leptocephaluses +lexicographical +lexicographists +liberalisations +liberalizations +lieutenantships +lipogrammatists +lissencephalous +lithochromatics +lithontriptists +liturgiologists +logarithmically +logographically +lophobranchiate +lymphadenopathy +lymphangiograms diff --git a/com/agnibho/code/anagram/dictionary/L16.txt b/com/agnibho/code/anagram/dictionary/L16.txt new file mode 100644 index 0000000..e0c88aa --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L16.txt @@ -0,0 +1,7 @@ +Lentibulariaceae +Lepidodendraceae +leptosporangiate +lighthousekeeper +literalistically +lithographically +lymphangiography diff --git a/com/agnibho/code/anagram/dictionary/L17.txt b/com/agnibho/code/anagram/dictionary/L17.txt new file mode 100644 index 0000000..b52a31d --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L17.txt @@ -0,0 +1,4 @@ +lackadaisicalness +Lamellibranchiata +lamellibranchiate +latitudinarianism diff --git a/com/agnibho/code/anagram/dictionary/L18.txt b/com/agnibho/code/anagram/dictionary/L18.txt new file mode 100644 index 0000000..24ba182 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L18.txt @@ -0,0 +1 @@ +lupuserythematosus diff --git a/com/agnibho/code/anagram/dictionary/L2.txt b/com/agnibho/code/anagram/dictionary/L2.txt new file mode 100644 index 0000000..c7131fc --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L2.txt @@ -0,0 +1,3 @@ +la +li +lo diff --git a/com/agnibho/code/anagram/dictionary/L3.txt b/com/agnibho/code/anagram/dictionary/L3.txt new file mode 100644 index 0000000..599d740 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L3.txt @@ -0,0 +1,63 @@ +lab +lac +lad +lag +lah +Lal +lam +Lao +lap +lar +las +lat +lav +law +lax +lay +lea +led +lee +leg +lei +lek +lem +Leo +lep +Les +let +leu +lev +lew +lex +ley +lib +lid +lie +lig +lin +lip +lis +lit +Liv +Liz +lob +log +loo +lop +lor +los +lot +Lou +low +lox +loy +lud +lug +lum +Luo +lur +luv +lux +luz +lye +lym diff --git a/com/agnibho/code/anagram/dictionary/L4.txt b/com/agnibho/code/anagram/dictionary/L4.txt new file mode 100644 index 0000000..b2a53a8 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L4.txt @@ -0,0 +1,278 @@ +labs +lace +lack +lacs +lacy +lade +lads +lady +laer +lags +lahs +laic +laid +laik +lain +lair +lake +lakh +laky +Lalo +lama +lamb +lame +lamp +lams +lana +land +lane +lang +lank +lant +lanx +Laos +Lapp +laps +Lara +lard +lare +lark +larn +lase +lash +lass +last +late +lath +lats +laud +lauf +lava +lave +lavs +lawk +lawn +laws +lays +laze +lazy +lead +leaf +Leah +leak +leal +leam +lean +leap +lear +leas +leat +lech +Leda +leed +leek +leep +leer +lees +leet +left +Lego +legs +lehr +leir +leis +leks +Lely +leme +len' +Lena +lend +leng +leno +lens +lent +Leon +leps +lere +lerp +less +lest +Leto +lets +Lett +leva +leve +Levi +levy +lewd +leys +Liam +liar +Lias +libs +lice +lich +lick +Lide +lido +lids +lied +lief +lien +lier +lies +lieu +life +lift +ligs +like +lill +Lilo +lilt +lily +lima +limb +lime +limn +limo +limp +limy +lind +line +ling +link +linn +lino +lins +lint +liny +Linz +lion +lips +lira +lire +lirk +Lisa +Lise +lisk +lisp +list +lite +lith +live +Livy +Liza +load +loaf +loam +loan +lobe +lobi +lobo +lobs +loch +loci +lock +loco +lode +Lodz +loft +loge +logo +logs +logy +loid +loin +loir +Lois +loke +Loki +Lola +loll +loma +lome +Lomu +lone +long +loof +look +loom +loon +loop +loor +loos +loot +lope +lops +lord +lore +lorn +lors +lory +lose +losh +loss +lost +lota +lote +loth +loti +loto +lots +loud +loup +lour +lout +love +lowe +lown +lows +loys +Lozi +luau +Luba +lube +luce +luck +Lucy +L�da +ludo +luds +lues +luff +luge +lugs +luke +lull +lulu +lump +lums +luna +Lund +lune +lung +lunt +Luos +lure +lurk +lurs +lush +lusk +lust +lute +lutz +luvs +luxe +Lviv +Lvov +Lw�w +lyam +lyes +Lyly +lyme +Lynn +lynx +Lyon +Lyra +lyre +lyse diff --git a/com/agnibho/code/anagram/dictionary/L5.txt b/com/agnibho/code/anagram/dictionary/L5.txt new file mode 100644 index 0000000..5fde924 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L5.txt @@ -0,0 +1,513 @@ +labda +label +labia +labis +labor +labra +laced +laces +lacet +lacey +lacks +laded +laden +lades +Ladin +ladle +lagan +lager +Lagos +lahar +Lahti +laigh +laika +laiks +Laing +laird +lairs +lairy +laith +laity +laked +laker +lakes +lakhs +lakin +laldy +Lalla +Lally +lamas +lambs +lamed +lamer +lames +lamia +lammy +lamps +lanai +lance +lanch +lande +lands +lanes +lanky +lants +Laois +lapel +lapis +lapse +larch +lards +lardy +lares +large +largo +larks +larky +larns +Larry +larum +Larus +larva +lased +laser +lases +Laski +Lassa +lassi +lasso +lassu +lasts +latch +lated +laten +later +latex +lathe +lathi +laths +lathy +Latin +latke +latte +Lauda +lauds +laufs +laugh +laund +laura +lavas +laved +laver +laves +lavra +lawed +lawin +lawks +lawns +lawny +laxer +laxly +layer +Layla +lazar +lazed +lazes +Lazio +lazzi +lazzo +leach +leads +leady +leafs +leafy +leaks +leaky +leams +leans +leant +leany +leaps +leapt +learn +lears +leary +lease +leash +least +leats +leave +leavy +ledge +ledgy +ledum +leech +Leeds +leeks +leeps +leers +leery +leese +leets +lefte +lefts +lefty +legal +leger +legge +leggy +legit +Lehar +lehrs +Leigh +Leila +leirs +Leith +leman +lemed +lemel +lemes +lemma +Lemna +lemon +lemur +Lendl +lends +lenes +Lenin +lenis +Lenny +lenos +lenti +lento +Lenya +Leona +leone +leper +lepid +lepra +lepta +Lepus +lered +leres +Lerna +Lerne +Leroy +L�svo +letch +Lethe +Letts +Letty +leuch +levee +level +Leven +lever +levin +Levis +Lewes +lewis +lexis +Lhasa +liana +liane +liang +liard +liars +Libby +libel +liber +libra +Libya +lichi +licht +licit +licks +lidos +liefs +liege +liens +liers +lieus +lieve +lifer +lifts +ligan +liger +light +ligne +liked +liken +liker +likes +likin +lilac +Lille +lills +Lilos +lilts +limas +limax +Limbi +limbo +limbs +limed +limen +limes +limey +limit +limma +limns +limos +limps +linac +linch +Linda +linds +Lindy +lined +linen +liner +lines +liney +linga +lingo +lings +lingy +linin +links +linns +linos +lints +linty +Linus +lions +lipid +Lippi +lippy +liras +lirks +lisle +lisps +lists +Liszt +liter +lites +lithe +litho +liths +litre +lived +liven +liver +lives +Livia +livid +livor +livre +Lizzy +llama +llano +Lloyd +loach +loads +loafs +loams +loamy +loans +loath +loave +lobar +lobby +lobed +lobes +lobos +lobus +local +lochs +Locke +locks +locos +locum +locus +loden +lodes +lodge +loess +Loewe +lofts +lofty +logan +loges +logia +logic +logie +logos +loids +loins +loipe +Loire +loirs +lokes +lolls +lolly +lolog +lomas +loner +longa +longe +longs +looby +looed +loofa +loofs +looks +looms +loons +loony +loops +loopy +loord +loose +loots +loped +loper +lopes +loral +loran +Lorca +lords +lordy +lorel +Loren +lores +loric +loris +Lorna +Lorre +lorry +losel +loser +loses +Losey +lossy +lotah +lotas +lotes +lotic +lotos +lotto +lotus +lough +Louie +louis +loupe +loups +loure +lours +loury +louse +lousy +Louth +louts +lovat +loved +lover +loves +lovey +lowan +lowed +lower +lowes +lowly +lownd +lowns +Lowry +lowse +loxes +loyal +luaus +lubes +lubra +Lucan +Lucas +Lucca +luces +Lucia +lucid +lucks +lucky +lucre +ludic +ludos +luffa +luffs +luged +Luger +luges +Luigi +Luing +lulls +Lully +lulus +lumen +lumme +lummy +lumps +lumpy +lunar +lunas +lunch +Lundy +lunes +lunge +lungi +lungs +lunts +lupin +lupus +lurch +lured +lures +Lurex +Lurgi +lurgy +lurid +Lurie +lurks +lurry +lushy +lusts +lusty +luted +luter +lutes +Luton +luvvy +luxes +Luxor +Luzon +lyams +lyart +lyc�e +Lycia +Lycra +Lydia +lying +lymes +lymph +Lynam +lynch +Lynda +Lynne +Lyons +lyres +lyric +lysed +lyses +lysin +lysis +lysol +lyssa +lythe +lytta diff --git a/com/agnibho/code/anagram/dictionary/L58.txt b/com/agnibho/code/anagram/dictionary/L58.txt new file mode 100644 index 0000000..110904e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L58.txt @@ -0,0 +1 @@ +Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch diff --git a/com/agnibho/code/anagram/dictionary/L6.txt b/com/agnibho/code/anagram/dictionary/L6.txt new file mode 100644 index 0000000..d504027 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L6.txt @@ -0,0 +1,747 @@ +laager +labdas +labels +labial +labile +labium +lablab +labors +labour +labret +labrid +labrum +Labrus +labrys +lacets +laches +Lachie +lacier +lacing +lacked +lacker +lackey +Laclos +lacmus +lactic +lacuna +ladder +laddie +ladies +ladify +lading +Ladino +ladled +ladles +ladyfy +lagans +lagena +lagers +lagged +laggen +lagger +laggin +lagoon +lagune +lahars +Lahore +laical +laidly +laighs +laikas +laiked +lairds +laired +laisse +lakers +lakier +laking +lakish +Lakota +Lalage +lalang +Lalita +lallan +Lallie +lambda +lambed +lamber +lambie +lamely +lament +lamest +lamias +lamina +laming +lamish +Lammas +lammed +lammer +lammie +lampad +lampas +lamped +lanais +Lanark +lanate +lanced +lancer +lances +lancet +landau +landed +lander +Landes +Landor +Langer +langue +langur +lanker +lankly +lanner +lanose +lanugo +lapdog +lapels +lapful +Lapith +lapped +lapper +lappet +lappie +lapsed +lapses +lapsus +laptop +Laputa +larded +larder +lardon +largen +larger +larges +largos +lariat +larine +larked +larker +Larkin +larnax +larned +laroid +larrup +larums +larvae +larval +larynx +lascar +lasers +lashed +lasher +lashes +lasing +lasket +lasque +lasses +lassie +lassos +lassus +lasted +laster +lastly +lateen +lately +latens +latent +latest +lathed +lathee +lathen +lather +lathes +lathis +Latian +Latina +latino +Latins +latish +Latium +latkes +Latour +latria +latron +latten +latter +Latvia +lauded +lauder +laughs +laughy +launce +launch +lauras +laurel +Lauren +Laurie +Laurus +lavabo +lavage +laveer +lavers +laving +lavish +lavras +lawful +lawing +lawins +lawman +lawmen +Lawrie +Lawson +lawyer +laxest +laxism +laxist +laxity +layers +laying +layman +laymen +lazars +lazier +lazily +lazing +lazuli +leachy +leaded +leaden +leader +leafed +league +leaked +leaker +Leakey +leally +lealty +leamed +leaned +leaner +leanly +Leanne +leaped +leaper +learns +learnt +leased +leaser +leases +leasow +leasts +leaved +leaven +leaver +leaves +Leavis +lebbek +Lebrun +leched +lecher +leches +lechwe +lectin +lector +ledger +ledges +ledums +leeped +leered +leetle +leeway +leftie +legacy +legate +legato +legend +legged +legger +legion +legist +leglen +leglet +legume +Leiden +leiger +leipoa +leired +lekked +leming +lemmas +Lemmon +Lemnos +lemons +lemony +Lemuel +lemurs +lender +lenger +length +lenify +lenity +Lennon +Lennox +lenses +lenten +lentic +lentil +lentor +lentos +lenvoy +leones +Leonid +L�onie +Lepcha +lepers +lepped +leptin +lepton +lering +Lerner +lesbic +Lesbos +lesion +Lesley +Leslie +lessee +lessen +lesser +lesson +lessor +Lester +lethal +letted +letter +Lettic +Lettie +lettre +leucin +levant +leveed +levees +levels +levers +levied +levies +levins +levite +levity +lewder +lewdly +lexeme +Leyden +liable +liaise +lianas +lianes +liangs +Lianne +liards +libant +libate +libbed +libber +libels +libero +libers +libido +libken +librae +Libran +Libyan +lichee +lichen +lichis +lichts +licked +licker +lictor +lidded +Liebig +lieder +liefer +lieger +lieges +lienal +lierne +liever +lifers +Liffey +lifted +lifter +ligand +ligans +ligase +ligate +ligers +Ligeti +ligged +ligger +lights +lignes +lignin +lignum +ligula +ligule +ligure +likely +likens +likers +liking +likins +lilacs +Lilian +Lilias +lilied +lilies +Lilith +Lilium +Lillee +lilted +limail +limbed +limber +limbic +limbos +Limbus +limens +limeys +limier +liming +limits +limmas +limmer +limned +limner +limous +limped +limper +limpet +limpid +limply +linacs +linage +linden +lineal +linear +linens +liners +lingam +lingas +lingel +linger +lingot +lingua +linhay +lining +linked +linker +linnet +linsey +lintel +linter +lintie +lionel +lionet +lionly +lipase +lipide +lipids +Lipman +lipoid +lipoma +lipped +lippen +lippie +liquid +liquor +lirked +Lisboa +Lisbon +lisles +lisped +lisper +lisses +lissom +listed +listel +listen +lister +litany +litchi +lither +lithia +lithic +lithos +litmus +litres +litten +litter +little +lituus +lively +livens +livers +livery +living +livres +lizard +Lizzie +llamas +llanos +loaded +loaden +loader +loafed +loafer +loamed +loaned +loaner +loathe +loathy +loaved +loaves +lobate +lobbed +lobing +lobose +lobule +lobuli +locale +locals +locate +lochan +lochia +locked +locker +locket +locoed +locoes +locule +loculi +locums +locust +lodens +lodged +lodger +lodges +lofted +lofter +logans +loggat +logged +logger +loggia +loggie +logics +logion +loglog +loided +loipen +Loiret +loiter +Loligo +Lolita +Lolium +lolled +loller +lollop +lologs +loment +Lomond +London +lonely +loners +longan +longas +longed +longer +longes +Longhi +longly +loofah +loofas +looing +looked +looker +loomed +loonie +looped +looper +loords +loosed +loosen +looser +looses +looted +looten +looter +looves +lopers +loping +lopped +lopper +loquat +lorans +lorate +Lorc�n +lorcha +lorded +lordly +lorels +Lorenz +lorica +lories +loring +loriot +losels +losers +loshes +losing +losses +los'te +lotahs +lotion +lotted +Lottie +lottos +louche +louden +louder +loudly +loughs +Louisa +Louise +lounge +louped +loupen +loupes +loured +loures +loused +louses +louted +louver +louvre +lovage +lovats +Lovell +lovely +lovers +loveys +loving +lowans +lowboy +Lowell +lowers +lowery +lowest +lowing +lownds +lowsed +lowses +Loz�re +Luanda +lubber +L�beck +Lublin +lubras +lubric +lucent +lucern +Lucina +Lucite +Lucius +lucken +luckie +lucuma +lucumo +Ludlow +Ludwig +luetic +luffas +luffed +Lugano +lugged +lugger +luggie +luging +Lugosi +Luk�cs +lulled +lumbar +lumber +lumens +lumina +lumine +lummes +lummox +lumped +lumpen +lumper +lunacy +lunars +lunary +lunate +lunged +lunges +lungie +lungis +lunker +lunted +lunula +lunule +lupine +lupins +luppen +lurdan +luring +lurked +lurker +Lusaka +lushed +lusher +lushes +lushly +Lusiad +lusted +luster +lustra +lustre +luteal +lutein +luters +Luther +luting +lutist +lutzes +luvvie +luxate +luxury +Luzula +luzzes +lyc�es +lyceum +lychee +Lycosa +Lydian +lyings +lymphs +lynxes +lyrate +lyrics +lyrism +lyrist +lysine +lysing +lysins +lythes +lyttas +Lytton diff --git a/com/agnibho/code/anagram/dictionary/L7.txt b/com/agnibho/code/anagram/dictionary/L7.txt new file mode 100644 index 0000000..caa4378 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L7.txt @@ -0,0 +1,959 @@ +laagers +labarum +labella +labials +labiate +labises +lablabs +labored +laborer +labours +labrets +labroid +labrose +Lacerta +Lachlan +laciest +lacings +lacinia +lackers +lackeys +lacking +Laconia +laconic +lacquer +lacquey +lactase +lactate +lacteal +lactone +lactose +Lactuca +lacunae +lacunal +lacunar +lacunas +ladanum +ladders +laddery +laddies +laddish +ladette +ladings +Ladinos +ladling +ladrone +ladybug +ladycow +ladyfly +ladyish +ladyism +ladykin +Laertes +laetare +laggard +laggens +laggers +lagging +laggins +lagoons +Lagting +lagunes +laicise +laicity +laicize +laiking +lairage +lairier +lairing +lairise +lairize +laisses +laities +lakelet +lakiest +Lakotas +Lakshmi +lalangs +laldies +Lalique +lallans +lalling +Lamaism +Lamaist +Lamarck +lambada +lambast +lambdas +lambent +lambers +lambert +Lambeth +lambies +lambing +lambkin +lamboys +lamella +laments +lameter +lamiger +laminae +laminar +lamiter +lammers +lammies +lamming +lampads +lampern +lampers +lamping +lampion +lamplit +lampoon +lamprey +lampuka +lampuki +lancers +lancets +lanched +lanches +lancing +landaus +landers +landing +l�ndler +landman +landmen +Landtag +laneway +langaha +Langley +langrel +Langton +Langtry +langued +langues +languet +languid +languor +langurs +laniard +laniary +lankest +lankier +lankily +lanners +lanolin +Lansing +lantana +lantern +lanugos +lanyard +Lanzhou +Laocoon +Laotian +lapdogs +lapfuls +lapheld +lapilli +lapiths +Laplace +Lapland +lappers +lappets +lappies +lapping +Lappish +lapsang +lapsing +laptops +Laputan +lapwing +lapwork +Laraine +Laramie +larceny +larchen +larches +larders +lardier +larding +lardons +lardoon +largely +largens +largess +largest +largish +lariats +Laridae +Larissa +larkers +larkier +larking +larkish +larmier +larning +larrups +larvate +Larwood +lasagna +lasagne +lascars +Lascaux +lashers +lashing +lashkar +laskets +lasques +lassies +lassock +lassoed +lassoes +lastage +lasters +lasting +Latakia +latched +latches +latchet +latence +latency +latened +lateral +Lateran +latexes +lathees +lathers +lathery +lathier +lathing +latices +Latimer +Latinas +Latiner +latinos +latitat +latrant +latrine +latrons +lattens +lattice +Latvian +lauders +lauding +laughed +laugher +launces +launder +laundry +laurels +Lautrec +lauwine +lavabos +lavages +laveers +Lavinia +lavolta +lawings +lawkses +lawless +lawsuit +lawyers +laxator +laxists +laxness +layaway +layback +layered +layette +layings +layover +lazaret +Lazarus +laziest +leached +leaches +Leacock +leadens +leaders +leadier +leading +leafage +leafbud +leafery +leafier +leafing +leaflet +leagued +leaguer +leagues +leakage +leakers +leakier +leaking +leaming +Leander +leanest +leaning +leapers +leaping +learier +Learjet +learned +learner +leasers +leashed +leashes +leasing +leasowe +leasows +leasure +leather +leavens +leavers +leavier +leaving +Lebanon +lebbeks +Leblanc +lechers +lechery +leching +lechwes +lectern +lection +lectors +lecture +lecturn +ledgers +ledgier +leeched +leechee +leeches +leeping +leerier +leering +leeward +leeways +lefties +leftish +leftism +leftist +legally +legatee +legates +legator +legatos +legends +leggers +leggier +legging +leghorn +legible +legibly +legions +legists +legitim +leglens +legless +leglets +legroom +legumes +legumin +legwear +legwork +Lehmann +Leibniz +leipoas +Leipzig +leiring +leisler +leister +leisure +Leitrim +lekking +lemmata +lemming +Lemnian +lemoned +lempira +lemures +Lemuria +lenders +lending +lengest +lengths +lengthy +lenient +lensman +lensmen +lentigo +lentils +lentisk +lentoid +lentous +lenvoys +Leonard +Leonids +leonine +Leonora +leopard +Leopold +leotard +Lepanto +Lepchas +Lepidus +Leppard +lepping +leprose +leprosy +leprous +leptome +leptons +lernean +Lerwick +lesbian +lesions +Lesotho +lessees +lessens +Lessing +lessons +lessors +letched +letches +lethean +lethied +Letitia +lettern +letters +letting +Lettish +lettres +lettuce +leucine +leucite +leucoma +levants +levator +leveled +leveler +levelly +levered +leveret +levites +levitic +levying +lewdest +lewises +Lewisia +lexemes +lexical +lexicon +Leyland +liaised +liaises +liaison +lianoid +Liassic +libated +libates +libbard +libbers +libbing +libeled +libeler +liberal +Liberia +liberos +liberty +libidos +libkens +Librans +library +librate +Librium +Libyans +licence +license +lichees +lichens +lichted +lichtly +licitly +lickers +licking +lictors +Liddell +lidless +liefest +liernes +lievest +lifeful +Lifford +liftboy +lifters +lifting +liftman +liftmen +ligands +ligated +ligates +liggers +ligging +lighted +lighten +lighter +lightly +lignify +lignite +lignose +ligroin +ligular +ligulas +ligules +ligures +Liguria +likable +likened +likings +Lillian +Lillias +lilting +limacel +limaces +lima�on +limbate +limbeck +limbers +limbing +limbous +Limburg +limeade +limelit +limiest +liminal +limings +limited +limiter +limites +limmers +Limnaea +limners +limning +Limoges +limosis +limpest +limpets +limping +limpkin +Limpopo +limulus +Linacre +linages +linches +linchet +Lincoln +linctus +lindane +lindens +Lindsay +Lindsey +lineage +lineate +Lineker +lineman +linemen +Linette +Linford +lingams +lingels +lingers +lingier +lingoes +lingots +lingual +linguas +lingula +linhays +linings +linkage +linkboy +linkers +linking +linkman +linkmen +Linnean +linnets +linocut +linsang +linseed +lintels +linters +lintier +linties +lioncel +lionels +lioness +lionets +lionise +lionism +lionize +lipases +lipides +lipless +lipoids +lippens +lippier +lippies +lipping +liquate +liquefy +liqueur +liquids +liquors +lirking +Lisbeth +Lisburn +Lisette +lispers +lisping +lispund +lissome +listels +listens +listful +listing +litchis +literal +lithate +lithely +lithest +lithite +lithium +lithoid +litotes +litters +littery +littler +littles +liturgy +livable +livened +livener +livered +lividly +livings +Livorno +lizards +Lizbeth +llanero +Lloyd's +loaches +loaders +loading +loafers +loafing +loamier +loaming +loaners +loaning +loathed +loather +loathes +loathly +loaving +lobbied +lobbies +lobbing +lobbyer +lobelet +lobelia +lobings +lobiped +lobster +lobular +lobules +lobulus +lobworm +locales +locally +Locarno +located +locates +lochans +lochial +lockage +lockers +lockets +lockful +Lockian +locking +Lockist +lockman +lockmen +locknut +lockout +lockram +Lockyer +locoman +locomen +Locrian +locular +locules +loculus +locusta +locusts +lodgers +lodging +lofters +loftier +loftily +lofting +Logania +loggats +loggers +loggias +logging +Loghtan +Loghtyn +logical +logline +loglogs +Logting +logwood +loiding +loiters +lokshen +lollard +lollers +lollies +lolling +lollops +lombard +lomenta +loments +Londony +longans +longbow +longest +longing +longish +loobies +loofahs +lookers +looking +lookism +lookout +looming +loonier +loonies +looning +loopers +loopier +looping +loosely +loosens +loosest +loosing +looters +looting +loppers +lopping +loquats +lorchas +lording +lordkin +Lorelei +Lorentz +Lorenzo +Loretta +lorette +lorgnon +loricae +lorimer +loriner +loriots +lorises +lorries +losable +lossier +Lothair +Lothian +lotions +lotoses +lottery +lotting +lotuses +loudens +loudest +loudish +lounged +lounger +lounges +louping +Lourdes +louring +lousier +lousily +lousing +louting +loutish +Louvain +louvers +louvred +louvres +lovable +lovably +lovages +Lovejoy +lovered +loverly +lovings +lowboys +lowered +lowings +lowland +lowlier +lowlily +lownded +lownder +lowness +lowsing +Lowveld +loxygen +loyaler +loyally +loyalty +lozenge +lozengy +Lualaba +lubbard +lubbers +Lubbock +lubfish +lucarne +lucency +lucerne +lucerns +lucidly +lucifer +lucigen +Lucilla +Lucille +Lucinda +luckier +luckies +luckily +Lucknow +lucumas +lucumos +Luddism +Luddite +Ludovic +ludship +luffing +Luganda +lugeing +luggage +luggers +luggies +lugging +lughole +lugings +lugsail +lugworm +lullaby +lulling +lumbago +lumbang +lumbers +lumenal +Lumi�re +luminal +lumined +lumines +lummies +lumpers +lumpier +lumpily +lumping +lumpish +lumpkin +lunated +lunatic +lunched +luncher +lunches +lunette +lungful +lungies +lunging +lunkers +lunting +lunular +lunulas +lunules +Luoyang +lupines +lupulin +lurched +lurcher +lurches +lurdane +lurdans +luridly +lurkers +lurking +lushers +lushest +lushing +Lusiads +lusters +lustful +lustick +lustier +lustily +lusting +lustral +lustred +lustres +lustrum +luteous +Lutetia +luthern +luthier +lutings +lutists +Lutyens +luvvies +luxated +luxates +Lycaena +lyceums +lychees +Lychnic +lychnis +Lycidas +lycopod +lyddite +Lydgate +lyingly +Lymnaea +lymphad +lyncean +lynched +lyncher +lynches +lynchet +Lynette +Lyomeri +lyophil +lyrated +lyrical +lyricon +lyrisms +lyrists +Lysenko +Lythrum diff --git a/com/agnibho/code/anagram/dictionary/L8.txt b/com/agnibho/code/anagram/dictionary/L8.txt new file mode 100644 index 0000000..d59b314 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L8.txt @@ -0,0 +1,940 @@ +laagered +labarums +labdanum +labelled +labellum +labially +Labiatae +labiates +lability +laborers +laboring +laborism +laborist +laboured +labourer +Labrador +Labridae +labryses +laburnum +lacebark +lacerant +lacerate +Lachesis +laciniae +lackaday +lackered +lackeyed +lackland +Laconian +laconism +lacquers +lacqueys +lacrimal +lacrosse +lacrymal +lactated +lactates +lacteals +lacteous +lactific +lacunars +lacunary +lacunate +lacunose +laddered +ladettes +ladified +ladifies +ladleful +ladrones +ladybird +ladybugs +ladycows +ladyfied +ladyfies +ladyhood +ladykins +ladylike +ladyship +laetrile +laggards +laggings +lagnappe +lagoonal +Lagrange +Lagthing +laicised +laicises +laicized +laicizes +Laingian +lairages +lairiest +lairised +lairises +lairized +lairizes +laitance +lakeland +lakelets +lakeside +lallings +lallygag +lamantin +lamasery +lambaste +lambasts +lambdoid +lambency +lamberts +lambkins +lamblike +lambling +lambskin +lamellae +lamellar +lameness +lamented +lameters +lamigers +laminary +laminate +laminose +lamiters +lammings +lampasse +lamperns +lamphole +lampions +lampoons +lamppost +lampreys +lampukas +lampukis +lancegay +lancelet +Lancelot +lanceted +lanching +landdros +landfall +landfill +landform +landings +landlady +l�ndlers +landless +landlord +landmark +landmass +landrace +Landseer +landside +landskip +landslip +Landsm�l +landsman +landsmen +landward +Landwehr +landwind +Lanfranc +langahas +Langland +langlauf +Langmuir +langrage +Langshan +langspel +language +languets +languish +laniards +lankiest +lankness +lanneret +lanoline +lantanas +lanterns +lanthorn +lanyards +Laodicea +Laotians +lapelled +laphelds +lapidary +lapidate +lapidify +lapithae +lappeted +lappings +lapsable +lapsangs +lapstone +Laputans +lapwings +larboard +larcener +larderer +lardiest +lardoons +largened +largesse +larkiest +larkspur +larmiers +larnakes +Larousse +larrigan +larrikin +larruped +larvated +laryngal +larynges +larynxes +lasagnas +lasagnes +lashings +lashkars +lasslorn +lassocks +lassoing +lastages +latching +latchkey +lateness +latening +latently +laterite +latewake +lathered +lathiest +lathings +lathlike +lathyrus +Latinate +Latinise +Latinism +Latinist +Latinity +latinize +latitant +latitats +latitude +latrines +latterly +latticed +lattices +Latvians +laudable +laudably +laudanum +laughers +laughful +laughing +laughter +Laughton +launched +launcher +launches +launders +Laurasia +laureate +Laurence +Lauretta +Lausanne +lauwines +lavaboes +lavaform +lavatera +lavation +lavatory +laveered +lavement +lavender +Lavengro +laverock +lavished +lavishes +lavishly +lawfully +lawgiver +lawmaker +Lawrence +lawsuits +lawyerly +laxative +laxators +layabout +layaways +laybacks +layering +layettes +layovers +laywoman +laywomen +lazarets +Lazarist +laziness +lazulite +lazurite +leachate +leachier +leaching +leadened +leadenly +leadiest +leadings +leadless +leadsman +leadsmen +leadwort +leafages +leafbuds +leafiest +leafless +leaflets +leaguers +leaguing +leakages +leakiest +leanings +leanness +leapfrog +leariest +Learjets +learners +learning +leasable +leashing +leasings +leasowed +leasowes +leathern +leathers +leathery +leavened +leaviest +leavings +Lebanese +lecanora +lechered +lecithin +lecterns +lections +lectress +lectured +lecturer +lectures +lecturns +lecythis +Lecythus +ledgered +ledgiest +leechees +leeching +leeriest +leerings +leftists +leftmost +leftover +leftward +legacies +legalese +legalise +legalism +legalist +legality +legalize +legatary +legatees +legatine +legation +legators +legendry +legerity +leggiest +leggings +leghorns +legioned +legitims +Legoland +legumins +Leibnitz +Leighton +Leinster +leislers +leisters +leisured +leisures +lekythos +lemmings +lemnisci +lemonade +lemoning +lempiras +lemurian +lemurine +lemuroid +lendings +lengthen +lenience +leniency +lenients +lenified +lenifies +Leninism +Leninist +Leninite +lenition +lenitive +lentando +lenticel +lenticle +lentisks +Leonardo +Leonidas +Leonides +L�ontine +Leontyne +leopards +leotards +lepidote +leporine +leptomes +leptonic +lernaean +lesbians +lessened +lessoned +Lestrade +letching +lethally +lethargy +Letraset +lettable +lettered +letterer +letterns +lettings +lettuces +leucitic +Leucojum +leukemia +leukemic +levanted +Levanter +levators +leveeing +levelers +leveling +levelled +leveller +leverage +leverets +levering +leviable +levigate +levirate +levitate +levities +levulose +lewdness +lewdster +Lewisham +Lewisian +lewisite +lewisson +lexicons +lexigram +liaising +liaisons +libating +libation +libatory +libbards +libeccio +libelers +libeling +libelled +libellee +libeller +libelous +Liberace +liberals +liberate +Liberian +libraire +librated +librates +libretti +libretto +licenced +licences +licensed +licensee +licenser +licenses +licensor +lichanos +lichened +lichenin +lichgate +lichting +lickings +licorice +liegedom +liegeman +liegemen +lientery +lifebelt +lifeboat +lifehold +lifeless +lifelike +lifeline +lifelong +lifesome +lifespan +lifetime +liftable +liftback +liftboys +liftgirl +ligament +ligating +ligation +ligature +lightens +lighters +lightest +lightful +lighting +lightish +ligneous +lignitic +ligulate +liguloid +Ligurian +likeable +likelier +likeness +likening +likewalk +likewise +Lilliput +Lilongwe +Limaceae +limacels +limacine +lima�ons +Limassol +limation +limbecks +limbered +limbless +limbmeal +limekiln +limerick +limewash +liminess +limitary +limiters +limiting +limnaeid +limnetic +limonite +Limousin +limpidly +limpings +limpkins +limpness +linalool +linchets +linchpin +lincture +lindworm +lineages +lineally +linearly +lineated +linefeed +linesman +linesmen +lingered +lingerer +lingerie +lingiest +lingster +linguine +linguini +linguist +lingular +lingulas +liniment +linkable +linkages +linkboys +linkster +linkwork +Linnaean +Linnaeus +Linnette +linocuts +linoleum +Linotype +linsangs +linseeds +linstock +lintiest +lintseed +lioncels +lionised +lionises +lionized +lionizes +liparite +Lipchitz +lipogram +lipomata +liposome +lippened +lippiest +Lippmann +lipsalve +lipstick +liquable +liquated +liquates +liquesce +liqueurs +liquidly +liquidus +liquored +liripipe +liripoop +lispings +lispound +lispunds +lissomly +listened +listener +listeria +listings +listless +litanies +literacy +literals +literary +literate +literati +literato +literose +litharge +lithites +litigant +litigate +littered +littlest +littling +littoral +liturgic +lituuses +liveable +livelier +livelily +livelong +liveners +livening +liveried +liveries +liverish +liveware +lividity +lixivial +lixivium +Llanelli +Llanelly +llaneros +Llewelyn +loadings +loadstar +loafings +Loaghtan +loamiest +loanable +loanback +loanings +loathers +loathful +loathing +lobation +lobbyers +lobbying +lobbyist +lobelets +lobelias +lobeline +loblolly +lobotomy +lobsters +lobulate +lobworms +localise +localism +localist +locality +localize +locating +location +locative +lockable +lockages +lockfast +lockfuls +Lockists +locknuts +lockouts +lockpick +locksman +locksmen +lockstep +locofoco +locomote +loculate +locustae +locution +locutory +lodesman +lodesmen +lodestar +lodgings +lodgment +lodicula +lodicule +loftiest +logboard +loggings +Loghtans +Loghtyns +logician +logicise +logicism +logicist +logicize +logistic +loglines +logogram +logotype +logwoods +loitered +loiterer +Lollardy +lollipop +lolloped +lollygag +Lombardy +lomentum +Londoner +lonelier +loneness +lonesome +longboat +longbows +longeing +longeron +longeval +Longford +longhand +longhorn +longings +Longinus +Longleat +longness +longship +longsome +longstop +longueur +longwall +longways +longwise +lonicera +lookings +lookouts +looniest +loonings +loonybin +loophole +loopiest +loopings +loosebox +loosened +loosener +lopgrass +lopolith +loppings +lopsided +loquitur +lordings +lordkins +lordless +lordlier +lordling +lordosis +lordotic +lordship +lorettes +lorgnons +loricate +lorikeet +lorimers +loriners +Lorraine +losingly +lossiest +Lothario +louchely +loudened +loudness +loungers +lounging +lourings +lousiest +louvered +loveable +loveably +lovebird +lovebite +Lovelace +loveless +lovelier +lovelies +lovelily +lovelock +lovelorn +lovesick +lovesome +lovingly +lowering +lowlands +lowliest +lowlight +lowndest +lownding +loyalest +loyalist +loyaller +lozenged +lozenges +lubbards +lubberly +Lubitsch +lubrical +lucarnes +lucernes +lucidity +lucifers +lucigens +Lucilius +luckiest +luckless +Lucretia +luculent +Lucullan +Lucullus +Luddites +luderick +Ludhiana +Ludovick +ludships +lugeings +luggable +lugholes +lugsails +lugworms +lukewarm +lumbagos +lumbangs +lumbered +lumberer +lumberly +luminant +luminary +lumining +luminist +luminous +lummoxes +lumpenly +lumpfish +lumpiest +lumpkins +lunacies +lunarian +lunaries +lunarist +lunatics +lunation +luncheon +lunchers +lunching +L�neburg +lunettes +lungeing +lungfuls +lungwort +lunkhead +lunulate +Lupercal +lupuline +lurchers +lurching +lurdanes +lurkings +Lusatian +luscious +lushness +lustiest +lustless +lustrate +lustrine +lustring +lustrous +lustrums +lutanist +lutecium +lutenist +luteolin +Lutetian +lutetium +Lutheran +lutherns +luthiers +luxating +luxation +luxmeter +luxuries +luxurist +lychgate +lycopods +Lycurgus +lykewake +lymphads +lymphoid +lymphoma +lynchers +lynchets +lynching +lynchpin +Lyonesse +Lyonnais +lyophile +lyophobe +lyricism +lyricist +lyricons +lyriform +Lysander +Lysippus +lysosome +lysozyme diff --git a/com/agnibho/code/anagram/dictionary/L9.txt b/com/agnibho/code/anagram/dictionary/L9.txt new file mode 100644 index 0000000..356b1f3 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/L9.txt @@ -0,0 +1,804 @@ +laagering +labdacism +labelling +labelloid +labialise +labialism +labialize +laborious +laborists +labourers +labouring +labourism +labourist +Labourite +laburnums +labyrinth +laccolite +laccolith +lacebarks +lacerable +lacerated +lacerates +lacertian +lacertine +lachrymal +laciniate +lackadays +lackering +lackeying +lacklands +laconical +laconisms +lacquered +lacquerer +lacqueyed +lacrimoso +lactarian +lactating +lactation +lacunaria +laddering +ladifying +ladlefuls +ladybirds +ladyflies +ladyfying +ladyships +Ladysmith +laevulose +Lafayette +laggardly +laggingly +lagnappes +lagniappe +lagomorph +lagrimoso +laicising +laicizing +lairdship +lairising +lairizing +laitances +lallation +L'Allegro +lallygags +lamaistic +lamantins +lamaserai +lambasted +lambastes +Lambegger +lambently +lambitive +lamblings +Lambretta +Lambrusco +lambskins +lamellate +lamelloid +lamellose +lamenting +laminable +Laminaria +laminated +laminates +laminator +lamington +laminitis +lampadary +lampadist +Lampedusa +lampholes +lamplight +lampooned +lampooner +lampposts +lampshade +Lancaster +lancejack +lancelets +lanceolar +lanciform +lancinate +landamman +landaulet +landdrost +landfalls +landfills +landforms +landgrave +landloper +landlords +landmarks +landowner +Landowska +landraces +landscape +Landseers +landskips +landslide +landslips +Landsmaal +Landsting +Landsturm +landwards +landwinds +Langobard +langouste +langrages +langridge +langspels +langspiel +languaged +languages +languette +languidly +lankiness +lannerets +lanterloo +lanterned +lanthanum +Lanzarote +Laodicean +lapidated +lapidates +lapideous +lapidific +Laplander +lapstones +lapstrake +lapstreak +laquearia +larceners +larcenies +larcenist +larcenous +lardalite +larderers +Largactil +largeness +largening +largesses +larghetto +largition +larkiness +larkspurs +larrigans +larruping +larvicide +larviform +larvikite +laryngeal +laserdisc +laserdisk +laserwort +lassitude +lastingly +latchkeys +laterally +lateritic +latescent +latewakes +lathering +lathyrism +laticlave +latifondi +Latinised +Latinises +Latinists +latinized +latinizes +latitancy +latitudes +latration +latrociny +latticing +latticini +latticino +laudation +laudative +laudatory +laughable +laughably +laughings +laughsome +laughters +Launcelot +launchers +launching +laundered +launderer +laundress +laundries +Lauraceae +Laurasian +laureated +laureates +laurelled +Laurencin +lavaliere +laveering +lavements +lavenders +laverocks +lavishing +Lavoisier +lawgivers +lawlessly +lawmakers +lawmonger +laxatives +layabouts +laybacked +layerings +laypeople +layperson +lazarette +lazaretto +lazzarone +lazzaroni +leachates +leachiest +leachings +Leadbelly +leadening +leaderene +leadworts +leafiness +leafleted +leaguered +leakiness +leapfrogs +learnable +learnedly +leaseback +leasehold +leasowing +leastways +leastwise +leathered +leavening +leavenous +Leavisite +lecanoras +lecheries +lechering +lecherous +lectorate +lecturers +lecturing +ledgering +leeriness +leeringly +leftovers +leftwards +legalised +legalises +legalists +legalized +legalizes +legations +legendary +legendist +legginess +legionary +legislate +legwarmer +lehrjahre +Leicester +leistered +leisurely +leitmotif +leitmotiv +lemmatise +lemmatize +Lemnaceae +lemniscus +lemonades +lemurians +lemurines +lemuroids +lengthens +lengthful +lengthier +lengthily +lengthman +lengthmen +leniently +lenifying +Leningrad +lenitions +lenitives +lenticels +lenticles +lentiform +leprosery +leprosity +leptosome +leptotene +Lermontov +lessening +lessoning +lethality +lethargic +letterbox +letterers +lettering +leucaemia +leucaemic +Leuciscus +leucocyte +leucotome +leucotomy +leukaemia +leukocyte +Levantine +levanting +levellers +levellest +levelling +levelness +leveraged +leverages +leviathan +levigable +levigated +levigates +levitated +levitates +levitical +Leviticus +lewdsters +lewissons +lexically +lexigrams +Lexington +leylandii +liability +libations +libecchio +libeccios +libellant +libellees +libellers +libelling +libellous +liberally +liberated +liberates +liberator +liberians +liberties +libertine +libidinal +libraires +librairie +librarian +libraries +librating +libration +libratory +librettos +licencing +licensees +licensers +licensing +licensors +licensure +lichenism +lichenist +lichenoid +lichenose +lichenous +Lichfield +lichgates +lickerish +lickpenny +licorices +lidocaine +liegeless +lienteric +lifebelts +lifeboats +lifeguard +lifelines +lifespans +lifestyle +lifetimes +liftbacks +liftgirls +ligaments +ligations +ligatured +ligatures +lightbulb +lightened +lightfast +lightings +lightless +lightness +lightning +lightship +lightsome +lignaloes +lignified +lignifies +ligniform +Liguorian +likeliest +likewalks +lilangeni +Liliaceae +limaceous +limbering +limburger +Limehouse +limekilns +limelight +limericks +limestone +limewater +limitable +limitedly +limitings +limitless +limnaeids +limnology +limonitic +limousine +limpidity +limpingly +limuluses +linchpins +lincrusta +linctures +linctuses +Lindbergh +Lindemann +lindworms +lineality +lineament +linearity +lineation +linefeeds +lineolate +lingerers +lingering +lingsters +lingually +linguists +lingulate +liniments +Link�ping +linksters +Linotypes +linstocks +lintelled +lintseeds +lintstock +lintwhite +lioncelle +lionesses +lionising +lionizing +lipectomy +lipograms +liposomal +liposomes +lippening +lippitude +lipsalves +lipsticks +liquating +liquation +liquefied +liquefier +liquefies +liquesced +liquesces +liqueured +liquidate +liquidise +liquidity +liquidize +liquified +liquorice +liquoring +liquorish +liripipes +liripoops +lispingly +lispounds +lissomely +listeners +listening +Listerian +Listerise +Listerism +Listerize +literally +literates +literatim +literator +literatus +litheness +lithesome +lithiasis +lithistid +lithocyst +lithoidal +lithology +lithopone +lithotome +lithotomy +Lithuania +litigable +litigants +litigated +litigates +litigator +litigious +littering +littlings +littorals +liturgics +liturgies +liturgist +liveliest +livelongs +Liverpool +liverwort +liveryman +liverymen +livestock +lividness +livraison +lixiviate +lixivious +Ljubljana +Llandudno +Llareggub +loadstars +loadstone +loaferish +Loaghtans +loaminess +loathings +loathlier +loathsome +lobations +lobbyings +lobbyists +lobectomy +lobscouse +lobulated +localised +localiser +localises +localisms +localized +localizer +localizes +locatable +locations +locatives +locellate +Lochinvar +Lockerbie +lockhouse +lockpicks +locksmith +locofocos +locomoted +locomotes +locomotor +locuplete +locutions +lodestars +lodestone +lodgement +lodgepole +lodgments +lodiculae +lodicules +loftiness +logaoedic +logarithm +logboards +logically +logicians +logicised +logicises +logicists +logicized +logicizes +logistics +logograms +logograph +logogriph +logomachy +logopedic +logophile +logorrhea +logothete +logotypes +Lohengrin +loiterers +loitering +Lollardry +lollingly +lollipops +lolloping +lollygags +Lombardic +Londinium +Londoners +Londonese +Londonian +Londonise +Londonish +Londonism +Londonize +loneliest +longaeval +longboats +longerons +longevity +longevous +longhorns +longicorn +longingly +longitude +Longobard +longships +longshore +longstops +longueurs +longwalls +lookalike +looniness +loonybins +loopholed +loopholes +looseners +looseness +loosening +lophodont +lopoliths +loquacity +lorazepam +lordliest +lordlings +lordships +lorgnette +loricated +loricates +lorikeets +lossmaker +Lotharios +Lotophagi +lotteries +loudening +loudmouth +Louisiana +loungings +louringly +lousewort +lousiness +loutishly +lovebirds +lovebites +loveliest +lovelight +lovelocks +loverless +lowerings +lowermost +Lowestoft +lowlander +lowlights +lowlihead +lowliness +loxodrome +loxodromy +loyalists +loyallest +loyalties +Lubavitch +lubfishes +lubricant +lubricate +lubricity +lubricous +lucidness +luciferin +luckiness +lucrative +Lucretius +luctation +lucubrate +Lucullean +Lucullian +lucumones +ludericks +ludically +ludicrous +Lufthansa +Luftwaffe +lullabied +lullabies +lumberers +lumbering +lumberman +lumbermen +lumbrical +lumbricus +luminaire +luminance +luminants +luminesce +luminists +lumpiness +lumpishly +lunarians +lunarists +lunarnaut +lunations +luncheons +lunchroom +lunchtime +lungworts +lunisolar +lunitidal +lunkheads +lunulated +lupulinic +luridness +Lusatians +Lusitania +Lusophile +lustfully +lustihead +lustihood +lustiness +lustrated +lustrates +lutanists +luteinise +luteinize +lutenists +luteolous +lutescent +Lutherans +Lutherism +Lutherist +luxations +luxmeters +luxuriant +luxuriate +luxurious +luxurists +lychgates +lychnises +Lycosidae +lykewakes +Lymeswold +Lymington +lymphatic +lymphomas +lynchings +lynchpins +lyomerous +Lyonnaise +Lyonnesse +lyophilic +lyophobic +lyrically +lyricisms +lyricists +lysigenic +lysimeter +lysosomes +lysozymes +Lyttleton diff --git a/com/agnibho/code/anagram/dictionary/M1.txt b/com/agnibho/code/anagram/dictionary/M1.txt new file mode 100644 index 0000000..28ce6a8 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M1.txt @@ -0,0 +1 @@ +m diff --git a/com/agnibho/code/anagram/dictionary/M10.txt b/com/agnibho/code/anagram/dictionary/M10.txt new file mode 100644 index 0000000..40fb91e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M10.txt @@ -0,0 +1,1475 @@ +Maastricht +Mabinogion +macadamise +macadamize +macarising +macarizing +macaronics +macaronies +Maccabaean +MacDiarmid +mac�doines +Macedonian +macerating +maceration +macerators +machinable +machinated +machinates +machinator +machineman +machinemen +machinists +Machmeters +mackintosh +maconochie +macrobiota +macrobiote +macrocarpa +macrocosms +macrocycle +macrocytes +macrodomes +macrofauna +macroflora +macrophage +macroprism +macrospore +macrozamia +mactations +maculating +maculation +maculature +Madagascan +Madagascar +madeleines +maderising +maderizing +madonnaish +madrassahs +madrepores +madreporic +maelstroms +maffickers +mafficking +magdalenes +Magellanic +maggotiest +magistracy +magistrand +magistrate +magnetical +magnetised +magnetiser +magnetises +magnetists +magnetized +magnetizer +magnetizes +magnetrons +magnifical +Magnificat +magnifiers +magnifying +magnitudes +maharajahs +maharanees +maharishis +Mahayanist +mahlsticks +mahoganies +Mahommedan +maidenhair +maidenhead +maidenhood +maidenlike +maidenweed +maimedness +Maimonides +mainbraces +mainframes +mainlander +mainliners +mainlining +mainpernor +mainprises +mainsheets +mainspring +mainstream +maintained +maintainer +maisonette +maistering +majestical +majorettes +majorities +majorships +majuscular +majuscules +makeweight +makunouchi +malacology +maladapted +maladdress +malague�as +malaguetta +malapertly +malapropos +malaxating +malaxation +malaxators +Malayalaam +Malaysians +malcontent +Maldivians +maledicent +malefactor +maleffects +maleficent +maleficial +malentendu +malevolent +malfeasant +malignance +malignancy +malignants +malignment +malingered +malingerer +mallanders +malleating +malleation +malleiform +mallemucks +mallenders +Mallophaga +Mallorcans +Malmesbury +malodorous +malolactic +Malpighian +Malplaquet +Malthusian +maltreated +malvaceous +malvoisies +mamillated +mammogenic +mammograms +mammograph +mammonists +mammonites +manageable +manageably +management +manageress +managerial +Manchester +manchineel +Manchurian +mancipated +mancipates +Mancunians +mandamuses +mandarines +Mandelbrot +Mandelstam +Mandeville +mandibular +mandilions +Mandingoes +mandioccas +mandolines +mandragora +manducable +manducated +manducates +mandylions +maneuvered +maneuverer +manfulness +mangabeira +manganates +manganites +mangetouts +mangostans +mangosteen +mangoustes +manhandled +manhandles +Manhattans +maniacally +Manichaean +Manicheism +manicuring +manicurist +manifested +manifestly +manifestos +manifolded +manifolder +manifoldly +manipulate +mannequins +mannerisms +mannerists +mannerless +manoeuvred +manoeuvrer +manoeuvres +manometers +manometric +manservant +mansionary +mansuetude +manteltree +manticoras +manticores +manumitted +manurances +manuscript +manzanilla +manzanitas +Maoritanga +mappemonds +maquillage +maquisards +maraschino +marathoner +marcantant +marcelling +marcescent +Marcgravia +marchantia +marchlands +Marcionist +Marcionite +mareschals +margarines +margaritic +margenting +marginalia +marginally +marginated +margravate +margravine +marguerite +marigraphs +marihuanas +marijuanas +marinading +marinating +marination +Mariolater +Mariolatry +marionette +marketable +marketeers +markswoman +markswomen +marmalades +marmarised +marmarises +marmarized +marmarizes +marmarosis +marmelised +marmelises +marmelized +marmelizes +maroonings +marprelate +Marquesans +marquesses +marquisate +marrowbone +marrowfats +marrowless +Marseilles +marshalled +marshaller +Marshalsea +marshiness +marshlands +marshlocks +marshworts +marsupials +martellato +martensite +martialism +martialist +martingale +Martinique +martyrdoms +martyrised +martyrises +martyrized +martyrizes +marvelling +marvellous +Marxianism +Marylebone +Maryolater +Maryolatry +mascarpone +masculines +maskalonge +maskanonge +maskinonge +maskirovka +masochists +masquerade +massacring +massagists +massasauga +Massoretic +mastectomy +masterates +masterhood +masterings +masterless +mastermind +mastership +masterwort +masthouses +masticable +masticated +masticates +masticator +mastodynia +masturbate +matchboard +matchbooks +matchboxes +matchlocks +matchmaker +matchstick +matelasses +matellasse +materially +maternally +matgrasses +mathematic +matriarchs +matriarchy +matricidal +matricides +matricular +matriculas +matrifocal +matrilocal +matrocliny +matronages +matronhood +matronised +matronises +matronized +matronizes +matronship +matronymic +matryoshka +mattamores +Matterhorn +matterless +mattresses +maturating +maturation +maturative +matureness +maturities +maudlinism +maulsticks +maunderers +maundering +Maupassant +Mauretania +Mauritania +Mauritians +mausoleums +mavericked +mavourneen +maxilliped +maxillulae +maximalist +Maximilian +maximising +maximizing +maxisingle +Mayakovski +Mayakovsky +mayflowers +Mayologist +mayonnaise +mayoresses +mayorships +mazarinade +McDonald's +McGonagall +meagerness +meagreness +meandering +meaningful +meanwhiles +measurable +measurably +measuredly +measurings +meatscreen +mechanical +mechanised +mechanises +mechanisms +mechanists +mechanized +mechanizes +meconopses +meconopsis +medallions +medallists +meddlesome +mediagenic +mediastina +mediations +mediatised +mediatises +mediatized +mediatizes +mediatress +medicalise +medicalize +medicament +medicaster +medicating +medication +medicative +mediciners +medicining +medievally +mediocrity +meditating +meditation +meditative +meditators +medressehs +medullated +medusiform +meerschaum +mefloquine +megacities +megacuries +megacycles +megadeaths +megafarads +megajoules +megalithic +megalosaur +meganewton +megaparsec +megaphones +megaphonic +megascopes +megascopic +megaspores +megastores +meiofaunal +meitnerium +mekometers +melaconite +melanaemia +melancholy +Melanesian +melanistic +melanocyte +melanomata +meliaceous +Melincourt +meliorated +meliorates +meliorator +meliorists +melismatic +mellophone +mellowness +melocotons +melodising +melodizing +melodramas +melodrames +melomaniac +melomanias +membership +membranous +memoirists +memorandum +memorative +memorising +memorizing +menacingly +menageries +mendacious +Mendeleyev +mendicancy +mendicants +meningioma +meningitis +meniscuses +Mennonites +Menominees +menopausal +menorrhoea +Mensheviks +Menshevism +Menshevist +menstruate +menstruous +menstruums +mensurable +mentalisms +mentalists +mentations +menticides +mentioning +mentorship +menuisiers +meperidine +mephitical +mercantile +mercaptans +mercaptide +mercerised +merceriser +mercerises +mercerized +mercerizer +mercerizes +merchanted +merchantry +mercifully +mercifying +mercurised +mercurises +mercurized +mercurizes +merestones +mergansers +meridional +meritocrat +mermaidens +meropidans +merozoites +merriments +merrymaker +merrymakes +Merseyside +mesenchyme +mesenteric +mesenteron +mesmerical +mesmerised +mesmeriser +mesmerises +mesmerists +mesmerized +mesmerizer +mesmerizes +mesoblasts +mesohippus +Mesolithic +mesomerism +mesomorphs +mesomorphy +mesophylls +mesophytes +mesophytic +mesoscaphe +mesosphere +mesothorax +messengers +Messianism +Messianist +metabolise +metabolism +metabolite +metabolize +metacarpal +metacarpus +metacentre +metagalaxy +metalepses +metalepsis +metaleptic +metalizing +metallings +metallised +metallises +metallists +metallized +metallizes +metallurgy +metamerism +metaphases +metaphoric +metaphrase +metaphrast +metaphysic +metaplasia +metaplasis +metaplasms +metastable +metastases +metastasis +metastatic +metatarsal +metatarsus +Metatheria +metatheses +metathesis +metathetic +metathorax +metempiric +meteorists +meteorital +meteorites +meteoritic +meteoroids +metesticks +methedrine +metheglins +methinketh +methionine +methodical +methodised +methodises +methodists +methodized +methodizes +methomania +Methuselah +methylated +methylates +methyldopa +methylenes +meticulous +metonymies +metrically +metricated +metricates +metricians +metricised +metricises +metricists +metricized +metricizes +metrifiers +metrologic +metromania +metronomes +metronomic +metronymic +metropolis +metrostyle +Metternich +mettlesome +mezzanines +mezzotinto +mezzotints +miarolitic +miasmatous +Michaelmas +Michelozzo +microbiota +microburst +microbuses +microcards +microchips +microcline +micrococci +microcodes +microcosms +microcrack +microcytes +microdrive +microfarad +microfauna +microfiche +microfilms +microflora +microforms +micrograms +micrograph +microhenry +microlight +microlites +microliths +microlitic +micrologic +microluxes +micrometer +micrometre +micrometry +Micronesia +microphone +microphyte +micropolis +microprint +microprism +microprobe +micropumps +micropylar +micropyles +microscale +microscope +microscopy +microseism +microskirt +microsomal +microsomes +microspore +microtomes +microtomic +microtonal +microtones +microwatts +microwaves +microwires +micturated +micturates +middlebrow +middlemost +midfielder +midinettes +Midlothian +midnightly +midshipman +midshipmen +midstreams +midsummers +Midwestern +mightiness +mignonette +migraineur +migrainous +migrations +Mildenhall +mileometer +milestones +militantly +militaries +militarily +militarise +militarism +militarist +militarize +militating +militiaman +militiamen +milkfishes +millefiori +millennial +millennium +millepedes +millepores +millesimal +milliaries +milligrams +millilitre +millimetre +millimoles +millionary +millionths +millipedes +millocracy +millocrats +millstones +millwright +milometers +mimeograph +mimography +Mimosaceae +minauderie +mincemeats +mindedness +mindlessly +minehunter +mineralise +mineralist +mineralize +mineralogy +minestrone +mineworker +minglement +minglingly +miniatured +miniatures +minibreaks +minibuffet +minibusses +minifloppy +minimalism +minimalist +minimaxing +minimising +minimizing +miniseries +miniskirts +ministered +ministeria +ministrant +ministress +ministries +minivolley +minoresses +minorities +minorships +minstrelsy +minuscular +minuscules +minuteness +mirabelles +miracidium +miraculous +mirrorwise +mirthfully +misaddress +misadvised +misadvises +misaligned +misalleged +misalleges +misallying +misandrist +misandrous +misapplied +misapplies +misarrange +misarrayed +misassigns +misbecomes +misbehaved +misbehaves +misbeliefs +misbelieve +misbeseems +misbestows +miscalling +miscanthus +miscarried +miscarries +miscasting +miscegenes +miscegines +miscellany +mischanced +mischances +mischarged +mischarges +mischiefed +mischmetal +miscolored +miscolours +miscompute +misconceit +misconduct +miscontent +miscopying +miscorrect +miscounsel +miscounted +miscreance +miscreancy +miscreants +miscreated +miscreator +miscredits +misdealing +misdeemful +misdeeming +misdemeans +misdialled +misdirects +misdoubted +misdrawing +misemploys +misentreat +misentries +miserables +misericord +misesteems +misfeasors +misfeature +misfeeding +misfeigned +misfielded +misfitting +misforming +misfortune +misgivings +misgoverns +misgraffed +misgrowths +misguggled +misguggles +misguiders +misguiding +mishandled +mishandles +mishanters +mishapping +mishearing +mishitting +mishmashes +Mishnayoth +misimprove +misinforms +misjoinder +misjoining +misjudging +miskicking +misknowing +misleaders +misleading +mislikings +mislippens +mislucking +mismanaged +mismanages +mismanners +mismarried +mismarries +mismatched +mismatches +mismeasure +mismetring +misnomered +misobserve +misocapnic +misogamist +misogynist +misogynous +misologist +misoneists +misordered +misplacing +misplanted +misplaying +mispleaded +mispleased +mispleases +mispointed +mispraised +mispraises +misprinted +misprising +misprision +misprizing +misquoting +misreading +misreckons +misrelated +misrelates +misreports +misrouting +missayings +misseeming +missending +missetting +misshaping +missilries +missionary +missioners +missioning +missionise +missionize +misspelled +misstating +misstepped +missuiting +mistakable +mistakenly +misteaches +mistelling +misterming +misthought +mistitling +mistletoes +mistreated +mistresses +mistressly +mistrusted +mistrysted +misventure +misweening +miswording +misworship +miswriting +miswritten +mithridate +mitigating +mitigation +mitigative +mitigators +mitigatory +Mitsubishi +Mitterrand +mittimuses +mixolydian +mnemonical +mnemonists +mobilisers +mobilising +mobilities +mobilizers +mobilizing +mobocratic +modalistic +modalities +modellings +moderately +moderating +moderation +moderatism +moderators +moderatrix +modernised +moderniser +modernises +modernisms +modernists +modernized +modernizer +modernizes +modernness +modifiable +Modigliani +modillions +modishness +modularise +modularity +modularize +modulating +modulation +modulators +Mohammedan +moisteners +moistening +moistified +moistifies +moisturise +moisturize +moithering +molalities +molarities +Moldavians +molehunter +molendinar +Molesworth +moliminous +mollifiers +mollifying +mollitious +molluscoid +molluscous +mollymawks +molochised +molochises +molochized +molochizes +molybdates +molybdenum +molybdosis +monachists +monactinal +monadiform +monadnocks +monadology +monandrous +monarchial +Monarchian +monarchies +monarchise +monarchism +monarchist +monarchize +monastical +Monaxonida +Monegasque +monetarily +monetarism +monetarist +monetising +monetizing +moneyworts +mongerings +Mongolians +Mongolised +Mongolises +Mongolized +Mongolizes +mongoloids +mongrelise +mongrelism +mongrelize +moniliasis +moniliform +monistical +monitorial +monitoring +monkeynuts +monkshoods +monoamines +monocarpic +monocerous +monochasia +monochords +monochroic +monochrome +monochromy +monoclinal +monoclines +monoclinic +monoclonal +monocoques +monocratic +monoculous +monocycles +monocyclic +monodramas +monoecious +monogamist +monogamous +monogenism +monogenist +monogenous +monographs +monography +monogynian +monogynies +monogynous +monohybrid +monohydric +monolaters +monolayers +monolithic +monologise +monologist +monologize +monologues +monomachia +monomaniac +monomanias +monometers +monophasic +monophobia +monophobic +monophonic +monoplanes +monoplegia +monopodial +monopodium +monopolies +monopolise +monopolist +monopolize +monopteral +monopteron +monopteros +monoptotes +monopulses +monorchism +monorhinal +monorhymed +monorhymes +monoskiing +monostichs +monothecal +monotheism +monotheist +monotocous +monotonies +monotoning +monotonous +monotremes +monovalent +monoxylons +monoxylous +Monroeists +Monsignore +Monsignori +Monsignors +monstrance +Montagnard +montbretia +montelimar +Montenegro +Montessori +Monteverdi +Montevideo +Montgomery +monticules +monticulus +Montmartre +Montpelier +Montserrat +monumental +monumented +monzonitic +moonballed +mooncalves +moonflower +moonlights +moonquakes +moonrakers +moonraking +moonscapes +moonshiner +moonshines +moonstones +moonstrike +moonstruck +mooseyards +moothouses +mopishness +moralisers +moralising +moralistic +moralities +moralizers +moralizing +moratorium +Morayshire +morbidezza +morbidness +morbillous +mordacious +morganatic +morigerate +morigerous +Morisonian +moroseness +morphemics +morpheming +morphinism +morphogeny +morphology +morselling +mortalised +mortalises +mortalized +mortalizes +mortcloths +mortgagees +mortgagers +mortgaging +mortgagors +morticians +mortifiers +mortifying +mortuaries +mosaically +mosaicisms +mosaicists +mosasaurus +moschatels +mosquitoes +mossbunker +mossplants +motettists +motherhood +motherings +motherland +motherless +motherlike +Motherwell +motherwort +motionless +motivating +motivation +motiveless +motorcades +motorcycle +motorising +motorizing +motormouth +moucharaby +mouldering +mouldiness +mouldwarps +mountained +mountebank +mournfully +mourningly +mousseline +moustached +moustaches +Mousterian +mouthparts +mouthpiece +mouvement� +movability +movelessly +moviegoers +moviemaker +mowburning +mowdiewart +mozambican +Mozambique +mozzarella +Mpumalanga +mridamgams +mridangams +mucedinous +muciferous +muckenders +muckspread +mucronated +muddlehead +mudlarking +mudloggers +mudlogging +muffineers +mugwumpery +Muhammadan +Muhammedan +mujaheddin +mulattress +mulberries +muliebrity +mulishness +mulligrubs +multeities +multicycle +multifaced +multigrade +multihulls +multilobed +multiloquy +multimedia +multimeter +multiparas +multiparty +multipedes +multiphase +multiplane +multiplets +multiplied +multiplier +multiplies +multipolar +multistory +multitudes +multivious +multivocal +multocular +mumblement +mumblingly +mumchances +mummifying +Munchausen +mundifying +munificent +munifience +munitioned +munitioner +Muraenidae +murgeoning +murmurings +murtherers +murthering +muscadines +muscardine +muscarinic +muscovados +Muscovites +Muscovitic +muscularly +mushmouths +mushroomed +mushroomer +musicality +musicianer +musicianly +musicology +musketeers +musketoons +musquashes +musquetoon +mussitated +mussitates +Mussorgsky +Mussulmans +mustachios +Mustelidae +mustelines +mutability +mutagenise +mutagenize +mutational +mutessarif +mutilating +mutilation +mutilators +mutineered +mutinously +mutoscopes +mutterings +mutualised +mutualises +mutualized +mutualizes +myasthenia +myasthenic +mycetology +mycetozoan +mycologist +mycoplasma +mycorhizal +mycorhizas +mycorrhiza +mycotoxins +myeloblast +mylohyoids +mylonitise +mylonitize +myoblastic +myocardial +myocardium +myographic +myological +myologists +myopically +myosotises +myriadfold +Myricaceae +myringitis +myrioramas +myrioscope +myrobalans +myrtaceous +mysophobia +mystagogic +mystagogue +mystagogus +mysterious +mysterying +mystically +mystifiers +mystifying +mythically +mythicised +mythiciser +mythicises +mythicists +mythicized +mythicizer +mythicizes +mythologer +mythologic +mythomanes +mythomania +mythopoeia +mythopoeic +mythopoets +mytiliform +myxoedemic +myxomatous +myxomycete diff --git a/com/agnibho/code/anagram/dictionary/M11.txt b/com/agnibho/code/anagram/dictionary/M11.txt new file mode 100644 index 0000000..4a0cb7b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M11.txt @@ -0,0 +1,1090 @@ +macadamised +macadamises +macadamized +macadamizes +Macdonald's +Macedonians +maceranduba +MacFlecknoe +Machairodus +Machiavelli +machicolate +machinating +machination +machinators +machineable +machineries +macintoshes +macrobiotes +macrobiotic +macrocarpas +macrocopies +macrocosmic +macrocycles +macrocyclic +macrodactyl +macrofossil +macrogamete +macrophages +macroprisms +macroscopic +macrospores +maculations +maculatures +Madagascans +maddeningly +madefaction +madonnawise +madreporite +madrigalian +madrigalist +Maeterlinck +maffickings +Magdalenian +maggotorium +magisterial +magisteries +magisterium +magistrands +magistrates +magistratic +Maglemosian +magnanimity +magnanimous +magnesstone +magnetician +magnetisers +magnetising +magnetizers +magnetizing +magnifiable +Magnificats +magnificent +magnificoes +Mahabharata +Maharashtra +Mahayanists +maidenhairs +maidenheads +maidenweeds +maidservant +mailcoaches +mainlanders +mainpernors +mainsprings +mainstreams +maintainers +maintaining +maintenance +maintopmast +maintopsail +maisonettes +maisonnette +majoretting +majoritaire +makeweights +makunouchis +malacophily +maladaptive +maladjusted +maladroitly +malakatoone +malapropism +malariology +malcontents +malediction +maledictive +maledictory +malefaction +malefactors +malefactory +malefically +maleficence +malevolence +malfeasance +malfunction +maliciously +malignantly +malignities +malingerers +malingering +malleations +malposition +malpractice +maltreating +mamillation +mamilliform +mammalogist +mammiferous +mammillaria +mammographs +mammography +mammonistic +mammoplasty +managements +managership +manchineels +Manchurians +mancipating +mancipation +mancipatory +mandarinate +mandataries +mandatories +mandibulate +manducating +manducation +manducatory +maneuvering +mangabeiras +mangalsutra +mangosteens +manhandling +Manichaeism +manicurists +manifesting +manifestoed +manifestoes +manifolders +manifolding +manipulable +manipulated +manipulates +manipulator +manneristic +manniferous +mannishness +manoeuvrers +manoeuvring +manservants +mansionries +mantelpiece +mantelshelf +manteltrees +manufactory +manufacture +manumission +manumitting +manuscripts +manzanillas +maquiladora +Marantaceae +maraschinos +marathoners +Marathonian +marcescible +marchantias +marchioness +marconigram +marginalise +marginalism +marginalist +marginality +marginalize +margravates +margraviate +margravines +marguerites +mariculture +Mariologist +marionberry +marionettes +Marivaudage +Marlborough +marlinspike +marmarising +marmarizing +marmelising +marmelizing +marprelated +marprelates +marquessate +marqueterie +marquetries +marquisates +marquisette +marrowbones +marrowskied +marrowskies +marshalcies +marshallers +marshalling +marshalship +marshlander +marshmallow +Marsupialia +martensitic +martialists +martialness +martinetism +martingales +martyrising +martyrizing +martyrology +marvelously +Maryolaters +Maryologist +masculinely +masculinise +masculinist +masculinity +masculinize +maskallonge +maskalonges +maskanonges +maskinonges +masochistic +masqueraded +masquerader +masquerades +Massachuset +massasaugas +massiveness +masterfully +masterminds +masterpiece +masterships +masterworts +masticating +mastication +masticators +masticatory +mastodontic +mastoiditis +masturbated +masturbates +masturbator +matchboards +matchlessly +matchmakers +matchmaking +matchsticks +matellasses +materialise +materialism +materialist +materiality +materialize +maternities +mathematics +mathematise +mathematize +matriarchal +matriclinic +matriculate +matrilineal +matrilinear +matrilinies +matrimonial +matrimonies +matroclinic +matronhoods +matronising +matronizing +matronymics +matryoshkas +maturations +maunderings +Mauretanian +Mauritanian +mavericking +mavourneens +mawkishness +maxillipede +maxillipeds +maximalists +maximaphily +maxisingles +Mayologists +mayonnaises +mayoralties +mazarinades +McCarthyism +McCarthyite +meanderings +meaningless +measureless +measurement +meatscreens +mechanicals +mechanician +mechanising +mechanistic +mechanizing +mechatronic +Mecklenburg +mediaevally +mediastinal +mediastinum +mediateness +mediatising +mediatizing +mediatorial +mediatrices +medicalised +medicalises +medicalized +medicalizes +medicaments +medicasters +medications +medicinable +medicinally +medievalism +medievalist +meditations +mediumistic +meerschaums +megaloblast +megalomania +megalopolis +megalosaurs +meganewtons +megaparsecs +Megatherium +megatonnage +megavitamin +Mekhitarist +melancholia +melancholic +Melanchthon +Melanesians +Melanochroi +melanophore +melanterite +Melchizedek +meliorating +melioration +meliorative +meliorators +melioristic +meliorities +meliphagous +melliferous +mellifluent +mellifluous +mellivorous +mellophones +mellowspeak +melodically +melodiously +melomaniacs +meltingness +memberships +membraneous +memorabilia +memorandums +memorialise +memorialist +memorialize +menaquinone +mendacities +mendelevium +Mendelssohn +mendicities +meningiomas +meningocele +menispermum +Mennonitism +menorrhagia +Menshevists +menstruated +menstruates +mensuration +mensurative +mentalities +mentholated +mentionable +mentonni�re +meprobamate +mercaptides +mercenaries +mercenarily +mercenarism +mercerisers +mercerising +mercerizers +mercerizing +merchandise +merchandize +merchanting +merchantman +merchantmen +merchildren +mercilessly +mercuration +mercurially +mercurising +mercurizing +merdivorous +meridionals +meritocracy +meritocrats +meritorious +meroblastic +merogenesis +merogenetic +Merovingian +merrymakers +merrymaking +merveilleux +m�salliance +mesenterial +mesenteries +mesenterons +meshuggenah +meshuggeneh +mesmerisers +mesmerising +mesmerizers +mesmerizing +Mesoamerica +mesoblastic +mesocephaly +mesomorphic +Mesopotamia +mesoscaphes +mesothelial +mesothelium +mesquinerie +Messiahship +metabolised +metabolises +metabolisms +metabolites +metabolized +metabolizes +metacarpals +metacentres +metacentric +metachrosis +metafiction +metagenesis +metagenetic +metaldehyde +metalliding +metallising +metallizing +metallogeny +metalloidal +metallurgic +metamorphic +metaphorist +metaphrases +metaphrasis +metaphrasts +metaphysics +metaplastic +metapsychic +metasequoia +metasilicic +metasomatic +metastasise +metastasize +metatarsals +metathesise +metathesize +metempirics +meteoritics +meteorogram +meteorolite +meteorology +methodising +methodistic +methodizing +methodology +methylamine +methylating +methylation +metonymical +metoposcopy +metricating +metrication +metricising +metricizing +metrologist +metronymics +metroplexes +metrostyles +Mezzogiorno +mezzotintos +Micawberish +Micawberism +microampere +microbursts +microbusses +microcephal +microclines +micrococcal +micrococcus +microcopies +microcosmic +microcracks +microdrives +microfarads +microfiches +microfiling +microfilmed +microfloppy +microfossil +microgamete +micrographs +micrography +microgroove +microinject +microlights +microlithic +micrologist +micrometers +micrometres +microneedle +Micronesian +microphones +microphonic +microphytes +microphytic +microporous +microprints +microprisms +microprobes +microscopes +microscopic +microsecond +microseisms +microskirts +microspores +microswitch +microtomies +microtomist +microtubule +microwriter +micturating +micturition +middenstead +middlebrows +Middlemarch +midlittoral +mignonettes +migraineurs +Mikrokosmos +mileometers +militancies +militarised +militarises +militarists +militarized +militarizes +millefleurs +millenarian +millenaries +millenarism +millenniums +milliampere +millilitres +millimetres +millionaire +millionfold +millisecond +millwrights +Milquetoast +mimeographs +mimetically +mimographer +mimosaceous +minauderies +mindfulness +minehunters +Minenwerfer +mineralised +mineraliser +mineralises +mineralists +mineralized +mineralizer +mineralizes +minestrones +mineworkers +minglements +miniaturing +miniaturise +miniaturist +miniaturize +minibuffets +minicabbing +minidresses +minimalists +ministerial +ministering +ministerium +ministrants +Minneapolis +Minnesinger +minoritaire +mirifically +mirthlessly +misadvising +misaligning +misalleging +misalliance +misallotted +misandrists +misanthrope +misanthropy +misapplying +misarranged +misarranges +misarraying +misassigned +misbecoming +misbegotten +misbehaving +misbelieved +misbeliever +misbelieves +misbeseemed +misbestowal +misbestowed +miscarriage +miscarrying +miscegenate +miscegenist +miscellanea +mischancing +mischarging +mischiefing +mischievous +miscibility +misclassify +miscoloring +miscoloured +miscomputed +miscomputes +misconceive +misconducts +misconstrue +miscontents +miscorrects +miscounsels +miscounting +miscreances +miscreation +miscreative +miscreators +miscredited +misdemeaned +misdemeanor +misdescribe +misdevotion +misdiagnose +misdialling +misdirected +misdoubtful +misdoubting +misdrawings +misemployed +misentreats +misericorde +misericords +miserliness +misesteemed +misestimate +misfeasance +misfeatured +misfeatures +misfeigning +misfielding +misfortuned +misfortunes +misgoverned +misgovernor +misgraffing +misguggling +misguidance +misguidedly +mishallowed +mishandling +misidentify +misimproved +misimproves +misinformed +misinformer +misinstruct +misjoinders +misjudgment +mislabelled +mislighting +mislippened +mismanaging +mismarriage +mismarrying +mismatching +mismeasured +mismeasures +misnomering +misobserved +misobserves +misogamists +misogynists +misologists +misoneistic +misordering +misperceive +mispersuade +misplanting +mispleading +mispleasing +mispointing +mispraising +misprinting +misprisions +misreadings +misreckoned +misrelating +misrelation +misremember +misreported +missheathed +missileries +missionised +missionises +missionized +missionizes +missishness +Mississauga +Mississippi +Missolonghi +misspeaking +misspelling +misspending +misstepping +mistakeable +misteaching +mistempered +misthinking +misthoughts +mistreading +mistreating +mistrustful +mistrusting +mistrysting +misventures +miswordings +misworships +Mithradatic +Mithraicism +mithridates +Mithridatic +mitigations +mitogenetic +mitotically +mitrailleur +mixotrophic +mobocracies +mockingbird +moderations +modernisers +modernising +modernistic +modernities +modernizers +modernizing +modularised +modularises +modularized +modularizes +modulations +Mohammedans +Mohammedism +moistifying +moisturised +moisturiser +moisturises +moisturized +moisturizer +moisturizes +molecatcher +molecularly +molehunters +molendinars +molendinary +molestation +molluscoids +mollycoddle +molochising +molochizing +molybdenite +momentarily +momentously +Monadelphia +monarchical +monarchised +monarchises +monarchists +monarchized +monarchizes +monasterial +monasteries +monasticism +monchiquite +Monegasques +monetarists +Mongolising +Mongolizing +mongrelised +mongrelises +mongrelized +mongrelizes +monitorship +monitresses +monoblepsis +monocardian +monocarpous +monoceroses +monochasial +monochasium +monochromat +monochromes +monochromic +monoclinous +monocracies +monocrystal +monoculture +Monodelphia +monodelphic +monogamists +monogenesis +monogenetic +monogenists +monogrammed +monographer +monographic +monohybrids +monolatries +monolatrous +monolingual +monological +monologised +monologises +monologists +monologized +monologizes +monologuise +monologuist +monologuize +monomachias +monomachies +monomaniacs +monomorphic +monomyarian +mononuclear +monophagous +monophthong +monophysite +monopodiums +monopolised +monopoliser +monopolises +monopolists +monopolized +monopolizer +monopolizes +monopsonies +monopsonist +monopterons +monothecous +monotheists +monothelete +monothelism +monothelite +Monotremata +monovalence +monovalency +monozygotic +Monseigneur +monstrances +monstrosity +monstrously +Montagnards +Montanistic +montbretias +Montenegrin +Montesquieu +montgolfier +monticolous +monticulate +monticulous +Montmorency +Montpellier +monumenting +Moominmamma +Moominpappa +Moomintroll +moonballing +moonflowers +moonlighter +moonshiners +moonstrikes +moonwalking +moratoriums +Moravianism +morbidities +morbiferous +mordacities +morgenstern +moribundity +Moringaceae +Morningside +moronically +morphologic +morphotropy +mortalising +mortalities +mortalizing +mortiferous +mossbunkers +motherboard +mothercraft +motherlands +motherworts +motivations +motorcycled +motorcycles +mountaineer +mountainous +Mountbatten +mountebanks +mournfuller +mousselines +Moussorgsky +moustachial +mouthpieces +mouthwashes +movableness +moveability +moviemakers +mowdiewarts +moxibustion +mozzarellas +muckspreads +muddleheads +Muhammadans +Muhammedans +multangular +multanimous +multiaccess +multicolour +multicuspid +multiethnic +multifidous +multijugate +multijugous +multilineal +multilinear +multilobate +multimeters +multinomial +multiparity +multiparous +multiplanes +multiplexed +multiplexer +multiplexes +multiplexor +multipliers +multiplying +multipotent +multiracial +multiscreen +multiserial +multisonant +multispiral +multistorey +multistrike +multivalent +multivocals +mumpishness +mumpsimuses +Munchausens +M�nchhausen +municipally +munificence +munitioneer +munitioners +munitioning +murderesses +murderously +murmuration +murmuringly +murmurously +Murrayfield +muscatorium +Muschelkalk +muscularity +musculation +musculature +museologist +mushroomers +mushrooming +musicalness +musicianers +muskellunge +musquetoons +mussitating +mussitation +Mussulwoman +mustachioed +Mustardseed +mutableness +mutagenesis +mutagenised +mutagenises +mutagenized +mutagenizes +mutationist +mutessarifs +mutilations +mutineering +mutteringly +mutualising +mutualizing +mycetozoans +mycodomatia +mycological +mycologists +mycophagist +mycoplasmas +mycorrhizal +mycorrhizas +mycotrophic +mylonitised +mylonitises +mylonitized +mylonitizes +myocarditis +myocardiums +myoelectric +myographist +myriadfolds +myringotomy +myrioscopes +myrmecology +myrmidonian +mystagogues +mythicisers +mythicising +mythicizers +mythicizing +mythography +mythologers +mythologian +mythologies +mythologise +mythologist +mythologize +mythomaniac +mythopoeist +mythopoetic +myxomatosis +myxomycetes +Myxophyceae +myxoviruses diff --git a/com/agnibho/code/anagram/dictionary/M12.txt b/com/agnibho/code/anagram/dictionary/M12.txt new file mode 100644 index 0000000..67bfabf --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M12.txt @@ -0,0 +1,760 @@ +macaberesque +macadamising +macadamizing +Macclesfield +macerandubas +machairodont +machicolated +machicolates +machinations +machtpolitik +mackintoshes +Macmillanite +macrobiotics +macrocephaly +macrodactyly +macrogametes +macropodidae +macropterous +mademoiselle +maderisation +maderization +madreporitic +madrigalists +maggotoriums +magisteriums +magistracies +magistrature +magnetically +magneticians +magnetisable +magnetizable +magnetograph +magnetometer +magnetometry +magnifically +magnificence +magniloquent +Magnoliaceae +maidenliness +maidservants +mainstreamed +maintainable +maintenances +maintopmasts +maintopsails +maisonnettes +majestically +majesticness +majolicaware +majoritaires +malacologist +Malacostraca +malakatoones +malapertness +malapropisms +malcontented +maledictions +malevolently +malfeasances +malformation +malfunctions +malleability +mallophagous +malnourished +malnutrition +malocclusion +malpositions +malpractices +maltreatment +malversation +mammalogical +mammalogists +mammillarias +manageresses +managerships +mancipations +mandarinates +mandibulated +manducations +maneuverable +mangalsutras +manifestable +manifestible +manifestness +manifestoing +manifoldness +manipulating +manipulation +manipulative +manipulators +manipulatory +mannerliness +manoeuvrable +manometrical +manslaughter +mantelpieces +manufactural +manufactured +manufacturer +manufactures +manumissions +maquiladoras +Marattiaceae +marcatissimo +Marcionitism +Marcobrunner +marconigrams +marconigraph +marginalised +marginalises +marginalists +marginalized +marginalizes +margraviates +marimbaphone +Mariolatrous +marksmanship +marlinespike +marlinspikes +marprelating +marquessates +marriageable +marrowskying +Marseillaise +marshallings +marshalships +marshlanders +marshmallows +Marsileaceae +marvellously +Maryolatrous +masculinised +masculinises +masculinists +masculinized +masculinizes +maskallonges +masqueraders +masquerading +Massachusets +massaranduba +masseranduba +mastectomies +masterliness +masterminded +masterpieces +mastersinger +masterstroke +mastications +Mastigophora +masturbating +masturbation +masturbators +masturbatory +Matabeleland +matchmakings +materialised +materialises +materialists +materialized +materializes +materialness +mathematical +mathematised +mathematises +mathematized +mathematizes +matriarchate +matriarchies +matriclinous +matriculated +matriculates +matriculator +matroclinous +maturational +Mauritanians +maxillipedes +maximisation +maximization +McCarthyites +meanderingly +meaningfully +measurements +mechanically +mechanicians +mechatronics +mediaevalism +mediaevalist +mediatorship +mediatresses +medicalising +medicalizing +medicamental +medievalists +mediocrities +meditatively +megaloblasts +megalomaniac +megalosaurus +Mekhitarists +melancholiac +melancholics +melanochroic +melanophores +melanotropin +meliorations +mellifluence +melodramatic +memorability +memorialised +memorialises +memorialists +memorialized +memorializes +memorisation +memorization +mendaciously +meningococci +meniscectomy +menispermums +menstruating +menstruation +mensurations +mentonni�res +mercantilism +mercantilist +merchandised +merchandiser +merchandises +merchandized +merchandizer +merchandizes +merchantable +merchantlike +merchantship +mercifulness +mercurialise +mercurialism +mercurialist +mercurialize +meretricious +meridionally +meristematic +meritocratic +merrymakings +merveilleuse +m�salliances +meshuggenahs +meshuggenehs +mesoamerican +mesocephalic +mesomorphous +Mesopotamian +mesothelioma +mesothoraces +mesothoracic +mesothoraxes +messeigneurs +metabolising +metabolizing +metacarpuses +metachronism +metagalactic +metagalaxies +metagnathous +metalanguage +metaleptical +metallically +metallogenic +metallophone +metallurgist +metamorphism +metamorphist +metamorphose +metaphorical +metaphrastic +metaphysical +metapsychics +metasilicate +metasomatism +metastasised +metastasises +metastasized +metastasizes +metatarsuses +metathesised +metathesises +metathesized +metathesizes +metathetical +metathoracic +metathoraxes +metempirical +meteorically +meteoritical +meteorograms +meteorograph +meteorolites +meteorologic +methanometer +methaqualone +methodically +methotrexate +meticulously +metoposcopic +metrological +metrologists +metropolises +metropolitan +metrorrhagia +Michelangelo +microamperes +microanatomy +microbalance +microbiology +microcapsule +microcephals +microcephaly +microcircuit +microclimate +microcopying +microcracked +microfilaria +microfilming +microfossils +microgametes +microgranite +micrographer +micrographic +microgravity +microgrooves +microhabitat +microhenries +microinjects +micrological +micrologists +microneedles +Micronesians +microphysics +micropipette +micropolises +microprinted +microprogram +micropterous +microscopist +Microscopium +microseconds +microseismic +microsurgeon +microsurgery +microtomical +microtomists +microtubular +microtubules +microwavable +microwriters +micturitions +middensteads +middleweight +Midwesterner +migrationist +militarising +militaristic +militarizing +millefeuille +millenarians +millesimally +milliammeter +milliamperes +millionaires +milliseconds +millisievert +Milquetoasts +mimeographed +miminypiminy +mimographers +mindlessness +mineralisers +mineralising +mineralizing +mineralogise +mineralogist +mineralogize +miniaturised +miniaturises +miniaturists +miniaturized +miniaturizes +minicomputer +minification +minifloppies +minimisation +minimization +ministration +ministrative +ministresses +Minnesingers +minoritaires +miraculously +mirthfulness +misaddressed +misaddresses +misadventure +misadvisedly +misalignment +misalliances +misallotment +misallotting +misanthropes +misanthropic +misapprehend +misarranging +misassigning +misbehaviour +misbelievers +misbelieving +misbeseeming +misbestowals +misbestowing +miscalculate +miscarriages +miscegenated +miscegenates +miscegenator +miscegenists +miscellanies +miscellanist +mischallenge +mischanceful +miscolouring +miscomputing +misconceived +misconceives +misconducted +misconstruct +misconstrued +misconstrues +miscontented +miscorrected +miscreancies +miscreations +miscrediting +misdemeanant +misdemeaning +misdemeanors +misdemeanour +misdescribed +misdescribes +misdevotions +misdiagnosed +misdiagnoses +misdiagnosis +misdirecting +misdirection +miseducation +misemploying +misentreated +misericordes +misesteeming +misestimated +misestimates +misfeasances +misfeaturing +misformation +misgoverning +misgovernors +misguidances +misimproving +misinformant +misinformers +misinforming +misinstructs +misinterpret +misjudgement +misjudgments +misknowledge +mislabelling +misleadingly +mislippening +mismarriages +mismatchment +mismeasuring +misobserving +misogynistic +misperceived +misperceives +mispersuaded +mispersuades +misplacement +mispleadings +mispronounce +mispunctuate +misquotation +misreckoning +misrelations +misremembers +misreporting +misrepresent +missionaries +missionarise +missionarize +missionising +missionizing +misspellings +misstatement +missummation +mistakenness +mistranslate +mistreatment +mistressless +mistrustless +misventurous +mithridatise +mithridatism +mithridatize +mitochondria +mitrailleurs +mitrailleuse +mixobarbaric +mnemonically +mnemotechnic +mobilisation +mobilization +mockingbirds +moderateness +moderatrixes +modification +modificative +modificatory +modulability +modularising +modularizing +moistureless +moisturisers +moisturising +moisturizers +moisturizing +molecatchers +molecularity +molestations +molluscicide +Molluscoidea +mollycoddled +mollycoddles +molybdenosis +momentaneous +monadelphous +monarchising +monarchistic +monarchizing +monastically +monetisation +monetization +mongrelising +mongrelizing +monitorially +monitorships +monochromasy +monochromate +monochromats +monochromist +monocrystals +monocultural +monocultures +monodelphian +monodelphous +monodramatic +monofilament +monogamously +monogenistic +monographers +monographies +monographist +monolinguist +monologising +monologizing +monologuised +monologuises +monologuists +monologuized +monologuizes +monomaniacal +monometallic +monomorphous +monopetalous +monophthongs +monophyletic +monophyodont +monophysites +monophysitic +monopodially +monopolisers +monopolising +monopolistic +monopolizers +monopolizing +monopsonists +monopteroses +monosepalous +monostichous +monostrophic +monosyllabic +monosyllable +monothalamic +monotheistic +monotheletes +monotheletic +monothelites +monotonously +Montenegrins +Montessorian +montgolfiers +monticellite +monticuluses +Montparnasse +monumentally +moonlighters +moonlighting +moonstricken +moralisation +moralization +morbilliform +mordaciously +morgensterns +morigeration +morphallaxis +morphography +morphologist +morphotropic +mosbolletjie +moschiferous +motherboards +motherliness +motionlessly +motivational +motorbicycle +motorcycling +motorisation +motorization +moucharabies +mountaineers +mountainside +mountebanked +mournfullest +mournfulness +mousquetaire +moveableness +movelessness +moxibustions +mucilaginous +muckspreader +mucopurulent +muddleheaded +Muggletonian +mulattresses +mulligatawny +multicauline +multicentral +multicentric +multichannel +multicipital +multicostate +multicuspids +multidentate +multifaceted +multifarious +multiflorous +multifoliate +multiformity +multigravida +multilateral +multilingual +multilobular +multilocular +multiloquent +multiloquous +multinomials +multinominal +multinuclear +multipartite +multiplexers +multiplexing +multiplexors +multipliable +multiplicand +multiplicate +multiplicity +multipresent +multipurpose +multiscience +multiseptate +multiseriate +multistories +multistrikes +multisulcate +multitasking +multivalence +multivalency +multivariate +multivarious +multiversity +multivitamin +multivoltine +multungulate +M�nchhausens +municipalise +municipalism +municipality +municipalize +munificences +munificently +munitioneers +murmurations +Murrumbidgee +muscatoriums +musculations +musculatures +museologists +musicassette +musicianship +musicologist +muskellunges +mussitations +mutagenicity +mutagenising +mutagenizing +mutationally +mutationists +mutessarifat +mutinousness +mycodomatium +mycophagists +mycoplasmata +mylonitising +mylonitizing +myographical +myographists +myringoscope +myrmecologic +Myrmecophaga +myrmecophile +myrmecophily +mystagogical +mystagoguses +mysteriously +mysticalness +mythogenesis +mythographer +mythologians +mythological +mythologised +mythologiser +mythologises +mythologists +mythologized +mythologizer +mythologizes +mythomaniacs +mythopoeists +myxedematous diff --git a/com/agnibho/code/anagram/dictionary/M13.txt b/com/agnibho/code/anagram/dictionary/M13.txt new file mode 100644 index 0000000..fd05d79 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M13.txt @@ -0,0 +1,500 @@ +macaronically +machairodonts +Machiavellian +Machiavellism +machicolating +machicolation +macrocephalic +macrodactylic +macrodiagonal +macroeconomic +macroglobulin +macromolecule +mademoiselles +maderisations +maderizations +magisterially +magistratical +magistratures +magnanimities +magnanimously +magnetisation +magnetization +magnetographs +magnetometers +magnetomotive +magnetosphere +magnification +magnificently +magniloquence +magnoliaceous +mainstreaming +mainstreeting +malacological +malacologists +malacophilous +malacostracan +maladaptation +maladjustment +maladminister +maladroitness +malariologist +malformations +malfunctioned +maliciousness +malleableness +mallemaroking +Malpighiaceae +Malthusianism +mammaliferous +manageability +managerialism +managerialist +manganiferous +Manichaeanism +manifestation +manifestative +manipulatable +manipulations +mantelshelves +manufactories +manufacturers +manufacturing +marchionesses +marconigraphs +marginalising +marginalizing +marimbaphones +marionberries +marketability +marketisation +marketization +marlinespikes +marsipobranch +martyrologist +marvelousness +masculineness +masculinising +masculinizing +Massachusetts +massarandubas +masserandubas +masterfulness +masterminding +mastersingers +masterstrokes +mastigophoran +mastigophoric +matchboarding +matchlessness +materfamilias +materialising +materialistic +materializing +mathematician +mathematicise +mathematicism +mathematicize +mathematising +mathematizing +matriarchates +matriculating +matriculation +matriculators +matriculatory +matrifocality +matrilineally +matrimonially +maurikigusari +maxillofacial +maximisations +maximizations +meaninglessly +mechanisation +mechanization +mediaevalists +mediatisation +mediatization +mediatorially +medicamentary +mediterranean +megacephalous +megaherbivore +megalomaniacs +megalopolitan +megalosaurian +megasporangia +megastructure +Meistersinger +melancholiacs +melancholious +melanochroous +Melastomaceae +mellification +mellifluences +mellifluently +mellifluously +melodiousness +melodramatics +melodramatise +melodramatist +melodramatize +membranaceous +memorableness +memorialising +memorializing +memorisations +memorizations +meningococcal +meningococcic +meningococcus +mensurability +mercantilists +mercerisation +mercerization +merchandisers +merchandising +merchandizers +merchandizing +mercilessness +mercurialised +mercurialises +mercurialists +mercurialized +mercurializes +meridionality +meritocracies +meritoriously +mesaticephaly +mesencephalic +mesencephalon +mesmerisation +mesmerization +mesocephalism +mesocephalous +mesotheliomas +Messerschmitt +metabolically +metachronisms +metafictional +metagrabolise +metagrabolize +metagrobolise +metagrobolize +metalanguages +metalliferous +metallisation +metallization +metallography +metallophones +metallurgical +metallurgists +metamorphists +metamorphosed +Metamorphosen +metamorphoses +metamorphosis +metaphosphate +metaphysician +metapsychical +metastability +metastasising +metastasizing +metathesising +metathesizing +metempiricism +metempiricist +meteoriticist +meteorographs +meteorologist +methodistical +methodologies +methodologist +metonymically +metoposcopist +metrification +metropolitans +microanalysis +microbalances +microcapsules +microcassette +microcephalic +microcircuits +microclimates +microcomputer +microcosmical +microcracking +microdetector +microeconomic +microfelsitic +microfloppies +microgranitic +micrographers +microinjected +microlighting +micrometrical +micronutrient +microphyllous +micropipettes +microporosity +microprinting +microprograms +microscopical +microscopists +microsurgeons +microsurgical +microswitches +microtonality +microwaveable +middlebreaker +Middlesbrough +middleweights +Midwesterners +migrationists +millefeuilles +millennialist +millennianism +millenniarism +milliammeters +millionairess +millisieverts +mimeographing +mineralogical +mineralogised +mineralogises +mineralogists +mineralogized +mineralogizes +miniaturising +miniaturizing +minicomputers +minifications +minimisations +minimizations +ministerially +ministrations +minisubmarine +mirthlessness +misaddressing +misadventured +misadventurer +misadventures +misadvertence +misallotments +misanthropist +misappreciate +misapprehends +misbehaviours +miscalculated +miscalculates +miscegenating +miscegenation +miscegenators +miscellaneous +miscellanists +mischievously +misclassified +misclassifies +miscomprehend +misconceiving +misconception +misconducting +misconjecture +misconstructs +misconstruing +miscontenting +miscorrecting +miscorrection +miscounselled +misdemeanants +misdemeanours +misdescribing +misdiagnosing +misdirections +misemployment +misentreating +miserableness +misestimating +misformations +misgovernment +misidentified +misidentifies +misinformants +misinstructed +misinterprets +misjudgements +mismanagement +mismatchments +misobservance +misperceiving +mispersuading +mispersuasion +misplacements +mispronounced +mispronounces +misproportion +mispunctuated +mispunctuates +misquotations +misreckonings +misremembered +misrepresents +misshapenness +missionarised +missionarises +missionarized +missionarizes +Mississippian +misstatements +missummations +mistranslated +mistranslates +mistrustfully +mistrustingly +misunderstand +misunderstood +misworshipped +mithridatised +mithridatises +mithridatized +mithridatizes +mitochondrial +mitochondrion +mitrailleuses +mnemotechnics +mnemotechnist +mobilisations +mobilizations +moderatorship +modernisation +modernization +modifications +Mohammedanise +Mohammedanism +Mohammedanize +molendinaries +mollification +molluscicidal +molluscicides +mollycoddling +momentariness +momentousness +monarchianism +monetisations +monetizations +Monmouthshire +monochromates +monochromatic +monochromator +monochromists +monocotyledon +monodactylous +monofilaments +monogrammatic +monographical +monographists +monolinguists +monologuising +monologuizing +monometallism +monometallist +monomolecular +mononucleosis +monophthongal +monophyodonts +monophysitism +monopsonistic +monostrophics +monosyllabism +monosyllables +monosymmetric +monotelephone +monothalamous +monotheletism +monothelitism +monotrematous +monstrosities +monstrousness +moralisations +moralizations +morbillivirus +Morisonianism +morphinomania +morphogenesis +morphogenetic +morphographer +morphological +morphologists +morphophoneme +mortification +motorbicycles +motorisations +motorizations +mountaineered +mountainsides +mountebankery +mountebanking +mountebankism +mousquetaires +mouthwatering +muckspreaders +muckspreading +muddlebrained +Muggletonians +multicamerate +multicapitate +multicellular +multicoloured +multicultural +multidigitate +multifilament +multigravidae +multigravidas +multilinguist +multilobulate +multiloculate +multiloquence +multinational +multinucleate +multipartyism +multiplicable +multiplicands +multiplicates +multiplicator +multipresence +multiramified +multiskilling +multitudinary +multitudinous +multivalences +multivibrator +multivitamins +multungulates +mummification +mundification +mundificative +municipalised +municipalises +municipalized +municipalizes +musicassettes +musicological +musicologists +musicotherapy +mutessarifats +mutualisation +mutualization +mycobacterium +mycotoxicosis +myringoscopes +myringotomies +Myristicaceae +myrmecologist +myrmecophiles +mystification +mythographers +mythologisers +mythologising +mythologizers +mythologizing +myxoedematous diff --git a/com/agnibho/code/anagram/dictionary/M14.txt b/com/agnibho/code/anagram/dictionary/M14.txt new file mode 100644 index 0000000..8682034 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M14.txt @@ -0,0 +1,291 @@ +macadamisation +macadamization +machicolations +macrocephalous +macrodactylous +macrodiagonals +macroeconomics +macroevolution +macromolecular +macromolecules +macrosporangia +magnetisations +magnetizations +magnetospheres +magnifications +magniloquently +majesticalness +Malacopterygii +malacostracans +malacostracous +maladaptations +maladjustments +maladministers +malappropriate +malariologists +malcontentedly +malfunctioning +mallemarokings +malnourishment +malodorousness +manageableness +managerialists +manifestations +Marcgraviaceae +Marchantiaceae +marconigraphed +marketableness +marsipobranchs +martyrological +martyrologists +marvellousness +mastigophorans +mastigophorous +mathematically +mathematicians +mathematicised +mathematicises +mathematicized +mathematicizes +matresfamilias +matriarchalism +matriculations +maurikigusaris +meaningfulness +measurableness +mechanisations +mechanizations +meddlesomeness +mediatisations +mediatizations +medicalisation +medicalization +medicamentally +meditativeness +megaherbivores +megalomaniacal +megalosauruses +megasporangium +megasporophyll +megastructures +Meistersingers +melastomaceous +mellifications +melodramatised +melodramatises +melodramatists +melodramatized +melodramatizes +Menispermaceae +Mephistopheles +Mephistophelic +mercerisations +mercerizations +merchandisings +merchandizings +mercurialising +mercurializing +meretriciously +Merionethshire +mesaticephalic +mesdemoiselles +mesencephalons +mesmerisations +mesmerizations +metagrabolised +metagrabolises +metagrabolized +metagrabolizes +metagrobolised +metagrobolises +metagrobolized +metagrobolizes +metalinguistic +metallisations +metallizations +metallogenetic +metallographer +metallographic +metamorphosing +metaphorically +metaphosphates +metaphosphoric +metaphysically +metaphysicians +metapsychology +metempiricists +metempsychoses +metempsychosis +meteoriticists +meteorological +meteorologists +methodicalness +methodological +methodologists +meticulousness +metoposcopical +metoposcopists +metrifications +metropolitical +mettlesomeness +microbarograph +microbiologist +microcassettes +microcephalous +microchemistry +microcomponent +microcomputers +microcomputing +microdetection +microdetectors +microeconomics +microevolution +microinjecting +microinjection +micrologically +micromarketing +microminiature +micronutrients +micropegmatite +microprintings +microprocessor +microseismical +microsporangia +microstructure +microtunneling +militarisation +militarization +millenarianism +millennialists +mineralisation +mineralization +mineralogising +mineralogizing +ministerialist +minisubmarines +miraculousness +misadventurers +misadventurous +misadvisedness +misanthropical +misanthropists +misapplication +misappreciated +misappreciates +misapprehended +misappropriate +misarrangement +miscalculating +miscalculation +miscegenations +miscellanarian +misclassifying +miscomprehends +miscomputation +misconceptions +misconjectured +misconjectures +misconstructed +miscontentment +miscorrections +miscounselling +misdescription +misidentifying +misimprovement +misinformation +misinstructing +misinstruction +misinterpreted +misinterpreter +mismeasurement +misogynistical +mispersuasions +mispronouncing +mispunctuating +mispunctuation +misremembering +misrepresented +missionarising +missionarizing +Mississippians +mistranslating +mistranslation +misunderstands +misworshipping +mithridatising +mithridatizing +mnemotechnists +moderatorships +modernisations +modernizations +Mohammedanised +Mohammedanises +Mohammedanized +Mohammedanizes +mollifications +monocarpellary +Monochlamydeae +monochromatism +monochromators +monocotyledons +monolingualism +monometallists +monophthongise +monophthongize +monopolisation +monopolization +monoprionidian +monosaccharide +monotelephones +monotheistical +monotheletical +monotonousness +moralistically +morganatically +morphinomaniac +morphographers +morphophonemes +morphophonemic +mortifications +motionlessness +motivationally +motivelessness +mountaineering +muddleheadedly +mulligatawnies +multarticulate +multicuspidate +multifactorial +multifariously +multifilaments +multifoliolate +multilaterally +multilinguists +multinationals +multinucleated +multiplication +multiplicative +multiplicators +multiplicities +multiprocessor +multiracialism +multivalencies +multiversities +multivibrators +mummifications +mundifications +municipalising +municipalities +municipalizing +mutualisations +mutualizations +mylonitisation +mylonitization +myocardiopathy +myrmecological +myrmecologists +myrmecophagous +myrmecophilous +mysteriousness +mystifications +mythologically diff --git a/com/agnibho/code/anagram/dictionary/M15.txt b/com/agnibho/code/anagram/dictionary/M15.txt new file mode 100644 index 0000000..a1daf9c --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M15.txt @@ -0,0 +1,146 @@ +macrocosmically +macroscopically +macrosporangium +magisterialness +maintainability +malacopterygian +maladministered +malappropriated +malappropriates +malassimilation +malconformation +maldistribution +malfunctionings +malpractitioner +malpresentation +maneuverability +manneristically +manoeuvrability +marconigraphing +margaritiferous +marriageability +Marsipobranchii +masochistically +materfamiliases +materialisation +materialistical +materialization +mathematicising +mathematicizing +mathematisation +mathematization +meaninglessness +mechanistically +mechanomorphism +mechanoreceptor +medicalisations +medicalizations +megasporophylls +mellifluousness +melodramatising +melodramatizing +menispermaceous +Mephistophelean +Mephistophelian +meritoriousness +meroblastically +mesaticephalous +metagrabolising +metagrabolizing +metagrobolising +metagrobolizing +metalinguistics +metallographers +metamathematics +methamphetamine +methodistically +metropolitanate +metropolitanise +metropolitanize +microanalytical +microbiological +microbiologists +Microchiroptera +microcomponents +microdissection +microelectronic +microinjections +micromicrofarad +micromillimetre +micropegmatitic +microphotograph +microprocessing +microprocessors +microscopically +microsporangium +microsporophyll +microstructures +microtechnology +millionairesses +mineralogically +miniaturisation +miniaturization +ministerialists +misapplications +misappreciating +misappreciation +misappreciative +misapprehending +misapprehension +misapprehensive +misappropriated +misappropriates +misarrangements +misbecomingness +miscalculations +miscellanarians +miscellaneously +mischievousness +miscomprehended +miscomputations +misconjecturing +misconstructing +misconstruction +misintelligence +misinterpreters +misinterpreting +mismeasurements +misproportioned +mispunctuations +misrepresenting +mistranslations +mistrustfulness +Mohammedanising +Mohammedanizing +monarchianistic +monochlamydeous +Monocotyledones +monocrystalline +monophthongised +monophthongises +monophthongized +monophthongizes +monopolisations +monopolizations +monosaccharides +monosymmetrical +Montgomeryshire +montmorillonite +morbilliviruses +morphinomaniacs +morphologically +morphophonemics +mortiferousness +mucosanguineous +multiarticulate +multilateralism +multilateralist +multilingualism +multinucleolate +multiplications +multiprocessors +multitudinously +musculoskeletal +myristicivorous +mythologisation +mythologization diff --git a/com/agnibho/code/anagram/dictionary/M16.txt b/com/agnibho/code/anagram/dictionary/M16.txt new file mode 100644 index 0000000..7e876c5 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M16.txt @@ -0,0 +1,63 @@ +Machiavellianism +macroinstruction +macrophotography +maladministering +malapportionment +malappropriating +malappropriation +malcontentedness +marriageableness +materialisations +materializations +melodramatically +meretriciousness +mesembrianthemum +mesembryanthemum +meteorologically +methodologically +metropolitanised +metropolitanises +metropolitanized +metropolitanizes +microcirculation +microclimatology +microcosmography +microcrystalline +microelectronics +microenvironment +microinstruction +Microlepidoptera +microminiaturise +microminiaturize +microphotography +micropropagation +microseismograph +microseismometer +microseismometry +misanthropically +misapprehensions +misappropriating +misappropriation +miscegenationist +miscomprehending +miscomprehension +misconstructions +mispronunciation +misunderstanding +monocotyledonous +monophthongising +monophthongizing +mucilaginousness +muddleheadedness +multiculturalism +multidenticulate +multidimensional +multidirectional +multifariousness +multilateralists +multimillionaire +multiplepoinding +multiprogramming +multituberculate +municipalisation +municipalization diff --git a/com/agnibho/code/anagram/dictionary/M17.txt b/com/agnibho/code/anagram/dictionary/M17.txt new file mode 100644 index 0000000..dce97e2 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M17.txt @@ -0,0 +1,28 @@ +maladministration +marsipobranchiate +materialistically +metapsychological +methylamphetamine +metropolitanising +metropolitanizing +microinstructions +micromanipulation +microminiaturised +microminiaturises +microminiaturized +microminiaturizes +microphotographer +microphotographic +misapprehensively +misappropriations +miscellaneousness +misclassification +misidentification +misinterpretation +mispronunciations +misrepresentation +misunderstandings +multidisciplinary +multimillionaires +multituberculated +multitudinousness diff --git a/com/agnibho/code/anagram/dictionary/M18.txt b/com/agnibho/code/anagram/dictionary/M18.txt new file mode 100644 index 0000000..20a924f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M18.txt @@ -0,0 +1,9 @@ +metalinguistically +methyltestosterone +microencapsulation +microminiaturising +microminiaturizing +micropalaeontology +misidentifications +misinterpretations +misrepresentations diff --git a/com/agnibho/code/anagram/dictionary/M19.txt b/com/agnibho/code/anagram/dictionary/M19.txt new file mode 100644 index 0000000..f6416a6 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M19.txt @@ -0,0 +1 @@ +misapprehensiveness diff --git a/com/agnibho/code/anagram/dictionary/M2.txt b/com/agnibho/code/anagram/dictionary/M2.txt new file mode 100644 index 0000000..570d28b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M2.txt @@ -0,0 +1,8 @@ +ma +me +mi +mo +Mr +Ms +mu +my diff --git a/com/agnibho/code/anagram/dictionary/M20.txt b/com/agnibho/code/anagram/dictionary/M20.txt new file mode 100644 index 0000000..7414219 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M20.txt @@ -0,0 +1,3 @@ +microminiaturisation +microminiaturization +micropalaeontologist diff --git a/com/agnibho/code/anagram/dictionary/M21.txt b/com/agnibho/code/anagram/dictionary/M21.txt new file mode 100644 index 0000000..b563cf8 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M21.txt @@ -0,0 +1 @@ +micropalaeontologists diff --git a/com/agnibho/code/anagram/dictionary/M3.txt b/com/agnibho/code/anagram/dictionary/M3.txt new file mode 100644 index 0000000..9617430 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M3.txt @@ -0,0 +1,62 @@ +maa +Mab +mac +mad +mae +mag +mak +mal +mam +man +Mao +map +mar +mas +mat +maw +max +may +Med +Meg +mel +men +mes +met +meu +mew +mho +Mia +mid +MiG +mil +mim +mir +mis +mix +miz +mna +moa +mob +mod +moe +mog +moi +mol +mom +mon +moo +mop +mor +mot +mou +mow +moy +moz +Mrs +mud +mug +mum +mun +mux +mya +mys diff --git a/com/agnibho/code/anagram/dictionary/M4.txt b/com/agnibho/code/anagram/dictionary/M4.txt new file mode 100644 index 0000000..8f86b5f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M4.txt @@ -0,0 +1,274 @@ +maar +maas +mace +Mach +mack +macs +made +mads +mage +magg +magi +mags +Maia +maid +maik +mail +maim +main +mair +make +mako +maks +mala +male +mali +mall +malm +malt +mama +mams +mana +mand +mane +mang +mani +Mann +mano +mans +Manx +many +maps +mara +marc +mare +marg +mark +marl +marm +mars +mart +Marx +Mary +masa +mase +mash +mask +mass +mast +masu +mate +math +mats +matt +maty +maud +Maui +maul +maun +mawk +mawr +maws +maxi +maya +Mayo +mays +maze +mazy +mead +meal +mean +meat +Mede +meed +meek +meer +meet +mega +mein +Meir +mela +meld +mell +mels +melt +meme +memo +mend +mene +meng +ment +menu +meow +merc +mere +meri +merk +merl +mesa +mese +mesh +mess +Meta +mete +Metz +meus +meve +mewl +mews +meze +mhos +mica +mice +mick +mico +midi +mids +mien +miff +MiGs +mike +mild +mile +milk +mill +milo +mils +milt +mime +Mimi +mina +mind +mine +ming +mini +mink +mino +mint +minx +miny +Mira +mire +miri +mirk +Miro +mirs +mirv +miry +mise +miso +miss +mist +mite +mitt +mity +mixt +mixy +mizz +mnas +Moab +moan +moas +moat +mobs +mock +mode +modi +mods +moed +moes +mogs +Moho +mohr +moil +moit +mojo +moke +moki +moko +mola +mold +mole +moll +molt +moly +mome +moms +mona +mong +monk +mono +Mons +mony +mood +Moog +mooi +mook +mool +moon +moop +moor +moos +moot +mope +mops +mopy +mora +more +morn +Moro +mors +mort +mose +mosh +moss +most +mote +moth +mott +Motu +moue +moup +mous +move +mowa +mown +mows +moxa +moya +moyl +moze +mozz +much +muck +muds +muff +mugs +muid +muir +mule +mull +mumm +mump +mums +mung +muon +mure +murk +Musa +muse +mush +musk +muso +muss +must +mute +muti +mutt +muzz +mwah +myal +myna +Myra +myth +mzee diff --git a/com/agnibho/code/anagram/dictionary/M5.txt b/com/agnibho/code/anagram/dictionary/M5.txt new file mode 100644 index 0000000..e9daf4a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M5.txt @@ -0,0 +1,611 @@ +maaed +ma'am +maars +Mabel +Macao +macaw +macer +maces +macho +macks +macle +Macon +macro +madam +madge +madid +madly +Madoc +Maeve +Mafia +mafic +Magda +mages +maggs +magic +magma +Magog +magot +magus +Mahdi +mahoe +mahua +mahwa +maids +maiko +maiks +maile +mails +maims +Maine +mains +Mainz +maire +M�iri +maise +maist +maize +major +makar +maker +makes +makos +malar +malax +Malay +males +malic +malik +malis +Malle +malls +Malm� +malms +Malta +malts +malty +malva +mamas +mamba +mambo +mamee +Mamet +mamma +mammy +manas +Mande +Mandy +maned +maneh +manes +manet +manga +mange +mango +mangs +mangy +mania +manic +Manis +manky +manly +manna +manor +manos +manse +manta +manto +manty +manul +manus +Maori +maple +maqui +marae +marah +maras +Marat +march +marcs +mardy +mares +marge +Margo +margs +maria +marid +Marie +marks +marle +marls +marly +marms +Marne +maror +marry +marsh +marts +Masai +mased +maser +mases +mashy +masks +mason +massa +mass� +massy +masts +masty +masus +match +mated +mater +mates +matey +maths +matin +matlo +matte +Matty +matza +matzo +Maude +mauds +mauls +maund +mauve +maven +mavin +mavis +mawks +mawky +mawrs +maxim +maxis +Mayan +mayas +maybe +mayed +Mayer +mayor +mayst +mazed +mazer +mazes +mazut +mbira +McCoy +meads +meals +mealy +meane +means +meant +meany +mease +meath +meats +meaty +mebos +Mecca +medal +Medan +Medea +media +medic +medle +M�doc +meeds +meeja +meers +meets +Megan +Meiji +meins +meint +meiny +meith +Mekon +Melba +melds +m�l�e +Melia +melic +melik +mells +melon +Melos +melts +memes +memos +mends +mened +menes +menge +mengs +Mensa +mense +mensh +mento +menus +meows +mercs +mercy +mered +merel +meres +merge +meril +meris +merit +merks +merle +merls +merry +merse +Meryl +mesal +mesas +mesel +meses +meshy +mesic +mesne +meson +messy +mesto +metal +meted +meter +metes +metho +meths +metic +metif +metis +metol +metre +metro +meuse +mewed +mewls +mezes +mezze +mezzo +mhorr +Miami +miaou +miaow +miasm +miaul +Micah +micas +miche +micks +micky +micos +micra +micro +Midas +middy +midge +midis +midst +miens +miffs +miffy +might +mikes +mikra +Milan +milch +milds +miler +miles +milko +milks +milky +mille +mills +Milne +milor +milos +milts +miltz +Mimas +mimed +mimer +mimes +mimic +mimsy +Mimus +minae +minar +minas +mince +minds +mined +miner +mines +mings +mingy +minim +minis +minke +minks +minor +minos +Minsk +mints +minty +minus +mired +mires +mirin +mirky +mirth +mirvs +Mirza +misdo +miser +mises +misgo +misos +missa +missy +mists +misty +mitch +miter +mites +mitre +mitts +Mitty +mixed +mixen +mixer +mixes +Mizar +mizen +mneme +moans +moats +mobby +moble +Mocha +mocks +modal +model +modem +moder +modes +modii +modus +moggy +mogul +mohel +mohrs +mohur +moils +Moira +moire +moist +moits +mojos +mokes +mokos +molal +molar +molas +molds +moldy +moles +molla +molls +molly +molto +molts +momes +momma +mommy +Momus +monad +monal +monas +Monck +mondo +Monel +moner +Monet +money +mongo +mongs +monks +monos +monte +month +Monty +Monza +mooch +moods +moody +mooed +mooks +moola +mooli +mools +moons +moony +moops +Moore +moors +moory +moose +moots +moped +moper +mopes +mopey +moppy +mopsy +mopus +Morag +moral +moras +morat +moray +morel +mores +moria +morne +morns +moron +Moros +morph +morra +morro +morse +morts +Morus +mosed +Mosel +moses +mosey +Mossi +mosso +mossy +Mosul +moted +motel +motes +motet +motey +moths +mothy +motif +motor +motte +motto +motty +Motus +motza +mouch +moued +moues +mould +Mouli +mouls +moult +mound +mount +moups +mourn +mouse +mousy +mouth +moved +mover +moves +movie +mowas +mowed +mower +mowra +moxas +moxie +moyle +moyls +mozed +mozes +mpret +mucic +mucid +mucin +mucks +mucky +mucor +mucro +mucus +muddy +mudge +mudir +mudra +muffs +mufti +muggy +muids +muirs +muist +mujik +mulch +mulct +mules +muley +mulga +mulls +mulse +mulsh +mumms +mummy +mumps +mumsy +munch +Munda +mungo +Munro +muons +mural +Murat +Murdo +mured +mures +murex +murky +murly +murra +murre +murry +murva +Musak +Musca +Musci +mused +muser +muses +muset +musha +mushy +music +musit +musks +musky +musos +mussy +musth +musts +musty +mutch +muted +mutes +muton +mutts +muxed +muxes +Muzak +muzzy +mvule +myall +Myles +mynah +mynas +myoid +myoma +myope +myops +Myrna +Myron +myrrh +Mysia +myths +mzees diff --git a/com/agnibho/code/anagram/dictionary/M6.txt b/com/agnibho/code/anagram/dictionary/M6.txt new file mode 100644 index 0000000..fb568f4 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M6.txt @@ -0,0 +1,1041 @@ +maaing +Maazel +macaco +macaws +Macei� +macers +machan +machos +mackle +macled +macles +macoya +macron +macros +macula +macule +madame +madams +madcap +madded +madden +madder +madefy +madges +Madhur +madman +madmen +madras +Madrid +Madura +maelid +maenad +Maffia +magged +Maggie +maggot +Magian +magics +magilp +Magism +maglev +magmas +magnes +magnet +magnon +magnox +magnum +Magnus +magots +magpie +maguey +Magyar +Mahdis +Mahler +mahmal +Mahmud +mahoes +Mahoun +mahout +mahsir +mahuas +mahwas +mahzor +maidan +maided +maiden +maigre +maikos +mailed +mailer +maimed +mainly +mainor +maises +Maisie +maizes +Majlis +majors +makars +makers +making +Makkah +Malabo +malady +Malaga +malars +malate +Malawi +Malaya +Malays +Maldon +maleic +malgr� +Malian +Malibu +malice +malign +maliks +malism +malist +malkin +mallam +malled +mallee +mallei +mallet +mallow +malmag +Malory +maloti +malted +maltha +malvas +mambas +mambos +mamees +mammae +mammal +mammas +mammee +mammer +mammet +mammon +mamzer +manage +Manama +ma�ana +Man�os +manati +Manaus +manche +Manchu +mancus +Mandes +mandir +mandom +man�ge +manehs +manent +manful +mangal +mangas +manged +mangel +manger +mangey +mangle +mangos +maniac +manias +manila +manioc +manito +Manley +mannas +manned +manner +manoao +manors +manqu� +manred +manses +Manson +mantas +mantel +mantic +mantid +mantis +mantle +mantos +mantra +mantua +manual +Manuel +manuka +manuls +manure +Maoism +Maoist +Maoris +maples +mapped +mapper +Maputo +maquis +maraca +maraes +marahs +Mara�� +maraud +marble +marbly +Marcan +marcel +Marcia +Marcos +Marcus +Marduk +margay +margin +Margot +Marian +marids +marina +marine +Marion +marish +Marist +Marius +marked +marker +market +markka +marled +marles +Marley +marlin +Marlon +Marlow +marmot +maroon +marors +marque +marram +marred +marrow +marrum +Marsha +marshy +martel +marten +Martha +martin +Martyn +martyr +marvel +marver +Marvin +Masada +masala +mascle +mascon +mascot +masers +Maseru +mashed +masher +mashes +mashie +mashua +masing +masjid +masked +masker +maslin +masons +Masora +masque +massas +massed +masses +Massey +massif +masted +master +mastic +masula +maters +matico +matier +matily +mating +matins +matjes +matlos +matlow +matoke +matric +matrix +matron +matted +matter +mattes +mature +matzah +matzas +matzoh +matzos +matzot +maugre +mauled +mauler +maulvi +maumet +maunds +maundy +maungy +Maurya +Mauser +mauves +mauvin +mavens +mavins +mawkin +mawmet +mawpus +maxima +maxims +Maxine +maxixe +Mayans +maybes +mayday +mayest +mayfly +mayhap +mayhem +maying +mayn't +mayors +mazard +mazers +mazhbi +mazier +mazily +mazing +mazout +mazuma +mbiras +McEwan +meadow +meager +meagre +mealed +mealer +mealie +meaned +meaner +meanes +meanie +meanly +meased +meases +measle +measly +meatal +meathe +meatus +meazel +medaka +medals +meddle +medfly +mediae +medial +median +Medici +medick +medico +medics +medina +Medism +medium +medius +medlar +medley +medusa +Medway +meeken +meeker +meekly +meemie +meered +meetly +megass +Megger +megilp +megohm +megrim +meined +meinie +meishi +meiths +Mejlis +Mekong +melano +melded +melder +m�l�es +meliks +mellay +melled +Mellor +mellow +melody +melons +melted +melton +Melvin +Melvyn +member +Memnon +memoir +memory +menace +menage +mended +Mendel +mender +meneer +menged +menges +menhir +menial +mening +meninx +mensal +mensch +mensed +menses +Mensur +mental +mentee +mentor +mentos +mentum +menyie +meowed +mercat +mercer +Mercia +Merckx +merell +merels +merely +merest +merged +merger +merges +merils +mering +merino +merism +merits +merkin +merles +merlin +merlon +Merlot +merman +mermen +merome +Merops +Mersey +Merton +Mervyn +mesail +mescal +mesels +meseta +meshed +meshes +mesial +mesian +Mesmer +mesons +messan +messed +messes +Messrs +mestee +metage +metals +metate +meteor +meters +method +methos +methyl +metics +m�tier +metifs +meting +metope +metred +metres +metric +metros +mettle +meused +meuses +mewing +mewled +mewses +Mexico +mezail +mezuza +mezzes +mezzos +mganga +mhorrs +miaous +miaows +miasma +miasms +miauls +micate +miched +micher +miches +mickey +mickle +Micmac +micron +micros +midday +midden +middle +midges +midget +Midian +midrib +midsts +midway +miffed +mights +mighty +mignon +Miguel +mihrab +mikado +mikron +miladi +milady +milage +Milano +milden +milder +mildew +mildly +milers +milieu +milked +milken +milker +milkos +Millay +milled +miller +millet +Millie +milord +milors +milsey +milted +milter +Milton +Milvus +mimbar +mimers +mimics +miming +mimosa +mimsey +minars +minbar +minced +mincer +minces +minded +Mindel +minder +miners +minged +mingle +Mingus +minify +minima +minims +mining +minion +minish +minium +minkes +minnie +minnow +Minoan +minors +minted +minter +Minton +minuet +minute +minxes +minyan +miombo +mioses +miosis +miotic +mirage +Miriam +mirier +miring +miriti +mirker +mirror +mirved +Mirzas +misaim +miscue +misdid +mis�re +misers +misery +misfed +misfit +mishap +mishit +mishmi +Mishna +miskey +mislay +misled +mislit +missal +missaw +missay +missed +missee +missel +misses +misset +missis +missus +misted +mister +mistle +misuse +miters +mither +Mithra +mitier +mitral +mitred +mitres +mitten +miurus +mixens +mixers +mixing +mizens +mizzen +mizzle +mizzly +mnemes +mnemic +mnemon +moaned +moaner +moated +mobbed +mobbie +mobble +mobile +M�bius +mobled +Mobutu +mocked +mocker +mocock +mocuck +models +modems +modena +modern +modest +modify +modish +modist +modius +Modred +module +moduli +modulo +moeing +moggan +moggie +moguls +mohair +Mohave +mohawk +mohels +Mohock +mohurs +moider +moiety +moiled +moiler +Moirai +moires +moiser +Mojave +mojoes +molars +molded +molder +Molech +molest +molies +moline +mollah +mollas +mollie +moloch +molted +molten +moment +mommas +mommet +momzer +Monaco +monact +monads +monals +monaul +Monday +monera +moneth +moneys +monger +mongol +mongos +monial +Monica +monied +monies +monism +monist +monkey +monody +monosy +Monroe +montem +montes +months +montre +mooing +moolah +moolis +moolvi +mooned +mooner +Moonie +mooped +moored +moorva +mooted +mooter +mopane +mopani +mopeds +mopers +mopier +moping +mopish +mopoke +mopped +mopper +moppet +morale +morals +morass +morats +morays +morbid +morbus +Mordor +Moreau +moreen +morels +Morgan +morgay +morgen +morgue +morion +morish +morkin +Morley +Mormon +mornay +morned +mornes +Moroni +morons +morose +morpho +morphs +morris +morros +morrow +morsal +morsel +morses +mortal +mortar +Morton +morula +Morven +mosaic +Moscow +moseys +moshav +moshed +moshes +mosing +Moskva +Moslem +mosque +Mossad +mossed +mosses +mossie +Mossis +mostly +motels +motets +motett +mothed +mother +motifs +motile +motion +motive +motley +motmot +motors +motory +Motown +motser +mottes +mottle +mottos +motuca +motzas +mought +mouing +moujik +moulds +mouldy +moulin +Moulis +moults +mounds +mounts +mounty +mouped +mourns +moused +mouser +mousey +mousle +mousm� +mousse +moutan +mouths +mouthy +mouton +movers +movies +moving +mowers +Mowgli +mowing +mowras +moyles +Mozart +mozing +mozzes +mozzie +mozzle +mprets +mucate +muchel +muchly +mucins +mucked +mucker +muckle +mucluc +mucoid +mucosa +mucous +mucros +mudcat +mudded +mudder +muddle +mudged +mudger +mudges +mudras +muesli +muffed +muffin +muffle +muflon +Muftat +muftis +Mugabe +mugful +mugged +muggee +mugger +muggle +Mughal +mujiks +mukluk +mulcts +muleys +mulgas +mulish +mullah +mulled +muller +mullet +mulley +mulmul +Multan +multum +Mumbai +mumble +mummed +mummer +mummia +mumped +mumper +mundic +mungos +Munich +munify +munite +Munros +munshi +muntin +muonic +muppet +murage +murals +Murcia +murder +murena +Muriel +murine +muring +murker +murlin +murmur +murphy +murram +murray +murres +murrey +murrha +musang +muscae +muscat +muscid +muscle +muscly +musers +museum +mushed +musher +mushes +musics +musing +musive +musked +muskeg +musket +muskie +muskle +Muslim +muslin +musmon +musrol +mussed +mussel +musses +mustee +muster +musths +mutant +mutate +mutely +mutine +muting +mutiny +mutism +mutons +mutter +mutton +mutual +mutuca +mutuel +mutule +mutuum +muxing +muzaky +muzhik +muzzed +muzzes +muzzle +mvules +myalls +myelin +myelon +mygale +mynahs +myogen +myomas +myopes +myopia +myopic +myosin +myosis +myotic +myriad +Myriam +Myrica +myrrhs +myrtle +Myrtus +myself +Mysore +mystic +mythic +mythos +mythus +myxoma +mzungu diff --git a/com/agnibho/code/anagram/dictionary/M7.txt b/com/agnibho/code/anagram/dictionary/M7.txt new file mode 100644 index 0000000..5958e10 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M7.txt @@ -0,0 +1,1517 @@ +maatjes +macabre +macacos +macadam +macaque +Macbeth +macchie +Macduff +Macedon +machair +machans +machete +machine +machree +machzor +mackled +mackles +Maclean +macoyas +macram� +macrami +macrons +Macrura +maculae +macular +macules +madcaps +maddens +madders +maddest +madding +madeira +Madison +madling +madness +Madonna +madoqua +madrasa +madro�a +madrone +madro�o +Madurai +madwort +madzoon +maelids +maenads +maestri +maestro +maffick +maffled +mafflin +mafiosi +mafioso +magalog +magenta +magging +maggots +maggoty +Maghreb +Maghrib +magical +magilps +Maginot +magmata +magnate +magneto +magnets +magnify +magnons +magnums +magpies +magsman +magsmen +magueys +Magyars +mahatma +Mahdism +Mahdist +Mahican +mahmals +Mahomet +mahonia +Mahound +mahouts +mahseer +mahsirs +maidans +maidens +maiding +maidish +maidism +maigres +Maigret +mailcar +mailers +mailing +maillot +mailman +mailmen +maiming +mainors +mainour +maintop +maister +majesty +majorat +Majorca +majored +makable +makings +Malabar +Malacca +Malachi +malacia +malaise +Malamud +malaria +malarky +malates +malaxed +malaxes +Malayan +Malcolm +maleate +malefic +Malians +maliced +malices +malicho +maligns +Malines +Malinke +malison +malkins +mallams +mallard +mallees +mallets +malleus +malling +mallows +malmags +malmsey +Malraux +maltase +Maltese +malthas +Malthus +maltier +malting +maltman +maltmen +maltose +Malvern +mamboed +mamelon +mamilla +mammals +mammary +mammate +mammees +mammets +mammies +mammock +mammoth +mamzers +manacle +managed +manager +manages +Managua +manakin +manatee +manatis +manches +manchet +Manchus +mandala +mandate +Mandela +mandioc +mandira +mandirs +mandola +mandora +mandrel +mandril +man�ged +man�ges +Manfred +mangals +mangels +mangers +mangier +mangily +manging +mangled +mangler +mangles +mangoes +mangold +manhole +manhood +manhunt +maniacs +manihoc +Manihot +manikin +manilas +manilla +manille +maniocs +maniple +Manipur +manitos +manitou +manjack +mankier +mankind +manlier +manlike +manners +manning +mannish +mannite +mannose +manoaos +manpack +manrent +mansard +Mansart +Mansell +mansion +manteau +mantels +mantids +manties +mantled +mantles +mantlet +mantoes +Mantova +mantram +mantrap +mantras +Mantuan +mantuas +manuals +manukas +manumea +manumit +manured +manurer +manures +manuses +Manxman +Manxmen +manyata +Manzoni +Maoists +mappers +mapping +mappist +mapwise +marabou +maracas +Maranta +Maratha +Marathi +marauds +marbled +marbler +marbles +Marburg +marcato +Marceau +marcels +marched +M�rchen +marcher +marches +Marconi +mardied +mardies +maremma +Marengo +Margate +Margaux +margays +margent +Margery +margins +margosa +Mariana +Marilyn +marimba +marinas +mariner +marines +marital +Maritsa +Marjory +markers +markets +markhor +marking +markkaa +markkas +markman +markmen +Markova +Marlene +marlier +marline +marling +marlins +marlite +Marlowe +Marmion +marmite +marmose +marmots +maroons +marplot +marquee +marques +marquis +marrams +Marrano +marrels +married +marrier +marries +marring +marrows +marrowy +marrums +Marsala +marshal +marshes +martels +martens +martial +Martian +Martina +Martine +martini +martins +Martinu +martlet +martyrs +martyry +Marvell +marvels +marvers +Marxian +Marxism +Marxist +marybud +mascara +mascled +mascles +mascons +mascots +masculy +mashers +Mashhad +mashies +mashing +mashlin +mashman +mashmen +Mashona +masjids +maskers +masking +maslins +masoned +masonic +masonry +Masorah +masquer +masques +massage +masseur +massier +massifs +Massine +massing +massive +Massora +mastaba +masters +mastery +mastful +mastich +mastics +mastiff +masting +mastoid +masulas +Masuria +matador +Matapan +matched +matcher +matches +matchet +matelot +maticos +matiest +Matilda +matinal +matin�e +Matisse +Matlock +matlows +matooke +matrass +matrice +matrics +matrons +matross +matsuri +matters +mattery +Matthau +Matthew +matting +mattins +mattock +mattoid +matured +maturer +matures +matweed +matzahs +matzoon +matzoth +maudlin +Maugham +maulers +maulgre +mauling +maulvis +maumets +maunder +Maureen +Mauriac +Maurice +Maurist +Maurois +mauther +mauvais +mauvine +mavises +mawkins +mawkish +mawmets +mawseed +mawther +maxilla +maximal +maximin +maximum +maxixes +maxwell +maydays +Mayenne +Mayfair +mayings +Maynard +mayoral +Mayotte +maypole +mayweed +mazards +Mazarin +Mazdean +mazeful +mazhbis +maziest +mazurka +mazzard +Mazzini +Mbabane +McEnroe +McLuhan +McQueen +meacock +meadows +meadowy +meagres +mealers +mealier +mealies +mealing +meander +meanest +meanies +meaning +measing +measled +measles +measure +meathes +meatier +meatily +meazels +Meccano +Mechlin +meconic +meconin +medacca +medaled +medalet +Medawar +meddled +meddler +meddles +mediacy +medians +mediant +mediate +medical +medicks +medicos +medinas +mediums +medlars +medleys +medulla +medusae +medusan +medusas +meekens +meekest +meemies +meercat +meering +meerkat +meeting +megabar +megabit +Megaera +megafog +megarad +megaron +megasse +megaton +Meggers +megilps +megohms +megrims +meinies +meining +meioses +meiosis +meiotic +Meissen +meister +Meitner +melange +melanic +Melanie +melanin +melanos +melders +melding +melilot +melisma +Melissa +mellays +melling +mellite +Mellors +mellows +mellowy +melodic +Melrose +melting +members +membral +memento +memoirs +Memphis +menaced +menacer +menaces +menages +Mencken +menders +mending +Mendips +Mendoza +menfolk +menging +menhirs +menials +menisci +menorah +Menorca +Menotti +mensing +mensual +mentees +menthol +mention +mentors +mentums +Menuhin +Menzies +meowing +meranti +mercats +mercers +mercery +merchet +Mercian +mercies +mercify +mercury +merells +merfolk +mergers +merging +merinos +merited +merkins +merling +merlins +merlons +mermaid +meromes +meronym +merrier +merrily +mersion +mesails +mesally +mesarch +mescals +mesclum +mesclun +meseems +meseled +mesetas +meshier +meshing +meshuga +mesonic +Mesozoa +mesquin +mesquit +message +messans +Messiah +Messias +messier +messily +Messina +messing +mestees +mestiza +mestizo +metages +metaled +metally +metamer +metates +m�tayer +metazoa +metcast +meteors +metered +methane +methink +methods +Methody +Methuen +metical +m�tiers +m�tisse +metonic +metonym +metopes +metopic +metopon +metrics +metring +metrist +mettled +mettles +meusing +mewling +Mexican +mezails +mezuzah +mezuzas +mgangas +miaoued +miaowed +miasmal +miasmas +miasmic +miauled +micated +micates +micella +micelle +Michael +michers +miching +mickeys +mickies +mickles +microbe +microhm +microns +miction +middays +middens +middest +middies +middles +Mideast +Midgard +midgets +midiron +midland +midmost +midnoon +Midrash +midribs +midriff +midship +midsize +midtown +midways +Midwest +midwife +midwive +miffier +miffing +migrant +migrate +mihrabs +mikados +mikrons +milages +mildens +mildest +mildews +mildewy +Mildred +mileage +Miletus +milfoil +Milhaud +miliary +milieus +milieux +militar +militia +milkers +milkier +milkily +milking +milkman +milkmen +Millais +milldam +millers +millets +Millian +millime +milling +million +millrun +milords +milreis +milseys +milters +milting +miltzes +milvine +mimbars +mimesis +mimetic +mimical +mimicry +mimmest +mimosas +mimulus +minaret +minbars +mincers +minceur +mincing +minders +mindful +minding +Mindoro +mineola +mineral +Minerva +minette +minever +mingier +minging +mingled +mingler +mingles +miniate +minibar +minibus +minicab +minicam +minicar +minikin +minimal +minimax +minimum +minimus +minings +minions +Minitel +miniums +miniver +minivet +minnies +minnows +Minorca +minster +mintage +minters +mintier +minting +minuend +minuets +minuses +minuted +minuter +minutes +minutia +minyans +Miocene +miombos +mirable +miracle +mirador +mirages +Miramax +Miranda +mirbane +miriest +mirific +miritis +mirkest +mirkier +mirrors +mirving +misaims +misally +misborn +miscall +miscast +miscopy +miscued +miscues +misdate +misdeal +misdeed +misdeem +misdial +misdiet +misdoer +misdoes +misdone +misdraw +misdrew +misease +mis�res +miserly +misfall +misfare +misfeed +misfile +misfire +misfits +misform +misgave +misgive +misgoes +misgone +mishaps +mishear +mishits +mishmee +mishmis +Mishnah +Mishnic +misjoin +miskeys +miskick +misknew +misknow +mislaid +mislays +mislead +mislike +mislive +misluck +mismade +mismake +mismate +misname +misplay +misrate +misread +misrule +missaid +missals +missays +misseem +misseen +missees +missels +missend +missent +missets +missies +missile +missing +mission +missish +missive +misstep +missuit +mistake +mistell +misterm +misters +mistery +mistful +mistico +mistier +mistily +mistime +misting +mistled +mistles +mistold +mistook +mistral +mistune +mistype +misused +misuser +misuses +misween +miswend +miswent +misword +misyoke +mitched +mitches +Mitchum +mitered +Mitford +mithers +Mithras +mitiest +mitogen +mitoses +mitosis +mitotic +mitring +mittens +mitzvah +mixable +mixedly +mixtion +mixture +mizmaze +Mizoram +mizzens +mizzled +mizzles +Mj�lnir +mnemons +Moabite +moaners +moanful +moaning +mobbies +mobbing +mobbish +mobbled +mobbles +mobiles +mobsman +mobsmen +mobster +mockado +mockage +mockers +mockery +mocking +mococks +mocucks +modally +modeled +modeler +modelli +modello +moderns +modesty +modicum +Modiola +modioli +modiste +modists +modular +modules +modulus +moellon +mofette +Mogadon +moggans +moggies +moguled +mohairs +mohawks +Mohegan +Mohican +Mohocks +moiders +moidore +moilers +moiling +moineau +moisers +moisten +moister +moistly +moither +Molasse +molders +moldier +molding +Moldova +molests +Moliere +molimen +molines +molinet +mollahs +mollies +mollify +mollusc +mollusk +molochs +molossi +Molotov +molting +Mombasa +momenta +moments +mommets +mommies +momzers +monacid +monadic +monarch +monarda +monases +monauls +monaxon +mondain +Mondays +mondial +moneron +moneyed +moneyer +mongers +mongery +mongoes +mongols +mongrel +monials +moniker +monilia +monisms +monists +monitor +monkery +monkeys +monkish +monocle +monocot +monodic +Monodon +monofil +monomer +monopod +monosis +monoski +monsoon +monster +montage +Montana +montane +montant +montems +montero +Monteux +monthly +monture +mooched +moocher +mooches +moodier +moodily +mooktar +moolahs +moolvie +moolvis +Moomins +mooners +moonier +Moonies +mooning +moonish +moonlet +moonlit +moonset +mooping +moorage +Mooress +moorhen +moorier +mooring +moorish +moorlog +moorman +moormen +mooters +mooting +mootman +mootmen +mopanes +mopanis +mophead +mopiest +mopokes +moppers +moppets +mopping +mopsies +mopuses +moraine +morales +morally +morassy +Moravia +morceau +mordant +mordent +Mordred +Mordvin +moreish +Morelia +morello +morendo +Moresco +Morgans +morgays +morgens +Morglay +morgues +moriche +Moringa +morions +Morisco +morkins +morling +mormaor +Mormons +mornays +morning +morocco +moronic +Morpeth +morphew +morphia +morphic +morphos +morrhua +morrice +morrion +morrows +morsels +morsure +mortals +mortars +mortice +mortify +mortise +morular +morulas +morwong +mosaics +Mosaism +Moselle +moseyed +moshing +moslems +Mosotho +mosques +mossier +mossies +mossing +motetts +mothers +mothery +mothier +motiles +motions +motived +motives +motivic +motlier +motmots +motored +motsers +mottled +mottles +mottoed +mottoes +motucas +mouched +moucher +mouches +mouflon +mouill� +moujiks +moulage +moulded +moulder +moulins +moulted +moulten +mounded +mounted +mounter +mountie +mouping +mourned +mourner +mousaka +mousers +mousery +mousier +mousing +mousled +mousles +mousmee +mousm�s +mousses +moutans +mouthed +mouther +moutons +movable +movably +Moviola +mowburn +mowings +Mozarab +mozetta +mozzies +mridang +Mubarak +mucates +mucigen +muckers +muckier +mucking +muckles +muclucs +mucosae +mucuses +mudcats +mudders +muddied +muddier +muddies +muddily +mudding +muddled +muddler +muddles +Mud�jar +mudflap +mudgers +mudging +mudhook +mudiria +mudlark +mudpack +mudscow +mudwort +mueddin +mueslis +muezzin +muffing +muffins +muffish +muffled +muffler +muffles +muflons +Muftiat +mugfuls +muggees +muggers +muggier +mugging +muggins +muggish +muggles +Mughals +mugwort +mugwump +mukhtar +mukluks +mulatta +mulatto +mulched +mulches +mulcted +Muldoon +Mulheim +mullahs +mullein +mullers +mullets +mulleys +mulling +mullion +mullock +mulmull +mulshed +mulshes +multums +multure +mumbled +mumbler +mumbles +mummers +mummery +mummied +mummies +mummify +mumming +mumpers +mumping +mumpish +munched +M�nchen +muncher +munches +mundane +mundify +munited +munites +munnion +munshis +munster +munting +muntins +muntjac +muntjak +muonium +muppets +muraena +murages +murders +Murdoch +murenas +murexes +murgeon +muriate +murices +Muridae +Murillo +murines +murkest +murkier +murkily +murkish +murlins +murmurs +murrain +murrams +murrays +murreys +murries +murrine +murrion +murther +Musales +musangs +muscats +muscids +muscled +muscles +muscoid +muscone +muscose +Muscovy +museful +musette +museums +mushier +mushily +mushing +musical +musimon +musings +muskegs +muskets +muskier +muskies +muskily +musking +muskles +muskone +muskrat +Muslims +muslins +musmons +mussels +mussier +mussing +Mustafa +mustang +mustard +mustees +Mustela +musters +mustier +mustily +mutable +mutably +mutagen +mutanda +mutants +mutated +mutates +mutches +mutters +muttons +muttony +mutucas +mutules +mutuums +muzhiks +muzzier +muzzily +muzzing +muzzled +muzzler +muzzles +myalgia +myalgic +myalism +Myanman +Myanmar +mycelia +Mycenae +mycetes +mycoses +mycosis +mycotic +myeloid +myeloma +myelons +Myfanwy +mygales +myiasis +Mykonos +mylodon +mynheer +myogram +myology +myopics +myopses +myosote +myotube +myrbane +Myrddin +myriads +myringa +myrrhic +myrrhol +myrtles +mystery +mystics +mystify +mythise +mythism +mythist +mythize +Mytilus +mzungus diff --git a/com/agnibho/code/anagram/dictionary/M8.txt b/com/agnibho/code/anagram/dictionary/M8.txt new file mode 100644 index 0000000..90fab2e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M8.txt @@ -0,0 +1,1647 @@ +macahuba +macallum +Macanese +macaques +macarise +macarism +macarize +macaroni +macaroon +macassar +Macaulay +Macavity +macerate +machairs +Macheath +machetes +machined +machines +machismo +mackerel +mackinaw +mackling +Macleaya +MacNeice +macram�s +macramis +macropod +macrural +maculate +maculose +madbrain +maddened +madefied +madefies +Madeline +maderise +maderize +madhouse +madlings +madoquas +madrasah +madrasas +madrases +madrigal +madro�as +madrones +madro�os +madwoman +madwomen +madworts +madzoons +Maeander +Maecenas +maenadic +Maeonian +maestoso +maestros +Mafeking +mafficks +maffling +mafflins +Mafikeng +magalogs +magazine +Magdalen +Magellan +magentas +mageship +magician +magicked +magister +magmatic +magnates +magneses +magnesia +magnetic +magneton +magnetos +magnific +magnolia +magnoxes +Magritte +maharaja +maharani +mahatmas +Mahayana +mahogany +mahonias +Mahratta +Mahratti +mahseers +mahzorim +maidenly +maidhood +maidless +maieutic +mailable +mailboat +mailcars +mailgram +mailings +maillots +mailroom +mailsack +mailshot +maimings +mainboom +maindoor +mainland +mainline +mainmast +mainours +mainsail +mainstay +maintain +maintops +mainyard +maiolica +maisters +majestic +majolica +Majorcan +majoring +majority +makeable +makebate +makefast +makeless +makimono +maladies +Malagash +Malagasy +malaises +malamute +malander +malapert +Malaprop +malarial +malarian +malarias +malarkey +Malawian +malaxage +malaxate +malaxing +Malayans +Malaysia +Maldives +maleates +maledict +malefice +malemute +maleness +Malevich +Malherbe +malicing +maligned +maligner +malignly +malinger +Malinkes +malisons +mallards +Mallarm� +malleate +mallecho +malleoli +Mallorca +malmseys +malodour +malonate +malstick +maltiest +maltings +maltreat +maltster +maltworm +malvasia +Malvinas +Malvolio +mamboing +mamelons +mameluco +Mameluke +mamillae +mamillar +Mammalia +mammetry +mammifer +mammilla +mammocks +mammoths +mamselle +mamzerim +manacled +manacles +managers +managing +manakins +Manasseh +manatees +mancando +manchets +manciple +mancuses +Mandaean +mandalas +Mandalay +mandamus +mandarin +mandated +mandates +mandator +mandible +Mandingo +mandioca +mandiocs +mandiras +mandolas +mandolin +mandoras +mandorla +mandrake +mandrels +mandrill +mandrils +man�ging +maneless +maneuver +manfully +mangabey +manganic +manganin +mangiest +manglers +mangling +mangolds +mangonel +mangrove +manholes +manhunts +maniacal +Manichee +manicure +manifest +manifold +maniform +manihocs +manikins +manillas +manilles +maniples +Manitoba +manitous +manjacks +mankiest +manliest +mannered +mannerly +Mannheim +mannikin +mannitol +manorial +manpower +manrider +mansards +manshift +mansions +mansonry +mansuete +mansworn +manteaus +manteaux +Mantegna +mantelet +mantilla +mantises +mantissa +mantlets +mantling +mantrams +mantraps +manually +manubria +manumits +manurers +manurial +manuring +manyatas +manyatta +manyfold +manzello +Maoridom +mappings +mappists +mapstick +maquette +marabous +marabout +Maradona +maraging +Maranh�o +marasmic +marasmus +marathon +Marattia +marauded +marauder +maravedi +Marbella +marblers +marblier +marbling +marcella +Marcelle +marchers +marchesa +marchese +marching +marchman +marchmen +Marciano +mardying +maremmas +Margaret +margaric +margarin +margents +marginal +margined +margosas +margrave +mariachi +Marianne +marigold +marigram +marimbas +marinade +marinate +marinera +mariners +Marinist +mariposa +maritage +maritime +marjoram +Marjorie +markedly +marketed +marketer +markhors +markings +marksman +marksmen +marliest +marlines +marlings +marmites +marmoses +marmoset +marocain +Maronian +Maronite +marooned +marooner +maroquin +marplots +marquees +marquess +marquise +Marranos +marriage +marriers +Marriner +marrowed +marrying +Marsalis +Marshall +marshals +marshier +marshman +marshmen +Marsilea +Marsilia +marsport +marsupia +martagon +martello +martenot +Martians +martinet +martinis +martlets +martyred +martyria +marvered +Marxists +marybuds +Maryland +marzipan +Masaccio +Mascagni +mascaras +mascaron +mashings +mashlins +Mashonas +masoning +masoolah +Masorete +Masoreth +masquers +massacre +massaged +massages +Massenet +masseter +masseurs +masseuse +massicot +massiest +massoola +Massorah +mastabas +mastered +masterly +masthead +mastichs +masticot +mastiffs +mastitis +mastless +mastodon +mastoids +masurium +Matabele +matachin +matadora +matadore +matadors +matamata +matchbox +matchers +matchets +matching +mateless +matelote +matelots +material +mat�riel +maternal +mateship +matfelon +matgrass +mathesis +Mathilda +Mathurin +Matildas +matin�es +matiness +matrices +matrixes +matronal +matronly +matsuris +mattered +Matthews +Matthias +mattings +mattocks +mattoids +mattress +maturate +maturely +maturest +maturing +maturity +matutine +matweeds +matzoons +maumetry +maunders +maundies +maungier +mausolea +mauthers +mauvaise +mauveine +mauvelin +mauvline +maverick +mawbound +mawmetry +mawpuses +mawseeds +mawthers +maxillae +maximise +maximist +maximize +maxwells +mayflies +mayoress +maypoles +mayweeds +mazarine +Mazdaism +Mazdaist +Mazdeism +mazeltov +mazement +maziness +mazurkas +mazzards +mbaqanga +McCarthy +McGuffin +McGuigan +McKellen +McKinley +meagerly +meagrely +mealiest +meanders +meaneing +meanings +meanness +meantime +measlier +measured +measurer +measures +meathead +meatiest +meatless +meatuses +mechanic +meconate +meconium +medalets +medaling +medalist +medalled +medallic +meddlers +meddling +Medell�n +medflies +medially +mediants +mediated +mediates +mediator +Medibank +Medicaid +medicals +Medicare +medicate +Medicean +medicine +medieval +mediocre +meditate +mediuses +Medjidie +medullae +medullar +medullas +medusans +medusoid +meekened +meekness +meercats +meerkats +meetings +meetness +megabars +megabits +megabuck +megabyte +megacity +megadose +megadyne +megaflop +megafogs +megalith +megapode +megarads +megarons +megastar +megatons +megavolt +megawatt +megillah +meionite +meisters +melamine +melanges +melanism +melanite +melanoma +melanous +Melchior +Meleager +melilite +melilots +melinite +melismas +mellitic +mellowed +mellower +mellowly +melodeon +melodica +melodics +melodies +melodion +melodise +melodist +melodize +meltdown +meltings +Melville +membered +membrane +mementos +memorial +memories +memorise +memorize +Memphian +Memphite +menacers +menacing +Menander +menarche +mendings +Menelaus +Menevian +menfolks +menhaden +menially +meninges +meniscus +menology +Menomini +menopome +menorahs +mensches +menseful +menstrua +mensural +Mensuren +menswear +mentally +mentions +Mephisto +mephitic +mephitis +Mercalli +Mercator +Mercedes +merchant +merchets +merchild +merciful +Mercouri +mercuric +Mercutio +Meredith +merengue +meresman +meresmen +mergence +mericarp +meridian +meringue +meristem +meristic +meriting +mermaids +merogony +meronyms +meronymy +merosome +merriest +merryman +merrymen +mersalyl +mersions +Merulius +merycism +mesaraic +mescalin +mesdames +meseemed +meshiest +meshings +meshugga +meshugge +mesially +mesmeric +mesocarp +mesoderm +mesolite +mesotron +Mesozoic +mesprise +mesquine +mesquite +mesquits +messaged +Messager +messages +Messiaen +Messidor +messiest +messmate +messuage +mestizas +mestizos +metabola +m�tairie +metaling +metalist +metalize +metalled +metallic +metamere +metamers +metanoia +metaphor +metaplot +m�tayage +m�tayers +metazoan +metazoic +metazoon +metcasts +meteoric +metering +metewand +meteyard +methadon +methanal +methanol +methinks +methodic +methylic +methysis +m�tisses +metonyms +metonymy +metopism +metopryl +metrical +metrists +metritis +meuni�re +Mexicans +mezereon +mezereum +mezuzahs +mezuzoth +miaouing +miaowing +miasmata +miasmous +miauling +micating +Micawber +micellar +micellas +micelles +Michaela +Michelin +Michelle +Michigan +michings +microbar +microbes +microbic +microbus +microcar +microdot +microhms +microlux +micrurgy +Micrurus +middling +midfield +midirons +midlands +midmosts +midnight +midnoons +midpoint +midriffs +midships +midwifed +midwifes +midwived +midwives +miffiest +mightful +mightier +mightily +mignonne +migraine +migrants +migrated +migrates +migrator +miladies +Milanese +mildened +mildewed +mildness +mileages +milepost +Milesian +milfoils +miliaria +militant +military +militate +militias +milkfish +milkiest +milkings +milkless +milklike +milkmaid +milkwood +milkwort +milldams +milleped +milliard +milliare +milliary +millibar +milli�me +Milligan +Millikan +millimes +milliner +millings +millions +milliped +millirem +millpond +millrace +millrind +millruns +Milstein +miltonia +Miltonic +mimester +mimetite +mimicked +mimicker +minacity +minarets +minatory +mincings +Mindanao +mindless +mineolas +minerals +minettes +minevers +mingiest +minglers +mingling +minibars +minibike +minicabs +minicams +minicars +minidisk +minified +minifies +minigolf +minikins +miniment +minimise +minimism +minimist +minimize +minipill +minished +minishes +minister +ministry +minivers +minivets +Minnelli +minneola +Minorcan +minoress +minorite +minority +Minotaur +minshuku +minsters +minstrel +mintages +mintiest +minuends +minutely +minutest +minutiae +minuting +minyanim +Mirabeau +miracles +miradors +mirepoix +miriness +mirkiest +mirksome +mirliton +mirrored +mirthful +misaimed +misalign +misallot +misandry +misapply +misarray +misbegot +misbirth +miscalls +miscarry +miscasts +miscegen +mischief +miscible +miscolor +miscount +miscreed +miscuing +misdated +misdates +misdeals +misdealt +misdeeds +misdeems +misdials +misdight +misdoers +misdoing +misdoubt +misdrawn +misdraws +misdread +misentry +Miserere +miseries +misfaith +misfeeds +misfeign +misfield +misfiled +misfiles +misfired +misfires +misforms +misgived +misgiven +misgives +misgoing +misgraff +misgraft +misguide +misheard +mishears +mishmash +mishmees +Mishnaic +misjoins +misjudge +miskeyed +miskicks +misknown +misknows +mislabel +misleads +mislight +misliked +misliker +mislikes +mislived +mislives +mislucks +mismakes +mismarry +mismatch +mismated +mismates +mismetre +misnamed +misnames +misnomer +misogamy +misogyny +misology +misorder +misplace +misplant +misplays +misplead +mispoint +misprint +misprise +misprize +misproud +misquote +misrated +misrates +misreads +misroute +misruled +misrules +missable +missends +misshape +misshood +missiles +missilry +missions +missises +missives +Missouri +misspeak +misspell +misspelt +misspend +misspent +misspoke +misstate +missteps +missuits +missuses +mistaken +mistakes +misteach +mistells +mistered +misterms +misthink +misticos +mistiest +mistimed +mistimes +mistings +mistitle +mistling +mistrals +mistreat +mistress +mistrial +mistrust +mistryst +mistuned +mistunes +mistyped +mistypes +misusage +misusers +misusing +misweens +miswords +miswrite +misyoked +misyokes +Mitchell +mitching +mitering +mithered +Mithraea +Mithraic +miticide +mitigant +mitigate +mittened +mittimus +mitzvahs +mitzvoth +miuruses +mixtions +mixtures +mizmazes +mizzling +Mj�llnir +mnemonic +Moabites +mobbling +mobilise +mobility +mobilize +mobocrat +mobsters +mocassin +moccasin +mockable +mockings +mocuddum +modalism +modalist +modality +modelers +modeling +modelled +modeller +modellos +moderate +moderato +moderner +modernly +modester +modestly +modicums +modified +modifier +modifies +modiolar +modiolus +modishly +modistes +modulate +mofettes +mofussil +Moharram +Mohicans +moidered +moidores +moieties +moineaus +moistens +moistest +moistify +moisture +moithers +mokaddam +molality +molarity +molasses +Moldavia +moldered +moldiest +moldings +moldwarp +molecast +molecule +molehunt +moleskin +molested +molester +molimens +molinets +Molinism +Molinist +Mollusca +molluscs +mollusks +molossus +moltenly +Moluccas +molybdic +momently +momentum +momzerim +monachal +monadism +Monaghan +monandry +Monarcho +monarchs +monarchy +monardas +monastic +monaural +monaxial +monaxons +monazite +mondaine +Mondrian +monerons +monetary +monetise +monetize +moneyers +moneyman +moneymen +mongcorn +Mongolia +Mongolic +mongoose +mongrels +monicker +monikers +monilias +moniment +monistic +monition +monitive +monitors +monitory +monkeyed +monkhood +Monmouth +monoacid +monocarp +monocled +monocles +monocots +monocrat +monocyte +monodies +monodist +monodont +Monoecia +monofils +monogamy +monogeny +monoglot +monogony +monogram +monogyny +monohull +monokini +monolith +monology +monomark +monomers +monomial +monomode +monopode +monopods +monopole +monopoly +monorail +monoskis +monotint +monotone +monotony +monotype +monoxide +Monrovia +monsieur +monsoons +Monstera +monsters +montages +Montague +montanto +montants +montaria +monteith +Monterey +monteros +monticle +Montilla +Montreal +Montreux +Montrose +montures +monument +moochers +mooching +moodiest +mooktars +moolvies +moonball +moonbeam +mooncalf +mooniest +moonless +moonlets +moonrise +moonrock +moonroof +moonsail +moonseed +moonsets +moonshee +moonshot +moonwalk +moonwort +moorages +moorcock +moorfowl +Moorgate +moorhens +mooriest +moorings +moorland +moorlogs +mootable +mootings +mopboard +mopehawk +mopingly +mopishly +mopstick +moquette +Moraceae +morainal +moraines +morainic +moralise +moralism +moralist +morality +moralize +moralled +moraller +morasses +moratory +Moravian +morbidly +morbific +Morbihan +morbilli +morceaux +mordancy +mordants +Mordecai +mordents +Mordvins +morellos +moreover +Moresque +Moriarty +moribund +moriches +Moriscos +morlings +Morlocks +mormaors +mornings +Moroccan +moroccos +morosely +morosity +morphean +morpheme +Morpheus +morphews +morphine +morphing +morrhuas +morrices +morrions +morrised +morrises +Morrison +morsures +mortally +mortared +mortbell +mortgage +morticed +morticer +mortices +mortific +Mortimer +mortised +mortiser +mortises +Mortlake +mortling +mortmain +mortuary +Morwenna +morwongs +mosasaur +Moselles +moseying +moshavim +moslings +Mosothos +mosquito +mossiest +mossland +motelier +mothered +motherly +mothiest +motility +motional +motioned +motivate +motiving +motivity +motliest +motorail +motorial +motoring +motorise +motorist +motorium +motorize +motorman +motormen +motorway +mottling +mouchard +mouchers +mouching +mouchoir +moufflon +mouflons +moulders +mouldier +moulding +moulinet +moulting +mounding +mounseer +mountain +mountant +mounters +mounties +mounting +Mountjoy +mourners +mournful +mourning +mousakas +mousekin +mousiest +mousings +mousling +mousmees +moussaka +mouthers +mouthful +mouthier +mouthing +movables +moveable +moveably +moveless +movement +movingly +Moviolas +mowburns +mowburnt +mozettas +mozzetta +mridanga +mridangs +muchness +mucilage +muckered +muckiest +muckluck +mucosity +mucrones +muculent +muddiest +muddlers +muddling +muddying +mudflaps +mudhooks +mudirias +mudirieh +mudlarks +mudpacks +mudscows +mudslide +mudstone +mudworts +mueddins +muenster +muezzins +mufflers +muffling +muggiest +muggings +mugworts +mugwumps +Muhammad +Muharram +muirburn +mukhtars +mulattas +mulattos +mulberry +mulching +Mulciber +mulcting +muleteer +Mulhouse +mulishly +mullarky +mulleins +mulligan +mullions +mulloway +Mulroney +mulshing +multeity +multifid +multifil +multigym +multiped +multiple +multiply +multured +multurer +multures +mumblers +mumbling +mummings +mummying +munchers +munchies +munching +munchkin +mungcorn +mungoose +munified +munifies +muniment +muniting +munition +munnions +muntings +muntjacs +muntjaks +muqaddam +muraenas +muralist +murdered +murderee +murderer +murgeons +muriated +muriates +muriatic +muricate +muriform +murkiest +murksome +Murmansk +murmured +murmurer +murphies +murrains +murrelet +murrhine +murthers +Musaceae +muscadel +Muscadet +muscadin +muscatel +Muscidae +muscling +muscular +musettes +Musgrave +mushiest +mushroom +musicale +musicals +musician +musicked +musicker +musimons +musingly +musketry +muskiest +muskrats +muslined +muslinet +musquash +mussiest +mustache +mustangs +mustards +mustered +musterer +mustiest +mutagens +mutandum +mutating +mutation +mutative +mutatory +mutchkin +muteness +muticous +mutilate +mutineer +mutinied +mutinies +mutinous +muttered +mutterer +mutually +muzziest +muzzlers +muzzling +Myanmans +mycelial +mycelium +mycetoma +mycology +myelitis +myelomas +mylodons +mylodont +mylonite +mynheers +myoblast +myogenic +myograms +myograph +myomancy +myositis +myosotes +myosotis +myotonia +myotubes +myriadth +myriapod +myringas +myriopod +myristic +myrmidon +myrrhine +mystical +mystique +mythical +mythised +mythises +mythists +mythized +mythizes +mytiloid +myxedema +myxomata diff --git a/com/agnibho/code/anagram/dictionary/M9.txt b/com/agnibho/code/anagram/dictionary/M9.txt new file mode 100644 index 0000000..0c43c4f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/M9.txt @@ -0,0 +1,1608 @@ +macadamia +macahubas +macallums +macarised +macarises +macarisms +macarized +macarizes +macaronic +macaronis +macaroons +MacArthur +Maccabean +Maccabees +MacDonald +mac�doine +Macedonia +macerated +macerates +macerator +MacGuffin +machinate +machinery +machining +machinist +Machmeter +machzorim +macintosh +Mackenzie +mackerels +mackinaws +Macmillan +Macquarie +macroaxes +macroaxis +macrobian +macrocopy +macrocosm +macrocyte +macrodome +macrology +macrurous +mactation +maculated +maculates +madarosis +maddening +maddingly +madefying +madeleine +maderised +maderises +maderized +maderizes +madhouses +madrasahs +madrassah +madrepore +madrigals +maelstrom +Maeonides +mafficked +mafficker +mafflings +magazines +Magdalena +magdalene +Magdeburg +maggotier +Magianism +magically +magicians +magicking +magisters +magistery +magistral +magnalium +magnesian +magnesias +magnesite +magnesium +magnetics +magnetise +magnetism +magnetist +magnetite +magnetize +magnetons +magnetron +magnifico +magnified +magnifier +magnifies +magnitude +magnolias +Magnusson +Magyarism +Magyarize +maharajah +maharajas +maharanee +maharanis +maharishi +mahlstick +Mahometan +maidenish +Maidstone +Maiduguri +maieutics +mailboats +mailcoach +mailgrams +mailmerge +mailsacks +mailshots +mainbooms +mainbrace +maindoors +mainframe +mainlands +mainlined +mainliner +mainlines +mainmasts +mainprise +mainsails +mainsheet +mainstays +maintains +Maintenon +mainyards +maistered +maistring +majesties +Majorcans +majorette +majorship +majuscule +makebates +makefasts +makeshift +makimonos +malachite +maladroit +malague�a +malamutes +malanders +malarious +Malathion +Malawians +malaxated +malaxates +malaxator +Malayalam +Malaysian +Maldivian +Malebolge +maleffect +malefices +malemutes +malengine +malformed +malicious +malignant +maligners +maligning +malignity +malingers +malingery +mallander +malleable +malleated +malleates +mallemuck +mallender +malleolar +malleolus +Mallorcan +malmstone +malodours +Malpighia +malsticks +maltalent +maltreats +maltsters +maltworms +Malvaceae +malvoisie +mamelucos +Mamelukes +mamillary +mamillate +mammalian +mammalogy +mammifers +mammiform +mammogram +mammonish +mammonism +mammonist +mammonite +mamselles +manacling +Manchuria +mancipate +manciples +Mancunian +mandarine +mandarins +mandatary +mandating +mandators +mandatory +Mandelson +mandibles +mandilion +Mandingos +mandiocas +mandiocca +mandoline +mandolins +mandorlas +mandrakes +mandrills +manducate +mandylion +maneuvers +mangabeys +Mangalore +manganate +manganese +manganite +manganous +mangetout +manginess +mangonels +mangostan +mangouste +mangroves +manhandle +Manhattan +manically +Manichean +manicured +manicures +manifesto +manifests +manifolds +maniplies +manipular +manliness +mannequin +mannerism +mannerist +mannikins +mannishly +manoeuvre +manometer +manometry +manriders +manriding +Mansfield +manshifts +Mantalini +mantelets +manticora +manticore +mantillas +mantissas +manubrial +manubrium +manurance +Manxwoman +Manxwomen +manyattas +manyplies +manzanita +manzellos +Maoriland +Maplaquet +mappemond +mapsticks +maquettes +maquisard +marabouts +Maracaibo +maranatha +Marasmius +marathons +marauders +marauding +maravedis +marbliest +marblings +marcasite +marcelled +Marcellus +marchesas +marcheses +marchland +marchpane +mareschal +margarine +margarins +margarita +margarite +margented +marginals +marginate +margining +margraves +mariachis +marialite +marigolds +marigrams +marigraph +marihuana +marijuana +marinaded +marinades +marinated +marinates +marineras +Marinetti +marini�re +Mariology +mariposas +maritally +marketeer +marketers +marketing +marlstone +Marmaduke +marmalade +marmarise +marmarize +marmelise +marmelize +marmoreal +marmosets +marooners +marooning +Marquesan +marquetry +Marquette +marquises +Marrakech +Marrakesh +marriages +marrowfat +marrowing +marrowish +marrowsky +Marseille +marshalcy +marshiest +marshland +marshwort +marsports +marsupial +marsupium +martagons +martelled +martellos +martenots +martially +Martineau +martinets +Martinmas +martyrdom +martyries +martyring +martyrise +martyrium +martyrize +marvelled +marvelous +marvering +marxisant +Maryology +marzipans +mascarons +masculine +Masefield +mashallah +masochism +masochist +masonried +masonries +masoolahs +Masoretic +massacred +massacres +massaging +massagist +masseters +masseuses +massiness +Massinger +massively +massoolas +Massorete +masterate +masterdom +masterful +masteries +mastering +mastheads +masthouse +masticate +mastodons +mastoidal +Matabeles +matachina +matachini +matachins +matadores +matamatas +matchable +matchbook +matchless +matchlock +matchwood +matelasse +matelotes +materials +mat�riels +maternity +mateyness +matfelons +matrasses +matriarch +matricide +matricula +matriliny +matrimony +matronage +matronise +matronize +Matsuyama +mattamore +matterful +mattering +Matthaean +maturable +maturated +maturates +matutinal +maulstick +maundered +maunderer +maungiest +Mauritian +Mauritius +mausolean +mausoleum +mauveline +mavericks +mawkishly +maxillary +maxillula +maximally +maximised +maximises +maximists +maximized +maximizes +mayflower +mayoralty +mayorship +mazarines +Mazdaists +Mbujimayi +McCartney +McCormack +mealiness +meandered +meandrous +meaningly +meanwhile +measliest +measurers +measuring +meatiness +mechanics +mechanise +mechanism +mechanist +mechanize +meconiums +Mecoptera +medalists +medalling +medallion +medallist +mediaeval +mediately +mediating +mediation +mediatise +mediative +mediatize +mediators +mediatory +mediatrix +medicable +medically +medicated +medicates +medicinal +medicined +mediciner +medicines +meditated +meditates +meditator +medresseh +medullary +medullate +meekening +megabucks +megabytes +megacurie +megacycle +megadeath +megadoses +megadynes +megafarad +megafauna +megaflops +megaflora +megagauss +megahertz +megajoule +megaliths +megaphone +megapodes +megascope +megaspore +megastars +megastore +megavolts +megawatts +megillahs +megilloth +meiofauna +mekometer +melampode +Melanesia +melanites +melanomas +melanosis +melanotic +melanuria +melanuric +melaphyre +Melastoma +melatonin +Melbourne +Meliaceae +meliorate +meliorism +meliorist +meliority +melismata +mellowest +mellowing +melocoton +melodeons +melodions +melodious +melodised +melodises +melodists +melodized +melodizes +melodrama +melodrame +melomania +melomanic +Melpomene +meltdowns +meltingly +membranes +mementoes +Memnonian +memoirism +memoirist +memorable +memorably +memoranda +memorials +memorised +memorises +memoriter +memorized +memorizes +menadione +menagerie +menarches +mendacity +Mendeleev +Mendelian +Mendelism +mendicant +mendicity +menhadens +meningeal +meniscoid +Mennonite +Menominee +menopause +menopomes +menorrhea +menseless +Menshevik +menstrual +menstruum +mentalism +mentalist +mentality +mentation +menticide +mentioned +mentorial +mentoring +menuisier +mepacrine +mephitism +mercaptan +mercenary +merceries +mercerise +mercerize +merchants +merciable +mercified +mercifies +merciless +mercurate +mercurial +mercuries +mercurise +mercurize +mercurous +merengues +merestone +merganser +mergences +mericarps +meridians +meringues +meristems +mermaiden +meroistic +Meropidae +meropidan +merosomes +merozoite +merpeople +merriment +merriness +merrymake +mescaline +mescalism +mesentery +meshugaas +mesmerise +mesmerism +mesmerist +mesmerize +mesoblast +mesocarps +mesoderms +mesogloea +mesolites +mesomorph +mesophyll +mesophyte +mesquites +messaging +Messalina +messenger +Messianic +messieurs +messiness +messmates +messuages +metabases +metabasis +metabatic +metabolic +metacarpi +m�tairies +metalists +metalized +metalizes +metalline +metalling +metallise +metallist +metallize +metalloid +metameres +metameric +metanoias +metapelet +metaphase +metaphors +metaplasm +metatarsi +metazoans +metazoons +meteorism +meteorist +meteorite +meteoroid +meteorous +metestick +metewands +meteyards +methadone +metheglin +methodise +methodism +methodist +methodize +methought +methylate +methylene +methystic +metonymic +metricate +metrician +metricise +metricist +metricize +metrifier +Metroland +metrology +metronome +metroplex +Meursault +Meyerbeer +mezereons +mezereums +mezzanine +mezzotint +miasmatic +micaceous +Michelson +microbars +microbial +microbian +microcard +microcars +microchip +microcode +microcopy +microcosm +microcyte +microdots +microfilm +microform +microgram +microlite +microlith +micrology +micromesh +micropore +micropsia +micropump +micropyle +Microsoft +microsome +microtome +microtomy +microtone +microwatt +microwave +microwire +micturate +middleman +middlemen +Middlesex +Middleton +midfields +midinette +midnights +midpoints +Midrashim +midstream +midsummer +midwifery +midwifing +midwiving +miffiness +mightiest +migraines +migrating +migration +migrators +migratory +mildening +mildewing +mileposts +milestone +militancy +militants +militaria +militated +militates +milkiness +milkmaids +milkwoods +milkworts +millenary +millennia +millepede +millepeds +millepore +millerite +milliards +milliares +millibars +Millicent +milli�mes +milligram +millimole +milliners +millinery +millionth +millipede +millipeds +millirems +millocrat +millponds +millraces +millstone +milometer +milreises +Miltiades +Miltonian +miltonias +Miltonism +Milwaukee +mimesters +mimetical +mimickers +mimicking +mimicries +mimuluses +minacious +mincemeat +mincingly +Mindelian +mindfully +minestone +minglings +miniature +minibikes +minibreak +minibuses +minidisks +minidress +minifying +minimally +minimaxed +minimaxes +minimised +minimises +minimists +minimized +minimizes +minimuses +minipills +minirugby +miniscule +minishing +miniskirt +ministers +Minitrack +Minnehaha +minneolas +Minnesang +Minnesota +Minorcans +minorites +minorship +minshukus +minstrels +minuscule +minuteman +minutemen +minutiose +mirabelle +mirabilia +mirabilis +mirifical +mirligoes +mirlitons +mirroring +mirthless +misadvise +misaiming +misaligns +misallege +misallied +misallies +misallots +misarrays +misassign +misaunter +misbecame +misbecome +misbehave +misbelief +misbeseem +misbestow +misbirths +miscalled +miscasted +miscegene +miscegens +miscegine +mischance +mischancy +mischarge +mischiefs +miscolors +miscolour +miscopied +miscopies +miscounts +miscreant +miscreate +miscredit +miscreeds +miscueing +misdating +misdeemed +misdemean +misdesert +misdirect +misdoings +misdoubts +misemploy +miserable +miserably +misesteem +misfaiths +misfeasor +misfeigns +misfields +misfiling +misfiring +misfitted +misformed +misgiving +misgotten +misgovern +misgraffs +misgrowth +misguggle +misguided +misguider +misguides +mishandle +mishanter +mishapped +mishappen +mishegaas +misinform +misintend +misjoined +misjudged +misjudges +miskeying +miskicked +mislabels +mislaying +misleader +misleared +mislights +mislikers +misliking +mislippen +misliving +mislucked +mismaking +mismanage +mismating +mismetred +mismetres +misnaming +misnomers +misoneism +misoneist +misorders +mispickel +misplaced +misplaces +misplants +misplayed +mispleads +misplease +mispoints +mispraise +misprints +misprised +misprises +misprized +misprizes +misquoted +misquotes +misrating +misreckon +misrelate +misreport +misrouted +misroutes +misruling +missaying +misseeing +misshaped +misshapen +misshapes +missilery +missingly +missioned +missioner +misspeaks +misspells +misspends +misspoken +misstated +misstates +missuited +mistaking +mistaught +mistemper +misteries +mistering +mistermed +misthinks +mistigris +mistiming +mistiness +mistitled +mistitles +mistletoe +mistreats +mistrials +mistrusts +mistrysts +mistuning +mistyping +misweened +misworded +miswrites +misyoking +mithering +Mithraeum +Mithraism +Mithraist +miticidal +mitigable +mitigants +mitigated +mitigates +mitigator +mitogenic +mitraille +mitriform +mixedness +mizzlings +mizzonite +mnemonics +mnemonist +Mnemosyne +moanfully +mobilised +mobiliser +mobilises +mobilized +mobilizer +mobilizes +mobocracy +mobocrats +mocassins +moccasins +mockadoes +mockeries +mockingly +mocuddums +modalists +modelings +modellers +modelling +moderated +moderates +moderator +modernest +modernise +modernism +modernist +modernity +modernize +modestest +modesties +modifiers +modifying +modillion +modulated +modulates +modulator +mofussils +Mogadishu +moidering +moistened +moistener +moistness +moistures +moithered +mokaddams +Moldavian +moldering +moldiness +moldwarps +molecasts +molecular +molecules +molehunts +moleskins +molesters +molestful +molesting +mollified +mollifier +mollifies +mollities +molluscan +molluskan +mollymawk +molochise +molochize +Molossian +molybdate +molybdous +momentany +momentary +momentous +monachism +monachist +monactine +monadical +monadnock +Monandria +monarchal +monarchic +monastery +monatomic +monaxonic +Mondayish +monecious +monergism +monetised +monetises +monetized +monetizes +moneyless +moneywort +mongcorns +mongering +Mongolian +Mongolise +mongolism +Mongolize +mongoloid +mongooses +mongrelly +monickers +monitions +monitored +monitress +monkeying +monkeyish +monkeyism +monkeynut +monkeypod +monkshood +monoacids +monoamine +monobasic +monocarps +monoceros +monochord +monocline +monocoque +monocracy +monocrats +monocular +monocycle +monodical +monodists +monodrama +monoecism +monogamic +monogenic +monoglots +monograms +monograph +Monogynia +monohulls +monokinis +monolater +monolatry +monolayer +monoliths +monologic +monologue +monomachy +monomania +monomarks +monomeric +monometer +monomials +monophagy +monophase +monophony +monopitch +monoplane +monopodes +monopoles +monopsony +monoptote +monopulse +monorails +monorchid +monorhine +monorhyme +monoskied +monoskier +monostich +monotints +monotoned +monotones +monotonic +monotreme +Monotropa +monotypes +monotypic +monoxides +monoxylon +Monroeism +Monroeist +Monsignor +monsoonal +monstrous +Montaigne +Montanism +Montanist +montarias +monteiths +Monterrey +Montezuma +monthlies +monticles +monticule +monuments +monzonite +moodiness +moonballs +moonbeams +moonlight +moonphase +moonquake +moonraker +moonrises +moonsails +moonscape +moonseeds +moonshees +moonshine +moonshiny +moonshots +moonstone +moonwalks +moonworts +moorcocks +moorfowls +moorlands +mooseyard +moothouse +mopehawks +mopsticks +moquettes +moraceous +moralised +moraliser +moralises +moralists +moralized +moralizer +moralizes +moralling +moratoria +morbidity +mordacity +mordantly +Morecambe +Morescoes +Moresques +morganite +Moriscoes +Mormonism +Mormonite +Moroccans +morphemed +morphemes +morphemic +morphetic +morphosis +morphotic +morrising +morselled +mortalise +mortality +mortalize +mortaring +mortbells +mortcloth +mortgaged +mortgagee +mortgager +mortgages +mortgagor +morticers +mortician +morticing +mortified +mortifier +mortifies +mortisers +mortising +mortlings +mortmains +mosaicism +mosaicist +mosasauri +mosasaurs +moschatel +moskonfyt +Moslemism +mosquitos +mossiness +mosslands +mossplant +moteliers +motettist +mothering +motioning +motivated +motivates +motivator +motocross +motorable +motorcade +motorised +motorises +motorists +motoriums +motorized +motorizes +motorways +motoscafi +motoscafo +mottlings +mouchards +mouchoirs +moufflons +mouldable +mouldered +mouldiest +mouldings +mouldwarp +moulinets +moultings +mounseers +mountable +mountains +mountants +mountings +mournings +mournival +mousekins +mouseries +mousiness +moussakas +moustache +mouthable +mouthfeel +mouthfuls +mouthiest +mouthless +mouthwash +moveables +movements +moviegoer +movieland +Movietone +mowburned +Moygashel +Mozarabic +Mozartean +Mozartian +mozzettas +mridamgam +mridangam +mridangas +mucilages +muckender +muckering +muckiness +mucklucks +Mucorales +mucronate +muddiness +muddyings +Mud�jares +mudiriehs +mudlarked +mudlogger +mudslides +mudstones +muffineer +mugearite +mugginess +mugginses +Muirfield +mujahedin +mujahidin +mulattoes +muleteers +mulligans +Mullingar +mullioned +multifils +multifoil +multiform +multigyms +multihull +multimode +multipara +multipede +multipeds +multiples +multiplet +multiplex +multitude +multiuser +multurers +multuring +mumblings +mumchance +mummeries +Mummerset +mummified +mummifies +mummiform +mummyings +mumpishly +mumpsimus +munchkins +mundanely +mundanity +mundified +mundifies +mundungus +mungcorns +mungooses +Munichism +municipal +munifying +muniments +munitions +muqaddams +muralists +murderees +murderers +murderess +murdering +murderous +murgeoned +muricated +murkiness +murmurers +murmuring +murmurous +murrelets +murthered +murtherer +musaceous +muscadels +Muscadets +muscadine +muscadins +muscarine +muscatels +musclings +muscology +muscovado +Muscovite +musculous +musefully +museology +mushiness +mushmouth +mushrooms +musicales +musically +musicians +musickers +musicking +musketeer +musketoon +muskiness +Muslimism +musselled +mussiness +mussitate +Mussolini +Mussulman +Mussulmen +mustached +mustaches +mustachio +musteline +mustering +mustiness +mutagenic +mutations +mutchkins +mutilated +mutilates +mutilator +mutineers +mutinying +mutoscope +mutterers +muttering +mutualise +mutualism +mutuality +mutualize +muzziness +Mycenaean +mycetomas +Mycetozoa +mycologic +mycophagy +mycorhiza +mycotoxin +mydriasis +mydriatic +mylodonts +mylohyoid +mylonites +mylonitic +myoblasts +myofibril +myoglobin +myographs +myography +myologist +myomantic +myriadths +Myriapoda +myriapods +myriopods +myriorama +Myristica +myrmecoid +myrmidons +myrobalan +myrrhines +Myrtaceae +mystagogy +mysteried +mysteries +mysticism +mystified +mystifier +mystifies +mystiques +mythicise +mythicism +mythicist +mythicize +mythising +mythizing +mythology +mythomane +mythopoet +Mytilidae +myxedemic +myxoedema +myxovirus diff --git a/com/agnibho/code/anagram/dictionary/N1.txt b/com/agnibho/code/anagram/dictionary/N1.txt new file mode 100644 index 0000000..8ba3a16 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N1.txt @@ -0,0 +1 @@ +n diff --git a/com/agnibho/code/anagram/dictionary/N10.txt b/com/agnibho/code/anagram/dictionary/N10.txt new file mode 100644 index 0000000..aca1d26 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N10.txt @@ -0,0 +1,448 @@ +Nabathaean +Nachschlag +Naiadaceae +Nairnshire +namechecks +namelessly +nameworthy +nanisation +nanization +nannyghais +nanometres +nanosecond +naphthalic +naphthenic +Napoleonic +narcissism +narcissist +narcolepsy +narcotised +narcotises +narcotists +narcotized +narcotizes +narratable +narrations +narratives +narrowcast +narrowings +narrowness +nasalising +nasalizing +nasturtium +natalitial +natalities +natatorial +natatorium +nationally +nationhood +nationless +nationwide +nativeness +nativistic +nativities +natterjack +naturalise +naturalism +naturalist +naturalize +naturistic +naturopath +naughtiest +naumachiae +naumachias +naumachies +nauseating +nauseously +nautically +nautiluses +navarchies +navelworts +naviculars +navigating +navigation +navigators +Nazaritism +Ndrangheta +Neandertal +Neapolitan +nebbishers +Nebraskans +nebulisers +nebulising +nebulizers +nebulizing +nebulosity +nebulously +n�cessaire +neckcloths +necrolater +necrolatry +necrologic +necromancy +necrophile +necrophily +necropolis +necroscopy +necrotised +necrotises +necrotized +necrotizes +nectareous +nectarines +nectocalyx +needlebook +needlecord +needlefuls +needlessly +needlework +negatively +negativing +negativism +negativist +negativity +neglecters +neglectful +neglecting +neglection +neglective +negligence +negligible +negligibly +n�gociants +negotiable +negotiants +negotiated +negotiates +negotiator +negrophile +negrophils +negrophobe +neighbored +neighborly +neighbours +nelumbiums +nematocyst +Nematoidea +nematology +nemerteans +nemertians +Nemertinea +nemertines +nemophilas +neoclassic +Neofascism +Neofascist +neogenesis +neogenetic +neologians +neological +neologised +neologises +neologisms +neologists +neologized +neologizes +neonomians +neophiliac +neopilinas +neoplastic +neorealism +neorealist +neoterical +neoterised +neoterises +neoterists +neoterized +neoterizes +nepenthean +nephalists +nephograms +nephograph +nephologic +nephoscope +nephralgia +nephridium +nephrology +nephropexy +nephrotomy +nepotistic +nervations +nervatures +Nestorians +nethermore +nethermost +netherward +netiquette +nettlelike +nettlerash +nettlesome +networkers +networking +Neufch�tel +neurations +neurectomy +neurilemma +neuroblast +neurochips +neurogenic +neurograms +neurolemma +neurolysis +neuropaths +neuropathy +neuroplasm +Neuroptera +neurotoxic +neurotoxin +neutralise +neutralism +neutralist +neutrality +neutralize +neutrettos +neutrophil +newfangled +newmarkets +newsagents +newscaster +newsdealer +newsgroups +newshounds +newsletter +newsmonger +newspapers +newssheets +newsvendor +newsworthy +nibblingly +Nibelungen +Nicaraguan +nickelised +nickelises +nickelized +nickelizes +nickelling +nicknaming +nickpoints +nicksticks +nickumpoop +nicompoops +nicotianas +nicotinism +nicrosilal +nictitated +nictitates +nidamental +nidamentum +nidderings +nidicolous +nidificate +nidifugous +nidulation +niffnaffed +niggardise +niggardize +nigglingly +nightclass +nightdress +nightfalls +nightfires +nightgowns +nightmares +nightpiece +nightshade +nightshirt +nightspots +nightstand +nigrescent +nigrifying +nihilistic +nihilities +nimbleness +nincompoop +ninepences +nineteenth +ninetieths +nipperkins +nipplewort +nisberries +nitpickers +nitpicking +nitrazepam +nitridings +nitrifying +nitrometer +nitwittery +nobilitate +nobilities +noblewoman +noblewomen +nochelling +noctilucae +noctuaries +nocturnals +nodalising +nodalities +nodalizing +nodosities +nodulation +noematical +noisemaker +nomadising +nomadizing +nomarchies +nominalise +nominalism +nominalist +nominalize +nominately +nominating +nomination +nominative +nominators +nomographs +nomography +nomologist +nomothetes +nomothetic +nonchalant +nondrinker +nonesuches +nonillions +nonpareils +nonplaying +nonplusing +nonplussed +nonplusses +nonsuiting +nonswimmer +nonvintage +noogenesis +nootropics +Norbertine +normalised +normalises +normalized +normalizes +normanised +normanises +normanized +normanizes +Norrk�ping +northering +northerner +northlands +northwards +Norwegians +nosocomial +nosography +nosologist +nosophobia +nostologic +nostomania +nostopathy +notability +notaphilic +notarially +notarising +notarizing +notaryship +notational +notchbacks +notchelled +notepapers +noteworthy +nothingism +Nothofagus +noticeable +noticeably +notifiable +notionally +notionists +notochords +notodontid +notonectal +notornises +Notoryctes +Nottingham +Nouakchott +noumenally +nourishers +nourishing +nourriture +novaculite +novelettes +novelisers +novelising +novelistic +novelizers +novelizing +novenaries +novicehood +noviceship +noviciates +novitiates +nowcasting +nubiferous +nubigenous +nucelluses +nuciferous +nucivorous +nuclearise +nuclearize +nucleating +nucleation +nucleators +nucleolate +nucleonics +nucleoside +nucleosome +nucleotide +nudibranch +nuisancers +Nuku'alofa +nullifiers +nullifying +nulliparas +numberless +numbskulls +numeraires +numerating +numeration +numerators +numerology +numerosity +numerously +numismatic +nummulated +nummulites +nummulitic +numskulled +nunciature +nuncupated +nuncupates +nuptiality +nursehound +nurselings +nursemaids +nurseryman +nurserymen +nurturable +nutational +nutcracker +nuthatches +nutjobbers +nutmegging +nutpeckers +nutriments +nutritions +nutritious +nyctalopes +nyctalopia +nyctalopic +nyctinasty +nymphaeums +nymphalids +nympholept +nystagmoid diff --git a/com/agnibho/code/anagram/dictionary/N11.txt b/com/agnibho/code/anagram/dictionary/N11.txt new file mode 100644 index 0000000..1d97459 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N11.txt @@ -0,0 +1,318 @@ +nailbrushes +namechecked +nanoseconds +naphthalene +naphthalise +naphthalize +Napoleonism +Napoleonist +napoleonite +narcissists +narcissuses +narcoleptic +narcotising +narcotizing +narratively +narrowcasts +naseberries +nasofrontal +nasogastric +nasopharynx +nasturtiums +natatoriums +nationalise +nationalism +nationalist +nationality +nationalize +natterjacks +naturalised +naturalises +naturalists +naturalized +naturalizes +naturalness +naturopaths +naturopathy +naughtiness +naupliiform +navigations +Navratilova +Neanderthal +Neapolitans +n�cessaires +necessarian +necessaries +necessarily +necessitate +necessities +necessitous +neckerchief +necrobiosis +necrobiotic +necrolaters +necrologist +necromancer +necromantic +necrophiles +necrophilia +necrophilic +necrophobia +necrophobic +necropoleis +necroscopic +necrotising +necrotizing +necrotomies +needfulness +needlecords +needlecraft +needlestick +needlewoman +needlewomen +neesberries +nefariously +negationist +neglectable +neglections +negligeable +negligences +negligently +negotiating +negotiation +negotiators +negotiatrix +negrophiles +negrophobes +negrophobia +neighboring +neighboured +neighbourly +nematocysts +nematodirus +nematophore +Neofascists +neologising +neologistic +neologizing +neonatology +neopaganise +neopaganism +neopaganize +neophiliacs +Neoplatonic +Neoptolemus +neoterising +neoterizing +Neotropical +neovitalism +neovitalist +nephelinite +nephographs +nephologist +nephoscopes +nephrectomy +nephridiums +nephritical +nephrolepis +nephropathy +nervelessly +nervousness +nervuration +Netherlands +netherstock +netherwards +neurilemmas +neuroblasts +neurofibril +neurolemmas +neuroleptic +neurologist +neuropathic +neuropteran +neuroticism +neurotomies +neurotomist +neurotoxins +neurotrophy +neurotropic +neutralised +neutraliser +neutralises +neutralists +neutralized +neutralizer +neutralizes +neutrophils +newscasters +newscasting +newsdealers +newsletters +newsmongers +newsvendors +Nicaraguans +nickelising +nickelizing +nickelodeon +nickumpoops +nictitating +nictitation +nidificated +nidificates +Niersteiner +Nietzschean +niffnaffing +niggardised +niggardises +niggardized +niggardizes +nightingale +nightmarish +nightpieces +nightshades +nightshirts +nightstands +nightworker +nigrescence +nikethamide +nimbostrati +nincompoops +nineteenths +nippleworts +nitraniline +nitrocotton +nitrogenase +nitrogenise +nitrogenize +nitrogenous +nitrometers +nitrometric +nitrosamine +nitrosation +nobilitated +nobilitates +nociceptive +noctilucent +noctilucous +noctivagant +noctivagous +nocturnally +nocuousness +noiselessly +noisemakers +noisemaking +noisomeness +nomadically +nomenclator +nominalised +nominalises +nominalists +nominalized +nominalizes +nominations +nominatival +nominatives +nomocracies +nomographer +nomographic +nomological +nomologists +nonabrasive +nonacademic +nonagesimal +nonbeliever +nonchalance +nonclinical +nondescript +nondividing +nonentities +nonetheless +nonharmonic +nonillionth +nonplussing +nonsensical +nonstandard +nonvolatile +normalising +normalizing +Normanesque +normanising +normanizing +normatively +Northampton +Northcliffe +northerlies +northermost +northerners +northernise +northernism +northernize +Northumbria +northwardly +nosographer +nosographic +nosological +nosologists +nostradamic +Nostradamus +notableness +notaphilism +notaphilist +notchelling +nothingisms +nothingness +notionalist +notochordal +notodontids +notorieties +notoriously +Nototherium +notungulate +nourishable +nourishment +Novatianism +Novatianist +novelettish +novelettist +novodamuses +Novosibirsk +noxiousness +nuclearised +nuclearises +nuclearized +nuclearizes +nucleations +nucleolated +nucleoplasm +nucleotides +nudicaudate +nudicaulous +nullifidian +nulliparity +nulliparous +numerations +numerically +numismatics +numismatist +nummulation +nunciatures +nuncupating +nuncupation +nuncupative +nuncupatory +nunnishness +nursehounds +nurserymaid +nutcrackers +nutrimental +nutritional +nutritively +nyctalopses +nyctanthous +nyctinastic +nyctitropic +nyctophobia +Nymphalidae +nympholepsy +nympholepts +nymphomania diff --git a/com/agnibho/code/anagram/dictionary/N12.txt b/com/agnibho/code/anagram/dictionary/N12.txt new file mode 100644 index 0000000..f878d13 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N12.txt @@ -0,0 +1,233 @@ +namechecking +namelessness +nanoplankton +naphthalised +naphthalises +naphthalized +naphthalizes +narcissistic +narcotherapy +narcotically +Narragansett +narrowcasted +nasalisation +nasalization +nasolacrymal +nationalised +nationalises +nationalists +nationalized +nationalizes +naturalising +naturalistic +naturalizing +naturopathic +nauseatingly +nauseousness +navigability +navigational +Nazification +Neandertaler +Neanderthals +nebulisation +nebulization +nebulousness +necessarians +necessitated +necessitates +neckerchiefs +necrographer +necrological +necrologists +necromancers +necrophagous +necrophiliac +necrophilism +necrophilous +necrophorous +necropolises +necroscopies +nectocalyces +needlessness +negationists +negativeness +negativistic +neglectfully +neglectingly +negotiations +negotiatress +negrophilism +negrophilist +neighborhood +neighborless +neighbouring +nematocystic +nematologist +Nematomorpha +nematophores +Neoceratodus +neoclassical +Neohellenism +neologically +neonomianism +neopaganised +neopaganises +neopaganized +neopaganizes +Neoplatonism +neoplatonist +neorealistic +neoterically +neovitalists +Nepenthaceae +nephelometer +nephelometry +nephological +nephologists +nephrologist +nephroptosis +nephrotomies +nervurations +Nestorianism +Netherlander +Netherlandic +netherstocks +neurasthenia +neurasthenic +neurectomies +neuroanatomy +neurobiology +neurofibroma +neurogenesis +neurohormone +neuroleptics +neurological +neurologists +neuropathist +neuropeptide +neuropterans +neuropterist +neuropterous +neuroscience +neurosurgeon +neurosurgery +neurotically +neurypnology +neutralisers +neutralising +neutralistic +neutralities +neutralizers +neutralizing +nevertheless +newfangledly +Newfoundland +newsmagazine +newspaperdom +newspaperman +newspapermen +nickelodeons +nicotinamide +nidificating +nidification +nielsbohrium +niggardising +niggardizing +nightclasses +nightclubber +nightdresses +nightingales +nightworkers +nimbostratus +nineteenthly +Nintendoitis +nitranilines +nitroaniline +nitrobenzene +nitrogenised +nitrogenises +nitrogenized +nitrogenizes +nitromethane +nitrophilous +nitrosamines +nitrotoluene +nobilitating +nobilitation +noctambulism +noctambulist +noctilucence +noematically +nomadisation +nomadization +nomenclative +nomenclators +nomenclature +nomenklatura +nominalising +nominalistic +nominalizing +nominatively +nomographers +nomothetical +nonabsorbent +nonaddictive +nonagenarian +nonagesimals +nonautomatic +nonbelievers +nonbreakable +nonchalantly +nondescripts +nonexecutive +nonflowering +nonpoisonous +nontechnical +noradrenalin +northernised +northernises +northernisms +northernized +northernizes +northernmost +Northumbrian +nosographers +nostological +notabilities +notaphilists +noteworthily +nothingarian +notification +notionalists +Notodontidae +Notonectidae +notoungulate +notungulates +nourishingly +nourishments +novelettists +novelisation +novelization +Novokuznetsk +nuclearising +nuclearizing +nucleophilic +nugatoriness +nullifidians +numberlessly +numerability +numerologist +numerousness +numinousness +numismatists +nummulations +nuncupations +nurserymaids +nutritionist +nutritiously +nychthemeral +nychthemeron +nyctitropism +Nymphaeaceae +nympholeptic +nymphomaniac diff --git a/com/agnibho/code/anagram/dictionary/N13.txt b/com/agnibho/code/anagram/dictionary/N13.txt new file mode 100644 index 0000000..9a6f5f7 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N13.txt @@ -0,0 +1,140 @@ +nannoplankton +naphthalising +naphthalizing +naphthylamine +narcohypnosis +narcotisation +narcotization +Narragansetts +narrowcasting +nasalisations +nasalizations +nationalising +nationalistic +nationalities +nationalizing +navigableness +Neandertalers +Neanderthaler +nearsightedly +necessariness +necessitarian +necessitating +necessitation +necessitously +necrographers +necromantical +necrophiliacs +necroscopical +nectariferous +nefariousness +neglectedness +negligibility +negotiability +negotiatrixes +negrophilists +neighborhoods +neighbourhood +neighbourless +nemathelminth +nematologists +neoclassicism +neoclassicist +neogrammarian +neologistical +neopaganising +neopaganizing +neoplasticism +neoplatonists +nephelometers +nephelometric +nephrectomies +nephrological +nephrologists +nervelessness +Netherlanders +Netherlandish +neuraminidase +neurastheniac +neuroblastoma +neurocomputer +neuroethology +neurofibromas +neurolinguist +neuromuscular +neuropathical +neuropathists +neuropeptides +neuropterists +neurosurgeons +neurosurgical +neurotoxicity +neurovascular +newsmagazines +nickeliferous +niggardliness +nightclubbers +nightclubbing +nightmarishly +Nintendinitus +nitrification +nitrobacteria +nitrogenising +nitrogenizing +nitroglycerin +nitroparaffin +nitwittedness +noctambulists +noctivagation +noiselessness +nomenclatural +nomenclatures +nominativally +nomographical +nonagenarians +nonbiological +nonclassified +noncognizable +noncommercial +nonconclusive +nonconcurrent +nonconforming +nonconformist +nonconformity +noncontagious +nondescriptly +nonfunctional +nonjudgmental +nonnegotiable +nonpathogenic +nonpersistent +nonscientific +nonsensically +noradrenaline +normalisation +normalization +normativeness +Northallerton +northerliness +northernising +northernizing +Northumbrians +nostalgically +nothingarians +notifications +notoriousness +notoungulates +novelisations +novelizations +novocentenary +nullification +numerological +numerologists +numismatology +nutraceutical +nutritionally +nutritionists +nychthemerons +nyctaginaceae +nymphaeaceous +nymphomaniacs diff --git a/com/agnibho/code/anagram/dictionary/N14.txt b/com/agnibho/code/anagram/dictionary/N14.txt new file mode 100644 index 0000000..e87254e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N14.txt @@ -0,0 +1,83 @@ +nanotechnology +narcocatharsis +narcosynthesis +narcoterrorism +narrowcastings +naturalisation +naturalization +Neanderthalers +Neanderthaloid +Nebuchadnezzar +necessarianism +necessitarians +necessitations +nectareousness +neglectfulness +negotiatresses +neighborliness +neighbourhoods +nemathelminths +nematodiriasis +neoclassicists +neocolonialism +neocolonialist +neogrammarians +Neopythagorean +neurastheniacs +neuroanatomist +neurobiologist +neuroblastomas +neurocomputers +neurocomputing +neuroendocrine +neurofibrillar +neurofibromata +neurohypnology +neurolinguists +neurologically +neuropathology +Neuropteroidea +neuroradiology +neuroscientist +neutralisation +neutralization +newfangledness +Newfoundlander +newspaperwoman +newspaperwomen +newsworthiness +Nibelungenlied +Nietzscheanism +nitrifications +nitrocellulose +nitroglycerine +noctambulation +noctivagations +nomenclatorial +nominalisation +nominalization +nonbelligerent +nonchromosomal +noncommittally +nonconformance +nonconformists +nondestructive +nondisjunction +nonjudgemental +nonoperational +nonsensicality +norepinephrine +norethisterone +normalisations +normalizations +Northumberland +noteworthiness +nuclearisation +nuclearization +nudibranchiate +nullifications +numberlessness +numismatically +nutritiousness +nyctaginaceous +nymphomaniacal diff --git a/com/agnibho/code/anagram/dictionary/N15.txt b/com/agnibho/code/anagram/dictionary/N15.txt new file mode 100644 index 0000000..89223b0 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N15.txt @@ -0,0 +1,36 @@ +nationalisation +nationalization +Nebuchadnezzars +necessitousness +necromantically +neighbourliness +Nemathelminthes +nemathelminthic +neocolonialists +neuroanatomical +neuroanatomists +neurobiological +neurobiologists +neuroblastomata +neurofibrillary +neurohypophyses +neurohypophysis +neurolinguistic +neurophysiology +neuropsychiatry +neuropsychology +neuroscientists +Newfoundlanders +nitrogenisation +nitrogenization +noctambulations +nomographically +nondescriptness +nonjudgmentally +nonsensicalness +nothingarianism +Nottinghamshire +notwithstanding +novocentenaries +nucleosynthesis +numismatologist diff --git a/com/agnibho/code/anagram/dictionary/N16.txt b/com/agnibho/code/anagram/dictionary/N16.txt new file mode 100644 index 0000000..244983f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N16.txt @@ -0,0 +1,11 @@ +nationalisations +nationalizations +naturalistically +necessitarianism +neurolinguistics +neuropathologist +neuropsychiatric +neurotransmitter +noncontroversial +nonjudgementally +Northamptonshire diff --git a/com/agnibho/code/anagram/dictionary/N17.txt b/com/agnibho/code/anagram/dictionary/N17.txt new file mode 100644 index 0000000..f88e7ed --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N17.txt @@ -0,0 +1,11 @@ +nationalistically +Neopythagoreanism +neurofibromatosis +neuropathogenesis +neuropathological +neuropathologists +neuropharmacology +neurophysiologist +neuropsychiatrist +neuropsychologist +nonadministrative diff --git a/com/agnibho/code/anagram/dictionary/N18.txt b/com/agnibho/code/anagram/dictionary/N18.txt new file mode 100644 index 0000000..6087802 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N18.txt @@ -0,0 +1,7 @@ +neuroendocrinology +neuroleptanalgesia +neuroleptanalgesic +neurophysiological +neurophysiologists +neuropsychiatrists +neuropsychologists diff --git a/com/agnibho/code/anagram/dictionary/N19.txt b/com/agnibho/code/anagram/dictionary/N19.txt new file mode 100644 index 0000000..d4c3eba --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N19.txt @@ -0,0 +1 @@ +neuropharmacologist diff --git a/com/agnibho/code/anagram/dictionary/N2.txt b/com/agnibho/code/anagram/dictionary/N2.txt new file mode 100644 index 0000000..5efc19f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N2.txt @@ -0,0 +1,5 @@ +na +ne +no +nu +ny diff --git a/com/agnibho/code/anagram/dictionary/N20.txt b/com/agnibho/code/anagram/dictionary/N20.txt new file mode 100644 index 0000000..4456ed0 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N20.txt @@ -0,0 +1 @@ +neuropharmacologists diff --git a/com/agnibho/code/anagram/dictionary/N3.txt b/com/agnibho/code/anagram/dictionary/N3.txt new file mode 100644 index 0000000..78d0fce --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N3.txt @@ -0,0 +1,47 @@ +nab +nae +nag +nah +nam +nan +nap +nas +nat +nay +neb +ned +n�e +nef +nek +Neo +nep +net +new +Ney +nib +nid +nil +nim +nip +nis +nit +nix +nob +nod +nog +noh +non +nor +nos +not +now +Nox +noy +nth +nub +nun +nur +nut +nye +Nym +Nyx diff --git a/com/agnibho/code/anagram/dictionary/N4.txt b/com/agnibho/code/anagram/dictionary/N4.txt new file mode 100644 index 0000000..db9def8 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N4.txt @@ -0,0 +1,162 @@ +naam +naan +nabk +nabs +nach +nada +naff +naga +nags +Naha +Naia +naif +naik +nail +nain +Nair +Naja +nala +name +nams +nana +nans +naoi +naos +napa +nape +naps +narc +nard +nare +nark +nary +Nash +Nato +nats +nave +navy +nays +naze +Nazi +neal +neap +near +neat +nebs +neck +neds +need +neem +neep +nefs +neif +Neil +Nejd +Nell +Nemo +nene +neon +neps +nerd +nerk +Nero +nesh +ness +nest +nete +nets +nett +neuk +neum +Neva +n�v� +nevi +news +newt +next +nibs +nice +nick +nide +nidi +nids +nief +nife +niff +nigh +Nike +Nile +nill +nils +nimb +nims +Nina +nine +Nipa +nips +nirl +nisi +nite +nits +Niue +nixy +Noah +nobs +nock +node +nodi +nods +Noel +noes +nogg +nogs +noil +Nola +nole +noll +noma +nome +Nona +none +nong +nook +noon +noop +nope +Nora +Nord +nori +nork +norm +Norn +nose +nosh +nosy +note +nott +noun +noup +nous +nova +nows +nowt +nowy +noys +Nuba +nubs +nude +nuff +nuke +null +numb +nuns +Nupe +nurd +nurl +nurr +nurs +nuts +Nuuk +nyas +nyes +nyet diff --git a/com/agnibho/code/anagram/dictionary/N5.txt b/com/agnibho/code/anagram/dictionary/N5.txt new file mode 100644 index 0000000..57e78ae --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N5.txt @@ -0,0 +1,307 @@ +Naafi +naams +naans +nabks +nabla +nabob +nache +nacho +nacre +Nadia +nadir +naeve +naevi +nagas +naggy +nagor +nahal +Nahum +naiad +Naias +naiks +nails +naira +Nairn +naive +naked +naker +nalas +nalla +named +namer +names +Namur +nanas +Nance +Nancy +nandu +nanna +nanny +Nantz +Naomi +napes +napoo +nappa +nappe +nappy +naras +narco +narcs +nards +nares +narks +narky +narre +Narva +nasal +nashi +Nasik +nasty +natal +natch +nates +natty +naunt +Nauru +naval +navel +naves +navew +navvy +nawab +Naxos +Nayar +nazes +nazir +Nazis +neafe +neals +neaps +nears +neath +nebek +nebel +necks +neddy +needs +needy +neeld +neele +neemb +neems +neeps +ne'er +neese +neeze +Negev +Negro +negus +Nehru +neifs +neigh +neist +neive +nelis +nelly +nenes +Nepal +neper +nepit +nerds +nerdy +nerka +nerks +Nerva +nerve +Nervi +nervy +Nerys +Neski +nests +netes +Netta +netts +netty +neuks +neume +neums +Neuss +nevel +never +neves +Nevis +nevus +newed +newel +newer +newly +Newry +newsy +newts +nexus +ngaio +ngana +ngoma +Ngoni +Nguni +ngwee +Niall +Niamh +nicad +NICAM +nicer +niche +nicht +nicks +Nicky +nicol +nidal +nides +nidor +nidus +niece +niefs +nieve +niffs +niffy +nifty +Nigel +Niger +night +nihil +nikau +Nikko +Nilot +nimbi +Nimby +Nimes +Nimoy +nines +ninja +ninny +ninon +ninth +Niobe +nippy +nirls +nirly +Nisan +nisei +nisse +nisus +niter +nites +nitid +niton +nitre +nitry +nitty +nival +Niven +nixes +nixie +Nixon +nizam +nobby +Nobel +noble +nobly +nocks +nodal +noddy +nodes +nodus +Noele +noels +noggs +nohow +noils +noint +noise +noisy +Nolan +nolls +nomad +nomas +nomen +nomes +nomic +nomoi +nomos +nonce +Nones +nonet +nongs +nonny +nooks +nooky +noons +noops +noose +nopal +nopes +Norah +Norge +noria +norks +Norma +norms +Norna +Norns +Norse +north +nosed +noser +noses +nosey +notal +notch +noted +noter +notes +notum +Notus +nould +noule +nouns +nouny +noups +novae +Novak +novas +novel +novum +noway +nowed +Nowel +noxal +noyau +noyes +Nuala +Nubas +nubby +nubia +nucha +nudes +nudge +nudie +nugae +nuked +nukes +nulla +nulls +numbs +numen +Nupes +nurds +nurls +nurrs +nurse +nutty +nyaff +nyala +Nyasa +nylon +Nyman +nymph +Nyssa diff --git a/com/agnibho/code/anagram/dictionary/N6.txt b/com/agnibho/code/anagram/dictionary/N6.txt new file mode 100644 index 0000000..b7a0cef --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N6.txt @@ -0,0 +1,439 @@ +nabbed +nabber +nablas +Nablus +nabobs +Naboth +nabses +naches +nachos +nacket +nacred +nacres +Nadine +nadirs +naeves +naevus +naffly +nagana +Nagano +nagari +nagged +nagger +nagors +Nagoya +Nagpur +nahals +naiads +naiant +nailed +nailer +nairas +naiver +nakers +nallah +nallas +namely +namers +naming +nandoo +nanism +nankin +nannas +Nansen +Nantes +naoses +napalm +napery +Napier +napkin +Naples +Napoli +napoos +napped +napper +nappes +napron +narcos +narded +nardoo +narial +narine +narked +Narnia +narras +narrow +Narvik +nasals +nasard +Naseby +nashis +nasion +Naskhi +Nassau +Nasser +nastic +nasute +natant +Nathan +nation +native +natron +natter +natura +nature +naught +naunts +nausea +nautch +nautic +Navaho +navaid +Navajo +navels +navews +navies +nawabs +Nazify +nazirs +Nazism +neafes +neaffe +Neagle +nealed +neanic +neaped +neared +nearer +nearly +neaten +neater +neatly +nebbed +nebbuk +nebeck +nebeks +nebels +nebish +nebris +nebula +nebule +nebuly +Neckar +necked +Necker +nectar +needed +needer +needle +needly +neembs +neesed +neeses +neezed +neezes +nefast +negate +Negros +neighs +neives +nekton +nelies +Nellie +nelson +Nemean +Nepali +nepers +nepeta +nephew +nepits +nereid +Nereus +nerine +Nerita +nerite +Nerium +nerkas +Nernst +neroli +Neruda +nerval +nerved +nerver +nerves +Nesbit +Nesiot +Neskhi +nesses +Nessie +Nessus +nested +nester +nestle +Nestor +netful +nether +netted +Nettie +nettle +nettly +neumes +neural +neuron +neuter +Nevada +nevels +Nevers +Nevsky +Newark +newbie +newell +newels +newest +Newfie +Newham +newing +newish +Newman +newsed +newses +newton +nextly +ngaios +ngomas +Ngonis +Ngunis +nhandu +niacin +Niamey +nibbed +nibble +nicads +Nicaea +nicely +Nicene +nicest +nicety +niched +nicher +niches +nickar +nicked +nickel +nicker +Nicola +Nicole +nicols +nidget +nidify +niding +nidors +nieces +nielli +niello +nieves +Ni�vre +niffer +niggle +niggly +nighly +nights +nighty +nikaus +nilgai +nilgau +nilled +Nilote +Nilots +nimbed +nimble +nimbly +nimbus +Nimitz +nimmed +nimmer +Nimrod +Nimrud +nincom +ninety +Ningpo +ninjas +ninons +ninths +niobic +nipped +nipper +Nippie +nipple +Nippon +nipter +nirled +nirlie +nirlit +niseis +Nissen +nisses +nitery +nitric +nitryl +nitwit +Niv�se +nixies +nizams +nobble +nobbut +nobler +nobles +nobody +nocake +nocent +nochel +nocked +nocket +noctua +nodded +nodder +noddle +nodose +nodous +nodule +Noelle +noesis +noetic +nogaku +nogged +noggin +noints +noised +noises +nomade +nomads +nomady +nomina +nomism +nonage +nonane +nonary +nonces +nonets +noodle +nookie +nooned +nooner +noosed +nooses +Nootka +nopals +Nordic +Noreen +norias +norite +normal +norman +Norroy +norsel +norths +Norway +nosean +nosers +noseys +noshed +nosher +noshes +nosier +nosies +nosily +nosing +nostoc +nostoi +nostos +notary +notate +notchy +noters +notice +notify +noting +notion +notour +notums +nougat +nought +nounal +nousle +Novara +novels +novena +Novial +novice +novity +noways +Nowell +nowise +noyade +noyaus +noyous +nozzer +nozzle +nuance +nubbin +nubble +nubbly +Nubian +nubias +nubile +nuchae +nuchal +nuclei +nucule +nudely +nudged +nudger +nudges +nudies +nudism +nudist +nudity +nudnik +nuffin +nuggar +nugget +nuking +nullah +nullas +nulled +numbat +numbed +number +numbly +numdah +numina +numnah +nuncio +nuncle +Nuphar +nurdle +nurhag +nurled +nursed +nurser +nurses +nursle +nutant +nutate +nutlet +nutmeg +nutria +nutted +nutter +nuzzer +nuzzle +nyaffs +nyalas +Nyanja +nyanza +nyases +nybble +nylons +nympho +nymphs diff --git a/com/agnibho/code/anagram/dictionary/N7.txt b/com/agnibho/code/anagram/dictionary/N7.txt new file mode 100644 index 0000000..d4ff83e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N7.txt @@ -0,0 +1,539 @@ +naartje +nabbers +nabbing +Nabokov +Nabucco +nacarat +nacelle +nackets +nacrite +nacrous +naebody +naevoid +nagapie +naggers +nagging +nagmaal +Nahuatl +naiades +nailers +nailery +nailing +Naipaul +Nairobi +naively +naivest +naivet� +naivety +naivist +nakeder +nakedly +nallahs +namable +namaste +Namibia +namings +nandine +nandoos +Nanette +Nanjing +nankeen +Nanking +nankins +nannied +nannies +Nanning +naphtha +napkins +napless +napooed +nappers +nappier +nappies +napping +narases +Narayan +narceen +narding +nardoos +nargile +narkier +narking +Narmada +narrate +narrows +narthex +nartjie +narwhal +Nasalis +nasally +nasards +nascent +nashgab +nasions +Nasmyth +Nastase +nastier +nasties +nastily +nasutes +Natalia +Natalie +Natasha +natches +nathemo +nations +natives +natrium +natters +nattery +nattier +nattily +natural +natured +natures +naughts +naughty +nauplii +Nauruan +nauseas +nautics +nautili +Navahos +navaids +Navajos +navarch +navarho +navarin +Navarre +navette +navvied +navvies +nayward +nayword +Naziism +Ndebele +neaffes +nealing +neaping +nearest +nearing +Neasden +neatens +neatest +nebbich +nebbing +nebbish +nebbuks +nebecks +nebulae +nebular +nebulas +nebules +necking +necklet +necktie +necrose +nectars +nectary +neddies +needers +needful +needier +needily +needing +needled +needler +needles +neesing +neezing +negated +negates +neglect +neglig� +Negress +Negrito +Negroes +negroid +neguses +neighed +neither +nektons +nellies +nelsons +nelumbo +nematic +nemeses +nemesia +nemesis +nemoral +Neogaea +Neogene +neolith +neology +neonate +neoteny +Neozoic +Nepalis +nephews +nephric +nephron +nepotic +Neptune +nereids +nerines +Nerissa +nerites +neritic +Neronic +nervate +nervers +nervier +nervily +nervine +nerving +nervous +nervule +nervure +nesters +nestful +nesting +nestled +nestles +netball +Netcaf� +netfuls +netizen +netsuke +nettier +netting +nettled +nettles +network +neurine +neurism +neurite +neuroma +neurone +neurons +neuston +neuters +neutral +neutron +Neville +newbies +Newbolt +newborn +Newbury +newcome +Newfies +Newgate +newness +Newnham +Newport +newsboy +newsier +newsies +newsing +newsman +newsmen +newtons +nexuses +nhandus +Niagara +nibbing +nibbled +nibbler +nibbles +niblick +Nicaean +niceish +nichers +niching +nickars +nickels +nickers +nicking +Nicolai +Nicolas +Nicosia +nictate +nidgets +niellos +Nielsen +niffers +niffier +niftier +niftily +nigella +Nigeria +niggard +niggled +niggler +niggles +nighted +nightie +nightly +nigrify +nihonga +Niigata +nilgais +nilgaus +Nilotes +Nilotic +Nilsson +Nimbies +nimbler +nimiety +nimious +nimmers +nimming +nimonic +nincoms +Ninette +Nineveh +ninnies +ninthly +niobate +Niobean +niobite +niobium +niobous +nippers +nippier +Nippies +nippily +nipping +nippled +nipples +nipters +nirlier +nirling +nirvana +nisuses +niterie +nithing +nitinol +nitpick +nitrate +Nitrian +nitride +nitrify +nitrile +nitrite +nitrous +nittier +nitwits +niveous +Noachic +nobbier +nobbily +nobbled +nobbler +nobbles +noblest +nocakes +nocents +nochels +nockets +nocking +noctuas +noctuid +noctule +nocturn +nocuous +nodally +nodated +nodders +noddies +nodding +noddled +noddles +nodical +nodular +noduled +nodules +Noetian +nogging +noggins +nointed +noisier +noisily +noising +noisome +nomades +nomadic +nomarch +nombles +nombril +nominal +nominee +nonaged +nonages +nonagon +nondrip +nonetti +nonetto +nonnies +nonplus +nonsuch +nonsuit +nonuple +noodles +nookies +noology +noonday +nooners +nooning +noosing +Nootkas +Norfolk +norimon +norland +normals +normans +norte�a +norte�o +northed +norther +norward +Norwich +nosebag +nosegay +noshers +noshery +noshing +nosiest +nosings +nostocs +nostril +nostrum +notable +notably +notaeum +notanda +notated +notates +notched +notchel +notcher +notches +notedly +notelet +notepad +nothing +noticed +notices +notions +notitia +nougats +noughts +noumena +nourice +nourish +nousled +nousles +nouveau +novalia +novella +novelle +Novello +novelty +novenas +novices +nowhere +nowness +noxious +noyades +noyance +nozzers +nozzles +nuanced +nuances +nubbier +nubbins +nubbled +nubbles +Nubians +nucelli +nucleal +nuclear +nuclein +nucleon +nucleus +nuclide +nucules +nudgers +nudging +nudists +nudniks +nuggars +nuggets +nuggety +nullahs +nullify +nulling +nullity +numbats +numbers +numbest +numbing +numbles +numdahs +numeral +numeric +Numidia +nummary +numnahs +nunatak +Nunavut +nuncios +nundine +nunhood +nunnery +nunnish +nunship +nuptial +nuraghe +nuraghi +nurdled +nurdles +Nureyev +nurhags +nurling +Nurofen +nursers +nursery +nursing +nursled +nursles +nurture +nutated +nutates +nutcase +nutlets +nutlike +nutmegs +nutrias +nutters +nuttery +nuttier +nuttily +nutting +nutwood +nuzzers +nuzzled +nuzzles +nyaffed +Nyanjas +nyanzas +nybbles +Nyerere +nylghau +nymphae +nymphal +nymphet +nymphic +nymphly +nymphos +Nynorsk diff --git a/com/agnibho/code/anagram/dictionary/N8.txt b/com/agnibho/code/anagram/dictionary/N8.txt new file mode 100644 index 0000000..997e781 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N8.txt @@ -0,0 +1,545 @@ +naartjes +nacarats +nacelles +nacreous +naething +naffness +nagapies +Nagasaki +Nahuatls +nailings +nailless +nainsel' +nainsook +naissant +naivet�s +nakedest +naloxone +namaskar +namastes +nameable +nameless +namesake +nametape +Namibian +Nanchang +nandines +nankeens +nannygai +nannying +nannyish +nanogram +naperies +naphthas +naphthol +napiform +napoleon +napooing +nappiest +Narbonne +narceine +narcissi +narcoses +narcosis +narcotic +narghile +nargileh +nargiles +naricorn +narkiest +narquois +narrases +narrated +narrates +narrator +narrowed +narrower +narrowly +nartjies +narwhals +nasalise +nasality +nasalize +nascence +nascency +nashgabs +nastalik +nastiest +natality +natation +natatory +nathless +natiform +national +natively +nativism +nativist +nativity +nattered +natterer +nattiest +naturals +naturing +naturism +naturist +naumachy +nauplius +Nauruans +nauseant +nauseate +nauseous +Nausica� +nautches +nautical +nautilus +navalism +navarchs +navarchy +Navarino +navarins +navettes +navicert +navicula +navigate +navvying +Nazarean +Nazarene +Nazareth +Nazarite +Nazified +Nazifies +Nazirite +Ndjamena +neaptide +Nearctic +nearness +nearside +neatened +neatness +nebbishe +nebishes +Nebraska +nebrises +nebulise +nebulium +nebulize +nebulous +neckatee +neckband +neckings +necklace +necklets +neckline +neckties +neckwear +neckweed +necropsy +necrosed +necroses +necrosis +necrotic +nectared +neediest +needlers +needless +needling +needment +Ne'erday +negating +negation +negative +negatory +negatron +neglects +negligee +neglig�s +Negrillo +Negritos +negroids +negroism +Nehemiah +neighbor +neighing +nelumbos +Nematoda +nematode +nematoid +Nembutal +Nemertea +nemesias +nemorous +nennigai +nenuphar +neoblast +Neogaean +neoliths +neologic +neomycin +neonatal +neonates +neopagan +neophile +neophobe +neophyte +neoplasm +neoprene +neotenic +neoteric +neotoxin +Nepalese +nepenthe +nephrite +nephroid +nephrons +nepionic +nepotism +nepotist +nereides +Neritina +Neronian +nervelet +nerviest +nervines +nervular +nervules +nervures +nescient +neshness +nestlike +nestling +Netcaf�s +Nethinim +netizens +Netscape +netsukes +nettiest +nettings +nettlier +nettling +networks +neurally +neuritic +neuritis +neuromas +neuronal +neurones +neuronic +neuropil +neuroses +neurosis +neurotic +neustons +neutered +neutrals +neutrino +neutrons +nevelled +Newcomen +newcomer +newelled +Newhaven +Newlands +newsboys +newscast +newsgirl +newshawk +newsiest +newsless +newspeak +newsreel +newsroom +newswire +Newtonic +nextness +ngultrum +nibblers +nibbling +Nibelung +niblicks +niceness +niceties +nichered +Nicholas +Nichrome +nickeled +nickelic +nickered +Nicklaus +Nickleby +nicknack +nickname +Nicolson +nicotian +nicotine +nictated +nictates +nidation +nidering +nidified +nidifies +nidorous +niellist +nielloed +niffered +niffiest +niffnaff +Niflheim +niftiest +nigellas +Nigerian +niggards +nigglers +niggling +nighness +nightcap +nighties +nightjar +nigrosin +nihilism +nihilist +nihility +Nijinsky +Nijmegen +nimblest +nimbused +nimbuses +nimbyism +ninefold +ninepins +nineteen +nineties +ninjitsu +ninjutsu +Nintendo +nippered +nippiest +nippling +niramiai +nirliest +nirvanas +nisberry +niteries +nithings +nitpicks +nitrated +nitrates +nitrided +nitrides +nitriles +nitrites +nitrogen +nitrosyl +nitroxyl +nittiest +Noachian +nobbiest +nobblers +nobbling +nobelium +nobility +nobleman +noblemen +noblesse +nobodies +nocently +Noctilio +noctuary +noctuids +noctules +nocturne +nocturns +nodalise +nodality +nodalize +nodation +noddings +noddling +nodosity +nodulose +nodulous +noggings +nohowish +nointing +noiseful +noisette +noisiest +nolition +nomadise +nomadism +nomadize +nomarchs +nomarchy +nombrils +nominals +nominate +nominees +nomistic +nomogeny +nomogram +nomology +nonagons +nondairy +nonesuch +nonettos +nonionic +nonjuror +nonlicet +nonpolar +nonsense +nonstick +nonsuits +nontoxic +nonuplet +nonvoter +noometry +noondays +noonings +noontide +noontime +norimons +norlands +normalcy +normally +Normandy +Norseman +Norsemen +norte�as +norte�os +northern +northers +northing +Northman +Northmen +norwards +Norweyan +nosebags +nosecone +nosegays +noseless +noselite +nosering +nosiness +nosology +nostrils +Nostromo +nostrums +notables +notaeums +notandum +notarial +notaries +notarise +notarize +notating +notation +notchels +notchers +notching +notebook +notecase +noteless +notelets +notepads +nothings +noticing +notified +notifier +notifies +notional +notitias +Notogaea +notornis +noumenal +noumenon +nousling +nouvelle +Novatian +novation +noveldom +novelese +novelise +novelish +novelism +novelist +novelize +novellae +novellas +November +novenary +novercal +noverint +Novgorod +nowadays +nowhence +nubbiest +nubblier +nubbling +nubecula +nubiform +nubility +nubilous +nucellar +nucellus +nucleary +nuclease +nucleate +nucleide +nucleole +nucleoli +nucleons +nuclides +nudation +nudeness +nudicaul +nudities +Nuffield +nugatory +nuisance +nullings +nullness +numbered +numberer +numbness +numeracy +numerals +numerary +numerate +numerous +Numidian +numinous +nummular +numskull +nunataks +nunchaku +nuncheon +nundinal +nundines +Nuneaton +nuptials +nuraghic +nurdling +N�rnberg +nursling +nurtural +nurtured +nurturer +nurtures +nutarian +nutating +nutation +nutcases +nuthatch +nuthouse +nutmeggy +nutrient +nutshell +nuttiest +nuttings +nuzzling +nyaffing +nylghaus +Nymphaea +nymphean +nymphets +nymphish +nystatin diff --git a/com/agnibho/code/anagram/dictionary/N9.txt b/com/agnibho/code/anagram/dictionary/N9.txt new file mode 100644 index 0000000..39a804d --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/N9.txt @@ -0,0 +1,531 @@ +Nabataean +naethings +naggingly +nailbrush +naileries +naiveness +naiveties +nakedness +namaskars +namecheck +namesakes +nametapes +Namibians +nannygais +nannyghai +nanograms +nanometre +Nantucket +naphthene +naphthols +Napierian +napoleons +nappiness +narcissus +narcotics +narcotine +narcotise +narcotism +narcotist +narcotize +narghiles +nargilehs +naricorns +narrating +narration +narrative +narrators +narratory +narrowest +narrowing +narthexes +nasalised +nasalises +nasalized +nasalizes +naseberry +Nashville +nasta'liq +nastiness +natatoria +Nathaniel +natheless +nathemore +nationals +nativists +natrolite +natterers +nattering +nattiness +naturally +naturists +naughtier +naughtily +naumachia +nauplioid +nauseants +nauseated +nauseates +Navaratra +Navaratri +navelwort +navicerts +navicular +naviculas +navigable +navigably +navigated +navigates +navigator +Nazaritic +Nazifying +Nazirites +neaptides +nearsides +neatening +nebbiches +nebbisher +nebbishes +Nebraskan +nebulised +nebuliser +nebulises +nebulized +nebulizer +nebulizes +necessary +necessism +necessity +neckbands +neckcloth +necklaces +necklines +neckverse +neckweeds +necrology +necrosing +necrotise +necrotize +necrotomy +nectareal +nectarean +nectarial +nectaries +nectarine +nectarous +needfully +neediness +needleful +neesberry +nefandous +nefarious +Nefertiti +negations +negatived +negatives +negatrons +neglected +neglecter +negligees +negligent +n�gociant +negotiant +negotiate +Negresses +Negrillos +negritude +negrohead +negroidal +negroisms +negrophil +neighbors +neighbour +nelumbium +nematodes +nemertean +nemertian +nemertine +nemophila +nennigais +nenuphars +neoblasts +Neocomian +neodymium +Neolithic +neologian +neologies +neologise +neologism +neologist +neologize +neonomian +neopagans +neophiles +neophilia +neophobes +neophobia +neophobic +neophytes +neophytic +neopilina +neoplasms +neoteinia +neotenous +neoterise +neoterism +neoterist +neoterize +neotoxins +nepenthes +nephalism +nephalist +nepheline +nephelite +nephogram +nephology +nephralgy +nephritic +nephritis +nephrosis +nephrotic +nepotists +Neptunian +Neptunist +neptunium +Neritidae +nervation +nervature +nerveless +nervelets +nerviness +nervously +nescience +nestlings +Nestorian +Nestorius +Netanyahu +nettliest +networked +networker +Neuch�tel +neuralgia +neuralgic +neuration +neurility +neuritics +neurochip +neuroglia +neurogram +neurology +neuromata +neuropath +neurotics +neurotomy +neutering +neutrally +neutretto +neutrinos +nevelling +nevermore +Newcastle +newcomers +Newdigate +newfangle +newmarket +newsagent +newscasts +newsgirls +newsgroup +newshawks +newshound +newsiness +newspaper +newsprint +newsreels +newsrooms +newssheet +newstrade +newswires +newswoman +newswomen +Newtonian +ngultrums +niaiserie +nibblings +Nibelungs +Nicaragua +niccolite +nichering +Nicholson +nickeline +nickeling +nickelise +nickelize +nickelled +nickelous +nickering +nicknacks +nicknamed +nicknames +nickpoint +nickstick +Nicodemus +Nicolette +nicompoop +nicotiana +nicotians +nicotined +nicotinic +nictating +nictation +nictitate +nidamenta +niddering +niderings +nidifying +niellated +niellists +nielloing +Nietzsche +niffering +niffnaffs +niftiness +Nigerians +niggardly +nigglings +nightcaps +nightfall +nightfire +nightgown +nightjars +nightless +nightlife +nightlong +nightmare +nightmary +nightspot +nightward +nightwear +nigricant +nigrified +nigrifies +Nigritian +nigritude +nigrosine +nihilists +Nilometer +ninepence +ninepenny +nineteens +ninetieth +Nipissing +nippering +nipperkin +nippiness +nippingly +Nipponese +nitpicked +nitpicker +nitratine +nitrating +nitration +nitriding +nitrified +nitrifies +nitwitted +nobbiness +nobiliary +nobleness +noblesses +nochelled +noctiluca +Noctuidae +nocturnal +nocturnes +nocuously +nodalised +nodalises +nodalized +nodalizes +nodations +noddingly +nodulated +noiseless +noisettes +noisiness +noisomely +nolitions +Nollekens +nomadised +nomadises +nomadized +nomadizes +nominable +nominally +nominated +nominates +nominator +nomocracy +nomograms +nomograph +nomothete +nonagonal +nonentity +nonillion +nonjurors +nonlethal +nonpareil +nonparous +nonplacet +nonplused +nonpluses +nonprofit +nonracial +nonreader +nonsenses +nonsexist +nonsuches +nonsuited +nonuplets +nonverbal +noodledom +noontides +noosphere +normalise +normality +normalize +normanise +Normanism +normanize +normative +northered +northerly +northerns +northings +northland +northmost +northward +Northwich +Norwegian +nosecones +noserings +Nosferatu +nosheries +nostalgia +nostalgic +nostology +Nostratic +notabilia +notaphily +notarised +notarises +notarized +notarizes +notations +notchback +notchings +notebooks +notecases +notedness +notepaper +notifiers +notifying +notionist +notochord +Notogaean +Notogaeic +Notonecta +notoriety +notorious +Nototrema +nourished +nourisher +nourishes +nouriture +novations +novelette +novelised +noveliser +novelises +novelists +novelized +novelizer +novelizes +novelties +novennial +noverints +noviciate +novitiate +Novocaine +novodamus +nowhither +noxiously +nubbliest +nubeculae +nucleases +nucleated +nucleates +nucleator +nucleides +nucleolar +nucleoles +nucleolus +nudations +nuisancer +nuisances +nullified +nullifier +nullifies +nullipara +nullipore +numberers +numbering +numbingly +numbskull +numerable +numerably +numeraire +numerally +numerated +numerates +numerator +numerical +Numidians +nummulary +nummuline +nummulite +numskulls +nunataker +nunchakus +nuncheons +nuncupate +nunnation +nunneries +Nuremberg +nurselike +nurseling +nursemaid +nurseries +nurslings +nurturant +nurturers +nurturing +nutarians +nutations +nuthouses +nutjobber +nutmegged +nutpecker +nutrients +nutriment +nutrition +nutritive +nutshells +nuttiness +Nyasaland +nyctalops +nymphaeum +nymphalid +nymphical +nystagmic +nystagmus diff --git a/com/agnibho/code/anagram/dictionary/O1.txt b/com/agnibho/code/anagram/dictionary/O1.txt new file mode 100644 index 0000000..13e7564 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O1.txt @@ -0,0 +1 @@ +o diff --git a/com/agnibho/code/anagram/dictionary/O10.txt b/com/agnibho/code/anagram/dictionary/O10.txt new file mode 100644 index 0000000..4c39476 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O10.txt @@ -0,0 +1,772 @@ +oafishness +oakenshaws +obbligatos +obdurately +obdurating +obduration +obediently +obeisances +obeliscoid +Oberhausen +obfuscated +obfuscates +obituaries +obituarist +objections +objectives +objectless +objuration +objurgated +objurgates +oblateness +oblational +obligating +obligation +obligatory +obligement +obligingly +obliterate +obnubilate +obscurants +obsecrated +obsecrates +obsequious +observable +observably +observance +observancy +observants +observator +obsessions +obsidional +obsignated +obsignates +obsolesced +obsolesces +obsoletely +obsoletion +obsoletism +obstetrics +obstructed +obstructer +obstructor +obstruents +obtainable +obtainment +obtempered +obtentions +obtrudings +obtruncate +obtrusions +obtundents +obturating +obturation +obturators +obtuseness +obumbrated +obumbrates +obversions +obviations +occasional +occasioned +occasioner +occidental +occipitals +occludents +occlusions +occlusives +occultists +occultness +occupances +occupation +occupative +occurrence +occurrents +oceanarium +oceanology +ocellation +ochlocracy +ochlocrats +ochraceous +octachords +octahedral +octahedron +octamerous +octameters +octandrian +octandrous +octangular +octaploids +octaploidy +octapodies +octastichs +octastyles +octillions +octodecimo +octogenary +octogynous +octohedron +octonarian +octonaries +octonarius +octoploids +octoploidy +octopodous +octopusher +octostyles +oculomotor +odalisques +oddfellows +Odelsthing +odiousness +odonatists +odontalgia +odontalgic +odontocete +odontogeny +odontolite +odontology +odontomata +odorimetry +oecumenism +oedematose +oedematous +oenologist +oenometers +oenophiles +oesophagus +oestradiol +oestrogens +offendedly +offendress +offensives +officering +officially +officialty +officiants +officiated +officiates +officiator +offishness +offloading +offsaddled +offsaddles +offsetable +offsetting +offsprings +O'Flaherty +oftentimes +Oireachtas +Oklahomans +oldfangled +oleaginous +olecranons +oleiferous +oleographs +oleography +oleophilic +oleraceous +olfactible +oligarchal +oligarchic +oligoclase +oligopsony +olivaceous +ombrometer +ombrophile +ombrophils +ombrophobe +ommatidium +omniferous +omnigenous +omniparity +omniparous +omnipotent +omniscient +omnivorous +omophagous +omophorion +omphaloses +Onagraceae +oncologist +oncometers +oneirology +onocentaur +onomastics +onsettings +onslaughts +ontologist +oophoritis +opalescent +opalescing +opaqueness +operagoers +operations +operatised +operatises +operatives +operatized +operatizes +operculate +operettist +ophicleide +ophiolater +ophiolatry +ophiolitic +ophiologic +ophiomorph +Ophiuridae +ophiuroids +ophthalmia +ophthalmic +opinicuses +opinionist +opisometer +opotherapy +oppilating +oppilation +oppilative +opposeless +oppositely +opposition +oppositive +oppressing +oppression +oppressive +oppressors +opprobrium +oppugnancy +oppugnants +opsiometer +opsomaniac +optatively +optimalise +optimalize +optimising +optimistic +optimizing +optionally +optologist +optometers +optophones +oracularly +orangeades +orangeries +oratorians +oratorical +oratresses +orbiculate +orcharding +orchardist +orchestics +orchestral +orchestras +orchestric +orchideous +orchidists +ordainable +ordainment +ordinances +ordinaries +ordinarily +ordinately +ordinating +ordination +ordonnance +Ordovician +oreography +oreologist +organelles +organicism +organicist +organisers +organising +organismal +organismic +organizers +organizing +organogeny +organogram +orientally +orientated +orientates +orientator +orienteers +oriflammes +Origenists +originally +originated +originates +originator +Orimulsion +ornamental +ornamented +ornamenter +ornateness +orneriness +ornithopod +ornithosis +orogenesis +orogenetic +orographic +orological +orologists +oropharynx +orotundity +orphanages +orphanhood +orpharions +orpheoreon +ortaniques +orthoboric +orthocaine +Orthoceras +orthoclase +orthodromy +orthoepist +orthogenic +orthogonal +orthograph +orthopaedy +orthopedia +orthopedic +orthophyre +orthopnoea +orthopraxy +orthoprism +orthoptera +orthoptics +orthoptist +orthotists +orthotonic +orthotopic +orthotropy +oryctology +oscillated +oscillates +oscillator +oscitantly +oscitating +oscitation +osculating +osculation +osculatory +osmeterium +osmidrosis +osmiridium +osmometers +ossiferous +ossifragas +ossifrages +ossivorous +ostensible +ostensibly +osteoblast +osteoclast +osteocolla +osteoderms +osteogenic +Osteolepis +osteopaths +osteopathy +osteophyte +osteotomes +Ostpolitik +ostraceous +ostracised +ostracises +ostracized +ostracizes +ostracodan +ostrichism +othergates +otherguess +otherwhere +otherwhile +otherworld +otioseness +otologists +ottavarima +ouananiche +oubliettes +Oudenaarde +Oudenardes +outbackers +outbalance +outbargain +outbarring +outbidding +outbluster +outbragged +outbraving +outbreathe +outburning +outcasting +outclassed +outclasses +outcompete +outcropped +outcrossed +outcrosses +outdacious +outdancing +outdriving +outfielder +outfitters +outfitting +outflanked +outflashed +outflashes +outflowing +outflushed +outflushes +outfooting +outfrowned +outgassing +outgeneral +outglaring +outgrowing +outgrowths +outguessed +outguesses +outgunning +outgushing +outhaulers +outhitting +outjesting +outjetting +outjockeys +outjumping +outjutting +outlanders +outlandish +outlasting +outleaping +outlearned +outlodging +outlooking +outmanning +outmantled +outmantles +outmarched +outmarches +outmatched +outmatches +outmeasure +outnumbers +outpassion +outpeeping +outperform +outplaying +outpointed +outpourers +outpouring +outpowered +outpraying +outpricing +outputting +outrageous +outranging +outranking +outreached +outreaches +outreddens +outredding +outreigned +outriggers +outrooting +outrunners +outrunning +outrushing +outsailing +outselling +outsetting +outshining +outsitting +outsmarted +outsoaring +outsourced +outsources +outspanned +outspreads +outsprings +outstaring +outstation +outstaying +outstepped +outstrains +outstretch +outstrikes +outsumming +outsweeten +outswelled +outswinger +outtalking +outtelling +outthought +outtopping +outtravels +outvaluing +outvillain +outvoicing +outwalking +outwatched +outwatches +outwearied +outwearies +outwearing +outweeping +outweighed +outwelling +outwicking +outwinding +outwinging +outwitting +outworkers +outwrought +ouvirandra +ovariotomy +overabound +overacting +overactive +overarched +overarches +overarming +overbeaten +overbidder +overboiled +overboldly +overbooked +overbought +overbounds +overbridge +overbrowed +overbuilds +overburden +overburned +overbuying +overcalled +overcanopy +overcaught +overcharge +overchecks +overclouds +overcloyed +overcolour +overcoming +overcooked +overcounts +overcovers +overcrowds +overdaring +overdosage +overdosing +overdrafts +overdriven +overdrives +overdubbed +overdusted +overdyeing +overeating +overexcite +overexerts +overexpose +overextend +overeyeing +overfallen +overfilled +overfished +overfishes +overflight +overflowed +overflying +overfolded +overfondly +overfreely +overfunded +overgalled +overganged +overglance +overglazed +overglazes +overglooms +overgoings +overgotten +overgrains +overgrazed +overgrazes +overgreedy +overground +overgrowth +overhanded +overhauled +overheated +overhyping +overinform +overinsure +overissued +overissues +overjoying +overjumped +overlabour +overlading +overlander +overlapped +overlarded +overlaunch +overlaying +overleaped +overleaven +overliving +overloaded +overlocked +overlocker +overlooked +overlooker +overmanned +overmantel +overmasted +overmaster +overmatter +overmodest +overmounts +overnetted +overnicely +overpaints +overparted +overpassed +overpasses +overpaying +overpedals +overpeered +overpeople +overplaced +overplayed +overpluses +overplying +overpoised +overpoises +overpowers +overpraise +overpriced +overprices +overprints +overprized +overprizes +overracked +overraking +overrashly +overrating +overreacts +overreckon +overridden +overriders +overriding +overripens +overroasts +overruffed +overrulers +overruling +overrunner +oversailed +overscored +overscores +overseeing +oversewing +overshaded +overshades +overshadow +overshirts +overshoots +overshower +oversights +oversizing +overskirts +overslaugh +oversleeps +oversleeve +oversowing +overspends +overspills +overspread +overstaffs +overstains +overstands +overstated +overstates +overstayed +overstayer +oversteers +overstocks +overstrain +overstress +overstrewn +overstrews +overstride +overstrike +overstrode +overstrong +overstruck +overstrung +overstuffs +oversubtle +oversupply +overswayed +overswells +overtaking +overtalked +overtasked +overtaxing +overteemed +overthrown +overthrows +overthrust +overthwart +overtimers +overtiming +overtiring +overtoiled +overtopped +overtowers +overtraded +overtrades +overtrains +overtricks +overtrumps +overtrusts +overturing +overturned +overturner +overvalued +overvalues +overveiled +overwashes +overweened +overweighs +overweight +overwhelms +overwinged +overwinter +overwisely +overworked +overwrests +overwrites +oviposited +ovipositor +ovulations +owerlouped +owlishness +Owlspiegle +ownerships +oxidations +oxidisable +oxidizable +oxygenated +oxygenates +oxygenator +oxygenised +oxygenises +oxygenized +oxygenizes +oxymoronic +Ozymandias diff --git a/com/agnibho/code/anagram/dictionary/O11.txt b/com/agnibho/code/anagram/dictionary/O11.txt new file mode 100644 index 0000000..ba047f4 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O11.txt @@ -0,0 +1,639 @@ +oarsmanship +obediential +obfuscating +obfuscation +obfuscatory +obituarists +objectified +objectifies +objectivate +objectively +objectivise +objectivism +objectivist +objectivity +objectivize +objurations +objurgating +objurgation +objurgative +objurgatory +obligations +obligements +obliquation +obliqueness +obliquities +obliquitous +obliterated +obliterates +obliterator +obliviously +obmutescent +obnoxiously +obnubilated +obnubilates +obsceneness +obscenities +obscuration +obscurement +obscureness +obscurities +obsecrating +obsecration +observances +observantly +observation +observative +observators +observatory +observingly +obsessional +obsessively +obsidionary +obsignating +obsignation +obsignatory +obsolescent +obsolescing +obstetrical +obstinately +obstipation +obstriction +obstructers +obstructing +obstruction +obstructive +obstructors +obtemperate +obtempering +obtestation +obtruncated +obtruncates +obtrusively +obumbrating +obumbration +obviousness +occasioners +occasioning +occidentals +occipitally +occultation +occupancies +occupations +occurrences +oceanariums +ocellations +ochlocratic +ochlophobia +ochlophobic +octachordal +octagonally +octahedrite +octahedrons +octastichon +octennially +octillionth +octingenary +octodecimos +octohedrons +octonarians +octonocular +octopushers +octuplicate +odonatology +odontoblast +odontocetes +odontogenic +odontograph +odontolites +odontologic +odontophore +odoriferous +odorousness +oecumenical +oenological +oenologists +oenophilist +oesophageal +oestrogenic +offenceless +offensively +offertories +offhandedly +officialdom +officialese +officialism +officiality +officiating +officiators +officiously +offsaddling +olfactology +oligarchies +Oligochaeta +oligochaete +oligochrome +oligomerous +oligopolies +ombrometers +ombrophiles +ombrophobes +ominousness +ommatophore +omnifarious +omniformity +omnipatient +omnipotence +omnipotency +omnipresent +omniscience +omophorions +onagraceous +oncogenesis +oncologists +oneirodynia +oneiromancy +oneiroscopy +onerousness +onocentaurs +onomasticon +ontogenesis +ontogenetic +ontological +ontologists +onychomancy +onychophagy +Onychophora +opalescence +opeidoscope +operability +operational +operatising +operatively +operatizing +operculated +operettists +operoseness +ophicalcite +ophicleides +ophidiarium +ophiolaters +ophiologist +ophiomorphs +Ophiuroidea +ophthalmist +opinionated +opinionator +opinionists +opisometers +Oppenheimer +oppignorate +opponencies +opportunely +opportunism +opportunist +opportunity +oppositions +oppressions +opprobrious +opsiometers +opsomaniacs +optimalised +optimalises +optimalized +optimalizes +optologists +optometrist +oracularity +oraculously +orbiculares +orbicularis +orbicularly +orchardings +orchardists +orchestrate +orchestrina +orchestrion +Orchidaceae +orchidology +orchiectomy +ordainments +orderliness +ordinations +oreographic +oreological +oreologists +organically +organicists +organisable +organistrum +organizable +organograms +orientalise +Orientalism +Orientalist +orientality +orientalize +orientating +orientation +orientators +orienteered +Origenistic +originality +originating +origination +originative +originators +ornamenters +ornamenting +ornamentist +Ornithogaea +ornithology +Ornithopoda +ornithopods +ornithopter +ornithosaur +orpheoreons +orthoborate +orthocentre +orthocousin +orthodontia +orthodontic +orthodoxies +orthodromic +orthoepical +orthoepists +orthogenics +orthographs +orthography +orthopaedic +orthopedics +orthopedist +orthophyric +orthopraxes +orthopraxis +orthoprisms +orthopteran +orthopteron +orthoptists +orthoscopic +orthostatic +orthostichy +orthotropic +oscillating +oscillation +oscillative +oscillators +oscillatory +oscillogram +osculations +osmotically +Osmundaceae +Ossianesque +ostensively +ostensories +ostentation +osteoblasts +osteoclasis +osteoclasts +osteodermal +osteodermic +osteogenous +osteography +osteologist +osteopathic +osteophytes +osteophytic +osteoplasty +osteotomies +ostleresses +ostracising +ostracizing +ostracoderm +ostracodous +ostreaceous +ostreophage +ostreophagy +Ostrogothic +otherwhiles +otherworlds +Ouagadougou +ouananiches +ouroscopies +outbalanced +outbalances +outbargains +outblusters +outbragging +outbreaking +outbreathed +outbreathes +outbreeding +outbuilding +outbursting +outclassing +outcompeted +outcompetes +outcropping +outcrossing +outdistance +outdrinking +outfielders +outfighting +outflanking +outflashing +outflowings +outflushing +outfrowning +outgenerals +outguessing +outjettings +outjockeyed +outjuttings +outlearning +outlodgings +outmaneuver +outmantling +outmarching +outmarriage +outmatching +outmeasured +outmeasures +outnumbered +outparishes +outpassions +outperforms +outpointing +outpourings +outpowering +outquarters +outreaching +outreddened +outreigning +outrivalled +outsettings +outshooting +outsleeping +outsmarting +outsourcing +outspanning +outspeaking +outspending +outstanding +outstations +outstepping +outstrained +outstriking +outstripped +outswearing +outsweetens +outswelling +outswimming +outswingers +outthinking +outwardness +outwatching +outwearying +outweighing +ouvirandras +overabounds +overachieve +overarching +overbalance +overbearing +overbeating +overbidders +overbidding +overblowing +overboiling +overbooking +overbounded +overbreathe +overbridged +overbridges +overbrimmed +overbrowing +overburdens +overburning +overburthen +overcalling +overcareful +overcarried +overcarries +overcasting +overcatches +overcharged +overcharges +overchecked +overclouded +overcloying +overcoating +overcolours +overcooking +overcorrect +overcounted +overcovered +overcropped +overcrowded +overcurious +overdevelop +overdosages +overdraught +overdrawing +overdressed +overdresses +overdriving +overdrowsed +overdubbing +overdusting +overearnest +overexcited +overexcites +overexerted +overexposed +overexposes +overextends +overfalling +overfeeding +overfilling +overfishing +overflights +overflowing +overflushes +overfolding +overforward +overfraught +overfreedom +overfreight +overfunding +overgalling +overganging +overgarment +overgetting +overglanced +overglances +overglazing +overgloomed +overgrained +overgrainer +overgrazing +overgrowing +overgrowths +overhanging +overhastily +overhauling +overhearing +overheating +overhitting +overholding +overindulge +overinforms +overinsured +overinsures +overissuing +overjumping +overkeeping +overlabours +overlanders +overlapping +overlarding +overlayings +overleaping +overleather +overleavens +overlending +overloading +overlockers +overlocking +overlookers +overlooking +overmanning +overmantels +overmasters +overmasting +overmatched +overmatches +overmatters +overmeasure +overmounted +overnetting +overnighter +overparting +overpassing +overpayment +overpeering +overpeopled +overpeoples +overpicture +overpitched +overpitches +overplaying +overpoising +overpowered +overpraised +overpraises +overpressed +overpresses +overpricing +overprinted +overprizing +overproduce +overracking +overreached +overreaches +overreacted +overreading +overreckons +overripened +overroasted +overruffing +overrunners +overrunning +oversailing +overscoring +overselling +oversetting +overshading +overshadows +overshowers +overskipped +overslaughs +oversleeves +overslipped +overspreads +overstaffed +overstained +overstaring +overstating +overstayers +overstaying +overstepped +overstocked +overstrains +overstretch +overstrides +overstrikes +overstudied +overstudies +overstuffed +overswaying +overswelled +overtalking +overtasking +overtedious +overteeming +overthrower +overthrusts +overthwarts +overtoiling +overtopping +overtowered +overtrading +overtrained +overtrumped +overtrusted +overturners +overturning +overvaluing +overveiling +overviolent +overwatched +overwatches +overwearied +overwearies +overwearing +overweather +overweening +overweighed +overweights +overwhelmed +overwinding +overwinging +overwinters +overworking +overwrested +overwrestle +overwriting +overwritten +overwrought +overzealous +oviparously +ovipositing +oviposition +ovipositors +ovuliferous +owerlouping +Oxalidaceae +Oxfordshire +oxidisation +oxidization +oxygenating +oxygenation +oxygenators +oxygenising +oxygenizing +oxyrhynchus +ozoniferous +ozonisation +ozonization +ozonosphere diff --git a/com/agnibho/code/anagram/dictionary/O12.txt b/com/agnibho/code/anagram/dictionary/O12.txt new file mode 100644 index 0000000..e5f526d --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O12.txt @@ -0,0 +1,399 @@ +obcompressed +obdurateness +obedientiary +Oberammergau +obfuscations +objectifying +objectivated +objectivates +objectivised +objectivises +objectivists +objectivized +objectivizes +objurgations +oblanceolate +obligational +obligatorily +obligingness +obliquations +obliterating +obliteration +obliterative +obliterators +obliviscence +obmutescence +obnubilating +obnubilation +obreptitious +obscurantism +obscurantist +obscurations +obscurements +obsecrations +obsequiously +observancies +Observantine +observations +obsessionist +obsignations +obsolescence +obsoleteness +obstetrician +obstipations +obstreperate +obstreperous +obstrictions +obstructions +obstructives +obtemperated +obtemperates +obtestations +obtruncating +obumbrations +occasionally +occidentally +occultations +occupational +oceanography +oceanologist +ochlophobiac +ochroleucous +octastichons +octastichous +octastrophic +octillionths +octogenarian +octopetalous +octosepalous +octostichous +octosyllabic +octosyllable +octuplicates +odontoblasts +odontographs +odontography +odontologist +odontomatous +odontophobia +odontophoral +odontophoran +odontophorus +oecumenicism +oenophilists +offendresses +officialisms +officialties +olfactometry +olfactronics +oligarchical +oligochaetes +oligochromes +oligopsonies +oligotrophic +ombrophilous +ombrophobous +omissiveness +ommatophores +omnipotences +omnipotently +omnipresence +omnisciently +omnivorously +omphalomancy +oncorhynchus +oncornavirus +oneirocritic +oneiromancer +onomasticons +onomatopoeia +onomatopoeic +oophorectomy +opeidoscopes +operatically +ophidiariums +Ophioglossum +ophiolatrous +ophiological +ophiologists +ophiomorphic +ophiophagous +ophiophilist +ophthalmists +ophthalmitis +opinionately +opinionative +opinionators +opisthodomos +opisthograph +opisthotonic +opisthotonos +oppignorated +oppignorates +opportunists +opposability +oppositeness +oppositional +oppressively +optimalising +optimalizing +optimisation +optimization +optoacoustic +optometrical +optometrists +oracularness +oratorically +orchestrated +orchestrates +orchestrator +orchestrinas +orchestrions +orchidaceous +orchidectomy +orchidomania +ordinariness +Oreopithecus +organisation +organization +organography +organoleptic +orichalceous +orientalised +orientalises +Orientalists +orientalized +orientalizes +orientations +orienteering +ornamentally +ornamentists +Ornithischia +ornithogalum +ornithomancy +ornithomorph +ornithophily +ornithopters +ornithosaurs +ornithoscopy +orographical +ororotundity +orthocentres +orthocousins +orthodontics +orthodontist +orthodromics +orthogenesis +orthogenetic +orthognathic +orthogonally +orthographer +orthographic +orthopaedics +orthopaedist +orthopedical +orthopedists +orthopraxies +orthopterist +orthopteroid +orthopterous +orthorhombic +orthosilicic +orthotoneses +orthotonesis +orthotropism +orthotropous +oscillations +oscillograms +oscillograph +oscilloscope +ossification +ostentatious +osteodermous +osteogenesis +osteogenetic +osteological +osteologists +osteomalacia +osteopathist +osteoplastic +osteoporosis +osteosarcoma +ostracoderms +ostreophages +otherworldly +otosclerosis +outbalancing +outbargained +outblustered +outbreathing +outbuildings +outcompeting +outcrossings +outdistanced +outdistances +outfangthief +outjockeying +outlandishly +outmaneuvers +outmanoeuvre +outmeasuring +outnumbering +outpassioned +outperformed +outplacement +outrageously +outreddening +outrivalling +outspreading +outspringing +outstraining +outstretched +outstretches +outstripping +outsweetened +outtravelled +ovariotomies +ovariotomist +overabounded +overabundant +overachieved +overachieves +overactivity +overbalanced +overbalances +overbounding +overbreathed +overbreathes +overbridging +overbrimming +overbuilding +overburdened +overburthens +overcanopied +overcanopies +overcapacity +overcarrying +overcatching +overcautious +overcharging +overchecking +overclouding +overcoloured +overcorrects +overcounting +overcovering +overcritical +overcropping +overcrowding +overdelicate +overdevelops +overdraughts +overdressing +overemphasis +overestimate +overexciting +overexerting +overexertion +overexposing +overexposure +overextended +overfinished +overflourish +overflowings +overfondness +overfullness +overgarments +overgenerous +overglancing +overglooming +overgrainers +overgraining +overinclined +overindulged +overindulges +overinformed +overinsuring +overkindness +overlaboured +overlaunched +overlaunches +overleavened +overlordship +overmastered +overmatching +overmeasured +overmeasures +overmounting +overmultiply +overniceness +overnighters +overoptimism +overpayments +overpedalled +overpeopling +overpersuade +overpictured +overpictures +overpitching +overpopulate +overpowering +overpraising +overpressing +overpressure +overprinting +overproduced +overproduces +overrashness +overreaching +overreacting +overreaction +overreckoned +overripeness +overripening +overroasting +overscutched +overshadowed +overshooting +overshowered +oversimplify +overskipping +oversleeping +overslipping +overspending +overspinning +overstaffing +overstaining +overstanding +overstepping +overstocking +overstrained +overstressed +overstresses +overstrewing +overstridden +overstriding +overstriking +overstudying +overstuffing +oversubtlety +oversupplied +oversupplies +overswelling +overswimming +overthrowers +overthrowing +overthwarted +overtowering +overtraining +overtrumping +overtrusting +overwatching +overwearying +overweighing +overweighted +overwhelming +overwintered +overwresting +oxidisations +oxidizations diff --git a/com/agnibho/code/anagram/dictionary/O13.txt b/com/agnibho/code/anagram/dictionary/O13.txt new file mode 100644 index 0000000..a27f215 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O13.txt @@ -0,0 +1,219 @@ +objectionable +objectionably +objectivating +objectivation +objectiveness +objectivising +objectivistic +objectivities +objectivizing +obliterations +obliviousness +obnoxiousness +obscurantists +observational +observatories +obsessionally +obsessionists +obsessiveness +obstetrically +obstetricians +obstinateness +obstreperated +obstreperates +obstructional +obstructively +obtemperating +obtrusiveness +occasionalism +occasionalist +occasionality +occidentalise +Occidentalism +Occidentalist +occidentalize +oceanographer +oceanographic +oceanological +oceanologists +ochlocratical +ochlophobiacs +octingenaries +octocentenary +octogenarians +octosyllabics +octosyllables +odonatologist +odontoglossum +odontological +odontologists +odontophorous +odontornithes +odoriferously +offensiveness +offhandedness +officialities +officiousness +oleomargarine +olfactologist +oligopolistic +omnicompetent +omnipotencies +omoplatoscopy +oneiromancers +oneiroscopist +onomastically +onomatopoeias +onomatopoeses +onomatopoesis +onomatopoetic +ontogenically +ontologically +onychophagist +operationally +operativeness +ophiomorphous +ophiophilists +ophthalmology +opisthobranch +opisthographs +opisthography +oppignorating +oppignoration +opportuneness +opportunistic +opportunities +oppositionist +opprobriously +optimisations +optimizations +oraculousness +orchesography +orchestralist +orchestrating +orchestration +orchestrators +orchidologist +orchidomaniac +orchiectomies +oreographical +organisations +organizations +organogenesis +organotherapy +orientalising +orientalizing +ornamentation +ornithichnite +ornithischian +ornithogalums +ornithologist +ornithomantic +ornithomorphs +ornithophobia +Orobanchaceae +orthodiagonal +orthodontists +orthognathism +orthognathous +orthographers +orthographies +orthographist +orthopaedical +orthopaedists +orthopinakoid +orthopterists +orthosilicate +orthostichies +orthostichous +oscillographs +oscilloscopes +ostensibility +osteographies +osteomyelitis +osteopathists +osteopetrosis +osteoplasties +ostreiculture +ostreophagous +otherworldish +outbargaining +outblustering +outdistancing +outgeneralled +outmaneuvered +outmanoeuvred +outmanoeuvres +outpassioning +outperforming +outrecuidance +outspokenness +outstandingly +outstretching +outsweetening +outtravelling +ovariotomists +overabounding +overabundance +overachieving +overambitious +overbalancing +overbearingly +overbreathing +overburdening +overburthened +overcanopying +overcolouring +overcorrected +overcredulity +overcredulous +overdeveloped +overdramatise +overdramatize +overemotional +overemphasise +overemphasize +overestimated +overestimates +overexcitable +overexertions +overextending +overflowingly +overhastiness +overindulgent +overindulging +overinforming +overinsurance +overlabouring +overlaunching +overleavening +overmastering +overmeasuring +overmultitude +overpedalling +overpersuaded +overpersuades +overpicturing +overpopulated +overpopulates +overproducing +overqualified +overreactions +overreckoning +oversensitive +overshadowing +overshowering +overspreading +overstatement +overstraining +overstressing +overstretched +overstretches +oversubscribe +oversupplying +overthwarting +overvaluation +overweighting +overwintering +ovoviviparous +oxyrhynchuses diff --git a/com/agnibho/code/anagram/dictionary/O14.txt b/com/agnibho/code/anagram/dictionary/O14.txt new file mode 100644 index 0000000..d50410b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O14.txt @@ -0,0 +1,137 @@ +obedientiaries +objectivations +obligatoriness +obsequiousness +observableness +obstreperating +obstreperously +obstructionism +obstructionist +occasionalists +occidentalised +occidentalises +occidentalized +occidentalizes +occupationally +oceanographers +octingentenary +odonatologists +odontoglossums +oecumenicalism +oleaginousness +olfactologists +oligopsonistic +omnibenevolent +omnicompetence +omnivorousness +onchocerciasis +oncogeneticist +oncornaviruses +oneirocritical +oneiroscopists +onomatopoieses +onomatopoiesis +onychophagists +oophorectomies +ophthalmometer +ophthalmometry +ophthalmoscope +ophthalmoscopy +opinionatively +opisthobranchs +opisthocoelian +opisthocoelous +opisthodomoses +opisthoglossal +opisthographic +oppositionists +oppressiveness +optimalisation +optimalization +optimistically +optoelectronic +orchestralists +orchestrations +orchidectomies +orchidologists +orchidomaniacs +organisability +organisational +organizability +organizational +organometallic +ornamentations +ornithichnites +ornithischians +Ornithodelphia +ornithodelphic +ornithological +ornithologists +ornithomorphic +ornithophilous +orobanchaceous +orthochromatic +orthodiagonals +orthographical +orthographists +orthophosphate +orthopinakoids +orthopterology +orthosilicates +osmoregulation +ostentatiously +osteoarthritis +osteoarthrosis +osteodermatous +osteoglossidae +otolaryngology +outgeneralling +outlandishness +outmaneuvering +outmanoeuvring +outrageousness +overabundances +overburdensome +overburthening +overcapitalise +overcapitalize +overcompensate +overcorrecting +overcorrection +overdeveloping +overdramatised +overdramatises +overdramatized +overdramatizes +overemphasised +overemphasises +overemphasized +overemphasizes +overenthusiasm +overestimating +overestimation +overflourished +overflourishes +overindulgence +overmultiplied +overmultiplies +overoptimistic +overpersuading +overpopulating +overpopulation +overpoweringly +overproduction +overprotective +overscrupulous +oversimplified +oversimplifies +overspecialise +overspecialize +overstatements +overstretching +oversubscribed +oversubscribes +oversuspicious +overvaluations +overwhelmingly +oxyhaemoglobin diff --git a/com/agnibho/code/anagram/dictionary/O15.txt b/com/agnibho/code/anagram/dictionary/O15.txt new file mode 100644 index 0000000..f021531 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O15.txt @@ -0,0 +1,64 @@ +objectification +observationally +obstructionally +obstructionists +obstructiveness +occidentalising +occidentalizing +oceanographical +ochlocratically +octocentenaries +odontostomatous +odoriferousness +oligonucleotide +omnibenevolence +omnidirectional +oncogeneticists +oneirocriticism +ontogenetically +onychocryptosis +Ophioglossaceae +ophthalmologist +ophthalmometers +ophthalmophobia +ophthalmoplegia +ophthalmoscopes +ophthalmoscopic +Opisthobranchia +opisthognathous +opprobriousness +optimalisations +optimalizations +optoelectronics +organophosphate +ornithodelphian +ornithodelphous +ornithorhynchus +orthophosphates +orthophosphoric +orthopsychiatry +ostreiculturist +overbearingness +overcapitalised +overcapitalises +overcapitalized +overcapitalizes +overcompensated +overcompensates +overcorrections +overdevelopment +overdramatising +overdramatizing +overemphasising +overemphasizing +overestimations +overflourishing +overforwardness +overindulgences +overmultiplying +oversimplifying +overspecialised +overspecialises +overspecialized +overspecializes +oversubscribing diff --git a/com/agnibho/code/anagram/dictionary/O16.txt b/com/agnibho/code/anagram/dictionary/O16.txt new file mode 100644 index 0000000..b0da47b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O16.txt @@ -0,0 +1,23 @@ +obdiplostemonous +obstreperousness +octingentenaries +ophthalmological +opinionativeness +organisationally +organizationally +ornithologically +orthographically +orthopterologist +ostentatiousness +otherworldliness +otolaryngologist +overcapitalising +overcapitalizing +overcompensating +overcompensation +overcompensatory +overenthusiastic +overexcitability +overspecialising +overspecializing +oversubscription diff --git a/com/agnibho/code/anagram/dictionary/O17.txt b/com/agnibho/code/anagram/dictionary/O17.txt new file mode 100644 index 0000000..88e49bb --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O17.txt @@ -0,0 +1,2 @@ +ophthalmoscopical +otolaryngologists diff --git a/com/agnibho/code/anagram/dictionary/O18.txt b/com/agnibho/code/anagram/dictionary/O18.txt new file mode 100644 index 0000000..3e6aed2 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O18.txt @@ -0,0 +1,7 @@ +overcapitalisation +overcapitalization +overmultiplication +overscrupulousness +oversimplification +overspecialisation +overspecialization diff --git a/com/agnibho/code/anagram/dictionary/O19.txt b/com/agnibho/code/anagram/dictionary/O19.txt new file mode 100644 index 0000000..4e7beb7 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O19.txt @@ -0,0 +1,2 @@ +ophthalmoscopically +otorhinolaryngology diff --git a/com/agnibho/code/anagram/dictionary/O2.txt b/com/agnibho/code/anagram/dictionary/O2.txt new file mode 100644 index 0000000..95bc2c2 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O2.txt @@ -0,0 +1,18 @@ +ob +od +oe +of +oh +oi +OK +om +on +oo +op +or +os +ou +ow +ox +oy +Oz diff --git a/com/agnibho/code/anagram/dictionary/O21.txt b/com/agnibho/code/anagram/dictionary/O21.txt new file mode 100644 index 0000000..63333b3 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O21.txt @@ -0,0 +1 @@ +otorhinolaryngologist diff --git a/com/agnibho/code/anagram/dictionary/O22.txt b/com/agnibho/code/anagram/dictionary/O22.txt new file mode 100644 index 0000000..1c75850 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O22.txt @@ -0,0 +1 @@ +otorhinolaryngologists diff --git a/com/agnibho/code/anagram/dictionary/O3.txt b/com/agnibho/code/anagram/dictionary/O3.txt new file mode 100644 index 0000000..3b1dad3 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O3.txt @@ -0,0 +1,58 @@ +oaf +oak +oar +oat +oba +obi +obo +obs +oca +och +oda +odd +ode +ods +oes +off +oft +ohm +oho +ohs +oik +oil +ois +oka +oke +OKs +old +ol� +olm +oms +one +Ono +ons +oof +ooh +oom +oon +oos +ope +ops +opt +orb +orc +ord +ore +orf +ort +our +ous +out +ova +owe +owl +own +ows +owt +oye +oys diff --git a/com/agnibho/code/anagram/dictionary/O4.txt b/com/agnibho/code/anagram/dictionary/O4.txt new file mode 100644 index 0000000..bacb2c5 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O4.txt @@ -0,0 +1,158 @@ +oafs +Oahu +oaks +oaky +oars +oary +oast +oath +oats +Oban +obas +obey +obia +obis +obit +oboe +obol +obos +ocas +oche +ochs +octa +odal +odas +odds +odea +Oder +odes +odic +Odin +odor +odso +odyl +o'er +Offa +offs +ogam +ogee +ogle +Ogpu +ogre +Ohio +ohms +ohos +oiks +oils +oily +oink +oint +Oise +okas +okay +OK'd +OKed +okes +okra +Okta +Olaf +olds +oldy +Olea +oleo +Olga +olid +olio +olla +olms +olpe +Oman +Omar +ombu +omen +omer +omit +Omsk +once +oner +ones +only +onst +onto +onus +onyx +oofs +oofy +oohs +Oona +oons +oont +oops +Oort +oose +oosy +ooze +oozy +opah +opal +oped +Opel +open +opes +Opie +oppo +opts +opus +oral +Oran +orbs +orby +Orca +orcs +ords +ores +orfe +Orff +orgy +orle +Orly +Orne +orra +orts +oryx +orzo +Oslo +ossa +Ossi +otic +Otis +otto +ouch +Oudh +ouph +ourn +ours +Ouse +oust +outs +ouzo +oval +oven +over +Ovid +ovum +owed +Owen +ower +owes +owls +owly +owns +owre +oxen +oxer +Oxus +oyer +oyes +oyez +Ozzy diff --git a/com/agnibho/code/anagram/dictionary/O5.txt b/com/agnibho/code/anagram/dictionary/O5.txt new file mode 100644 index 0000000..a68566c --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O5.txt @@ -0,0 +1,245 @@ +oaken +oakum +oared +oases +oasis +oasts +oaten +oater +Oates +oaths +oaves +obang +obeah +obeli +obese +obeys +obied +obiit +obits +objet +oboes +oboli +obols +Occam +occur +ocean +ocher +ochre +ochry +ocker +ocrea +octad +octal +octas +octet +oculi +odals +odder +oddly +odeon +odeum +odism +odist +odium +odour +odsos +odyle +offal +offed +offer +Ofgas +oflag +OFTEL +often +Ofwat +ogams +Ogdon +ogees +oggin +ogham +ogive +ogled +ogler +ogles +ogmic +ogres +ohmic +ohone +oidia +oiled +oiler +oinks +oints +ojime +okapi +okays +okras +Oktas +olden +older +oldie +oleic +olein +olent +oleos +oleum +olios +olive +ollas +ollav +Ollie +ology +olpes +Olwen +Olwin +Olwyn +Omagh +Omaha +Omani +omasa +omber +ombre +ombus +omega +omens +omers +omits +omlah +omrah +oncer +oncus +oners +onion +onkus +onned +Onora +onset +oobit +oohed +oomph +oonts +oorie +ooses +oozed +oozes +opahs +opals +opens +opepe +opera +Ophir +opine +oping +opium +oppos +Oprah +opted +opter +optic +orach +oracy +orals +orang +orant +orate +orbed +orbit +orcin +Orcus +Orczy +order +oread +Orfeo +orfes +organ +orgia +orgic +orgue +oribi +oriel +Orion +Oriya +orles +Orlon +orlop +ormer +ornis +orpin +orris +Orson +ortho +Orton +Oryza +Osage +Osaka +Oscan +Oscar +oshac +osier +osmic +Osric +ossia +Ossie +Ossis +ostia +Otago +otaku +otary +other +ottar +otter +ottos +Otway +oubit +ought +ouija +Oujda +ounce +ouphe +ourie +ousel +ousts +outby +outdo +outed +outer +outgo +outr� +ouzel +ouzos +ovals +ovary +ovate +ovens +overs +overt +Ovett +ovine +ovist +ovoid +ovoli +ovolo +ovule +owari +owche +Owens +owing +owled +owler +owlet +owned +owner +owsen +oxers +oxeye +Oxfam +oxide +oxime +oxlip +oxter +oyers +Ozawa +ozeki +ozone +Ozzie diff --git a/com/agnibho/code/anagram/dictionary/O6.txt b/com/agnibho/code/anagram/dictionary/O6.txt new file mode 100644 index 0000000..37ea981 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O6.txt @@ -0,0 +1,430 @@ +oafish +Oakham +Oakley +oarage +oaring +oaters +Oaxaca +obangs +obdure +obeahs +obeche +obeism +obelus +Oberon +obeyed +obeyer +obiing +obiism +obital +obiter +object +objure +oblast +oblate +oblige +oblong +oboist +obolus +obsess +obsign +obtain +obtect +obtend +obtest +obtund +obtuse +obvert +occamy +occult +occupy +occurs +oceans +ocelli +ocelot +ochery +ochone +ochrea +ochred +ochres +ockers +Ockham +ocreae +octads +octane +Octans +octant +octave +octavo +octets +octett +octroi +octuor +ocular +oculus +oddest +oddish +oddity +Odense +odeons +Odessa +Odette +odeums +odious +odists +odiums +odours +odyles +oecist +oedema +Oenone +oeuvre +offals +Offaly +offcut +offend +offers +office +offing +offish +offput +offset +oflags +Ofsted +Ogaden +ogamic +ogdoad +ogee'd +oghams +ogival +ogives +oglers +ogling +ogress +ogrish +ohmage +ohones +oidium +oikist +oilcan +oilers +oilery +oilier +oilily +oiling +oillet +oilman +oilmen +oinked +ointed +Ojibwa +okapis +okayed +OK'ing +oldens +oldest +Oldham +oldies +oldish +oleate +olefin +oleins +Olenus +olfact +oliver +olives +olivet +Olivia +ollamh +ollavs +Olwyne +Omanis +omasal +omasum +omegas +omelet +omened +omenta +omerta +omlahs +omnify +omnium +omrahs +onager +Onagra +oncers +oncome +oncost +ondine +onding +Onegin +Oneida +oneyer +oneyre +onfall +onflow +onions +oniony +oniric +onning +onrush +onsets +onside +onuses +onward +onycha +onyxes +oobits +oocyte +oodles +oogamy +oogeny +oohing +ooidal +oolite +oolith +oology +oolong +oomiac +oomiak +oompah +Oonagh +oonses +oopses +oorial +oozier +oozily +oozing +opaled +opaque +opcode +opened +opener +openly +opepes +operas +operon +Ophism +ophite +opiate +opined +opines +opioid +opiums +Oporto +oppose +oppugn +optant +opters +optics +optima +optime +opting +option +opulus +opuses +orache +orachs +oracle +orally +orange +orangs +orants +orated +orates +orator +orbing +orbita +orbits +orcein +orchat +orchel +orchid +orchil +orchis +orcine +ordain +ordeal +orders +ordure +oreads +Oregon +oreide +orexis +organa +organs +orgasm +orgeat +orgies +orgone +oribis +oriels +orient +origan +Origen +origin +oriole +orison +Orissa +Orkney +orlops +Ormazd +ormers +ormolu +Ormuzd +ornate +ornery +orogen +oroide +orphan +Orphic +orpine +orpins +orrery +Orsini +Orsino +Ortega +orthos +Orwell +oryxes +Osages +Osbert +Oscars +oscine +oscula +oscule +oshacs +osiers +osiery +Osiris +osmate +osmium +osmose +osmous +osmund +osprey +ossein +Ossian +Ossies +ossify +osteal +Ostend +ostent +ostial +ostium +ostler +Ostmen +Ostrea +Ostyak +Oswald +otalgy +Otello +others +otiose +otitis +ottars +ottava +Ottawa +otters +oubits +ouches +oughts +ouijas +oulong +ounces +ourali +ourari +ourebi +ousels +ousted +ouster +outact +outage +outate +outbar +outbid +outbox +outbye +outcry +outdid +outeat +outers +outfit +outfly +outfox +outgas +outgun +outher +outhit +outing +outjet +outjut +outlaw +outlay +outler +outlet +outlie +outman +output +outran +outred +outrun +outsat +outset +outsit +outsum +outtop +outvie +outwit +ouvert +ouzels +ovally +Ovambo +ovated +ovates +ovator +overby +overdo +overed +overgo +overly +ovibos +Oviedo +ovisac +ovists +ovoids +ovular +ovules +owches +owelty +owerby +owlers +owlery +owlets +owling +owlish +owners +owning +oxalic +oxalis +oxcart +oxeyes +Oxford +oxgang +oxhead +oxhide +oxides +oximes +oxland +oxlips +oxtail +oxters +oxygen +oxymel +oyeses +oyezes +oyster +ozaena +Ozalid +ozekis +Ozzies diff --git a/com/agnibho/code/anagram/dictionary/O7.txt b/com/agnibho/code/anagram/dictionary/O7.txt new file mode 100644 index 0000000..200add7 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O7.txt @@ -0,0 +1,642 @@ +Oakland +oakling +oarages +oarless +oarsman +oarsmen +oarweed +oatcake +oatmeal +Obadiah +obconic +obdured +obdures +obeches +obelion +obelise +obelisk +obelize +obesity +obeyers +obeying +obitual +objects +objured +objures +oblasts +oblates +obliged +obligee +obliges +obligor +oblique +oblongs +obloquy +oboists +obolary +obovate +obovoid +O'Brien +obscene +obscure +obsequy +observe +obsigns +obtains +obtests +obtrude +obtunds +obtuser +obverse +obverts +obviate +obvious +ocarina +O'Casey +occiput +occlude +occults +Oceania +oceanic +oceanid +Oceanus +ocellar +ocellus +oceloid +ocelots +ochones +ochreae +ochring +ochroid +ochrous +o'clock +ocreate +octadic +octagon +octanes +octants +octapla +octaval +octaves +Octavia +octavos +octette +octetts +October +octofid +octopod +octopus +octrois +octuors +octuple +oculars +oculate +oculist +odalisk +odaller +oddball +oddment +oddness +oddsman +oddsmen +Odinism +Odinist +Odonata +odontic +odorant +odorate +odorous +odoured +odylism +odyssey +odzooks +oecists +oedemas +Oedipal +Oedipus +oenomel +oersted +oestral +oestrum +oestrus +oeuvres +offbeat +offcuts +offence +offends +offense +offered +offeree +offerer +offeror +offhand +officer +offices +offings +offload +offpeak +offputs +offscum +offsets +offside +offtake +oftener +ogdoads +oghamic +oglings +ogreish +Ogygian +oikists +oilcans +oiliest +oilskin +oinking +ointing +Ojibwas +Okayama +okaying +okimono +Okinawa +oldened +oldness +oldster +olearia +oleates +olefine +olefins +olfacts +oligist +olitory +olivary +olivers +olivets +Olivier +olivine +ollamhs +oloroso +olycook +olykoek +Olympia +Olympic +Olympus +Omayyad +omelets +omening +omental +omentum +omicron +ominous +omitted +omitter +ommatea +omneity +omniana +omnibus +omniety +omnific +omniums +onagers +onanism +onanist +Onassis +onboard +oncogen +oncomes +oncosts +ondatra +ondines +ondings +onefold +Oneidas +O'Neill +oneiric +oneness +onerous +oneself +oneyers +oneyres +onfalls +ongoing +onioned +Oniscus +onliest +onshore +onstage +onstead +Ontario +onwards +onychas +onychia +onymous +oocytes +oodlins +ooftish +oogonia +oolakan +oolites +ooliths +oolitic +oolongs +oomiack +oomiacs +oomiaks +oompahs +oophyte +oorials +oosperm +oospore +ooziest +opacity +opacous +opaline +opaqued +opaquer +opaques +opcodes +openers +openest +opening +operand +operant +operate +operons +operose +Ophelia +Ophidia +ophites +ophitic +Ophiura +opiated +opiates +opining +opinion +oporice +opossum +oppidan +opposed +opposer +opposes +oppress +oppugns +opsonic +opsonin +optants +optical +optimal +optimes +optimum +options +opulent +opuntia +opuscle +oraches +oracled +oracles +oralism +orality +oranges +orangey +orarian +orarion +orarium +orating +oration +orators +oratory +oratrix +Orbison +orbital +orbitas +orbited +orbiter +Orcagna +orchard +orchels +orchids +orchils +orcinol +ordains +ordeals +ordered +orderer +orderly +ordinal +ordinar +ordinee +ordures +oreades +orectic +oregano +Orestes +oreweed +organdy +organic +organon +organum +organza +orgasms +orgeats +orgiast +oriency +orients +orifice +origami +origane +origans +origins +Orinoco +orioles +orisons +Orkneys +Orlando +orleans +Ormandy +ormolus +ornises +orogeny +orology +oropesa +orotund +orphans +Orphean +Orpheus +Orphism +orphrey +orpines +orrises +orthian +orthros +ortolan +Orvieto +Osborne +oscheal +Oscines +oscular +oscules +osculum +osiered +osirian +Osmanli +osmates +osmiate +osmious +osmosed +osmoses +osmosis +osmotic +osmunda +osmunds +ospreys +osselet +osseous +osseter +ossicle +ossific +ossuary +ostents +osteoid +osteoma +ostiary +ostiate +ostiole +ostlers +Ostmark +ostraca +ostraka +ostrich +otalgia +otaries +otarine +Othello +otocyst +otolith +otology +O'Toole +Otranto +ottavas +ottered +Ottilie +Ottoman +ouabain +ouakari +oulakan +oulongs +ouralis +ouraris +ourebis +ourself +ousters +ousting +oustiti +outacts +outages +outback +outbars +outbids +outbrag +outbred +outburn +outcast +outcome +outcrop +outdare +outdate +outdoes +outdone +outdoor +outdure +outeats +outedge +outface +outfall +outfits +outflew +outflow +outfoot +outgate +outgave +outgive +outgoer +outgoes +outgone +outgrew +outgrow +outguns +outgush +outhaul +outhire +outhits +outings +outjest +outjets +outjump +outjuts +outlaid +outland +outlash +outlast +outlaws +outlays +outleap +outlers +outlets +outlier +outlies +outline +outlive +outlook +outmans +outmode +outmost +outmove +outname +outness +outpace +outpart +outpeep +outpeer +outplay +outport +outpost +outpour +outpray +outputs +outrace +outrage +outrank +outrate +outreds +outride +outroar +outrode +outroot +outruns +outrush +outsail +outsell +outsets +outshot +outside +outsits +outsize +outsoar +outsold +outsole +outspan +outstay +outstep +outsums +outswam +outswim +outtake +outtalk +outtell +outtold +outtops +outturn +outvied +outvies +outvote +outwalk +outward +outwash +outwear +outweed +outweep +outwell +outwent +outwept +outwick +outwind +outwing +outwith +outwits +outwore +outwork +outworn +ouverte +ouvrage +ouvrier +Ovambos +ovarian +ovaries +ovating +ovation +ovators +overact +overall +overarm +overate +overawe +overbid +overbuy +overdid +overdub +overdue +overdye +overeat +overeye +overfar +overfed +overfly +overget +overgot +overhit +overing +overjoy +overlap +overlay +overlie +overman +overmen +overnet +overpay +overply +overran +overrun +oversaw +oversea +oversee +overset +oversew +oversow +overtax +overtly +overtop +overuse +ovicide +Ovidian +oviduct +oviform +ovisacs +ovoidal +ovulate +Owenian +Owenism +Owenist +Owenite +owllike +owrelay +oxalate +oxazine +oxblood +oxcarts +oxgangs +oxheads +oxidant +oxidase +oxidate +oxidise +oxidize +oxlands +Oxonian +oxonium +oxtails +oxtered +oxymels +oxymora +oxytone +oysters +ozaenas +ozonise +ozonize diff --git a/com/agnibho/code/anagram/dictionary/O8.txt b/com/agnibho/code/anagram/dictionary/O8.txt new file mode 100644 index 0000000..d3a7ac6 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O8.txt @@ -0,0 +1,858 @@ +oafishly +oaklings +oarweeds +oatcakes +oatmeals +obduracy +obdurate +obduring +obeahism +obedient +obeisant +obelions +obelised +obelises +obelisks +obelized +obelizes +Oberland +obituary +objected +objector +objuring +oblation +oblatory +obligant +obligate +obligati +obligato +obligees +obliging +obligors +obliqued +obliques +oblivion +obscener +obscured +obscurer +obscures +observed +observer +observes +obsessed +obsesses +obsidian +obsigned +obsolete +obstacle +obstruct +obtained +obtainer +obtected +obtemper +obtested +obtruded +obtruder +obtrudes +obtunded +obturate +obtusely +obtusest +obtusity +obverses +obverted +obviated +obviates +obvolute +ocarinas +Occamism +Occamist +occasion +occident +occiputs +occluded +occluder +occludes +occlusal +occlusor +occulted +occultly +occupant +occupied +occupier +occupies +occurred +oceanaut +Oceanian +oceanids +ocellate +ocherous +ochidore +Ochotona +ochreate +ochreous +ockerism +O'Connor +ocotillo +octagons +octantal +octaplas +octapody +octaroon +Octavian +octettes +octonary +Octopoda +octopods +octopush +octoroon +octupled +octuples +octuplet +ocularly +oculated +oculists +odalique +odalisks +odallers +oddballs +oddities +oddments +Odinists +odiously +odograph +odometer +odometry +odontist +odontoid +odontoma +odorless +Odyssean +Odysseus +odysseys +oecology +Oedipean +oeillade +oenology +oenophil +oerlikon +oersteds +oestrous +oestrums +offences +offended +offender +offenses +offerers +offering +offerors +officers +official +offishly +offloads +offprint +offshoot +offshore +offsider +offtakes +offwards +oftenest +ogresses +ohmmeter +oilcloth +oileries +oiliness +oilpaper +oilskins +oilstone +ointment +Oistrakh +oiticica +Okavango +okimonos +Oklahoma +Okovango +oldening +Oldfield +oldsters +Oleaceae +oleander +olearias +oleaster +olefiant +olefines +olfacted +olibanum +oligarch +oliguria +oliphant +Olivetan +Olivetti +olorosos +Olympiad +Olympian +olympics +omadhaun +Omayyads +Omdurman +omelette +omicrons +omission +omissive +omitters +omitting +ommateum +omnified +omnifies +omniform +omnivore +omnivory +omohyoid +omophagy +omoplate +omphalic +omphalos +onanists +oncidium +oncogene +oncogens +oncology +oncoming +oncotomy +Ondaatje +ondatras +ongoings +onioning +oniscoid +onlooker +Onondaga +onrushes +onscreen +onsetter +onsteads +ontogeny +ontology +onwardly +onychite +onychium +oofiness +oogamous +oogonial +oogonium +oolakans +oologist +oomiacks +oompahed +oophoron +oophytes +oosperms +oosphere +oospores +Oostende +ooziness +opalesce +opalines +opalised +opalized +opaquely +opaquest +opaquing +openable +opencast +openings +openness +openwork +operable +operands +operants +operated +operates +operatic +operator +opercula +operetta +ophidian +Ophitism +ophiuran +ophiurid +opiating +opificer +opinable +opinicus +opinions +opiumism +opopanax +oporices +opossums +oppidans +oppilate +opponent +opposers +opposing +opposite +oppugned +oppugner +opsimath +opsonium +optative +optician +optimate +optimise +optimism +optimist +optimize +optional +optology +opulence +opuluses +opuntias +opuscles +opuscula +opuscule +oracling +oracular +oragious +orangery +Orangism +orarians +orarions +orariums +orations +oratorio +oratress +Orbilius +orbitals +orbiters +orbiting +Orcadian +orchards +orchella +orchesis +orchilla +orchises +orchitic +orchitis +ordained +ordainer +ordalian +ordalium +orderers +ordering +ordinals +ordinand +ordinant +ordinars +ordinary +ordinate +ordinees +ordnance +ordurous +oreganos +Oresteia +oreweeds +orexises +organdie +organise +organism +organist +organity +organize +organzas +orgasmic +orgastic +orgiasts +orgulous +orichalc +orielled +oriental +oriented +orifices +origanes +origanum +original +orillion +orinasal +ornament +ornately +ornithic +orogenic +oropesas +orphaned +orphreys +orpiment +orreries +orseille +orsellic +orthicon +orthodox +orthoepy +orthopod +orthoses +orthosis +orthotic +ortolans +Orvietan +oscinine +oscitant +oscitate +osculant +osculate +osculums +Osmanlis +osmiates +osmosing +osmundas +osnaburg +ossarium +osselets +osseters +Ossianic +ossicles +ossified +ossifies +osteitis +osteogen +osteomas +ostinato +ostioles +Ostmarks +ostracod +ostracon +ostrakon +ostreger +otiosity +otocysts +otoliths +otoscope +ottavino +ottering +Ottoline +Ottomans +Ottomite +ouabains +ouakaris +ouistiti +oulachon +oulakans +ourology +oustitis +outacted +outboard +outbound +outboxed +outboxes +outbrags +outbrave +outbreak +outbreed +outbroke +outburns +outburnt +outburst +outcaste +outcasts +outclass +outcomes +outcried +outcries +outcrops +outcross +outdance +outdared +outdares +outdated +outdates +outdoing +outdoors +outdrank +outdrink +outdrive +outdrove +outdrunk +outdwell +outeaten +outedges +outfaced +outfaces +outfalls +outfield +outfight +outflank +outflash +outflies +outfling +outflown +outflows +outflush +outfoots +outfoxed +outfoxes +outfrown +outgases +outgates +outgiven +outgives +outglare +outgoers +outgoing +outgrown +outgrows +outguard +outguess +outhauls +outhired +outhires +outhouse +outjests +outjumps +outlands +outlasts +outlawed +outlawry +outleaps +outleapt +outlearn +outliers +outlined +outlines +outlived +outlives +outlooks +outlying +outmarch +outmatch +outmoded +outmodes +outmoved +outmoves +outnamed +outnames +outnight +outpaced +outpaces +outparts +outpeeps +outplays +outpoint +outports +outposts +outpours +outpower +outprays +outprice +outraced +outraces +outraged +outrages +outrance +outrange +outranks +outrated +outrates +outreach +outreign +outremer +outrider +outrides +outright +outrival +outroots +outsails +outscold +outscorn +outsells +outshine +outshone +outshoot +outshots +outsider +outsides +outsight +outsized +outsizes +outsleep +outslept +outsmart +outsoars +outsoles +outspans +outspeak +outspend +outspent +outspoke +outsport +outstand +outstare +outstays +outsteps +outstood +outstrip +outswear +outswell +outswims +outswing +outswore +outsworn +outtaken +outtalks +outtells +outthink +outturns +outvalue +outvenom +outvoice +outvoted +outvoter +outvotes +outvying +outwalks +outwards +outwatch +outwears +outweary +outweeps +outweigh +outwells +outwicks +outwinds +outwings +outworks +outworth +outwound +outwrest +ouvri�re +ouvriers +Ovaltine +ovariole +ovarious +ovaritis +ovations +ovenware +ovenwood +overacts +overalls +overarch +overarms +overawed +overawes +overbear +overbeat +overbids +overbite +overblew +overblow +overboil +overbold +overbook +overbore +overbrim +overbrow +overbulk +overburn +overbusy +overbuys +overcall +overcame +overcast +overcloy +overcoat +overcome +overcook +overcrop +overcrow +overdoer +overdoes +overdone +overdose +overdraw +overdrew +overdust +overdyed +overdyes +overeats +overeyed +overeyes +overfall +overfeed +overfell +overfill +overfine +overfish +overflew +overflow +overfold +overfond +overfree +overfull +overfund +overgall +overgang +overgets +overgive +overgoes +overgone +overgrew +overgrow +overhair +overhand +overhang +overhaul +overhead +overhear +overheat +overheld +overhits +overhold +overhung +overhype +overjoys +overjump +overkeep +overkept +overkill +overkind +overking +overknee +overlade +overlaid +overlain +overland +overlaps +overlard +overlays +overleaf +overleap +overlend +overlent +overlier +overlies +overlive +overload +overlock +overlong +overlook +overlord +overloud +overmans +overmast +overmuch +overname +overneat +overnets +overnice +overpage +overpaid +overpart +overpass +overpast +overpays +overpeer +overplay +overplus +overrack +overrake +overrank +overrash +overrate +overread +override +overripe +overrode +overruff +overrule +overruns +oversail +overseas +overseen +overseer +oversees +oversell +oversets +oversewn +oversews +overshoe +overshot +overside +oversize +overskip +overslip +oversman +oversmen +oversold +oversoul +oversown +oversows +overspin +overspun +overstay +overstep +overswam +oversway +overswim +overswum +overtake +overtalk +overtask +overteem +overtime +overtire +overtoil +overtone +overtook +overtops +overture +overturn +overused +overuses +overveil +overview +overwash +overwear +overween +overwent +overwind +overwing +overwise +overword +overwore +overwork +overworn +overyear +oviboses +ovicides +oviducal +oviducts +oviposit +ovulated +ovulates +owerloup +owleries +owlishly +oxalates +oxalises +oxazines +Oxbridge +oxidants +oxidases +oxidated +oxidates +oxidised +oxidiser +oxidises +oxidized +oxidizer +oxidizes +oximeter +Oxonians +oxtering +oxymoron +oxytocic +oxytocin +oxytones +Ozacling +ozonised +ozoniser +ozonises +ozonized +ozonizer +ozonizes diff --git a/com/agnibho/code/anagram/dictionary/O9.txt b/com/agnibho/code/anagram/dictionary/O9.txt new file mode 100644 index 0000000..e06f451 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/O9.txt @@ -0,0 +1,881 @@ +oakenshaw +oarswoman +oarswomen +obbligati +obbligato +obconical +obcordate +obdurated +obdurates +obedience +obeisance +obeliscal +obelising +obelizing +obeseness +obfuscate +objectify +objecting +objection +objective +objectors +objurgate +oblations +obligants +obligated +obligates +obligatos +obliquely +obliquing +obliquity +oblivions +oblivious +obloquies +obnoxious +obreption +obscenely +obscenest +obscenity +obscurant +obscurely +obscurers +obscurest +obscuring +obscurity +obsecrate +obsequent +obsequial +obsequies +observant +observers +observing +obsessing +obsession +obsessive +obsignate +obsigning +obsolesce +obstacles +obstetric +obstinacy +obstinate +obstructs +obstruent +obtainers +obtaining +obtempers +obtention +obtesting +obtruders +obtruding +obtrusion +obtrusive +obtundent +obtunding +obturated +obturates +obturator +obumbrate +obvention +obversely +obversion +obverting +obviating +obviation +obviously +obvoluted +obvolvent +occasions +occipital +occludent +occluders +occluding +occlusion +occlusive +occlusors +occulting +occultism +occultist +occupance +occupancy +occupants +occupiers +occupying +occurrent +occurring +oceanauts +oceanides +ocellated +ochidores +ochlocrat +Ockhamism +Ockhamist +O'Connell +ocotillos +octachord +octagonal +octahedra +octameter +Octandria +octaploid +octapodic +octaroons +octastich +octastyle +octennial +octillion +Octobrist +Octogynia +octonarii +octoploid +octopodes +octopuses +Octopussy +octoroons +octostyle +octuplets +octupling +ocularist +odaliques +odalisque +oddfellow +Odelsting +odographs +odometers +odonatist +odontalgy +odontists +odontomas +odorously +odourless +oecumenic +oeillades +oenanthic +oenomancy +oenomania +oenometer +oenophile +oenophils +oenophily +Oenothera +oerlikons +oesophagi +oestrogen +oestruses +Offenbach +offenders +offending +offensive +offerable +offerings +offertory +offhanded +officered +officials +officiant +officiate +officinal +officious +offloaded +offprints +offsaddle +offscreen +offshoots +offspring +oftenness +Ogbomosho +ohmmeters +oilcloths +oilstones +ointments +oiticicas +Oklahoman +Oldenburg +oleaceous +oleanders +oleasters +olecranal +olecranon +Olenellus +oleograph +olfacting +olfaction +olfactive +olfactory +oligaemia +oligarchs +oligarchy +Oligocene +oligopoly +oliphants +olitories +olivenite +Oliverian +Olympiads +Olympians +omadhauns +ombrophil +ombudsman +ombudsmen +omelettes +ominously +omissible +omissions +omittance +ommatidia +omnibuses +omnifying +omnivores +omohyoids +omophagia +omophagic +omoplates +omphacite +omphaloid +onanistic +oncidiums +oncogenes +oncogenic +oncolysis +oncolytic +oncometer +oncomings +oncomouse +oncostman +oncostmen +onerously +onlookers +onlooking +onomastic +Onondagas +onsetters +onsetting +onslaught +ontogenic +ontologic +onychitis +oogenesis +oogenetic +oologists +oompahing +oophorons +oospheres +opacities +opalesced +opalesces +operagoer +operatics +operating +operation +operatise +operative +operatize +operators +opercular +operculum +operettas +operosely +operosity +ophidians +ophiolite +ophiology +Ophiuchus +ophiurans +ophiurids +ophiuroid +opificers +opinioned +opobalsam +opodeldoc +oppilated +oppilates +opponency +opponents +opportune +opposable +opposites +oppressed +oppresses +oppressor +oppugnant +oppugners +oppugning +opsimaths +opsimathy +opsomania +opsoniums +optatives +optically +opticians +optimally +optimates +optimised +optimises +optimists +optimized +optimizes +optometer +optometry +optophone +optronics +opulently +opuscules +opusculum +oraculous +orangeade +Orangeism +Orangeman +Orangemen +oratorial +oratorian +oratories +oratorios +oratrixes +orbicular +Orcadians +orchellas +orchestic +orchestra +orchidist +orchillas +ordainers +ordaining +orderings +orderless +orderlies +ordinaire +ordinance +ordinands +ordinants +ordinated +ordinates +ordnances +organbird +organelle +organical +organised +organiser +organises +organisms +organists +organized +organizer +organizes +organzine +orgiastic +orientals +orientate +orienteer +orienting +orificial +oriflamme +origanums +Origenism +Origenist +originals +originate +orillions +orinasals +Oriolidae +Orleanism +Orleanist +ornaments +ornithoid +Orobanche +orogenies +orography +orologist +ororotund +orphanage +orphaning +orphanism +orpharion +Orpington +orseilles +ortanique +orthicons +orthoaxes +orthoaxis +orthodoxy +orthoepic +orthopedy +orthopods +orthoptic +orthotics +orthotist +orthotone +orthroses +Orwellian +oscillate +oscitancy +oscitated +oscitates +osculated +osculates +osmeteria +osmometer +osmometry +Osnabr�ck +osnaburgs +ossariums +ossicular +ossifraga +ossifrage +ossifying +ossuaries +ostensive +ostensory +osteoderm +osteogeny +osteology +osteopath +osteotome +osteotomy +ostiaries +ostinatos +ostiolate +ostleress +ostracean +Ostracion +ostracise +ostracism +ostracize +Ostracoda +ostracods +ostrakons +ostregers +ostriches +Ostrogoth +otherness +otherwise +otologist +otorrhoea +otoscopes +ottavinos +Otterburn +ottrelite +oubliette +Oudenarde +oughtness +oulachons +ouroboros +ouroscopy +ourselves +outacting +outbacker +outbarred +outbounds +outboxing +outbraved +outbraves +outbreaks +outbreeds +outbroken +outburned +outbursts +outcasted +outcastes +outcrying +outdanced +outdances +outdaring +outdating +outdoorsy +outdrinks +outdriven +outdrives +outeating +outermost +outerwear +outfacing +outfields +outfights +outfitted +outfitter +outflanks +outflings +outflowed +outflying +outfooted +outfought +outfoxing +outfrowns +outgassed +outgasses +outgiving +outglared +outglares +outgoings +outgrowth +outguards +outgunned +outgushed +outgushes +outhauler +outhiring +outhouses +outjested +outjockey +outjumped +outlander +outlashes +outlasted +outlaunch +outlawing +outlaying +outleaped +outlearns +outlearnt +outlinear +outlining +outliving +outlooked +outmanned +outmantle +outmoding +outmoving +outnaming +outnumber +outpacing +outparish +outpeeped +outplayed +outpoints +outpoured +outpourer +outpowers +outprayed +outpriced +outprices +outputted +outracing +outraging +outrances +outranged +outranges +outranked +outrating +outredded +outredden +outreigns +outrelief +outremers +outridden +outriders +outriding +outrigger +outrivals +outrooper +outrooted +outrunner +outrushed +outrushes +outsailed +outshines +outshoots +outsiders +outsights +outskirts +outsleeps +outsmarts +outsoared +outsource +outspeaks +outspends +outspoken +outspread +outspring +outsprung +outstands +outstared +outstares +outstayed +outstrain +outstrike +outstrips +outstruck +outsummed +outswears +outswells +outswings +outtalked +outthinks +outtongue +outtopped +outtravel +outvalued +outvalues +outvoiced +outvoices +outvoters +outvoting +outwalked +outwardly +outweighs +outwelled +outwicked +outwinged +outwitted +outworker +ouvri�res +ovalbumin +ovarioles +ovenproof +overacted +overalled +overarmed +overawing +overbears +overbeats +overbites +overblown +overblows +overboard +overboils +overbooks +overborne +overbound +overbrims +overbrows +overbuild +overbuilt +overburns +overburnt +overcalls +overcarry +overcasts +overcatch +overcheck +overcloud +overcloys +overcoats +overcomes +overcooks +overcount +overcover +overcrops +overcrowd +overdoers +overdoing +overdosed +overdoses +overdraft +overdrawn +overdraws +overdress +overdrive +overdrove +overdubbs +overdusts +overeager +overeaten +overexert +overeying +overfalls +overfeeds +overfills +overflies +overflown +overflows +overflush +overfolds +overfunds +overgalls +overgangs +overglaze +overgloom +overgoing +overgorge +overgrain +overgraze +overgreat +overgrown +overgrows +overhairs +overhangs +overhappy +overhaste +overhasty +overhauls +overheads +overheard +overhears +overheats +overholds +overhyped +overhypes +overissue +overjoyed +overjumps +overkeeps +overkills +overkings +overladed +overladen +overlades +overlards +overlarge +overleaps +overleapt +overlends +overliers +overlived +overlives +overloads +overlocks +overlooks +overlords +overlusty +overlying +overmasts +overmatch +overmerry +overmount +overnight +overpaint +overparts +overpedal +overpeers +overpitch +overplays +overplied +overplies +overpoise +overpower +overpress +overprice +overprint +overprize +overproof +overproud +overracks +overraked +overrakes +overrated +overrates +overreach +overreact +overreads +overrider +overrides +overripen +overroast +overruffs +overruled +overruler +overrules +oversails +overscore +overseers +oversells +oversewed +oversexed +overshade +overshine +overshirt +overshoes +overshoot +oversight +oversized +oversizes +overskips +overskirt +oversleep +overslept +overslips +oversouls +overspend +overspent +overspill +overspins +overstaff +overstain +overstand +overstate +overstays +oversteer +oversteps +overstock +overstood +overstrew +overstudy +overstuff +oversways +overswell +overswims +overtaken +overtakes +overtalks +overtasks +overtaxed +overtaxes +overteems +overthrew +overthrow +overtimed +overtimer +overtimes +overtired +overtires +overtoils +overtones +overtower +overtrade +overtrain +overtrick +overtrump +overtrust +overtured +overtures +overturns +overusing +overvalue +overveils +overviews +overwatch +overwears +overweary +overweens +overweigh +overwhelm +overwinds +overwings +overwords +overworks +overwound +overwrest +overwrite +ovibovine +oviductal +oviferous +ovigerous +oviparity +oviparous +oviposits +ovotestes +ovotestis +ovulating +ovulation +owerloups +ownerless +ownership +Oxfordian +oxidating +oxidation +oxidisers +oxidising +oxidizers +oxidizing +oximeters +oxygenate +oxygenise +oxygenize +oxygenous +oxymorons +ozocerite +ozokerite +ozonation +ozonisers +ozonising +ozonizers +ozonizing diff --git a/com/agnibho/code/anagram/dictionary/P1.txt b/com/agnibho/code/anagram/dictionary/P1.txt new file mode 100644 index 0000000..1a9cc2b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P1.txt @@ -0,0 +1 @@ +p diff --git a/com/agnibho/code/anagram/dictionary/P10.txt b/com/agnibho/code/anagram/dictionary/P10.txt new file mode 100644 index 0000000..9fd1263 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P10.txt @@ -0,0 +1,2414 @@ +pacemakers +pachyderms +pachymeter +pacifiable +pacificate +pacificism +pacificist +packagings +packframes +packhorses +packsheets +packstaffs +pactioning +Paddington +paddlefish +paddymelon +pademelons +padereroes +Paderewski +padlocking +padymelons +paedagogic +paedagogue +paederasts +paederasty +paedeutics +paediatric +paedophile +paedotribe +paganising +paganizing +paginating +pagination +paideutics +paillasses +paillettes +painfuller +painlessly +painstaker +paintiness +paintworks +Pakistanis +Palaeocene +palaeogaea +Palaeogene +palaeolith +palaeotype +Palaeozoic +palaestrae +palaestral +palaestras +palaestric +palafittes +palagonite +palampores +palankeens +palanquins +palatalise +palatalize +palatially +palatinate +palaverers +palavering +paleaceous +palempores +Palestrina +palfrenier +palimonies +palimpsest +palindrome +palisading +palisadoes +palisander +palladious +palladiums +pallescent +palletised +palletiser +palletises +palletized +palletizer +palletizes +palliament +palliasses +palliating +palliation +palliative +palliatory +pallidness +palmaceous +palmatifid +palmations +palmcorder +Palmerston +palmettoes +palmhouses +palmipedes +palmitates +palpations +palpitated +palpitates +palsgraves +paltriness +paludament +paludinous +palustrian +palustrine +palynology +Panamanian +panaritium +panatellas +panchayats +pancosmism +pancratian +pancratist +pancratium +pancreases +pancreatic +pancreatin +pandectist +Pandemonic +pandermite +pandowdies +pandurated +panegyrics +panegyries +panegyrise +panegyrist +panegyrize +panellings +panellists +pangenesis +pangenetic +Panglossic +panhandled +panhandler +panhandles +panickings +paniculate +panislamic +panjandrum +panniculus +panophobia +panoptical +panopticon +pansophism +pansophist +panspermia +panspermic +pantagraph +Pantagruel +pantaleons +pantaloons +pantheists +pantheress +pantherine +pantherish +pantilings +pantoffles +pantograph +pantomimes +pantomimic +pantophagy +pantoscope +pantoufles +pantrymaid +papalising +papalizing +Papandreou +papaverine +papaverous +paperbacks +paperboard +paperbound +papergirls +papeteries +Papiamento +papillated +papillitis +papillomas +papillotes +papillules +papistical +papulation +papyrology +parabemata +parabiosis +parabiotic +parablepsy +parabolise +parabolist +parabolize +paraboloid +parabrakes +Paracelsus +parachuted +parachutes +paracletes +paradiddle +paradisaic +paradisean +paradisiac +paradisial +paradisian +paradoctor +paradoxers +paradoxist +paradoxure +paraenesis +paraenetic +paraffined +paraffines +paraffinic +paraglider +paraglossa +paragnosis +paragogues +paragoning +paragonite +paragraphs +Paraguayan +parakiting +paralipses +paralipsis +paralleled +parallelly +paralogise +paralogism +paralogize +Paralympic +paralysers +paralysing +paralytics +paralyzers +paralyzing +Paramaribo +paramecium +paramedico +paramedics +parameters +parametral +parametric +paramnesia +paramoecia +paramorphs +paramouncy +paramounts +paranoiacs +paranoidal +paranormal +paranymphs +paraphasia +paraphasic +paraphilia +paraphonia +paraphonic +paraphrase +paraphrast +paraphyses +paraphysis +parapineal +paraplegia +paraplegic +parapodial +parapodium +paraquitos +pararhymes +pararthria +parascenia +parasceves +paraselene +parasitise +parasitism +parasitize +parasitoid +paraskiing +parastatal +parastichy +paratactic +parathesis +paratroops +parawalker +parboiling +parbreaked +parbuckled +parbuckles +parcelling +parcelwise +parchments +parchmenty +pardalotes +pardonable +pardonably +pardonings +pardonless +paregorics +parenchyma +parentages +parentally +parenteral +parenthood +parentless +parfleches +pargasites +pargetings +pargetting +parhypates +Parisienne +parkleaves +parleyvoos +parliament +Parmenides +Parnassian +Parnellism +Parnellite +parochines +parodistic +paroecious +paroemiacs +paronomasy +paronychia +paronymous +paroxysmal +paroxytone +parqueting +parquetted +parrakeets +parramatta +parricidal +parricides +parritches +parrocking +parroquets +parrotries +parsonages +parsonical +partakings +Parthenope +partialise +partialism +partialist +partiality +partialize +participle +particular +partitions +partitives +partnering +partridges +parturient +partygoers +parvovirus +pasigraphy +pasquilant +pasquilers +pasquinade +passageway +passaments +passamezzo +passements +passengers +passepieds +passerines +passiflora +passimeter +passionals +passionary +passionate +passioning +Passionist +passivists +passmented +pasteboard +pastelists +pastellist +Pasteurian +pasteurise +pasteurism +pasteurize +pasticheur +pastorales +pastorally +pastorates +pastorship +pastrycook +pasturable +pasturages +Patagonian +Patavinity +patchboard +patchiness +patchoulis +patchworks +patentable +patercoves +patereroes +paternally +pathetical +Path�tique +pathfinder +pathogenic +pathognomy +pathologic +patibulary +patination +patisserie +patrialise +patrialism +patriality +patrialize +patriarchs +patriarchy +patriating +patriation +patricians +patriciate +patricidal +patricides +patrifocal +patrilocal +patriotism +patristics +patrocliny +patrollers +patrolling +patronages +patronised +patroniser +patronises +patronized +patronizer +patronizes +patronless +patronymic +patterning +Paulianist +paulownias +paunchiest +pauperised +pauperises +pauperized +pauperizes +pausefully +pavemented +pavilioned +pawnbroker +pawnticket +paymasters +paysagists +peaberries +peacefully +peacemaker +peacetimes +peacherino +peacockery +peacocking +peacockish +pearliness +pearmonger +peashooter +peccadillo +peccancies +peckerwood +pectinated +pectorally +peculating +peculation +peculative +peculators +peculiarly +pedagogics +pedagogism +pedagogued +pedagogues +pedantical +pedantised +pedantises +pedantisms +pedantized +pedantizes +pedantries +pederastic +pedereroes +pedestrian +pediatrics +pediculate +Pediculati +pediculous +pedicuring +pedicurist +pedimental +pedimented +pedipalpus +pedologist +pedometers +peduncular +peelgarlic +Peenem�nde +peerlessly +pegmatites +pegmatitic +pejorating +pejoration +pejorative +Pelecypoda +pellagrous +pelletised +pelletises +pelletized +pelletizes +pellicular +pellucidly +Pelmatozoa +peltmonger +pelvimeter +pelvimetry +pemphigoid +pemphigous +penalising +penalizing +penannular +pencillers +pencilling +pendentive +Penderecki +pendiclers +pendragons +pendulated +pendulates +penelopise +penelopize +peneplains +peneplanes +penetrable +penetrably +penetralia +penetrance +penetrancy +penetrants +penetrated +penetrates +penetrator +penguinery +penholders +penicillin +peninsular +peninsulas +penistones +penitences +penitently +penmanship +pennaceous +pennatulae +pennatulas +pennillion +penninites +Pennisetum +pennoncels +penn'orths +pennycress +pennyroyal +pennyworth +pennyworts +penologist +penpushers +pensieroso +pensionary +pensioners +pensioning +pensionnat +penstemons +pentachord +pentagonal +pentagrams +Pentagynia +pentahedra +pentalphas +Pentameron +pentameter +Pentandria +pentangles +pentaploid +pentapolis +pentaprism +pentastich +pentastyle +Pentateuch +pentathlon +pentathlum +pentatomic +pentatonic +Pentelican +penteteric +penthoused +penthouses +pentimenti +pentimento +pentosanes +pentoxides +pentstemon +penultimas +penumbrous +peppercorn +pepperings +peppermill +peppermint +pepperonis +pepperwort +pepsinogen +peptonised +peptonises +peptonized +peptonizes +peraeopods +percalines +perceivers +perceiving +percentage +percentile +perception +perceptive +perceptual +percherons +perchloric +percipient +percolated +percolates +percolator +percurrent +percursory +percussant +percussing +percussion +percussive +percussors +percutient +perdendosi +perdurable +perdurably +perdurance +peregrines +pereiopods +peremptory +perennated +perennates +perennials +perfecters +perfecting +perfection +perfective +perfectors +perfervour +perficient +perfidious +perfoliate +perforable +perforated +perforates +perforator +perforatus +performers +performing +perfusions +pergunnahs +periastron +pericardia +periclinal +periclines +periculous +pericycles +pericyclic +peridermal +peridinian +peridinium +peridotite +peridromes +periegeses +periegesis +perigonial +perigonium +perigynous +perihelion +perikaryon +perilously +perilymphs +perimeters +perimetral +perimetric +perimorphs +perimysium +perineural +periodates +periodical +periosteal +periosteum +peripeteia +peripetian +peripetias +peripeties +peripheral +peripheric +periphonic +periphrase +periphyton +periplasts +peripluses +periprocts +peripteral +periscians +periscoped +periscopes +periscopic +perishable +perishably +perisperms +peristomal +peristomes +peristylar +peristyles +peritectic +perithecia +peritoneal +peritoneum +peritricha +periwigged +periwinkle +perjinkety +perjinkity +perjurious +permafrost +permalloys +permanence +permanency +permeating +permeation +permeative +permethrin +permission +permissive +permitters +permitting +permutable +permutated +permutates +pernicious +pernickety +pernoctate +peroneuses +perorating +peroration +perovskite +peroxidase +peroxiding +peroxidise +peroxidize +perpetrate +perpetuals +perpetuate +perpetuity +perplexing +perplexity +perquisite +perruquier +persecuted +persecutes +persecutor +perseities +Persephone +Persepolis +persevered +perseveres +Persianise +Persianize +persicaria +Persicised +Persicises +Persicized +Persicizes +persiennes +persiflage +persifleur +persimmons +persistent +persisting +persistive +personable +personages +personalia +personally +personalty +personated +personates +personator +personhood +personised +personises +personized +personizes +personnels +perspirate +perspiring +perstringe +persuaders +persuading +persuasion +persuasive +persuasory +pertaining +Perthshire +pertinence +pertinency +pertinents +perturbant +perturbate +perturbers +perturbing +pertusions +pervasions +perversely +perversion +perversity +perversive +perverters +perverting +perviating +perviously +pessimists +pesterment +pesthouses +pesticidal +pesticides +pestilence +petaurists +petcharies +Peterhouse +petershams +petiolated +petiolules +petitioned +petitioner +Petrarchal +Petrarchan +petrifying +petrissage +petrodrome +petroglyph +petrograms +petrolatum +petroleous +p�troleurs +p�troleuse +petrolling +petromoney +petronella +pettedness +pettichaps +petticoats +petulantly +Petulengro +phacolites +phacoliths +Phaeacians +phaelonion +phaenogams +phaenology +phaenomena +phaenotype +phagedaena +phagedenic +phagocytes +phagocytic +phalangeal +phalangers +phalangids +phalangist +phalaropes +phallicism +phallocrat +phalloidin +phanerogam +phansigars +phantasied +phantasies +phantasmal +phantasmic +phantomish +pharisaism +pharmacies +pharmacist +pharyngeal +pheasantry +phelloderm +phellogens +phelonions +phenacetin +phenocryst +phenogamic +phenolates +phenomenal +phenomenon +phenotypes +phenotypic +pheromones +phialiform +philanders +philatelic +Philippian +philippics +philippina +philippine +Philippise +Philippize +Philistian +philistine +phillabegs +phillibegs +phillumeny +philologer +philologic +philologue +philomaths +philomathy +philopenas +philopoena +philosophe +philosophy +philoxenia +phlebolite +phlebotomy +phlegmasia +phlegmatic +phlegmiest +phlegmonic +phlogistic +phlogiston +phlogopite +phlyctaena +phlyctenae +phocomelia +Phoenician +phoenixism +pholidosis +phonecalls +phonecards +phonematic +phonetical +phonetised +phonetises +phonetisms +phonetists +phonetized +phonetizes +phoneyness +phonically +phonmeters +phonograms +phonograph +phonolitic +phonometer +phonophore +phonopores +phonotyped +phonotypes +phonotypic +phorminges +phosphates +phosphatic +phosphenes +phosphides +phosphines +phosphites +phosphoret +phosphoric +phosphorus +phosphuret +photocells +photodiode +photoflash +photoflood +photogenes +photogenic +photoglyph +photograms +photograph +photolysed +photolyses +photolysis +photolytic +photometer +photometry +photonasty +photophils +photophily +photophobe +photophone +photophony +photophore +Photostats +phototaxis +phototrope +phototropy +phototyped +phototypes +phototypic +phraseless +phrenesiac +phrenetics +phrenology +phthalates +phthaleins +phthisical +phthisicky +phylactery +phyllaries +Phyllopoda +phyllopods +phyllotaxy +phylloxera +physalises +physically +physicians +physicists +physicking +physiocrat +physiology +phytogenic +Phytolacca +phytotoxic +phytotoxin +phytotrons +pianissimo +pianoforte +pianolists +picaresque +picayunish +piccadells +piccadillo +piccadilly +piccalilli +pichiciago +pickabacks +pickaninny +pickapacks +pickedness +pickeerers +pickeering +pickmawing +picnickers +picnicking +picocuries +picosecond +picqueting +picrotoxin +pictarnies +pictograms +pictograph +pictorials +pictorical +piepowders +pierceable +piercingly +Piesporter +piezometer +pigeonhole +pigeonries +piggybacks +pigmentary +pignerated +pignerates +pignorated +pignorates +pigsconces +pikestaffs +pilastered +pileorhiza +pilferages +pilferings +pilgarlick +pilgarlics +pilgrimage +pilgrimers +pilgrimise +pilgrimize +piliferous +Pilkington +pillarists +pillioning +pillionist +pilliwinks +pillorised +pillorises +pillorized +pillorizes +pillorying +pillowcase +pillowslip +pilocarpin +Pilocarpus +pimpernels +Pimpinella +pinacoidal +pinakoidal +pinakothek +pinchbecks +pinchcocks +pinchfists +pinchingly +pinchpenny +pincushion +Pindarised +Pindarises +Pindarized +Pindarizes +pineapples +pinfolding +pinguefied +pinguefies +Pinguicula +pinguidity +pinguitude +pinhookers +pinnacling +pinnatifid +pinnatiped +pinnipedes +Pinnipedia +pinnulated +pinpointed +pioneering +pipelining +Piperaceae +piperazine +piperidine +pipestones +pipsqueaks +Pirandello +pirouetted +pirouetter +pirouettes +piscifauna +pistachios +pistareens +pistillary +pistillate +pistillode +pistolling +pitapatted +pitcherful +pitchforks +pitchiness +pitchpines +pitchpipes +pitchstone +pitchwoman +pitchwomen +pitilessly +Pittsburgh +pityriasis +pixilation +pixillated +pizzicatos +placarding +placations +placements +placentals +placidness +placoderms +plagiaries +plagiarise +plagiarism +plagiarist +plagiarize +plaguesome +plainsongs +plaintiffs +plaintless +planarians +planations +planchette +planeloads +planetaria +planetical +planetoids +plangently +planigraph +planimeter +planimetry +planishers +planishing +planktonic +planoblast +planometer +plantation +plantlings +plaquettes +plasmodesm +plasmodial +plasmodium +plasmogamy +plasmolyse +plasmolyze +plasmosoma +plasmosome +plasterers +plastering +Plasticene +Plasticine +plasticise +plasticity +plasticize +plastidule +plastilina +plastisols +plastogamy +plateauing +platelayer +platformed +platinised +platinises +platinized +platinizes +platinoids +platitudes +Platonical +Platonised +Platonises +Platonized +Platonizes +platteland +platypuses +plauditory +playfellow +playground +playgroups +playhouses +playleader +playschool +playthings +playwright +pleadingly +pleasances +pleasanter +pleasantly +pleasantry +pleasingly +pleasurers +plebifying +plebiscite +Plecoptera +pledgeable +plenilunar +plenilunes +plenishing +plenitudes +plentitude +pleochroic +pleomorphy +pleonastes +pleonastic +pleonectic +pleromatic +plerophory +plesiosaur +pleurodont +pleurotomy +plexiglass +pleximeter +pleximetry +pliability +pliantness +plications +plicatures +Pliohippus +ploddingly +plottering +plottingly +ploughable +ploughboys +ploughings +ploughland +ploughwise +ploutering +plowshares +plowtering +pluckiness +plumassier +plumberies +plummeting +plumpening +Plumularia +plunderage +plunderers +plundering +plunderous +pluperfect +pluralised +pluralises +pluralisms +pluralists +pluralized +pluralizes +plutocracy +plutocrats +plutolatry +pneumatics +pneumonics +poachiness +Pocahontas +pocketfuls +pocketless +pockmantie +pockmarked +pockpitted +poculiform +podagrical +podiatrist +Podocarpus +podologist +Podostemon +poetasters +poetastery +poetically +poeticised +poeticises +poeticisms +poeticized +poeticizes +poeticules +pogonotomy +pohutukawa +poignantly +poikilitic +poincianas +poinsettia +poisonable +pokerishly +polarisers +polarising +polarities +polarizers +polarizing +polemarchs +polemicist +polemising +polemizing +polemonium +Polianthes +polishable +polishings +polishment +politeness +politician +politicise +politicize +politicked +politicker +politicoes +Pollaiuolo +pollarding +pollenosis +pollinated +pollinates +pollinator +pollutants +pollutedly +pollutions +Pollyannas +polonaises +polonising +polonizing +polyactine +polyamides +Polyandria +polyanthus +polyatomic +polyaxonic +polycarpic +Polychaeta +polychaete +polychrest +polychroic +polychrome +polychromy +polyclinic +Polyclitus +polycotton +Polycrates +polycrotic +polycyclic +polydactyl +polydipsia +polyesters +polygamist +polygamous +polygenism +polygenist +polygenous +polyglotts +polygonums +polygraphs +polygraphy +polygynian +polygynous +polyhalite +polyhedral +polyhedric +polyhedron +polyhistor +polyhybrid +polyhydric +Polyhymnia +polymastia +polymastic +polymathic +polymerase +polymeride +polymerise +polymerism +polymerize +polymerous +polymorphs +Polynesian +polynomial +polyominos +polyonymic +polyparies +polyphagia +polyphasic +Polyphemic +Polyphemus +polyphones +polyphonic +polypidoms +polyploidy +polypodies +Polypodium +Polypterus +polyptychs +polyrhythm +polysemant +polystylar +polytheism +polytheist +polythenes +polytocous +polytunnel +polyvalent +polyvinyls +Pomeranian +pomiferous +pommelling +pomoeriums +pomologist +pompadours +Pompeiians +pompelmous +ponderable +ponderance +ponderancy +ponderated +ponderates +ponderment +pondokkies +ponerology +poniarding +Pontederia +Pontefract +pontianacs +pontianaks +ponticello +pontifical +pontifices +pontifying +pontoneers +pontoniers +pontonnier +pontooners +pontooning +Pontypridd +Poohsticks +poorhouses +Popemobile +poplinette +popperings +popularise +popularity +popularize +populating +population +populously +porbeagles +porcelains +porcupines +poriferous +porismatic +poristical +porlocking +pornocracy +poroscopes +poroscopic +porosities +porousness +porpentine +porphyries +porphyrios +porphyrite +porphyrous +porpoising +porraceous +porrecting +porrection +porrengers +porringers +Portakabin +portamenti +portamento +portcullis +portending +portentous +porterages +portfolios +porthouses +portioners +portioning +portionist +portliness +portmantle +portolanos +portrayals +portrayers +portraying +portreeves +portresses +Portsmouth +Portuguese +portulacas +porwiggles +positional +positioned +positively +positivism +positivist +positivity +possessing +possession +possessive +possessors +possessory +postchaise +postcoital +postdating +posteriors +postfixing +posthouses +posthumous +postilions +postillate +postillers +postilling +postillion +postliminy +postmarked +postmaster +postocular +postperson +postponers +postponing +postposing +postscript +postulancy +postulants +postulated +postulates +postulator +postulatum +posturists +potability +potamology +potentates +potentials +potentiate +Potentilla +potentised +potentises +potentized +potentizes +poticaries +potlatches +potometers +potterings +pottingers +poulterers +poulticing +pourboires +pourparler +pourpoints +poussetted +poussettes +powellised +powellises +powellized +powellizes +powerboats +powerfully +powertrain +powsowdies +pozzolanic +pozzuolana +practicals +practician +practicing +practisers +practising +praecocial +praeludium +praemunire +praenomens +praenomina +praepostor +praesidium +praetorial +praetorian +praetorium +pragmatics +pragmatise +pragmatism +pragmatist +pragmatize +praiseless +praisingly +prancingly +prankingly +pranksters +pratincole +prattlebox +Praxiteles +prayerless +preachiest +preachings +preachment +preadapted +preambling +preappoint +prearrange +prebendary +precarious +precaution +precedence +precedency +precedents +precentors +precentrix +preceptive +preceptors +preceptory +precessing +precession +pr�cieuses +preciosity +preciouses +preciously +precipiced +precipices +precipitin +precisians +precisions +precluding +preclusion +preclusive +precocious +precompose +preconcert +precondemn +preconised +preconises +preconized +preconizes +preconsume +precooking +precooling +precordial +precursive +precursors +precursory +predaceous +predacious +predations +predecease +predefined +predefines +predentate +predesigns +predestine +predestiny +predevelop +predicable +predicants +predicated +predicates +predicters +predicting +prediction +predictive +predictors +predigests +predikants +predispose +prednisone +predooming +prefecture +preferable +preferably +preference +preferment +preferrers +preferring +prefigured +prefigures +prefixions +prefixture +preforming +prefrontal +prefulgent +pregnantly +preheating +prehending +prehensile +prehension +prehensive +prehensors +prehensory +prehistory +prejudging +prejudiced +prejudices +prelatical +prelations +prelatised +prelatises +prelatists +prelatized +prelatizes +prelatures +prelecting +prelection +prelectors +prelingual +preludious +prelusions +premarital +premaxilla +premedical +premiering +premonitor +premotions +prenatally +prenotions +prenuptial +preoptions +preordains +preordered +prepacking +preparator +preparedly +prepayable +prepayment +prepensely +preplanned +prepollent +prepositor +prepossess +prepostors +prepotence +prepotency +preppiness +prepuberty +prerecords +prerelease +presageful +presbyopes +presbyopia +presbyopic +presbyters +presbytery +presbytism +prescience +prescinded +prescribed +prescriber +prescribes +prescripts +prescutums +preselects +preselling +presension +presentees +presenters +presential +presenting +presentive +preservers +preserving +presetting +presidency +presidents +presidiary +presidiums +presignify +pressingly +pressmarks +pressuring +pressurise +pressurize +presswoman +presswomen +prestation +presternum +presumable +presumably +presuppose +presurmise +pretendant +pretendent +pretenders +pretending +pretension +preterists +preterites +pretermits +pretesting +pretexting +Pretorians +prettified +prettifies +prettiness +prettyisms +prevailing +prevalence +prevalency +prevenancy +prevenient +preventers +preventing +prevention +preventive +previewing +previously +previsions +prewarming +prewarning +prewashing +prickliest +pricklings +prickwoods +pridefully +priesthood +priestlier +priestling +priestship +priggishly +primatical +primevally +primiparae +primiparas +primitives +primordial +primordium +primrosing +princedoms +princehood +princekins +princelets +princelier +princelike +princeling +princesses +princessly +princified +principals +principate +principial +principium +principled +principles +printeries +printheads +printmaker +prioresses +priorities +prioritise +prioritize +priorships +prismoidal +prisonment +prissiness +privateers +privations +privatised +privatiser +privatises +privatives +privatized +privatizer +privatizes +privileged +privileges +prizewoman +prizewomen +proairesis +probations +problemist +procacious +procaryons +procaryote +procaryots +procedural +procedures +proceeders +proceeding +processing +procession +processors +processual +procidence +proclaimed +proclaimer +proclitics +proclivity +procoelous +proconsuls +procreants +procreated +procreates +procreator +Procrustes +procrypsis +procryptic +proctalgia +proctology +proctorage +proctorial +proctorise +proctorize +procumbent +procurable +procurator +procureurs +prodigally +prodigious +prodnosing +producible +productile +production +productive +proembryos +proenzymes +professing +profession +professors +profferers +proffering +proficient +profilists +profitable +profitably +profiteers +profitings +profitless +profligacy +profligate +profluence +profounder +profoundly +profulgent +profundity +profusions +progenitor +progginses +proglottis +prognathic +prognostic +programmed +programmer +programmes +progressed +progresses +prohibited +prohibiter +prohibitor +projectile +projecting +projection +projective +projectors +projecture +prokaryons +prokaryote +prokaryots +prolapsing +prolations +prolicidal +prolicides +prolifical +prolixious +prolixness +prolocutor +prologised +prologises +prologized +prologizes +prologuing +prologuise +prologuize +prolongate +prolongers +prolonging +prolusions +promenaded +promenader +promenades +promethean +Prometheus +promethium +prominence +prominency +promiseful +promissive +promissors +promissory +promontory +promotable +promotions +promptings +promptness +promptuary +promulgate +promulging +pronations +pronephric +pronephros +prongbucks +pronghorns +pronominal +pronounced +pronouncer +pronounces +pronuclear +pronucleus +pronuncios +prooemions +prooemiums +propagable +propaganda +propagated +propagates +propagator +propagules +propagulum +propellant +propellent +propellers +propelling +propelment +propendent +propensely +propension +propensity +properness +propertied +properties +Propertius +prophecies +prophesied +prophesier +prophesies +prophetess +prophetism +propionate +propitiate +propitious +propodeons +propodeums +proponents +proportion +proposable +propounded +propounder +propraetor +proprietor +proproctor +propulsion +propulsive +propulsory +propylaeum +propylites +proratable +prorations +prorectors +prorogated +prorogates +proroguing +prosaicism +proscenium +prosciutti +prosciutto +proscribed +proscriber +proscribes +proscripts +prosectors +prosecuted +prosecutes +prosecutor +proselytes +Proserpina +Proserpine +proseuchae +prosilient +prosimians +prosodians +prosodical +prosodists +prospected +prospector +prospectus +prospering +prosperity +prosperous +prostatism +prostheses +prosthesis +prosthetic +prostitute +prostomial +prostomium +prostrated +prostrates +Protagoras +protamines +protanopes +protanopia +protanopic +proteaceae +protecting +protection +protective +protectors +protectory +protectrix +proteiform +proteinous +protending +protension +protensity +protensive +proteolyse +protervity +protestant +protesters +protesting +protestors +prothallia +prothallic +prothallus +protocolic +protohuman +protonemal +protonemas +protopathy +Protophyta +protophyte +protoplasm +protoplast +protostars +protostele +prototypal +prototypes +protoxides +protoxylem +protozoans +protracted +protractor +protreptic +protrudent +protruding +protrusile +protrusion +protrusive +provection +proveditor +provedores +provenance +Proven�ale +provenders +proverbial +proverbing +providable +providence +provincial +proviruses +provisions +provitamin +provocable +provocants +provocator +provokable +provolones +prowlingly +proximally +prozymites +prudential +prudhommes +pruriently +prussiates +psalmodies +psalmodise +psalmodist +psalmodize +psalterian +psalteries +psalterium +psammophil +psellismus +psephology +pseudimago +pseudobulb +pseudocarp +pseudocode +pseudology +pseudonyms +pseudopods +psilocybin +psittacine +Psocoptera +psychiater +psychiatry +psychicism +psychicist +psychogony +psychogram +psychology +psychopath +psychopomp +psychotics +ptarmigans +pteranodon +pterosaurs +pterygoids +Pterygotus +pterylosis +Ptolemaean +Ptolemaist +ptyalising +ptyalizing +puberulent +puberulous +pubescence +publicised +publicises +publicists +publicized +publicizes +publicness +publishers +publishing +puddenings +puerperium +puftaloons +pugilistic +pugnacious +puissances +puissantly +Pulcinella +pullulated +pullulates +Pulmonaria +pulmonates +pulpifying +pulpiteers +pulpstones +pulsatance +Pulsatilla +pulsations +pulsimeter +pulsometer +pultaceous +pultrusion +pulverable +pulverised +pulveriser +pulverises +pulverized +pulverizer +pulverizes +pulvinated +pulvinules +pumicating +pummelling +punctation +punctators +punctilios +punctually +punctuated +punctuates +punctuator +punctulate +puncturing +pundigrion +pundonores +Punicaceae +punishable +punishment +punitively +pupigerous +pupillages +pupiparous +puppeteers +Purbeckian +purblindly +purchasers +purchasing +purdoniums +purenesses +purgations +purgatives +Purgatorio +puristical +puritanise +puritanism +puritanize +purlicuing +purloiners +purloining +purplewood +purporting +purposeful +pursership +pursuances +pursuantly +pursuingly +pursuivant +purtenance +purulently +purveyance +puschkinia +pussyfoots +pustulants +pustulated +pustulates +putrefying +putrescent +putrescine +putridness +putschists +puzzlement +puzzlingly +pycnidiums +pycnogonid +pycnometer +pycnospore +pycnostyle +pyelograms +pygostyles +pyknometer +pyogenesis +pyorrhoeal +pyorrhoeic +pyracantha +pyracanths +pyramidion +pyramidist +pyramidons +pyrenocarp +pyrethroid +pyrethrums +pyretology +pyridoxine +pyrimidine +pyritising +pyritizing +pyroclasts +pyrogallic +pyrogallol +pyrogenous +pyrography +Pyrolaceae +pyrolaters +pyrolusite +pyrolysing +pyrolyzing +pyromaniac +pyromanias +pyromantic +pyromeride +pyrometers +pyrometric +pyrophobia +pyrophobic +pyrophones +pyrophoric +pyrophorus +pyroscopes +pyrostatic +pyrotechny +pyroxenite +pyroxyline +pyrrhicist +pyrrhonian +pyrrhonism +pyrrhonist +pyrrhotine +pyrrhotite +Pythagoras +pythogenic diff --git a/com/agnibho/code/anagram/dictionary/P11.txt b/com/agnibho/code/anagram/dictionary/P11.txt new file mode 100644 index 0000000..c8e6a30 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P11.txt @@ -0,0 +1,1951 @@ +pachydactyl +pachydermal +pachydermia +pachydermic +pachymeters +pacifically +pacificated +pacificates +pacificator +pacificists +paddymelons +paedagogues +paederastic +paediatrics +paediatrist +paedodontic +paedologist +paedophiles +paedophilia +paedotribes +paedotrophy +pageantries +paginations +painfullest +painfulness +painstakers +painstaking +paintresses +Palaearctic +palaeoliths +palaeotypic +palatalised +palatalises +palatalized +palatalizes +palatinates +paleography +paleolithic +Palestinian +palfreniers +palillogies +palimpsests +palindromes +palindromic +palingenesy +palisanders +pallescence +palletisers +palletising +palletizers +palletizing +palliations +palliatives +palmatisect +palmcorders +palpability +palpitating +palpitation +palsgravine +paludaments +pampelmoose +pampelmouse +pamphleteer +Panamanians +panaritiums +Panathenaea +Panathenaic +pancratiast +pancratists +Pandanaceae +pandectists +Pandemoniac +Pandemonian +pandemonium +panderesses +panduriform +panegyrical +panegyricon +panegyrised +panegyrises +panegyrists +panegyrized +panegyrizes +panentheism +panentheist +panesthesia +Panglossian +panhandlers +panhandling +panhellenic +panicmonger +paniculated +panislamism +panislamist +panjandarum +panjandrums +panomphaean +panopticons +panpsychism +panpsychist +pansophical +pansophists +panspermism +panspermist +pantaletted +pantalettes +pantalooned +Pantelleria +pantheistic +pantheology +pantisocrat +Pantocrator +pantographs +pantography +pantomimist +pantophobia +pantoscopes +pantoscopic +pantothenic +pantrymaids +paperbacked +Paphlagonia +papilliform +papillulate +papovavirus +papyraceous +parabaptism +parabematic +parablepsis +parableptic +parabolanus +parabolical +parabolised +parabolises +parabolists +parabolized +parabolizes +paraboloids +Paracelsian +paracetamol +parachuting +parachutist +paracrostic +paradiddles +paradoctors +paradoxical +Paradoxides +paradoxists +paradoxures +paraffining +paraffinoid +paragenesia +paragenesis +paragenetic +paragliders +paragliding +paraglossae +paraglossal +paragogical +paragraphed +paragrapher +paragraphia +paragraphic +Paraguayans +paraldehyde +paraleipses +paraleipsis +parallactic +paralleling +parallelise +parallelism +parallelist +parallelize +paralogised +paralogises +paralogisms +paralogized +paralogizes +Paralympian +Paralympics +paramastoid +paramedical +paramedicos +paramoecium +paramorphic +paramountcy +paramountly +paranephric +paranephros +paranthelia +paraparesis +paraparetic +parapenting +paraphonias +paraphrased +paraphraser +paraphrases +paraphrasts +paraphrenia +paraplegics +parapsychic +parasailing +parascender +parascenium +parascience +paraselenae +parasitical +parasitised +parasitises +parasitized +parasitizes +parasitosis +parasuicide +parathyroid +paratrooper +paratyphoid +parawalkers +parbreaking +parbuckling +parcenaries +parchedness +parenchymas +parentheses +parenthesis +parenthetic +paresthesia +pargettings +parheliacal +paripinnate +parishioner +parleyvooed +parliaments +Parnellites +parochially +paronomasia +paronychial +paronychias +parotiditis +paroxytones +parquetries +parquetting +parramattas +parsimonies +partialised +partialises +partialists +partialized +partializes +partibility +participant +participate +participial +participles +particulars +particulate +partitioned +partitioner +partitively +partnership +parturition +parvanimity +pasigraphic +pasquilants +pasquinaded +pasquinader +pasquinades +passacaglia +passageways +passamented +passamezzos +passemented +passibility +passifloras +passimeters +passionated +passionates +passionless +passiveness +passivities +passmenting +pasteboards +pastellists +Pasteurella +pasteurised +pasteuriser +pasteurises +pasteurized +pasteurizer +pasteurizes +pasticheurs +pastoralism +pastoralist +pastorships +pastourelle +pastrycooks +pastureless +pataphysics +patchboards +patchoulies +patelliform +paternalism +paternities +paternoster +pathfinders +pathogenies +pathogenous +pathography +pathologies +pathologist +pathophobia +patinations +patisseries +patrialised +patrialises +patrialized +patrializes +patriarchal +patricianly +patriciates +patriclinic +patrilineal +patrilinear +patrimonial +patrimonies +patristical +patroclinic +patrolwoman +patrolwomen +patronesses +patronisers +patronising +patronizers +patronizing +patronymics +patroonship +Paulinistic +paunchiness +pauperesses +pauperising +pauperizing +pauselessly +pavementing +pavilioning +pavingstone +pawnbrokers +pawnbroking +pawntickets +peacemakers +peacemaking +peacherinos +pearmongers +peasantries +peashooters +peccability +peccadillos +peckishness +pectinately +pectination +pectisation +pectization +peculations +peculiarise +peculiarity +peculiarize +pecuniarily +pedagogical +pedagoguery +pedagoguing +pedagoguish +pedagoguism +Pedaliaceae +pedanticise +pedanticism +pedanticize +pedantising +pedantizing +pedantocrat +pedestalled +pedestrians +pedetentous +pedicellate +Pedicularis +pediculated +pediculosis +pedicurists +Pedipalpida +pedological +pedologists +pedunculate +peelgarlics +peevishness +pejorations +pejoratives +Pelagianism +pelargonium +pelletified +pelletifies +pelletising +pelletizing +pellitories +pellucidity +Peloponnese +pelotherapy +peltmongers +pelvimeters +pencillings +pendentives +pendulating +pendulosity +pendulously +penelopised +penelopises +penelopized +penelopizes +penetralian +penetrances +penetrating +penetration +penetrative +penetrators +penguinries +penicillate +Penicillium +peninsulate +penitencies +penitential +pennoncelle +pennyroyals +pennyweight +pennywinkle +pennyworths +penological +penologists +pensileness +pensionable +pensionnats +pensiveness +pentachords +Pentacrinus +pentactinal +pentacyclic +pentadactyl +pentagynian +pentagynous +pentahedral +pentahedron +pentameries +pentamerism +pentamerous +pentameters +pentamidine +pentandrian +pentandrous +pentangular +pentaploidy +pentapodies +pentaprisms +pentarchies +pentastichs +pentastyles +pentathlete +pentathlons +pentavalent +pentazocine +penteconter +Pentecostal +penthemimer +Penthesilea +penthousing +pentlandite +pentstemons +penultimate +penuriously +peppercorns +peppercorny +pepperiness +peppermills +peppermints +pepperworts +peptisation +peptization +peptonising +peptonizing +perambulate +perceivable +perceivably +perceivings +percentages +percentiles +perceptible +perceptibly +perceptions +perchlorate +percipience +percipiency +percipients +percolating +percolation +percolators +percussions +percutients +perduellion +perdurances +perduration +peregrinate +peregrinity +perennating +perennation +perennially +perestroika +perfectible +perfections +perfectness +perforanses +perforating +perforation +perforative +perforators +performable +performance +performings +perfumeless +perfumeries +perfunctory +periaktoses +pericardiac +pericardial +pericardian +pericardium +pericarpial +pericentral +pericentric +perichylous +periclitate +pericranial +pericranium +peridesmium +peridinians +peridiniums +perigastric +perigenesis +periglacial +perigoniums +Perigordian +perihelions +perihepatic +perimetries +perimorphic +perimysiums +perinephric +perineurium +periodicals +periodicity +periodontal +periodontia +periostitic +periostitis +peripatetic +peripatuses +peripeteian +peripeteias +peripherals +peripheries +periphrases +periphrasis +periscoping +perishables +perishingly +perispermal +perispermic +perissology +peristalith +peristalses +peristalsis +peristaltic +peristerite +peristomial +perithecial +perithecium +peritonaeal +peritonaeum +peritoneums +peritonitic +peritonitis +periwigging +periwinkles +perlocution +perlustrate +permanences +permanently +permanganic +permeameter +permeations +permissible +permissibly +permissions +permittance +permutating +permutation +pernoctated +pernoctates +perorations +peroxidised +peroxidises +peroxidized +peroxidizes +perpetrable +perpetrated +perpetrates +perpetrator +perpetuable +perpetually +perpetuance +perpetuated +perpetuates +perpetuator +perplexedly +perquisites +perquisitor +perruquiers +persecuting +persecution +persecutive +persecutors +persecutory +perseverant +perseverate +persevering +Persianised +Persianises +Persianized +Persianizes +Persicising +Persicizing +persiflages +persifleurs +persistence +persistency +persnickety +personalise +personalism +personalist +personality +personalize +personating +personation +personative +personators +personified +personifier +personifies +personising +personizing +personpower +perspective +perspicuity +perspicuous +perspirable +perspirated +perspirates +perstringed +perstringes +persuadable +persuasible +persuasions +persulphate +pertinacity +pertinently +perturbable +perturbance +perturbants +perturbated +perturbates +perturbator +perturbedly +pervasively +perversions +pervertedly +pervertible +pervicacity +pessimistic +pesteringly +pesterments +pestiferous +pestilences +pestilently +pestologist +petalomania +petitionary +petitioners +petitioning +petitionist +Petrarchian +Petrarchise +Petrarchism +Petrarchist +Petrarchize +petrodollar +petrodromes +Petrodromus +petroglyphs +petroglyphy +petrography +p�troleuses +petrologist +petronellas +petropounds +petticoated +pettifogged +pettifogger +pettishness +phaelonions +phaenogamic +phaenomenon +phaenotypes +Phaethontic +phagedaenic +phagocytism +phagocytose +phagophobia +phalangists +phalanstery +phallocrats +phanerogams +Phanerozoic +phantasiast +phantasmata +phantasying +phantomatic +pharisaical +phariseeism +pharmacists +pharyngitic +pharyngitis +Phasmatidae +Phasmatodea +phenocrysts +phenogamous +phenologist +phenomenise +phenomenism +phenomenist +phenomenize +Pherecratic +Phidippides +philandered +philanderer +philatelist +philhellene +Philippians +Philippines +Philippised +Philippises +Philippized +Philippizes +philistines +phillipsite +Philoctetes +philodendra +philogynist +philogynous +philologers +philologian +philologist +philologues +philomathic +philosopher +philosophes +philosophic +phlegmonoid +phlegmonous +phlyctaenae +Phoenicians +phonemicise +phonemicist +phonemicize +phonetician +phoneticise +phoneticism +phoneticist +phoneticize +phonetising +phonetizing +phonofiddle +phonographs +phonography +phonologist +phonometers +phonophobia +phonophores +phonotyping +phonotypist +phosphatide +phosphatise +phosphatize +phosphonium +phosphorate +phosphorise +phosphorism +phosphorite +phosphorize +phosphorous +photoactive +photochromy +photocopied +photocopier +photocopies +photodiodes +photofloods +photoglyphs +photoglyphy +photographs +photography +photolysing +photometers +photometric +photonastic +photoperiod +photophilic +photophobes +photophobia +photophobic +photophones +photophonic +photophores +photosphere +photostatic +phototactic +phototropes +phototropic +phototyping +phrasemaker +phraseogram +phraseology +phrenetical +phrenologic +phthiriasis +phycocyanin +phycologist +phycomycete +phycophaein +phylacteric +phylloclade +phyllomania +phyllotaxis +phylloxeras +physicalism +physicalist +physicality +physiciancy +physicianer +physiocracy +physiocrats +physiognomy +physiolater +physiolatry +physiologic +physiologus +physitheism +phytoalexin +phytochrome +phytography +phytologist +phytophagic +phytosterol +phytotomist +phytotoxins +piacularity +pianofortes +pichiciagos +pickelhaube +Pickwickian +picoseconds +pictographs +pictography +pictorially +picturegoer +picturesque +piedmontite +pietistical +piezometers +pigeonholed +pigeonholer +pigeonholes +piggishness +pigheadedly +pignerating +pignorating +pignoration +pileorhizas +pilferingly +pilgarlicks +pilgarlicky +pilgrimaged +pilgrimager +pilgrimages +pilgrimised +pilgrimises +pilgrimized +pilgrimizes +pillionists +pillorising +pillorizing +pillowcases +pillowslips +pilocarpine +pinacotheca +pinakotheks +pincushions +Pindarising +Pindarizing +pinguefying +pinkishness +pinnatisect +pinnywinkle +pinocytosis +pinpointing +Pinteresque +piperaceous +pipistrelle +piratically +pirouetters +pirouetting +piscatorial +piscatrixes +piscicolous +piscivorous +Pisistratus +pissasphalt +pistillodes +pitapatting +pitchblende +pitcherfuls +pitchforked +pitchperson +piteousness +pitifulness +pittosporum +pituitaries +pixillation +placability +placeholder +placekicker +Placentalia +plagiarised +plagiariser +plagiarises +plagiarists +plagiarized +plagiarizer +plagiarizes +plagioclase +plagiostome +Plagiostomi +plainstones +plaintively +planchettes +planetarium +planetoidal +planetology +planigraphs +planimeters +planimetric +planisphere +planoblasts +planogamete +planometers +Plantagenet +plantations +plantigrade +plantocracy +plantswoman +plantswomen +planuliform +plasmatical +plasminogen +plasmodesma +plasmodesms +plasmodiums +plasmolysed +plasmolyses +plasmolysis +plasmolytic +plasmolyzed +plasmolyzes +plasmosomas +plasmosomes +plasterings +plasticised +plasticiser +plasticises +plasticized +plasticizer +plasticizes +Platanaceae +platelayers +plateresque +platforming +platinising +platinizing +platinotype +Platonicism +Platonising +Platonizing +platyrrhine +playfellows +playfulness +playgrounds +playleaders +playschools +playwrights +pleasantest +pleasurable +pleasurably +pleasureful +plebeianise +plebeianism +plebeianize +plebiscites +pleiomerous +pleiotropic +Pleistocene +plenipotent +plenishings +plenteously +plentifully +plentitudes +pleochroism +pleomorphic +plerophoria +plesiosaurs +plessimeter +plessimetry +plethorical +pleuritical +pleurodynia +pleximeters +pleximetric +pliableness +ploughlands +ploughshare +plumassiers +plumdamases +plumigerous +plumularian +pluperfects +pluralising +pluralistic +pluralities +pluralizing +pluriserial +plutocratic +plutologist +plutonomist +pluviometer +Plymouthism +Plymouthist +Plymouthite +pneumathode +pneumatical +pneumococci +pneumonitis +pocketphone +pockmanties +pococurante +podiatrists +podologists +podophyllin +Podophyllum +Podsnappery +poeticising +poeticizing +poignancies +poikilocyte +poinsettias +pointedness +pointillism +pointillist +pointlessly +poisonously +pokeberries +polarimeter +polarimetry +polariscope +polemically +polemicists +polemoniums +policewoman +policewomen +poliorcetic +polishments +Politbureau +politically +politicians +politicised +politicises +politicized +politicizes +politickers +politicking +pollinating +pollination +pollinators +Pollyannish +poltergeist +poltroonery +polyactinal +polyandrous +polyarchies +polycarpous +polycentric +polychaetes +polychrests +polychroism +polychromes +polychromic +Polycleitus +polyclinics +polycottons +polycrotism +polycrystal +polyculture +polydactyls +polydactyly +polygamists +polygenesis +polygenetic +polygenists +polyglottal +polyglottic +polygonally +polygonatum +polygraphic +polyhedrons +polyhistors +polyhistory +polyhybrids +polyhydroxy +polymastism +polymerases +polymerides +polymerised +polymerises +polymerized +polymerizes +polymorphic +Polynesians +polynomials +polyonymous +polypeptide +polyphagous +Polyphemian +polyphonies +polyphonist +polyrhythms +polysemants +Polystichum +polystyrene +polytechnic +polytheists +Polytrichum +polytunnels +polyzoarial +polyzoaries +polyzoarium +pomegranate +Pomeranians +pomiculture +pomological +pomologists +pompelmoose +pompelmouse +pompholyxes +pomposities +pompousness +ponderables +ponderating +ponderation +ponderingly +ponderments +ponderosity +ponderously +Pondicherry +ponticellos +pontificals +pontificate +pontlevises +pontonniers +Popemobiles +popmobility +popularised +populariser +popularises +popularized +popularizer +popularizes +populations +pornography +porphyritic +porrections +porriginous +portability +Portakabins +porteresses +porterhouse +portionists +portionless +Portlandian +portmanteau +Portmeirion +portraitist +portraiture +Poseidonian +positioning +positivists +positronium +posological +possessable +possessions +possessives +possibilism +possibilist +possibility +postchaises +posteriorly +posterities +postillated +postillates +postillator +postillions +postmarking +postmasters +postponence +postscenium +postscripts +postulating +postulation +postulatory +postulatums +postvocalic +potamogeton +potentially +potentiated +potentiates +potentising +potentizing +pothecaries +potteringly +pourparlers +poussetting +powellising +powellizing +powerlessly +practicable +practicably +practically +practicians +praecordial +praemunires +praepostors +praesidiums +praetorians +praetoriums +praetorship +pragmatical +pragmatised +pragmatiser +pragmatises +pragmatists +pragmatized +pragmatizer +pragmatizes +pratincoles +prattlement +Praxitelean +prayerfully +preachified +preachifies +preachiness +preachments +preacquaint +preadaptive +preadmonish +preambulary +preambulate +preannounce +preappoints +prearranged +prearranges +preaudience +precautions +precautious +precedences +precedented +precedently +precentress +preceptress +precessions +precipitant +precipitate +precipitous +preciseness +preclinical +preclusions +precocities +precognosce +precolonial +precomposed +precomposes +preconceive +preconcerts +precondemns +preconising +preconizing +preconsumed +preconsumes +precontract +precritical +predatorily +predeceased +predeceases +predecessor +predefining +predesigned +predestined +predestines +predevelops +predicament +predicating +predication +predicative +predicatory +predictable +predictably +predictions +predigested +predilected +predisposed +predisposes +predominant +predominate +prefatorial +prefatorily +prefectship +prefectural +prefectures +preferences +preferments +prefigurate +prefiguring +prefixtures +pregnancies +prehalluxes +prehensible +prehensions +prehistoric +prejudgment +prejudicant +prejudicate +prejudicial +prejudicing +prelateship +prelatesses +prelatising +prelatizing +prelections +prelibation +preliminary +preliterate +prelusively +prelusorily +prematurely +prematurity +premaxillae +premedicate +premeditate +premiership +premonished +premonishes +premonition +premonitive +premonitors +premonitory +premovement +prenominate +prenotified +prenotifies +preoccupant +preoccupate +preoccupied +preoccupies +preordained +preordering +preparation +preparative +preparators +preparatory +prepayments +preplanning +prepollence +prepollency +prepollexes +preposition +prepositive +prepositors +prepubertal +prepunctual +prerecorded +prereleases +prerogative +presagement +presanctify +presbycusis +presbyteral +preschooler +presciently +prescindent +prescinding +prescission +prescribers +prescribing +preselected +preselector +presensions +presentable +presentably +presentient +presentment +presentness +preservable +Pressburger +pressurised +pressuriser +pressurises +pressurized +pressurizer +pressurizes +presternums +prestigious +prestissimo +Prestonpans +presumingly +presumption +presumptive +presupposed +presupposes +pretendants +pretendedly +pretendents +pretensions +pretentious +preterhuman +preterition +preteritive +prettifying +prevailment +prevalences +prevalently +prevaricate +prevenience +preventable +preventible +preventions +preventives +previsional +pricelessly +prickliness +priestcraft +priestesses +priesthoods +priestliest +priestlings +priestships +primaevally +primariness +primateship +primatology +primigenial +primiparity +primiparous +primitively +primitivism +primitivist +primogenial +primordials +primordiums +Primulaceae +princeliest +princelings +principally +principates +principials +principling +printmakers +prioritised +prioritises +prioritized +prioritizes +Priscianist +prismatical +privateered +privateness +privatisers +privatising +privatively +privatizers +privatizing +privileging +probabilism +probabilist +probability +probational +probationer +problematic +problemists +Proboscidea +proboscides +proboscises +procaryotes +procaryotic +proceedings +Procellaria +procephalic +procerebral +procerebrum +processions +prochronism +procidences +proclaimant +proclaimers +proclaiming +proconsular +procreating +procreation +procreative +procreators +Procrustean +proctodaeal +proctodaeum +proctorages +proctorised +proctorises +proctorized +proctorizes +proctorship +proctoscope +proctoscopy +procuracies +procuration +procurators +procuratory +procurement +procuresses +Procyonidae +prodigalise +prodigality +prodigalize +productions +profanation +profanatory +profaneness +profanities +professedly +professions +proficience +proficiency +proficients +profiteered +profiterole +profligates +profoundest +profuseness +progenitive +progenitors +progenitrix +progeniture +progestogen +prognathism +prognathous +prognostics +programmers +programming +progressing +progression +progressism +progressist +progressive +prohibiters +prohibiting +prohibition +prohibitive +prohibitors +prohibitory +projectiles +projectings +projections +projectures +prokaryotes +prokaryotic +prolapsuses +prolateness +prolegomena +proleptical +proletarian +proletariat +proletaries +proliferate +proliferous +prolificacy +prolificity +prolixities +prolocution +prolocutors +prolocutrix +prologising +prologizing +prologuised +prologuises +prologuized +prologuizes +prolongable +prolongated +prolongates +promachoses +promenaders +promenading +prominences +prominently +promiscuity +promiscuous +promiseless +promisingly +promotional +promptitude +promulgated +promulgates +promulgator +promuscises +promycelium +pronouncers +pronouncing +propagating +propagation +propagative +propagators +propagulums +propellants +propellents +prophesiers +prophesying +prophethood +prophetical +prophetship +prophylaxis +propinquity +propionates +propitiable +propitiated +propitiates +propitiator +proportions +proposition +propounders +propounding +propraetors +propranolol +proprietary +proprieties +proprietors +proprietrix +proproctors +propylamine +propylitise +propylitize +prorogating +prorogation +prosaically +prosaicness +prosauropod +prosceniums +prosciuttos +proscribers +proscribing +prosecuting +prosecution +prosecutors +prosecutrix +proselytise +proselytism +proselytize +prosenchyma +prosiliency +prosopopeia +prospecting +prospection +prospective +prospectors +prostatitis +prosthetics +prosthetist +prostituted +prostitutes +prostitutor +prostomiums +prostrating +prostration +protagonist +protandrous +protanomaly +proteaceous +protections +protectives +protectoral +protectress +protensions +proteolysed +proteolyses +proteolysis +proteolytic +proterandry +proterogyny +proterozoic +protestants +prothalamia +prothallial +prothallium +prothalloid +prothoraces +prothoracic +prothoraxes +prothrombin +protococcal +Protococcus +protocolise +protocolist +protocolize +protocolled +protogalaxy +protogynous +protohumans +protolithic +protomartyr +protonemata +protonotary +protopathic +protophytes +protophytic +protoplasts +protosteles +Prototheria +protoxylems +protractile +protracting +protraction +protractive +protractors +protreptics +protrudable +protrusible +protrusions +protuberant +protuberate +provability +proveditore +proveditors +provenances +provendered +provenience +providences +providently +provincials +provisional +provisioned +provisorily +provitamins +provocateur +provocation +provocative +provocators +provocatory +provokingly +provostries +provostship +proximately +proximation +proximities +prudentials +prudishness +pruriginous +Prussianise +Prussianism +Prussianize +psaligraphy +psalmodical +psalmodised +psalmodises +psalmodists +psalmodized +psalmodizes +psaltresses +psammophile +psammophils +psammophyte +pseudimagos +pseudobulbs +pseudocarps +pseudocubic +pseudograph +pseudologia +pseudologue +pseudomonad +pseudomonas +pseudomorph +pseudopodia +pseudoscope +psilomelane +Psilophyton +Psilotaceae +psittacosis +psychagogue +psychedelia +psychedelic +psychiaters +psychiatric +psychically +psychicists +psychodelia +psychodelic +psychodrama +psychogases +psychogenic +psychograms +psychograph +psychologic +psychometer +psychometry +psychomotor +psychonomic +psychopaths +psychopathy +psychophily +psychopomps +psychotoxic +pteranodons +Pterichthys +pteridology +pterodactyl +Pterosauria +ptochocracy +ptyalagogic +ptyalagogue +pubescences +publication +publicising +publicizing +publishable +publishment +pudibundity +puerperiums +pufftaloona +pufftaloony +pulchritude +pullulating +pullulation +pulmobranch +pulsatances +pulsimeters +pulsometers +pulveration +pulverisers +pulverising +pulverizers +pulverizing +pulverulent +Pumblechook +Punchinello +punctations +punctilious +punctualist +punctuality +punctuating +punctuation +punctuative +punctuators +punctulated +punicaceous +punishingly +punishments +pupillarity +purchasable +purgatively +purgatorial +purgatorian +purgatories +purificator +puritanical +puritanised +puritanises +puritanized +puritanizes +purportedly +purportless +purposeless +purpresture +purserships +pursuivants +purveyances +puschkinias +pushfulness +pussyfooted +pussyfooter +pussywillow +pustulating +pustulation +putrefiable +putrescence +putrescible +Pycnogonida +pycnogonids +pycnogonoid +pycnometers +pycnospores +pycnostyles +pyelography +pyknometers +pyracanthas +pyramidally +pyramidical +pyramidions +pyramidists +pyrargyrite +pyrenocarps +pyrimidines +pyritohedra +pyroballogy +pyroclastic +pyrogenetic +pyrognostic +pyrogravure +pyrokinesis +pyromancies +pyromaniacs +pyrophobics +pyrophorous +pyrotechnic +pyrrhicists +pyrrolidine +Pythagorean +Pythagorism +Pythonesque +pythonesses diff --git a/com/agnibho/code/anagram/dictionary/P12.txt b/com/agnibho/code/anagram/dictionary/P12.txt new file mode 100644 index 0000000..fc59b24 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P12.txt @@ -0,0 +1,1371 @@ +pachycarpous +Pachydermata +pachydermous +pacificating +pacification +pacificators +pacificatory +paddlefishes +paediatrists +paedobaptism +paedobaptist +paedodontics +paedogenesis +paedogenetic +paedological +paedologists +paedomorphic +paedophiliac +painlessness +palaeobotany +palaeography +palaeolithic +palatability +palatalising +palatalizing +paleographer +paleontology +Palestinians +palification +palindromist +palingeneses +palingenesia +palingenesis +palladianism +palpableness +palpitations +palsgravines +paludamentum +paludicolous +palynologist +pampelmooses +pampelmouses +pamperedness +pamphleteers +panaesthesia +panarthritis +Panathenaean +Panchatantra +panchromatic +pancratiasts +pancreatitis +pandanaceous +pandemoniums +panegyricons +panegyrising +panegyrizing +panentheists +pangrammatic +panhellenion +Panhellenism +Panhellenist +panhellenium +panicmongers +paniculately +panification +panislamists +panjandarums +panniculuses +panpharmacon +panpsychists +pansexualism +pansexualist +panspermatic +panspermists +pantaloonery +pantechnicon +pantheresses +pantisocracy +pantisocrats +pantographer +pantographic +pantomimical +pantomimists +pantophagist +pantophagous +Papadopoulos +Papaveraceae +paperbacking +Papilionidae +papistically +papuliferous +papyrologist +parabaptisms +parabolising +parabolizing +paraboloidal +paracenteses +paracentesis +parachronism +parachutists +paracrostics +paracyanogen +paradigmatic +paradisaical +Paradiseidae +paradisiacal +paradoxidian +paradoxology +paradoxurine +paraenetical +paraesthesia +paraglossate +paragnathism +paragnathous +paragraphers +paragraphing +paragraphist +paralanguage +paralipomena +parallelised +parallelises +parallelists +parallelized +parallelizes +parallelwise +paralogising +paralogizing +Paralympians +paramagnetic +paramastoids +paramedicals +parametrical +paramilitary +paramorphism +paranthelion +paranthropus +paraphimosis +paraphrasers +paraphrasing +paraphrastic +parapophyses +parapophysis +parapsychism +paraquadrate +parascenders +parascending +parasitaemia +parasiticide +parasitising +parasitizing +parasitology +parasphenoid +parasuicides +parasyntheta +paratactical +parathyroids +paratroopers +parchmentise +parchmentize +parenterally +parenthesise +parenthesize +parishioners +parisyllabic +Parkinsonism +parleyvooing +Parmigianino +paroccipital +parochialise +parochialism +parochiality +parochialize +paroemiology +paronomastic +parsimonious +partialising +partialities +partializing +participable +participants +participated +participates +participator +particularly +particulates +partisanship +partitioners +partitioning +partitionist +partnerships +parvoviruses +pasquinaders +pasquinading +passableness +passacaglias +passamenting +passemeasure +passementing +passibleness +passionaries +passionately +passionating +Pasteurellae +Pasteurellas +pasteurisers +pasteurising +pasteurizers +pasteurizing +pastoralists +pastourelles +patellectomy +paternosters +pathetically +pathogenesis +pathogenetic +pathological +pathologists +patrialising +patrializing +patriarchate +patriarchies +patriarchism +patriclinous +patrilineage +Patripassian +patristicism +patroclinous +patroonships +pauciloquent +pavingstones +peacefulness +peccadilloes +Pecksniffian +pectinaceous +pectinations +pectoriloquy +peculiarised +peculiarises +peculiarized +peculiarizes +pedantically +pedanticised +pedanticises +pedanticized +pedanticizes +pedantocracy +pedantocrats +pedestalling +pediatrician +pedicellaria +pediculation +pedipalpuses +pedunculated +Peeblesshire +peerlessness +pejoratively +pelargoniums +pelletifying +pellucidness +penalisation +penalization +penelopising +penelopizing +penetrations +penguineries +peninsulated +peninsulates +penitentiary +pennoncelles +Pennsylvania +pennyweights +pennywinkles +pensionaries +pentacrinoid +pentadactyle +pentadactyls +pentadactyly +pentagonally +pentahedrons +pentapolitan +pentateuchal +pentathletes +penteconters +penthemimers +penultimates +peradventure +perambulated +perambulates +perambulator +perceptional +perceptively +perceptivity +perceptually +perchlorates +percolations +percussional +percussively +percutaneous +perdurations +peregrinated +peregrinates +peregrinator +peremptorily +perennations +perenniality +perfectation +perfectively +perfervidity +perfidiously +perfoliation +perforations +perforatuses +performances +performative +perfusionist +pergameneous +pericarditis +pericardiums +perichaetial +perichaetium +perichoresis +periclitated +periclitates +pericraniums +pericynthion +peridesmiums +perilousness +perimetrical +perimorphous +perinephrium +perineuritis +perineuriums +periodically +periodontics +periodontist +perionychium +periostracum +peripherally +peripherical +periphrastic +periselenium +perispomenon +peristaliths +peristeronic +peristomatic +peristrephic +peritonaeums +peritrichous +perjinkities +perlocutions +perlustrated +perlustrates +permaculture +permanencies +permanganate +permeability +permeameters +permissively +permittances +permittivity +permutations +perniciously +pernoctating +pernoctation +peroxidation +peroxidising +peroxidizing +perpetrating +perpetration +perpetrators +perpetualism +perpetualist +perpetuality +perpetuances +perpetuating +perpetuation +perpetuators +perpetuities +perplexingly +perplexities +perquisition +perquisitors +persecutions +perseverance +perseverated +perseverates +perseverator +Persianising +Persianizing +persistences +persistently +persistingly +personalised +personalises +personalists +personalized +personalizes +personalties +personations +personifiers +personifying +perspectival +perspectives +perspicacity +perspirating +perspiration +perspiratory +perstringing +persuasively +persulphates +persulphuric +pertinacious +perturbances +perturbating +perturbation +perturbative +perturbators +perturbatory +perverseness +perversities +pervicacious +perviousness +Pestalozzian +pestilential +pestological +pestologists +petaliferous +Peterborough +petitionists +Petrarchised +Petrarchises +Petrarchized +Petrarchizes +petrifaction +petrifactive +petrodollars +petrogeneses +petrogenesis +petrogenetic +petroglyphic +petrographer +petrographic +petrological +petrophysics +pettifoggers +pettifoggery +pettifogging +phaenogamous +phaeomelanin +Phaeophyceae +phagocytical +phagocytosed +phagocytoses +phagocytosis +Phalaenopsis +phallocratic +Phanerogamae +Phanerogamia +phanerogamic +phanerophyte +phantasiasts +phantasmally +phantasmical +pharmaceutic +pharmacology +pharyngology +pharyngotomy +pheasantries +Pheidippides +phengophobia +phenological +phenologists +phenomenally +phenomenised +phenomenises +phenomenists +phenomenized +phenomenizes +phenotypical +phenylalanin +Philadelphia +philadelphus +philanderers +philandering +philanthrope +philanthropy +philatelists +philharmonic +philhellenes +philhellenic +Philippising +Philippizing +Philistinise +philistinism +Philistinize +phillumenist +philodendron +philogynists +philologians +philological +philologists +philosophers +philosophess +philosophies +philosophise +philosophism +philosophist +philosophize +phlebotomise +phlebotomist +phlebotomize +phlegmagogic +phlegmagogue +phlegmatical +phonasthenia +phonemically +phonemicised +phonemicises +phonemicists +phonemicized +phonemicizes +phonetically +phoneticians +phoneticised +phoneticises +phoneticisms +phoneticists +phoneticized +phoneticizes +phonocamptic +phonofiddles +phonographer +phonographic +phonological +phonologists +phonotactics +phonotypical +phosphatised +phosphatises +phosphatized +phosphatizes +phosphaturia +phospholipid +phosphorated +phosphorates +phosphoresce +phosphorised +phosphorises +phosphorized +phosphorizes +photobiology +photochemist +photochromic +photocopiers +photocopying +photoelastic +photoengrave +photofission +photoflashes +photogeology +photoglyphic +photographed +photographer +photographic +photogravure +photokinesis +photomontage +photoperiods +photophilous +photorealism +photosetting +photospheric +Photostatted +phototherapy +phototropism +photovoltaic +phrasemakers +phrasemonger +phraseograms +phraseograph +phraseologic +phreatophyte +phrenologise +phrenologist +phrenologize +phrontistery +phycological +phycologists +phycomycetes +phycoxanthin +phylacteries +phylloclades +phyllotactic +phylogenesis +phylogenetic +physicalists +physicianers +physiocratic +physiognomic +physiography +physiolaters +physiologist +phytobenthos +phytogenesis +phytogenetic +phytographer +phytographic +phytohormone +phytological +phytologists +phytonadione +phytophagous +phytotomists +piccadilloes +pickaninnies +pickelhaubes +picornavirus +picrocarmine +pictographic +pictorically +picturegoers +Picturephone +piercingness +pigeonholing +pigmentation +pignorations +pilgrimagers +pilgrimaging +pilgrimising +pilgrimizing +pilliwinkses +pinacothecas +pinchcommons +pinchpennies +pinealectomy +pinnywinkles +pipistrelles +Pirandellian +pisciculture +pitchforking +pitchpersons +pitiableness +pitilessness +pityrosporum +placableness +placeholders +placentation +placentiform +placentology +plagiarisers +plagiarising +plagiarizers +plagiarizing +plagioclases +plagiostomes +plagiotropic +planetariums +planetesimal +planispheres +planispheric +planogametes +Plantagenets +plantigrades +plasmolysing +plasmolyzing +plasmosomata +plasterboard +plasteriness +plasterstone +plasticisers +plasticising +plasticizers +plasticizing +platanaceous +platinotypes +platonically +platyrrhines +plausibility +pleasantness +pleasantries +pleasingness +pleasureless +plebeianised +plebeianises +plebeianisms +plebeianized +plebeianizes +plebiscitary +plecopterous +Plectognathi +pleiochasium +pleiotropism +plenipotence +plenipotency +pleomorphism +pleomorphous +pleonastical +Plesiosaurus +plessimeters +plessimetric +Pleuronectes +pleurotomies +ploughshares +ploughwright +plumbaginous +plumbiferous +plumulaceous +plumularians +pluriliteral +plurilocular +pluriseriate +plutocracies +plutologists +plutonomists +pluviometers +pluviometric +pneumathodes +pneumaticity +pneumatology +pneumococcus +pneumothorax +pocketphones +podoconiosis +poetastering +poikilocytes +poikilotherm +pointillisme +pointilliste +pointillists +polarimeters +polarimetric +polarisation +polariscopes +polarization +polarography +poliorcetics +politicaster +politicising +politicizing +pollinations +pollutedness +Pollyannaish +pollyannaism +Polonisation +Polonization +poltergeists +Polyadelphia +polyanthuses +polycrystals +polydemonism +polyembryony +polyethylene +Polygalaceae +polygamously +polyglottous +Polygonaceae +polygonatums +polyhistoric +polyisoprene +polymerising +polymerizing +polymorphism +polymorphous +polymyositis +polyneuritis +polypeptides +polypetalous +polypharmacy +polyphonists +polyphyletic +polyphyllous +polyphyodont +polyrhythmic +polysepalous +polysiloxane +polystyrenes +polysyllabic +polysyllable +polysyndeton +polytechnics +polytheistic +polytonality +polyurethane +polyzoariums +pomegranates +pompelmooses +pompelmouses +pompholygous +ponderations +pontifically +pontificated +pontificates +Popocatepetl +popularisers +popularising +popularities +popularizers +popularizing +populousness +porcelainise +porcelainize +porcelainous +porcellanise +porcellanite +porcellanize +porcellanous +porismatical +pornographer +pornographic +portcullises +portentously +porterhouses +portmanteaus +portmanteaux +portraitists +portraitures +positiveness +positivistic +positivities +possessional +possessioned +possessively +possibilists +posteriority +posthumously +postillating +postillation +postillators +postliminary +postliminous +postmistress +postponement +postponences +postposition +postpositive +postsceniums +postulancies +postulations +potamogetons +potamologist +potentiality +potentiating +potentiation +potichomania +powerfulness +powerlifting +practicalism +practicalist +practicality +practitioner +praetorships +pragmatisers +pragmatising +pragmatizers +pragmatizing +praiseworthy +Pralltriller +praseodymium +prattleboxes +praxinoscope +prayerlessly +preachership +preachifying +preacquaints +preambulated +preambulates +preamplifier +preannounced +preannounces +preappointed +prearranging +preassurance +preaudiences +prebendaries +precancerous +precariously +precautional +precedencies +precedential +precentrixes +preceptorial +precessional +prechristian +preciosities +preciousness +precipitable +precipitance +precipitancy +precipitants +precipitated +precipitates +precipitator +precisianism +precisianist +precisionist +preclassical +preclusively +precociously +precognition +precognitive +precognizant +precognosced +precognosces +precomposing +preconceived +preconceives +preconcerted +precondemned +precondition +preconscious +preconstruct +preconsuming +precontracts +predeceasing +predecessors +predesignate +predesigning +predestinate +predestinies +predestining +predetermine +predeveloped +predicaments +predications +predictively +predigesting +predigestion +predilection +predisposing +predominance +predominancy +predominated +predominates +prefabricate +prefectorial +prefectships +preferential +prefigurated +prefigurates +prefloration +prefoliation +preformation +preformative +pregustation +prehensility +prehensorial +prehistorian +prejudgement +prejudgments +prejudicated +prejudicates +prelapsarian +prelateships +prelatically +prelibations +premaxillary +premedicated +premedicates +premeditated +premeditates +premenstrual +premierships +premonishing +premonitions +Premonstrant +premovements +prenegotiate +prenotifying +prenticeship +preoccupancy +preoccupants +preoccupated +preoccupates +preoccupying +preoperative +preordaining +preordinance +preparations +preparedness +preponderant +preponderate +prepositions +prepossessed +prepossesses +preposterous +prepubescent +prerecording +prerequisite +prerogatived +prerogatives +presagements +presbyacusis +presbycousis +presbyterate +presbyterial +Presbyterian +presbyteries +preschoolers +prescissions +prescription +prescriptive +preselecting +preselection +preselectors +presentation +presentative +presentially +presentiment +presentments +preservation +preservative +preservatory +presidencies +presidentess +presidential +presignified +presignifies +pressurisers +pressurising +pressurizers +pressurizing +prestigiator +prestissimos +presumptions +presumptuous +presupposing +pretenceless +pretendingly +preteritions +pretermitted +prevailingly +prevalencies +prevaricated +prevaricates +prevaricator +preveniences +preventative +preventively +previousness +pridefulness +priestliness +priggishness +primateships +primigravida +primitivists +primogenital +primogenitor +primordially +primulaceous +princeliness +principality +prioritising +prioritizing +privateering +probabilists +probationary +probationers +problematics +proboscidean +proboscidian +probouleutic +procathedral +procellarian +procerebrums +processional +processioner +prochronisms +proclaimants +proclamation +proclamatory +proclivities +proconsulate +proctodaeums +proctologist +proctorially +proctorising +proctorizing +proctorships +proctoscopes +procurations +procurements +prodigalised +prodigalises +prodigalized +prodigalizes +prodigiosity +prodigiously +proditorious +productional +productively +productivity +profanations +professional +professorate +professoress +professorial +proficiences +proficiently +profiteering +profiteroles +profitlessly +profligacies +profligately +profoundness +profundities +progenitress +progenitures +progesterone +progestogens +proglottides +progradation +programmable +programmatic +progressions +progressists +progressives +progymnasium +prohibitions +projectional +projectivity +prolegomenon +proletarians +proletariate +proletariats +proliferated +proliferates +prolifically +prolificness +prolocutions +prologuising +prologuizing +prolongating +prolongation +promethazine +prominencies +promissorily +promontories +promptuaries +promulgating +promulgation +promulgators +promuscidate +promyceliums +pronephroses +pronominally +pronouncedly +propaedeutic +propagandise +propagandism +propagandist +propagandize +propagations +propenseness +propensities +prophetesses +propheticism +prophetships +prophylactic +propitiating +propitiation +propitiative +propitiators +propitiatory +propitiously +proportional +proportioned +propositions +proprietress +propugnation +propylitised +propylitises +propylitized +propylitizes +prorogations +prosauropods +proscription +proscriptive +prosectorial +prosecutable +prosecutions +proselytised +proselytiser +proselytises +proselytized +proselytizer +proselytizes +prosenchymas +prosodically +prosopopeial +prosopopoeia +prospections +prospectives +prospectuses +prosperities +prosperously +prostacyclin +prostanthera +prosthetists +prostituting +prostitution +prostitutors +prostrations +prosyllogism +protactinium +protagonists +protectingly +protectively +protectorate +protectorial +protectories +protectrixes +protensities +proteoglycan +proteolysing +protestation +protestingly +prothalamion +prothalamium +prothalliums +prothonotary +protistology +protocolised +protocolises +protocolists +protocolized +protocolizes +protocolling +protomartyrs +protomorphic +protonematal +protoplasmal +protoplasmic +protoplastic +prototherian +prototrophic +prototypical +protozoology +protractedly +protractible +protractions +protreptical +protrusively +protuberance +protuberated +protuberates +proveditores +provendering +proveniences +proverbially +providential +provincially +provisionary +provisioning +provocateurs +provocations +provostships +proximations +prudentially +Prussianised +Prussianiser +Prussianises +Prussianized +Prussianizer +Prussianizes +psalmodising +psalmodizing +psammophiles +psammophytes +psammophytic +psellismuses +psephologist +pseudocyesis +pseudographs +pseudography +pseudomartyr +pseudomonads +pseudomorphs +pseudonymity +pseudonymous +pseudopodium +pseudorandom +pseudoscopes +psilanthropy +psychagogues +psychiatrist +psychoactive +psychobabble +psychodramas +psychographs +psychography +psychologies +psychologise +psychologism +psychologist +psychologize +psychometers +psychometric +psychonomics +psychopathic +psychosexual +psychosocial +psychoticism +psychotropic +psychrometer +psychrometry +pteridomania +Pteridophyta +pteridophyte +pteridosperm +pterodactyls +pterosaurian +ptyalagogues +publications +pufftaloonas +puftaloonies +pugilistical +pugnaciously +pulchritudes +pullulations +pulverations +pulverisable +pulverizable +pulverulence +pulvilliform +pumpernickel +Punchinellos +punctualists +punctuations +punctulation +puncturation +pupilability +purblindness +purgatorians +purification +purificative +purificators +purificatory +puristically +puritanising +puritanizing +purposefully +purprestures +Puseyistical +pussyfooters +pussyfooting +pussywillows +pustulations +putrefacient +putrefaction +putrefactive +putrescences +pyramidology +pyrithiamine +pyritiferous +pyritohedral +pyritohedron +pyrochemical +pyroclastics +pyrognostics +pyroligneous +pyromaniacal +pyrometrical +pyromorphite +pyrophyllite +pyrosulphate +pyrotartaric +pyrotartrate +pyrotechnics +pyrotechnist +Pythagoreans +pythonomorph diff --git a/com/agnibho/code/anagram/dictionary/P13.txt b/com/agnibho/code/anagram/dictionary/P13.txt new file mode 100644 index 0000000..1dd2c54 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P13.txt @@ -0,0 +1,921 @@ +pacifications +paediatrician +paedobaptists +paedomorphism +paedophiliacs +painstakingly +palaeobiology +palaeobotanic +palaeoclimate +palaeocrystic +palaeoecology +palaeographer +palaeographic +palaeontology +Palaeotherium +palaeozoology +palatableness +paleographers +palindromical +palindromists +palingenesias +palingenesies +palingenesist +palletisation +palletization +palmification +paludamentums +palynological +palynologists +pamphleteered +panaesthetism +panchromatism +pandemoniacal +pandiculation +panegyrically +pangrammatist +panharmonicon +panhellenions +panhelleniums +panleucopenia +panophthalmia +panpsychistic +pansexualists +panspermatism +panspermatist +Pantagruelian +Pantagruelion +Pantagruelism +Pantagruelist +pantechnicons +pantheistical +pantheologist +pantisocratic +pantographers +pantophagists +papaprelatist +papaveraceous +Papilionaceae +papilliferous +papillomatous +papovaviruses +papyrologists +parabolanuses +parabolically +parachronisms +paradoxically +paragraphical +paragraphists +paralanguages +paraleipomena +paralipomenon +parallactical +parallelising +parallelistic +parallelizing +parallelogram +paramagnetism +paramountcies +paramyxovirus +paraphernalia +parapophysial +parapsychical +parapsychosis +paraquadrates +parasitically +parasiticides +parasphenoids +parasynthesis +parasynthetic +parasyntheton +parchmentised +parchmentises +parchmentized +parchmentizes +parencephalon +parenthesised +parenthesises +parenthesized +parenthesizes +parenthetical +parliamentary +parliamenting +Parnassianism +parochialised +parochialises +parochialized +parochializes +parthenocarpy +participantly +participating +participation +participative +participators +participatory +participially +particularise +particularism +particularist +particularity +particularize +partitionists +partitionment +pasigraphical +passemeasures +passementerie +Passeriformes +paterfamilias +paternalistic +pathogenicity +pathognomonic +pathographies +patriarchates +patrifocality +patrilineages +patrilineally +patrimonially +patriotically +patronisingly +patronizingly +pauperisation +pauperization +peaceableness +peacelessness +peculiarising +peculiarities +peculiarizing +pedagogically +pedagogueries +pedanticising +pedanticizing +pedantocratic +pedestrianise +pedestrianism +pedestrianize +pediatricians +pedicellariae +peirastically +pelletisation +pelletization +Peloponnesian +Pembrokeshire +penalisations +penalizations +pendragonship +pendulousness +penetrability +penetratingly +penetratively +penicilliform +penicillinase +peninsularity +peninsulating +penitentially +pennilessness +Pennsylvanian +pentacrinoids +pentadactyles +pentadactylic +pentadelphous +pentastichous +pentasyllabic +penthemimeral +pentobarbital +penuriousness +peptonisation +peptonization +peradventures +perambulating +perambulation +perambulators +perambulatory +percussionist +perditionable +perdurability +peregrinating +peregrination +peregrinators +peregrinatory +perennibranch +perfectionate +perfectionism +perfectionist +perfervidness +perfoliations +performatives +perfunctorily +perfusionists +perichaetiums +perichondrial +perichondrium +periclitating +pericynthions +perigastritis +perihepatitis +perinephritis +perinephriums +periodicalist +periodisation +periodization +periodontists +periodontitis +perionychiums +periostracums +peripatetical +peripherality +perishability +perispomenons +perissodactyl +perityphlitis +perivitelline +perlustrating +perlustration +permanganates +permutability +pernoctations +peroxidations +perpendicular +perpetrations +perpetualists +perpetuations +perplexedness +perquisitions +perscrutation +perseverances +perseverating +perseveration +perseverators +perseveringly +persistencies +personalising +personalistic +personalities +personalizing +perspectively +perspectivism +perspectivist +perspicacious +perspicuities +perspicuously +perturbations +pervasiveness +pervertedness +pessimistical +pestiferously +Petrarchising +Petrarchizing +petrifactions +petrification +petrochemical +petrocurrency +petrographers +petroliferous +petrophysical +phaenological +phagocytosing +phalansterian +phalansterism +phalansterist +phallocentric +phanerogamous +phanerophytes +phantasmalian +phantasmality +pharisaically +pharmaceutics +pharmaceutist +pharmacognosy +pharmacopoeia +pharyngoscope +pharyngoscopy +phellogenetic +phelloplastic +phencyclidine +phenobarbital +phenomenalise +phenomenalism +phenomenalist +phenomenality +phenomenalize +phenomenising +phenomenizing +phenomenology +phenothiazine +phenylalanine +Philadelphian +philanthropes +philanthropic +philhellenism +philhellenist +Philistinised +Philistinises +Philistinized +Philistinizes +phillumenists +philodendrons +philomathical +philosophical +philosophised +philosophiser +philosophises +philosophists +philosophized +philosophizer +philosophizes +phlebotomised +phlebotomises +phlebotomists +phlebotomized +phlebotomizes +Phlegethontic +phlegmagogues +phlogisticate +phonautograph +phonemicising +phonemicizing +phonendoscope +phoneticising +phoneticizing +phonetisation +phonetization +phonocamptics +phonographers +phonographist +phosphatising +phosphatizing +phosphorating +phosphoresced +phosphoresces +phosphoretted +phosphorising +phosphorizing +phosphorylase +phosphorylate +phosphuretted +photochemical +photochromics +photochromism +photocopiable +photoelectric +photoelectron +photoengraved +photoengraver +photoengraves +photographers +photographing +photographist +photogravures +photomontages +photoperiodic +photophoresis +photoreceptor +Photostatting +photovoltaics +phrasemongers +phraseographs +phraseologies +phraseologist +phreatophytes +phreatophytic +phrenetically +phrenological +phrenologised +phrenologises +phrenologists +phrenologized +phrenologizes +phthalocyanin +phycoerythrin +phylacterical +phyllophagous +phylloquinone +physharmonica +physiciancies +physicianship +physiocracies +physiognomies +physiognomist +physiographer +physiographic +physiological +physiologists +physiologuses +physiotherapy +physitheistic +phytochemical +phytographers +phytoplankton +phytotoxicity +pianistically +picturesquely +pidginisation +pidginization +piezoelectric +piezomagnetic +pigheadedness +pigmentations +piscicultural +pityrosporums +plagiocephaly +plagiostomata +plagiostomous +plagiotropism +plagiotropous +plaintiveness +planetologist +planimetrical +plantocracies +plasmodesmata +plasterboards +platiniferous +platitudinise +platitudinize +platitudinous +platycephalic +platyhelminth +platyrrhinian +plausibleness +plebeianising +plebeianizing +plebification +plectognathic +plectopterous +pleiochasiums +plenipotences +plenitudinous +plenteousness +plentifulness +plesiosaurian +plethorically +ploughwrights +plumbisolvent +plumbosolvent +pluralisation +pluralization +pluripresence +pneumatically +pneumatolysis +pneumatolytic +pneumatometer +pneumatophore +pneumogastric +pneumonectomy +pococurantism +pococurantist +Podostemaceae +poikilothermy +pointlessness +poisonousness +polarisations +polarizations +Polemoniaceae +poliomyelitis +politicasters +pollicitation +polliniferous +polyadelphous +polycarbonate +polychromatic +polycythaemia +polydactylism +polydactylous +polydaemonism +polyembryonic +polygalaceous +polygonaceous +polyhistorian +polyhistories +polynomialism +polyphloisbic +Polypodiaceae +polypropylene +polyprotodont +polysyllabism +polysyllables +polysyllogism +polysyndetons +polysynthesis +polysynthetic +polytechnical +polythalamous +ponderability +ponderousness +pontificality +pontificating +porcelaineous +porcelainised +porcelainises +porcelainized +porcelainizes +porcellaneous +porcellanised +porcellanises +porcellanized +porcellanizes +pornographers +Portulacaceae +possessionary +possessionate +possessorship +possibilities +postclassical +posterisation +posterization +postillations +postliminiary +postliminious +postmenstrual +postponements +postpositions +posttraumatic +postulational +potamological +potamologists +potentiometer +powerlessness +practicalists +practicalness +practitioners +pragmatically +praxinoscopes +prayerfulness +preacherships +preacquainted +preadaptation +preadmonished +preadmonishes +preadmonition +preadolescent +preambulating +preambulatory +preamplifiers +preannouncing +preappointing +preassurances +precautionary +precentorship +precentresses +preceptresses +precipitances +precipitantly +precipitately +precipitating +precipitation +precipitative +precipitators +precipitously +precisianists +precisionists +precognitions +precognoscing +preconceiving +preconception +preconcerting +precondemning +preconditions +preconisation +preconization +preconstructs +precontracted +precopulatory +predatoriness +predefinition +predesignated +predesignates +predestinated +predestinates +predestinator +predetermined +predeterminer +predetermines +predeveloping +predicability +predicamental +predicatively +predilections +predominances +predominantly +predominating +predomination +prefabricated +prefabricates +prefabricator +prefatorially +preferability +prefigurating +prefiguration +prefigurative +prefigurement +preformations +prehistorians +prehistorical +prejudgements +prejudicating +prejudication +prejudicative +prejudicially +preliminaries +preliminarily +premandibular +prematureness +prematurities +premedicating +premedication +premeditating +premeditation +premeditative +premillennial +premonishment +premonitorily +prenegotiated +prenegotiates +prenticeships +preoccupating +preoccupation +preordainment +preordinances +preordination +preparatively +preparatorily +preponderance +preponderancy +preponderated +preponderates +prepositional +prepositively +prepossessing +prepossession +preprogrammed +prerequisites +prerogatively +presanctified +presanctifies +presbyacousis +presbyterates +Presbyterians +presbytership +prescientific +prescriptible +prescriptions +preselections +presentations +presentiality +presentiments +preservations +preservatives +presidentship +presignifying +prestigiators +presumptively +pretendership +pretensioning +pretentiously +preteriteness +pretermission +pretermitting +preternatural +preterperfect +prevaricating +prevarication +prevaricators +preventatives +pricelessness +primatologist +primigravidae +primigravidas +primitiveness +primogenitary +primogenitive +primogenitors +primogenitrix +primogeniture +primordialism +primordiality +principalness +principalship +prismatically +privateersman +privateersmen +privatisation +privatization +probabilistic +probabilities +problematical +proboscideans +proboscidians +procathedrals +processionals +processionary +processioners +processioning +proclamations +proconsulates +proconsulship +procrastinate +procreational +proctologists +procuratorial +prodigalising +prodigalizing +producibility +profectitious +professionals +professorates +professoriate +professorship +proficiencies +profitability +progenitorial +progenitrixes +prognosticate +programmables +progressional +progressively +progressivism +progressivist +progymnasiums +prohibitively +projectionist +prolegomenary +prolegomenous +proleptically +proliferating +proliferation +proliferative +proliferously +prolification +prolocutrixes +prolongations +promiscuously +promotability +promulgations +pronounceable +pronouncement +pronunciation +propagandised +propagandises +propagandists +propagandized +propagandizes +proparoxytone +prophetically +prophylactics +propinquities +propitiations +proportionate +proportioning +propositional +propositioned +propraetorial +propraetorian +proprietaries +proprietorial +proprietrixes +proprioceptor +propylitising +propylitizing +prosaicalness +proscriptions +prosectorship +prosecutorial +prosecutrices +prosecutrixes +proselytisers +proselytising +proselytizers +proselytizing +prosopagnosia +prosopography +prosopopoeial +prospectively +prostaglandin +prostantheras +prostatectomy +prosthodontia +prosyllogisms +protanomalous +protectionism +protectionist +protectorates +protectorless +protectorship +protectresses +proteinaceous +proteoclastic +proterandrous +proterogynous +Protestantise +Protestantism +Protestantize +protestations +protoactinium +Protoceratops +Protochordata +protochordate +Protococcales +protocolising +protocolizing +protogalaxies +protolanguage +protonotarial +protonotariat +protonotaries +protospataire +protuberances +protuberantly +protuberating +protuberation +proverbialise +proverbialism +proverbialist +proverbialize +provincialise +provincialism +provincialist +provinciality +provincialize +provisionally +provocatively +prudentialism +prudentialist +prudentiality +Prussianisers +Prussianising +Prussianizers +Prussianizing +psammophilous +psephological +psephologists +pseudomartyrs +pseudomonades +pseudomorphic +psilanthropic +Psilophytales +psychasthenia +psychiatrical +psychiatrists +psychoanalyse +psychoanalyst +psychoanalyze +psychobiology +psychodynamic +psychogenesis +psychogenetic +psychographic +psychohistory +psychokinesis +psychokinetic +psychological +psychologised +psychologises +psychologists +psychologized +psychologizes +psychometrics +psychometrist +psychopathics +psychopathist +psychophysics +psychosomatic +psychosurgery +psychotherapy +psychotically +psychrometers +psychrometric +psychrophilic +pteridologist +pteridophytes +pteridosperms +pterosaurians +pterylography +pucciniaceous +pulmobranches +pulselessness +pulverisation +pulverization +pumpernickels +Punchinelloes +punctiliously +punctualities +puncturations +punishability +pupillarities +purifications +puritanically +purposelessly +purposiveness +pusillanimity +pusillanimous +pycnidiospore +pycnoconidium +pyramidically +Pyrenomycetes +pyretotherapy +pyrheliometer +pyrimethamine +pyrophosphate +pyrosulphuric +pyrotechnical +pyrotechnists +Pythonomorpha +pythonomorphs diff --git a/com/agnibho/code/anagram/dictionary/P14.txt b/com/agnibho/code/anagram/dictionary/P14.txt new file mode 100644 index 0000000..580187a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P14.txt @@ -0,0 +1,586 @@ +pachydactylous +pachydermatous +paediatricians +paedomorphosis +palaeanthropic +palaeethnology +palaeobotanist +palaeoclimatic +palaeographers +palaeographist +palaeopedology +palatalisation +palatalization +paleontologist +palingenesists +palingenetical +palletisations +palletizations +palmatipartite +palmifications +pamphleteering +pancreatectomy +pandiculations +pangrammatists +panharmonicons +panspermatists +pantheologists +pantographical +pantomimically +pantopragmatic +papaprelatists +papilionaceous +paradigmatical +paragrammatist +paraleipomenon +paralinguistic +parallelepiped +parallelograms +parallelopiped +paramilitaries +paraphrastical +parapsychology +pararosaniline +parasitologist +paratactically +parchmentising +parchmentizing +pardonableness +parencephalons +parenchymatous +parenthesising +parenthesizing +parliamentings +parochialising +parochializing +paroemiography +paronomastical +parsimoniously +parthenocarpic +participations +particularised +particularises +particularisms +particularists +particularized +particularizes +particularness +partitionments +passementeries +Passifloraceae +passionateness +Pasteurelloses +pasteurellosis +pasteurisation +pasteurization +pathologically +patresfamilias +patrialisation +patrialization +patriarchalism +pauperisations +pauperizations +pedantocracies +pedestrianised +pedestrianises +pedestrianized +pedestrianizes +pelletisations +pelletizations +penetrableness +penitentiaries +pennatulaceous +Pennsylvanians +pentadactylism +pentadactylous +Pentecostalist +pentobarbitone +perambulations +perceptibility +perceptiveness +perceptivities +percussionists +percutaneously +peregrinations +peremptoriness +perennibranchs +perfectibilian +perfectibilism +perfectibilist +perfectibility +perfectionated +perfectionates +perfectionists +perfidiousness +perichondriums +periodicalists +periodisations +periodizations +periodontology +peripateticism +periphrastical +perishableness +Perissodactyla +perissodactyls +peritoneoscopy +perlocutionary +perlustrations +permeabilities +permissibility +permissiveness +perniciousness +pernicketiness +perpendiculars +perpetualities +perscrutations +perseverations +personableness +perspectivists +persuasibility +persuasiveness +pertinaciously +perturbational +pestilentially +Petrarchianism +petrifications +petrochemicals +petrochemistry +petrographical +petrologically +petrophysicist +phalansterists +phantasmagoria +phantasmagoric +pharmaceutical +pharmaceutists +pharmacologist +pharmacopoeial +pharmacopoeian +pharmacopoeias +pharmacopolist +pharyngoscopes +pharyngotomies +phelloplastics +phenobarbitone +phenomenalised +phenomenalises +phenomenalists +phenomenalized +phenomenalizes +phenylbutazone +Philadelphians +philadelphuses +philanthropies +philanthropist +philhellenists +Philistinising +Philistinizing +philologically +philosophaster +philosopheress +philosophesses +philosophisers +philosophising +philosophistic +philosophizers +philosophizing +phlebotomising +phlebotomizing +phlegmatically +phlogisticated +phlogisticates +phonautographs +phonematically +phonendoscopes +phonographists +phonologically +phosphoprotein +phosphorescent +phosphorescing +phosphorylated +phosphorylates +photobiologist +photocatalysis +photocatalytic +photochemistry +photoelectrode +photoelectrons +photoengravers +photoengraving +photofloodlamp +photogenically +photogrammetry +photographical +photographists +photoluminesce +photoperiodism +photorealistic +photoreceptors +photosensitise +photosensitive +photosensitize +photosynthesis +photosynthetic +phototelegraph +phraseological +phrenologising +phrenologizing +phrontisteries +phthalocyanine +phyllotactical +physharmonicas +physiognomical +physiognomists +physiographers +phytogenetical +phytogeography +Phytolaccaceae +phytopathology +picornaviruses +piezochemistry +piezomagnetism +pinealectomies +pinnatipartite +pisciculturist +planetologists +Plantaginaceae +plasmapheresis +platitudinised +platitudinises +platitudinized +platitudinizes +platycephalous +platyhelminths +platyrrhinians +plebifications +plectognathous +plenipotencies +plenipotential +pleonastically +plethysmograph +pleurapophyses +pleurapophysis +Pleuronectidae +Plumbaginaceae +plumbisolvency +plumbosolvency +pluralisations +pluralizations +pluviometrical +pneumatologist +pneumatometers +pneumatophores +pneumoconiosis +pneumoconiotic +pneumodynamics +pneumokoniosis +pococuranteism +podophthalmous +poikilothermal +poikilothermic +polemoniaceous +politicisation +politicization +pollicitations +polyacrylamide +polycarbonates +polyembryonate +polyhistorians +polymerisation +polymerization +polynucleotide +Polyplacophora +polyprotodonts +polysaccharide +polysyllabical +polysyllogisms +polysynthetism +polytheistical +Pontederiaceae +popularisation +popularization +porcelainising +porcelainizing +porcellanising +porcellanizing +Porphyrogenite +portentousness +possessionates +possessiveness +postmastership +postmenopausal +postmistresses +postpositional +postpositively +potentialities +potentiometers +potentiometric +practicability +practicalities +pragmaticality +pragmatisation +pragmatization +praiseworthily +prayerlessness +preacquainting +preadaptations +preadmonishing +preadmonitions +preadolescence +prearrangement +precariousness +precentorships +precipitancies +precipitations +precipitinogen +precociousness +preconceptions +preconcertedly +preconditioned +preconisations +preconizations +preconsonantal +preconstructed +precontracting +predaciousness +predefinitions +predesignating +predesignation +predesignatory +predestinarian +predestinating +predestination +predestinative +predestinators +predeterminate +predeterminers +predetermining +predeterminism +predevelopment +predictability +predisposition +predominancies +predominations +prefabricating +prefabrication +prefabricators +preferentially +prefigurations +prefigurements +prejudications +premandibulars +premedications +premeditatedly +premeditations +premillenarian +prenegotiating +prenegotiation +preoccupancies +preoccupations +preoperational +preordainments +preordinations +preponderances +preponderantly +preponderating +prepossessions +preposterously +presanctifying +presbyterially +presbyterships +prescriptively +prescriptivism +prescriptivist +presentability +presentational +presentimental +presentiveness +preservability +preservatories +presidentesses +presidentships +pressurisation +pressurization +presumptuously +presupposition +pretermissions +prettification +prevarications +preventability +preventiveness +primatologists +primogenitures +principalities +principalships +prioritisation +prioritization +privatisations +privatizations +probabiliorism +probabiliorist +probationaries +proceleusmatic +processionings +proconsulships +procrastinated +procrastinates +procrastinator +procryptically +procuratorship +prodigiousness +productibility +productiveness +productivities +professionally +professoresses +professorially +professoriates +professorships +profitableness +progenitorship +progenitresses +prognosticated +prognosticates +prognosticator +progressionary +progressionism +progressionist +progressivists +prohibitionary +prohibitionism +prohibitionist +projectionists +projectisation +projectivities +projectization +proletarianise +proletarianism +proletarianize +proliferations +prolifications +prolocutorship +pronouncements +pronunciamento +pronunciations +propaedeutical +propagandising +propagandistic +propagandizing +propitiatorily +propitiousness +proportionable +proportionably +proportionally +proportionated +proportionates +proportionings +proportionless +proportionment +propositioning +proprietorship +proprietresses +proprioceptive +proprioceptors +proscriptively +prosectorships +prosencephalic +prosencephalon +prosperousness +prostaglandins +prosthodontics +prosthodontist +protectionists +protectiveness +protectorships +Protestantised +Protestantises +Protestantized +Protestantizes +Protevangelium +prothonotarial +prothonotariat +prothonotaries +protistologist +protolanguages +protonotariats +protoplasmatic +protospathaire +Prototracheata +protozoologist +protrusiveness +protuberations +proventriculus +proverbialised +proverbialises +proverbialisms +proverbialists +proverbialized +proverbializes +providentially +provincialised +provincialises +provincialisms +provincialists +provincialized +provincializes +prudentialists +Prussification +psephoanalysis +pseudaesthesia +pseudepigrapha +pseudepigraphy +pseudomembrane +pseudomorphism +pseudomorphous +pseudonymously +pseudoscorpion +pseudosolution +pseudosymmetry +psilanthropism +psilanthropist +psychoanalysed +psychoanalyses +psychoanalysis +psychoanalysts +psychoanalytic +psychoanalyzed +psychoanalyzes +psychochemical +psychodramatic +psychodynamics +psychogenetics +psychographics +psycholinguist +psychologising +psychologizing +psychometrical +psychometrists +psychoneuroses +psychoneurosis +psychoneurotic +psychopathists +psychophysical +psychosomatics +psychotechnics +pteridologists +pteridophilist +pterylographic +pugilistically +pugnaciousness +pulverisations +pulverizations +punctuationist +purposefulness +pycnidiospores +pycnoconidiums +pyelonephritic +pyelonephritis +pyramidologist +pyrenomycetous +pyrheliometers +pyrheliometric +pyrophosphates +pyrophosphoric +pyrophotograph +pyrotechnician +Pythagoreanism diff --git a/com/agnibho/code/anagram/dictionary/P15.txt b/com/agnibho/code/anagram/dictionary/P15.txt new file mode 100644 index 0000000..7c22915 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P15.txt @@ -0,0 +1,304 @@ +palaeoanthropic +Palaeoanthropus +palaeobiologist +palaeobotanical +palaeobotanists +palaeoecologist +palaeoethnology +palaeogeography +palaeographical +palaeographists +palaeolimnology +palaeomagnetism +palaeontography +palaeontologist +palaeopathology +palaeophytology +palaeozoologist +paleontologists +panophthalmitis +pantopragmatics +paradoxicalness +paragrammatists +paragraphically +paraheliotropic +paralinguistics +parallelepipeda +parallelepipeds +parallelopipeds +paramyxoviruses +parasiticalness +parasitologists +parasympathetic +parenthetically +parliamentarian +parliamentarily +parliamentarism +paroemiographer +parthenogenesis +parthenogenetic +particularising +particularistic +particularities +particularizing +paterfamiliases +Patripassianism +pedagoguishness +pedestrianising +pedestrianizing +penetrativeness +perfectibilians +perfectibilists +perfectionating +perfectionistic +perfluorocarbon +perfunctoriness +pergamentaceous +perissodactylic +perissosyllabic +peristaltically +perpendicularly +personalisation +personalization +personification +perspicaciously +perspicuousness +pessimistically +petrocurrencies +petrophysicists +phantasmagorial +phantasmagorias +pharisaicalness +pharmaceuticals +pharmacognosist +pharmacognostic +pharmacokinetic +pharmacological +pharmacologists +pharmacopolists +phenakistoscope +phenolphthalein +phenomenalising +phenomenalistic +phenomenalizing +phenomenologist +phenylketonuria +phenylketonuric +philanthropical +philanthropists +philosophasters +philosophically +phlogisticating +phonautographic +phonemicisation +phonemicization +phoneticisation +phoneticization +phosphoproteins +phosphorescence +phosphorylating +phosphorylation +photobiologists +photoconducting +photoconductive +photodegradable +photodissociate +photoelasticity +photoelectrodes +photoengravings +photogrammetric +photojournalism +photojournalist +photolithograph +photoluminesced +photoluminesces +photomacrograph +photomechanical +photomicrograph +photomultiplier +photorefractive +photosensitised +photosensitiser +photosensitises +photosensitized +photosensitizer +photosensitizes +photosynthesise +photosynthesize +phototelegraphs +phototelegraphy +photoxylography +photozincograph +phrenologically +physicochemical +physiographical +physiologically +physiotherapist +phytogeographer +phytogeographic +picturesqueness +pisciculturists +Pithecanthropus +plagiostomatous +plantaginaceous +platitudinarian +platitudinising +platitudinizing +Platyhelminthes +pleasurableness +plenipotentiary +plethysmographs +plumbaginaceous +pneumatological +pneumatologists +pneumonectomies +polychlorinated +polychloroprene +polycrystalline +polymerisations +polymerizations +polyphloesboean +Polyprotodontia +polysaccharides +polysyllabicism +polysynthetical +polyunsaturated +popularisations +popularizations +postconsonantal +postmasterships +postulationally +practicableness +pragmaticalness +preacquaintance +prearrangements +precipitability +precipitousness +preconditioning +preconstructing +preconstruction +predestinarians +predeterminable +predevelopments +predictableness +predispositions +preferentialism +preferentialist +preformationism +preformationist +prehistorically +premillenarians +preponderancies +prepositionally +prepossessingly +Presbyterianise +Presbyterianism +Presbyterianize +prescriptivists +presentableness +presentationism +presentationist +preservationist +prestidigitator +presuppositions +pretentiousness +preternaturally +prettifications +primogenitrixes +probabiliorists +probationership +problematically +processionalist +procrastinating +procrastination +procrastinative +procrastinators +procrastinatory +procreativeness +procuratorships +professionalise +professionalism +professionalize +progenitorships +prognosticating +prognostication +prognosticative +prognosticators +programmability +progressionists +progressiveness +prohibitionists +prohibitiveness +proletarianised +proletarianises +proletarianized +proletarianizes +prolocutorships +pronunciamentos +properispomenon +proportionality +proportionately +proportionating +proprietorially +proprietorships +propylitisation +propylitization +prosencephalons +prosenchymatous +prosopographies +prospectiveness +prostatectomies +prosthodontists +Protestantising +Protestantizing +prothonotariats +protistologists +protospatharius +protozoological +protozoologists +proverbialising +proverbializing +provincialising +provincializing +provocativeness +pseudepigraphic +pseudoephedrine +pseudohexagonal +pseudomembranes +pseudosolutions +psilanthropists +psychedelically +psychoanalysing +psychoanalyzing +psychobiography +psychobiologist +psychochemistry +psychogenetical +psychogeriatric +psychographical +psychohistorian +psychohistories +psycholinguists +psychologically +psychometrician +psychopathology +psychophysicist +psychosomimetic +psychosynthesis +psychotherapist +psychotomimetic +psychrometrical +pteridophilists +pteryographical +pulchritudinous +pulmobranchiate +punctiliousness +purposelessness +pusillanimously +pycnodysostosis +pyknodysostosis +pyramidologists +pyrophotographs +pyrophotography +pyrotechnically +pyrotechnicians diff --git a/com/agnibho/code/anagram/dictionary/P16.txt b/com/agnibho/code/anagram/dictionary/P16.txt new file mode 100644 index 0000000..671c598 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P16.txt @@ -0,0 +1,129 @@ +palaeobiologists +palaeoecological +palaeoecologists +palaeoethnologic +palaeogeographic +palaeontological +palaeontologists +palaeozoological +palingenetically +paradigmatically +paraheliotropism +parallelepipedon +parallelogrammic +parallelopipedon +paraphrastically +parapsychologist +parliamentarians +parsimoniousness +perfluorocarbons +periphrastically +perissodactylate +perissodactylous +perpendicularity +personifications +pertinaciousness +pervicaciousness +petrographically +phalansterianism +phallocentricity +phantasmagorical +phantasmogenetic +pharmaceutically +pharmacodynamics +pharmacokinetics +phenomenological +philoprogenitive +philosopheresses +philosophistical +phonographically +phosphorescently +photocomposition +photoelectricity +photoelectronics +photogrammetrist +photographically +photojournalists +photolithography +photoluminescent +photoluminescing +photomacrography +photomicrography +photoperiodicity +photopolarimeter +photosensitisers +photosensitising +photosensitizers +photosensitizing +photosynthesised +photosynthesises +photosynthesized +photosynthesizes +phototherapeutic +phototypesetting +photozincography +phraseologically +phylogenetically +physiognomically +physiotherapists +phytopathologist +pictographically +Pietermaritzburg +piezoelectricity +plagiotropically +pneumonokoniosis +polycotyledonous +polysyllabically +polysyntheticism +polytheistically +pornographically +Porphyrogenitism +Porphyrogeniture +postpositionally +Potamogetonaceae +praiseworthiness +precipitinogenic +preconcertedness +preconsciousness +predetermination +predispositional +premillennialism +premillennialist +preponderatingly +preposterousness +Presbyterianised +Presbyterianises +Presbyterianized +Presbyterianizes +prescriptibility +prescriptiveness +presignification +prestidigitation +prestidigitators +presumptuousness +preternaturalism +preterpluperfect +professionalised +professionalises +professionalized +professionalizes +prognostications +proletarianising +pronunciamentoes +proslambanomenos +prosopographical +proventriculuses +pseudepigraphous +pseudoclassicism +psychoanalytical +psychobiological +psychobiologists +psychogeriatrics +psychohistorians +psychohistorical +psycholinguistic +psychopannychism +psychopannychist +psychophysiology +pterylographical +pyrophotographic diff --git a/com/agnibho/code/anagram/dictionary/P17.txt b/com/agnibho/code/anagram/dictionary/P17.txt new file mode 100644 index 0000000..a0c5c9a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P17.txt @@ -0,0 +1,50 @@ +palaeoclimatology +palaeoenvironment +palaeoethnologist +parapsychological +particularisation +particularization +pectinibranchiate +pedestrianisation +pedestrianization +pentachlorophenol +perchloroethylene +perennibranchiate +perspicaciousness +pharmacologically +philanthropically +photoconductivity +photoelectrically +photolithographer +photolithographic +photoluminescence +photomacrographic +photomechanically +photomicrographer +photomicrographic +photopolarimeters +photosynthesising +photosynthesizing +phototherapeutics +physiotherapeutic +phytopathological +plenipotentiaries +poluphloisboiotic +polysynthetically +postmillennialist +predestinarianism +premillenarianism +premonstratensian +presanctification +Presbyterianising +Presbyterianizing +preternaturalness +primogenitureship +probabilistically +professionalising +professionalizing +proportionateness +pseudepigraphical +psycholinguistics +psychopathologist +psychoprophylaxis diff --git a/com/agnibho/code/anagram/dictionary/P18.txt b/com/agnibho/code/anagram/dictionary/P18.txt new file mode 100644 index 0000000..9256982 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P18.txt @@ -0,0 +1,20 @@ +palaeoanthropology +palaeoethnological +palaeoethnologists +palaeontographical +parallelogrammatic +parallelogrammical +parliamentarianism +pharmacokineticist +photoisomerisation +photoisomerization +physiotherapeutics +postmillennialists +proletarianisation +proletarianization +proportionableness +pseudofolliculitis +psychobiographical +psychopharmacology +psychotherapeutics +pterylographically diff --git a/com/agnibho/code/anagram/dictionary/P19.txt b/com/agnibho/code/anagram/dictionary/P19.txt new file mode 100644 index 0000000..a022a7f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P19.txt @@ -0,0 +1,8 @@ +palaeoenvironmental +parapsychologically +pharmacokineticists +phonautographically +polyhydroxybutyrate +procrastinativeness +professionalisation +professionalization diff --git a/com/agnibho/code/anagram/dictionary/P2.txt b/com/agnibho/code/anagram/dictionary/P2.txt new file mode 100644 index 0000000..f7d3e1b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P2.txt @@ -0,0 +1,3 @@ +pa +pi +po diff --git a/com/agnibho/code/anagram/dictionary/P20.txt b/com/agnibho/code/anagram/dictionary/P20.txt new file mode 100644 index 0000000..0cf7c85 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P20.txt @@ -0,0 +1,5 @@ +parallelogrammatical +phantasmogenetically +philoprogenitiveness +polyphiloprogenitive +psychopharmacologist diff --git a/com/agnibho/code/anagram/dictionary/P21.txt b/com/agnibho/code/anagram/dictionary/P21.txt new file mode 100644 index 0000000..b7d5740 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P21.txt @@ -0,0 +1,4 @@ +poluphloisboiotatotic +pseudohermaphroditism +psychoneuroimmunology +psychopharmacologists diff --git a/com/agnibho/code/anagram/dictionary/P22.txt b/com/agnibho/code/anagram/dictionary/P22.txt new file mode 100644 index 0000000..2a707d9 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P22.txt @@ -0,0 +1 @@ +polytetrafluorethylene diff --git a/com/agnibho/code/anagram/dictionary/P23.txt b/com/agnibho/code/anagram/dictionary/P23.txt new file mode 100644 index 0000000..95c7d02 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P23.txt @@ -0,0 +1 @@ +polytetrafluoroethylene diff --git a/com/agnibho/code/anagram/dictionary/P3.txt b/com/agnibho/code/anagram/dictionary/P3.txt new file mode 100644 index 0000000..a976221 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P3.txt @@ -0,0 +1,67 @@ +pad +pah +pal +pam +pan +pap +par +pas +pat +paw +pax +pay +pea +pec +ped +pee +peg +Pei +pen +pep +per +pet +pew +phi +pho +pia +pic +pie +pig +pin +pip +pis +pit +pi� +pix +ply +poa +pod +Poe +poh +poi +pom +poo +pop +pos +pot +pow +pox +poz +pre +pro +pry +psi +pst +pub +pud +pug +pun +pup +pur +pus +put +puy +pya +pye +Pym +pyx diff --git a/com/agnibho/code/anagram/dictionary/P4.txt b/com/agnibho/code/anagram/dictionary/P4.txt new file mode 100644 index 0000000..356fb1f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P4.txt @@ -0,0 +1,318 @@ +paca +pace +pack +paco +pact +pacy +pads +page +pahs +paid +paik +pail +pain +pair +pais +pale +Pali +pall +palm +palp +pals +paly +pams +pand +pane +pang +pans +pant +papa +pape +paps +para +pard +pare +park +parp +parr +pars +part +pash +pass +past +pate +path +pats +paua +paul +pave +Pavo +pawa +pawk +pawl +pawn +paws +pays +peag +peak +peal +pean +pear +peas +peat +peba +pech +peck +pecs +Pedi +peds +peed +peek +peel +peen +peep +peer +pees +pegh +pegs +pein +peke +pela +Pele +pelf +pell +pelt +pend +pene +peni +penk +Penn +pens +pent +peon +pepo +peps +p�re +peri +perk +perm +pern +pert +Peru +perv +peso +pest +Pete +pets +pews +phat +phew +Phil +phiz +phoh +phon +phos +phot +phut +Piaf +pias +pica +pice +pick +pics +Pict +pied +pier +pies +piet +pigs +pika +pike +pila +pile +pili +pill +Pils +pimp +pi�a +pine +ping +pink +pins +pint +piny +pion +pioy +pipa +pipe +pipi +pips +pipy +pirl +pirn +Pisa +pis� +pish +piss +pita +pith +pits +Pitt +pity +pium +Pius +pixy +pize +plan +plap +plat +play +plea +pleb +pled +pli� +plim +plod +plop +plot +plow +ploy +plug +plum +plus +Pnyx +poas +pock +poco +pods +poem +poet +pogo +pogy +pohs +pois +poke +poky +pole +polk +poll +polo +polt +poly +pome +pomp +poms +pond +pone +pong +pons +pont +pony +pood +poof +pooh +pook +pool +poon +poop +poor +poot +pope +Popp +pops +pore +pork +porn +port +pory +pose +posh +poss +post +posy +pote +pots +pott +pouf +pouk +pour +pout +pows +poxy +pozz +prad +pram +prat +prau +pray +pree +prep +prex +prey +prig +prim +proa +prob +prod +prof +prog +prom +proo +prop +pros +prow +Prue +pruh +prys +psis +psst +psts +Ptah +pubs +puce +puck +puds +pudu +puer +puff +pugh +pugs +puir +puja +puke +puku +pula +pule +pulk +pull +pulp +pulu +puly +puma +pump +puna +punk +puns +punt +puny +pupa +pups +pure +puri +purl +purr +purs +push +puss +puts +putt +putz +puys +Puzo +pyat +pyes +pyet +pyne +pyot +pyre +pyro diff --git a/com/agnibho/code/anagram/dictionary/P45.txt b/com/agnibho/code/anagram/dictionary/P45.txt new file mode 100644 index 0000000..9ba2d9c --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P45.txt @@ -0,0 +1 @@ +pneumonoultramicroscopicsilicovolcanoconiosis diff --git a/com/agnibho/code/anagram/dictionary/P5.txt b/com/agnibho/code/anagram/dictionary/P5.txt new file mode 100644 index 0000000..798d166 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P5.txt @@ -0,0 +1,746 @@ +Pablo +Pabst +pacas +paced +pacer +paces +pacey +pacha +packs +pacos +pacts +paddy +padle +padma +padre +Padua +paean +paeon +pagan +paged +pager +pages +pagod +pagri +Paige +paiks +pails +Paine +pains +paint +pairs +paisa +pakka +palas +palay +palea +paled +paler +pales +palet +Paley +Palii +Palin +Palio +palki +palla +palls +pally +Palma +palms +palmy +palpi +palps +palsy +pampa +panax +Panay +panda +pands +pandy +paned +panel +panes +panga +pangs +panic +panim +panne +pansy +panto +pants +paoli +paolo +papal +papas +papaw +paper +papes +pappy +Papua +paras +Parca +parch +pardi +pards +pardy +pared +pareo +parer +pares +pareu +parge +Paris +parka +parki +parks +parky +parle +parly +Parma +parol +parps +parrs +parry +parse +Parsi +parti +parts +party +Pasch +paseo +pasha +pashm +paspy +pass� +pasta +paste +pasts +pasty +patch +pated +paten +pater +pates +Path� +paths +patin +patio +patly +Patna +Paton +patsy +patte +Patti +patty +pauas +Paula +Pauli +pauls +pause +pavan +paved +paven +paver +paves +Pavia +pavid +pavin +pavis +pawas +pawaw +pawed +pawks +pawky +pawls +pawns +paxes +payed +payee +payer +peace +peach +peags +Peake +peaks +peaky +peals +peans +peare +pearl +pears +peart +Peary +pease +peats +peaty +peavy +peaze +pebas +pecan +pechs +Pecht +pecks +pedal +pedro +peeks +peels +peens +peeoy +peeps +peers +peery +peeve +peggy +peghs +peins +peise +peize +pekan +pekes +Pekin +pekoe +pelma +pelta +pelts +Pemba +penal +pence +pends +pened +penes +penie +penis +penks +penna +penne +penny +pents +peons +peony +pepos +peppy +Pepys +perai +Perak +Perca +perch +Percy +perdu +perdy +p�res +peril +peris +perks +perky +perms +perns +Peron +perry +perse +Perth +perts +perve +pervs +Pesah +pesky +pesos +pesto +pests +petal +peter +petit +Petra +petre +Petri +petty +pewee +pewit +peyse +phage +phare +phase +pheer +phene +pheon +phews +phial +phlox +phoca +phohs +phone +phons +phony +photo +phots +phuts +phyla +phyle +piano +picas +piccy +Picea +picks +picky +picot +picra +picul +Picus +piece +piend +Piero +piers +piet� +piets +piety +piezo +piggy +pight +pigmy +pikas +piked +piker +pikes +pikul +pilaf +pilau +pilaw +pilch +pilea +piled +pilei +piler +piles +pilis +pills +pilot +pilow +pilum +pilus +pimps +pinch +pined +pines +piney +pingo +pings +Pingu +pinko +pinks +pinky +pinna +pinny +pi�on +Pinot +pinta +pinto +pints +pions +pious +pioye +pioys +pipal +pipas +piped +piper +pipes +pipis +pipit +Pippa +pippy +pipul +pique +pirai +pirls +pirns +pirog +pisky +piste +pitas +pitch +piths +pithy +piton +pitta +piums +pivot +pixed +pixel +pixes +pixie +pizes +pizza +place +plack +plage +plaid +plain +plait +plane +plank +plans +plant +plaps +plash +plasm +plast +plate +Plath +Plato +plats +platy +playa +plays +plaza +plead +pleas +pleat +plebs +pleon +plesh +plica +plied +plier +plies +plims +pling +plink +Pliny +ploat +plods +plonk +plook +plops +plots +plouk +plows +ploys +pluck +pluff +plugs +plumb +plume +plump +plums +plumy +plunk +plush +Pluto +poach +poaka +pocks +pocky +podal +poddy +podex +podge +podgy +podia +poems +poesy +poets +pogge +pogos +poilu +poind +point +poise +pokal +poked +poker +pokes +pokey +polar +poled +poler +poles +poley +polio +polje +polka +polks +polls +polly +polos +polts +polyp +polys +Pomak +pombe +pomes +pommy +pomps +ponce +poncy +ponds +pones +poney +ponga +pongo +pongs +pongy +ponts +ponty +pooch +poods +poofs +poofy +poohs +pooja +pooka +pooks +Poole +pools +Poona +poons +poops +poori +poort +poots +poove +poovy +popes +poppa +poppy +popsy +poral +porch +pored +porer +pores +porge +porgy +porky +porno +porns +porta +Porte +P�rto +ports +porty +posed +poser +poses +posey +posit +posse +posts +potch +poted +potes +potin +potoo +potto +potts +potty +pouch +poufs +pouke +pouks +poule +poulp +poult +pound +pours +pouts +pouty +powan +power +Powys +poxed +poxes +pozzy +praam +Prado +prads +Praha +prahu +prams +prana +prang +prank +prase +prate +Prato +prats +pratt +praty +praus +prawn +prays +preed +preen +prees +preif +premy +prent +preps +presa +prese +press +prest +preve +prexy +preys +prial +Priam +price +prick +pricy +pride +pried +prier +pries +prigs +prill +prima +prime +primo +primp +prims +primy +prink +print +prion +prior +prise +prism +privy +Priya +prize +proas +probe +probs +prods +proem +profs +progs +proke +prole +promo +proms +prone +prong +pronk +proof +proos +props +prore +prose +proso +Prost +prosy +proto +proud +Prout +prove +Provo +prowl +prows +proxy +prude +pruhs +prune +prunt +pryer +pryse +psalm +pseud +pshaw +psion +psoas +psora +pssts +psych +psyop +pubes +pubic +pubis +pucka +pucks +puddy +pudge +pudgy +pudic +pudsy +pudus +puers +puffs +puffy +puggy +pughs +pugil +Pugin +pujas +puked +puker +pukes +pukka +puled +puler +pules +Pulex +pulka +pulks +pulls +pulmo +pulps +pulpy +pulse +pumas +pumps +punas +punce +punch +punga +Punic +punka +punks +punto +punts +punty +pupae +pupal +pupas +pupil +puppy +pured +puree +purer +pures +Purex +purge +purim +purin +puris +purls +purrs +purse +pursy +purty +Pusan +Pusey +pushy +pussy +putid +putti +putto +putts +putty +pyats +pyets +pygal +pygmy +pylon +pyned +pynes +pyoid +pyots +pyral +pyres +Pyrex +Pyrus +pyxed +pyxes +pyxis +pzazz diff --git a/com/agnibho/code/anagram/dictionary/P6.txt b/com/agnibho/code/anagram/dictionary/P6.txt new file mode 100644 index 0000000..e8712fb --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P6.txt @@ -0,0 +1,1266 @@ +pacers +pachak +pachas +pacier +pacify +pacing +Pacino +packed +packer +packet +pactum +padang +padauk +padded +padder +paddle +padles +padmas +padouk +Padova +padres +Paduan +paeans +paella +paeons +paeony +pagans +pagers +paging +Pagnol +pagoda +pagods +pagris +Pahang +Pahari +paidle +paigle +paiked +pained +painim +paints +painty +paired +paisas +Paiute +pajama +pajock +pakeha +Pakhto +Pakhtu +pakora +palace +palagi +palama +palate +palays +paleae +palely +palest +palets +palier +paling +palish +palkee +palkis +pallae +pallah +Pallas +palled +pallet +pallia +pallid +pallor +Palmae +palmar +Palmas +palmed +palmer +palolo +Paloma +palpal +palped +palpus +palter +paltry +Pamela +pampas +pamper +panada +panama +panary +pandas +pander +pandit +panels +panful +pangas +Pangea +panged +pangen +panick +panics +panims +panisc +panisk +panned +pannus +panted +panter +panton +pantos +pantry +pantun +panzer +papacy +papain +papaws +papaya +papers +papery +papish +papism +papist +papped +pappus +Papuan +papula +papule +papyri +parade +parage +paramo +Paran� +parang +paraph +Parcae +parcel +pardal +parded +pardie +pardon +parent +pareos +parers +pareus +parged +parges +parget +pariah +parial +Parian +paring +parish +parity +parkas +parked +parkee +parker +parkie +parkin +parkis +parkly +parlay +parled +parles +parley +parlor +parody +parole +parped +parpen +parral +parrel +parrot +parsec +parsed +Parsee +parser +parses +parson +partan +parted +parter +partim +partly +parton +parure +parvis +pascal +pasear +paseos +pashas +pashes +pashim +Pashto +passed +pass�e +passel +passer +passes +passim +passus +pastas +pasted +pastel +paster +pastes +pastil +pastis +pastor +pastry +pataca +patchy +patens +patent +patera +paters +Pathan +pathic +pathos +patina +patine +patins +patios +Patmos +patois +patrol +patron +patted +patt�e +patten +patter +pattes +pattle +Patton +patzer +paunch +pauper +pausal +paused +pauser +pauses +pavage +pavane +pavans +pavers +paving +pavior +pavise +Pavlov +pavone +pawaws +pawing +pawned +pawnee +pawner +pawpaw +Paxton +paxwax +payday +payees +payers +paying +paynim +payoff +payola +pazazz +peaces +peachy +peacod +peahen +peaked +pealed +peaned +peanut +peapod +pearce +pearls +pearly +peased +peases +peason +peavey +peazed +peazes +pebble +pebbly +pecans +peched +pecked +pecker +Pecora +pecten +pectic +pectin +pedalo +pedals +pedant +pedate +pedder +peddle +pedlar +pedros +peeing +peeked +peeled +peeler +peened +peenge +peeoys +peeped +peeper +peepul +peered +peerie +peeved +peever +peeves +peewee +peewit +pegged +peghed +peined +peised +peises +peized +peizes +pekans +Peking +pekoes +pelage +Peleus +pelham +Pelion +pelite +pellet +pelmas +pelmet +peloid +Pelops +pelory +pelota +peltas +pelted +pelter +Pelton +peltry +pelves +pelvic +pelvis +Penang +pencel +pencil +pended +Peneus +penful +penial +penile +pening +penman +penmen +pennae +pennal +penned +penner +pennon +pens�e +pensel +pensil +pensum +pentad +Pentel +penult +penury +people +Peoria +pepful +pepino +peplos +peplum +peplus +pepped +pepper +pepsin +peptic +Pequot +perais +perdie +perdue +perdus +pereia +perfay +perils +period +perish +periti +perked +perkin +permed +permit +Pernod +perone +Perrin +perron +perses +Persia +Persic +person +persue +perter +pertly +peruke +peruse +Perutz +perves +Pesach +pesade +Pesaro +peseta +pesewa +peshwa +pester +pestle +P�tain +petals +petara +petard +petary +peters +Petipa +petite +petrel +petrol +petted +petter +pettle +Petula +pewees +pewits +pewter +peyote +peysed +peyses +pezant +Peziza +phaeic +phages +phalli +phares +pharos +phased +phases +phasic +phasis +Phasma +phatic +pheere +pheers +phenic +phenol +phenom +phenyl +pheons +phials +Philby +Philip +phizog +phlegm +Phleum +phloem +phobia +phobic +Phobos +phocae +phocas +phoebe +pholas +phonal +phoned +phoner +phones +phoney +phonic +phonon +phooey +photic +photon +photos +phrase +phrasy +Phuket +phyles +phyllo +phylum +physic +physio +phyton +piaffe +Piaget +pianos +piazza +Picard +picene +picine +pickax +picked +picker +picket +pickle +picnic +picot� +picots +picric +Pictor +piculs +piddle +pidgin +pieced +piecen +piecer +pieces +pieing +pieman +piemen +piends +pierce +Pieria +pierid +Pieris +Pierre +piet�s +piffle +pigeon +pigged +piggie +piggin +pights +piglet +pigpen +pigsty +pikers +piking +pikuls +pilaff +pilafs +Pilate +pilaus +pilaws +pilers +pileum +pileus +pilfer +piling +pillar +pillau +pilled +pillow +pilose +pilots +pilous +pilows +Pilsen +pilula +pilule +pimped +pimple +pimply +pi�ata +pincer +Pindar +pinder +pineal +Pinero +pinery +pineta +pinged +pinger +pingle +pingos +pinier +pining +pinion +pinite +pinked +pinker +pinkie +pinkos +pinnae +pinned +pinner +pinnet +pinnie +pinole +pi�ons +Pinots +pintas +Pinter +pintle +pinxit +Pinyin +piolet +pionic +pioted +pioyes +pipage +pipals +pipers +pipier +piping +pipits +pipkin +pipped +pippin +pipuls +piqued +piques +piquet +piracy +pirais +pira�a +pirate +piraya +pirnie +pirogi +Pisano +Pisces +pished +pishes +pissed +pisses +pistes +pistil +pistol +piston +pitara +pitchy +pithed +pithos +pitied +pitier +pities +pitman +pitmen +pitons +pitsaw +pittas +pitted +pitter +pituri +piupiu +pivots +pixels +pixies +pixing +pizazz +pizzas +pizzle +placed +placer +places +placet +placid +placit +placks +plagal +plages +plague +plaguy +plaice +plaids +plains +plaint +plaits +planar +planch +Planck +planed +planer +planes +planet +planks +planta +plants +plaque +plashy +plasma +plasms +plaste +platan +plated +platen +plater +plates +platys +playas +played +player +plazas +pleach +pleads +please +pleats +plebby +pledge +Pleiad +plenty +plenum +pleons +pleuch +pleugh +pleura +plexor +plexus +pliant +plicae +plical +pliers +plight +plings +plinks +plinth +pliss� +ploats +plodge +ploidy +plonks +plooks +plotty +plough +plouks +plover +plower +plucks +plucky +pluffs +pluffy +plumbs +plumed +plumes +plummy +plumps +plumpy +plunge +plunks +plural +plused +pluses +plushy +pluton +Plutus +plying +pneuma +poachy +poakas +pochay +pocked +pocket +podded +podges +podial +podite +podium +podley +podsol +Podunk +Podura +podzol +poetic +poetry +pogges +pogies +pogoed +pogrom +poinds +pointe +points +pointy +Poirot +poised +poiser +poises +poison +pokals +pokers +pokeys +pokier +pokies +pokily +poking +Polack +Poland +polars +polder +polers +poleyn +police +policy +poling +polios +polish +polite +polity +poljes +polkas +polked +pollan +polled +pollen +poller +pollex +Pollux +polony +Polska +polted +polypi +polyps +pomace +pomade +Pomaks +pomato +pombes +pomelo +pommel +Pomona +pompey +pompom +pompon +pomroy +ponces +poncey +poncho +ponded +ponder +pondok +ponent +poneys +ponged +pongee +pongid +pongos +ponied +ponies +pontal +pontes +pontic +pontie +pontil +ponton +Pontus +poodle +poogye +poojah +poojas +pookas +pooked +pookit +pooled +poonac +poonce +pooped +poorer +pooris +poorly +poorts +pooted +Pooter +pooves +popery +Popian +popish +popjoy +poplar +poplin +popped +popper +poppet +poppit +popple +popply +porers +porged +porges +porgie +poring +porism +porker +pornos +porose +porous +portal +portas +ported +porter +Portia +portly +posada +posers +poseur +poshed +posher +poshes +poshly +posies +posing +posits +posnet +posses +posset +possie +possum +postal +posted +poster +postie +postil +potage +potash +potass +potato +potche +poteen +potent +potful +pother +poting +potion +potman +potmen +potoos +potpie +potted +potter +pottle +pottos +pouchy +poufed +pouffe +pouked +poukes +poukit +poules +poulpe +poulps +poults +pounce +pounds +poured +pourer +pourie +pouted +pouter +powans +powder +Powell +powers +pownie +powter +powwow +poxing +Poznan +praams +Prague +prahus +praise +prance +prangs +pranks +pranky +prated +prater +prates +pratie +pratts +Pravda +prawns +praxes +praxis +prayed +prayer +preace +preach +preamp +pr�cis +precut +preens +prefab +prefer +prefix +preife +preifs +prelim +premed +premia +premie +premix +prents +prenup +prepay +preppy +preses +preset +presto +pretor +pretty +Previn +prevue +prewar +prexes +preyed +prials +priced +pricer +prices +pricey +pricks +prided +prides +priers +priest +prills +primal +primed +primer +primes +primly +primos +primps +primus +prince +prinks +prints +prions +priors +priory +prised +prises +prisms +prismy +prison +prissy +privet +prized +prizer +prizes +probed +prober +probes +probit +Procne +proems +profit +Progne +proked +proker +prokes +proleg +proles +prolix +prolog +promos +prompt +prongs +pronks +pronto +proofs +propel +proper +propyl +prores +prosed +proser +proses +prosit +protea +proton +protyl +Proust +proved +proven +prover +proves +Provos +prowls +Prozac +prudes +pruina +pruned +pruner +prunes +prunts +prunus +prusik +pryers +prying +prysed +pryses +psalms +pseudo +pseuds +pshaws +psions +Psmith +psocid +psoras +psoric +psyche +psycho +psychs +psylla +psyops +psywar +pteria +pterin +Pteris +ptisan +ptoses +ptosis +ptyxis +pubbed +public +pucker +puckle +pudden +pudder +puddle +puddly +pudent +pudges +pudsey +Puebla +pueblo +puered +puffed +puffer +puffin +pugged +puggle +pugils +puisne +pukeko +pukers +puking +pulers +puling +pulkas +pulkha +pulled +puller +pullet +pulley +pulped +pulper +pulpit +pulque +pulsar +pulsed +pulses +pultan +pulton +pultun +pulver +pulvil +pulwar +pumelo +pumice +pummel +pumped +pumper +punces +punchy +puncta +puncto +pundit +Punica +punier +punily +punish +Punjab +punkah +punkas +punned +punner +punnet +punted +puntee +punter +puntos +pupate +pupils +pupped +puppet +Puppis +purana +purdah +Purdey +pureed +purees +purely +purest +purfle +purfly +purged +purger +purges +purify +purims +purine +puring +purism +purist +purity +purled +purler +purlin +purple +purply +purred +pursed +purser +purses +pursue +purvey +pushed +pusher +pushes +Pushto +Pushtu +pusser +pusses +puteal +puteli +putlog +Putney +putois +putout +putrid +putsch +putted +puttee +putter +puttie +puture +putzes +puzzle +pycnic +pycnon +pyeing +pyemia +pygals +pygarg +pyjama +pyknic +pylons +pylori +pyning +pyrene +pyrite +Pyrola +pyrope +Pyrrha +Pyrrho +Pythia +Pythic +python +pyuria +pyxing diff --git a/com/agnibho/code/anagram/dictionary/P7.txt b/com/agnibho/code/anagram/dictionary/P7.txt new file mode 100644 index 0000000..cbf741d --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P7.txt @@ -0,0 +1,1996 @@ +pa'anga +pabular +pabulum +pacable +pachaks +pachisi +pachuco +paciest +pacific +package +packers +packets +packing +packman +packmen +packway +paction +padangs +padauks +padders +paddies +padding +paddled +paddler +paddles +paddock +padella +padlock +padouks +padrone +padroni +paellas +paenula +paeonic +pageant +paginal +pagings +pagodas +pagurid +Pahlavi +paidles +paigles +paiking +pailful +paillon +painful +painims +paining +painted +painter +paiocke +pairing +paisano +paisley +Paiutes +pajamas +pakapoo +pakehas +Pakhtun +pakoras +paktong +palabra +palaces +paladin +palagis +palamae +palases +palatal +palates +palaver +Palawan +palazzi +palazzo +Palermo +paletot +palette +palfrey +paliest +Palilia +palings +palkees +pallahs +pallets +pallial +pallier +palling +pallium +pallone +palmary +palmate +palmers +palmful +palmier +palmiet +palming +palmist +palmtop +palmyra +palolos +Palomar +palooka +palpate +palping +palsied +palsies +palters +paludal +paludic +pampean +pampero +pampers +panacea +panache +panadas +Panadol +Panagia +panamas +panaxes +pancake +panchax +Pandean +pandect +panders +pandied +pandies +Pandion +pandits +pandoor +pandora +pandore +pandour +pandrop +pandura +paneity +paneled +panfuls +Pangaea +pangamy +pangene +pangens +panging +pangram +panicks +panicky +panicle +Panicum +paniscs +panisks +Panjabi +pannage +pannick +pannier +panning +pannose +panocha +panoply +pansied +pansies +panther +panties +pantile +panting +pantler +pantons +pantoum +pantuns +panzers +papable +papally +Papaver +papayas +papered +paperer +Paphian +papilio +papilla +papists +papoose +pappier +papping +pappose +pappous +paprika +Papuans +papulae +papular +papules +papyrus +parable +paracme +paraded +parader +parades +parador +parados +paradox +parafle +parages +paragon +Para�ba +paramos +parangs +paranym +parapet +paraphs +parasol +paratha +parazoa +parboil +parcels +parched +parches +pardals +pardine +pardner +pardons +pareira +parella +parelle +parents +parerga +pareses +paresis +paretic +parfait +pargana +pargets +parging +pariahs +parials +Parians +parings +parison +paritor +parkees +parkers +parkier +parkies +parking +parkins +parkish +parkway +parlays +parleys +parlies +parling +parlour +parlous +Parnell +parodic +paroled +parolee +paroles +paronym +parotic +parotid +parotis +parpane +parpend +parpens +parpent +parping +parquet +parrals +parrels +parried +parries +parrock +parrots +parroty +parsecs +Parsees +parsers +parsing +Parsism +parsley +parsnip +parsons +partake +partans +parters +Parthia +partial +partied +parties +parting +partita +partite +partlet +partner +partons +partook +parture +partway +parulis +parures +Parvati +parvenu +parvise +Pascale +pascals +paschal +pascual +pasears +pashims +Pashtun +paspies +Pasquil +Pasquin +passade +passado +passage +passant +passata +passels +passers +passing +passion +passive +passkey +passman +passmen +passout +pastels +pastern +pasters +Pasteur +pastier +pasties +pastils +pastime +pasting +pastors +pasture +patacas +patagia +patamar +Patarin +patball +patched +patcher +patches +patella +patency +patents +paterae +pathics +pathway +patible +patient +patinae +patinas +patined +patines +Patmore +patness +patonce +patrial +patrick +patrico +patriot +patrols +patrons +patroon +patsies +pattens +pattern +patters +patties +patting +pattles +patulin +patzers +paucity +paughty +Paulian +Paulina +Pauline +Pauling +paunchy +paupers +pausers +pausing +pavages +pavanes +pavings +paviors +paviour +pavises +pavlova +pawkier +pawkily +pawnees +pawners +pawning +pawpaws +paxiuba +payable +paydays +payfone +payings +payment +paynims +payoffs +payolas +paysage +pazzazz +peached +peacher +peaches +peacock +peacods +peafowl +peahens +peakier +peaking +pealing +peaning +peanuts +peapods +pearled +pearler +pearlin +Pearson +pearter +peartly +peasant +peascod +peasing +peatary +peatery +peatier +peatman +peatmen +peazing +pebbled +pebbles +p�brine +peccant +peccary +peccavi +peching +Pechora +peckers +pecking +peckish +pectise +pectize +pectose +pedagog +pedaled +pedalos +pedants +pedders +peddled +peddler +peddles +pedesis +pedetic +pedicab +pedicel +pedicle +pedlars +pedlary +pedrail +pedrero +Peebles +peekabo +peeking +peelers +peeling +Peelite +peenged +peenges +peening +peepers +peeping +peepuls +peerage +peeress +peeries +peering +peevers +peeving +peevish +peewees +peewits +pegasus +peggies +pegging +peghing +Pehlevi +peining +peishwa +peising +peizing +pelages +pelagic +pelhams +pelican +pelisse +pelites +pelitic +pellets +pellock +pelmets +peloids +Pelopid +peloria +peloric +pelorus +Pelotas +peloton +peltast +peltate +pelters +pelting +pemican +penally +penalty +penance +penates +pencels +pencils +pendant +pendent +pending +penfold +penfuls +penguin +penises +pennals +pennant +pennate +penners +pennied +pennies +pennill +pennine +penning +pennons +Penrith +pens�es +pensels +pensile +pensils +pension +pensive +pensums +pentact +pentads +pentane +Pentels +pentene +pentice +pentise +pentode +pentose +penuche +penuchi +penults +peonage +peonies +peonism +peopled +peoples +pepinos +peplums +peppers +peppery +peppier +pepping +pepsine +pepsins +peptics +peptide +peptise +peptize +peptone +Pequots +peraeon +Perahia +percale +percase +percent +percept +perched +percher +perches +percine +percoct +percoid +percuss +Perdita +perdues +perdure +pereion +pereira +perfays +perfect +perfidy +perform +perfume +perfumy +perfuse +pergola +perhaps +periapt +pericon +peridot +perigee +perigon +perinea +periods +periost +perique +peritus +periwig +perjink +perjure +perjury +perkier +perkily +perking +perkins +perlite +Perlman +Permian +perming +permits +permute +perones +perpend +perpent +perplex +perrier +perries +perrons +Perseid +Perseus +Persian +persico +Persism +persist +persona +persons +Perspex +pertain +pertest +perturb +pertuse +Perugia +peruked +perukes +perusal +perused +peruser +peruses +Peruzzi +pervade +pervert +pesades +pesante +Pescara +pesetas +pesewas +Peshito +peshwas +peskier +peskily +pessary +pessima +pesters +pestful +pestled +pestles +petaras +petards +petasus +petcock +petered +petiole +petrary +petrels +petrify +Petrine +petrols +petrous +petters +pettier +petties +pettily +petting +pettish +pettled +pettles +petunia +Peugeot +Pevsner +pewters +peysing +pezants +pfennig +phacoid +Phaedra +phaeism +phaeton +phalanx +phallic +phallin +phallus +phantom +Pharaoh +pharynx +phasing +phasmid +pheeres +phellem +phenate +phenols +Phidias +Phillip +philter +philtre +phizogs +phizzes +phlegmy +phloems +Phlomis +phloxes +phobias +phobism +phobist +phocine +phoebes +Phoebus +phoenix +phonate +phoneme +phoners +phoneys +phonics +phonier +phonies +phoning +phonons +phooeys +phoresy +photics +photism +photoed +photons +phrasal +phrased +phraser +phrases +phratry +phrenic +phrensy +Phrygia +phwoar! +Phyllis +physics +physios +phytons +piaffed +piaffer +piaffes +pianino +pianism +pianist +Pianola +piarist +piastre +piazzas +pibroch +Picabia +picador +picamar +Picardy +Picasso +piccies +piccolo +piceous +pickaxe +pickeer +pickers +pickery +pickets +pickier +picking +pickled +pickler +pickles +pickmaw +picnics +picoted +picotee +picquet +picrate +picrite +Pictish +picture +piddled +piddler +piddles +piddock +pidgeon +pidgins +piebald +piecens +piecers +piecing +piedish +pierage +pierced +piercer +pierces +Pierian +pierids +pierrot +pieties +pietism +pietist +piffero +piffled +piffler +piffles +pigboat +pigeons +pigfeed +piggery +piggier +piggies +pigging +piggins +piggish +Piggott +pightle +piglets +pigling +pigmean +pigmeat +pigment +pigmies +pigmoid +pigpens +pigskin +pigsney +pigtail +pigwash +pigweed +pikelet +pikeman +pikemen +pilaffs +Pilatus +pilcher +pilches +pilcorn +pilcrow +pileate +pileous +pilfers +pilgrim +pillage +pillars +pillaus +pilling +pillion +pillock +pillory +pillows +pillowy +piloted +pilotis +Pilsner +pilular +pilulas +pilules +pimento +Pimlico +pimping +pimpled +pimples +pi�atas +pinball +pincase +pincers +pinched +pincher +pinches +pindari +pinders +pindown +pinetum +pinfish +pinfold +pingers +pinging +pingled +pingler +pingles +pingoes +pinguid +pinguin +pinhead +pinhole +piniest +pinions +pinkest +pinkies +pinking +pinkish +pinkoes +pinnace +pinnate +pinners +pinnets +pinnies +pinning +pinnock +pinnula +pinnule +pinocle +pinoles +pintado +pintail +pintles +Pinxter +piolets +pioneer +piously +pipeful +piperic +pipette +pipiest +pipings +pipkins +pipless +pipping +pippins +piquant +piquets +piquing +Piraeus +piragua +pira�as +piranha +pirated +pirates +piratic +pirayas +Pirelli +pirnies +pirogue +piscary +Piscean +piscina +piscine +pishing +piskies +pismire +pissing +pissoir +pistils +pistole +pistols +pistons +pitapat +pitarah +pitaras +pitched +pitcher +pitches +piteous +pitfall +pithead +pithful +pithier +pithily +pithing +pitiers +pitiful +pitsaws +pitters +pitting +Pittism +pittite +pituita +pituite +pituris +pitying +piupius +pivotal +pivoted +pivoter +Pizarro +pizzazz +pizzles +placard +placate +placebo +placers +placets +Placido +placing +placita +placits +placket +placoid +plafond +plagium +plagued +plagues +plaguey +plaices +plaided +plained +plainer +plainly +plaints +plaited +plaiter +planers +planets +planing +planish +planked +planned +planner +plantar +plantas +planted +planter +Plantin +planula +planury +planxty +plapped +plaques +plashed +plashes +plashet +plasmas +plasmic +plasmid +plasmin +plaster +plastic +plastid +platane +platans +plateau +platens +platers +platier +platies +platina +plating +platoon +platted +platter +plaudit +Plautus +playboy +playbus +players +playful +playing +playlet +pleaded +pleader +pleaing +pleased +pleaser +pleases +pleated +pleater +plebean +plebify +plectra +plectre +pledged +pledgee +pledger +pledges +pledget +pledgor +Pl�iade +Pleiads +plenary +plenipo +plenish +plenist +plenums +pleopod +pleroma +plerome +pleshes +plessor +pleuchs +pleughs +pleurae +pleural +pleuron +plexors +plexure +pliable +pliably +pliancy +plicate +plights +plimmed +plinths +pliskie +ploated +plodded +plodder +plodged +plodges +plonked +plonker +plookie +plopped +plosion +plosive +plotful +plotted +plotter +plottie +ploughs +ploukie +plouter +Plovdiv +plovers +plovery +plowboy +plowers +plowman +plowmen +plowter +plucked +plucker +pluffed +plugged +plugger +plumage +plumate +plumbed +plumber +plumbic +plumbum +plumcot +plumery +plumier +pluming +plumist +plummet +plumose +plumous +plumped +plumpen +plumper +plumpie +plumply +plumula +plumule +plunder +plunged +plunger +plunges +plunked +plunker +plurals +plusage +plusher +plushes +plushly +plusing +plussed +plusses +pluteal +pluteus +plutons +pluvial +plywood +pneumas +poached +poacher +poaches +pochard +pochays +pochoir +pockard +pockets +pockier +pockpit +podagra +podalic +podding +podest� +podexes +podgier +podites +podiums +podleys +Podsnap +podsols +podzols +poesied +poesies +poetess +poetics +poetise +poetize +pogoing +pogroms +poinded +poinder +pointed +pointel +pointer +poisers +poising +poisons +Poisson +Poitier +poitrel +pokeful +Pok�mon +pokiest +polacca +polacre +Polaris +polaron +polders +polecat +polemic +polenta +poleyns +policed +polices +polings +politer +politic +polking +pollack +pollans +pollard +pollens +pollent +pollers +pollies +polling +pollman +pollmen +pollock +pollute +poloist +Polonia +polting +polyact +polygam +polygon +polymer +polynia +polynya +polyoma +polypod +polypus +Polyzoa +pomaces +pomaded +pomades +pomatum +pomelos +pomeroy +pomfret +pommel� +pommels +pommies +pompano +Pompeii +pompelo +pompeys +pompier +pompion +pompoms +pompons +pompous +pomroys +ponceau +ponchos +pondage +ponders +ponding +pondoks +poneyed +pongids +ponging +pongoes +poniard +pontage +Pontiac +ponties +pontiff +pontify +pontile +pontils +pontons +pontoon +ponying +pooches +poodles +pooftah +poofter +poogyee +poogyes +poojahs +pooking +pooling +poonacs +poonced +poonces +pooping +poorest +poorish +pooting +poovery +popadum +popcorn +popedom +poperin +popjoys +poplars +poplins +popover +poppers +poppets +poppied +poppies +popping +poppish +poppits +poppled +popples +popsies +popular +porches +porcine +porgies +porging +porifer +porisms +porkers +porkier +porkies +Porlock +poroses +porosis +porpess +porrect +porrigo +Porsche +portage +portals +portate +portend +portent +porters +portess +Porthos +portico +porting +portion +portman +portmen +portous +portray +posadas +posaune +poseurs +poseuse +poshest +poshing +posings +posited +positif +positon +posnets +possess +possets +possies +possums +postage +postboy +postbus +posteen +postern +posters +postfix +posties +postils +posting +postman +postmen +posture +potable +potager +potages +potamic +potassa +potched +potcher +potches +poteens +potence +potency +potents +potfuls +pothead +potheen +potherb +pothers +pothery +pothole +pothook +potiche +potions +potlach +Potomac +potoroo +potpies +Potsdam +pottage +potters +pottery +pottier +potties +potting +pottles +pouched +pouches +pouffed +pouffes +pouftah +poufter +pouking +poulard +Poulenc +poulpes +poulter +poultry +pounced +pounces +pouncet +poundal +pounded +pounder +pourers +pouries +pouring +poussin +pouters +pouting +poverty +powders +powdery +powered +pownies +powters +powwows +pozzies +prabble +practic +Pradesh +praetor +prairie +praised +praiser +praises +Prakrit +praline +pranced +prancer +prances +pranged +pranked +prankle +praters +praties +prating +prattle +pravity +prayers +praying +preachy +preamps +prebend +preborn +precast +precava +precede +precept +precess +precise +precook +precool +predate +predawn +predial +predict +predoom +preeing +preemie +preened +prefabs +preface +prefade +prefect +prefers +preform +preheat +prehend +preifes +prelacy +prelate +prelaty +prelect +prelims +prelude +preludi +premeds +premier +premies +premise +premiss +premium +premove +prented +prenups +preoral +prepack +prepaid +prepare +prepays +preplan +prepone +prepose +prepped +prepuce +prequel +prerupt +presage +presell +present +presets +preside +Presley +presold +pressed +presser +presses +pressie +pressor +Prestel +Preston +prestos +presume +preteen +pretend +preterm +pretest +pretext +pretors +pretzel +prevail +prevene +prevent +preverb +preview +previse +prevued +prevues +prewarm +prewarn +prewash +prexies +preyful +preying +prezzie +priapic +Priapus +pribble +pricers +pricier +pricing +pricked +pricker +pricket +prickle +prickly +pridian +priding +priests +prigged +prigger +prilled +primacy +primage +primary +primate +primely +primero +primers +primeur +primine +priming +primmed +primmer +primped +primsie +primula +princes +Princip +princox +prinked +printed +printer +prisage +prising +prisons +prithee +privacy +private +privets +privies +privily +privity +prizers +prizing +Prizren +proband +probang +probate +probers +probing +probits +probity +problem +proceed +process +proctal +proctor +procure +Procyon +prodded +prodder +prodigy +produce +product +proface +profane +profess +proffer +profile +profits +Profumo +profuse +progeny +progged +program +project +prokers +proking +prolate +prolegs +proline +prologs +prolong +promise +prommer +promote +prompts +pronaoi +pronaos +pronate +pronely +proneur +pronged +pronked +pronota +pronoun +proofed +prootic +propale +propane +propels +propend +propene +propers +prophet +propine +propone +propose +propped +propyla +prorate +prosaic +prosers +prosier +prosify +prosily +prosing +prosits +prosody +prosper +protean +proteas +protect +prot�g� +proteid +protein +protend +protest +proteus +prothyl +protist +protium +protons +protore +protyle +prouder +proudly +provand +provant +provend +proverb +provers +provide +provine +proving +proviso +provoke +provost +prowess +prowest +prowled +prowler +proxies +proximo +prudent +prudery +prudish +pruinas +pruners +pruning +prunted +prurigo +prusiks +Prussia +prussic +pryings +prysing +prythee +Psalter +pschent +pseudos +pshawed +psionic +psoases +psocids +psyched +psyches +psychic +psychos +psyllas +psyllid +psywars +ptarmic +pterins +pterion +pteryla +ptisans +Ptolemy +ptyalin +pubbing +puberal +puberty +pubises +publics +publish +Puccini +puccoon +pucelle +puckers +puckery +puckish +puckles +puddens +pudders +puddies +pudding +puddled +puddler +puddles +puddock +pudency +pudenda +pudgier +pudsier +pueblos +puerile +puering +puffers +puffery +puffier +puffily +puffing +puffins +puggery +puggier +puggies +pugging +puggish +puggled +puggles +puggree +Pugwash +pukekos +pulings +pulkhas +pullers +pullets +pulleys +pulling +Pullman +pulpers +pulpier +pulpify +pulpily +pulping +pulpits +pulpous +pulques +pulsars +pulsate +pulsing +pultans +pultons +pultoon +pultuns +pulture +pulvils +pulvini +pulwars +pumelos +pumiced +pumices +pummels +pumpers +pumping +pumpkin +punalua +punched +puncher +punches +punctos +punctum +pundits +pungent +puniest +Punjabi +punkahs +punners +punnets +punning +punster +puntees +punters +punties +punting +puparia +pupated +pupates +pupfish +pupilar +puppets +puppied +puppies +pupping +pupunha +puranas +Puranic +Purbeck +Purcell +purdahs +Purdeys +purfled +purfles +purgers +purging +purists +puritan +purlers +purlieu +purline +purling +purlins +purloin +purpled +purples +purport +purpose +Purpura +purpure +purring +pursers +pursier +pursing +pursual +pursued +pursuer +pursues +pursuit +purtier +purveys +purview +pushers +pushful +pushier +pushily +pushing +Pushkin +pushrod +Pushtun +pussers +pussies +pustule +putamen +putcher +putchuk +puteals +putelis +putlock +putlogs +putrefy +puttees +putters +puttied +puttier +putties +putting +Puttnam +puttock +putures +puzzled +puzzler +puzzles +pyaemia +pyaemic +pycnite +pycnons +pyebald +pygargs +pygmean +pygmies +pygmoid +pyjamas +pyloric +pylorus +Pynchon +pyralid +pyralis +pyramid +Pyramus +pyrenes +pyretic +pyrexia +pyrexic +pyrites +pyritic +pyrogen +pyropes +pyropus +pyrosis +pyrrhic +Pyrrhus +pyrrole +Pythian +Pythias +pythium +pythons +pyxides +pyxidia diff --git a/com/agnibho/code/anagram/dictionary/P8.txt b/com/agnibho/code/anagram/dictionary/P8.txt new file mode 100644 index 0000000..5ac1fa0 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P8.txt @@ -0,0 +1,2285 @@ +pabouche +pabulous +pacation +pachalic +pachinko +pachucos +pacified +pacifier +pacifies +pacifism +pacifist +packaged +packager +packages +packeted +packings +packsack +packways +pactions +paddings +paddlers +paddling +paddocks +Paddyism +padellas +paderero +padishah +padlocks +paduasoy +paenulas +paeonies +Paganini +paganise +paganish +paganism +paganize +pageants +pagehood +paginate +pagurian +pahoehoe +Paignton +pailfuls +paillons +painless +painters +paintier +painting +painture +pairings +pairwise +paisanos +paisleys +paitrick +pakapoos +Pakistan +palabras +paladins +palamate +palamino +palatals +palatial +palatine +palavers +palebuck +paleface +paleness +Palenque +palestra +paletots +palettes +palewise +palfreys +Palgrave +paliform +palimony +palinode +palinody +palisade +palisado +palladic +Palladio +palleted +palliard +palliate +pallidly +palliest +palmated +Palmerin +palmette +palmetto +palmfuls +palmiest +palmiets +palmiped +palmists +palmitic +palmitin +palmtops +palmyras +palomino +palookas +palpable +palpably +palpated +palpates +palstaff +palstave +palsying +paltered +palterer +paltrier +paltrily +paludine +paludism +paludose +paludous +pampered +pamperer +pamperos +pamphlet +Pamplona +panacean +panaceas +panaches +panaries +panatela +pancaked +pancakes +pancetta +pancheon +panchion +pancreas +Pandanus +Pandarus +pandects +pandemia +pandemic +pandered +panderly +pandoors +pandoras +pandores +pandours +pandowdy +pandrops +panduras +pandying +panegyry +paneling +panelist +panelled +pangamic +pangenes +pangless +Pangloss +pangolin +pangrams +panicked +panicled +panicles +Panionic +panislam +panmixia +panmixis +pannages +pannicks +pannicle +panniers +pannikin +pannings +panoptic +panorama +pansophy +pantable +pantalon +pantheon +panthers +pantiled +pantiles +pantings +pantofle +pantoums +pantries +pantsuit +Panufnik +Paolozzi +papacies +papalise +papalism +papalist +papalize +paperboy +paperers +papering +Paphians +papilios +papillae +papillar +papillon +papisher +papishes +papistic +papistry +papooses +pappadom +pappiest +pappoose +pappuses +paprikas +papulose +papulous +parabema +parabled +parables +parabola +parabole +paracmes +paraders +paradigm +parading +paradise +Paradiso +paradoxy +paradrop +paraffin +paraffle +parafles +parafoil +paragoge +paragons +paragram +Paraguay +parakeet +parallax +parallel +paralogy +paralyse +paralyze +parament +paramese +paramour +paranete +paranoea +paranoia +paranoic +paranoid +paranyms +parapets +paraphed +Paraquat +parasang +parasite +parasols +parathas +paravail +paravane +paravant +parazoan +parazoon +parboils +parbreak +parcener +parchesi +parching +parclose +pardners +pardoned +pardoner +pareiras +parellas +parelles +parental +parented +Pareoean +parergon +parfaits +parganas +pargeted +pargeter +parhelia +parhelic +parietal +parishen +parishes +Parisian +parisons +parities +parkiest +parkland +parklike +parkward +parkways +parlance +parlando +parlayed +parleyed +parlours +Parmesan +parochin +parodied +parodies +parodist +paroemia +parolees +paroling +paronyms +paronymy +paroquet +parotids +parousia +paroxysm +parpanes +parpends +parpents +parpoint +parquets +parritch +parrocks +parroted +parroter +parrotry +parrying +Parsifal +Parsiism +parsings +parsnips +parsonic +partaken +partaker +partakes +parterre +Parthian +partials +partible +particle +partings +partisan +partitas +Partitur +partizan +partlets +partners +partying +partyism +parvenue +parvenus +parvises +Pasadena +paseared +pashalik +pashmina +Pashtuns +Pasipha� +Pasolini +paspalum +Pasquils +Pasquins +passable +passably +passades +passados +passaged +passages +passatas +Passeres +passible +passibly +passings +passions +passives +passkeys +passless +passment +Passover +passport +passuses +password +pasterns +pasticci +pastiche +pastiest +pastille +pastimes +pastings +pastises +pastoral +pastorly +pastrami +pastries +pastural +pastured +pastures +patagial +patagium +patamars +Patarine +patchers +patchery +patchier +patchily +patching +patellae +patellar +patellas +patented +patentee +patently +patentor +paterero +paternal +Paterson +pathetic +pathless +pathogen +pathways +patience +patients +patrials +patriate +Patricia +patricks +patriots +patronal +patronne +patroons +pattened +pattered +patterer +patterns +patulous +pauldron +Paulette +paunched +paunches +pauseful +pausings +pavement +pavilion +paviours +pavlovas +pavonian +pavonine +pawkiest +pawnshop +paxiubas +paxwaxes +payfones +payments +paynimry +paysages +paysheet +peaberry +peaceful +peacenik +peachers +peachier +peaching +peacocks +peacocky +peafowls +peakiest +pearlers +pearlier +pearlies +pearling +pearlins +pearlite +pearmain +peartest +peasants +peasanty +peascods +peatiest +peatship +pebblier +pebbling +peccable +peccancy +peccavis +peckings +pectinal +pectines +pectised +pectises +pectized +pectizes +pectoral +peculate +peculiar +peculium +pedagogs +pedagogy +pedalier +pedaling +pedalled +pedaller +pedaloes +pedantic +pedantry +pedately +peddlers +peddling +pederast +pederero +pedestal +pedicabs +pedicels +pedicled +pedicles +pediculi +pedicure +pedigree +pediment +pedipalp +pedology +pedrails +pedreros +peduncle +peekaboo +peelings +peerages +peerless +peesweep +peetweet +Pegasean +pegboard +peggings +Peggotty +peignoir +peishwah +peishwas +pejorate +Pekinese +Pelagian +Pelagius +Pelasgic +pelerine +pelicans +pelisses +pellagra +pelleted +pellicle +pellocks +pellucid +pelmatic +pelology +pelorism +peltasts +peltered +peltings +pelvises +pembroke +pemicans +pemmican +pemoline +penalise +penalize +penanced +penances +penchant +pencraft +pendants +pendency +pendents +pendicle +pendular +pendulum +Penelope +penfolds +penguins +penitent +penknife +penlight +pennants +penneech +penneeck +Pennines +pennoned +penology +penoncel +pensions +penstock +pentacle +pentacts +pentadic +pentagon +pentanes +pentarch +Pentelic +penticed +pentices +pentised +pentises +pentodes +pentomic +pentosan +pentroof +penuches +penuchis +penuchle +penumbra +penwoman +penwomen +Penzance +peopling +peperino +peperoni +peploses +pepluses +peppered +pepperer +peppiest +pepsines +peptides +peptised +peptises +peptized +peptizes +peptones +Pepysian +peracute +peraeons +percales +perceant +perceive +percents +percepts +Perceval +perchers +perchery +perching +Percidae +Percival +percolin +perdendo +perdured +perdures +pereiras +Perelman +perfecta +perfecti +perfecto +perfects +perforce +performs +perfumed +perfumer +perfumes +perfused +perfuses +Pergamum +pergolas +periagua +perianth +periblem +periboli +pericarp +Pericles +pericope +periderm +peridial +peridium +peridote +peridots +perigeal +perigean +perigees +perigone +perigons +P�rigord +perigyny +perilled +perilous +perilune +perineal +perineum +periodic +periosts +periotic +peripety +periplus +perisarc +perished +perisher +perishes +periwigs +perjured +perjurer +perjures +perkiest +perlites +perlitic +permease +permeate +permuted +permutes +pernancy +peroneal +peroneus +Peronism +Peronist +perorate +peroxide +perpends +perpents +perradii +Perrault +perriers +perruque +Perseids +perseity +Pershing +Persians +persicos +persicot +persists +personae +personal +personas +perspire +persuade +pertains +perthite +pertness +perturbs +pertused +Perugino +perusals +perusers +perusing +Peruvian +pervaded +pervades +perverse +perverts +perviate +pervious +Peshawar +Peshitta +peskiest +pessimal +pessimum +pestered +pesterer +pestling +petaline +petalism +petalled +petalody +petaloid +petalous +p�tanque +petaries +petchary +petcocks +petechia +petering +Peterlee +Peterloo +Peterson +petiolar +petioled +petioles +petition +petitory +Petrarch +petrific +petrolic +petronel +petrosal +pettedly +pettiest +pettifog +pettings +pettling +petulant +petunias +petuntse +petuntze +pewterer +peyotism +peyotist +pezizoid +pfennigs +phacelia +Phaedrus +Phaethon +phaetons +phalange +phallism +phalloid +phantasm +phantasy +phantoms +phantomy +Pharaohs +Pharisee +pharmacy +pharoses +phasmids +pheasant +phellems +phelloid +phenates +phenetic +phengite +phenogam +phenolic +phenylic +phialled +philabeg +philamot +Philemon +philibeg +Philippa +Philippi +Phillips +philomel +philters +philtres +phimosis +phinnock +phlegmon +phobisms +phobists +Phocaena +Phocidae +Phoebean +pholades +phonated +phonates +phonemes +phonemic +phonetic +phoneyed +phoniest +phoresis +phoretic +phorminx +phormium +phosgene +phosphor +Photinia +Photofit +photogen +photoing +photopia +photopic +photopsy +phrasers +phrasing +phreatic +phrenism +Phrygian +phthalic +phthalin +phthisic +phthisis +phylarch +phyletic +phyllary +Phyllida +phyllite +phyllode +phyllody +phylloid +phyllome +physalia +physalis +physeter +physical +physicky +physique +phytoses +phytosis +Piacenza +piacular +piaffers +piaffing +pianette +pianinos +pianiste +pianists +Pianolas +piarists +piassaba +piassava +piastres +piazzian +pibrochs +picadors +Picariae +picarian +picaroon +picayune +piccolos +pichurim +pickaxes +pickback +pickeers +pickerel +picketed +picketer +Pickford +pickiest +pickings +picklers +pickling +picklock +pickmaws +Pickwick +picnicky +picotees +picoting +picotite +picquets +picrates +picrites +pictural +pictured +pictures +piddlers +piddling +piddocks +piebalds +piecened +piecener +piecrust +Piedmont +piedness +Piemonte +pierages +piercers +piercing +Pieridae +Pierides +pierrots +pietists +pifferos +pifflers +piffling +pigboats +pigeoned +pigeonry +pigfeeds +piggiest +pightles +piglings +pigmaean +pigments +pigskins +pigsneys +pigsties +pigswill +pigtails +pigweeds +pikelets +pilaster +pilchard +pilcorns +pilcrows +pileated +pilework +pilewort +pilfered +pilferer +pilgrims +piliform +Pilipino +pillaged +pillager +pillages +pillared +pillhead +pillions +pillocks +pillowed +pillwort +pilosity +pilotage +piloting +pilotman +pilotmen +Pilsener +pimentos +pimiento +pimplier +pinacoid +pinafore +pinakoid +pinaster +pincered +pinchers +pinchgut +pinching +pindaree +Pindaric +pindaris +pineries +pinfolds +pinglers +pingling +pinguefy +pinguins +pinheads +pinholes +pinioned +pinkings +pinkness +pinkroot +Pinkster +pinnaces +pinnacle +pinnated +pinnings +pinniped +pinnocks +pinnulas +pinnules +Pinochet +pinochle +pinocles +pinotage +pinpoint +pintable +pintados +pintails +pintsize +pioneers +pipeclay +pipefuls +pipeless +pipelike +pipeline +piperine +pipetted +pipettes +pipework +pipewort +piquancy +piqueted +piracies +piraguas +Piranesi +piranhas +pirarucu +pirating +piripiri +pirogues +piroshki +pirozhki +piscator +Pisceans +piscinae +piscinas +pishogue +pisiform +pismires +pisolite +Pissarro +pisshead +pissoirs +pistoles +pistolet +pitapats +pitarahs +pitchers +pitchier +pitching +pitchman +pitchmen +pitfalls +pithball +pitheads +pithiest +pithless +pithlike +pithoses +pitiable +pitiably +pitiless +pittance +pittered +pittings +pittites +pituitas +pituites +pityroid +pivoters +pivoting +pizzeria +placable +placably +placards +placated +placates +placcate +placebos +placeman +placemen +placenta +placidly +placings +placitum +plackets +plafonds +plagiary +plagiums +plaguily +plaguing +plaiding +plaidman +plaidmen +plainest +plainful +plaining +plainish +plaister +plaiters +plaiting +planched +planches +planchet +planetic +plangent +planking +plankton +planless +planners +planning +plantage +plantain +planters +planting +plantlet +plantule +planulae +planular +planuria +plapping +plashets +plashier +plashing +plasmids +plasters +plastery +plastics +plastids +plastral +plastron +platanes +platanna +Platanus +platband +plateasm +plateaus +plateaux +plateful +platelet +plateman +platemen +platform +platiest +platings +platinic +platinum +platonic +platoons +platters +platting +platypus +platysma +plaudite +plaudits +plausive +playable +playback +playbill +playbook +playboys +playgirl +playings +playlets +playmate +playroom +playsome +playsuit +playtime +pleached +pleaches +pleaders +pleading +pleasant +pleasers +pleasing +pleasure +pleaters +pleating +plebbier +plebeans +plebeian +plectres +plectron +plectrum +pledgees +pledgeor +pledgers +pledgets +pledging +pledgors +Pleiades +plenarty +plenipos +plenists +pleonasm +pleonast +pleopods +pleromas +pleromes +plessors +plethora +pleuched +pleughed +pleurisy +plexures +plexuses +pliantly +plicated +plicates +plighted +plighter +plimming +plimsole +plimsoll +Pliocene +pliosaur +pliskies +ploating +plodders +plodding +plodging +plonkers +plonking +plopping +plosions +plosives +Plotinus +plotless +plotters +plotties +plotting +ploughed +plougher +plouters +plowboys +plowters +pluckers +pluckier +pluckily +plucking +pluffing +pluggers +plugging +plughole +plumaged +plumages +plumbago +plumbate +plumbers +plumbery +plumbing +plumbism +plumbite +plumbous +plumcots +plumelet +plumiest +plumiped +plumists +plummets +plummier +plumpens +plumpers +plumpest +plumping +plumpish +plumulae +plumular +plumules +plunders +plungers +plunging +plunkers +plunking +plurally +plusages +plushest +plushier +plussage +plussing +Plutarch +plutonic +pluvials +pluviose +pluvious +Plymouth +plywoods +poaceous +poachers +poachier +poaching +pochards +pochayed +pochette +pochoirs +pockards +pocketed +pockiest +pockmark +pockpits +podagral +podagric +Podargus +podest�s +podgiest +podiatry +podocarp +podology +podsolic +poematic +poesying +poetical +poetised +poetises +poetized +poetizes +poetries +poetship +poignant +Poincar� +poinders +poinding +pointels +pointers +pointing +poisoned +poisoner +Poitiers +poitrels +pokefuls +Pok�mons +pokerish +pokeweed +pokiness +Polabian +polaccas +polacres +Polander +Polanski +polarise +polarity +polarize +Polaroid +polarons +poldered +polecats +polemics +polemise +polemist +polemize +polentas +polestar +policies +policing +polished +polisher +polishes +politely +politest +politick +politico +politics +polities +pollacks +pollards +pollened +pollical +pollices +pollings +pollinia +pollinic +polliwig +polliwog +pollocks +pollster +polluted +polluter +pollutes +pollywig +pollywog +poloidal +poloists +Polonian +polonies +polonise +polonism +polonium +Polonius +polonize +poltfeet +poltfoot +poltroon +polyacid +polyarch +polyaxon +Polybius +polygala +polygams +polygamy +polygene +polygeny +polyglot +polygons +polygony +polygyny +polymath +polymers +polymery +Polymnia +polyonym +polypary +polyphon +polypide +polypine +polypite +polypods +polypody +polypoid +polypous +polyseme +polysemy +polysome +polysomy +polytene +polyuria +polyzoan +polyzoic +polyzoon +pomading +pomander +pomatoes +pomatums +pomeroys +pomfrets +pommetty +pomology +pompanos +Pompeian +pompelos +pompeyed +Pompidou +pompions +ponceaus +ponceaux +pondages +ponderal +pondered +ponderer +pondweed +poneying +poniards +pontages +pontifex +pontiffs +pontific +pontoned +pontoons +Pontormo +ponyskin +ponytail +pooftahs +poofters +poogyees +poolroom +poolside +pooncing +poorness +poortith +poorwill +popadums +popcorns +popedoms +popehood +popeling +poperins +popeship +popinjay +popishly +popjoyed +poplitic +popovers +poppadum +poppling +Popsicle +populace +populars +populate +populism +populist +populous +Porifera +porifers +poriness +poristic +porkiest +porkling +porogamy +porosity +porpesse +Porphyra +porphyry +porpoise +porrects +porridge +porrigos +Porsches +portable +portages +portague +Portaloo +portance +portends +portents +porteous +porterly +portesse +porthole +porticos +porti�re +portigue +portions +portland +portlast +portlier +portoise +portolan +portrait +portrays +portress +Portugal +Portugee +portulan +posaunes +poseable +Poseidon +poseuses +poshness +posingly +positing +position +positive +positons +positron +posology +posseted +possible +possibly +postages +postally +postboys +postcard +postcava +Postcode +postdate +posteens +posterns +postface +postiche +postings +postlude +postmark +postoral +postpone +postpose +postural +postured +posturer +postures +potables +potagers +potashes +potassic +potation +potatoes +potatory +potchers +potching +Potemkin +potences +potently +potheads +potheens +potherbs +pothered +potholer +potholes +pothooks +pothouse +poticary +potiches +Potiphar +potlatch +potoroos +potshard +potsherd +potstone +pottages +pottered +potterer +pottiest +pouchful +pouchier +pouching +pouftahs +poufters +poulaine +poulards +pouldron +poultice +pouncing +poundage +poundals +pounders +pounding +pourable +pourings +poussins +poutings +powdered +powerful +powering +powsowdy +powtered +powwowed +poxvirus +Pozzuoli +practice +practics +practise +practive +praecava +praedial +praefect +Praesepe +praetors +prairial +prairied +prairies +praisers +praising +pralines +prancers +prancing +prandial +pranging +prankful +pranking +prankish +prankled +prankles +pratfall +pratings +pratique +prattled +prattler +prattles +prayings +preached +preacher +preaches +preamble +prebends +preceded +precedes +precepts +precinct +precious +pr�cised +preclude +precooks +precools +precurse +predated +predates +predator +predella +predials +predicts +predooms +preemies +preening +prefaced +prefaces +prefaded +prefades +prefects +prefixed +prefixes +preforms +preggers +pregnant +preheats +prehends +prehnite +prehuman +prejudge +prelates +prelatic +prelects +preluded +preludes +preludio +premedic +premiere +premiers +premised +premises +premiums +premixed +premixes +premolar +premorse +premoved +premoves +prenasal +prenatal +prentice +prenting +preorder +prepacks +prepared +preparer +prepares +prepense +preplans +preponed +prepones +preposed +preposes +preppies +preppily +prepping +prepuces +prequels +presaged +presager +presages +presbyte +prescind +Prescott +presells +presence +presents +preserve +presided +presides +presidia +presidio +pressers +pressfat +pressful +pressies +pressing +pression +pressman +pressmen +pressure +prestige +presumed +presumer +presumes +preteens +pretence +pretends +pretense +preterit +pretests +pretexts +Pretoria +prettier +pretties +prettify +prettily +pretzels +prevails +prevened +prevenes +prevents +preverbs +previews +previous +prevised +previses +prevuing +prewarms +prewarns +prezzies +Priapean +priapism +priciest +prickers +pricking +prickled +prickles +prideful +priested +priestly +priggers +priggery +prigging +priggish +priggism +prilling +primages +primally +primatal +primates +primatic +primeval +primines +primings +primmest +primming +primness +primping +primrose +primrosy +primulas +primuses +princely +princess +princock +prinking +printers +printery +printing +priorate +prioress +priories +priority +prisages +Priscian +prismoid +prisoned +prisoner +prissier +prissily +pristane +Pristina +pristine +prithees +privates +prizable +probable +probably +probands +probangs +probated +probates +problems +procaine +proceeds +prochain +procinct +proclaim +proclive +proctors +procured +procurer +procures +prodders +prodding +prodigal +proditor +prodnose +prodrome +prodromi +produced +producer +produces +products +proemial +profaned +profaner +profanes +proffers +profiled +profiler +profiles +profited +profiter +profound +progeria +progging +proggins +prograde +programs +progress +prohibit +projects +prolamin +prolapse +prolific +prolixly +prologue +prolonge +prolongs +prometal +promised +promisee +promiser +promises +promisor +prommers +promoted +promoter +promotes +promotor +prompted +prompter +promptly +promulge +pronated +pronates +pronator +proneurs +pronging +pronking +pronotal +pronotum +pronouns +proofing +prootics +propaled +propales +propanol +propense +properly +property +prophage +prophase +prophecy +prophesy +prophets +prophyll +propined +propines +propolis +proponed +propones +proposal +proposed +proposer +proposes +propound +proppant +propping +propylic +propylon +prorogue +prosaism +prosaist +proseman +prosemen +prosiest +prosodic +prosopon +prospect +Prospekt +Prospero +prospers +prostate +prostyle +protases +protasis +protatic +protease +protects +prot�g�e +prot�g�s +proteids +proteins +protends +proteose +protests +prothyle +Protista +protists +protocol +protonic +protozoa +protract +protrude +proudest +proudful +Proudhon +proudish +provable +provably +provands +provedor +Provence +provends +proverbs +proviant +provided +provider +provides +providor +province +provined +provines +proviral +provirus +provisor +provisos +provoked +provoker +provokes +provosts +prowlers +prowling +proximal +prudence +Prud'hon +pruinose +prunella +prunelle +prunello +prunings +prurient +prurigos +pruritic +pruritus +prusiked +Prussian +Prussify +pryingly +prytanea +prythees +psalmist +psalmody +Psalters +psaltery +psammite +psellism +psephism +psephite +pseudery +pseudish +pshawing +psilocin +psilosis +psilotic +Psilotum +psionics +Psocidae +psoralen +psychics +psyching +psychism +psychist +psychoid +psyllids +ptarmics +pteropod +pterygia +pterylae +ptilosis +ptomaine +ptyalise +ptyalism +ptyalize +pubertal +publican +publicly +Puccinia +puccoons +pucelage +puckered +puckfist +puddered +puddings +puddingy +puddlers +puddlier +puddling +puddocks +pudendal +pudendum +pudgiest +pudibund +pudicity +pudsiest +puffball +puffiest +puffings +puggaree +puggiest +puggings +puggling +puggrees +pugilism +pugilist +puissant +pulicide +pulingly +Pulitzer +Pullmans +pullover +pulmones +pulmonic +Pulmotor +pulpiest +pulpited +pulpiter +pulpitry +pulpitum +pulpmill +pulpwood +pulsated +pulsates +pulsator +pulsejet +pulsidge +pulsific +pulsojet +pultoons +pulvilio +pulvilli +pulvinar +pulvinus +pumicate +pumicing +pumpkins +punaluan +puncheon +punchers +punching +punctate +punctual +punctule +puncture +punditry +pundonor +pungence +pungency +puniness +punished +punisher +punishes +punition +punitive +punitory +Punjabis +punnings +punsters +puntsman +puntsmen +puparial +puparium +pupating +pupation +pupilage +pupilary +pupillar +puppetry +puppodum +puppydom +puppying +puppyish +puppyism +pupunhas +purblind +purchase +purdahed +pureeing +pureness +purfling +purgings +purified +purifier +purifies +puristic +puritans +purlicue +purlieus +purlines +purlings +purloins +purpling +purplish +purports +purposed +purposes +purpures +purpuric +purpurin +purrings +purseful +pursiest +purslain +purslane +pursuals +pursuant +pursuers +pursuing +pursuits +purtiest +purulent +purveyed +purveyor +purviews +Puseyism +Puseyite +pushiest +pushrods +Pushtuns +pustular +pustules +putamina +putative +putcheon +putchers +putchock +putchuks +putlocks +putoises +putridly +putsches +puttered +putterer +puttiers +puttings +puttocks +puttying +puzzlers +puzzling +pycnosis +pyebalds +pyelitic +pyelitis +pyengadu +pygidial +pygidium +pygmaean +pyjama'd +pyjamaed +pyogenic +pyramids +Pyrenean +Pyrenees +pyrenoid +pyrexial +pyridine +pyriform +pyritise +pyritize +pyritous +pyrogens +pyrolyse +pyrolyze +Pyrosoma +pyrosome +pyrostat +pyroxene +pyroxyle +pyrrhics +pyrrhous +pyrroles +pyruvate +pythiums +pythonic +pyxidium diff --git a/com/agnibho/code/anagram/dictionary/P9.txt b/com/agnibho/code/anagram/dictionary/P9.txt new file mode 100644 index 0000000..d764335 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/P9.txt @@ -0,0 +1,2455 @@ +pabouches +pacemaker +pachalics +Pachelbel +pachyderm +pacifical +pacifiers +pacifists +pacifying +packagers +packaging +packeting +packframe +packhorse +packsacks +packsheet +packstaff +pactional +pactioned +paddlings +pademelon +Paderborn +padereros +padishahs +padlocked +paduasoys +padymelon +paederast +paedeutic +paediatry +paedology +paganised +paganises +paganized +paganizes +pageantry +paginated +paginates +pagurians +paideutic +paillasse +paillette +painfully +paintable +paintball +painterly +paintiest +paintings +paintress +paintures +paintwork +paitricks +Pakistani +palaestra +palafitte +palaminos +palampore +palankeen +palanquin +palatable +palatably +palatines +palavered +palaverer +palebucks +palefaces +Palembang +palempore +Palestine +palestras +palfreyed +palilalia +palillogy +palinodes +Palinurus +palisaded +palisades +Palladian +palladium +palladous +palletise +palletize +palliards +palliasse +palliated +palliates +pallidity +palliness +palmarian +palmately +palmation +palmettes +palmettos +palmhouse +palmipede +palmipeds +palmistry +palmitate +palominos +palpating +palpation +palpebral +palpitant +palpitate +palsgrave +palstaffs +palstaves +palterers +paltering +paltriest +paludinal +Paludrine +palustral +pamperers +pampering +pamphlets +panatelas +panatella +pancaking +pancettas +panchaxes +panchayat +pancheons +panchions +pancosmic +pancratic +pandation +pandemian +pandemias +pandemics +panderess +pandering +panderism +panderous +pandurate +panegoism +panegyric +panelists +panelling +panellist +panettone +panettoni +pangolins +panhandle +panicking +Pankhurst +panlogism +panmictic +pannicles +panniered +pannikins +panoistic +panoplied +panoplies +panoramas +panoramic +pansexual +pansophic +panspermy +pantables +pantagamy +pantaleon +pantalets +pantalons +Pantaloon +pantheism +pantheist +panthenol +pantheons +pantihose +pantiling +pantingly +pantoffle +pantofles +pantomime +pantoufle +pantryman +pantrymen +pantsuits +papalised +papalises +papalists +papalized +papalizes +paparazzi +paparazzo +paperback +paperboys +papergirl +paperings +paperless +paperware +paperwork +papeterie +papillary +papillate +papilloma +papillons +papillose +papillote +papillous +papillule +papishers +pappadoms +pappooses +papyruses +parabases +parabasis +parabling +parabolas +paraboles +parabolic +parabrake +parachute +paraclete +paracusis +paradigms +paradisal +paradises +paradisic +paradores +paradoxal +paradoxer +paradoxes +paradrops +paraffine +paraffiny +paraffles +parafoils +paragogic +paragogue +paragoned +paragrams +paragraph +parakeets +paralalia +paralegal +paralexia +parallels +paralogia +paralysed +paralyser +paralyses +paralysis +paralytic +paralyzed +paralyzer +paralyzes +paramatta +paramecia +paramedic +parameses +parameter +paramorph +paramount +paramours +paranetes +paranoiac +paranoics +paranoids +paranymph +parapente +parapeted +paraphing +parapodia +paraquito +pararhyme +parasangs +parasceve +parasites +parasitic +parataxis +parathion +paratonic +paravanes +parazoans +parboiled +parbreaks +parbuckle +parcelled +parcenary +parceners +parchedly +Parcheesi +parchment +parcloses +pardalote +pardoners +pardoning +parecious +paregoric +parenesis +parentage +parenting +parergons +parfleche +pargasite +pargeters +pargeting +parhelion +parhypate +parietals +parishens +Parisians +Parkinson +parklands +parkwards +parlances +parlaying +parleying +parleyvoo +Parnass�s +Parnassus +parochial +parochine +parochins +parodical +parodists +parodying +paroemiac +paroemial +paroemias +paroicous +paroquets +parotises +parotitis +paroxysms +parpoints +parqueted +parquetry +parrakeet +parrhesia +parricide +parrocked +parroquet +parroters +parroting +Parseeism +parsimony +parsonage +parsonish +partakers +partaking +parterres +Parthenon +Parthenos +Parthians +partially +particles +partisans +partition +partitive +partitura +partizans +partnered +partridge +partygoer +parulises +pasearing +pashaliks +paspalums +pasquiler +passadoes +passaging +passament +passement +passenger +passepied +passerine +passional +passioned +passivate +passively +passivism +passivist +passivity +passments +Passovers +passports +passwords +pastelist +Pasternak +pasticcio +pastiches +pastilles +pastiness +pastorale +pastorals +pastorate +pastramis +pasturage +pasturing +Patagonia +patchable +patchiest +patchings +patchouli +patchouly +patchwork +patellate +patentees +patenting +patentors +patercove +patereros +paternity +pathogens +pathogeny +pathology +patiences +patiently +patinated +patriarch +patriated +patriates +patrician +patricide +patricoes +patriliny +patrimony +patriotic +patristic +Patroclus +patrolled +patroller +patrolman +patrolmen +patrology +patronage +patroness +patronise +patronize +patronnes +patterers +pattering +patterned +pauldrons +Paulician +Paulinian +Paulinism +Paulinist +paulownia +paunchier +paunching +pauperess +pauperise +pauperism +pauperize +pauseless +pausingly +Pavarotti +pavements +pavilions +Pavlovian +pavonazzo +pawkiness +pawnshops +paymaster +paysagist +paysheets +peaceable +peaceably +peaceless +peaceniks +peacetime +peachiest +peacocked +pearliest +pearlings +pearlised +pearlitic +pearlized +pearmains +peasantry +peataries +peateries +pebbliest +pebblings +peccantly +peccaries +Peckinpah +Pecksniff +pectinate +pectineal +pectising +pectizing +pectolite +pectorals +peculated +peculates +peculator +peculiars +peculiums +pecuniary +pecunious +pedagogic +pedagogue +pedaliers +pedallers +pedalling +pedantise +pedantism +pedantize +pedatifid +pederasts +pederasty +pedereros +pedestals +pediatric +pedicular +Pediculus +pedicured +pedicures +pedigreed +pedigrees +pediments +Pedipalpi +pedipalps +pedlaries +pedometer +pedreroes +peduncles +peengeing +peeresses +peesweeps +peetweets +peevishly +pegasuses +pegboards +pegmatite +peignoirs +peirastic +peishwahs +pejorated +pejorates +Pekingese +Pelasgian +pelerines +Pellagrin +Pelletier +pelletify +pelleting +pelletise +pelletize +pellicles +pellitory +pelmanism +pelorised +pelorized +peloruses +peltering +peltingly +pelviform +pembrokes +pemmicans +pemphigus +penalised +penalises +penalized +penalizes +penalties +penancing +penchants +pencilled +penciller +Pendennis +pendently +pendicler +pendicles +pendragon +pendulate +penduline +pendulous +pendulums +peneplain +peneplane +penetrant +penetrate +penguinry +penholder +penillion +peninsula +penistone +penitence +penitency +penitents +penknives +penlights +pennalism +pennatula +penniform +penniless +penninite +pennoncel +penn'orth +pennywort +penoncels +penpusher +Penshurst +pensility +pensioned +pensioner +pensively +penstemon +penstocks +pentacles +pentagons +pentagram +pentalogy +pentalpha +pentamery +pentangle +pentapody +pentarchs +pentarchy +Pentecost +penthouse +penticing +pentising +pentosane +Pentothal +pentoxide +pentroofs +pentylene +penuchles +penultima +penumbrae +penumbral +penumbras +penurious +peperomia +peperonis +pepperers +peppering +pepperoni +peppiness +pepsinate +pepticity +peptidase +peptising +peptizing +peptonise +peptonize +peraeopod +percaline +perceived +perceiver +perceives +percental +perchance +percheron +perciform +percolate +percolins +percussed +percusses +percussor +perdition +perduring +peregrine +pereiopod +perennate +perennial +perennity +perfectas +perfected +perfecter +perfectly +perfector +perfectos +perfervid +perfervor +perfidies +perforans +perforant +perforate +performed +performer +perfumers +perfumery +perfuming +perfusate +perfusing +perfusion +perfusive +Pergolesi +pergunnah +periaguas +periaktos +perianths +periblast +periblems +periboloi +peribolos +peribolus +pericarps +periclase +Periclean +pericline +pericones +pericopes +pericycle +periderms +peridinia +peridiums +peridotes +peridotic +peridrome +perigones +P�rigueux +perihelia +perikarya +perilling +perilymph +perimeter +perimetry +perimorph +perinatal +perineums +periodate +periotics +peripatus +peripetia +periphery +periplast +periproct +periptery +perisarcs +periscian +periscope +perishers +perishing +perisperm +peristome +peristyle +peritonea +peritrich +perjurers +perjuries +perjuring +perjurous +perkiness +permalloy +permanent +permeable +permeably +permeance +permeated +permeates +permitted +permitter +permutate +permuting +Peronista +Peronists +perorated +perorates +perovskia +peroxided +peroxides +perpetual +Perpignan +perplexed +perplexes +perradial +perradius +persecute +persevere +Persicise +Persicize +persicots +persienne +persimmon +persisted +personage +personals +personate +personify +personise +personize +personnel +perspired +perspires +persuaded +persuader +persuades +pertained +perthites +perthitic +pertinent +perturbed +perturber +pertusate +pertusion +pertussal +pertussis +Peruvians +pervading +pervasion +pervasive +perverted +perverter +perviated +perviates +pervicacy +peskiness +pessaries +pessimism +pessimist +pesterers +pestering +pesterous +pesthouse +pesticide +pestilent +pestology +petasuses +petaurine +petaurist +petechiae +petechial +petersham +pethidine +p�tillant +petiolate +petiolule +petitions +petraries +petrified +petrifies +Petrinism +Petrograd +petrogram +petrolage +petroleum +p�troleur +petrolled +petrology +petronels +Petronius +Petrosian +Petruchio +Petrushka +petticoat +pettifogs +pettiness +pettishly +pettitoes +petulance +petulancy +pewterers +peyotists +Pforzheim +phacelias +phacoidal +phacolite +phacolith +Phaeacian +phaenogam +phagedena +phagocyte +phalangal +phalanger +phalanges +phalangid +phalanxes +phalarope +phalluses +Phanariot +phansigar +phantasma +phantasms +pharaonic +pharisaic +Pharisees +pharyngal +pharynges +pharynxes +phaseless +phaseolin +Phasmidae +pheasants +phellogen +phelonion +phenacite +phenakism +phenakite +phenetics +phengites +Phenician +phenogams +phenolate +phenology +phenomena +phenotype +pheromone +phialling +philabegs +philamots +philander +philately +philibegs +philippic +Philister +phillabeg +phillibeg +Phillyrea +philogyny +philology +philomath +Philomela +philopena +phinnocks +phlebitis +phlegmier +phlyctena +Phoenicia +phoenixes +phonating +phonation +phonatory +phonecall +phonecard +phonemics +phonetics +phonetise +phonetism +phonetist +phonetize +phoneying +phoniness +phonmeter +phonogram +phonolite +phonology +phonopore +phonotype +phonotypy +phormiums +phosphate +phosphene +phosphide +phosphine +phosphite +photocell +photocopy +photogene +photogens +photogram +photolyse +photonics +photophil +photopsia +Photostat +phototype +phototypy +phraseman +phrasemen +phrasings +phratries +phrenesis +phrenetic +phrenitic +phrenitis +phthalate +phthalein +phycocyan +phycology +phylarchs +phylarchy +phyllodes +phyllomes +phyllopod +phylogeny +physalias +physician +physicism +physicist +physicked +physiques +phytogeny +phytology +phytotomy +phytotron +piacevole +pianettes +pianistic +pianolist +piassabas +piassavas +picarians +picaroons +picayunes +piccadell +piccadill +pichurims +pickaback +pickapack +pickbacks +pickeered +pickeerer +pickerels +Pickering +picketers +picketing +picklocks +pickmawed +picnicked +picnicker +picocurie +picqueted +pictarnie +pictogram +pictorial +picturing +pieceless +piecemeal +pieceners +piecening +piecrusts +piedishes +piepowder +pieridine +Pierrette +pietistic +pifferari +pifferaro +pigeoning +piggeries +piggishly +piggyback +pigheaded +pigmental +pigmented +pignerate +pignorate +pigsconce +pigswills +pigwashes +pikestaff +pilasters +pilchards +pileworts +pilferage +pilferers +pilfering +pilgarlic +pilgrimer +pillagers +pillaging +pillaring +pillarist +pillheads +pillicock +pillioned +pilloried +pillories +pillorise +pillorize +pillowing +pillworts +pilotless +pimientos +pimpernel +pimpliest +pinacoids +pinafored +pinafores +pinakoids +pinasters +pincering +pinchbeck +pinchcock +pinchfist +pinchguts +pinchings +pindarees +Pindarise +Pindarism +Pindarist +Pindarize +pineapple +pinfishes +pinfolded +pinhooker +pinioning +Pinkerton +pinkiness +pinkroots +pinnacled +pinnacles +pinnately +pinnipede +pinnipeds +pinnulate +Pinocchio +pinochles +pinpoints +pintables +pintailed +pioneered +piousness +pipelines +piperonal +pipestone +pipetting +pipeworks +pipeworts +pipsqueak +piquantly +piqueting +pirarucus +piratical +piripiris +pirouette +piscaries +piscators +piscatory +piscatrix +pisciform +pisiforms +pisolites +pisolitic +pissheads +pistachio +pistareen +pistoleer +pistolets +pistolled +pitchfork +pitchiest +pitchings +pitchpine +pitchpipe +piteously +pithballs +pithecoid +pithiness +pitifully +pittances +pittering +pituitary +pituitrin +pityingly +pivotally +pixilated +pizzaiola +pizzerias +pizzicato +placarded +placating +placation +placatory +placeboes +placeless +placement +placentae +placental +placentas +placidity +placitory +plackless +placoderm +plainness +plainsman +plainsmen +plainsong +plaintful +plaintiff +plaintive +plainwork +plaitings +planarian +planation +planchets +planching +planeload +planetary +planetoid +plangency +planished +planisher +planishes +Planorbis +plantable +plantains +plantings +plantless +plantlets +plantling +plantsman +plantsmen +plantules +planuloid +planxties +plaquette +plashiest +plashings +plasmatic +plasmodia +plastered +plasterer +plastique +plastisol +plastrons +platannas +platbands +plateasms +plateaued +platefuls +platelets +platelike +platemark +platforms +platinise +platinize +platinoid +platinous +platitude +Platonise +Platonism +Platonist +Platonize +plattings +platysmas +plausible +plausibly +plaustral +playbacks +playbills +playbooks +playbuses +playfully +playgirls +playgroup +playhouse +playmates +playrooms +playsuits +plaything +playtimes +pleaching +pleadable +pleadings +pleasance +pleaseman +Pleasence +pleasings +pleasurer +pleasures +plebbiest +plebeians +plebified +plebifies +plectrons +plectrums +pledgeors +Pleiocene +pleiomery +plenarily +plenilune +plenipoes +plenished +plenishes +plenitude +plenteous +plentiful +pleonasms +pleonaste +pleonasts +pleonexia +plethoras +plethoric +pleuching +pleughing +pleuritic +pleuritis +plexiform +Plexiglas +plicately +plicating +plication +plicature +plighters +plightful +plighting +plimsoles +plimsolls +pliosaurs +ploddings +plottered +ploughboy +ploughers +ploughing +ploughman +ploughmen +ploutered +Plowright +plowshare +plowtered +pluckiest +pluggings +plugholes +plumbagos +plumbates +plumbeous +plumbites +plumbless +plumdamas +plumeless +plumelets +plummeted +plummiest +plumpened +plumpness +plumulate +plumulose +plundered +plunderer +plungings +pluralise +pluralism +pluralist +plurality +pluralize +pluripara +plushiest +plushness +plussages +pluteuses +plutocrat +plutology +Plutonian +Plutonism +Plutonist +plutonium +plutonomy +pneumatic +pneumonia +pneumonic +poachiest +poachings +po'chaise +pochaying +pochettes +pocketful +pocketing +pockmarks +podagrous +podginess +poenology +poetaster +poetastry +poetesses +poeticise +poeticism +poeticize +poeticule +poetising +poetizing +poignancy +poinciana +poindings +pointedly +pointill� +pointings +pointless +pointsman +pointsmen +poisoners +poisoning +poisonous +pokeberry +pokeweeds +polarised +polariser +polarises +polarized +polarizer +polarizes +poldering +polemarch +polemical +polemised +polemises +polemists +polemized +polemizes +polestars +polianite +policeman +policemen +polishers +polishing +Politburo +politesse +political +politicks +politicly +politicos +politique +pollarded +pollening +pollinate +pollinium +polliwigs +polliwogs +pollsters +pollusion +pollutant +polluters +polluting +pollution +pollutive +Pollyanna +pollywigs +pollywogs +polonaise +polonised +polonises +polonisms +polonized +polonizes +poltroons +polverine +polyamide +polyandry +polyarchy +polyaxial +polyaxons +polybasic +polyconic +polyester +polygalas +Polygamia +polygamic +polygenes +polygenic +polyglots +polyglott +polygonal +polygonum +polygraph +Polygynia +polyhedra +polylemma +polymasty +polymaths +polymathy +polymeric +polymorph +Polynesia +polyomino +polyonyms +polyonymy +polyphagy +polyphase +polyphone +polyphons +polyphony +polypides +polypidom +polypites +polyploid +Polyporus +polyposis +polyptych +polysemes +polysomes +polystyle +polythene +polytonal +polytypic +polyvinyl +polywater +polyzoans +polyzoary +polyzonal +polyzooid +polyzoons +pomaceous +pomanders +Pomerania +pommelled +pomoerium +pompadour +Pompeiian +pompeying +pompholyx +pomposity +pompously +ponderate +ponderers +pondering +ponderous +pondokkie +pondweeds +poniarded +pontianac +pontianak +pontifice +pontified +pontifies +pontlevis +pontoneer +pontonier +pontoning +pontooned +pontooner +Pontypool +ponytails +poolrooms +poorhouse +poorwills +Pooterish +Pooterism +popelings +popinjays +popjoying +popliteal +poppadums +Popperian +poppering +poppycock +Popsicles +popularly +populated +populates +populists +porbeagle +porcelain +porcupine +poriferal +poriferan +porklings +porogamic +poromeric +poroscope +poroscopy +porpesses +porphyria +porphyrin +porphyrio +porpoised +porpoises +porporate +porrected +porrenger +porridges +porringer +portables +Portadown +portagues +Portaloos +portatile +portative +portended +porterage +porteress +portesses +portfolio +portholes +porthouse +porticoed +porticoes +porti�res +portigues +portioned +portioner +portliest +portolani +portolano +portolans +portouses +portraits +portrayal +portrayed +portrayer +portreeve +portulaca +porwiggle +posigrade +positions +positives +positrons +possessed +possesses +possessor +posseting +possibles +postbuses +postcards +Postcodes +postdated +postdates +posterior +posterity +postfaces +postfixed +postfixes +posthouse +postiches +posticous +postilion +postilled +postiller +postludes +postmarks +postponed +postponer +postpones +postposed +postposes +postrider +postulant +postulate +posturers +posturing +posturist +potassium +potations +potencies +potentate +potential +potentise +potentize +pothecary +pothering +potholers +potholing +pothouses +potlaches +potometer +potshards +potsherds +potterers +potteries +pottering +pottiness +pottinger +pouchfuls +pouchiest +Poujadism +Poujadist +poulaines +pouldrons +poulterer +poultfeet +poultfoot +poulticed +poultices +poundages +pourboire +pourpoint +poussette +poutingly +powdering +powellise +powellite +powellize +powerboat +powerless +powtering +powwowing +pozzolana +practical +practiced +practices +practicum +practised +practiser +practises +practolol +praecoces +praedials +praefects +praenomen +praesidia +pragmatic +praiseach +praiseful +praisings +Prakritic +pranayama +prancings +prankings +prankling +pranksome +prankster +pratfalls +pratingly +pratiques +prattlers +prattling +pravities +prayerful +prayingly +preachers +preachier +preachify +preachily +preaching +preambled +preambles +prebendal +prebiotic +precative +precatory +precedent +preceding +precentor +preceptor +precessed +precesses +pr�cieuse +precincts +precipice +precisely +precisian +pr�cising +precision +precisive +precluded +precludes +precocial +precocity +preconise +preconize +precooked +precooled +precursor +predacity +predating +predation +predative +predators +predatory +predefine +predellas +predesign +predevote +predicant +predicate +predicted +predicter +predictor +predigest +predikant +predilect +predoomed +prefacial +prefacing +prefading +prefatory +preferred +preferrer +prefigure +prefixing +prefixion +preflight +preformed +pregnable +pregnance +pregnancy +prehallux +preheated +prehended +prehensor +prejudged +prejudges +prejudice +prelacies +prelatess +prelatial +prelation +prelatise +prelatish +prelatism +prelatist +prelatize +prelature +prelected +prelector +preludial +preluding +prelusion +prelusive +prelusory +premature +premedics +premiered +premieres +Preminger +premising +premisses +premixing +premolars +premonish +premosaic +premotion +premoving +prenasals +prenotify +prenotion +prentices +prenubile +preoccupy +preocular +preoption +preorally +preordain +preorders +prepacked +preparers +preparing +prepaying +prepollex +preponing +preposing +prepostor +prepotent +preputial +prerecord +prerosion +presagers +presaging +presbyope +presbyopy +presbyter +presbytes +presbytic +preschool +prescient +prescinds +prescious +prescribe +prescript +prescutum +preselect +presences +presenile +presented +presentee +presenter +presently +preserved +preserver +preserves +president +presidial +presiding +presidios +presidium +pressfats +pressfuls +pressings +pressions +pressmark +pressured +pressures +prestiges +Prestwich +Prestwick +presumers +presuming +pretences +pretended +pretender +pretenses +preterist +preterite +preterits +pretermit +pretested +pretexted +Pretorian +Pretorius +prettiest +prettyish +prettyism +prevailed +prevalent +prevening +prevented +preventer +preverbal +previewed +prevising +prevision +prewarmed +prewarned +prewashed +prewashes +priceless +priciness +prickings +pricklier +prickling +prickwood +prideless +priestess +priesting +Priestley +priggings +primacies +primaeval +primality +primaries +primarily +primatial +Primavera +primeness +primipara +primitiae +primitial +primitias +primitive +primrosed +primroses +primuline +princedom +princekin +princelet +princesse +Princeton +principal +principia +principle +princocks +princoxes +printable +printhead +printings +printless +priorates +priorship +Priscilla +prismatic +prismoids +prisoners +prisoning +prisonous +prissiest +Pritchett +privacies +privateer +privately +privation +privatise +privative +privatize +privilege +privities +proactive +probables +probating +probation +probative +probatory +probeable +proboscis +procacity +procaryon +procaryot +procedure +proceeded +proceeder +procerity +processed +processes +processor +procident +proclaims +proclisis +proclitic +proconsul +Procopius +procreant +procreate +proctitis +procuracy +procurers +procuress +procureur +procuring +prodigals +prodigies +proditors +proditory +prodnosed +prodnoses +prodromal +prodromes +prodromic +prodromus +producers +producing +proembryo +proenzyme +profanely +profaners +profaning +profanity +professed +professes +professor +proffered +profferer +profilers +profiling +profilist +profiteer +profiters +profiting +profluent +profounds +profusely +profusion +progenies +progestin +prognoses +prognosis +programme +prohibits +projected +projector +prokaryon +prokaryot +Prokofiev +prolactin +prolamine +prolapsed +prolapses +prolapsus +prolately +prolation +prolative +prolepses +prolepsis +proleptic +proletary +prolicide +prolixity +prologise +prologize +prologued +prologues +prolonged +prolonger +prolonges +prolusion +prolusory +promachos +promenade +prominent +promisees +promisers +promising +promisors +promissor +promoters +promoting +promotion +promotive +promotors +prompters +promptest +prompting +prompture +promulged +promulges +promuscis +pronating +pronation +pronators +proneness +prongbuck +pronghorn +pronounce +Prontosil +pronuclei +pronuncio +prooemion +prooemium +proofings +proofless +propagate +propagule +propaling +propelled +propeller +properdin +prophages +prophases +prophetic +prophylls +propining +propodeon +propodeum +proponent +proponing +proposals +proposers +proposing +propounds +proppants +propriety +proptosis +propulsor +propylaea +propylene +propylite +proration +prorector +prorogate +prorogued +prorogues +prosaical +prosaists +prosateur +proscenia +proscribe +proscript +prosector +prosecute +proselyte +proseucha +proseuche +prosimian +prosiness +prosodial +prosodian +prosodist +prospects +prospered +prostates +prostatic +prostrate +prostyles +protamine +protandry +protanope +proteases +protected +protector +prot�g�es +proteinic +protended +proteoses +protested +protester +protestor +proteuses +prothalli +protheses +prothesis +prothetic +prothorax +protistic +protoavis +protocols +protogine +protogyny +protonema +protostar +prototype +protoxide +protozoal +protozoan +protozoic +protozoon +protracts +protruded +protrudes +proudness +Proustian +proustite +proveable +proveably +provedore +provedors +Proven�al +provender +proverbed +proviants +provident +providers +providing +providors +provinces +provining +provision +provisoes +provisors +provisory +provocant +provokers +provoking +provolone +provostry +prowessed +prowlings +proxemics +proximate +proximity +prozymite +prudently +pruderies +prudhomme +prudishly +prunellas +prunelles +prunellos +prurience +pruriency +prusiking +Prussians +prussiate +prytaneum +psalmists +psalmodic +psalteria +psaltress +psammites +psammitic +psellisms +psephisms +psephites +psephitic +pseudaxes +pseudaxis +pseudonym +pseudopod +Psittacus +psoralens +psoriasis +psoriatic +psychical +psychists +psychogas +psychoses +psychosis +psychotic +Psyllidae +ptarmigan +Pteridium +Pteropoda +pteropods +pterosaur +pterygial +pterygium +pterygoid +Ptolemaic +ptomaines +ptyalised +ptyalises +ptyalized +ptyalizes +pubescent +publicans +publicise +publicist +publicity +publicize +published +publisher +publishes +puckering +puckfists +puddening +puddering +puddliest +puddlings +pudendous +pudginess +puerilism +puerility +puerperal +puffballs +pufferies +puffiness +puffingly +puftaloon +puggarees +puggeries +pugilists +pugnacity +puissance +Pulicidae +pulicides +pulldevil +pullovers +pullulate +pulmonary +Pulmonata +pulmonate +pulmonics +Pulmotors +pulpboard +pulpified +pulpifies +pulpiness +pulpiteer +pulpiters +pulpitums +pulpmills +pulpstone +pulpwoods +pulsatile +pulsating +pulsation +pulsative +pulsators +pulsatory +pulsejets +pulseless +pulsojets +pulverine +pulverise +pulverize +pulverous +pulvilios +pulvillar +pulvillus +pulvinate +pulvinule +pumicated +pumicates +pumiceous +pummelled +puncheons +punctated +punctator +punctilio +punctuate +punctules +punctured +puncturer +punctures +pungently +punishers +punishing +punkiness +punningly +pupfishes +pupillage +pupillary +pupillate +pupilship +puppeteer +puppodums +puppyhood +purchased +purchaser +purchases +purdonium +purflings +purgation +purgative +purgatory +purifiers +purifying +puritanic +purlicued +purlicues +purloined +purloiner +purported +purposely +purposing +purposive +purpureal +purringly +pursefuls +pursiness +purslains +purslanes +pursuable +pursuance +pursuings +purulence +purulency +purveying +purveyors +pushfully +pushiness +pushingly +pussyfoot +pustulant +pustulate +pustulous +putcheons +putchocks +putrefied +putrefies +putridity +putschist +putterers +puttering +puzzledom +puzzlings +puzzolana +pycnidium +pyelogram +pyengadus +pygidiums +Pygmalion +pygostyle +pyknosome +pyloruses +Pyongyang +pyorrhoea +pyracanth +Pyralidae +pyramidal +pyramides +pyramidic +pyramidon +Pyrenaean +pyreneite +pyrenoids +pyrethrin +pyrethrum +pyridoxin +pyritical +pyritised +pyritises +pyritized +pyritizes +pyroclast +pyrogenic +pyrolater +pyrolatry +pyrolysed +pyrolyses +pyrolysis +pyrolytic +pyrolyzed +pyrolyzes +pyromancy +pyromania +pyrometer +pyrometry +pyrophone +pyropuses +pyroscope +pyrosomes +pyrostats +pyroxenes +pyroxenic +pyroxylic +pyroxylin +Pyrrhonic +pyruvates +pythoness diff --git a/com/agnibho/code/anagram/dictionary/Q1.txt b/com/agnibho/code/anagram/dictionary/Q1.txt new file mode 100644 index 0000000..bca70f3 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q1.txt @@ -0,0 +1 @@ +q diff --git a/com/agnibho/code/anagram/dictionary/Q10.txt b/com/agnibho/code/anagram/dictionary/Q10.txt new file mode 100644 index 0000000..2b6fe1a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q10.txt @@ -0,0 +1,129 @@ +quadrangle +quadrantal +quadrantes +Quadrantid +quadrating +quadratrix +quadratura +quadrature +quadrellas +quadrennia +quadriceps +quadricone +quadriform +quadrilled +quadriller +quadrilles +quadripole +quadrireme +quadrisect +quadrivial +quadrivium +Quadrumana +quadrumane +quadrumans +quadrumvir +quadrupeds +quadrupled +quadruples +quadruplet +quadruplex +quadrupole +quaesitums +quaestuary +quagginess +quagmiring +quaintness +qualifiers +qualifying +qualmishly +quandaries +quantified +quantifier +quantifies +quantising +quantities +quantitive +quantizing +quarantine +quarendens +quarenders +quarrelers +quarreling +quarrelled +quarreller +quarrender +quarriable +quartation +quarterage +quartering +quarteroon +quartersaw +quartettes +quartzitic +Quatermain +Quatermass +quaternary +quaternate +quaternion +quaternity +quatorzain +quatrefoil +quaverings +queasiness +Quebeckers +quebrachos +queencraft +queenhoods +queenliest +queenships +Queensland +Queenstown +quenchable +quenchings +quenchless +quercitron +quernstone +quersprung +queryingly +quesadilla +questingly +questioned +questionee +questioner +quickbeams +quickening +quicksands +quicksteps +quickthorn +quiddanies +quiddities +quiescence +quiescency +quietening +quietistic +quillworts +quinacrine +Quinapalus +quinaquina +quincunxes +quinquinas +quintettes +Quintilian +quintroons +quintupled +quintuples +quintuplet +Quirinalia +quirkiness +quittances +quiverfuls +quizzified +quizzifies +quizziness +quodlibets +quotations +quotatious +quotatives +quotidians +quotitions diff --git a/com/agnibho/code/anagram/dictionary/Q11.txt b/com/agnibho/code/anagram/dictionary/Q11.txt new file mode 100644 index 0000000..0fa43f7 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q11.txt @@ -0,0 +1,81 @@ +quacksalver +quadrangles +Quadrantids +quadraphony +quadratical +quadratures +quadratuses +quadrennial +quadrennium +quadricones +quadriennia +quadrillers +quadrilling +quadrillion +quadripoles +quadriremes +quadrisects +quadrophony +quadrumanes +quadrumvirs +quadrupedal +quadruplets +quadrupling +quadrupoles +quaestorial +qualifiable +qualifiedly +qualifyings +qualitative +quantifiers +quantifying +quantometer +quarantined +quarantines +quarrelings +quarrellers +quarrelling +quarrelsome +quarrenders +quarrington +quartations +quarterages +quarterings +quarterlies +quarteroons +quartersawn +quaternions +quatorzains +quatrefoils +quaveringly +queenliness +Queensberry +quercitrons +querimonies +quernstones +quersprungs +querulously +quesadillas +questionary +questioners +questioning +questionist +quibblingly +quickenings +quicksilver +quickthorns +quiescently +quietenings +quinaquinas +quincuncial +quinquennia +quinquereme +quintillion +quintuplets +quintupling +quiveringly +quizzically +quizzifying +quodlibetic +quotability +quoteworthy diff --git a/com/agnibho/code/anagram/dictionary/Q12.txt b/com/agnibho/code/anagram/dictionary/Q12.txt new file mode 100644 index 0000000..1b62ca1 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q12.txt @@ -0,0 +1,63 @@ +quacksalvers +Quadragesima +quadrangular +quadraphonic +quadratrixes +quadrennials +quadricepses +quadriennial +quadriennium +quadrillions +quadrinomial +quadriplegia +quadriplegic +quadrisected +quadrivalent +quadrophonic +quadrumanous +quadruplexed +quadruplexes +quaestorship +quaestuaries +qualificator +qualmishness +quantifiable +quantisation +quantitative +quantitively +quantivalent +quantization +quantometers +quaquaversal +quarantining +quarrellings +quarringtons +quarrymaster +quarterlight +quartersawed +quarterstaff +quaternaries +quaternities +quattrocento +Queenslander +quelquechose +quenchlessly +querimonious +questionable +questionably +questionings +questionists +questionless +Quetzalcoatl +quicksilvers +quicksilvery +quidditative +quinquenniad +quinquennial +quinquennium +quinqueremes +quintessence +quintillions +quixotically +quizzicality +quotableness diff --git a/com/agnibho/code/anagram/dictionary/Q13.txt b/com/agnibho/code/anagram/dictionary/Q13.txt new file mode 100644 index 0000000..5ab4688 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q13.txt @@ -0,0 +1,59 @@ +quadragesimal +quadraphonics +quadrennially +quadricipital +quadriennials +quadrifarious +quadrifoliate +quadrigeminal +quadrilateral +quadrilingual +quadriliteral +quadrillionth +quadrilocular +quadringenary +quadripartite +quadrisecting +quadrisection +quadrivalence +quadrophonics +quadrumvirate +quadruplexing +quadruplicate +quadruplicity +quaestorships +qualification +qualificative +qualificators +qualificatory +qualitatively +quantisations +quantivalence +quantizations +quarrelsomely +quarrymasters +quarterlights +quartermaster +quarterstaves +quartodeciman +quartziferous +quaternionist +quatrefeuille +Queenslanders +querulousness +questionaries +questioningly +questionnaire +quicksilvered +quincentenary +quincuncially +quingentenary +Quinquagesima +quinquenniads +quinquennials +quinquevalent +quinquivalent +quintessences +quintillionth +quintuplicate +quodlibetical diff --git a/com/agnibho/code/anagram/dictionary/Q14.txt b/com/agnibho/code/anagram/dictionary/Q14.txt new file mode 100644 index 0000000..b816709 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q14.txt @@ -0,0 +1,41 @@ +quadragenarian +quadrangularly +quadrigeminate +quadrigeminous +quadrilaterals +quadrillionths +quadrisections +quadrisyllabic +quadrisyllable +quadrivalences +quadrumvirates +quadruplicated +quadruplicates +qualifications +quantification +quantitatively +quantivalences +quaquaversally +quartermasters +quartodecimans +quaternionists +quatrefeuilles +quattrocentism +quattrocentist +querimoniously +questionnaires +quicksilvering +quicksilverish +quincentennial +quinquagesimal +quinquecostate +quinquefarious +quinquefoliate +quinquennially +quinquevalence +quintessential +quintillionths +quintuplicated +quintuplicates +quizzification +quodlibetarian diff --git a/com/agnibho/code/anagram/dictionary/Q15.txt b/com/agnibho/code/anagram/dictionary/Q15.txt new file mode 100644 index 0000000..5bd5f52 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q15.txt @@ -0,0 +1,20 @@ +quadragenarians +quadringenaries +quadripartition +quadrisyllables +quadruplicating +quadruplication +quantifications +quarrelsomeness +quartermistress +quasihistorical +quatercentenary +quattrocentists +questionability +quincentenaries +quingentenaries +quinquagenarian +quintuplicating +quintuplication +quizzifications +quodlibetarians diff --git a/com/agnibho/code/anagram/dictionary/Q16.txt b/com/agnibho/code/anagram/dictionary/Q16.txt new file mode 100644 index 0000000..ecc1b7e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q16.txt @@ -0,0 +1,4 @@ +quadricentennial +questionableness +quinquagenarians +quintessentially diff --git a/com/agnibho/code/anagram/dictionary/Q17.txt b/com/agnibho/code/anagram/dictionary/Q17.txt new file mode 100644 index 0000000..4a4a18e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q17.txt @@ -0,0 +1,4 @@ +quartermistresses +quatercentenaries +quintessentialise +quintessentialize diff --git a/com/agnibho/code/anagram/dictionary/Q18.txt b/com/agnibho/code/anagram/dictionary/Q18.txt new file mode 100644 index 0000000..03b98b7 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q18.txt @@ -0,0 +1,4 @@ +quintessentialised +quintessentialises +quintessentialized +quintessentializes diff --git a/com/agnibho/code/anagram/dictionary/Q19.txt b/com/agnibho/code/anagram/dictionary/Q19.txt new file mode 100644 index 0000000..4904a17 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q19.txt @@ -0,0 +1,2 @@ +quintessentialising +quintessentializing diff --git a/com/agnibho/code/anagram/dictionary/Q2.txt b/com/agnibho/code/anagram/dictionary/Q2.txt new file mode 100644 index 0000000..a1afb7d --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q2.txt @@ -0,0 +1 @@ +qi diff --git a/com/agnibho/code/anagram/dictionary/Q3.txt b/com/agnibho/code/anagram/dictionary/Q3.txt new file mode 100644 index 0000000..6a63276 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q3.txt @@ -0,0 +1,4 @@ +qat +Qom +qua +Qum diff --git a/com/agnibho/code/anagram/dictionary/Q4.txt b/com/agnibho/code/anagram/dictionary/Q4.txt new file mode 100644 index 0000000..221c039 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q4.txt @@ -0,0 +1,15 @@ +qadi +qoph +quad +quag +quat +quay +quey +quid +quin +quip +quit +quiz +quo' +quod +quop diff --git a/com/agnibho/code/anagram/dictionary/Q5.txt b/com/agnibho/code/anagram/dictionary/Q5.txt new file mode 100644 index 0000000..cf98f2a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q5.txt @@ -0,0 +1,72 @@ +qadis +Qajar +qanat +Qasim +Qatar +Qeshm +qibla +qophs +Qoran +quack +quads +quaff +quags +quail +quair +quake +quaky +quale +qualm +quant +quare +quark +quart +quash +quasi +quats +quays +quean +queen +queer +quell +queme +quena +quern +query +quest +queue +queys +quick +quids +quiet +quiff +quill +Quilp +quilt +quina +quine +Quinn +quins +quint +quipo +quips +quipu +quire +quirk +quirt +quist +quite +Quito +quits +quoad +quods +quoif +quoin +quoit +quoll +quonk +quops +Quorn +quota +quote +quoth diff --git a/com/agnibho/code/anagram/dictionary/Q6.txt b/com/agnibho/code/anagram/dictionary/Q6.txt new file mode 100644 index 0000000..0357157 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q6.txt @@ -0,0 +1,109 @@ +qanats +Qantas +qasida +Qatari +qawwal +qiblas +qindar +qintar +qiviut +quacks +quaere +quaffs +quagga +quaggy +quahog +quaich +quaigh +quails +quaint +quairs +quaked +Quaker +quakes +qualia +qualms +qualmy +quango +quanta +quants +Quapaw +quarks +quarle +quarry +quarte +quarto +quarts +quartz +quasar +quatch +quaver +Quayle +queach +queans +queasy +queazy +Quebec +queens +queeny +queers +queest +quelch +quelea +quells +quenas +quench +querns +quests +quetch +queued +queues +quiche +quicks +quidam +quiets +quiffs +quills +quilts +quinas +quince +quines +quinic +quinoa +quinol +quinsy +quinta +quinte +quints +quinze +quipos +quipus +quired +quires +quirks +quirky +quirts +quists +quitch +quited +quites +quiver +quizes +Qumran +quoifs +quoins +quoits +quokka +quolls +quonks +quooke +quorum +quotas +quoted +quoter +quotes +quotha +quotum +Qur'an +Qwaqwa +QWERTY diff --git a/com/agnibho/code/anagram/dictionary/Q7.txt b/com/agnibho/code/anagram/dictionary/Q7.txt new file mode 100644 index 0000000..344e72f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q7.txt @@ -0,0 +1,154 @@ +qabalah +Qaddafi +Qaddish +qasidas +Qataris +qawwali +qawwals +qindars +Qingdao +Qinghai +qintars +Qiqihar +qiviuts +quacked +quacker +quackle +quadded +quadrat +quadric +quaeres +quaffed +quaffer +quaggas +quahaug +quahogs +quaichs +quaighs +quailed +Quakers +quakier +quaking +qualify +quality +quamash +quangos +quannet +quantal +quanted +quantic +quantum +Quapaws +quarles +quarrel +quartan +quarter +quartes +quartet +quartic +quartos +quartzy +quasars +quashed +Quashee +quashes +Quashie +quassia +quavers +quavery +quayage +queachy +Quechua +queechy +queened +queenie +queenly +queered +queerer +queerly +queests +queleas +quelled +queller +Quentin +Quercus +queried +queries +querist +Quesnay +quested +quester +questor +quetsch +quetzal +queuing +quibble +quiches +Quichua +quicken +quicker +quickie +quickly +quidams +quiddit +quiddle +quiesce +quieted +quieten +quieter +quietly +quietus +quillai +quilled +quillet +quillon +quilted +quilter +Quimper +quinary +quinate +quinces +quinine +quinnat +quinoas +quinoid +quinone +quintal +quintan +quintas +quintes +quintet +quintic +Quintin +Quinton +quipped +quiring +quirked +quirted +quiting +quittal +quitted +quitter +quittor +quivers +quivery +Quixote +quizzed +quizzer +quizzes +quodded +quoifed +quoined +quoited +quoiter +quokkas +quondam +quonked +Quonset +quopped +quorate +quorums +quoters +quothas +quoting +quotums diff --git a/com/agnibho/code/anagram/dictionary/Q8.txt b/com/agnibho/code/anagram/dictionary/Q8.txt new file mode 100644 index 0000000..5dcfca7 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q8.txt @@ -0,0 +1,185 @@ +qabalahs +qaimaqam +qalamdan +Quaalude +quackers +quackery +quacking +quackled +quackles +quadding +quadrans +quadrant +quadrate +quadrats +quadriga +quadroon +quaestor +quaffers +quaffing +quaggier +quagmire +quagmiry +quahaugs +quailing +quainter +quaintly +quakerly +quakiest +quakings +qualmier +qualming +qualmish +quandang +quandary +quandong +quannets +quantics +quantify +quanting +quantise +quantity +quantize +quantong +quarrels +quarrian +quarried +quarrier +quarries +quarrion +quartern +quarters +quartets +quartett +quartics +quartier +quartile +quartzes +Quashees +Quashies +quashing +quassias +quatched +quatches +quatorze +quatrain +quavered +quaverer +quayages +quayside +queasier +queasily +queazier +Quebecer +Quechuan +Quechuas +queendom +queenies +queening +queenite +queenlet +queerest +queering +queerish +queerity +quelched +quelches +quellers +quelling +quenched +quencher +quenches +quenelle +querists +querying +questers +questing +question +questors +quetched +quetches +quetzals +queueing +queuings +quibbled +quibbler +quibbles +Quichuan +Quichuas +quickens +quickest +quickies +quickset +quiddany +quiddits +quiddity +quiddled +quiddler +quiddles +quidnunc +quiesced +quiesces +quietens +quieters +quietest +quieting +quietism +quietist +quietive +quietude +quillaia +quillais +quillaja +quillets +quilling +quillman +quillmen +quillons +quilters +quilting +quincunx +quinella +quinines +quinnats +quinones +quinsied +quintain +quintals +quintets +quintett +quintile +quipping +quippish +quipster +Quirinal +Quirinus +Quirites +quirkier +quirkily +quirking +quirkish +quirting +quisling +quitched +quitches +quitters +quitting +quittors +quivered +quixotic +quixotry +quizzers +quizzery +quizzify +quizzing +quodding +quoifing +quoining +quoiters +quoiting +quonking +Quonsets +quopping +quotable +quotably +quotient diff --git a/com/agnibho/code/anagram/dictionary/Q9.txt b/com/agnibho/code/anagram/dictionary/Q9.txt new file mode 100644 index 0000000..1fa4578 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Q9.txt @@ -0,0 +1,166 @@ +Qaddishim +qaimaqams +qalamdans +qinghaosu +Quaaludes +quackling +quadrants +quadrated +quadrates +quadratic +quadratus +quadrella +quadrifid +quadrigae +quadrille +quadroons +quadruman +quadruped +quadruple +quadruply +quaeritur +quaesitum +quaestors +quaggiest +quagmired +quagmires +quaintest +Quakerdom +Quakeress +Quakerish +Quakerism +quakiness +quakingly +qualified +qualifier +qualifies +qualitied +qualities +qualmiest +qualmless +quamashes +quandangs +quandongs +quantical +quantised +quantises +quantized +quantizes +quantongs +quarenden +quarender +quarreled +quarreler +quarrians +quarriers +quarrions +quarrying +quarryman +quarrymen +quartered +quarterly +quartette +quartetti +quartetto +quartetts +quartiers +quartiles +quartzite +quartzose +Quasimodo +quatching +quatorzes +quatrains +quaverers +quavering +quaysides +queasiest +queaziest +Quebecers +Quebecker +Qu�becois +quebracho +queendoms +queenfish +queenhood +queenings +queenites +queenless +queenlets +queenlier +queenship +queerness +quelching +quenchers +quenching +quenelles +quercetin +quercetum +querimony +querulous +queryings +questings +questions +questrist +quetching +quetsches +quetzales +queueings +quibblers +quibbling +quickbeam +quickened +quickener +quicklime +quickness +quicksand +quicksets +quickstep +quiddlers +quiddling +quidnuncs +quiescent +quiescing +quietened +quietings +quietists +quietness +quietsome +quietuses +quillaias +quillajas +quillings +quillwort +quiltings +quinellas +quinidine +quinoidal +quinoline +quinolone +quinonoid +quinquina +quintains +quintette +quintetti +quintetto +quintetts +quintiles +quintroon +quintuple +quipsters +quirkiest +quislings +quitching +quittance +quiverful +quivering +quiverish +quixotism +quizzical +quizzings +quodlibet +quotation +quotative +quotidian +quotients +quotition diff --git a/com/agnibho/code/anagram/dictionary/R1.txt b/com/agnibho/code/anagram/dictionary/R1.txt new file mode 100644 index 0000000..4286f42 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R1.txt @@ -0,0 +1 @@ +r diff --git a/com/agnibho/code/anagram/dictionary/R10.txt b/com/agnibho/code/anagram/dictionary/R10.txt new file mode 100644 index 0000000..10a57ee --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R10.txt @@ -0,0 +1,1284 @@ +rabatments +rabattings +rabbinates +rabbinical +rabbinists +rabbinites +rabbitries +rabblement +racecourse +racehorses +racemation +racemising +racemizing +racetracks +Rachmanism +racialists +rackabones +racketeers +raconteurs +raconteuse +racqueting +radarscope +radialised +radialises +radialized +radializes +radiations +radicalise +radicalism +radicality +radicalize +radicating +radication +radiciform +radiculose +radiogenic +radiograms +radiograph +Radiolaria +radiologic +radiolysis +radiolytic +radiometer +radiometry +radiopager +radiopaque +radiophone +radiophony +radioscope +radioscopy +radiosonde +radiothons +radiotoxic +raduliform +raffinates +Rafsanjani +ragamuffin +raggedness +railleries +railroaded +railroader +railwayman +railwaymen +rainchecks +rainproofs +rainstorms +raisonneur +raiyatwari +rajahships +rajpramukh +rakishness +rallycross +rallyingly +ramblingly +Ramboesque +ramfeezled +ramfeezles +rampacious +rampageous +rampallian +ramparting +Ramphastos +ramshackle +rancherias +rancheries +rancidness +randomised +randomiser +randomises +randomized +randomizer +randomizes +randomness +randomwise +rangatiras +rangelands +rangership +ranivorous +ransackers +ransacking +ransomable +ransomless +rantipoled +rantipoles +ranunculus +rappelling +rapportage +rapporteur +rapturised +rapturises +rapturized +rapturizes +rarefiable +rascailles +rascallion +ratability +ratepayers +ratheripes +rationales +rationally +Ratskeller +rattenings +rattlebags +raunchiest +ravellings +ravelments +ravenously +ravishment +Rawalpindi +razmatazes +razzmatazz +reabsorbed +reaccustom +reacquaint +reacquired +reacquires +reactances +reactional +reactivate +reactively +reactivity +reactuated +reactuates +readapting +readership +readjusted +readmitted +readopting +readoption +readvanced +readvances +readvising +reaedified +reaedifies +reaffirmed +reafforest +Reaganites +realigning +realisable +realizable +reallocate +reallotted +reamending +reanalyses +reanalysis +reanimated +reanimates +reannexing +reapparels +reappeared +reapplying +reappoints +reappraise +rearguards +rearhorses +rearmament +rearousals +rearousing +rearranged +rearranges +rearrested +reascended +reasonable +reasonably +reasonings +reasonless +reassemble +reassembly +reasserted +reassessed +reassesses +reassigned +reassuming +reassurers +reassuring +reastiness +reattached +reattaches +reattained +reattempts +reawakened +rebaptised +rebaptises +rebaptisms +rebaptized +rebaptizes +rebatement +rebbetzins +Rebeccaism +rebellions +rebellious +rebirthing +reblooming +reblossoms +reboations +reborrowed +rebounding +rebreather +rebuilding +rebukingly +rebutments +rebuttable +rebuttoned +recalesced +recalesces +recallable +recallment +recalments +recaptions +recaptured +recapturer +recaptures +recatching +receipting +receivable +recensions +recentness +recentring +receptacle +receptible +receptions +recessions +recharging +recharting +r�chauff�s +recheating +rechecking +rechristen +recidivism +recidivist +recipience +recipiency +recipients +reciprocal +recitalist +recitation +recitative +recitativi +recitativo +recklessly +reckonings +reclaimant +reclaimers +reclaiming +reclassify +reclimbing +reclinable +reclothing +reclusions +recognised +recogniser +recognises +recognized +recognizer +recognizes +recoilless +recoinages +recollects +recolonise +recolonize +recombined +recombines +recomforts +recommence +recommends +recompacts +recompense +recomposed +recomposes +recompress +reconciled +reconciler +reconciles +recondense +reconfirms +reconnects +reconquers +reconquest +reconsider +recontinue +reconvened +reconvenes +reconverts +reconveyed +reconvicts +recordable +recordings +recordists +recounting +recoupment +recoverees +recoverers +recoveries +recovering +recoverors +recreantly +recreating +recreation +recreative +recrements +recrossing +recrudesce +recruitals +recruiters +recruiting +rectangled +rectangles +rectifiers +rectifying +rectitudes +rectorates +rectorials +rectorship +rectresses +rectricial +recumbence +recumbency +recuperate +recureless +recurrence +recurrency +recursions +recusances +recusation +recyclable +redactions +redarguing +redbreasts +redcurrant +redecorate +rededicate +redeemable +redeemably +redeemless +redefining +redelivers +redelivery +redemption +redemptive +redemptory +redeployed +redescends +redescribe +redesigned +redevelops +redialling +redingotes +redirected +redisburse +rediscount +rediscover +redissolve +redividing +redivision +redolently +redoubling +redoubting +redounding +redrafting +redressers +redressing +redressive +redruthite +redstreaks +reductants +reductases +reductions +redundance +redundancy +refashions +refections +refereeing +referenced +references +referendum +referrable +referrible +refiguring +refillable +refinement +refineries +refitments +refittings +reflagging +reflations +reflecters +reflecting +reflection +reflective +reflectors +reflexible +reflexions +refloating +reflowered +reflowings +refluences +refocusing +refocussed +refocusses +reforested +reformable +reformados +reformists +refounders +refounding +refractary +refracting +refraction +refractive +refractors +refractory +refracture +refraining +refreezing +refreshens +refreshers +refreshful +refreshing +refringent +refringing +refuelable +refuelling +refulgence +refulgency +refundable +refundment +refuseniks +refutation +regainable +regainment +regalement +regardable +regardless +regathered +regelating +regelation +regeneracy +regenerate +Regensburg +regentship +regimental +regimented +regionally +r�gisseurs +registered +registrant +registrars +registrary +registries +regranting +regreeting +regressing +regression +regressive +regretting +regrinding +regrouping +regularise +regularity +regularize +regulating +regulation +regulative +regulators +regulatory +regulising +regulizing +rehandling +rehearings +rehearsals +rehearsers +rehearsing +rehousings +Reichsland +reichsmark +reillumine +reilluming +reimbursed +reimburses +reimplants +reimported +reimposing +reincrease +reinfected +reinforced +reinforces +reinformed +reinfunded +reinfusing +reinhabits +reinserted +reinspects +reinspired +reinspires +reinspirit +reinstalls +reinstated +reinstates +reinsurers +reinsuring +reinterred +reinvented +reinvested +reinvolved +reinvolves +reissuable +reistafels +reiterance +reiterated +reiterates +rejectable +rejectible +rejections +rejiggered +rejoiceful +rejoicings +rejoinders +rejoindure +rejoneador +rejuvenate +rejuvenise +rejuvenize +rekindling +relabelled +relational +relatively +relativise +relativism +relativist +relativity +relativize +relaunched +relaunches +relaxation +relaxative +relearning +releasable +relegating +relegation +relentings +relentless +relentment +relevantly +reliefless +relievable +relighting +religieuse +religioner +relinquish +reliquaire +relishable +relocating +relocation +reluctance +reluctancy +reluctated +reluctates +relumining +remainders +remarkable +remarkably +remarriage +remarrying +remastered +rematching +remeasured +remeasures +remediable +remediably +remedially +remediless +remembered +rememberer +remercying +remigating +remigation +remigrated +remigrates +reminisced +reminisces +remissible +remissions +remissness +remitments +remittance +remodelled +remodified +remodifies +remonetise +remonetize +remontants +remoralise +remoralize +remorseful +remortgage +remoteness +remoulades +remoulding +remounting +removables +remunerate +remurmured +renascence +rencounter +renderable +renderings +rendezvous +renditions +renegading +renegation +renouncers +renouncing +renovating +renovation +renovators +rentallers +renumbered +renversing +reoccupied +reoccupies +reoccurred +reoffended +reordained +reordering +reorganise +reorganize +reoriented +repackaged +repackages +repaginate +repainting +repairable +repapering +reparation +reparative +reparatory +repassages +repatriate +repayments +repealable +repeatable +repeatedly +repeatings +repellance +repellancy +repellants +repellence +repellency +repellents +repentance +repentants +repeopling +repertoire +reperusals +reperusing +r�p�titeur +repetition +repetitive +rephrasing +repinement +repiningly +replanning +replanting +repletions +replevined +replevying +replicated +replicates +replicator +repointing +repopulate +reportable +reportages +reportedly +reportings +repositing +reposition +repositors +repository +repottings +repoussage +repoussoir +reprehends +represents +repressing +repression +repressive +repressors +reprievals +reprieving +reprimands +reprinting +reproached +reproacher +reproaches +reprobance +reprobated +reprobater +reprobates +reprobator +reproduced +reproducer +reproduces +reprograms +reproofing +reprovings +reptations +reptilians +reptilious +republican +repudiable +repudiated +repudiates +repudiator +repugnance +repugnancy +repulsions +repurchase +repurified +repurifies +reputation +reputative +reputeless +requesters +requesting +requickens +requiescat +requirable +requirings +requisites +requisitor +requitable +requiteful +reradiated +reradiates +rerebraces +rerecorded +reredorses +reredorter +reredosses +reregister +reregulate +rerevising +resaluting +reschedule +rescinding +rescission +rescissory +rescripted +resealable +researched +researcher +researches +resections +Resedaceae +reselected +resemblant +resemblers +resembling +resentence +resentment +reservable +reservedly +reservists +reservoirs +resettling +reshipment +reshipping +reshuffled +reshuffles +residences +residenter +resignedly +resignment +resilience +resiliency +resinating +resinified +resinifies +resinising +resinizing +resinously +resistance +resistants +resistents +resistible +resistibly +resistless +resnatrons +resolutely +resolution +resolutive +resolvable +resolvedly +resolvents +resonances +resonantly +resonating +resonators +resorbence +resorcinol +resorption +resorptive +resounding +respectant +respecters +respectful +respecting +respective +respelling +respirable +respirator +resplended +respondent +responders +responding +responsers +responsive +responsors +responsory +respraying +ressaldars +restaffing +restarters +restarting +restaurant +restfuller +restituted +restitutes +restitutor +restlessly +restocking +restorable +restrained +restrainer +restraints +restricted +restringed +restringes +resultants +resultless +resumption +resumptive +resupinate +resupplied +resupplies +resurfaced +resurfaces +resurgence +resurrects +resurveyed +retailment +retainable +retainment +retaliated +retaliates +retaliator +retardants +retardates +retardment +retentions +retextured +retextures +rethinking +reticently +reticulary +reticulate +reticulums +retinacula +retinalite +retirement +retiringly +retorsions +retortions +retouchers +retouching +retractile +retracting +retraction +retractive +retractors +retraining +retransfer +retransmit +retreading +retreatant +retreating +retrenched +retrenches +retributed +retributes +retributor +retrievals +retrievers +retrieving +retrimming +retroacted +retroceded +retrocedes +retrochoir +retrograde +retrogress +retrojects +retrorsely +retrospect +retroverts +retrovirus +returnable +returnless +reunifying +reunionism +reunionist +reuttering +revalidate +revalorise +revalorize +revanchism +revanchist +revealable +revealings +revealment +revelation +revelative +revelators +revelatory +revellings +revengeful +revengings +reverenced +reverencer +reverences +reverently +reversedly +reversible +reversibly +reversings +reversions +revertible +revestiary +revestries +revetments +revictuals +reviewable +revilement +revilingly +revisional +revisitant +revisiting +revitalise +revitalize +revivalism +revivalist +revivement +revivified +revivifies +revivingly +revocation +revocatory +revokement +revolution +revolvable +revolvency +revolvings +revulsions +rewardable +rewardless +reweighing +rewrapping +rhabdolith +Rhamnaceae +rhapsodies +rhapsodise +rhapsodist +rhapsodize +Rheinberry +rheochords +rheologist +rheometers +rheotropes +rheotropic +rhetorical +rhetorised +rhetorises +rhetorized +rhetorizes +rheumatics +rheumatise +rheumatism +rheumatize +rheumatoid +Rhinegrave +rhinestone +rhinoceros +rhinolalia +rhinoliths +rhinophyma +rhinoscope +rhinoscopy +rhinotheca +rhinovirus +rhipidions +rhipidiums +Rhipiptera +rhizocarps +rhizocauls +rhizogenic +rhizomorph +Rhizophora +rhizophore +rhizoplane +rhizopuses +rhodanised +rhodanises +rhodanized +rhodanizes +Rhodesians +rhodolites +rhodophane +Rhodymenia +Rhoeadales +rhoicissus +rhomboidal +rhomboides +rhopalisms +rhotacised +rhotacises +rhotacisms +rhotacized +rhotacizes +rhubarbing +rhymesters +Rhyniaceae +rhythmical +rhythmised +rhythmises +rhythmists +rhythmized +rhythmizes +rhythmless +ribaldries +ribattutas +Ribbentrop +riboflavin +ricercares +ricercatas +Richardson +richinised +Richthofen +ricinoleic +rickburner +ricketiest +rickettsia +rickstands +ricksticks +ricocheted +ridability +riddlingly +ridgebacks +ridgepoles +ridiculers +ridiculing +ridiculous +riebeckite +Riemannian +rightening +rightfully +rightwards +rigidified +rigidifies +rigidising +rigidizing +rigmaroles +rigorously +rigwiddies +rigwoodies +rijstafels +rijsttafel +rinderpest +ringhalses +ringleader +ringsiders +rinkhalses +ripidolite +ripienists +ripplingly +ripsnorter +risibility +ritardando +ritornelle +ritornelli +ritornello +ritornells +ritualised +ritualises +ritualists +ritualized +ritualizes +rivalesses +rivalising +rivalizing +rivalships +riverscape +riverweeds +roadblocks +roadheader +roadhouses +roadsteads +roadworthy +roberdsman +robertsman +roborating +robotising +robotizing +robustious +robustness +rocamboles +rockabilly +rocketeers +rockhopper +Rockingham +rodfishers +rodfishing +roisterers +roistering +roisterous +rollcollar +rollerball +rollicking +rollocking +romancical +romancings +Romanesque +Romanisers +Romanising +Romanistic +Romanizers +Romanizing +romantical +rondoletto +r�ntgenise +r�ntgenize +rootedness +rootsiness +rootstocks +roquelaure +rosaniline +rosefishes +rosemaling +rosemaries +Rossellini +rostellate +rostellums +rosterings +Rotameters +rotaplanes +rotational +rotavating +Rotavators +rotgrasses +Rothermere +Rothschild +rotiferous +rotisserie +rotographs +rotorcraft +rotovating +Rotovators +rottenness +Rottweiler +rotundness +roughcasts +roughening +roughhouse +rouncevals +roundabout +roundelays +Roundheads +rouseabout +roussettes +Roussillon +roustabout +routineers +routinised +routinises +routinists +routinized +routinizes +royalising +royalizing +roysterers +roystering +roysterous +rubberised +rubberises +rubberized +rubberizes +rubberneck +rubberwear +rubbishing +rubiaceous +rubicelles +rubiconned +rubiginose +rubiginous +Rubinstein +rubrically +rubricated +rubricates +rubricator +rubricians +rudbeckias +rudderless +rudenesses +rudimental +ruefulness +ruffianing +ruffianish +ruffianism +ruggedised +ruggedises +ruggedized +ruggedizes +ruggedness +ruinations +rulerships +rumblingly +rumbullion +rumfustian +Ruminantia +ruminantly +ruminating +rumination +ruminative +ruminators +runarounds +rupestrian +rupicoline +rupicolous +ruralising +ruralizing +Ruritanian +rushlights +Russellite +russetings +Russianise +Russianism +Russianist +Russianize +Russifying +Russophile +Russophils +Russophobe +rustically +rusticated +rusticates +rusticator +rusticised +rusticises +rusticized +rusticizes +rustlingly +ruthenious +rutherford +ruthlessly diff --git a/com/agnibho/code/anagram/dictionary/R11.txt b/com/agnibho/code/anagram/dictionary/R11.txt new file mode 100644 index 0000000..20bb401 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R11.txt @@ -0,0 +1,950 @@ +rabattement +rabblements +Rabelaisian +racecourses +racemations +Rachmaninov +racialistic +racketeered +raconteuses +racquetball +radarscopes +radialising +radializing +radicalised +radicalises +radicalized +radicalizes +radicalness +radications +radicellose +radioactive +radiocarbon +radiographs +radiography +radiolarian +radiologist +radiometers +radiometric +radiopagers +radiopaging +radiophones +radiophonic +radioscopes +radiosondes +Radnorshire +raffishness +ragamuffins +railroading +rainproofed +raisonneurs +rajpramukhs +rallentando +Ramakrishna +Rambouillet +ramfeezling +ramgunshoch +rancorously +randomisers +randomising +randomizers +randomizing +rangefinder +rangerships +rantipoling +rapaciously +rapporteurs +rapscallion +raptatorial +raptureless +rapturising +rapturizing +rapturously +rarefaction +rarefactive +rascallions +Raskolnikov +raspatories +raspberries +Rastafarian +ratatouille +rateability +ratiocinate +rationalise +rationalism +rationalist +rationality +rationalize +rattleboxes +rattlesnake +raucousness +raunchiness +ravishingly +ravishments +razzamatazz +reabsorbing +reaccustoms +reacquaints +reacquiring +reactionary +reactionist +reactivated +reactivates +reactuating +readability +readdressed +readdresses +readerships +readjusting +readmission +readmitting +readoptions +readvancing +readvertise +reaedifying +reaffirming +reafforests +Reaganomics +realignment +realisation +realization +reallocated +reallocates +reallotment +reallotting +realpolitik +reamendment +reanimating +reanimation +reappearing +reappointed +reapportion +reappraisal +reappraised +reappraiser +reappraises +rearranging +rearresting +reascending +reascension +reassembled +reassembles +reasserting +reassertion +reassessing +reassigning +reassurance +reattaching +reattaining +reattempted +reattribute +reawakening +rebaptising +rebaptizing +rebarbative +rebatements +reblossomed +reborrowing +rebreathers +rebroadcast +rebukefully +rebuttoning +recalculate +recalescent +recalescing +recallments +recantation +recapturers +recapturing +receivables +receptacles +receptacula +receptively +receptivity +recessional +recessively +Rechabitism +rechallenge +rechristens +recidivists +recipiences +reciprocals +reciprocant +reciprocate +reciprocity +recirculate +recitalists +recitations +recitatives +recitativos +reclaimable +reclaimably +reclaimants +reclamation +reclination +recluseness +reclusories +recognisers +recognising +recognition +recognitive +recognitory +recognizers +recognizing +recollected +recolonised +recolonises +recolonized +recolonizes +recombinant +recombining +recomforted +recommenced +recommences +recommended +recommender +recommittal +recommitted +recompacted +recompensed +recompenses +recomposing +reconcilers +reconciling +recondensed +recondenses +recondition +reconfirmed +reconnected +reconnoiter +reconnoitre +reconquered +reconquests +reconsiders +reconstruct +recontinued +recontinues +reconvening +reconverted +reconveying +reconvicted +recordation +recoupments +recoverable +recreations +recremental +recriminate +recrudesced +recrudesces +recruitment +rectangular +rectifiable +rectilineal +rectilinear +rectipetaly +rectiserial +rectoresses +rectorships +recumbently +recuperable +recuperated +recuperates +recuperator +recurrences +recurrently +recusations +redactorial +redcurrants +reddishness +redecorated +redecorates +rededicated +rededicates +redelivered +redeliverer +redemptible +redemptions +redeploying +redescended +redescribed +redescribes +redesigning +redetermine +redeveloped +Rediffusion +redirecting +redirection +rediscounts +rediscovers +rediscovery +redissolved +redissolves +redistilled +redivisions +redoubtable +redoundings +reductively +redundances +redundantly +reduplicate +refashioned +refectioner +refectorian +refectories +referencing +referendary +referendums +referential +refinancing +refinedness +refinements +reflectance +reflections +reflexively +reflexivity +reflexology +reflowering +refocillate +refocussing +reforesting +reformadoes +reformation +reformative +reformatory +reformatted +reformulate +refortified +refortifies +refractable +refractions +refractures +refrangible +refreshened +refreshener +refreshment +refrigerant +refrigerate +refringency +refuellable +refundments +refurbished +refurbishes +refurnished +refurnishes +refutations +regainments +regalements +regardfully +regathering +regelations +regenerable +regenerated +regenerates +regenerator +regentships +regimentals +regimenting +regionalise +regionalism +regionalist +regionalize +registering +registrable +registrants +regredience +regressions +regretfully +regrettable +regrettably +regularised +regularises +regularized +regularizes +regulations +regurgitant +regurgitate +rehandlings +rehearsings +rehydration +Reichenbach +reichsmarks +reification +reillumined +reillumines +reimbursing +reimplanted +reimporting +reincarnate +reincreased +reincreases +reinfecting +reinfection +reinflation +reinforcing +reinforming +reinfunding +reinhabited +reinserting +reinsertion +reinspected +reinspiring +reinspirits +reinstalled +reinstating +reinstation +reinsurance +reintegrate +reinterment +reinterpret +reinterring +reintroduce +reinventing +reinvention +reinvesting +reinvolving +reiterances +reiterating +reiteration +reiterative +rejiggering +rejoicement +rejoicingly +rejoindures +rejoneadora +rejuvenated +rejuvenates +rejuvenator +rejuvenesce +rejuvenised +rejuvenises +rejuvenized +rejuvenizes +relabelling +relatedness +relationism +relationist +relativised +relativises +relativists +relativized +relativizes +relaunching +relaxations +releasement +relegations +relentments +reliability +relievables +religieuses +religionary +religioners +religionise +religionism +religionist +religionize +religiosity +religiously +reliquaires +reliquaries +relocations +reluctantly +reluctating +reluctation +remarriages +remastering +remeasuring +remediation +rememberers +remembering +remembrance +remigations +remigrating +remigration +reminiscent +reminiscing +remittances +remittently +remodelling +remodifying +remonetised +remonetises +remonetized +remonetizes +remonstrant +remonstrate +remoralised +remoralises +remoralized +remoralizes +remorseless +remortgaged +remortgages +removedness +remunerable +remunerated +remunerates +remunerator +remurmuring +renaissance +renascences +rencounters +renditioned +renegations +renegotiate +renewedness +renitencies +renormalise +renormalize +renovations +rentability +renumbering +reoccupying +reoccurring +reoffending +reordaining +reorganised +reorganises +reorganized +reorganizes +reorientate +reorienting +repackaging +repaginated +repaginates +repaintings +reparations +reparteeing +repartition +repatriated +repatriates +repatriator +repellances +repellantly +repellences +repellently +repellingly +repentances +repentantly +repentingly +repercussed +repercusses +repertoires +repertories +r�p�titeurs +repetitions +repetitious +repinements +replaceable +replacement +replenished +replenisher +replenishes +repleteness +repleviable +replevining +replicating +replication +replicators +repopulated +repopulates +reportingly +reportorial +reposedness +reposefully +repositions +repossessed +repossesses +repossessor +repoussages +repoussoirs +reprehended +reprehender +represented +representee +representer +representor +repressible +repressibly +repressions +reprimanded +reprivatise +reprivatize +reproachers +reproachful +reproaching +reprobating +reprobation +reprobative +reprobators +reprobatory +reprocessed +reprocesses +reproducers +reproducing +reprogramme +reprography +reprovingly +reptilianly +republicans +republished +republisher +republishes +repudiating +repudiation +repudiative +repudiators +repugnances +repulsively +repurchased +repurchases +repurifying +reputations +requickened +requiescats +requirement +requisition +requisitors +requisitory +requiteless +requitement +reradiating +reradiation +rerecording +reredorters +reregisters +reregulated +reregulates +rescheduled +reschedules +rescissions +rescripting +researchers +researchful +researching +reselecting +reselection +resemblance +resentenced +resentences +resentfully +resentingly +resentments +reservation +reservatory +reshipments +reshuffling +residencies +residenters +residential +resignation +resignments +resiliently +resinifying +resipiscent +resistances +resistingly +resistively +resistivity +resolutions +resorptions +resourceful +respectable +respectably +respectless +respiration +respirators +respiratory +resplendent +resplending +respondence +respondency +respondents +responsible +responsibly +responsions +restatement +restaurants +restfullest +restfulness +restituting +restitution +restitutive +restitutors +restitutory +restiveness +restoration +restorative +restrainers +restraining +restricting +restriction +restrictive +restringent +restringing +restructure +resubmitted +resultative +resumptions +resupplying +resurfacing +resurgences +resurrected +resurrector +resurveying +resuscitant +resuscitate +retailments +retainments +retaliating +retaliation +retaliative +retaliators +retaliatory +retardation +retardative +retardatory +retardments +retentively +retentivity +retexturing +retiariuses +reticularly +reticulated +reticulates +retinacular +retinaculum +retinispora +retinoscope +retinoscopy +retinospora +retiredness +retirements +retraceable +retractable +retractions +retransfers +retranslate +retransmits +retrenching +retributing +retribution +retributive +retributors +retributory +retrievable +retrievably +retrievings +retroacting +retroaction +retroactive +retrobulbar +retrocedent +retroceding +retrochoirs +retrofitted +retroflexed +retrograded +retrogrades +retrojected +retrolental +retrophilia +retrospects +retroussage +retroverted +reunionists +reupholster +revaccinate +revalidated +revalidates +revalorised +revalorises +revalorized +revalorizes +revaluation +revanchists +revealingly +revealments +revelations +revendicate +revengeless +revengement +revengingly +reverberant +reverberate +reverencers +reverencing +reverential +reverseless +reversional +reversioner +revictualed +revindicate +revisionary +revisionism +revisionist +revisitants +revitalised +revitalises +revitalized +revitalizes +revivalists +revivements +revivescent +revivifying +reviviscent +revocations +revoltingly +revolutions +rhabdoliths +rhabdomancy +rhabdomyoma +Rhabdophora +rhagadiform +rhamnaceous +rhapsodical +rhapsodised +rhapsodises +rhapsodists +rhapsodized +rhapsodizes +rheological +rheologists +rheotropism +rhetorician +rhetorising +rhetorizing +rheumatical +rheumaticky +rhinestones +rhinologist +rhinoplasty +rhinorrhoea +rhinoscopes +rhinoscopic +rhinothecas +rhizanthous +rhizocarpic +rhizogenous +rhizomatous +rhizomorphs +rhizophores +rhizoplanes +rhizosphere +rhodanising +rhodanizing +rhombohedra +Rhopalocera +rhotacising +rhotacizing +rhynchocoel +rhynchodont +rhythmicity +rhythmising +rhythmizing +ribonucleic +rickburners +ricketiness +rickettsiae +rickettsial +rickettsias +ricocheting +ricochetted +rifacimenti +rifacimento +righteously +rigidifying +Rijksmuseum +rijsttafels +rinforzando +ringleaders +rinthereout +riotousness +ripsnorters +ripsnorting +ritardandos +ritornellos +ritournelle +ritualising +ritualistic +ritualizing +rivallesses +riverbottom +riverscapes +riverworthy +roadheaders +roadholding +Robespierre +Rockefeller +rockhoppers +Roddenberry +rodenticide +rodomontade +roguishness +rollcollars +rollerballs +rollerblade +romanticise +romanticism +romanticist +romanticize +rompishness +rondolettos +r�ntgenised +r�ntgenises +r�ntgenized +r�ntgenizes +roquelaures +rosefinches +Rosencrantz +Rosicrucian +Rotarianism +rotaviruses +rotisseries +rotogravure +rottenstone +Rottweilers +rotundities +roughhoused +roughhouses +roughnesses +roundabouts +roundedness +roustabouts +routinising +routinizing +rubberising +rubberizing +rubbernecks +rubefacient +rubefaction +rubiconning +rubicundity +rubricating +rubrication +rubricators +Rudesheimer +rudimentary +ruggedising +ruggedizing +ruinousness +rumbustical +rumbustious +rumgumption +ruminations +Runyonesque +rupturewort +ruridecanal +Russianised +Russianises +Russianized +Russianizes +Russianness +Russophiles +Russophobes +Russophobia +rusticating +rustication +rusticators +rusticising +rusticizing +rutherfords diff --git a/com/agnibho/code/anagram/dictionary/R12.txt b/com/agnibho/code/anagram/dictionary/R12.txt new file mode 100644 index 0000000..5d72d7e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R12.txt @@ -0,0 +1,679 @@ +rabattements +rabbinically +racemisation +racemization +rachischisis +Rachmaninoff +racketeering +raconteuring +radicalising +radicalizing +radicicolous +radicivorous +radiesthesia +radiobiology +radiographer +radiographic +radiolarians +radiological +radiologists +radiomimetic +radionuclide +radiophonics +radiophonist +radiotherapy +rainproofing +rallentandos +Ramapithecus +rambunctious +ramification +rampageously +rangefinders +rangefinding +ranunculuses +rapscallions +ratatouilles +ratification +ratiocinated +ratiocinates +ratiocinator +rationalised +rationalises +rationalists +rationalized +rationalizes +rattlesnakes +ravenousness +razzmatazzes +reabsorption +reaccustomed +reacquainted +reactionists +reactivating +reactivation +reactiveness +readableness +readaptation +readdressing +readjustment +readmissions +readmittance +readvertised +readvertises +reafforested +realignments +realisations +realizations +reallocating +reallocation +reallotments +reamendments +reanimations +reapparelled +reappearance +reappointing +reapportions +reappraisals +reappraisers +reappraising +reascensions +reassemblage +reassemblies +reassembling +reassertions +reassessment +reassignment +reassumption +reassurances +reassuringly +reattachment +reattempting +reattributed +reattributes +reawakenings +rebelliously +reblossoming +rebroadcasts +recalcitrant +recalcitrate +recalculated +recalculates +recalescence +recantations +recapitalise +recapitalize +recapitulate +receivership +receptacular +receptaculum +receptionist +recessionals +recessionary +rechallenged +rechallenges +rechargeable +rechristened +recipiencies +reciprocally +reciprocants +reciprocated +reciprocates +reciprocator +recirculated +recirculates +recklessness +reclamations +reclassified +reclassifies +reclinations +recognisable +recognisably +recognisance +recognitions +recognizable +recognizably +recognizance +recollecting +recollection +recollective +recolonising +recolonizing +recombinants +recomforting +recommencing +recommenders +recommending +recommission +recommitment +recommittals +recommitting +recompacting +recompensing +recompressed +recompresses +reconcilable +reconcilably +recondensing +reconditions +reconfirming +reconnecting +reconnoiters +reconnoitred +reconnoitrer +reconnoitres +reconquering +reconsecrate +reconsidered +reconstitute +reconstructs +recontinuing +reconversion +reconverting +reconveyance +reconvicting +recordations +recordership +recreational +recriminated +recriminates +recriminator +recrudescent +recrudescing +recruitments +rectirostral +recuperating +recuperation +recuperative +recuperators +recuperatory +recurrencies +redecorating +redecoration +rededicating +redefinition +redeliverers +redeliveries +redelivering +redemptioner +redemptorist +redeployment +redescending +redescribing +redetermined +redetermines +redeveloping +redintegrate +redirections +rediscounted +rediscovered +rediscoverer +redissolving +redistilling +redistribute +redoublement +reducibility +reductionism +reductionist +redundancies +reduplicated +reduplicates +refashioning +refectioners +refectorians +reflationary +reflectances +reflectingly +reflectively +reflectivity +reflectogram +refocillated +refocillates +reformations +reformatting +reformulated +reformulates +refortifying +refoundation +refractivity +refractories +refractorily +refresheners +refreshening +refreshfully +refreshingly +refreshments +refrigerants +refrigerated +refrigerates +refrigerator +refurbishing +refurnishing +regardlessly +regeneracies +regenerating +regeneration +regenerative +regenerators +regeneratory +regionalised +regionalises +regionalisms +regionalists +regionalized +regionalizes +registraries +registration +regressively +regressivity +regularising +regularities +regularizing +regurgitated +regurgitates +rehabilitate +reifications +reillumining +reimbursable +reimplanting +reimposition +reimpression +reincarnated +reincarnates +reincreasing +reinfections +reinhabiting +reinsertions +reinspecting +reinspection +reinspirited +reinstalling +reinstalment +reinstations +reinsurances +reintegrated +reintegrates +reinterments +reinterprets +reintroduced +reintroduces +reinventions +reinvestment +reinvigorate +reiteratedly +reiterations +reiteratives +rejectamenta +rejectionist +rejoneadores +rejuvenating +rejuvenation +rejuvenators +rejuvenesced +rejuvenesces +rejuvenising +rejuvenizing +relationally +relationists +relationless +relationship +relativeness +relativising +relativistic +relativities +relativitist +relativizing +releasements +relentlessly +reliableness +religionised +religionises +religionists +religionized +religionizes +religionless +relinquished +relinquishes +reluctations +Rembrandtish +Rembrandtism +remediations +remedilessly +rememberable +rememberably +remembrancer +remembrances +remigrations +remilitarise +remilitarize +remineralise +remineralize +reminiscence +remonetising +remonetizing +remonstrance +remonstrants +remonstrated +remonstrates +remonstrator +remoralising +remoralizing +remorsefully +remortgaging +removability +remunerating +remuneration +remunerative +remunerators +remuneratory +renaissances +rencountered +rendezvoused +renditioning +renegotiable +renegotiated +renegotiates +Renfrewshire +renomination +renormalised +renormalises +renormalized +renormalizes +renounceable +renouncement +renunciation +renunciative +renunciatory +renversement +reoccupation +reordination +reorganising +reorganizing +reorientated +reorientates +repaginating +repagination +reparability +repartitions +repatriating +repatriation +repatriators +repellancies +repellencies +repercussing +repercussion +repercussive +repetitional +repetitively +rephotograph +replacements +replantation +replenishers +replenishing +replevisable +replications +repopulating +repositories +repossessing +repossession +reprehenders +reprehending +reprehension +reprehensive +reprehensory +representant +representers +representing +repressively +reprimanding +reprivatised +reprivatises +reprivatized +reprivatizes +reproachable +reproachless +reprobations +reprocessing +reproducible +reproduction +reproductive +reprogrammed +reprographer +reprographic +republishers +republishing +repudiations +repugnancies +repurchasing +reputability +reputatively +requickening +requirements +requisitions +requitements +reradiations +reregistered +reregulating +reregulation +rescheduling +reselections +resemblances +resentencing +reservations +reservedness +resettlement +residentiary +residentship +resignations +resignedness +resiniferous +resipiscence +resipiscency +resistlessly +resoluteness +resolutioner +resolvedness +resoundingly +resourceless +respectfully +respectively +respirations +respirometer +resplendence +resplendency +respondentia +responseless +responsively +responsorial +responsories +restatements +restaurateur +restauration +restitutions +restlessness +restorations +restoratives +restrainable +restrainedly +restrictedly +restrictions +restringents +restructured +restructures +resubmitting +resumptively +resupination +resurrecting +resurrection +resurrective +resurrectors +resuscitable +resuscitants +resuscitated +resuscitates +resuscitator +retainership +retaliations +retardations +retentionist +reticulately +reticulating +reticulation +retinisporas +retinosporas +retiringness +retractation +retractility +retractively +retranslated +retranslates +retrenchment +retributions +retrievement +retrocession +retrocessive +retrofitting +retroflected +retroflexion +retrograding +retrogressed +retrogresses +retrojecting +retrojection +retromingent +retrophiliac +retropulsion +retropulsive +retrospected +retroversion +retroverting +retroviruses +reunionistic +reupholsters +revaccinated +revaccinates +revalidating +revalidation +revalorising +revalorizing +revaluations +revelational +revendicated +revendicates +revengefully +revengements +reverberated +reverberates +reverberator +reversionary +reversioners +revestiaries +revictualing +revictualled +revindicated +revindicates +revisionists +revisitation +revitalising +revitalizing +revivability +revivalistic +revivescence +revivescency +reviviscence +reviviscency +revocability +revolutional +revolutioner +revulsionary +rhabdosphere +rhamphotheca +rhapsodising +rhapsodizing +rheometrical +rhetorically +rhetoricians +rheumatismal +rheumatology +Rhinegravine +rhinocerical +rhinoceroses +rhinocerotic +rhinological +rhinologists +rhinoplastic +rhinorrhagia +rhinorrhoeal +Rhipidoptera +rhizocarpous +Rhizocephala +rhizogenetic +rhizophagous +rhizophilous +rhizospheres +rhododendron +rhodomontade +Rhodophyceae +rhombohedral +rhombohedron +rhopaloceral +rhynchocoels +Rhynchonella +Rhynchophora +rhythmically +rhythmometer +rhythmopoeia +rhytidectomy +ribonuclease +ricochetting +ridiculously +rightfulness +rigorousness +rinthereouts +risorgimento +ritournelles +robustiously +rodenticides +rodomontaded +rodomontader +rodomontades +rollerbladed +rollerblader +rollerblades +Romanisation +Romanization +romantically +romanticised +romanticises +romanticists +romanticized +romanticizes +r�ntgenising +r�ntgenizing +r�ntgenogram +r�ntgenology +rooflessness +Rosicrucians +Rosminianism +Rostropovich +rotogravures +rottenstoned +rottenstones +roughcasting +roughhousing +roundabouted +roundaboutly +rubbernecked +rubefacients +ruminatingly +ruminatively +rumourmonger +ruptureworts +ruralisation +ruralization +Russianising +Russianizing +Russophilism +Russophilist +Russophobist +rustications +ruthlessness diff --git a/com/agnibho/code/anagram/dictionary/R13.txt b/com/agnibho/code/anagram/dictionary/R13.txt new file mode 100644 index 0000000..bdc962b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R13.txt @@ -0,0 +1,416 @@ +racemisations +racemizations +racketeerings +raconteurings +radialisation +radialization +radiesthesist +radioactively +radioactivity +radiographers +radiolabelled +radiolocation +radionuclides +radiophonists +radiotelegram +radioteletype +Rafflesiaceae +ramapithecine +ramifications +randomisation +randomization +Ranunculaceae +rapaciousness +rapprochement +rapturousness +ratifications +ratiocinating +ratiocination +ratiocinative +ratiocinators +ratiocinatory +rationalising +rationalistic +rationalities +rationalizing +razzamatazzes +reabsorptions +reacclimatise +reacclimatize +reaccustoming +reacquainting +reactionaries +reactionarism +reactionarist +reactivations +readaptations +readjustments +readmittances +readvertising +reaffirmation +reafforesting +realisability +realistically +realizability +reallocations +realpolitiker +reapparelling +reappearances +reapplication +reappointment +reapportioned +rearrangement +reassemblages +reassessments +reassignments +reassumptions +reattachments +reattributing +reattribution +recalcitrance +recalcitrated +recalcitrates +recalculating +recapitalised +recapitalises +recapitalized +recapitalizes +recapitulated +recapitulates +receivability +receptibility +receptionists +receptiveness +receptivities +recessiveness +rechallenging +rechristening +reciprocality +reciprocating +reciprocation +reciprocative +reciprocators +recirculating +recitationist +reclassifying +recollectedly +recollections +recombination +recomfortless +recommendable +recommendably +recommissions +recommitments +recomposition +recompressing +recompression +reconcilement +reconditioned +reconnoitered +reconnoiterer +reconnoitrers +reconnoitring +reconsecrated +reconsecrates +reconsidering +reconsolidate +reconstituent +reconstituted +reconstitutes +reconstructed +reconstructor +reconversions +reconveyances +recorderships +recriminating +recrimination +recriminative +recriminators +recriminatory +recrudescence +recrudescency +recrystallise +recrystallize +rectangularly +rectification +rectilinearly +rectipetality +recuperations +redeemability +redefinitions +redeliverance +redemptioners +redemptionist +redemptorists +redeployments +redetermining +redevelopment +redintegrated +redintegrates +rediscounting +rediscoverers +rediscoveries +rediscovering +redissolution +redistributed +redistributes +redoublements +reducibleness +reductionists +reductiveness +reduplicating +reduplication +reduplicative +refashionment +referentially +reflectograms +reflectograph +reflexibility +reflexiveness +reflexologist +refocillating +refocillation +reforestation +reformability +reformatories +reformulating +reformulation +refoundations +refractometer +refrigerating +refrigeration +refrigerative +refrigerators +refrigeratory +refurbishment +regardfulness +regenerations +regimentation +regionalising +regionalizing +registrarship +registrations +regurgitating +regurgitation +rehabilitated +rehabilitates +rehabilitator +reimbursement +reimpositions +reimpressions +reincarnating +reincarnation +reincorporate +reinforcement +reinspections +reinspiriting +reinstalments +reinstatement +reintegrating +reintegration +reinterpreted +reinterrogate +reintroducing +reinvestments +reinvigorated +reinvigorates +rejectionists +rejuvenations +rejuvenescent +rejuvenescing +relationships +relativitists +religionaries +religionising +religionizing +religiousness +relinquishing +remeasurement +remembrancers +remilitarised +remilitarises +remilitarized +remilitarizes +remineralised +remineralises +remineralized +remineralizes +reminiscences +reminiscently +remissibility +remonstrances +remonstrantly +remonstrating +remonstration +remonstrative +remonstrators +remonstratory +remorselessly +remunerations +rencountering +rendezvousing +renegotiating +renegotiation +renominations +renormalising +renormalizing +renouncements +rensselaerite +renunciations +renversements +reoccupations +reordinations +reorientating +reorientation +repartitioned +repatriations +repercussions +repetitionary +repetitiously +rephotographs +replantations +replenishment +repossessions +reprehensible +reprehensibly +reprehensions +representable +representamen +representants +representment +reprivatising +reprivatizing +reproachfully +reproductions +reprogramming +reprographers +reptiliferous +republicanise +republicanism +republicanize +republication +repulsiveness +requisiteness +requisitioned +reregistering +resentfulness +resettlements +residentships +resistibility +resistivities +resolutioners +resolvability +resourcefully +respirometers +resplendently +respondentias +restaurateurs +restoratively +restrictively +restructuring +resupinations +resurrections +resuscitating +resuscitation +resuscitative +resuscitators +resynchronise +resynchronize +retainerships +retentionists +retentiveness +reticulations +retinoscopist +retransferred +retranslating +retranslation +retransmitted +retrenchments +retributively +retrievements +retroactively +retroactivity +retrocessions +retrofittings +retroflection +retroflexions +retrogressing +retrogression +retrogressive +retrojections +retromingency +retromingents +retrophiliacs +retropulsions +retrospecting +retrospection +retrospective +reunification +reupholstered +revaccinating +revaccination +revelationist +revendicating +revendication +reverberating +reverberation +reverberative +reverberators +reverberatory +reverentially +reversibility +reversionally +revictualling +revindicating +revindication +revisitations +revocableness +revolutionary +revolutioners +revolutionise +revolutionism +revolutionist +revolutionize +rhabdomantist +rhabdospheres +rhadamanthine +rhamphothecas +rhapsodically +rheumatically +rhinoscleroma +rhizomorphous +rhodochrosite +rhododendrons +rhodomontaded +rhodomontades +rhombohedrons +rhombporphyry +rhopalocerous +rhyparography +rhythmometers +Rickettsiales +righteousness +risorgimentos +ritualisation +ritualization +rodomontaders +rodomontading +rollerbladers +rollerblading +romanticality +romanticising +romanticizing +r�ntgenograms +r�ntgenoscopy +rottenstoning +roundabouting +roundtripping +Roxburghshire +rubbernecking +rudimentarily +rumbledethump +rumelgumption +rumlegumption +rumourmongers +Russification +rutherfordium diff --git a/com/agnibho/code/anagram/dictionary/R14.txt b/com/agnibho/code/anagram/dictionary/R14.txt new file mode 100644 index 0000000..32550ac --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R14.txt @@ -0,0 +1,281 @@ +Rabelaisianism +radialisations +radializations +radicalisation +radicalization +radiesthesists +radioastronomy +radioautograph +radiochemistry +radioresistant +radiosensitise +radiosensitive +radiosensitize +radiotelegrams +radiotelegraph +radiotelemeter +radiotelephone +radiotelephony +radioteletypes +radiotherapist +ramapithecines +rambunctiously +rampageousness +randomisations +randomizations +rangatiratanga +ranunculaceous +rapprochements +Rastafarianism +reacclimatised +reacclimatises +reacclimatized +reacclimatizes +reacquaintance +reactionarists +reaffirmations +realpolitikers +reapplications +reappointments +reapportioning +reappraisement +rearrangements +reasonableness +reattributions +rebelliousness +rebroadcasting +recalcitrating +recalcitration +recapitalising +recapitalizing +recapitulating +recapitulation +recapitulative +recapitulatory +receivableness +reciprocations +recitationists +Recklinghausen +recollectively +recolonisation +recolonization +recombinations +recommencement +recommendation +recommendatory +recommissioned +recompositions +recompressions +reconcilements +reconciliation +reconciliatory +recondensation +reconditioning +reconnaissance +reconnoiterers +reconnoitering +reconsecrating +reconsecration +reconsolidated +reconsolidates +reconstituting +reconstitution +reconstructing +reconstruction +reconstructive +reconstructors +recoverability +recrementitial +recriminations +recrystallised +recrystallises +recrystallized +recrystallizes +rectangularity +rectifications +rectilinearity +recurvirostral +redeemableness +redeliverances +redemptionists +redevelopments +redintegrating +redintegration +redissolutions +redistillation +redistributing +redistribution +redistributive +reduplications +refashionments +reflectionless +reflectiveness +reflectographs +reflectography +reflexological +reflexologists +refocillations +reforestations +reformationist +reformulations +refractometers +refractoriness +refrangibility +refrigerations +refurbishments +regardlessness +regeneratively +regimentations +registrarships +regressiveness +regularisation +regularization +regurgitations +rehabilitating +rehabilitation +rehabilitative +rehabilitators +reimbursements +reimplantation +reincarnations +reincorporated +reincorporates +reinforcements +reinstatements +reintegrations +reinterpreting +reinterrogated +reinterrogates +reintroduction +reinvigorating +reinvigoration +rejuvenescence +relentlessness +relinquishment +remarkableness +Rembrandtesque +remeasurements +remedilessness +remilitarising +remilitarizing +remineralising +remineralizing +reminiscential +remonetisation +remonetization +remonstrations +remoralisation +remoralization +remorsefulness +renegotiations +reorganisation +reorganization +reorientations +repartitioning +repetitiveness +rephotographed +replenishments +reprehensively +representamens +representation +representative +representments +reproductively +reproductivity +reprogrammable +republicanised +republicanises +republicanized +republicanizes +republications +repudiationist +requisitionary +requisitioning +requisitionist +residentiaries +resinification +resistlessness +respectabilise +respectability +respectabilize +respectfulness +responsibility +responsiveness +restitutionism +restitutionist +restorableness +restorationism +restorationist +restrainedness +restrictionist +resultlessness +resurrectional +resuscitations +resynchronised +resynchronises +resynchronized +resynchronizes +retaliationist +retinoblastoma +retinoscopists +retransferring +retranslations +retransmission +retransmitting +retrocognition +retroflections +retrogradation +retrogressions +retroreflector +retrospections +retrospectives +reunifications +reupholstering +revaccinations +revalorisation +revalorization +revelationists +revendications +revengefulness +reverberations +reversionaries +revindications +revitalisation +revitalization +revivification +revolutionised +revolutionises +revolutionists +revolutionized +revolutionizes +rewardableness +rhabdomantists +rheumatologist +rhinencephalic +rhinencephalon +Rhinocerotidae +Rhizophoraceae +rhodomontading +rhombenporphyr +rhynchophorous +rhyparographer +rhyparographic +rhytidectomies +ribonucleotide +ridiculousness +ritualisations +ritualizations +robustiousness +r�ntgenisation +r�ntgenization +r�ntgenography +Rosicrucianism +rostrocarinate +roundaboutedly +roundaboutness +rumbledethumps +rumblegumption +rummelgumption +rummlegumption +Russianisation +Russianization diff --git a/com/agnibho/code/anagram/dictionary/R15.txt b/com/agnibho/code/anagram/dictionary/R15.txt new file mode 100644 index 0000000..d8bc3c8 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R15.txt @@ -0,0 +1,136 @@ +radicalisations +radicalizations +radioautographs +radiogoniometer +radiogramophone +radiosensitised +radiosensitises +radiosensitized +radiosensitizes +radiotelegraphs +radiotelegraphy +radiotelemeters +radiotelephones +radiotherapists +rationalisation +rationalization +reacclimatising +reacclimatizing +reacquaintances +readvertisement +reafforestation +reapportionment +reappraisements +recapitulations +recollectedness +recolonisations +recolonizations +recommencements +recommendations +recommissioning +reconcilability +reconciliations +recondensations +reconnaissances +reconsecrations +reconsideration +reconsolidating +reconsolidation +reconstitutable +reconstitutions +reconstructions +reconvalescence +recoverableness +recrementitious +recrystallising +recrystallizing +redetermination +redistributions +reformationists +refortification +refrangibleness +regionalisation +regionalization +regularisations +regularizations +rehabilitations +reincorporating +reincorporation +reindustrialise +reindustrialize +reinterrogating +reinterrogation +reintroductions +reinvigorations +rejuvenescences +relinquishments +remonetisations +remonetizations +remonstratingly +remorselessness +renormalisation +renormalization +reorganisations +reorganizations +repetitiousness +rephotographing +representations +representatives +reprivatisation +reprivatization +reproachfulness +republicanising +republicanizing +repudiationists +requisitionists +resourcefulness +respectabilised +respectabilises +respectabilized +respectabilizes +respectableness +restitutionists +restorationists +restrictionists +restrictiveness +resurrectionary +resurrectionise +resurrectionism +resurrectionist +resurrectionize +resynchronising +resynchronizing +retaliationists +retransmissions +retrievableness +retrogressional +retrogressively +retroreflective +retroreflectors +retrospectively +revalorisations +revalorizations +revitalisations +revitalizations +revolutionaries +revolutionising +revolutionizing +Rhamphorhynchus +rheumatological +rheumatologists +rhinencephalons +rhombencephalon +rhombenporphyry +Rhynchobdellida +Rhynchocephalia +rhyparographers +ritualistically +riverworthiness +romanticisation +romanticization +r�ntgenotherapy +rostrocarinates +roundaboutation +roundaboutility +rudimentariness +Rumpelstiltskin diff --git a/com/agnibho/code/anagram/dictionary/R16.txt b/com/agnibho/code/anagram/dictionary/R16.txt new file mode 100644 index 0000000..a48f1f5 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R16.txt @@ -0,0 +1,42 @@ +radiogramophones +radiosensitising +radiosensitizing +rambunctiousness +rationalisations +rationalizations +recapitalisation +recapitalization +reclassification +reconcilableness +reconstructional +reincarnationism +reincarnationist +reincorporations +reindustrialised +reindustrialises +reindustrialized +reindustrializes +reintermediation +reinterpretation +reinterpretative +remilitarisation +remilitarization +remineralisation +remineralization +remunerativeness +reprehensibility +representational +representatively +reprivatisations +reprivatizations +reproductiveness +residentiaryship +respectabilising +respectabilities +respectabilizing +responsibilities +resurrectionised +resurrectionises +resurrectionized +resurrectionizes +rhinopharyngitis diff --git a/com/agnibho/code/anagram/dictionary/R17.txt b/com/agnibho/code/anagram/dictionary/R17.txt new file mode 100644 index 0000000..e5afe17 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R17.txt @@ -0,0 +1,19 @@ +radioluminescence +radiometeorograph +radiotherapeutics +rationalistically +reconstructionary +reconstructionist +recrystallisation +recrystallization +reindustrialising +reindustrializing +reinterpretations +remilitarisations +remilitarizations +representationism +representationist +resurrectionising +resurrectionizing +resynchronisation +resynchronization diff --git a/com/agnibho/code/anagram/dictionary/R18.txt b/com/agnibho/code/anagram/dictionary/R18.txt new file mode 100644 index 0000000..0353f78 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R18.txt @@ -0,0 +1,2 @@ +radiocommunication +representativeness diff --git a/com/agnibho/code/anagram/dictionary/R19.txt b/com/agnibho/code/anagram/dictionary/R19.txt new file mode 100644 index 0000000..0fa79c3 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R19.txt @@ -0,0 +1,3 @@ +reindustrialisation +reindustrialization +representationalism diff --git a/com/agnibho/code/anagram/dictionary/R2.txt b/com/agnibho/code/anagram/dictionary/R2.txt new file mode 100644 index 0000000..5adefb5 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R2.txt @@ -0,0 +1,3 @@ +Ra +re +Rh diff --git a/com/agnibho/code/anagram/dictionary/R3.txt b/com/agnibho/code/anagram/dictionary/R3.txt new file mode 100644 index 0000000..8ae31fd --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R3.txt @@ -0,0 +1,65 @@ +rad +Rae +Raf +rag +rah +rai +raj +ram +ran +rap +ras +rat +raw +rax +ray +rec +red +ree +ref +Reg +reh +rem +ren +rep +res +ret +rev +rew +rex +rez +rho +ria +rib +rid +rig +rim +rin +Rio +rip +rit +Rix +riz +rob +roc +rod +roe +rok +rom +Ron +roo +Ros +rot +row +Roy +Roz +rub +ruc +rud +rue +rug +rum +run +rut +rya +rye diff --git a/com/agnibho/code/anagram/dictionary/R4.txt b/com/agnibho/code/anagram/dictionary/R4.txt new file mode 100644 index 0000000..1c87514 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R4.txt @@ -0,0 +1,253 @@ +rabi +raca +race +rach +rack +racy +rads +raff +raft +raga +rage +ragg +ragi +rags +rahs +Rahu +raid +rail +rain +rait +raja +rake +raki +raku +rale +Rama +rami +ramp +rams +rana +rand +rang +rani +rank +rant +rape +raps +rapt +rare +rase +rash +rasp +rata +rate +rath +rats +ratu +raun +rave +Ravi +rawn +raws +rays +Raza +raze +razz +read +reak +real +ream +rean +reap +rear +reck +recs +redd +rede +reds +reed +reef +reek +reel +reen +rees +refs +reft +rego +rehs +reif +rein +reis +rely +rems +rend +Ren� +Reno +rens +rent +reny +repo +repp +reps +rest +rete +rets +revs +rhea +rhos +Rhum +rhus +Rhys +rial +rias +ribs +rice +rich +rick +ricy +ride +rids +riel +riem +rife +riff +rift +Riga +rigg +rigs +rile +rill +rima +rime +rims +rimu +rimy +rind +rine +ring +rink +rins +riot +ripe +rips +ript +rise +risk +risp +Riss +Rita +rite +rits +ritt +Ritz +riva +rive +rivo +riza +road +roam +roan +roar +robe +robs +roch +rock +rocs +rode +rods +roed +Roeg +roes +roil +roin +roji +roke +roks +roky +role +Rolf +roll +roma +Rome +Romo +romp +roms +Romy +Rona +rone +rong +rood +roof +rook +room +roon +roop +roos +root +rope +ropy +rore +rort +rory +Rosa +rose +Ross +rosy +rota +rote +Roth +roti +rotl +rots +rou� +roup +rout +roux +rove +Rowe +rows +rube +rubs +ruby +ruck +rucs +rudd +rude +ruds +rued +rues +ruff +rugs +Ruhr +ruin +rukh +rule +ruly +rump +rums +rund +rune +rung +runs +runt +rurp +ruru +rusa +ruse +rush +rusk +Russ +rust +Ruta +ruth +ruts +ryal +Ryan +ryas +ryes +ryfe +ryke +rynd +ryot +rype diff --git a/com/agnibho/code/anagram/dictionary/R5.txt b/com/agnibho/code/anagram/dictionary/R5.txt new file mode 100644 index 0000000..b163104 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R5.txt @@ -0,0 +1,518 @@ +rabat +rabbi +rabic +rabid +rabis +raced +racer +races +rache +racks +racon +radar +radii +radio +radix +radon +raffs +rafts +ragas +raged +ragee +rager +rages +ragga +raggs +raggy +rahed +raids +raile +rails +Raine +rains +rainy +raise +raita +raits +rajah +rajas +Rajiv +raked +rakee +raker +rakes +rakis +rales +rally +Ralph +ramal +Raman +Rambo +ramee +ramen +ramie +ramin +ramis +rammy +ramps +ramus +ranas +rance +ranch +rands +randy +ranee +range +rangy +ranis +ranks +rants +raped +raper +rapes +raphe +rapid +rarer +rased +rases +rasps +raspy +rasse +Rasta +ratan +ratas +ratch +rated +ratel +rater +rates +rathe +raths +ratio +ratoo +ratty +ratus +rauns +raved +ravel +raven +raver +raves +ravin +rawer +rawly +rawns +raxed +raxes +rayah +rayed +rayle +rayon +razed +razee +razes +razoo +razor +reach +react +Reade +reads +ready +reaks +realm +realo +reals +reams +reamy +reans +reaps +rearm +rears +reast +reata +reate +reave +rebbe +rebec +rebel +rebid +rebit +rebus +rebut +recap +recce +recco +reccy +r�cit +recks +recta +recti +recto +recur +redan +redds +reddy +reded +redes +redia +redip +redly +redox +reech +reeds +reedy +reefs +reeks +reeky +reels +reens +reest +reeve +refel +refer +reffo +refit +regal +Regan +regar +Reger +reggo +r�gie +regma +regur +rehab +Reich +reify +reign +reiki +Reims +reins +reist +Reith +reive +rejig +rej�n +relax +relay +relet +relic +relit +reman +remen +remex +remit +remix +Remus +renal +renay +rends +Ren�e +renew +renga +renig +renin +renne +rente +rents +repay +repel +repla +reply +repos +repot +repps +repro +reran +rerun +resat +resay +reset +resin +resit +rests +resty +retch +retes +retie +retro +retry +reuse +revel +revet +revie +revue +rheas +Rhein +rheum +Rhian +rhine +rhino +Rhoda +rhody +rhomb +Rhona +rhone +rhumb +rhyme +rhyta +rials +riant +riata +ribby +Ribes +Ricci +riced +ricer +rices +ricey +richt +ricin +ricks +Ricky +rider +rides +ridge +ridgy +riels +riems +rieve +rifer +riffs +rifle +rifts +rifty +Rigel +riggs +right +rigid +Rigil +rigol +rigor +Rikki +riled +riles +Riley +Rilke +rille +rills +rimae +rimed +rimer +rimes +rimus +rinds +rindy +Ringo +rings +rinks +rinse +Rioja +riots +riped +ripen +riper +ripes +Ripon +risen +riser +rises +rishi +risks +risky +risps +risus +rites +ritts +ritzy +rival +rivas +rived +rivel +riven +river +rives +rivet +rivos +riyal +rizas +roach +roads +Roald +roams +roans +roars +roary +roast +robed +robes +robin +roble +robot +Robyn +rocks +rocky +Roddy +roded +rodeo +rodes +Rodin +Roger +Roget +rogue +roguy +roils +roily +roist +roked +roker +rokes +rolag +roles +Rolfe +Rollo +rolls +romal +roman +romas +Romeo +Romic +romps +Ronay +ronde +rondo +roneo +rones +ronin +roods +roofs +roofy +rooks +rooky +rooms +roomy +roons +roops +roopy +roosa +roose +roost +roots +rooty +roped +roper +ropes +ropey +roque +roral +rores +roric +rorid +rorie +rorts +rorty +rosed +roses +roset +Rosie +rosin +rotal +rotas +rotch +roted +rotes +rotis +rotls +rotor +Rouen +rou�s +rouge +rough +round +roups +roupy +rouse +roust +route +routh +routs +roved +rover +roves +rowan +rowdy +rowed +rowel +rowen +rower +rowth +royal +Royce +royst +ruana +rubai +Rubia +Rubin +ruble +Rubus +ruche +rucks +rudas +rudds +ruddy +ruder +Rudge +rudie +ruffe +ruffs +Rufus +rugby +ruggy +ruing +ruins +rukhs +ruled +ruler +rules +rumal +Ruman +rumba +rumbo +rumen +Rumex +rumly +rummy +rumor +rumps +rumpy +runch +runds +runed +runes +rungs +runic +runny +runts +runty +rupee +rupia +rural +rurps +rurus +ruses +rushy +rusks +rusma +rusts +rusty +ruths +rutin +rutty +ryals +rybat +Rydal +Ryder +ryked +rykes +rynds +ryots +ryper diff --git a/com/agnibho/code/anagram/dictionary/R6.txt b/com/agnibho/code/anagram/dictionary/R6.txt new file mode 100644 index 0000000..2a42b3b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R6.txt @@ -0,0 +1,985 @@ +rabato +rabats +rabbet +rabbin +rabbis +rabbit +rabble +rabies +raceme +racers +Rachel +raches +rachis +racial +racier +racily +Racine +racing +racism +racist +racked +racker +racket +racons +racoon +radars +raddle +radial +radian +radios +radish +radium +radius +Radnor +radome +radula +Raetia +rafale +raffia +raffle +rafted +rafter +ragers +ragged +raggee +raggle +raging +ragini +raglan +ragman +ragmen +ragout +ragtop +raguly +Ragusa +rahing +raided +raider +railed +railer +railes +railly +rained +raised +raiser +raises +raisin +raitas +raited +raiyat +rajahs +Rajani +Rajesh +Rajkot +Rajput +rakees +rakers +rakery +raking +rakish +Rallus +rallye +ramate +ramble +ramcat +rameal +ramean +Rameau +ramees +ramens +Ramesh +ramies +ramify +ramins +Ramism +Ramist +rammed +rammer +ramose +ramous +ramped +ramper +ramrod +Ramsay +Ramsey +ramson +ramuli +ranced +rancel +rances +Ranchi +rancho +rancid +rancor +Randal +randan +randed +randem +randie +random +ranees +ranged +ranger +ranges +ranine +ranked +ranker +rankle +rankly +ransel +ransom +ranted +ranter +ranula +Ranulf +rapers +raphes +Raphia +raphis +rapids +rapier +rapine +raping +rapist +rapped +rappee +rappel +rapper +raptly +raptor +Raquel +rarefy +rarely +rarest +raring +rarity +rascal +rasher +rashes +rashly +rasing +rasped +rasper +rasses +Rastas +raster +rasure +ratans +ratbag +ratels +raters +rather +ratify +ratine +rating +ration +ratios +ratite +ratlin +ratoon +ratoos +rattan +ratted +ratten +ratter +rattle +rattly +ratton +raucid +raucle +raught +raunch +raunge +ravage +ravels +ravens +ravers +ravine +raving +ravins +ravish +rawest +rawing +rawish +raxing +rayahs +raying +rayles +raylet +razeed +razees +razing +razoos +razors +razure +razzed +razzes +razzia +razzle +reacts +reader +Reagan +realer +realia +really +realms +realos +realty +reamed +reamer +reaped +reaper +reared +rearer +rearly +rearms +reason +reasts +reasty +reatas +reates +reaved +reaver +reaves +reback +rebate +rebato +rebbes +rebeck +rebecs +rebels +rebids +rebind +rebite +reboil +reboot +rebore +reborn +rebozo +rebuff +rebuke +rebury +rebuts +recall +recant +recaps +recast +recced +recces +reccos +recede +recent +recept +recess +Recife +recipe +recite +r�cits +recked +reckon +recode +recoil +recoin +recopy +record +recoup +rectal +rector +rectos +rectum +rectus +recure +recurs +recuse +redact +redans +redate +redcap +redded +redden +redder +reddle +redeal +redeem +redeye +rediae +redial +reding +redips +redleg +redowa +redraw +redrew +redtop +reduce +reduit +redwud +reebok +reechy +reeded +reeden +reeder +reefed +reefer +reeked +reekie +reeled +reeler +reests +reesty +reeved +reeves +reface +refect +refers +reffed +reffos +refile +refill +refine +refits +reflag +reflet +reflex +reflow +reflux +refold +refoot +reform +refuel +refuge +refund +refuse +refute +regain +regale +regals +regard +regave +regent +regest +reggae +Reggie +regime +regina +region +regius +regive +reglet +regnal +regoes +regret +regrew +regrow +regula +regulo +rehang +rehash +rehear +reheat +reheel +rehung +reigns +reined +reises +reists +reiter +reived +reiver +reives +reject +rejigs +rejoin +relaid +relate +relays +relent +relets +relics +relict +relied +relief +relier +relies +reline +relish +relive +reload +reluct +relume +remade +remain +remake +remand +remans +remark +remble +remede +remedy +remens +remind +remint +remise +remiss +remits +remora +remote +remove +remuda +rename +Renata +render +renege +renews +rengas +renied +renigs +Rennes +rennet +rennin +Renoir +renown +rental +rented +renter +rentes +renvoi +renvoy +reopen +repack +repaid +repair +repand +repass +repast +repays +repeal +repeat +repels +repent +repine +replan +replay +replum +repone +report +repose +repost +repots +repped +repros +repses +repugn +repulp +repure +repute +requit +rerail +reread +reroof +reruns +resaid +resale +resays +rescue +reseal +reseat +r�seau +resect +Reseda +resell +resent +resets +reship +reside +resign +resile +resins +resist +resits +resold +resole +resorb +resort +rested +restem +rester +result +resume +retail +retain +retake +retama +retard +retell +retene +retial +retied +reties +retile +retime +retina +retire +retold +retook +retool +retort +retour +retral +retree +retrim +retrod +retros +retted +retund +retune +returf +return +retuse +retype +Reuben +reurge +reused +reuses +Reuter +revamp +reveal +revels +reverb +revere +revers +revert +revery +revest +revets +r�veur +revied +revies +review +revile +revise +revive +revoke +revolt +revues +revved +reward +rewarm +rewash +rewind +rewire +reword +rework +rewrap +Rexine +rezone +rhaphe +rhebok +Rheims +rhesus +rhetor +rheums +rheumy +rhexes +rhexis +Rheydt +rhinal +rhines +rhinos +rhizic +Rhodes +rhodic +rhodie +rhombi +rhombs +Rhonda +rhones +rhotic +rhumba +rhumbs +rhuses +rhymed +rhymer +rhymes +rhythm +rhyton +Rialto +riancy +riatas +ribald +riband +ribaud +ribbed +Ribble +ribbon +ribibe +riblet +ribose +Riccia +ricers +richen +richer +riches +Richie +richly +richts +ricing +ricked +ricker +rickey +rickle +rickly +rictal +rictus +ridded +ridden +ridder +riddle +rident +riders +ridged +ridgel +ridger +ridges +ridgil +riding +Ridley +Rienzi +rieved +riever +rieves +rifely +rifest +riffle +rifled +rifler +rifles +rifted +rigged +rigger +righto +rights +riglin +rigoll +rigols +rigors +rigour +rigout +Rijeka +riling +rilled +rilles +rillet +rimers +rimier +riming +Rimini +rimmed +rimose +rimous +rinded +ringed +ringer +rinked +rinsed +rinser +rinses +rioted +rioter +riotry +ripely +ripens +ripers +ripest +riping +ripped +ripper +ripple +ripply +Rippon +riprap +risers +rishis +rising +risked +risker +risped +risqu� +ritted +ritter +ritual +Ritzes +rivage +rivals +rivels +Rivera +rivers +rivery +rivets +riving +Riyadh +riyals +roadie +roamed +roamer +roared +roarer +roarie +roasts +robalo +robbed +robber +Robbie +Robert +Robina +robing +robins +robles +robots +Robson +robust +roches +rochet +rocked +rocker +rocket +rococo +rodded +rodent +rodeos +roding +rodman +rodmen +Rodney +roemer +Rogers +rogued +rogues +roiled +R�is�n +roists +rokers +roking +rolags +Roland +rolfer +rolled +roller +Romaic +romaji +romals +romans +Romany +Romeos +Romish +Rommel +Romney +romped +romper +Ronald +rondel +rondes +rondos +roneos +Ronnie +ronyon +roofed +roofer +rooked +rookie +roomed +roomer +roomie +Rooney +rooped +roopit +roosed +rooses +roosts +rooted +rooter +rootle +rootsy +ropers +ropery +ropier +ropily +roping +roquet +rorter +rosace +rosary +roscid +roseal +rosery +rosets +rosety +rosier +rosily +Rosina +rosing +rosins +rosiny +rosser +Rosten +roster +Rostov +rostra +rosula +rotary +rotate +rotche +rotgut +rother +Rothko +roting +rotolo +rotors +rottan +rotted +rotten +rotter +rotula +rotund +rouble +roucou +rouged +rouges +roughs +rought +roughy +Rouman +rounce +rouncy +rounds +rouped +roupit +roused +rouser +rouses +rousts +routed +router +routes +rovers +roving +rowans +rowels +Rowena +rowens +rowers +rowing +Rowley +Roxana +Roxane +royals +roysts +rozzer +Ruair� +ruanas +Ruanda +rubati +rubato +rubbed +rubber +rubble +rubbly +Rubbra +rubefy +Rubens +rubied +rubies +rubify +Rubina +rubine +rubles +rubric +ruched +ruches +rucked +ruckle +ruckus +rucola +rudder +ruddle +rudely +rudery +rudest +rudies +rudish +Rudolf +rueful +rueing +ruelle +ruffed +ruffes +ruffin +ruffle +rufous +rugate +rugged +rugger +rugose +rugous +ruined +ruiner +ruings +rulers +ruling +rumals +rumbas +rumble +rumbly +rumbos +rumina +rumkin +rummer +rumors +rumour +rumped +Rumper +rumple +rumply +rumpus +Runcie +rundle +runkle +runlet +runnel +runner +runnet +runrig +runted +runway +Runyon +rupees +Rupert +rupiah +rupias +ruscus +rushed +rushee +rushen +rusher +rushes +rusine +Ruskin +rusmas +russel +russet +russia +Russki +Russky +rusted +rustic +rustle +rustre +rutile +rutted +rutter +Rwanda +rybats +ryking +ryokan +rypeck diff --git a/com/agnibho/code/anagram/dictionary/R7.txt b/com/agnibho/code/anagram/dictionary/R7.txt new file mode 100644 index 0000000..9cc41f2 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R7.txt @@ -0,0 +1,1400 @@ +rabanna +rabatos +rabatte +rabbets +rabbins +rabbits +rabbity +rabbled +rabbler +rabbles +rabboni +rabidly +raccoon +racemed +racemes +racemic +raceway +Rachael +rachial +Rachman +raciest +racings +racists +rackers +rackets +rackett +rackety +Rackham +racking +racloir +racoons +racquet +raddled +raddles +radiale +radials +radians +radiant +radiata +radiate +radical +radicel +radices +radicle +radioed +radixes +radomes +radulae +radular +Raeburn +Raelene +Raetian +rafales +raffias +raffish +raffled +raffler +raffles +rafters +rafting +raftman +raftmen +ragbolt +rageful +raggedy +raggees +raggery +ragging +raggled +raggles +raginis +raglans +ragouts +ragtime +ragtops +raguled +ragweed +ragwork +ragworm +ragwort +raiders +raiding +railbed +railbus +railers +railing +railman +railmen +railway +raiment +rainbow +rainier +raining +raisers +raising +raisins +raiting +raiyats +Rajpoot +Rajputs +rakings +rakshas +Raleigh +rallied +rallier +rallies +ralline +rallyes +Ramadan +ramakin +Rambert +rambled +rambler +rambles +ramcats +ramekin +ramenta +rameous +Rameses +Ramilie +rammers +rammies +ramming +rammish +rampage +rampant +rampart +rampers +rampick +rampike +ramping +rampion +rampire +ramrods +ramsons +ramstam +ramular +ramulus +rancels +ranched +rancher +ranches +ranchos +rancing +rancour +Randall +randans +randems +randier +randies +randing +randoms +rangers +rangier +ranging +rangoli +Rangoon +Ranidae +rankers +rankest +Rankine +ranking +rankled +rankles +ransack +ransels +Ransome +ransoms +ranters +ranting +ranulas +Ranulph +raoulia +Raphael +raphide +rapider +rapidly +rapiers +rapines +rapists +raploch +rappees +rappels +rappers +rapping +Rappist +Rappite +rapport +raptors +rapture +rarebit +rascals +raschel +rashers +rashest +Rasores +raspers +raspier +rasping +rasters +rastrum +rasures +ratable +ratably +ratafia +ratbags +ratches +ratchet +ratfink +Rathaus +rathest +ratines +ratings +rations +Ratitae +ratlike +ratline +ratling +ratlins +ratoons +ratpack +rattans +ratteen +rattens +ratters +rattery +rattier +ratting +rattish +rattled +rattler +rattles +rattlin +rattons +raucler +raucous +raunchy +ravaged +ravager +ravages +ravelin +ravened +ravener +Ravenna +ravined +ravines +ravings +ravioli +rawbone +rawhead +rawhide +rawings +rawness +Raybans +rayless +raylets +Raymond +razored +razures +razzias +razzing +razzles +reached +reacher +reaches +reacted +reactor +readapt +readers +readied +readier +readies +readily +reading +readmit +readopt +reagent +realest +realgar +realign +realise +realism +realist +reality +realize +reallie +reallot +realtie +Realtor +reamend +reamers +reaming +reannex +reapers +reaping +reapply +Reardon +rearers +rearing +rearise +rearmed +rearose +reasons +reasted +R�aumur +reavers +reaving +reawake +reawoke +rebacks +rebadge +rebated +rebater +rebates +Rebecca +rebecks +rebinds +rebirth +rebites +rebloom +reboant +reboils +reboots +rebored +rebores +rebound +rebozos +rebrace +rebuffs +rebuild +rebuilt +rebuked +rebuker +rebukes +rebuses +recalls +recants +recasts +recatch +recceed +reccied +reccies +receded +recedes +receipt +receive +recency +recense +recepts +rechart +rechate +recheat +recheck +recipes +recital +recited +reciter +recites +recking +reckons +reclaim +r�clame +reclimb +recline +reclose +recluse +recoded +recodes +recoils +recoins +records +recount +recoups +recover +recross +recruit +rectify +rection +rectors +rectory +rectrix +rectums +recured +recures +recurve +recused +recuses +recycle +redacts +redated +redates +redback +redbird +Redburn +redcaps +redcoat +reddens +redders +reddest +redding +reddish +reddled +reddles +redeals +redealt +redeems +redeyes +redfish +Redford +redials +redlegs +redneck +redness +redoubt +redound +redowas +redpoll +redraft +redrawn +redraws +redress +redrive +redrove +Redruth +redsear +reduced +reducer +reduces +reduits +redwing +redwood +reeboks +reeched +reeches +reeders +reedier +reeding +reefers +reefing +reekier +reeking +reelers +reeling +reested +reeving +refaced +refaces +refects +referee +reffing +refiled +refiles +refills +refined +refiner +refines +reflags +reflate +reflect +reflets +refloat +reflows +refocus +refolds +refoots +reforms +refound +refract +refrain +reframe +refresh +refroze +refuels +refuged +refugee +refuges +refugia +refunds +refusal +refused +refuser +refuses +refutal +refuted +refuter +refutes +regains +regaled +regales +regalia +regally +regards +regatta +regence +regency +regents +reggoes +regimen +regimes +reginal +reginas +regions +regiven +regives +reglets +regmata +regnant +regorge +regrade +regrant +regrate +regrede +regreet +regress +regrets +regrind +regroup +regrown +regrows +regulae +regular +regulus +rehangs +reheard +rehears +reheats +reheels +rehouse +reified +reifies +Reigate +reigned +reining +reinter +reissue +reisted +reiters +reivers +reiving +rejects +rejoice +rejoins +rejoneo +rejones +rejourn +rejudge +relabel +rel�che +relapse +related +relater +relates +relator +relaxed +relaxer +relaxes +relaxin +relayed +relearn +release +relents +reliant +relicts +reliefs +relieve +relievo +relight +relined +relines +relique +relived +reliver +relives +rellish +reloads +relucts +relumed +relumes +relying +remades +Remagen +remains +remakes +remands +remanet +remani� +remarks +remarry +rematch +remblai +rembled +rembles +remeded +remedes +remercy +remerge +remiges +reminds +remints +remised +remises +remixed +remixes +remnant +remodel +remoras +remorse +remoter +remould +remount +removal +removed +remover +removes +remuage +remudas +remueur +renague +renamed +renames +Renault +renayed +renders +rending +reneged +reneger +reneges +renegue +renewal +renewed +renewer +Renfrew +rennets +renowns +rentals +renters +rentier +renting +renvois +renvoys +renying +reoccur +reopens +reorder +repacks +repaint +repairs +repaper +repasts +repeals +repeats +repents +repined +repiner +repines +repique +replace +replans +replant +replays +replete +replevy +replica +replied +replier +replies +repoint +repoman +repomen +reponed +repones +reports +reposal +reposed +reposes +reposit +reposts +repping +repress +reprice +reprime +reprint +reprise +reproof +reprove +reptant +reptile +repugns +repulps +repulse +repunit +repured +repures +reputed +reputes +request +requiem +require +requite +requote +rerails +rereads +reredos +reroofs +reroute +resales +rescale +rescind +rescore +rescued +rescuer +rescues +reseals +reseats +r�seaus +r�seaux +resects +reseize +resells +resents +reserve +reshape +reships +resiant +resided +resider +resides +residua +residue +resigns +resiled +resiles +resined +resiner +resists +Resnais +resoled +resoles +resolve +resorbs +resorts +resound +respeak +respect +respell +respire +respite +respond +respray +restaff +restage +restart +restate +resters +restful +restiff +resting +restive +restock +restore +restyle +results +resumed +resumes +resurge +retable +retails +retains +retaken +retaker +retakes +retamas +retards +retched +retches +retells +rethink +retiary +reticle +retiled +retiles +retimed +retimes +retinae +retinal +retinas +retinol +retinue +retiral +retired +retiree +retirer +retires +retitle +retools +retorts +retouch +retours +retrace +retract +retrain +retrait +retread +retreat +retrees +retrial +retried +retries +retrims +retsina +rettery +retting +retunds +retuned +retunes +returfs +returns +retying +retyped +retypes +reunify +reunion +reunite +reurged +reurges +reusing +Reuters +reutter +revalue +revamps +reveals +reveled +reveler +revelry +revenge +revenue +reverbs +revered +reverer +reveres +reverie +reverse +reversi +reverso +reverts +revests +r�veurs +r�veuse +reviews +reviled +reviler +reviles +revisal +revised +reviser +revises +revisit +revisor +revival +revived +reviver +revives +revivor +revoked +revokes +revolts +revolve +revving +revying +rewards +rewarms +reweigh +rewinds +rewired +rewires +rewords +reworks +rewound +rewraps +rewrite +rewrote +reynard +Reynaud +Reynold +rezoned +rezones +rhabdom +rhabdus +rhachis +Rhaetia +Rhaetic +Rhamnus +rhaphes +rhaphis +rhatany +rheboks +Rhemish +Rhemist +Rhenish +rhenium +rhetors +rheumed +rhizine +rhizoid +rhizome +Rhodian +rhodies +rhodium +rhodora +rhodous +rhombic +rhomboi +rhombos +rhombus +rhonchi +Rhondda +rhubarb +rhumbas +rhymers +rhyming +rhymist +rhythms +rhytina +ribalds +ribands +ribband +ribbier +ribbing +ribbons +ribbony +ribcage +ribible +ribless +riblets +riblike +ribston +ribwork +ribwort +Richard +richens +richest +Richmal +richted +richter +Ricinus +rickers +rickets +rickety +rickeys +ricking +rickles +ricksha +ricotta +ridable +ridders +ridding +riddled +riddler +riddles +ridered +ridgels +ridgers +ridgier +ridgils +ridging +ridings +ridotto +riempie +rievers +rieving +riffled +riffler +riffles +riflers +rifling +rifting +riggald +riggers +rigging +riggish +righted +righten +righter +rightly +rightos +rigidly +rigling +riglins +rigolls +rigours +rigouts +Rigsdag +Rigveda +rikishi +Riksdag +Riksm�l +rilievi +rilievo +rillets +rilling +Rimbaud +rimiest +rimless +rimming +Rinaldo +rinding +ringbit +ringent +ringers +ringgit +ringing +ringlet +ringman +ringmen +ringway +rinking +rinning +rinsers +rinsing +rioters +rioting +riotous +ripened +ripieni +ripieno +riposte +rippers +rippier +ripping +rippled +rippler +ripples +ripplet +ripraps +ripstop +riptide +risible +risings +riskers +riskful +riskier +riskily +risking +risotto +risping +Rissian +rissole +risuses +ritters +ritting +rituals +ritzier +rivages +rivalry +rivered +riveret +riveted +riveter +riviera +rivi�re +rivulet +roached +roaches +roadies +roading +roadman +roadmen +roadway +roamers +roaming +Roanoke +roarers +roaring +roasted +roaster +robalos +Robards +robbers +robbery +robbing +Robbins +Roberta +Roberts +Robeson +robings +robinia +robotic +robusta +rochets +Rockall +rockers +rockery +rockets +rockier +Rockies +rockily +rocking +rocklay +rococos +rocquet +Roddick +rodding +rodents +Rodgers +rodings +rodless +rodlike +Rodrigo +rodsman +rodsmen +rodster +roebuck +Roedean +roemers +roguery +roguing +roguish +roilier +roiling +roisted +roister +rokelay +rokkaku +rolfers +Rolfing +rollbar +rollers +rollick +rolling +Rollins +rollmop +rollock +Romagna +romaika +romaine +romance +Romanes +Romania +Romanic +Romanov +Romansh +romaunt +Rommany +romneya +rompers +romping +rompish +Romulus +rondeau +rondels +rondino +rondure +roneoed +r�ntgen +roofers +roofing +rooibos +rooinek +rookery +rookies +rooking +rookish +roomers +roomful +roomier +roomies +roomily +rooming +rooping +roosing +roosted +rooster +rootage +rooters +rootier +rooting +rootled +rootles +rootlet +ropable +ropeway +ropiest +ropings +roquets +rorqual +rorters +Rosabel +rosaces +rosalia +Rosalie +Rosanna +Rosario +Roscian +Roscius +roseate +rosehip +rosella +roselle +roseola +Rosetta +rosette +rosetty +rosiers +rosiest +rosined +rosolio +rossers +Rossini +Rostand +rosters +Rostock +rostral +rostrum +rosulas +rotated +rotates +rotator +rotches +rotchie +rotguts +rotifer +rotolos +Rotorua +rottans +rottens +rotters +rotting +rotulas +rotunda +rotunds +Rouault +Roubaix +roubles +roughed +roughen +rougher +roughie +roughly +rouging +rouille +roulade +rouleau +rounces +rounded +roundel +rounder +roundle +roundly +roupier +rouping +rousant +rousers +rousing +Roussel +rousted +rouster +routers +routhie +routine +routing +routous +rovings +rowable +rowboat +rowdier +rowdies +rowdily +Rowland +rowlock +Roxanne +royalet +royally +royalty +roysted +royster +rozelle +rozzers +rubatos +rubbers +rubbery +rubbing +rubbish +rubbles +rubdown +rubella +rubeola +rubicon +rubious +rubrics +rubying +ruching +rucking +ruckled +ruckles +ruction +rudases +rudders +ruddied +ruddier +ruddies +ruddily +ruddled +ruddles +ruddock +ruderal +rudesby +Rudolph +Rudyard +ruelles +ruellia +ruffian +ruffing +ruffled +ruffler +ruffles +rufiyaa +rugging +ruinate +ruiners +ruining +ruinous +rulable +rulered +rulings +rullion +rullock +Rumania +rumbled +rumbler +rumbles +rumkins +rummage +rummers +rummest +rummier +rummily +rummish +rumness +rumours +rumpies +rumping +rumpled +rumples +Rumpole +runaway +runches +Runcorn +rundale +rundled +rundles +rundlet +runflat +runkled +runkles +runlets +runnels +runners +runnets +runnier +running +runnion +runrigs +runtier +runtish +runways +rupiahs +rupture +rurally +rusalka +Rushdie +rushees +rushers +rushier +rushing +Russell +russels +russets +russety +Russian +russias +Russify +Russkis +rustics +rustier +rustily +rusting +rustled +rustler +rustles +rustred +rustres +Ruthene +ruthful +Rutland +ruttier +rutting +ruttish +Rwandan +ryokans +rypecks diff --git a/com/agnibho/code/anagram/dictionary/R8.txt b/com/agnibho/code/anagram/dictionary/R8.txt new file mode 100644 index 0000000..79d93e3 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R8.txt @@ -0,0 +1,1545 @@ +rabatine +rabatted +rabattes +rabbeted +rabbinic +rabbited +rabbiter +rabbitry +rabblers +rabbling +rabbonis +Rabelais +rabidity +racahout +raccoons +racegoer +racemate +racemise +racemism +racemize +racemose +racepath +raceways +rachides +rachilla +rachises +rachitic +rachitis +racially +raciness +racketed +racketer +racketry +racketts +rackings +rackwork +raclette +racloirs +Racovian +racquets +raddling +Radetzky +radiales +radialia +radially +radiance +radiancy +radiants +radiated +radiates +radiator +radicals +radicant +radicate +radicels +radicles +radicule +radioing +radishes +radiuses +radulate +radwaste +rafflers +raffling +raftered +raftsman +raftsmen +ragbolts +raggedly +raggings +raggling +ragingly +Ragnar�k +ragouted +ragstone +ragtimer +ragtimes +ragweeds +ragwoman +ragwomen +ragworms +ragworts +railcard +railhead +railings +raillery +railless +raillies +railroad +railways +raiments +rainbows +rainbowy +raincoat +raindate +raindrop +rainfall +rainiest +rainless +rainwear +raisable +raisonn� +rajaship +Rajpoots +rakehell +rakeries +rakishly +rakshasa +Rallidae +ralliers +rallying +rallyist +Ramadhan +ramakins +Ramayana +ramblers +rambling +Ramboism +rambutan +ramekins +ramentum +ramequin +ramified +ramifies +ramiform +Ramilies +Ramillie +rampaged +rampages +rampancy +ramparts +rampicks +rampikes +rampions +rampires +Rampling +rampsman +rampsmen +Ramsgate +ramulose +ramulous +ranarian +ranarium +ranchero +ranchers +ranching +ranchman +ranchmen +randiest +Randolph +randomly +rangiest +raniform +rankings +rankling +rankness +ransacks +ransomed +ransomer +rapacity +raphania +Raphanus +raphides +rapidest +rapidity +raplochs +rapparee +rapports +Raptores +raptured +raptures +rarebits +rarefied +rarefies +rareness +rarities +rascally +rascasse +raschels +rashness +rasorial +raspiest +raspings +Rasputin +Rasselas +Rastaman +Rastamen +rastrums +ratafias +rataplan +ratchets +rateable +rateably +ratfinks +Rathbone +rathripe +ratified +ratifier +ratifies +rational +rationed +ratlines +ratlings +ratooned +ratooner +ratproof +ratsbane +ratteens +rattened +rattiest +Rattigan +rattlers +rattline +rattling +rattlins +rauclest +ravagers +ravaging +ravelins +ravelled +raveners +ravening +ravenous +ravingly +ravining +raviolis +ravished +ravisher +ravishes +rawboned +rawheads +rawhides +Rawlplug +Rayleigh +razeeing +razmataz +razoring +reabsorb +reachers +reaching +reactant +reacting +reaction +reactive +reactors +readable +readably +readapts +readiest +readings +readjust +readmits +readopts +readvise +readying +reaedify +reaffirm +reagency +reagents +realigns +realised +realiser +realises +realists +realized +realizer +realizes +reallots +realness +realties +Realtors +reamends +reanswer +reappear +rearisen +rearises +rearmice +rearming +rearmost +rearouse +rearrest +rearward +reascend +reascent +reasoned +reasoner +reassert +reassess +reassign +reassume +reassure +reasting +reattach +reattain +reawaken +reawakes +rebacked +rebadged +rebadges +rebating +rebatoes +rebeldom +rebelled +rebeller +rebellow +rebirths +rebiting +reblooms +reboiled +rebooted +reboring +reborrow +rebounds +rebraced +rebraces +rebuffed +rebuilds +rebukers +rebuking +reburial +reburied +reburies +rebuttal +rebutted +rebutter +rebutton +recalled +recanted +recanter +recapped +recaptor +recaught +recceing +reccying +receding +receipts +receival +received +receiver +receives +recensed +recenses +recently +recentre +receptor +recessed +recesses +recharge +recharts +rechated +rechates +recheats +rechecks +recision +recitals +reciters +reciting +reckless +reckling +reckoned +reckoner +reclaims +reclimbs +reclined +recliner +reclines +reclosed +recloses +reclothe +recluses +recoding +recoiled +recoiler +recoined +r�collet +recommit +reconvey +recopied +recopies +recorded +recorder +recounts +recouped +recourse +recovers +recovery +recreant +recreate +recruits +rectally +rections +rectitic +rectitis +rectoral +rectress +recuring +recurred +recurved +recurves +recusant +recusing +recycled +recycles +redacted +redactor +redargue +redating +redbrick +redcoats +reddenda +reddendo +reddened +reddings +Redditch +reddling +redeemed +redeemer +redefine +redeless +redeploy +redesign +Redgrave +redipped +redirect +redistil +redivide +redolent +redouble +redoubts +redounds +redpolls +redrafts +redriven +redrives +redshire +redshort +reducers +reducing +reduviid +redwings +redwoods +reeching +reedbuck +reediest +reedings +reedling +reefings +reekiest +reelings +reesting +refacing +refected +refelled +refereed +referees +referent +referral +referred +referrer +refigure +refiling +refilled +refiners +refinery +refining +refitted +reflated +reflates +reflects +reflexed +reflexes +reflexly +refloats +reflowed +reflower +refluent +refluxes +refolded +refooted +reforest +reformat +reformed +reformer +refounds +refracts +refrains +reframed +reframes +refreeze +refringe +refrozen +refugees +refuging +refugium +refunded +refunder +refusals +refusers +refusing +refusion +refusnik +refutals +refuters +refuting +regained +regainer +regalian +regaling +regalism +regalist +regality +regarded +regarder +regather +regattas +regelate +regicide +regimens +regiment +Reginald +regional +register +registry +regiving +regolith +regorged +regorges +regraded +regrades +regrants +regrated +regrater +regrates +regrator +regreded +regredes +regreets +regrinds +reground +regroups +regrowth +regulars +regulate +reguline +regulise +regulize +rehandle +rehashed +rehashes +rehearse +reheated +reheater +reheeled +rehoboam +rehoused +rehouses +Reichian +reifying +reigning +reillume +reimport +reimpose +reindeer +reinette +reinfect +reinform +reinfund +reinfuse +reinless +reinsert +reinsman +reinsmen +reinsure +reinters +reinvent +reinvest +reissued +reissues +reisting +rejected +rejecter +rejector +rejigged +rejigger +rejoiced +rejoicer +rejoices +rejoined +rejudged +rejudges +rekindle +relabels +relapsed +relapser +relapses +relaters +relating +relation +relative +relators +relaunch +relaxant +relaxers +relaxing +relaying +relearns +relearnt +released +releasee +releaser +releases +releasor +relegate +relented +relevant +reliable +reliably +reliance +relieved +reliever +relieves +relievos +relights +religion +relining +reliques +relished +relishes +reliving +reloaded +relocate +relucent +relucted +relumine +reluming +remained +remaking +remanded +remanent +remanets +remani�s +remanned +remarked +remarker +remarque +remaster +rembling +remedial +remedied +remedies +remeding +remember +remerged +remerges +remigate +remigial +reminded +reminder +reminted +remising +remissly +remittal +remitted +remittee +remitter +remittor +remixing +remnants +remodels +remodify +remotely +remotest +remotion +remoulds +remounts +removals +removers +removing +remueurs +remurmur +renagued +renagues +renaming +renaying +rendered +renderer +rendzina +renegade +renegado +renegate +renegers +reneging +renegued +reneguer +renegues +renewals +renewers +renewing +renforce +reniform +renigged +Renishaw +renitent +renminbi +renounce +renovate +renowned +renowner +rentable +rentiers +renumber +renverse +reoccupy +reoccurs +reoffend +reopened +reopener +reordain +reorders +reorient +repacked +repaints +repaired +repairer +repapers +repartee +repassed +repasses +repaying +repealed +repealer +repeated +repeater +repelled +repeller +repented +repenter +repeople +reperuse +repetend +rephrase +repiners +repining +repiqued +repiques +replaced +replacer +replaces +replants +replayed +repleted +repletes +replevin +replicas +replicon +repliers +replying +repoints +reponing +reported +reporter +reposals +reposing +reposits +reposted +repotted +repouss� +repriced +reprices +reprieve +reprimed +reprimes +reprints +reprisal +reprised +reprises +reproach +reproofs +reproval +reproved +reprover +reproves +reptiles +Reptilia +republic +repugned +repulped +repulsed +repulses +repunits +repurify +repuring +reputing +requests +requiems +required +requirer +requires +requital +requited +requiter +requites +requoted +requotes +rerailed +rerecord +reremice +rerevise +rereward +reroofed +rerouted +reroutes +resalgar +resalute +resaying +rescaled +rescales +rescinds +rescored +rescores +rescript +rescuers +rescuing +resealed +research +reseated +resected +reselect +resemble +resented +resenter +reserved +reserves +resetter +resettle +reshaped +reshapes +resiance +resiants +resident +residing +residual +residues +residuum +resigned +resigner +resiling +resinata +resinate +resiners +resinify +resining +resinise +resinize +resinoid +resinous +resisted +resister +resistor +resoling +resolute +resolved +resolver +resolves +resonant +resonate +resorbed +resorcin +resorted +resorter +resounds +resource +respects +respells +Respighi +respired +respires +respited +respites +resplend +responds +Responsa +response +resprays +restaffs +restaged +restages +restarts +restated +restates +restings +restless +restocks +restored +restorer +restores +restrain +restrict +restring +restrung +restyled +restyles +resubmit +resulted +resuming +resupine +resupply +resurged +resurges +resurvey +retables +retailed +retailer +retained +retainer +retakers +retaking +retarded +retarder +retching +reteller +rethinks +reticent +reticles +reticule +retiform +retiling +retiming +retinite +retinoid +retinues +retinula +retiracy +retirals +retirees +retirers +retiring +retitled +retitles +retooled +retorted +retorter +retoured +retraced +retraces +retracts +retraict +retrains +retrally +retreads +retreats +retrench +retrials +retrieve +retroact +retrofit +retrorse +retrying +retsinas +retunded +retuning +returfed +returned +returnee +returner +returnik +retyping +reunions +reunited +reunites +reurging +reusable +reutters +revalued +revalues +revamped +revanche +revealed +revealer +reveille +revelers +reveling +revelled +reveller +revenant +revenged +revenger +revenges +revenued +revenues +reverbed +reverend +reverent +reverers +reveries +revering +reverist +reversal +reversed +reverser +reverses +reversis +reversos +reverted +revested +revestry +revetted +r�veuses +reviewal +reviewed +reviewer +revilers +reviling +revisals +revisers +revising +revision +revisits +revisors +revisory +revivals +revivers +revivify +reviving +revivors +revoking +revolted +revolter +revolute +revolved +revolver +revolves +rewarded +rewarder +rewarmed +rewashed +rewashes +reweighs +rewiring +reworded +reworked +rewrites +reynards +Reynolds +rezoning +rhabdoid +rhabdoms +Rhaetian +rhagades +rhaphide +rhapsode +rhapsody +rhematic +rheocord +rheology +rheostat +rheotome +rhesuses +rhetoric +rheumier +Rhiannon +rhinitis +rhizines +rhizobia +rhizoids +rhizomes +rhizopod +rhizopus +rhodanic +Rhodesia +rhodoras +rhomboid +rhonchal +rhonchus +rhopalic +rhubarbs +rhubarby +rhymists +rhyolite +rhythmal +rhythmed +rhythmic +rhythmus +rhytinas +Rhytisma +ribaldry +ribanded +ribaudry +ribbands +ribbiest +ribbings +ribboned +ribbonry +ribcages +ribibles +ribosome +ribozyme +ribstone +ribstons +ribworts +ricercar +Richards +richened +richesse +Richmond +richness +richting +ricketty +ricklier +rickshas +rickshaw +rickyard +ricochet +rictuses +riddance +riddlers +riddling +rideable +ridgeway +ridgiest +ridgings +ridgling +ridicule +ridottos +riempies +Riesling +Rievaulx +rifeness +rifflers +riffling +rifleman +riflemen +riflings +riftless +rigadoon +rigatoni +riggalds +riggings +rightens +righters +rightest +rightful +righting +rightish +rightism +rightist +rigidify +rigidise +rigidity +rigidize +riglings +rigorism +rigorist +rigorous +rillmark +rindless +ringbits +ringbone +ringgits +ringhals +ringings +ringless +ringlets +ringside +ringster +ringways +ringwise +ringwork +ringworm +rinkhals +rinsable +rinsible +rinsings +riotings +riparial +riparian +ripeness +ripening +ripienos +riposted +ripostes +ripplers +ripplets +ripplier +rippling +riptides +risaldar +riskiest +risoluto +risottos +rispetti +rispetto +rispings +rissoles +riteless +ritenuto +ritornel +ritually +ritziest +rivaless +rivalise +rivality +rivalize +rivalled +rivelled +riverain +riverets +riverine +riverman +rivermen +riverway +riveters +riveting +rivetted +rivieras +rivi�res +rivulets +roaching +roadings +roadkill +roadless +roadshow +roadside +roadsman +roadsmen +roadster +roadways +roadwork +roarings +roasters +roasting +robinias +Robinson +roborant +robotics +robotise +robotize +roburite +robuster +robustly +rocaille +Roccella +Rochdale +Rochelle +rockaway +rocketed +rocketer +rocketry +Rockford +rockiers +rockiest +rockings +rocklays +rockling +rockweed +rocquets +Rodentia +Roderick +rodsters +roebucks +roentgen +roestone +rogation +rogatory +Rogerian +rogueing +roiliest +roisters +roisting +rokelays +rollable +rollaway +rollbars +rollicks +rollings +rollmops +rollneck +rollocks +romaikas +romaines +romanced +romancer +romances +Romanian +Romanies +Romanise +Romanish +Romanism +Romanist +Romanize +Romansch +romantic +romaunts +Romeward +romneyas +roncador +rondache +rondavel +rondeaux +rondinos +rondures +roneoing +ronggeng +r�ntgens +roofings +roofless +rooineks +roomette +roomfuls +roomiest +roosters +roosting +rootages +rootedly +roothold +rootiest +rootings +rootless +rootlets +rootlike +rootling +ropeable +ropeways +ropework +ropiness +roqueted +roquette +rorquals +Rosaceae +rosalias +Rosalind +Rosaline +Rosamond +Rosamund +rosarian +rosaries +rosarium +Roseanne +rosefish +rosehips +Roseland +roseless +roselike +rosellas +roselles +rosemary +roseries +rosetted +rosettes +Rosewall +rosewood +rosinate +rosiness +rosining +rosoglio +rosolios +rossered +Rossetti +Rosslare +rostered +rostrate +rostrums +rosulate +Rotarian +rotaries +rotating +rotation +rotative +rotators +rotatory +rotavate +rotchies +rotenone +rotgrass +Rothesay +Rotifera +rotifers +rotovate +rottenly +rotundas +rotunded +rotundly +roturier +roughage +roughens +roughers +roughest +roughies +roughing +roughish +roulades +rouleaus +rouleaux +roulette +Roumania +rouncies +roundels +rounders +roundest +rounding +roundish +roundles +roundlet +roundure +roupiest +Rousseau +rousters +rousting +routeing +routeman +routemen +routines +routings +rovingly +rowboats +rowdedow +rowdiest +rowdydow +rowdyish +rowdyism +rowelled +rowlocks +Rowntree +Roxburgh +royalets +royalise +royalism +royalist +royalize +roysters +roysting +rozelles +Ruaidhr� +rubaiyat +rubbered +rubbings +rubbishy +rubblier +rubdowns +rubefied +rubefies +rubellan +rubicons +rubicund +rubidium +rubified +rubifies +rubrical +rubstone +ruchings +ruckling +rucksack +ruckseat +ruckuses +ructions +ruddiest +ruddling +ruddocks +ruddying +rudeness +ruderals +rudiment +ruefully +ruellias +ruffians +rufflers +ruffling +rufiyaas +rugelach +ruggeder +ruggedly +ruggings +rugosely +rugosity +rugulose +ruinable +ruinated +ruinates +ruinings +Ruisdael +ruleless +rulering +rullions +rullocks +Rumanian +rumbelow +rumblers +rumbling +ruminant +ruminate +rummaged +rummager +rummages +rummiest +rumorous +rumoured +rumourer +rumpless +rumpling +rumpuses +runabout +runagate +runaways +runcible +rundales +rundlets +runkling +runnable +runniest +runnings +runtiest +Rupinder +ruptured +ruptures +ruralise +ruralism +ruralist +rurality +ruralize +rusalkas +ruscuses +Rusedski +rushiest +Rushmore +russeted +Russians +Russkies +Russniak +rustical +rustiest +rustings +rustlers +rustless +rustling +rutabaga +Rutaceae +Ruthenia +ruthenic +ruthless +rutilant +ruttiest +ruttings +Rwandans +ryeflour +ryotwari diff --git a/com/agnibho/code/anagram/dictionary/R9.txt b/com/agnibho/code/anagram/dictionary/R9.txt new file mode 100644 index 0000000..d2dad4b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/R9.txt @@ -0,0 +1,1510 @@ +rabatines +rabatment +rabatting +rabbeting +rabbinate +rabbinism +rabbinist +rabbinite +rabbiters +rabbiting +rabblings +rabidness +raccahout +racegoers +racehorse +racemates +racemised +racemises +racemized +racemizes +racepaths +racetrack +rachidial +rachidian +rachillas +racialism +racialist +raciation +racketeer +racketers +racketing +raclettes +raconteur +racqueted +Radcliffe +raddleman +raddlemen +radialise +radiality +radialize +radiantly +radiately +radiating +radiation +radiative +radiators +radiatory +radically +radicated +radicates +radicchio +radicular +radicules +radiogram +radiology +radionics +radiothon +raffinate +raffinose +raffishly +Rafflesia +raftering +ragouting +ragstones +ragtimers +railbuses +railcards +railheads +railingly +railroads +Railtrack +railwoman +railwomen +rainbowed +raincheck +raincoats +raindates +raindrops +rainfalls +raininess +rainproof +rainstorm +rainswept +raintight +raiseable +rajahship +rajaships +Rajasthan +rakehells +rakehelly +rakeshame +rakshasas +rakshases +rallyists +Ramanujan +ramblings +rambutans +ramequins +ramfeezle +ramifying +Ramillies +rampaging +rampantly +ramparted +rampicked +ranariums +rancheria +rancherie +rancheros +ranchings +rancidity +rancorous +randiness +randomise +randomize +rangatira +rangeland +ranginess +ransacked +ransacker +ransomers +ransoming +ranterism +rantingly +rantipole +ranunculi +rapacious +rapidness +rapparees +rappelled +raptorial +rapturing +rapturise +rapturist +rapturize +rapturous +rarefying +rascaille +rascaldom +rascalism +rascality +rascasses +Raskolnik +raspatory +raspberry +raspingly +rataplans +ratepayer +ratherest +ratheripe +ratherish +rathripes +ratifiers +ratifying +rationale +rationals +rationing +ratooners +ratooning +ratsbanes +rattening +ratteries +rattiness +rattlebag +rattlebox +rattlines +rattlings +raucously +raunchier +raunchily +Rauwolfia +ravelling +ravelment +ravishers +ravishing +Rawlplugs +razorable +reabsorbs +reachable +reachless +reacquire +reactance +reactants +reactions +reactuate +readapted +readdress +readiness +readjusts +readopted +readvance +readvised +readvises +reaffirms +Reaganism +Reaganite +realigned +realisers +realising +realistic +realities +realizers +realizing +realmless +reamended +reanimate +reannexed +reannexes +reapparel +reappears +reapplied +reapplies +reappoint +rearguard +rearhorse +rearising +rearmouse +rearousal +rearoused +rearouses +rearrange +rearrests +rearwards +reascends +reascents +reasoners +reasoning +reasserts +reassigns +reassumed +reassumes +reassured +reassurer +reassures +reattains +reattempt +reawakens +reawaking +rebacking +rebadging +rebaptise +rebaptism +rebaptize +rebbetzin +rebellers +rebelling +rebellion +rebidding +rebinding +rebloomed +reblossom +reboation +reboiling +rebooting +reborrows +rebounded +rebracing +rebuffing +rebukable +rebukeful +reburials +reburying +rebutment +rebuttals +rebutters +rebutting +rebuttons +recalesce +recalling +recalment +recanters +recanting +recapping +recaption +recaptors +recapture +recasting +recatches +receipted +receivals +receivers +receiving +recensing +recension +recentred +recentres +reception +receptive +receptors +recessing +recession +recessive +Rechabite +recharged +recharges +recharted +rechating +r�chauff� +recheated +rechecked +recherch� +recipient +recisions +recklings +reckoners +reckoning +reclaimed +reclaimer +reclimbed +reclinate +recliners +reclining +reclosing +reclothed +reclothes +reclusely +reclusion +reclusive +reclusory +recognise +recognize +recoiling +recoinage +recoining +recollect +recombine +recomfort +recommend +recommits +recompact +recompose +reconcile +recondite +reconfirm +reconnect +reconquer +reconvene +reconvert +reconveys +reconvict +recopying +recorders +recording +recordist +recountal +recounted +recouping +recourses +recovered +recoveree +recoverer +recoveror +recreance +recreancy +recreants +recreated +recreates +recrement +recrossed +recrosses +recruital +recruited +recruiter +rectangle +rectified +rectifier +rectifies +rectitude +rectorate +rectoress +rectorial +rectories +rectrices +recumbent +recurrent +recurring +recursion +recursive +recurving +recusance +recusancy +recusants +recycling +redacting +redaction +redactors +redargued +redargues +redbreast +Redbridge +reddendos +reddendum +reddening +reddleman +reddlemen +redealing +redeemers +redeeming +redefined +redefines +redeliver +redeploys +redescend +redesigns +redevelop +redfishes +redhanded +redialled +redingote +redipping +redirects +redistils +redivided +redivides +redivivus +redolence +redolency +redoubled +redoubles +redoubted +redounded +redrafted +redrawing +redressed +redresser +redresses +redriving +redstreak +reducible +reductant +reductase +reduction +reductive +redundant +reduviids +reedbucks +reediness +reedlings +reelingly +refashion +refecting +refection +refectory +refelling +referable +reference +referenda +referents +referrals +referrers +referring +refigured +refigures +refilling +refinedly +refinings +refitment +refitting +reflagged +reflating +reflation +reflected +reflecter +reflector +reflexing +reflexion +reflexive +refloated +reflowers +reflowing +refluence +refocused +refocuses +refolding +refooting +reforests +reformado +reformats +reformers +reforming +reformism +reformist +refortify +refounded +refounder +refracted +refractor +refrained +reframing +refreezes +refreshed +refreshen +refresher +refreshes +refringed +refringes +refuelled +refulgent +refunders +refunding +refurbish +refurnish +refusable +refusenik +refusions +refusniks +refutable +refutably +regainers +regaining +regalists +regardant +regarders +regardful +regarding +regathers +regelated +regelates +regencies +regicidal +regicides +regiments +regiminal +regionary +r�gisseur +registers +registrar +regoliths +regorging +regrading +regranted +regraters +regrating +regrators +regreding +regreeted +regressed +regresses +regretful +regretted +regrouped +regrowing +regrowths +regularly +regulated +regulates +regulator +regulised +regulises +regulized +regulizes +reguluses +rehandled +rehandles +rehanging +rehashing +rehearing +rehearsal +rehearsed +rehearser +rehearses +reheaters +reheating +reheeling +rehoboams +rehousing +rehydrate +Reichsrat +Reichstag +reillumed +reillumes +reimburse +reimplant +reimports +reimposed +reimposes +reindeers +reinettes +reinfects +reinforce +reinforms +reinfunds +reinfused +reinfuses +reinhabit +Reinhardt +reinserts +reinspect +reinspire +reinstall +reinstate +reinsured +reinsurer +reinsures +reinvents +reinvests +reinvolve +reissuing +reistafel +reiterant +reiterate +rejecters +rejecting +rejection +rejective +rejectors +rejiggers +rejigging +rejoicers +rejoicing +rejoinder +rejoining +rejudging +rekindled +rekindles +relapsers +relapsing +relations +relatival +relatives +relaxants +relearned +releasees +releasers +releasing +releasors +relegable +relegated +relegates +relenting +reletting +relevance +relevancy +relievers +relieving +religieux +religions +religiose +religioso +religious +reliquary +reliquiae +relishing +relivable +rellishes +reloading +relocated +relocates +reluctant +reluctate +relucting +relumined +relumines +remainder +remaining +remanding +remanence +remanency +remanents +remanning +remarkers +remarking +remarqued +remarques +remarried +remarries +remasters +rematched +rematches +Rembrandt +remeasure +remediate +remedying +remembers +remercied +remercies +remerging +remigated +remigates +remigrate +reminders +remindful +reminding +Remington +reminisce +reminting +remission +remissive +remissory +remitment +remittals +remittees +remittent +remitters +remitting +remittors +remontant +remoulade +remoulded +remounted +removable +removably +Remscheid +remurmurs +renaguing +renascent +rencontre +renderers +rendering +rendition +renegaded +renegades +renegados +renegates +reneguers +reneguing +renewable +renigging +renitency +renounced +renouncer +renounces +renovated +renovates +renovator +renowners +renowning +rentaller +renumbers +renversed +renverses +reoffends +reopeners +reopening +reordains +reordered +reorients +repackage +repacking +repainted +repairers +repairing +repairman +repairmen +repapered +reparable +reparably +reparteed +repartees +repassage +repassing +repasture +repayable +repayment +repealers +repealing +repeaters +repeating +repechage +repellant +repellent +repellers +repelling +repentant +repenters +repenting +repeopled +repeoples +repercuss +repertory +reperusal +reperused +reperuses +repetends +rephrased +rephrases +repinings +repiquing +replacers +replacing +replanned +replanted +replaying +replenish +repleting +repletion +replevied +replevies +replevins +replicate +replicons +repointed +reportage +reporters +reporting +reposedly +reposeful +reposited +repositor +repossess +reposting +repotting +repouss�s +reprehend +represent +repressed +represses +repressor +repricing +reprieval +reprieved +reprieves +reprimand +repriming +reprinted +reprisals +reprising +reprobacy +reprobate +reprocess +reproduce +reprogram +reproofed +reprovals +reprovers +reproving +reptation +reptilian +reptiloid +republics +republish +repudiate +repugnant +repugning +repulping +repulsing +repulsion +repulsive +reputable +reputably +reputedly +requested +requester +requicken +requirers +requiring +requisite +requitals +requiters +requiting +requoting +reradiate +rerailing +rereading +rerebrace +rerecords +reredorse +reredoses +reredosse +reremouse +rerevised +rerevises +rerewards +reroofing +rerouting +rerunning +resalable +resaluted +resalutes +rescaling +rescinded +rescoring +rescripts +rescuable +resealing +reseating +resecting +resection +reselects +reselling +resembled +resembler +resembles +resenters +resentful +resenting +resentive +reserpine +reserving +reservist +reservoir +resetters +resetting +resettled +resettles +reshaping +reshipped +reshuffle +residence +residency +residents +residuals +residuary +residuous +resigners +resigning +resilient +resinatas +resinated +resinates +resinised +resinises +resinized +resinizes +resinoids +resinosis +resistant +resistent +resisters +resisting +resistive +resistors +resitting +resnatron +resoluble +resolvent +resolvers +resolving +resonance +resonated +resonates +resonator +resorbent +resorbing +resorters +resorting +resounded +resources +respected +respecter +respelled +respiring +respiting +resplends +responded +responder +responser +responses +responsor +responsum +resprayed +ressaldar +restaffed +restaging +restarted +restarter +restating +restfully +restiform +restitute +restively +restocked +restorers +restoring +restrains +restraint +restricts +restringe +restrings +restyling +resubmits +resultant +resultful +resulting +resumable +resurface +resurgent +resurging +resurrect +resurveys +retailers +retailing +retainers +retaining +retakings +retaliate +retardant +retardate +retarders +retarding +retchless +retellers +retelling +retention +retentive +retexture +rethought +retiarius +reticella +reticence +reticency +reticular +reticules +reticulum +retinitis +retinulae +retinular +retinulas +retiredly +retitling +retooling +retorsion +retorters +retorting +retortion +retortive +retouched +retoucher +retouches +retouring +retracing +retracted +retractor +retrained +retreaded +retreated +retribute +retrieval +retrieved +retriever +retrieves +retrimmed +retroacts +retrocede +retrodden +retrofits +retroflex +retroject +retrouss� +retrovert +retteries +retunding +returfing +returnees +returners +returniks +returning +reunified +reunifies +reuniting +reuttered +revalenta +revaluing +revamping +revanches +revealers +revealing +reveilles +revelator +revelings +revellers +revelling +revelries +revenants +revengers +revenging +reverable +reverbing +reverence +reverends +reverists +reversals +reversely +reversers +reversing +reversion +reverting +revertive +revesting +revetment +revetting +revictual +reviewals +reviewers +reviewing +revilings +revisable +revisions +revisited +revivable +revivably +revivings +revocable +revocably +revokable +revolters +revolting +revolvers +revolving +revulsion +revulsive +rewarders +rewardful +rewarding +rewarming +rewashing +reweighed +rewinding +rewording +reworking +rewrapped +rewriting +rewritten +Reykjavik +rhabdoids +rhabduses +rhachides +rhachises +rhachitis +rhamphoid +rhaphides +rhapontic +rhapsodes +rhapsodic +rhatanies +Rheinland +rheochord +rheocords +rheologic +rheometer +rheostats +rheotaxis +rheotomes +rheotrope +rhetorise +rhetorize +rheumatic +rheumatiz +rheumiest +Rhineland +Rhineodon +rhinolith +rhinology +rhipidate +rhipidion +rhipidium +rhizobium +rhizocarp +rhizocaul +rhizoidal +Rhizopoda +rhizopods +rhodamine +rhodanate +rhodanise +rhodanize +Rhodesian +rhodolite +rhodonite +rhodopsin +rhoeadine +rhomboids +rhombuses +rhonchial +rhopalism +rhotacise +rhotacism +rhotacize +rhymeless +rhymester +Rhynchota +rhyolitic +rhythmics +rhythmise +rhythmist +rhythmize +ribanding +ribattuta +ribaudred +ribboning +Ribbonism +ribosomes +ribozymes +ribstones +Ricardian +ricercare +ricercari +ricercars +ricercata +Richardia +Richelieu +richening +Ricinulei +ricketier +ricketily +rickliest +rickshaws +rickstand +rickstick +rickyards +ricochets +riddances +riddlings +Riderhood +riderless +ridgeback +ridgepole +ridgeways +ridglings +ridiculed +ridiculer +ridicules +Rieslings +rigadoons +rightable +rightened +righteous +rightings +rightists +rightless +rightmost +rightness +rightward +rigidised +rigidises +rigidized +rigidizes +rigidness +rigmarole +Rigoletto +rigorists +rigwiddie +rigwoodie +rijstafel +rillettes +rillmarks +ringbones +ringingly +ringleted +ringsider +ringsides +ringsters +ringworms +rinseable +riotously +riparians +ripienist +riposting +rippingly +rippliest +ripplings +Ripuarian +risaldars +riskiness +ritenutos +ritornell +ritornels +ritualise +ritualism +ritualist +ritualize +rivalised +rivalises +rivalized +rivalizes +rivalless +rivalling +rivalries +rivalship +rivelling +riverains +riverless +riverlike +riverside +riverways +riverweed +rivetting +roadblock +roadhouse +roadshows +roadsides +roadstead +roadsters +roadworks +roaringly +roastings +robberies +roborants +robotised +robotises +robotized +robotizes +robustest +rocailles +rocambole +Rochester +rockaways +rockeries +rocketeer +rocketers +rocketing +rockiness +rocklings +rockwater +rodfisher +rodgersia +roentgens +roestones +rogations +rogueries +rogueship +roguishly +roistered +roisterer +rollicked +rollnecks +romancers +romancing +Romanians +Romanised +Romaniser +Romanises +Romanized +Romanizer +Romanizes +romantics +Romewards +rompingly +rompishly +roncadors +rondaches +rondavels +ronggengs +roofscape +rookeries +roomettes +roominess +Roosevelt +rootholds +rootstock +ropeworks +Roquefort +roqueting +roquettes +Rorschach +rosaceous +rosarians +rosariums +Roscommon +rosefinch +Rosenberg +rosetting +rosewoods +Rosinante +rosinates +rosmarine +Rosminian +rosoglios +rossering +rostellar +rostellum +rostering +rostrated +Rotameter +rotaplane +Rotarians +rotatable +rotations +rotavated +rotavates +Rotavator +rotavirus +Rotherham +rotiferal +rotograph +rotovated +rotovates +Rotovator +Rotterdam +rotundate +rotunding +rotundity +roturiers +Roubillac +roughcast +roughened +roughness +roulettes +Roumanian +rounceval +roundarch +roundelay +roundhand +Roundhead +roundings +roundlets +roundness +roundsman +roundsmen +roundures +rousement +rousingly +roussette +routineer +routinely +routinise +routinism +routinist +routinize +routously +rowdedows +rowdiness +rowdydows +rowelling +Roxburghe +royalised +royalises +royalists +royalized +royalizes +royalties +roystered +roysterer +Rozinante +rubaiyats +rubbering +rubberise +rubberize +rubbished +rubbishes +rubbishly +rubbliest +rubefying +rubellans +rubellite +rubescent +Rubiaceae +rubicelle +rubifying +rubineous +rubricate +rubrician +rubstones +rucksacks +ruckseats +ructation +rudbeckia +Ruddigore +ruddiness +ruddleman +ruddlemen +rudiments +rufescent +ruffianed +ruffianly +rufflings +ruggedest +ruggedise +ruggedize +ruggelach +ruinating +ruination +ruinously +rulership +Rumanians +rumbelows +rumblings +ruminants +ruminated +ruminates +ruminator +rummagers +rummaging +rumminess +rumourers +rumouring +runabouts +runagates +runaround +runcinate +runningly +Runnymede +rupturing +ruralised +ruralises +ruralists +ruralized +ruralizes +ruralness +Ruritania +rushiness +rushlight +russeting +Russified +Russifies +Russophil +rusticals +rusticate +rusticial +rusticise +rusticism +rusticity +rusticize +rustiness +rustlings +rutaceous +Ruthenian +ruthenium +ruthfully +rutilated diff --git a/com/agnibho/code/anagram/dictionary/S1.txt b/com/agnibho/code/anagram/dictionary/S1.txt new file mode 100644 index 0000000..b478595 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S1.txt @@ -0,0 +1 @@ +s diff --git a/com/agnibho/code/anagram/dictionary/S10.txt b/com/agnibho/code/anagram/dictionary/S10.txt new file mode 100644 index 0000000..791d8f5 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S10.txt @@ -0,0 +1,2926 @@ +sabbatical +sabbatised +sabbatises +sabbatized +sabbatizes +sabotaging +sabretache +saccharase +saccharate +saccharide +saccharify +saccharine +saccharise +saccharize +saccharoid +saccharose +sacculated +sacerdotal +sachemship +sackcloths +sacralised +sacralises +sacralized +sacralizes +Sacramento +sacraments +sacrariums +sacredness +sacrificed +sacrificer +sacrifices +sacrifying +sacrileges +sacristans +sacristies +sacroiliac +sacrosanct +saddleback +saddlebill +saddleless +saddlenose +saddleries +safeguards +safflowers +saginating +sagination +sagittally +Sagittaria +sailboards +sailorings +sailorless +sailplanes +saintesses +saintfoins +saintliest +saintlings +salability +salamander +salanganes +salbutamol +salesgirls +salesrooms +saleswoman +saleswomen +Salicaceae +salicetums +salicional +salicornia +salicylate +salicylism +salientian +saliferous +salifiable +salimeters +salivating +salivation +sallenders +sallowness +sallyports +salmagundi +salmagundy +Salmanaser +Salmanazar +salmonella +Salmonidae +salmonoids +saloonists +salopettes +salpingian +saltarelli +saltarello +saltations +saltigrade +salubrious +salutarily +salutation +salutatory +Salvadoran +salvations +salverform +salvifical +samariform +Samaritans +samarskite +Samothrace +sanatorium +sanbenitos +sanctified +sanctifier +sanctifies +sanctimony +sanctioned +sanctities +sanctitude +sandalwood +sandbagged +sandbagger +sandblasts +sanderling +sandgroper +Sandinismo +Sandinista +sandpapers +sandpipers +sandstones +sandwiched +sandwiches +Sanforised +Sanforises +Sanforized +Sanforizes +Sangradoes +sanguified +sanguifies +sanguinary +sanguinely +sanguining +sanguinity +Sanhedrist +sanitarian +sanitarily +sanitarist +sanitarium +sanitating +sanitation +sanitising +sanitizing +sannyasins +Sanskritic +santolinas +sapiential +sapodillas +saponified +saponifies +Sapotaceae +sapperment +sapphirine +saprogenic +saprolites +sapropelic +saprophyte +sapsuckers +sarabandes +Saracenism +sarbacanes +sarcocarps +sarcocolla +sarcolemma +Sarcophaga +sarcophagi +sarcophagy +sarcoplasm +Sardinians +sardonical +sardonyxes +sarmentose +sarmentous +sarracenia +saskatoons +sassararas +Sassenachs +satanology +satchelled +satellited +satellites +satellitic +satinettes +satinwoods +satirising +satirizing +satisficed +satisfices +satisfiers +satisfying +satrapical +saturating +saturation +saturators +Saturnalia +satyagraha +satyresque +satyresses +satyriasis +saucerfuls +saucissons +sauerkraut +saunterers +sauntering +Saurischia +Sauropsida +saussurite +savageness +savageries +savingness +Savonarola +savoriness +savourless +sawdusting +saxicavous +saxicoline +saxicolous +saxifrages +Saxonising +Saxonizing +saxophones +scabbarded +scabbiness +scabridity +scabrously +scaffolded +scaffolder +scallawags +scalloping +scallywags +scampering +scampishly +scandalise +scandalize +scandalled +scandalous +scansorial +scantiness +scantlings +scapegoats +scapegrace +scapements +Scaphopoda +scaphopods +scapulated +scarabaean +scarabaeid +scarabaeus +scaramouch +scarcement +scarceness +scarcities +scarecrows +scarfishes +scarfskins +scarifiers +scarifying +scarlatina +scarleting +scarpering +scatheless +scathingly +scatophagy +scatterers +scattering +scattiness +scaturient +scavengers +scavengery +scavenging +scazontics +scenarised +scenarises +scenarists +scenarized +scenarizes +scenically +sceptering +scepticism +schalstein +schechitah +schedulers +scheduling +schefflera +schematise +schematism +schematist +schematize +schemozzle +scherzandi +scherzando +schiavones +schillings +schipperke +schismatic +schizocarp +schizogony +schizoidal +Schizopoda +schizopods +schlemiels +schlemihls +schleppers +schlepping +schlimazel +schmaltzes +schmalzier +schmoosing +schmoozing +schnappers +schnappses +schnauzers +schnitzels +schnorkels +schnorrers +schnorring +schnozzles +Schoenberg +scholarchs +scholastic +scholiasts +schoolbags +schoolboys +schoolgirl +schoolings +schoolmaid +schoolroom +schoolward +schoolwork +Schumacher +schwarzlot +Schweitzer +Sciaenidae +scientific +scientised +scientises +scientists +scientized +scientizes +Scillonian +scintigram +scintillas +scintiscan +sciolistic +scirrhuses +scissorers +Sclavonian +sclereides +scleriasis +scleroderm +scleromata +sclerosing +sclerotals +sclerotial +sclerotics +sclerotise +sclerotium +sclerotize +sclerotomy +scoffingly +scoldingly +scolloping +Scolytidae +Scombresox +Scombridae +sconcheons +Scopelidae +scordatura +scorelines +scorifying +scornfully +scorpaenid +scorpionic +scorzonera +Scotchness +scotodinia +scotometer +Scotophile +Scotophobe +Scotswoman +Scotswomen +Scotticise +Scotticism +Scotticize +Scottified +scoundrels +scoutcraft +scouthered +scowdering +scowlingly +scrabblers +scrabbling +scraggiest +scragglier +scraggling +scraiching +scraighing +scramblers +scrambling +scranching +scrappiest +scratchers +scratchier +scratchily +scratching +scratchpad +scrattling +scrauching +scrawliest +scrawlings +scrawniest +screechers +screechier +screeching +screedings +screenings +screenplay +screevings +screiching +screighing +scribblers +scribbling +scriggling +scrimmaged +scrimmager +scrimmages +scrimpiest +scrimpness +scrimshank +scrimshaws +scriptoria +scriptural +scriptures +scritching +scriveners +scrivening +scrobicule +scrofulous +scroggiest +scrollwise +scrollwork +scroungers +scrounging +scrubbiest +scrublands +scruffiest +scrumdowns +scrummager +scrummages +scrummiest +scrumpling +scrunching +scrupulous +scrutators +scrutineer +scrutinies +scrutinise +scrutinize +scrutinous +scrutoires +scuddalers +sculleries +sculptress +sculptural +sculptured +sculptures +scumbering +scumblings +scumfished +scumfishes +scuncheons +scunnering +Scunthorpe +scuppering +scurfiness +scurrility +scurrilous +scurviness +scutcheons +scutchings +scutellate +scuttering +scuttleful +scyphiform +scyphozoan +sdeignfull +sdrucciola +seaberries +seaborgium +seacunnies +seakeeping +seamanlike +seamanship +seamstress +seaquarium +searchable +searchless +searedness +seasonable +seasonably +seasonally +seasonings +seasonless +Sebastopol +sebiferous +seborrheic +seborrhoea +secernents +secernment +secessions +secludedly +seclusions +secondment +secretaire +secretions +secretness +sectarians +sectioning +sectionise +sectionize +sectorised +sectorises +sectorized +sectorizes +secularise +secularism +secularist +secularity +secularize +secundines +securances +securement +secureness +securiform +Securitate +securities +securitise +securitize +sedateness +sedgelands +sedimented +seducement +seducingly +seductions +seductress +sedulously +seecatchie +seemlihead +seemliness +seersucker +segholates +segmentary +segmentate +segmenting +segregable +segregated +segregates +seguidilla +seigneurie +seignorage +seignories +seismicity +seismogram +seismology +selachians +Selbornian +seldomness +selections +selectness +selegiline +selenodont +selenology +Seleucidae +Seleucidan +selflessly +Sellafield +Sellotaped +Sellotapes +seltzogene +selvedging +semantemes +semantides +semaphored +semaphores +semblances +semblative +semeiology +semeiotics +semestrial +semibreves +semichorus +semicircle +semicirque +semicolons +semidesert +semifinals +semifluids +semilucent +seminality +seminarial +seminarian +seminaries +seminarist +seminating +semination +semiplumes +semipostal +semiquaver +semiterete +Semitising +Semitizing +semivowels +sempstress +senatorial +Senegalese +senescence +seneschals +Senhoritas +sennachies +sensations +sensibilia +sensitised +sensitiser +sensitises +sensitives +sensitized +sensitizer +sensitizes +sensoriums +sensualise +sensualism +sensualist +sensuality +sensualize +sensuously +sentencers +sentencing +sentential +sentiments +separately +separating +separation +separatism +separatist +separative +separators +separatory +separatrix +separatums +septations +septemviri +septemvirs +septennate +septennial +septennium +septically +septicemia +septicemic +septicidal +septillion +septimoles +Septuagint +septuplets +septupling +sepulchers +sepulchral +sepulchres +sepultural +sepultured +sepultures +sequacious +sequencers +sequencing +sequential +sequesters +sequestrum +seraphical +seraphines +seraskiers +serenaders +serenading +sereneness +sergeantcy +serialised +serialises +serialisms +serialists +serialized +serializes +seriations +sericteria +serigraphs +serigraphy +serinettes +seriocomic +serjeantcy +serjeantry +sermoneers +sermonette +sermonical +sermonised +sermoniser +sermonises +sermonized +sermonizer +sermonizes +serologist +serotinous +serotyping +serpentine +serpenting +serpentise +serpentize +serpigines +serpulites +serradella +serradilla +Serranidae +serranoids +serrasalmo +serrations +serratures +serratuses +serrefiles +serrulated +Sertularia +servanting +serviceman +servicemen +serviettes +servitress +servitudes +servomotor +sestertium +setiferous +setigerous +setterwort +settleable +settlement +Sevastopol +sevenpence +sevenpenny +seventeens +seventieth +severances +severeness +sexagenary +Sexagesima +sexivalent +sexlocular +sexologist +sexpartite +sextillion +sextonship +sextuplets +sextupling +sexualised +sexualises +sexualists +sexualized +sexualizes +Seychelles +sforzandos +shabbiness +shabracque +Shackleton +shadbushes +shadowcast +shadowiest +shadowings +shadowless +shagginess +shaggymane +shagreened +shakuhachi +Shakuntala +shallowest +shallowing +shamanists +shamateurs +shamblings +shamefaced +shamefully +shamianahs +shamiyanah +shammashim +shampooers +shampooing +shanachies +shandrydan +shandygaff +shanghaied +shanghaier +shapeliest +sharawadgi +sharawaggi +sharkskins +sharpeners +sharpening +shashlicks +shattering +shauchling +shavelings +shearlings +shearwater +sheathings +sheathless +shebeeners +shebeening +shecklaton +sheepfolds +sheepishly +sheepshank +sheepskins +sheepwalks +sheikhdoms +sheldducks +sheldrakes +shellacked +shellbacks +shellbarks +shellbound +shelldrake +shellducks +shellfires +shelliness +shellproof +shellshock +shellycoat +shelterers +sheltering +shemozzles +shenanigan +shepherded +Shepperton +sherardise +sherardize +shereefian +sheriffdom +Sheringham +Shetlander +Shetlandic +shewbreads +shibboleth +shieldless +shieldlike +shieldling +shieldrake +shielducks +shieldwall +shiftiness +shillabers +shillalahs +shillelagh +shimmering +shimozzles +shingliest +shinglings +shinguards +shipboards +shiplapped +shipwrecks +shipwright +shirtiness +shirtwaist +Shivaistic +shiverings +shlemozzle +shlimazels +shmaltzier +shockingly +shockstall +shoddiness +shoeblacks +shoebuckle +shoehorned +shoemakers +shoemaking +shoeshines +shoestring +shogunates +shopaholic +shopboards +shopkeeper +shoplifted +shoplifter +shopwalker +Shoreditch +shorelines +shorewards +shortbread +shortcakes +shortcrust +shorteners +shortening +shortfalls +shorthorns +shotfirers +shotmakers +shotmaking +shouldered +shoutingly +shoutlines +shovelfuls +shovellers +shovelling +shovelnose +showboated +showboater +showbreads +showcasing +showeriest +showerings +showerless +showground +showjumper +showpieces +showplaces +shreddings +Shreveport +shrewdness +shrewishly +Shrewsbury +shriekings +shrievalty +shrillings +shrillness +shrimpings +shrinelike +shrinkable +shrinkages +shrinkpack +shrinkwrap +shriveling +shrivelled +shroffages +Shropshire +shroudings +shroudless +Shrovetide +shrubbiest +shubunkins +shuddering +shufflings +shutterbug +shuttering +sialagogic +sialagogue +sialogogic +sialogogue +sialograms +sialoliths +sibilantly +sibilating +sibilation +sibilatory +siccatives +sicilianas +sicilianos +sicilienne +sickenings +sickerness +sickliness +sicknesses +sicknurses +Siddhartha +sideboards +sidelights +siderating +sideration +siderolite +siderostat +sideshoots +sidestream +sideswiped +sideswiper +sideswipes +sidetracks +sidewinder +siegecraft +siegeworks +siffleuses +sightliest +sightlines +sightseers +Sigillaria +sigillarid +sigmations +sigmatrons +signalised +signalises +signalized +signalizes +signallers +signalling +signatures +signboards +signifiers +signifying +signorinas +signposted +Silchester +silentiary +silentness +silhouette +silicified +silicifies +silicotics +siliculose +siltations +silverback +silverbill +silveriest +silverings +silverised +silverises +silverized +silverizes +silverling +silverside +silverskin +silvertail +silverware +silverweed +simaroubas +similarity +similative +similising +similitude +similizing +simillimum +Simmenthal +simoniacal +simpleness +simpletons +simplicity +simplified +simplifier +simplifies +simplistic +simulacres +simulacrum +simulating +simulation +simulative +simulators +simulatory +simulcasts +Simuliidae +sinarchism +sinarchist +sinarquism +sinarquist +sincipital +sinecurism +sinecurist +sinfulness +Singhalese +singlehood +singleness +singletons +singletree +singsonged +singspiels +singularly +sinicising +sinicizing +sinisterly +sinistrals +sinistrous +Sinologist +sinsemilla +sinuations +sinusoidal +siphonages +siphonogam +siphuncles +sipunculid +sirenising +sirenizing +siseraries +sisterhood +sisterless +sitatungas +sitophobia +situations +situtungas +sitzkriegs +sixpennies +sixteeners +sixteenmos +sixteenths +sizarships +sizzlingly +sjambokked +skateboard +skedaddled +skedaddler +skedaddles +skeldering +skelloched +skeltering +skepticism +sketchable +sketchiest +skeuomorph +skiagraphs +skibobbers +skibobbing +skikj�ring +skillfully +skimmingly +skimpiness +skimpingly +skinflicks +skinflints +skinniness +skippering +skippingly +skirmished +skirmisher +skirmishes +skittering +skittishly +skreighing +skrimmaged +skrimmages +skrimshank +skulkingly +skunkbirds +Skupshtina +skyjackers +skyjacking +skylarkers +skylarking +skyscraper +skywriters +skywriting +slabberers +slabbering +slabbiness +slabstones +slackening +slaistered +slammerkin +slanderers +slandering +slanderous +slanginess +slangingly +slantingly +slapsticks +slattering +slatternly +slaughters +slavocracy +slavocrats +Slavonised +Slavonises +Slavonized +Slavonizes +Slavophile +Slavophobe +sleazebags +sleazeball +sleaziness +sleekening +sleekstone +sleepiness +sleepsuits +sleepwalks +sleetiness +sleeveless +sleighings +slenderest +slenderise +slenderize +slickening +slickstone +sliddering +slightness +Slimbridge +slimeballs +slingbacks +slingstone +slinkskins +slinkweeds +slipcovers +slipperier +slipperily +slippering +slippiness +slipsloppy +slipstream +slithering +slivovicas +slobbering +slockening +sloebushes +sloethorns +sloganeers +sloganised +sloganises +sloganized +sloganizes +sloppiness +slothfully +slouchiest +sloughiest +Slovenians +slovenlier +slovenlike +slubbering +sluggabeds +sluggishly +slumberers +slumberful +slumbering +slumberous +slummocked +slushiness +slutteries +sluttishly +smallgoods +smalminess +smaragdine +smaragdite +smarminess +smartarses +smartasses +smartening +smasheroos +smatterers +smattering +smeariness +smelliness +smelteries +smickering +smifligate +smirkingly +smithcraft +smithereen +smitheries +Smithfield +smokeboard +smokehoods +smokeproof +smoketight +smoothened +smoothings +smoothness +smoothpate +sm�rrebr�d +smorzandos +smotherers +smothering +smouldered +smudginess +smugglings +smuttiness +snaileries +snakebirds +snakebites +snakeroots +snakestone +snakeweeds +snakewoods +snapdragon +snappiness +snappingly +snappishly +snarlingly +snatchiest +snazziness +sneakiness +sneakingly +sneakishly +sneaksbies +sneeringly +sneeshings +sneezeweed +sneezewood +sneezewort +snickering +sniffiness +sniffingly +sniftering +sniggerers +sniggering +snigglings +snivellers +snivelling +snobbishly +snobocracy +snookering +snootiness +snorkelers +snorkeling +snorkelled +snortingly +snottiness +snowballed +snowblower +snowboards +snowbushes +snowdrifts +snowfields +snowflakes +snowflecks +snowflicks +snowmobile +snowscapes +snowstorms +snubbingly +snuffboxes +snuffiness +snufflings +snuggeries +soberingly +soberising +soberizing +sobersides +sobriquets +socialised +socialises +socialists +socialites +socialized +socializes +socialness +societally +sociograms +sociolects +sociologic +sociometry +sociopaths +sociopathy +Socratical +Socratised +Socratises +Socratized +Socratizes +sodalities +sodbusters +soddenness +S�derstr�m +sodomising +sodomizing +softenings +sojourners +sojourning +solacement +Solanaceae +solarising +solarizing +solderings +soldieries +soldiering +solecising +solecistic +solecizing +solemnised +solemniser +solemnises +solemnized +solemnizer +solemnizes +solemnness +solenettes +solenoidal +solfataras +solfataric +solfeggios +solferinos +solicitant +soliciting +solicitors +solicitous +solicitude +solidarism +solidarist +solidarity +solidating +solidified +solidifies +solidities +solifidian +solipedous +solipsists +solitaires +solitarian +solitaries +solitarily +solivagant +Solomonian +solonetses +solonetzes +solonetzic +solstitial +solubilise +solubility +solubilize +solutional +Somaliland +somascopes +somatology +somatotype +somberness +sombreness +sombrerite +somebodies +somersault +Somerville +somethings +somewhence +somewhiles +sommeliers +somnambule +somniating +somniative +somniatory +somniloquy +somnolence +somnolency +songsmiths +songstress +songwriter +sonneteers +sonnetings +sonnetised +sonnetises +sonnetists +sonnetized +sonnetizes +sonographs +sonography +sonorities +sonorously +sooterkins +sootflakes +soothingly +soothsayer +sophically +sophisters +sophistics +Sophoclean +sophomores +sophomoric +soporifics +sopraninos +sopranists +sorbitised +sorbitises +sorbitized +sorbitizes +Sorbonical +sordamente +sordidness +soricident +sororially +sororicide +sororising +sororities +sororizing +sorrowings +sorrowless +sortations +sortileger +sortitions +sottisiers +soubrettes +soubriquet +soullessly +soundcards +soundcheck +soundingly +soundproof +soupspoons +sourdeline +sourpusses +sousaphone +souteneurs +souterrain +southering +southerner +southernly +southlands +southsayer +southwards +sovereigns +sovietised +sovietises +sovietisms +sovietized +sovietizes +sovranties +spaceborne +spacecraft +spaceplane +spaceports +spaceships +spacewalks +spacewoman +spacewomen +spaciously +spadassins +spadiceous +spagerical +spaghettis +spagirical +spagirists +spagyrical +spagyrists +spallation +spancelled +spangliest +spanglings +spanielled +spaniolate +spaniolise +spaniolize +spankingly +Sparagmite +sparagrass +sparganium +sparkishly +sparklings +sparseness +Spartacist +spasmodist +spasticity +spatangoid +spatchcock +spathulate +spatiality +spattering +speakerine +speakingly +spearheads +spearmints +spearworts +specialise +specialism +specialist +speciality +specialize +speciating +speciation +speciesism +speciesist +specifical +specifiers +specifying +speciocide +speciosity +speciously +spectacled +spectacles +spectating +spectators +spectatrix +spectrally +speculated +speculates +speculator +speechless +speedfully +speediness +speedsters +speedwells +speldering +speldrings +speleology +speleothem +spellbinds +spellbound +spellcheck +spelldowns +spellicans +spellingly +spelunkers +spelunking +Spencerian +Spenserian +spermaceti +spermaduct +spermaries +spermarium +spermatics +spermatids +spermatium +spermicide +spermiduct +spermogone +sperrylite +sphacelate +sphaeridia +sphaerites +sphalerite +sphendones +Spheniscus +sphenodons +sphenogram +sphenoidal +sphereless +spherelike +sphericity +spherocyte +spheroidal +spherulite +sphincters +Sphingidae +sphinxlike +sphygmuses +spiceberry +spicileges +spiflicate +spikenards +spillikins +spillovers +spinaceous +spindliest +spindlings +spinescent +spinifexes +spinigrade +spinnakers +spinnerets +spinneries +spinnerule +spinsterly +spinstress +spiracular +spiraculum +spiralists +spiralling +spirasters +spirations +spiritedly +spiritings +spiritists +spiritless +spirituals +spirituous +spirituses +spirochete +spirograph +spirometer +spirometry +spirophore +spissitude +spitchcock +spitefully +spittlebug +splanchnic +splashdown +splashiest +splashings +splatching +splattered +spleenless +splenative +splendidly +splendours +splendrous +splenetics +spleniuses +spleuchans +splintered +splintwood +splotchier +splotchily +splotching +splurgiest +spluttered +splutterer +spodograms +spodomancy +spokeshave +spoliating +spoliation +spoliative +spoliators +spoliatory +spondaical +spondylous +spongeable +spongeware +spongewood +spongiform +sponginess +spongology +sponsional +sponsorial +sponsoring +spookiness +spoonbills +spoondrift +spoonerism +spoonmeats +sporadical +sporangial +sporangium +sporidesms +sporocarps +sporocysts +sporogonia +sporophore +sporophyll +sporophyls +sporophyte +sporozoite +sportances +sportfully +sportiness +sportingly +sportively +sportscast +sportswear +sporulated +sporulates +spotlessly +spotlights +spottiness +spouseless +sprackling +sprangling +sprattling +sprauchled +sprauchles +sprauncier +sprawliest +spreadable +spreadings +spreaghery +spreathing +spriggiest +sprightful +sprighting +springalds +springboks +springbuck +springhaas +springhead +springiest +springings +springless +springlets +springlike +springtail +springtide +springtime +springwood +springwort +sprinklers +sprinkling +sprintings +spritsails +sproutings +spruceness +spulebanes +spulyieing +spumescent +spunkiness +spuriosity +spuriously +sputterers +sputtering +spyglasses +spymasters +squabashed +squabasher +squabashes +squabbiest +squabblers +squabbling +squadronal +squadroned +squailings +squalidest +squalidity +squalliest +squallings +squamation +squamellas +squamiform +squamosals +squamosity +squamulose +squandered +squanderer +squareness +squarewise +squashable +squashiest +squattiest +squattling +squawkings +squeakiest +squeakings +squealings +squeezable +squeezings +squelchers +squelchier +squelching +squeteague +squibbings +squiffiest +squigglier +squiggling +squintings +squirality +squirarchs +squirarchy +squirearch +squiredoms +squirehood +squireling +squireship +squiresses +squirrelly +squirtings +squishiest +stabbingly +stabilates +stabilised +stabiliser +stabilises +stabilized +stabilizer +stabilizes +stablemate +stableness +stablished +stablishes +stackyards +stadholder +staffrooms +stagecoach +stagecraft +staggerers +staggering +staghounds +stagnantly +stagnating +stagnation +staircases +stairfoots +stairheads +stairlifts +stalactite +stalagmite +stalemated +stalemates +Stalingrad +Stalinists +stallenger +stalwartly +stalworths +stamineous +staminodes +stammerers +stammering +stampeding +stanchable +stanchered +stanchings +stanchions +stanchless +standgales +standishes +standpoint +standstill +stannaries +stannators +stannotype +staphyline +staphyloma +starboards +starchedly +starchiest +starfishes +starkening +starmonger +starosties +starriness +startingly +starvation +starveling +stasidions +statecraft +stateliest +statements +staterooms +statically +stationary +stationers +stationery +stationing +statistics +statocysts +statoliths +statoscope +statuaries +statuesque +statuettes +statutable +statutably +staunchest +staunching +staurolite +stavesacre +steadicams +steadiness +steakhouse +stealingly +stealthier +stealthily +stealthing +steamboats +steaminess +steamships +steamtight +steatocele +steelheads +steeliness +steelworks +steelyards +steenkirks +steepening +steepiness +Steerforth +steerlings +steganopod +stegodonts +stegosaurs +steinbocks +steinkirks +stellately +stellified +stellifies +stelliform +stellulate +stemmatous +stemwinder +stenchiest +stenciling +stencilled +stenciller +stenograph +stenopaeic +stenotopic +stenotypes +stentorian +stepbairns +stepfather +stephanite +Stephenson +stepmother +stepsister +steradians +stercorary +stercorate +sterculias +stereobate +stereocard +stereogram +stereopsis +stereotomy +stereotype +stereotypy +sterigmata +sterilised +steriliser +sterilises +sterilized +sterilizer +sterilizes +sternalgia +sternalgic +sternboard +sternebras +sternports +sternwards +sternworks +stertorous +stevedored +stevedores +stewardess +stiacciato +stibialism +sticcadoes +sticcatoes +sticharion +sticherons +stichidium +stichology +stickiness +stickybeak +stiffeners +stiffening +stiflingly +stigmarian +stigmatics +stigmatise +stigmatism +stigmatist +stigmatize +stigmatose +stilettoed +stilettoes +stillatory +stillicide +stiltiness +stimpmeter +stimulable +stimulancy +stimulants +stimulated +stimulates +stimulator +stingarees +stinginess +stingingly +stinkhorns +stinkingly +stinkstone +stintingly +stipellate +stipplings +stipulated +stipulates +stipulator +stirabouts +stirringly +stitchings +stitchwork +stitchwort +stochastic +stockading +stockhorns +stockiness +stockinets +stockinged +stockinger +stockpiled +stockpiles +stockstill +stocktaken +stocktakes +stockworks +stockyards +stodginess +stoitering +stokeholds +stolenwise +stolidness +stomachers +stomachful +stomachics +stomaching +stomachous +stomatitis +stomatopod +stonechats +stonecrops +Stonehenge +stonehorse +stoneshots +stonewalls +stoneworts +stonkering +stoopingly +stoplights +stoppering +storefront +storehouse +storerooms +storiettes +storiology +stormbirds +stormbound +stormfully +storminess +stormproof +storyboard +storyettes +stoutening +strabismal +strabismic +strabismus +strabotomy +stracchini +stracchino +straddlers +straddling +Stradivari +stragglers +stragglier +straggling +straighted +straighten +straighter +straightly +strainedly +strainings +straitened +straitness +stramashed +stramashes +stramazons +stramonium +stranglers +strangling +straplines +strapontin +strappados +strappings +strapworts +Strasbourg +stratagems +strategics +strategies +strategist +strathspey +stratified +stratifies +stratiform +Stratiotes +stratocrat +strauchted +stravaiged +Stravinsky +strawberry +strawboard +straylings +streakiest +streakings +streamered +streamiest +streamings +streamless +streamlets +streamline +streamling +streetboys +streetcars +streetfuls +streetlamp +streetroom +streetways +streetwise +strelitzes +strelitzia +strengthen +streperous +strepitant +strepitoso +strepitous +stressless +stretchers +stretchier +stretching +striations +striatures +strickling +strictness +strictured +strictures +striddling +stridelegs +stridently +strideways +stridulant +stridulate +stridulous +strifeless +strigiform +strikeouts +strikingly +Strindberg +stringency +stringendo +stringhalt +stringiest +stringings +stringless +strinkling +stripeless +stripiness +striplings +strippings +striptease +strivingly +strobilate +strobiline +strobiloid +stroddling +stroganoff +strokesman +strokesmen +strollings +stromatous +strombuses +strongarms +stronghead +stronghold +strongyles +strophiole +stroppiest +stroudings +structural +structured +structures +strugglers +struggling +Struldbrug +strumpeted +struthioid +struthious +struttings +strychnine +strychnism +stubbiness +stubbliest +stubborned +stubbornly +studiously +stuffiness +stultified +stultifier +stultifies +stumblebum +stumpiness +stunningly +stuntwoman +stuntwomen +stupefiers +stupefying +stupendous +stupidness +stuprating +stupration +sturdiness +stutterers +stuttering +Stuyvesant +stylistics +stylobates +stylograph +stylolitic +stylometry +stylophone +stylopised +stylopized +stypticity +suaveolent +subacetate +subacidity +subactions +subacutely +subahships +subalterns +subangular +subaquatic +subaqueous +subarcuate +subarticle +subatomics +subaudible +subaverage +subcabinet +subcaliber +subcalibre +subcantors +subcarrier +subceiling +subcentral +subception +subchanter +subchapter +subchelate +subcircuit +subclasses +subclauses +subclavian +subcompact +subcordate +subcostals +subcranial +subcrustal +subculture +subdeacons +subdeanery +subdecanal +subdeliria +subdialect +subdivided +subdivider +subdivides +subducting +subduction +subduement +subediting +subeditors +suberising +suberizing +subfertile +subfuscous +subgeneric +subgenuses +subglacial +subglobose +subheading +subincised +subincises +subintrant +subitising +subitizing +subjectify +subjecting +subjection +subjective +subjoinder +subjoining +subjugated +subjugates +subjugator +subkingdom +sublations +subleasing +sublessees +sublessors +subletters +subletting +sublimable +sublimated +sublimates +subliminal +sublimings +sublimised +sublimises +sublimized +sublimizes +sublingual +submanager +submarined +submariner +submarines +submediant +submentums +submerging +submersing +submersion +submicrons +submission +submissive +submitters +submitting +submontane +submucosae +submucosal +subnascent +subnatural +subnormals +subnuclear +suboceanic +suboctaves +suboctuple +subofficer +suboffices +suborbital +subordinal +subphrenic +subpoenaed +subprefect +subprogram +subregions +subreption +subreptive +subrogated +subrogates +subroutine +subscribed +subscriber +subscribes +subscripts +subsection +subsellium +subsequent +subserving +subsessile +subshrubby +subsidence +subsidency +subsidiary +subsidised +subsidiser +subsidises +subsidized +subsidizer +subsidizes +subsistent +subsisting +subsoilers +subsoiling +subspecies +subspinous +substances +substation +substellar +substernal +substitute +substracts +substratal +substrates +substratum +substructs +subsultive +subsultory +subsumable +subsurface +subsystems +subtangent +subtenancy +subtenants +subtending +subterfuge +subterrain +subterrane +subterrene +subtilised +subtilises +subtilists +subtilized +subtilizes +subtilties +subtitling +subtleness +subtleties +subtracted +subtracter +subtractor +subtrahend +subtropics +subtruding +subvariety +subvassals +subvention +subversals +subversing +subversion +subversive +subverters +subverting +subwardens +subwoofers +succedanea +succeeders +succeeding +succentors +successful +succession +successive +successors +succinates +succincter +succinctly +succourers +succouring +succubuses +succulence +succulency +succulents +succumbing +succursale +succursals +succussing +succussion +succussive +sucralfate +sudatories +sudatorium +suddenness +sueability +sufferable +sufferably +sufferance +sufferings +sufficient +suffisance +sufflation +suffocated +suffocates +suffragans +suffragism +suffragist +suffusions +sugarallie +sugariness +suggesters +suggesting +suggestion +suggestive +suicidally +suitresses +sulcalised +sulcalises +sulcalized +sulcalizes +sulcations +sulfhydryl +sullenness +sulphatase +sulphation +sulphonate +sulphonium +sulphurate +sulphurets +sulphuring +sulphurise +sulphurize +sulphurous +Sultanabad +sultanates +sultanship +sultriness +summarised +summarises +summarists +summarized +summarizes +summations +summeriest +summerings +summerlike +summersets +summertide +summertime +summerwood +summiteers +summitless +summonable +summonsing +sunbathers +sunbathing +sunburning +sunderance +sunderings +Sunderland +sunderment +sundresses +sunflowers +sunglasses +sunlounger +sunrisings +sunscreens +sunsetting +superacute +superadded +superalloy +superaltar +superbness +superbrain +superbrats +supercargo +superclass +supercoils +supercools +superdense +superettes +superexalt +superfecta +superfluid +superfused +superfuses +supergenes +supergiant +superglues +supergrass +supergroup +superheats +superheavy +superheros +superhives +superhuman +superiorly +superlunar +supermarts +superminis +supermodel +supernally +supernovae +supernovas +superorder +superoxide +superphyla +superposed +superposes +superpower +supersalts +supersaver +superseded +superseder +supersedes +supersonic +supersound +superstars +superstate +superstore +supersweet +supertaxes +supertitle +supertonic +supervened +supervenes +supervisal +supervised +supervisee +supervises +supervisor +superwoman +superwomen +supinating +supination +supinators +supineness +suppedanea +supperless +suppertime +supplanted +supplanter +supplement +suppleness +suppletion +suppletive +suppletory +suppliance +suppliants +supplicant +supplicate +supplicats +supporters +supporting +supportive +supposable +supposably +supposedly +supposings +suppressed +suppresses +suppressor +suppurated +suppurates +supralunar +suprapubic +suprarenal +surceasing +surcharged +surcharger +surcharges +surcingled +surcingles +surculuses +surefooted +suretyship +surfaceman +surfacemen +surfacings +surfactant +surfcaster +surfeiters +surfeiting +surgically +surjection +surmasters +surmisable +surmisings +surmounted +surmounter +surmullets +surnominal +surpassing +surplusage +surprisals +surprisers +surprising +surrealism +surrealist +surrejoins +surrenders +surrogates +surrounded +surveilled +surveilles +surveyance +surveyings +surviewing +survivable +survivance +susceptive +suscipient +suscitated +suscitates +suspectful +suspecting +suspenders +suspending +suspensers +suspension +suspensive +suspensoid +suspensors +suspensory +suspicions +suspicious +suspirious +sussararas +sustainers +sustaining +sustenance +sustentate +sustention +sustentive +susurrated +susurrates +susurruses +Sutherland +suturation +suzerainty +Swadeshism +swaggerers +swaggering +Swaledales +swallowers +swallowing +swampiness +swamplands +swankiness +swanneries +swansdowns +swarajists +swarthiest +swashworks +swatchbook +swattering +sweatiness +sweatpants +sweatshirt +Swedenborg +sweepbacks +sweepingly +sweepstake +sweetbread +sweeteners +sweetening +sweetheart +sweetmeats +sweetshops +sweetwoods +sweetworts +swellingly +sweltering +sweltriest +swerveless +swimmerets +swimmingly +swindlings +swineherds +swinestone +swingboats +swingingly +swinglings +swingtrees +switchback +switcheroo +switchgear +switchings +swithering +swivelling +swooningly +swordcraft +swordproof +sybaritish +sybaritism +sycophancy +sycophants +syllabical +syllabised +syllabises +syllabisms +syllabized +syllabizes +syllabuses +syllogised +syllogiser +syllogises +syllogisms +syllogized +syllogizer +syllogizes +sylphidine +symbolical +symbolised +symboliser +symbolises +symbolisms +symbolists +symbolized +symbolizer +symbolizes +symbolling +symmetrian +symmetries +symmetrise +symmetrize +sympathies +sympathise +sympathize +Sympetalae +symphilism +symphilous +symphonies +symphonion +symphonist +symphylous +symphyseal +symphysial +symposiast +symposiums +synaereses +synaeresis +synagogues +synaloepha +synandrium +synandrous +synangiums +synanthous +synarchies +synastries +synaxarion +syncarpous +synchronal +synchronic +synclastic +synclinals +syncopated +syncopates +syncopator +syncretise +syncretism +syncretist +syncretize +syncytiums +syndactyly +synderesis +syndetical +syndicated +syndicates +syndicator +synecdoche +synecology +syneidesis +synergetic +synergised +synergises +synergists +synergized +synergizes +Syngenesia +syngenesis +syngenetic +synoecetes +synoecious +synoecised +synoecises +synoecized +synoecizes +synoeketes +synonymies +synonymise +synonymist +synonymity +synonymize +synonymous +synopsised +synopsises +synopsized +synopsizes +synoptical +synostoses +synostosis +syntagmata +syntenoses +syntenosis +synteresis +synthesise +synthesist +synthesize +synthetics +synthetise +synthetist +synthetize +synthronus +syntonised +syntonises +syntonized +syntonizes +syphilised +syphilises +syphilitic +syphilized +syphilizes +syphilomas +syringitis +systematic +systemised +systemises +systemized +systemizes +systemless diff --git a/com/agnibho/code/anagram/dictionary/S11.txt b/com/agnibho/code/anagram/dictionary/S11.txt new file mode 100644 index 0000000..23be012 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S11.txt @@ -0,0 +1,2003 @@ +Saarbr�cken +Sabbatarian +Sabbathless +sabbaticals +sabbatising +sabbatizing +sabretaches +saburration +saccharated +saccharides +saccharised +saccharises +saccharized +saccharizes +saccharoses +sacculation +sacculiform +sacralising +sacralizing +sacramental +sacramented +sacrificers +sacrificial +sacrificing +sacrilegist +sacrocostal +saddlebacks +saddlebills +saddlenosed +Sadduceeism +safeguarded +sagaciously +sagebrushes +sagittarian +sagittaries +Sagittarius +sagittiform +sailboarder +saintliness +Saintpaulia +salableness +salaciously +salamanders +saleability +salesladies +salesperson +salicaceous +salicionals +salicornias +salinometer +salmagundis +Salmanasers +Salmanazars +salmonellae +salmonellas +salpingitic +salpingitis +salsuginous +saltarellos +saltatorial +saltierwise +saltigrades +saltimbanco +saltimbocca +saltirewise +saltishness +salubrities +salutations +salvability +Salvadorans +Salvadorean +Salvadorian +salvageable +salvatories +sanatoriums +sanctifiers +sanctifying +sanctioneer +sanctioning +sanctitudes +sanctuaries +sanctuarise +sanctuarize +sandbaggers +sandbagging +sandblasted +sandblaster +Sandemanian +sanderlings +sanderswood +sandgropers +Sandinistas +sandpapered +Sandringham +sandwiching +Sanforising +Sanforizing +sanguifying +Sanguinaria +sanguineous +Sanguisorba +sanitarians +sanitarists +sanitariums +sansculotte +sansevieria +Sanskritist +Santalaceae +Sapindaceae +saplessness +saponaceous +saponifying +sapotaceous +saprobiotic +saprogenous +saprolegnia +sapropelite +saprophytes +saprophytic +saracenical +sarcastical +sarcenchyme +sarcocystes +sarcocystis +sarcoidosis +sarcomatous +sarcophagal +sarcophagus +sarcoplasms +sarracenias +sartorially +sasquatches +sassafrases +satanically +satanophany +satelliting +satellitise +satellitize +satiability +satinflower +satirically +satisfiable +satisficing +Saturnalian +Saturnalias +sauerbraten +saunterings +saurischian +sauropodous +sauropsidan +saussuritic +savableness +savouriness +saxophonist +scabbarding +scabbedness +scaberulous +scaffoldage +scaffolders +scaffolding +scalability +scalariform +scalpriform +scamblingly +scandalised +scandaliser +scandalises +scandalized +scandalizer +scandalizes +scandalling +Scandinavia +scapegoated +scapegraces +scapigerous +scapularies +scarabaeids +scarabaeist +scarabaeoid +scaramouche +Scarborough +scarcements +scaremonger +scatterable +scatteredly +scattergood +scatterings +scatterling +scattershot +scenarising +scenarizing +scenography +scepterless +sceptically +sceptreless +sceuophylax +Scharnhorst +schecklaton +schematical +schematised +schematises +schematists +schematized +schematizes +schemozzled +schemozzles +scherzandos +schillerise +schillerize +schipperkes +schismatics +schismatise +schismatize +schistosity +Schistosoma +schistosome +Schizanthus +schizocarps +schizogenic +Schizophyta +schizophyte +schizopodal +Schlesinger +schlimazels +schmaltzier +schmalziest +scholarship +scholastics +scholiastic +schoolcraft +schoolgirls +schoolgoing +schoolhouse +schoolmaids +schoolrooms +schoolwards +schorlomite +schottische +schrecklich +Schr�dinger +schw�rmerei +Schwarzkopf +Schwarzwald +sciamachies +scientising +scientistic +scientizing +Scientology +scincoidian +scintigrams +scintillant +scintillate +sciosophies +scissorwise +Scitamineae +sclerocauly +scleroderma +scleroderms +sclerometer +sclerophyll +sclerotioid +sclerotised +sclerotises +sclerotitis +sclerotized +sclerotizes +scoleciform +Scolopendra +scopolamine +scorbutical +scorchingly +scordaturas +scoriaceous +scorpaenoid +Scorpionida +scorzoneras +Scotchwoman +Scotchwomen +scotomatous +scotometers +Scotophiles +Scotophilia +Scotophobes +Scotophobia +Scotophobic +Scotticised +Scotticises +Scotticized +Scotticizes +Scottifying +Scottishman +scoundrelly +scouthering +scowderings +scragginess +scraggliest +scramblings +scrappiness +scratchcard +scratchiest +scratchings +scratchless +scratchpads +scrawlingly +scrawniness +screamingly +screechiest +screencraft +screenplays +scribacious +scribblings +scrimmagers +scrimmaging +scrimpiness +scrimshandy +scrimshanks +scrimshawed +scrimshoner +scripophile +scripophily +scriptorial +scriptorium +scripturism +scripturist +scrobicular +scrolleries +scroungings +scruffiness +scrummagers +scrumptious +scrutineers +scrutinised +scrutiniser +scrutinises +scrutinized +scrutinizer +scrutinizes +sculduddery +sculduggery +sculpturing +scumfishing +scuppernong +scuttlefuls +scyphistoma +sdeignfully +seaquariums +searchingly +searchlight +seasickness +seasonality +seborrhoeic +secernments +secessional +secondaries +secondarily +secondments +secretaires +secretarial +secretariat +secretaries +secretional +secretively +sectilities +sectionally +sectionised +sectionises +sectionized +sectionizes +sectorising +sectorizing +secularised +secularises +secularists +secularized +secularizes +securements +securitised +securitises +securitized +securitizes +sedentarily +sedigitated +sedimentary +sedimenting +seditionary +seditiously +seducements +seductively +seemingness +segmentally +segregating +segregation +segregative +seguidillas +seigneurial +seigneuries +seigniorage +seigniorial +seigniories +seignorages +seismically +seismograms +seismograph +seismologic +seismometer +seismometry +seismonasty +seismoscope +selaginella +selectively +selectivity +selectorial +selenograph +selfishness +Sellotaping +seltzogenes +semanticist +semaphoring +semasiology +semiaquatic +semicircled +semicircles +semicirques +seminarians +seminarists +seminations +semiologist +semiotician +semipalmate +semiquavers +semitrailer +sempervivum +sempiternal +sempstering +senatorship +seniorities +Sennacherib +sensational +senselessly +sensibility +sensitisers +sensitising +sensitively +sensitivity +sensitizers +sensitizing +sensualised +sensualises +sensualists +sensualized +sensualizes +sensualness +Sensurround +sententious +sentimental +sentinelled +separations +separatists +sepiostaire +Septembrist +septenaries +septenarius +septennates +septentrial +septentrion +septicaemia +septiferous +septifragal +septillions +sepulchered +sepulchrous +sepulturing +sequestered +sequestrant +sequestrate +serendipity +sergeancies +serialising +serializing +sericterium +sericulture +serigrapher +serigraphic +seriousness +serjeancies +serjeanties +sermonettes +sermonisers +sermonising +sermonizers +sermonizing +seroconvert +serological +serologists +serotherapy +serpentinic +serpentised +serpentises +serpentized +serpentizes +serpentlike +serpiginous +serrasalmos +serratulate +serrulation +sertularian +servantless +servantship +serviceable +serviceably +serviceless +servilities +servitorial +servomotors +sesquialter +sesquioxide +sesquipedal +sessionally +setterworts +settledness +settlements +sevenpences +seventeenth +seventieths +severalfold +severalties +sexagesimal +sexennially +sexlessness +sexological +sexologists +sextillions +sextodecimo +sextonesses +sextonships +sexualising +sexualities +sexualizing +shabracques +shadberries +shadowcasts +shadowgraph +shadowiness +Shadowlands +Shaftesbury +shaggedness +Shakespeare +shakuhachis +shallowings +shallowness +shamanistic +shamelessly +shameworthy +shamiyanahs +shandrydans +shanghaiers +shanghaiing +shapelessly +shapeliness +sharefarmer +shareholder +shearwaters +shebeenings +sheepshanks +shelftalker +shellacking +shelldrakes +shellfishes +shellycoats +shelterbelt +shelterings +shelterless +shenanigans +shepherdess +shepherding +sherardised +sherardises +sherardized +sherardizes +sheriffalty +sheriffdoms +sheriffship +Shetlanders +shibboleths +shieldlings +shieldrakes +shieldwalls +shiftlessly +shigelloses +shigellosis +shillelaghs +shimmerings +shiningness +shipbuilder +shiplapping +shipwrecked +shipwrights +shirtwaists +shiveringly +shlemozzled +shlemozzles +shmaltziest +shoehorning +shoestrings +shopaholics +shopbreaker +shopkeepers +shopkeeping +shoplifters +shoplifting +shopwalkers +shortbreads +shortchange +shortcoming +shouldering +shovelnoses +showboaters +showboating +showeriness +showgrounds +showjumpers +showmanship +shriekingly +shrinkingly +shrinkpacks +shrinkwraps +shrivelling +shrubberied +shrubberies +shrubbiness +shudderings +shuddersome +shufflingly +shunamitism +shutterbugs +shuttlecock +shuttlewise +sialagogues +sialogogues +sialography +sialorrhoea +siciliennes +sickeningly +sickishness +sicknursing +sideropenia +siderophile +siderostats +sideswipers +sideswiping +sidetracked +sidewinders +sightlessly +sightliness +sightscreen +sightseeing +sightworthy +sigillarian +sigillation +sigmoidally +signalising +signalizing +signatories +signifiable +significant +significate +signposting +silhouetted +silhouettes +silicifying +sillimanite +silverbacks +silveriness +silverising +silverizing +silverlings +silversides +silversmith +Silverstone +silverweeds +silvestrian +similitudes +simperingly +simpliciter +simplifiers +simplifying +simulacrums +simulations +simulcasted +sinarchists +sinarquists +sincereness +sindonology +sinecurists +sinfonietta +Singaporean +singlestick +singletrees +singsonging +singularise +singularism +singularist +singularity +singularize +sinisterity +sinistrally +sinistrorse +sinlessness +Sinological +Sinologists +Sinophilism +sinuosities +sinuousness +sinupallial +siphonogams +siphonogamy +sipunculids +sipunculoid +sisseraries +sisterhoods +sitiophobia +situational +Sivatherium +sixteenthly +sjambokking +skateboards +skedaddlers +skedaddling +skeletonise +skeletonize +skelloching +skeptically +sketchiness +skeuomorphs +skiamachies +skilfulness +Skillcentre +skilligalee +skilligolee +skimmington +skirmishers +skirmishing +skrimmaging +skrimshanks +skulduggery +skyjackings +skyscrapers +slackenings +slaisteries +slaistering +slaughtered +slaughterer +slaveringly +slavishness +Slavonicise +Slavonicize +Slavonising +Slavonizing +sleazeballs +sleekstones +sleeplessly +sleepwalked +sleepwalker +slenderised +slenderises +slenderized +slenderizes +slenderness +slickenside +slickstones +slightingly +slingstones +slipperiest +slipperwort +slipstreams +slivovitzes +slivowitzes +sloganeered +sloganising +sloganizing +slouchingly +slovenliest +slowcoaches +slubberings +sluggardise +sluggardize +slumberings +slumberland +slumberless +slumbersome +slumbrously +slummocking +smallholder +smatterings +smifligated +smifligates +smilingness +smithereens +Smithsonian +smithsonite +smokeboards +smokelessly +smokescreen +smoothening +sm�rg�sbord +sm�rrebr�ds +smouldering +snakestones +snakishness +snapdragons +snapshooter +snatchingly +sneezeweeds +sneezewoods +sneezeworts +snickersnee +sniggerings +snobbocracy +snobography +snorkelling +snowballing +snowberries +snowblowers +snowboarder +snowmobiles +snowsurfing +soapberries +sociability +socialising +socialistic +socializing +societarian +Socinianism +sociologese +sociologism +sociologist +sociometric +sociopathic +sockdolager +sockdologer +Socratising +Socratizing +sodomitical +softlanding +sojournings +sojournment +solacements +solanaceous +solarimeter +soldatesque +soldierings +soldierlike +soldiership +solemnified +solemnifies +solemnifing +solemnisers +solemnising +solemnities +solemnizers +solemnizing +solicitants +solicitings +solicitudes +solidarists +solidifying +solifidians +solifluxion +soliloquies +soliloquise +soliloquist +soliloquize +solipsistic +solitarians +solivagants +solmisation +solmization +solubilised +solubilises +solubilized +solubilizes +solutionist +solvability +somatically +somatogenic +somatologic +somatoplasm +somatotonia +somatotonic +somatotyped +somatotypes +somersaults +somersetted +somewhither +somnambular +somnambules +somnambulic +somniculous +somniferous +somnivolent +somnolently +songfulness +songwriters +sonneteered +sonnetising +sonnetizing +sonographer +soothfastly +soothsayers +soothsaying +sophistical +sophistries +sorbitising +sorbitizing +sorceresses +Soroptimist +sororicides +sorrowfully +sortilegers +soteriology +sottishness +soubriquets +soulfulness +soundchecks +soundlessly +soundproofs +sourdelines +sousaphones +souterrains +Southampton +southermost +southerners +southernise +southernism +southernize +southlander +southsayers +southsaying +southwardly +sovereignly +sovereignty +sovietising +sovietizing +spacefaring +spaceplanes +spacewalked +spallations +spancelling +spanielling +spaniolated +spaniolates +spaniolised +spaniolises +spaniolized +spaniolizes +sparagmatic +sparganiums +sparingness +sparklessly +sparklingly +spasmatical +spasmodical +spasmodists +spastically +spatangoids +spatchcocks +spathaceous +spatterdash +speakerines +speakership +spearfishes +spearheaded +specialised +specialiser +specialises +specialisms +specialists +specialized +specializer +specializes +specialogue +specialties +speciesists +specifiable +specificate +specificity +spectacular +spectatress +spectrality +spectrogram +spectrology +speculating +speculation +speculatist +speculative +speculators +speculatory +speculatrix +speechcraft +speechified +speechifier +speechifies +speedometer +spelaeology +spelaeothem +speleothems +spellbinder +spellchecks +spendthrift +Spenglerian +Spergularia +spermaducts +Spermaphyta +spermaphyte +spermatheca +spermatical +spermatozoa +spermicidal +spermicides +spermiducts +spermogones +spermogonia +spermophile +Spermophyta +spermophyte +spessartine +spessartite +sphacelated +sphaeridium +Sphagnaceae +sphagnology +sphenograms +spherically +spherocytes +spheroidise +spheroidize +spherometer +spherulitic +sphincteral +sphincteric +sphingosine +sphragistic +sphygmogram +sphygmology +spifflicate +spiflicated +spiflicates +spinelessly +spinescence +spiniferous +spinigerous +spinnerette +spinnerules +Spinozistic +spinsterdom +spinsterial +spinsterian +spinsterish +spiraculate +spiraliform +spirillosis +spiritistic +spiritually +spiritualty +spirituelle +Spirochaeta +spirochaete +spirochetes +spirographs +spirography +spirometers +spirometric +spirophores +spissitudes +spitchcocks +spitefuller +Spitsbergen +splashdowns +splashiness +splashproof +splattering +splendorous +splenectomy +splenetical +splintering +splintwoods +splodginess +splotchiest +splutterers +spluttering +spodomantic +spokeshaves +spokeswoman +spokeswomen +spoliations +spondulicks +spondylitic +spondylitis +spondylosis +sponsorship +spontaneity +spontaneous +spoonerisms +sporangiola +sporangiole +sporocystic +sporogenous +sporogonium +sporophores +sporophoric +sporophylls +sporophytes +sporophytic +sportcaster +sportscasts +sportswoman +sportswomen +sporulating +sporulation +spotlighted +spottedness +sprauchling +spraunciest +spreadingly +spreadsheet +sprecheries +sprightlier +springboard +springbucks +Springfield +springheads +springiness +Springsteen +springtails +springtides +springworts +sprinklings +spuilzieing +spumescence +sputterings +squabashers +squabashing +squadroning +squalidness +squamations +squanderers +squandering +squarsonage +squashiness +squattiness +squeakeries +squeakiness +squeakingly +squeamishly +squeegeeing +squelchiest +squelchings +squeteagues +squiggliest +squilgeeing +squintingly +squirarchal +squirearchs +squirearchy +squirelings +squireships +squirrelled +stabilisers +stabilising +stabilities +stabilizers +stabilizing +stablemates +stablishing +stactometer +stadholders +stadtholder +stagflation +staggerings +stagnations +Stahlhelmer +Stahlianism +stainlessly +staircasing +stakeholder +staktometer +stalactical +stalactital +stalactited +stalactites +stalactitic +stalagmites +stalagmitic +stalemating +stallengers +stallholder +staminodium +stammerings +stanchelled +stanchering +stanchioned +standardise +standardize +standpoints +standstills +stapediuses +staphylitis +starboarded +starchiness +starmongers +startlingly +starvations +starvelings +stasimorphy +stateliness +statemented +statesmanly +stateswoman +stateswomen +statistical +statoscopes +statutorily +staunchable +staunchless +staunchness +staurolitic +stauroscope +stavesacres +steadfastly +steakhouses +stealthiest +steatoceles +steatopygia +steatorrhea +steelworker +steeplejack +steganogram +steganopods +Stegosaurus +Steinberger +stellarator +stelleridan +stellifying +stellionate +stencillers +stencilling +stenocardia +stenochrome +stenochromy +stenographs +stenography +stenotropic +stenotypist +stepbrother +stepfathers +stephanotis +stepmothers +Steppenwolf +stepsisters +stercorated +stercorates +stereobates +stereobatic +stereoblind +stereocards +stereograms +stereograph +stereometer +stereometry +stereophony +stereoptics +stereoscope +stereoscopy +stereosonic +stereotaxes +stereotaxia +stereotaxic +stereotaxis +stereotyped +stereotyper +stereotypes +stereotypic +sterilisers +sterilising +sterilizers +sterilizing +sternotribe +sternsheets +sternutator +stethoscope +stethoscopy +stevedoring +Stevengraph +stewardries +stewardship +stewartries +sticharions +stichometry +stickleader +stickleback +stickybeaks +stiffenings +stigmarians +stigmatical +stigmatised +stigmatises +stigmatists +stigmatized +stigmatizes +stilbestrol +stilettoing +stillicides +stiltedness +stimpmeters +stimulating +stimulation +stimulative +stimulators +stintedness +stipendiary +stipendiate +stipulating +stipulation +stipulators +stipulatory +stitchcraft +stitchworts +stockbroker +stockfishes +Stockhausen +stockholder +stockinette +stockingers +stockpiling +stocktaking +stoicalness +stomachfuls +stomachical +stomachless +stomatology +Stomatopoda +stomatopods +stonefishes +stoneground +stonehorses +stonewalled +stonewaller +stonewashed +storehouses +storekeeper +Stourbridge +strabometer +straggliest +stragglings +straightens +straightest +straighting +straightish +straightway +straitening +stramashing +stramineous +stramoniums +strangeness +Strangeways +strangulate +strapontins +strappadoed +strategetic +strategical +strategists +Strathclyde +strathspeys +stratifying +stratocracy +stratocrats +stratopause +strauchting +stravaiging +strawboards +strawflower +streakiness +streaminess +streamingly +streamlined +streamlines +streamlings +streetlamps +streetlight +streetscape +streetwards +strelitzias +strengthens +strengthful +strenuosity +strenuously +stretchable +stretchered +stretchiest +stretchless +stridulated +stridulates +stridulator +stringently +stringiness +strinklings +stripteaser +strobilated +strobilates +stroboscope +stroganoffs +strongarmed +strongholds +strongpoint +strongyloid +strophioles +structuring +strugglings +Struldbrugs +strumpeting +Struthiones +struttingly +stubborning +studentship +studiedness +stultifiers +stultifying +stumblebums +stumblingly +stuntedness +stupendious +stupidities +stuprations +stutterings +styliferous +stylisation +stylishness +stylization +stylographs +stylography +stylophones +stylopodium +Styracaceae +suasiveness +subacidness +subaerially +subaffluent +subagencies +subahdaries +suballiance +subarboreal +subarration +subassembly +subaudition +subaxillary +subbasement +subbranches +subbreeding +subcapsular +subcardinal +subcategory +subceilings +subcellular +subchanters +subchloride +subclinical +subcompacts +subcontract +subcontrary +subcortical +subcritical +subcultural +subcultures +subdeaconry +subdelirium +subdiaconal +subdistrict +subdividers +subdividing +subdivision +subdivisive +subdominant +subductions +subduedness +subfamilies +subfreezing +subglobular +subharmonic +subheadings +subimaginal +subimagines +subincising +subincision +subindicate +subindustry +subirrigate +subitaneous +subjections +subjectless +subjectship +subjoinders +subjugating +subjugation +subjugators +subjunction +subjunctive +subkingdoms +sublanguage +sublettings +sublimating +sublimation +sublimeness +sublimising +sublimities +sublimizing +sublittoral +subluxation +submarginal +submariners +submarining +submediants +submergence +submergible +submersible +submersions +submissible +submissions +submissness +submittings +submolecule +submultiple +subofficers +subordinary +subordinate +subornation +subparallel +subpoenaing +subprefects +subprioress +subprograms +subregional +subreptions +subrogating +subrogation +subroutines +subscapular +subschemata +subscribers +subscribing +subsections +subsensible +subsequence +subservient +subsidences +subsidisers +subsidising +subsidizers +subsidizing +subsistence +subspecific +substandard +substantial +substantive +substations +substituent +substituted +substitutes +substracted +substrative +substructed +subsumption +subsumptive +subtacksman +subtacksmen +subtangents +subterfuges +subterhuman +subterminal +subterrains +subterrenes +subtileness +subtilising +subtilities +subtilizing +subtotalled +subtracting +subtraction +subtractive +subtractors +subtrahends +subtreasury +subtropical +subumbrella +Subungulata +subungulate +suburbanise +suburbanism +suburbanite +suburbanity +suburbanize +subventions +subversions +subversives +subvertical +subvitreous +succedaneum +successions +successless +succinctest +succinctory +succotashes +succourable +succourless +succulently +succursales +succussions +sudatoriums +Sudetenland +sufferances +sufficience +sufficiency +suffisances +suffixation +suffocating +suffocation +suffocative +suffragette +suffragists +suffumigate +suggestible +suggestions +suicidology +suitability +sulcalising +sulcalizing +sulfadoxine +sulfonation +sulphhydryl +sulphonated +sulphonates +sulphurated +sulphurates +sulphurator +sulphureous +sulphureted +sulphurised +sulphurises +sulphurized +sulphurizes +sulphurwort +sultanesses +sultanships +summariness +summarising +summarizing +summational +summersault +summertides +summertimes +sumpsimuses +sumptuosity +sumptuously +sunderances +sunderments +sunlessness +sunloungers +Sunningdale +superabound +superactive +superadding +superalloys +superaltars +superbright +supercharge +supercherie +supercoiled +supercooled +superdainty +superexalts +superfamily +superfatted +superfectas +superfetate +superficial +superficies +superfluity +superfluous +superfusing +superfusion +supergiants +supergroups +superheated +superheater +superimpose +superinduce +superinfect +superintend +superioress +superiority +superjacent +superlative +superlunary +supermarket +supermodels +supernatant +supernature +supernormal +superoctave +superorders +superphylum +superposing +superpowers +superpraise +superrefine +supersavers +superscribe +superscript +supersedeas +supersedere +superseders +superseding +supersedure +supersonics +superstates +superstores +superstrata +superstruct +supersubtle +supertanker +supertitles +supertonics +supervening +supervisals +supervising +supervision +supervisors +supervisory +supervolute +superweapon +suppedaneum +suppertimes +supplanters +supplanting +supplements +suppletions +suppliances +suppliantly +supplicants +supplicated +supplicates +supplicavit +supportable +supportably +supportance +supportings +supportless +supportress +supposition +suppositive +suppository +suppressant +suppressing +suppression +suppressive +suppressors +suppurating +suppuration +suppurative +supracostal +supremacies +supremacism +supremacist +Suprematism +Suprematist +supremeness +suraddition +surbasement +surchargers +surcharging +surcingling +surfactants +surfcasters +surfcasting +surfeitings +surgeoncies +surgeonship +surjections +surmistress +surmounters +surmounting +surpassable +surplusages +surprisedly +surprisings +surrealists +surrebuttal +surrebutted +surrebutter +surrejoined +surrendered +surrenderee +surrenderer +surrenderor +surrogation +surrounding +surtarbrand +surturbrand +surveillant +surveilling +surveyances +survivalism +survivalist +survivances +susceptance +susceptible +susceptibly +suscipients +suscitating +suscitation +suspectable +suspectedly +suspectless +suspenseful +suspensible +suspensions +suspensoids +suspiration +sustainable +sustainedly +sustainings +sustainment +sustenances +sustentated +sustentates +sustentator +sustentions +susurrating +susurration +suturations +svarabhakti +swaggerings +swarthiness +swatchbooks +sweatshirts +sweepstakes +sweetbreads +sweetenings +sweetfishes +sweethearts +sweetiewife +swelterings +swingeingly +swingletree +swingometer +swinishness +switchbacks +switchblade +switchboard +switcheroos +switchgears +Switzerland +swordfishes +swordplayer +sybaritical +sycophantic +sycophantry +Sydneysider +syllabaries +syllabarium +syllabicate +syllabicity +syllabified +syllabifies +syllabising +syllabizing +sylleptical +syllogisers +syllogising +syllogistic +syllogizers +syllogizing +sylvestrian +symbolisers +symbolising +symbolistic +symbolizers +symbolizing +symbolology +symmetalism +symmetallic +symmetrians +symmetrical +symmetrised +symmetrises +symmetrized +symmetrizes +sympathetic +sympathique +sympathised +sympathiser +sympathises +sympathized +sympathizer +sympathizes +sympetalous +symphonions +symphonious +symphonists +sympodially +symposiarch +symptomatic +symptomless +synagogical +synaloephas +synandriums +synanthesis +synanthetic +synaxarions +synchoreses +synchoresis +synchromesh +synchronies +synchronise +synchronism +synchronize +synchronous +synchrotron +synclinoria +syncopating +syncopation +syncopators +syncretised +syncretises +syncretisms +syncretists +syncretized +syncretizes +syndesmoses +syndesmosis +syndesmotic +syndicalism +syndicalist +syndicating +syndication +syndicators +syndyasmian +synecdochic +synecologic +synergising +synergistic +synergizing +syngnathous +synodically +synoecioses +synoeciosis +synoecising +synoecizing +synoecology +synonymatic +synonymical +synonymicon +synonymised +synonymises +synonymists +synonymized +synonymizes +synopsising +synopsizing +synoptistic +syntactical +syntagmatic +synthesised +synthesiser +synthesises +synthesists +synthesized +synthesizer +synthesizes +synthetical +synthetised +synthetiser +synthetises +synthetists +synthetized +synthetizer +synthetizes +syntonising +syntonizing +syphilising +syphilitics +syphilizing +syphilology +syringotomy +syssarcoses +syssarcosis +systematics +systematise +systematism +systematist +systematize +systemising +systemizing +Szymanowski diff --git a/com/agnibho/code/anagram/dictionary/S12.txt b/com/agnibho/code/anagram/dictionary/S12.txt new file mode 100644 index 0000000..39fd2f5 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S12.txt @@ -0,0 +1,1372 @@ +Sabbatarians +Sabellianism +saburrations +saccadically +saccharified +saccharifies +saccharinity +saccharising +saccharizing +saccharoidal +sacculations +sacerdotally +sacramentals +sacramentary +sacramenting +sacrilegious +sacrilegists +sacrocostals +sacroiliitis +sadistically +safeguarding +sailboarders +sailboarding +salamandrian +salamandrine +salamandroid +saleableness +salesmanship +salespersons +salicylamide +salification +salinometers +salmagundies +salpiglossis +salsolaceous +saltationism +saltationist +saltatorious +saltimbancos +saltimboccas +salubriously +salutariness +salutational +salutatorian +salutatorily +salutiferous +Salvadoreans +Salvadorians +salvationism +salvationist +salvifically +Salviniaceae +Samaritanism +sanctifiable +sanctifiedly +sanctifyings +sanctioneers +sanctuarised +sanctuarises +sanctuarized +sanctuarizes +sandblasters +sandblasting +sanderswoods +sandpapering +sanguiferous +sanguinarily +sanguineness +sanguinolent +sanguivorous +sanitisation +sanitization +sansculottes +sansculottic +sansevierias +santalaceous +sapientially +sapindaceous +saponifiable +saprolegnias +saprophagous +saprophytism +sarcomatosis +sarcophagous +sarcoplasmic +sardonically +sarrusophone +sarsaparilla +Saskatchewan +satanophobia +satellitised +satellitises +satellitized +satellitizes +satisfaction +satisfactory +satisfyingly +saunteringly +saurischians +Saurognathae +sauropsidans +saxophonists +scabbardless +scabrousness +scaffoldages +scaffoldings +scampishness +scandalisers +scandalising +scandalizers +scandalizing +scandalously +Scandinavian +scapegoating +scapulimancy +scapulomancy +Scarabaeidae +scarabaeists +scarabaeoids +scarabaeuses +scaramouches +scaremongers +scarificator +scatological +scatophagous +scattergoods +scatteringly +scattermouch +scavengering +scenographic +Scheherazade +schematising +schematizing +schemozzling +schillerised +schillerises +schillerized +schillerizes +schindylesis +schindyletic +schismatical +schismatised +schismatises +schismatized +schismatizes +schistosomes +Schizaeaceae +schizocarpic +schizogenous +schizogonous +schizomycete +schizophrene +schizophytes +schizophytic +schizopodous +schizothymia +schizothymic +schmaltziest +Schneiderian +scholarships +scholastical +schoolboyish +schoolfellow +schoolgoings +schoolhouses +schoolmaster +Schopenhauer +schorlaceous +schottisches +Schwartzkopf +scientifical +scintigraphy +scintillated +scintillates +scintillator +scissiparity +scitamineous +Sciuropterus +sclerenchyma +sclerodermia +sclerodermic +sclerometers +sclerometric +sclerophylls +sclerophylly +sclerotising +sclerotizing +sclerotomies +scolopaceous +Scolopacidae +scolopendrid +scoptophilia +scoptophobia +scornfulness +Scorpaenidae +Scorpionidea +Scotticising +Scotticizing +Scottishness +scoundreldom +scoundrelism +scoutherings +scraggedness +scramblingly +scraperboard +scratchbuild +scratchbuilt +scratchcards +scratchiness +scratchingly +scribblement +scribblingly +scrimshander +scrimshanked +scrimshawing +scrimshoners +scripophiles +scripturally +scripturists +scrobiculate +scrophularia +scrupulosity +scrupulously +scrutinisers +scrutinising +scrutinizers +scrutinizing +scrutinously +sculptresses +sculpturally +sculpturings +scuppernongs +scurrilously +scutellation +scyphistomae +scyphistomas +seamstresses +searchlights +secessionism +secessionist +seclusionist +secretariate +secretariats +sectarianise +sectarianism +sectarianize +sectionalise +sectionalism +sectionalist +sectionalize +sectionising +sectionizing +secularising +secularistic +secularities +secularizing +securitising +securitizing +seductresses +sedulousness +segmentation +segregations +seigniorages +seignioralty +seigniorship +seismicities +seismographs +seismography +seismologist +seismometers +seismometric +seismonastic +seismoscopes +seismoscopic +selaginellas +selenographs +selenography +selenologist +selflessness +selfsameness +Selkirkshire +semantically +semanticists +semeiotician +semichoruses +semicircular +semicomatose +semicylinder +semideponent +semifinalist +semifinished +semiglobular +semiliterate +seminiferous +semiological +semiologists +semipalmated +semiparasite +semipellucid +Semitisation +semitization +semitrailers +semitropical +sempervivums +sempiternity +sempstresses +senatorially +senatorships +sensationism +sensationist +sensibleness +sensitometer +sensualising +sensualistic +sensualizing +sensuousness +sententially +sentinelling +separability +separateness +separatrixes +sepiostaires +Septemberish +Septembriser +Septembrizer +septemvirate +septennially +septentrions +septilateral +septuagenary +Septuagesima +Septuagintal +sepulchering +sequentially +sequestering +sequestrants +sequestrated +sequestrates +sequestrator +seraphically +seraskierate +sergeantcies +sergeantship +sericultural +serigraphers +seriocomical +serjeantcies +serjeantries +serjeantship +seroconverts +seronegative +seropositive +seropurulent +serotaxonomy +serpentiform +serpentinely +serpentining +serpentinise +serpentinite +serpentinize +serpentinous +serpentising +serpentizing +serrulations +sertularians +servantships +servicewoman +servicewomen +servitorship +servitresses +servocontrol +sesquialtera +sesquitertia +sevenpennies +seventeenths +sexagenarian +sexagenaries +sexcentenary +sextodecimos +shadowgraphs +shamateurism +shamefacedly +shamefulness +sharecropped +sharefarmers +shareholders +shareholding +sharpshooter +sheepishness +shelftalkers +shellackings +shellshocked +shepherdless +shepherdling +sherardising +sherardizing +sheriffships +Shijiazhuang +shillingless +shillyshally +shipbuilders +shipbuilding +shipwrecking +shirtwaister +shlemozzling +shockability +shockingness +shopbreakers +shopbreaking +shortchanged +shortchanger +shortchanges +shortcomings +Shostakovich +shoulderings +shrewishness +shrievalties +shudderingly +shuttlecocks +siderophiles +siderophilic +sidetracking +sightscreens +sigillarians +sigillations +significance +significancy +significants +significates +significator +silentiaries +silhouetting +silicicolous +siliciferous +silversmiths +silviculture +similarities +Simmenthaler +simoniacally +simplicities +simulcasting +simultaneity +simultaneous +sinanthropus +sindonophany +sinfoniettas +singableness +Singaporeans +singlesticks +singularised +singularises +singularists +singularized +singularizes +sinisterwise +sinistrality +sinistrorsal +sinistrously +sinupalliate +sinusoidally +Siphonaptera +Siphonophora +siphonophore +siphonostele +Sipunculacea +sipunculoids +Sissinghurst +sisterliness +Sivapithecus +skateboarded +skateboarder +skeletonised +skeletonises +skeletonized +skeletonizes +Skelmersdale +skeuomorphic +Skillcentres +skillfulness +skilligalees +skilligolees +skimmingtons +skirmishings +skittishness +skrimshanked +skrimshanker +skullduggery +skutterudite +slanderously +slantingways +slaughterers +slaughtering +slaughterman +slaughtermen +slaughterous +Slavonicised +Slavonicises +Slavonicized +Slavonicizes +sleepwalkers +sleepwalking +slenderising +slenderizing +slickensided +slickensides +slipperiness +slipperworts +slobbishness +sloganeering +sloganisings +slothfulness +slovenliness +slubberingly +sluggardised +sluggardises +sluggardized +sluggardizes +sluggishness +slumberingly +slumberously +slumpflation +sluttishness +smallholders +smallholding +smatteringly +smifligating +smithereened +smokescreens +sm�rg�sbords +smotheriness +smotheringly +smoulderings +snaggleteeth +snaggletooth +snappishness +snapshooters +snapshooting +sneakishness +sniggeringly +snippetiness +snobbishness +snobographer +snooperscope +snowboarders +snowboarding +soboliferous +sociableness +societarians +sociobiology +sociological +sociologisms +sociologists +sociometrist +sockdolagers +sockdologers +Socratically +sojournments +solarimeters +solarisation +solarization +solecistical +solenoidally +solicitation +solicitously +solidifiable +solifluction +solifluxions +soliloquised +soliloquiser +soliloquises +soliloquists +soliloquized +soliloquizer +soliloquizes +solitariness +solitudinous +solmisations +solmizations +solonisation +solonization +solstitially +solubilising +solubilizing +solutionists +Solzhenitsyn +somatopleure +somatostatin +somatotensic +somatotropic +somatotropin +somatotyping +somersaulted +somersetting +somnambulant +somnambulary +somnambulate +somnambulism +somnambulist +somnifacient +somniloquise +somniloquism +somniloquist +somniloquize +somnolescent +songstresses +sonneteering +sonographers +sonorousness +soothsayings +sophisticate +sophomorical +soporiferous +sorbefacient +soullessness +soundproofed +Southcottian +southernised +southernises +southernisms +southernized +southernizes +southernmost +southernwood +southlanders +spacewalking +spaciousness +spaniolating +spaniolising +spaniolizing +spasticities +Spatangoidea +spatchcocked +speakerphone +speakerships +spearheading +specialisers +specialising +specialistic +specialities +specializers +specializing +specialogues +specifically +specificated +specificates +speciosities +speciousness +speckledness +specksioneer +specktioneer +spectaculars +spectatorial +spectatrixes +spectrograms +spectrograph +spectrometer +spectrometry +spectroscope +spectroscopy +speculations +speculatists +speechifiers +speechifying +speechlessly +speedometers +Speedwriting +spelaeothems +speleologist +spellbinders +spellbinding +spellchecker +spendthrifts +spermaphytes +spermaphytic +spermathecal +spermathecas +spermatocele +spermatocyte +spermatogeny +spermatozoal +spermatozoan +spermatozoic +spermatozoid +spermatozoon +spermogonium +spermophiles +spermophytes +spermophytic +sphacelation +sphairistike +sphericality +spheroidised +spheroidises +spheroidized +spheroidizes +spherometers +sphincterial +sphragistics +sphygmograms +sphygmograph +sphygmometer +sphygmophone +sphygmoscope +spiderflower +spiegeleisen +spifflicated +spifflicates +spiflicating +spiflication +spinnerettes +spinsterhood +spinstership +spinstresses +spinulescent +spiritedness +spiritlessly +spiritualise +spiritualism +spiritualist +spirituality +spiritualize +spirituosity +spirochaetes +Spitalfields +spitchcocked +spitefullest +spitefulness +splatterpunk +splendidious +splendidness +splenisation +splenization +splenomegaly +splotchiness +splutterings +spokespeople +spokesperson +spondoolicks +spongicolous +spongologist +sponsorships +sporadically +sporangioles +sporangiolum +sporogenesis +sporogoniums +sporophorous +sportability +sportcasters +sportfulness +sportiveness +sportscaster +sportsperson +sportswriter +sporulations +spotlessness +spotlighting +sprachgef�hl +spreadsheets +spreagheries +sprechgesang +sprechstimme +sprightfully +sprightliest +springboards +springkeeper +spuriousness +sputteringly +squanderings +squarsonages +squattocracy +squirarchies +squirearchal +squirrelfish +squirrelling +stabilisator +stabilizator +stablishment +stactometers +staddlestone +stadtholders +stagecoaches +staggeringly +Stahlhelmist +stakeholders +Stakhanovism +stakhanovite +staktometers +stalactiform +stallholders +stalwartness +staminodiums +stammeringly +stanchelling +stanchioning +standardbred +standardised +standardiser +standardises +standardized +standardizer +standardizes +Stanislavski +stanniferous +stapedectomy +starboarding +starchedness +statementing +statespeople +statesperson +stationaries +statistician +statuesquely +stauroscopic +stealthiness +steatomatous +steatopygous +steelworkers +steelworking +steeplechase +steeplejacks +steganograms +steganograph +Steganopodes +stegocarpous +stegophilist +stegosaurian +stellarators +Stellenbosch +stelliferous +stellifyings +stellionates +stencillings +stenochromes +stenographer +stenographic +stenotypists +stentorphone +stepbrothers +stepchildren +stepdaughter +stepmotherly +stercoranism +stercoranist +stercorating +stereoacuity +stereochrome +stereochromy +stereographs +stereography +stereoisomer +stereometers +stereometric +stereophonic +stereopticon +stereoscopes +stereoscopic +stereotactic +stereotomies +stereotropic +stereotypers +stereotypies +stereotyping +sternutation +sternutative +sternutators +sternutatory +stertorously +stethoscopes +stethoscopic +Stevengraphs +stewardesses +stewardships +stichometric +stichomythia +stichomythic +stickability +stickleaders +sticklebacks +stigmatising +stigmatizing +stilboestrol +stillatories +stimulations +stimulatives +stipendiated +stipendiates +stipulaceous +stipulations +stockbrokers +stockbroking +stockholders +stockholding +stockinettes +stockingless +stockishness +stockpilings +stocktakings +stoechiology +stoichiology +stomatodaeum +stonemasonry +stonewallers +stonewalling +storekeepers +storekeeping +storiologist +stormfulness +strabismical +strabismuses +strabometers +strabotomies +Stradivarius +stragglingly +straightaway +straightened +straightener +straightness +straightways +stranglehold +stranglement +strangulated +strangulates +strappadoing +straticulate +stratigraphy +stratocratic +stratosphere +stratotanker +strawberries +streamlining +streetkeeper +streetlights +streetscapes +strengthened +strengthener +strengthless +strepitation +Strepsiptera +streptococci +streptomycin +streptoneura +streptosolen +stretchering +stridelegged +stridulantly +stridulating +stridulation +stridulators +stridulatory +Strigiformes +strikingness +stringencies +stripteasers +strobilating +strobilation +strobiliform +stroboscopes +stroboscopic +stromatolite +strongarming +strongpoints +strongyloids +strongylosis +strontianite +strophanthin +strophanthus +strophiolate +structurally +strugglingly +strychninism +stubbornness +studentships +studiousness +stupefacient +stupefaction +stupefactive +stupendously +stutteringly +stylisations +stylizations +stylographic +stylopodiums +styracaceous +subabdominal +subacidulous +subaggregate +subalternant +subalternate +subalternity +subantarctic +subapostolic +subarachnoid +subarcuation +subarrations +subarrhation +subauditions +subauricular +subbasements +subcelestial +subcommittee +subcommunity +subconscious +subcontinent +subcontracts +subcutaneous +subdeaneries +subdelirious +subdeliriums +subdiaconate +subdistricts +subdivisible +subdivisions +subdominants +subduplicate +subeditorial +suberisation +suberization +subfactorial +subfertility +subfeudation +subfeudatory +subglacially +subhastation +subincisions +subindicated +subindicates +subinfeudate +subinspector +subintroduce +subjectified +subjectifies +subjectively +subjectivise +subjectivism +subjectivist +subjectivity +subjectivize +subjectships +subjugations +subjunctives +Sublapsarian +sublibrarian +sublimations +subliminally +sublineation +subluxations +submaxillary +submergement +submergences +submersibles +subminiature +submissively +submultiples +subnormality +suboccipital +subopercular +suboperculum +subordinancy +subordinated +subordinates +subornations +subprincipal +subreference +subrogations +subscapulars +subscribable +subscribings +subscription +subscriptive +subsequences +subsequently +subservience +subserviency +subservients +subsidencies +subsidiaries +subsidiarily +subsidiarity +subsistences +substantials +substantiate +substantival +substantives +substituents +substituting +substitution +substitutive +substracting +substraction +substructing +substruction +substructure +subsultorily +subsumptions +subtemperate +subtenancies +subterjacent +subterranean +subthreshold +subtotalling +subtractions +subtreasurer +subumbrellar +subumbrellas +subungulates +suburbanised +suburbanises +suburbanites +suburbanized +suburbanizes +subvarieties +subversively +subvertebral +succedaneous +successfully +successional +successively +succinctness +succussation +sudoriferous +sudoriparous +sufficiences +sufficiently +suffocatings +suffocations +suffragettes +suffruticose +suffumigated +suffumigates +suggestively +suitableness +sulfadiazine +sulphonamide +sulphonating +sulphonation +sulphurating +sulphuration +sulphurators +sulphureting +sulphuretted +sulphurising +sulphurizing +sulphurworts +summersaults +summersetted +sumphishness +superabounds +superannuate +supercargoes +supercharged +supercharger +supercharges +supercheries +superciliary +supercilious +superclasses +supercluster +superconduct +supercooling +supereminent +supererogant +supererogate +superevident +superexalted +superfetated +superfetates +superficials +superfrontal +superfusions +superglacial +supergrasses +supergravity +superheaters +superheating +superheavies +superheroine +superhighway +superhumanly +superhumeral +superimposed +superimposes +superinduced +superinduces +superinfects +superintends +superiorship +superlatives +superluminal +supermarkets +supermassive +supermundane +supernacular +supernaculum +supernatural +superoctaves +superordinal +superorganic +superovulate +superpatriot +superplastic +superposable +superrealism +superrealist +superrefined +superscribed +superscribes +superscripts +supersedence +supersederes +supersedures +supersensory +supersensual +supersession +superspecies +superstardom +superstition +superstratum +superstructs +supertankers +supervenient +supervention +supervisions +supplemental +supplemented +supplementer +supplicating +supplication +supplicatory +supplicavits +suppositions +suppositious +suppressants +suppressedly +suppressible +suppressions +suppurations +suppuratives +supraciliary +supracrustal +supramundane +supremacists +Suprematists +surbasements +surgeonships +surmountable +surmountings +surpassingly +surprisingly +surrealistic +surrebuttals +surrebutters +surrebutting +surrejoinder +surrejoining +surrenderees +surrenderers +surrendering +surrenderors +surrogations +surroundings +surveillance +surveillants +surveyorship +survivalists +survivorship +susceptances +susceptivity +suscitations +suspensively +suspensorial +suspensories +suspensorium +suspiciously +suspirations +sustainments +sustentating +sustentation +sustentative +sustentators +suzerainties +swaggeringly +swainishness +swashbuckler +sweepingness +sweetiewives +sweetishness +swimmingness +swingletrees +swingometers +switchblades +switchboards +swordplayers +sycophantise +sycophantish +sycophantize +Sydneysiders +syllabariums +syllabically +syllabicated +syllabicates +syllabifying +sylviculture +symbolically +symbololatry +symmetallism +symmetrising +symmetrizing +sympathisers +sympathising +sympathizers +sympathizing +symposiarchs +symptomatise +symptomatize +synadelphite +synaesthesia +synaesthetic +synantherous +synarthroses +synarthrosis +synchroflash +synchronical +synchronised +synchroniser +synchronises +synchronized +synchronizer +synchronizes +synchroscope +synchrotrons +synclinorium +syncopations +syncretising +syncretistic +syncretizing +syndactylism +syndactylous +syndetically +syndicalists +syndications +synecdochism +synecologist +synectically +syngenesious +Syngnathidae +synonymicons +synonymising +synonymities +synonymizing +synonymously +synoptically +syntagmatite +synthesisers +synthesising +synthesizers +synthesizing +syntheticism +synthetisers +synthetising +synthetizers +synthetizing +synthronuses +systematical +systematised +systematiser +systematises +systematists +systematized +systematizer +systematizes +systemically diff --git a/com/agnibho/code/anagram/dictionary/S13.txt b/com/agnibho/code/anagram/dictionary/S13.txt new file mode 100644 index 0000000..d555430 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S13.txt @@ -0,0 +1,852 @@ +saccharifying +saccharimeter +saccharimetry +saccharometer +Saccharomyces +sacerdotalise +sacerdotalism +sacerdotalist +sacerdotalize +sacralisation +sacralization +sacramentally +sacrificially +sacrosanctity +safeguardings +sagaciousness +salaciousness +salamandroids +salifications +salmonellosis +salpingectomy +saltationists +salutatorians +salvationists +salviniaceous +sanctifyingly +sanctimonious +sanctuarising +sanctuarizing +sanitarianism +sanitationist +sanitisations +sanitizations +sansculottism +sansculottist +sarcastically +sarcophaguses +sarmentaceous +sarrusophones +satanicalness +satellitising +satellitizing +satiricalness +satisfactions +saurognathous +Sauropterygia +Saxifragaceae +scalenohedron +scalpelliform +scandalmonger +Scandinavians +scaphocephaly +scapulimantic +scapulomantic +scarification +scarificators +scathefulness +scavengerings +scenarisation +scenarization +sceuophylaxes +schadenfreude +schematically +schillerising +schillerizing +schismatising +schismatizing +schizaeaceous +schizocarpous +schizogenesis +schizogenetic +Schizomycetes +schizomycetic +schizophrenes +schizophrenia +schizophrenic +Schizophyceae +schlumbergera +scholarliness +scholasticism +schoolfellows +schoolgirlish +schoolmasters +schutzstaffel +schw�rmerisch +Schwenkfelder +scientologist +scintillating +scintillation +scintillators +scintilliscan +scintiscanner +sclerenchymas +sclerocaulous +sclerodermite +sclerodermous +scleromalacia +scleroprotein +scolopendrine +Scolopendrium +scorchingness +scorification +scraperboards +scratchbuilds +scribblements +scrimshanders +scrimshandies +scrimshanking +scripophilist +scripturalism +scripturalist +scrivenership +scrobiculated +scrophularias +scrumptiously +sculdudderies +sculpturesque +scutellations +Scyphomedusae +searchingness +seaworthiness +secessionists +seclusionists +secondariness +secretariates +secretaryship +secretiveness +sectarianised +sectarianises +sectarianized +sectarianizes +sectionalised +sectionalises +sectionalized +sectionalizes +sectorisation +sectorization +sedentariness +sedimentation +sedimentology +seditionaries +seditiousness +seductiveness +segmentations +seigniorships +seismographer +seismographic +seismological +seismologists +selenographer +selenographic +selenological +selenologists +semasiologist +semeioticians +semicarbazide +semiconductor +semiconscious +semicylinders +semideponents +semievergreen +semifinalists +semilogarithm +semimenstrual +semiochemical +semioviparous +semipalmation +semiparasites +semiparasitic +semiperimeter +semipermeable +semiporcelain +Semnopithecus +sempiternally +sempstressing +seneschalship +sensationally +sensationists +senselessness +sensibilities +sensitisation +sensitiveness +sensitivities +sensitization +sensitometers +sententiously +sentimentally +separableness +separationism +separationist +Septembrisers +Septembrizers +septemvirates +septenariuses +septentrional +septentriones +sequentiality +sequestrating +sequestration +sequestrators +seraskierates +serendipitist +serendipitous +sergeantships +serialisation +serialization +sericiculture +sericulturist +serjeantships +seroconverted +serologically +serpentinings +serpentinised +serpentinises +serpentinized +serpentinizes +servitorships +servocontrols +sesquialteras +sesquiplicate +sesquiterpene +sesquitertias +seventeenthly +sexagenarians +sexagesimally +sexploitation +shadowcasting +Shakespearean +Shakespearian +shamefastness +shamelessness +shapelessness +shareholdings +sharpshooters +sharpshooting +shepherdesses +shepherdlings +sheriffalties +shiftlessness +shipbuildings +shirtwaisters +shopbreakings +shortchangers +shortchanging +shrinkwrapped +sightlessness +sigmoidectomy +sigmoidoscope +sigmoidoscopy +significances +significantly +signification +significative +significators +significatory +simarubaceous +simplificator +sindonologist +singularising +singularities +singularizing +sinistrorsely +siphonophores +siphonosteles +Sipunculoidea +skateboarders +skateboarding +skeletogenous +skeletonising +skeletonizing +sketchability +skeuomorphism +skrimshankers +skrimshanking +slaughterable +Slavonicising +Slavonicizing +sleeplessness +sluggardising +sluggardizing +smallholdings +smithereening +smokelessness +snapshootings +snobographers +snobographies +snooperscopes +socialisation +socialization +socioeconomic +sociolinguist +sociologistic +sociometrists +sodomitically +solarisations +solarizations +soldierliness +solemnisation +solemnization +solicitations +solicitorship +solidungulate +solidungulous +solifidianism +solifluctions +soliloquisers +soliloquising +soliloquizers +soliloquizing +somatological +somatopleures +somatotrophic +somatotrophin +somersaulting +somnambulance +somnambulants +somnambulated +somnambulates +somnambulator +somnambulists +somniloquence +somniloquised +somniloquises +somniloquists +somniloquized +somniloquizes +sonneteerings +soothfastness +sophistically +sophisticated +sophisticates +sophisticator +soporifically +sorbefacients +sorbitisation +sorbitization +sorrowfulness +soundproofing +southerliness +southernising +southernizing +southernwoods +sovereignties +Sovietologist +spadicifloral +Sparganiaceae +spasmodically +spatchcocking +spathiphyllum +spatterdashes +speakerphones +specificating +specification +specificities +specksioneers +specktioneers +spectacularly +spectatorship +spectatresses +spectralities +spectrographs +spectrography +spectrometers +spectrometric +spectroscopes +spectroscopic +speculatively +speculatrixes +speechfulness +spelaeologist +speleological +speleologists +spellcheckers +Spencerianism +spermatoblast +spermatoceles +spermatocytes +spermatogenic +spermatophore +Spermatophyta +spermatophyte +spermatorrhea +spermatotheca +spermatozoids +sphacelations +sphagnicolous +sphagnologist +sphericalness +spheristerion +spherocytosis +spheroidicity +spheroidising +spheroidizing +sphingomyelin +sphygmographs +sphygmography +sphygmometers +sphygmophones +sphygmoscopes +spifflicating +spifflication +spiflications +spinelessness +spinuliferous +spiritousness +spiritualised +spiritualiser +spiritualises +spiritualists +spiritualized +spiritualizer +spiritualizes +spiritualness +spiritualties +spitchcocking +splanchnocele +splanchnology +splendiferous +splenectomies +splenetically +splenisations +splenizations +splutteringly +spokespersons +spondylolysis +spongologists +spontaneously +sportscasters +sportsmanlike +sportsmanship +sportswriters +sportswriting +sprightliness +springkeepers +squanderingly +squandermania +squeamishness +squeezability +squirarchical +squirearchies +stabilisation +stabilisators +stabilization +stabilizators +stablishments +staccatissimo +staddlestones +Staffordshire +stagecoaching +stagecoachman +stagecoachmen +stainlessness +stakhanovites +stalactitical +stalactitious +stalagmitical +stalagmometer +stalagmometry +staminiferous +standardisers +standardising +standardizers +standardizing +standoffishly +Staphyleaceae +staphylococci +staphyloplasy +statelessness +statesmanlike +statesmanship +statistically +statisticians +steadfastness +steeplechased +steeplechaser +steeplechases +steganographs +steganography +steganopodous +Stegocephalia +stegophilists +stenographers +stenographist +stenophyllous +stentorphones +stepdaughters +stephanotises +stercoraceous +stercoranists +stercorarious +Sterculiaceae +stereographic +stereoisomers +stereopticons +stereoscopist +stereotropism +stereotypical +stereotypings +sterilisation +sterilization +sternutations +stethoscopist +stigmatically +stipendiaries +stipendiating +Stirlingshire +stirpiculture +stockbrokings +stockholdings +stoechiometry +stoicheiology +stoichiometry +stoloniferous +stomatodaeums +stomatoplasty +stonewallings +storiologists +straighteners +straightening +straightforth +strangleholds +stranglements +strangulating +strangulation +strategically +stratigrapher +stratigraphic +stratocracies +stratocruiser +stratospheric +stratotankers +streetkeepers +strengtheners +strengthening +strenuousness +strepitations +streptocarpus +streptococcal +streptococcic +streptococcus +streptokinase +stridulations +stringentness +strobilaceous +strobilations +strombuliform +strophiolated +structuralism +structuralist +structuration +structureless +Struwwelpeter +stupefacients +stupefactions +stylistically +subaggregates +suballocation +subalternants +subalternates +subappearance +subarcuations +subarrhations +subassemblies +subcategories +subclavicular +subcommission +subcommittees +subcontiguous +subcontinents +subcontinuous +subcontracted +subcontractor +subcontraries +subdeaconries +subdeaconship +subdiaconates +subdivisional +subeditorship +subequatorial +suberisations +suberizations +subfeudations +subhastations +subindicating +subindication +subindicative +subinfeudated +subinfeudates +subinspectors +subintroduced +subintroduces +subinvolution +subirrigation +subjectifying +subjectivised +subjectivises +subjectivists +subjectivized +subjectivizes +subjunctively +sublanceolate +sublibrarians +sublieutenant +sublineations +submandibular +submergements +suboperculums +subordinaries +subordinately +subordinating +subordination +subordinative +subpopulation +subpostmaster +subprefecture +subprincipals +subreferences +subreptitious +subscriptions +subsequential +subserviently +subsidisation +subsidization +subsistential +subspeciality +substantially +substantiated +substantiates +substantively +substantivise +substantivity +substantivize +substitutable +substitutions +substractions +substructions +substructural +substructures +subternatural +subterraneans +subterraneous +subtilisation +subtilization +subtreasurers +subtreasuries +subtriangular +subtriplicate +subtropically +suburbanising +suburbanities +suburbanizing +suburbicarian +subventionary +subversionary +successionist +successlessly +successorship +succinctories +succinctorium +succussations +sufficiencies +sufficingness +suffocatingly +suffraganship +suffragettism +suffumigating +suffumigation +suggestionism +suggestionist +suicidologist +suitabilities +sulfacetamide +sulfanilamide +sulfathiazole +sulphadiazine +sulphonamides +sulphonylurea +sulphurations +sulphureously +sulphuretting +summersetting +sumptuousness +suovetaurilia +superabounded +superabundant +superaddition +superannuable +superannuated +superannuates +supercalender +supercautious +superchargers +supercharging +superclusters +supercollider +supercolumnar +supercomputer +superconducts +supercriminal +supercritical +superdominant +supereminence +superexalting +superfamilies +superfetating +superfetation +superficially +superfineness +superfluidity +superfluities +superfluously +superhumanise +superhumanity +superhumanize +superhumerals +superimposing +superinducing +superinfected +superintended +superioresses +superiorities +superiorships +superlatively +supernaculums +supernational +supernaturals +supernormally +supernumerary +superordinary +superordinate +superorganism +superovulated +superovulates +superphysical +superplastics +superposition +superrealists +supersalesman +supersalesmen +supersaturate +superscribing +supersedeases +supersensible +supersensibly +supersessions +superstitions +superstitious +superstructed +supersubtlety +supersymmetry +supervenience +superventions +supervirulent +supplantation +supplementals +supplementary +supplementers +supplementing +supplications +supportresses +suppositional +suppositories +suprachiasmic +supramolecule +supranational +suprasensible +supratemporal +surchargement +surmistresses +surrejoinders +surreptitious +surrogateship +surveillances +surveyorships +survivability +suspectedness +suspensoriums +suspercollate +suspicionless +sustentacular +sustentaculum +sustentations +swashbucklers +swashbuckling +Swedenborgian +swingebuckler +swordsmanship +sycophantical +sycophantised +sycophantises +sycophantized +sycophantizes +syllabicating +syllabication +syllabicities +sylleptically +syllogisation +syllogistical +syllogization +sylvicultural +symbiotically +symbolisation +symbolistical +symbolization +symbolography +symmetrically +sympathectomy +sympathetical +sympatholytic +symphyseotomy +symphysiotomy +sympiesometer +symptomatical +symptomatised +symptomatises +symptomatized +symptomatizes +synaesthesias +synallagmatic +synaposematic +synarthrodial +synchondroses +synchondrosis +synchronicity +synchronisers +synchronising +synchronistic +synchronizers +synchronizing +synchronology +synchronously +syndicalistic +synecdochical +synecological +synecologists +synecphonesis +syntactically +synthetically +syphilisation +syphilization +syphilologist +syphilophobia +syringomyelia +syringotomies +systematician +systematisers +systematising +systematizers +systematizing +systematology +systemisation +systemization diff --git a/com/agnibho/code/anagram/dictionary/S14.txt b/com/agnibho/code/anagram/dictionary/S14.txt new file mode 100644 index 0000000..1e669db --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S14.txt @@ -0,0 +1,477 @@ +Sabbatarianism +sacchariferous +saccharimeters +saccharisation +saccharization +saccharometers +sacerdotalised +sacerdotalises +sacerdotalists +sacerdotalized +sacerdotalizes +sacramentalism +sacramentalist +sacramentarian +sacramentaries +sacrilegiously +sacrococcygeal +sacrosanctness +salubriousness +sanctification +sanguification +sanguinariness +sanguinivorous +sanitationists +sansculotterie +sansculottides +sansculottists +saponification +Sarraceniaceae +satisfactorily +sauropterygian +saxifragaceous +scalenohedrons +scandalisation +scandalization +scandalmongers +scandalmonging +scandalousness +scaphocephalic +scaphocephalus +scaremongering +scarifications +scattermouches +scenographical +sceuophylacium +schematisation +schematization +schismatically +schizognathous +schizomycetous +schizophrenics +schizophyceous +scholastically +schoolmastered +schoolmasterly +schoolmistress +schutzstaffeln +Schwarzenegger +Schwenkfeldian +scientifically +scientologists +scintillascope +scintillations +scintilliscans +scintillometer +scintilloscope +scintiscanners +sclerodermites +sclerophyllous +Scombresocidae +Scottification +scratchbuilder +scripophilists +scripturalists +scrupulousness +scrutinisingly +scrutinizingly +scurrilousness +seasonableness +secretaryships +sectarianising +sectarianizing +sectionalising +sectionalizing +sectionisation +sectionization +secularisation +secularization +securitisation +securitization +segregationist +seignioralties +seismographers +seismometrical +selenographers +semaphorically +semasiological +semasiologists +semicircularly +semiconducting +semiconductors +semicrystallic +semiochemicals +semiperimeters +sensationalise +sensationalism +sensationalist +sensationalize +sensualisation +sensualization +sentimentalise +sentimentalism +sentimentalist +sentimentality +sentimentalize +separationists +septuagenarian +septuagenaries +sequaciousness +sequestrations +serendipitists +serialisations +serializations +sericitisation +sericitization +sericulturists +seroconversion +seroconverting +serpentiningly +serpentinising +serpentinizing +serratirostral +serviceability +servomechanism +sesquipedalian +sesquipedality +sesquisulphide +sexcentenaries +Shakespeareans +Shakespeariana +Shakespearians +shamefacedness +shillingsworth +shillyshallied +shillyshallier +shillyshallies +shrinkwrapping +Sigillariaceae +significancies +significations +silicification +silversmithing +simaroubaceous +simplification +simplificative +simplificators +simplistically +simultaneously +sindonologists +sindonophanies +sinistrorsally +slanderousness +slantendicular +slantindicular +slatternliness +slaughterously +snaggletoothed +sociobiologist +sociolinguists +sociologically +solecistically +solemnisations +solemnizations +solicitorships +solicitousness +solidification +solitudinarian +solubilisation +solubilization +somnambulating +somnambulation +somnambulators +somnambulistic +somniloquising +somniloquizing +sophisticating +sophistication +sophisticators +soporiferously +soteriological +Sovietological +Sovietologists +spatiotemporal +specialisation +specialization +specifications +spectacularity +spectatorships +spectrographic +spectrological +spectroscopist +speechlessness +spelaeological +spelaeologists +spermatoblasts +spermatogenous +spermatogonium +spermatophores +spermatophytes +spermatophytic +spermatorrhoea +spermatothecas +spermiogenesis +sphaerocrystal +sphagnologists +spheristerions +sphygmographic +spinthariscope +spiritlessness +spiritualisers +spiritualising +spiritualistic +spiritualizers +spiritualizing +spirituousness +spirochaetosis +spironolactone +splanchnoceles +sporangiophore +sporangiospore +sporotrichosis +sprightfulness +squirearchical +stabilisations +stabilizations +stagflationary +stalactitiform +stalagmometers +stapedectomies +staphylococcal +Staphylococcus +stationariness +statuesqueness +steeplechasers +steeplechasing +steganographer +steganographic +stegocephalian +stegocephalous +Stellenbosched +Stellenbosches +stenographical +stenographists +stereoisomeric +stereometrical +stereoscopical +stereoscopists +stereospecific +stereotactical +sterilisations +sterilizations +stertorousness +stethoscopical +stethoscopists +stichometrical +stigmatiferous +stigmatisation +stigmatization +stigmatophilia +stochastically +stoechiometric +stoicheiometry +stoichiometric +stomachfulness +stomatogastric +strabismometer +straightjacket +strangulations +stratification +stratigraphers +stratigraphist +stratocruisers +strepsipterous +strobilisation +strobilization +strophanthuses +structuralists +stultification +stupendousness +Sturmabteilung +suballocations +subalternation +subappearances +subarborescent +subassociation +subatmospheric +subcommissions +subcommunities +subconsciously +subcontinental +subcontracting +subcontractors +subcontrariety +subcutaneously +subdeaconships +subeditorships +subgenerically +subindications +subinfeudating +subinfeudation +subinfeudatory +subintroducing +subirrigations +subjectiveness +subjectivising +subjectivistic +subjectivizing +sublieutenants +submergibility +submersibility +submicroscopic +subminiaturise +subminiaturize +submissiveness +subordinations +subpopulations +subpostmasters +subprefectures +subsidisations +subsidizations +substantialise +substantialism +substantialist +substantiality +substantialize +substantiating +substantiation +substantivally +substantivised +substantivises +substantivized +substantivizes +substitutional +substitutively +substitutivity +subterposition +subterrestrial +subtersensuous +subversiveness +successfulness +successionally +successionists +successionless +successiveness +successorships +succinctoriums +sufferableness +suffructescent +suggestibility +suggestionists +suggestiveness +suicidologists +sulphacetamide +sulphanilamide +sulphathiazole +sulphurisation +sulphurization +superabounding +superabsorbent +superabundance +superadditions +superambitious +superannuating +superannuation +supercalenders +supercargoship +supercelestial +superciliaries +superciliously +supercolliders +supercomputers +superconducted +superconductor +superconfident +supercontinent +superelevation +supereminently +supererogation +supererogative +supererogatory +superessential +superexcellent +superfetations +superficialise +superficiality +superficialize +superfoetation +superhumanised +superhumanises +superhumanized +superhumanizes +superimportant +superincumbent +superinduction +superinfecting +superinfection +superintendent +superintending +supernaturally +supernormality +superordinated +superordinates +superovulating +superovulation +superphosphate +supersaturated +supersaturates +superscription +supersensitive +supersonically +superstructing +superstruction +superstructive +superstructure +superterranean +supervisorship +supplantations +supplementally +supplicatingly +suppositionary +supposititious +Supralapsarian +supramolecules +suprasegmental +surchargements +surpassingness +surprisingness +susceptibility +susceptiveness +suspensibility +suspercollated +suspercollates +suspiciousness +sustainability +sustentaculums +Swedenborgians +swingebucklers +sycophantishly +sycophantising +sycophantizing +syllabications +syllogisations +syllogizations +symbolicalness +symbolisations +symbolizations +symmetrisation +symmetrization +symmetrophobia +sympatholytics +sympiesometers +symptomatising +symptomatizing +symptomatology +synaposematism +synchroflashes +synchronically +synechdochical +synonymousness +syphilisations +syphilizations +syphilologists +Syrophoenician +systematically +systematicians +systemisations +systemizations diff --git a/com/agnibho/code/anagram/dictionary/S15.txt b/com/agnibho/code/anagram/dictionary/S15.txt new file mode 100644 index 0000000..a346a2e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S15.txt @@ -0,0 +1,241 @@ +sacerdotalising +sacerdotalizing +sacramentalists +sacramentarians +salpingectomies +sanctifications +sanctimoniously +saprophytically +sarcenchymatous +sarraceniaceous +scaphocephalous +sceuophylaciums +schillerisation +schillerization +schistosomiasis +schizophrenetic +schoolmastering +schoolmasterish +schoolmistressy +Schrecklichkeit +scintillascopes +scintillometers +scintilloscopes +sclerodermatous +scolopendriform +scratchbuilders +scratchbuilding +scribaciousness +secularisations +secularizations +secundogeniture +sedimentologist +segregationists +seismographical +Selaginellaceae +selenographical +semicrystalline +semilogarithmic +semimanufacture +semisubmersible +semitransparent +sensationalised +sensationalises +sensationalists +sensationalized +sensationalizes +sententiousness +sentimentalised +sentimentalises +sentimentalists +sentimentalized +sentimentalizes +septentrionally +septuagenarians +serendipitously +sericiculturist +serviceableness +servomechanical +sesquicarbonate +sesquicentenary +shillingsworths +shillyshallying +significatively +silicifications +simplifications +singularisation +singularization +sinistrodextral +slumpflationary +socialistically +sociobiological +sociobiologists +sociolinguistic +solidifications +solipsistically +solitudinarians +solubilisations +solubilizations +somnambulations +sophistications +specialisations +specializations +spectroscopical +spectroscopists +speculativeness +speechification +spermatoblastic +spermatogenesis +spermatogenetic +spermatogoniums +sphaerocrystals +sphaerosiderite +Sphenisciformes +spheroidisation +spheroidization +spinthariscopes +spirochaetaemia +spontaneousness +sporangiophores +sporangiospores +stalactitically +stalagmitically +standardisation +standardization +staphylorrhaphy +steeplechasings +steganographers +steganographist +stegocephalians +Stellenbosching +stereochemistry +stereographical +stereoisomerism +stigmatisations +stigmatizations +stigmatophilist +stilpnosiderite +stoechiological +stoicheiometric +stoichiological +strabismometers +straightforward +straightjackets +stratifications +stratigraphical +stratigraphists +strephosymbolia +strombuliferous +subcivilization +subcommissioner +subintellection +subintelligence +subintelligitur +sublapsarianism +subminiaturised +subminiaturises +subminiaturized +subminiaturizes +subordinateness +subspecifically +substantialised +substantialises +substantialists +substantialized +substantializes +substantialness +substantiations +substantiveness +substantivising +substantivizing +substitutionary +substratosphere +subterpositions +subterraneously +subterrestrials +suburbanisation +suburbanization +successlessness +sulphinpyrazone +sulphureousness +superabundances +superabundantly +superadditional +superannuations +supercalendered +superconducting +superconductive +superconductors +supercontinents +superelevations +superexaltation +superexcellence +superficialised +superficialises +superficialized +superficializes +superficialness +superfluousness +superfoetations +superheterodyne +superhumanising +superhumanizing +superimposition +superincumbence +superinducement +superinductions +superinfections +superintendence +superintendency +superintendents +superlativeness +supernaturalise +supernaturalism +supernaturalist +supernaturalize +supernumeraries +superordinating +superordination +superovulations +superpatriotism +superphosphates +superplasticity +supersaturating +supersaturation +superscriptions +superstitiously +superstructions +superstructural +superstructures +supervisorships +supplementaries +supplementarily +supplementation +supportableness +suppositionally +surreptitiously +susceptibleness +suspercollating +sycophantically +syllabification +syllogistically +symmetricalness +symmetrisations +symmetrizations +sympathectomies +sympathetically +sympathomimetic +symphyseotomies +symphysiotomies +symptomatically +symptomological +synarthrodially +synchronisation +synchronistical +synchronization +synchronousness +synecdochically +synecologically +synergistically +systematisation +systematization diff --git a/com/agnibho/code/anagram/dictionary/S16.txt b/com/agnibho/code/anagram/dictionary/S16.txt new file mode 100644 index 0000000..7a8092e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S16.txt @@ -0,0 +1,94 @@ +saccharification +sacrilegiousness +satisfactoriness +scandalmongering +scenographically +schismaticalness +schoolmastership +schoolmistresses +sclerenchymatous +Scrophulariaceae +sectionalisation +sectionalization +sedimentological +selenomorphology +semasiologically +semiconductivity +semipermeability +semiprofessional +semisubmersibles +semitransparency +sensationalising +sensationalistic +sensationalizing +sentimentalising +sentimentalizing +serpentinisation +serpentinization +sesquicentennial +simultaneousness +slubberdegullion +sociolinguistics +soporiferousness +spectrochemistry +spectrographical +spectroheliogram +spectrologically +spectrosocopical +sphaerocobaltite +sphygmomanometer +spiritualisation +spiritualization +spondylosyndesis +stenographically +stereometrically +stereophonically +stereoscopically +stethoscopically +stichometrically +stigmatophilists +stoicheiological +stratificational +strongyloidiasis +stylographically +subadministrator +subcartilaginous +subconsciousness +subinspectorship +subjectivisation +subjectivization +subminiaturising +subminiaturizing +subordinationism +subordinationist +substantialising +substantializing +substitutionally +sulfamethoxazole +supercalendering +superciliousness +superdreadnought +superfecundation +superficialising +superficializing +superincumbently +supernationalism +supernaturalised +supernaturalises +supernaturalized +supernaturalizes +supernaturalness +superserviceable +superserviceably +supersubstantial +supersymmetrical +superterrestrial +supposititiously +supranationalism +surrealistically +susceptibilities +Swedenborgianism +syncategorematic +synchrocyclotron +synchronisations +synchronizations diff --git a/com/agnibho/code/anagram/dictionary/S17.txt b/com/agnibho/code/anagram/dictionary/S17.txt new file mode 100644 index 0000000..b528f7f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S17.txt @@ -0,0 +1,30 @@ +sacramentarianism +sanctimoniousness +sarcosaprophagous +schizophrenetical +schizophrenogenic +scrophulariaceous +semiprofessionals +sesquipedalianism +spectroheliograph +spectrohelioscope +spectrophotometer +spectrophotometry +spectroscopically +spondylolisthesis +stereofluoroscope +straightforwardly +stratigraphically +subintelligential +submicrominiature +subordinationists +sulphamethoxazole +supercolumniation +superconductivity +supernaturalising +supernaturalistic +supernaturalizing +superstitiousness +Supralapsarianism +surreptitiousness +synchronistically diff --git a/com/agnibho/code/anagram/dictionary/S18.txt b/com/agnibho/code/anagram/dictionary/S18.txt new file mode 100644 index 0000000..ec782ef --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S18.txt @@ -0,0 +1,7 @@ +semidemisemiquaver +sentimentalisation +sentimentalization +subjectivistically +superintendentship +supersensitiveness +supposititiousness diff --git a/com/agnibho/code/anagram/dictionary/S19.txt b/com/agnibho/code/anagram/dictionary/S19.txt new file mode 100644 index 0000000..5883d1f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S19.txt @@ -0,0 +1,3 @@ +schizophrenetically +semidemisemiquavers +straightforwardness diff --git a/com/agnibho/code/anagram/dictionary/S2.txt b/com/agnibho/code/anagram/dictionary/S2.txt new file mode 100644 index 0000000..bba5e10 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S2.txt @@ -0,0 +1,4 @@ +sh +si +so +st diff --git a/com/agnibho/code/anagram/dictionary/S20.txt b/com/agnibho/code/anagram/dictionary/S20.txt new file mode 100644 index 0000000..90a25ec --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S20.txt @@ -0,0 +1 @@ +syncategorematically diff --git a/com/agnibho/code/anagram/dictionary/S3.txt b/com/agnibho/code/anagram/dictionary/S3.txt new file mode 100644 index 0000000..ef6a356 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S3.txt @@ -0,0 +1,78 @@ +sa' +sab +sac +sad +sae +sag +sai +sal +sam +san +sap +sar +sat +saw +sax +say +saz +sea +sec +sed +see +seg +sei +sel +sen +set +sew +sex +sey +sez +she +shy +sib +sic +Sid +sim +sin +sip +sir +sis +sit +six +ska +ski +sky +sly +sny +sob +soc +sod +sog +soh +sol +son +sop +sos +sot +sou +sov +sow +sox +soy +spa +spy +Sri +sty +sub +sud +sue +sui +suk +sum +sun +sup +suq +sus +swy +sye diff --git a/com/agnibho/code/anagram/dictionary/S34.txt b/com/agnibho/code/anagram/dictionary/S34.txt new file mode 100644 index 0000000..0064387 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S34.txt @@ -0,0 +1 @@ +supercalifragilisticexpialidocious diff --git a/com/agnibho/code/anagram/dictionary/S4.txt b/com/agnibho/code/anagram/dictionary/S4.txt new file mode 100644 index 0000000..b818be4 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S4.txt @@ -0,0 +1,452 @@ +Saab +Saam +Saar +Saba +sabs +sack +sacs +sade +safe +saga +sage +sago +sags +sagy +saic +said +sail +saim +sain +sair +sais +sake +saki +sale +Salk +salp +sals +salt +sama +same +Sami +samp +sand +sane +sang +sank +sans +sant +saps +Sara +sard +sari +sark +sars +sash +sass +sate +sati +saul +saut +save +sawn +saws +Saxe +says +scab +scad +scag +scam +scan +scar +scat +scaw +scog +scop +scot +scow +scry +scud +scug +scul +scum +scup +scur +scut +scye +seal +seam +sean +sear +seas +seat +sech +seco +secs +sect +seed +seek +seel +seem +seen +seep +seer +sees +sego +segs +seif +seik +seil +seir +seis +Sejm +Sekt +seld +sele +self +sell +sels +sem� +semi +sena +send +sens +sent +seps +sept +sera +Serb +sere +serf +serk +serr +sese +sess +seta +Seth +sets +sett +sewn +sews +sext +sexy +seys +shad +shag +shah +sham +shan +shaw +shay +shea +shed +Shem +SHEN +shes +shet +shew +Shia +shim +shin +ship +shiv +shmo +shod +shoe +shog +shoo +shop +shot +show +Shri +sh's +shul +shun +shut +shwa +sial +Siam +Sian +sibs +sice +sich +sick +sida +side +sift +sigh +sign +sijo +sika +sike +Sikh +sild +sile +silk +sill +silo +silt +sima +simi +simp +sims +sind +sine +sing +sinh +sink +sins +Sion +sipe +sips +sire +siri +sirs +siss +sist +Sita +site +sith +sits +Sium +Siva +size +sizy +skag +skat +skaw +skeg +skeo +skep +sker +skew +skid +skim +skin +skio +skip +skis +skit +skol +skua +skug +Skye +skyr +slab +slae +slag +slam +slap +slat +Slav +slaw +slay +sled +slee +slew +sley +slid +slim +slip +slit +slob +sloe +slog +slop +slot +slow +slub +slue +slug +slum +slur +slut +smee +smew +smir +smit +smog +smug +smur +smut +snab +snag +snap +sneb +sned +snee +snib +snig +snip +snit +snob +snod +snog +snot +snow +snub +snug +snye +soak +soap +soar +Soay +sobs +soca +sock +socs +soda +sods +sofa +soft +sogs +sohs +soil +soja +soke +sola +sold +sole +soli +solo +sols +soma +some +sone +song +sons +sook +sool +soon +soot +soph +sops +sora +sorb +sord +sore +sori +sorn +sort +soss +sots +souk +soul +soum +soup +sour +sous +sovs +sowf +sowl +sown +sows +soya +soys +spae +spam +span +spar +spas +spat +spay +spec +sped +spek +spet +spew +spin +spit +spiv +spot +spry +spud +spue +spun +spur +stab +stag +Stan +stap +star +staw +stay +sted +stem +sten +step +stet +stew +stey +stir +stoa +stob +STOL +stop +stot +stow +st's +stub +stud +stum +stun +stye +Styx +subs +such +suck +sudd +suds +sued +suer +sues +suet +Suez +Sufi +suid +suit +sukh +suks +sulk +Sulu +sumo +sump +sums +sung +sunk +sunn +suns +supe +sups +suqs +sura +surd +sure +surf +suss +Susu +Suzy +swab +swad +swag +swam +swan +swap +swat +sway +swig +swim +swiz +swob +swop +swot +swum +sybo +syce +syed +syes +syke +sync +synd +syne +sype diff --git a/com/agnibho/code/anagram/dictionary/S5.txt b/com/agnibho/code/anagram/dictionary/S5.txt new file mode 100644 index 0000000..707bf9b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S5.txt @@ -0,0 +1,1390 @@ +Saame +Sabah +Sabal +saber +sabin +sable +Sabme +Sabmi +sabot +sabra +sabre +Sacha +Sachs +sacks +sacra +Sadat +sadhe +sadhu +Sadie +sadly +sadza +safer +safes +Sagan +sagas +sager +sages +saggy +sagos +sagum +Sahel +sahib +saice +saick +saics +saiga +sails +saily +saims +sains +saint +sairs +saist +saith +Saiva +sajou +Sakai +saker +sakes +sakia +sakis +Sakta +Sakti +salad +salal +Salar +Salem +salep +sales +salet +salic +Salim +salix +salle +sally +salmi +Salmo +salon +salop +salpa +salps +salsa +salse +salto +salts +salty +salue +salve +salvo +saman +samba +sambo +samel +samen +sames +samey +samfu +Samit +Sammy +Samoa +Samos +sampi +samps +Sanaa +sands +sandy +saner +Sango +sangs +sanko +sansa +Santa +Sa�ne +sapan +sapid +sapor +sappy +Sarah +Saran +saree +sarge +sargo +sarin +saris +sarks +sarky +sarod +saros +sarsa +Sarum +sarus +Sasha +sasin +sasse +sassy +Satan +satay +sated +satem +sates +Satie +satin +satis +satyr +sauba +sauce +sauch +saucy +Saudi +saugh +sauls +sault +sauna +saury +saut� +sauts +saved +saver +saves +savey +savin +savor +savoy +savvy +sawah +sawed +sawer +saxes +Saxon +sayer +sayid +sayon +sayst +scabs +scads +scaff +scail +scala +scald +scale +scall +scalp +scaly +scamp +scams +scans +scant +scapa +scape +scapi +scare +scarf +scarp +scars +scart +scary +scats +scatt +scaud +scaup +scaur +scaws +sceat +scena +scend +scene +scent +schmo +schul +schwa +scion +Sclav +sclim +scoff +scogs +scold +scone +scoop +scoot +scopa +scope +Scops +score +scorn +Scots +Scott +scoup +scour +scout +scowl +scows +scrab +scrae +scrag +scram +scran +scrap +scrat +scraw +scray +scree +screw +scrim +scrip +scrod +scrog +scrow +scrub +scrum +scuba +scudi +scudo +scuds +scuff +scuft +scugs +sculk +scull +sculp +sculs +scums +scups +scurf +scurs +scuse +scuta +scute +scuts +scuzz +scyes +sdein +seals +seams +seamy +seans +sears +seats +Sebat +sebum +secco +sects +sedan +Seder +sedes +sedge +sedgy +sedum +seeds +seedy +seeks +seels +seely +seems +seeps +seepy +seers +segar +segno +segol +segos +segue +seifs +seils +seine +seirs +seise +seism +seity +seize +sekos +selah +Selby +Seles +selfs +sella +selle +sells +selva +sem�e +semen +semie +semis +sends +Senga +senna +Se�or +sensa +sense +senza +Seoul +sepad +sepal +sepia +sepoy +septa +septs +serac +serai +seral +sered +seres +serfs +serge +seric +serif +serin +serks +seron +serow +serra +serre +serrs +serry +serum +serve +servo +sesey +sessa +setae +seton +setts +Seuss +seven +sever +sewed +sewen +sewer +sewin +sexed +sexer +sexes +sexts +shack +shade +shads +shady +shaft +shags +shahs +shake +shako +shaky +shale +shall +shalm +shalt +shaly +shama +shame +shams +Shane +Shang +shank +shans +shape +shaps +shard +share +shark +sharn +sharp +shash +Shaun +shave +shawl +shawm +Shawn +shaws +shaya +shays +shchi +sheaf +sheal +shear +sheas +Sheba +sheds +sheel +sheen +sheep +sheer +sheet +sheik +shelf +shell +Shema +shend +shent +sherd +sheva +shewn +shews +Shiah +Shias +shied +shiel +shier +shies +shift +shill +shily +shims +shine +shins +shiny +ships +shire +shirk +shirr +shirt +Shiva +shive +shivs +shlep +shmek +shoal +shoat +shock +shoed +shoer +shoes +shogi +shogs +shoji +shola +Shona +shone +shook +shool +shoon +shoos +shoot +shope +shops +shore +shorn +short +shote +shots +shott +shout +shove +shown +shows +showy +shoyu +shred +shrew +shrub +shrug +shtum +shuck +Shula +shuln +shuls +shuns +shunt +shura +shush +shute +shuts +shwas +shyer +shyly +sibyl +Sican +Sicel +sices +sicko +sicks +sidas +sided +sider +sides +sidha +sidle +Sidon +siege +Siena +sieve +sifts +sighs +sight +sigil +sigla +sigma +signs +sijos +sikas +sikes +Sikhs +Silas +silds +siled +silen +siler +siles +silex +silks +silky +sills +silly +silos +silts +silty +silva +simar +simis +Simla +Simon +simps +simul +Sinai +since +Sindi +sinds +Sindy +sines +sinew +singe +Singh +sings +Sinic +sinks +sinky +sinus +Sioux +siped +sipes +sired +siren +sires +sirih +siris +siroc +sirup +sisal +sissy +sists +sitar +sited +sites +sithe +Sitta +situs +Sivan +siver +sixer +sixes +sixte +sixth +sixty +sizar +sized +sizel +sizer +sizes +skail +skald +skank +skart +skate +skats +skaws +skean +skeer +skeet +skegg +skegs +skein +skelf +skell +skelm +skelp +skene +skeos +skeps +skers +skews +skids +skied +skier +skies +skiey +skiff +skill +skimp +skims +skink +skins +skint +skios +skips +skirl +skirr +skirt +skite +skits +skive +skivy +skoal +Skoda +skols +skran +skrik +skuas +skugs +skulk +skull +skunk +skyer +skyey +skyre +slabs +slack +slade +slaes +slags +slain +slake +slams +slane +slang +slant +slaps +slash +slate +slats +slaty +slave +Slavs +slaws +slays +sleds +sleek +sleep +sleer +sleet +slept +slews +sleys +slice +slick +slide +slier +Sligo +slily +slime +slims +slimy +sling +slink +slipe +slips +slipt +slish +slits +slive +sloan +slobs +sloes +slogs +sloid +sloom +sloop +sloot +slope +slops +slopy +slosh +sloth +slots +slove +slows +sloyd +slubb +slubs +slued +slues +slugs +sluit +slump +slums +slung +slunk +slurb +slurp +slurs +sluse +slush +sluts +slyer +slyly +slype +smack +smaik +small +smalm +smalt +smarm +smart +smash +Smaug +smear +smeek +smees +smell +smelt +smews +Smike +smile +smirk +smirr +smirs +smite +smith +smits +smock +smogs +smoke +smoko +smoky +smolt +smoor +smoot +smore +smote +smous +smout +smowt +smugs +smurf +smurs +smuts +Smyth +snabs +snack +snafu +snags +snail +snake +snaky +snaps +snare +snark +snarl +snary +snash +snath +snead +sneak +sneap +snebs +sneck +sneds +sneed +sneer +snees +snell +snibs +snick +snide +sniff +snift +snigs +snipe +snips +snipy +snirt +snits +snobs +snods +snoek +snogs +snoke +snood +snook +snool +snoop +snoot +snore +snort +snots +snout +snowk +snows +snowy +snubs +snuck +snuff +snugs +snyes +soaks +Soane +soaps +soapy +soars +Soave +sober +socko +socks +socle +sodas +soddy +sodic +Sodom +Sodor +sofar +sofas +Sofia +softa +softs +softy +soger +soggy +soils +soily +sojas +sokah +soken +sokes +solah +solan +solar +solas +soldi +soldo +soled +solen +soler +soles +solid +Solly +Solon +solos +Solti +solum +solus +solve +soman +somas +Somme +sonar +sonce +sonde +sones +songs +Sonia +sonic +sonny +sonse +sonsy +sooks +sools +sooth +soots +sooty +Soper +sophs +Sophy +sopor +soppy +sopra +soral +soras +sorbo +sorbs +sorda +sordo +sords +sored +soree +sorel +sorer +sores +sorex +sorgo +sorns +sorra +sorry +sorts +sorus +Sotho +sough +souks +souls +soums +sound +soups +soupy +sours +Sousa +souse +south +sowar +sowed +sower +sowff +sowfs +sowle +sowls +sowse +soyas +Soyuz +space +spacy +spade +spado +spaed +spaer +spaes +spahi +spain +spake +spald +spale +spall +spalt +spams +spane +spang +spank +spans +spare +spark +spars +spart +spasm +spate +spats +spawl +spawn +spays +spazz +speak +speal +spean +spear +speck +specs +speed +speel +speer +speir +Speke +speld +spelk +spell +spelt +spend +spent +speos +sperm +spews +spewy +spial +spica +spice +spick +spicy +spied +spiel +spies +spiff +spike +spiky +spile +spill +spilt +spina +spine +spink +spins +spiny +spire +spirt +spiry +spite +spits +spitz +spivs +splat +splay +split +Spock +spode +Spohr +spoil +spoke +spoof +spook +spool +spoom +spoon +spoor +spoot +spore +sport +sposh +spots +spout +sprad +sprag +sprat +spray +spree +sprew +sprig +sprit +sprod +sprog +sprue +sprug +spuds +spued +spues +spume +spumy +spunk +spurn +spurs +spurt +sputa +squab +squad +squat +squaw +squeg +squib +squid +squit +squiz +stabs +stack +Stacy +stade +staff +stage +stags +stagy +staid +staig +stain +stair +stake +stale +stalk +stall +stamp +stand +stane +stang +stank +staph +staps +stare +stark +starn +starr +stars +start +stash +state +stave +staws +stays +stead +steak +steal +steam +stean +stear +stedd +stede +steds +steed +steek +steel +steem +steen +steep +steer +steil +stein +stela +stele +stell +stems +stend +steno +stens +stent +steps +stept +stere +stern +stets +Steve +stews +stewy +stich +stick +stied +sties +stiff +stilb +stile +still +stilt +stime +stimy +sting +stink +stint +stipa +stipe +stire +stirk +stirp +stirs +stive +stivy +stoae +stoai +stoas +stoat +stobs +stock +stoep +stogy +stoic +stoit +stoke +stola +stole +STOLs +stoma +stomp +stond +stone +stong +stonk +stony +stood +stook +stool +stoop +stoor +stope +stops +store +stork +storm +story +stoss +stots +stoun +stoup +stour +stout +stove +Stowe +stown +stows +strad +strae +strag +strap +straw +stray +strep +strew +stria +strid +strig +strip +strop +strow +stroy +strum +strut +stubs +stuck +studs +study +stuff +Stuka +stull +stulm +stumm +stump +stums +stung +stunk +stuns +stunt +stupa +stupe +sturt +styed +styes +style +styli +stylo +suave +subah +subby +suber +succi +sucks +sucre +Sudan +sudds +sudor +Sudra +sudsy +suede +suers +suety +Sufic +Sufis +sugar +suing +suint +suite +suits +sujee +sukhs +Sukie +sulci +sulfa +sulks +sulky +Sulla +sully +Sulus +sumac +Sumer +summa +sumos +sumph +sumps +Sunil +sunks +Sunna +Sunni +sunns +sunny +Suomi +super +supes +Supp� +supra +surah +sural +suras +surat +surds +surer +sures +surfs +surfy +surge +surgy +surly +surra +Surya +Susan +sushi +Susie +Susus +sutor +sutra +swabs +swack +swads +swage +swags +swain +swale +swaly +swami +swamp +swang +swank +swans +swaps +sward +sware +swarf +swarm +swart +swash +swath +swats +sways +Swazi +sweal +swear +sweat +swede +sweep +sweer +sweet +sweir +swell +swelt +swept +swies +swift +swigs +swill +swims +swine +swing +swink +swipe +swire +swirl +swish +Swiss +swith +swive +swizz +swobs +swoon +swoop +swops +sword +swore +sworn +swots +swoun +swung +sybil +syboe +sybow +sycee +syker +sykes +sylph +sylva +symar +synch +syncs +synds +syned +synes +Synge +synod +synth +syped +sypes +Syrah +syren +Syria +syrup +sysop +syver +Szell diff --git a/com/agnibho/code/anagram/dictionary/S6.txt b/com/agnibho/code/anagram/dictionary/S6.txt new file mode 100644 index 0000000..d531129 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S6.txt @@ -0,0 +1,2251 @@ +Saanen +sabbat +Sabean +sabers +Sabian +Sabina +Sabine +sabins +sabkha +sabled +sables +sabots +sabras +sabred +sabres +saccos +sachem +sachet +sacked +sacker +sacque +sacral +sacred +sacrum +sadden +sadder +saddhu +saddle +sadhus +sadism +sadist +saeter +safari +safely +safest +safety +sagely +sagene +sagest +saggar +sagged +sagger +sagoin +saguin +Sahara +sahiba +sahibs +saicks +saidst +saigas +Saigon +saikei +sailed +sailer +sailor +sained +saints +saique +saired +saithe +saiths +sajous +sakers +sakias +sakieh +sakkos +salaam +salade +salads +salals +salame +salami +salary +Saleem +saleps +salets +Salian +salify +salina +saline +Salish +saliva +sallal +sallee +sallet +sallow +salmis +salmon +Salome +salons +saloon +saloop +salops +salpae +salpas +salses +salted +salter +saltly +saltos +saltus +saluki +salute +salved +salver +salves +salvia +salvor +salvos +samaan +samara +Sambal +sambar +sambas +sambur +samekh +samely +samfoo +samfus +Samian +samiel +samite +samiti +samlet +samlor +Samoan +samosa +sampan +sampis +sample +samshu +Samson +Samuel +sancai +sancho +sandal +sanded +sander +sandhi +Sandra +sanely +sanest +sangar +sanies +sanify +sanity +sanjak +Sanjay +sankos +sannup +sanpan +sansas +sansei +santal +Santer +santir +santon +santur +sapans +sapego +sapele +sapful +Sapium +sapors +sapota +sappan +sapped +sapper +Sappho +sapple +sarape +sardel +sarees +sarges +sargos +sargus +sarney +sarnie +sarods +sarong +sarred +sarsas +sarsen +Sarthe +sartor +Sartre +sashay +sashed +sashes +sasine +sasins +Saskia +sassed +sasses +satang +satara +satays +sateen +sating +satins +satiny +satire +sative +satori +satrap +Saturn +satyra +satyrs +saubas +sauced +saucer +sauces +sauchs +Saudis +sauger +saughs +saulie +saults +saunas +saurel +Sauria +Sauron +sauted +saut�s +savage +savant +savate +savers +saveys +savine +saving +savins +savior +Savoie +savors +savory +savour +savoys +savvey +sawahs +sawder +sawers +sawing +Sawney +sawpit +sawyer +saxaul +Saxons +saxony +sayers +sayest +sayids +saying +sayons +sayyid +sazhen +sbirri +sbirro +scabby +scaffs +scails +scalae +scalar +scalds +scaled +scaler +scales +scalps +scamel +scampi +scamps +scants +scanty +scapas +scaped +scapes +scapus +scarab +scarce +scared +scarer +scares +scarey +Scarfe +scarfs +scarpa +scarph +scarps +scarry +scarth +scarts +Scarus +scatch +scathe +scatts +scatty +scauds +scaups +scaurs +scazon +sceatt +scends +scened +scenes +scenic +scents +scerne +schelm +schema +scheme +Schiff +schism +schist +schizo +schlep +schmoe +school +schorl +schout +schtik +schuit +schuls +schuss +Sch�tz +schuyt +schwas +scient +scilla +scions +Scipio +sciroc +sclaff +sclate +sclave +sclera +sclere +scliff +sclims +scoffs +scolds +scolex +scolia +sconce +scones +scoops +scoots +scopae +scopas +scopes +scorch +scored +scorer +scores +scoria +scorns +scorse +scotch +scoter +Scotia +Scotic +Scotty +scoups +scours +scouse +scouth +scouts +scowls +scrabs +scraes +scrags +scrams +scrape +scraps +scrats +scrawl +scrawm +scraws +scraye +scrays +screak +scream +screed +screen +screes +screws +screwy +scribe +scried +scries +scrike +scrimp +scrims +scrine +scrips +script +scrive +scrobe +scrods +scrogs +scroll +scroop +scrota +scrowl +scrows +scrubs +scruff +scrump +scrums +scrunt +scruto +scruze +scryer +scubas +scuffs +scuffy +scufts +sculks +sculle +sculls +sculps +sculpt +scummy +scunge +scungy +scurfs +scurfy +scurry +scurvy +scused +scuses +scutal +scutch +scutes +scutum +scuzzy +Scylla +scyphi +scythe +sdeign +seabed +Seabee +sealch +sealed +sealer +seaman +Seamas +seamed +seamen +seamer +Seamus +Seanad +s�ance +seaned +searce +search +seared +Searle +season +seated +seater +seaway +sebate +secant +seccos +secede +secern +secesh +seckel +seckle +second +secret +sector +secund +secure +sedans +sedate +sedent +sedged +sedges +sedile +seduce +sedums +seeded +seeder +Seeger +seeing +seeker +seeled +seemed +seemer +seemly +seeped +seesaw +seethe +segars +seggar +seghol +segnos +segols +segued +segues +seiche +seiled +seined +seiner +seines +seised +seises +seisin +seisms +seiten +seized +seizer +seizes +seizin +sejant +selahs +seldom +select +Selene +selfed +Selina +Seljuk +selkie +seller +selles +selvas +selves +semble +sem�ed +semeia +Semele +sememe +semens +semies +Semite +semmit +semper +semple +sempre +semsem +Semtex +senary +senate +Sendai +Sendak +sendal +sended +sender +Seneca +senega +Senhor +senile +senior +Senlac +sennas +sennet +sennit +Se�ora +Se�ors +sensed +senses +sensor +sensum +sentry +Senusi +Seonag +sepads +sepals +sephen +sepias +sepium +sepmag +sepoys +sepses +sepsis +septal +septet +septic +septum +sequel +sequin +seracs +serail +serais +serang +serape +seraph +Serbia +serdab +serein +Serena +serene +serges +serial +series +serifs +serine +sering +serins +sermon +serons +seroon +serosa +serous +serows +serrae +serran +serras +serred +serres +serums +serval +served +server +serves +sesame +seseli +sestet +seston +setons +setose +setted +settee +setter +settle +setule +Seumas +sevens +severe +Severn +severs +severy +S�vres +sewage +Sewell +sewens +sewers +sewing +sewins +sexers +sexfid +sexier +sexily +sexing +sexism +sexist +sexpot +sextan +sextet +sexton +sexual +shabby +shacko +shacks +shaded +shades +shadow +shaduf +shafts +shaggy +shaikh +shairn +Shaiva +shaken +shaker +shakes +shakos +Shakta +Shakti +shalli +shalms +shalom +shalot +shaman +shamas +shamba +shamed +shamer +shames +shammy +shamoy +shamus +shandy +shanks +shanny +shan't +shanty +shaped +shapen +shaper +shapes +shards +shared +sharer +shares +Sharia +sharif +sharks +sharny +Sharon +sharps +Shashi +shaved +shaven +shaver +shaves +shavie +shawed +shawls +shawms +shayas +shchis +sheafs +sheafy +sheals +shears +sheath +sheave +Shebat +Sheela +sheens +sheepo +sheepy +sheers +sheets +sheety +sheikh +sheiks +sheila +shekel +shelfy +shells +shelly +Shelta +shelty +shelve +shelvy +shends +she'ol +sherds +Sheria +sherif +sherpa +sherry +Sheryl +sheuch +sheugh +shevas +shewed +shewel +Shiahs +shibah +shield +shiels +shiers +shiest +shifts +shifty +Shiism +Shiite +shikar +shiksa +shikse +shimmy +shindy +shined +shiner +shines +shinny +Shinto +shinty +shippo +Shiraz +shires +shirks +shirrs +shirts +shirty +shivah +shiver +shives +shivoo +shleps +shlock +shmeks +shmock +shmoes +shmuck +shoals +shoaly +shoats +shocks +shoddy +shoder +shoers +shofar +shogun +shojis +sholas +sholom +shonky +shooed +shooks +shools +shoots +shoppy +shoran +shored +shorer +shores +shorts +shorty +shotes +shotts +shough +should +shouts +shoved +shovel +shover +shoves +showed +shower +shrank +shreds +shrewd +shrews +shriek +shrift +shrike +shrill +shrimp +shrine +shrink +shrive +shroff +shroud +shrove +shrubs +shrugs +shrunk +shtchi +shtetl +shtick +shtook +shtoom +shtuck +shtumm +shucks +shufti +shufty +shunts +shuted +shutes +shyers +shyest +shying +shyish +sialic +sialon +sibyls +Sicans +siccan +siccar +Sicily +sicked +sicken +sicker +sickie +sickle +sickly +sickos +siddha +siddhi +siddur +siders +siding +sidled +sidles +Sidney +Sidony +sieged +sieger +sieges +sienna +sierra +siesta +sieved +sieves +sifaka +siffle +sifted +sifter +sighed +sigher +sights +sigils +siglum +signal +signed +signer +signet +signor +Sikkim +silage +silane +silene +sileni +silens +silent +silers +silica +siling +silked +silken +silkie +siller +silo'd +siloed +silted +silvae +silvan +silvas +silver +Silvia +simars +Simeon +simial +simian +simile +simkin +simmer +simnel +Simone +simony +simoom +simoon +simorg +simpai +simper +simple +simply +simuls +simurg +Sinbad +sinded +Sindhi +Sindis +sindon +Sinead +sinews +sinewy +sinful +singed +singer +singes +single +singly +sinker +sinned +sinner +sinnet +Sinope +sinter +Siouan +siphon +siping +sipped +sipper +sippet +sipple +sircar +sirdar +sirens +Sirian +sirihs +siring +Sirius +sirkar +sirocs +sirrah +sirred +sirree +sirups +siskin +sisses +sissoo +sisted +sister +sistra +sitars +sitcom +sithen +sithes +siting +sitrep +sittar +sitter +situla +sivers +siwash +sixain +sixers +sixtes +sixths +sizars +sizers +sizing +sizism +sizist +sizzle +skails +skalds +skanks +skarts +skated +skater +skates +skeans +skeely +skeery +skeggs +skeigh +skeins +skelfs +skells +skelly +skelms +skelps +skenes +skerry +sketch +skewed +skewer +skibob +skidoo +skiers +skiffs +skiing +skills +skilly +skimps +skimpy +skinks +skinny +skippy +skirls +skirrs +skirts +skited +skites +skived +skiver +skives +skivvy +sklate +sklent +skoals +skolia +Skopje +skreen +skriks +skulks +skulls +skunks +skurry +skyers +skying +skyish +skylab +skyman +skymen +skyred +skyres +Skyros +skyway +slabby +slacks +slades +slaggy +slaked +slakes +slalom +slanes +slangs +slangy +slants +slatch +slated +slater +slates +slaved +slaver +slaves +slavey +Slavic +slayed +slayer +sleave +sleaze +sleazy +sledge +sleech +sleeks +sleeky +sleeps +sleepy +sleets +sleety +sleeve +sleezy +sleigh +sleuth +slewed +sliced +slicer +slices +slicks +slided +slider +slides +sliest +slight +slimed +slimes +slimly +slimsy +slings +slinks +slinky +slipes +slippy +slived +sliven +sliver +slives +Sloane +sloans +slobby +slogan +slooms +sloomy +sloops +sloosh +sloots +sloped +slopes +sloppy +sloshy +sloths +slouch +slough +Slovak +sloven +slowed +slower +slowly +slubbs +slubby +sludge +sludgy +sluice +sluicy +slummy +slumps +slumpy +slurbs +slurps +slurry +slused +sluses +slushy +slyest +slyish +slypes +smacks +smaiks +smalls +smalms +smalmy +smalti +smalto +smalts +smarms +smarmy +smarts +smarty +smatch +smears +smeary +smeath +smeech +smeeks +smeeth +smegma +smells +smelly +smelts +Smersh +smeuse +smilax +smiled +smiler +smiles +smilet +smiley +smirch +smirks +smirky +smirrs +smiter +smites +smiths +smithy +smocks +smoggy +smoked +smoker +smokes +smokos +smolts +smooch +smooge +smoors +smooth +smoots +smored +smores +smouch +smouse +smouts +smowts +smriti +smudge +smudgy +smugly +smurfs +smurry +smutch +smutty +Smyrna +snacks +snaggy +snails +snaily +snaked +snakes +snappy +snared +snarer +snares +snarks +snarls +snarly +snaste +snatch +snathe +snaths +snazzy +sneads +sneaks +sneaky +sneaps +sneath +snecks +sneers +sneery +sneesh +sneeze +sneezy +snells +snelly +snicks +snider +snides +sniffs +sniffy +snifts +snifty +sniped +sniper +snipes +snippy +snirts +snitch +snivel +snobby +SNOBOL +snoeks +snoked +snokes +snoods +snooks +snools +snoops +snoopy +snoots +snooty +snooze +snoozy +snored +snorer +snores +snorts +snorty +snotty +snouts +snouty +snowed +snowks +snubby +snudge +snuffs +snuffy +snugly +soaked +soaken +soaker +soaped +soaper +soapie +soared +soarer +sobbed +sobeit +sobers +sobole +socage +soccer +social +socked +socker +socket +socles +socman +socmen +sodaic +sodded +sodden +sodger +sodium +sodomy +soever +soffit +softas +soften +softer +softie +softly +sogers +sogged +soign� +soiled +soir�e +sokens +solace +solahs +solano +solans +solars +soldan +solder +solely +solemn +solens +Solent +solera +solers +soleus +solgel +solidi +solids +soling +solion +solito +solive +sollar +soloed +solums +solute +solved +solver +solves +Somali +somata +somber +sombre +somite +Somnus +sonant +sonars +sonata +sondes +soneri +sonics +sonnet +sonsie +sontag +soogee +soogie +soojey +sooled +sooner +sooted +soothe +sooths +sophia +sophic +Sophie +sopite +sopors +sopped +sorage +sorbed +sorbet +sorbos +sorbus +sordes +sordid +sordor +sorees +sorely +sorest +sorgho +sorgos +soring +Sorley +sorned +sorner +sorrel +sorrow +sorted +sorter +sortes +sortie +sossed +sosses +Sothic +Sothos +sotted +souari +Soudan +soughs +sought +souled +soumed +sounds +souper +souple +source +soured +sourer +sourly +soused +souses +soutar +souter +souths +soviet +sovran +sowans +sowars +sowens +sowers +Soweto +sowfed +sowffs +sowing +sowled +sowles +sozzle +sozzly +spaced +spacer +spaces +spacey +spaded +spader +spades +spadix +spados +spaers +spahee +spahis +spaing +spains +spalds +spales +spalls +spalts +spammy +spaned +spanes +spangs +spanks +spared +sparer +spares +sparge +sparid +sparks +sparky +sparry +sparse +Sparta +sparth +sparts +spasms +spates +spathe +spauld +spavie +spavin +spawls +spawns +spawny +spayad +spayed +speaks +speans +spears +speary +speccy +specie +specks +specky +speech +speedo +speeds +speedy +speels +speers +speirs +speiss +spelds +spelks +spells +spence +spends +sperms +sperse +sperst +spetch +spewed +spewer +sphene +sphere +sphery +sphinx +spicae +spicas +spiced +spicer +spices +spicks +spider +spiels +spiffy +spigot +spiked +spikes +spiled +spiles +spills +spilth +spinal +spinar +spinas +spined +spinel +spines +spinet +spinks +spinny +spiral +spirea +spired +spires +spiric +spirit +spirts +spital +spited +spites +spivvy +splash +splats +splays +spleen +splent +splice +spliff +spline +splint +splits +splore +splosh +spoffy +spoils +spoilt +spoken +spokes +sponge +spongy +spoofs +spooks +spooky +spools +spooms +spoons +spoony +spoors +spores +sports +sporty +sposhy +spotty +spouse +spouts +spouty +sprack +sprags +sprain +sprang +sprats +sprawl +sprays +spread +spreed +sprees +sprent +sprigs +spring +sprint +sprite +sprits +spritz +sprods +sprogs +sprong +sprout +spruce +sprues +sprugs +spruik +spruit +sprung +spryer +spryly +spuddy +spuing +spumed +spumes +spunge +spunks +spunky +spurge +spurns +spurry +spurts +sputum +spying +squabs +squads +squail +squall +squama +squame +square +squash +squats +squawk +squaws +squeak +squeal +squegs +squibs +squids +squiff +squill +squint +squire +squirm +squirr +squirt +squish +squits +stable +stably +Stacey +stacks +stacte +stadda +stades +stadia +Staffa +staffs +staged +stager +stages +stagey +staigs +stains +stairs +staith +staked +stakes +stalag +staled +staler +stales +Stalin +stalko +stalks +stalky +stalls +stamen +stamps +stance +stanch +stands +staned +stanes +stangs +stanks +stanza +stanze +stapes +staple +starch +stared +starer +stares +starks +starns +starrs +starry +starts +starve +stases +stasis +statal +stated +Staten +stater +states +static +statim +stator +statua +statue +status +staved +staves +stawed +stayed +stayer +steads +steady +steaks +steale +steals +steams +steamy +steane +steans +steard +stears +stedde +stedds +steddy +stedes +steeds +steedy +steeks +steels +steely +steens +steeps +steepy +steers +steeve +steils +steins +stelae +stelar +stelas +steles +Stella +stells +stemma +stench +stends +stenos +stents +steppe +stereo +steres +steric +sterna +Sterne +sterns +sterol +sterve +steven +Stevie +stewed +stewer +stichs +sticks +sticky +stiffs +stifle +stigma +stigme +stilbs +stiled +stiles +stilet +stills +stilly +stilts +stilty +stimed +stimes +stimie +stingo +stings +stingy +stinko +stinks +stinky +stints +stinty +stipas +stipel +stipes +stirks +stirps +stirra +stitch +stithy +stived +stiver +stives +stoats +stocks +stocky +stodge +stodgy +stogey +stogie +stoics +stoits +stoked +stoker +stokes +stolas +stoled +stolen +stoles +stolid +stolon +stomal +stomps +stoned +stonen +stoner +stones +stonks +stooge +stooks +stools +stoope +stoops +stoors +stoped +stopes +storax +stored +storer +stores +storey +storge +storks +storms +stormy +stound +stoups +stours +stoury +stoush +stouth +stouts +stoved +stover +stoves +stowed +stower +strack +strads +straes +strafe +straff +strags +straik +strain +strait +strake +stramp +strand +straps +strass +strata +strath +strati +straws +strawy +strays +streak +stream +streek +streel +Streep +street +Strega +strene +streps +stress +strewn +strews +striae +strich +strict +stride +strids +strife +strift +striga +strigs +strike +Strine +string +stripe +strips +stripy +strive +stroam +strobe +strode +stroke +stroll +stroma +stromb +strong +strook +strops +stroud +stroup +strout +strove +strown +strows +struck +struma +strums +strung +strunt +struts +Stuart +stubbs +stubby +stucco +studio +stuffs +stuffy +stuggy +Stukas +stulls +stulms +stumer +stumps +stumpy +stunts +stupas +stuped +stupes +stupid +stupor +sturdy +sturts +stying +stylar +styled +styles +stylet +stylos +stylus +stymie +styrax +suable +suably +suaver +subact +subahs +subbed +subbie +subdue +subers +subfeu +subgum +subito +sublet +subman +submen +submit +suborn +subset +subtil +subtle +subtly +suburb +subway +succah +succ�s +succor +succus +sucked +sucken +sucker +sucket +suckle +sucres +sudary +sudate +sudden +sudder +sudors +Sudras +sudser +sueded +suedes +suffer +suffix +Sufism +sugars +sugary +Suidae +Suisse +suited +suites +suitor +suivez +sujeed +sujees +sukkah +Sukkot +sulcal +sulcus +sulfur +sulked +sullen +sulpha +sultan +sultry +sumach +sumacs +summae +summar +summat +summed +summer +summit +summon +sumphs +sumpit +sunbed +sunbow +sundae +Sunday +sunder +sundra +sundri +sundry +sungar +sungod +sunhat +sunken +sunket +sunlit +Sunnah +sunned +Sunnis +sunray +sunset +suntan +Suomic +supawn +superb +supers +supine +supped +supper +supple +supply +surahs +surbed +surely +surest +S�ret� +surety +surfed +surfer +surfie +surged +surges +surrey +surtax +survey +sushis +suslik +sussed +susses +Sussex +sutile +sutler +sutors +sutras +suttee +suttle +Sutton +suture +Suzhou +Suzuka +Suzuki +Svarga +svelte +swabby +swaddy +swaged +swages +swains +swaled +swales +swamis +swamps +swampy +Swanee +swanks +swanky +swanny +swaraj +swards +swardy +swarfs +Swarga +swarms +swarth +swarty +swarve +swashy +swatch +swathe +swaths +swathy +swayed +swayer +Swazis +sweals +swears +sweats +sweaty +Sweden +swedes +sweeny +sweeps +sweepy +sweert +sweets +sweety +sweirt +swells +swelts +swerve +sweven +swifts +swills +swimmy +swinge +swings +swingy +swinks +swiped +swiper +swipes +swires +swirls +swirly +swishy +switch +swived +swivel +swives +swivet +swoons +swoops +swoosh +swords +swound +swouns +sybils +syboes +sybows +Sydney +syeing +sylphs +sylphy +sylvae +sylvan +sylvas +sylvia +symars +symbol +synced +synchs +Syncom +synded +syndet +syndic +syngas +syning +synods +synroc +syntan +syntax +sypher +syphon +syping +syrens +Syriac +Syrian +syrinx +syrtes +syrtis +syrups +syrupy +sysops +system +syvers +syzygy diff --git a/com/agnibho/code/anagram/dictionary/S7.txt b/com/agnibho/code/anagram/dictionary/S7.txt new file mode 100644 index 0000000..890a90f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S7.txt @@ -0,0 +1,3070 @@ +Saanens +Sabaean +Sabahan +Sabaism +Sabaoth +sabaton +Sabbath +sabbats +Sabeans +sabella +Sabines +sabkhah +sabkhas +sabkhat +sabling +sabreur +Sabrina +sabring +saburra +sacaton +saccade +saccate +saccule +sacculi +sacella +sachems +sachets +sackage +sackbut +sackers +sackful +sacking +sacless +saclike +sacques +sacrify +sacring +sacrist +saddens +saddest +saddhus +saddish +saddled +saddler +saddles +sadists +sadness +saeters +safaris +saffian +saffron +safrole +sagaman +sagamen +sagathy +sagenes +saggard +saggars +saggers +sagging +sagitta +sagoins +sagouin +saguaro +saguins +Saharan +sahibah +sahibas +saidest +sailers +sailing +sailors +saimiri +saining +sainted +saintly +saiques +sairing +saithes +Saivism +Saivite +sakeret +sakiehs +sakiyeh +saksaul +Saktism +salaams +salable +salably +salades +Saladin +salamis +salband +salchow +Salerno +salfern +Salford +salices +salicet +salicin +salient +Salieri +saligot +salinas +salines +Salique +salival +salivas +sallals +sallets +sallied +sallies +sallows +sallowy +salmons +saloons +saloops +salpian +salpinx +salsify +Salsola +saltant +saltate +saltato +saltern +salters +saltier +saltily +salting +saltire +saltish +saltoed +salukis +saluted +saluter +salutes +salvage +salvers +salvete +salvias +salving +salvoes +salvors +samadhi +samaras +Samaria +sambars +sambuca +samburs +samfoos +samiels +samisen +samitis +samlets +samlors +Samnite +Samoans +samosas +samovar +Samoyed +sampans +sampire +sampled +sampler +samples +Sampras +Sampson +samsara +samshoo +samshus +samurai +sanchos +sanctum +Sanctus +sandals +sandbag +sanders +sandhis +sandier +sanding +sandman +sandmen +Sandown +sangars +sangoma +sangria +sanicle +sanious +sanjaks +Sankhya +sannups +sanpans +sanseis +santals +santirs +santons +santour +santurs +saouari +sapajou +sapeles +saphead +saphena +sapient +sapless +sapling +saponin +sapotas +sappans +sappers +Sapphic +sappier +sapping +sapples +Sapporo +saprobe +sapsago +Saracen +sarafan +sarangi +sarapes +Saratov +Sarawak +sarcasm +sarcode +sarcoid +sarcoma +sarcous +sardana +sardels +sardine +sardius +Sargent +sarkful +sarkier +sarking +sarment +sarneys +sarnies +sarongs +saronic +saroses +sarring +sarsden +sarsens +sarsnet +sartors +saruses +sashays +sashimi +sashing +sasines +sassaby +Sassari +sassier +sassing +Sassoon +Satanas +satanic +sataras +satchel +Satchmo +sateens +satiate +satiety +satined +satinet +satires +satiric +satisfy +satoris +satraps +satrapy +satsuma +satyral +satyras +satyric +satyrid +saucers +saucier +saucily +saucing +saugers +saulies +saunter +saurels +saurian +sauries +sauroid +sausage +saut�ed +sauting +sautoir +savable +savaged +savages +savanna +savants +savarin +savates +saveloy +saveyed +savines +savings +saviors +saviour +savours +savoury +savveys +savvied +savvies +sawders +sawdust +sawings +Sawneys +sawpits +sawyers +saxauls +saxhorn +Saxonic +sayable +sayings +sayyids +sazerac +sazhens +scabbed +scabble +scabies +scabrid +scaffie +scaglia +scailed +scalade +scalado +scalars +scalded +scalder +scaldic +scalene +scaleni +scalers +scalier +scaling +scalled +scallop +scalped +scalpel +scalper +scamble +scammed +scamped +scamper +scampis +scandal +Scandic +Scandix +scanned +scanner +scanted +scantle +scantly +scapaed +scaping +scapple +scapula +scarabs +scarcer +scarers +scarfed +scarier +scarify +scaring +scarlet +scarpas +scarped +scarper +scarphs +scarred +scarted +scarths +scarves +scathed +scathes +scatole +scatted +scatter +scauded +scauper +scaured +scavage +scazons +scenary +scended +scenery +scening +scented +scepses +scepsis +scepter +sceptic +sceptre +sceptry +schanse +schanze +schappe +Scheele +schelms +schemed +schemer +schemes +scherzi +scherzo +Schiele +schisma +schisms +schists +schizos +schlepp +schleps +schlich +schlock +schloss +schmalz +schmeck +schmelz +Schmidt +schmock +schmoes +schmooz +schmuck +schnaps +schnell +schnook +schnorr +scholar +scholia +schools +schouts +schtick +schtiks +schtook +schtoom +schtuck +schuits +Schuman +schuyts +Schwann +Sciaena +sciarid +sciatic +science +scillas +sciolto +scirocs +Scirpus +scissel +scissil +scissor +Sciurus +sclaffs +sclates +scleral +scleras +scleres +scliffs +scoffed +scoffer +scogged +Scoggin +scolded +scolder +scolion +scollop +Scomber +sconces +scooped +scooper +scooted +scooter +scopate +scopula +scorers +scoriac +scoriae +scorify +scoring +scorned +scorner +scorper +scorpio +Scotchy +scoters +Scotism +Scotist +scotoma +scotomy +Scottie +scouped +scoured +scourer +scourge +scouser +scouses +scouted +scouter +scowder +scowled +scraggy +scraich +scraigh +scranch +scranny +scraped +scraper +scrapes +scrapie +scrappy +scratch +scrauch +scrawls +scrawly +scrawms +scrawny +scrayes +screaks +screaky +screams +screech +screeds +screens +screeve +screich +screigh +screwed +screwer +scribal +scribed +scriber +scribes +scrieve +scrimps +scrimpy +scripts +scritch +scrived +scrives +scrobes +scroggy +scrolls +scrooge +scroops +scrotal +scrotum +scrouge +scrowle +scrowls +scroyle +scrubby +scruffs +scruffy +scrummy +scrumps +scrumpy +scrunch +scrunts +scruple +scrutos +scruzed +scruzes +scryers +scrying +scudded +scudder +scuddle +scudler +scuffed +scuffle +scugged +sculked +sculled +sculler +sculles +sculped +sculpin +sculpts +scumber +scumble +scummed +scummer +scunged +scunges +scunner +scupper +scurred +scurril +scusing +scutage +scutate +scutter +scuttle +scybala +scyphus +scytale +scythed +scyther +scythes +sdeigne +seagull +sealant +sealchs +sealers +sealery +sealing +seamark +seamers +seamier +seaming +seamset +s�ances +seaning +seaport +searced +searces +searing +seasick +seaside +seasons +seaters +seating +Seattle +seaward +seaways +seaweed +sebacic +sebates +sebific +sebundy +secants +seceded +seceder +secedes +secerns +seckels +seckles +seclude +Secombe +seconal +seconde +secondi +secondo +seconds +secrecy +secreta +secrete +secrets +sectary +sectile +section +sectors +secular +secured +securer +secures +sedated +sedater +sedates +sedgier +sedilia +seduced +seducer +seduces +seeable +seedbed +seedbox +seeders +seedier +seedily +seeding +seedlip +seeings +seekers +seeking +seeling +seemers +seeming +seepage +seepier +seeping +seeress +seesaws +seethed +seether +seethes +seggars +seghols +segment +Segovia +seiches +seiling +seiners +seining +seising +seisins +seismal +seismic +seities +seizers +seizing +seizins +seizure +Sejanus +sejeant +sekoses +selects +selenic +selfing +selfish +selfism +selfist +selkies +Selkirk +sellers +selling +seltzer +selvage +sematic +semeion +sememes +semilog +seminal +seminar +semiped +semises +Semites +Semitic +semmits +semsems +senarii +senates +senator +sendals +senders +sending +Senecan +senecio +Senegal +senegas +Senhora +Senhors +seniors +sennets +sennits +Se�oras +Se�ores +sensate +sensile +sensing +sensism +sensist +sensors +sensory +sensual +Senusis +Senussi +Seonaid +sephens +sepiost +sepiums +seppuku +septate +septets +septime +septuor +sequela +sequels +sequent +sequins +sequoia +serafin +serails +serangs +serapes +seraphs +Serapic +Serapis +Serbian +Sercial +serdabs +sereins +serened +serener +serenes +serfage +serfdom +serfish +serials +seriate +sericin +sericon +seriema +seringa +serious +serkali +sermons +seroons +seropus +serosae +serosas +Serpens +serpent +serpigo +serpula +serrans +serrate +serried +serries +serring +servals +servant +servers +servery +Servian +service +servile +serving +Servite +sesames +seselis +Sesotho +sessile +session +sestets +sestett +sestina +sestine +sestons +setback +setness +settees +setters +setting +settled +settler +settles +settlor +setules +setwall +seventh +seventy +several +severed +severer +Sevilla +Seville +sevruga +sewered +sewings +sexfoil +sexiest +sexists +sexless +sexpert +sexpots +sextans +sextant +sextets +sextett +sextile +sextons +sextuor +Seyfert +Seymour +sferics +sfumato +shabble +shacked +shackle +shackos +shadier +shadily +shading +shadoof +shadows +shadowy +shadufs +Shaffer +shafted +shafter +shagged +shaikhs +shaitan +shakers +shakier +shakily +shaking +shakoes +shakudo +shalier +shallon +shallop +shallot +shallow +shalots +shalwar +shamans +shamble +shambly +shamers +shaming +shammed +shammer +shammes +shamoys +shampoo +shandry +Shankar +shanked +Shannon +shantey +Shantou +shapely +shapers +shaping +sharded +Shardik +sharers +Shariat +Sharifa +sharifs +sharing +sharked +sharker +sharped +sharpen +sharper +sharpie +sharply +shashes +shaster +shastra +Shatner +shatter +shavers +Shavian +shavies +shaving +Shavuot +shawing +shawled +shawley +shawlie +Shawnee +sheafed +sheared +shearer +sheathe +sheaths +sheathy +sheaved +sheaves +shebang +shebeen +shedder +sheened +sheepos +sheered +sheerer +sheerly +sheeted +shehita +sheikha +sheikhs +sheilas +shekels +shelfed +shellac +shelled +sheller +Shelley +shelter +sheltie +shelved +shelves +Shemite +Sheppey +sherbet +shereef +Shergar +Sheriat +sheriff +sherifs +Sherman +sherpas +sherris +sheuchs +sheughs +shewels +shewing +shiatsu +shiatzu +shibahs +shicker +shicksa +shidder +shields +shifted +shifter +Shiites +Shiitic +shikari +shikars +shiksas +shikses +shilpit +Shilton +shimaal +shimmer +shimmey +shindig +shiners +shingle +shingly +shinier +shining +shinned +shipful +shiplap +shipman +shipmen +shipped +shippen +shipper +shippon +shippos +shipway +shirked +shirker +Shirley +shirred +shirted +shittah +shittim +shivahs +shivers +shivery +shivoos +shivved +shmaltz +shmocks +shmoose +shmooze +shmucks +shoaled +shochet +shocked +shocker +shoders +shoebox +shoeing +shofars +shogged +shoggle +shoggly +shoguns +shoofly +shoogle +shoogly +shooing +shooled +shooter +shopful +shophar +shopman +shopmen +shopped +shopper +shorers +shoring +shorted +shorten +shorter +shortie +shortly +shotgun +shotted +shotten +shoughs +shouted +shouter +shovels +shovers +shoving +showbiz +showers +showery +showghe +showier +showily +showing +showman +showmen +shreddy +shriech +shrieks +shrieve +shrifts +shrikes +shrills +shrilly +shrimps +shrimpy +shrinal +shrined +shrines +shrinks +shrived +shrivel +shriven +shriver +shrives +shroffs +shrouds +shroudy +shrubby +shtchis +shtetel +shtetls +shticks +shucked +shucker +shudder +shuffle +shunned +shunner +shunted +shunter +shushed +shushes +shuting +shutter +shuttle +Shylock +shyness +shyster +sialoid +siamang +siamese +siameze +Siberia +sibling +sibship +sibylic +Sibylla +siccity +sickens +Sickert +sickest +sickies +sicking +sickish +sickled +sickles +Siddhis +Siddons +sidearm +sidecar +sideman +sidemen +sideral +sidings +sidling +Sidonie +siegers +sieging +siemens +Sienese +siennas +sierran +sierras +siestas +sievert +sieving +sifakas +siffled +siffles +sifters +sifting +sighers +sighful +sighing +sighted +sighter +sightly +sigmate +sigmoid +Sigmund +signage +signals +signary +signers +signets +signeur +signify +signing +Signior +signora +signore +signori +signors +signory +Sikhism +silaged +silages +silence +silenes +silenus +silesia +silicic +silicle +silicon +siliqua +silique +silkens +silkier +silkies +silkily +silking +sillers +Sillery +sillier +sillies +sillily +sillock +siloing +silphia +siltier +silting +silurid +Silurus +silvans +silvern +silvers +silvery +simarre +Simenon +simians +similar +similes +similor +simious +simitar +simkins +simmers +simnels +simooms +simoons +simorgs +simpais +simpers +simpkin +simpled +simpler +simples +simplex +Simpson +simular +simurgh +simurgs +Sinaean +Sinatra +sincere +Sindhis +sinding +sindons +sinewed +singers +singing +singled +singles +singlet +singult +Sinhala +sinical +sinkage +sinkers +sinking +sinless +sinners +sinnets +sinning +sinopia +sinopis +sinsyne +sinters +sintery +sinuate +sinuose +sinuous +sinuses +Siobhan +siphons +Siporex +sippers +sippets +sipping +sippled +sipples +sircars +sirdars +Sirenia +sirenic +sirgang +sirkars +sirloin +sirname +sirocco +sirrahs +sirring +siruped +siskins +sissier +sissies +sissoos +sisters +Sistine +sisting +sistrum +sitcoms +sitdown +sitfast +sithens +Sithole +sitreps +sittars +sitters +sittine +sitting +situate +situlae +Sitwell +Sivaism +Sivaite +sixaine +sixains +sixfold +sixteen +sixthly +sixties +sizable +sizeism +sizeist +sizings +sizists +sizzled +sizzler +sizzles +sjambok +skailed +skaldic +skanked +skaters +skating +skatole +skeeter +skegger +skelder +skellie +skellum +skelped +skelter +Skelton +skepful +skepped +skepses +skepsis +skeptic +skerred +sketchy +skewers +skewing +skiable +skibobs +Skiddaw +skidded +skidder +skidlid +skidoos +skidpan +skiffed +skiffle +skiings +skilful +skilled +skillet +skimmed +skimmer +skimmia +skimped +skinful +skinked +skinker +skinned +skinner +skipped +skipper +skippet +Skipton +skirled +skirred +skirret +skirted +skirter +skiting +skitter +skittle +skivers +skiving +sklated +sklates +sklents +skolion +skreens +skreigh +skugged +skulked +skulker +skulpin +skuttle +skyborn +skyclad +skydive +skyhook +skyjack +skylark +skyline +skyring +skysail +skyward +skywave +skyways +slabbed +slabber +slacked +slacken +slacker +slackly +sladang +slagged +sl�inte +slaking +slaloms +slammed +slammer +slander +slanged +slanger +slanted +slantly +slapped +slapper +slashed +slasher +slashes +slaters +slather +slatier +slating +Slatkin +slatted +slatter +Slavdom +slavers +slavery +slaveys +Slavify +slaving +slavish +Slavism +slayers +slaying +sleaved +sleaves +sleazes +sledded +sledged +sledger +sledges +sleechy +sleeked +sleeken +sleeker +sleekit +sleekly +sleeper +sleepry +sleeted +sleeved +sleever +sleeves +sleighs +sleight +slender +slenter +sleuths +slewing +slicers +slicing +slicked +slicken +slicker +slickly +slidden +slidder +sliders +sliding +slights +slimier +slimily +sliming +slimmed +slimmer +slinger +slinker +slinter +slipped +slipper +slipway +slither +slitter +slivers +sliving +Sloanes +slobber +slocken +slogans +slogged +slogger +sloomed +sloping +slopped +sloshed +sloshes +slothed +slotted +slotter +slouchy +sloughs +sloughy +Slovaks +Slovene +slovens +slowest +slowing +slowish +slubbed +slubber +sludges +slueing +slugged +slugger +sluiced +sluices +slumber +slumbry +slummed +slummer +slumped +slurped +slurper +slurred +slushed +slushes +slusing +slyness +smacked +smacker +smalled +smaller +smalmed +smaltos +smaragd +smarmed +smarted +smarten +smarter +smartie +smartly +smashed +smasher +smashes +smatter +smeared +smectic +smeddum +smeeked +smegmas +smelled +smeller +smelted +smelter +Smetana +smicker +smicket +smidgen +smidgin +smilers +smileys +smiling +smirked +smirred +smiters +smithed +smiting +smitten +smittle +smocked +smokeho +smokers +smokier +smokies +smokily +smoking +smolder +smoodge +smooged +smooges +smoored +smooted +smoothe +smooths +smoring +smother +smouser +smouted +smudged +smudger +smudges +smugged +smugger +smuggle +smurred +smutted +smytrie +snabble +snacked +snaffle +snagged +snailed +snakier +snakily +snaking +snakish +snapped +snapper +snarers +snaring +snarled +snarler +snashed +snashes +snastes +snatchy +snathes +sneaked +sneaker +sneaped +sneaths +snebbed +snecked +snedded +sneeing +sneered +sneerer +sneezed +sneezer +sneezes +snelled +sneller +snibbed +snicked +snicker +snicket +snidely +snidest +sniffed +sniffer +sniffle +snifted +snifter +snigged +snigger +sniggle +snipers +sniping +snipped +snipper +snippet +snirtle +snivels +snodded +snoddit +snogged +snoking +snooded +snooked +snooker +snooled +snooped +snooper +snooted +snoozed +snoozer +snoozes +snoozle +snorers +snoring +snorkel +snorted +snorter +snotted +snotter +snottie +snouted +snowcap +Snowdon +snowier +snowily +snowing +snowish +snowked +snowman +snowmen +snubbed +snubber +snudged +snudges +snuffed +snuffer +snuffle +snuffly +snugged +snugger +snuggle +snuzzle +soakage +soakers +soaking +soapbox +soapers +soapier +soapies +soapily +soaping +soarers +soaring +sobbing +sobered +soberer +soberly +soboles +socager +socages +soccage +socials +sociate +society +sockets +sockeye +socking +soddens +sodding +sodgers +soffits +softens +softest +softies +softish +sogered +soggier +soggily +sogging +soign�e +soilage +soiling +soilure +soir�es +sojourn +sokaiya +sokeman +sokemen +solaced +solaces +solanos +solanum +solaria +solatia +soldado +soldans +solders +soldier +solf�ge +solicit +solider +solidly +solidum +solidus +solions +soliped +soliton +solives +sollars +soloing +soloist +Solomon +Solpuga +soluble +solutes +solvate +solvent +solvers +solving +Somalia +Somalis +somatic +sombers +sombred +sombres +someday +somehow +someone +someway +somewhy +somital +somites +somitic +somnial +sonance +sonancy +sonants +sonatas +sondage +sondeli +songful +songman +sonless +sonnets +sonnies +sonship +sonsier +sontags +soogeed +soogees +soogied +soogies +soojeys +sooling +soonest +soothed +soother +soothes +soothly +sootier +sootily +sooting +sophism +sophist +sopited +sopites +soppier +soppily +sopping +soprani +soprano +Sopwith +sorages +sorbate +sorbent +sorbets +Sorbian +sorbing +Sorbish +sorbite +sorcery +sordine +sordini +sordino +soredia +sorehon +sorexes +sorghos +sorghum +sorites +soritic +sorners +sorning +soroban +soroche +sororal +soroses +sorosis +sorrels +sorrier +sorries +sorrily +sorrows +sorters +sortied +sorties +sorting +sossing +Sotadic +Sotheby +sotting +sottish +souaris +soubise +souffl� +soughed +soukous +soulful +souming +sounded +sounder +soundly +Souness +soup�on +soupers +soupier +soupled +souples +sourced +sources +sourest +souring +sourish +sourock +sousing +souslik +soutane +soutars +souters +southed +souther +Southey +soviets +sovrans +sowarry +sowback +sowffed +sowfing +sowings +sowling +sozzled +sozzles +spacers +spacial +spacier +spacing +spaders +spadger +spading +spadoes +spaeing +spaeman +spaemen +spahees +spained +spairge +spalled +spalted +spammed +spammer +spancel +Spandau +spandex +spanged +spangle +spangly +spaniel +spaning +Spanish +spanked +spanker +spanned +spanner +sparely +sparers +sparest +sparged +sparger +sparges +sparids +sparing +sparked +sparkie +sparkle +sparkly +sparoid +sparred +sparrer +sparrow +sparser +Spartan +sparths +spasmic +Spassky +spastic +spathed +spathes +spathic +spatial +spatted +spattee +spatter +spatula +spatule +spaulds +spawled +spawned +spawner +spaying +spazzed +spazzes +speaker +speaned +speared +special +species +specify +specked +speckle +specter +spectra +spectre +specula +speeded +speeder +speedos +speeled +speered +speired +spelded +spelder +speldin +spelean +spelled +speller +spelter +spencer +spences +spender +Spenser +speoses +spermic +spersed +sperses +spewers +spewing +sphenic +spheral +sphered +spheres +spheric +spicate +spicers +spicery +spicier +spicily +spicing +spicula +spicule +spiders +spidery +spieled +spieler +spignel +spigots +spikery +spikier +spikily +spiking +spiling +spilite +spilled +spiller +spinach +spinage +spinars +spinate +spindle +spindly +spinels +spinets +spinier +spinner +spinnet +spinney +spinode +spinose +spinous +spinout +Spinoza +spinule +spiraea +spirals +spirant +spireas +spireme +spirics +spiring +spirits +spirity +spiroid +spirted +spirtle +spitals +spiting +spitted +spitten +spitter +spittle +spitzes +splashy +splatch +splayed +spleens +spleeny +splenic +splents +spliced +splicer +splices +spliffs +splined +splines +splints +splodge +splodgy +splores +splotch +splurge +splurgy +spodium +spoiled +spoiler +Spokane +spondee +spondyl +sponged +sponger +sponges +spongin +sponsal +sponson +sponsor +spoofed +spoofer +spooked +spooled +spooler +spoomed +spooned +Spooner +spooney +spoored +spoorer +sporran +sported +sporter +sporule +spotlit +spotted +spotter +spousal +spouses +spouted +spouter +sprains +spraint +sprawls +sprawly +sprayed +sprayer +sprayey +spreads +spreagh +spriggy +spright +springe +springs +springy +sprints +sprites +sprouts +spruced +sprucer +spruces +spruiks +spryest +spudded +spulyie +spumier +spuming +spumoni +spumous +spunked +spunkie +spurges +spuriae +spurned +spurner +spurred +spurrer +spurrey +spurted +spurtle +sputnik +sputter +spyings +squabby +squacco +squaddy +squails +squalid +squalls +squally +squalor +squamae +squames +squared +squarer +squares +squashy +squatty +squawks +squawky +squeaks +squeaky +squeals +Squeers +squeeze +squeezy +squelch +squidge +squidgy +squiffy +squilla +squills +squinch +squinny +squints +squired +squires +squirms +squirmy +squirrs +squirts +squishy +squitch +sraddha +stabbed +stabber +stabile +stabled +stabler +stables +stachys +stacked +stacker +stactes +staddas +staddle +stadial +stadias +stadium +staffed +staffer +stagers +stagery +stagged +stagger +stagier +stagily +staging +staider +staidly +stained +stainer +Staines +staired +staithe +staiths +staking +stalags +stalely +stalest +staling +stalked +stalker +stalled +Stambul +stamens +stamina +stammel +stammer +stamnoi +stamnos +stamped +stamper +stances +standee +stander +stanged +staniel +staning +Stanley +stannel +stannic +stanzas +stanzes +stapled +stapler +staples +stapped +starchy +stardom +starers +starets +staretz +staring +starked +starken +starker +starkly +starlet +starlit +starned +starnie +starred +started +starter +startle +startly +starved +starves +stashed +stashes +stashie +stasima +statant +stately +statice +statics +stating +station +statism +statist +stative +stators +statued +statues +stature +statute +staunch +staving +stawing +stayers +staying +steaded +stealed +stealer +steales +stealth +steamed +steamer +steamie +steaned +steanes +stearic +stearin +steddes +steeked +steekit +steeled +steened +steeped +steepen +steeper +steeple +steeply +steered +steerer +steeved +steever +steeves +Steiger +steined +Steiner +stelene +stellar +stelled +stembok +stemlet +stemmed +stemmer +stempel +stemple +stemson +stenchy +stencil +stended +stengah +stenned +stented +stentor +Stephen +stepney +stepped +stepper +steppes +stepson +Steptoe +stereos +sterile +sterlet +sternal +sterned +sterner +sternly +sternum +steroid +sterols +Stetson +stetted +stevens +steward +Stewart +stewers +stewing +stewpan +stewpot +sthenic +stibial +stibine +stibium +stichic +stichoi +stichos +sticked +sticker +stickit +stickle +stickup +stiffen +stiffer +stiffly +stifled +stifler +stifles +stigmas +stigmes +stilets +stiling +stilled +stiller +stilted +stilter +Stilton +stimied +stimies +stiming +stimuli +stinged +stinger +stingos +stinker +stinted +stinter +stipels +stipend +stipple +stipule +stirpes +stirrah +stirred +stirrer +stirrup +stishie +stivers +stiving +stocked +stocker +stodged +stodger +stodges +stoical +stoited +stoiter +stokers +stoking +stollen +stolons +stomach +stomata +stomped +stomper +stoners +stonied +stonier +stonily +stoning +stonked +stonker +stooden +stooged +stooges +stooked +stooker +stooled +stoolie +stooped +stooper +stoopes +stoping +stopped +stopper +stopple +storage +storers +storeys +storied +stories +storing +stormed +stotted +stotter +stounds +stouten +stouter +stoutly +stovies +stoving +stowage +stowers +stowing +strafed +strafes +straffs +straiks +strains +straint +straits +strakes +stramps +strands +strange +strappy +straths +stratum +stratus +Strauss +strawed +strawen +strayed +strayer +streaks +streaky +streams +streamy +streeks +streets +streety +strenes +stretch +stretta +strette +stretti +stretto +strewed +strewer +striate +strides +stridor +strifes +strifts +strigae +Striges +strigil +striker +strikes +strings +stringy +striped +striper +stripes +stripey +strived +striven +striver +strives +stroams +strobes +strobic +stroked +stroker +strokes +strolls +strombs +strooke +strophe +stroppy +strouds +stroups +strouts +strowed +strudel +strumae +strunts +stubbed +stubble +stubbly +stuccos +studded +studdle +student +studied +studier +studies +studios +stuffed +stuffer +stumble +stumbly +stumers +stummed +stummel +stumped +stumper +stunned +stunner +stuns'l +stunted +stupefy +stupent +stupids +stuping +stupors +Sturmer +Sturnus +sturted +stushie +stutter +Stygian +stylate +stylets +styling +stylise +stylish +stylist +stylite +stylize +styloid +stymied +stymies +stypses +stypsis +styptic +styrene +suasion +suasive +suasory +suavely +suavest +suavity +subacid +subacts +subadar +subaqua +subarea +subarid +subatom +subbase +subbies +subbing +subbred +subcool +subdean +subdual +subduce +subduct +subdued +subduer +subdues +subedar +subedit +suberic +suberin +subfeus +subfusc +subfusk +subgoal +subgums +subject +subjoin +sublate +sublets +sublime +submiss +submits +suborns +subplot +subsere +subsets +subside +subsidy +subsist +subsoil +subsong +subsume +subtack +subteen +subtend +subtext +subtile +subtler +subtype +subunit +suburbs +subvert +subways +subzero +subzone +succade +succahs +succeed +success +succise +succors +succory +succose +Succoth +succour +succous +succuba +succubi +succumb +succuss +suckens +suckers +sucking +suckled +suckler +suckles +sucrase +sucrier +sucrose +suction +sudamen +sudanic +sudated +sudates +sudders +sudoral +sudsers +sudsier +sueable +sueding +suffect +suffers +suffete +suffice +Suffolk +suffuse +Sufiism +sugared +suggest +sugging +suicide +suidian +suiting +suitors +sukkahs +Sukkoth +sulcate +sulfate +sulfide +sulfone +sulkier +sulkies +sulkily +sulking +sullage +sullied +sullies +sulphur +sultana +sultans +sumachs +sumatra +sumless +summand +summary +summate +summers +summery +summing +summist +summits +summons +sumpits +sumpter +sunbake +sunbeds +sunbelt +sunbows +sunburn +sundaes +sundari +Sundays +sunders +sundial +sundown +sundras +sundris +sunfast +sunfish +sungars +sunglow +sungods +sunhats +sunkets +sunless +sunlike +sunnier +sunnily +sunning +Sunnism +Sunnite +sunrays +sunrise +sunroom +sunsets +sunspot +sunstar +sunsuit +suntans +suntrap +sunward +sunwise +Suomish +supawns +supered +suppawn +suppers +supping +suppled +suppler +supples +support +suppose +supreme +supremo +suramin +surance +surbase +surbate +surcoat +surdity +surface +surfeit +surfers +surfier +surfies +surfing +surfman +surfmen +surgent +surgeon +surgery +surging +Surinam +surlier +surlily +surloin +surmise +surname +surpass +surplus +surreal +surreys +surtout +surveys +surview +survive +Susanna +susliks +suspect +suspend +suspire +sussing +sustain +sutlers +sutlery +suttees +suttled +suttles +sutural +sutured +sutures +svelter +Sverige +swabbed +swabber +swaddle +swagged +swagger +swaggie +swaging +swagman +swagmen +Swahili +swaling +swallet +swallow +swamped +swamper +swanked +swanker +swanned +Swansea +Swanson +swapped +swapper +swarded +swarfed +swarmed +swarmer +swarthy +swarved +swarves +swashed +swasher +swashes +swathed +swathes +swatted +swatter +swayers +swaying +swazzle +swealed +swearer +sweated +sweater +Swedish +sweeney +sweeper +sweered +sweeten +sweeter +sweetie +sweetly +swelled +sweller +swelted +swelter +sweltry +swerved +swerver +swerves +swidden +swifted +swifter +swiftie +swiftly +swigged +swigger +swilled +swiller +swimmer +swindle +Swindon +swinery +swinged +swinger +swinges +swingle +swinish +swinked +swipers +swiping +swipple +swirled +swished +swisher +swishes +Swisses +switchy +swither +Swithin +Switzer +swivels +swivets +swiving +swizzes +swizzle +swobbed +swobber +swollen +swooned +swooped +swopped +swopper +sworded +sworder +swotted +swotter +swounds +swouned +swozzle +sybotic +Sycorax +sycosis +syenite +syllabi +sylphic +sylphid +Sylvian +sylvias +sylvine +sylvite +symbion +symbols +symptom +synapse +synapte +synaxes +synaxis +syncarp +synched +synchro +syncing +syncope +syndets +syndics +synding +synergy +synesis +synfuel +syngamy +synodal +synodic +synonym +synovia +syntagm +syntans +synthon +syntony +syphers +syphons +Syrians +Syriasm +syringa +syringe +syrphid +Syrphus +syruped +systems +systole +systyle diff --git a/com/agnibho/code/anagram/dictionary/S8.txt b/com/agnibho/code/anagram/dictionary/S8.txt new file mode 100644 index 0000000..60955c4 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S8.txt @@ -0,0 +1,3862 @@ +Sabahans +Sabatini +sabatons +Sabbaths +sabbatic +sabellas +sabkhahs +sabkhats +sabotage +saboteur +sabotier +sabuline +sabulose +sabulous +saburral +saburras +sacatons +saccades +saccadic +saccoses +saccular +saccules +sacculus +sacellum +sachemic +sackages +sackbuts +sackfuls +sackings +sackless +sacraria +sacredly +sacrings +sacrists +sacristy +saddened +saddlers +saddlery +saddling +Sadducee +sadistic +saeculum +safaried +safarist +safeness +safeties +saffians +saffrons +saffrony +safranin +safroles +safronal +sagacity +sagamore +sageness +sagenite +saggards +saggings +saginate +sagittal +sagittas +sagouins +saguaros +Sahelian +sahibahs +saibling +sailable +sailings +sailless +sailorly +saimiris +sainfoin +saintdom +saintess +sainting +saintish +saintism +sakerets +Sakharov +sakiyehs +sakkoses +saksauls +salaamed +salacity +salading +Salammb� +salariat +salaried +salaries +salbands +salchows +saleable +saleably +salering +Salesian +salesman +salesmen +salework +saleyard +salferns +saliceta +salicets +salicine +salience +saliency +salients +salified +salifies +saligots +Salinger +salinity +Salishan +salivary +salivate +sallowed +sallower +sallying +salmonet +salmonid +Salopian +salpians +salpicon +saltando +saltants +saltated +saltates +salterns +saltiers +saltiest +saltings +saltires +saltless +saltness +saltoing +saltuses +salutary +saluters +saluting +salvable +Salvador +salvaged +salvages +salvific +salvings +Salvinia +Salzburg +Samantha +samarium +Samaveda +sambucas +sameness +samisens +samizdat +samovars +Samoyede +Samoyeds +samphire +sampires +samplers +samplery +sampling +samshoos +sanative +sanatory +Sancerre +sanctify +sanction +sanctity +sanctums +sandarac +sandbags +sandiest +sandings +sandiver +sandling +sandsoap +sandwich +sandwort +sandyish +saneness +sangaree +sanglier +sangomas +Sangraal +Sangrado +Sangrail +Sangreal +sangrias +sanguify +sanguine +sanicles +sanidine +sanified +sanifies +sanitary +sanitate +sanitise +sanitize +sannyasi +sanserif +Sanskrit +santalin +Santalum +Santiago +santonin +santours +saouaris +sapajous +sapheads +saphenae +sapidity +sapience +Sapindus +saplings +saponify +saponite +saporous +Sapphics +sapphire +sapphism +sapphist +sappiest +saprobes +sapropel +sapsagos +sapucaia +saraband +Saracens +sarafans +Sarajevo +sarangis +Saratoga +sarcasms +sarcenet +sarcodes +sarcodic +sarcomas +sardelle +sardines +Sardinia +sardonic +sardonyx +sargasso +sarguses +sarkfuls +sarkiest +sarkings +Sarmatia +Sarmatic +sarmenta +sarments +sarpanch +sarrasin +sarrazin +sarsdens +sarsenet +sarsnets +Sartrian +sasarara +sashayed +sashimis +Sassanid +sassiest +sassolin +sastruga +sastrugi +satanism +satanist +satanity +satchels +sateless +satelles +satiable +satiated +satiates +satinets +satining +satirise +satirist +satirize +satrapal +satrapic +satsumas +saturant +saturate +Saturday +Saturnia +saturnic +satyrals +satyress +satyrids +satyrisk +saucepan +sauciest +saucisse +saunters +saurians +sauropod +Saururae +sausages +Saussure +saut�ing +Sauterne +sautoirs +savagely +savagery +savaging +savagism +savannah +savannas +savarins +saveloys +saveying +savingly +saviours +savories +savorous +savoured +Savoyard +savveyed +savvying +sawdered +sawdusts +sawdusty +saxatile +saxhorns +Saxicava +Saxicola +Saxondom +Saxonian +saxonies +Saxonise +Saxonism +Saxonist +saxonite +Saxonize +sayonara +scabbard +scabbier +scabbing +scabbled +scabbles +Scabiosa +scabious +scabrous +scaffies +scaffold +scailing +scalable +scalades +scalados +Scalaria +scalawag +scalders +scalding +scaldini +scaldino +scalenus +scaliest +scalings +scallion +scallops +scalpels +scalpers +scalping +scalpins +scalprum +scambled +scambler +scambles +scamming +scammony +scampers +scamping +scampish +scandals +scandent +Scandian +scandium +scanners +scanning +scansion +scantier +scanties +scantily +scanting +scantity +scantled +scantles +scapaing +scaphoid +scappled +scapples +scapulae +scapular +scapulas +scarabee +scarcely +scarcest +scarcity +Scarface +scarfing +scarfish +Scargill +Scaridae +scariest +scarious +scarless +scarlets +Scarlett +scarpaed +scarpers +scarphed +scarping +scarrier +scarring +scarting +scatches +scathing +scatters +scattery +scattier +scatting +scauding +scaupers +scauring +scavager +scavages +scavenge +scawtite +sceattas +scelerat +scenario +scending +scenical +scentful +scenting +scepters +sceptics +sceptral +sceptred +sceptres +schantze +schapped +schappes +schapska +schedule +schemata +schemers +scheming +scherzos +schiedam +schiller +schimmel +schismas +Schizaea +schizoid +schizont +schl�ger +Schlegel +schlepps +schleppy +schlocky +schmaltz +schmalzy +schmecks +schmocks +schmoose +schmooze +schmucks +Schnabel +schnapps +schnecke +schnooks +schnorrs +scholars +scholion +scholium +schooled +schoolie +schooner +schticks +Schubert +Schumann +schussed +schusses +Schwerin +sciaenid +sciarids +sciatica +scienced +sciences +scienter +scilicet +Scillies +scimitar +scincoid +sciolism +sciolist +sciolous +scirocco +scirrhus +scissile +scission +scissors +scissure +sciurine +sciuroid +sclaffed +sclereid +sclerema +sclerite +scleroid +scleroma +sclerose +sclerous +sclimmed +scoffers +scoffing +scofflaw +Scofield +scogging +scoinson +scolders +scolding +scoleces +scolecid +scolices +scolioma +scollops +Scolopax +scolytid +Scolytus +scombrid +scontion +scoopers +scoopful +scooping +scooters +scooting +scopelid +Scopelus +scopulas +scorched +scorcher +scorches +scordato +scorings +scorious +scorners +scornful +scorning +scorpers +scorpion +scorpios +Scorpius +Scorsese +scotched +scotches +Scotland +scotomas +scotomia +scotopia +scotopic +Scotsman +Scotsmen +Scottice +Scotties +Scottify +Scottish +scouping +scourers +scourged +scourger +scourges +scouring +scousers +scouters +scouther +scouting +scowders +scowling +scrabbed +scrabble +scragged +scraggly +scraichs +scraighs +scramble +scramjet +scrammed +scrannel +scrapers +scraping +scrapped +scrapple +scratchy +scratted +scrattle +scrauchs +scrawled +scrawler +scrawmed +screaked +screamed +screamer +screechy +screeder +screened +screener +screeved +screever +screeves +screichs +screighs +screwers +screwier +screwing +Scriabin +scribble +scribbly +scribers +scribing +scribism +scrieved +scrieves +scriggle +scriggly +scrimped +scrimply +scripted +scriving +scrofula +scrolled +scrooged +scrooges +scrooped +scrotums +scrouged +scrouger +scrouges +scrounge +scrowles +scrubbed +scrubber +scrummed +scrumped +scrumple +scrumpox +scrunchy +scrupled +scrupler +scruples +scrutiny +scruzing +scryings +scudders +scudding +scuddled +scuddles +scudlers +scuffing +scuffled +scuffler +scuffles +scugging +sculking +scullers +scullery +sculling +scullion +sculping +sculpins +sculpsit +sculpted +sculptor +scumbers +scumbled +scumbles +scumfish +scummers +scummier +scumming +scungier +scunners +scuppaug +scuppers +scurfier +scurried +scurrier +scurries +scurrile +scurring +scurvily +scutages +scutched +scutcher +scutches +scutella +scutiger +scutters +scuttled +scuttler +scuttles +scuzzier +scybalum +scytales +scythers +Scythian +scything +seaberry +seaboard +seaborne +seacraft +seacunny +seadrome +seafarer +seafront +seagulls +sealants +sealings +sealskin +sealyham +seamanly +seamarks +seamiest +seamless +seamsets +seamster +seaplane +seaports +seaquake +searched +searcher +searches +searcing +searings +searness +seascape +seasides +seasonal +seasoned +seasoner +Seaspeak +seatings +seatless +seawards +seaweeds +sebesten +secantly +seceders +seceding +secerned +secesher +secluded +secludes +secodont +seconded +secondee +seconder +secondly +secreted +secretes +secretin +secretly +sectator +sections +sectoral +sectored +seculars +secundum +securely +securers +securest +securing +security +sedately +sedatest +sedating +sedation +sedative +sederunt +sedgiest +sediment +sedition +seducers +seducing +sedulity +sedulous +seecatch +seedbeds +seedcake +seedcase +seediest +seedings +seedless +seedling +seedlips +seedness +seedsman +seedsmen +seemings +seemless +seemlier +seepages +seepiest +seesawed +seethers +seething +segments +segolate +segreant +segueing +seicento +Seidlitz +seigneur +seignior +seignory +seinings +seismism +seizable +seizings +seizures +seladang +selcouth +seldseen +selected +selectee +selector +selenate +selenian +selenide +selenite +selenium +selenous +Seleucid +selfhood +selfists +selfless +selfness +selfsame +selictar +sellable +seltzers +selvaged +selvagee +selvages +selvedge +Selznick +semantic +semantra +Semarang +semblant +semester +semiarid +semibold +semibull +semicoma +S�millon +semilogs +semilune +seminars +seminary +seminate +Seminole +semiotic +semipeds +Semitaur +Semitics +Semitise +Semitism +Semitist +Semitize +semitone +semolina +semplice +sempster +semuncia +senaries +senarius +senators +sendings +senecios +sengreen +Senhoras +Senhores +senilely +senility +sennight +Senonian +Se�orita +senseful +sensible +sensibly +sensilla +sensings +sensists +sensoria +sensuism +sensuist +sensuous +sentence +sentient +sentinel +sentries +Senussis +sepadded +sepaline +sepalody +sepaloid +sepalous +separate +Sephardi +sepiment +sepiosts +seppukus +septaria +septette +septimal +septimes +septleva +septuors +septuple +sequelae +sequence +sequents +sequined +sequoias +serafile +serafins +seraglio +Serapeum +seraphic +seraphim +seraphin +Serbians +serenade +serenata +serenate +Serendip +serenely +serenest +serening +serenity +Serevent +serfhood +serflike +serfship +sergeant +serially +seriatim +sericite +seriemas +seringas +serjeant +serkalis +sermoned +sermoner +sermonet +sermonic +serology +serosity +serotine +serotype +serpents +serpulae +serpulas +serranid +Serranus +serrated +serrates +serratus +serrying +servants +serviced +services +servient +serviles +servings +servitor +sesamoid +sessions +sesspool +sesterce +sestette +sestetto +sestetts +sestinas +sestines +setbacks +setiform +Setswana +settings +settlers +settling +settlors +setulose +setulous +setwalls +sevenths +severals +severely +severest +severies +severing +severity +sewellel +sewerage +sewering +sexfoils +sexiness +sexology +sexperts +sextants +sextette +sextetts +sextiles +sextolet +sextuors +sextuple +sexually +sforzati +sforzato +sfumatos +shabbier +shabbily +shabbles +shabrack +Shabuoth +shacking +shackled +shackles +shackoes +shadblow +shadbush +shaddock +shadiest +shadings +shadoofs +shadowed +shadower +Shadrach +Shadwell +Shafiite +shafters +shafting +shaggier +shaggily +shagging +shagpile +shagreen +shagroon +shaitans +Shaivism +shakable +shakiest +shakings +Shakirah +Shaktism +shaliest +shallons +shalloon +shallops +shallots +shallows +shamable +shamanic +shambled +shambles +shameful +shamiana +shamisen +shammash +shammers +shammies +shamming +shamoyed +shampoos +shamrock +shamuses +Shandean +shandies +shanghai +shanking +shannies +shanteys +shanties +shantung +shapable +shapings +shareman +sharemen +sharings +sharkers +sharking +sharpens +sharpers +sharpest +sharpies +sharping +sharpish +shashlik +shasters +shastras +shatters +shattery +shauchle +shauchly +Shavians +shavings +Shavuoth +shawleys +shawlies +shawling +Shawnees +sheading +sheafing +shealing +shearers +shearing +shearman +shearmen +sheathed +sheathes +shebangs +shebeens +shechita +shedders +shedding +shedhand +sheeling +sheenier +sheening +sheepdog +sheepish +sheerest +sheering +sheerleg +sheeting +shehitah +sheikdom +sheikhas +Shekinah +shelduck +shelfing +shellacs +shellers +shellful +shellier +shelling +shelters +sheltery +shelties +shelvier +shelving +shending +Shenyang +shepherd +Sheppard +Sheraton +sherbets +shereefs +Sheridan +sheriffs +sherlock +sherries +sherwani +Sherwood +shetland +sheuched +sheughed +shicksas +shielded +shielder +shieling +shifters +shiftier +shiftily +shifting +shigella +shiitake +shikaree +shikaris +shilling +shimmers +shimmery +shimmeys +shimmied +shimmies +shinbone +shindies +shindigs +shingled +shingler +shingles +shiniest +shinnies +shinning +shinties +shipfuls +shiplaps +shipless +shipload +shipmate +shipment +shippens +shippers +shipping +shippons +shipways +shipyard +shiralee +shireman +shiremen +shirkers +shirking +shirring +shirtier +shirting +shittahs +shittims +Shivaism +Shivaite +shivaree +shivered +shiverer +shivving +shlemiel +shlepped +shlepper +shmaltzy +shmoosed +shmooses +shmoozed +shmoozes +shoalier +shoaling +shockers +shocking +Shockley +shoddier +shoddies +shoddily +shoehorn +shoeings +shoelace +shoeless +shoetree +shofroth +shogging +shoggled +shoggles +shogunal +Sholapur +shonkier +shoogled +shoogles +shooling +shooters +shooting +shootist +shopfuls +shophars +shoplift +shoppers +shopping +shoptalk +shopworn +shoreman +shoremen +shorings +shortage +shortarm +shortcut +shortens +shortest +shorties +shorting +shortish +Shoshone +Shoshoni +shotguns +shotting +shoulder +shouldst +shouters +shouting +shoveler +showboat +showcase +showered +showghes +showgirl +showiest +showings +showroom +shraddha +shrapnel +shredded +shredder +shrewder +shrewdie +shrewdly +shrewish +shrieked +shrieker +shrieval +shrieved +shrieves +shrilled +shriller +shrimped +shrimper +shrining +shrinker +shrivels +shrivers +shriving +shroffed +shrouded +shrubbed +shrugged +shrunken +shuckers +shucking +shuckses +shudders +shuddery +shuffled +shuffler +shuffles +shufties +shunless +shunners +shunning +shunters +shunting +shushing +shutters +shutting +shuttled +shuttles +Shylocks +shysters +siamangs +siamesed +siameses +siamezed +siamezes +Sibelius +Siberian +sibilant +sibilate +sibilous +siblings +sibships +sibyllic +Sicanian +Siceliot +Sicilian +sickened +sickener +sickerly +sicklied +sicklier +sicklily +sickness +Siculian +sidalcea +siddurim +sidearms +sideburn +sidecars +sideling +sidelock +sidelong +sidepath +siderate +sidereal +siderite +sidesman +sidesmen +sidewalk +sidewall +sideward +sideways +sidewise +Sidmouth +Sidonian +Siegmund +Siennese +sieverts +siffleur +siffling +siftings +sighters +sighting +sightsaw +sightsee +sigisbei +sigisbeo +sigmated +sigmates +sigmatic +signaled +signaler +signally +signeted +signless +signoras +signoria +signpost +Sikorski +sikorsky +silaging +Silastic +silenced +silencer +silences +silently +silicane +silicate +silicide +silicify +silicium +silicles +silicone +silicula +silicule +siliquas +siliques +silkened +silkiest +silktail +silkweed +silkworm +sillabub +silladar +silliest +Sillitoe +sillocks +silphium +siltiest +Silurian +silurist +siluroid +silvered +silverly +simarres +simaruba +simazine +similise +similize +simitars +simmered +simoniac +simonies +simonist +simpered +simperer +simpkins +simplers +simplest +simplify +simpling +simplism +simplist +simulant +simulars +simulate +simulium +simurghs +Sinaitic +sinapism +sincerer +sinciput +Sinclair +sindings +sinecure +sinewing +sinfonia +sinfully +singable +singeing +singings +singlets +singling +singsong +singular +singults +sinicise +Sinicism +sinicize +sinister +sinkable +sinkages +sinkings +Sinology +sinopias +sinopite +sintered +sinuated +sinuitis +sinusoid +siphonal +siphoned +siphonet +siphonic +sippling +Siracusa +sirenian +sirenise +sirenize +sirgangs +siriasis +sirloins +sirnamed +sirnames +siroccos +siruping +sirvente +siserary +sissiest +sistered +sisterly +Sisyphus +sitarist +sitdowns +sitfasts +sithence +sitology +sittings +situated +situates +sixaines +sixpence +sixpenny +sixscore +sixteens +sixtieth +sizeable +sizeists +Sizewell +siziness +sizzlers +sizzling +sjamboks +skailing +skanking +skatings +skeggers +Skegness +skelders +skeletal +skeleton +skellied +skellies +skelloch +skellums +skelping +skelters +skepfuls +skepping +skeptics +skerrick +skerries +skerring +sketched +sketcher +sketches +skewbald +skewered +skewness +skiagram +skiatron +skidders +skidding +skidlids +skidpans +skiffing +skilless +skillets +skillful +skilling +skillion +skimmers +skimmias +skimming +skimpier +skimpily +skimping +skincare +skinfuls +skinhead +skinkers +skinking +skinless +skinners +skinnier +skinning +skipjack +skiplane +skippers +skippets +skipping +skirling +skirmish +skirrets +skirring +skirters +skirting +skitters +skittish +skittled +skittles +skivered +skivings +skivvies +sklating +sklented +skokiaan +skreighs +Skryabin +skugging +skulkers +skulking +skulpins +skurried +skurries +skuttled +skuttles +skydived +skydiver +skydives +skyhooks +skyjacks +skylarks +skylight +skylines +skysails +skyscape +skywards +slabbers +slabbery +slabbing +slackens +slackers +slackest +slacking +sladangs +slaggier +slagging +slaister +slalomed +slammers +slamming +slanders +slangers +slangier +slangily +slanging +slangish +slanting +slapjack +slappers +slapping +slapshot +slashers +slashing +slatiest +slatings +slattern +slatters +slattery +slatting +slavered +slaverer +Slavonia +Slavonic +sleaving +sleazier +sleazily +sledding +sledgers +sledging +sleeches +sleekens +sleekers +sleekest +sleekier +sleeking +sleepers +sleepier +sleepily +sleeping +sleetier +sleeting +sleeveen +sleevers +sleeving +sleighed +sleigher +sleights +Sleipnir +slenters +sleuthed +slicings +slickens +slickers +slickest +slicking +slidders +sliddery +slidings +slighted +slighter +slightly +slimiest +slimline +slimmers +slimmest +slimming +slimmish +slimness +slingers +slinging +slinkers +slinkier +slinking +slinters +slipform +slipover +slippage +slippers +slippery +slippier +slipping +sliprail +slipshod +slipslop +slipware +slipways +slithers +slithery +slitters +slitting +slivered +slivovic +slobbers +slobbery +slobbish +slobland +slockens +sloebush +sloetree +sloggers +slogging +slooming +slooshed +slooshes +sloppier +sloppily +slopping +slopwork +sloshier +sloshing +slothful +slothing +slotters +slotting +slouched +sloucher +slouches +sloughed +Slovakia +Slovenia +slovenly +slowback +slowings +slowness +slowpoke +slowworm +slubbers +slubbing +sludgier +slugfest +sluggard +sluggers +slugging +sluggish +slughorn +sluicing +slumbers +slumbery +slumlord +slummers +slummier +slumming +slummock +slumping +slurpers +slurping +slurries +slurring +slushier +slushing +sluttery +sluttish +slyboots +smackers +smacking +smallage +smallest +smalling +smallish +smallpox +smallsat +smalmier +smalmily +smalming +smaltite +smaragds +smarmier +smarmily +smarming +smartass +smartens +smartest +smarties +smarting +smartish +smashers +smashing +smatched +smatches +smatters +smearier +smearily +smearing +smectite +smeddums +smeeched +smeeches +smeeking +smellers +smellier +smelling +smelters +smeltery +smelting +smickets +smidgens +smidgeon +smidgins +smilaxes +smileful +smilings +smilodon +smirched +smirches +smirkier +smirking +smirring +smithers +smithery +smithies +smithing +Smithson +smitting +smocking +smoggier +smokable +smokehos +smokiest +smokings +Smolensk +Smollett +smooched +smooches +smoodged +smoodges +smooging +smooring +smoothed +smoothen +smoother +smoothes +smoothie +smoothly +smooting +sm�rbr�d +smorzato +smothers +smothery +smouched +smouches +smoulder +smouting +smudgers +smudgier +smudgily +smudging +smuggest +smugging +smuggled +smuggler +smuggles +smugness +smurring +smutched +smutches +smuttier +smuttily +smutting +smytries +snabbled +snabbles +snacking +snaffled +snaffles +snaggier +snagging +snailery +snailing +snakiest +snappers +snappier +snappily +snapping +snappish +snapshot +snarings +snarlers +snarlier +snarling +snashing +snatched +snatcher +snatches +snazzier +sneakers +sneakier +sneakily +sneaking +sneakish +sneaksby +sneaping +snebbing +snecking +snedding +sneerers +sneering +sneeshes +sneezers +sneezier +sneezing +snellest +snelling +snibbing +snickers +snickets +snicking +sniffers +sniffier +sniffily +sniffing +sniffled +sniffler +sniffles +snifters +snifties +snifting +sniggers +snigging +sniggled +sniggler +sniggles +snipings +snippers +snippets +snippety +snippier +snipping +snirtled +snirtles +snitched +snitcher +snitches +snivelly +snobbery +snobbier +snobbish +snobbism +snobling +snodding +snogging +snooding +snookers +snooking +snookses +snooling +snoopers +snooping +snootful +snootier +snootily +snooting +snoozers +snoozing +snoozled +snoozles +snorings +snorkels +snorters +snortier +snorting +snotters +snottery +snottier +snotties +snottily +snotting +snoutier +snouting +snowball +snowbush +snowcaps +snowdrop +snowfall +snowiest +snowking +snowless +snowlike +snowline +snowslip +snubbers +snubbier +snubbing +snubbish +snubnose +snudging +snuffbox +snuffers +snuffier +snuffing +snuffled +snuffler +snuffles +snuggery +snuggest +snugging +snuggled +snuggles +snugness +snuzzled +snuzzles +soakaway +soakings +soapiest +soapland +soapless +soapwort +soaraway +soarings +sobbings +soberest +sobering +soberise +soberize +Sobranje +sobriety +socagers +sociable +sociably +socially +sociates +societal +Socinian +socketed +sockette +sockeyes +Socrates +Socratic +sodalite +sodality +sodamide +soddened +soddenly +sodgered +sodomise +Sodomite +sodomize +soffioni +softback +softball +softened +softener +softhead +softling +softness +software +softwood +sogering +soggiest +soggings +soilings +soilless +sojourns +solacing +solander +solanine +solanums +solarise +solarism +solarist +solarium +solarize +solation +solatium +soldados +soldered +solderer +soldiers +soldiery +solecise +solecism +solecist +solecize +solemner +solemnly +soleness +solenoid +soleuses +solf�ges +solfeggi +solicits +solidago +solidary +solidate +solidest +solidify +solidish +solidism +solidist +solidity +solidums +Solihull +Solingen +solipeds +solitary +solitons +solitude +solleret +soloists +solonets +solonetz +Solonian +solpugid +solstice +solution +solutive +solvable +solvated +solvates +solvency +solvents +Somalian +somatism +somatist +sombered +somberly +sombrely +sombrero +sombring +sombrous +somebody +somedeal +somegate +somerset +sometime +someways +somewhat +somewhen +somewise +somniate +somnific +sonances +sonatina +sondages +sondelis +Sondheim +songbird +songbook +songfest +songless +songster +sonneted +sonobuoy +sonogram +sonorant +sonority +sonorous +sonsiest +soojeyed +soothers +soothest +soothful +soothing +soothsay +sootiest +sootless +sopheric +sopherim +sophical +sophisms +sophists +sopiting +soporose +soporous +soppiest +soppings +sopranos +sorbaria +sorbates +sorbents +sorbitic +sorbitol +Sorbonne +sorbuses +sorcerer +Sordello +sordidly +sordines +soredial +soredium +sorehead +sorehons +soreness +soricine +soricoid +sornings +sorobans +sororate +sororial +sororise +sorority +sororize +sorption +Sorrento +sorriest +sorrowed +sorrower +sorryish +sortable +sortings +sortment +sossings +Sotadean +soterial +sottings +soubises +souchong +souffl�s +soughing +soulless +soumings +sounders +soundest +sounding +soundman +soundmen +soup�ons +soupiest +soupling +sourcing +sourdine +sourings +sourness +sourocks +sourpuss +sousings +sousliks +soutache +soutanes +southern +southers +southing +southpaw +southron +southsay +souvenir +souvlaki +sovietic +sovranly +sovranty +sowarree +sowffing +sozzling +spacelab +spaceman +spacemen +spaciest +spacings +spacious +spadeful +spademan +spademen +spadgers +spadices +spadille +spadones +spadroon +spaewife +spageric +spagiric +spagyric +spaining +spairged +spairges +Spalding +spalling +spalpeen +spalting +spammers +spamming +spancels +spandrel +spandril +spanghew +spanging +spangled +spangler +spangles +spanglet +Spaniard +spaniels +spankers +spanking +spanless +spanners +spanning +spansule +sparable +sparaxis +spargers +sparging +Sparidae +sparkies +sparking +sparkish +sparkled +sparkler +sparkles +sparklet +sparling +sparoids +sparrers +sparrier +sparring +sparrows +sparsely +sparsest +sparsity +Spartans +spastics +spatfall +spathose +Sp�tlese +spattees +spatters +spatting +spatular +spatulas +spatules +spavined +spawling +spawners +spawning +spazzing +speakers +speaking +speaning +spearing +spearman +spearmen +speccies +specials +speciate +specific +specimen +specious +specking +speckled +speckles +spectate +specters +spectral +spectres +spectrum +specular +speculum +speeched +speeches +speeders +speedful +speedier +speedily +speeding +speedway +speeling +speering +speiring +speisses +spekboom +spelaean +spelders +spelding +speldins +speldrin +spellers +spellful +spelling +spencers +spendall +spenders +spending +Spengler +Spergula +sperling +spermary +spermous +spersing +spetches +Spetsnaz +Spetznaz +Sphagnum +sphenoid +spherics +spherier +sphering +spheroid +spherule +sphinges +sphingid +sphinxes +sphygmic +sphygmus +spicated +spiccato +spiciest +spicknel +spicular +spiculas +spicules +spiculum +spielers +spieling +spiffier +spiffing +Spigelia +spignels +spikelet +spikiest +spilikin +spilings +spilitic +spillage +Spillane +spillers +spilling +spillway +spinages +spinally +spindled +spindles +spinette +spiniest +spinifex +spinners +spinnery +spinnets +spinneys +spinnies +spinning +spinodes +spinouts +spinster +spintext +spinules +spiracle +spiraeas +spirally +spirants +spirated +spiremes +Spirifer +spirilla +spirited +spiritus +spirling +spirting +spirtles +spitcher +spiteful +spitfire +Spithead +spitters +spitting +spittles +spittoon +spivvery +splashed +splasher +splashes +splatted +splatter +splaying +splendid +splendor +splenial +splenium +splenius +splented +splicers +splicing +splining +splinted +splinter +splitter +splodged +splodges +sploshed +sploshes +splotchy +splurged +splurges +splutter +spoffish +spoilage +spoilers +spoilful +spoiling +spoliate +spondaic +spondees +spondyls +spongers +spongier +spongily +sponging +spongoid +sponsing +sponsion +sponsons +sponsors +spontoon +spoofers +spoofery +spoofing +spookery +spookier +spookily +spooking +spookish +spoolers +spooling +spooming +spooneys +spoonful +spoonier +spoonies +spoonily +spooning +spoorers +spooring +Sporades +sporadic +sporidia +Sporozoa +sporrans +sporters +sportful +sportier +sportily +sporting +sportive +sporular +sporules +spotless +spotters +spottier +spottily +spotting +spousage +spousals +spouters +spouting +sprackle +spragged +sprained +spraints +sprangle +sprattle +sprauncy +sprawled +sprawler +sprayers +spraying +spreader +spreaghs +spreathe +spreeing +sprigged +sprights +springal +springed +springer +springes +springle +sprinkle +sprinted +sprinter +spritely +spritzed +spritzer +spritzes +spritzig +sprocket +sprouted +sprucely +sprucest +sprucing +spruiked +spruiker +spryness +spudding +spuilzie +spulyied +spulyies +spumante +spumiest +spunkier +spunkies +spunking +spurious +spurless +spurling +spurners +spurning +spurrers +spurreys +spurrier +spurries +spurring +spurting +spurtles +sputniks +sputters +sputtery +spyglass +spyplane +squabash +squabbed +squabble +squaccos +squaddie +squadron +squailed +squailer +squalene +squalled +squaller +squaloid +Squamata +squamate +squamose +squamous +squamula +squamule +squander +squarely +squarers +squarest +squarial +squaring +squarish +squarson +squashed +squasher +squashes +squatted +squatter +squattle +squawked +squawker +squawman +squawmen +squeaked +squeaker +squealed +squealer +squeegee +squeezed +squeezer +squeezes +squegged +squegger +squelchy +squibbed +squidded +squidged +squidges +squiffer +squiggle +squiggly +squilgee +squinted +squinter +squirage +squireen +squirely +squiress +squiring +squirmed +squirred +squirrel +squirted +squirter +squished +squishes +squizzes +sraddhas +Srinagar +stabbers +stabbing +stabiles +stablers +stablest +stabling +stablish +staccato +stacking +staddles +stadiums +staffage +staffers +staffing +Stafford +staggard +staggers +stagging +staghorn +stagiest +stagings +stagnant +stagnate +Stahlian +Stahlism +staidest +stainers +staining +stairway +staithes +stalagma +stalkers +stalkier +stalking +stalkoes +stallage +stalling +stallion +stallman +stallmen +Stallone +stalwart +Stamboul +stamened +Stamford +staminal +stammels +stammers +stampede +stampers +stamping +stanched +stanchel +stancher +stanches +standard +standees +standers +standing +standish +Stanford +stanging +stanhope +staniels +stannary +stannate +stannels +stannite +stannous +stanzaic +stapedes +stapelia +stapeses +staphyle +staplers +stapling +stapping +starched +starcher +starches +starfish +starings +starkens +starkers +starkest +starking +starless +starlets +starlike +starling +starnies +starning +starosta +starosty +starrier +starrily +starring +starship +starspot +starters +startful +starting +startish +startled +startler +startles +starving +starwort +stashing +stasimon +statable +statedly +statical +stations +statists +statuary +statured +statures +statuses +statutes +stayaway +stayings +stayless +staysail +steadied +steadier +steadies +steadily +steading +stealers +stealing +stealthy +steamers +steamier +steamies +steamily +steaming +steaning +steapsin +stearage +stearate +stearine +stearing +steatite +steatoma +stedfast +steeking +steelbow +steelier +steeling +steelman +steelmen +steenbok +steening +steepens +steepers +steepest +steeping +steepish +steepled +steeples +steerage +steerers +steering +steevely +steeving +stegodon +steining +Steinway +stellate +stellify +stelling +stellion +stemboks +stembuck +stemless +stemmata +stemmers +stemming +stempels +stemples +stemsons +stemware +stenched +stenches +stencils +Stendhal +stending +stengahs +Stenmark +stenning +stenosed +stenoses +stenosis +stenotic +stenting +stentors +stepdame +stephane +Stephano +stepneys +steppers +stepping +stepsons +stepwise +stereome +sterigma +sterlets +sterling +sternage +sternest +sterning +sternite +sternson +sternums +sternway +steroids +Stetsons +stetting +stewards +stewings +stewpans +stewpond +stewpots +stibbler +stibnite +sticcado +sticcato +stickers +stickful +stickied +stickier +stickies +stickily +sticking +stickjaw +stickled +stickler +stickles +stickups +stiction +stiffens +stiffest +stiffish +stiflers +stifling +stigmata +stilbene +stilbite +stiletto +stillage +stillers +stillest +stillier +stilling +stillion +stilters +stilting +stiltish +Stiltons +stimulus +stimying +stingers +stingier +stingily +stinging +stinkard +stinkers +stinking +stinters +stinting +stipends +stipites +stippled +stippler +stipples +stipular +stipuled +stipules +stirless +Stirling +stirrers +stirring +stirrups +stitched +stitcher +stitches +stithied +stithies +stoccado +stoccata +stockade +stockcar +stockers +stockier +stockily +stocking +stockish +stockist +stockman +stockmen +Stockton +stodgers +stodgier +stodgily +stodging +stoicism +stoiters +stoiting +stolider +stolidly +STOLport +stomachs +stomachy +stomatal +stomatic +stompers +stomping +stonerag +stoneraw +stoniest +stonkers +stonking +stooging +stookers +stooking +stoolies +stooling +stoopers +stooping +stooshie +stopbank +stopings +stopless +stoppage +Stoppard +stoppers +stopping +stoppled +stopples +storable +storages +storaxes +storeman +storemen +storeyed +stormful +stormier +stormily +storming +Stormont +Storting +storying +stotinka +stotinki +stotious +stotters +stotting +stounded +stoushed +stoushes +stoutens +stoutest +stoutish +stovaine +stovings +stowages +stowaway +stowdown +stowings +stowlins +strabism +Strachey +straddle +stradiot +straffed +strafing +straggle +straggly +straight +straiked +strained +strainer +straited +straiten +straitly +stramash +strammel +stramped +stranded +stranger +strangle +strapped +strapper +strategy +stratify +stratose +stratous +straucht +stravaig +strawier +strawing +strawman +strayers +straying +streaked +streaker +streamed +streamer +streeked +streeted +strelitz +strength +strepent +stressed +stresses +stressor +stretchy +strewage +strewers +strewing +striated +striatum +stricken +strickle +stricter +strictly +stridden +striddle +strident +striding +stridors +strigate +strigged +strigils +strigine +strigose +strikers +striking +Strimmer +stringed +stringer +strinkle +stripers +stripier +striping +stripped +stripper +strivers +striving +stroamed +strobila +strobile +strobili +stroddle +strokers +stroking +strolled +stroller +stromata +strombus +stronger +strongly +strongyl +strontia +strooken +strookes +strophes +strophic +stropped +strouted +strowing +strudels +struggle +strummed +strumose +strumous +strumpet +strunted +Struthio +strutted +strutter +stubbier +stubbies +stubbing +stubbled +stubbles +stubborn +stuccoed +stuccoer +stuccoes +studding +studdles +students +studiers +studious +studwork +studying +stuffers +stuffier +stuffily +stuffing +stultify +stumbled +stumbler +stumbles +stummels +stumming +stumpage +stumpers +stumpier +stumpily +stumping +Stundism +Stundist +stunkard +stunners +stunning +stunsail +stuns'ls +stunting +stuntman +stuntmen +stupider +stupidly +stuprate +sturdied +sturdier +sturdies +sturdily +sturgeon +Sturmers +sturnine +sturnoid +sturting +stutters +stylised +stylises +stylists +stylites +stylized +stylizes +styloids +styluses +stymying +styptics +styraxes +styrenes +suasible +suasions +subabbot +subacrid +subacted +subacute +subadars +subadult +subagent +subahdar +subatoms +subaural +subbasal +subbings +subbreed +Subbuteo +subcaste +subchief +subclaim +subclass +subcosta +subcrust +subdeans +subduals +subducts +subduers +subduing +subduple +subdural +subedars +subedits +subequal +suberate +suberect +suberise +suberize +suberose +suberous +subfeued +subfield +subfloor +subframe +subfuscs +subfusks +subgenre +subgenus +subgoals +subgrade +subgroup +subhuman +subhumid +subimago +subitise +subitize +subjects +subjoins +sublated +sublates +sublease +sublimed +sublimer +sublimes +sublunar +submerge +submerse +suborder +suborned +suborner +subovate +suboxide +subphyla +subplots +subpoena +subpolar +subprior +subseres +subserve +subshrub +subsided +subsides +subsists +subsizar +subsoils +subsolar +subsongs +subsonic +substage +substyle +subsumed +subsumes +subtacks +subteens +subtends +subtense +subtexts +subtiler +subtilly +subtilty +subtitle +subtlest +subtlety +subtlist +subtonic +subtopia +subtotal +subtract +subtribe +subtrist +subtrude +subtypes +subucula +subulate +subunits +suburban +suburbia +subverse +subverts +subviral +subvocal +subzonal +subzones +succades +succeeds +succinct +succinic +succinum +succinyl +succored +succours +succubae +succubas +succubus +succumbs +suchlike +suchness +suchwise +suckener +suckered +suckhole +suckings +sucklers +suckling +suctions +Suctoria +sucuruj� +sudamina +Sudanese +sudaries +sudarium +sudating +sudation +sudatory +suddenly +suddenty +sudorous +sudsiest +suedette +suffered +sufferer +suffetes +sufficed +sufficer +suffices +suffixal +suffixed +suffixes +sufflate +Suffolks +suffrage +suffused +suffuses +Sufistic +sugarier +sugaring +suggests +suicidal +suicides +suilline +suitable +suitably +suitings +suitress +suivante +sujeeing +sukiyaki +Sulawesi +sulcated +sulfinyl +sulfonic +sulfuric +sulkiest +sullener +sullenly +Sullivan +sullying +sulphate +sulphide +sulphite +sulphone +sulphurs +sulphury +sultanas +sultanic +sultrier +sultrily +Sumatran +sumatras +Sumerian +summands +summated +summates +summered +summerly +summings +summists +summital +summitry +summoned +summoner +sumotori +sumphish +sumpitan +sumpters +sunbaked +sunbakes +sunbathe +sunbeamy +sunberry +sunblind +sunblock +sunburns +sunburnt +sunburst +sundaris +sundered +sunderer +sundials +sundowns +sundress +sundries +sunglass +sunglows +sunlight +sunniest +Sunnites +sunproof +sunrises +sunshine +sunshiny +sunspots +sunstars +sunstone +sunsuits +suntraps +sunwards +superadd +superbly +superbug +supergun +superhet +supering +superior +superjet +superloo +superman +supermen +supernal +supertax +supinate +supinely +suppawns +suppeago +suppered +supplant +supplely +supplest +supplial +supplied +supplier +supplies +suppling +supports +supposal +supposed +supposer +supposes +suppress +supremer +supremes +supremos +Surabaya +surbahar +surbased +surbases +surbated +surbates +surcease +surcoats +surculus +sureness +sureties +surfaced +surfacer +surfaces +surfeits +surfiest +surfings +surgeful +surgeons +surgical +surgings +suricate +surliest +surloins +surmisal +surmised +surmiser +surmises +surmount +surnamed +surnames +surplice +surprise +surrebut +surround +surroyal +surtaxed +surtaxes +surtitle +surtouts +surucucu +surveyal +surveyed +surveyor +surviews +survival +survived +survives +survivor +Susannah +suspects +suspends +suspense +suspired +suspires +sustains +susurrus +sutorial +sutorian +suttling +suturing +suzerain +sveltest +Svengali +swabbers +swabbies +swabbing +swaddies +swaddled +swaddler +swaddles +Swadeshi +swaggers +swagging +swagshop +swagsman +swagsmen +Swahilis +swaining +swainish +swalings +swallets +swallows +swampers +swampier +swamping +swanherd +swankers +swankest +swankier +swankies +swankily +swanking +swankpot +swanlike +swannery +swanning +swappers +swapping +swaption +swarding +swarfing +swarmers +swarming +swarving +swashing +swastika +swatches +swathing +swatters +swatting +swayings +swazzles +swealing +swearers +swearing +sweaters +sweatier +sweating +sweepers +sweepier +sweeping +sweetens +sweetest +sweeties +sweeting +sweetish +sweetpea +swelchie +swelldom +swellers +swellest +swelling +swellish +swelters +swelting +swervers +swerving +swiddens +swifters +swiftest +Swiftian +swifties +swifting +swiftlet +swiggers +swigging +swillers +swilling +swimmers +swimmier +swimming +swimsuit +swimwear +swindled +swindler +swindles +swingers +swinging +swingism +swingled +swingles +swinking +swipples +swirlier +swirling +swishers +swishier +swishing +swissing +switched +switchel +switcher +switches +swithers +Switzers +swizzled +swizzles +swobbers +swobbing +swooning +swooping +swooshed +swooshes +swoppers +swopping +sworders +swording +swordman +swordmen +swotters +swotting +swounded +swouning +swozzles +sybarite +sybotism +sycamine +sycamore +sycomore +syconium +syenites +syenitic +syllabic +syllable +syllabub +syllabus +sylphide +sylphids +sylphine +sylphish +Sylvaner +sylvatic +sylviine +symbions +symbiont +symbolic +symmetry +Sympathy +symphile +symphily +symphony +Symphyla +symplast +symploce +sympodia +symposia +symptoms +synanthy +synaphea +synapses +synapsis +synaptes +synaptic +synarchy +synastry +syncarps +syncarpy +synching +syncline +syncopal +syncopes +syncopic +syncytia +syndesis +syndetic +syndical +syndings +syndrome +synechia +synectic +synedria +synergic +synergid +synfuels +syngamic +syngraph +synodals +synonyms +synonymy +synopses +synopsis +synoptic +synovial +syntagma +syntagms +syntaxes +syntexis +synthons +syntonic +syntonin +syphered +syphilis +syphoned +Syracuse +Syriarch +syringas +syringed +syringes +syrinxes +syrphids +syruping +syssitia +systemed +systemic +systoles +systolic +systyles +syzygial +syzygies +Szechwan diff --git a/com/agnibho/code/anagram/dictionary/S9.txt b/com/agnibho/code/anagram/dictionary/S9.txt new file mode 100644 index 0000000..f28992e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/S9.txt @@ -0,0 +1,3565 @@ +sabadilla +sabbatine +sabbatise +sabbatism +sabbatize +Sabellian +Sabianism +sabotaged +sabotages +saboteurs +sabotiers +saccharic +saccharin +Saccharum +sacciform +sacculate +sachemdom +sackcloth +sacralgia +sacralise +sacralize +sacrament +sacrarium +sacrifice +sacrified +sacrifies +sacrilege +sacristan +saddening +Sadducean +Sadducees +Sadducism +saeculums +safariing +safarists +safeguard +safelight +safetyman +safflower +saffroned +safranine +sagacious +sagamores +sagapenum +sagebrush +sagenites +sagenitic +saginated +saginates +sagittary +sagittate +saiblings +sailboard +sailmaker +sailoring +sailplane +sainfoins +saintfoin +sainthood +saintlier +saintlike +saintling +saintship +salaaming +salacious +Salamanca +salangane +salariats +salarying +salaryman +salarymen +saleratus +salerings +salesgirl +saleslady +salesroom +salicetum +salicylic +Salientia +saliently +salifying +salimeter +Salisbury +salivated +salivates +sallowest +sallowing +sallowish +sallyport +salmonets +salmonids +salmonoid +Salomonic +saloonist +salopette +salpicons +salpiform +salpinxes +salsifies +saltating +saltation +saltatory +saltchuck +saltiness +saltishly +saltpeter +saltpetre +salubrity +salvaging +salvarsan +salvation +salvatory +Samaritan +Samarkand +Samoyedes +Samoyedic +samphires +samplings +Samsonite +sanatoria +sanbenito +sanctions +sanctuary +sandalled +sandarach +sandblast +sanderses +Sanderson +Sandhurst +sandiness +sandivers +sandlings +sandpaper +sandpiper +sandstone +sandworts +Sanforise +Sanforize +sangarees +sangfroid +sanguined +sanguines +Sanhedrim +Sanhedrin +sanifying +sanitaria +sanitated +sanitates +sanitised +sanitises +sanitized +sanitizes +sannyasin +sannyasis +sanserifs +Santander +santolina +santonica +sapheaded +saphenous +sapidless +sapidness +sapiently +sapodilla +sapogenin +Saponaria +sapphired +sapphires +sapphists +sappiness +sapraemia +sapraemic +saprolite +saprozoic +sapsucker +sapucaias +sarabande +sarabands +Saracenic +Saragossa +Saratogas +sarbacane +sarcastic +sarcenets +sarcocarp +Sarcodina +sarcology +sarcomata +sarcomere +Sarcoptes +sarcoptic +sardelles +Sardinian +sardiuses +sardonian +sargassos +sargassum +Sarmatian +sarmentum +sarrasins +sarrazins +sarsenets +sartorial +sartorian +sartorius +Sarvodaya +sasararas +sashaying +saskatoon +sasquatch +sassabies +sassafras +Sassanian +sassarara +Sassenach +sassolite +satanical +satanists +satedness +satellite +satiating +satiation +satinette +satinwood +satirical +satirised +satirises +satirists +satirized +satirizes +satisfice +satisfied +satisfier +satisfies +satrapies +saturable +saturants +saturated +saturates +saturator +Saturdays +Saturnian +saturniid +saturnine +saturnism +satyrical +Satyricon +Satyridae +Satyrinae +satyrisks +saucepans +saucerful +sauciness +saucisses +saucisson +sauntered +saunterer +Sauropoda +sauropods +saut�eing +Sauternes +Sauvignon +savagedom +savannahs +savouries +savourily +savouring +Savoyards +savveying +sawdering +sawdusted +Saxifraga +saxifrage +saxitoxin +Saxonised +Saxonises +Saxonized +Saxonizes +saxophone +scabbards +scabbiest +scabbling +scablands +scaffolds +scagliola +scalawags +scaldhead +scaldings +scaldship +scaleless +scalelike +scaliness +scallawag +scallions +scalloped +scallywag +scalpless +scamblers +scambling +scampered +scampings +scannable +scannings +scansions +Scansores +scantiest +scantling +scantness +scapegoat +scapeless +scapement +scaphoids +scaphopod +scapolite +scappling +scapulary +scarabaei +scarabees +scaraboid +scarecrow +scarfings +scarfskin +scarfwise +scarified +scarifier +scarifies +Scarlatti +scarleted +scarpaing +scarpered +scarpetti +scarpetto +scarphing +scarpines +scarpings +scarriest +scarrings +scatheful +scatology +scattered +scatterer +scattiest +scavagers +scavenged +scavenger +scavenges +scazontes +scazontic +scelerate +scenarios +scenarise +scenarist +scenarize +sceneries +scentings +scentless +sceptered +sceptical +schapping +schapskas +schechita +scheduled +scheduler +schedules +scheelite +schematic +schemings +schiavone +schiedams +schilling +schimmels +Schindler +schistose +schistous +schizoids +schizonts +schizopod +schl�gers +schlemiel +schlemihl +schlepped +schlepper +Schleswig +schlieren +schlocker +schlosses +schmaltzy +schmalzes +schmelzes +schmoosed +schmooses +schmoozed +schmoozes +schmutter +schnapper +schnapses +schnauzer +schnecken +Schnittke +schnitzel +schnorkel +schnorred +schnorrer +schnozzle +scholarch +scholarly +scholiast +Sch�nberg +schoolbag +schoolboy +schoolery +schoolies +schooling +schoolman +schoolmen +schooners +schussing +Schweppes +sciaenoid +sciamachy +Sciaridae +sciatical +sciential +scientise +scientism +scientist +scientize +scimitars +scintilla +sciolists +sciosophy +sciroccos +scirrhoid +scirrhous +scissions +scissorer +scissures +Sciuridae +sclaffing +sclaunder +sclereide +sclereids +sclerites +scleritis +sclerosal +sclerosed +scleroses +sclerosis +sclerotal +sclerotia +sclerotic +sclerotin +sclimming +scoffings +scofflaws +scoinsons +scoldings +scolecite +scolecoid +scoliosis +scoliotic +scolloped +scolytids +scolytoid +scombroid +sconcheon +scontions +scoopfuls +scoopings +scopulate +scorbutic +scorchers +scorching +scoreline +scorified +scorifier +scorifies +scornings +scorodite +Scorpaena +scorpioid +scorpions +scorrendo +scotching +Scotchman +Scotchmen +Scoticism +Scotistic +scotomata +scoundrel +scourgers +scourging +scourings +scouthers +scoutings +scowdered +scrabbing +scrabbled +scrabbler +scrabbles +scraggier +scraggily +scragging +scraiched +scraighed +scrambled +scrambler +scrambles +scramjets +scramming +scranched +scranches +scrapings +scrappier +scrappily +scrapping +scrapples +scratched +scratcher +scratches +scratting +scrattled +scrattles +scrauched +scrawlers +scrawlier +scrawling +scrawming +scrawnier +screaking +screamers +screaming +screeched +screecher +screeches +screeders +screeding +screeners +screening +screevers +screeving +screiched +screighed +screwiest +screwings +scribable +scribbled +scribbler +scribbles +scribings +scribisms +scrieving +scriggled +scriggles +scrimmage +scrimpier +scrimpily +scrimping +scrimshaw +scrippage +scripting +scriptory +scripture +scritched +scritches +scrivener +scroddled +scroggier +scrollery +scrolling +scrooging +scrooping +scrouging +scrounged +scrounger +scrounges +scrubbers +scrubbier +scrubbing +scrubland +scruffier +scrumdown +scrummage +scrummier +scrumming +scrumpies +scrumping +scrumpled +scrumples +scrunched +scrunches +scruplers +scrupling +scrutable +scrutator +scrutoire +Scudamore +scuddaler +scuddling +scufflers +scuffling +scullings +scullions +sculpting +sculptors +sculpture +scumbered +scumbling +scummiest +scummings +scuncheon +scungeing +scungiest +scunnered +scuppaugs +scuppered +scurfiest +scurrying +scutcheon +scutchers +scutching +scutellar +scutellum +scutiform +scutigers +scuttered +scuttlers +scuttling +scuzzball +scuzziest +scybalous +Scyphozoa +scytheman +scythemen +seaboards +seacrafts +seadromes +seafarers +seafaring +seafronts +sealeries +sealskins +sealyhams +seaminess +seamsters +seaplanes +seaquakes +searchers +searching +seascapes +seasoners +seasoning +seawardly +seaworthy +sebaceous +Sebastian +sebestens +seborrhea +sebundies +secateurs +secernent +secerning +secession +secluding +seclusion +seclusive +secodonts +secondary +secondees +seconders +seconding +secrecies +secretage +secretary +secreting +secretion +secretive +secretory +sectarial +sectarian +sectaries +sectators +sectility +sectional +sectioned +sectorial +sectoring +sectorise +sectorize +secularly +secundine +securable +securance +Securicor +securitan +sedatives +sedentary +sederunts +sedgeland +Sedgemoor +sediments +seditions +seditious +seducings +seduction +seductive +seedboxes +seedcakes +seedcases +seediness +seedlings +seemingly +seemliest +seeresses +seesawing +seethings +segholate +segmental +segmented +segolates +segregate +Sehnsucht +seigneurs +seigniors +seigniory +seignoral +seismical +selachian +seladangs +selectees +selecting +selection +selective +selectors +selenates +selenides +selenious +selenites +selenitic +selfishly +selictars +Seljukian +Sellotape +selvaging +selvedged +selvedges +semanteme +semantics +semantide +semantron +semaphore +semblable +semblably +semblance +semblants +semeiotic +semesters +semestral +semibreve +semibulls +semicolon +semicomas +semifinal +semifluid +semilunes +seminally +seminated +seminates +semiology +semiotics +semiplume +Semiramis +semisolid +Semitised +Semitises +Semitized +Semitizes +semitones +semitonic +semivowel +sempitern +sempsters +semuncial +semuncias +senescent +seneschal +sengreens +Senhorita +seniority +sennachie +sennights +Se�oritas +sensation +senseless +sensillum +sensitise +sensitive +sensitize +sensorial +sensorily +sensorium +sensually +sensuists +sentenced +sentencer +sentences +sentience +sentiency +sentients +sentiment +sentinels +sepadding +separable +separably +separated +separates +separator +separatum +Sephardic +Sephardim +sepiments +sepiolite +septarian +septarium +septation +September +septemfid +septemvir +septenary +septennia +septettes +septicity +septiform +septimole +septlevas +septupled +septuples +septuplet +sepulcher +sepulchre +sepulture +sequacity +sequenced +sequencer +sequences +sequester +sequestra +sequinned +serafiles +seraglios +seraphims +seraphine +seraphins +seraskier +Serbonian +serenaded +serenader +serenades +serenatas +serenates +Serengeti +sergeancy +sergeants +serialise +serialism +serialist +seriality +serialize +seriately +seriation +sericeous +sericitic +serigraph +serinette +seriously +serjeancy +serjeants +serjeanty +sermoneer +sermoners +sermonets +sermoning +sermonise +sermonish +sermonize +serotinal +serotines +serotonin +serotyped +serotypes +serpented +serpentry +serpigoes +serpulite +serranids +serranoid +serrating +serration +serrature +serrefile +serricorn +serrulate +servanted +servantry +serveries +servicing +serviette +servilely +servilism +servility +servitors +servitude +sesamoids +sessional +sesspools +sesterces +sestertia +sestettes +sestettos +setaceous +settlings +sevenfold +seventeen +seventhly +seventies +severable +severally +severalty +severance +sewellels +sewerings +sexennial +sextanses +sextantal +sextettes +sextolets +sextoness +sextupled +sextuples +sextuplet +sexualise +sexualism +sexualist +sexuality +sexualize +sexvalent +sforzandi +sforzando +sforzatos +sgraffiti +sgraffito +shabbiest +shabracks +shackling +shadberry +shadblows +shaddocks +shadeless +shadiness +shadowers +shadowier +shadowing +shaftings +shaftless +shaggiest +shagreens +shagroons +shakeable +shakerism +shakiness +shallowed +shallower +shallowly +shamanism +shamanist +shamateur +shambling +shambolic +shamefast +shameless +shamianah +shamianas +shamisens +shammosim +shamoying +shampooed +shampooer +shamrocks +shanachie +shandries +shanghais +shantungs +shantyman +shantymen +shapeable +shapeless +shapelier +sharebone +sharesman +sharesmen +shareware +sharkings +sharkskin +Sharmaine +sharpened +sharpener +sharpings +sharpness +shashlick +shashliks +shattered +shauchled +shauchles +shaveling +shawlings +shawlless +sheadings +shealings +shearings +shearling +sheathing +shebeened +shebeener +Shechinah +shechitah +sheddings +shedhands +sheelings +sheeniest +sheepdogs +sheepfold +sheepskin +sheepwalk +sheerlegs +Sheerness +sheetings +Sheffield +sheikdoms +sheikhdom +sheldduck +sheldrake +shelducks +shelflike +shelfroom +shellback +shellbark +shellduck +shellfire +shellfish +shellfuls +shelliest +shellings +shellwork +sheltered +shelterer +shelviest +shelvings +shemozzle +shepherds +Sherborne +sherifian +sherlocks +sherwanis +shetlands +sheuching +sheughing +shewbread +shibuichi +shickered +shielders +shielding +shielduck +shielings +shiftiest +shiftings +shiftless +shiftwork +shigellas +shikarees +shillaber +shillalah +shillings +shimmered +shimmying +shimozzle +shinbones +shineless +shinglers +shinglier +shingling +shinguard +shininess +shiningly +Shintoism +Shintoist +shipboard +shiploads +shipmates +shipments +shippings +shipshape +shipwreck +shipyards +shiralees +shirrings +shirtiest +shirtless +shiverers +shivering +shlemiels +shleppers +shlepping +shlimazel +shmoosing +shmoozing +shoaliest +shoalings +shoalness +shoalwise +shochetim +shockable +shoddiest +shoeblack +shoeboxes +shoehorns +shoelaces +shoemaker +shoeshine +shoetrees +shoggling +shogunate +Sholokhov +shonkiest +shoogling +shootable +shootings +shopboard +shophroth +shoplifts +shopwoman +shopwomen +shoreless +shoreline +shoresman +shoresmen +shoreward +shortages +shortcake +shortcuts +shortened +shortener +shortfall +shorthand +shorthead +shorthold +shorthorn +shortness +Shoshones +Shoshonis +shotfirer +shotmaker +shoulders +shouldest +shouldn't +shoutings +shoutline +shovelers +shovelful +shovelled +shoveller +showbizzy +showboats +showbread +showcased +showcases +showerful +showerier +showering +showgirls +showiness +showmanly +showpiece +showplace +showrooms +shraddhas +shrapnels +shredders +Shreddies +shredding +shredless +shrewdest +shrewdies +shriekers +shrieking +shrieving +shrillest +shrilling +shrimpers +shrimping +shrinkage +shrinkers +shrinking +shriveled +shroffage +shroffing +shrouding +shrubbery +shrubbier +shrubbing +shrubless +shrublike +shrugging +shtetlach +shubunkin +shuckings +shuddered +shufflers +shuffling +shunnable +shuntings +shuttered +shuttling +sialogram +sialolith +siamesing +siamezing +Siberians +sibilance +sibilancy +sibilants +sibilated +sibilates +sibilator +Sibylline +Sibyllist +Sicanians +siccative +siciliana +siciliane +siciliano +Sicilians +sickeners +sickening +sickishly +sickleman +sicklemen +sicklemia +sickliest +sicknurse +sidalceas +sideboard +sideburns +sidedress +sidelight +sidelined +sidelocks +sidepaths +siderated +siderates +siderites +sideritic +siderosis +sideshoot +sideswipe +sidetrack +sidewalks +sidewalls +sidewards +Sidonians +Siegfried +siffleurs +siffleuse +siftingly +sighingly +sightable +sightings +sightless +sightlier +sightline +sightseen +sightseer +sightsees +sightsman +sightsmen +sigillary +sigillate +Sigismund +sigmating +sigmation +sigmatism +sigmatron +sigmoidal +signalers +signaling +signalise +signalize +signalled +signaller +signalman +signalmen +signaries +signatory +signature +signboard +significs +signified +signifier +signifies +signorial +signories +signorina +signorine +signorini +signorino +signposts +Sigourney +silageing +silencers +silencing +silenuses +silicates +siliceous +silicides +silicious +silicones +silicosis +silicotic +siliculas +silicules +siliquose +silkening +silkiness +silktails +silkworms +sillabubs +silladars +silliness +silphiums +siltation +siltstone +Siluridae +silurists +siluroids +silverier +silvering +silverise +silverize +Silvester +Silvestra +simarouba +simarubas +Simeonite +similarly +similised +similises +similized +similizes +Simmental +simmering +simoniacs +Simonides +simonious +simonists +simpatico +simperers +simpering +simplesse +simpleton +simplices +simplings +simpliste +simplists +simulacra +simulacre +simulants +simulated +simulates +simulator +simulcast +sinapisms +sincerely +sincerest +sincerity +sincipita +sinciputs +sinecures +sinewless +sinfonias +Singapore +singingly +singleton +singlings +singsongs +singspiel +singulars +singultus +Sinhalese +sinicised +sinicises +sinicized +sinicizes +sinistral +sinlessly +Sinningia +Sinologue +Sinophile +sinopites +sintering +sinuately +sinuation +sinuosity +sinuously +sinusitis +sinusoids +siphonage +siphonate +siphonets +siphoning +siphuncle +sirenians +sirenised +sirenises +sirenized +sirenizes +sirnaming +sirventes +sisserary +sissified +sistering +Sisyphean +sitarists +sitatunga +sitiology +situating +situation +situtunga +sitzkrieg +Sivaistic +sixpences +sixscores +sixteener +sixteenmo +sixteenth +sixtieths +sizarship +sizzlings +skaldship +skatepark +skedaddle +skeesicks +skeldered +skeletons +skellochs +skellying +skelpings +skeltered +skeptical +sketchers +sketchier +sketchily +sketching +skewbalds +skewering +skiagrams +skiagraph +skiamachy +skiascopy +skiatrons +skibobbed +skibobber +skidproof +skijoring +skilfully +skillings +skimmings +skimpiest +skinflick +skinflint +skinheads +skinniest +skipjacks +skiplanes +skippered +skirlings +skirtings +skirtless +skittered +skittling +skivering +sklenting +skokiaans +skreighed +skrimmage +skulkings +skunkbird +skurrying +skuttling +skydivers +skydiving +skyjacked +skyjacker +skylarked +skylarker +skylights +skyscapes +skywriter +slabbered +slabberer +slabstone +slackened +slackness +slaggiest +slaisters +slaistery +slakeless +slaloming +slammakin +slandered +slanderer +slangiest +slangings +slangular +slantways +slantwise +slapshots +slapstick +slashings +slatiness +slattered +slatterns +slaughter +slaverers +slavering +slavishly +slavocrat +Slavonian +Slavonise +Slavonize +Slavophil +Slazenger +sleazebag +sleaziest +sleddings +sledgings +sleekened +sleekiest +sleekings +sleekness +sleepiest +sleepings +sleepless +sleepsuit +sleepwalk +sleetiest +sleeveens +sleighers +sleighing +slenderer +slenderly +sleuthing +slickened +slickered +slickings +slickness +sliddered +slidingly +slightest +slighting +slightish +slimeball +sliminess +slimmings +slingback +slinkiest +slinkskin +slinkweed +slipcover +slipforms +slipovers +slippages +slippered +slippiest +slipslops +slipwares +slithered +slivering +slivovica +slivovics +slivovitz +slivowitz +slobbered +sloblands +slockened +sloethorn +sloetrees +sloganeer +sloganise +sloganize +slooshing +slopewise +slopingly +sloppiest +sloshiest +slouchers +slouchier +slouching +sloughier +sloughing +Slovakian +Slovakish +Slovenian +slowbacks +slowcoach +slowpokes +slowworms +slubbered +slubbings +sludgiest +slugfests +sluggabed +sluggards +slughorns +slumbered +slumberer +slumbrous +slumlords +slummiest +slummings +slummocks +slushiest +smackings +smallages +smallness +smallsats +smalmiest +smarmiest +smartarse +smartened +smartness +smasheroo +smatching +smattered +smatterer +smeariest +smeeching +smelliest +smellings +smeltings +smidgeons +smileless +smilingly +smilodons +smirching +smirkiest +smockings +smoggiest +smokehood +smokeless +smokiness +smooching +smoodging +smoothens +smoothers +smoothest +smoothies +smoothing +smoothish +sm�rbr�ds +smorzando +smothered +smotherer +smouching +smoulders +smudgiest +smugglers +smuggling +smutching +smuttiest +snabbling +snaffling +snaggiest +snakebird +snakebite +snakelike +snakeroot +snakeskin +snakeweed +snakewise +snakewood +snakiness +snaphance +snappiest +snappings +snapshots +snarliest +snarlings +snatchers +snatchier +snatchily +snatching +snazziest +sneakiest +sneerings +sneeshing +sneeziest +sneezings +snickered +snideness +sniffiest +sniffings +snifflers +sniffling +sniftered +sniggered +sniggerer +snigglers +sniggling +snippiest +snippings +snirtling +snitchers +snitching +snivelled +sniveller +snobbiest +snoblings +Snodgrass +snookered +snootfuls +snootiest +snoozling +snorkeled +snorkeler +snortiest +snortings +snottiest +snoutiest +snowballs +snowberry +snowboard +Snowdonia +snowdrift +snowdrops +snowfalls +snowfield +snowflake +snowfleck +snowflick +snowiness +snowlines +snowscape +snowstorm +snubbiest +snubbings +snuffiest +snuffings +snufflers +snuffling +snuggling +snuzzling +soakaways +soakingly +soapberry +soapboxes +soapiness +soapstone +soapworts +soaringly +sobbingly +soberised +soberises +soberized +soberizes +soberness +sobriquet +Socceroos +socialise +socialism +socialist +socialite +sociality +socialize +sociation +sociative +societary +societies +sociogram +sociolect +sociology +sociopath +socketing +sockettes +Socratise +Socratize +sodbuster +soddening +sodgering +sodomised +sodomises +Sodomites +sodomitic +sodomized +sodomizes +softbacks +softbound +softeners +softening +softheads +softlings +sogginess +sojourned +sojourner +sokemanry +solacious +solanders +solarised +solarises +solarists +solariums +solarized +solarizes +solderers +soldering +soldiered +soldierly +solecised +solecises +solecisms +solecists +solecized +solecizes +solemness +solemnest +solemnify +solemnise +solemnity +solemnize +solenette +Solenodon +solenoids +solfatara +solfeggio +solferino +solicited +solicitor +solidagos +solidated +solidates +solidists +solidness +Solifugae +soliloquy +solipsism +solipsist +solitaire +solitudes +sollerets +Solomonic +solonchak +solstices +solutions +Solutrean +solvating +solvation +Somalians +somascope +somatists +sombering +sombreros +someplace +somersets +something +sometimes +somewhere +somewhile +Somhairle +sommelier +somniated +somniates +somnolent +sonatinas +songbirds +songbooks +songcraft +songfests +songfully +songsmith +songsters +sonnetary +sonneteer +sonneting +sonnetise +sonnetist +sonnetize +sonobuoys +sonograms +sonograph +sonorants +soogeeing +soogieing +soojeying +sooterkin +sootflake +soothfast +soothings +soothsaid +soothsays +sootiness +sophister +sophistic +sophistry +Sophocles +sophomore +soporific +soppiness +sopranini +sopranino +sopranist +sorbitise +sorbitize +Sorbonist +sorcerers +sorceress +sorceries +sorcerous +sorediate +Soricidae +soritical +sororates +sororised +sororises +sororized +sororizes +sorptions +sorriness +sorrowers +sorrowful +sorrowing +sortation +sortieing +sortilege +sortilegy +sortition +sortments +sostenuto +Sotheby's +sottishly +sottisier +soubrette +souchongs +Soudanese +soulfully +soundcard +soundings +soundless +soundness +soupspoon +sourdines +sourishly +soutaches +souteneur +Southdown +southered +southerly +southerns +southings +southland +southmost +southpaws +Southport +southrons +southsaid +southsays +southward +Southwark +souvenirs +souvlakia +sovenance +sovereign +sovietise +sovietism +sovietize +sowarrees +sowarries +spaceless +spaceport +spaceship +spacewalk +spadassin +spadefish +spadefuls +spadelike +spadesman +spadesmen +spadework +spadilles +spadroons +spaewives +spagerics +spaghetti +spagirics +spagirist +spagyrics +spagyrist +spairging +spalpeens +spanaemia +spanaemic +spandrels +spandrils +spanglers +spanglets +spanglier +spangling +Spaniards +spankings +spansules +sparables +spareless +spareness +sparingly +sparklers +sparkless +sparklets +sparklies +sparkling +sparlings +sparriest +sparrings +sparsedly +Spartacus +spartanly +sparteine +sparterie +spasmatic +spasmodic +Spatangus +spatially +spattered +spatulate +spawnings +speakable +speakings +spearfish +spearhead +spearmint +spearwort +specially +specialty +speciated +speciates +specifics +specified +specifier +specifies +specimens +speckless +speckling +spectacle +spectated +spectates +spectator +speculate +speechful +speechify +speeching +speedball +speediest +speedings +speedless +speedster +speedways +speedwell +speerings +speirings +spekbooms +speldered +speldings +speldring +speldrins +spellable +spellbind +spelldown +spellican +spellings +spelunker +spendable +spendalls +spendings +sperlings +spermaria +spermatia +spermatic +spermatid +spewiness +sphacelus +sphaerite +sphagnous +sphendone +sphenodon +sphenoids +spherical +spheriest +spheroids +spherular +spherules +sphincter +sphingids +sphygmoid +spiccatos +spiceries +spicilege +spiciness +spiculate +spiderman +spidermen +Spielberg +spiffiest +Spigelian +spikelets +spikenard +spikiness +spilikins +spillages +spillikin +spillings +spillover +spillways +spilosite +spinaches +spindlier +spindling +spindrift +spineless +spinettes +spiniform +spininess +spinnaker +spinneret +spinnings +spinosity +Spinozism +Spinozist +spinsters +spintexts +spinulate +spinulose +spinulous +spiracles +spiracula +spiralism +spiralist +spirality +spiralled +spiraster +spiration +spireless +spirewise +spirillar +spirillum +spiritful +spiriting +spiritism +spiritist +spiritoso +spiritous +spiritual +spirituel +spirogram +Spirogyra +spitfires +spittings +spittoons +splashers +splashier +splashily +splashing +splatched +splatches +splatters +splatting +spleenful +spleenish +splendent +splendors +splendour +splenetic +splenitis +spleniums +splenting +spleuchan +splinters +splintery +splinting +splitters +splitting +splodgily +splodging +sploshing +splotched +splotches +splurgier +splurging +splutters +spluttery +spodogram +spodumene +spoilbank +spoilsman +spoilsmen +spokesman +spokesmen +spokewise +spoliated +spoliates +spoliator +spondulix +spongeous +spongiest +spongiose +spongious +sponsalia +sponsible +sponsings +sponsions +sponsored +spontoons +spookiest +spoonbill +spoonfuls +spooniest +spoonmeat +spoonways +spoonwise +sporangia +sporidesm +sporidial +sporidium +sporocarp +sporocyst +sporogeny +sporophyl +sporozoan +sportable +sportance +sportiest +sportless +sportsman +sportsmen +sporulate +spotlight +spottiest +spottings +spousages +spoutless +sprackled +sprackles +spragging +spraining +sprangled +sprangles +sprattled +sprattles +sprauchle +sprawlers +sprawlier +sprawling +spreaders +spreading +spreathed +spreathes +sprechery +spriggier +sprigging +sprighted +sprightly +springald +springals +springbok +springers +springier +springily +springing +springles +springlet +sprinkled +sprinkler +sprinkles +sprinters +sprinting +spriteful +spritsail +spritzers +spritzigs +spritzing +sprockets +sprouting +spruikers +spruiking +spuilzied +spuilzies +spulebane +spunkiest +spurlings +spurnings +spurriers +spurrings +sputtered +sputterer +spymaster +spyplanes +squabbier +squabbing +squabbish +squabbled +squabbler +squabbles +squaddies +squadrone +squadrons +squailers +squailing +squalider +squalidly +squallers +squallier +squalling +squamella +squamosal +squamulas +squamules +squanders +squarials +squarings +squarrose +squarsons +squashers +squashier +squashily +squashing +squatness +squatters +squattest +squattier +squatting +squattled +squattles +squawkers +squawking +squeakers +squeakery +squeakier +squeakily +squeaking +squealers +squealing +squeamish +squeegeed +squeegees +squeezers +squeezing +squeggers +squegging +squelched +squelcher +squelches +squibbing +squidding +squidging +squiffers +squiffier +squiggled +squiggles +squilgeed +squilgees +squinancy +squinches +squinters +squintest +squinting +squiralty +squirarch +squireage +squiredom +squireens +squirming +squirrels +squirrely +squirring +squirters +squirting +squishier +squishing +squitches +squitters +stabbings +stabilate +stabilise +stability +stabilize +stablings +staccatos +stackings +stackyard +staffroom +staggards +staggered +staggerer +staghorns +staghound +staginess +Stagirite +stagnancy +stagnated +stagnates +Stagyrite +Stahlhelm +staidness +stainings +stainless +staircase +stairfoot +stairhead +stairlift +stairways +stairwise +stalactic +stalagmas +stalemate +staleness +Stalinism +Stalinist +stalkiest +stalkings +stalkless +stallings +stallions +stalwarts +stalworth +staminate +stamineal +staminode +staminody +staminoid +stammered +stammerer +stampeded +stampedes +stampings +stanchels +stanchers +stanching +stanchion +standards +standfast +standgale +standings +stanhopes +stannates +stannator +stannites +stapedial +stapedius +stapelias +Staphylea +staphyles +starboard +starchers +starchier +starchily +starching +staretses +staretzes +starfruit +staringly +starkened +starkness +starlight +starlings +starostas +starriest +starrings +starshine +starships +starspots +startings +startlers +startling +startlish +starvings +starworts +stasidion +statehood +stateless +statelier +statelily +statement +stateroom +stateside +statesman +statesmen +statewide +stational +stationed +stationer +statistic +statocyst +statolith +statuette +statutory +staunched +stauncher +staunches +staunchly +Stavanger +stayaways +staysails +steadfast +steadicam +steadiest +steadings +steadying +stealings +steamboat +steamiest +steamings +steamship +steanings +stearates +stearsman +stearsmen +steatites +steatitic +steatomas +steatosis +stedfasts +steelbows +steelhead +steeliest +steelings +steelwork +steelyard +steenboks +steenbras +steenings +steenkirk +steepened +steepness +steerable +steerages +steerings +steerling +steersman +steersmen +steevings +stegnosis +stegnotic +stegodons +stegodont +stegomyia +stegosaur +Steinbeck +steinbock +steinings +steinkirk +Stellaria +stellated +stellerid +stellions +stellular +stembucks +stenchier +stenching +stenciled +stenopaic +stenotype +stenotypy +stepbairn +stepchild +stepdames +stephanes +Stephanie +steradian +stercoral +sterculia +stereomes +sterilant +sterilise +sterility +sterilize +sterlings +sternebra +sternites +sternitic +sternmost +sternness +sternport +sternsons +sternward +sternways +steroidal +stevedore +Stevenage +Stevenson +stewardry +stewartry +stewponds +stibblers +sticcados +sticcatos +sticheron +stichidia +stickfuls +stickiest +stickings +stickjaws +sticklers +stickling +stickweed +stickwork +stickying +stiffened +stiffener +stiffness +stiflings +Stigmaria +stigmatic +stilbites +stilettos +stillages +stilliest +stillings +stillions +stillness +stiltedly +stiltings +stimulant +stimulate +stingaree +stingiest +stingings +stingless +stinkards +stinkhorn +stinkings +stinkweed +stintedly +stintings +stintless +stipitate +stipplers +stippling +stipulary +stipulate +stirabout +stirrings +stitchers +stitchery +stitching +stithying +stoccados +stoccatas +stockaded +stockades +stockcars +stockfish +Stockholm +stockhorn +stockiest +stockinet +stockings +stockists +stockless +stockpile +Stockport +stocktake +stockwork +stockyard +stodgiest +stoically +stoitered +stokehold +Stokowski +stolidest +stolidity +STOLports +stomachal +stomached +stomacher +stomachic +stoneboat +stonechat +stonecrop +stonefish +stonehand +stoneless +stoneshot +stonewall +stoneware +stonework +stonewort +stoniness +stonkered +stoolball +stopbanks +stoplight +stoppages +stoppered +stoppings +stoppling +storeroom +storiated +storiette +stormbird +stormiest +stormings +stormless +stornelli +stornello +Stornoway +Storthing +storyette +storyings +storyline +stounding +Stourhead +stoushing +stoutened +stoutness +stowaways +stownlins +strabisms +straddled +straddler +straddles +stradiots +straffing +straggled +straggler +straggles +straights +straiking +strainers +straining +straitens +straiting +stramazon +stramping +stranding +strangely +strangers +strangest +strangled +strangler +strangles +strangury +Stranraer +strapless +strapline +strappado +strappers +strapping +strapwort +stratagem +strategic +Stratford +stratonic +stratuses +strauchts +stravaigs +strawiest +strawless +strawlike +strayings +strayling +streakers +streakier +streakily +streaking +streamers +streamier +streaming +streamlet +streeking +streetage +streetboy +streetcar +streetful +streetway +Streisand +strelitzi +strengths +strenuity +strenuous +stressful +stressing +stressors +stretched +stretcher +stretches +Stretford +strewings +strewment +striation +striatums +striature +strickled +strickles +strictest +strictish +stricture +striddled +striddles +stridence +stridency +stridling +strifeful +strigging +strikeout +strikings +Strimmers +stringent +stringers +stringier +stringily +stringing +strinkled +strinkles +stripiest +stripings +stripling +strippers +stripping +strivings +stroaming +strobilae +strobiles +strobilus +stroddled +stroddles +strokings +strollers +strolling +stromatic +Stromboli +strongarm +strongest +strongish +strongman +strongmen +strongyle +strongyls +strontian +strontias +strontium +stroppier +stropping +strouding +strouting +strowings +structure +struggled +struggler +struggles +strumatic +strumitis +strumming +strumpets +strunting +strutters +strutting +strychnia +strychnic +stubbiest +stubblier +stubborns +stuccoers +stuccoing +studdings +studentry +studiedly +stuffiest +stuffings +stumblers +stumbling +stumpiest +stunsails +stupefied +stupefier +stupefies +stupidest +stupidity +stuporous +stuprated +stuprates +sturdiest +sturgeons +Sturnidae +stuttered +stutterer +Stuttgart +styleless +styliform +stylishly +stylising +stylistic +stylizing +stylobate +stylolite +styptical +Styrofoam +suability +suasively +suaveness +subacting +subaction +subaerial +subagency +subagents +subahdars +subahdary +subahship +subalpine +subaltern +subapical +subarctic +subastral +subatomic +subbasals +subbranch +subbreeds +subbureau +subcantor +subcaudal +subcavity +subcellar +subclause +subclimax +subcortex +subcostal +subcostas +subdeacon +subdermal +subdivide +subdolous +subdorsal +subduable +subducted +subduedly +subedited +subeditor +subentire +suberates +subereous +suberised +suberises +suberized +suberizes +subfamily +subfeuing +subfloors +subgenera +subgenres +subgroups +subhedral +subimagos +subincise +subitised +subitises +subitized +subitizes +subjacent +subjected +subjoined +subjugate +sublating +sublation +subleased +subleases +sublessee +sublessor +sublethal +subletter +sublimate +sublimely +sublimest +subliming +sublimise +sublimity +sublimize +sublinear +sublunars +sublunary +sublunate +submarine +submatrix +submental +submentum +submerged +submerges +submersed +submerses +submicron +submissly +submitted +submitter +submucosa +submucous +subneural +subniveal +subnivean +subnormal +suboctave +subocular +suboffice +suborders +suborners +suborning +suboxides +subphylum +subpoenas +subpotent +subpriors +subregion +subrogate +subsacral +subsample +subschema +subscribe +subscript +subsecive +subsellia +subseries +subserved +subserves +subshrubs +subsidies +subsiding +subsidise +subsidize +subsisted +subsizars +subsoiled +subsoiler +substages +substance +substract +substrata +substrate +substruct +substylar +substyles +subsultus +subsuming +subsystem +subtenant +subtended +subtenses +subtenure +subtilely +subtilest +subtilise +subtilist +subtility +subtilize +subtitled +subtitles +subtlists +subtonics +subtopian +subtopias +subtorrid +subtotals +subtracts +subtribes +subtropic +subtruded +subtrudes +subuculas +subungual +suburbans +suburbias +subursine +subvassal +subversal +subversed +subverses +subverted +subverter +subwarden +subwoofer +succeeded +succeeder +succentor +successes +successor +succinate +succinite +succories +succoring +succotash +succoured +succourer +succubine +succubous +succulent +succumbed +succursal +succussed +succusses +suckeners +suckering +sucklings +suctorial +suctorian +sucuruj�s +sudaminal +sudariums +sudations +sudorific +Suetonius +sufferers +suffering +sufficers +sufficing +suffixing +suffixion +suffocate +suffragan +suffrages +suffusing +suffusion +suffusive +Sufiistic +sugarbird +sugarbush +sugariest +sugarings +sugarless +suggested +suggester +suivantes +sukiyakis +sulcalise +sulcalize +sulcation +sulfatase +sulfation +sulfonate +sulfonium +sulfurate +sulkiness +sullenest +sulphates +sulphatic +sulphides +sulphinyl +sulphites +sulphones +sulphonic +sulphured +sulphuret +sulphuric +sultanate +sultaness +sultriest +Sumatrans +summaries +summarily +summarise +summarist +summarize +summating +summation +summative +summerier +summering +summerset +summiteer +summoners +summoning +summonsed +summonses +sumotoris +sumpitans +sumpsimus +sumptuary +sumptuous +sunbaking +sunbathed +sunbather +sunbathes +sunbeamed +sunblinds +sunburned +sunbursts +sunderers +sundering +sunfishes +sunflower +sunniness +sunrising +sunscreen +sunstones +sunstroke +sunstruck +suntanned +superable +superably +superadds +superbity +superbold +superbrat +superbugs +supercoil +supercold +supercool +superette +superfast +superfine +superflux +superfuse +supergene +superglue +superheat +superhero +superhets +superhive +superiors +superjets +superloos +supermart +supermini +supernova +superplus +superpose +superrich +supersafe +supersalt +supersede +supersoft +superstar +superthin +supervene +supervise +supinated +supinates +supinator +suppering +supplants +supplials +suppliant +supplicat +suppliers +supplying +supported +supporter +supposals +supposers +supposing +suppurate +supremacy +supremely +supremest +supremity +surbahars +surbating +surceased +surceases +surcharge +surcingle +surculose +surfacers +surfacing +surfeited +surfeiter +surficial +surfperch +surgeless +surgeoncy +surgeries +suricates +surliness +surmaster +surmisals +surmisers +surmising +surmounts +surmullet +surnaming +surpassed +surpasses +surpliced +surplices +surpluses +surprisal +surprised +surpriser +surprises +surrebuts +surreined +surrejoin +surrender +surrendry +surrogacy +surrogate +surrounds +surroyals +surtaxing +surtitles +surucucus +surveille +surveyals +surveying +surveyors +surviewed +survivals +surviving +survivors +susceptor +suscitate +suspected +suspended +suspender +suspenser +suspenses +suspensor +suspicion +suspiring +sussarara +sustained +sustainer +sustinent +susurrant +susurrate +sutleries +sutteeism +suturally +suzerains +Svengalis +swaddlers +swaddling +swaggered +swaggerer +swagshops +swainings +Swaledale +swallowed +swallower +swampiest +swampland +swanherds +swankiest +swankpots +swansdown +swappings +swaptions +swarajism +swarajist +swarmings +swarthier +swartness +swashings +swashwork +swastikas +swattered +Swaziland +swealings +swearings +sweatiest +sweatings +Sweelinck +sweepback +sweepiest +sweepings +sweetened +sweetener +sweetfish +sweetings +sweetmeal +sweetmeat +sweetness +sweetpeas +sweetshop +sweetwood +sweetwort +sweirness +swelchies +swellings +sweltered +sweltrier +sweptwing +swervings +swiftlets +swiftness +swillings +swimmable +swimmeret +swimmiest +swimmings +swimsuits +Swinburne +swindlers +swindling +swineherd +swinehood +swineries +swingboat +swingeing +swingings +swingling +swingtree +swinishly +swirliest +swishiest +swishings +swissings +switchels +switchers +switching +switchman +switchmen +swithered +swivelled +Swiveller +swizzling +swoonings +swooshing +swoppings +swordfish +swordless +swordlike +swordplay +swordsman +swordsmen +swottings +swounding +sybarites +sybaritic +sycamines +sycamores +sycomores +syconiums +sycophant +syllabary +syllabics +syllabify +syllabise +syllabism +syllabize +syllabled +syllables +syllabubs +syllepses +syllepsis +sylleptic +syllogise +syllogism +syllogize +sylphides +sylvanite +Sylvester +Sylviidae +Sylviinae +sylvinite +symbionts +symbioses +symbiosis +symbiotic +symbolics +symbolise +symbolism +symbolist +symbolize +symbolled +symbology +symmetral +symmetric +sympathin +sympatric +symphiles +symphonic +symphysis +symphytic +Symphytum +symploces +sympodial +sympodium +symposiac +symposial +symposium +symptosis +symptotic +synagogal +synagogue +synangium +synanthic +synapheia +synaptase +synchrony +synchysis +synclinal +synclines +syncopate +syncoptic +syncretic +syncytial +syncytium +syndactyl +syndicate +syndromes +syndromic +synectics +synedrial +synedrion +synedrium +syneresis +synergids +synergise +synergism +synergist +synergize +syngamous +syngeneic +syngraphs +synizesis +synkaryon +synodical +synodsman +synodsmen +synoecete +synoecise +synoecism +synoecize +synoekete +synoicous +synonymic +synopsise +synopsize +synoptist +synovitic +synovitis +syntactic +syntectic +syntheses +synthesis +synthetic +syntonies +syntonise +syntonize +syntonous +syphering +syphilise +syphilize +syphiloid +syphiloma +syphoning +Syriacism +Syrianism +syringeal +syringing +Syrphidae +systaltic +systemise +systemize diff --git a/com/agnibho/code/anagram/dictionary/T1.txt b/com/agnibho/code/anagram/dictionary/T1.txt new file mode 100644 index 0000000..718f4d2 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T1.txt @@ -0,0 +1 @@ +t diff --git a/com/agnibho/code/anagram/dictionary/T10.txt b/com/agnibho/code/anagram/dictionary/T10.txt new file mode 100644 index 0000000..358b72c --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T10.txt @@ -0,0 +1,1254 @@ +tabboulehs +tabellions +tabernacle +tabescence +tablanette +tablatures +tabularise +tabularize +tabulating +tabulation +tabulators +tabulatory +tacamahacs +tachograms +tachograph +tachometer +tachometry +tachygraph +tachylitic +tachylytic +tachymeter +tachymetry +tachypnoea +taciturnly +tactically +tacticians +tactilists +tactlessly +tactuality +taeniacide +taeniafuge +taffetases +tagliarini +tahsildars +tailorings +tailormake +tailpieces +tailplanes +Tajikistan +takingness +talegallas +talentless +talismanic +Talleyrand +talliating +tallyshops +Talmudical +tamability +tamagotchi +tamarillos +tambourine +tambouring +tambourins +Tammanyism +Tammanyite +tamperings +tamponades +tamponages +Tanagridae +tandemwise +Tanganyika +tangencies +tangential +tangerines +tanglefoot +tanglement +tanglesome +tangleweed +tanglingly +tankbuster +Tannh�user +tantalates +tantalised +tantaliser +tantalises +tantalized +tantalizer +tantalizes +tantaluses +tantamount +tantararas +Tanzanians +Taoiseachs +taperingly +tapescript +tapestried +tapestries +taphonomic +tapotement +taradiddle +tarantaras +tarantases +tarantella +tarantulas +tarboggins +tarbooshes +tarboushes +tarbrushes +Tardigrada +tardigrade +targetable +targeteers +targumical +tariffless +tarmacadam +tarmacking +tarnishers +tarnishing +tarpauling +tarpaulins +tarriances +tarsealing +tartanalia +tartareous +tartarised +tartarises +tartarized +tartarizes +tartrazine +Tartuffian +taseometer +tasimeters +tasimetric +taskmaster +Tasmanians +tasselling +tastefully +tatpurusha +Tattersall +tattlingly +tattooists +tauntingly +tauromachy +tautologic +tautomeric +tautophony +tawdriness +taxability +taxidermal +taxidermic +taximeters +taxonomers +taxonomies +taxonomist +tayassuids +tayberries +tchoukball +teaberries +teacupfuls +teaselings +teasellers +teaselling +teazelling +Tebilising +Tebilizing +technetium +technician +technicise +technicism +technicist +technicize +techniques +technocrat +technofear +technology +technopole +tectricial +tediousome +teentsiest +teetotally +tegumental +teichopsia +teinoscope +telebridge +telecamera +telecasted +telecaster +telechiric +telefaxing +telegnosis +telegonous +telegraphs +telegraphy +Telemachus +telemarked +telematics +telemeters +telemetric +teleologic +teleonomic +teleosaurs +teleostean +teleostome +Teleostomi +telepathed +telepathic +telephemes +telephoned +telephoner +telephones +telephonic +telepoints +teleported +telerecord +telescoped +telescopes +telescopic +telescreen +telesmatic +telestichs +telev�rit� +televiewed +televiewer +televisers +televising +television +televisors +televisual +teleworker +telewriter +teliospore +tellership +tellurates +tellurians +tellurides +tellurions +tellurised +tellurises +tellurites +tellurized +tellurizes +telophasic +telpherage +telpherman +telphermen +telpherway +temerously +temperable +temperance +temperated +temperates +temperedly +temperings +tempesting +tempestive +temporally +temporalty +temporised +temporiser +temporises +temporized +temporizer +temporizes +temptation +temptingly +temulently +tenability +tenacities +tenaillons +tenantable +tenantless +tenantries +tenantship +tendencies +tendential +tenderfeet +tenderfoot +tenderings +tenderised +tenderiser +tenderises +tenderized +tenderizer +tenderizes +tenderling +tenderness +tendinitis +tendonitis +tendrillar +tendrilled +tenebrific +tenebrious +tenebrists +tenemental +tennantite +tenotomies +tenotomist +tensimeter +tentacular +tentaculum +tentations +tentoriums +tenurially +tephigrams +tepidarium +teratogens +teratogeny +teratology +teratomata +terebinths +terebrants +terebrated +terebrates +termagancy +termagants +terminable +terminably +Terminalia +terminally +terminated +terminates +terminator +terminists +terminuses +terneplate +terracette +terracings +terracotta +terraforms +terramycin +terrariums +terreplein +terricoles +terrifiers +terrifying +terrorised +terroriser +terrorises +terrorists +terrorized +terrorizer +terrorizes +terrorless +tersanctus +teschenite +tessellate +tessituras +testaceous +testaments +testations +testicular +testifiers +testifying +testudinal +testudines +tetanising +tetanizing +tetchiness +tetrabasic +tetrachord +tetractine +tetradites +tetraethyl +tetragonal +tetragrams +Tetragynia +tetrahedra +tetrameral +tetrameter +Tetramorph +Tetrandria +tetraploid +tetrapodic +tetrapolis +tetraptote +tetrarchic +tetrasemic +tetraspore +tetrastich +tetrastyle +tetrathlon +tetratomic +tetrotoxin +tetroxides +Teutonised +Teutonises +Teutonized +Teutonizes +Tewkesbury +textphones +textualism +textualist +textuaries +texturally +texturised +texturises +texturized +texturizes +Thailander +thalassian +thalictrum +thalliform +thanatists +thanatosis +thanehoods +thaneships +thankfully +thatchings +thatchless +thaumasite +thearchies +theatrical +thecodonts +theftboots +theftbotes +theistical +themselves +thenabouts +theocratic +Theocritus +theodicean +theodicies +theodolite +theogonist +theologate +theologers +theologian +theologies +theologise +theologist +theologize +theologues +theomaniac +theomanias +theomantic +theonomous +theophanic +Theophilus +theophobia +theophoric +theopneust +theorbists +theorisers +theorising +theorizers +theorizing +theosopher +theosophic +theotechny +therapists +therapsids +thereabout +thereafter +thereamong +thereanent +thereunder +thermalise +thermalize +thermionic +thermistor +thermoform +thermogram +thermology +thermophil +thermopile +thermostat +thermotics +Thessalian +thetically +theurgical +theurgists +thickeners +thickening +thickheads +thickskins +thievishly +thimbleful +thimblerig +thimerosal +thingamies +thinginess +thingumbob +thinkingly +thiocyanic +thiopental +thiouracil +thirstiest +thirstless +thirteenth +thirtieths +thirtyfold +thixotrope +thixotropy +tholobates +thornbacks +thorniness +thornproof +thorntrees +thoroughly +thoughtful +thousandth +thrappling +thrashings +threadbare +threadiest +threadlike +threatened +threatener +threepence +threepenny +threescore +threesomes +threnodial +threnodies +threnodist +threshings +thresholds +thriftiest +thriftless +thriveless +thrivingly +throatiest +throatwort +throbbings +thrombosed +thromboses +thrombosis +thrombotic +throneless +throppling +throttlers +throttling +throughout +throughway +throwbacks +throwsters +thrummiest +thrummings +thruppence +thruppenny +thrustings +thrutching +Thucydides +thuddingly +thuggeries +thumbikins +thumblings +thumbnails +thumbpiece +thumbprint +thumbscrew +thumpingly +thunbergia +thunderbox +thunderers +thundering +thunderous +thurifying +thwackings +thwartedly +thwartings +thwartship +thwartways +thwartwise +thylacines +thymectomy +thymocytes +thyratrons +thyristors +thyrsoidal +thysanuran +tibiotarsi +tibouchina +ticklishly +tiddlywink +tidivating +tidivation +tiebreaker +tiercelets +tiercerons +tigerishly +tighteners +tightening +tightishly +tightropes +tilefishes +tiliaceous +tillandsia +tillerless +timberhead +timberings +timberland +timbrology +timeframes +timelessly +timeliness +timenoguys +timepieces +timescales +timetabled +timetables +timocratic +Timonising +Timonizing +timorously +timpanists +tinctorial +Tinkerbell +tinkerings +tinklingly +tinnituses +tinselling +Tinseltown +Tintometer +Tintoretto +tipsifying +tirailleur +tirelessly +tiresomely +tirocinium +Titanesque +titillated +titillates +titillator +titivating +titivation +titrations +titterings +tittivated +tittivates +tittlebats +tittupping +titubating +titubation +titularity +toadflaxes +toadstools +Tobagonian +tobogganed +tobogganer +toccatella +toccatinas +tocherless +tocopherol +toeraggers +Togolander +toiletries +toilinette +toilsomely +tokenistic +tolerances +tolerantly +tolerating +toleration +tolerators +tollbooths +tollbridge +tolldishes +tomahawked +tomatillos +tombstones +tomfoolery +tomfooling +tomfoolish +tomographs +tomography +tonalities +tonalitive +tonelessly +tongueless +tonguelets +tonguelike +tonguester +tonicities +tonishness +tonometers +tonsillary +toolhouses +toolmakers +toolmaking +toothaches +toothbrush +toothcombs +toothiness +toothpaste +toothpicks +toothworts +toparchies +topazolite +tophaceous +topiarists +topicality +toploftily +topnotcher +topography +topologist +toponymics +topophilia +topsyturvy +torbernite +torchi�res +torchlight +tormenters +tormentils +tormenting +tormentors +tormentums +torpedoers +torpedoing +torpedoist +torpefying +torpescent +torpidness +torporific +Torquemada +torrefying +torrential +Torricelli +torridness +tortellini +tortfeasor +tortiously +tortricids +tortuosity +tortuously +torturedly +torturings +tossicated +tosticated +totalisers +totalising +totalities +totalizers +totalizing +totemistic +totipotent +totterings +touchiness +touchingly +touchstone +tougheners +toughening +tourbillon +tourmaline +tournament +tourneyers +tourneying +tourniquet +tovariches +tovarishes +towardness +towellings +townhouses +townscaped +townscapes +townswoman +townswomen +toxication +toxicology +toxiphobia +toyishness +trabeation +trabeculae +trabecular +Trachearia +tracheated +tracheides +tracheitis +trachelate +trachytoid +trackballs +tracklayer +trackroads +tracksuits +tractarian +tractators +tractility +tractional +tractrices +tradecraft +trademarks +tradenames +Tradescant +tradesfolk +traditions +traditores +traducible +traducings +traduction +traductive +trafficked +trafficker +tragacanth +tragedians +tragelaphs +tragically +trailingly +trainloads +traipsings +traitorism +traitorous +trajecting +trajection +trajectory +trammelled +trammeller +tramontana +tramontane +trampettes +tramplings +trampoline +trampolins +tranquilly +transacted +transactor +transcends +transcribe +transcript +transducer +transected +transennas +transeptal +transfects +transferee +transferor +transfixed +transfixes +transforms +transfused +transfuser +transfuses +transgenic +transgress +transhuman +transhumed +transhumes +transience +transiency +transients +transistor +transition +transitive +transitory +transitted +Transkeian +translated +translates +translator +translucid +translunar +transmuted +transmuter +transmutes +transonics +transpired +transpires +transplant +transpolar +transports +transposal +transposed +transposer +transposes +transposon +transputer +transships +transudate +transuding +transvalue +transverse +transvests +trapanning +trapesings +trapeziums +trapezoids +trappiness +trashiness +trattorias +trauchling +traumatise +traumatism +traumatize +travailing +travelator +travelings +travellers +travelling +travelogue +traversals +traversers +traversing +travertine +travesties +travolator +trawlerman +trawlermen +traymobile +treadlings +treadmills +treasonous +treasurers +treasuries +treasuring +treatments +trebleness +trebuchets +trecentist +tredrilles +tregetours +treillaged +treillages +trekschuit +trellising +trematodes +trematoids +tremblings +tremendous +tremolandi +tremolando +tremolants +tremolitic +tremorless +tremulants +tremulated +tremulates +trenchancy +trenchards +trendiness +trepanners +trepanning +trephining +treponemas +treponemes +trespassed +trespasser +trespasses +trevallies +Trevithick +triaconter +triactinal +trialities +triallists +trialogues +triandrian +triandrous +triangular +Triangulum +triapsidal +triarchies +triathlete +triathlons +tribalists +tribometer +tribrachic +tribunates +tricameral +tricerions +trichiasis +trichinise +trichinize +trichinose +trichinous +Trichiurus +trichogyne +trichology +trichotomy +trichroism +trichromat +trichromic +trickeries +trickiness +trickishly +tricklings +tricksiest +tricksters +triclinium +tricolours +tricostate +tricoteuse +tricrotism +tricrotous +tricyclers +tricycling +tricyclist +tridentate +Tridentine +trienniums +trierarchs +trierarchy +trifacials +trifarious +triffidian +triflingly +trifoliate +trifoliums +trifurcate +trigamists +trigeminal +triggering +triggerman +triggermen +triglyphic +trigrammic +trihedrals +trihedrons +trihybrids +trilateral +trilineate +trilingual +triliteral +trilithons +trillionth +trilobated +trilobites +trilobitic +trilocular +trimesters +trimmingly +trimonthly +trimorphic +Trinacrian +triniscope +trinitrate +trinketing +trinomials +trioecious +tripartism +tripartite +tripehound +tripewives +tripewoman +tripewomen +triphthong +Triphysite +tripinnate +tripleness +triplicate +triplicity +tripperish +trippingly +tripterous +triptyques +tripudiary +tripudiate +tripudiums +triquetral +triquetras +triquetrum +triradiate +trisagions +trisecting +trisection +trisectors +trisectrix +triskelion +tristichic +trisulcate +tritanopia +tritanopic +triternate +tritheists +trithionic +tritiating +tritiation +tritically +triticeous +triturated +triturates +triturator +triumphant +triumphers +triumphing +triumviral +triunities +trivalence +trivalency +trivialise +trivialism +triviality +trivialize +trochanter +trochiscus +trochoidal +trochotron +troctolite +troglodyte +Trogonidae +trolleying +Trollopean +Trollopian +trolloping +trollopish +trombonist +tromometer +tropaeolin +tropaeolum +trophesial +trophology +Trophonian +tropically +tropicbird +tropologic +tropopause +tropophyte +Trotskyism +Trotskyist +Trotskyite +troubadour +troubledly +troublings +trouncings +trousering +trousseaus +trousseaux +troutlings +troutstone +trouvaille +Trowbridge +trowellers +trowelling +truantship +Trubenised +Trubenises +Trubenized +Trubenizes +trucklings +truculence +truculency +trumpeters +trumpeting +truncately +truncating +truncation +truncheons +trunnioned +trustfully +trustiness +trustingly +truthfully +tryptophan +tsarevitch +tsesarevna +Tuberaceae +tubercular +tubercules +tuberculin +tuberculum +tuberiform +tuberosity +tubicolous +tuboplasty +tubularian +tubularity +tubulating +tubulation +tubulature +Tudoresque +tuffaceous +tuftaffeta +tuillettes +tuitionary +tularaemia +tularaemic +tumbledown +tumblerful +tumescence +tumultuary +tumultuate +tumultuous +tunbellied +tunbellies +tunelessly +tunesmiths +tungstates +tunnellers +tunnelling +Tupperware +turbidness +turbinated +turboprops +turbulator +turbulence +turbulency +turcopoles +turgescent +turgidness +Turkicised +Turkicises +Turkicized +Turkicizes +Turkifying +Turkmenian +turmoiling +turnaround +turnbroach +turnbuckle +turnrounds +turnstiles +turnstones +turntables +turpentine +turpentiny +Turritella +turtleback +turtleneck +Turveydrop +Tuscaloosa +tutiorists +tutoresses +tutorially +tutorising +tutorizing +tutorships +tutworkers +tutworkman +tutworkmen +twaddlings +twangingly +twanglings +twattlings +tweediness +tweedledee +tweedledum +Tweedsmuir +twelvefold +twentieths +twentyfold +Twickenham +twiddlings +twilighted +twinflower +twinighter +twinklings +twitchiest +twitchings +twitterers +twittering +twittingly +twopennies +twoseaters +tycoonates +tympanists +tympanites +tympanitic +tympanitis +typescript +typesetter +typewriter +typewrites +typhaceous +typhlology +typicality +typography +typologies +typologist +tyrannical +Tyrannidae +tyrannised +tyrannises +tyrannized +tyrannizes +Tyrolienne +tyrosinase +Tyrrhenian diff --git a/com/agnibho/code/anagram/dictionary/T11.txt b/com/agnibho/code/anagram/dictionary/T11.txt new file mode 100644 index 0000000..73a821e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T11.txt @@ -0,0 +1,946 @@ +tabefaction +tabernacled +tabernacles +tabescences +taboparesis +tabularised +tabularises +tabularized +tabularizes +tabulations +tacheometer +tacheometry +tachographs +tachometers +tachometric +tachycardia +tachygraphs +tachygraphy +tachymeters +tachyphasia +taciturnity +tactfulness +taeniacides +tagliatelle +tailoresses +tailormakes +taintlessly +Taliacotian +talkability +talkatively +Tallahassee +Talmudistic +tamableness +tamagotchis +tambourines +Tamburlaine +tameability +Tammanyites +tamperproof +tangentally +tangibility +tanglements +tankbusters +tankbusting +tantalisers +tantalising +tantalizers +tantalizing +tapescripts +tapestrying +taphephobia +taphonomist +taphophobia +taradiddles +tarantasses +tarantellas +taratantara +tardigrades +Targumistic +tarnishable +tarpaulings +tarradiddle +tartarising +tartarizing +taseometers +taskmasters +tassellings +tastelessly +tatpurushas +taurobolium +tautochrone +tautologies +tautologise +tautologism +tautologist +tautologize +tautologous +tautomerism +tautometric +tautonymous +tautophonic +taxidermise +taxidermist +taxidermize +taxonomical +taxonomists +Tchaikovsky +teacherless +teachership +tearfulness +teaspoonful +technically +technicians +technicised +technicises +technicists +technicized +technicizes +Technicolor +technocracy +technocrats +technomania +technomusic +technophile +technophobe +technopoles +technopolis +technospeak +tectibranch +tediousness +teetotalism +teetotaller +Tegucigalpa +tegumentary +teknonymous +telearchics +telebanking +telebridges +telecameras +telecasters +telecasting +telecommand +telecommute +telecontrol +telecottage +t�l�f�rique +telegnostic +telegrammic +telegraphed +telegrapher +telegraphic +telekinesis +telekinetic +telemarking +Telemessage +telemetered +teleologism +teleologist +Teleosaurus +teleosteans +teleostomes +telepathing +telepathise +telepathist +telepathize +telephoners +telephoning +telephonist +teleporting +teleprinter +telerecords +telescience +telescoping +telescopist +Telescopium +telescreens +teleselling +telesthesia +telesthetic +televiewers +televiewing +televisions +teleworkers +teleworking +telewriters +tellerships +telluretted +tellurising +tellurizing +telocentric +telpherages +telpherways +temerarious +temperament +temperately +temperating +temperative +temperature +tempestuous +tempolabile +temporality +temporaries +temporarily +temporisers +temporising +temporizers +temporizing +temptations +temptatious +temptresses +tenableness +tenaciously +tenantships +tendencious +tendentious +tenderfoots +tenderisers +tenderising +tenderizers +tenderizing +tenderlings +tendrillous +tenebrosity +tenementary +tenorrhaphy +tensibility +tensiometer +tensiometry +tensionally +tensionless +tentaculate +tentaculite +tentaculoid +tentatively +tenuousness +tepefaction +tephromancy +tepidariums +teratogenic +teratologic +terebrating +terebration +terebratula +termagantly +terminating +termination +terminative +terminators +terminatory +terminology +termitaries +termitarium +Terpsichore +terraformed +terraqueous +terremotive +terrepleins +terrestrial +terribility +terricolous +terrigenous +territorial +territoried +territories +terrorisers +terrorising +terroristic +terrorizers +terrorizing +tessaraglot +tessellated +tessellates +testamental +testatrices +testiculate +testificate +testimonial +testimonies +testudinary +tetanically +tetrachords +tetractinal +tetracyclic +tetradactyl +tetradrachm +tetradymite +tetragonous +tetragynian +tetragynous +tetrahedral +tetrahedron +tetralogies +tetramerism +tetramerous +tetrameters +tetrandrian +tetrandrous +tetraplegia +tetraploidy +tetrapodies +tetrapodous +tetrapteran +tetraptotes +tetrarchate +tetrarchies +tetraspores +tetrasporic +tetrastichs +tetrastyles +tetratheism +tetrathlons +tetravalent +Teutonicism +Teutonising +Teutonizing +textbookish +textualists +textureless +texturising +texturizing +Thailanders +thalassemia +thalassemic +thalassians +thalictrums +thalidomide +Thallophyta +thallophyte +thanatology +thanatopsis +thankfuller +thanklessly +thanksgiver +thankworthy +Thatcherism +Thatcherite +thaumatrope +thaumaturge +thaumaturgy +theanthropy +theatricals +theatricise +theatricism +theatricize +theftuously +thelytokous +thenceforth +theobromine +theocentric +theocracies +theocrasies +Theocritean +theodiceans +theodolites +theodolitic +theogonical +theogonists +theologates +theologians +theological +theologised +theologiser +theologises +theologists +theologized +theologizer +theologizes +theomachies +theomachist +theomaniacs +theomorphic +theopathies +theophagous +theophobiac +theophobist +theopneusty +theorematic +theoretical +theosophers +theosophise +theosophism +theosophist +theosophize +theotechnic +Therapeutae +therapeutic +thereabouts +therebeside +theretofore +therewithal +therewithin +theriolatry +theriomorph +thermalised +thermalises +thermalized +thermalizes +thermically +thermionics +thermistors +thermocline +thermoduric +thermogenic +thermograms +thermograph +thermolysis +thermolytic +thermometer +thermometry +thermonasty +thermophile +thermopiles +Thermopylae +thermoscope +thermostats +thermotaxes +thermotaxic +thermotaxis +thermotical +Theromorpha +thersitical +thesauruses +thesmothete +Thessalians +thickenings +thicknesses +thigmotaxis +thimblefuls +thimblerigs +thimbleweed +thingamabob +thingamajig +thingamybob +thingamyjig +thingliness +thingumabob +thingumajig +thingumbobs +thingummies +thioalcohol +thiocyanate +thiopentone +thirdstream +thirstiness +thirteenths +thitherward +thixotropes +thixotropic +Thomistical +thoracotomy +thornproofs +thoroughpin +thoroughwax +thoughtcast +thoughtless +thousandths +thrasonical +threadiness +threadmaker +threateners +threatening +threepences +threescores +threnetical +threnodists +thriftiness +thrillingly +throatiness +throatworts +throbbingly +thrombocyte +thrombosing +throttlings +throughways +thrummingly +thruppences +Thucydidean +thumbpieces +thumbprints +thumbscrews +thunderbird +thunderbolt +thunderhead +thunderings +thunderless +thuriferous +thwartingly +thwartships +thyroiditis +Thyrostraca +thyrotropin +thysanurans +thysanurous +tibiotarsus +tichorrhine +tickettyboo +Ticonderoga +tiddlywinks +tiebreakers +tiggywinkle +tigrishness +tillandsias +timbromania +timbrophily +timetabling +timocracies +tirailleurs +tirociniums +Titanically +Titanomachy +Titianesque +titillating +titillation +titillative +titillators +tittivating +tittivation +titubations +toastmaster +tobacconist +Tobagonians +tobogganers +tobogganing +tobogganist +toccatellas +toddlerhood +toffishness +Togolanders +toilinettes +tolbutamide +tolerations +tollbridges +tomahawking +tomatilloes +tomboyishly +tomographic +tonetically +tonguesters +tonnishness +tonsillitic +tonsillitis +toothpastes +toothsomely +toothwashes +topectomies +toplessness +toploftical +topographer +topographic +topological +topologists +toponymical +torchlights +tormentedly +tormentings +torpedinous +torpedoists +torpescence +torrentuous +Torridonian +torsibility +torsiograph +tortfeasors +torticollis +Tortricidae +torturesome +torturingly +tostication +totalisator +totalizator +totipalmate +totteringly +touchstones +toughenings +tourbillion +tourbillons +tournaments +tourniquets +tovarisches +townscaping +townspeople +toxicogenic +toxicologic +toxicomania +toxiphagous +toxiphobiac +toxophilite +toxoplasmic +trabeations +trabeculate +tracasserie +tracelessly +trachearian +trachearies +tracheotomy +Trachinidae +trackerball +tracklement +tracklessly +tractarians +tractorfeed +tradesfolks +tradeswoman +tradeswomen +traditional +traditioner +traducement +traducingly +traductions +trafficator +traffickers +trafficking +trafficless +tragacanths +tragedienne +Tragelaphus +traineeship +traitorhood +traitorship +traitresses +trajections +trammellers +trammelling +tramontanas +tramontanes +trampolined +trampoliner +trampolines +tranquility +tranquilize +tranquiller +transacting +transaction +transactors +transalpine +transandean +transandine +transcalent +transceiver +transcended +transcribed +transcriber +transcribes +transcripts +transducers +transductor +transecting +transection +transeptate +transfected +transferase +transferees +transferors +transferral +transferred +transferrer +transferrin +transfigure +transfinite +transfixing +transfixion +transformed +transformer +transfusers +transfusing +transfusion +transfusive +transhipped +transhipper +transhumant +transhuming +transiently +transilient +transistors +transitable +transitions +transitting +Transkeians +translating +translation +translative +translators +translatory +translocate +translucent +translunary +transmanche +transmarine +transmittal +transmitted +transmitter +transmuters +transmuting +transpadane +transparent +transpierce +transpiring +transplants +transponder +transportal +transported +transporter +transposals +transposers +transposing +transposons +transputers +transsexual +transsonics +transudates +transuranic +transvalued +transvaluer +transvalues +transversal +transversed +transverses +transvested +transvestic +trapeziform +trapeziuses +trapezoidal +Trappistine +trapshooter +traumatised +traumatises +traumatized +traumatizes +travelators +travellings +travelogues +traversable +traversings +travolators +traymobiles +treacheries +treacherous +treacliness +treasonable +treasonably +trecentists +trekschuits +tremblement +tremblingly +tremolandos +tremulating +tremulously +trenchantly +trepanation +trepidation +trepidatory +treponemata +trespassers +trespassing +triaconters +triangulate +triathletes +tribalistic +tribeswoman +tribeswomen +tribologist +tribometers +tribulation +tribuneship +tribunicial +tribunician +tribunitial +tribunitian +tributaries +tributarily +triceratops +trichinella +trichinised +trichinises +trichinized +trichinizes +trichinosed +trichinoses +trichinosis +trichinotic +trichogynes +trichomonad +Trichomonas +Trichoptera +trichromats +trichronous +tricksiness +tricliniums +tricoloured +tricoteuses +tricyclings +tricyclists +tridominium +triennially +trierarchal +trifurcated +trifurcates +trigeminals +triggerfish +trilaterals +trillionths +trimestrial +trimetrical +trimetrogon +trimorphism +trimorphous +Trinidadian +triniscopes +Trinitarian +trinitrates +trinketings +Trinobantes +tripehounds +tripersonal +tripetalous +triphibious +triphyllous +triplicated +triplicates +tripudiated +tripudiates +triquetrous +trisections +tristichous +trisulphide +trisyllabic +trisyllable +tritagonist +tritheistic +trithionate +triturating +trituration +triturators +triumphings +triumvirate +trivalences +trivalvular +trivialised +trivialises +trivialized +trivializes +trivialness +trochanters +Trochilidae +trochiluses +trochometer +trochophore +trochotrons +troglodytes +troglodytic +trombiculid +trombonists +tromometers +tromometric +tropaeolums +trophoblast +trophoplasm +trophotaxis +trophozoite +tropicbirds +tropomyosin +tropophytes +tropophytic +troposphere +troubadours +troubleshot +troublesome +troublously +trouserings +trouvailles +Trubenising +Trubenizing +truculently +trumpetings +truncations +truncheoned +trunkfishes +trusteeship +trustworthy +trypanocide +Trypanosoma +trypanosome +tryptophane +tsareviches +tschernosem +tsesarevich +tsesarevnas +tsesarewich +tubectomies +tuberaceous +tuberculate +tuberculise +tuberculize +tuberculoma +tuberculose +tuberculous +tuberculums +tubiflorous +tubularians +tubulations +tubulatures +tuckerboxes +Tudorbethan +tulipomania +tumblerfuls +tumefacient +tumefaction +tumescences +tumorigenic +tumultuated +tumultuates +tunableness +tunefulness +tunnellings +Turbellaria +turbulators +turbulences +turbulently +turcopolier +turgescence +turgescency +Turkicising +Turkicizing +turnarounds +turnbuckles +Turneresque +turpentined +turpentines +turriculate +turtlebacks +turtlenecks +Tutankhamen +Tutankhamun +twalpennies +twanglingly +tweedledeed +tweedledees +tweedledums +twelvemonth +twelvescore +twichildren +twinflowers +twinighters +twitterings +twofoldness +tympaniform +typecasting +typescripts +typesetters +typewriters +typewriting +typewritten +typicalness +typographer +typographia +typographic +typological +typologists +tyrannesses +tyrannicide +tyrannising +tyrannizing +tyrannosaur +tyrannously +tyroglyphid +Tyroglyphus diff --git a/com/agnibho/code/anagram/dictionary/T12.txt b/com/agnibho/code/anagram/dictionary/T12.txt new file mode 100644 index 0000000..87c247f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T12.txt @@ -0,0 +1,639 @@ +tabefactions +tabernacular +tabularising +tabularizing +tacheometers +tacheometric +tachygrapher +tachygraphic +tachyphrasia +tactlessness +tactualities +Tagliacotian +tailormaking +talismanical +Tamaricaceae +tambourinist +tameableness +tamelessness +tangentially +tangibleness +tantalisings +taphonomical +taphonomists +tapsalteerie +taramasalata +taratantaras +Tardenoisian +tarradiddles +taskmistress +tastefulness +Tattersall's +tauroboliums +tauromachian +tauromachies +tautochrones +tautological +tautologised +tautologises +tautologisms +tautologists +tautologized +tautologizes +taxidermised +taxidermises +taxidermists +taxidermized +taxidermizes +teachability +teacherships +teaspoonfuls +technicality +technicising +technicizing +technicolour +technobabble +technocratic +technography +technojunkie +technologies +technologist +technomaniac +technophiles +technophobes +technophobia +technophobic +technostress +tectonically +teetotallers +telaesthesia +telaesthetic +Telautograph +telecommuted +telecommuter +telecommutes +telecontrols +telecottages +t�l�f�riques +telegraphers +telegraphese +telegraphing +telegraphist +telemarketer +Telemessages +telemetering +teleological +teleologists +teleosaurian +teleostomous +telepathised +telepathises +telepathists +telepathized +telepathizes +t�l�ph�rique +telephonists +telepresence +teleprinters +teleprompter +telerecorded +telergically +telescopical +telescopists +teleservices +teleshopping +telesmatical +telesoftware +teleutospore +televisional +televisually +tellurometer +temperaments +temperatures +temperedness +temporalness +temporalties +temporaneous +temporisings +temporizings +temptability +temptingness +tentaculites +tenuirostral +teratologist +teratomatous +tercentenary +terebinthine +terebrations +terebratulae +terebratulas +tergiversate +terminations +termitariums +terraforming +terrestrials +terribleness +terrifically +terrifyingly +territorials +tessellating +tessellation +testamentary +testiculated +testificates +testificator +testimonials +testosterone +testudineous +tetanisation +tetanization +tetrachordal +tetrachotomy +tetracycline +tetradactyls +tetradactyly +tetradrachms +tetradynamia +tetragonally +tetrahedrite +tetrahedrons +tetramorphic +tetrapolises +tetrapolitan +tetrapterous +tetrarchates +tetrarchical +tetrasporous +tetrastichal +tetrastichic +tetrodotoxin +Teutonically +thalassaemia +thalassaemic +thallophytes +thallophytic +thankfullest +thankfulness +thanksgivers +thanksgiving +Thatcherites +thaumatogeny +thaumatology +thaumatropes +thaumaturges +thaumaturgic +thaumaturgus +theanthropic +theatrically +theatricised +theatricises +theatricized +theatricizes +theatromania +theatrophone +thematically +Themistocles +theocratical +theologaster +theologisers +theologising +theologizers +theologizing +theomachists +theomorphism +Theopaschite +theopathetic +theophobiacs +theophobists +Theophrastus +theophylline +theopneustic +theorematist +theoretician +theosophical +theosophised +theosophises +theosophists +theosophized +theosophizes +therapeutics +therapeutist +thereagainst +thereinafter +therethrough +Theriodontia +theriomorphs +thermalising +thermalizing +Thermidorian +thermoclines +thermographs +thermography +thermolabile +thermometers +thermometric +thermophilic +thermoscopes +thermoscopic +thermosiphon +thermosphere +thermostable +thermostatic +thermotactic +thermotropic +Thesmophoria +thesmothetes +Thessalonian +Thessalon�ki +thievishness +thigmotactic +thigmotropic +thingamabobs +thingamajigs +thingamybobs +thingamyjigs +thingumabobs +thingumajigs +thingummybob +thingummyjig +Thiobacillus +thiocyanates +thiodiglycol +thiosulphate +thirdborough +thirteenthly +thitherwards +thoracoscope +thoracostomy +thoroughbred +thoroughfare +thoroughness +thoughtcasts +thoughtfully +thousandfold +threadmakers +threatenings +threepennies +thriftlessly +thrivingness +thrombocytes +thrombolytic +thruppennies +thunderbirds +thunderbolts +thunderboxes +thunderflash +thunderheads +thunderingly +thunderously +Thurberesque +thymectomies +thyrotrophin +Thysanoptera +ticklishness +tiddledywink +tigerishness +tiggywinkles +timbrologist +timbromaniac +timelessness +timocratical +timorousness +tintinnabula +tirelessness +tiresomeness +titaniferous +Titanosaurus +titillations +tittivations +titularities +toastmasters +tobacconists +tobogganings +tobogganists +togetherness +toilsomeness +tolerability +tomfooleries +tonelessness +tonsillotomy +toothbrushes +topicalities +toploftiness +topographers +topsyturvied +topsyturvies +topsyturvily +tormentingly +Torpedinidae +torrefaction +torrentially +Torricellian +torsiographs +tortuousness +tostications +totalisation +totalisators +totalitarian +totalization +totalizators +touchingness +tourbillions +towardliness +toxicologist +toxicophobia +toxiphobiacs +toxocariasis +toxophilites +toxophilitic +trabeculated +traceability +trachearians +tracheophyte +tracheoscopy +tracheostomy +trachomatous +Trachypterus +trackerballs +tracklements +tractability +tractibility +tractoration +tradescantia +tradespeople +traditionary +traditioners +traditionist +traducements +Traducianism +Traducianist +trafficators +traffickings +tragediennes +tragelaphine +tragicalness +trainability +traineeships +traitorously +trajectories +tralaticious +tralatitious +trampoliners +trampolining +trampolinist +tranquilized +tranquilizer +tranquilizes +tranquillest +tranquillise +tranquillity +tranquillize +tranquilness +transactions +transaminase +transcalency +transceivers +transcendent +transcending +transcribers +transcribing +transduction +transductors +transfecting +transfection +transferable +transference +transferrals +transferrers +transferring +transfigured +transfigures +transfixions +transformers +transforming +transformism +transformist +transfusable +transfusible +transfusions +transgenesis +transgressed +transgresses +transgressor +transhipment +transhippers +transhipping +transhumance +transiliency +transitional +transitively +transitivity +transitorily +translatable +translations +transleithan +translocated +translocates +translucence +translucency +transmigrant +transmigrate +transmission +transmissive +transmittals +transmitters +transmitting +transmogrify +transmontane +transmundane +transmutable +transmutably +transoceanic +transpacific +transparence +transparency +transpicuous +transpierced +transpierces +transpirable +transplanted +transplanter +transponders +transpontine +transportals +transporters +transporting +transportive +transposable +transposings +transsexuals +transshipped +transshipper +transudation +transudatory +transumption +transumptive +transuranian +transuranium +transvaluers +transvaluing +transversals +transversely +transversing +transversion +transvesting +transvestism +transvestist +transvestite +Transylvania +trapezohedra +traumatising +traumatizing +traumatology +treelessness +tremblements +tremendously +trepanations +trepidations +triadelphous +triangularly +triangulated +triangulates +tribespeople +tribologists +tribulations +tribuneships +tricentenary +tricephalous +trichinellae +trichinellas +trichiniasis +trichinising +trichinizing +trichinosing +Trichiuridae +trichologist +trichomonads +trichophyton +trichotomies +trichotomise +trichotomize +trichotomous +trichromatic +trickishness +trickstering +tricorporate +tricuspidate +tridactylous +tridominiums +trierarchies +triflingness +trifurcating +trifurcation +triglyceride +trigonometer +trigonometry +trigrammatic +trilaterally +trimethylene +trinacriform +Trinidadians +Trinitarians +trinomialism +trinomialist +tripartition +triphthongal +triplicating +triplication +triplicities +Tripolitania +tripudiating +tripudiation +trisectrixes +Trismegistus +trisyllables +tritagonists +trithionates +triticalness +trituberculy +triturations +triumphalism +triumphalist +triumphantly +triumvirates +trivalencies +trivialising +trivializing +trochanteric +trocheameter +trochiscuses +trochometers +trochosphere +troglodytism +trophallaxis +trophobiosis +trophobiotic +trophoblasts +trophoplasms +trophotactic +trophotropic +trophozoites +tropological +tropophilous +troposcatter +tropospheric +troublemaker +troubleshoot +truncheoning +trusteeships +trustfulness +truthfulness +trypaflavine +trypanocidal +trypanocides +trypanosomes +tsarevitches +tsesarevitch +tsesarewitch +tuberculated +tuberculised +tuberculises +tuberculized +tuberculizes +tuberculomas +tuberculosed +tuberculosis +tuberiferous +tuberosities +tubularities +tubulifloral +tumefactions +tumultuating +tumultuation +tumultuously +turacoverdin +turbellarian +turbidimeter +turbocharged +turbocharger +turbulencies +Turcophilism +turcopoliers +turgescences +Turkmenistan +turnbroaches +turpentining +turriculated +twelvemonths +twitterboned +twitteringly +twopenn'orth +typification +typographers +typographies +typographist +tyrannically +tyrannicidal +tyrannicides +tyrannosaurs +tyroglyphids diff --git a/com/agnibho/code/anagram/dictionary/T13.txt b/com/agnibho/code/anagram/dictionary/T13.txt new file mode 100644 index 0000000..1078f4c --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T13.txt @@ -0,0 +1,400 @@ +tablespoonful +tachistoscope +tachometrical +tachygraphers +tachygraphist +tachymetrical +talkativeness +tambourinists +tangentiality +tantalisation +tantalisingly +tantalization +tantalizingly +taphrogenesis +taramasalatas +taratantaraed +tariffication +tartarisation +tartarization +tastelessness +tauromorphous +tautochronism +tautochronous +tautologising +tautologizing +tautologously +tautometrical +tautophonical +taxidermising +taxidermizing +taxonomically +teachableness +technicalness +technocracies +technojunkies +technological +technologists +technomaniacs +technopolises +technopolitan +telautography +telecommuters +telecommuting +teleconverter +telecottaging +teledildonics +telegrammatic +telegraphists +telemarketers +telemarketing +telencephalic +telencephalon +teleosaurians +telepathising +telepathizing +t�l�ph�riques +teleportation +teleprompters +telerecording +telescopiform +teleutospores +televangelism +televangelist +televisionary +tellurometers +temerariously +temperability +temperamental +temperateness +tempestuously +temporalities +temporariness +temporisation +temporisingly +temporization +temporizingly +temptableness +tenaciousness +tendentiously +Tenebrionidae +tenosynovitis +tenovaginitis +tentativeness +teratogenesis +teratological +teratologists +tercentennial +tergiversated +tergiversates +tergiversator +terminability +terminational +terminatively +terminologies +terpsichoreal +terpsichorean +terrestrially +territorially +terrorisation +terrorization +tessellations +Testicardines +testification +testificators +testificatory +tetanisations +tetanizations +tetartohedral +tetrabasicity +Tetrabranchia +tetrachloride +tetradynamous +tetrahedrally +tetrastichous +tetrasyllabic +tetrasyllable +Teutonisation +Teutonization +Thalamiflorae +thalamifloral +thalassocracy +thalattocracy +thanatography +thanatophobia +thanklessness +thanksgivings +thankworthily +thaumatolatry +thaumaturgics +thaumaturgism +thaumaturgist +theanthropism +theanthropist +theatricalise +theatricalism +theatricality +theatricalize +theatricising +theatricizing +theatrophones +thenceforward +theologasters +theologically +theologoumena +theopaschitic +theorematical +theorematists +theoretically +theoreticians +theosophising +theosophizing +therapeutists +thereinbefore +theriomorphic +Thermidorians +thermobalance +thermochemist +thermodynamic +thermogenesis +thermogenetic +thermographer +thermographic +thermonuclear +thermophilous +thermoplastic +thermosetting +thermotherapy +thermotropism +Thessalonians +thigmotropism +thimblerigged +thimblerigger +thingummybobs +thingummyjigs +thiocarbamide +thirdboroughs +thoracentesis +thoracoplasty +thoroughbrace +thoroughbreds +thoroughfares +thoroughwaxes +thoughtlessly +thrasonically +threateningly +threefoldness +thremmatology +thrillingness +thrombokinase +thrombophilia +thurification +Thymelaeaceae +thyroidectomy +tibiotarsuses +tiddledywinks +timbrologists +timbromaniacs +timbrophilist +tintinnabular +tintinnabulum +Titanotherium +titillatingly +toastmistress +tobaccanalian +tolerationism +tolerationist +tomboyishness +tonsillectomy +toothsomeness +topographical +topologically +topsyturvydom +topsyturvying +torrefactions +torrentiality +totalisations +totalitarians +totalizations +totipalmation +touchableness +toxicological +toxicologists +toxicophagous +toxoplasmosis +traceableness +tracheotomies +tracklessness +tractableness +tractarianism +tractorations +tradescantias +tradesmanlike +traditionally +traditionists +trampolinists +tranquilizers +tranquilizing +tranquillised +tranquilliser +tranquillises +tranquillized +tranquillizer +tranquillizes +transactinide +transactional +transatlantic +transcendence +transcendency +transcribable +transcriptase +transcription +transcriptive +transductions +transferences +transferrable +transferrible +transfiguring +transformable +transformings +transformists +transfusively +transgressing +transgression +transgressive +transgressors +transhippings +transhumances +transientness +transisthmian +transistorise +transistorize +transitionary +translational +translatorial +transliterate +translocating +translocation +translucently +translucidity +transmigrants +transmigrated +transmigrates +transmigrator +transmissible +transmissions +transmittable +transmittance +transmittible +transmutation +transmutative +transnational +transparences +transparently +transpersonal +transpiercing +transpiration +transpiratory +transplanters +transplanting +transportable +transportance +transportedly +transportings +transportship +transposition +transpositive +transshipment +transshippers +transshipping +transudations +transumptions +transversally +transversions +transvestists +transvestites +Transylvanian +trapezohedral +trapezohedron +traumatically +traumatonasty +treacherously +treasurership +tremulousness +triangularity +triangulately +triangulating +triangulation +triatomically +triboelectric +tributariness +tricarboxylic +tricarpellary +tricentennial +triceratopses +trichological +trichologists +trichophytons +trichopterist +trichopterous +trichotomised +trichotomises +trichotomized +trichotomizes +trichromatism +tricksterings +tricorporated +triethylamine +trifurcations +triglycerides +trigonometers +trigonometric +trilateralism +trilateralist +trilateration +trilingualism +triliteralism +trinomialists +tripartitions +triplications +Tripolitanian +tripudiations +triquetrously +trisaccharide +trisoctahedra +trisyllabical +tritheistical +tritubercular +triumphalists +trocheameters +troglodytical +Tropaeolaceae +trophallactic +trophoblastic +trophotropism +troublemakers +troubleshoots +troublesomely +troublousness +trustlessness +trustworthily +truthlessness +tsesareviches +tsesarewiches +tuberculation +tuberculising +tuberculizing +tubuliflorous +tumultuations +turbellarians +turbidimeters +turbochargers +turbocharging +turgescencies +tweedledeeing +twopenn'orths +twopennyworth +typifications +typographical +typographists +tyrannosaurus diff --git a/com/agnibho/code/anagram/dictionary/T14.txt b/com/agnibho/code/anagram/dictionary/T14.txt new file mode 100644 index 0000000..29aa338 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T14.txt @@ -0,0 +1,221 @@ +tablespoonfuls +tabularisation +tabularization +tacheometrical +tachistoscopes +tachistoscopic +tachygraphical +tachygraphists +tantalisations +tantalizations +taratantaraing +taskmistresses +tatterdemalion +tautologically +technicalities +technicoloured +telangiectasia +telangiectasis +telangiectatic +telautographic +teleconference +teleconverters +telejournalism +telejournalist +teleologically +telepathically +telephonically +telephotograph +teleprocessing +telerecordings +telescopically +telesmatically +Teletypesetter +teletypewriter +televangelical +televangelists +temperamentful +tendovaginitis +tercentenaries +tercentennials +tergiversating +tergiversation +tergiversators +tergiversatory +terminableness +terminological +terotechnology +territorialise +territorialism +territorialist +territoriality +territorialize +testamentarily +testifications +testimonialise +testimonialize +tetrachlorides +tetrachotomies +tetrachotomous +tetradactylous +tetragrammaton +tetrasporangia +tetrasyllables +thalassography +thaumatography +thaumaturgical +thaumaturgists +thaumaturguses +theanthropists +theatricalised +theatricalises +theatricalized +theatricalizes +theatricalness +theocratically +theologoumenon +Theopaschitism +theosophically +therianthropic +theriomorphism +theriomorphous +thermalisation +thermalization +thermobalances +thermochemical +thermochemists +thermodynamics +thermographers +thermometrical +thermophyllous +thermotolerant +thimbleriggers +thimblerigging +thoroughbraced +thoroughbraces +thoughtfulness +threadbareness +thriftlessness +thrombokinases +thromboplastin +thunderflashes +thunderousness +thymelaeaceous +thyrotoxicosis +thysanopterous +timbrophilists +tintinnabulant +tintinnabulary +tintinnabulate +tintinnabulous +Tiruchirapalli +tobaccanalians +tolerationists +tomfoolishness +tonsillotomies +topsyturviness +tracheoscopies +tracheostomies +Trachypteridae +traditionalism +traditionalist +traditionality +traditionarily +traducianistic +traitorousness +tranquillisers +tranquillising +tranquillizers +tranquillizing +transcaucasian +transcendences +transcendental +transcendently +transcriptions +transcutaneous +transferential +transformation +transformative +transformistic +transfusionist +transgressions +transistorised +transistorises +transistorized +transistorizes +transitionally +transitiveness +transitoriness +transliterated +transliterates +transliterator +translocations +transmigrating +transmigration +transmigrative +transmigrators +transmigratory +transmissional +transmissivity +transmogrified +transmogrifies +transmutations +transparencies +transpicuously +transpirations +transplantable +transportation +transportingly +transpositions +transsexualism +transshipments +transvaluation +transversality +transvestitism +Transylvanians +trapezohedrons +traumatisation +traumatization +treasurerships +tremendousness +triangulations +trichinisation +trichinization +trichobacteria +trichomoniasis +trichophytosis +trichopterists +trichotomising +trichotomizing +trichotomously +triconsonantal +triconsonantic +tridimensional +trilateralists +trimethylamine +Trinitarianism +trinitrophenol +trinitrotoluol +tripersonalism +tripersonalist +tripersonality +triphenylamine +Tripolitanians +trisaccharides +trisoctahedron +trituberculate +trituberculism +trivialisation +trivialization +Trochelminthes +trophoneurosis +tropologically +troubleshooter +tsesarevitches +tsesarewitches +tuberculations +tumorigenicity +tumultuousness +turbochargings +twopennyworths +tyrannicalness diff --git a/com/agnibho/code/anagram/dictionary/T15.txt b/com/agnibho/code/anagram/dictionary/T15.txt new file mode 100644 index 0000000..95b7bb5 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T15.txt @@ -0,0 +1,126 @@ +tabularisations +tabularizations +tarsometatarsal +tarsometatarsus +tatterdemalions +tatterdemallion +technologically +technostructure +Tectibranchiata +tectibranchiate +teleconferenced +teleconferences +telegraphically +telejournalists +telephotographs +telephotography +telestereoscope +Teletypesetters +teletypewriters +temperamentally +tempestuousness +tendentiousness +tentaculiferous +tergiversations +territorialised +territorialises +territorialists +territorialized +territorializes +testimonialised +testimonialises +testimonialized +testimonializes +Tetrabranchiata +tetrabranchiate +Tetractinellida +tetragrammatons +tetrasporangium +tetrasyllabical +thalassocracies +thalassographer +thalassographic +thalassotherapy +thalattocracies +thanatognomonic +thankworthiness +theatricalising +theatricalizing +theorematically +theosophistical +therapeutically +therianthropism +theriomorphosis +thermochemistry +thermodynamical +thickheadedness +thiobarbiturate +thirtysomething +thoroughgoingly +thoughtlessness +threepennyworth +thromboembolism +thunderstricken +tintinnabulated +tintinnabulates +toastmistresses +tonsillectomies +topographically +totalitarianism +toxicologically +traditionalists +tranquilization +tranquilizingly +transactionally +transcendencies +transcriptional +transcriptively +transferability +transfiguration +transfigurement +transformations +transfusionists +transgressional +transgressively +transilluminate +transistorising +transistorizing +translationally +transliterating +transliteration +transliterators +transmigrations +transmogrifying +transmutability +transmutational +transparentness +transplantation +transportations +transportedness +transposability +transpositional +transubstantial +transvaluations +traumatological +traumatonasties +treacherousness +treasonableness +trichinisations +trichinizations +trigonometrical +trinitrobenzene +trinitrotoluene +tripersonalists +trisoctahedrons +trisyllabically +trivialisations +trivializations +troubleshooters +troubleshooting +troublesomeness +trustworthiness +trypanosomiasis +tuberculisation +tuberculization +typographically +tyrannosauruses diff --git a/com/agnibho/code/anagram/dictionary/T16.txt b/com/agnibho/code/anagram/dictionary/T16.txt new file mode 100644 index 0000000..7be3129 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T16.txt @@ -0,0 +1,53 @@ +tatterdemallions +teleconferencing +telephotographic +telespectroscope +terminologically +Ternstroemiaceae +territorialising +territorializing +testimonialising +testimonializing +tetrahydrofolate +thalamencephalic +thalamencephalon +theophilanthropy +thermochemically +thermoelectrical +thermometrically +thermometrograph +thermoplasticity +thermoscopically +thermostatically +thigmotactically +thiobarbiturates +thirtysomethings +thrombophlebitis +tintinnabulating +tintinnabulation +traditionalistic +tranquillisation +tranquillisingly +tranquillization +tranquillizingly +transcendentally +transcendentness +transcontinental +transferrability +transferribility +transfigurations +transformational +transliterations +transmigrational +transmissibility +transmissiveness +transmutableness +transmutationist +transportability +transubstantiate +triboluminescent +trichlorethylene +trichotillomania +triphenylmethane +triskaidekaphobe +Trypanosomatidae diff --git a/com/agnibho/code/anagram/dictionary/T17.txt b/com/agnibho/code/anagram/dictionary/T17.txt new file mode 100644 index 0000000..1fd3c6d --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T17.txt @@ -0,0 +1,24 @@ +telecommunication +theophilanthropic +thermoluminescent +thoroughgoingness +transcendentalise +transcendentalism +transcendentalist +transcendentality +transcendentalize +transcriptionally +transillumination +transistorisation +transistorization +transmigrationism +transmigrationist +transubstantially +transubstantiator +triakisoctahedron +triboluminescence +trichloroethylene +trigonometrically +triskaidecaphobia +triskaidekaphobes +triskaidekaphobia diff --git a/com/agnibho/code/anagram/dictionary/T18.txt b/com/agnibho/code/anagram/dictionary/T18.txt new file mode 100644 index 0000000..35f2587 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T18.txt @@ -0,0 +1,19 @@ +telecommunications +territorialisation +territorialization +tetrachlorethylene +tetrachloromethane +tetrakishexahedron +theophilanthropism +theophilanthropist +thermoluminescence +topsyturvification +transcendentalised +transcendentalises +transcendentalized +transcendentalizes +transcontinentally +transformationally +transmogrification +transubstantiation +transubstantiators diff --git a/com/agnibho/code/anagram/dictionary/T19.txt b/com/agnibho/code/anagram/dictionary/T19.txt new file mode 100644 index 0000000..766e7b5 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T19.txt @@ -0,0 +1,4 @@ +tetrachloroethylene +transcendentalising +transcendentalizing +transmogrifications diff --git a/com/agnibho/code/anagram/dictionary/T2.txt b/com/agnibho/code/anagram/dictionary/T2.txt new file mode 100644 index 0000000..93d2ed2 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T2.txt @@ -0,0 +1,4 @@ +ta +te +ti +to diff --git a/com/agnibho/code/anagram/dictionary/T20.txt b/com/agnibho/code/anagram/dictionary/T20.txt new file mode 100644 index 0000000..1b59527 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T20.txt @@ -0,0 +1,2 @@ +tetrahydrocannabinol +Trockenbeerenauslese diff --git a/com/agnibho/code/anagram/dictionary/T21.txt b/com/agnibho/code/anagram/dictionary/T21.txt new file mode 100644 index 0000000..516f42c --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T21.txt @@ -0,0 +1 @@ +transubstantiationist diff --git a/com/agnibho/code/anagram/dictionary/T22.txt b/com/agnibho/code/anagram/dictionary/T22.txt new file mode 100644 index 0000000..9025dd6 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T22.txt @@ -0,0 +1 @@ +transubstantiationists diff --git a/com/agnibho/code/anagram/dictionary/T23.txt b/com/agnibho/code/anagram/dictionary/T23.txt new file mode 100644 index 0000000..4768632 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T23.txt @@ -0,0 +1 @@ +transubstantiationalist diff --git a/com/agnibho/code/anagram/dictionary/T3.txt b/com/agnibho/code/anagram/dictionary/T3.txt new file mode 100644 index 0000000..1452e89 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T3.txt @@ -0,0 +1,71 @@ +tab +tad +tae +tag +tai +taj +tam +tan +tao +tap +tar +tas +tat +tau +taw +tax +tay +tea +ted +tee +tef +teg +tel +ten +tes +Tet +tew +the +tho +thy +Tib +tic +tid +tie +tig +til +Tim +tin +tip +tis +tit +Tiu +Tiw +toc +tod +toe +tog +tom +ton +too +top +tor +tot +tow +toy +try +tub +tug +tui +tum +tun +tup +tut +tux +twa +Twi +two +twp +tye +tyg +Tyr diff --git a/com/agnibho/code/anagram/dictionary/T4.txt b/com/agnibho/code/anagram/dictionary/T4.txt new file mode 100644 index 0000000..00f88bb --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T4.txt @@ -0,0 +1,322 @@ +taal +tabi +tabs +tabu +tace +tach +tack +taco +tact +tads +tael +Taft +tags +taha +tahr +taig +tail +tais +tait +taka +take +taki +taky +tala +talc +tale +tali +talk +tall +tame +tamp +tams +tana +tane +tang +tanh +tank +tans +tapa +tape +taps +tapu +tara +tare +tarn +taro +tarp +tars +tart +tash +task +tass +tate +tath +Tati +tats +tatt +tatu +taus +taut +tava +tawa +taws +taxa +taxi +tead +teak +teal +team +Tean +tear +teas +teat +tech +teds +teed +teel +teem +teen +teer +tees +teff +tefs +tegg +tegs +tegu +tehr +teil +tela +teld +tell +tels +telt +teme +temp +tems +tend +tene +tens +tent +term +tern +Tess +test +t�te +tews +text +thae +Thai +than +thar +that +thaw +Thea +thee +them +then +Theo +thew +they +thig +thin +thir +this +thon +Thor +thou +thro +thru +thud +thug +thus +tiar +tice +tich +tick +tics +tide +tids +tidy +tied +tier +ties +tiff +tift +tige +tigs +tika +tike +tiki +tile +till +tils +tilt +time +Tina +tind +tine +ting +tink +tins +tint +tiny +tipi +tips +tipt +tire +tirl +tiro +tirr +tite +titi +Tito +tits +tizz +toad +toby +tock +toco +tods +tody +toea +toed +toes +toey +toff +toft +tofu +toga +Togo +togs +toho +toil +toke +toko +tola +told +tole +toll +tolt +tolu +tomb +tome +toms +tone +tong +Toni +tonk +tons +tony +took +tool +toom +toon +toot +tope +topi +tops +torc +tore +tori +torn +torr +tors +tort +Tory +tosa +tose +tosh +toss +tost +tote +tots +toun +tour +tout +town +tows +towy +toys +toze +trad +tram +trap +trat +tray +tree +tref +trek +tr�s +tret +trey +trez +trie +trig +trim +trin +trio +trip +Trix +trod +trog +tron +trot +trow +troy +true +trug +tsar +Tshi +tuan +tuba +tube +tubs +tuck +tufa +tuff +tuft +tugs +tuis +tule +tump +tums +tuna +tund +tune +tung +tuns +tuny +Tupi +tups +turd +turf +Turk +turm +turn +tush +tusk +tuts +tutu +twae +twal +twas +tway +twee +twig +twin +twit +twos +tyde +tyed +tyes +tygs +tyke +tymp +tynd +tyne +type +typo +tyre +tyro +tzar diff --git a/com/agnibho/code/anagram/dictionary/T5.txt b/com/agnibho/code/anagram/dictionary/T5.txt new file mode 100644 index 0000000..446270a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T5.txt @@ -0,0 +1,724 @@ +tabby +tabes +tabid +tabla +table +taboo +tabor +tabun +tabus +Tacan +taces +tacet +tache +tacho +tacit +tacks +tacky +tacos +tacts +Taegu +taels +ta'en +taffy +tafia +taggy +tagma +Tagus +tahas +Tahoe +tahrs +taiga +taigs +tails +Taino +taint +taira +taish +taits +Taiz� +tajes +Tajik +takas +taken +taker +takes +takhi +takin +takis +talak +talaq +talar +talas +talcs +talcy +talea +taler +tales +talks +talky +tally +talma +talon +talpa +taluk +talus +tamal +Tamar +tamed +tamer +tames +Tamil +tamin +tamis +tammy +Tampa +tamps +tanas +tanga +tangi +tango +tangs +tangy +tanka +tanks +tanky +tanna +tansy +tanti +tanto +Tanya +tapas +taped +tapen +taper +tapes +tapet +tapir +tapis +tappa +tapus +taras +tardy +tared +tares +targe +Tariq +Tarka +tarns +taroc +tarok +taros +tarot +tarps +tarre +tarry +tarsi +tarts +tarty +tasar +Taser +tasks +tasse +Tasso +taste +tasty +Tatar +tater +tates +taths +tatie +tatin +tatou +tatts +tatty +Tatum +tatus +taube +taunt +taupe +tauts +tavah +tavas +taver +tawas +tawed +tawer +tawie +tawny +tawse +taxed +taxer +taxes +taxis +taxol +taxon +taxor +Taxus +tayra +tazza +tazze +teach +teade +teaed +teaks +teals +teams +tears +teary +tease +teats +teaze +Tebet +techs +techy +teddy +teels +teems +teens +teeny +teers +teeth +teffs +teggs +tegus +tehrs +Teian +teils +teind +telae +telex +telia +telic +tells +telly +telos +temes +Tempe +tempi +tempo +temps +tempt +temse +tench +tends +tenes +tenet +tenia +tenn� +tenno +tenny +tenon +tenor +tense +tenth +tents +tenty +tenue +tepal +tepee +tepid +terai +teras +terce +terek +teres +terga +terms +terne +terns +terra +terry +terse +terts +tesla +Tessa +testa +teste +tests +testy +tetra +teuch +teugh +Tevet +tewed +tewel +tewit +Texan +texas +Texel +texts +thack +thagi +Thais +thana +thane +thank +thars +thaws +thawy +theca +theed +theek +thees +theft +thegn +theic +their +thema +theme +thens +theow +Thera +there +therm +these +theta +thete +thews +thewy +thick +thief +thigh +thigs +thilk +thill +thine +thing +think +thins +thiol +third +thirl +thoft +thole +tholi +thong +thorn +thorp +those +Thoth +thous +thowl +thraw +three +threw +throb +throe +throw +thrum +thuds +thugs +thuja +Thule +thumb +thump +Thuya +thyme +thymi +thymy +tiara +tiars +Tiber +Tibet +tibia +tical +ticca +tices +tichy +ticks +ticky +tidal +tiddy +tided +tides +tiers +tiffs +tifts +tiger +tiges +tight +tigon +Tigre +tikas +tikes +tikis +tikka +Tilda +tilde +tiled +tiler +tiles +Tilia +tills +Tilly +tilth +tilts +timb� +timed +timer +times +timid +Timmy +timon +Timor +timps +tinct +tinds +tinea +tined +tines +tinge +tings +tinks +tinny +tints +tinty +tipis +tippy +tipsy +tired +Tiree +tires +tirls +Tirol +tiros +tirrs +titan +titch +titer +tithe +titis +title +titre +titty +titup +Titus +tizzy +toads +toady +toast +toaze +Tobit +tocks +tocos +today +toddy +toffs +toffy +tofts +togas +toged +togue +tohos +toile +toils +toise +Tokaj +Tokay +toked +token +tokes +tokos +Tokyo +tolas +toled +toles +tolls +tolts +toman +tombs +tomes +tommy +Tomsk +tonal +tondi +tondo +toned +toner +tones +toney +tonga +tongs +tonic +tonks +tonne +Tonto +tonus +Tonys +tools +tooms +toons +tooth +toots +topaz +toped +topee +topek +toper +topes +tophi +topic +topis +topoi +topos +toque +Torah +toran +torch +torcs +tores +toric +torii +torrs +torse +torsi +torsk +torso +torte +torts +torus +tosas +Tosca +tosed +toses +toshy +tossy +total +toted +totem +totes +totty +touch +tough +touns +tours +touse +tousy +touts +towed +towel +tower +towns +towny +toxic +toxin +toyed +toyer +tozed +tozes +trace +track +tract +Tracy +trade +tragi +traik +trail +train +trait +tramp +trams +trant +trape +traps +trash +trass +trats +tratt +trave +trawl +trays +tread +treat +treck +treed +treen +trees +trefa +treif +treks +trema +trend +Trent +tress +trets +trews +treys +triad +trial +Trias +tribe +trice +trick +tried +trier +tries +triff +trigs +trike +trill +trims +trine +trins +trior +trios +tripe +trips +tripy +Trish +trist +trite +Trixy +troad +troat +trock +trode +trogs +Troic +troke +troll +tromp +trona +tronc +trone +trons +Troon +troop +trope +troth +trots +trout +trove +trows +truce +truck +Trudy +trued +truer +trues +trugs +trull +truly +trump +trunk +Truro +truss +trust +truth +tryer +tryst +tsars +tsuba +Tsuga +tuans +tuart +tuath +tubae +tubal +tubar +tubas +tubby +tubed +tuber +tubes +tucks +Tudor +tuffs +tufts +tufty +tugra +tuism +tules +tulip +tulle +Tulsa +tumid +tummy +tumor +tumps +tunas +tunds +tuned +tuner +tunes +tungs +tunic +Tunis +Tunku +tunny +tupek +tupik +Tupis +tuque +turbo +Turco +turds +turfs +turfy +Turin +Turki +Turks +turms +turns +turps +tushy +tusks +tusky +tutee +tutor +Tutsi +tutti +tutty +tutus +tuxes +twain +twals +twang +twank +tways +tweak +tweed +tweel +tweer +tweet +twerp +twice +twier +twigs +twill +twilt +twine +twink +twins +twiny +twire +twirl +twirp +twist +twite +twits +twoer +twyer +Tyche +Tycho +tying +tykes +tyler +tymps +tyned +tynes +typal +typed +types +Typha +typic +typos +typto +tyred +tyres +Tyrol +tyros +Tyson +tythe +tzars diff --git a/com/agnibho/code/anagram/dictionary/T6.txt b/com/agnibho/code/anagram/dictionary/T6.txt new file mode 100644 index 0000000..64aaa45 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T6.txt @@ -0,0 +1,1169 @@ +tabard +tabbed +tabefy +tablas +tabled +tables +tablet +taboos +tabors +tabour +tabret +Tabriz +tabued +tabula +taches +tachos +tacked +tacker +tacket +tackle +Tacoma +tactic +taddie +Tadjik +taenia +taffia +tafias +Tagday +tagged +taggee +tagger +Tagore +tagrag +taguan +tahina +tahini +Tahiti +tahsil +taiaha +taigas +taigle +tailed +taille +tailor +tailye +Tainos +taints +taipan +Taipei +tairas +taisch +taiver +Taiwan +Tajiks +tajine +takahe +takers +takhis +taking +takins +talars +talbot +talced +talcky +talcum +taleae +talent +talers +talion +talked +talker +talkie +taller +tallet +Tallis +tallow +talmas +Talmud +talons +talpas +taluka +taluks +talweg +tamale +tamals +tamanu +tamara +tamari +tambac +tamber +tamely +tamers +tamest +Tamils +tamine +taming +tamise +tammar +Tammie +Tammuz +tamped +tamper +tampon +Tamsin +Tanach +tandem +tangas +tanged +tangie +tangis +tangle +tangly +tangos +tangun +tanist +tankas +tanked +tanker +tankia +tannah +tannas +tanned +tanner +tannic +tannin +Tannoy +tanrec +Tantra +Taoism +Taoist +tapers +tapeta +tapeti +taping +tapirs +tapist +tappas +tapped +tapper +tappet +tappit +tarand +tarboy +tarcel +Tardis +targed +targes +target +Targum +tariff +taring +tarmac +tarnal +tarocs +taroks +tarots +tarpan +tarpon +tarras +tarred +tarres +tarrow +tarsal +tarsel +tarsia +tarsus +tartan +tartar +tarter +tartly +Tarzan +tasars +Tasers +tashed +tashes +tasked +tasker +taslet +Tasman +tassel +tasses +tasset +tassie +tasted +taster +tastes +tatami +Tatars +tatary +taters +tathed +taties +tatler +tatous +tatted +tatter +tattie +tattle +tattoo +tattow +taubes +taught +taunts +taupes +tauric +Taurus +tauted +tauten +tauter +tautit +tautly +tautog +tavahs +tavern +tavers +tavert +tawdry +tawery +tawing +tawney +tawpie +tawses +tawtie +taxers +taxied +taxies +taxing +taxman +taxmen +taxors +Taylor +tayras +tazzas +tchick +teacup +teagle +Teague +teaing +teamed +teamer +teapoy +tearer +teased +teasel +teaser +teases +teated +teazel +teazle +tebbad +Tebeth +techie +techno +teckel +tectum +tedded +tedder +teddie +tedium +teeing +teemed +teemer +teensy +teenty +teepee +teered +teeter +teethe +Teflon +tegmen +tegula +Tehran +teinds +telary +teledu +telega +Telegu +telesm +telfer +telial +telium +tellar +tell'd +tellen +teller +tellin +Tellus +telnet +telson +Telugu +temped +tempeh +temper +temple +tempos +tempts +temsed +temses +tenace +tenail +tenant +tended +tender +tendon +tendre +tenets +Tengku +teniae +tenias +tenner +tennis +tennos +tenons +tenors +tenour +tenpin +tenrec +tensed +tenser +tenses +tenson +tensor +tented +tenter +tenths +tentie +tenues +tenuis +tenure +tenuto +tenzon +tepees +tepefy +tephra +terais +teraph +terata +terbic +tercel +terces +tercet +tercio +teredo +terefa +tereks +Teresa +terete +Tereus +Terfel +tergal +tergum +termed +termer +Termes +termly +termor +ternal +terned +ternes +terrae +Terran +terras +terret +territ +terror +terser +tertia +teslas +testas +tested +testee +tester +testes +testis +teston +tetany +tetchy +tether +Tethys +tetrad +tetras +tetryl +tetter +tettix +Teuton +tewart +tewels +tewhit +tewing +tewits +Texaco +Texans +thacks +thairm +thaler +Thales +Thalia +thalli +Thames +thanah +thanas +thanes +Thanet +thanks +thanna +thatch +thawed +thawer +theave +Theban +Thebes +thecae +thecal +Thecla +theeks +thefts +thegns +theics +theine +theirs +theism +theist +Thelma +themed +themes +Themis +thenar +thence +theory +theows +theres +Theria +therms +theses +thesis +thetas +thetch +thetes +thetic +Thetis +thewed +thewes +they'd +Thibet +thicko +thicks +thicky +thieve +thighs +thills +things +thingy +thinks +thinly +thiols +thiram +thirds +thirls +thirst +thirty +Thisbe +thivel +thofts +tholed +tholes +tholoi +tholos +tholus +Thomas +thongs +thorax +thoria +thorns +thorny +thoron +thorpe +thorps +though +thowel +thowls +Thrace +thrall +thrang +thrash +thrave +thrawn +thraws +thread +threap +threat +threep +threes +threne +thresh +thrice +thrift +thrill +thrips +thrive +throat +throbs +throed +throes +throne +throng +throve +thrown +throws +thrums +thrush +thrust +thuggo +thujas +thulia +thumbs +thumby +thumps +Thurso +thwack +thwart +thyine +thymes +thymic +thymol +thymus +thyrse +thyrsi +tiaras +tibiae +tibial +tibias +ticals +tiches +ticked +ticken +ticker +ticket +tickey +tickle +tickly +tidbit +tiddle +tiddly +tidied +tidier +tidies +tidily +tiding +tierce +tiered +tiffed +tiffin +tifosi +tifoso +tifted +tigers +tigery +tigged +Tigger +tights +tiglon +tigons +Tigris +tildes +tilers +tilery +tiling +tilled +tiller +tilted +tilter +tilths +timbal +timber +timb�s +timbre +timely +timers +timing +timist +timous +tinaja +tincal +tincts +tindal +tinded +tinder +tineal +tineid +tinful +tinged +tinges +tingle +tingly +tinier +tining +tinked +tinker +tinkle +tinkly +tinman +tinmen +tinned +tinner +tinnie +tinpot +tinsel +tinted +tinter +Tintin +tipped +tipper +tippet +tipple +tiptoe +tiptop +tipula +tirade +Tirana +Tiran� +tiring +tirled +tiroes +tirred +tirrit +tisane +Tishri +Tissot +tissue +tiswas +titans +titbit +titchy +titfer +tithed +tither +tithes +titian +titled +titler +titles +titoki +titres +titted +titter +tittle +tittup +titule +titups +titupy +Tivoli +tizwas +tizzes +tmeses +tmesis +toasts +toasty +toazed +toazes +Tobago +Tobias +tobies +Tobruk +tocher +tocked +tocsin +todays +toddle +todies +toecap +toeing +toerag +toetoe +toffee +tofore +togaed +togate +togged +toggle +togues +toiled +toiler +toiles +toilet +toises +toison +toitoi +tokays +tokens +toking +Toledo +toling +tolled +toller +tolsel +tolsey +Toltec +tolter +toluic +toluol +tolzey +tomans +tomato +tombac +tombak +tombed +tombic +tomboc +tomboy +tomial +tomium +tompon +tomtit +tonant +tondos +toneme +toners +Tongan +tongas +tongue +tonics +tonier +Tonies +toning +tonish +tonite +tonked +tonker +tonlet +tonnag +tonner +tonnes +tonsil +tonsor +tooart +tooled +tooler +toomed +toorie +tooted +tooter +tooths +toothy +tootle +tootsy +topees +Topeka +topeks +topers +Tophet +tophus +topics +toping +topman +topmen +topped +topper +topple +toques +Torahs +torana +torans +Torbay +torero +Tories +Torify +toriis +Torino +toroid +torose +torous +torpid +torpor +torque +torret +torrid +torsel +torses +torsks +torsos +torten +tortes +torula +toruli +Toryfy +tosher +toshes +tosing +tossed +tosser +tosses +totals +totara +totems +tother +toting +totted +totter +tottie +toucan +touch� +touchy +toughs +Toulon +toupee +toupet +toured +tourer +tourie +toused +touser +touses +tousle +touted +touter +touzle +towage +toward +towbar +towels +towers +towery +towhee +towing +townee +townie +townly +towser +toxins +toxoid +toyers +toying +toyish +toyman +toymen +Toyota +tozing +traced +tracer +traces +Tracey +tracks +tracts +traded +trader +trades +tragic +tragus +traiks +trails +trains +traits +Trajan +Tralee +tramps +trance +tranny +trants +trapan +traped +trapes +trappy +trashy +tratts +trauma +travel +traves +travis +trawls +treads +treats +treaty +treble +trebly +trecks +tremas +tremie +tremor +trench +trends +trendy +Trento +trepan +trepid +tressy +trevis +Trevor +triact +triads +triage +trials +tribal +tribes +tricar +triced +trices +Tricia +tricks +tricky +tricot +triers +trifid +trifle +trigly +trigon +trijet +triked +trikes +trilby +trillo +trills +trimer +trimly +trinal +trined +trines +triode +triors +tripes +tripey +triple +triply +tripod +tripos +Trisha +triste +trisul +triter +trites +triton +triune +trivet +trivia +Trixie +troade +troads +troats +trocar +troche +trocks +trodes +troely +trogon +troika +Trojan +troked +trokes +trolls +trolly +trompe +tromps +Troms� +troncs +trones +troops +tropes +trophi +trophy +tropic +troppo +troths +trotyl +trough +troupe +trouse +trouts +trouty +trover +troves +trowed +trowel +Troyes +truant +truces +trucks +trudge +truest +truism +trulls +Truman +trumps +trunks +trusts +trusty +truths +truthy +tryers +Trygon +trying +trysts +tsamba +tsetse +tsotsi +tsubas +tsuris +Tswana +Tuareg +tuarts +tuaths +tubage +tubate +tubbed +tubber +tubers +tubful +tubing +tubule +Tucana +tuchun +tucked +tucker +tucket +Tucson +tuffet +tufted +tufter +tugged +tugger +tughra +tugrik +tuille +tulban +Tulipa +tulips +tulwar +tumble +tumefy +tumors +tumour +tumped +tumuli +tumult +tunded +tundra +tundun +tuners +Tungus +tunica +tunics +tuning +Tunker +tunned +tunnel +Tupaia +tupeks +tupelo +Tupian +tupiks +Tupman +tupped +tuques +turaco +turban +turbid +turbit +turbos +turbot +Turcos +Turdus +tureen +turfed +turfen +turgid +turgor +Turing +turion +turkey +Turkic +turkis +turned +turner +turnip +Turpin +turret +turtle +turves +Tuscan +tusche +tushed +tushes +tushie +tuskar +tusked +tusker +tussah +tussal +tusseh +tusser +tussis +tussle +tutees +tutman +tutmen +tutors +tutrix +tutsan +tutses +Tutsis +tutted +tuttis +Tuvalu +tuxedo +tuy�re +twains +twaite +twangs +twangy +twanks +tweaks +tweeds +tweedy +tweels +tweely +tweeny +tweers +tweest +tweets +tweeze +twelve +twenty +twerps +twicer +twiers +twiggy +twilit +twills +twilly +twilts +twined +twiner +twines +twinge +twinks +twires +twirls +twirly +twirps +twists +twisty +twitch +twites +twoers +twyere +twyers +Tybalt +Tyburn +tycoon +tyeing +tykish +tylers +tylote +tymbal +tympan +tyning +Typhon +typhus +typify +typing +typist +typtos +tyrant +Tyrian +tyring +tyroes +Tyrone +tystie +tythed +tythes +tzetse diff --git a/com/agnibho/code/anagram/dictionary/T7.txt b/com/agnibho/code/anagram/dictionary/T7.txt new file mode 100644 index 0000000..4c2742c --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T7.txt @@ -0,0 +1,1567 @@ +tabanid +Tabanus +tabards +tabaret +Tabasco +tabbied +tabbies +tabbing +tabetic +tabinet +Tabitha +tableau +tablets +tablier +tabling +tabloid +tabooed +tabored +taborer +taboret +taborin +tabours +tabrets +tabuing +tabulae +tabular +tachism +tachist +tachyon +tacitly +Tacitus +tackers +tackets +tackety +tackier +tackily +tacking +tackled +tackler +tackles +tactful +tactics +tactile +taction +tactism +tactual +taddies +Tadjiks +tadpole +Tadzhik +taedium +taeniae +taenias +taffeta +taffety +taffias +taffies +Tagalog +tagetes +taggees +taggers +tagging +tagmata +tagmeme +tagrags +taguans +tahinas +tahinis +tahsils +taiahas +taigled +taigles +tailing +tailles +taillie +tailors +tailyes +tailzie +tainted +taipans +taishes +taivers +taivert +Taiyuan +tajines +takable +takahes +takings +talaria +talayot +talbots +talcing +talcked +talcose +talcous +talcums +Taleban +taleful +talents +talions +talipat +taliped +talipes +talipot +talkers +talkies +talking +tallage +tallboy +tallest +tallets +tallied +tallier +tallies +Tallinn +tallish +tallith +tallows +tallowy +taloned +talooka +talukas +taluses +talwegs +tamable +tamales +tamandu +tamanus +tamarao +tamaras +tamarau +tamarin +tamaris +tamarix +tamasha +tambers +tambour +tambura +Tamilic +tamings +tamises +Tammany +tammars +tammies +tampers +Tampico +tamping +tampion +tampons +Tamulic +tanadar +tanager +Tanagra +Tancred +tandems +tandoor +tangelo +tangent +tanghin +tangier +tangies +tanging +tangled +tangler +tangles +tangoed +tangram +tanguns +tanists +taniwha +tankage +tankard +tankers +tankful +tankies +tanking +tanling +tannage +tannahs +tannate +tanners +tannery +tannest +tanning +Tannoys +tanrecs +tansies +tantara +tantivy +tantony +Tantric +tantrum +tanyard +Taoists +tapered +taperer +tapetal +tapetis +tapetum +tapioca +Tapiola +tapists +taplash +tappers +tappets +tappice +tapping +taproom +taproot +tapster +Taranto +tarboys +tarbush +tarcels +tardier +tardily +tardive +targets +targing +tariffs +tarmacs +tarnish +tarpans +Tarpeia +tarpons +Tarquin +tarried +tarrier +tarries +tarring +tarrock +tarrows +tarsals +tarseal +tarsels +tarsier +Tarsius +tartana +tartane +tartans +tartare +tartars +Tartary +tartest +tartier +tartine +tartish +tartlet +Tartufe +tarweed +Tasered +tashing +taskers +tasking +taslets +tassell +tassels +tassets +tassies +tasters +tastier +tastily +tasting +tatamis +Tataric +tathing +tatlers +tatouay +tatters +tattery +tattier +tatties +tattily +tatting +tattled +tattler +tattles +tattoos +tattows +taunted +taunter +Taunton +taurean +taurine +tautens +tautest +tauting +tautogs +Tavener +taverna +taverns +tawings +tawnier +tawpies +taxable +taxably +taxicab +taxiing +taximan +taximen +taxings +taxiway +taxless +taxying +Tbilisi +tchicks +teacher +teaches +teacups +teagled +teagles +teamers +teaming +teapoys +tearers +tearful +tearier +tearing +teasels +teasers +teasing +teazels +teazled +teazles +tebbads +techier +techies +techily +technic +teckels +tectrix +tedders +teddies +tedding +tedesca +tedesco +tedious +tediums +teemers +teemful +teeming +teenage +teenier +teentsy +teepees +teering +teeters +teethed +teethes +tegmina +tegulae +tegular +Teheran +teinded +tektite +telamon +telecom +teledus +telefax +telegas +Telegus +teleost +telergy +teleses +telesis +telesms +teletex +telexed +telexes +telfers +Telford +tellars +tellens +tellers +tellies +Tellima +telling +tellins +teloses +telpher +telsons +Telstar +Telugus +temblor +temenos +Tempean +tempera +tempers +tempest +temping +templar +templed +temples +templet +tempore +tempted +tempter +tempura +temsing +tenable +tenably +tenaces +tenails +tenancy +tenants +tenches +tendenz +tenders +tending +tendons +tendril +tendron +Tenedos +tenfold +tenioid +tenners +Tenniel +tenoned +tenoner +tenours +tenpins +tenrecs +tensely +tensest +tensile +tensing +tension +tensity +tensive +tensons +tensors +tentage +tenters +tentful +tenthly +tentier +tentigo +tenting +tenuity +tenuous +tenured +tenures +tenutos +tenzons +tepidly +tequila +terbium +tercels +tercets +tercios +terebra +teredos +terefah +Terence +tergite +termers +terming +termini +termite +termors +ternary +ternate +terning +ternion +terpene +terrace +terrain +terrane +Terrans +terreen +terrene +terrets +terrier +terries +terrify +terrine +territs +terrors +tersely +tersest +tersion +tertial +tertian +tertias +tertius +tessera +testacy +testate +testees +testers +testier +testify +testily +testing +testons +testoon +testril +testudo +tetanal +tetanic +tetanus +tethers +tetract +tetrads +tetrode +tetters +Teutons +tewarts +tewhits +texases +textile +textual +texture +thairms +thalami +thalers +thalian +thallic +thallus +thalweg +thammuz +thanage +thanahs +thanked +thankee +thanker +thannah +thannas +thawers +thawing +theater +theatre +theaves +Thebaic +Thebaid +Thebans +thecate +theeing +theeked +theists +themata +thenars +theorbo +theorem +theoric +therapy +thereat +thereby +therein +thereof +thereon +Theresa +thereto +theriac +therian +thermae +thermal +thermic +Thermit +thermos +theroid +Theroux +Theseus +Thespis +theurgy +they'll +they're +they've +thiamin +thiasus +Thibets +thicken +thicker +thicket +thickie +thickly +thickos +thieved +thieves +thigger +thiller +thimble +thinker +thinned +thinner +thirded +thirdly +thirled +thirsts +thirsty +thistle +thistly +thither +thivels +tholing +Thomism +Thomist +Thomson +thonder +thonged +Thoreau +thorite +thorium +thorned +thorpes +thought +thouing +thowels +thralls +thrangs +thraves +threads +thready +threaps +threats +threeps +threnos +thrifts +thrifty +thrills +thrilly +thrimsa +thrived +thriven +thriver +thrives +throats +throaty +thrombi +throned +thrones +throngs +through +thrower +thrummy +thrusts +thrutch +thruway +thudded +thuggee +thuggos +thulite +thulium +thumbed +Thummim +thumped +thumper +thunder +Thurber +thurify +thwacks +thwaite +thwarts +thymier +thymine +thyroid +thyrses +Thyrsis +thyrsus +thyself +Tianjin +tiara'd +tiaraed +Tibetan +tichier +tickens +tickers +tickets +ticking +tickled +tickler +tickles +tidally +tidbits +tiddies +tiddled +tiddler +tiddles +tiddley +tidiest +tidings +tidying +tieless +Tiepolo +tierced +tiercel +tierces +tiercet +tiering +Tiffany +tiffing +tiffins +tifting +tigerly +tigging +tighten +tighter +tightly +tiglons +tigress +tigrine +tigrish +tigroid +Tijuana +tilapia +tilbury +tilings +tillage +tillers +Tillich +tilling +tillite +tilters +tilting +timarau +timbale +timbals +timbers +timbrel +timbres +timeous +timider +timidly +timings +timists +timothy +timpani +timpano +tinajas +tinamou +tinchel +tindals +tinders +tindery +tinding +tinfoil +tinfuls +tinging +tingled +tingler +tingles +tinhorn +tiniest +tinkers +tinking +tinkled +tinkler +tinkles +tinners +tinnier +tinnies +tinning +tinpots +tinsels +Tintern +tinters +tinting +tintype +tinware +tippers +tippets +Tippett +tippier +tipping +tippled +tippler +tipples +tipsier +tipsify +tipsily +tipster +tiptoed +tiptoes +tipulas +tirades +tirasse +tiredly +tirings +tirling +Tirpitz +tirring +tisanes +tissued +tissues +Titania +titanic +titanis +titbits +titches +titfers +tithers +tithing +titlark +titlers +titling +titmice +Titoism +Titoist +titokis +titrate +titters +titties +titting +tittish +tittled +tittles +tittups +tittupy +titular +tituled +titules +tituped +tizzies +Tlingit +toadied +toadies +toasted +toaster +toastie +toazing +tobacco +toccata +tochers +tocking +tocsins +toddies +toddled +toddler +toddles +toecaps +toeclip +toeless +toerags +toffees +toffies +toffish +togated +toggery +togging +toggled +toggles +toheroa +tohunga +toilers +toilets +toilful +toiling +toisech +toisons +tokamak +tokened +Toledos +tolings +Tolkien +tollage +tollers +tolling +tollman +tollmen +tolsels +tolseys +Tolstoy +tolters +toluate +toluene +tolzeys +tombacs +tombaks +tombing +tombocs +tombola +tombolo +tomboys +tomfool +tomiums +tommied +tommies +tompion +tompons +tomtits +tonally +tondini +tondino +tonemes +tonemic +tonepad +tonetic +Tongans +tongued +tongues +toniest +tonight +tonkers +tonking +tonlets +tonnage +tonnags +tonneau +tonners +tonnish +tonsils +tonsors +tonsure +tontine +tonuses +tooarts +toolbag +toolbar +toolbox +toolers +tooling +toolkit +toolman +tooming +toories +tooters +toothed +tooting +tootled +tootles +tootses +tootsie +toparch +topazes +topfull +topiary +topical +topless +topmast +topmost +toponym +toppers +topping +toppled +topples +topsail +topside +topsman +topsmen +topspin +toranas +torched +torcher +torches +torchon +tordion +toreros +torgoch +torment +tormina +tornade +tornado +toroids +Toronto +torpedo +torpefy +torpids +Torquay +torqued +torques +Torquil +torrefy +torrent +torrets +torsade +torsels +torsion +torsive +tortile +tortive +tortoni +tortrix +torture +torulae +torulin +torulus +Toryish +Toryism +Toscana +toshers +tossers +tossily +tossing +tosspot +tostada +totally +totanus +totemic +tothers +totient +totters +tottery +totties +totting +toucans +touched +toucher +touches +toughen +tougher +toughie +toughly +toupees +toupets +touraco +tourers +touries +touring +tourism +tourist +tourney +tousers +tousing +tousled +tousles +touters +touting +touzled +touzles +towable +towages +towards +towbars +towboat +toweled +towered +towhees +towings +towline +towmond +towmont +townees +townies +townish +towpath +towrope +towsers +toxemia +toxemic +toxical +toxoids +toyings +toyless +toylike +Toynbee +toyshop +toysome +Trabzon +tracers +tracery +trachea +tracing +tracked +tracker +tractor +tractus +traders +trading +traduce +traffic +tragedy +tragule +traikit +trailed +trailer +trained +trainee +trainer +traipse +traitor +traject +trammed +trammel +tramped +tramper +trampet +trample +tramway +tranced +trances +tranche +trangam +trangle +trankum +trannie +transit +transom +tranted +tranter +Trapani +trapans +trapeze +traping +trapped +trapper +trashed +trashes +traumas +travail +travels +Travers +travois +trawled +trawler +trayful +treacle +treacly +treader +treadle +treague +treason +treated +treater +trebled +trebles +trecked +treddle +treeing +treetop +trefoil +trehala +treille +trekked +trekker +Trekkie +trellis +tremble +trembly +tremies +tremolo +tremors +trenail +trended +trenise +trental +Trenton +trepang +trepans +tressed +tressel +tresses +trestle +Trevino +Treviso +treviss +treybit +trezzes +triable +triacid +triadic +triages +Trianon +triarch +triatic +triaxon +tribade +tribady +tribble +triblet +tribune +tribute +tricars +triceps +tricing +tricked +tricker +trickle +trickly +tricksy +tricorn +tricots +tridarn +trident +triduan +triduum +Trieste +triffic +triffid +trifled +trifler +trifles +trifoly +triform +trigamy +trigged +trigger +triglot +trigons +trigram +trijets +triking +trilbys +trilith +trilled +trilobe +trilogy +trimers +trimmed +trimmer +trinary +trindle +tringle +trining +trinity +trinket +trinkum +triodes +triolet +triones +trionym +tripery +tripled +triples +triplet +triplex +tripods +tripody +tripoli +tripped +tripper +trippet +tripple +tripses +tripsis +Tripura +trireme +trisect +triseme +trishaw +trismus +trisome +trisomy +Tristan +trisula +tritely +tritest +tritide +tritium +Tritoma +tritone +tritons +triumph +triunes +trivets +trivial +trivium +trizone +troades +troated +trocars +trochal +trochee +troches +trochus +trocked +trocken +trodden +troelie +trogged +trogons +troikas +Troilus +Trojans +troking +trolled +troller +trolley +trollop +tromino +trommel +tromped +trompes +troolie +trooped +trooper +trophic +tropics +tropism +tropist +Trotsky +trotted +trotter +trouble +troughs +trounce +trouped +trouper +troupes +trouser +trouses +trouter +trovers +trowels +trowing +truancy +truants +trucage +trucial +trucked +trucker +truckie +truckle +Trudeau +trudged +trudgen +trudger +trudges +trueing +trueman +truemen +truffle +truisms +Trullan +trumeau +trumped +trumpet +truncal +trundle +trunked +trussed +trusser +trusses +trusted +trustee +truster +tryings +trypsin +tryptic +trysail +trysted +tryster +tsaddik +tsaddiq +tsambas +tsardom +tsarina +tsarism +tsarist +tsetses +tsigane +tsotsis +tsouris +tsunami +Tswanas +Tuaregs +tuatara +tubages +tubbers +tubbier +tubbing +tubbish +tubeful +tubfast +tubfish +tubfuls +tubifex +tubings +tubular +tubules +tubulin +tuchuns +tuckers +tuckets +tucking +Tucum�n +Tuesday +tuffets +tufters +tuftier +tufting +tuggers +tugging +tughrik +tugriks +tuilles +tuilyie +tuition +tulbans +tulchan +Tullian +tulwars +tumbled +tumbler +tumbles +tumbrel +tumbril +tumesce +tumidly +tummies +tumours +tumping +tumular +tumults +tumulus +tunable +tunably +tunding +tundras +tunduns +tuneful +tunicae +tunicin +tunicle +tunings +Tunisia +tunnage +tunnels +tunnies +tunning +tupelos +tupping +turacin +turacos +turbans +turbary +turbine +turbith +turbits +turbots +turdine +turdion +turdoid +tureens +turfier +turfing +turfite +turfman +turfmen +turgent +turions +Turkess +turkeys +Turkify +Turkish +Turkman +Turkmen +turmoil +turndun +turners +turnery +turning +turnips +turnkey +turpeth +turrets +turtled +turtler +turtles +Tuscans +Tuscany +tushery +tushies +tushing +tuskars +tuskers +tusking +tussahs +Tussaud +tussehs +tussers +tussive +tussled +tussles +tussock +tussore +tutania +tutelar +tutenag +tutored +tutress +tutsans +tutting +tutwork +tuxedos +tuy�res +twaddle +twaddly +twaites +twanged +twangle +twankay +twasome +twattle +tweaked +tweedle +tweeled +tweeted +tweeter +tweezed +tweezes +twelfth +twelves +twibill +twicers +twiddle +twiddly +twifold +twigged +twiggen +twigger +twiglet +twigloo +twilled +twilted +twiners +twinged +twinges +twinier +twining +twinked +twinkle +twinkly +twinned +twinset +twinter +twirled +twirler +twiscar +twisted +twister +twistor +twitchy +twitted +twitten +twitter +twizzle +twoccer +twofold +twoness +twosome +twyeres +twyfold +Twyford +tychism +tycoons +tylopod +tyloses +tylosis +tylotes +tymbals +tympana +tympani +tympano +tympans +tympany +Tyndale +Tynwald +typeset +typhoid +typhoon +typhous +typical +typings +typists +typtoed +tyranny +tyrants +tyrings +tyrones +tysties +tything +tzaddik +tzaddiq +tzetses +tzigane +tzigany +tzimmes diff --git a/com/agnibho/code/anagram/dictionary/T8.txt b/com/agnibho/code/anagram/dictionary/T8.txt new file mode 100644 index 0000000..12f7339 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T8.txt @@ -0,0 +1,1663 @@ +tabanids +tabarets +tabashir +tabbinet +tabbying +tabefied +tabefies +taberdar +tableaux +tableful +tableted +tabliers +tablings +tabloids +tabloidy +tabooing +taborers +taborets +taboring +taborins +Taborite +taboured +tabouret +tabourin +tabulate +tacahout +tachinid +tachisme +tachiste +tachists +tachyons +taciturn +tackiest +tackings +tacklers +tackling +tacksman +tacksmen +taconite +tactical +tactless +tadpoles +Tadzhiks +taeniate +taenioid +tafferel +taffetas +taffrail +Tagalogs +taghairm +taglioni +tagmemic +Tahitian +Taichung +taigling +tailback +taileron +tailings +tailless +tailleur +taillies +taillike +tailored +tailskid +tailwind +tailzies +tainting +tainture +taisches +taivered +takamaka +takeable +takeaway +takingly +talapoin +talayots +talcking +talented +talesman +talesmen +talionic +talipats +talipeds +talipots +talisman +talkable +talkback +talkfest +talkings +tallaged +tallages +tallboys +talliate +talliers +talliths +tallness +tallowed +tallower +tallying +tallyman +tallymen +Talmudic +talookas +Talpidae +talukdar +tamandua +tamandus +tamanoir +tamarack +tamaraos +tamaraus +tamarind +tamarins +tamarisk +tamboura +tambours +tamburas +tameable +tameless +tameness +Tamilian +tampered +tamperer +tampings +tampions +tamponed +tamworth +tanadars +tanagers +tanaiste +Tanalith +tandoori +tandoors +tangelos +tangency +tangents +tanghins +tangible +tangibly +Tangiers +tangiest +tanglers +tanglier +tangling +tangoing +tangoist +tangrams +Tangshan +tanistry +taniwhas +tankages +tankards +tankfuls +tankings +tannable +tannages +tannates +tannings +tantalic +tantalum +tantalus +tantaras +Tantrism +Tantrist +tantrums +tanyards +Tanzania +Taoistic +tapacolo +tapaculo +tapadera +tapadero +tapeable +tapeless +tapelike +tapeline +tapenade +taperers +tapering +tapestry +tapeworm +tapiocas +tapiroid +tappable +tappiced +tappices +tappings +taprooms +taproots +tapsters +taqueria +tarakihi +tarantas +tarboosh +tarboush +tarbrush +tardiest +targeted +Targumic +tariffed +tarlatan +tarnally +Tarpeian +tarragon +tarriers +tarriest +tarrings +tarrocks +tarrowed +tarrying +tarseals +tarsiers +tarsioid +tarsiped +Tarsipes +tartanas +tartaned +tartanes +tartanry +tartares +tartaric +tartarly +Tartarus +tartiest +tartlets +tartness +tartrate +Tartuffe +tarweeds +tarwhine +Tasering +Tashkent +taskings +taskwork +Tasmania +tasseled +tassells +tasselly +tastable +tasteful +tastevin +tastiest +tastings +Tatarian +tatouays +tattered +tattiest +tattings +tattlers +tattling +tattooed +tattooer +tattowed +taunters +taunting +tautened +tautness +tautomer +tautonym +tavernas +taverner +tawdrier +tawdries +tawdrily +taweries +tawniest +Taxaceae +taxation +taxative +taxiarch +taxicabs +taxiways +Taxodium +taxonomy +tayberry +tchicked +teaberry +teachers +teaching +teagling +teamings +teamster +teamwise +tearable +tearaway +teariest +tearless +teaseled +teaseler +teasings +Teasmade +teaspoon +teazeled +teazling +Tebilise +Tebilize +techiest +technics +tectonic +tedesche +tedeschi +tedisome +teemless +teenager +teeniest +teensier +Teesside +teetered +teething +teetotal +teetotum +tefillah +tefillin +tegmenta +teguexin +tegument +teinding +tektites +telecast +telechir +telecine +telecoms +telefilm +telegony +telegram +Telemann +telemark +teleosts +telepath +teleplay +teleport +telergic +telesale +teleseme +telestic +teletext +telethon +teletron +Teletype +teleview +televise +telexing +telfered +telferic +tellable +tellared +tellered +tellings +telltale +tellural +telluric +telomere +telphers +temblors +temerity +temerous +tempered +temperer +tempests +template +templets +temporal +tempters +tempting +tempuras +temulent +tenacity +tenacula +tenaille +tenanted +tenantry +tendance +tendence +tendency +tendered +tenderer +tenderly +tendrils +tendrons +tenebrae +tenebrio +tenement +tenendum +Tenerife +tenesmus +teniasis +Tennyson +tenoners +tenoning +tenorist +tenorite +tenoroon +tenotomy +tenpence +tenpenny +tensible +tensions +tentacle +tentages +tentfuls +tentiest +tentings +tentless +tentwise +tenuious +tenurial +teocalli +teosinte +tepefied +tepefies +tephrite +tepidity +tequilas +tequilla +terabyte +teraflop +terakihi +teraphim +teratism +teratoid +teratoma +tercelet +terebene +terebrae +terebras +tergites +teriyaki +terminal +terminer +terminus +termites +termless +ternions +terpenes +terraced +terraces +terrains +Terrance +terrapin +terraria +terrazzo +terreens +terrella +terrenes +terrible +terribly +terriers +terrific +terrines +tertials +tertians +tertiary +Terylene +terzetta +terzetti +terzetto +tessella +tesserae +tesseral +testable +testamur +testator +testatum +testicle +testiest +testings +testoons +testudos +tetanise +tetanize +tetanoid +tetchier +tetchily +tethered +tetracid +tetracts +tetradic +tetragon +tetrapla +tetrapod +tetrarch +tetraxon +tetrodes +tetronal +tettered +tettixes +Teucrian +Teutonic +textbook +textiles +textless +textuary +textural +textured +textures +Thaddeus +Thailand +thalamic +thalamus +thalline +thallium +thalloid +thallous +thalwegs +thanadar +Thanatos +thanedom +thankees +thankers +thankful +thanking +thannahs +thataway +thatched +thatcher +thatches +thatness +thawings +thawless +Theaceae +thearchy +theaters +Theatine +theatral +theatres +theatric +thebaine +theeking +theistic +thematic +themself +Theobald +theocrat +theodicy +Theodora +Theodore +theogony +theology +theonomy +theorbos +theorems +theories +theorise +theorist +theorize +theosoph +therblig +therefor +thereout +theriaca +theriacs +therians +thermals +thermion +thermite +theropod +thesauri +Thesiger +thespian +Thessaly +thetical +theurgic +thewless +thiamine +thiazide +thiazine +thickens +thickest +thickets +thickety +thickies +thickish +thickoes +thickset +thievery +thieving +thievish +thiggers +thigging +thillers +thimbled +thimbles +thingamy +thingies +thinkers +thinking +thinners +thinness +thinnest +thinning +thinnish +thiophen +thiophil +thiourea +thirding +thirlage +thirling +thirsted +thirster +thirteen +thirties +thisness +thistles +thlipsis +Thomists +Thompson +thoracal +thoraces +thoracic +thoraxes +Thorburn +thornier +thorning +thornset +thorough +thoughts +thousand +thowless +Thracian +thraldom +thralled +thranged +thrapple +thrashed +thrasher +thrashes +thrawart +thrawing +threaded +threaden +threader +threapit +threated +threaten +threepit +threnode +threnody +threshed +threshel +thresher +threshes +thridace +thrilled +thriller +thripses +thrivers +thriving +throated +throbbed +throeing +thrombin +thrombus +thronged +throning +thropple +throstle +throttle +throwers +throwing +thrummed +thrummer +thrushes +thrusted +thruster +thruways +thudding +thuggery +thuggish +thuggism +thumbing +thumbpot +thumpers +thumping +thunders +thundery +thurible +thurifer +Thursday +thusness +thuswise +thwacked +thwacker +thwaites +thwarted +thwarter +thwartly +thymiest +thyreoid +thyroids +thyroxin +thyrsoid +Tiberias +Tiberius +Tibetans +tichiest +tickbird +ticketed +tickings +ticklers +tickling +ticklish +tiddlers +tiddlier +tiddling +tideland +tideless +tidemark +tidemill +tidiness +tidivate +tiercels +tiercets +tiffings +tigerish +tigerism +tightens +tightest +tightish +tightwad +tilefish +tileries +tillable +tillages +tillings +tiltable +tiltings +timaraus +timariot +timbales +timbered +timbrels +Timbuktu +timeless +timelier +timidest +timidity +timoneer +Timonise +Timonism +Timonist +Timonize +timorous +tinamous +tinchels +tincture +Tineidae +tingeing +tinglers +tinglier +tingling +tinglish +tinhorns +tininess +tinkered +tinkerer +tinklers +tinklier +tinkling +tinniest +tinnings +tinnitus +tinselly +tinselry +tinsmith +tinsnips +tinstone +Tintagel +tintings +tintless +tintypes +tippable +tippiest +tippings +tipplers +tippling +tipsiest +tipstaff +tipsters +tiramisu +tirasses +tireless +tireling +Tiresias +tiresome +Tirolean +Tirolese +Tironian +tirrivee +tissuing +titanate +Titaness +Titanian +Titanism +titanite +titanium +titanous +tithable +tithings +Titicaca +titivate +titlarks +titlings +titmouse +titrated +titrates +tittered +titterer +tittling +tittuped +tittuppy +titubant +titubate +titulars +titulary +tituling +tituping +titupped +tjanting +Tlingits +toadflax +toadying +toadyish +toadyism +toasters +toasties +toasting +tobaccos +toboggan +toccatas +tochered +tocology +toddlers +toddling +toeclips +together +toggling +Togoland +Togolese +toheroas +tohungas +toileted +toiletry +toilette +toilinet +toilings +toilless +toilsome +toiseach +toisechs +tokamaks +tokening +tokenism +tokology +tolbooth +tolerant +tolerate +toleware +tollable +tollages +tolldish +tollgate +Toltecan +toltered +tomahawk +tomalley +tomatoes +tomatoey +tombless +tombolas +tombolos +tomentum +tomfools +tommying +tomogram +tomorrow +tompions +tonalite +tonality +tondinos +toneless +tonepads +tongster +tonguing +tonicity +tonishly +tonnages +tonneaus +tonneaux +tonsured +tonsures +tontiner +tontines +toolbags +toolbars +toolings +toolkits +toolroom +toothful +toothier +toothily +toothing +tootling +tootsies +toparchs +toparchy +topazine +toplofty +topmaker +topmasts +topology +Topolski +toponyms +toponymy +topotype +toppings +toppling +topsails +topsides +topspins +toquilla +torch�re +torchier +torching +torchlit +torchons +torcular +tordions +toreador +toreutic +torgochs +Torified +Torifies +torments +torminal +tornades +tornadic +tornados +toroidal +torpedos +torpidly +torquate +Torrance +torrents +torrider +torridly +torsades +torsions +tortilla +tortious +tortoise +tortonis +tortuous +tortured +torturer +tortures +torulose +Toryfied +Toryfies +tossings +tosspots +tostadas +totalise +totality +totalize +totalled +totemism +totemist +totients +totitive +tottered +totterer +tottings +toucanet +touchers +touchier +touchily +touching +toughens +toughest +toughies +toughish +Toulouse +touracos +Touraine +Tourette +tourings +tourists +touristy +tourneys +tournure +tousings +tousling +touzling +tovarich +tovarish +towardly +towboats +toweling +towelled +towerier +towering +towlines +townland +townless +townling +Townsend +township +townsman +townsmen +towpaths +towplane +towropes +toxaemia +toxaemic +toxicant +toxicity +toxocara +toyishly +toyshops +toywoman +toywomen +trabeate +tracheae +tracheal +tracheid +trachoma +trachyte +tracings +trackage +trackers +tracking +trackman +trackmen +trackway +tractate +tractile +traction +tractive +tractors +tractrix +tradable +tradeful +tradings +traditor +traduced +traducer +traduces +traffics +tragical +tragopan +tragules +trahison +traiking +trailers +trailing +trainees +trainers +training +traipsed +traipses +traitors +trajects +tramline +trammels +tramming +trampers +trampets +tramping +trampish +trampled +trampler +tramples +tramways +tranches +tranchet +trancing +trangams +trangles +trankums +trannies +tranquil +transact +transect +transept +transfer +transfix +tranship +transire +transits +Transkei +transmit +transoms +transude +transume +tranters +tranting +trapesed +trapeses +trapezed +trapezes +trapezia +traplike +trappean +trappers +trapping +Trappist +trapunto +trashery +trashier +trashily +trashing +trashman +trashmen +trauchle +traumata +travails +traveled +traveler +travelog +traverse +travesty +travises +Travolta +trawlers +trawling +trayfuls +treacher +treacled +treacles +treaders +treading +treadled +treadler +treadles +treasons +treasure +treasury +treaters +treaties +treating +treatise +trebling +trecento +trecking +treddled +treddles +tredille +treeless +treenail +treeship +treetops +trefoils +trehalas +treilles +trekkers +Trekkies +trekking +trematic +trembled +trembler +trembles +Tremella +tremolos +trenails +trenched +trencher +trenches +trendier +trendies +trendily +trending +trentals +trepangs +trephine +trespass +tressels +tressier +tressing +tressure +trestles +trevally +trevises +trewsman +trewsmen +treybits +triadist +trialism +trialist +triality +trialled +triangle +triapsal +triarchs +triarchy +Triassic +triatics +triaxial +triaxons +tribades +tribadic +tribally +tribasic +tribbles +triblets +tribrach +tribunal +tribunes +tributer +tributes +trichina +trichite +trichoid +trichome +trichord +trickers +trickery +trickier +trickily +tricking +trickish +trickled +tricklet +tricolor +tricorne +tricorns +tricycle +tridacna +tridarns +tridents +triduums +triennia +triethyl +trifecta +triffids +triffidy +triflers +trifling +trifocal +triforia +triggers +triggest +trigging +triglots +triglyph +trigness +trigonal +trigonic +trigrams +trigraph +Trigynia +trilbies +trilemma +triliths +trilling +trillion +trillium +trilloes +trilobed +trilobes +trimaran +trimeric +trimeter +trimmers +trimmest +trimming +trimness +Trimurti +Trinculo +trindled +trindles +tringles +Trinidad +trinkets +trinkums +Triodion +triolets +trionyms +trioxide +tripedal +tripeman +tripemen +triphone +triplane +triplets +triplied +triplies +tripling +triploid +tripodal +triposes +trippant +trippers +trippery +trippets +tripping +trippler +triptane +triptote +triptych +tripwire +triremes +trisects +trisemes +trisemic +trishaws +triskele +trisomes +trisomic +tristful +tristich +Tristram +tritiate +tritical +Triticum +tritides +tritones +tritonia +triumphs +triumvir +triunity +trivalve +trizonal +trizones +Trizonia +troating +trochaic +trochees +trochisk +trochite +trochlea +trochoid +trocking +troelies +trogging +troilism +troilist +troilite +trollers +trolleys +trollies +trolling +trollius +Trollope +trollops +trollopy +trombone +trominos +trommels +tromping +troolies +troopers +troopial +trooping +troparia +trophesy +trophied +trophies +tropical +tropists +trothful +trotline +trotters +trotting +trottoir +troubled +troubler +troubles +trounced +trouncer +trounces +troupers +troupial +trouping +trousers +trouters +troutful +troutier +trouting +troutlet +trouv�re +trouveur +trowsers +truanted +truantry +truchman +truchmen +truckage +truckers +truckies +trucking +truckled +truckler +truckles +truckman +truckmen +trudgens +trudgeon +trudgers +trudging +trueness +Truffaut +truffled +truffles +truistic +trumeaux +trumpery +trumpets +trumping +truncate +trundled +trundler +trundles +trunkful +trunking +trunnion +truquage +truqueur +trussers +trussing +trustees +trusters +trustful +trustier +trusties +trustily +trusting +truthful +tryingly +trysails +trysters +trysting +tsaddiks +tsaddiqs +tsarevna +tsarinas +tsarists +tsaritsa +tsaritza +tsessebe +tsiganes +tsunamis +tsutsumu +tuataras +tubbiest +tubbings +tubefuls +tubeless +tubelike +tubenose +tubercle +tuberose +tuberous +tubicole +tubiform +Tubigrip +T�bingen +tubulate +tubulous +tuckahoe +tuckered +tucotuco +tucutuco +Tuesdays +tuftiest +tuftings +tuggings +tughriks +tulchans +tulipant +tumblers +tumbling +tumbrels +tumbrils +tumefied +tumefies +tumesced +tumesces +tumidity +tumorous +tumulary +tumulted +tunbelly +tuneable +tuneless +tungsten +tungstic +Tunguses +Tungusic +Tunguska +Tunicata +tunicate +tunicked +tunicles +Tunisian +tunnages +tunneled +tunneler +tunnings +Tupamaro +tuppence +tuppenny +Turandot +Turanian +turbaned +turbidly +turbinal +turbined +turbines +turbiths +turbocar +turbofan +Turcoman +turdions +turfiest +turfings +turfites +Turgenev +turgidly +turkises +Turkoman +turlough +turmeric +turmoils +turnback +turncoat +turncock +turnduns +turnings +turniped +turnkeys +turnover +turnpike +turnskin +turnsole +turnspit +turntail +turpeths +turreted +turtlers +turtling +Tusitala +tuskless +tussling +tussocks +tussocky +tussores +tutelage +tutelary +tutorage +tutoress +tutorial +tutoring +tutorise +tutorism +tutorize +tuxedoes +twaddled +twaddler +twaddles +twangier +twanging +twangled +twangles +twankays +twasomes +twattled +twattler +twattles +tweaking +tweedier +tweedled +tweedler +tweedles +tweeling +tweeness +tweenies +tweeters +tweeting +tweezers +tweezing +twelfths +twelvemo +twenties +twibills +twichild +twiddled +twiddler +twiddles +twiggier +twigging +twiglets +twigloos +twigsome +twilight +twillies +twilling +twilting +twinging +twiniest +twinight +twinings +twinking +twinkled +twinkler +twinkles +twinling +twinning +twinsets +twinship +twinters +twirlers +twirlier +twirling +twiscars +twisters +twistier +twisting +twistors +twitched +twitcher +twitches +twittens +twitters +twittery +twitting +twizzled +twizzles +twoccers +twoccing +twopence +twopenny +twosomes +Tychonic +Tylopoda +tylopods +tympanal +tympanic +tympanum +Tyneside +typecast +typesets +Typhoean +Typhoeus +typhonic +typhoons +typified +typifier +typifies +typology +typtoing +tyramine +tyrannic +tyrannis +tyreless +Tyrolean +Tyrolese +tyrosine +Tyrrhene +Tyrtaean +tzaddiks +tzaddiqs +tzatziki +tziganes diff --git a/com/agnibho/code/anagram/dictionary/T9.txt b/com/agnibho/code/anagram/dictionary/T9.txt new file mode 100644 index 0000000..6d2a062 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/T9.txt @@ -0,0 +1,1493 @@ +Tabanidae +tabasheer +tabbouleh +tabbyhood +tabefying +tabellion +taberdars +tabescent +tablature +tablefuls +tableland +tableting +tablewise +tabourets +tabouring +tabourins +tabularly +tabulated +tabulates +tabulator +tacahouts +tacamahac +tachinids +tachistes +tachogram +tachylite +tachylyte +tachypnea +tacitness +tackiness +tacklings +tacmahack +tactfully +tactician +tacticity +tactilist +tactility +tactually +taeniasis +tafferels +taffeties +taffrails +taglionis +tagmemics +Tahitians +tahsildar +tailbacks +tailerons +tailleurs +tailoress +tailoring +tailpiece +tailplane +tailskids +tailstock +tailwinds +taintless +taivering +Taiwanese +takamakas +takeaways +talapoins +talbotype +talegalla +taligrade +talismans +talkathon +talkative +talkfests +tallaging +talliable +talliated +talliates +tallowing +tallowish +tallyshop +Talmudist +talukdars +tamanduas +tamanoirs +tamaracks +tamarillo +tamarinds +tamarisks +tambouras +tamboured +tambourin +Tamerlane +tamoxifen +tamperers +tampering +tamponade +tamponage +tamponing +tamworths +tanagrine +tanaistes +Tanalised +Tanalized +tandooris +tangerine +tanghinin +tangibles +tangliest +tanglings +tangoists +tanneries +tantalate +Tantalean +Tantalian +tantalise +tantalism +tantalite +tantalize +tantalous +tantarara +tantivies +tantonies +Tanzanian +Taoiseach +tapacolos +tapaculos +tapaderas +tapaderos +tapelines +tapenades +taperings +taperness +taperwise +tapeworms +taphonomy +taplashes +tappicing +taquerias +tarakihis +tarantara +tarantass +Tarantino +tarantism +tarantula +Taraxacum +tarboggin +tarbushes +tardiness +targeteer +targeting +targetman +Targumist +tariffing +tarmacked +tarnation +tarnished +tarnisher +tarnishes +tarpaulin +Tarragona +tarriance +tarriness +tarrowing +tarsalgia +tarsealed +tarsipeds +Tartarean +Tartarian +tartarise +tartarize +tartiness +tartrates +Tartuffes +Tartufian +Tartufish +Tartufism +tarwhines +tasimeter +Tasmanian +tasseling +tasselled +tasteless +tastevins +tastiness +tattering +tattiness +tattlings +tattooers +tattooing +tattooist +tattowing +tauntings +tauriform +tautening +tautology +tautomers +tautonyms +taverners +tawdriest +tawniness +taxaceous +taxameter +taxations +taxidermy +taximeter +taxistand +taxonomer +taxonomic +taxpaying +tayassuid +tchicking +teachable +teacherly +teachings +teachless +teacupful +teamsters +tearaways +tearfully +teaselers +teaseling +teaselled +teaseller +teasingly +teaspoons +teazeling +teazelled +Tebilised +Tebilises +Tebilized +Tebilizes +techiness +technical +technique +technopop +tectiform +tectonics +tectorial +tectrices +tediosity +tediously +teenagers +teensiest +teentsier +Teeswater +teetering +teethings +teetotals +teetotums +tegmental +tegmentum +teguexins +tegularly +tegulated +teguments +teknonymy +telamones +telecasts +telechirs +telecines +telefaxed +telefaxes +telefilms +telegenic +telegonic +Telegonus +telegrams +telegraph +telemarks +telematic +telemeter +telemetry +teleology +teleonomy +teleosaur +Teleostei +telepaths +telepathy +telepheme +telephone +telephony +telephoto +teleplays +telepoint +teleports +telesales +telescope +telescopy +telesemes +telestich +teletexts +telethons +teletrons +Teletypes +televiews +televised +televiser +televises +televisor +telferage +telfering +tellaring +tellering +tellingly +tellinoid +telltales +tellurate +tellurian +telluride +tellurion +tellurise +tellurite +tellurium +tellurize +tellurous +telophase +telpheric +Temazepam +temblores +temenoses +temperate +temperers +tempering +tempested +templates +temporary +temporise +temporize +temptable +temptings +temptress +temulence +temulency +tenacious +tenaculum +tenailles +tenaillon +tenancies +tenanting +tendences +tenderers +tenderest +tendering +tenderise +tenderize +tendinous +tenebrios +tenebrism +tenebrist +tenebrity +tenebrose +tenebrous +tenements +Tennessee +tenorists +tenoroons +tenpences +tenseless +tenseness +tensility +tensional +tentacled +tentacles +tentacula +tentation +tentative +tentorial +tentorium +tenuously +tenurable +teocallis +tepefying +tephigram +tephillah +tephillin +tephritic +tephroite +tepidness +tequillas +terabytes +teraflops +terakihis +teratisms +teratogen +teratomas +tercelets +terebenes +terebinth +terebrant +terebrate +teredines +Terentian +teriyakis +termagant +terminals +terminate +terminers +terminism +terminist +termitary +ternately +terpenoid +terpineol +terracing +terraform +terramara +terramare +terrapins +terrarium +terrazzos +terrellas +terrenely +terricole +terrified +terrifier +terrifies +territory +terrorful +terrorise +terrorism +terrorist +terrorize +terseness +tervalent +terzettas +terzettos +tessellae +tessellar +tesseract +tessitura +testament +testamurs +testation +testators +testatrix +testatums +testicles +testified +testifier +testifies +testimony +testiness +tetanised +tetanises +tetanized +tetanizes +tetchiest +tethering +tetradite +tetragons +tetragram +tetralogy +tetraplas +tetrapods +tetrapody +tetrarchs +tetrarchy +tetroxide +tettering +tetterous +Teutonise +Teutonism +Teutonist +Teutonize +textbooks +textorial +textphone +textually +texturing +texturise +texturize +Thackeray +thalassic +thalluses +thanadars +thanatism +thanatist +thanatoid +thanedoms +thanehood +thaneship +thankless +thatchers +thatching +thaumatin +theaceous +theandric +thearchic +theatrics +thecodont +theftboot +theftbote +theftuous +thegither +Thelemite +thelytoky +themeless +thenabout +Theobroma +theocracy +theocrasy +theocrats +Theodoric +theogonic +theologer +theologic +theologue +theomachy +theomancy +theomania +theopathy +theophagy +theophany +theorbist +theoretic +theorised +theoriser +theorises +theorists +theorized +theorizer +theorizes +theosophs +theosophy +theotokos +theralite +therapies +therapist +therapsid +Theravada +therbligs +thereaway +therefore +therefrom +thereinto +thereness +thereunto +thereupon +therewith +theriacal +theriacas +thermally +thermical +Thermidor +thermions +thermoses +thermotic +therology +Theropoda +theropods +Thersites +thesaurus +thespians +theurgist +thiasuses +thickened +thickener +thicketed +thickhead +thickness +thickskin +thievings +thiggings +thimbling +thinghood +thingness +thingummy +thinkable +thinkings +thinnings +thiophene +thirdings +thirdsman +thirdsmen +thirlages +Thirlmere +thirsters +thirstful +thirstier +thirstily +thirsting +thirteens +thirtieth +thirtyish +tholobate +Thomasina +Thomistic +thornback +thornbill +Thorndike +thorniest +thornless +thorntree +thoughted +thoughten +thousands +Thracians +thralldom +thralling +thranging +thrappled +thrapples +thrashers +thrashing +thrasonic +threaders +threadfin +threadier +threading +threaping +threatens +threatful +threating +threefold +threeness +threeping +threesome +threnetic +threnodes +threnodic +threonine +threshels +threshers +threshing +threshold +thriftier +thriftily +thrillant +thrillers +thrilling +thrivings +throatier +throatily +throbbing +throbless +thrombose +throngful +thronging +throppled +thropples +throstles +throttled +throttler +throttles +throughly +throwback +throwings +throwster +thrummers +thrummier +thrumming +thrusters +thrusting +thrutched +thrutches +thumbkins +thumbless +thumblike +thumbling +thumbnail +thumbnuts +thumbpots +thundered +thunderer +thundrous +thuribles +thurifers +thurified +thurifies +Thursdays +thwackers +thwacking +thwarters +thwarting +Thyestean +thylacine +thymidine +thymocyte +thyratron +thyreoids +thyristor +thyroxine +Thysanura +ticketing +ticklings +tiddliest +tidemarks +tidemills +tidivated +tidivates +tiercelet +tierceron +tightened +tightener +tightknit +tightness +tightrope +tightwads +tigresses +tigrishly +tilburies +Tiliaceae +timariots +timbering +Timbuctoo +timeframe +timeliest +timenoguy +timeously +timepiece +timescale +timeshare +timetable +timidness +timocracy +Timonised +Timonises +Timonists +Timonized +Timonizes +timorsome +timothies +timpanist +tinctures +tingliest +tinguaite +tinkerers +tinkering +tinkliest +tinklings +tinniness +tinselled +tinsmiths +tintiness +Tipperary +tipsified +tipsifies +tipsiness +tipstaffs +tipstaves +tiptoeing +Tipulidae +tiredness +tirelings +Tiroleans +tirrivees +Tisiphone +titanates +titanises +titillate +titivated +titivates +titleless +titrating +titration +titterers +tittering +tittivate +tittlebat +tittuping +tittupped +titubancy +titubated +titubates +titularly +titupping +tjantings +toadstool +toastings +tobaccoes +Tobermory +Toblerone +toboggans +toccatina +Tocharian +Tocharish +tochering +toeragger +toilettes +toilinets +toiseachs +Tokharian +tokoloshe +tolbooths +tolerable +tolerably +tolerance +tolerated +tolerates +tolerator +tollbooth +tollgates +Tolpuddle +toltering +toluidine +tomahawks +tomalleys +tomatillo +tomboyish +tombstone +tomentose +tomentous +tomfooled +tomograms +tomograph +tomorrows +Tonbridge +tongsters +tonguelet +tonguings +tonnishly +tonometer +tonometry +tonsillar +tonsorial +tonsuring +tontiners +toolboxes +toolhouse +toolmaker +toolrooms +toothache +toothcomb +toothfuls +toothiest +toothless +toothlike +toothpick +toothsome +toothwash +toothwort +topectomy +topiarian +topiaries +topiarist +topically +topmakers +topmaking +topminnow +topologic +toponymal +toponymic +topotypes +toppingly +torbanite +torch�res +torchi�re +torchiers +torchwood +toreadors +toreutics +Torifying +tormented +tormenter +tormentil +tormentor +tormentum +torminous +tornadoes +torpedoed +torpedoer +torpedoes +torpefied +torpefies +torpidity +torpitude +torquated +torrefied +torrefies +torridest +torridity +torsional +Tortelier +tortility +tortillas +tortoises +tortrices +tortricid +torturers +torturing +torturous +torulosis +Toryfying +Toscanini +totalised +totaliser +totalises +totalized +totalizer +totalizes +totalling +totaquine +totemists +Totentanz +totitives +totterers +tottering +toucanets +touchable +touchiest +touchings +touchless +touchwood +toughened +toughener +toughness +touristic +tournedos +tourneyed +tourneyer +tournures +tovarisch +towelings +towelling +toweriest +towerless +townhouse +townlands +townlings +townscape +townsfolk +Townshend +townships +towplanes +toxaphene +toxically +toxicants +toxocaras +toxophily +trabeated +trabecula +traceable +traceably +traceless +traceried +traceries +tracheary +Tracheata +tracheate +tracheide +tracheids +Trachinus +trachitis +trachytic +trackable +trackball +trackings +trackless +trackroad +tracksuit +trackways +tractable +tractably +tractates +tractator +tractuses +tradeable +tradeless +trademark +tradename +tradesman +tradesmen +tradition +traditive +traditors +traducers +Traducian +traducing +Trafalgar +tragedian +tragedies +tragelaph +tragopans +traguline +trailable +trainable +trainings +trainless +trainload +traipsing +traitorly +traitress +trajected +tramlined +tramlines +trampette +tramplers +trampling +trampolin +trancedly +transacts +transaxle +transcend +transects +transenna +transepts +transeunt +transfect +transfers +transform +transfuse +tranships +transhume +transient +transires +translate +transmits +transmute +transonic +transpire +transport +transpose +transship +transuded +transudes +transumpt +Transvaal +transvest +trapanned +trapesing +trapezial +trapezing +trapezium +trapezius +trapezoid +trappings +Trappists +trapuntos +trashiest +trattoria +trattorie +trauchled +trauchles +traumatic +travailed +travelers +traveling +travelled +traveller +travelogs +traversal +traversed +traverser +traverses +travertin +trawlings +treachery +treacling +treadings +treadlers +treadling +treadmill +treasured +treasurer +treasures +treatable +treatings +treatises +treatment +Trebizond +trebuchet +trecentos +treddling +tredilles +tredrille +treenails +treenware +trefoiled +tregetour +treillage +trellised +trellises +Trematoda +trematode +trematoid +tremblant +tremblers +trembling +tremolant +tremolite +tremulant +tremulate +tremulous +trenchant +trenchard +trenchers +trenching +trendiest +trendyism +trepanned +trepanner +trephined +trephiner +trephines +trepidant +treponema +treponeme +tressiest +tressured +tressures +Trevelyan +trevisses +triactine +triadists +trialists +trialling +triallist +trialogue +Triandria +triangled +triangles +triathlon +triatomic +triaxials +tribadism +tribalism +tribalist +tribeless +tribesman +tribesmen +tribology +tribrachs +tribunals +tribunate +Tribunite +tributary +tributers +tricepses +tricerion +trichinae +trichinas +trichites +trichitic +trichomes +trichords +trichosis +trichroic +trichrome +trickiest +trickings +trickless +tricklets +trickling +tricksier +tricksome +trickster +triclinic +tricolors +tricolour +tricrotic +tricuspid +tricycled +tricycler +tricycles +tricyclic +tridacnas +tridactyl +tridental +tridented +tridymite +triecious +triennial +triennium +trierarch +trieteric +trifacial +trifocals +trifolies +trifolium +triforium +triformed +trigamies +trigamist +trigamous +triggered +triglyphs +trigonous +trigraphs +trigynian +trigynous +trihedral +trihedron +trihybrid +trihydric +trilemmas +trilinear +trilithic +trilithon +trillings +trillions +trilliums +trilobate +Trilobita +trilobite +trilogies +trimarans +trimerous +trimester +trimeters +trimethyl +trimetric +trimmings +trindling +trinities +trinitrin +trinketer +trinketry +trinomial +trionymal +trioxides +tripewife +triphones +Tripitaka +triplanes +triplings +triploidy +triplying +tripodies +trippings +tripplers +triptanes +triptotes +triptychs +triptyque +tripudium +triquetra +triradial +trisagion +trisected +trisector +triskeles +triskelia +trismuses +tristesse +tristichs +triteness +tritheism +tritheist +tritiated +tritiates +triticale +triticism +tritonias +triturate +triumphal +triumphed +triumpher +triumviri +triumvirs +triumviry +trivalent +trivalved +trivalves +trivially +Trocadero +Trochidae +trochilic +trochilus +trochisks +trochites +trochlear +trochleas +trochoids +trochuses +troilists +troilites +trolleyed +trollings +trolloped +trombones +trominoes +Trondheim +troopials +troparion +trophying +tropistic +tropology +Trossachs +trothless +trotlines +trottings +troublers +troubling +troublous +trouncers +trouncing +troupials +trousered +trousseau +troutiest +troutings +troutless +troutlets +troutling +trouv�res +trouveurs +trowelled +troweller +truancies +truanting +Trubenise +Trubenize +truceless +truchmans +truckages +truckings +trucklers +truckling +truculent +trudgings +truepenny +truffling +trumpeted +trumpeter +truncated +truncates +truncheon +trundlers +trundling +trunkfish +trunkfuls +trunkings +trunnions +truqueurs +trussings +trustiest +trustless +truthless +truthlike +tsarevich +tsarevnas +tsaritsas +tsaritzas +tubbiness +tubectomy +tubenoses +tubercled +tubercles +tubercule +tubfishes +tubicolar +Tubularia +tubulated +tubulates +tuckahoes +tuckerbox +tuckering +tucotucos +tucutucos +tufaceous +tuggingly +Tuileries +tuillette +tuitional +tularemia +tularemic +tulipants +tumblings +tumefying +tumescent +tumescing +tumidness +tumulting +tunefully +tunesmith +tungstate +Tungusian +tunicated +Tunisians +tunnelers +tunneling +tunnelled +tunneller +Tupaiidae +Tupamaros +tuppences +turbaries +turbidite +turbidity +turbinate +turbocars +turbofans +turboprop +turbulent +turcopole +turfiness +turgently +turgidity +Turkestan +Turkicise +Turkicize +Turkified +Turkifies +Turkistan +Turkomans +turmerics +turmoiled +turnbacks +turncoats +turncocks +Turnerian +turneries +turniping +turnovers +turnpikes +turnround +turnskins +turnsoles +turnspits +turnstile +turnstone +turntable +turpitude +turquoise +turtlings +tutelages +tutiorism +tutiorist +tutorages +tutorials +tutorised +tutorises +tutorized +tutorizes +tutorship +tutresses +tutworker +twaddlers +twaddling +twalpenny +twangiest +twangings +twangling +twattlers +twattling +tweediest +tweedlers +tweedling +twelfthly +twelvemos +twentieth +twentyish +twiddlers +twiddling +twiforked +twiformed +twiggiest +twilights +twiningly +twinklers +twinkling +twinlings +twinnings +twinships +twirliest +twistable +twistiest +twistings +twitchers +twitchier +twitching +twittered +twitterer +twittings +twizzling +twopences +twoseater +twostroke +twyforked +twyformed +tycoonate +tycoonery +tympanies +tympanist +tympanums +Tynemouth +typecasts +typewrite +typewrote +Typhaceae +typhlitic +typhlitis +typhoidal +Typhonian +typically +typifiers +typifying +typomania +tyranness +tyrannies +tyrannise +tyrannize +tyrannous +Tyroleans +tzaddikim +tzatzikis +tziganies diff --git a/com/agnibho/code/anagram/dictionary/U1.txt b/com/agnibho/code/anagram/dictionary/U1.txt new file mode 100644 index 0000000..4ae8ef0 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U1.txt @@ -0,0 +1 @@ +u diff --git a/com/agnibho/code/anagram/dictionary/U10.txt b/com/agnibho/code/anagram/dictionary/U10.txt new file mode 100644 index 0000000..3b9dda3 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U10.txt @@ -0,0 +1,1149 @@ +ubiquarian +ubiquinone +ubiquitary +ubiquitous +ufologists +ugsomeness +uintathere +uitlanders +Ukrainians +ulcerating +ulceration +ulcerative +ulcerously +ulsterette +ulteriorly +ultimately +ultimatums +ultrabasic +ultrafiche +ultrashort +ultrasonic +ultrasound +ultroneous +ululations +umbellated +umbellifer +umbellules +umbilicate +umbonation +umbraculum +umbrageous +umbratical +umbrellaed +umpireship +unabridged +unabsolved +unacademic +unaccented +unacquaint +unactuated +unadjusted +unadmiring +unadmitted +unaffected +unallotted +unaltering +unamenable +unamusable +unanalysed +unanalytic +unanalyzed +unanchored +unanimated +unannealed +unanswered +unappalled +unapparels +unapparent +unappeased +unapprised +unapproved +unarguable +unarguably +unarmoured +unarranged +unartfully +unartistic +unascended +unaspiring +unassailed +unassigned +unassisted +unassuaged +unassuming +unatonable +unattached +unattained +unattended +unattested +unavailing +unavowedly +unawakened +unbailable +unbalanced +unbalances +unbaptised +unbaptises +unbaptized +unbaptizes +unbarbered +unbattered +unbearable +unbearably +unbeatable +unbeavered +unbecoming +unbedimmed +unbedinned +unbegotten +unbeguiled +unbeguiles +unbeholden +unbelieved +unbeliever +unbelieves +unbendable +unbenignly +unbeseemed +unbesought +unbespeaks +unbespoken +unbestowed +unbetrayed +unbettered +unbewailed +unbiasedly +unbiblical +unbindings +unbirthday +unbishoped +unblamable +unblamably +unbleached +unblenched +unblessing +unblinding +unblinking +unblissful +unblocking +unbloodied +unblushing +unboastful +unbonneted +unborrowed +unbosomers +unbosoming +unbottomed +unbranched +unbreached +unbreathed +unbreeched +unbreeches +unbribable +unbridling +unbrokenly +unbuckling +unbudgeted +unbuilding +unbundling +unburdened +unburrowed +unburthens +unbuttered +unbuttoned +uncandidly +uncanniest +uncanonise +uncanonize +uncarpeted +uncensored +uncensured +uncerebral +unchaining +unchanging +uncharging +uncharming +uncharnels +unchastely +unchastity +uncheerful +unchristen +unchurched +unchurches +unclasping +uncleanest +uncleansed +unclearest +unclenched +unclenches +unclerical +uncloaking +unclogging +uncloister +unclothing +unclouding +unclubable +unclutched +unclutches +uncoffined +uncoloured +uncombined +uncombines +uncommoner +uncommonly +uncommuted +unconcerns +unconfined +unconfines +unconfused +uncongeals +unconjugal +unconsoled +unconstant +unconsumed +uncorseted +uncoupling +uncovering +uncreating +uncredible +uncritical +uncrossing +uncrowning +uncrumpled +uncrumples +unctuosity +unctuously +uncultured +uncumbered +uncurbable +uncurtains +uncustomed +undazzling +undebarred +undeceived +undeceives +undecimole +undecisive +undeclared +undefeated +undefended +undeifying +undelaying +undeniable +undeniably +undeplored +undepraved +undeprived +underacted +underactor +underagent +underarmed +underbelly +underbites +underboard +underborne +underbough +underbrush +underbuild +underbuilt +underburnt +undercards +undercasts +underclass +undercliff +underclubs +undercoats +undercooks +undercools +undercover +undercrest +undercroft +underdecks +underdoers +underdoing +underdrain +underdrawn +underdraws +underdress +underdrive +underearth +underfeeds +underfired +underfires +underfloor +underflows +underfunds +undergirds +underglaze +undergoing +undergowns +undergrads +undergrove +undergrown +underjawed +underkings +underlains +underlayer +underlease +underlined +underlinen +underlines +underlings +underlying +undermined +underminer +undermines +undernamed +underneath +undernoted +undernotes +underntime +underpants +underplant +underplays +underplots +underprice +underprize +underproof +underprops +underquote +underrated +underrates +underscore +underscrub +underseals +undersells +undersense +undersexed +undershirt +undershoot +undershrub +undersides +undersigns +undersized +underskies +underskirt +underslung +undersoils +undersongs +underspend +underspent +understand +understate +understeer +understock +understood +understory +understudy +undertaken +undertaker +undertakes +undertimed +undertints +undertoned +undertones +underusing +undervalue +undervests +undervoice +underwater +underwhelm +underwings +underwired +underwoods +underworks +underworld +underwrite +underwrote +undescried +undeserved +undeserver +undeserves +undesigned +undesiring +undesirous +undetected +undeterred +undigested +undirected +undismayed +undisposed +undisputed +undiverted +undivested +undivorced +undivulged +undoctored +undomestic +undoubling +undoubtful +undoubting +undramatic +undreading +undreaming +undressing +undrooping +undulately +undulating +undulation +undulatory +unearthing +uneasiness +uneclipsed +uneconomic +unedifying +uneducable +uneducated +uneffected +unembodied +unemphatic +unemployed +unenclosed +unendeared +unendingly +unenforced +unenriched +unenslaved +unentailed +unentitled +unenviable +unenviably +unequalled +unequipped +unerasable +unerringly +unescorted +unessenced +unessences +unevenness +uneventful +unexacting +unexamined +unexampled +unexcelled +unexciting +unexcluded +unexecuted +unexpanded +unexpected +unexpiated +unexplored +unextended +unfadingly +unfairness +unfaithful +unfallible +unfamiliar +unfastened +unfathered +unfatherly +unfathomed +unfeasible +unfeatured +unfeigning +unfellowed +unfeminine +unfettered +unfilially +unfillable +unfilleted +unfiltered +unfinished +unflagging +unfleshing +unflushing +unfocussed +unfoldings +unforcedly +unforcible +unfordable +unforeseen +unforested +unforetold +unforgiven +unforsaken +unfortuned +unfortunes +unfostered +unfoughten +unfreezing +unfrequent +unfriended +unfriendly +unfrighted +unfrocking +unfruitful +unfurrowed +ungainlier +ungainsaid +ungarnered +ungartered +ungathered +ungenerous +ungirthing +ungodliest +ungoverned +ungraceful +ungracious +ungrateful +ungrounded +ungrudging +unguarding +unguentary +unhallowed +unhampered +unhandiest +unhandsome +unhappiest +unharbours +unhardened +unhazarded +unhealable +unhearsing +unheededly +unhelmeted +unhelpable +unheralded +unheroical +unhindered +unhistoric +unhitching +unhoarding +unholiness +unhomelike +unhonoured +unhouseled +unhumanise +unhumanize +unhurrying +unhygienic +uniaxially +unicameral +unicentral +unicolored +unicostate +unidealism +uniflorous +unifoliate +uniforming +uniformity +Unigenitus +unilabiate +unilateral +unilingual +uniliteral +unilobular +unilocular +unimagined +unimmortal +unimpaired +unimparted +unimplored +unimposing +unimproved +uninclosed +uninfected +uninflamed +uninflated +uninforced +uninformed +uninspired +unintended +uninuclear +uninvested +uninviting +uninvolved +unionising +unionizing +unipartite +uniqueness +uniseriate +unisonally +unisonance +Unitarians +unitedness +unitholder +univalence +univalency +univariant +univariate +universals +university +univocally +univoltine +unjointing +unjustness +unkindlier +unkindness +unkinglike +unknighted +unknightly +unknitting +unknotting +unknowable +unlabelled +unlaboured +unladylike +unlamented +unlatching +unlawfully +unlearning +unleashing +unleavened +unleisured +unlessoned +unlettable +unlettered +unlicensed +unlifelike +unlikeable +unlikeness +unlimbered +unliquored +unlistened +unliterary +unliveable +unloadings +unlockable +unloosened +unloveable +unlovelier +unlovingly +unluckiest +unmaidenly +unmailable +unmanacled +unmanacles +unmanfully +unmannered +unmannerly +unmantling +unmarrying +unmastered +unmaterial +unmaternal +unmeasured +unmechanic +unmeetness +unmellowed +unmerciful +unmeriting +unmetalled +unmetrical +unmilitary +unmissable +unmodified +unmolested +unmorality +unmortised +unmotherly +unmoulding +unmounting +unmoveable +unmoveably +unmuffling +unmuzzling +unnameable +unnoticing +unnumbered +unnurtured +unobedient +unobscured +unobserved +unobtained +unoccupied +unoffended +unofficial +unordained +unordering +unordinary +unoriginal +unorthodox +unossified +unovercome +unoxidised +unoxidized +unpacified +unpainting +unpampered +unpanelled +unpapering +unparadise +unparallel +unpardoned +unparental +unparented +unpassable +unpastoral +unpastured +unpatented +unpathetic +unpeaceful +unpeerable +unpeopling +unpeppered +unperching +unperfumed +unperilous +unperished +unperjured +unperverts +unphonetic +unpickable +unpillared +unpillowed +unplaiting +unplausive +unplayable +unpleasant +unpleasing +unploughed +unplugging +unplumbing +unpoetical +unpoisoned +unpolicied +unpolished +unpolishes +unpolitely +unpolluted +unpopulous +unpossible +unpowdered +unpraising +unpreached +unpreaches +unpregnant +unprepared +unprepares +unpriested +unpriestly +unprincely +unprisoned +unprizable +unproduced +unprofaned +unprofited +unprolific +unpromised +unprompted +unproperly +unproposed +unpropping +unprovable +unprovided +unprovides +unprovoked +unpuckered +unpunctual +unpunished +unpurified +unpurposed +unpurveyed +unquarried +unquenched +unquieting +unquotable +unransomed +unratified +unravelled +unraveller +unravished +unreactive +unreadable +unreadiest +unrealised +unrealises +unrealized +unrealizes +unreasoned +unrecalled +unreceived +unreckoned +unrecorded +unredeemed +unreformed +unregarded +unrejoiced +unrelative +unreleased +unrelentor +unreliable +unrelieved +unrelished +unremarked +unremedied +unremitted +unrendered +unrenowned +unrepaired +unrepealed +unrepeated +unrepelled +unrepented +unrepining +unreported +unreposing +unreproved +unrequired +unrequited +unresented +unreserved +unresisted +unresolved +unrespited +unrestored +unretarded +unreturned +unrevealed +unrevenged +unreverend +unreverent +unreversed +unreverted +unrewarded +unriddlers +unriddling +unrideable +unrightful +unripeness +unrippings +unrivalled +unriveting +unromantic +unrounding +unruffable +unruffling +unruliness +unsaddling +unsafeness +unsainting +unsalaried +unsaleable +unsanctify +unsanitary +unsatiable +unsatiated +unscabbard +unscalable +unsceptred +unschooled +unscorched +unscramble +unscreened +unscrewing +unscripted +unscrupled +unsearched +unseasoned +unseconded +unseemlier +unseizable +unsellable +unsensible +unsensibly +unsettling +unshackled +unshackles +unshadowed +unshakable +unshakably +unshakenly +unsheathed +unsheathes +unshedding +unshelling +unshielded +unshifting +unshingled +unshipping +unshouting +unshowered +unshrouded +unshrubbed +unshutters +unshutting +unsinewing +unsinkable +unsistered +unsisterly +unsizeable +unskillful +unsleeping +unslinging +unslipping +unsluicing +unsmirched +unsmoothed +unsnapping +unsnarling +unsnecking +unsociable +unsociably +unsocially +unsocketed +unsoftened +unsoldered +unsolidity +unsolvable +unsoundest +unsparring +unspeaking +unspecific +unspelling +unsphering +unspirited +unsporting +unstablest +unstacking +unstanched +unstarched +unstarches +unsteadied +unsteadies +unsteadily +unsteeling +unstepping +unsticking +unstinting +unstitched +unstitches +unstocking +unstooping +unstoppers +unstopping +unstrained +unstrapped +unstreamed +unstressed +unstriated +unstringed +unstripped +unsublimed +unsuitable +unsuitably +unsummered +unsummoned +unsupplied +unsurfaced +unsurmised +unsurveyed +unswaddled +unswaddles +unswathing +unswayable +unswearing +unswerving +unsymmetry +unsympathy +untackling +untainting +untalented +untameable +untameably +untangible +untangling +untasteful +unteaching +untearable +untellable +untempered +untenanted +untendered +untenderly +untethered +unthankful +unthatched +unthatches +unthinking +unthorough +unthreaded +unthroning +untidiness +untillable +untimbered +untimelier +untiringly +untortured +untowardly +untrampled +untranquil +untreasure +untrenched +untrimming +untroubled +untrueness +untrussers +untrussing +untrustful +untruthful +untuckered +untuneable +unturnable +untwisting +unuplifted +unusefully +unutilised +unutilized +unvaluable +unvariable +unveilings +unvendible +unveracity +unverified +unviolated +unvirtuous +unvisoring +unvitiated +unvizarded +unwareness +unwariness +unwatchful +unwatering +unwavering +unweakened +unweaponed +unwearable +unwearying +unweighing +unwelcomed +unwellness +unwieldier +unwieldily +unwifelike +unwinnowed +unwiseness +unwitching +unwithered +unwithheld +unwomaning +unwontedly +unworkable +unworthier +unworthily +unwrapping +unwreathed +unwreathes +unwrinkled +unwrinkles +unyielding +upadaisies +Upanishads +upbraiders +upbraiding +upbreaking +upbringing +upbuilding +upbuoyance +upbursting +upcatching +upcheering +upchucking +upclimbing +updragging +updraughts +upfollowed +upgathered +upgradable +upgrowings +upheapings +uphillward +uphoarding +uphoisting +upholdings +upholsters +upholstery +upknitting +upliftings +uplighters +uppishness +uprighting +uproarious +uprootings +upsettings +upshooting +upsittings +upspeaking +upspearing +upstanding +upstarting +upstreamed +upsurgence +upswelling +upthrowing +upthrusted +upthunders +upturnings +upwardness +upwellings +upwhirling +uralitised +uralitises +uralitized +uralitizes +uranalysis +uranometry +urbaneness +urbanising +urbanistic +urbanizing +urbanology +urceoluses +Uredinales +uredosorus +uredospore +ureteritis +urethritic +urethritis +urinalyses +urinalysis +urinations +urinometer +urinoscopy +urochordal +urogenital +urological +urologists +uropoiesis +uropygiums +uroscopist +urostegite +urosthenic +Urticaceae +urticarial +urticating +urtication +Uruguayans +usableness +useability +usefulness +usheresses +usherettes +usherships +usquebaugh +ustulation +usucapient +usucapions +usucapting +usucaption +usufructed +usuriously +usurpation +usurpative +usurpatory +usurpature +usurpingly +uterectomy +utilisable +utilizable +utopianise +utopianism +utopianize +Utraquists +utterances +uxoricidal +uxoricides +uxorilocal +uxoriously +Uzbekistan diff --git a/com/agnibho/code/anagram/dictionary/U11.txt b/com/agnibho/code/anagram/dictionary/U11.txt new file mode 100644 index 0000000..5bcf493 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U11.txt @@ -0,0 +1,874 @@ +ubiquarians +uintatheres +ulcerations +ulotrichous +ulsterettes +Ulsterwoman +Ulsterwomen +ultrafiches +ultrafilter +ultramarine +ultrasonics +ultraviolet +umbellately +umbellifers +umbilicuses +umbonations +umbraculate +umbraculums +umbratilous +umbriferous +umpireships +unabolished +unabrogated +unaccounted +unaccusable +unaccusably +unadaptable +unaddressed +unadvisable +unadvisably +unadvisedly +unaffecting +unagreeable +unalienable +unalienably +unallowable +unalterable +unalterably +unambiguous +unambitious +unamendable +unamusingly +unanchoring +unanimities +unanimously +unannotated +unannounced +unapostolic +unappealing +unappointed +unapproving +unashamedly +unaspirated +unassertive +unassisting +unattainted +unattempted +unattending +unattentive +unaugmented +unauthentic +unavailable +unavailably +unavertable +unavertible +unavoidable +unavoidably +unawakening +unawareness +unbalancing +unballasted +unbaptising +unbaptizing +unbarricade +unbeautiful +unbefitting +unbegetting +unbeginning +unbeguiling +unbeknownst +unbelievers +unbelieving +unbendingly +unbeneficed +unbenefited +unbenighted +unbenignant +unbeseeming +unbiassedly +unbirthdays +unbishoping +unblameable +unblameably +unblemished +unblenching +unblindfold +unbonneting +unboundedly +unbreakable +unbreathing +unbreeching +unbrotherly +unburdening +unburnished +unburrowing +unburthened +unbuttoning +uncanniness +uncanonical +uncanonised +uncanonises +uncanonized +uncanonizes +unceasingly +uncertainly +uncertainty +uncertified +unchartered +unchastened +unchastised +unchastized +uncheckable +unchildlike +unchristens +unchristian +unchurching +uncivilised +uncivilized +unclassical +uncleanness +unclearness +unclenching +unclimbable +uncloisters +unclubbable +unclutching +uncluttered +uncollected +uncombining +uncomforted +uncommended +uncommitted +uncommonest +uncompacted +uncompanied +uncompelled +uncompleted +uncompliant +uncomplying +unconcealed +unconceived +unconcerned +unconcerted +unconcocted +unconfessed +unconfining +unconfirmed +uncongealed +uncongenial +unconnected +unconniving +unconquered +unconscious +uncontemned +uncontested +uncontrived +unconverted +unconvicted +unconvinced +uncorrected +uncorrupted +uncountable +uncourteous +uncouthness +uncrumpling +uncrushable +uncuckolded +uncurtailed +uncurtained +uncustomary +undauntable +undauntedly +undebauched +undeceiving +undecidable +undecidedly +undecimoles +undeclining +undefinable +undelegated +undelighted +undelivered +undemanding +undepending +undepressed +underacting +underaction +underactors +underagents +underarming +underbearer +underbidder +underbiting +underbitten +underboughs +underbought +underbreath +underbridge +underbudget +underbuilds +underbushed +underbushes +underbuying +undercharge +undercliffs +underclothe +undercoated +undercooked +undercooled +undercovert +undercrofts +underdamper +underdrains +underexpose +underfiring +underfunded +undergirded +underground +undergroves +undergrowth +underhanded +underhonest +underlapped +underlayers +underlaying +underleased +underleases +underletter +underlinens +underlining +underlooker +undermanned +undermasted +underminers +undermining +undernoting +underpasses +underpaying +underpinned +underplayed +underpraise +underpriced +underprices +underprized +underprizes +underquoted +underquotes +underrating +underscored +underscores +underscrubs +undersealed +underseller +underselves +undersenses +undershapen +undershirts +undershoots +undershorts +undershrubs +undersigned +underskirts +undersleeve +underspends +understands +understated +understates +understeers +understocks +understorey +understrata +undersupply +undertakers +undertaking +undertenant +underthings +underthirst +underthrust +undervalued +undervaluer +undervalues +underviewer +undervoices +underweight +underwhelms +underwiring +underworked +underworker +underwriter +underwrites +undescended +undescribed +undeservers +undeserving +undesigning +undesirable +undesirably +undespoiled +undestroyed +undeveloped +undeviating +undiagnosed +undignified +undignifies +undiscerned +undisclosed +undiscussed +undisguised +undispensed +undissolved +undistilled +undistorted +undisturbed +undiverting +undividable +undividedly +undoubtable +undoubtedly +undrainable +undressings +undrinkable +undriveable +undulancies +undulations +undutifully +undyingness +unelaborate +unemotional +unemotioned +unenchanted +unendurable +unendurably +unenjoyable +unenquiring +unequitable +unequivocal +unescapable +unessencing +unessential +unevidenced +unexcavated +unexcitable +unexclusive +unexercised +unexhausted +unexpectant +unexpensive +unexperient +unexplained +unexploited +unexpressed +unfailingly +unfaltering +unfashioned +unfastening +unfavorable +unfavorably +unfearfully +unfeathered +unfeelingly +unfeignedly +unfermented +unfettering +unfeudalise +unfeudalize +unfiltrable +unfittingly +unfixedness +unflappable +unflappably +unflavoured +unflinching +unflustered +unforbidden +unforeknown +unforfeited +unforgiving +unforgotten +unformatted +unfortified +unfortunate +unfoundedly +unfructuous +unfulfilled +unfurnished +unfurnishes +ungainliest +ungallantly +ungarmented +ungarnished +ungenitured +ungenteelly +ungentility +ungetatable +ungodliness +ungrammatic +ungratified +unguardedly +unguerdoned +unguiculate +unguligrade +unhabitable +unhackneyed +unhallowing +unhandiness +unhandseled +unhappiness +unharboured +unharmfully +unharnessed +unharnesses +unharvested +unhazardous +unhealthful +unhealthier +unhealthily +unheedfully +unheedingly +unhidebound +unhingement +unhopefully +unhumanised +unhumanises +unhumanized +unhumanizes +unhurriedly +unhurtfully +unhusbanded +unicellular +unicolorate +unicolorous +unicoloured +unidiomatic +unification +uniformness +unigeniture +unillumined +unimpeached +unimpededly +unimportant +unimpressed +uninflected +uninforming +uninhabited +uninhibited +uninitiated +uninquiring +uninscribed +uninspiring +uninucleate +uninventive +uninvidious +unipersonal +unipolarity +uniserially +unisexually +unisonances +unitholders +unitisation +unitization +univalences +univalvular +universally +unjaundiced +unjustified +unkennelled +unkindliest +unknighting +unknowingly +unknownness +unlaborious +unlabouring +unlearnedly +unleisurely +unlightened +unlimbering +unlimitedly +unliquefied +unlistening +unloosening +unloveliest +unloverlike +unluckiness +unluxuriant +unluxurious +unmalicious +unmalleable +unmanacling +unmanliness +unmarriable +unmasculine +unmatchable +unmeaningly +unmechanise +unmechanize +unmeditated +unmelodious +unmemorable +unmentioned +unmercenary +unmeritable +unmeritedly +unmindfully +unmitigable +unmitigably +unmitigated +unmodulated +unmoistened +unmoralised +unmoralized +unmortgaged +unmortified +unmotivated +unmurmuring +unmusically +unmutilated +unnaturally +unnavigable +unnavigated +unnecessary +unneedfully +unnilennium +unnilhexium +unniloctium +unnourished +unobnoxious +unobservant +unobserving +unobtrusive +unoffending +unoffensive +unofficered +unofficious +unoperative +unorganised +unorganized +unoriginate +unorthodoxy +unpaintable +unpalatable +unpalatably +unpanelling +unparadised +unparadises +unparagoned +unpardoning +unpassioned +unpathwayed +unpatriotic +unpatterned +unpeaceable +unpedigreed +unpensioned +unperceived +unperfectly +unperformed +unperishing +unperplexed +unperplexes +unpersuaded +unperturbed +unperverted +unpitifully +unpityingly +unplastered +unplausible +unplausibly +unpoisoning +unpolarised +unpolarized +unpolishing +unpolitical +unpopularly +unpopulated +unportioned +unpossessed +unpractical +unpracticed +unpractised +unpreaching +unpreferred +unpreparing +unpresuming +unprevented +unpriesting +unprintable +unprisoning +unprocessed +unprofessed +unprofiting +unprojected +unpromising +unprophetic +unprotected +unprotested +unprovident +unproviding +unprovoking +unpublished +unpurchased +unqualified +unqualifies +unqualitied +unquantised +unquantized +unqueenlike +unquickened +unquietness +unravellers +unravelling +unravelment +unreachable +unreadiness +unrealising +unrealistic +unrealities +unrealizing +unreasoning +unrecalling +unreceipted +unreceptive +unreclaimed +unrecounted +unrecovered +unrectified +unredressed +unreducible +unreflected +unrefracted +unrefreshed +unregarding +unregulated +unrehearsed +unrejoicing +unrelenting +unreligious +unreluctant +unremaining +unremittent +unremitting +unremovable +unrepentant +unrepenting +unreposeful +unreprieved +unreproving +unrepugnant +unrequisite +unrescinded +unresentful +unresenting +unresisting +unrespected +unrestingly +unrestraint +unretentive +unretouched +unreturning +unrevealing +unrewarding +unrighteous +unromanised +unromanized +unsandalled +unsatiating +unsatirical +unsatisfied +unsaturated +unsavourily +unscabbards +unscheduled +unscholarly +unscissored +unscrambled +unscrambles +unscratched +unseaworthy +unsectarian +unseemliest +unsegmented +unselfishly +unsensitive +unsentenced +unseparable +unseparated +unsettledly +unshackling +unshadowing +unshakeable +unshakeably +unsharpened +unsheathing +unsheltered +unshockable +unshrinking +unshrouding +unshunnable +unshuttered +unskilfully +unslumbrous +unsmilingly +unsmoothing +unsocialism +unsociality +unsocketing +unsoftening +unsoldering +unsoldierly +unsolicited +unsoundable +unsoundness +unsparingly +unspeakable +unspeakably +unspecified +unspiritual +unsprinkled +unstaidness +unstainable +unstarching +unstaunched +unsteadfast +unsteadying +unstitching +unstoppable +unstoppably +unstoppered +unstrapping +unstringing +unstripping +unsubduable +unsubjected +unsubmerged +unsucceeded +unsuccoured +unsupported +unsurpassed +unsurprised +unsuspected +unsuspended +unsuspicion +unsustained +unswaddling +unswallowed +unsweetened +unsyllabled +untaintedly +untamedness +untarnished +unteachable +untechnical +untempering +untenanting +unterrified +untethering +unthatching +unthickened +unthinkable +unthinkably +unthreading +unthriftily +untimeliest +untimeously +untinctured +untormented +untouchable +untraceable +untractable +untravelled +untraversed +untreasured +untreasures +untreatable +untrembling +untremulous +untunefully +unusualness +unutterable +unutterably +unvarnished +unvenerable +unveracious +unvisitable +unvitrified +unvizarding +unvocalised +unvocalized +unvulgarise +unvulgarize +unwandering +unwarranted +unweaponing +unweariable +unweariably +unweariedly +unweathered +unwedgeable +unweetingly +unwelcomely +unwholesome +unwieldiest +unwillingly +unwinkingly +unwithering +unwithstood +unwitnessed +unwittingly +unworthiest +unwoundable +unwreathing +unwrinkling +upbraidings +upbringings +upfollowing +upgathering +upgradation +upgradeable +upholstered +upholsterer +upholstress +upliftingly +uprightness +upspringing +upstreaming +upsurgences +upthrusting +upthundered +upvaluation +uralitising +uralitizing +uraniscuses +uranography +uranoplasty +Uranoscopus +urediospore +uredospores +uriniferous +uriniparous +urinometers +Urochordata +urochordate +urostegites +urticaceous +urticarious +useableness +uselessness +usquebaughs +usucapients +usucaptible +usucaptions +usufructing +usurpations +usurpatures +uterotomies +utilisation +utilitarian +utilization +utopianised +utopianiser +utopianises +utopianized +utopianizer +utopianizes +Utricularia diff --git a/com/agnibho/code/anagram/dictionary/U12.txt b/com/agnibho/code/anagram/dictionary/U12.txt new file mode 100644 index 0000000..3b99a7f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U12.txt @@ -0,0 +1,672 @@ +ubiquitarian +ubiquitously +uglification +Uintatherium +ulcerousness +Ulotrichales +ultramontane +ultramundane +ultrasensual +ultroneously +Umbelliferae +umbilication +umbrageously +unacceptable +unacceptance +unaccredited +unaccustomed +unachievable +unacquainted +unadmonished +unadulterate +unadvertised +unadvertized +unaffectedly +unaffiliated +unamiability +unanalysable +unanalytical +unanalyzable +unanswerable +unanswerably +unapologetic +unapparelled +unappealable +unappeasable +unappetising +unappetizing +unapplausive +unapplicable +unapproached +unarticulate +unartificial +unartistlike +unascendable +unascendible +unaspiringly +unassailable +unassignable +unassociated +unassumingly +unattainable +unattainably +unattractive +unattributed +unauspicious +unauthorised +unauthorized +unavailingly +unbarricaded +unbarricades +unbecomingly +unbefriended +unbelievable +unbelievably +unbeneficial +unbespeaking +unbetterable +unbiasedness +unblindfolds +unblinkingly +unblushingly +unbreachable +unbreathable +unbrokenness +unburthening +uncalculated +uncandidness +uncanonising +uncanonizing +uncapsizable +uncatalogued +uncelebrated +uncensorious +unchallenged +unchangeable +unchangeably +unchangingly +unchaperoned +uncharitable +uncharitably +uncharnelled +unchasteness +uncheerfully +unchivalrous +unchristened +unchronicled +unclassified +uncloistered +uncomeatable +uncomeliness +uncommercial +uncommonness +uncomposable +uncompounded +unconcealing +unconcerning +unconclusive +unconfinable +unconfinedly +unconforming +unconformity +unconfusedly +uncongealing +unconsecrate +unconsenting +unconsidered +unconstraint +uncontrolled +unconversant +unconvincing +uncoquettish +uncounselled +uncovenanted +uncreditable +uncritically +unctuousness +uncultivable +uncultivated +uncurtaining +undeceivable +undecomposed +undelectable +undeliberate +undelightful +undemocratic +undependable +underachieve +underactions +underbearers +underbearing +underbellies +underbidders +underbidding +underblanket +underbreaths +underbridges +underbrushed +underbrushes +underbudgets +underbuilder +underbushing +undercharged +undercharges +underclothed +underclothes +underclubbed +undercoating +undercooking +undercooling +undercoverts +undercurrent +undercutting +underdampers +underdevelop +underdrained +underdrawing +underdressed +underdresses +underexposed +underexposes +underfeeding +underfunding +undergarment +undergirding +undergrounds +undergrowths +underkingdom +underlapping +underleasing +underletters +underletting +underlookers +undermanning +undermeaning +underminings +underpassion +underpayment +underpeopled +underperform +underpinning +underplaying +underpowered +underpraised +underpraises +underpricing +underprizing +underpropped +underquoting +underrunning +underscoring +undersealing +undersellers +underselling +undersigning +undersleeves +understaffed +understanded +understander +understating +understeered +understratum +understudied +understudies +undertakable +undertakings +undertenancy +undertenants +underthirsts +underthrusts +underutilise +underutilize +undervaluers +undervaluing +underviewers +underweights +underwhelmed +underworkers +underworking +underworkman +underworkmen +underwriters +underwriting +underwritten +underwrought +undeservedly +undesignedly +undesirables +undespairing +undetectable +undetermined +undignifying +undiminished +undiplomatic +undiscerning +undischarged +undiscipline +undiscordant +undiscording +undiscovered +undismantled +undisordered +undispatched +undisputedly +undissembled +undissolving +undistracted +undisturbing +undivestedly +undocumented +undoubtingly +undulatingly +uneconomical +unelaborated +unembittered +unemployable +unemployment +unencumbered +unendangered +unendingness +unenthralled +unerringness +uneventfully +unexpectedly +unexpressive +unexpugnable +unexpurgated +unextenuated +unfadingness +unfaithfully +unfamiliarly +unfastidious +unfathomable +unfathomably +unfavourable +unfavourably +unfertilised +unfertilized +unfeudalised +unfeudalises +unfeudalized +unfeudalizes +unfilterable +unfittedness +unflaggingly +unflattering +unforeboding +unforeseeing +unforewarned +unforgivable +unformalised +unformalized +unformidable +unformulated +unfortunates +unfossilised +unfossilized +unfranchised +unfrequented +unfrequently +unfriendlily +unfriendship +unfrightened +unfruitfully +unfurnishing +ungainliness +ungenerously +ungentleness +ungovernable +ungovernably +ungracefully +ungraciously +ungratefully +ungroundedly +ungrudgingly +unguentaries +unguentarium +unguiculated +unhabituated +unhandsomely +unharbouring +unharmonious +unharnessing +unhealthiest +unheroically +unhesitating +unhingements +unhistorical +unhospitable +unhumanising +unhumanizing +unhyphenated +unidealistic +unidentified +unifications +unifoliolate +uniformities +unilaterally +unimaginable +unimaginably +unimolecular +unimportance +unimportuned +unimpressive +unimprisoned +unimpugnable +unincumbered +uninfluenced +uninstructed +unintegrated +uninterested +unintroduced +unionisation +unionization +uniseriately +unisexuality +unitarianism +unitisations +unitizations +universalise +universalism +universalist +universality +universalize +universities +unkennelling +unkindliness +unlawfulness +unlibidinous +unlikelihood +unlikeliness +unliquidated +unliveliness +unloveliness +unlovingness +unmaintained +unmanageable +unmanageably +unmarketable +unmeasurable +unmeasurably +unmechanical +unmechanised +unmechanises +unmechanized +unmechanizes +unmercifully +unmethodical +unmethodised +unmethodized +unmiraculous +unmistakable +unmistakably +unmodernised +unmodernized +unmodifiable +unmoralising +unmoralizing +unmunitioned +unnaturalise +unnaturalize +unnilpentium +unnilquadium +unnilseptium +unnoticeable +unnourishing +unobservable +unobservance +unobservedly +unobstructed +unobtainable +unofficially +unoppressive +unoriginated +unornamental +unornamented +unorthodoxly +unoverthrown +unparadising +unparalleled +unpardonable +unpardonably +unpassionate +unpatronised +unpatronized +unpavilioned +unpeacefully +unperceptive +unperforated +unperforming +unperishable +unperplexing +unpersecuted +unpersuasive +unperverting +unpleasantly +unpleasantry +unpleasingly +unpoetically +unpolishable +unpoliteness +unpopularity +unpossessing +unprejudiced +unprelatical +unpreparedly +unprescribed +unpretending +unprettiness +unprevailing +unprincipled +unprivileged +unprocedural +unproclaimed +unprocurable +unproductive +unprofitable +unprofitably +unprohibited +unpronounced +unpropertied +unpropitious +unprosperous +unprotesting +unprovidedly +unprovokedly +unpunctuated +unpunishable +unpunishably +unqualifying +unquantified +unquenchable +unquenchably +unquestioned +unravellings +unravelments +unreasonable +unreasonably +unrecallable +unreckonable +unrecognised +unrecognized +unreconciled +unredeemable +unreflecting +unreflective +unreformable +unrefreshing +unregeneracy +unregenerate +unregimented +unregistered +unrelievable +unrelievedly +unremarkable +unremembered +unremittedly +unremorseful +unrepairable +unrepealable +unrepeatable +unrepentance +unrepiningly +unreportable +unreproached +unreprovable +unrepulsable +unrequitedly +unreservedly +unresistible +unresolvable +unrespective +unresponsive +unrestrained +unrestraints +unrestricted +unreturnable +unrevealable +unrevengeful +unrewardedly +unrhythmical +unriddleable +unrightfully +unromantical +unsailorlike +unsalability +unsanctified +unsanctifies +unsanctioned +unsatisfying +unsaturation +unscabbarded +unscientific +unscottified +unscrambling +unscriptural +unscrupulous +unsculptured +unsearchable +unsearchably +unseasonable +unseasonably +unseemliness +unsegregated +unsensitised +unsensitized +unsensualise +unsensualize +unsepulchred +unsettlement +unshadowable +unshrinkable +unshuttering +unskillfully +unslumbering +unsocialised +unsocialized +unsolicitous +unspectacled +unstableness +unstanchable +unstatutable +unstatutably +unsteadiness +unsterilised +unsterilized +unstimulated +unstockinged +unstoppering +unstratified +unstructured +unsublimated +unsubmissive +unsubmitting +unsubscribed +unsubsidised +unsubsidized +unsuccessful +unsuccessive +unsufferable +unsufficient +unsupervised +unsuppleness +unsupposable +unsuppressed +unsuspecting +unsuspicious +unsustaining +unswervingly +unsystematic +untenability +untenantable +unterminated +unterrifying +unthankfully +unthinkingly +unthoughtful +unthreatened +untimeliness +untowardness +untrammelled +untranslated +untransmuted +untreasuring +untremendous +untroubledly +untrustiness +untruthfully +untumultuous +unusefulness +unvaccinated +unvanquished +unvariegated +unventilated +unverifiable +unvirtuously +unvoyageable +unvulgarised +unvulgarises +unvulgarized +unvulgarizes +unvulnerable +unwatchfully +unwaveringly +unwearyingly +unwieldiness +unwithholden +unwontedness +unworshipful +unworshipped +unworthiness +unyieldingly +upgradations +upholsterers +upholsteries +upholstering +uproariously +upthundering +upvaluations +uranographer +uranographic +urbanisation +urbanization +urbanologist +uredosoruses +urethroscope +urethroscopy +urinogenital +urochordates +urolithiasis +Ustilagineae +ustilaginous +usufructuary +usuriousness +uterectomies +utilisations +utilitarians +utilizations +utopianisers +utopianising +utopianizers +utopianizing +uxoriousness diff --git a/com/agnibho/code/anagram/dictionary/U13.txt b/com/agnibho/code/anagram/dictionary/U13.txt new file mode 100644 index 0000000..3ad024b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U13.txt @@ -0,0 +1,436 @@ +ubiquitarians +umbelliferous +umbraculiform +unabbreviated +unaccentuated +unaccompanied +unaccountable +unaccountably +unadulterated +unadventurous +unadvisedness +unambiguously +unambitiously +unamiableness +unanticipated +unapostolical +unapparelling +unappreciated +unapprehended +unappropriate +unapprovingly +unarticulated +unascertained +unassimilable +unassimilated +unassuageable +unbarricading +unbelievingly +unbendingness +unbeseemingly +unbiassedness +unblessedness +unblindfolded +unboundedness +unbridledness +unbrotherlike +uncalculating +unceremonious +uncertainness +uncertainties +uncharnelling +unchastisable +unchastizable +unchristening +unchristianly +uncircumcised +uncleanliness +uncloistering +uncloudedness +uncomfortable +uncomfortably +uncommendable +uncommendably +uncompanioned +uncompensated +uncompetitive +uncomplaining +uncomplaisant +uncomplicated +unconcealable +unconceivable +unconceivably +unconcernedly +unconcernment +unconditional +unconditioned +unconformable +unconformably +unconjectured +unconjunctive +unconquerable +unconquerably +unconsciously +unconsecrated +unconsecrates +unconsidering +unconstrained +unconsummated +uncontainable +uncontentious +uncontestable +unconversable +unconvertible +uncooperative +uncoordinated +uncourtliness +uncreatedness +undauntedness +undeliverable +undepreciated +underachieved +underachiever +underachieves +underblankets +underbrushing +underbudgeted +underbuilders +underbuilding +undercarriage +undercharging +underclassman +underclassmen +underclothing +underclubbing +undercurrents +underdevelops +underdraining +underdrawings +underdressing +underemployed +underestimate +underexposing +underexposure +underfinished +underfundings +undergarments +undergraduate +underhandedly +underkingdoms +underniceness +underpainting +underpayments +underperforms +underpinnings +underpraising +underprepared +underpropping +undershooting +underspending +understanders +understanding +understeering +understrapper +understudying +undersupplied +undersupplies +underutilised +underutilises +underutilized +underutilizes +underwhelming +undescendable +undescendible +undescribable +undeservingly +undeterminate +undeviatingly +undifferenced +undiscernedly +undiscernible +undiscernibly +undisciplined +undiscomfited +undiscouraged +undiscussable +undiscussible +undisguisable +undisguisedly +undishonoured +undissociated +undistempered +undistinctive +undistracting +undistributed +undisturbedly +undiversified +undividedness +undomesticate +undulationist +undutifulness +unearthliness +uneatableness +unelectrified +unembarrassed +unembellished +unemotionally +unenforceable +unenlightened +unentertained +unequivocally +unestablished +unevangelical +unexaggerated +unexceptional +unexclusively +unexemplified +unexpensively +unexperienced +unexplainable +unexpressible +unfalteringly +unfamiliarity +unfashionable +unfashionably +unfeelingness +unfeignedness +unfeudalising +unfeudalizing +unflinchingly +unforeseeable +unforgettable +unforgettably +unforgiveness +unforthcoming +unfortunately +ungainsayable +ungentlemanly +ungenuineness +ungrammatical +unguardedness +unguentariums +unhealthfully +unhealthiness +unhurtfulness +unicameralism +unicameralist +unilateralism +unilateralist +unilaterality +unilluminated +unillustrated +unimaginative +unimpassioned +unimpeachable +unimpregnated +unimpressible +uninaugurated +uninflammable +uninfluential +uninforceable +uninformative +uninhabitable +uninquisitive +uninstructive +unintelligent +unintentional +uninteresting +unintermitted +uninterrupted +unionisations +unionizations +universalised +universalises +universalists +universalized +universalizes +universalness +unjustifiable +unjustifiably +unknowingness +unlearnedness +unlikelihoods +unlimitedness +unmacadamised +unmacadamized +unmeaningness +unmechanising +unmechanizing +unmedicinable +unmentionable +unmindfulness +unministerial +unmistakeable +unmistakeably +unmistrustful +unmitigatedly +unmurmuringly +unnaturalised +unnaturalises +unnaturalized +unnaturalizes +unnaturalness +unnecessarily +unneighboured +unneighbourly +unobstructive +unobtrusively +unoriginality +unorthodoxies +unpasteurised +unpasteurized +unperceivable +unperceivably +unperceivedly +unperfectness +unperpetrated +unpersuadable +unphilosophic +unpitifulness +unpleasurable +unpleasurably +unpolarisable +unpolarizable +unpracticable +unpractically +unprecedented +unpredictable +unpredictably +unpreoccupied +unpresentable +unpretentious +unpreventable +unprogressive +unpromisingly +unprophetical +unprovisioned +unprovocative +unpunctuality +unpurchasable +unputdownable +unqualifiable +unqualifiedly +unquestioning +unreasoningly +unreclaimable +unreclaimably +unrecognising +unrecognizing +unrecollected +unrecommended +unrecompensed +unrecoverable +unrecoverably +unregenerated +unrelentingly +unreliability +unremembering +unremittently +unremittingly +unrepentingly +unreplaceable +unreplenished +unrepresented +unreprievable +unreprimanded +unreproachful +unreproaching +unresistingly +unrestfulness +unrestingness +unreturningly +unrighteously +unsaintliness +unsaleability +unsalvageable +unsanctifying +unsatisfiable +unsavouriness +unscabbarding +unscavengered +unscholarlike +unscrutinised +unscrutinized +unselfishness +unsensational +unsensualised +unsensualises +unsensualized +unsensualizes +unsentimental +unserviceable +unsettledness +unshrinkingly +unsightliness +unskilfulness +unsmotherable +unsociability +unsoldierlike +unsparingness +unspecialised +unspecialized +unspectacular +unspeculative +unspiritually +unspottedness +unstaunchable +unsteadfastly +unstercorated +unstigmatised +unstigmatized +unsubstantial +unsuitability +unsuperfluous +unsupportable +unsupportedly +unsurpassable +unsurpassably +unsusceptible +unsuspectedly +unsustainable +unsymmetrical +unsymmetrised +unsymmetrized +unsympathetic +untaintedness +untamableness +untenableness +unterrestrial +untheological +unthriftiness +untransformed +untransmitted +untransparent +untraversable +untremblingly +untrespassing +untrustworthy +untunableness +untunefulness +unvitrifiable +unvulgarising +unvulgarizing +unwarrantable +unwarrantably +unwarrantedly +unwelcomeness +unwhistleable +unwholesomely +unwillingness +unwithdrawing +unwithholding +unwittingness +unwomanliness +unworkmanlike +unworldliness +upholstresses +uprighteously +uralitisation +uralitization +uranographist +urbanologists +urediniospore +urethroscopic +Ustilaginales +ustilagineous +utterableness diff --git a/com/agnibho/code/anagram/dictionary/U14.txt b/com/agnibho/code/anagram/dictionary/U14.txt new file mode 100644 index 0000000..18bf443 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U14.txt @@ -0,0 +1,247 @@ +ubiquitousness +ultimogeniture +ultracrepidate +ultramicrotome +ultramicrotomy +ultramontanism +ultramontanist +ultrasonically +ultrastructure +ultroneousness +umbrageousness +unaccommodated +unaccomplished +unacknowledged +unacquaintance +unaffectedness +unalterability +unappreciative +unapprehensive +unapproachable +unapproachably +unappropriated +unartificially +unaspiringness +unassumingness +unattractively +unauthenticity +unavailability +unavoidability +unbearableness +unbecomingness +unblamableness +unblindfolding +unbusinesslike +uncertificated +uncheerfulness +unchristianise +unchristianize +uncircumcision +unclassifiable +uncommunicable +uncommunicated +uncomprehended +uncompromising +unconciliatory +unconfederated +uncongeniality +unconscionable +unconscionably +unconsecrating +unconsolidated +uncontaminated +uncontemplated +uncontradicted +uncontrollable +uncontrollably +uncontrolledly +uncontroverted +unconventional +uncorroborated +uncrystallised +uncrystallized +uncultivatable +undecipherable +undecomposable +undemonstrable +undeniableness +underachievers +underachieving +underbudgeting +undercarriages +underdeveloped +underestimated +underestimates +underexposures +undergraduates +undergraduette +undermentioned +undernourished +underperformed +understandable +understandably +understandings +understatement +understrappers +understrapping +undersupplying +undertenancies +underutilising +underutilizing +undervaluation +undeservedness +undesignedness +undesirability +undespairingly +undeterminable +undiminishable +undiscoverable +undiscoverably +undistractedly +undomesticated +undomesticates +undulationists +unenterprising +unentertaining +unenthusiastic +unexpectedness +unextinguished +unfaithfulness +unflappability +unflatteringly +unforeknowable +unfriendedness +unfriendliness +unfruitfulness +ungracefulness +ungraciousness +ungratefulness +ungroundedness +unhandsomeness +unhesitatingly +unicameralists +unidentifiable +unidirectional +uniformitarian +unilateralists +unilluminating +unincorporated +unintellectual +unintelligible +unintelligibly +unintermitting +unintoxicating +universalising +universalistic +universalities +universalizing +universitarian +unknightliness +unknowableness +unmaintainable +unmalleability +unmannerliness +unmanufactured +unmarriageable +unmaterialised +unmaterialized +unmathematical +unmatriculated +unmentionables +unmerchantable +unmercifulness +unmetaphorical +unmetaphysical +unnaturalising +unnaturalizing +unostentatious +unpassableness +unpleasantness +unpoeticalness +unpracticality +unpraiseworthy +unpremeditable +unpremeditated +unpreparedness +unprepossessed +unpresumptuous +unpretendingly +unproductively +unproductivity +unprofessional +unpropitiously +unproportioned +unprosperously +unpurchaseable +unquestionable +unquestionably +unreadableness +unrecapturable +unreciprocated +unrecognisable +unrecognisably +unrecognizable +unrecognizably +unreconcilable +unreconcilably +unreflectingly +unreliableness +unremorsefully +unremunerative +unreproducible +unreservedness +unresolvedness +unresponsively +unrestrainable +unrestrainedly +unrestrictedly +unrhythmically +unrightfulness +unromantically +unsatisfaction +unsatisfactory +unscripturally +unscrupulously +unsectarianism +unsensualising +unsensualizing +unsisterliness +unskillfulness +unsociableness +unsophisticate +unspiritualise +unspiritualize +unsplinterable +unstrengthened +unsuccessfully +unsuitableness +unsurmountable +unsuspectingly +unsuspiciously +unsympathising +unsympathizing +unsystematical +unsystematised +unsystematized +untameableness +unthankfulness +unthinkability +unthinkingness +unthoughtfully +untowardliness +untransferable +untranslatable +untranslatably +untransmutable +untruthfulness +unvanquishable +unwatchfulness +unyieldingness +uproariousness +uranographical +uranographists +Ustilaginaceae +uterogestation +utilitarianise +utilitarianism +utilitarianize diff --git a/com/agnibho/code/anagram/dictionary/U15.txt b/com/agnibho/code/anagram/dictionary/U15.txt new file mode 100644 index 0000000..f6bee0b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U15.txt @@ -0,0 +1,137 @@ +ultracentrifuge +ultracrepidated +ultracrepidates +ultrafiltration +ultramicroscope +ultramicroscopy +ultramicrotomes +ultramontanists +ultrasonography +ultrastructures +unaccommodating +unadvisableness +unalterableness +unapostolically +unapprehensible +unascertainable +unauthenticated +unauthoritative +unavailableness +unavoidableness +unblameableness +uncanonicalness +unceremoniously +unchallengeable +unchallengeably +unchangeability +unchristianised +unchristianises +unchristianized +unchristianizes +unchristianlike +uncircumscribed +uncommunicative +uncompanionable +uncompassionate +uncomplainingly +uncomplaisantly +uncomplimentary +uncomprehending +uncomprehensive +unconcernedness +unconditionally +unconscientious +unconsciousness +unconsentaneous +unconstrainable +unconstrainedly +uncontroversial +uncooperatively +undemonstrative +underdeveloping +underestimating +underestimation +undergraduettes +underhandedness +underperforming +understandingly +understatements +undervaluations +undesirableness +undetermination +undisappointing +undisciplinable +undistinguished +undomesticating +unexceptionable +unexceptionably +unexceptionally +unfavorableness +unforgivingness +unfortunateness +unfossiliferous +ungentlemanlike +ungrammatically +unhealthfulness +unidiomatically +uniformitarians +unimaginatively +unintentionally +uninterestingly +unintermittedly +uninterpretable +uninterruptedly +universitarians +unnecessariness +unobjectionable +unobjectionably +unobtrusiveness +unparliamentary +unpatriotically +unpeaceableness +unphilosophical +unpractisedness +unprecedentedly +unpremeditation +unprepossessing +unprofitability +unprogressively +unpronounceable +unproportionate +unprotectedness +unprotestantise +unprotestantize +unqualifiedness +unrecommendable +unreconstructed +unrelentingness +unremittingness +unrighteousness +unsatisfiedness +unseaworthiness +unselfconscious +unsophisticated +unspeakableness +unspiritualised +unspiritualises +unspiritualized +unspiritualizes +unsportsmanlike +unstatesmanlike +unsteadfastness +unsubstantiated +unsuspectedness +unsymmetrically +unteachableness +untractableness +untransferrable +untransmigrated +untransmissible +untrustworthily +unverifiability +unwholesomeness +uterogestations +utilitarianised +utilitarianises +utilitarianized +utilitarianizes diff --git a/com/agnibho/code/anagram/dictionary/U16.txt b/com/agnibho/code/anagram/dictionary/U16.txt new file mode 100644 index 0000000..9347024 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U16.txt @@ -0,0 +1,94 @@ +ultracentrifugal +ultracrepidarian +ultracrepidating +ultramicroscopic +unacceptableness +unaccomplishment +unaccountability +unaccustomedness +unacquaintedness +unanswerableness +unattainableness +unattractiveness +unchangeableness +uncharacteristic +uncharitableness +unchristianising +unchristianizing +uncompromisingly +unconditionality +unconformability +unconstitutional +uncontrovertible +unconventionally +uncrystallisable +uncrystallizable +undenominational +undependableness +underachievement +undercapitalised +undercapitalized +undercountenance +underdevelopment +undernourishment +underpreparation +underutilisation +underutilization +undifferentiated +undiscriminating +undistinguishing +undistractedness +unextinguishable +unextinguishably +unfathomableness +unfavourableness +unfrequentedness +ungovernableness +unimaginableness +unimpressionable +unintentionality +unintermittingly +universalisation +universalization +unmanageableness +unmodifiableness +unostentatiously +unpardonableness +unpleasantnesses +unpredictability +unpremeditatedly +unproductiveness +unprofessionally +unprofitableness +unpropitiousness +unproportionable +unproportionably +unprosperousness +unprotestantised +unprotestantises +unprotestantized +unprotestantizes +unreasonableness +unrepresentative +unresponsiveness +unsatisfactorily +unsatisfyingness +unscientifically +unscrupulousness +unsearchableness +unseasonableness +unsophistication +unspiritualising +unspiritualizing +unsubstantialise +unsubstantiality +unsubstantialize +unsubstantiation +unsuccessfulness +unsuspectingness +unsuspiciousness +unsystematically +unthoughtfulness +ununderstandable +utilitarianising +utilitarianizing diff --git a/com/agnibho/code/anagram/dictionary/U17.txt b/com/agnibho/code/anagram/dictionary/U17.txt new file mode 100644 index 0000000..9470ea9 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U17.txt @@ -0,0 +1,37 @@ +unaccountableness +unceremoniousness +uncomfortableness +unconceivableness +unconditionalness +unconformableness +unconquerableness +unconscientiously +unconventionality +undemonstratively +undergraduateship +undistinguishable +undistinguishably +unfashionableness +ungentlemanliness +uniformitarianism +uniformitarianist +unimaginativeness +unintelligibility +unmentionableness +unneighbourliness +unpersuadableness +unphilosophically +unpretentiousness +unpreventableness +unprogressiveness +unproportionately +unprotestantising +unprotestantizing +unselfconsciously +unsubstantialised +unsubstantialises +unsubstantialized +unsubstantializes +unsympathetically +untranslatability +untrustworthiness diff --git a/com/agnibho/code/anagram/dictionary/U18.txt b/com/agnibho/code/anagram/dictionary/U18.txt new file mode 100644 index 0000000..65ce53c --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U18.txt @@ -0,0 +1,16 @@ +unapprehensiveness +unapproachableness +uncompromisingness +unconscionableness +unconstitutionally +uncontrollableness +underconsciousness +uniformitarianists +unmarriageableness +unostentatiousness +unpremeditatedness +unreconcilableness +unsatisfactoriness +unsubstantialising +unsubstantializing +untranslatableness diff --git a/com/agnibho/code/anagram/dictionary/U19.txt b/com/agnibho/code/anagram/dictionary/U19.txt new file mode 100644 index 0000000..b6fd10c --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U19.txt @@ -0,0 +1,13 @@ +ultracentrifugation +ultramicrochemistry +uncommunicativeness +unconscientiousness +unconstitutionality +undemonstrativeness +undenominationalism +undercapitalisation +undercapitalization +underrepresentation +unexceptionableness +unselfconsciousness +unsophisticatedness diff --git a/com/agnibho/code/anagram/dictionary/U2.txt b/com/agnibho/code/anagram/dictionary/U2.txt new file mode 100644 index 0000000..b690456 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U2.txt @@ -0,0 +1,7 @@ +ug +um +un +up +ur +us +ut diff --git a/com/agnibho/code/anagram/dictionary/U21.txt b/com/agnibho/code/anagram/dictionary/U21.txt new file mode 100644 index 0000000..0f113c7 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U21.txt @@ -0,0 +1 @@ +undistinguishableness diff --git a/com/agnibho/code/anagram/dictionary/U3.txt b/com/agnibho/code/anagram/dictionary/U3.txt new file mode 100644 index 0000000..e0925ba --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U3.txt @@ -0,0 +1,30 @@ +udo +uds +uey +Ufa +ufo +ugh +ugs +Uhu +uke +ule +Ulm +ult +ums +Una +uni +uns +ups +urd +ure +Uri +URL +urn +urs +use +Usk +Ute +uts +utu +uva +Uzi diff --git a/com/agnibho/code/anagram/dictionary/U4.txt b/com/agnibho/code/anagram/dictionary/U4.txt new file mode 100644 index 0000000..9b2902e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U4.txt @@ -0,0 +1,58 @@ +udal +udos +ueys +ufos +ughs +ugli +ugly +ukes +ules +ulex +ulna +ulva +Umar +umbo +umph +unau +unbe +unce +unci +unco +unde +undo +Unio +unis +unit +Unix +unto +upas +upby +upgo +upo' +upon +upsy +Ural +urao +urd� +urds +Urdu +urdy +urea +ures +urge +uric +Urim +URLs +urns +Ursa +urus +urva +used +user +uses +Utah +utas +Utes +uvas +uvea +Uzis diff --git a/com/agnibho/code/anagram/dictionary/U5.txt b/com/agnibho/code/anagram/dictionary/U5.txt new file mode 100644 index 0000000..fbdecb1 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U5.txt @@ -0,0 +1,154 @@ +udals +udder +Udine +ugged +uglis +Ugric +uhlan +uhuru +ukase +ulcer +ulema +ulmin +Ulmus +ulnae +ulnar +Ulric +Ultan +ultra +Uluru +umbel +umber +umbos +umbra +umbre +umiak +umphs +umpty +unapt +unarm +unary +unaus +unbag +unbar +unbed +unbid +unbox +uncap +unces +uncle +uncos +uncus +uncut +undam +undee +under +undid +undue +undug +unfed +unfit +unfix +ungag +unget +ungod +ungot +ungum +unhat +unhip +Uniat +unify +union +unite +units +unity +unked +unket +unkid +unlaw +unlay +unled +unlet +unlid +unlit +unman +unmet +unmew +unpay +unpeg +unpen +unpin +unred +unrid +unrig +unrip +unsay +unset +unsew +unsex +unsod +untax +untie +until +untin +unwed +unwet +unwit +unwon +unzip +upbye +upend +upjet +uplay +upled +upped +upper +upran +uprun +upsee +upset +upsey +uptie +urali +urari +urate +urban +urdee +ureal +uredo +ureic +urena +urent +urged +urger +urges +Uriah +urial +Uriel +urine +urite +urman +urnal +urned +urson +Ursus +urubu +urvas +usage +users +usher +using +usnea +usual +usure +usurp +usury +uteri +Utica +utile +utter +uveal +uveas +uvula +Uzbeg +Uzbek diff --git a/com/agnibho/code/anagram/dictionary/U6.txt b/com/agnibho/code/anagram/dictionary/U6.txt new file mode 100644 index 0000000..1792cd8 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U6.txt @@ -0,0 +1,475 @@ +uakari +uberty +ubiety +ubique +uckers +udders +Uffizi +Uganda +ugging +uglied +uglier +uglies +uglify +uglily +Ugrian +ugsome +uhlans +ujamaa +ukases +ulcers +ulemas +ulexes +ulicon +ulikon +ulitis +ullage +ulling +ulnare +ulosis +Ulrica +ulster +ultima +ultimo +umbels +umbers +umbery +umbles +umbrae +umbral +umbras +umbrel +umbres +Umbria +umbril +umiaks +umlaut +umpire +unable +unarms +unawed +unbags +unbare +unbark +unbars +unbear +unbeds +unbelt +unbend +unbent +unbias +unbind +unbitt +unbolt +unbone +unboot +unborn +unbred +unbury +unbusy +uncage +uncaps +uncart +uncase +uncate +uncial +uncini +unclad +uncled +uncles +unclew +unclog +uncock +uncoil +uncolt +uncool +uncope +uncord +uncork +uncowl +uncurl +undams +undate +undead +undeaf +undear +undeck +undern +undies +undine +undock +undoer +undoes +undone +undraw +undrew +Undset +unduly +undyed +unease +uneasy +uneath +unedge +uneven +uneyed +unfact +unfair +unfeed +unfelt +unfine +unfirm +unfits +unfold +unfool +unform +unfree +unfurl +ungags +ungain +ungear +ungets +ungild +ungilt +ungird +ungirt +unglad +unglue +ungods +ungown +ungual +ungues +unguis +ungula +ungums +ungyve +unhair +unhand +unhang +unhasp +unhats +unhead +unheal +unhele +unhelm +unhewn +unhive +unholy +unhood +unhook +unhoop +unhung +unhurt +unhusk +Uniate +unific +unions +uniped +unipod +unique +unisex +unison +unital +united +uniter +unites +unjust +unkent +unkept +unkind +unking +unkiss +unknit +unknot +unlace +unlade +unlaid +unlash +unlaws +unlays +unlead +unleal +unless +unlids +unlike +unlime +unline +unlink +unlive +unload +unlock +unlord +unlost +unlove +unmade +unmake +unmans +unmask +unmeek +unmeet +unmews +unmiry +unmoor +unmown +unnail +unnest +unowed +unpack +unpaid +unpays +unpegs +unpens +unpent +unpick +unpins +unplug +unpope +unpray +unprop +unrake +unread +unreal +unreel +unrein +unrent +unrest +unrigs +unripe +unrips +unrobe +unroll +unroof +unroot +unrope +unrude +unrule +unruly +unsafe +unsaid +unsays +unseal +unseam +unseat +unseel +unseen +unself +unsent +unsets +unsewn +unsews +unshed +unship +unshod +unshoe +unshot +unshut +unsnap +unsoft +unsold +unsoul +unsown +unspar +unsped +unspun +unstep +unstop +unstow +unsuit +unsung +unsure +untack +untame +unteam +untent +unthaw +untidy +untied +unties +untile +untins +untold +untomb +untorn +untrim +untrod +untrue +untuck +untune +unturf +unturn +unused +unveil +unware +unwary +unweal +unwell +unwept +unwill +unwind +unwire +unwise +unwish +unwist +unwive +unwork +unworn +unwrap +unyoke +unzips +upases +upbear +upbeat +upbind +upblow +upboil +upbore +upbray +upcast +upcoil +upcome +upcurl +update +Updike +updrag +updraw +updrew +upends +upfill +upflow +upfurl +upgang +upgaze +upgoes +upgone +upgrew +upgrow +upgush +uphand +uphang +upheap +upheld +uphill +uphold +uphroe +uphung +uphurl +upjets +upkeep +upknit +uplaid +upland +uplays +uplead +upleap +uplift +uplink +upload +uplock +uplook +upmake +upmost +uppers +upping +uppish +uppity +uprate +uprear +uprest +uprise +uprist +uproar +uproll +uproot +uprose +upruns +uprush +upsend +upsent +upsets +upshot +upside +upstay +upsway +uptake +uptear +uptied +upties +uptilt +uptime +uptorn +uptown +upturn +upwaft +upward +upwell +upwent +upwind +upwith +upwrap +uracil +uraeus +Uralic +uralis +Urania +uranic +uranin +Uranus +uranyl +uraris +urates +urbane +urchin +uredia +ureide +uremia +uremic +urenas +ureses +uresis +ureter +uretic +urgent +urgers +urging +urials +urinal +urites +urmans +urnful +urning +uropod +urosis +ursine +ursons +Ursula +Urtext +urtica +urubus +Urumqi +uruses +usable +usably +usager +usages +usance +useful +Usenet +usen't +Ushant +ushers +usneas +ustion +usuals +usurer +usurps +usward +uterus +Utgard +utmost +utopia +utters +Uttley +uveous +uvulae +uvular +uvulas +Uzbeks diff --git a/com/agnibho/code/anagram/dictionary/U7.txt b/com/agnibho/code/anagram/dictionary/U7.txt new file mode 100644 index 0000000..6d1770a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U7.txt @@ -0,0 +1,687 @@ +uakaris +uberous +Uccello +Udaipur +udaller +uddered +ufology +Ugandan +ugliest +uglying +ukelele +Ukraine +ukulele +ulcered +ulichon +ulicons +ulikons +ullaged +ullages +ullings +ulnaria +ulsters +ultimas +ululant +ululate +Ulysses +umbered +Umberto +umbonal +umbones +umbrage +umbrere +Umbrian +umbrose +umbrous +umlauts +umpired +umpires +umpteen +umwhile +unacted +unaided +unaimed +unaired +unalike +unalist +unalive +unaptly +unarmed +unasked +unaware +unbaked +unbared +unbares +unbarks +unbated +unbears +unbeget +unbegot +unbegun +unbeing +unbends +unbinds +unbitts +unblent +unbless +unblest +unblind +unblock +unblown +unbolts +unboned +unbones +unboots +unborne +unbosom +unbound +unbowed +unboxed +unboxes +unbrace +unbroke +unbuild +unbuilt +unburnt +uncaged +uncages +uncanny +uncarts +uncased +uncases +unchain +uncharm +unchary +uncheck +unchild +uncials +uncinus +uncited +uncivil +unclasp +unclean +unclear +unclews +uncling +uncloak +unclogs +unclose +uncloud +uncocks +uncoils +uncoped +uncopes +uncords +uncorks +uncouth +uncover +uncowls +uncrate +uncross +uncrown +unction +uncured +uncurls +uncurse +undated +undealt +undecks +undeify +underdo +undergo +undight +undines +undocks +undoers +undoing +undrawn +undraws +undress +undried +undrunk +undying +uneared +unearth +uneaten +unedged +unedges +unequal +unfacts +unfaded +unfaith +unfamed +unfazed +unfeued +unfiled +unfired +unfitly +unfixed +unfixes +unflesh +unflush +unfolds +unfools +unforms +unfound +unfreed +unfrock +unfroze +unfumed +unfunny +unfurls +ungears +ungilds +ungirds +ungirth +unglove +unglued +unglues +ungodly +ungored +ungowns +ungrown +unguard +unguent +ungulae +unguled +ungyved +ungyves +unhairs +unhands +unhandy +unhangs +unhappy +unhardy +unhasps +unhasty +unheads +unheard +unheart +unheedy +unhelms +unhinge +unhired +unhitch +unhived +unhives +unhoard +unhoods +unhooks +unhoops +unhoped +unhorse +unhouse +unhuman +unhusks +unicity +unicorn +unideal +unified +unifier +unifies +uniform +unipeds +unipods +uniques +unisons +unitard +unitary +uniters +unities +uniting +unition +unitise +unitive +unitize +unjaded +unjoint +unkempt +unkings +unknits +unknots +unknown +unlaced +unlaces +unladed +unladen +unlades +unlatch +unlawed +unleads +unlearn +unleash +unlikes +unlimed +unlimes +unlined +unlines +unlinks +unlived +unlives +unloads +unlocks +unloose +unlords +unloved +unloves +unlucky +unmakes +unmanly +unmarry +unmasks +unmated +unmeant +unmeted +unmewed +unmixed +unmoors +unmoral +unmould +unmount +unmoved +unnails +unnamed +unnerve +unnests +unnoble +unnoted +unoften +unoiled +unorder +unowned +unpaced +unpacks +unpaged +unpaint +unpanel +unpaper +unpared +unpaved +unperch +unpicks +unplace +unplait +unplugs +unplumb +unplume +unpoped +unpopes +unposed +unprays +unprops +unpurse +unqueen +unquiet +unquote +unraced +unraked +unrakes +unrated +unravel +unready +unreave +unreels +unreeve +unreins +unrests +unright +unrimed +unriper +unrisen +unriven +unrivet +unrobed +unrobes +unrolls +unroofs +unroost +unroots +unroped +unropes +unrough +unround +unroyal +unruled +unsafer +unsaint +unsated +unsaved +unscale +unscary +unscrew +unseals +unseams +unseats +unseels +unseens +unselfs +unsense +unsewed +unsexed +unsexes +unshale +unshape +unsheds +unshell +unships +unshoed +unshoes +unshorn +unshout +unshown +unshuts +unsight +unsinew +unsized +unslain +unsling +unslung +unsmart +unsmote +unsnaps +unsnarl +unsneck +unsolid +unsonsy +unsouls +unsound +unspars +unspeak +unspell +unspent +unspied +unspilt +unspoke +unstack +unstaid +unstate +unsteel +unsteps +unstick +unstock +unstops +unstows +unstrap +unstrip +unstuck +unsuits +unsunny +unswear +unsweet +unswept +unswore +unsworn +untacks +untaken +untamed +untames +untaxed +untaxes +unteach +unteams +untents +untenty +unthaws +unthink +untiled +untiles +untired +untombs +untoned +untrace +untread +untried +untrims +untruer +untruly +untruss +untrust +untruth +untucks +untuned +untunes +unturfs +unturns +untwine +untwist +untying +unurged +unusual +unveils +unvexed +unvisor +unvital +unvocal +unvoice +unwaged +unwaked +unwares +unwater +unwayed +unweals +unweary +unweave +unwills +unwinds +unwiped +unwired +unwires +unwiser +unwitch +unwitty +unwived +unwives +unwoman +unwooed +unworks +unworth +unwound +unwoven +unwraps +unwrite +unwrote +unwrung +unyoked +unyokes +unzoned +upbears +upbeats +upbinds +upblown +upblows +upboils +upborne +upbound +upbraid +upbreak +upbring +upbroke +upbuild +upbuilt +upburst +upcasts +upcatch +upcheer +upchuck +upclimb +upclose +upcoast +upcoils +upcomes +upcurls +updated +updates +updrags +updrawn +updraws +upended +upfills +upflows +upflung +upfront +upfurls +upgangs +upgazed +upgazes +upgoing +upgrade +upgrown +upgrows +uphangs +upheaps +upheave +uphills +uphoard +uphoist +upholds +uphroes +uphurls +upknits +uplands +upleads +upleaps +upleapt +uplifts +uplinks +uploads +uplocks +uplooks +uplying +upmaker +upmakes +uppiled +uppings +Uppsala +upraise +uprated +uprates +uprears +uprests +upright +uprisal +uprisen +upriser +uprises +uprists +upriver +uproars +uprolls +uproots +uprouse +upscale +upsends +upshoot +upshots +upsides +upsilon +upspake +upspeak +upspear +upspoke +upstage +upstair +upstand +upstare +upstart +upstate +upstays +upstood +upsurge +upswarm +upsways +upsweep +upswell +upswept +upswing +uptakes +uptears +upthrew +upthrow +uptight +uptilts +uptimes +uptrend +upturns +uptying +upvalue +upwafts +upwards +upwells +upwhirl +upwinds +upwound +urachus +uraemia +uraemic +Uralian +uralite +Uranian +uranide +uranins +uranism +uranite +uranium +uranous +uranyls +urbaner +urchins +uredine +uredium +ureters +urethan +urethra +urgence +urgency +urgings +uricase +uridine +urinals +urinant +urinary +urinate +urinose +urinous +urnfuls +urnings +Urodela +urodele +urolith +urology +uromere +uropods +urosome +urticas +Uruguay +usagers +usances +useable +useably +usedn't +useless +ushered +Ustinov +usually +usucapt +usurers +usuress +usurped +usurper +utensil +uterine +utilise +utility +utilize +utmosts +utopian +utopias +utopism +utopist +Utrecht +utricle +Utrillo +uttered +utterer +utterly +uveitic +uveitis +uxorial diff --git a/com/agnibho/code/anagram/dictionary/U8.txt b/com/agnibho/code/anagram/dictionary/U8.txt new file mode 100644 index 0000000..55554bd --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U8.txt @@ -0,0 +1,967 @@ +ubiquity +udallers +udderful +udometer +Ugandans +uglified +uglifies +ugliness +uintaite +ukeleles +ukuleles +ulcerate +ulcering +ulcerous +ulichons +ullaging +Ullapool +Ulmaceae +Ulothrix +ulstered +ulterior +ultimacy +ultimata +ultimate +Ultonian +ultraism +ultraist +ultrared +ululated +ululates +umbellar +umbering +umbilici +umbonate +umbraged +umbrages +umbrated +umbratic +umbrella +umbrette +umlauted +umpirage +umpiring +umptieth +umquhile +unabated +unaching +unactive +unadored +unafraid +unalists +unallied +unamazed +unamused +unanchor +unaneled +unargued +unarisen +unarming +unartful +unatoned +unavowed +unawares +unbacked +unbagged +unbaited +unbanded +unbanked +unbarbed +unbaring +unbarked +unbarred +unbathed +unbeaten +unbedded +unbegets +unbegged +unbelief +unbelted +unbended +unbenign +unbereft +unbeseem +unbiased +unbiases +unbidden +unbishop +unbitted +unblamed +unblinds +unblocks +unbloody +unblowed +unbodied +unboding +unbolted +unboning +unbonnet +unbooked +unbooted +unbosoms +unbought +unboxing +unbraced +unbraces +unbreech +unbridle +unbroken +unbuckle +unbudded +unbuilds +unbundle +unburden +unburied +unburies +unburned +unburrow +unbutton +uncaging +uncalled +uncandid +uncapped +uncaring +uncarted +uncashed +uncasing +uncaught +uncaused +unchains +unchancy +uncharge +uncharms +unchaste +unchewed +unchosen +unchurch +unciform +uncinate +uncipher +unclasps +unclassy +unclench +unclewed +uncloaks +unclosed +unclothe +unclouds +uncloudy +uncloven +unclutch +uncoated +uncocked +uncoiled +uncoined +uncombed +uncomely +uncommon +uncooked +uncoping +uncorded +uncorked +uncostly +uncouple +uncovers +uncowled +uncrated +uncrates +uncreate +uncrowns +unctions +unctuous +unculled +uncurbed +uncurled +uncursed +uncurses +uncurved +undammed +undamned +undamped +undashed +undazzle +undecent +undecked +undeeded +undefied +underact +underarm +underbid +underbit +underbuy +undercut +underdid +underdog +underfed +underfur +underlap +underlay +underlet +underlie +underlip +underman +undermen +underpay +underpin +underran +underrun +undersea +underset +undersky +undertow +underuse +underwit +undesert +undevout +undimmed +undinted +undipped +undivine +undocked +undoings +undoomed +undouble +undraped +undreamt +undriven +undrossy +undubbed +undulant +undulate +undulled +undulose +undulous +unearned +unearths +uneasier +uneasily +uneathes +unedging +unedited +unelated +unending +unenvied +unequals +unerring +unespied +unevener +unevenly +unfabled +unfading +unfairer +unfairly +unfallen +unfanned +unfasten +unfaulty +unfeared +unfelled +unfenced +unfetter +unfeudal +unfilial +unfilled +unfilmed +unfished +unfitted +unfixing +unfixity +unflawed +unfolded +unfolder +unfooled +unfooted +unforbid +unforced +unforged +unforgot +unformal +unformed +unfought +unframed +unfreeze +unfriend +unfrocks +unfrozen +unfunded +unfurled +unfurred +ungagged +ungainly +ungalled +ungauged +ungeared +ungenial +ungentle +ungently +ungifted +ungilded +ungirded +ungirths +ungiving +unglazed +ungloved +ungloves +ungodded +ungorged +ungotten +ungowned +ungraced +ungraded +ungrazed +unground +unguards +unguents +unguided +unguilty +Ungulata +ungulate +ungummed +ungyving +unhacked +unhailed +unhaired +unhallow +unhalsed +unhanded +unhanged +unharmed +unhasped +unhatted +unheaded +unhealed +unhealth +unhearse +unheated +unhedged +unheeded +unhelmed +unhelped +unheppen +unheroic +unhidden +unhinged +unhinges +unhiving +unhoards +unholier +unholily +unhomely +unhonest +unhooded +unhooked +unhooped +unhorsed +unhorses +unhoused +unhouses +unhunted +unhusked +uniaxial +unicolor +unicorns +unicycle +unidea'd +unifiers +unifilar +uniforms +unifying +Unilever +unilobar +unilobed +unimbued +uninured +unionise +unionism +unionist +unionize +unipolar +uniquely +unironed +unisonal +unitards +unitedly +unitings +unitions +unitised +unitises +unitized +unitizes +univalve +universe +univocal +unjoints +unjoyful +unjoyous +unjustly +unkenned +unkennel +unkinder +unkindly +unkinged +unkingly +unkissed +unknight +unknowns +unlacing +unlading +unlashed +unlashes +unlawful +unlawing +unlaying +unleaded +unlearns +unlearnt +unleased +unlicked +unlidded +unlikely +unlimber +unliming +unlineal +unlining +unlinked +unlisted +unlively +unliving +unloaded +unloader +unlocked +unlooked +unloosed +unloosen +unlooses +unlopped +unlorded +unlordly +unlovely +unloving +unmailed +unmaimed +unmaking +unmanned +unmantle +unmarked +unmarred +unmasked +unmasker +unmeetly +unmelted +unmewing +unmilked +unmilled +unminded +unmissed +unmoaned +unmodish +unmonied +unmoored +unmoulds +unmounts +unmoving +unmuffle +unmuzzle +unnailed +unnative +unneeded +unnerved +unnerves +unnested +unnethes +unnetted +unnobled +unnobles +unobeyed +unopened +unorders +unpacked +unpacker +unpained +unpaints +unpaired +unpanels +unpanged +unpapers +unpathed +unpaying +unpeeled +unpeered +unpegged +unpenned +unpeople +unperson +unpicked +unpinked +unpinned +unpitied +unplaced +unplaces +unplaits +unplayed +unpliant +unplumbs +unplumed +unplumes +unpoetic +unpoised +unpoison +unpolish +unpolite +unpolled +unpoping +unposted +unpraise +unprayed +unpreach +unpretty +unpriced +unpriest +unprimed +unprison +unprized +unproper +unproved +unproven +unpruned +unpulled +unpurged +unpursed +unpurses +unquiets +unquoted +unquotes +unracked +unraised +unraking +unravels +unreally +unreaped +unreason +unreaved +unreaves +unrecked +unreeled +unreeved +unreeves +unreined +unrepaid +unrepair +unrhymed +unribbed +unridden +unriddle +unrifled +unrigged +unrights +unringed +unripest +unripped +unrivets +unrobing +unrolled +unroofed +unrooted +unroping +unrotted +unrotten +unrouged +unrounds +unroused +unrubbed +unruffle +unrulier +unsaddle +unsafely +unsafest +unsafety +unsailed +unsaints +unsalted +unsapped +unsashed +unsating +unsaying +unscaled +unscales +unscrews +unsealed +unseamed +unseason +unseated +unsecret +unseeded +unseeing +unseeled +unseemly +unseized +unseldom +unselfed +unsensed +unsenses +unsettle +unsewing +unsexing +unsexist +unsexual +unshaded +unshadow +unshaken +unshaled +unshales +unshamed +unshaped +unshapen +unshapes +unshared +unshaved +unshaven +unshells +unshouts +unshroud +unsicker +unsifted +unsigned +unsinews +unslaked +unsliced +unslings +unsluice +unsmooth +unsnarls +unsnecks +unsoaped +unsocial +unsocket +unsodden +unsoiled +unsolder +unsolemn +unsolved +unsorted +unsought +unsouled +unsoured +unspared +unspeaks +unspells +unsphere +unspoilt +unspoken +unsprung +unstable +unstacks +unstarch +unstated +unstayed +unsteady +unsteels +unsticks +unstitch +unstocks +unstowed +unstraps +unstring +unstrips +unstruck +unstrung +unstuffy +unsubtle +unsucked +unsuited +unsummed +unsunned +unsupple +unswathe +unswayed +unswears +untacked +untackle +untailed +untaming +untangle +untanned +untapped +untarred +untasted +untaught +untaxing +unteamed +untemper +untenant +untended +untender +untented +untested +untether +unthatch +unthawed +unthinks +unthread +unthrift +unthrone +untidied +untidier +untidies +untidily +untiling +untilled +untimely +untinged +untinned +untiring +untitled +untombed +untoward +untraced +untraces +untraded +untruest +untruism +untrusty +untruths +untucked +untuning +unturbid +unturfed +unturned +untwined +untwines +untwists +unusable +unusably +unuseful +unvalued +unvaried +unveiled +unveiler +unvented +unversed +unvetted +unviable +unviewed +unvirtue +unvisors +unvizard +unvoiced +unvoices +unvulgar +unwalled +unwanted +unwarded +unwarely +unwarier +unwarily +unwarmed +unwarned +unwarped +unwashed +unwasted +unwaters +unwatery +unweaned +unweapon +unweaved +unweaves +unwebbed +unwedded +unweeded +unweened +unwetted +unwieldy +unwifely +unwigged +unwilled +unwinged +unwiring +unwisdom +unwisely +unwisest +unwished +unwiving +unwomans +unwonted +unwooded +unworded +unworked +unwormed +unworthy +unwrites +unyeaned +unyoking +unzipped +upadaisy +Upanisad +upboiled +upbraids +upbreaks +upbroken +upbuilds +upcasted +upcaught +upcheers +upchucks +upclimbs +upclosed +upcloses +upcoiled +upcoming +upcurled +upcurved +updating +upending +upfilled +upflowed +upfollow +upfurled +upgather +upgazing +upgoings +upgraded +upgrader +upgrades +upgrowth +upgushes +upheaped +upheaval +upheaved +upheaves +uphoards +uphoists +upholder +uphurled +upjetted +uplander +uplaying +upleaped +uplifted +uplifter +uploaded +uplocked +uplooked +upmakers +upmaking +uppercut +uppishly +upraised +upraises +uprating +upreared +uprights +uprisals +uprisers +uprising +uprolled +uprootal +uprooted +uprooter +uproused +uprouses +uprushed +uprushes +upsetter +upshoots +upspeaks +upspears +upspoken +upsprang +upspring +upsprung +upstaged +upstages +upstairs +upstared +upstares +upstarts +upstayed +upstream +upstroke +upsurged +upsurges +upswayed +upsweeps +upswells +upswings +upthrown +upthrows +upthrust +uptilted +uptowner +uptrends +upturned +upvalued +upvalues +upwafted +upwardly +upwelled +upwhirls +uraeuses +uralitic +uranides +uranitic +uranylic +urbanely +urbanest +urbanise +urbanism +urbanite +urbanity +urbanize +urceolus +uredines +uredinia +ureteral +ureteric +urethane +urethrae +urethral +urethras +urgences +urgently +urinated +urinates +urinator +urnfield +urochord +urodelan +urodeles +uroliths +urologic +uromeres +uroscopy +urosomes +urostege +urostyle +Urquhart +Ursuline +urticant +urticate +usefully +usheress +ushering +Ustilago +usucapts +usufruct +usurious +usurpers +usurping +utensils +uteritis +utilised +utiliser +utilises +utilized +utilizer +utilizes +utopians +utopiast +utopists +utricles +utriculi +utterers +utterest +uttering +uvularly +uvulitis +Uxbridge +uxorious diff --git a/com/agnibho/code/anagram/dictionary/U9.txt b/com/agnibho/code/anagram/dictionary/U9.txt new file mode 100644 index 0000000..9b373f8 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/U9.txt @@ -0,0 +1,1088 @@ +udderless +udometers +udometric +ufologist +uglifying +uintahite +uitlander +Ukrainian +ulcerated +ulcerates +uliginose +uliginous +Ullswater +ulmaceous +ulotrichy +Ulsterman +Ulstermen +ultimates +ultimatum +Ultonians +ultraists +ululating +ululation +umbellate +umbellule +umbilical +umbilicus +umbraging +umbratile +umbrellas +umbrettes +umlauting +umpirages +umpteenth +unabashed +Unabomber +unaccused +unactable +unadapted +unadmired +unadopted +unadorned +unadvised +unaidable +unaligned +unallayed +unalloyed +unaltered +unamended +unamerced +unamiable +unamusing +unanchors +unanimity +unanimous +unanxious +unapparel +unapplied +unaptness +unashamed +unassayed +unassumed +unassured +unattired +unavenged +unavoided +unbaffled +unbagging +unbalance +unbaptise +unbaptize +unbarking +unbarring +unbashful +unbearded +unbearing +unbedding +unbeguile +unbeknown +unbelieve +unbeloved +unbending +unberufen +unbeseems +unbespeak +unbespoke +unbiasing +unbiassed +unbinding +unbishops +unbitting +unblended +unblessed +unblesses +unblinded +unblocked +unblooded +unblotted +unblunted +unbolting +unbonnets +unbookish +unbooting +unbosomed +unbosomer +unbounded +unbracing +unbraided +unbridged +unbridled +unbridles +unbruised +unbrushed +unbuckled +unbuckles +unbundled +unbundles +unburdens +unburrows +unburthen +unburying +unbuttons +uncannier +uncannily +uncanonic +uncapable +uncapping +uncareful +uncarting +unceasing +uncertain +uncessant +unchained +unchanged +uncharged +uncharges +uncharity +uncharmed +uncharnel +uncharted +unchecked +uncheered +unchrisom +uncinated +uncivilly +unclaimed +unclasped +unclassed +uncleaned +uncleaner +uncleanly +uncleared +unclearer +unclearly +unclewing +unclimbed +unclipped +uncloaked +unclogged +unclothed +unclothes +unclouded +uncocking +uncoiling +uncombine +unconcern +unconfine +unconform +uncongeal +uncordial +uncording +uncorking +uncorrupt +uncounted +uncoupled +uncouples +uncourtly +uncouthly +uncovered +uncowling +uncrating +uncreated +uncreates +uncropped +uncrossed +uncrosses +uncrowded +uncrowned +uncrudded +uncrumple +uncurable +uncurdled +uncurious +uncurling +uncurrent +uncursing +uncurtain +undamaged +undamming +undaunted +undawning +undazzled +undazzles +undebased +undecayed +undeceive +undecided +undecimal +undecking +undefaced +undefiled +undefined +undeified +undeifies +undelayed +undelight +undeluded +underacts +underarms +underbear +underbids +underbite +underbred +underbush +underbuys +undercard +undercart +undercast +underclad +underclay +underclub +undercoat +undercook +undercool +undercuts +underdeck +underdoer +underdoes +underdogs +underdone +underdraw +underdrew +underfeed +underfelt +underfire +underflow +underfong +underfoot +underfund +underfurs +undergird +undergoes +undergone +undergown +undergrad +underhand +underhung +underking +underlaid +underlain +underlaps +underlays +underlets +underlies +underline +underling +underlips +undermans +undermine +undermost +undernote +underpaid +underpass +underpays +underpeep +underpins +underplay +underplot +underprop +underrate +underring +underruns +underseal +underseas +underself +undersell +undersets +undershot +underside +undersign +undersoil +undersold +undersong +undertake +undertime +undertint +undertone +undertook +undertows +underused +underuses +undervest +underwear +underwent +underwing +underwits +underwood +underwork +undeserts +undeserve +undesired +undignify +undiluted +undivided +undocking +undoubled +undoubles +undoubted +undrained +undrawing +undreaded +undreamed +undressed +undresses +undrilled +undrowned +undulancy +undulated +undulates +unduteous +undutiful +undyingly +unearthed +unearthly +uneasiest +uneatable +uneffaced +unelected +unemptied +unendowed +unengaged +unentered +unenvious +unenvying +unequable +unequaled +unequally +unessayed +unessence +unethical +unevenest +unexalted +unexcited +unexpired +unexposed +unextinct +unextreme +unfadable +unfailing +unfairest +unfastens +unfearful +unfearing +unfeeling +unfeigned +unfetters +unfigured +unfitness +unfitting +unfledged +unfleshed +unfleshes +unfleshly +unfloored +unflushed +unflushes +unfocused +unfolders +unfolding +unfooling +unforming +unfortune +unfounded +unfranked +unfraught +unfreeman +unfreemen +unfreezes +unfretted +unfriends +unfrocked +unfuelled +unfurling +unfurnish +ungagging +ungainful +ungallant +ungarbled +ungearing +ungenteel +ungenuine +ungermane +ungetting +unghostly +ungilding +ungirding +ungirthed +unglossed +ungloving +unglueing +ungodding +ungodlier +ungodlike +ungodlily +ungowning +ungrassed +ungravely +ungroomed +ungrudged +unguarded +unguessed +unguiform +ungumming +unhairing +unhallows +unhandier +unhandily +unhanding +unhandled +unhanging +unhappier +unhappily +unharbour +unharmful +unharming +unharness +unhasping +unhasting +unhatched +unhatting +unhaunted +unheading +unhealthy +unhearsed +unhearses +unheedful +unheedily +unheeding +unhelming +unhelpful +unhinging +unhitched +unhitches +unhoarded +unholiest +unhooding +unhooking +unhooping +unhopeful +unhorsing +unhousing +unhumbled +unhurried +unhurtful +unhusking +unicolour +unicycles +unifiable +uniformed +uniformly +unillumed +unimpeded +unimposed +unincited +unindexed +uninjured +uninsured +uninvited +Unionidae +unionised +unionises +unionists +unionized +unionizes +uniparous +uniplanar +uniramous +uniserial +unisexual +unisonant +unisonous +Unitarian +unitising +unitively +unitizing +univalent +universal +universes +unjealous +unjointed +unkennels +unkindest +unkindled +unkinging +unknelled +unknights +unknitted +unknotted +unknowing +unladings +unlashing +unlatched +unlatches +unleading +unlearned +unleashed +unleashes +unlidding +unlighted +unlikable +unlimbers +unlimited +unlinking +unlivable +unloaders +unloading +unlocated +unlocking +unlogical +unloosens +unloosing +unlording +unlosable +unlovable +unluckier +unluckily +unmakable +unmanacle +unmanaged +unmanlike +unmanning +unmantled +unmantles +unmanured +unmarried +unmarries +unmaskers +unmasking +unmatched +unmatured +unmeaning +unmerited +unmindful +unmingled +unmixedly +unmoneyed +unmooring +unmotived +unmoulded +unmounted +unmourned +unmovable +unmovably +unmovedly +unmuffled +unmuffles +unmusical +unmuzzled +unmuzzles +unnailing +unnamable +unnatural +unneedful +unnerving +unnesting +unnobling +unnoticed +unobvious +unoffered +unopposed +unordered +unorderly +unpackers +unpacking +unpainful +unpainted +unpalsied +unpapered +unpartial +unpayable +unpegging +unpennied +unpenning +unpeopled +unpeoples +unperched +unperches +unperfect +unperplex +unpersons +unpervert +unpicking +unpierced +unpiloted +unpinning +unpitiful +unpitying +unplacing +unplagued +unplained +unplaited +unplanked +unplanned +unplanted +unpleased +unpleated +unpledged +unpliable +unpliably +unplucked +unplugged +unplumbed +unpluming +unpointed +unpoisons +unpoliced +unpolitic +unpopular +unpotable +unpraised +unpraises +unpraying +unprecise +unpredict +unprepare +unpressed +unpriests +unprinted +unprisons +unpropped +unprovide +unprovoke +unpursing +unpursued +unqualify +unqueened +unqueenly +unquelled +unquieted +unquietly +unquoting +unrazored +unreached +unreadier +unreadily +unrealise +unrealism +unreality +unrealize +unreaving +unrebated +unrebuked +unreduced +unreeling +unreeving +unrefined +unrefuted +unreining +unrelated +unrelaxed +unremoved +unrenewed +unreserve +unrestful +unresting +unrevised +unrevoked +unridable +unriddled +unriddler +unriddles +unrigging +unripened +unripping +unriveted +unrolling +unroofing +unrooting +unrosined +unrounded +unroyally +unruffled +unruffles +unruliest +unrumpled +unsaddled +unsaddles +unsainted +unsaintly +unsalable +unsaluted +unsatable +unsatiate +unsavoury +unsayable +unscaling +unscanned +unscarred +unscathed +unscented +unscoured +unscrewed +unscythed +unsealing +unseaming +unseating +unsecular +unsecured +unseduced +unseeable +unseeling +unseeming +unselfing +unselfish +unsensing +unserious +unsetting +unsettled +unsettles +unsevered +unshackle +unshadows +unshaling +unshapely +unshaping +unsheathe +unshelled +unshipped +unshocked +unshoeing +unshouted +unshrived +unshriven +unshrouds +unshunned +unshutter +unsickled +unsighing +unsighted +unsightly +unsinewed +unsizable +unskilful +unskilled +unskimmed +unskinned +unsluiced +unsluices +unsmiling +unsmitten +unsmooths +unsnapped +unsnarled +unsnecked +unsnuffed +unsockets +unsolaced +unsolders +unsolidly +unsouling +unsounded +unsounder +unsoundly +unsourced +unsparing +unsparred +unspelled +unsphered +unspheres +unspilled +unspoiled +unspotted +unsquared +unstabler +unstacked +unstained +unstamped +unstaying +unsteeled +unstepped +unsterile +unstifled +unstilled +unstinted +unstirred +unstocked +unstopped +unstopper +unstowing +unstrings +unstriped +unstudied +unstuffed +unsubdued +unsubject +unsuccess +unsuiting +unsullied +unsuspect +unswaddle +unswathed +unswathes +untacking +untackled +untackles +untainted +untamable +untamably +untangled +untangles +unteaches +unteaming +untempers +untempted +untenable +untenants +untenting +untethers +unthanked +unthawing +unthought +unthreads +unthrifts +unthrifty +unthroned +unthrones +untidiest +untidying +untimeous +untinning +untirable +untoiling +untombing +untouched +untracing +untracked +untrained +untreated +untressed +untrimmed +untrodden +untruisms +untrussed +untrusser +untrusses +untucking +untumbled +untunable +untunably +untuneful +unturfing +unturning +untutored +untwining +untwisted +untypable +untypical +unushered +unusually +unuttered +unvarying +unveilers +unveiling +unvisited +unvisored +unvizards +unvoicing +unwakened +unwariest +unwarlike +unwasting +unwatched +unwatered +unweapons +unwearied +unweaving +unweeting +unweighed +unwelcome +unwhipped +unwilling +unwinding +unwinking +unwishful +unwishing +unwitched +unwitches +unwittily +unwitting +unwomaned +unwomanly +unworking +unworldly +unworried +unwounded +unwrapped +unwreaked +unwreathe +unwrinkle +unwriting +unwritten +unwrought +unzealous +unzipping +upaithric +Upanisads +Upanishad +upbearing +upbinding +upblowing +upboiling +upbraided +upbraider +upbrought +upburning +upcasting +upcatches +upcheered +upchucked +upclimbed +upclosing +upcoiling +upcurling +updragged +updraught +updrawing +upfilling +upflowing +upfollows +upfurling +upgathers +upgraders +upgrading +upgrowing +upgrowths +upgushing +uphanging +upheaping +upheavals +upheaving +uphoarded +uphoisted +upholders +upholding +upholster +uphurling +upjetting +upknitted +uplanders +uplandish +upleading +upleaping +uplifters +uplifting +uplighted +uplighter +uplinking +uploading +uplocking +uplooking +upmakings +upmanship +uppercuts +uppermost +upraising +uprearing +uprighted +uprightly +uprisings +uprolling +uprootals +uprooters +uprooting +uprousing +uprunning +uprushing +upsadaisy +upsending +upsetters +upsetting +upsitting +upspeared +upsprings +upstaging +upstaring +upstarted +upstaying +upstreams +upstrokes +upsurging +upswaying +upswelled +uptearing +upthrusts +upthunder +uptilting +uptowners +upturning +upvaluing +upwafting +upwelling +upwhirled +upwinding +upwrought +urachuses +uralitise +uralitize +uraninite +uraniscus +uranology +urbanised +urbanises +urbanites +urbanized +urbanizes +urceolate +Uredineae +uredinial +uredinium +uredinous +urgencies +Uriconian +urinaries +urinating +urination +urinative +urinators +urinology +urnfields +Urochorda +urochords +urochrome +urodelous +urogenous +urography +urokinase +urolagnia +urolithic +urologist +uropygial +uropygium +uroscopic +urosteges +urostyles +urticaria +urticated +urticates +Uruguayan +usability +uselessly +usherette +ushership +usualness +usucapion +usucapted +usufructs +usuresses +usurpedly +uterotomy +utilisers +utilising +utilities +utilizers +utilizing +utopiasts +Utraquism +Utraquist +utricular +utriculus +utterable +utterance +utterings +utterless +uttermost +utterness +uvarovite +uxorially +uxoricide diff --git a/com/agnibho/code/anagram/dictionary/V1.txt b/com/agnibho/code/anagram/dictionary/V1.txt new file mode 100644 index 0000000..110ed9b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/V1.txt @@ -0,0 +1 @@ +v diff --git a/com/agnibho/code/anagram/dictionary/V10.txt b/com/agnibho/code/anagram/dictionary/V10.txt new file mode 100644 index 0000000..ebdaafa --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/V10.txt @@ -0,0 +1,448 @@ +vacantness +vacationer +vaccinated +vaccinates +vaccinator +vacciniums +vacillated +vacillates +vacuations +vacuolated +vagabonded +vaginismus +valentines +valerianic +valiancies +validating +validation +valleculae +vallecular +valorising +valorizing +valorously +Valparaiso +valuations +valvassors +valvulitis +vampirised +vampirises +vampirisms +vampirized +vampirizes +vanadinite +vandalised +vandalises +vandalized +vandalizes +Vanderbilt +vanishings +vanishment +vanitories +vanquished +vanquisher +vanquishes +vantbraces +vaporettos +vaporiform +vaporisers +vaporising +vaporizers +vaporizing +vaporosity +vaporously +vapourings +vapourware +vapulating +vapulation +variations +varicellar +varicocele +varicosity +varicotomy +variegated +variegates +variegator +varietally +varifocals +variolated +variolates +variolator +variolitic +variometer +varitypist +varnishers +varnishing +vascularly +Vaselining +vasoactive +vassalages +vastitudes +vastnesses +Vaticanism +Vaticanist +vaticinate +vaudeville +vaudouxing +vaunteries +vauntingly +vavasories +vectograph +vectorised +vectorises +vectorized +vectorizes +vegeburger +vegetables +vegetarian +vegetating +vegetation +vegetative +vehemently +veilleuses +velarising +velarizing +veldschoen +velitation +vellicated +vellicates +velocipede +velocities +velodromes +veloutines +velutinous +velveteens +velvetings +venational +venatorial +venditions +veneerings +veneficous +venerating +veneration +venerators +Venetianed +Venezuelan +vengeances +vengefully +venography +venomously +ventiducts +ventifacts +ventilable +ventilated +ventilates +ventilator +ventricles +ventricose +ventricous +ventricule +ventriculi +venturings +veracities +verandahed +verbalised +verbalises +verbalisms +verbalists +verbalized +verbalizes +verballing +verbarians +verberated +verberates +verbicides +verbifying +vergencies +vergership +veridicous +verifiable +verkrampte +vermeiling +vermeilled +vermeilles +vermicelli +vermicidal +vermicides +vermicular +vermicules +vermifugal +vermifuges +vermilions +vermilling +vermillion +verminated +verminates +vernacular +vernalised +vernalises +vernalized +vernalizes +vernations +vernissage +Versailles +versicular +versifiers +versifying +versioners +versionist +Vertebrata +vertebrate +vertically +vertigines +vertiports +Vertoscope +Verulamium +vesicating +vesication +vesicatory +vesiculate +vesiculose +vespertine +vespiaries +vestiaries +vestibular +vestibules +vestibulum +vestitures +vestmental +vestmented +vetchlings +veterinary +vexingness +vibraculum +vibraharps +vibraphone +vibrations +vibrograph +vibrometer +vicaresses +vicariates +vicarships +vicegerent +viceregent +vicereines +vichyssois +vicinities +vicomtesse +victimised +victimiser +victimises +victimized +victimizer +victimizes +victimless +Victoriana +Victorians +victorines +victorious +victresses +Victrollas +victualled +victualler +videodiscs +videodisks +videograms +videophone +videotaped +videotapes +videotexes +Vietnamese +viewership +viewfinder +viewlessly +viewphones +viewpoints +vigilantes +vigilantly +vignetters +vignetting +vignettist +vigorously +Vijayawada +vilipended +villainage +villainess +villainies +villainous +villanages +villanelle +Villanovan +villeinage +villenages +Villeneuve +Vincentian +vindemiate +vindicable +vindicated +vindicates +vindicator +vindictive +vinegaring +vinegarish +vinologist +vintagings +vinylidene +violaceous +violations +violinists +viperiform +viperously +viraginian +viraginous +Vireonidae +virescence +virginally +virginhood +Virginians +virologist +virtualism +virtualist +virtuality +virtueless +virtuosity +virtuously +virulently +visagistes +viscachera +viscerally +viscerated +viscerates +viscometer +viscometry +viscountcy +Vishnuites +visibility +Visigothic +visiogenic +visionally +visionings +visionists +visionless +visiophone +visitation +visitative +visitators +visitorial +visualised +visualiser +visualises +visualists +visualized +visualizer +visualizes +vitalisers +vitalising +vitalistic +vitalities +vitalizers +vitalizing +vitaminise +vitaminize +vitascopes +vitellicle +vitellines +vitiations +viticetums +viticolous +vitiferous +vitrailled +vitreosity +vitrescent +vitrifying +vitriolate +vitriolise +vitriolize +vituperate +vivacities +vivandi�re +vivandiers +Viverridae +Viverrinae +viviparism +viviparity +viviparous +vivisected +vivisector +vixenishly +vizierates +viziership +vocabulary +vocabulist +vocalisers +vocalising +vocalizers +vocalizing +vocational +vociferant +vociferate +vociferous +Vodaphones +voetganger +voetstoots +voidnesses +voituriers +Volap�kist +volatilise +volatility +volatilize +volcanised +volcanises +volcanists +volcanized +volcanizes +volitating +volitation +volitional +volitorial +volksraads +Volkswagen +volplaning +Voltairean +Voltairian +Voltairism +voltameter +voltigeurs +voltmeters +volubility +volumeters +volumetric +voluminous +volunteers +voluptuary +voluptuous +volutation +volvuluses +vomitories +vomitorium +voodooists +voracities +voraginous +vortically +vorticella +vorticists +vorticular +votaresses +vouchsafed +vouchsafes +voussoired +vowelising +vowelizing +voyageable +vraickings +Vulcanalia +vulcanised +vulcanises +vulcanists +vulcanized +vulcanizes +vulgarians +vulgarised +vulgariser +vulgarises +vulgarisms +vulgarized +vulgarizer +vulgarizes +vulnerable +vulnerably +vulpicides diff --git a/com/agnibho/code/anagram/dictionary/V11.txt b/com/agnibho/code/anagram/dictionary/V11.txt new file mode 100644 index 0000000..c42084f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/V11.txt @@ -0,0 +1,319 @@ +vacationers +vacationist +vaccinating +vaccination +vaccinators +vaccinatory +vacillating +vacillation +vacillatory +vacuolation +vacuousness +vagabondage +vagabonding +vagabondise +vagabondish +vagabondism +vagabondize +vaivodeship +valediction +valedictory +Valentinian +validations +valleculate +Vallisneria +Vallombrosa +Valoniaceae +valuational +vampirising +vampirizing +vandalising +vandalizing +vanguardism +vanishingly +vanishments +vanquishers +vanquishing +vantageless +vaporimeter +vaporisable +vaporizable +vapouringly +vapulations +variability +variational +varicelloid +varicellous +varicoceles +varicolored +variegating +variegation +variegators +variolating +variolation +variolators +variometers +variousness +varitypists +varletesses +varnishings +varsovienne +vascularise +vascularity +vascularize +vasculature +vasculiform +vasectomies +vasodilator +vasopressin +vasopressor +vassalesses +vastidities +vaticinated +vaticinates +vaticinator +vaudevilles +vectographs +vectorially +vectorising +vectorizing +vectorscope +vegeburgers +vegetarians +Vehmgericht +velitations +vellicating +vellication +velocimeter +velocimetry +velocipeder +velocipedes +velvetiness +venatically +Vend�miaire +vendibility +venditation +venefically +veneficious +venerations +venereology +venesection +Venezuelans +venisection +venographic +ventilating +ventilation +ventilative +ventilators +ventricular +ventricules +ventriculus +ventriloquy +venturesome +venturingly +venturously +veraciously +verbalising +verbalizing +Verbenaceae +verberating +verberation +verbigerate +verboseness +verdigrised +verdigrises +verdureless +vergerships +veridically +verisimilar +verkramptes +vermeilling +vermiculate +vermiculite +vermiculous +vermillions +verminating +vermination +vermivorous +vernaculars +vernalising +vernalizing +verruciform +versability +versatilely +versatility +versionists +verslibrist +vertebrally +vertebrated +vertebrates +verticality +vertiginous +Vertoscopes +verumontana +vesications +vesiculated +vespertinal +vestibulums +vestigially +vestimental +vesuvianite +vexatiously +vexillaries +vexillation +vexillology +vibraphones +vibratility +vibrational +vibrographs +vibrometers +vicariously +vicegerency +vicegerents +viceregents +viceroyalty +viceroyship +vichyssoise +viciousness +vicissitude +vicomtesses +victimisers +victimising +victimizers +victimizing +victimology +victoresses +victoryless +victuallage +victuallers +victualless +victualling +videophones +videotaping +viewfinders +vigilantism +vignettists +vilipending +villainages +villanelles +villanously +villeinages +vinaigrette +vinblastine +vincibility +vincristine +vindemiated +vindemiates +vindicating +vindication +vindicative +vindicators +vindicatory +viniculture +vinificator +vinologists +violinistic +violoncello +viridescent +virilescent +virological +virologists +virtualists +viscacheras +viscerating +viscometers +viscometric +viscosities +viscountess +viscounties +viscousness +visibleness +visionaries +visiophones +visitations +visitresses +visualisers +visualising +visualities +visualizers +visualizing +vitaminised +vitaminises +vitaminized +vitaminizes +vitellicles +viticulture +vitraillist +vitrescence +vitrescible +vitrifiable +vitriolated +vitriolates +vitriolised +vitriolises +vitriolized +vitriolizes +vituperable +vituperated +vituperates +vituperator +vivaciously +vivacissimo +vivandi�res +vivisecting +vivisection +vivisective +vivisectors +vizierships +Vladivostok +vocabulists +vociferance +vociferated +vociferates +vociferator +voetgangers +voicelessly +voivodeship +Volap�kists +volatilised +volatilises +volatilized +volatilizes +volcanicity +volcanising +volcanizing +volcanology +volitionary +Volkslieder +Volkswagens +voltameters +volubleness +volumometer +voluntaries +voluntarily +voluntarism +voluntarist +voluntative +volunteered +volutations +vomeronasal +vomitoriums +voodooistic +Voortrekker +voraciously +vorticellae +vortiginous +vouchsafing +voussoiring +voyeuristic +vulcanicity +vulcanising +vulcanizing +vulcanology +vulgarisers +vulgarising +vulgarities +vulgarizers +vulgarizing +vulneraries +vulneration diff --git a/com/agnibho/code/anagram/dictionary/V12.txt b/com/agnibho/code/anagram/dictionary/V12.txt new file mode 100644 index 0000000..5b1d8f9 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/V12.txt @@ -0,0 +1,201 @@ +vacationists +vacationless +vaccinations +Vacciniaceae +vacillations +vacuolations +vagabondised +vagabondises +vagabondized +vagabondizes +vaginicoline +vaginicolous +vainglorious +vaivodeships +valedictions +Valenciennes +valetudinary +valorisation +valorization +Valpolicella +valuableness +vanquishable +vanquishment +vaporimeters +vaporisation +vaporization +vaporosities +vaporousness +variableness +variationist +varicoloured +varicosities +varicotomies +variegations +variolations +varsoviennes +vascularised +vascularises +vascularized +vascularizes +vasculatures +vasodilators +vasodilatory +vasopressors +vaticinating +vaticination +vaticinators +vaudevillean +vaudevillian +vaudevillist +vectorscopes +vegetatively +veggieburger +Vehmgerichte +velarisation +velarization +vellications +Velloziaceae +velocipedean +velocipeders +velocipedian +velocipedist +vendibleness +venditations +veneficously +venepuncture +venerability +venesections +vengefulness +venipuncture +venomousness +ventilations +ventriloqual +ventripotent +verbenaceous +verberations +verbigerated +verbigerates +verdigrising +veridicality +verification +verificatory +verisimility +verisimilous +vermiculated +vermiculture +verminations +vernacularly +versificator +verslibriste +verslibrists +vertebration +verticalness +verticillate +verticillium +verumontanum +vesicatories +vesiculation +vestibulitis +vestimentary +veterinarian +veterinaries +vexillations +vibracularia +vibraphonist +vibratiuncle +viceroyships +vichyssoises +vicissitudes +Victorianism +victoriously +vigorousness +vilification +villainesses +villainously +vinaigrettes +vindemiating +vindications +vindicatress +vindictively +vinegarrette +vinicultural +vinification +vinificators +violoncellos +viridescence +virilescence +virilisation +virilization +virtuosities +virtuosoship +virtuousness +viscerotonia +viscerotonic +viscoelastic +viscosimeter +viscosimetry +viscountcies +viscountship +visibilities +visitational +visitatorial +vitalisation +vitalization +vitaminising +vitaminizing +vitativeness +vitilitigate +vitraillists +vitreousness +vitrifaction +vitrifacture +vitriolating +vitriolation +vitriolising +vitriolizing +vituperating +vituperation +vituperative +vituperators +vituperatory +vivification +viviparously +vivisections +vocabularian +vocabularied +vocabularies +vocalisation +vocalization +vocationally +vocicultural +vociferating +vociferation +vociferators +vociferosity +vociferously +voicefulness +voivodeships +volatileness +volatilising +volatilities +volatilizing +volcanically +volitational +volitionally +volitionless +volumetrical +voluminosity +voluminously +volumometers +voluntarists +voluntaryism +voluntaryist +volunteering +voluptuaries +voluptuosity +voluptuously +vomiturition +Voortrekkers +vulcanisable +vulcanizable diff --git a/com/agnibho/code/anagram/dictionary/V13.txt b/com/agnibho/code/anagram/dictionary/V13.txt new file mode 100644 index 0000000..64405fb --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/V13.txt @@ -0,0 +1,131 @@ +vacillatingly +vacuolisation +vacuolization +vagabondising +vagabondizing +valedictorian +valedictories +Valerianaceae +valorisations +valorizations +vanquishments +vapourishness +variationists +vascularising +vascularizing +vaudevilleans +vaudevillians +vaudevillists +vectorisation +vectorization +vegetarianism +veggieburgers +velarisations +velarizations +velocipedeans +velocipedians +velocipedists +veneficiously +venerableness +venereologist +venographical +ventriloquial +ventriloquise +ventriloquism +ventriloquist +ventriloquize +ventriloquous +venturesomely +venturousness +veraciousness +verbalisation +verbalization +verbification +verbigerating +verbigeration +Vercingetorix +verifiability +verifications +verisimilarly +veritableness +vermiculation +vernacularise +vernacularism +vernacularist +vernacularity +vernacularize +vernalisation +vernalization +versatileness +versicoloured +versification +versificators +verslibristes +vertebrations +verticillated +vertiginously +verumontanums +veterinarians +vexatiousness +vexillologist +vibracularium +vibraphonists +vibrationless +vibratiuncles +vicariousness +vicegerencies +viceroyalties +victimisation +victimization +victimologist +victuallesses +videocassette +vilifications +villagisation +villagization +villeggiatura +vindicability +vindicatorily +vinegarrettes +viniculturist +vinifications +violoncellist +visceroptosis +viscometrical +viscosimeters +viscosimetric +viscountesses +visionariness +visualisation +visualization +vitelligenous +viticulturist +vitilitigated +vitilitigates +vitrifactions +vitrification +vivaciousness +vivisectional +vivisectorium +vivisepulture +vocabularians +vocationalism +voicelessness +volatilisable +volatilizable +volcanisation +volcanization +volcanologist +volumenometer +voluntariness +voluntaristic +voluntaryists +voraciousness +vouchsafement +vraisemblance +vulcanisation +vulcanization +vulcanologist +vulgarisation +vulgarization +vulnerability diff --git a/com/agnibho/code/anagram/dictionary/V14.txt b/com/agnibho/code/anagram/dictionary/V14.txt new file mode 100644 index 0000000..4fd806f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/V14.txt @@ -0,0 +1,82 @@ +vaingloriously +valedictorians +Valentinianism +valerianaceous +valetudinarian +valetudinaries +vasodilatation +vasodilatatory +Vaticanologist +vegetativeness +venereological +venereologists +ventriloquised +ventriloquises +ventriloquists +ventriloquized +ventriloquizes +verbalisations +verbalizations +verisimilities +verisimilitude +vermiculations +vernacularised +vernacularises +vernacularisms +vernacularists +vernacularized +vernacularizes +vernalisations +vernalizations +versifications +verticillaster +vespertilionid +vexillologists +vibroflotation +victimisations +victimizations +victimologists +victoriousness +videocassettes +videotelephone +villagisations +villagizations +villeggiaturas +vindicatresses +vindictiveness +viniculturists +violoncellists +visualisations +visualizations +vitalistically +viticulturists +vitilitigating +vitilitigation +vitrescibility +vitrifications +vitriolisation +vitriolization +vituperatively +viviparousness +vivisectionist +vivisectoriums +vociferousness +volatilisation +volatilization +volcanisations +volcanizations +volcanological +volcanologists +volumenometers +volumetrically +voluminousness +voluptuousness +vouchsafements +vraisemblances +vulcanisations +vulcanizations +vulcanological +vulcanologists +vulgarisations +vulgarizations +vulnerableness diff --git a/com/agnibho/code/anagram/dictionary/V15.txt b/com/agnibho/code/anagram/dictionary/V15.txt new file mode 100644 index 0000000..f88bafa --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/V15.txt @@ -0,0 +1,26 @@ +valetudinarians +vascularisation +vascularization +vasoconstrictor +vasodilatations +Vaticanologists +ventriloquially +ventriloquising +ventriloquistic +ventriloquizing +venturesomeness +vernacularising +vernacularizing +verticillasters +vertiginousness +vicissitudinous +videoconference +videotelephones +vindicativeness +violinistically +viscoelasticity +vitilitigations +vitriolisations +vitriolizations +vivisectionists +V�lkerwanderung diff --git a/com/agnibho/code/anagram/dictionary/V16.txt b/com/agnibho/code/anagram/dictionary/V16.txt new file mode 100644 index 0000000..605f23a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/V16.txt @@ -0,0 +1,8 @@ +vaingloriousness +vasoconstriction +vasoconstrictive +vasoconstrictory +velocipedestrian +ventriculography +vespertilionidae +videoconferences diff --git a/com/agnibho/code/anagram/dictionary/V17.txt b/com/agnibho/code/anagram/dictionary/V17.txt new file mode 100644 index 0000000..e470f06 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/V17.txt @@ -0,0 +1,5 @@ +valetudinarianism +velocipedestrians +vernacularisation +vernacularization +videoconferencing diff --git a/com/agnibho/code/anagram/dictionary/V3.txt b/com/agnibho/code/anagram/dictionary/V3.txt new file mode 100644 index 0000000..a1f1d4d --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/V3.txt @@ -0,0 +1,29 @@ +vac +vae +Val +van +Var +vas +vat +vau +vee +veg +vet +vex +via +Vic +vid +vie +vim +vin +vis +Viv +viz +vly +voe +vol +Vor +vow +vox +vug +vum diff --git a/com/agnibho/code/anagram/dictionary/V4.txt b/com/agnibho/code/anagram/dictionary/V4.txt new file mode 100644 index 0000000..112118a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/V4.txt @@ -0,0 +1,96 @@ +Vaal +vacs +vade +vaes +vagi +vail +vain +vair +vale +vali +vamp +vane +vang +vans +vant +vara +vare +vary +vasa +vase +vast +vats +vatu +Vaud +veal +Veda +veep +veer +vees +vega +Vehm +veil +vein +vela +veld +vell +vena +vend +vent +Vera +verb +vers +vert +very +vest +veto +vets +vext +vial +vibe +vibs +vice +vide +vids +vied +vier +vies +view +Vigo +vild +vile +vill +vims +vina +vine +vino +vins +vint +viny +viol +vire +virl +visa +vise +vita +vite +viva +vive +vivo +vlei +voar +voes +void +vola +vole +volk +vols +volt +Vors +Voss +vote +vows +vril +vrow +vugs +vuln diff --git a/com/agnibho/code/anagram/dictionary/V5.txt b/com/agnibho/code/anagram/dictionary/V5.txt new file mode 100644 index 0000000..c0b2873 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/V5.txt @@ -0,0 +1,214 @@ +Vaasa +vacua +vagal +vague +vagus +vails +vair� +vairs +vairy +vakil +vales +valet +valid +valis +valor +valse +value +valve +vamps +vaned +vanes +vangs +vapid +vapor +varan +varas +vardy +varec +vares +varix +varna +varus +varve +vasal +vases +vasts +vasty +vatic +vatus +vault +vaunt +veals +vealy +Vedda +Vedic +veena +veeps +veers +veery +vegan +vegas +veges +vegie +Vehme +veils +veily +veins +veiny +velar +velds +veldt +vells +velum +venae +venal +vends +veney +venge +venin +venom +vents +venue +venus +verbs +Verde +Verdi +verge +Verne +verry +verse +verso +verst +verts +vertu +verve +vespa +vesta +vests +vetch +vexed +vexer +vexes +vezir +vials +viand +vibes +vibex +vicar +viced +vices +Vichy +Vicky +video +viers +views +viewy +vifda +vigia +vigil +vigor +Vijay +viler +villa +villi +vills +vinal +vinas +Vinay +Vinca +vined +viner +vines +vinew +vinos +vints +vinyl +viola +viols +viper +viral +vired +vireo +vires +virga +virge +Virgo +virid +virls +virtu +virus +visas +vised +vises +visie +visit +visne +vison +visor +vista +visto +vitae +vital +vitas +vitex +Vitis +vitta +vivas +vivat +vivda +viver +vives +vivid +vixen +vizir +vizor +Vlach +vleis +vlies +voars +vocab +vocal +voces +vodka +vogie +vogue +Vogul +voice +voids +voil� +voile +volae +volar +volas +voled +voles +volet +Volga +volta +volte +volts +volva +Volvo +vomer +vomit +voted +voter +votes +vouch +vouge +voulu +vowed +vowel +vower +voxel +vozhd +vraic +vroom +vrouw +vrows +vuggy +vulgo +vulns +vulva +vying diff --git a/com/agnibho/code/anagram/dictionary/V6.txt b/com/agnibho/code/anagram/dictionary/V6.txt new file mode 100644 index 0000000..39e9541 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/V6.txt @@ -0,0 +1,379 @@ +vacant +vacate +vacked +vacuum +vadose +vagary +vagile +vagina +vagrom +vagued +vaguer +vagues +vahine +vailed +vainer +vainly +Vaisya +vakass +vakeel +vakils +valent +Val�ry +valeta +valete +valets +valgus +valine +valise +Valium +vallar +valley +vallum +Valois +valour +valsed +valses +valued +valuer +values +valuta +valval +valvar +valved +valves +vamose +vamped +vamper +vandal +vanish +vanity +vanned +vanner +vapors +vapory +vapour +varans +varech +varecs +Varese +varied +varier +varies +varlet +varnas +varroa +varsal +Varuna +varved +varvel +varves +vassal +vaster +vastly +vatful +Vatman +Vatmen +vatted +vatter +vaudoo +vaults +vaulty +vaunts +vaunty +vaward +Veadar +vealer +Vectis +vector +Vedism +Vedist +veduta +vedute +veenas +veered +vegans +vegete +veggie +vegies +Vehmic +veiled +veined +velars +velate +Velcro +veldts +veleta +vellon +vellum +veloce +velour +velure +velvet +vended +vendee +vender +vendis +vendor +vendue +veneer +venery +Veneto +venewe +veneys +venged +venger +venges +venial +Venice +venins +venire +venite +vennel +venoms +venose +venous +vented +venter +ventil +venues +venule +verbal +verbid +verdet +verdin +verdit +verdoy +Verdun +verged +verger +verges +Vergil +verier +verify +verily +verism +verist +verity +verlig +vermal +vermes +vermil +vermin +vermis +vernal +Vernon +Verona +verrel +verrey +versal +versed +verser +verses +verset +versin +versos +versts +versus +verted +vertex +vertus +vervel +verves +vervet +vesica +vespas +vesper +vessel +vestal +vestas +vested +vestry +vetchy +vetoed +vetoes +vetted +vexers +vexing +vezirs +viable +Viagra +viands +viator +vibist +Vibram +vibrio +vicars +vicary +vicing +victim +victor +vicu�a +vidame +videos +vidual +vielle +Vienna +Vienne +viewed +viewer +viewly +vifdas +vigias +vigils +vigoro +vigour +vihara +viking +Vikram +vilely +vilest +vilify +villan +villar +villas +villus +vimana +viners +vinery +vinews +vinier +vining +vinous +vinted +vintry +violas +violer +violet +violin +Vipera +vipers +virago +virent +vireos +virger +Virgil +virgin +Virgos +virile +viring +virino +virion +viroid +virose +virous +virtue +virtus +visaed +visage +viscid +viscin +viscum +viscus +vis�ed +Vishnu +visies +visile +vising +vision +visite +visits +visive +visnes +visons +visors +vistal +vistas +vistos +visual +vitals +vitric +vittae +vittle +vivace +vivaed +vivary +vivdas +vively +vivers +Vivian +Vivien +vivify +vivres +vixens +vizard +vizier +vizirs +vizors +vizsla +Vlachs +Vltava +vocals +vocule +vodkas +vogued +voguer +vogues +voguey +Voguls +voiced +voicer +voices +voided +voidee +voider +voiles +volage +Volans +volant +volary +volens +volery +volets +voling +volley +volost +Volsci +voltes +volume +volute +volvas +Volvox +vomers +vomica +vomito +vomits +voodoo +vorago +vorant +vorpal +vortex +Vosges +Vostok +votary +voteen +voters +voting +votive +voudou +vouges +voulge +vowels +vowers +vowess +vowing +voxels +voyage +voyeur +vozhds +vraics +vrooms +vrouws +vulcan +vulgar +vulgus +vulned +Vulpes +vulval +vulvar +vulvas diff --git a/com/agnibho/code/anagram/dictionary/V7.txt b/com/agnibho/code/anagram/dictionary/V7.txt new file mode 100644 index 0000000..94549f5 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/V7.txt @@ -0,0 +1,443 @@ +vacancy +vacated +vacates +vacatur +vaccine +vacking +vacuate +vacuist +vacuity +vacuole +vacuous +vacuums +vaginae +vaginal +vaginas +vagitus +vagrant +vaguely +vaguest +vahines +vailing +vainest +vaivode +vakeels +valance +valence +valency +Valerie +valetas +valeted +Valetta +valiant +validly +valises +vallary +valleys +vallums +valonea +valonia +valsing +valuate +valuers +valuing +valutas +valvate +valvula +valvule +vamoose +vamosed +vamoses +vampers +vamping +vampire +vampish +vanadic +vandals +Vandyke +vanessa +vanilla +vanitas +vanners +vanning +vantage +vanward +vapidly +vapored +vapours +vapoury +vaquero +Varanus +vardies +varechs +vareuse +variant +variate +varices +variers +variety +variola +variole +various +varlets +varment +varmint +varnish +varroas +varsity +varuses +varvels +varying +vascula +vassals +vastest +vastier +vastity +vatable +vatfuls +Vatican +vatting +Vaudois +vaudoos +vaudoux +Vaughan +vaulted +vaulter +vaunted +vaunter +vaurien +vealers +vealier +Vectian +vectors +vedalia +Vedanta +Veddoid +vedette +veeries +veering +veganic +vegetal +veggies +vehicle +veiling +veinier +veining +veinlet +veinous +velamen +velaria +velaric +velated +veletas +veliger +vellons +vellums +velours +velout� +velvets +velvety +venally +venatic +venator +vendace +vendage +Vendean +vendees +venders +vending +vendiss +Vend�me +vendors +veneers +venefic +venerer +Venetia +venewes +Venezia +venging +venires +venison +vennels +venomed +ventage +ventail +ventana +venters +ventils +venting +ventose +ventral +venture +venturi +venules +venuses +veranda +verbals +verbena +verbids +verbify +verbose +verdant +verdict +verdins +verdite +verdits +verdure +vergers +verging +verglas +veriest +verismo +verists +Vermeer +vermeil +vermian +vermils +verminy +Vermont +vernant +vernier +Veronal +verrels +verruca +verruga +Versace +versant +versers +versets +versify +versine +versing +versins +version +versute +vertigo +verting +vervain +vervels +vervets +vesicae +vesical +vesicle +vespers +vespine +vespoid +vessels +vestals +vestige +vesting +vestral +vesture +vetches +veteran +vetiver +vetkoek +vetoing +vetting +vettura +vexedly +vexilla +vexings +viaduct +vialful +vialled +viatica +viators +vibices +vibists +vibrant +vibrate +vibrato +vibrios +Vicenza +viceroy +vicinal +vicious +vicomte +victims +victors +victory +victrix +victual +vicu�as +vidames +videnda +videoed +vidette +Vidicon +vidimus +viduage +viduity +viduous +vielles +Vietnam +viewers +viewier +viewing +viharas +vihuela +vikings +vilayet +viliaco +village +villain +villans +villany +villein +villose +villous +Vilnius +vimanas +Vinalia +vinasse +Vincent +vincula +vinegar +vinewed +viniest +Vinland +vintage +vinting +vintner +violate +violent +violers +violets +violins +violist +violone +viragos +virelay +virgate +virgers +virgins +Virgoan +virgule +virinos +virions +viroids +viroses +virosis +virtual +virtues +viruses +visaged +visages +visaing +viscera +viscose +viscous +viseing +visible +visibly +visiles +visions +visited +visitee +visiter +visites +visitor +visnomy +visored +vistaed +Vistula +visuals +vitally +vitamin +vitelli +vitexes +vitiate +Vitoria +vitrage +vitrail +vitrain +vitraux +vitreum +vitrics +vitrify +Vitrina +vitrine +vitriol +vittate +vittles +vitular +vivaing +Vivaldi +vivaria +vivency +Viverra +vivider +vividly +vivific +vixenly +Viyella +vizards +viziers +vizored +vizslas +vocable +vocalic +vocally +vocoder +vocular +vocules +voguers +voguing +voguish +voicers +voicing +voidees +voiders +voiding +voiture +voivode +volable +volante +Volap�k +volatic +volcano +volleys +volosts +volpino +Volpone +Volsung +voltage +voltaic +voluble +volubly +volumed +volumes +v�luspa +voluted +volutes +volutin +volvate +vomicas +vomited +vomitus +voodoos +Vosgian +votress +vouched +vouchee +voucher +vouches +voudous +voulges +Vouvray +vowelly +voyaged +voyager +voyages +voyeurs +vroomed +vulcans +vulgars +vulgate +vulning +vulpine +vulture +vulturn +vulvate +vyingly diff --git a/com/agnibho/code/anagram/dictionary/V8.txt b/com/agnibho/code/anagram/dictionary/V8.txt new file mode 100644 index 0000000..f66453f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/V8.txt @@ -0,0 +1,549 @@ +vacantly +vacating +vacation +vacaturs +vaccinal +vaccines +vaccinia +vacherin +vacuated +vacuates +vacuists +vacuolar +vacuoles +vacuumed +Vadodara +vagabond +vagaries +vagarish +vagility +vaginant +vaginate +vaginula +vaginule +vagrancy +vagrants +vagueing +vainness +vaivodes +vakasses +valanced +valances +valences +Valencia +valerian +valeting +Valhalla +valiance +valiancy +validate +validity +Valkyrie +Valletta +vallonia +valoneas +valonias +valorise +valorize +valorous +valuable +valuably +valuated +valuates +valuator +valvelet +valvulae +valvular +valvules +vambrace +vamoosed +vamooses +vamosing +vampings +vampired +vampires +vampiric +vamplate +vanadate +vanadium +vanadous +Vanbrugh +Vandalic +vandyked +Vandykes +vaneless +vanessas +vanguard +vanillas +vanillin +vanished +vanisher +vanishes +vanities +vanitory +vannings +vanquish +vantages +vapidity +vaporing +vaporise +vaporize +vaporous +vapoured +vapourer +vapulate +vaqueros +varactor +Varanasi +vareuses +vargue�o +variable +variably +variance +variants +variated +variates +varicose +variedly +varietal +variform +variolar +variolas +varioles +variorum +varistor +varletry +varletto +varments +varmints +vartabed +vascular +vasculum +Vaseline +vasiform +vassaled +vassalry +vastiest +vastness +vaticide +Vaucluse +vaudooed +vaultage +vaulters +vaulting +vauntage +vaunters +vauntery +vauntful +vaunting +Vauxhall +vavasory +vavasour +vealiest +vectored +vedalias +Vedantic +vedettes +veerings +veganism +Vegemite +vegetals +vegetant +vegetate +vegetive +vehement +vehicles +Vehmique +veilings +veilless +veiniest +veinings +veinlets +velamina +velarise +velarium +velarize +velatura +veligers +velleity +Vellozia +velocity +velout�s +velskoen +velveret +velveted +Venables +venality +venation +venators +vendaces +vendages +vendange +vendetta +vendeuse +vendible +vendibly +vendises +veneered +veneerer +venerate +venereal +venerean +venerers +Venetian +vengeful +venially +venidium +venomous +venosity +ventages +ventails +ventanas +ventings +ventrals +ventured +venturer +ventures +venturis +Venusian +Venutian +venville +veracity +Veracruz +verandah +verandas +veratrin +veratrum +verbally +verbatim +verbenas +verbiage +verbless +verboten +verdancy +verdelho +verderer +verderor +verdicts +verditer +verdured +verecund +vergence +vergency +verified +verifier +verifies +veristic +verities +verjuice +verkramp +Verlaine +verligte +vermeils +vermined +vermises +vermouth +vernally +vernicle +verniers +Veronese +veronica +verquere +verrucae +verrucas +verrugas +verselet +versicle +versines +versings +versions +vertebra +vertexes +vertical +vertices +verticil +vertigos +vervains +vesicant +vesicate +vesicles +vesicula +vesperal +vespiary +Vespidae +Vespucci +vestiary +vestiges +vestigia +vestings +vestment +vestries +vestural +vestured +vesturer +vestures +Vesuvian +Vesuvius +veterans +vetkoeks +vetturas +vexation +vexatory +vexillum +vexingly +viaducts +vialfuls +viameter +viaticum +vibrancy +vibrated +vibrates +vibrator +vibratos +vibrissa +vibronic +viburnum +vicarage +vicarate +vicaress +vicarial +viceless +vicenary +viceroys +Vichyite +vicinage +vicinity +vicomtes +victoria +victress +victuals +videndum +videofit +videoing +videotex +videttes +Vidicons +Viennese +Vietminh +viewable +Viewdata +viewiest +viewings +viewless +vigilant +vigneron +vignette +vigorish +vigorous +vihuelas +vilayets +vileness +vilified +vilifier +vilifies +vilipend +villadom +villager +villages +villains +villainy +villatic +villeins +Villette +Villiers +vincible +vinculum +vindaloo +vinegars +vinegary +Vineland +vineries +vinewing +vineyard +vinolent +vinology +vinosity +vintaged +vintager +vintages +vintners +vintries +violable +violably +violated +violater +violates +violator +violence +violists +violones +viperine +viperish +viperous +viraemia +viraemic +viragoes +virelays +virement +virgates +virginal +Virginia +virginly +Virgoans +virgules +viricide +viridian +viridite +viridity +virilism +virility +virogene +virology +virtuosa +virtuose +virtuosi +virtuoso +virtuous +virucide +virulent +visagist +viscacha +visceral +Visconti +viscount +Visigoth +visional +visioned +visioner +visitant +visitees +visiters +visiting +visitors +visoring +vistaing +visually +Vitaceae +vitalise +vitalism +vitalist +vitality +vitalize +vitamine +vitamins +vitative +vitellin +vitellus +vitiable +vitiated +vitiates +vitiator +viticide +vitiligo +vitrages +vitreous +vitrines +vitriols +Vittoria +vituline +vivacity +vivaries +vivarium +vividest +vividity +vivified +vivifier +vivifies +vivipary +vivisect +vixenish +vizament +vizarded +vizcacha +vizirate +vizirial +vizoring +Vladimir +vocables +vocalese +vocalion +vocalise +vocalism +vocalist +vocality +vocalize +vocation +vocative +vocoders +Vodafone +vogueing +voiceful +voicings +voidable +voidance +voidings +voidness +voivodes +volaries +volatile +volcanic +voleries +volitant +volitate +volition +volitive +volleyed +volleyer +volpinos +volplane +Volscian +Volsungs +voltages +Voltaire +voltaism +Volturno +voluming +volumist +Volumnia +v�luspas +volution +volutoid +volvulus +vomerine +vomiting +vomitive +vomitory +Vonnegut +voodooed +voracity +voragoes +Voronezh +vortexes +vortical +vortices +votaress +votaries +votarist +voteless +vouchees +vouchers +vouching +voudoued +voussoir +vowelise +vowelize +vowelled +vowesses +voyagers +voyageur +voyaging +vraicker +vrooming +vulcanic +vulgarly +vulgates +vulguses +vulsella +vultures +vulturns +vulvitis diff --git a/com/agnibho/code/anagram/dictionary/V9.txt b/com/agnibho/code/anagram/dictionary/V9.txt new file mode 100644 index 0000000..c98e5c4 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/V9.txt @@ -0,0 +1,554 @@ +vacancies +vacations +vaccinate +vaccinial +vaccinium +vacherins +vacillant +vacillate +vacuating +vacuation +vacuities +vacuolate +vacuously +vacuuming +vagabonds +vagarious +vaginally +vaginated +vaginitis +vaginulae +vaginules +vagueness +vainglory +Vaishnava +valencies +valentine +Valentino +valerians +valetings +valiances +valiantly +validated +validates +validness +Valkyries +vallecula +vallonias +valorised +valorises +valorized +valorizes +valuables +valuating +valuation +valuators +valueless +valvassor +valveless +valvelets +vambraced +vambraces +vamoosing +vampiring +vampirise +vampirism +vampirize +vamplates +vanadates +Vancouver +vandalise +vandalism +vandalize +vanguards +vanishers +vanishing +vantbrace +vapidness +vaporable +vaporetti +vaporetto +vaporific +vaporised +vaporiser +vaporises +vaporized +vaporizer +vaporizes +vaporware +vapourers +vapouring +vapourish +vapulated +vapulates +varactors +Varangian +Varanidae +vargue�os +variables +variances +variating +variation +variative +varicella +variegate +varieties +varifocal +variolate +variolite +varioloid +variolous +variorums +variously +variscite +varistors +Varityper +varletess +varnished +varnisher +varnishes +varsities +vartabeds +varvelled +vasculums +vasectomy +Vaselined +Vaselines +vasomotor +vassalage +vassaless +vassaling +vastidity +vastitude +vaticides +vaticinal +vaudooing +vaudouxed +vaudouxes +vaultings +vauntings +vavasours +vectorial +vectoring +vectorise +vectorize +vedutista +vedutisti +veeringly +vegetable +vegetably +vegetated +vegetates +vehemence +vehemency +vehicular +veilleuse +veinstone +veinstuff +velarised +velarises +velariums +velarized +velarizes +Vel�squez +Vel�zquez +veldskoen +vellicate +velodrome +veloutine +velveteen +velveting +venatical +vendanges +vendettas +vendeuses +vendisses +vendition +veneerers +veneering +venefical +venerable +venerably +venerated +venerates +venerator +venereous +Venetians +Venezuela +vengeable +vengeably +vengeance +veniality +venidiums +venireman +ventiduct +ventifact +ventilate +ventosity +ventrally +ventricle +venturers +venturing +venturous +Venusberg +Venusians +veracious +verandahs +veratrine +veratrums +verbalise +verbalism +verbalist +verbality +verbalize +verballed +verbarian +Verbascum +verberate +verbicide +verbified +verbifies +verbosely +verbosity +verdantly +verderers +verderors +verdigris +verdurous +Vergilian +verglases +veridical +verifiers +verifying +veritable +veritably +verjuiced +verjuices +verligtes +vermeiled +vermeille +vermicide +vermicule +vermiform +vermifuge +vermilion +vermilled +verminate +verminous +vermouths +vernalise +vernality +vernalize +vernation +vernicles +veronicas +v�ronique +verrucose +verrucous +versatile +verselets +versicles +versified +versifier +versifies +versiform +versional +versioner +vertebrae +vertebral +vertebras +verticals +verticity +vertigoes +vertiport +vervelled +vesicants +vesicated +vesicates +vesiculae +vesicular +Vespasian +vestibule +vestigial +vestigium +vestiment +vestiture +vestments +vestryman +vestrymen +vesturers +vesturing +vesuvians +vetchling +vetturini +vetturino +vexations +vexatious +vexedness +vexillary +viability +viameters +viaticals +viaticums +viatorial +vibracula +vibraharp +vibrantly +vibratile +vibrating +vibration +vibrative +vibrators +vibratory +vibriosis +vibrissae +viburnums +vicarages +vicariate +vicarious +vicarship +vicennial +vicereine +vicesimal +vicinages +viciosity +viciously +Vicksburg +victimise +victimize +victoress +Victorian +victorias +victories +victorine +victrixes +Victrolla +videlicet +videodisc +videodisk +videofits +videogram +videotape +videotext +vidimuses +Vientiane +viewiness +viewphone +viewpoint +vigesimal +vigilance +vigilante +vignerons +vignetted +vignetter +vignettes +vikingism +vilifiers +vilifying +vilipends +villagers +villagery +villanage +villanies +villanous +villenage +villiform +villosity +vimineous +vinaceous +Vincennes +vindaloos +vindemial +vindicate +vinegared +vineyards +vintagers +vintaging +Violaceae +violaters +violating +violation +violative +violators +violences +violently +violinist +Viperidae +viragoish +virements +virescent +Virgilian +virginals +Virginian +virginity +virginium +virgulate +viricidal +viricides +virogenes +virtually +virtuosic +virtuosos +virucidal +virucides +virulence +virulency +visagiste +visagists +viscachas +viscerate +viscidity +viscosity +viscounts +viscounty +Vishnuism +Vishnuite +Visigoths +visionary +visioners +visioning +visionist +visitable +visitants +visitator +visitings +visitress +vistaless +visualise +visualist +visuality +visualize +vitalised +vitaliser +vitalises +vitalists +vitalized +vitalizer +vitalizes +vitamines +vitascope +vitellary +vitelline +vitiating +vitiation +vitiators +viticetum +viticides +vitiosity +vitrified +vitrifies +vitriform +vitriolic +Vitruvian +Vitruvius +vivacious +vivamente +vivandier +vivariums +viverrine +vivianite +vividness +vivifiers +vivifying +vivisects +vizcachas +vizierate +vizierial +vizirates +vocabular +vocalions +vocalised +vocaliser +vocalises +vocalisms +vocalists +vocalized +vocalizer +vocalizes +vocalness +vocations +vocatives +Vodafones +Vodaphone +voiceless +voidances +voiturier +volageous +volatiles +volcanian +volcanise +volcanism +volcanist +volcanize +volcanoes +Volgograd +volitated +volitates +volitient +volitives +Volkslied +volksraad +volleyers +volleying +volplaned +volplanes +Volscians +voltigeur +voltinism +voltmeter +volucrine +volumeter +voluminal +volumists +voluntary +volunteer +volutions +vomitings +vomituses +voodooing +voodooism +voodooist +voracious +vorticism +vorticist +vorticity +vorticose +votarists +votresses +vouchsafe +voudouing +voussoirs +vowelised +vowelises +vowelized +vowelizes +vowelless +vowelling +voyageurs +voyeurism +vraickers +vraicking +vulcanian +vulcanise +vulcanism +vulcanist +vulcanite +vulcanize +vulgarian +vulgarise +vulgarism +vulgarity +vulgarize +vulnerary +vulnerate +Vulpecula +vulpicide +vulpinism +vulpinite +vulsellae +vulsellum +vulturine +vulturish +vulturism +vulturous +vulviform diff --git a/com/agnibho/code/anagram/dictionary/W1.txt b/com/agnibho/code/anagram/dictionary/W1.txt new file mode 100644 index 0000000..e556b83 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/W1.txt @@ -0,0 +1 @@ +w diff --git a/com/agnibho/code/anagram/dictionary/W10.txt b/com/agnibho/code/anagram/dictionary/W10.txt new file mode 100644 index 0000000..30b5084 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/W10.txt @@ -0,0 +1,370 @@ +wadsetters +wadsetting +Wagnerians +wagonettes +wainscoted +wainwright +waistbands +waistbelts +waistboats +waistcloth +waistcoats +waistlines +waiterhood +waitperson +waitresses +Waldensian +waldflutes +waldgraves +Waldteufel +walkabouts +walkathons +Wallachian +wallcharts +wallfishes +wallflower +wallopings +wallowings +wallpapers +walnutwood +Walsingham +wambengers +wambliness +wamblingly +wampishing +wampumpeag +wanderings +Wanderjahr +wanderlust +Wandsworth +wantonness +wapenschaw +wapenshaws +wapentakes +wapinschaw +wapinshaws +wappenshaw +warblingly +wardenries +wardenship +wardresses +wardrobers +warehoused +warehouses +warfarings +waribashis +warmbloods +warmongers +warrandice +warrantees +warranters +warranties +warranting +warrantise +warrantors +Warrington +warrioress +wasegooses +washateria +washeteria +Washington +wassailers +wassailing +wastefully +wastelands +wastepaper +watchbands +watchboxes +watchfully +watchmaker +watchstrap +watchwords +watercolor +watercress +watercycle +waterdrive +waterfalls +waterfront +Waterhouse +wateriness +watermarks +waterproof +waterquake +watersheds +watersides +watersmeet +watertight +waterworks +wattlebark +wattmeters +waulkmills +wavefronts +waveguides +wavelength +wavemeters +wavenumber +waveringly +waveshapes +waxberries +waxworkers +wayfarings +waymarking +wayzgooses +weakfishes +weakliness +weaknesses +wealthiest +weaponless +wearifully +wearyingly +weasellers +weathering +weatherise +weatherize +weatherman +weathermen +Wednesdays +weedicides +weedkiller +weekenders +weekending +weeknights +weighboard +weightiest +weightings +weightless +Weimaraner +welfarists +Wellington +Welshwoman +Welshwomen +wentletrap +werewolves +Wertherian +Wertherism +werwolfish +westerlies +westerners +westernise +westernism +westernize +Westphalia +westwardly +Wetterhorn +whalebones +Wharfedale +wharfinger +whatabouts +whatnesses +whatsoe'er +whatsoever +wheatsheaf +Wheatstone +wheedlings +wheelbases +wheelworks +wheeziness +whensoe'er +whensoever +whereabout +whereafter +whereunder +whereuntil +whetstones +whewellite +whickering +whiddering +whifflings +whiggamore +Whiggarchy +Whiggishly +whillywhas +whimperers +whimpering +whimsiness +whingeings +whinstones +whiplashed +whiplashes +whippeting +whippiness +whipsawing +whipstaffs +whipstalls +whirligigs +whirlpools +whirlwinds +whirlybird +whiskified +whisperers +whispering +whistlings +whitebaits +whitebeams +whiteboard +whitecoats +whitenings +whitesmith +whitethorn +whitewings +whitewoods +whithering +Whitstable +Whitsunday +whittawers +whitterick +whizzingly +whodunitry +whodunnits +wholefoods +wholegrain +wholesaler +wholesales +whomsoever +whorehouse +whunstanes +wickedness +wickerwork +widespread +Widmerpool +wieldiness +wifeliness +wigwagging +wildcatter +wildebeest +wilderment +wilderness +wilfulness +Wilhelmina +Wilhelmine +Williamson +willowiest +Wilmington +winceyette +Winchester +windburned +Windermere +windfallen +windjammer +windlassed +windlasses +windmilled +windowless +windscreen +windshield +windsurfed +windsurfer +winemakers +winemaking +Winnebagos +winnowings +winteriest +winterised +winterises +winterized +winterizes +winterkill +wintertime +wintriness +wiredrawer +wirelesses +wirephotos +wiretapped +wireworker +wisecracks +witchcraft +witchingly +witgatboom +withdrawal +withdrawer +witherings +withholden +withholder +withstands +withywinds +witnessers +witnessing +witticisms +wobbegongs +wobbliness +woefullest +woefulness +woewearied +wolframite +wolfsbanes +Wollongong +wolverenes +wolverines +womanfully +womanisers +womanishly +womanising +womanizers +womanizing +womenfolks +womenswear +Wonderbras +wonderings +wonderland +wonderment +wondrously +wontedness +woodblocks +woodchucks +woodenness +woodentops +woodhouses +woodlander +woodpecker +woodthrush +woodworker +woolliness +woollyback +woollybutt +woolsorter +woomerangs +wordfinder +wordlessly +wordsmiths +Wordsworth +workaholic +workforces +workhorses +workhouses +workmaster +workpieces +workplaces +worksheets +worktables +worldliest +worldlings +worldscale +worriments +worryingly +worrywarts +worshipful +worshipped +worshipper +worthiness +worthwhile +woundingly +woundworts +wranglings +wraparound +wraprounds +wrathfully +wrathiness +wreathless +wrestlings +wretchedly +wrigglings +wrinkliest +wristbands +writership +writhingly +wrongfully +wrongously +wunderkind +wyandottes +Wycliffite +Wykehamist diff --git a/com/agnibho/code/anagram/dictionary/W11.txt b/com/agnibho/code/anagram/dictionary/W11.txt new file mode 100644 index 0000000..c2001f2 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/W11.txt @@ -0,0 +1,223 @@ +waggishness +Wagneresque +wainscoting +wainscotted +wainwrights +waistcloths +waitressing +wakefulness +waldgravine +Waldsterben +wallclimber +wallflowers +wallpapered +Walthamstow +wampumpeags +wanderingly +Wanderjahre +wapenschaws +wapinschaws +wappenschaw +wappenshaws +wardenships +warehousing +warlikeness +warrandices +warrantable +warrantably +warrantings +warrantises +washaterias +washerwoman +washerwomen +washeterias +waspishness +wasterfully +watchmakers +watchstraps +watercolors +watercourse +waterfronts +waterlilies +waterlogged +watermarked +waterproofs +waterquakes +watersmeets +wavelengths +waywardness +waywodeship +wealthiness +wearability +wearilessly +wearisomely +weatherable +weathercock +weathergirl +weatherings +weatherised +weatherises +weatherized +weatherizes +weathermost +weedkillers +weighboards +weighbridge +weightiness +Weismannism +Weissmuller +welcomeness +welcomingly +weldability +welfaristic +wellingtons +Weltpolitik +Weltschmerz +welwitschia +Wensleydale +wentletraps +werewolfery +werewolfish +werewolfism +Wesleyanism +westernised +westernises +westernized +westernizes +westernmost +Westminster +Westmorland +Westphalian +wharfingers +whatsomever +wheedlesome +wheelbarrow +wheelwright +whenceforth +whereabouts +wheresoe'er +wheresoever +wherewithal +wheyishness +whichsoever +whiffleries +whiffletree +whiggamores +whillywhaed +whimberries +whimperings +whimsically +whinberries +whiplashing +whippletree +whipstalled +whirlybirds +whiskerando +whiskeyfied +whisperings +whistleable +whistlingly +whitebasses +whiteboards +whiteboyism +Whitechapel +whitefishes +whitesmiths +whitethorns +whitethroat +whitewashed +whitewasher +whitewashes +whitherward +whitishness +whitleather +Whitsuntide +whittericks +Whittington +whodunnitry +wholesalers +wholesomely +whorehouses +whoremaster +whoremonger +whorishness +whosesoever +widdershins +widowerhood +Wienerwurst +Wilberforce +wildebeests +wilderments +willingness +wimpishness +windbaggery +windbreaker +windcheater +windjammers +windlassing +windlestrae +windlestraw +windmilling +windscreens +windshields +windsurfers +windsurfing +winnability +winningness +winsomeness +wintergreen +winterising +winterizing +winterkills +Winterreise +wiretapping +wireworkers +wisecracked +wishfulness +wishtonwish +wistfulness +witchetties +witenagemot +witgatbooms +withdrawals +withdrawers +withdrawing +witheringly +withershins +withholdens +withholders +withholding +withstander +witlessness +womanliness +wonderfully +wonderingly +wonderlands +woodlanders +woodpeckers +woodworking +woollybacks +woolsorters +wordfinders +wordishness +workability +workaholics +workaholism +workbenches +workmanlike +workmanship +workmasters +workstation +workwatcher +worldliness +worrisomely +worshipable +worshipless +worshippers +worshipping +worthlessly +wranglesome +wraparounds +writeresses +writerships +Wykehamists diff --git a/com/agnibho/code/anagram/dictionary/W12.txt b/com/agnibho/code/anagram/dictionary/W12.txt new file mode 100644 index 0000000..220345c --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/W12.txt @@ -0,0 +1,97 @@ +Wagnerianism +wainscotings +wainscotting +waistcoateer +waistcoating +waldgravines +wallclimbers +wallcovering +wallpapering +wallydraigle +wappenschaws +warehouseman +warehousemen +warehousings +warmongering +warrioresses +Warwickshire +washingtonia +wastefulness +watchfulness +watercourses +watercresses +waterishness +waterlogging +watermanship +watermarking +waterproofed +waveringness +waywodeships +weathercocks +weathergirls +weatherising +weatherizing +weighbridges +Wellingtonia +welwitschias +westernising +westernizing +wheatsheaves +wheelbarrows +wheelwrights +whencesoever +wherethrough +whiffletrees +Whiggishness +whigmaleerie +whillywhaing +whimperingly +whimsicality +whippletrees +whippoorwill +whipstalling +whiskerandos +whisperingly +whisperously +whitethroats +whitewashers +whitewashing +whitherwards +whitleathers +whoremongers +whortleberry +wildernesses +Williamsburg +windbreakers +windcheaters +windlestraes +windlestraws +winterkilled +winterweight +wisecracking +witenagemots +withdrawment +witheredness +withholdment +withoutdoors +withstanders +withstanding +Wittgenstein +wollastonite +womanishness +wondrousness +woodburytype +woodlessness +woodshedding +woodthrushes +wordsmithery +workableness +workmistress +workstations +workwatchers +worshipfully +wranglership +wrathfulness +wretchedness +wrongfulness +wunderkinder diff --git a/com/agnibho/code/anagram/dictionary/W13.txt b/com/agnibho/code/anagram/dictionary/W13.txt new file mode 100644 index 0000000..1a78c40 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/W13.txt @@ -0,0 +1,34 @@ +wainscottings +wallcoverings +wallydraigles +wappenshawing +washingtonias +wasterfulness +waterflooding +waterproofing +wearisomeness +weathercocked +weatherometer +whereinsoever +whigmaleeries +whimsicalness +whippoorwills +whiskerandoed +whithersoever +wholesomeness +whoremasterly +wicketkeeping +Wilhelmshaven +winterisation +winterization +winterkilling +wishtonwishes +withdrawments +withholdments +Witwatersrand +Wolverhampton +wonderfulness +wordprocessor +Wordsworthian +worthlessness +wranglerships diff --git a/com/agnibho/code/anagram/dictionary/W14.txt b/com/agnibho/code/anagram/dictionary/W14.txt new file mode 100644 index 0000000..22d7148 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/W14.txt @@ -0,0 +1,20 @@ +wappenschawing +wappenshawings +watertightness +weathercocking +weatherometers +weightlessness +Wellingborough +Weltanschauung +westernisation +westernization +whippersnapper +whortleberries +Wilhelmstrasse +Wollstonecraft +worcesterberry +Worcestershire +wordprocessing +wordprocessors +workmistresses +worshipfulness diff --git a/com/agnibho/code/anagram/dictionary/W15.txt b/com/agnibho/code/anagram/dictionary/W15.txt new file mode 100644 index 0000000..03e97e0 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/W15.txt @@ -0,0 +1,5 @@ +wappenschawings +warrantableness +westernisations +westernizations +whippersnappers diff --git a/com/agnibho/code/anagram/dictionary/W16.txt b/com/agnibho/code/anagram/dictionary/W16.txt new file mode 100644 index 0000000..dd2dea8 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/W16.txt @@ -0,0 +1,3 @@ +weatherstripping +wholeheartedness +worcesterberries diff --git a/com/agnibho/code/anagram/dictionary/W17.txt b/com/agnibho/code/anagram/dictionary/W17.txt new file mode 100644 index 0000000..9cf06f0 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/W17.txt @@ -0,0 +1 @@ +Wirtschaftswunder diff --git a/com/agnibho/code/anagram/dictionary/W2.txt b/com/agnibho/code/anagram/dictionary/W2.txt new file mode 100644 index 0000000..eddc30a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/W2.txt @@ -0,0 +1,3 @@ +we +wo +Wu diff --git a/com/agnibho/code/anagram/dictionary/W3.txt b/com/agnibho/code/anagram/dictionary/W3.txt new file mode 100644 index 0000000..1849ccf --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/W3.txt @@ -0,0 +1,39 @@ +wa' +wad +wae +wag +wan +wap +war +was +wat +waw +wax +way +web +wed +wee +wem +wen +wet +wey +wha +who +why +wig +win +wis +wit +wiz +woe +wok +won +woo +wos +wot +wow +wry +wud +wus +wye +wyn diff --git a/com/agnibho/code/anagram/dictionary/W4.txt b/com/agnibho/code/anagram/dictionary/W4.txt new file mode 100644 index 0000000..927fe10 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/W4.txt @@ -0,0 +1,191 @@ +Waac +Waaf +wack +Waco +wadd +wade +wadi +wads +wadt +wady +Wafd +waff +waft +wage +wags +waif +wail +wain +wait +waka +wake +wakf +wald +wale +wali +walk +wall +Walt +waly +wame +wand +wane +wang +wans +want +wany +waps +waqf +ward +ware +wark +warm +warn +warp +wars +wart +wary +wase +wash +wasm +wasp +wast +wats +watt +wauk +waul +waur +wave +wavy +wawl +waws +waxy +ways +weak +weal +wean +wear +Webb +webs +weds +weed +week +weel +weem +ween +weep +weer +wees +weet +weft +weil +weir +weka +weld +welk +well +welt +wems +wend +wens +went +wept +were +wert +west +weta +wets +weys +wham +whap +what +whee +when +whet +whew +whey +whid +whig +whim +whin +whip +whir +whit +whiz +whoa +whom +whop +whys +wice +wich +wick +wide +Wien +wife +wigs +wild +wile +wili +will +wilt +wily +wimp +wind +wine +wing +wink +winn +wino +wins +winy +wipe +wire +wiry +wise +wish +wisp +wist +wite +with +wits +wive +woad +wock +woes +woke +woks +wold +wolf +womb +wonk +wons +wont +wood +woof +wool +woon +woos +word +wore +work +worm +worn +wort +wost +wots +wove +wows +wrap +wren +writ +wuds +wull +W�rm +wuss +Wuxi +wych +wyes +wynd +wynn +wyns +wyte diff --git a/com/agnibho/code/anagram/dictionary/W5.txt b/com/agnibho/code/anagram/dictionary/W5.txt new file mode 100644 index 0000000..01b6eba --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/W5.txt @@ -0,0 +1,350 @@ +Waafs +wacke +wacko +wacks +wacky +waddy +waded +wader +wades +wadis +wafer +waffs +wafts +waged +wager +wages +wagon +wahoo +waifs +wails +wains +waist +Waite +waits +waive +wakas +waked +waken +waker +wakes +waldo +waled +waler +wales +walis +walks +walla +walls +wally +walty +waltz +wamed +wames +wamus +Wanda +wands +waned +wanes +waney +wanle +wanly +wanna +wants +wanty +wanze +warby +wards +wared +wares +warks +warms +warns +warps +warst +warts +warty +wases +washy +Wasim +wasms +wasps +waspy +waste +watap +watch +water +watts +waugh +wauks +waulk +wauls +waved +waver +waves +wavey +wawls +waxed +waxen +waxer +waxes +Wayne +wazir +weald +weals +weans +wears +weary +weave +webby +weber +wecht +wedge +wedgy +weeds +weedy +weeks +weels +weems +weens +weeny +weeps +weepy +weest +wefte +wefts +weigh +Weill +weils +weird +weirs +wekas +welch +welds +welks +wells +welly +welsh +welts +wench +wends +Wendy +wenny +wersh +Weser +Wessi +wests +wetas +wetly +we've +whack +whale +whams +whang +whaps +whare +wharf +whats +whaup +whaur +wheal +wheat +wheel +wheen +whees +wheft +whelk +whelm +whelp +whens +where +whets +whews +wheys +which +whids +whiff +whift +whigs +while +whilk +whims +whine +whins +whiny +whips +whipt +whirl +whirr +whirs +whish +whisk +whiss +whist +white +whits +whity +whizz +whoas +who'd +whole +whoop +whops +whore +whorl +whort +who's +whose +whoso +wicca +wicks +wicky +widdy +widen +wider +wides +Widor +widow +width +wield +wifie +wigan +wight +wilco +Wilde +wilds +wiled +wiles +wilga +wilis +wilja +wills +willy +Wilma +wilts +wimps +wimpy +wince +winch +winds +windy +wined +wines +winey +winge +wings +wingy +winks +winna +winns +winos +win't +winze +wiped +wiper +wipes +wired +wirer +wires +wised +wiser +wises +wisps +wispy +witan +witch +wited +wites +withe +withs +withy +witty +wived +wives +wizen +woads +wocks +Woden +wodge +woful +Wogan +woken +wolds +Wolfe +wolfs +wolly +Wolof +wolve +woman +wombs +womby +women +wonga +wongi +wonks +wonky +wonts +woods +woody +wooed +wooer +woofs +woofy +woold +Woolf +wools +woosh +wootz +woozy +words +wordy +works +world +worms +wormy +worry +worse +worst +worth +worts +Wotan +would +wound +woven +wowed +wowee +wrack +wraps +wrapt +wrath +wrawl +wreak +wreck +wrens +wrest +wrick +wried +wrier +wries +wring +wrist +write +writs +wroke +wrong +wroot +wrote +wroth +wrung +wryer +wryly +Wuhan +wulls +wurst +wussy +Wyatt +wynds +Wynne +wynns +wyted +wytes diff --git a/com/agnibho/code/anagram/dictionary/W6.txt b/com/agnibho/code/anagram/dictionary/W6.txt new file mode 100644 index 0000000..19107e3 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/W6.txt @@ -0,0 +1,520 @@ +wabain +wabbit +wabble +waboom +wacker +wackos +wadded +waddie +waddle +waders +Wadham +wadies +wading +wadmal +wadmol +wadset +waefu' +waeful +wafers +wafery +waffed +waffle +waffly +wafted +wafter +wagers +wagged +waggle +waggly +waggon +waging +Wagner +wagons +Wahabi +wahine +wahoos +waifed +wailed +wailer +wained +waists +waited +waiter +waived +waiver +waives +wakane +wakens +wakers +wakiki +waking +Walden +waldos +walers +Walesa +walies +waling +walked +walker +wallah +wallas +walled +waller +wallet +wallie +Wallis +wallop +wallow +walnut +walrus +Walter +Walton +wamble +wambly +wammus +wampee +wampum +wampus +wander +wandle +wandoo +wangan +wangle +wangun +wanier +waning +wanion +Wankel +wankle +wanned +wanner +wanted +wanter +wanton +wapiti +wapped +wapper +warble +warded +warden +warder +wardog +Warhol +warier +warily +waring +Warley +warman +warmed +warmen +warmer +warmly +warmth +warned +warner +warped +warper +warran +warray +warred +warren +Warsaw +warsle +warsts +warted +washed +washen +washer +washes +wasn't +waspie +wasted +wastel +waster +wastes +wastry +waters +watery +Watson +watter +wattle +waucht +waughs +waught +wauked +wauker +wauled +waulks +Wavell +wavers +wavery +waveys +wavier +wavily +waving +wawled +waxers +waxier +waxily +waxing +waylay +wazirs +weaken +weaker +weakly +wealds +wealth +weaned +weanel +weaner +weapon +wearer +weasel +weaved +weaver +weaves +weazen +webbed +webcam +Webern +webers +wechts +wedded +wedder +wedeln +wedged +wedges +wedgie +weeded +weeder +weeing +weekly +weened +weeper +weepie +weever +weevil +wefted +weftes +weighs +weight +Weimar +weirdo +weirds +weired +welded +welder +Weldon +weldor +welked +welkin +welled +Weller +Welles +wellie +welted +welter +Wemyss +wended +Wendic +Wesker +Wesley +Wessex +Wessis +wested +wester +Westie +Weston +wether +wetted +wetter +Whaam! +whacko +whacks +whacky +whaled +whaler +whales +whally +whammo +whammy +whangs +wharfs +wharve +whatna +whatso +whaups +whaurs +wheals +wheats +wheech +wheels +wheely +wheesh +wheeze +wheezy +whelks +whelky +whelms +whelps +whenas +whence +wheres +wherry +wheugh +whewed +wheyey +whidah +whiffs +whiffy +whifts +whiled +whiles +whilly +whilom +whilst +whimmy +whimsy +whined +whiner +whines +whinge +whinny +whippy +whirls +whirly +whirrs +whirry +whisht +whisks +whisky +whists +Whitby +whited +whiten +whiter +whites +wholes +who'll +wholly +whoops +whoosh +whored +whores +whorls +who've +whydah +wiccan +wiches +wicked +wicken +wicker +wicket +widdle +widely +widens +widest +widget +widgie +widish +Widnes +widows +widths +wields +wieldy +Wiener +wienie +wifely +wifies +wigans +wigeon +wigged +wiggle +wiggly +wights +wigwag +wigwam +wilder +wildly +wilful +wilier +wilily +wiling +wiljas +willed +willer +willet +willey +Willie +Willis +willow +Wilson +wilted +wiltja +Wilton +wimble +wimmin +wimple +Wimsey +winced +wincer +winces +wincey +winded +winder +windle +window +winery +winged +winger +winges +winier +wining +winked +winker +winkle +winner +Winnie +winnle +winnow +Winona +winsey +winter +wintle +wintry +winzes +wipers +wiping +wippen +wirers +wirier +wirily +wiring +Wirral +Wisden +wisdom +wisely +wisent +wisest +wished +wisher +wishes +wising +wisket +wisped +wistly +witchy +witgat +withal +withed +wither +withes +within +witing +witted +witter +wittol +wivern +wiving +wizard +wizens +wizier +wizzes +woaded +wobble +wobbly +Woburn +wodges +woeful +woggle +Woking +wolfed +wolfer +Wolfit +Wolsey +wolved +wolver +wolves +womans +wombat +wombed +womble +womera +wonder +wongas +woning +wonned +wonted +woobut +wooded +wooden +woodie +woodsy +wooers +woofed +woofer +wooing +woolds +woolen +woolly +worded +worked +worker +worlds +wormed +wormer +worral +worrel +worrit +worsen +worser +worsts +worths +worthy +wortle +wotted +woubit +wounds +woundy +wowing +wowser +wracks +wraith +wrasse +wraths +wrathy +wraxle +wreaks +wreath +wrecks +Wrekin +wrench +wrests +wretch +wricks +wriest +wright +wrings +wrists +wristy +writer +writes +writhe +wroken +wrongs +wryest +wrying +wudded +wulled +wunner +wurley +wursts +wusses +wuther +wuzzle +wyches +Wyclif +Wystan +wyting +wyvern diff --git a/com/agnibho/code/anagram/dictionary/W7.txt b/com/agnibho/code/anagram/dictionary/W7.txt new file mode 100644 index 0000000..3d3114a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/W7.txt @@ -0,0 +1,754 @@ +wabains +wabbled +wabbler +wabbles +wabooms +wabster +wackers +wackier +wackoes +waddied +waddies +wadding +waddled +waddler +waddles +wadings +wadmaal +wadmoll +wadsets +waeness +waesome +wafered +waffing +waffled +waffler +waffles +waftage +wafters +wafting +wafture +wagered +wagerer +waggery +wagging +waggish +waggled +waggler +waggles +waggons +wagoned +wagoner +wagtail +Wahabis +wahines +Waikiki +wailers +wailful +wailing +wainage +waining +waisted +waister +waiters +waiting +waivers +waiving +waivode +waiwode +wakanes +wakeful +wakeman +wakemen +wakened +wakener +wakings +waldoes +Waldorf +walkers +walkies +walking +Walkman +walkway +wallaba +wallaby +Wallace +wallahs +wallers +wallets +wallies +walling +Walloon +wallops +wallows +walnuts +Walpole +Walsall +waltzed +waltzer +waltzes +wambled +wambles +wameful +wampees +wampish +wampums +wamuses +wanders +wangans +wangled +wangler +wangles +wanguns +wanhope +waniest +wanigan +wanings +wannabe +wanness +wannest +wanning +wannish +wantage +wanters +wanties +wanting +wantons +wapitis +wapping +waratah +Warbeck +warbled +warbler +warbles +wardens +warders +Wardian +warding +wardogs +warfare +warhead +wariest +warison +warlike +warling +warlock +warlord +warmers +warmest +warming +warmish +warners +warning +warpath +warpers +warping +warrand +warrant +warrens +warring +warrior +warship +warsled +warsles +warsted +wartier +wartime +Warwick +warwolf +washers +washery +washier +washing +washrag +waspier +waspies +waspish +wassail +wastage +wasters +wastery +wasting +wastrel +watched +watcher +watches +watchet +watered +waterer +Watford +wattage +Watteau +wattest +wattled +wattles +wauchts +waughed +waughts +waukers +wauking +wauling +waulked +waulker +wavelet +wavered +waverer +waveson +waviest +wavings +wawling +waxiest +waxings +waxwing +waxwork +wayfare +waygone +waylaid +waylays +wayless +waymark +wayment +wayside +wayward +waywode +wayworn +weakens +weakest +Wealden +wealthy +weaners +weaning +weapons +wearers +wearied +wearier +wearies +wearily +wearing +wearish +weasand +weasels +weather +weavers +weaving +weazand +weazens +webbier +webbing +webcams +webcast +website +webster +webworm +wedders +wedding +wedelns +wedgies +wedging +wedlock +weeders +weedery +weedier +weeding +weekday +weekend +Weelkes +weenier +weenies +weening +weepers +weepier +weepies +weeping +weeting +weevers +weevils +weevily +weftage +wefting +weigela +weighed +weigher +weights +weighty +weirded +weirder +weirdie +weirdly +weirdos +weiring +welched +welcher +welches +welcome +welders +welding +weldors +welfare +welking +welkins +Welland +wellies +welling +welshed +welsher +welshes +welters +welting +Wembley +wenched +wencher +wenches +wendigo +wending +Wendish +Wenlock +wennier +wennish +weren't +wergild +Werther +werwolf +western +westers +Westies +westing +wetback +wethers +wetland +wetness +wetsuit +wettest +wetting +wettish +wetware +Wexford +whacked +whacker +whackos +whalers +whalery +whaling +whammed +whample +whangam +whanged +whangee +whapped +wharfed +wharfie +Wharton +wharves +whatnot +whatsis +whatsit +whatten +wheaten +wheedle +wheeled +wheeler +wheelie +wheenge +wheeple +wheesht +wheezed +wheezes +wheezle +whelked +whelmed +whelped +whences +whereas +whereat +whereby +wherein +whereof +whereon +whereso +whereto +wherret +whether +whetted +whetter +wheughs +whewing +wheyish +whicker +whidded +whidder +whiffed +whiffer +whiffet +whiffle +whigged +whilere +whiling +whimmed +whimper +whimple +whimsey +whiners +whinged +whinger +whinges +whinier +whining +whipcat +whipped +whipper +whippet +whipsaw +whirled +whirler +whirred +whirret +whirtle +whished +whishes +whishts +whisked +whisker +whiskey +whisper +whissed +whisses +whisted +whistle +whitely +whitens +whitest +whither +whiting +whitish +whitlow +Whitman +Whitsun +whittaw +whitter +whittle +whizzed +whizzer +whizzes +whoever +wholism +wholist +whomble +whooped +whoopee +whooper +whopped +whopper +whoring +whorish +whorled +whummle +whyever +Whymper +Wichita +wickens +wickers +wickets +wickies +wicking +wickiup +Wicklow +widdies +widdled +widdles +widened +widener +widgeon +widgets +widgies +widowed +widower +wielded +wielder +Wieners +wienies +wigeons +wiggery +wigging +wiggled +wiggler +wiggles +wighted +wightly +wigless +wiglike +wigwags +wigwams +wilders +wildest +wilding +wildish +wildoat +wileful +Wilfred +Wilfrid +Wilhelm +wiliest +Wilkins +willers +willets +willeys +willful +William +willied +willies +willing +willows +willowy +wilting +wiltjas +Wiltons +wimbled +wimbles +wimbrel +wimpish +wimpled +wimples +wincers +winceys +winched +winches +wincing +windage +winders +windier +Windies +windigo +windily +winding +windles +windock +windore +windows +windrow +Windsor +wingers +wingier +winging +winglet +wingman +wingmen +winiest +winkers +winking +winkled +winkler +winkles +winners +winning +winnock +winnows +winseys +Winslet +winsome +Winston +winters +wintery +wintled +wintles +wipeout +wipings +wippens +wireman +wiremen +wiretap +wiriest +wirings +Wisbech +wisdoms +wisents +wishers +wishful +wishing +wiskets +wispier +wisping +wistful +wistiti +witched +witchen +witches +witgats +withers +withier +withies +withing +without +witless +witling +witloof +witness +witters +wittier +wittily +witting +wittols +witwall +wiverns +wizards +wizened +wiziers +wobbled +wobbler +wobbles +woesome +woeworn +wofully +woggles +woiwode +Wojtyla +wolfers +Wolfian +wolfing +wolfish +wolfkin +wolfram +Wolfson +wollies +wolvers +wolving +wolvish +womaned +womanly +wombats +wombles +womeras +wonders +wongied +wongies +wonings +wonkier +wonning +wonting +woobuts +woodcut +woodier +woodies +wooding +woodman +woodmen +Woodrow +woodsia +woofers +woofter +wooings +woolded +woolder +woolens +woolfat +woolled +woollen +woolman +woolmen +woolsey +woomera +woorali +woorara +wooshed +wooshes +Wooster +woozier +woozily +wordage +wordier +wordily +wording +wordish +workbox +workers +workful +working +workman +workmen +Worksop +worktop +worlded +worldly +wormers +wormery +Wormian +wormier +worming +worrals +worrels +worried +worrier +worries +worrits +worsens +worship +worsted +worthed +wortles +wosbird +wotcher +wottest +wotteth +wotting +woubits +wouldst +wounded +wounder +wourali +wowsers +Wozzeck +wracked +wraiths +wrangle +wrapped +wrapper +wrasses +wraxled +wraxles +wreaked +wreaker +wreathe +wreaths +wreathy +wrecked +wrecker +wrested +wrester +wrestle +Wrexham +wricked +wriggle +wriggly +wrights +wringed +wringer +wrinkle +wrinkly +writers +writhed +writhen +writhes +writing +written +wronged +wronger +wrongly +wrought +wrybill +wryneck +wryness +wrythen +wudding +wulling +wunners +wurleys +wurlies +W�rmian +wussies +wuthers +wuzzled +wuzzles +Wykeham +Wyndham +Wyoming +wysiwyg +wyverns diff --git a/com/agnibho/code/anagram/dictionary/W8.txt b/com/agnibho/code/anagram/dictionary/W8.txt new file mode 100644 index 0000000..cea6491 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/W8.txt @@ -0,0 +1,744 @@ +wabblers +wabbling +wackiest +waddings +waddlers +waddling +waddying +waesucks +wafering +wafflers +waffling +waftages +waftings +waftures +wageless +wagerers +wagering +wagglers +waggling +waggoned +waggoner +wagonage +wagoners +wagonful +wagoning +wagtails +Wahabism +Wahabite +wailings +wainages +wainscot +waisters +waitings +waitress +waivodes +waiwodes +wakeless +wakeners +wakening +wakerife +Waldheim +waldhorn +waldrapp +Walhalla +walkable +walkings +Walkmans +walkmill +walkways +Walkyrie +wallabas +wallaroo +Wallasey +wallfish +wallings +Walloons +walloped +walloper +wallowed +wallower +wallsend +wallwort +walruses +waltzers +waltzing +wamblier +wambling +wamefuls +wammuses +wampuses +wandered +wanderer +wanderoo +wanglers +wangling +wanigans +wannabee +wannabes +wanthill +wantings +wantoned +wantonly +wanwordy +wanworth +waratahs +warblers +warbling +wardened +wardenry +wardered +wardings +wardress +wardrobe +wardroom +wardship +wareless +warfarer +warfarin +warheads +wariness +warlings +warlocks +warlords +warmings +warmness +warnings +warpaths +warpings +warplane +warragal +warragle +warragul +warrants +warranty +warrener +warrigal +warriors +warships +warsling +warsting +wartiest +wartless +wartlike +wartweed +wartwort +washable +washered +washiest +washings +washland +washrags +washroom +washwipe +waspiest +wassails +wastable +wastages +wasteful +wastelot +wastered +wastings +wastrels +wastrife +watchbox +watchers +watchets +watchful +watching +watchman +watchmen +waterage +waterers +waterier +watering +waterish +waterlog +Waterloo +waterman +watermen +waterway +wattages +wattling +wauchted +waughing +waughted +waukmill +waukrife +waulings +waulkers +waulking +waveband +waveform +waveless +wavelets +wavelike +waverers +wavering +Waverley +waverous +waviness +wawlings +waxberry +waxiness +waxplant +waxwings +waxworks +wayboard +waybread +wayfared +wayfarer +wayfares +waygoose +waylayer +waymarks +waysides +waywiser +waywodes +weakened +weakener +weakfish +weakling +weakness +weanling +weaponed +weaponry +wearable +weariest +weariful +wearings +wearying +weasands +weaseled +weaseler +weaselly +weathers +weavings +weazands +weazened +webbiest +webbings +webcasts +websites +websters +webwheel +weddings +Wedekind +wedelned +wedgings +Wedgwood +weediest +weedings +weedless +weekdays +weekends +weeklies +weelfard +weeniest +weephole +weepiest +weepings +weetless +weeviled +weevilly +weftages +weigelas +weighage +weighers +weighing +weighted +weirdest +weirdies +weirding +welchers +welching +welcomed +welcomer +welcomes +weldable +weldings +weldless +weldment +Weldmesh +welladay +wellaway +wellings +wellness +Wellsian +welshers +welshing +Welshman +Welshmen +weltered +wenchers +wenching +wendigos +wenniest +weregild +werewolf +wergilds +Wesleyan +westered +westerly +westerns +westings +westmost +westward +wetbacks +Wetherby +wetlands +wetsuits +Weymouth +whackers +whackier +whacking +whackoes +whalings +whamming +whamples +whangams +whangees +whanging +whapping +wharfage +wharfies +wharfing +whate'er +whatever +whatness +whatnots +whatsits +wheatear +Wheatley +wheeched +wheeches +wheedled +wheedler +wheedles +wheelers +wheelies +wheeling +wheelman +wheelmen +wheenged +wheenges +wheepled +wheeples +wheezier +wheezily +wheezing +wheezled +wheezles +whelkier +whelming +whelping +whene'er +whenever +where'er +wherefor +whereout +wherever +wherries +whetters +whetting +wheughed +whickers +whidders +whidding +whiffers +whiffets +whiffier +whiffing +whiffled +whiffler +whiffles +Whiggery +whigging +Whiggish +Whiggism +Whigship +whillied +whillies +whimbrel +whimming +whimpers +whimpled +whimples +whimseys +whimsies +whimsily +whinchat +whingers +whiniest +whinings +whinnied +whinnier +whinnies +whinyard +whipbird +whipcats +whipcord +whipjack +whiplash +whiplike +whippers +whippets +whippier +whipping +whipsawn +whipsaws +whipster +whipworm +whirlers +whirling +whirried +whirries +whirring +whirtles +whishing +whishted +whiskers +whiskery +whiskeys +whiskies +whisking +whispers +whispery +whissing +whisting +whistled +whistler +whistles +Whitaker +Whiteboy +whitecap +Whitelaw +whitened +whitener +whithers +whitings +whitling +whitlows +whitster +whittaws +whitters +whittled +whittler +whittles +whittret +Whitweek +whizbang +whizzers +whizzing +wholists +whombled +whombles +whomever +whoopees +whoopers +whooping +whooshed +whooshes +whoppers +whopping +whoredom +whoreson +whosever +whummled +whummles +wickeder +wickedly +wickered +wickiups +widdling +wideners +wideness +widening +widgeons +widowers +widowing +wielders +wieldier +wielding +wifehood +wifeless +wiggings +wigglers +wigglier +wiggling +wighting +wildcard +wildered +wildfire +wildings +wildland +wildlife +wildness +wildoats +wilfully +wiliness +willable +willeyed +Williams +williwaw +willowed +willyard +willyart +willying +wimbling +wimbrels +wimpling +winching +winchman +winchmen +wincings +windages +windblow +windburn +windfall +Windhoek +windiest +windigos +windings +windlass +windless +windmill +windocks +windowed +windpipe +windring +windrose +windrows +windship +windsurf +windward +wineries +wingbeat +wingding +wingedly +wingeing +wingiest +wingless +winglets +winglike +wingspan +Winifred +winkings +winklers +winkling +winnable +winnings +Winnipeg +winnocks +winnowed +winnower +winsomer +wintered +winterly +wintling +wintrier +wipeouts +wireless +wiretaps +wirework +wirewove +wiriness +wiseacre +wiseling +wiseness +wishbone +wishings +wispiest +wistaria +wisteria +wistitis +witblits +witchens +witchery +witching +witeless +withdraw +withdrew +withered +withheld +withhold +withiest +withwind +witlings +witloofs +wittered +wittiest +wittolly +witwalls +wizardly +wizardry +wizening +wobblers +wobblier +wobbling +wobegone +Wodenism +woefully +woiwodes +Wolffian +Wolfgang +wolfings +wolfkins +wolfling +wolvings +womaning +womanise +womanish +womanize +womblike +wondered +wonderer +wondrous +wongiing +wonkiest +woodbind +woodbine +woodchip +woodcock +woodcuts +woodenly +woodiest +woodland +woodless +woodlice +woodmice +woodness +woodruff +woodshed +woodsman +woodsmen +woodwale +woodward +woodwind +woodwork +woodwose +woodyard +woofters +wooingly +woolders +woolding +woolfell +woollens +woollier +woollies +woolpack +woolsack +woolseys +woolshed +woolward +woolwork +woomeras +wooralis +wooraras +wooshing +wooziest +wordages +wordbook +wordiest +wordings +wordless +wordplay +workable +workaday +workboat +workbook +workfare +workfolk +workings +workless +workload +workmate +workroom +workshop +worksome +worktops +workwear +wormiest +wormwood +worricow +worriers +worrited +worrycow +worrying +worsened +worships +worsteds +worsting +worthful +worthier +worthies +worthily +worthing +wosbirds +wotchers +wouldn't +wounders +woundily +wounding +wouralis +wrackful +wracking +wrangled +wrangler +wrangles +wrapover +wrappage +wrappers +wrapping +wrathful +wrathier +wrathily +wraxling +wreakers +wreakful +wreaking +wreathed +wreathen +wreather +wreathes +wreckage +wreckers +wreckful +wrecking +wrenched +wrenches +wresters +wresting +wrestled +wrestler +wrestles +wretched +wretches +wricking +wriggled +wriggler +wriggles +wringers +wringing +wrinkled +wrinkles +wristier +wristlet +writable +writerly +writhing +writhled +writings +wrongers +wrongest +wrongful +wronging +wrongous +wrong'un +wrybills +wrynecks +wurtzite +W�rzburg +wuthered +wuzzling +Wycliffe diff --git a/com/agnibho/code/anagram/dictionary/W9.txt b/com/agnibho/code/anagram/dictionary/W9.txt new file mode 100644 index 0000000..c7f5423 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/W9.txt @@ -0,0 +1,564 @@ +wabblings +wackiness +wadsetted +wadsetter +wagenboom +waggeries +waggishly +waggoners +waggoning +Wagnerian +Wagnerism +Wagnerist +Wagnerite +wagonages +wagonette +wagonfuls +Wahabiism +Wahabites +wailingly +wainscots +waistband +waistbelt +waistboat +waistcoat +waistline +waiterage +waitering +waitingly +Wakefield +wakefully +wakenings +Walachian +Waldenses +waldflute +waldgrave +waldhorns +walkabout +walkathon +walkmills +Walkyries +wallabies +wallaroos +wallchart +wallopers +walloping +wallowers +wallowing +wallpaper +wallworts +Waltonian +waltzings +wambenger +wambliest +wamblings +wampished +wampishes +Wanamaker +wanchancy +wanderers +wandering +wanderoos +wanglings +wannabees +wanthills +wantoning +wapenshaw +wapentake +wapinshaw +warblings +wardening +wardering +wardrober +wardrobes +warehouse +warfarers +warfaring +waribashi +warlockry +warmblood +warmonger +warningly +warplanes +warragals +warragles +warraguls +warranted +warrantee +warranter +warrantor +warreners +warrigals +wartweeds +wartworts +warwolves +wasegoose +washering +washerman +washermen +washiness +washrooms +washwipes +waspishly +wassailed +wassailer +wassailry +wasserman +wasteland +wasteness +wasterful +wastering +watchable +watchband +watchword +waterages +waterfall +Waterford +wateriest +waterings +Waterland +waterless +waterlily +waterlogs +Waterloos +watermark +watershed +waterside +waterways +wattlings +wattmeter +wauchting +waughting +waukmills +waulkmill +wavebands +waveforms +wavefront +waveguide +wavellite +wavemeter +waverings +waveshape +waxworker +wayboards +waybreads +wayfarers +wayfaring +waygooses +waylayers +waylaying +waymarked +waywardly +waywisers +wayzgoose +weakeners +weakening +weaklings +wealthier +wealthily +weanlings +weariless +weariness +wearisome +weaselers +weaseling +weaseller +weathered +weatherly +weazening +webwheels +wedelning +wedgewise +Wednesday +weederies +weedicide +weediness +weekended +weekender +weeknight +weepholes +weepingly +weevilled +Wehrmacht +weighable +weighages +weighbauk +weighings +weightier +weightily +weighting +weirdness +welcomers +welcoming +weldments +welfarism +welfarist +welladays +wellanear +wellaways +weltering +Wenceslas +Wentworth +weregilds +Wernerian +wernerite +werwolves +Wesleyans +westbound +westering +westerner +Westfalen +westwards +whackiest +whackings +whalebone +whaleries +wharfages +wheatears +wheeching +wheedlers +wheedling +wheelbase +wheelings +wheelwork +wheenging +wheepling +wheeziest +wheezings +wheezling +whelkiest +whencever +wherefore +wherefrom +whereinto +whereness +whereunto +whereupon +wherewith +wherryman +wherrymen +whetstone +wheughing +whichever +whickered +whiddered +whiffiest +whiffings +whifflers +whifflery +whiffling +whillying +whillywha +whimberry +whimbrels +whimpered +whimperer +whimpling +whimsical +whinberry +whinchats +whingeing +whininess +whiningly +whinniest +whinnying +whinstone +whinyards +whipbirds +whipcords +whipcordy +whipjacks +whippiest +whippings +whipsawed +whipstaff +whipstall +whipsters +whipworms +whirligig +whirlings +whirlpool +whirlwind +whirrings +whirrying +whishting +whiskered +whispered +whisperer +whistlers +whistling +Whitbread +whitebait +whitebass +whitebeam +whitecaps +whitecoat +whitedamp +whitefish +Whitehall +whiteners +whiteness +whitening +whitewall +whiteware +whitewash +whitewing +whitewood +whithered +whitlings +whitsters +whittawer +whittlers +whittling +whittrets +Whitworth +whizbangs +whizzings +whodunnit +wholefood +wholeness +wholesale +wholesome +wholistic +whombling +whoopings +whooshing +whoppings +whoresons +whorishly +whosoever +whummling +whunstane +wickedest +widowhood +widthways +widthwise +wieldable +wieldiest +wieldless +Wiesbaden +wiggliest +wigwagged +wildcards +wildering +wildfires +wildgrave +willemite +willeying +willingly +williwaws +willowier +willowing +willowish +willpower +Wiltshire +Wimbledon +wimpishly +windburns +windchill +windfalls +windgalls +windiness +windingly +windmills +windowing +windpipes +windproof +windroses +Windscale +windships +windstorm +windsurfs +windswept +windwards +winemaker +wingbeats +wingdings +wingspans +winkingly +Winnebago +winningly +winnowers +winnowing +winsomely +winsomest +winterier +wintering +winterise +winterize +Winterson +wintriest +wiredrawn +wirephoto +Wisconsin +wiseacres +wisecrack +wiselings +wishbones +wishfully +wistarias +wisterias +wistfully +witchetty +witchings +witchlike +withdrawn +withdraws +withering +witherite +withholds +withouten +withstand +withstood +withwinds +withywind +witlessly +witnessed +witnesser +witnesses +wittering +witticism +wittiness +wittingly +wobbegong +wobbliest +wobblings +Wodehouse +woebegone +woefuller +wofulness +wolfberry +wolfishly +wolflings +wolfsbane +wolverene +wolverine +wolvishly +womanhood +womanised +womaniser +womanises +womanized +womanizer +womanizes +womankind +womanless +womenfolk +womenkind +Wonderbra +wonderers +wonderful +wondering +woodbinds +woodbines +woodblock +woodchips +woodchuck +woodcocks +woodcraft +woodentop +Woodhenge +woodhouse +woodiness +woodlands +woodlouse +woodmouse +woodsheds +Woodstock +woodwales +woodwards +woodwinds +woodworks +woodwoses +wooldings +woolfells +woolliest +woolpacks +woolsheds +Woolworth +woomerang +wooziness +worcester +wordbooks +wordbound +wordbreak +wordiness +wordsmith +workbench +workboats +workbooks +workboxes +workfolks +workforce +workhorse +workhouse +workloads +workmanly +workmates +workpiece +workplace +workrooms +worksheet +workshops +workspace +worktable +worldlier +worldling +worldwide +wormeries +wormwoods +worricows +worriedly +worriment +worrisome +worriting +worrycows +worryguts +worryings +worrywart +worseness +worsening +worthiest +worthless +woundable +woundings +woundless +woundwort +wranglers +wrangling +wrapovers +wrappages +wrappings +wrapround +wrathiest +wrathless +wraxlings +wreakless +wreathers +wreathing +wreckages +wreckfish +wreckings +wrenching +wrestlers +wrestling +wrigglers +wriggling +wringings +wrinklier +wrinklies +wrinkling +wristband +wristiest +wristlets +writative +writeress +writhings +wrongness +wrong'uns +wulfenite +Wuppertal +Wurlitzer +wuthering +wyandotte +Wyclifite diff --git a/com/agnibho/code/anagram/dictionary/X1.txt b/com/agnibho/code/anagram/dictionary/X1.txt new file mode 100644 index 0000000..587be6b --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/X1.txt @@ -0,0 +1 @@ +x diff --git a/com/agnibho/code/anagram/dictionary/X10.txt b/com/agnibho/code/anagram/dictionary/X10.txt new file mode 100644 index 0000000..a368c88 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/X10.txt @@ -0,0 +1,35 @@ +xanthomata +xanthopsia +xenarthral +xenobiotic +Xenocrates +xenocrysts +xenogenous +xenografts +Xenophanes +xenophiles +xenophobes +xenophobia +xenophobic +xerodermia +xerodermic +xerography +xeromorphs +xerophytes +xerophytic +xerostomia +xiphopagic +xiphopagus +xiphosuran +xylochrome +xylogenous +xylographs +xylography +xylometers +xylophagan +xylophages +xylophones +xylophonic +xylorimbas +xylotomous +Xyridaceae diff --git a/com/agnibho/code/anagram/dictionary/X11.txt b/com/agnibho/code/anagram/dictionary/X11.txt new file mode 100644 index 0000000..ae99409 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/X11.txt @@ -0,0 +1,24 @@ +Xanthochroi +xanthophyll +Xanthoxylum +xenodochium +xenogenesis +xenogenetic +xenoglossia +xenomorphic +xenoplastic +xeranthemum +xerographic +xeromorphic +xerophilous +xerotripsis +xiphopagous +xiphosurans +xylocarpous +xylographer +xylographic +xylophagans +xylophagous +xylophilous +xylophonist +xyridaceous diff --git a/com/agnibho/code/anagram/dictionary/X12.txt b/com/agnibho/code/anagram/dictionary/X12.txt new file mode 100644 index 0000000..971738a --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/X12.txt @@ -0,0 +1,14 @@ +xanthochroia +xanthochroic +xanthochroid +xanthomatous +xanthopterin +xenodochiums +xeranthemums +xerodermatic +xeromorphous +xiphisternum +xiphopaguses +xylobalsamum +xylographers +xylophonists diff --git a/com/agnibho/code/anagram/dictionary/X13.txt b/com/agnibho/code/anagram/dictionary/X13.txt new file mode 100644 index 0000000..e2cf6c3 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/X13.txt @@ -0,0 +1,11 @@ +xanthochroids +xanthochroism +xanthochromia +xanthochroous +xerodermatous +xerophthalmia +xiphiplastral +xiphiplastron +xiphisternums +xiphophyllous +xylographical diff --git a/com/agnibho/code/anagram/dictionary/X14.txt b/com/agnibho/code/anagram/dictionary/X14.txt new file mode 100644 index 0000000..af79b00 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/X14.txt @@ -0,0 +1,5 @@ +xanthomelanous +xiphihumeralis +xiphiplastrons +xylopyrography +xylotypography diff --git a/com/agnibho/code/anagram/dictionary/X15.txt b/com/agnibho/code/anagram/dictionary/X15.txt new file mode 100644 index 0000000..31c6b35 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/X15.txt @@ -0,0 +1,2 @@ +xeroradiography +xylotypographic diff --git a/com/agnibho/code/anagram/dictionary/X16.txt b/com/agnibho/code/anagram/dictionary/X16.txt new file mode 100644 index 0000000..3544483 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/X16.txt @@ -0,0 +1 @@ +xiphihumeralises diff --git a/com/agnibho/code/anagram/dictionary/X2.txt b/com/agnibho/code/anagram/dictionary/X2.txt new file mode 100644 index 0000000..7fd91a4 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/X2.txt @@ -0,0 +1,2 @@ +xi +xu diff --git a/com/agnibho/code/anagram/dictionary/X4.txt b/com/agnibho/code/anagram/dictionary/X4.txt new file mode 100644 index 0000000..459355d --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/X4.txt @@ -0,0 +1,5 @@ +Xema +Xian +Xmas +Xosa +xyst diff --git a/com/agnibho/code/anagram/dictionary/X5.txt b/com/agnibho/code/anagram/dictionary/X5.txt new file mode 100644 index 0000000..6ac099e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/X5.txt @@ -0,0 +1,16 @@ +xebec +xenia +xenon +Xeres +xeric +Xerox +Xhosa +Xians +xoana +xylem +xylic +xylol +xylyl +Xyris +xysti +xysts diff --git a/com/agnibho/code/anagram/dictionary/X6.txt b/com/agnibho/code/anagram/dictionary/X6.txt new file mode 100644 index 0000000..8d9e6f8 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/X6.txt @@ -0,0 +1,23 @@ +Xanadu +Xanthe +Xavier +xebecs +xenial +xenium +xeroma +Xerxes +Xhosan +Xhosas +Xmases +xoanon +Xuzhou +xylene +xyloid +xylols +xyloma +xylose +xylyls +xyster +xystoi +xystos +xystus diff --git a/com/agnibho/code/anagram/dictionary/X7.txt b/com/agnibho/code/anagram/dictionary/X7.txt new file mode 100644 index 0000000..8e819ab --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/X7.txt @@ -0,0 +1,28 @@ +xantham +xanthan +xanthic +xanthin +Xenakis +Xenopus +Xenurus +xerafin +xerarch +xerasia +xeromas +xerosis +xerotes +xerotic +Xeroxed +Xeroxes +Ximenes +Ximenez +Xiphias +xiphoid +xylenes +xylenol +xylitol +xylogen +xylomas +xylonic +Xylopia +xysters diff --git a/com/agnibho/code/anagram/dictionary/X8.txt b/com/agnibho/code/anagram/dictionary/X8.txt new file mode 100644 index 0000000..d89198f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/X8.txt @@ -0,0 +1,28 @@ +xanthate +xanthein +xanthene +xanthian +xanthine +xanthium +xanthoma +xanthous +Xantippe +xenogamy +xenolith +Xenophon +xenophya +xenotime +xenurine +xerafins +xeransis +xerantic +xeraphin +xeromata +Xeroxing +Ximenean +xylenols +xylocarp +xyloidin +xylology +xylomata +Xylonite diff --git a/com/agnibho/code/anagram/dictionary/X9.txt b/com/agnibho/code/anagram/dictionary/X9.txt new file mode 100644 index 0000000..93f8d4f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/X9.txt @@ -0,0 +1,33 @@ +xanthates +Xanthippe +xanthomas +Xanthoura +xanthoxyl +Xenarthra +xenocryst +xenograft +xenoliths +xenomania +xenophile +xenophobe +xenophoby +xeraphins +xerochasy +xeroderma +xeromorph +xerophagy +xerophily +xerophyte +xerostoma +Xiphiidae +xiphoidal +Xiphosura +xylocarps +xylograph +xyloidine +xylometer +Xylophaga +xylophage +xylophone +xylorimba +Xyridales diff --git a/com/agnibho/code/anagram/dictionary/Y1.txt b/com/agnibho/code/anagram/dictionary/Y1.txt new file mode 100644 index 0000000..975fbec --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Y1.txt @@ -0,0 +1 @@ +y diff --git a/com/agnibho/code/anagram/dictionary/Y10.txt b/com/agnibho/code/anagram/dictionary/Y10.txt new file mode 100644 index 0000000..78b1f6f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Y10.txt @@ -0,0 +1,31 @@ +yaffingale +yammerings +Yankeefied +Yarborough +yardmaster +yardsticks +yatterings +yearningly +yeastiness +yelloching +yellowback +yellowcake +yellowhead +yellowness +yesterdays +yestereven +yestereves +yestermorn +yesteryear +yiddishism +yieldingly +youngberry +younglings +youngsters +Youngstown +yourselves +youthfully +ypsiliform +Yugoslavia +Yugoslavic +yuppifying diff --git a/com/agnibho/code/anagram/dictionary/Y11.txt b/com/agnibho/code/anagram/dictionary/Y11.txt new file mode 100644 index 0000000..52bfb9f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Y11.txt @@ -0,0 +1,14 @@ +yachtswoman +yachtswomen +yaffingales +yardmasters +yatteringly +yellowbacks +yellowbelly +Yellowknife +Yellowstone +yersiniosis +yesternight +yesteryears +yttriferous +Yugoslavian diff --git a/com/agnibho/code/anagram/dictionary/Y12.txt b/com/agnibho/code/anagram/dictionary/Y12.txt new file mode 100644 index 0000000..3bb2771 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Y12.txt @@ -0,0 +1,7 @@ +Yamoussoukro +yieldingness +Yorkshireman +Yorkshiremen +youngberries +youthfulness +Yugoslavians diff --git a/com/agnibho/code/anagram/dictionary/Y13.txt b/com/agnibho/code/anagram/dictionary/Y13.txt new file mode 100644 index 0000000..5ba4fed --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Y13.txt @@ -0,0 +1,7 @@ +yachtsmanship +yellowbellies +yellowishness +yesterevening +yestermorning +yieldableness +yuppification diff --git a/com/agnibho/code/anagram/dictionary/Y14.txt b/com/agnibho/code/anagram/dictionary/Y14.txt new file mode 100644 index 0000000..0591cd9 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Y14.txt @@ -0,0 +1,2 @@ +yesterevenings +yestermornings diff --git a/com/agnibho/code/anagram/dictionary/Y2.txt b/com/agnibho/code/anagram/dictionary/Y2.txt new file mode 100644 index 0000000..2f1e280 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Y2.txt @@ -0,0 +1,3 @@ +ye +yo +yu diff --git a/com/agnibho/code/anagram/dictionary/Y3.txt b/com/agnibho/code/anagram/dictionary/Y3.txt new file mode 100644 index 0000000..db83cf9 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Y3.txt @@ -0,0 +1,26 @@ +yah +yak +yam +yap +yaw +yea +yen +yep +yes +yet +yew +yex +ygo +yin +yip +yob +yod +yok +yon +yos +you +yow +yug +yuk +yup +yus diff --git a/com/agnibho/code/anagram/dictionary/Y4.txt b/com/agnibho/code/anagram/dictionary/Y4.txt new file mode 100644 index 0000000..16512e0 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Y4.txt @@ -0,0 +1,96 @@ +yack +yaff +Yagi +yahs +yaks +yald +yale +Yama +yams +yang +yank +yapp +yaps +yard +yare +yarn +yarr +yate +yaud +yaup +yawl +yawn +yawp +yaws +yawy +yeah +yean +year +yeas +yech +yede +yegg +yeld +yelk +yell +yelm +yelp +yelt +yens +yeps +yerd +yerk +yest +yeti +yett +yeuk +yews +ygoe +yike +yill +yins +yips +yird +yirk +yite +ylem +ylke +yobs +yock +yode +yoga +yogh +yogi +yoke +Yoko +yoks +yolk +yomp +yond +yoni +yont +yoof +yoop +yore +york +youk +your +yowe +yowl +yows +yuan +yuca +yuck +yuft +yuga +yugs +yuke +yuko +yuks +yule +yump +Yunx +yups +yurt +Yves +ywis diff --git a/com/agnibho/code/anagram/dictionary/Y5.txt b/com/agnibho/code/anagram/dictionary/Y5.txt new file mode 100644 index 0000000..d902b63 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Y5.txt @@ -0,0 +1,127 @@ +yabby +yacca +yacht +yacks +yaffs +yager +yahoo +yakka +yakow +Yakut +yales +y'all +Yalta +yamen +yangs +yanks +yapok +yapon +yapps +yappy +Yaqui +yards +yarer +yarns +yarrs +yauds +yauld +yawed +yawey +yawls +yawns +yawny +yawps +yclad +ydrad +ydred +yeahs +yealm +yeans +yeard +yearn +years +yeast +Yeats +yelks +yells +yelms +yelps +yelts +Yemen +yenta +yerba +yerds +yerks +yeses +yesty +yetis +yetts +yeuks +yeven +yexed +yexes +Yezdi +yfere +yield +yikes +yills +yince +yippy +yirds +yirks +yites +ylkes +yobbo +yocks +yodel +yodle +yogic +yogin +yogis +yoick +yojan +yoked +yokel +yokes +yolks +yolky +yomps +yonis +yonks +Yonne +yoops +yores +yorks +you'd +youks +young +yourn +yours +yourt +youth +yowes +yowie +yowls +Ypres +yrapt +yrent +yrivd +yrneh +yucas +yucca +yucks +yucky +yugas +yuked +yukes +yukky +Yukon +yukos +yulan +yules +yummy +yumps +Yupik +yupon +yuppy +yurts diff --git a/com/agnibho/code/anagram/dictionary/Y6.txt b/com/agnibho/code/anagram/dictionary/Y6.txt new file mode 100644 index 0000000..9cc93fb --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Y6.txt @@ -0,0 +1,143 @@ +yabber +yabbie +yaccas +yachts +yacked +yacker +yaffed +yaffle +yagers +yagger +yahoos +Yahveh +Yahweh +yakked +yakker +yakows +Yakuts +yakuza +Yamani +yamens +yammer +Yangon +yanked +Yankee +yanqui +yaourt +yapock +yapoks +yapons +yapped +yapper +yappie +yaqona +yarded +Yardie +yarely +yarest +yarned +yarpha +yarran +yarrow +yatter +Yaunde +yauper +yaupon +yawing +yawled +yawned +yawner +yawped +yawper +yblent +ybrent +yclept +Yeager +yealms +yeaned +yeards +yearly +yearns +yeasts +yeasty +Yehudi +yelled +yellow +yelmed +yelped +yelper +Yemeni +yenned +yentas +yeoman +yeomen +yerbas +yerded +yerked +yesses +yester +yeuked +yexing +Yezidi +yicker +yields +yikker +yipped +yippee +yipper +yirded +yirked +ynambu +yobbos +yocked +yodels +yodled +yodler +yodles +yogini +yogins +yogism +yogurt +yoicks +yojana +yojans +yokels +yoking +yolked +yomped +yonder +yonker +yopper +Yorick +yorked +yorker +yorkie +Yoruba +youked +you'll +you're +yourts +youths +youthy +you've +yowies +yowled +yowley +ypight +yrnehs +Yseult +yttria +yttric +yuccas +yucked +yucker +yukata +yuking +yulans +yumped +yumpie +Yupiks +yupons +yuppie +Yvette +Yvonne diff --git a/com/agnibho/code/anagram/dictionary/Y7.txt b/com/agnibho/code/anagram/dictionary/Y7.txt new file mode 100644 index 0000000..30ffedf --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Y7.txt @@ -0,0 +1,129 @@ +yabbers +yabbies +yachted +yachter +yachtie +yacking +yaffing +yaffles +yaggers +Yahvist +Yahwist +yakhdan +yakking +Yakutsk +yammers +yamulka +Yangtze +Yankees +yanking +yanquis +Yaound� +yaourts +yapocks +yappers +yappies +yapping +yapster +yardage +yardang +Yardies +yarding +yardman +yardmen +yarning +yarphas +yarrans +yarrows +yashmak +yatagan +yatters +yaupons +yawling +yawners +yawning +yawpers +yawping +ycleped +yealmed +yeaning +yearded +yearned +yearner +yeasted +yeggman +yeggmen +yelling +yelloch +yellows +yellowy +yelming +yelpers +yelping +Yeltsin +Yemenis +yenning +yerding +Yerevan +yerking +yeshiva +yestern +yeuking +Yezidis +yickers +Yiddish +yielded +yielder +yikkers +yippees +yippers +yippies +yipping +yirding +yirking +ynambus +yobbery +yobbish +yobbism +yobboes +yocking +yodeled +yodeler +yodlers +yodling +yoghurt +yoginis +yogurts +yoicked +yojanas +yokings +yolkier +yomping +yonkers +yoppers +yorkers +yorkies +yorking +Yorkish +Yorkist +Yoruban +Yorubas +youking +younger +youngly +younker +youthly +yowleys +yowling +yttrium +Yucatan +yuckers +yuckier +yucking +yukatas +yukkier +yummier +yumpies +yumping +yuppies +yuppify diff --git a/com/agnibho/code/anagram/dictionary/Y8.txt b/com/agnibho/code/anagram/dictionary/Y8.txt new file mode 100644 index 0000000..a1bb61c --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Y8.txt @@ -0,0 +1,88 @@ +yabbered +yachters +yachties +yachting +yakhdans +yakimona +yakitori +yammered +yammerer +yamulkas +yapsters +yardages +yardangs +yardbird +yardland +yardwand +Yarmouth +yarmulka +yarmulke +yarraman +yarramen +yashmaks +yatagans +yataghan +yattered +yawnings +yealming +yeanling +yearding +yearlies +yearling +yearlong +yearners +yearning +yeastier +yeasting +yeldring +yeldrock +yellings +yellochs +yellowed +yellower +yelpings +Yenglish +yeomanly +yeomanry +yersinia +yeshivah +yeshivas +yeshivot +yestreen +Ygdrasil +yickered +yielders +yielding +yikkered +Yinglish +yodelers +yodeling +yodelled +yodeller +yoghourt +yoghurts +yoicking +yoicksed +yoickses +yokelish +Yokohama +yokozuna +yoldring +yolkiest +Yorktown +Yosemite +youngest +youngish +younkers +yourself +youthful +yowlings +ypsiloid +ytterbia +yttrious +yuckiest +Yugoslav +yukkiest +yuletide +yummiest +Yvelines diff --git a/com/agnibho/code/anagram/dictionary/Y9.txt b/com/agnibho/code/anagram/dictionary/Y9.txt new file mode 100644 index 0000000..e023328 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Y9.txt @@ -0,0 +1,66 @@ +yabbering +yachtings +yachtsman +yachtsmen +Yajurveda +yakimonas +yakitoris +yammerers +yammering +Yankeedom +Yankeeism +yardbirds +yardlands +yardstick +yardwands +yarmulkas +yarmulkes +Yaroslavl +yarramans +yataghans +yattering +yawningly +yeanlings +yearlings +yearnings +yeastiest +yeastlike +yeldrings +yeldrocks +yelloched +yellowest +yellowing +yellowish +yersiniae +yersinias +yeshivahs +yeshivoth +yesterday +yestereve +Yggdrasil +yickering +Yiddisher +yieldable +yieldings +yikkering +yobbishly +yodellers +yodelling +yoghourts +yohimbine +yoicksing +yokozunas +yoldrings +Yorkshire +youngling +youngness +youngster +youthhead +youthhood +youthsome +ytterbium +Yugoslavs +yuletides +yuppiedom +yuppified +yuppifies diff --git a/com/agnibho/code/anagram/dictionary/Z1.txt b/com/agnibho/code/anagram/dictionary/Z1.txt new file mode 100644 index 0000000..b680253 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Z1.txt @@ -0,0 +1 @@ +z diff --git a/com/agnibho/code/anagram/dictionary/Z10.txt b/com/agnibho/code/anagram/dictionary/Z10.txt new file mode 100644 index 0000000..e961015 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Z10.txt @@ -0,0 +1,81 @@ +zabaglione +zambooraks +zamindaris +Zanzibaris +zapateados +Zaporogian +zapotillas +zealotries +zebrinnies +Zeelanders +Zeffirelli +zelatrices +zelophobia +zelophobic +zemindaris +zeuglodont +zibellines +zidovudine +zigzaggery +zigzagging +zillionths +Zimbabwean +zincifying +zinckified +zinckifies +zincograph +zincolysis +zinkifying +Zoantharia +Zoanthidae +zoanthropy +zoechromes +Zollverein +zombifying +zoochorous +zooculture +zoogametes +zoogloeoid +zoogonidia +zoographer +zoographic +zoolatrous +zoological +zoologists +zoomorphic +zoonomists +zooperists +zoophagans +zoophagous +zoophilism +zoophilist +zoophilous +zoophobous +zoophytoid +zooplastic +zoosporous +zoothapses +zoothapsis +zoothecial +zoothecium +zootherapy +zootomical +zootomists +zootrophic +zootsuiter +zucchettos +zumbooruck +zumbooruks +zwitterion +Zygaenidae +zygobranch +zygocactus +zygodactyl +zygomorphy +zygomycete +zygophytes +zygosperms +zygosphene +zygospores +zymologist +zymometers diff --git a/com/agnibho/code/anagram/dictionary/Z11.txt b/com/agnibho/code/anagram/dictionary/Z11.txt new file mode 100644 index 0000000..78f3122 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Z11.txt @@ -0,0 +1,51 @@ +zabagliones +Zanthoxylum +Zarathustra +zealousness +zelophobics +zemindaries +zeolitiform +zestfulness +zeuglodonts +zillionaire +Zimbabweans +zinciferous +zinckifying +zincographs +zincography +zinkiferous +zoantharian +zoanthropic +Zonotrichia +zoocephalic +zoochemical +zoodendrium +zoogonidium +zoografting +zoographers +zoographist +zoomagnetic +zoomorphies +zoomorphism +zoophilists +zoophytical +zooplankton +zoospermium +zootechnics +zootheistic +zootsuiters +Zoroastrian +zumboorucks +zwischenzug +zwitterions +zygocardiac +zygomorphic +zygomycetes +Zygophyllum +zygopleural +zygosphenes +zymological +zymologists +zymosimeter +zymotechnic +zymotically diff --git a/com/agnibho/code/anagram/dictionary/Z12.txt b/com/agnibho/code/anagram/dictionary/Z12.txt new file mode 100644 index 0000000..c368ff8 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Z12.txt @@ -0,0 +1,36 @@ +zalambdodont +Zantedeschia +Zarathustric +Zeitvertreib +Zeuglodontia +zigzaggeries +zillionaires +zincographer +zincographic +zoochemistry +zoodendriums +zoogeography +zoograftings +zoographical +zoographists +zoologically +zoomagnetism +zoomorphisms +zoopathology +zoophytology +zoospermatic +zoospermiums +zootomically +Zoroastrians +Zwinglianism +Zwinglianist +zwischenzugs +zygapophyses +zygapophysis +zygobranches +zygodactylic +zygomorphism +zygomorphous +zygomycetous +zymosimeters +zymotechnics diff --git a/com/agnibho/code/anagram/dictionary/Z13.txt b/com/agnibho/code/anagram/dictionary/Z13.txt new file mode 100644 index 0000000..16e1861 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Z13.txt @@ -0,0 +1,18 @@ +zalambdodonts +Zarathustrian +Zarathustrism +zincification +zincographers +Zingiberaceae +zinjanthropus +zinkification +zoogeographer +zoogeographic +zoophysiology +zoopsychology +zoosporangium +zygapophyseal +zygapophysial +zygodactylism +zygodactylous +zymotechnical diff --git a/com/agnibho/code/anagram/dictionary/Z14.txt b/com/agnibho/code/anagram/dictionary/Z14.txt new file mode 100644 index 0000000..4d1fce5 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Z14.txt @@ -0,0 +1,11 @@ +zinckification +zincographical +zingiberaceous +zinziberaceous +zoogeographers +zoophytologist +zoosporangiums +Zoroastrianism +Zygobranchiata +zygobranchiate +Zygophyllaceae diff --git a/com/agnibho/code/anagram/dictionary/Z15.txt b/com/agnibho/code/anagram/dictionary/Z15.txt new file mode 100644 index 0000000..2781071 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Z15.txt @@ -0,0 +1,6 @@ +zoogeographical +zoophysiologist +zoophytological +zoophytologists +zygobranchiates +zygophyllaceous diff --git a/com/agnibho/code/anagram/dictionary/Z16.txt b/com/agnibho/code/anagram/dictionary/Z16.txt new file mode 100644 index 0000000..ceac535 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Z16.txt @@ -0,0 +1,2 @@ +Zarathustrianism +zoophysiologists diff --git a/com/agnibho/code/anagram/dictionary/Z2.txt b/com/agnibho/code/anagram/dictionary/Z2.txt new file mode 100644 index 0000000..cb0bdd2 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Z2.txt @@ -0,0 +1 @@ +zo diff --git a/com/agnibho/code/anagram/dictionary/Z3.txt b/com/agnibho/code/anagram/dictionary/Z3.txt new file mode 100644 index 0000000..1f0668e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Z3.txt @@ -0,0 +1,21 @@ +zag +zap +zax +zea +zed +zee +zek +zel +zen +zho +Zia +zig +zip +zit +ziz +zoa +Zoe +zoo +zos +Zug +zuz diff --git a/com/agnibho/code/anagram/dictionary/Z4.txt b/com/agnibho/code/anagram/dictionary/Z4.txt new file mode 100644 index 0000000..9eb479e --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Z4.txt @@ -0,0 +1,54 @@ +Zach +zack +zags +zany +zaps +Zara +zarf +zati +zeal +zebu +zeds +zees +zein +zeks +zels +Zena +Zend +Zeno +zero +zest +zeta +Zeus +zeze +zhos +ziff +zigs +zila +zimb +zinc +zine +zing +Zion +zips +zite +ziti +zits +zizz +zobo +zobu +zoea +zoic +Zola +zona +zone +zonk +zoom +zoon +zoos +zouk +Zulu +Zuni +zupa +zurf +zyme diff --git a/com/agnibho/code/anagram/dictionary/Z5.txt b/com/agnibho/code/anagram/dictionary/Z5.txt new file mode 100644 index 0000000..b9c92d1 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Z5.txt @@ -0,0 +1,91 @@ +zabra +zacks +Zadig +Zadok +zaire +zakat +zaman +zambo +zamia +zanja +zante +zanze +Zappa +zappy +zarfs +Zaria +zatis +zaxes +zeals +zebec +zebra +zebub +zebus +Zeiss +zeist +Zelda +Zeppo +zerda +zeros +zests +zesty +zetas +zezes +zhomo +zibet +ziffs +zigan +Ziggy +zilas +zilch +zimbi +zimbs +zinco +zincs +zincy +zineb +zines +zings +zingy +zinke +zinky +zippo +zippy +zizel +zloty +zobos +zobus +zocco +zoeae +zoeal +zoeas +Zohar +zoism +zoist +zombi +zonae +zonal +zonda +zoned +zones +zonks +zooea +zooid +zooks +zooms +zoons +zoppa +zoppo +Zorba +zoril +zorro +zowie +Zulus +Zunis +zupan +zupas +zurfs +zygal +zygon +zymes +zymic diff --git a/com/agnibho/code/anagram/dictionary/Z6.txt b/com/agnibho/code/anagram/dictionary/Z6.txt new file mode 100644 index 0000000..15bbbfb --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Z6.txt @@ -0,0 +1,122 @@ +zabeta +Zabian +zabras +zaddik +zaffer +zaffre +zagged +Zagreb +Zainab +zamang +Zambia +zambos +zambuk +zamias +zander +zanied +zanier +zanies +zanjas +Zantac +zantes +zanzes +zapata +zapped +zapper +zarape +zareba +zariba +zarnec +Zaynab +zealot +zebeck +zebecs +zebras +zebubs +zeloso +zenana +zendik +zenith +zephyr +zerdas +zereba +zeriba +zeroed +zeroes +zeroth +zester +zeugma +Zeuxis +zhomos +zibets +zigans +zigged +zigzag +zillah +zimbis +zimmer +zinced +zincks +zincky +zincos +zinged +zingel +zinger +zinked +zinkes +zinnia +zipped +zipper +ziptop +zircon +zither +zizels +zizzed +zizzes +zlotys +zoccos +zodiac +zoetic +zoists +zombie +zombis +zonary +zonate +zondas +zoning +zonked +zonoid +zonula +zonule +zonure +zooeae +zooeal +zooeas +zooids +zoomed +zoonal +zoonic +zoozoo +zorils +zorino +zorros +zoster +Zouave +zounds +zufoli +zufolo +Zunian +zupans +Z�rich +zuzzes +zydeco +zygoma +zygons +zygose +zygote +zymase +zymite +zymoid +zymome +Zyrian +zythum diff --git a/com/agnibho/code/anagram/dictionary/Z7.txt b/com/agnibho/code/anagram/dictionary/Z7.txt new file mode 100644 index 0000000..1615286 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Z7.txt @@ -0,0 +1,175 @@ +zabtieh +Zachary +zaddiks +Zadkiel +zagging +Zairean +zakuska +zakuski +zamarra +zamarro +Zambezi +Zambian +zambuck +zambuks +zamouse +zampone +zamponi +zanders +zanella +zaniest +zanjero +Zantiot +zanying +zanyism +Zapotec +zappers +zappier +zapping +zaptiah +zaptieh +zarapes +zarebas +zareeba +zaribas +zarnich +Zatopek +zealful +zealots +zealous +zebecks +Zebedee +zebrass +zebrina +zebrine +zebroid +zebrula +zebrule +zedoary +Zeeland +zelator +zemstva +zemstvo +zenanas +zendiks +zeniths +Zennist +Zenobia +zeolite +zephyrs +zerebas +zeribas +Zermatt +zeroing +zesters +zestful +zestier +zetetic +zeugmas +Zeuxian +zeuxite +Zezidee +ziganka +zigging +zigzags +zilches +zillahs +zillion +zimmers +zimocca +Zincala +Zincali +Zincalo +zincify +zincing +zincite +zincked +zincode +zincoid +zincous +Zingani +Zingano +Zingara +Zingare +Zingari +Zingaro +zingels +zingers +zingier +zinging +zinkify +zinking +zinnias +Zionism +Zionist +Ziphius +ziplock +zippers +zippier +zipping +zircons +zithern +zithers +Zizania +zizzing +zoarium +zoccolo +zodiacs +zoeform +Zoffany +Zoilean +Zoilism +Zoilist +zoisite +Zolaism +Z�llner +zombies +zombify +zonally +zonated +zonings +zonking +zonular +zonulas +zonules +zonulet +zonures +Zonurus +zooecia +zoogamy +zoogeny +zoogony +zooidal +zookses +zoolite +zoolith +zoology +zooming +zoonite +zoonomy +zoopery +zootaxy +zootomy +zootype +zoozoos +zorgite +zorille +zorillo +zorinos +Zostera +zosters +zuffoli +zuffolo +Zuleika +Zygaena +zygomas +zygosis +zygotes +zygotic +zymases +zymites +zymogen +zymosis +zymotic +zymurgy +Zyrians diff --git a/com/agnibho/code/anagram/dictionary/Z8.txt b/com/agnibho/code/anagram/dictionary/Z8.txt new file mode 100644 index 0000000..f9a8d1f --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Z8.txt @@ -0,0 +1,138 @@ +zabaione +zabtiehs +zaddikim +Zaireans +Zalophus +zamarras +zamarros +Zambians +zambomba +zambucks +zamindar +zamouses +zampogna +zaniness +zanjeros +Zantiote +Zanzibar +Zapotecs +zappiest +zaptiahs +zaptiehs +Zaragoza +zaratite +zareebas +zarzuela +zastruga +zastrugi +zealless +zealotry +zebrinny +zebrulas +zebrules +zecchine +zecchini +zecchino +Zelanian +zelators +zelatrix +zemindar +zemstvos +zenithal +zeolites +zeolitic +Zephyrus +zeppelin +zerumbet +zestiest +zetetics +zeuxites +Zezidees +zibeline +Ziegfeld +zigankas +ziggurat +zigzaggy +zikkurat +zillions +Zimbabwe +zimoccas +zinckify +zincking +zingiber +zingiest +Zionists +Zionward +zippered +zippiest +zircaloy +zircoloy +zirconia +zirconic +zitherns +Zizyphus +Zoanthus +zoariums +zoccolos +zodiacal +zoetrope +zoiatria +zombiism +zomboruk +zonation +zoneless +zonulets +zooblast +zoochore +zoochory +zoocytia +zooecium +zoogenic +zoogloea +zoograft +zoolater +zoolatry +zoolites +zooliths +zoolitic +zoomancy +zoometry +zoomorph +zoonites +zoonitic +zoonomia +zoonomic +zoonoses +zoonosis +zoonotic +zoopathy +zooperal +Zoophaga +zoophagy +zoophile +zoophily +Zoophyta +zoophyte +zooscopy +zoosperm +zoospore +zoothome +zootomic +zootoxin +zootrope +zootypes +zootypic +zopilote +zorilles +zorillos +zoundses +zucchini +zuchetta +zuchetto +zugzwang +Zukerman +Zwieback +zygaenid +zygodont +zygomata +zymology diff --git a/com/agnibho/code/anagram/dictionary/Z9.txt b/com/agnibho/code/anagram/dictionary/Z9.txt new file mode 100644 index 0000000..75e1ab0 --- /dev/null +++ b/com/agnibho/code/anagram/dictionary/Z9.txt @@ -0,0 +1,129 @@ +zabaiones +Zachariah +Zacharias +zambombas +zamboorak +zamindari +zamindars +zamindary +zampognas +zanthoxyl +Zanzibari +zapateado +Zapodidae +Zapotecan +zapotilla +zarzuelas +zealotism +zealously +zebrasses +zecchines +zecchinos +Zechariah +Zechstein +zedoaries +Zeebrugge +Zeelander +zeitgeist +zelatrice +zemindari +zemindars +zemindary +Zemlinsky +Zephaniah +zeppelins +Zernebock +zestfully +Zeuglodon +zeugmatic +Zhengzhou +zibelines +zibelline +ziggurats +zigzagged +zikkurats +zillionth +zincified +zincifies +Zinfandel +zingibers +zinkenite +zinkified +zinkifies +Ziphiidae +zircalloy +zircaloys +zircoloys +zirconium +zoechrome +zoetropes +zoetropic +zoiatrics +zombified +zombifies +zomboruks +Zonuridae +zoobiotic +zooblasts +zoochores +zoocytium +zoogamete +zoogamous +zoogenous +zoogloeic +zoogonous +zoografts +zoography +zoolaters +zoolatria +zoolithic +zoologist +zoomantic +zoometric +zoomorphs +zoomorphy +zoonomist +zooperist +zoophagan +zoophiles +zoophilia +zoophobia +zoophoric +zoophorus +zoophytes +zoophytic +zooplasty +zooscopic +zoosperms +zoospores +zoosporic +zootechny +zoothecia +zootheism +zoothomes +zootomist +zootoxins +zootropes +zootrophy +zopilotes +Zoroaster +zucchetto +zucchinis +zuchettas +zuchettos +zugzwangs +zumbooruk +Zwanziger +Zwinglian +zygaenine +zygaenoid +zygantrum +zygomatic +zygophyte +zygosperm +zygospore +zymogenic +zymologic +zymolysis +zymolytic +zymometer -- 2.39.2