liblouis-rb 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (517) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +520 -0
  3. data/README.md +100 -0
  4. data/Rakefile +80 -0
  5. data/ext/liblouis/braille_character.c +200 -0
  6. data/ext/liblouis/braille_table.c +198 -0
  7. data/ext/liblouis/braille_text.c +223 -0
  8. data/ext/liblouis/extconf.rb +73 -0
  9. data/ext/liblouis/liblouis.c +168 -0
  10. data/ext/liblouis/liblouis_ext.h +49 -0
  11. data/ext/liblouis/table_source.c +161 -0
  12. data/ext/liblouis/translation.c +443 -0
  13. data/liblouis-rb.gemspec +49 -0
  14. data/spec/liblouis_spec.rb +62 -0
  15. data/test/integration/packaging_test.rb +82 -0
  16. data/test/table_source_cases.rb +9 -0
  17. data/test/test_braille_character.rb +62 -0
  18. data/test/test_braille_table.rb +379 -0
  19. data/test/test_braille_text.rb +30 -0
  20. data/test/test_helper.rb +7 -0
  21. data/test/translation_cases.rb +33 -0
  22. data/vendor/liblouis/COPYING +674 -0
  23. data/vendor/liblouis/COPYING.LESSER +502 -0
  24. data/vendor/liblouis/configure.ac +290 -0
  25. data/vendor/liblouis/liblouis/commonTranslationFunctions.c +95 -0
  26. data/vendor/liblouis/liblouis/compileTranslationTable.c +5515 -0
  27. data/vendor/liblouis/liblouis/internal.h +781 -0
  28. data/vendor/liblouis/liblouis/liblouis.h.in +514 -0
  29. data/vendor/liblouis/liblouis/logging.c +233 -0
  30. data/vendor/liblouis/liblouis/lou_backTranslateString.c +1855 -0
  31. data/vendor/liblouis/liblouis/lou_translateString.c +4177 -0
  32. data/vendor/liblouis/liblouis/maketable.c +463 -0
  33. data/vendor/liblouis/liblouis/metadata.c +1258 -0
  34. data/vendor/liblouis/liblouis/pattern.c +1632 -0
  35. data/vendor/liblouis/liblouis/utils.c +448 -0
  36. data/vendor/liblouis/tables/Es-Es-G0.utb +248 -0
  37. data/vendor/liblouis/tables/IPA-unicode-range.uti +200 -0
  38. data/vendor/liblouis/tables/IPA.utb +164 -0
  39. data/vendor/liblouis/tables/Lv-Lv-g1.utb +509 -0
  40. data/vendor/liblouis/tables/Makefile.am +503 -0
  41. data/vendor/liblouis/tables/Pl-Pl-g1.utb +312 -0
  42. data/vendor/liblouis/tables/README +6 -0
  43. data/vendor/liblouis/tables/afr-za-g1.ctb +63 -0
  44. data/vendor/liblouis/tables/afr-za-g2.ctb +1050 -0
  45. data/vendor/liblouis/tables/akk-borger.utb +997 -0
  46. data/vendor/liblouis/tables/akk.utb +1002 -0
  47. data/vendor/liblouis/tables/ancient-languages-borger.utb +114 -0
  48. data/vendor/liblouis/tables/ancient-languages-us.utb +114 -0
  49. data/vendor/liblouis/tables/ar-ar-comp8.utb +293 -0
  50. data/vendor/liblouis/tables/ar-ar-g1-core.uti +291 -0
  51. data/vendor/liblouis/tables/ar-ar-g1.utb +26 -0
  52. data/vendor/liblouis/tables/ar-ar-g2.ctb +447 -0
  53. data/vendor/liblouis/tables/ar-ar-math.uti +501 -0
  54. data/vendor/liblouis/tables/ar.tbl +17 -0
  55. data/vendor/liblouis/tables/as-in-g1.utb +27 -0
  56. data/vendor/liblouis/tables/as.tbl +18 -0
  57. data/vendor/liblouis/tables/aw-in-g1.utb +27 -0
  58. data/vendor/liblouis/tables/awa.tbl +18 -0
  59. data/vendor/liblouis/tables/ba.utb +64 -0
  60. data/vendor/liblouis/tables/be-in-g1.utb +27 -0
  61. data/vendor/liblouis/tables/bel-comp.utb +42 -0
  62. data/vendor/liblouis/tables/bel-detailed.utb +32 -0
  63. data/vendor/liblouis/tables/bel.utb +61 -0
  64. data/vendor/liblouis/tables/bengali.cti +238 -0
  65. data/vendor/liblouis/tables/bg.ctb +215 -0
  66. data/vendor/liblouis/tables/bg.dis +84 -0
  67. data/vendor/liblouis/tables/bg.tbl +21 -0
  68. data/vendor/liblouis/tables/bg.utb +454 -0
  69. data/vendor/liblouis/tables/bh.ctb +24 -0
  70. data/vendor/liblouis/tables/bh.tbl +17 -0
  71. data/vendor/liblouis/tables/bn.tbl +18 -0
  72. data/vendor/liblouis/tables/bo.ctb +184 -0
  73. data/vendor/liblouis/tables/bo.tbl +21 -0
  74. data/vendor/liblouis/tables/boxes.ctb +162 -0
  75. data/vendor/liblouis/tables/br-in-g1.utb +27 -0
  76. data/vendor/liblouis/tables/bra.tbl +18 -0
  77. data/vendor/liblouis/tables/braille-patterns.cti +287 -0
  78. data/vendor/liblouis/tables/ca-chardefs.cti +225 -0
  79. data/vendor/liblouis/tables/ca-g1.ctb +46 -0
  80. data/vendor/liblouis/tables/ca.tbl +18 -0
  81. data/vendor/liblouis/tables/chr-us-g1.ctb +180 -0
  82. data/vendor/liblouis/tables/ckb-chardefs.cti +219 -0
  83. data/vendor/liblouis/tables/ckb-g1.ctb +31 -0
  84. data/vendor/liblouis/tables/ckb-translation.cti +131 -0
  85. data/vendor/liblouis/tables/ckb.tbl +18 -0
  86. data/vendor/liblouis/tables/compress.cti +44 -0
  87. data/vendor/liblouis/tables/controlchars.cti +27 -0
  88. data/vendor/liblouis/tables/cop-eg-comp8.utb +255 -0
  89. data/vendor/liblouis/tables/cop.utb +231 -0
  90. data/vendor/liblouis/tables/corrections.cti +47 -0
  91. data/vendor/liblouis/tables/countries.cti +263 -0
  92. data/vendor/liblouis/tables/critical-apparatus.uti +54 -0
  93. data/vendor/liblouis/tables/cs-chardefs.cti +385 -0
  94. data/vendor/liblouis/tables/cs-comp8.utb +405 -0
  95. data/vendor/liblouis/tables/cs-g1.ctb +37 -0
  96. data/vendor/liblouis/tables/cs-translation.cti +63 -0
  97. data/vendor/liblouis/tables/cs.tbl +20 -0
  98. data/vendor/liblouis/tables/cuneiform-transliterated-compact.utb +432 -0
  99. data/vendor/liblouis/tables/cuneiform-transliterated.utb +160 -0
  100. data/vendor/liblouis/tables/cy-cy-g1.utb +487 -0
  101. data/vendor/liblouis/tables/cy-cy-g2.ctb +199 -0
  102. data/vendor/liblouis/tables/cy.tbl +19 -0
  103. data/vendor/liblouis/tables/da-dk-6miscChars.cti +385 -0
  104. data/vendor/liblouis/tables/da-dk-6miscChars_1993.cti +412 -0
  105. data/vendor/liblouis/tables/da-dk-8miscChars.cti +90 -0
  106. data/vendor/liblouis/tables/da-dk-8miscChars_1993.cti +102 -0
  107. data/vendor/liblouis/tables/da-dk-g08.ctb +290 -0
  108. data/vendor/liblouis/tables/da-dk-g08_1993.ctb +331 -0
  109. data/vendor/liblouis/tables/da-dk-g16-lit_1993.ctb +294 -0
  110. data/vendor/liblouis/tables/da-dk-g16.ctb +289 -0
  111. data/vendor/liblouis/tables/da-dk-g16_1993.ctb +305 -0
  112. data/vendor/liblouis/tables/da-dk-g18.ctb +545 -0
  113. data/vendor/liblouis/tables/da-dk-g18_1993.ctb +563 -0
  114. data/vendor/liblouis/tables/da-dk-g2.dic +7439 -0
  115. data/vendor/liblouis/tables/da-dk-g26-lit_1993.ctb +898 -0
  116. data/vendor/liblouis/tables/da-dk-g26.ctb +1345 -0
  117. data/vendor/liblouis/tables/da-dk-g26_1993.ctb +1127 -0
  118. data/vendor/liblouis/tables/da-dk-g26l-lit_1993.ctb +588 -0
  119. data/vendor/liblouis/tables/da-dk-g26l_1993.ctb +604 -0
  120. data/vendor/liblouis/tables/da-dk-g28.ctb +2426 -0
  121. data/vendor/liblouis/tables/da-dk-g28_1993.ctb +2063 -0
  122. data/vendor/liblouis/tables/da-dk-g28l_1993.ctb +1594 -0
  123. data/vendor/liblouis/tables/da-dk-octobraille.dis +316 -0
  124. data/vendor/liblouis/tables/da-dk-octobraille_1993.dis +313 -0
  125. data/vendor/liblouis/tables/de-accents-detailed.cti +214 -0
  126. data/vendor/liblouis/tables/de-accents.cti +214 -0
  127. data/vendor/liblouis/tables/de-chardefs6.cti +289 -0
  128. data/vendor/liblouis/tables/de-chardefs8.cti +278 -0
  129. data/vendor/liblouis/tables/de-chess.ctb +37 -0
  130. data/vendor/liblouis/tables/de-comp6.utb +226 -0
  131. data/vendor/liblouis/tables/de-de-comp8.ctb +492 -0
  132. data/vendor/liblouis/tables/de-de.dis +331 -0
  133. data/vendor/liblouis/tables/de-eurobrl6.dis +101 -0
  134. data/vendor/liblouis/tables/de-eurobrl6u.dis +96 -0
  135. data/vendor/liblouis/tables/de-g0-core.uti +732 -0
  136. data/vendor/liblouis/tables/de-g0-detailed.utb +84 -0
  137. data/vendor/liblouis/tables/de-g0.utb +57 -0
  138. data/vendor/liblouis/tables/de-g1-core-patterns.dic +4863 -0
  139. data/vendor/liblouis/tables/de-g1-core.cti +67 -0
  140. data/vendor/liblouis/tables/de-g1-detailed.ctb +79 -0
  141. data/vendor/liblouis/tables/de-g1.ctb +54 -0
  142. data/vendor/liblouis/tables/de-g2-core-patterns.dic +26711 -0
  143. data/vendor/liblouis/tables/de-g2-core.cti +607 -0
  144. data/vendor/liblouis/tables/de-g2-detailed.ctb +60 -0
  145. data/vendor/liblouis/tables/de-g2.ctb +57 -0
  146. data/vendor/liblouis/tables/devanagari.cti +325 -0
  147. data/vendor/liblouis/tables/digits6Dots.uti +30 -0
  148. data/vendor/liblouis/tables/digits6DotsPlusDot6.uti +30 -0
  149. data/vendor/liblouis/tables/digits8Dots.uti +30 -0
  150. data/vendor/liblouis/tables/dra.ctb +23 -0
  151. data/vendor/liblouis/tables/dra.tbl +21 -0
  152. data/vendor/liblouis/tables/el.ctb +775 -0
  153. data/vendor/liblouis/tables/en-GB-g2.ctb +829 -0
  154. data/vendor/liblouis/tables/en-chardefs.cti +193 -0
  155. data/vendor/liblouis/tables/en-chess.ctb +37 -0
  156. data/vendor/liblouis/tables/en-g3-patterns.dic +11194 -0
  157. data/vendor/liblouis/tables/en-g3.ctb +2261 -0
  158. data/vendor/liblouis/tables/en-gb-comp8.ctb +282 -0
  159. data/vendor/liblouis/tables/en-gb-g1.utb +527 -0
  160. data/vendor/liblouis/tables/en-in-g1.ctb +162 -0
  161. data/vendor/liblouis/tables/en-nabcc.utb +166 -0
  162. data/vendor/liblouis/tables/en-nz-g1.utb +65 -0
  163. data/vendor/liblouis/tables/en-nz-g2.ctb +46 -0
  164. data/vendor/liblouis/tables/en-ueb-chardefs.uti +938 -0
  165. data/vendor/liblouis/tables/en-ueb-g1.ctb +167 -0
  166. data/vendor/liblouis/tables/en-ueb-g2.ctb +3925 -0
  167. data/vendor/liblouis/tables/en-ueb-math.ctb +71 -0
  168. data/vendor/liblouis/tables/en-us-brf.dis +102 -0
  169. data/vendor/liblouis/tables/en-us-comp6.ctb +149 -0
  170. data/vendor/liblouis/tables/en-us-comp8-ext.utb +626 -0
  171. data/vendor/liblouis/tables/en-us-comp8.ctb +62 -0
  172. data/vendor/liblouis/tables/en-us-compbrl.uti +69 -0
  173. data/vendor/liblouis/tables/en-us-emphasis.uti +45 -0
  174. data/vendor/liblouis/tables/en-us-g1.ctb +199 -0
  175. data/vendor/liblouis/tables/en-us-g2.ctb +1081 -0
  176. data/vendor/liblouis/tables/en-us-interline.ctb +1126 -0
  177. data/vendor/liblouis/tables/en-us-mathtext.ctb +880 -0
  178. data/vendor/liblouis/tables/en_CA.ctb +195 -0
  179. data/vendor/liblouis/tables/en_CA.tbl +21 -0
  180. data/vendor/liblouis/tables/en_GB.tbl +26 -0
  181. data/vendor/liblouis/tables/en_US-comp8-ext.tbl +15 -0
  182. data/vendor/liblouis/tables/en_US.tbl +26 -0
  183. data/vendor/liblouis/tables/eo-g1-x-system.ctb +85 -0
  184. data/vendor/liblouis/tables/eo-g1.ctb +165 -0
  185. data/vendor/liblouis/tables/eo.tbl +14 -0
  186. data/vendor/liblouis/tables/es-chardefs.cti +206 -0
  187. data/vendor/liblouis/tables/es-g1.ctb +36 -0
  188. data/vendor/liblouis/tables/es-g2.ctb +955 -0
  189. data/vendor/liblouis/tables/es-new.dis +284 -0
  190. data/vendor/liblouis/tables/es-no.utb +79 -0
  191. data/vendor/liblouis/tables/es-old.dis +284 -0
  192. data/vendor/liblouis/tables/es.tbl +19 -0
  193. data/vendor/liblouis/tables/et-6dot.utb +269 -0
  194. data/vendor/liblouis/tables/et-g0.utb +139 -0
  195. data/vendor/liblouis/tables/ethio-g1.ctb +335 -0
  196. data/vendor/liblouis/tables/eurodefs.cti +107 -0
  197. data/vendor/liblouis/tables/fa-ir-comp8.ctb +250 -0
  198. data/vendor/liblouis/tables/fa-ir-g1.utb +311 -0
  199. data/vendor/liblouis/tables/fi-fi-8dot.ctb +278 -0
  200. data/vendor/liblouis/tables/fi.utb +354 -0
  201. data/vendor/liblouis/tables/fil-g2.ctb +491 -0
  202. data/vendor/liblouis/tables/fr-bfu-comp6-puncs-math.uti +351 -0
  203. data/vendor/liblouis/tables/fr-bfu-comp6.utb +238 -0
  204. data/vendor/liblouis/tables/fr-bfu-comp68.cti +251 -0
  205. data/vendor/liblouis/tables/fr-bfu-comp8.utb +323 -0
  206. data/vendor/liblouis/tables/fr-bfu-g2.ctb +4644 -0
  207. data/vendor/liblouis/tables/ga-g1.utb +95 -0
  208. data/vendor/liblouis/tables/ga-g2.ctb +231 -0
  209. data/vendor/liblouis/tables/gd.ctb +123 -0
  210. data/vendor/liblouis/tables/gd.tbl +21 -0
  211. data/vendor/liblouis/tables/gez.tbl +21 -0
  212. data/vendor/liblouis/tables/gon.ctb +25 -0
  213. data/vendor/liblouis/tables/gon.tbl +17 -0
  214. data/vendor/liblouis/tables/gr-pl-comp8.uti +256 -0
  215. data/vendor/liblouis/tables/grc-international-common.uti +104 -0
  216. data/vendor/liblouis/tables/grc-international-composed.uti +268 -0
  217. data/vendor/liblouis/tables/grc-international-decomposed.uti +268 -0
  218. data/vendor/liblouis/tables/grc-international-en-composed.utb +54 -0
  219. data/vendor/liblouis/tables/grc-international-en.utb +206 -0
  220. data/vendor/liblouis/tables/grc-international-es.utb +228 -0
  221. data/vendor/liblouis/tables/gu-in-g1.utb +27 -0
  222. data/vendor/liblouis/tables/gu.tbl +18 -0
  223. data/vendor/liblouis/tables/gujarati.cti +221 -0
  224. data/vendor/liblouis/tables/gurumuki.cti +393 -0
  225. data/vendor/liblouis/tables/haw-us-g1.ctb +54 -0
  226. data/vendor/liblouis/tables/hbo-cantillated-rules.uti +71 -0
  227. data/vendor/liblouis/tables/hbo-cantillated.utb +109 -0
  228. data/vendor/liblouis/tables/hbo-common-rules.uti +152 -0
  229. data/vendor/liblouis/tables/hbo-ihbc-rules.uti +58 -0
  230. data/vendor/liblouis/tables/hbo-slim-rules.uti +68 -0
  231. data/vendor/liblouis/tables/hbo-slim.utb +100 -0
  232. data/vendor/liblouis/tables/hbo.utb +107 -0
  233. data/vendor/liblouis/tables/he-IL-comp8.utb +464 -0
  234. data/vendor/liblouis/tables/he-IL.utb +406 -0
  235. data/vendor/liblouis/tables/he-common-consonants.uti +102 -0
  236. data/vendor/liblouis/tables/he-common-vowels-ihbc.uti +161 -0
  237. data/vendor/liblouis/tables/hi-in-g1.utb +27 -0
  238. data/vendor/liblouis/tables/hi.tbl +18 -0
  239. data/vendor/liblouis/tables/hr-chardefs.cti +278 -0
  240. data/vendor/liblouis/tables/hr-comp8.tbl +21 -0
  241. data/vendor/liblouis/tables/hr-comp8.utb +239 -0
  242. data/vendor/liblouis/tables/hr-digits.uti +40 -0
  243. data/vendor/liblouis/tables/hr-g1.ctb +36 -0
  244. data/vendor/liblouis/tables/hr-g1.tbl +9 -0
  245. data/vendor/liblouis/tables/hr-translation.cti +364 -0
  246. data/vendor/liblouis/tables/ht-frenchcompatibility.uti +61 -0
  247. data/vendor/liblouis/tables/ht-g1.utb +114 -0
  248. data/vendor/liblouis/tables/hu-backtranslate-correction.dis +38 -0
  249. data/vendor/liblouis/tables/hu-backtranslate-word-corrections.cti +4293 -0
  250. data/vendor/liblouis/tables/hu-chardefs.cti +298 -0
  251. data/vendor/liblouis/tables/hu-exceptionwords.cti +3204 -0
  252. data/vendor/liblouis/tables/hu-hu-comp8.ctb +183 -0
  253. data/vendor/liblouis/tables/hu-hu-g1.ctb +129 -0
  254. data/vendor/liblouis/tables/hu-hu-g1_braille_input.cti +486 -0
  255. data/vendor/liblouis/tables/hu-hu-g2.ctb +270 -0
  256. data/vendor/liblouis/tables/hu-hu-g2_exceptions.cti +1164 -0
  257. data/vendor/liblouis/tables/hy.ctb +121 -0
  258. data/vendor/liblouis/tables/hy.tbl +21 -0
  259. data/vendor/liblouis/tables/hyph_cs_CZ.dic +3637 -0
  260. data/vendor/liblouis/tables/hyph_da_DK.dic +8896 -0
  261. data/vendor/liblouis/tables/hyph_de_DE.dic +5799 -0
  262. data/vendor/liblouis/tables/hyph_en_US.dic +5537 -0
  263. data/vendor/liblouis/tables/hyph_eo.dic +1024 -0
  264. data/vendor/liblouis/tables/hyph_es_ES.dic +877 -0
  265. data/vendor/liblouis/tables/hyph_fr_FR.dic +1067 -0
  266. data/vendor/liblouis/tables/hyph_hu_HU.dic +98519 -0
  267. data/vendor/liblouis/tables/hyph_it_IT.dic +410 -0
  268. data/vendor/liblouis/tables/hyph_nb_NO.dic +27142 -0
  269. data/vendor/liblouis/tables/hyph_nl_NL.dic +12725 -0
  270. data/vendor/liblouis/tables/hyph_nn_NO.dic +27142 -0
  271. data/vendor/liblouis/tables/hyph_pl_PL.dic +4074 -0
  272. data/vendor/liblouis/tables/hyph_pt_PT.dic +308 -0
  273. data/vendor/liblouis/tables/hyph_ru.dic +6480 -0
  274. data/vendor/liblouis/tables/hyph_sv_SE.dic +4697 -0
  275. data/vendor/liblouis/tables/is-chardefs6.cti +170 -0
  276. data/vendor/liblouis/tables/is-chardefs8.cti +293 -0
  277. data/vendor/liblouis/tables/is.ctb +157 -0
  278. data/vendor/liblouis/tables/is.tbl +18 -0
  279. data/vendor/liblouis/tables/it-it-comp6.utb +404 -0
  280. data/vendor/liblouis/tables/it-it-comp8.utb +663 -0
  281. data/vendor/liblouis/tables/iu-ca-g1.ctb +236 -0
  282. data/vendor/liblouis/tables/ja-kantenji-ucs2.utb +11448 -0
  283. data/vendor/liblouis/tables/ja-kantenji.utb +53 -0
  284. data/vendor/liblouis/tables/ja-rokutenkanji.utb +8710 -0
  285. data/vendor/liblouis/tables/ka-in-g1.utb +27 -0
  286. data/vendor/liblouis/tables/ka.utb +128 -0
  287. data/vendor/liblouis/tables/kannada.cti +282 -0
  288. data/vendor/liblouis/tables/kh-in-g1.utb +26 -0
  289. data/vendor/liblouis/tables/kha.tbl +18 -0
  290. data/vendor/liblouis/tables/kk.utb +77 -0
  291. data/vendor/liblouis/tables/km-g1.utb +412 -0
  292. data/vendor/liblouis/tables/kmr.tbl +108 -0
  293. data/vendor/liblouis/tables/kn.tbl +18 -0
  294. data/vendor/liblouis/tables/ko-2006-g1.ctb +49 -0
  295. data/vendor/liblouis/tables/ko-2006-g2.ctb +53 -0
  296. data/vendor/liblouis/tables/ko-2006.cti +190 -0
  297. data/vendor/liblouis/tables/ko-chars.cti +15140 -0
  298. data/vendor/liblouis/tables/ko-g1-rules.cti +634 -0
  299. data/vendor/liblouis/tables/ko-g1.ctb +48 -0
  300. data/vendor/liblouis/tables/ko-g2-rules.cti +9263 -0
  301. data/vendor/liblouis/tables/ko-g2.ctb +52 -0
  302. data/vendor/liblouis/tables/ko.cti +223 -0
  303. data/vendor/liblouis/tables/kok.ctb +24 -0
  304. data/vendor/liblouis/tables/kok.tbl +17 -0
  305. data/vendor/liblouis/tables/kru.ctb +24 -0
  306. data/vendor/liblouis/tables/kru.tbl +17 -0
  307. data/vendor/liblouis/tables/ks-in-g1.utb +27 -0
  308. data/vendor/liblouis/tables/latinLetterDef6Dots.uti +78 -0
  309. data/vendor/liblouis/tables/latinLetterDef8Dots.uti +75 -0
  310. data/vendor/liblouis/tables/latinLowercase.uti +389 -0
  311. data/vendor/liblouis/tables/latinUppercaseComp6.uti +78 -0
  312. data/vendor/liblouis/tables/lg-ug-g1.utb +60 -0
  313. data/vendor/liblouis/tables/litdigits6Dots.uti +30 -0
  314. data/vendor/liblouis/tables/litdigits6DotsPlusDot6.uti +30 -0
  315. data/vendor/liblouis/tables/lo-g1.utb +3127 -0
  316. data/vendor/liblouis/tables/loweredDigits6Dots.uti +30 -0
  317. data/vendor/liblouis/tables/loweredDigits8Dots.uti +30 -0
  318. data/vendor/liblouis/tables/lt-6dot.utb +308 -0
  319. data/vendor/liblouis/tables/lt-8dot.utb +281 -0
  320. data/vendor/liblouis/tables/lt.ctb +313 -0
  321. data/vendor/liblouis/tables/lv.tbl +22 -0
  322. data/vendor/liblouis/tables/maketablelist.sh +52 -0
  323. data/vendor/liblouis/tables/malayalam.cti +674 -0
  324. data/vendor/liblouis/tables/mao-nz-g1.ctb +65 -0
  325. data/vendor/liblouis/tables/marburg_single_cell_defs.cti +66 -0
  326. data/vendor/liblouis/tables/marburg_unicode_defs.cti +297 -0
  327. data/vendor/liblouis/tables/mk-g1.utb +240 -0
  328. data/vendor/liblouis/tables/ml-in-g1.utb +27 -0
  329. data/vendor/liblouis/tables/ml.tbl +21 -0
  330. data/vendor/liblouis/tables/mn-MN-common.cti +110 -0
  331. data/vendor/liblouis/tables/mn-MN-g1.utb +52 -0
  332. data/vendor/liblouis/tables/mn-MN-g2.ctb +50 -0
  333. data/vendor/liblouis/tables/mn-in-g1.utb +27 -0
  334. data/vendor/liblouis/tables/mni.tbl +18 -0
  335. data/vendor/liblouis/tables/mr-in-g1.utb +27 -0
  336. data/vendor/liblouis/tables/mr.tbl +18 -0
  337. data/vendor/liblouis/tables/ms-my-g2.ctb +4897 -0
  338. data/vendor/liblouis/tables/mt.ctb +114 -0
  339. data/vendor/liblouis/tables/mt.tbl +21 -0
  340. data/vendor/liblouis/tables/mun.ctb +24 -0
  341. data/vendor/liblouis/tables/mun.tbl +17 -0
  342. data/vendor/liblouis/tables/mwr.ctb +24 -0
  343. data/vendor/liblouis/tables/mwr.tbl +17 -0
  344. data/vendor/liblouis/tables/my-g1.utb +771 -0
  345. data/vendor/liblouis/tables/my-g2.ctb +3805 -0
  346. data/vendor/liblouis/tables/ne.ctb +22 -0
  347. data/vendor/liblouis/tables/ne.tbl +18 -0
  348. data/vendor/liblouis/tables/nemethdefs.cti +382 -0
  349. data/vendor/liblouis/tables/nl-BE.dis +532 -0
  350. data/vendor/liblouis/tables/nl-NL-g0.utb.in +646 -0
  351. data/vendor/liblouis/tables/nl-chardefs.uti.in +455 -0
  352. data/vendor/liblouis/tables/nl-comp8.utb +411 -0
  353. data/vendor/liblouis/tables/nl-print.dis +551 -0
  354. data/vendor/liblouis/tables/nl-unicode.dis +540 -0
  355. data/vendor/liblouis/tables/no-no-8dot-fallback-6dot-g0.utb +59 -0
  356. data/vendor/liblouis/tables/no-no-8dot.utb +629 -0
  357. data/vendor/liblouis/tables/no-no-braillo-047-01.dis +247 -0
  358. data/vendor/liblouis/tables/no-no-chardefs6.uti +305 -0
  359. data/vendor/liblouis/tables/no-no-comp8.ctb +323 -0
  360. data/vendor/liblouis/tables/no-no-cyrillic6dot.uti +95 -0
  361. data/vendor/liblouis/tables/no-no-g0.utb +320 -0
  362. data/vendor/liblouis/tables/no-no-g1.ctb +272 -0
  363. data/vendor/liblouis/tables/no-no-g2.ctb +737 -0
  364. data/vendor/liblouis/tables/no-no-g3.ctb +3597 -0
  365. data/vendor/liblouis/tables/no-no-generic.ctb +295 -0
  366. data/vendor/liblouis/tables/no-no-generic.dis +295 -0
  367. data/vendor/liblouis/tables/no-no-latinLetterDef6Dots_diacritics.uti +852 -0
  368. data/vendor/liblouis/tables/no-no.dis +291 -0
  369. data/vendor/liblouis/tables/np-in-g1.utb +27 -0
  370. data/vendor/liblouis/tables/nso-za-g1.utb +38 -0
  371. data/vendor/liblouis/tables/nso-za-g2.ctb +38 -0
  372. data/vendor/liblouis/tables/ny-mw.utb +70 -0
  373. data/vendor/liblouis/tables/or-in-g1.utb +27 -0
  374. data/vendor/liblouis/tables/or.tbl +18 -0
  375. data/vendor/liblouis/tables/oriya.cti +238 -0
  376. data/vendor/liblouis/tables/ovd-6g0.utb +64 -0
  377. data/vendor/liblouis/tables/ovd-8g0.utb +81 -0
  378. data/vendor/liblouis/tables/pa.tbl +18 -0
  379. data/vendor/liblouis/tables/pi.ctb +24 -0
  380. data/vendor/liblouis/tables/pi.tbl +17 -0
  381. data/vendor/liblouis/tables/pl-pl-comp8.ctb +658 -0
  382. data/vendor/liblouis/tables/pl.tbl +12 -0
  383. data/vendor/liblouis/tables/printables.cti +70 -0
  384. data/vendor/liblouis/tables/pt-comp6.utb +299 -0
  385. data/vendor/liblouis/tables/pt-pt-comp8.ctb +395 -0
  386. data/vendor/liblouis/tables/pt-pt-g1.utb +1312 -0
  387. data/vendor/liblouis/tables/pt-pt-g2.ctb +874 -0
  388. data/vendor/liblouis/tables/pt.tbl +20 -0
  389. data/vendor/liblouis/tables/pu-in-g1.utb +42 -0
  390. data/vendor/liblouis/tables/quotation-marks.uti +30 -0
  391. data/vendor/liblouis/tables/ro-g0.utb +85 -0
  392. data/vendor/liblouis/tables/ro.ctb +126 -0
  393. data/vendor/liblouis/tables/ro.tbl +21 -0
  394. data/vendor/liblouis/tables/ru-brf.dis +116 -0
  395. data/vendor/liblouis/tables/ru-comp6.utb +258 -0
  396. data/vendor/liblouis/tables/ru-comp8.utb +740 -0
  397. data/vendor/liblouis/tables/ru-letters.dis +145 -0
  398. data/vendor/liblouis/tables/ru-litbrl-detailed.utb +77 -0
  399. data/vendor/liblouis/tables/ru-litbrl.ctb +857 -0
  400. data/vendor/liblouis/tables/ru-math.uti +395 -0
  401. data/vendor/liblouis/tables/ru-ru-g1.ctb +804 -0
  402. data/vendor/liblouis/tables/ru-unicode.dis +121 -0
  403. data/vendor/liblouis/tables/rw-rw-g1.utb +133 -0
  404. data/vendor/liblouis/tables/sa-in-g1.utb +27 -0
  405. data/vendor/liblouis/tables/sa.tbl +18 -0
  406. data/vendor/liblouis/tables/sah.utb +72 -0
  407. data/vendor/liblouis/tables/sd.tbl +18 -0
  408. data/vendor/liblouis/tables/se-se.ctb +246 -0
  409. data/vendor/liblouis/tables/se-se.dis +334 -0
  410. data/vendor/liblouis/tables/si-in-g1.utb +27 -0
  411. data/vendor/liblouis/tables/sin.cti +213 -0
  412. data/vendor/liblouis/tables/sin.utb +35 -0
  413. data/vendor/liblouis/tables/sk-g1.ctb +1019 -0
  414. data/vendor/liblouis/tables/sk-sk-g1.utb +206 -0
  415. data/vendor/liblouis/tables/sk-sk.utb +112 -0
  416. data/vendor/liblouis/tables/sl-si-comp8.ctb +204 -0
  417. data/vendor/liblouis/tables/sl-si-g1.utb +471 -0
  418. data/vendor/liblouis/tables/sl.tbl +20 -0
  419. data/vendor/liblouis/tables/smi-6g0.utb +64 -0
  420. data/vendor/liblouis/tables/smi-8g0.utb +61 -0
  421. data/vendor/liblouis/tables/sot-za-g1.ctb +72 -0
  422. data/vendor/liblouis/tables/sot-za-g2.ctb +244 -0
  423. data/vendor/liblouis/tables/spaces.uti +62 -0
  424. data/vendor/liblouis/tables/sr-Cyrl.ctb +59 -0
  425. data/vendor/liblouis/tables/sr-common.cti +161 -0
  426. data/vendor/liblouis/tables/sr-cyrletters.cti +92 -0
  427. data/vendor/liblouis/tables/sr-g1.ctb +57 -0
  428. data/vendor/liblouis/tables/sr-latletters.cti +45 -0
  429. data/vendor/liblouis/tables/sv-1989.ctb +241 -0
  430. data/vendor/liblouis/tables/sv-1996.ctb +180 -0
  431. data/vendor/liblouis/tables/sv-6common.uti +1199 -0
  432. data/vendor/liblouis/tables/sv-6g0d.utb +508 -0
  433. data/vendor/liblouis/tables/sv-6g0p.utb +61 -0
  434. data/vendor/liblouis/tables/sv-6g1.uti +106 -0
  435. data/vendor/liblouis/tables/sv-6g1d.ctb +57 -0
  436. data/vendor/liblouis/tables/sv-6g2.uti +254 -0
  437. data/vendor/liblouis/tables/sv-6g2d.ctb +57 -0
  438. data/vendor/liblouis/tables/sv-8g0d.utb +495 -0
  439. data/vendor/liblouis/tables/sv-8g0n.utb +1236 -0
  440. data/vendor/liblouis/tables/sv-8g1.uti +199 -0
  441. data/vendor/liblouis/tables/sv-8g1d.ctb +73 -0
  442. data/vendor/liblouis/tables/sv-8g1n.ctb +73 -0
  443. data/vendor/liblouis/tables/sv-8g2.uti +486 -0
  444. data/vendor/liblouis/tables/sv-8g2d.ctb +73 -0
  445. data/vendor/liblouis/tables/sv-8g2n.ctb +73 -0
  446. data/vendor/liblouis/tables/sv-g0.utb +65 -0
  447. data/vendor/liblouis/tables/sv-g1.ctb +57 -0
  448. data/vendor/liblouis/tables/sv-g2.ctb +57 -0
  449. data/vendor/liblouis/tables/sv-phon.uti +241 -0
  450. data/vendor/liblouis/tables/sw-ke-g1-2.ctb +90 -0
  451. data/vendor/liblouis/tables/sw-ke-g1-3.ctb +109 -0
  452. data/vendor/liblouis/tables/sw-ke-g1-4.ctb +107 -0
  453. data/vendor/liblouis/tables/sw-ke-g1-5.ctb +73 -0
  454. data/vendor/liblouis/tables/sw-ke-g1.utb +278 -0
  455. data/vendor/liblouis/tables/sw-ke-g2.ctb +276 -0
  456. data/vendor/liblouis/tables/syc.utb +195 -0
  457. data/vendor/liblouis/tables/ta-ta-g1.ctb +167 -0
  458. data/vendor/liblouis/tables/ta.ctb +24 -0
  459. data/vendor/liblouis/tables/ta.tbl +21 -0
  460. data/vendor/liblouis/tables/tamil.cti +86 -0
  461. data/vendor/liblouis/tables/te-in-g1.utb +27 -0
  462. data/vendor/liblouis/tables/te.tbl +18 -0
  463. data/vendor/liblouis/tables/telugu.cti +239 -0
  464. data/vendor/liblouis/tables/text_nabcc.dis +426 -0
  465. data/vendor/liblouis/tables/th-comp8-backward.utb +226 -0
  466. data/vendor/liblouis/tables/th-g0.utb +177 -0
  467. data/vendor/liblouis/tables/th-g1.utb +89 -0
  468. data/vendor/liblouis/tables/th-g1.uti +315 -0
  469. data/vendor/liblouis/tables/th-g2.ctb +616 -0
  470. data/vendor/liblouis/tables/tr-g1.ctb +254 -0
  471. data/vendor/liblouis/tables/tr-g2.ctb +863 -0
  472. data/vendor/liblouis/tables/tr-g2.tbl +20 -0
  473. data/vendor/liblouis/tables/tr.ctb +324 -0
  474. data/vendor/liblouis/tables/tr.tbl +21 -0
  475. data/vendor/liblouis/tables/tsn-za-g1.ctb +33 -0
  476. data/vendor/liblouis/tables/tsn-za-g2.ctb +33 -0
  477. data/vendor/liblouis/tables/tt.utb +74 -0
  478. data/vendor/liblouis/tables/uga.utb +86 -0
  479. data/vendor/liblouis/tables/uk-comp.utb +53 -0
  480. data/vendor/liblouis/tables/uk-detailed.utb +32 -0
  481. data/vendor/liblouis/tables/uk.utb +101 -0
  482. data/vendor/liblouis/tables/ukchardefs.cti +106 -0
  483. data/vendor/liblouis/tables/ukmaths_single_cell_defs.cti +65 -0
  484. data/vendor/liblouis/tables/ukmaths_unicode_defs.cti +298 -0
  485. data/vendor/liblouis/tables/uni-text.dis +330 -0
  486. data/vendor/liblouis/tables/unicode-braille.utb +291 -0
  487. data/vendor/liblouis/tables/unicode-without-blank.dis +24 -0
  488. data/vendor/liblouis/tables/unicode.dis +278 -0
  489. data/vendor/liblouis/tables/ur-pk-g1.utb +248 -0
  490. data/vendor/liblouis/tables/ur-pk-g2.ctb +641 -0
  491. data/vendor/liblouis/tables/us-table.dis +67 -0
  492. data/vendor/liblouis/tables/uz-g1.utb +117 -0
  493. data/vendor/liblouis/tables/ve-za-g1.utb +69 -0
  494. data/vendor/liblouis/tables/ve-za-g2.ctb +208 -0
  495. data/vendor/liblouis/tables/vi-cb8.utb +49 -0
  496. data/vendor/liblouis/tables/vi-charsdef.uti +36 -0
  497. data/vendor/liblouis/tables/vi-lettersdef.uti +401 -0
  498. data/vendor/liblouis/tables/vi-puncsdef.uti +446 -0
  499. data/vendor/liblouis/tables/vi-saigon-g1.ctb +530 -0
  500. data/vendor/liblouis/tables/vi-vn-g0.utb +135 -0
  501. data/vendor/liblouis/tables/vi-vn-g1.ctb +574 -0
  502. data/vendor/liblouis/tables/vi-vn-g2.ctb +743 -0
  503. data/vendor/liblouis/tables/wiskunde-chardefs.cti +261 -0
  504. data/vendor/liblouis/tables/wordcx.dis +91 -0
  505. data/vendor/liblouis/tables/xh-za-g1.utb +61 -0
  506. data/vendor/liblouis/tables/xh-za-g2.ctb +386 -0
  507. data/vendor/liblouis/tables/yi.utb +236 -0
  508. data/vendor/liblouis/tables/zh-chn.ctb +45011 -0
  509. data/vendor/liblouis/tables/zh-hk.ctb +10461 -0
  510. data/vendor/liblouis/tables/zh-tw.ctb +53810 -0
  511. data/vendor/liblouis/tables/zh_CHN.tbl +23 -0
  512. data/vendor/liblouis/tables/zhcn-cbs.ctb +31523 -0
  513. data/vendor/liblouis/tables/zhcn-g1.ctb +26523 -0
  514. data/vendor/liblouis/tables/zhcn-g2.ctb +26519 -0
  515. data/vendor/liblouis/tables/zu-za-g1.utb +33 -0
  516. data/vendor/liblouis/tables/zu-za-g2.ctb +33 -0
  517. metadata +558 -0
@@ -0,0 +1,3925 @@
1
+ # liblouis: Unified English Braille Code (Grade 2)
2
+ #
3
+ # -----------
4
+ #-name: Unified English braille, grade 2
5
+ #-index-name: English, unified, contracted
6
+ #-display-name: Unified English contracted braille
7
+ #
8
+ #+language:en
9
+ #+type:literary
10
+ #+contraction:full
11
+ #+grade:2
12
+ #+system:ueb
13
+ #
14
+ # TODO: Please add a reference to official documentation about
15
+ # the implemented braille code. Preferably submit the documents
16
+ # to https://github.com/liblouis/braille-specs.
17
+ # -----------
18
+ #
19
+ # Copyright (C) 2004-2008 ViewPlus Technologies, Inc. www.viewplus.com
20
+ # Copyright (C) 2004-2006 JJB Software, Inc. www.jjb-software.com
21
+ # Copyright (C) 2016 American Printing House for the Blind, Inc. www.aph.org
22
+ # Copyright (C) 2016 Joseph Lee <joseph.lee22590@gmail.com>
23
+ # Copyright (C) 2019-2025 RNIB <www.rnib.org.uk>
24
+ # Copyright (C) 2022 Krzysztof Drewniak <krzysdrewniak@gmail.com>
25
+ # Copyright (C) 2023-2024 Anthony Tibbs
26
+ #
27
+ # This file is part of liblouis.
28
+ #
29
+ # liblouis is free software: you can redistribute it and/or modify it
30
+ # under the terms of the GNU Lesser General Public License as
31
+ # published by the Free Software Foundation, either version 2.1 of the
32
+ # License, or (at your option) any later version.
33
+ #
34
+ # liblouis is distributed in the hope that it will be useful, but
35
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
36
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
37
+ # Lesser General Public License for more details.
38
+ #
39
+ # You should have received a copy of the GNU Lesser General Public
40
+ # License along with liblouis. If not, see
41
+ # <http://www.gnu.org/licenses/>.
42
+ #
43
+ #-maintainer: James Bowden <james.bowden@rnib.org.uk>
44
+ #-author: John J. Boyer <john.boyer@jjb-software.com>
45
+ #-author: Mike Gray <mgray@aph.org>
46
+ #-author: Joseph Lee <joseph.lee22590@gmail.com>
47
+ #-author: Krzysztof Drewniak <krzysdrewniak@gmail.com>
48
+
49
+ include en-ueb-g1.ctb
50
+
51
+ multind 56-6 nocontractsign capsletter
52
+
53
+ seqdelimiter -—
54
+ seqdelimiter ‐ \x2010
55
+ seqdelimiter ‑ \x2011
56
+ seqdelimiter – \x2013
57
+ seqdelimiter — \x2014
58
+ seqdelimiter ― \x2015
59
+
60
+ seqbeforechars ([{"“'‘
61
+ seqafterchars )]}"”'’.,;:.!?…
62
+ seqafterpattern 'd
63
+ seqafterpattern 'll
64
+ seqafterpattern 're
65
+ seqafterpattern 's
66
+ seqafterpattern 't
67
+ seqafterpattern 've
68
+ seqafterpattern ’d
69
+ seqafterpattern ’ll
70
+ seqafterpattern ’re
71
+ seqafterpattern ’s
72
+ seqafterpattern ’t
73
+ seqafterpattern ’ve
74
+ #TODO: all caps words (see lou_translateString.c:inSequence()
75
+ seqafterpattern 'D
76
+ seqafterpattern 'LL
77
+ seqafterpattern 'RE
78
+ seqafterpattern 'S
79
+ seqafterpattern 'T
80
+ seqafterpattern 'VE
81
+ seqafterexpression '([DSTdst]|ll|[rv]e|LL|[RV]E)
82
+ seqafterpattern ’D
83
+ seqafterpattern ’LL
84
+ seqafterpattern ’RE
85
+ seqafterpattern ’S
86
+ seqafterpattern ’T
87
+ seqafterpattern ’VE
88
+ seqafterexpression ’([DSTdst]|ll|[rv]e|LL|[RV]E)
89
+
90
+ # 7 Punctuation
91
+ # - 7.1.3 could be read as contraction
92
+ match %[^_]|%[^_~]%<*[([{] ; %[^_]|[)}\]]%>*%[^_~] 56-23
93
+ # or a word-initial groupsign
94
+ match %[^_~]%<* . %a 56-256
95
+ match %[^_~]%<* : %a 56-25
96
+ match %[^_~]%<* ; %a 56-23
97
+
98
+ # 10.1 Alphabetic Wordsigns
99
+ # - 10.1.1 standing alone
100
+ # - 10.1.2 followed by 'd, 'll, 're, 's, 't, 've and standing alone
101
+ # - 2.6.4
102
+
103
+ # must be before contractions?
104
+ match %[^_~]%<* as (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 1356
105
+ match %[^_~]%<* but (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 12
106
+ match %[^_~]%<* can (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 14
107
+ match %[^_~]%<* do (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 145
108
+ match %[^_~]%<* every (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 15
109
+ match %[^_~]%<* from (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 124
110
+ match %[^_~]%<* go (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 1245
111
+ match %[^_~]%<* have (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 125
112
+ match %[^_~]%<* it (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 1346
113
+ match %[^_~]%<* just (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 245
114
+ match %[^_~]%<* knowledge (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 13
115
+ match %[^_~]%<* like (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 123
116
+ match %[^_~]%<* more (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 134
117
+ match %[^_~]%<* not (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 1345
118
+ match %[^_~]%<* people (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 1234
119
+ match %[^_~]%<* quite (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 12345
120
+ match %[^_~]%<* rather (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 1235
121
+ match %[^_~]%<* so (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 234
122
+ match %[^_~]%<* that (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 2345
123
+ match %[^_~]%<* us (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 136
124
+ match %[^_~]%<* very (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 1236
125
+ match %[^_~]%<* will (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 2456
126
+ match %[^_~]%<* you (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 13456
127
+
128
+ nofor word as 1356
129
+ nofor word but 12
130
+ nofor word can 14
131
+ nofor word do 145
132
+ nofor word every 15
133
+ nofor word from 124
134
+ nofor word go 1245
135
+ nofor word have 125
136
+ nofor word it 1346
137
+ nofor word just 245
138
+ nofor word knowledge 13
139
+ nofor word like 123
140
+ nofor word more 134
141
+ nofor word not 1345
142
+ nofor word people 1234
143
+ nofor word quite 12345
144
+ nofor word rather 1235
145
+ nofor word so 234
146
+ nofor word that 2345
147
+ nofor word us 136
148
+ nofor word very 1236
149
+ nofor word will 2456
150
+ nofor word you 13456
151
+
152
+ nofor word but's 12-3-234
153
+ nofor word but’s 12-3-234
154
+ nofor word can's 14-3-234
155
+ nofor word can’s 14-3-234
156
+ nofor word can't 14-3-2345
157
+ nofor word can’t 14-3-2345
158
+ nofor word do's 145-3-234
159
+ nofor word do’s 145-3-234
160
+ nofor word go's 1245-3-234
161
+ nofor word go’s 1245-3-234
162
+ nofor word have's 125-3-234
163
+ nofor word have’s 125-3-234
164
+ nofor word it'd 1346-3-145
165
+ nofor word it’d 1346-3-145
166
+ nofor word it'll 1346-3-123-123
167
+ nofor word it’ll 1346-3-123-123
168
+ nofor word it's 1346-3-234
169
+ nofor word it’s 1346-3-234
170
+ nofor word knowledge's 13-3-234
171
+ nofor word knowledge’s 13-3-234
172
+ nofor word like's 123-3-234
173
+ nofor word like’s 123-3-234
174
+ nofor word more's 134-3-234
175
+ nofor word more’s 134-3-234
176
+ nofor word people's 1234-3-234
177
+ nofor word people’s 1234-3-234
178
+ nofor word so's 234-3-234
179
+ nofor word so’s 234-3-234
180
+ nofor word that'd 2345-3-145
181
+ nofor word that’d 2345-3-145
182
+ nofor word that'll 2345-3-123-123
183
+ nofor word that’ll 2345-3-123-123
184
+ nofor word that're 2345-3-1235-15
185
+ nofor word that’re 2345-3-1235-15
186
+ nofor word that's 2345-3-234
187
+ nofor word that’s 2345-3-234
188
+ nofor word that've 2345-3-1236-15
189
+ nofor word that’ve 2345-3-1236-15
190
+ nofor word will's 2456-3-234
191
+ nofor word will’s 2456-3-234
192
+ nofor word will've 2456-3-1236-15
193
+ nofor word will’ve 2456-3-1236-15
194
+ nofor word you'd 13456-3-145
195
+ nofor word you’d 13456-3-145
196
+ nofor word you'll 13456-3-123-123
197
+ nofor word you’ll 13456-3-123-123
198
+ nofor word you're 13456-3-1235-15
199
+ nofor word you’re 13456-3-1235-15
200
+ nofor word you's 13456-3-234
201
+ nofor word you’s 13456-3-234
202
+ nofor word you've 13456-3-1236-15
203
+ nofor word you’ve 13456-3-1236-15
204
+
205
+ contraction b
206
+ contraction c
207
+ contraction d
208
+ contraction e
209
+ contraction f
210
+ contraction g
211
+ contraction h
212
+ contraction j
213
+ contraction k
214
+ contraction l
215
+ contraction m
216
+ contraction n
217
+ contraction p
218
+ contraction q
219
+ contraction r
220
+ contraction s
221
+ contraction t
222
+ contraction u
223
+ contraction v
224
+ contraction w
225
+ contraction x
226
+ contraction y
227
+ contraction z
228
+
229
+ contraction B
230
+ contraction C
231
+ contraction D
232
+ contraction E
233
+ contraction F
234
+ contraction G
235
+ contraction H
236
+ contraction J
237
+ contraction K
238
+ contraction L
239
+ contraction M
240
+ contraction N
241
+ contraction P
242
+ contraction Q
243
+ contraction R
244
+ contraction S
245
+ contraction T
246
+ contraction U
247
+ contraction V
248
+ contraction W
249
+ contraction X
250
+ contraction Y
251
+ contraction Z
252
+
253
+
254
+ # 10.2 Strong Wordsigns
255
+ # - 10.2.1 standing alone
256
+ # - 10.2.2 followed by 'd, 'll, 're, 's, 't, 've and standing alone
257
+ # - 2.6.4
258
+
259
+ match %[^_~]%<* child (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 16
260
+ match %[^_~]%<* out (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 1256
261
+ match %[^_~]%<* shall (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 146
262
+ match %[^_~]%<* still (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 34
263
+ match %[^_~]%<* this (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 1456
264
+ match %[^_~]%<* which (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?%>*%[^_~] 156
265
+
266
+ nofor word child 16
267
+ nofor word out 1256
268
+ nofor word shall 146
269
+ nofor word still 34
270
+ nofor word this 1456
271
+ nofor word which 156
272
+
273
+ nofor word child's 16-3-234
274
+ nofor word child’s 16-3-234
275
+ nofor word out's 1256-3-234
276
+ nofor word out’s 1256-3-234
277
+ nofor word shall've 146-3-1236-15
278
+ nofor word shall’ve 146-3-1236-15
279
+ nofor word still's 34-3-234
280
+ nofor word still’s 34-3-234
281
+ nofor word this'd 1456-3-145
282
+ nofor word this’d 1456-3-145
283
+ nofor word this'll 1456-3-123-123
284
+ nofor word this’ll 1456-3-123-123
285
+ nofor word this's 1456-3-234
286
+ nofor word this’s 1456-3-234
287
+ nofor word which'd 156-3-145
288
+ nofor word which’d 156-3-145
289
+ nofor word which'll 156-3-123-123
290
+ nofor word which’ll 156-3-123-123
291
+ nofor word which're 156-3-1235-15
292
+ nofor word which’re 156-3-1235-15
293
+ nofor word which's 156-3-234
294
+ nofor word which’s 156-3-234
295
+ nofor word which've 156-3-1236-15
296
+ nofor word which’ve 156-3-1236-15
297
+
298
+ # 10.3 Strong Contractions
299
+ # - 10.11.2
300
+
301
+ # and
302
+ always and 12346
303
+
304
+ # for
305
+ always for 123456
306
+
307
+ # of
308
+ always of 12356
309
+ always ofor 135-123456 in OFOR, the FOR sign takes priority
310
+
311
+ match - aero [FWfw] 1-12456-135
312
+ match - antero [FWfw] 1-1345-2345-12456-135
313
+ match - auto [FWfw] =
314
+ match - benzo [FWfw] 12-26-1356-135
315
+ match - bio [FWfw] =
316
+ match - chloro [FWfw] 16-123-135-1235-135
317
+ match - deutero [FWfw] 145-15-136-2345-12456-135
318
+ match - electro [FWfw] =
319
+ match - fibro [FWfw] =
320
+ match - fluoro [FWfw] =
321
+ match - galvano [FWfw] =
322
+ match - griseo [FWfw] =
323
+ match - hetero [FWfw] 125-15-2345-12456-135
324
+ match - homo [FWfw] =
325
+ match - hydro [FWfw] =
326
+ match - hypo [FWfw] =
327
+ match - kilo [FWfw] =
328
+ match - luteo [FWfw] =
329
+ match - macro [FWfw] =
330
+ match - micro [FWfw] =
331
+ match - mono [FWfw] =
332
+ match - myelo [FWfw] =
333
+ match - myo [Ff] =
334
+ match - nano [FWfw] =
335
+ match - nitro [FWfw] =
336
+ match - octo [FWfw] =
337
+ match - photo [FWfw] =
338
+ match - pico [FWfw] =
339
+ match - proto [FWfw] =
340
+ match - pseudo [FWfw] =
341
+ match - psycho [FWfw] 1234-234-13456-16-135
342
+ match - retro [FWfw] =
343
+ match - sulfo [FWfw] =
344
+ match - sulpho [FWfw] =
345
+ match - synchro [FWfw] 234-13456-1345-16-1235-135
346
+ match - thermo [FWfw] 2346-1235-134-135
347
+ match - thio [Ff][Uu][Rr] 1456-24-135
348
+ match - ventro [FWfw] 1236-26-2345-1235-135
349
+
350
+ sufword cofactor =
351
+ sufword cofather 14-135-5-124
352
+ sufword cofeatur 14-135-124-2-2345-136-1235
353
+ sufword coferment 14-135-124-12456-56-2345
354
+ sufword cofield =
355
+ sufword cofight 14-135-124-24-126-2345
356
+ sufword cofinal 14-135-124-35-1-123
357
+ sufword cofinance 14-135-124-35-46-15
358
+ sufword cofinancing 14-135-124-35-1-1345-14-346
359
+ sufword cofound 14-135-124-46-145
360
+ sufword cofunction 14-135-124-136-1345-14-56-1345
361
+ sufword filofax 124-24-123-135-124-1-1346
362
+ sufword insofar 35-234-135-124-345
363
+ sufword portofino 1234-135-1235-2345-135-124-35-135
364
+ sufword riboflavin 1235-24-12-135-124-123-1-1236-35
365
+ sufword styrofoam 34-13456-1235-135-124-135-1-134
366
+ sufword turbofan =
367
+ sufword twofer 2345-2456-135-124-12456
368
+ sufword twofold 2345-2456-135-124-135-123-145
369
+
370
+ # the
371
+ always the 2346
372
+
373
+ match %a thead - 2345-125-2-145
374
+ match %a thear [Tt] 2345-125-15-345
375
+ match %a theim - =
376
+
377
+ match - esthe [STst][EIei] 15-234-2346
378
+
379
+ sufword calisthenic 14-1-123-24-234-2346-1345-24-14
380
+ sufword demosthenes 145-15-134-135-234-2346-1345-15-234
381
+ sufword eratosthenes 12456-1-2345-135-234-2346-1345-15-234
382
+ sufword esther 15-234-2346-1235
383
+ sufword hesther 125-15-234-2346-1235
384
+ sufword motheaten 134-135-1456-2-2345-26
385
+ sufword northeast 1345-135-1235-1456-2-34
386
+ sufword northesk 1345-135-1235-1456-15-234-13
387
+ sufword prostheses 1234-1235-135-234-2346-234-15-234
388
+ sufword prosthesis 1234-1235-135-234-2346-234-24-234
389
+ sufword prosthetic 1234-1235-135-234-2346-2345-24-14
390
+ sufword southeast 234-1256-1456-2-34
391
+ sufword southend 234-1256-1456-26-145
392
+ sufword southesk 234-1256-1456-15-234-13
393
+ sufword strathearn 34-1235-1-1456-15-345-1345
394
+ sufword thence 1456-56-15
395
+
396
+ # with
397
+ always with 23456
398
+
399
+
400
+ # 10.4 Strong Groupsigns
401
+ # - 10.4.2 ch sh th wh ou st
402
+ # - 10.4.3 ing
403
+ # - 10.11.2 ch gh sh th wh
404
+ # - 2.6.4 referred from 10.4.2 - 10.2
405
+
406
+ # ar
407
+ always ar 345
408
+ match (%[^_~]%<*) ar (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?(%>*%[^_~]) =
409
+
410
+ sufword aright 1-5-1235
411
+ sufword indiarubber 35-145-24-1-1235-136-23-12456
412
+ sufword infrared 35-124-1235-1-1235-1246
413
+
414
+ # ch 10.4.2 10.11.2
415
+ always ch 16
416
+ match (%[^_~]%<*) ch (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?(%>*%[^_~]) =
417
+
418
+ sufword gchq =
419
+ sufword publicheart 1234-136-12-123-24-14-125-15-345-2345
420
+
421
+ # ed
422
+ always ed 1246
423
+
424
+ match %a edale ([Ss]|(['’][Ss]))?%>*%[^_~] =
425
+ match %a edown - 15-145-246-1345
426
+
427
+ match - apple [Dd][Oo][Rr][Ee] =
428
+ sufword basedow 12-1-234-15-145-246
429
+ match - battle [Dd][Oo][Rr][Ee] =
430
+ sufword cliveden 14-123-24-1236-15-145-26
431
+ sufword daredevil 145-345-15-145-15-1236-24-123
432
+ match - dumble [Dd][Oo][Rr][Ee] =
433
+ sufword doubleday 145-1256-12-123-15-5-145
434
+ sufword eyedrop =
435
+ sufword firedog =
436
+ sufword firedrak =
437
+ sufword firedrill =
438
+ match - grave [Dd][Ii][Gg] =
439
+ match - guide [Dd][Oo][Gg] =
440
+ sufword gwynedd =
441
+ sufword housedress 125-1256-234-15-145-1235-15-234-234
442
+ sufword ingledew 35-1245-123-15-145-15-2456
443
+ sufword kettledrum 13-15-2345-2345-123-15-145-1235-136-134
444
+ sufword knuckleduster 13-1345-136-14-13-123-15-145-136-34-12456
445
+ match - langue [Dd][Oo][Cc] =
446
+ match - nose [Dd][IOio][Vv][EIei] =
447
+ sufword piedish 1234-24-15-145-24-146
448
+ sufword pinedrop 1234-35-15-145-1235-135-1234
449
+ sufword priedieu =
450
+ sufword rosedrop =
451
+ sufword shoreditch 146-135-1235-15-145-24-2345-16
452
+ sufword threedimension 1456-1235-15-15-145-24-134-26-46-1345
453
+ sufword tonedeaf 2345-5-135-145-2-124
454
+ sufword turtledove 2345-136-1235-2345-123-15-145-135-1236-15
455
+ sufword tweedledee 2345-2456-15-1246-123-15-145-15-15
456
+ sufword tweedledum 2345-2456-15-1246-123-15-145-136-134
457
+ begword viced 1236-24-14-15-145
458
+ always vinedress 1236-35-15-145-1235-15-234-234
459
+
460
+ # er
461
+ always er 12456
462
+
463
+ sufword fireroom =
464
+ sufword forerunner 123456-15-1235-136-1345-1345-12456
465
+ sufword hedgerow 125-1246-1245-15-1235-246
466
+ sufword homeroom 125-135-134-15-1235-135-135-134
467
+ sufword horseradish 125-135-1235-234-15-1235-1-145-24-146
468
+ sufword spareribs 234-1234-345-15-1235-24-12-234
469
+ sufword stateroom 34-1-2345-15-1235-135-135-134
470
+ sufword storeroom 34-135-1235-15-1235-135-135-134
471
+ sufword viceregal 1236-24-14-15-1235-15-1245-1-123
472
+ sufword viceroy 1236-24-14-15-1235-135-13456
473
+
474
+ #TODO: check pronunciation
475
+ sufword castlereagh 14-1-34-123-15-1235-2-126
476
+
477
+ # gh
478
+ always gh 126
479
+ match (%[^_~]%<*) gh ('([DSTdst]|ll|[rv]e|LL|[RV]E))?(%>*%[^_~]) =
480
+
481
+ match %a ghead - 1245-125-2-145
482
+ match %a gheap - 1245-125-2-1234
483
+ match %a ghear [Tt] 1245-125-15-345
484
+ match %a ghill - =
485
+ match %a ghol [DETZdetz] =
486
+ match %a ghorn - =
487
+ match %a ghound - 1245-125-46-145
488
+ match %a ghous [EIei] 1245-125-1256-234
489
+ match %a ghur [Ss][Tt] =
490
+
491
+ sufword cunnyngham 14-136-1345-1345-13456-1345-1245-125-1-134
492
+ sufword froghop =
493
+ sufword hwangho =
494
+ sufword langhair =
495
+ sufword shanghai 146-1-1345-1245-125-1-24
496
+
497
+ #TODO: check pronunciation
498
+ sufword senghor 234-26-1245-125-135-1235
499
+
500
+ # ing
501
+ match !%[^_~] ing - 346
502
+ #nofor endword ing'['’]s 346-3-234
503
+ #nofor endword ingly 346-123-13456
504
+ nofor midendword ing 346
505
+ nofor always ing 35-1245
506
+
507
+ match %a ingaar [DTdt] 35-1245-1-345 Maingaard
508
+ match %a ingar [Tt] 35-1245-345 Weingartner
509
+ match %a ingold - 35-1245-135-123-145 Rheingold
510
+
511
+ sufword disingenuous 256-35-1245-26-136-1256-234
512
+ match - kingus [Ss] 13-35-1245-136-234 Kingussie
513
+ sufword leningrad 123-26-35-1245-1235-1-145
514
+ sufword seinglind 234-15-35-1245-123-35-145
515
+ sufword stalingrad 34-1-123-35-1245-1235-1-145
516
+ sufword vainglorious 1236-1-35-1245-123-135-1235-24-1256-234
517
+ sufword vainglory 1236-1-35-1245-123-135-1235-13456
518
+
519
+ # ou
520
+ always ou 1256
521
+ match (%[^_~]%<*) ou (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?(%>*%[^_~]) =
522
+ match (%[^_~]%<*) proun [Ii] = prounion etc
523
+
524
+ # ow
525
+ always ow 246
526
+ always owork 135-5-2456 in OWORK, the WORK sign takes priority
527
+
528
+ sufword cowinner 14-135-2456-35-1345-12456
529
+ match - cowr [IOio][Tt] = cowrite etc
530
+ sufword kilowatt 13-24-123-135-2456-1-2345-2345
531
+ sufword locoweed 123-135-14-135-2456-15-1246
532
+ sufword monowheel 134-135-1345-135-156-15-15-123
533
+ sufword noway 1345-135-2456-1-13456
534
+ sufword nowhere 1345-135-5-156
535
+ sufword nowise 1345-135-2456-24-234-15
536
+
537
+ # sh
538
+ always sh 146
539
+ match (%[^_~]%<*) sh (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?(%>*%[^_~]) =
540
+
541
+ match %a shead - 234-125-2-145
542
+ match %a sheim - =
543
+ match %a shole ([Ss]|(['’][Ss]))?%>*%[^_~] =
544
+ match %a shood - =
545
+ match %a shound - 234-125-46-145
546
+ match %a shous [EIei] 234-125-1256-234
547
+
548
+ sufword betshanger 12-15-2345-234-125-1-1345-1245-12456
549
+ sufword bosham =
550
+ sufword chisholm 16-24-234-125-135-123-134
551
+ match - cross [Hh] = crosshair, crosshatch, etc
552
+ sufword dachshund 145-1-16-234-125-136-1345-145
553
+ sufword deshabille 145-15-234-125-1-12-24-123-123-15
554
+ sufword frederikshavn 124-1235-1246-12456-24-13-234-125-1-1236-1345
555
+ sufword gemshorn =
556
+ sufword goshawk =
557
+ sufword grasshopper 1245-1235-1-234-234-125-135-1234-1234-12456
558
+ sufword grimsholm =
559
+ sufword hartshorn 125-345-2345-234-125-135-1235-1345
560
+ sufword keeshond =
561
+ sufword malesherb 134-1-123-15-234-125-12456-12
562
+ sufword mansholt =
563
+ sufword mishandle 134-24-234-125-12346-123-15
564
+ sufword mishandled 134-24-234-125-12346-123-1246
565
+ sufword mishandling 134-24-234-125-12346-123-346
566
+ sufword mishap 134-24-234-125-1-1234
567
+ sufword mishear 134-24-234-125-15-345
568
+ sufword mishit =
569
+ sufword newshawk =
570
+ sufword newshen 1345-15-2456-234-125-26
571
+ sufword ramshorn =
572
+ sufword rosmersholm 1235-135-234-134-12456-234-125-135-123-134
573
+ sufword townshend 2345-246-1345-234-125-26-145
574
+ match - transhum [Aa][Nn] =
575
+ sufword undishearten 136-1345-145-24-234-125-15-345-2345-26
576
+ sufword weisshorn =
577
+ sufword wilhelmshaven 2456-24-123-125-15-123-134-234-125-1-1236-26
578
+
579
+ # st
580
+ always st 34
581
+ match (%[^_~]%<*) st (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?(%>*%[^_~]) =
582
+
583
+ match %a stion - 234-56-1345
584
+ match %a stown - 234-2345-246-1345
585
+
586
+ sufword asthma 1-234-1456-134-1
587
+ sufword bundestag 12-136-1345-145-15-234-2345-1-1245
588
+ match - cross [Tt] = crosstie crosstrees etc
589
+ sufword destouche 145-15-234-2345-1256-16-15
590
+ sufword gastight 1245-1-234-2345-24-126-2345
591
+ sufword gordonstoun 1245-135-1235-145-135-1345-234-2345-1256-1345
592
+ sufword guesstimate 1245-136-15-234-234-2345-24-134-1-2345-15
593
+ sufword guesstimated 1245-136-15-234-234-2345-24-134-1-2345-1246
594
+ sufword guesstimating 1245-136-15-234-234-2345-24-134-1-2345-346
595
+ sufword hephaestion 125-15-1234-125-1-15-34-24-135-1345
596
+ sufword isthmi 24-234-1456-134-24
597
+ sufword isthmus 24-234-1456-134-136-234
598
+ sufword kreistag =
599
+ sufword liebestod =
600
+ sufword mistime 134-24-234-5-2345
601
+ sufword painstaking 1234-1-35-234-2345-1-13-346
602
+ sufword pastime 1234-1-234-5-2345
603
+ sufword reichstag 1235-15-24-16-234-2345-1-1245
604
+
605
+ # th
606
+ always th 1456
607
+ match (%[^_~]%<*) th (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?(%>*%[^_~]) =
608
+
609
+ match %a thand - 2345-125-12346
610
+ match %a thill - =
611
+ match %a thold - =
612
+ match %a thoo [DKdk] =
613
+ match %a thors [Ee] =
614
+ match %a thound - 2345-125-46-145
615
+ match %a thous [EIei] 2345-125-1256-234
616
+
617
+ sufword bolthole =
618
+ match - coat [Hh][Aa][Nn][Gg] =
619
+ match - coat [Hh][Oo][Ll][Ee] =
620
+ sufword crosthwait 14-1235-135-234-1456-2456-1-24-2345
621
+ sufword esthwait 15-234-1456-2456-1-24-2345
622
+ sufword flatholm =
623
+ sufword goatherd 1245-135-1-2345-125-12456-145
624
+ sufword gotthard 1245-135-2345-2345-125-345-145
625
+ sufword knothole 13-1345-135-2345-125-135-123-15
626
+ sufword lufthansa 123-136-124-2345-125-1-1345-234-1
627
+ sufword nighthawk 1345-24-126-2345-125-1-2456-13
628
+ sufword nuthatch 1345-136-2345-125-1-2345-16
629
+ sufword porthole 1234-135-1235-2345-125-135-123-15
630
+ sufword pothat =
631
+ sufword potherb 1234-135-2345-125-12456-12
632
+ match - pothol [Ee] =
633
+ sufword pothunt =
634
+ sufword rathole =
635
+ sufword richthofen 1235-24-16-2345-125-12356-26
636
+ sufword shorthorn 146-135-1235-2345-125-135-1235-1345
637
+ match - sight [Hh][Oo][Ll][Ee] 234-24-126-2345
638
+ match - vent [Hh][Oo][Ll][Ee] 1236-26-2345
639
+ sufword warthog 2456-345-2345-125-135-1245
640
+
641
+ # wh
642
+ always wh 156
643
+ match (%[^_~]%<*) wh (['’]([DSTdst]|ll|[rv]e|LL|[RV]E))?(%>*%[^_~]) =
644
+
645
+ match [AEae] whall - =
646
+ match %a whead - 2456-125-2-145
647
+ match [AEae] whol [Ee] = jawhole screwhole
648
+ match %a whood - =
649
+ match %a whors [Ee] =
650
+ match %a whound - 2456-125-46-145
651
+ match %a whous [EIei] 2456-125-1256-234
652
+
653
+ sufword clawhammer 14-123-1-2456-125-1-134-134-12456
654
+ sufword dewhurst 145-15-2456-125-136-1235-34
655
+ sufword newham =
656
+ match - newhar [Tt] 1345-15-2456-125-345
657
+ sufword newhaven 1345-15-2456-125-1-1236-26
658
+ sufword pewholder 1234-15-2456-125-135-123-145-12456
659
+ match - rawhid [EIei] =
660
+ sufword strawhat 34-1235-1-2456-125-1-2345
661
+
662
+ # 10.5 Lower Wordsigns
663
+ # - 10.5.1 be were his was
664
+ # - 10.5.2 enough
665
+ # - 10.5.3 in
666
+ # - 10.5.4 enough in
667
+
668
+ attribute 1 +=*,.;:?!"'“”‘’ punctuation with only lower dots (except hyphens)
669
+ #attribute lowerdotspunc +=*,.?!"'“”‘’
670
+
671
+ # be
672
+ match %[^_]|%[^_~]%<*[([{] be %[^_]|[)}\]]%>*%[^_~] 23
673
+
674
+ # enough
675
+ word enough's 26-3-234
676
+ word enough’s 26-3-234
677
+ match %[^_~]([\([{]*|[\([{]+%<*) enough (%>*[\)\]}]+|[\)\]}]*)%[^_~] 26
678
+ word -enough 36-26-1256-126 needed for a test file
679
+ word enough- 26-1256-126-36 needed for a test file
680
+ nofor lowword enough 26
681
+ always enough 26-1256-126
682
+
683
+ # his
684
+ match %[^_]|%[^_~]%<*[([{] his %[^_]|[)}\]]%>*%[^_~] 236
685
+ nofor lowword his 236
686
+
687
+ # in
688
+ match %[^_]!%[_1]* in !%[_1]*%[^_] 35
689
+ nofor always in 35
690
+
691
+ # was
692
+ match %[^_]|%[^_~]%<*[([{] was %[^_]|[)}\]]%>*%[^_~] 356
693
+ nofor lowword was 356
694
+
695
+ # were
696
+ match %[^_]|%[^_~]%<*[([{] were %[^_]|[)}\]]%>*%[^_~] 2356
697
+ nofor lowword were 2356
698
+
699
+
700
+ # 10.6 Lower Groupsigns
701
+ # - 10.6.1 be con dis
702
+ # - 10.6.2 be con dis
703
+ # - 10.6.3 be con dis
704
+ # - 10.6.4 be con dis
705
+ # - 10.6.5 ea bb cc ff gg
706
+ # - 10.6.6 ea bb cc ff gg
707
+ # - 10.6.7 ea
708
+ # - 10.6.8 en in
709
+ # - 10.6.9 en
710
+ # - 10.6.10
711
+
712
+ # bb 10.6.5 10.6.6
713
+ match %a bb %a 23
714
+
715
+ sufword dumbbell 145-136-134-12-12-15-123-123
716
+ sufword subbasement 234-136-12-12-1-234-15-56-2345
717
+ sufword subbing 234-136-12-12-346
718
+
719
+ # be 10.6.1 10.6.2 10.6.3 10.6.4
720
+ empmatchafter match %[^_~]%<* be [Aa][Pp][Rr][Oo][Nn] 23
721
+ word beata 23-1-2345-1
722
+ word beatae 23-1-2345-1-15
723
+ word beati 23-1-2345-24
724
+ empmatchafter match %[^_~]%<* be [Aa][Tt][Ii]![Nn] 23 beati*
725
+ empmatchafter match %[^_~]%<* be [Aa][Tt][Rr] 23 bea*
726
+ word beatus 23-1-2345-136-234
727
+ word beche 12-15-16-15
728
+ word beches 12-15-16-15-234
729
+ empmatchafter match %[^_~]%<* bech [DTdt] 12-15-16
730
+ empmatchafter match %[^_~]%<* beclome [Tt][Hh] = beclomethasone
731
+ empmatchafter match %[^_~]%<* beconas [AEIOUYaeiouy] =
732
+ empmatchafter match %[^_~]%<* be [Cc]([HLRhlr])?[AEIOUYaeiouy] 23 bec*
733
+ word bede 12-1246-15
734
+ word beden 12-1246-26
735
+ word bedes 12-1246-15-234
736
+ empmatchafter match %[^_~]%<* be [Dd][AIOUaiou] 23 bed*
737
+ empmatchafter match %[^_~]%<* bede [Gg]([Uu]?)[Aa][Rr] 12-1246-15
738
+ empmatchafter match %[^_~]%<* bede [Hh][Oo][Uu][Ss] 12-1246-15
739
+ empmatchafter match %[^_~]%<* bede ([Ss]?)(([Ww][Oo])?)[Mm]([Aa]|[Ee])[Nn] 12-1246-15
740
+ empmatchafter match %[^_~]%<* be [Dd][Ee] 23 bede*
741
+ empmatchafter match %[^_~]%<* bediver [Ee] 12-1246-24-1236-12456
742
+ empmatchafter match %[^_~]%<* bedou [Ii][Nn] 12-1246-1256
743
+ empmatchafter match %[^_~]%<* bed ([Ee]?)[Rr][AEae]([Ii]?)[Ll] 12-1246
744
+ empmatchafter match %[^_~]%<* be [Dd][Rr][Aa] 23 bedr*
745
+ empmatchafter match %[^_~]%<* be [Dd][Rr][Ee][Nn][Cc][Hh] 23
746
+ empmatchafter match %[^_~]%<* be [Dd][Rr][Ee][Ss][Ss] 23
747
+ empmatchafter match %[^_~]%<* bed [Rr][Ii][Dd] 12-1246
748
+ empmatchafter match %[^_~]%<* be [Dd][Rr][Ii] 23
749
+ empmatchafter match %[^_~]%<* be [Dd][Rr][Oo][Pp] 23
750
+ empmatchafter match %[^_~]%<* be [Dd][Rr][Oo][Ww] 23
751
+ empmatchafter match %[^_~]%<* be [Dd][Rr][Uu] 23
752
+ empmatchafter match %[^_~]%<* bedu [Ii][Nn] 12-1246-136
753
+ empmatchafter match %[^_~]%<* be [Dd][Ww][Aa][Rr][Ff] 23
754
+ empmatchafter match %[^_~]%<* be [Dd][Ww][Ee][Ll][LTlt] 23
755
+ empmatchafter match %[^_~]%<* be [Ee][Ll][Zz] 23 bee*
756
+ empmatchafter match %[^_~]%<* be [Ff]([LRlr])?[AEIOUYaeiouy] 23 bef*
757
+ sufword beghard 12-15-1245-125-345-145 H is sometimes aspirate
758
+ match %[^_~]%<* begler [Bb][Ee][GYgy] 12-15-1245-123-12456
759
+ empmatchafter match %[^_~]%<* be [Gg]![BDFGMPQSTVbdfgmpqstv] 23 beg*
760
+ empmatchafter match %[^_~]%<* beh [BCDFGHJKLMNPQRSTVWXZbcdfghjklmnpqrstvwxz] =
761
+ empmatchafter match %[^_~]%<* be [HYhy][AEIOUYaeiouy] 23 beh* or bey*
762
+ empmatchafter match %[^_~]%<* bein ['’] 23-24-1345
763
+ word bein 12-15-35
764
+ word beins 12-15-35-234
765
+ empmatchafter match %[^_~]%<* be [Ii][Nn] 23 bei*
766
+ sufword bekesy =
767
+ empmatchafter match %[^_~]%<* bek [HKRThkrt][AIai] =
768
+ sufword belafon = -te
769
+ sufword belamour 12-15-123-1-134-1256-1235
770
+ empmatchafter match %[^_~]%<* belemn ([AEIOUYaeiouy]*)[DTdt] = e.g. -nid, -nite, -noid
771
+ empmatchafter match %[^_~]%<* belom [Aa][Nn][Cc] =
772
+ empmatchafter match %[^_~]%<* belomy [Ss] =
773
+ empmatchafter match %[^_~]%<* belone ([Ss]|['’][Ss])?%>*%[_~^] =
774
+ empmatchafter match %[^_~]%<* belon [EOeo][Pp][Hh][Oo] =
775
+ empmatchafter match %[^_~]%<* belon ([AEIOUYaeiouy]*)[DTdt] = e.g. -nid, -nite, -noid
776
+ empmatchafter match %[^_~]%<* be [Ll][AEIOUWYaeiouwy] 23 bel*
777
+ sufword benadryl 12-26-1-145-1235-13456-123
778
+ word benammi 12-26-1-134-134-24 Normally written hyphenated
779
+ word benefic 23-1345-15-124-24-14 Different from below
780
+ empmatchafter match %[^_~]%<* be [Nn][Ee][Ff][Ii][Cc][Ee][Nn] 23 beneficen*
781
+ empmatchafter match %[^_~]%<* be [Nn][Ee][Tt](['’]s)?%>*%[_~^] 23 benet
782
+ empmatchafter match %[^_~]%<* beneven [Tt] 12-26-15-1236-26
783
+ empmatchafter match %[^_~]%<* be [Nn][Ee]![DFLTdflt] 23 bene*
784
+ empmatchafter match %[^_~]%<* ben [Ii][AENOSUaenosu] 12-26
785
+ sufword benomyl 12-26-135-134-13456-123
786
+ empmatchafter match %[^_~]%<* be [Nn][AIOUaiou] 23 ben*
787
+ sufword beresford 12-12456-15-234-123456-145
788
+ empmatchafter match %[^_~]%<* beresit [Ee] 12-12456-15-234-24-2345
789
+ sufword berewick 12-12456-15-2456-24-14-13
790
+ empmatchafter match %[^_~]%<* be [Rr][Hh][Yy][Mm] 23
791
+ empmatchafter match %[^_~]%<* beribb [Oo][Nn] 23-1235-24-23
792
+ empmatchafter match %[^_~]%<* berim [AEIOUYaeiouy] 23-1235-24-134
793
+ empmatchafter match %[^_~]%<* bering [Ee][Dd] 23-1235-346
794
+ empmatchafter match %[^_~]%<* bering [Ll][Ee][Tt] 23-1235-346
795
+ empmatchafter match %[^_~]%<* be [Rr][AOUaou] 23 bere*
796
+ empmatchafter match %[^_~]%<* be [Rr][Ee]![NTZntz] 23 ber*
797
+ word best 12-15-34
798
+ word bested 12-15-34-1246
799
+ word bester 12-15-34-12456
800
+ word bestest 12-15-34-15-34
801
+ empmatchafter match %[^_~]%<* best [Ii][AEae] 12-15-34
802
+ empmatchafter match %[^_~]%<* best [Ii][Cc][Uu] 12-15-34
803
+ word besting 12-15-34-346
804
+ word bestness 12-15-34-56-234
805
+ empmatchafter match %[^_~]%<* best [Ss] 12-15-34 bests and bestsell*
806
+ word besty 12-15-34-13456
807
+ #empmatchafter match %[^_~]%<* be [Ss]![Ss] 23 bes*
808
+ empmatchafter match %[^_~]%<* be [Ss]([CHKLMNPQTWchklmnpqtw])?([Rr])?[AEIOUYaeiouy] 23 bes*
809
+ empmatchafter match %[^_~]%<* betafi [Tt][AEIOUaeiou] =
810
+ word bete =
811
+ word betes =
812
+ sufword bethabar 23-1456-1-12-345
813
+ sufword bethank 23-1456-1-1345-13
814
+ sufword bethesda 23-2346-234-145-1
815
+ sufword bethroot 12-15-1456-1235-135-135-2345
816
+ sufword bethuel 12-15-1456-136-15-123
817
+ sufword bethune 12-15-1456-136-1345-15
818
+ empmatchafter match %[^_~]%<* bethylid [Aa][Ee] 23-1456-13456-123-24-145
819
+ empmatchafter match %[^_~]%<* be [Tt][Hh][IORUWioruw]%a 23
820
+ word betonies =
821
+ word betony =
822
+ match - betula [Cc] =
823
+ match - betul [Ii][Nn] =
824
+ #empmatchafter match %[^_~]%<* be [Tt]![CHJKSTZchjkstz'’] 23 bet*
825
+ empmatchafter match %[^_~]%<* be [Tt]([RWrw])?[AEIOUYaeiouy] 23 bet*
826
+ empmatchafter match %[^_~]%<* beun [Ii] 23-136-1345
827
+ empmatchafter match %[^_~]%<* be [Vv][Uu][Ee] 23
828
+ sufword bewick =
829
+ word bewit =
830
+ word bewits =
831
+ empmatchafter match %[^_~]%<* bew [BCDFGJKLMNPQSTVWXZbcdfgjklmnpqstvwxz] =
832
+ empmatchafter match %[^_~]%<* bex [BCDFGHJKLMNPQRSTVWXZbcdfghjklmnpqrstvwxz] =
833
+ empmatchafter match %[^_~]%<* bey [AOao][Nn]([Ss]?)[Tt] 23-13456
834
+ sufword beyer 12-15-13456-12456
835
+
836
+ empmatchafter match %[^_~]%<* be [BCEFGHIJKLMPQSTUVWXYZbcefghijklmpqstuvwxyz]([Ss]|['’][Ss])?%>*%[_~^] = 3 letter words
837
+ empmatchafter match %[^_~]%<* be [BFJKMPQVWXZbfjkmpqvwxz][BFJKMPQVWXZbfjkmpqvwxz] = "be" is not the first syllable
838
+ empmatchafter match %[^_~]%<* be [BJKMOPQWXZbjkmopqwxz] 23
839
+
840
+ nofor sufword be 23
841
+
842
+ # be[cfhlnsty] are handled in 10.9.5
843
+ word beg =
844
+
845
+ sufword bein' 23-24-1345-3
846
+ always betws 12-15-2345-2456-234
847
+
848
+ # easier if after "be" cause both are dots 23
849
+ # bb 10.6.5 10.6.6
850
+ empmatchbefore empmatchafter match %a bb %a 23
851
+
852
+ nofor midword bb 23
853
+
854
+ # cc 10.6.5 10.6.6
855
+ empmatchbefore empmatchafter match %a cc %a 25
856
+ always cch 14-16 CH always takes priority
857
+ match - cchildren ![AEIOUYaeiouy] 14-16-1345 edge case for test word
858
+ match - cchn ![AEIOUYaeiouy] 14-14-125-1345 edge case for test word
859
+
860
+ nofor midword cc 25
861
+
862
+ sufword arccosine 345-14-14-135-234-35-15
863
+
864
+ # con 10.6.1 10.6.2 10.6.3 10.6.4
865
+ empmatchafter match %[^_~]%<* con [Cc]![HVhv] 25
866
+ empmatchafter match %[^_~]%<* con [Ee][Ss][Tt] 25
867
+ empmatchafter match %[^_~]%<* con [Ss]%a 25 [Cc][Oo][Nn][Ss] "mod cons" 10.6.4
868
+ empmatchafter match %[^_~]%<* con [ABDFGHIJLMNOPQRTUVWXYZabdfghijlmnopqrtuvwxyz] 25
869
+
870
+ sufword conakry 14-135-1345-1-13-1235-13456
871
+ sufword conan 14-135-1345-1-1345
872
+ sufword conned 14-135-1345-1345-1246
873
+
874
+ nofor begword con 25
875
+
876
+ # dis 10.6.1 10.6.2 10.6.3 10.6.4
877
+
878
+ word dish 145-24-146
879
+ word disher 145-24-146-12456
880
+ word dishers 145-24-146-12456-234
881
+ match ^|!%a dishi ([Ee]([Rr]|([Ss][Tt]))) 145-24-146-24
882
+ word dishon 145-24-146-135-1345
883
+ word dishy 145-24-146-13456
884
+ empmatchafter match ^|!%a diss ^|!%a = word diss
885
+ empmatchafter match %[^_~]%<* dis [Cc]([HLRhlr]?)[AEIOUYaeiouy] 256
886
+ empmatchafter match %[^_~]%<* dis [Hh][Ee]![DSVdsv] 256
887
+ empmatchafter match %[^_~]%<* dis [Hh]![BCDEFGHIKLMNPRTWbcdefghiklmnprtw'’] 256
888
+
889
+ empmatchafter match !%[^_~a] dis [Hh][Ee]![DSVdsv] = # this is for other punctuation
890
+ empmatchafter match !%[^_~a] dis [Hh]![BCDEFGHIKLMNPRTWbcdefghiklmnprtw'’] = # this is for other punctuation
891
+
892
+ empmatchafter match %[^_~]%<* dis [Pp]![Ii] 256
893
+ empmatchafter match %[^_~]%<* dis [ABDEFGIJLMNOQRSTUVWXYZabdefgijlmnoqrstuvwxyz] 256
894
+
895
+ nofor begword dis 256
896
+
897
+ word disulphide 145-24-234-136-123-1234-125-24-145-15
898
+
899
+ # ea 10.6.5 10.6.6 10.6.7
900
+ empmatchbefore empmatchafter match %a ea %a 2
901
+
902
+ # cheap fix, still fails with ,ea,ea,
903
+ nofor always , 2
904
+ nofor midword ea 2
905
+
906
+ sufword areaway 345-2-2456-1-13456
907
+ always battleax =
908
+ match %[^_~]%<* de [Aa][Cc][CKQTckqt] =
909
+ match %[^_~]%<* deacetyl [AEIOUaeiou] =
910
+ match %[^_~]%<* de [Aa][Cc][Ii][Dd] = deacidify
911
+ match %[^_~]%<* de [Aa][Ee][Rr][Aa] = reaerate
912
+ match %[^_~]%<* de [Aa][Ff][Ff] = deafforest
913
+ sufword deair =
914
+ match %[^_~]%<* deal [Aa][Tt][EIei] =
915
+ match %[^_~]%<* dealb [Aa][Tt][EIei] =
916
+ sufword dealbumin 145-15-1-123-12-136-134-35
917
+ sufword dealcohol =
918
+ match %[^_~]%<* dealk [AYay][Ll] =
919
+ begword deall = deallocate
920
+ match %[^_~]%<* deambul [Aa][Tt][AEIOUaeiou] =
921
+ match %[^_~]%<* deam [Ii][DNdn][AIai][STZstz][AEIaei] = deamidase, deaminization
922
+ match %[^_~]%<* deanathemati [SZsz][AEIaei] 145-15-1-1345-1-2346-134-1-2345-24
923
+ match %[^_~]%<* deanimal [Ii][SZsz][AEIaei] =
924
+ sufword deanthropo 145-15-1-1345-1456-1235-135-1234-135
925
+ begword deapp = deappetise
926
+ sufword deash 145-15-1-146 deash
927
+ begword deasp = deaspirate
928
+ begword deass = deassign
929
+ match %[^_~]%<* deau [Rr] = deauriculate
930
+ match %[^_~]%<* deau [Tt][Hh] = deauthorise
931
+ midendword eance 15-46-15 vengeance
932
+ midendword eand 15-12346 meander
933
+ always ear 15-345
934
+ midendword eaway 15-1-2456-1-13456
935
+ sufword flearidden 124-123-2-1235-24-145-145-26
936
+ sufword geanticline 1245-15-1-1345-2345-24-14-123-35-15
937
+ match - house [Aa][Gg][Ee][Nn][CTct] 125-1256-234-15
938
+ sufword learig 123-2-1235-24-1245
939
+ sufword limeade =
940
+ sufword orangeade =
941
+ always pineapple 1234-35-15-1-1234-1234-123-15
942
+ always poleax =
943
+ sufword preachiev 1234-1235-15-1-16-24-15-1236
944
+ sufword preach 1234-1235-2-16
945
+ sufword preakness 1234-1235-2-13-56-234
946
+ match %[^_~]%<* pre [Aa] = default case for prea- words
947
+ match %[^_~]%<* re [Aa][Bb] = reabsorb
948
+ match %[^_~]%<* re [Aa][Cc][CKQckq] = reaccustom, reacknowledge
949
+ match %[^_~]%<* reacetyl [AEIOUaeiou] =
950
+ sufword reachiev 1235-15-1-16-24-15-1236
951
+ match %[^_~]%<* re [Aa][Cc][Ii][Dd] = reacidify
952
+ match - re [Aa][Cc][Tt] = react and all derivatives
953
+ begword readap = readapt
954
+ sufword readd = readd readdress
955
+ match %[^_~]%<* read [Hh][Ee][RSrs] = readhere and derivatives
956
+ begword readj = readjust
957
+ word readme 1235-2-145-134-15
958
+ word readmes 1235-2-145-134-15-234
959
+ begword readm = readmit
960
+ sufword readonly 1235-2-145-135-1345-123-13456
961
+ sufword readout 1235-2-145-1256-2345
962
+ match %[^_~]%<* re [Aa][Dd][Oo] = readopt readorn
963
+ begword readv = readvance readvise
964
+ match %[^_~]%<* re [Aa][Ee][Rr][Aa] = reaerate
965
+ match %[^_~]%<* re [Aa][Ff][Ff] = reaffirm reafforest
966
+ sufword reagan 1235-2-1245-1-1345
967
+ match %[^_~]%<* reag [Ee][Nn][CTct] = reagency reagent
968
+ match %[^_~]%<* re [Aa][Gg][Gg] = reaggregate
969
+ sufword reagit = reagitate
970
+ sufword reagr = reagree
971
+ match %[^_~]%<* re [Aa][Ll][Aa][Rr][Mm] = realarm
972
+ match %[^_~]%<* re [Aa][Ll][Ee][Rr][Tt] = realert
973
+ match %[^_~]%<* re [Aa][Ll][Ii][Ee][Nn] = realienate
974
+ begword realig = realign
975
+ match %[^_~]%<* reall [AEIOUaeiou] = reallege reallocate but not really
976
+ sufword realter 1235-15-1-123-2345-12456
977
+ begword reamalg = reamalgamate
978
+ sufword reamass = reamassment
979
+ match %[^_~]%<* ream [BPbp] = reambitious reamputate
980
+ sufword reamend 1235-15-1-134-26-145
981
+ match %[^_~]%<* reamu [Ss]%a = reamuse
982
+ begword rean = reanalyze, reanimate
983
+ begword reapolog = reapologize
984
+ begword reapp = reappear
985
+ match %[^_~]%<* re [Aa][Ss][CKPSTckpst] = reascend reask reaspire reassure reastonish
986
+ sufword reasty 1235-2-34-13456
987
+ begword reatt = reattach reattain
988
+ match %[^_~]%<* reau [Dd] = reaudition
989
+ match ^|!%a reau [Tt][Hh] = reauthorise
990
+ word reave 1235-2-1236-15
991
+ word reaved 1235-2-1236-1246
992
+ word reaves 1235-2-1236-15-234
993
+ word reaving 1235-2-1236-346
994
+ begword reav = reavail reaver reavoid
995
+ begword reaw = reawaken
996
+ sufword seaway 234-2-2456-1-13456
997
+ sufword tearoom 2345-2-1235-135-135-134
998
+ begword unreass = unreassuring
999
+ always wideawak =
1000
+ always wiseacr =
1001
+
1002
+ #TODO: check pronunciation
1003
+ sufword gilead 1245-24-123-15-1-145
1004
+ sufword deandre 145-2-1345-145-1235-15
1005
+ sufword deanna 145-15-1-1345-1345-1
1006
+ sufword boreas 12-135-1235-15-1-234
1007
+ sufword roseann 1235-135-234-15-1-1345-1345
1008
+ sufword leah 123-15-1-125
1009
+ word leann 123-15-1-1345-1345 leanness
1010
+ sufword leanna 123-15-1-1345-1345-1
1011
+ word leanne 123-15-1-1345-1345-15 leanness
1012
+
1013
+ # en 10.6.8 10.6.9
1014
+ match %[^_~]%<* en %>*%[_~^] = must be first
1015
+ match !%[_1]%1* en - 26
1016
+ match - en %1*!%[_1] 26
1017
+
1018
+ nofor always en 26
1019
+
1020
+ match %a eness - 15-56-234b closeness
1021
+ sufword bluenose 12-123-136-15-1345-135-234-15
1022
+ sufword bottleneck 12-135-2345-2345-123-15-1345-15-14-13
1023
+ sufword forenoon 123456-15-1345-135-135-1345
1024
+ sufword toenail 2345-135-15-1345-1-24-123
1025
+ sufword turtleneck 2345-136-1235-2345-123-15-1345-15-14-13
1026
+
1027
+ # ff 10.6.5 10.6.6
1028
+ empmatchbefore empmatchafter match %a ff %a 235
1029
+ always ffor 124-123456 FOR always has priority
1030
+
1031
+ nofor midword ff 235
1032
+
1033
+ sufword chifforobe 16-24-235-135-1235-135-12-15
1034
+
1035
+ # gg 10.6.5 10.6.6
1036
+ empmatchbefore empmatchafter match %a gg %a 2356
1037
+
1038
+ nofor midword gg 2356
1039
+
1040
+ # in 10.6.8
1041
+ match !%[_1]%1* in - 35
1042
+ match - in %1*!%[_1] 35
1043
+ midendword iness 24-56-234
1044
+ sufword multinational 134-136-123-2345-35-1-56-1345-1-123
1045
+
1046
+
1047
+ # 10.7 Initial-Letter Contractions
1048
+
1049
+ # cannot
1050
+ always cannot 456-14
1051
+
1052
+ # character
1053
+ always character 5-16
1054
+
1055
+ # day
1056
+ always day 5-145
1057
+
1058
+ sufword dayan 145-1-13456-1-1345
1059
+ sufword whaddaya 156-1-145-145-1-13456-1
1060
+
1061
+ # ever 10.7.4
1062
+ always ever 5-15
1063
+
1064
+ always eever 15-15-1236-12456
1065
+ always iever 24-15-1236-12456
1066
+
1067
+ match - antever [STst] 1-1345-2345-15-1236-12456
1068
+ sufword bellevernon 12-15-123-123-15-1236-12456-1345-135-1345 old spelling of "Belle Vernon"
1069
+ match - boulevers [EIei] 12-1256-123-15-1236-12456-234
1070
+ match - deverb [Aa][LTlt] 145-15-1236-12456-12
1071
+ sufword echeveria 15-16-15-1236-12456-24-1
1072
+ sufword evernia 15-1236-12456-1345-24-1
1073
+ match %[^_~]%<* evers [EIei] 15-1236-12456-234
1074
+ always eversion 15-1236-12456-46-1345
1075
+ sufword evert 15-1236-12456-2345
1076
+ sufword everton 5-15-2345-135-1345
1077
+ always evertebra 15-1236-12456-2345-15-12-1235-1
1078
+ always evertib 15-1236-12456-2345-24-12
1079
+ sufword grevera 1245-1235-15-1236-12456-1
1080
+ sufword guenevere 1245-136-26-15-1236-12456-15 variant spelling
1081
+ sufword guinevere 1245-136-35-15-1236-12456-15
1082
+ sufword monteverdi 134-135-1345-2345-15-1236-12456-145-24
1083
+ word nevers 1345-15-1236-12456-234 place name
1084
+ sufword preverb 1234-1235-15-1236-12456-12
1085
+ sufword preverna 1234-1235-15-1236-12456-1345-1
1086
+ match - primever [IOio] 1234-1235-24-134-15-1236-12456
1087
+ sufword quinqueverb 12345-136-35-12345-136-15-1236-12456-12
1088
+ sufword semievergreen 234-15-134-24-5-15-1245-1235-15-26
1089
+ match %[^_~]%<* unevers [EIei] 136-1345-15-1236-12456-234
1090
+ sufword unevert 136-1345-15-1236-12456-2345
1091
+ sufword viceversa 1236-24-14-15-1236-12456-234-1 normally two words
1092
+
1093
+ # reverend,revery <> reverse,revert,reverb,irreversible
1094
+
1095
+ always reverb 1235-15-1236-12456-12
1096
+ match - reverd [Ii] 1235-15-1236-12456-145
1097
+ match - reverdur [Ee] 1235-15-1236-12456-145-136-1235
1098
+ always reversab 1235-15-1236-12456-234-1-12 bad spelling but ...
1099
+ always reversib 1235-15-1236-12456-234-24-12
1100
+ always reversif 1235-15-1236-12456-234-24-124
1101
+
1102
+ match ([Nn][Oo][Nn])|([Uu][Nn]) reversal - 1235-15-1236-12456-234-1-123
1103
+ match ([Nn][Oo][Nn])|([Uu][Nn]) revers [Ee] 1235-15-1236-12456-234
1104
+ match ([Nn][Oo][Nn])|([Uu][Nn]) reversing - 1235-15-1236-12456-234-346
1105
+ match ([Nn][Oo][Nn])|([Uu][Nn]) revert - 1235-15-1236-12456-2345
1106
+
1107
+ sufword prereversal 1234-1235-12456-15-1236-12456-234-1-123
1108
+ sufword prereverse 1234-1235-12456-15-1236-12456-234-15
1109
+ sufword prereversed 1234-1235-12456-15-1236-12456-234-1246
1110
+ sufword prereversing 1234-1235-12456-15-1236-12456-234-346
1111
+
1112
+ match %[^_~]%<* revers [IOio](^|!%a) 1235-15-1236-12456-234
1113
+ match %[^_~]%<* rever [Ee] 1235-15-1236-12456
1114
+ match - reverif [IYiy] 1235-15-1236-12456-24-124
1115
+ sufword revering 1235-15-1236-12456-346
1116
+
1117
+ sufword reversal 1235-15-1236-12456-234-1-123
1118
+ match %[^_~]%<* revers [Ee] 1235-15-1236-12456-234
1119
+ sufword reversing 1235-15-1236-12456-234-346
1120
+ sufword reversive 1235-15-1236-12456-234-24-1236-15
1121
+
1122
+ sufword reverence 1235-5-15-56-15
1123
+ sufword reverencing 1235-5-15-26-14-346
1124
+ sufword reverend 1235-5-15-26-145
1125
+ sufword reverent 1235-5-15-26-2345
1126
+
1127
+ sufword revertend 1235-5-15-2345-26-145 revertendi
1128
+ sufword revert 1235-15-1236-12456-2345
1129
+ sufword unrevered 136-1345-1235-15-1236-12456-1246
1130
+
1131
+ # sever <> severe
1132
+
1133
+ match - persevera [Tt][EIei] 1234-12456-234-5-15-1
1134
+ match - persever [AEIaei] 1234-12456-234-15-1236-12456
1135
+
1136
+ match - sever [Ee](^|![Dd]) 234-15-1236-12456
1137
+ sufword severish 234-15-1236-12456-24-146
1138
+ match - sever [Ii][Tt][IYiy] 234-15-1236-12456
1139
+ sufword severus 234-15-1236-12456-136-234
1140
+
1141
+ always severed 234-5-15-1246
1142
+
1143
+ # father
1144
+ always father 5-124
1145
+
1146
+ # had 10.7.3
1147
+ always had 456-125
1148
+ always phad 1234-125-1-145
1149
+
1150
+ #TODO: check word jehad =
1151
+ #TODO: check word jihad =
1152
+ sufword hades 125-1-145-15-234
1153
+ sufword hadrian 125-1-145-1235-24-1-1345
1154
+ sufword menhaden 134-26-125-1-145-26
1155
+
1156
+ # here 10.7.5
1157
+ always here 5-125
1158
+ always hered 125-12456-1246 preference to single cell signs
1159
+ match - here [Ee][Nn] 125-12456-15
1160
+ always herence 125-12456-56-15
1161
+ always herencies 125-12456-26-14-24-15-234
1162
+ always herency 125-12456-26-14-13456
1163
+ always herend 125-12456-26-145
1164
+ always herent 125-12456-26-2345
1165
+ always herer 125-12456-12456
1166
+ match - heresc [Ee][Nn][CTct] 125-12456-15-234-14
1167
+ match - here [Ss][Ee][Ss] 125-12456-15
1168
+ match - here [Ss][IiYy] 125-12456-15
1169
+ match - here [Tt][Ii][Cc] 125-12456-15
1170
+
1171
+ sufword heredofamil 125-12456-1246-135-124-1-134-24-123
1172
+ sufword hereford 125-12456-15-123456-145
1173
+ sufword hereld 125-12456-15-123-145
1174
+ sufword herenach 125-12456-26-1-16
1175
+ match - hereto [CGcg][AHah] 125-12456-15-2345-135
1176
+ match - heretri [CXcx] 125-12456-15-2345-1235-24
1177
+ sufword hereward 125-12456-15-2456-345-145
1178
+ sufword herez 125-12456-15-1356
1179
+ match - phereclu [Ss] 1234-125-12456-15-14-123-136
1180
+ match - pherecra [Tt][EIei] 1234-125-12456-15-14-1235-1
1181
+ match - pheremi [Aa] 1234-125-12456-15-134-24
1182
+ word pheres 1234-125-12456-15-234
1183
+ match - phere [Ss][Ss] 1234-125-12456-15
1184
+
1185
+ # know
1186
+ always know 5-13
1187
+
1188
+ sufword lucknow 123-136-14-13-1345-246
1189
+
1190
+ # lord
1191
+ always lord 5-123
1192
+
1193
+ sufword bachelordom 12-1-16-15-123-135-1235-145-135-134
1194
+ sufword chlordan 16-123-135-1235-145-1-1345
1195
+ sufword chlordiazep 16-123-135-1235-145-24-1-1356-15-1234
1196
+ sufword tailordom =
1197
+
1198
+ # many
1199
+ always many 456-134
1200
+
1201
+ # mother
1202
+ always mother 5-134
1203
+
1204
+ match %a motherap [EIYeiy] 134-135-2346-1235-1-1234
1205
+ match %a mothere ^|!%a 134-135-2346-1235-15
1206
+ match %a motherium - 134-135-2346-1235-24-136-134
1207
+ match %a motherm - 134-135-2346-1235-134
1208
+
1209
+ # name 10.7.5
1210
+ always name 5-1345
1211
+ always nament 1345-1-56-2345 in nament, MENT has priority
1212
+
1213
+ match - ename ([DSds]|(['’][Ss]))?%>*%[^_~] 15-5-1345 filename tradename
1214
+ endword namese =
1215
+ endword namesian =
1216
+ match - name [Ee] =
1217
+ match - name [Tt][Ee][Rr] 1345-1-134-15
1218
+ match - name [Tt][Rr][AEIOUYaeiouy] 1345-1-134-15
1219
+
1220
+ sufword anamelech 1-1345-1-134-15-123-15-16
1221
+ sufword anamelek =
1222
+ match - anamesit [AEIOUaeiou] =
1223
+ sufword anametadrom =
1224
+ match - cinnam [Ee]%a 14-35-1345-1-134
1225
+ sufword coname 14-135-5-1345
1226
+ match - coronam [Ee][Nn] =
1227
+ match ^|!%a nonam [Ee]%a 1345-135-1345-1-134 nonamenable nonamendable
1228
+ match ^|!%a unam [Ee]%a 136-1345-1-134 unameliorated unamendable unamerce
1229
+
1230
+ # one 10.7.6
1231
+ always one 5-135
1232
+
1233
+ match %a onea ^|!%a =
1234
+ match %a onea [ELNSUelnsu](^|!%a) 135-1345-2
1235
+ match %a onea [DTdt][AEIOUaeiou] 135-1345-2
1236
+ match - onec [KTkt] =
1237
+ match - onecro [STst][EIei] =
1238
+ match %a oned - 135-1345-1246
1239
+ match %a one [Ee] 135-1345-15
1240
+ match - onega ^|!%a =
1241
+ match - onega [LNTlnt] =
1242
+ match %a onei ^|!%a =
1243
+ match %a one [Ii][Ss][MTmt] =
1244
+ match %a one [Ii][Tt][IYiy] =
1245
+ match %a onel [AIOUaiou]?[Ss]?(^|!%a) =
1246
+ match %a onell ^|!%a =
1247
+ match - onell [AEIOUYaeiouy] 135-1345-15-123-123
1248
+ match %a onema [ESes]?(^|!%a) =
1249
+ match %a onemal ^|!%a =
1250
+ match %a onemat [AIOUaioU] =
1251
+ match %a oneme [Ss]?(^|!%a) =
1252
+ match %a onemer [Tt][EIei] 135-1345-15-134-12456
1253
+ match %a onemi [ACac] =
1254
+ match %a onen [Ss]?(^|!%a) 135-1345-26
1255
+ match %a onence - 135-1345-56-15
1256
+ match %a onen [CDTcdt] 135-1345-26
1257
+ match %a onene [Ss]?(^|!%a) 135-1345-26-15
1258
+ match %a one [Oo] =
1259
+ match %a oneph - 135-1345-15-1234-125
1260
+ match %a oner - 135-1345-12456
1261
+ match %a onese - 135-1345-15-234-15
1262
+ match %a onesia - 135-1345-15-234-24-1
1263
+ match %a onesis ^|!%a =
1264
+ match %a onesqu [Ee] =
1265
+ match %a oness - 135-56-234
1266
+ match %a onest - 135-1345-15-34
1267
+ match %a onet ^|!%a =
1268
+ match %a oneta ^|!%a =
1269
+ match %a oneti [ACSZacsz] =
1270
+ match %a onet [STZstz] =
1271
+ match %a oneu [MRSTmrst] 135-1345-15-136
1272
+ match %a one [FVXZfvxz][Ss]?(^|!%a) =
1273
+ match %a onex [Ii] =
1274
+
1275
+ match - oon [Ee] =
1276
+
1277
+ sufword abalone 1-12-1-123-135-1345-15
1278
+ sufword alcyone 1-123-14-13456-135-1345-15
1279
+ sufword anemone 1-1345-15-134-135-1345-15
1280
+ sufword antigone 1-1345-2345-24-1245-135-1345-15
1281
+ sufword antonescu =
1282
+ sufword argemone 345-1245-15-134-135-1345-15
1283
+ sufword baronet 12-345-135-1345-15-2345
1284
+ sufword bayonet 12-1-13456-135-1345-15-2345
1285
+ sufword bonedog 12-5-135-145-135-1245
1286
+ sufword bonedry 12-5-135-145-1235-13456
1287
+ sufword bonesteel 12-5-135-34-15-15-123
1288
+ sufword canzone =
1289
+ sufword cassone =
1290
+ sufword castiglione 14-1-34-24-1245-123-24-135-1345-15
1291
+ sufword chitarrone 16-24-2345-345-1235-135-1345-15
1292
+ sufword cicerone 14-24-14-12456-135-1345-15
1293
+ sufword cleone =
1294
+ sufword clione =
1295
+ sufword colonel 14-135-123-135-1345-15-123
1296
+ sufword comedones 14-135-134-1246-135-1345-15-234
1297
+ sufword coneigh 14-135-1345-15-24-126 -bor/bour
1298
+ sufword conversazione 25-1236-12456-234-1-1356-24-135-1345-15
1299
+ always coronet =
1300
+ sufword daimon = plural is -es pron. -eez
1301
+ sufword deone =
1302
+ sufword dione =
1303
+ sufword doblon = plural is -es pron. -eez
1304
+ sufword donelson =
1305
+ match - donev [AEae][Nn] =
1306
+ word epulones =
1307
+ word erigone 12456-24-1245-135-1345-15
1308
+ word falcones =
1309
+ word gaberones 1245-1-12-12456-135-1345-15-234
1310
+ sufword gaborone =
1311
+ word gekkones =
1312
+ sufword giorgione 1245-24-135-1235-1245-24-135-1345-15
1313
+ sufword halcyone =
1314
+ sufword hermione 125-12456-134-24-135-1345-15
1315
+ sufword honegger 125-135-1345-15-2356-12456
1316
+ always honest 125-5-135-34
1317
+ sufword ionesco 24-135-1345-15-234-14-135
1318
+ sufword jasione =
1319
+ sufword joneses 245-5-135-234-15-234
1320
+ sufword jonesian 245-5-135-234-24-1-1345
1321
+ sufword jonestown 245-5-135-234-2345-246-1345
1322
+ match ^|!%a kanon [Ee] =
1323
+ sufword krone 13-1235-135-1345-15
1324
+ sufword kronen 13-1235-135-1345-26
1325
+ sufword kroner 13-1235-135-1345-12456
1326
+ sufword laestrygones 123-1-15-34-1235-13456-1245-135-1345-15-234
1327
+ sufword lazzarone 123-1-1356-1356-345-135-1345-15
1328
+ sufword lugones =
1329
+ sufword madrone =
1330
+ sufword mantellone =
1331
+ sufword mbabone =
1332
+ sufword merioneth 134-12456-24-135-1345-15-1456
1333
+ sufword minestrone 134-35-15-34-1235-135-1345-15
1334
+ sufword moliones =
1335
+ match - moneci [AOao] =
1336
+ sufword monegasqu =
1337
+ sufword monembry =
1338
+ sufword monepi =
1339
+ sufword monet 134-135-1345-15-2345
1340
+ word moneth 134-135-1345-15-1456
1341
+ match - monetari [LSls] 134-5-135-2345-345-24 -ily -ism -ist
1342
+ always monetary 134-5-135-2345-345-13456
1343
+ match - moneti [SZsz][AEIaei] 134-5-135-2345-24 monetization
1344
+ sufword montefiascone =
1345
+ sufword morone =
1346
+ sufword myrmidones =
1347
+ word none 1345-5-135
1348
+ word nones 1345-5-135-234
1349
+ #word nonesuch ## handled under shortforms app. 1
1350
+ sufword nonesuches 1345-5-135-234-136-16-15-234
1351
+ sufword nonetheless 1345-5-135-2346-46-234
1352
+ match %[^_~]%<* non [Ee]%a 1345-135-1345
1353
+ sufword oenone 135-26-135-1345-15
1354
+ sufword oneal 135-1345-2-123
1355
+ sufword oneco =
1356
+ match ^|!%a oneg [AEIOUaeiou] = Onega Onegin Onegite Onego
1357
+ sufword oneida 135-1345-15-24-145-1
1358
+ sufword oneil =
1359
+ match ^|!%a oneir [IOio] =
1360
+ sufword onekam =
1361
+ sufword oneont =
1362
+ match ^|!%a oner [AEIOUYaeiouy] 135-1345-12456
1363
+ sufword onesimus =
1364
+ sufword onesiphorus =
1365
+ sufword opilione =
1366
+ sufword padrone =
1367
+ sufword panettone =
1368
+ sufword papiliones =
1369
+ word pensione 1234-26-234-24-135-1345-15
1370
+ word pensiones 1234-26-234-24-135-1345-15-234
1371
+ word peones =
1372
+ sufword persephone 1234-12456-234-15-1234-125-135-1345-15
1373
+ match - phones [Tt][Hh][Ee][Mm] =
1374
+ sufword pronegotia = pronegotiation
1375
+ sufword sawboneses 234-1-2456-12-5-135-234-15-234
1376
+ sufword schiavone 234-16-24-1-1236-135-1345-15
1377
+ word scorpiones =
1378
+ match ^|!%a shoshon [EIei] 146-135-146-135-1345
1379
+ sufword sirione =
1380
+ sufword soffione 234-12356-124-24-135-1345-15
1381
+ sufword spumone 234-1234-136-134-135-1345-15
1382
+ match - stonegat [Ee] 34-5-135-1245-1-2345
1383
+ sufword stonestreet 34-5-135-34-1235-15-15-2345
1384
+ word struthiones 34-1235-136-1456-24-135-1345-15-234
1385
+ word sturiones 34-136-1235-24-135-1345-15-234
1386
+ word suiones =
1387
+ match - sulfon [Ee][Tt][Hh][AEIOUYaeiouy] =
1388
+ match - sulphon [Ee][Tt][Hh][AEIOUYaeiouy] =
1389
+ word sycones =
1390
+ sufword tarsonemid 2345-345-234-135-1345-15-134-24-145
1391
+ sufword tonelada =
1392
+ sufword torrone =
1393
+ sufword zabaglione =
1394
+ match - zonesthe [STst] 1356-135-1345-15-234-2346
1395
+
1396
+ # ought
1397
+ always ought 5-1256
1398
+
1399
+ match %a ought [Aa][Ii][Ll] 1256-126-2345 ploughtail
1400
+
1401
+ # part
1402
+ always part 5-1234
1403
+
1404
+ always parthe 1234-345-2346
1405
+ always parth 1234-345-1456
1406
+ always apartheid 1-5-1234-125-15-24-145
1407
+
1408
+ # question
1409
+ always question 5-12345
1410
+
1411
+ # right
1412
+ always right 5-1235
1413
+
1414
+ # some 10.7.7
1415
+ always some 5-234
1416
+
1417
+ match - somer %a 234-135-134-12456
1418
+ match - some [Tt][Ee][Rr] 234-135-134-15
1419
+ match - some [Tt][Rr][AaEeIiOoUuYy] 234-135-134-15
1420
+ always somever 234-135-134-5-15
1421
+
1422
+ sufword besomer 23-234-135-134-12456
1423
+ sufword blossomed 12-123-135-234-234-135-134-1246
1424
+ match - isom [Ee][DRdr] =
1425
+ match - osom [Ee][DRdr] =
1426
+ match - ransom [Ee][DNRdnr] =
1427
+
1428
+ # spirit
1429
+ always spirit 456-234
1430
+
1431
+ # their
1432
+ always their 456-2346
1433
+
1434
+ # there 10.7.2
1435
+ match ^|!%a therea [BFGbfg]([Ss]|['’][Ss])?%>*%[_~^] 2346-1235-2 not thereabout, -after etc
1436
+ match ^|!%a there [Mm] 2346-1235-15 theremin
1437
+ match ^|!%a there [Ss][AEIOSUYaeiosuy] 2346-1235-15 Theresa, Therese etc
1438
+ match ^|!%a therevi [Dd] 2346-1235-15-1236-24 Therevidae
1439
+ match ^|!%a there [Zz][Ii][Nn] 2346-1235-15 Therezina etc
1440
+ match ^|!%a there - 5-2346 a little more general than sufword
1441
+ nofor always there 5-2346
1442
+
1443
+ # these 10.7.2
1444
+ always these 45-2346
1445
+
1446
+ sufword antitheses 1-1345-2345-24-2346-234-15-234
1447
+ sufword hypotheses 125-13456-1234-135-2346-234-15-234
1448
+ sufword parentheses 1234-345-26-2346-234-15-234
1449
+ sufword syntheses 234-13456-1345-2346-234-15-234
1450
+ sufword theses 2346-234-15-234
1451
+ sufword theseus 2346-234-15-136-234
1452
+
1453
+ # those 10.7.2
1454
+ nofor always those 45-1456
1455
+ match ^|!%a those ^|!%a 45-1456 In practice, only the word "those" uses the sign
1456
+
1457
+ # through
1458
+ always through 5-1456
1459
+
1460
+ # time 10.7.8
1461
+ always time 5-2345
1462
+ always timent 2345-24-56-2345 in timent, MENT has priority
1463
+ always timeter 2345-24-134-15-2345-12456
1464
+ always timetric =
1465
+ always timetry =
1466
+
1467
+ match ^|!%a anti [Mm][Ee] = antimechanical antimerger
1468
+ sufword centime 14-26-2345-24-134-15
1469
+ sufword latimer 123-1-2345-24-134-12456
1470
+ sufword lattimer 123-1-2345-2345-24-134-12456
1471
+ sufword mortimer 134-135-1235-2345-24-134-12456
1472
+ match ^|!%a multi [Mm][Ee] = multimedia multimember
1473
+ sufword optime =
1474
+
1475
+ # under 10.7.9
1476
+ match - aund [Ee][Rr] 1-136-1345-145
1477
+ # no need to catch ounder, because of OUND rule
1478
+
1479
+ match - underi [DVdv][AEIaei] 136-1345-145-12456-24 underivative -derided- derived
1480
+ sufword underogatory 136-1345-145-12456-135-1245-1-2345-135-1235-13456
1481
+
1482
+ always under 5-136
1483
+
1484
+ # upon 10.7.2
1485
+ always upon 45-136
1486
+
1487
+ sufword dupont 145-136-1234-135-1345-2345
1488
+
1489
+ # where
1490
+ always where 5-156
1491
+
1492
+ sufword where'er 156-12456-15-3-12456
1493
+ sufword where’er 156-12456-15-3-12456
1494
+ sufword whereupon 5-156-45-136
1495
+ sufword wherever 156-12456-5-15
1496
+
1497
+ #nofor begword where 5-156
1498
+
1499
+ # whose 10.7.2
1500
+ always whose 45-156
1501
+
1502
+ # word
1503
+ always word 45-2456
1504
+
1505
+ # work
1506
+ always work 5-2456
1507
+
1508
+ sufword dworkin 145-2456-135-1235-13-35
1509
+
1510
+ # world
1511
+ always world 456-2456
1512
+
1513
+ # young
1514
+ always young 5-13456
1515
+
1516
+
1517
+ # 10.8 Final-Letter Groupsigns
1518
+
1519
+ # ance (1-1345-14-15 -> 46-15)
1520
+ nofor midendword ance 46-15
1521
+
1522
+ match %a ance - 46-15b
1523
+
1524
+ noback pass2 [@6-46-15b] @6-1-1345-14-15
1525
+ noback pass2 [@6-3-46-15b] @6-3-1-1345-14-15
1526
+ noback pass2 [@46-15b] @46-15
1527
+
1528
+ sufword fiance 124-24-1-1345-14-15 should be fiancé
1529
+
1530
+ # ence (15-1345-14-15 -> 56-15)
1531
+ nofor midendword ence 56-15
1532
+
1533
+ match %a ence - 56-15b
1534
+
1535
+ noback pass2 [@6-56-15b] @6-26-14-15 # (en)ce
1536
+ noback pass2 [@6-3-56-15b] @6-3-26-14-15 # (en)ce
1537
+ noback pass2 [@56-15b] @56-15
1538
+
1539
+ #midendword oence 135-26-14-15 electroencephalogram
1540
+ always encephal 26-14-15-1234-125-1-123
1541
+
1542
+ # ful (124-136-123 -> 56-123)
1543
+ nofor midendword ful 56-123
1544
+
1545
+ match %a ful - 56-123b
1546
+
1547
+ noback pass2 [@6-56-123b] @6-124-136-123
1548
+ noback pass2 [@6-3-56-123b] @6-3-124-136-123
1549
+ noback pass2 [@56-123b] @56-123
1550
+
1551
+ sufword overfull 135-1236-12456-124-136-123-123 #TODO: check
1552
+
1553
+ # ity (24-2345-13456 -> 56-13456) 10.8.3
1554
+ nofor midendword ity 56-13456
1555
+
1556
+ match %a ity - 56-13456b
1557
+
1558
+ noback pass2 [@6-56-13456b] @6-24-2345-13456
1559
+ noback pass2 [@6-3-56-13456b] @6-3-24-2345-13456
1560
+ noback pass2 [@56-13456b] @56-13456
1561
+
1562
+ word biscuity 12-24-234-14-136-24-2345-13456
1563
+ word dacoity 145-1-14-135-24-2345-13456
1564
+ word fruity 124-1235-136-24-2345-13456
1565
+ word hoity-toity 125-135-24-2345-13456-36-2345-135-24-2345-13456
1566
+ word rabbity 1235-1-23-24-2345-13456
1567
+ word pityard 1234-24-2345-13456-345-145
1568
+
1569
+ sufword antitype 1-1345-2345-24-2345-13456-1234-15
1570
+ sufword captainess 14-1-1234-2345-1-24-35-15-234-234
1571
+
1572
+ # less (123-15-234-234 -> 46-234)
1573
+ nofor midendword less 46-234
1574
+
1575
+ match %a less - 46-234b
1576
+
1577
+ noback pass2 [@6-46-234b] @6-123-15-234-234
1578
+ noback pass2 [@6-3-46-234b] @6-3-123-15-234-234
1579
+ noback pass2 [@46-234b] @46-234
1580
+
1581
+ # ment (134-15-1345-2345 -> 56-2345)
1582
+ nofor midendword ment 56-2345
1583
+
1584
+ match %a ment - 56-2345b
1585
+
1586
+ noback pass2 [@6-56-2345b] @6-134-26-2345 # m(en)t
1587
+ noback pass2 [@6-3-56-2345b] @6-3-134-26-2345 # m(en)t
1588
+ noback pass2 [@56-2345b] @56-2345
1589
+
1590
+ match - menth [AIOUYaiouy] 134-26-1456
1591
+ match - menthe - 134-26-2346
1592
+
1593
+ # ness (1345-15-234-234 -> 56-234) 10.8.4
1594
+ nofor midendword ness 56-234
1595
+
1596
+ match %a ness - 56-234b
1597
+
1598
+ noback pass2 [@6-56-234b] @6-1345-15-234-234
1599
+ noback pass2 [@6-3-56-234b] @6-3-1345-15-234-234
1600
+ noback pass2 [@56-234b] @56-234
1601
+
1602
+ sufword chieftainess 16-24-15-124-2345-1-35-15-234-234
1603
+ sufword citizeness 14-24-2345-24-1356-26-15-234-234
1604
+ sufword heatheness 125-2-2346-1345-15-234-234
1605
+
1606
+ # ong (135-1345-1245 -> 56-1245)
1607
+ nofor midendword ong 56-1245
1608
+
1609
+ match %a ong - 56-1245b
1610
+
1611
+ noback pass2 [@6-56-1245b] @6-135-1345-1245
1612
+ noback pass2 [@6-3-56-1245b] @6-3-135-1345-1245
1613
+ noback pass2 [@56-1245b] @56-1245
1614
+
1615
+ match - cannon [Gg][Aa][Tt][Ee] =
1616
+ match - lemon [Gg][Rr][Aa][Ss][Ss] =
1617
+ match - longhi ^|!%a 123-135-1345-126-24
1618
+ match - melon [Gg][Rr][Oo][Ww] =
1619
+ match - moon [Gg]%a = moonglow moongod
1620
+ begword nong = nongraphical nongaseous nongovernmental
1621
+ match - schon [Gg][Aa][Uu][Ee][Rr] 234-16-135-1345
1622
+ sufword songhai 234-135-1345-126-1-24
1623
+
1624
+ # ound (135-136-1345-145 -> 46-145)
1625
+ nofor midendword ound 46-145
1626
+
1627
+ match %a ound - 46-145b
1628
+
1629
+ noback pass2 [@6-46-145b] @6-1256-1345-145 # (ou)nd
1630
+ noback pass2 [@6-3-46-145b] @6-3-1256-1345-145 # (ou)nd
1631
+ noback pass2 [@46-145b] @46-145
1632
+
1633
+ # ount (135-136-1345-2345 -> 46-2345)
1634
+ nofor midendword ount 46-2345
1635
+
1636
+ match %a ount - 46-2345b
1637
+
1638
+ noback pass2 [@6-46-2345b] @6-1256-1345-2345 # (ou)nt
1639
+ noback pass2 [@6-3-46-2345b] @6-3-1256-1345-2345 # (ou)nt
1640
+ noback pass2 [@46-2345b] @46-2345
1641
+
1642
+ # sion (234-24-135-1345 -> 46-1345)
1643
+ nofor midendword sion 46-1345
1644
+
1645
+ match %a sion - 46-1345b
1646
+
1647
+ noback pass2 [@6-46-1345b] @6-234-24-135-1345
1648
+ noback pass2 [@6-3-46-1345b] @6-3-234-24-135-1345
1649
+ noback pass2 [@46-1345b] @46-1345
1650
+
1651
+ # tion (2345-24-135-1345 -> 56-1345)
1652
+ nofor midendword tion 56-1345
1653
+
1654
+ match %a tion - 56-1345b
1655
+
1656
+ noback pass2 [@6-56-1345b] @6-2345-24-135-1345
1657
+ noback pass2 [@6-3-56-1345b] @6-3-2345-24-135-1345
1658
+ noback pass2 [@56-1345b] @56-1345
1659
+
1660
+ sufword cation 14-1-2345-24-135-1345
1661
+ always mention 134-26-56-1345 TION has priority
1662
+
1663
+ # 10.9 Shortforms not including 10.9.3
1664
+ #TODO: 2.6.4
1665
+
1666
+ attribute 2 BCDFGHJKLMNPQRSTVWXZbcdfghjklmnpqrstvwxz no vowels (except w) and 2.6.4
1667
+
1668
+ match %[_~^]%<* blind (%2%a*)?([Ss]|['’][Ss])?%>*%[_~^] 12-123 appendix 1.4
1669
+ match %[_~^]%<*%a* braille %a*([Ss]|['’][Ss])?%>*%[_~^] 12-1235-123 10.9.3
1670
+ match %[_~^]%<*%a* children (%2%a*)?([Ss]|['’][Ss])?%>*%[_~^] 16-1345 10.9.3
1671
+ match %[_~^]%<* first (%2%a*)?([Ss]|['’][Ss])?%>*%[_~^] 124-34 10.9.3
1672
+ match %[_~^]%<* friend (%2%a*)?([Ss]|['’][Ss])?%>*%[_~^] 124-1235 appendix 1.4
1673
+ match %[_~^]%<* good (%2%a*)?([Ss]|['’][Ss])?%>*%[_~^] 1245-145 10.9.3
1674
+ match %[_~^]%<*%a* great %a*([Ss]|['’][Ss])?%>*%[_~^] 1245-1235-2345 10.9.3
1675
+ match %[_~^]%<* letter (%2%a*)?([Ss]|['’][Ss])?%>*%[_~^] 123-1235 10.9.3
1676
+ match %[_~^]%<* little (%2%a*)?([Ss]|['’][Ss])?%>*%[_~^] 123-123 10.9.3
1677
+ match %[_~^]%<* quick (%2%a*)?([Ss]|['’][Ss])?%>*%[_~^] 12345-13 10.9.3
1678
+
1679
+ # The word rules below consume a word-final "s", bypassing the
1680
+ # "noback endword s\x2019 234-3" rule in en-ueb-chardefs.uti. Keep a
1681
+ # trailing U+2019 after a word-final s an apostrophe rather than a
1682
+ # closing quote (the dogs\x2019 bones, the friends\x2019 interference).
1683
+ noback match [sS] \x2019 %>*%[_~^] 3
1684
+
1685
+ #TODO: backmatch should be able to merge these
1686
+ word about 1-12
1687
+ word above 1-12-1236
1688
+ word according 1-14
1689
+ word across 1-14-1235
1690
+ word after 1-124 appendix 1.4
1691
+ word afternoon 1-124-1345
1692
+ word afterward 1-124-2456
1693
+ word again 1-1245
1694
+ word against 1-1245-34
1695
+ word almost 1-123-134
1696
+ word already 1-123-1235
1697
+ word also 1-123
1698
+ word although 1-123-1456
1699
+ word altogether 1-123-2345
1700
+ word always 1-123-2456
1701
+ word because 23-14
1702
+ word before 23-124
1703
+ word behind 23-125
1704
+ word below 23-123
1705
+ word beneath 23-1345
1706
+ word beside 23-234
1707
+ word between 23-2345
1708
+ word beyond 23-13456
1709
+ word blind 12-123 appendix 1.4
1710
+ word braille 12-1235-123 10.9.3
1711
+ word children 16-1345 10.9.3
1712
+ word conceive 25-14-1236
1713
+ word conceiving 25-14-1236-1245
1714
+ word could 14-145
1715
+ word deceive 145-14-1236
1716
+ word deceiving 145-14-1236-1245
1717
+ word declare 145-14-123
1718
+ word declaring 145-14-123-1245
1719
+ word either 15-24
1720
+ word first 124-34 10.9.3
1721
+ word friend 124-1235 appendix 1.4
1722
+ word good 1245-145 10.9.3
1723
+ word great 1245-1235-2345 10.9.3
1724
+ word herself 125-12456-124
1725
+ word him 125-134
1726
+ word himself 125-134-124
1727
+ word immediate 24-134-134
1728
+ word its 1346-234
1729
+ word itself 1346-124
1730
+ word letter 123-1235 10.9.3
1731
+ word little 123-123 10.9.3
1732
+ word much 134-16
1733
+ word must 134-34
1734
+ word myself 134-13456-124
1735
+ word necessary 1345-15-14
1736
+ word neither 1345-15-24
1737
+ word oneself 5-135-124
1738
+ word ourselves 1256-1235-1236-234
1739
+ word paid 1234-145
1740
+ word perceive 1234-12456-14-1236
1741
+ word perceiving 1234-12456-14-1236-1245
1742
+ word perhaps 1234-12456-125
1743
+ word quick 12345-13 10.9.3
1744
+ word receive 1235-14-1236
1745
+ word receiving 1235-14-1236-1245
1746
+ word rejoice 1235-245-14
1747
+ word rejoicing 1235-245-14-1245
1748
+ word said 234-145
1749
+ word should 146-145
1750
+ word such 234-16
1751
+ word themselves 2346-134-1236-234
1752
+ word thyself 1456-13456-124
1753
+ word today 2345-145
1754
+ word together 2345-1245-1235
1755
+ word tomorrow 2345-134
1756
+ word tonight 2345-1345
1757
+ word would 2456-145
1758
+ word your 13456-1235
1759
+ word yourself 13456-1235-124
1760
+ word yourselves 13456-1235-1236-234
1761
+
1762
+ #nofor word abouts 1-12-234 appendix 1
1763
+ word aboves 1-12-1236-234
1764
+ word accordings 1-14-234
1765
+ word acrosss 1-14-1235-234
1766
+ word afters 1-124-234 appendix 1.4
1767
+ word afternoons 1-124-1345-234
1768
+ word afterwards 1-124-2456-234
1769
+ word agains 1-1245-234
1770
+ word againsts 1-1245-34-234
1771
+ #nofor word almosts 1-123-134-234 appendix 1
1772
+ word alreadys 1-123-1235-234
1773
+ word alsos 1-123-234
1774
+ word althoughs 1-123-1456-234
1775
+ word altogethers 1-123-2345-234
1776
+ word alwayss 1-123-2456-234
1777
+ word becauses 23-14-234
1778
+ word befores 23-124-234
1779
+ word behinds 23-125-234
1780
+ word belows 23-123-234
1781
+ word beneaths 23-1345-234
1782
+ word besides 23-234-234
1783
+ word betweens 23-2345-234
1784
+ word beyonds 23-13456-234
1785
+ word blinds 12-123-234 appendix 1.4
1786
+ word brailles 12-1235-123-234 10.9.3
1787
+ word childrens 16-1345-234 10.9.3
1788
+ word conceives 25-14-1236-234
1789
+ word conceivings 25-14-1236-1245-234
1790
+ word coulds 14-145-234
1791
+ word deceives 145-14-1236-234
1792
+ word deceivings 145-14-1236-1245-234
1793
+ word declares 145-14-123-234
1794
+ word declarings 145-14-123-1245-234
1795
+ word eithers 15-24-234
1796
+ word firsts 124-34-234 10.9.3
1797
+ word friends 124-1235-234 appendix 1.4
1798
+ word goods 1245-145-234 10.9.3
1799
+ word greats 1245-1235-2345-234 10.9.3
1800
+ word herselfs 125-12456-124-234
1801
+ #nofor word hims 125-134-234 appendix 1
1802
+ word himselfs 125-134-124-234
1803
+ word immediates 24-134-134-234
1804
+ word itss 1346-234-234
1805
+ word itselfs 1346-124-234
1806
+ word letters 123-1235-234 10.9.3
1807
+ word littles 123-123-234 10.9.3
1808
+ word muchs 134-16-234
1809
+ word musts 134-34-234
1810
+ word myselfs 134-13456-124-234
1811
+ word necessarys 1345-15-14-234
1812
+ word neithers 1345-15-24-234
1813
+ word oneselfs 5-135-124-234
1814
+ word ourselvess 1256-1235-1236-234-234
1815
+ word paids 1234-145-234
1816
+ word perceives 1234-12456-14-1236-234
1817
+ word perceivings 1234-12456-14-1236-1245-234
1818
+ word perhapss 1234-12456-125-234
1819
+ word quicks 12345-13-234 10.9.3
1820
+ word receives 1235-14-1236-234
1821
+ word receivings 1235-14-1236-1245-234
1822
+ word rejoices 1235-245-14-234
1823
+ word rejoicings 1235-245-14-1245-234
1824
+ word saids 234-145-234
1825
+ word shoulds 146-145-234
1826
+ word suchs 234-16-234
1827
+ word themselvess 2346-134-1236-234-234
1828
+ word thyselfs 1456-13456-124-234
1829
+ word todays 2345-145-234
1830
+ word togethers 2345-1245-1235-234
1831
+ word tomorrows 2345-134-234
1832
+ word tonights 2345-1345-234
1833
+ word woulds 2456-145-234
1834
+ word yours 13456-1235-234
1835
+ word yourselfs 13456-1235-124-234
1836
+ word yourselvess 13456-1235-1236-234-234
1837
+
1838
+ nofor word about's 1-12-3-234
1839
+ nofor word above's 1-12-1236-3-234
1840
+ nofor word according's 1-14-3-234
1841
+ nofor word across's 1-14-1235-3-234
1842
+ nofor word after's 1-124-3-234 appendix 1.4
1843
+ nofor word afternoon's 1-124-1345-3-234
1844
+ nofor word afterward's 1-124-2456-3-234
1845
+ nofor word again's 1-1245-3-234
1846
+ nofor word against's 1-1245-34-3-234
1847
+ nofor word almost's 1-123-134-3-234
1848
+ nofor word already's 1-123-1235-3-234
1849
+ nofor word also's 1-123-3-234
1850
+ nofor word although's 1-123-1456-3-234
1851
+ nofor word altogether's 1-123-2345-3-234
1852
+ nofor word always's 1-123-2456-3-234
1853
+ nofor word because's 23-14-3-234
1854
+ nofor word before's 23-124-3-234
1855
+ nofor word behind's 23-125-3-234
1856
+ nofor word below's 23-123-3-234
1857
+ nofor word beneath's 23-1345-3-234
1858
+ nofor word beside's 23-234-3-234
1859
+ nofor word between's 23-2345-3-234
1860
+ nofor word beyond's 23-13456-3-234
1861
+ nofor word blind's 12-123-3-234 appendix 1.4
1862
+ nofor word braille's 12-1235-123-3-234 10.9.3
1863
+ nofor word children's 16-1345-3-234 10.9.3
1864
+ nofor word conceive's 25-14-1236-3-234
1865
+ nofor word conceiving's 25-14-1236-1245-3-234
1866
+ nofor word could's 14-145-3-234
1867
+ nofor word deceive's 145-14-1236-3-234
1868
+ nofor word deceiving's 145-14-1236-1245-3-234
1869
+ nofor word declare's 145-14-123-3-234
1870
+ nofor word declaring's 145-14-123-1245-3-234
1871
+ nofor word either's 15-24-3-234
1872
+ nofor word first's 124-34-3-234 10.9.3
1873
+ nofor word friend's 124-1235-3-234 appendix 1.4
1874
+ nofor word good's 1245-145-3-234 10.9.3
1875
+ nofor word great's 1245-1235-2345-3-234 10.9.3
1876
+ nofor word herself's 125-12456-124-3-234
1877
+ nofor word him's 125-134-3-234
1878
+ nofor word himself's 125-134-124-3-234
1879
+ nofor word immediate's 24-134-134-3-234
1880
+ nofor word its's 1346-234-3-234
1881
+ nofor word itself's 1346-124-3-234
1882
+ nofor word letter's 123-1235-3-234 10.9.3-3-234
1883
+ nofor word little's 123-123-3-234 10.9.3-3-234
1884
+ nofor word much's 134-16-3-234
1885
+ nofor word must's 134-34-3-234
1886
+ nofor word myself's 134-13456-124-3-234
1887
+ nofor word necessary's 1345-15-14-3-234
1888
+ nofor word neither's 1345-15-24-3-234
1889
+ nofor word oneself's 5-135-124-3-234
1890
+ nofor word ourselves's 1256-1235-1236-234-3-234
1891
+ nofor word paid's 1234-145-3-234
1892
+ nofor word perceive's 1234-12456-14-1236-3-234
1893
+ nofor word perceiving's 1234-12456-14-1236-1245-3-234
1894
+ nofor word perhaps's 1234-12456-125-3-234
1895
+ nofor word quick's 12345-13-3-234 10.9.3
1896
+ nofor word receive's 1235-14-1236-3-234
1897
+ nofor word receiving's 1235-14-1236-1245-3-234
1898
+ nofor word rejoice's 1235-245-14-3-234
1899
+ nofor word rejoicing's 1235-245-14-1245-3-234
1900
+ nofor word said's 234-145-3-234
1901
+ nofor word should's 146-145-3-234
1902
+ nofor word such's 234-16-3-234
1903
+ nofor word themselves's 2346-134-1236-234-3-234
1904
+ nofor word thyself's 1456-13456-124-3-234
1905
+ nofor word today's 2345-145-3-234
1906
+ nofor word together's 2345-1245-1235-3-234
1907
+ nofor word tomorrow's 2345-134-3-234
1908
+ nofor word tonight's 2345-1345-3-234
1909
+ nofor word would's 2456-145-3-234
1910
+ nofor word your's 13456-1235-3-234
1911
+ nofor word yourself's 13456-1235-124-3-234
1912
+ nofor word yourselves's 13456-1235-1236-234-3-234
1913
+
1914
+ # 10.9.4
1915
+
1916
+ word herf =
1917
+ word mst =
1918
+
1919
+ # 10.9.5
1920
+
1921
+ contraction ab about
1922
+ contraction abv above
1923
+ contraction abvs
1924
+ contraction ac according
1925
+ contraction acs
1926
+ contraction acr across
1927
+ contraction acrs
1928
+ contraction af after
1929
+ contraction afn afternoon
1930
+ contraction afns
1931
+ contraction afs
1932
+ contraction afw afterward
1933
+ contraction afws
1934
+ contraction ag again
1935
+ contraction ags
1936
+ word agst = against
1937
+ word agsts =
1938
+ contraction alm almost
1939
+ contraction alr already
1940
+ contraction alrs
1941
+ contraction al also
1942
+ contraction als
1943
+ word alth = although
1944
+ word alths =
1945
+ contraction alt altogether
1946
+ contraction alts
1947
+ contraction alw always
1948
+ contraction alws
1949
+ word bec = because
1950
+ word bef = before
1951
+ word beh = behind
1952
+ word bel = below
1953
+ word ben 12-26 beneath
1954
+ word bes = beside
1955
+ word bet = between
1956
+ word bey = beyond
1957
+ contraction bl blind
1958
+ contraction brl braille
1959
+ word chn = children
1960
+ match %[_~^]%<*%a* chn (%2)|(%>*%[_~^]) =
1961
+ word concv = conceive
1962
+ word concvg = conceiving
1963
+ contraction cd could
1964
+ contraction dcv deceive
1965
+ contraction dcvg deceiving
1966
+ contraction dcl declare
1967
+ contraction dclg declaring
1968
+ contraction ei either
1969
+ word fst = first
1970
+ word fsts =
1971
+ contraction fr friend
1972
+ contraction gd good
1973
+ contraction grt great
1974
+ word herf = herself
1975
+ contraction hm him
1976
+ contraction hmf himself
1977
+ contraction imm immediate
1978
+ contraction xs its
1979
+ contraction xf itself
1980
+ contraction lr letter
1981
+ contraction ll little
1982
+ word mch = much
1983
+ word mst = must
1984
+ contraction myf myself
1985
+ contraction nec necessary
1986
+ contraction nei neither
1987
+ word onef = oneself
1988
+ word ourvs = ourselves
1989
+ contraction pd paid
1990
+ word percv = perceive
1991
+ word percvd =
1992
+ word percvg = perceiving
1993
+ word percvr =
1994
+ word percvs =
1995
+ word perh = perhaps
1996
+ word perhs =
1997
+ contraction qk quick
1998
+ contraction rcv receive
1999
+ contraction rcvg receiving
2000
+ contraction rjc rejoice
2001
+ contraction rjcg rejoicing
2002
+ contraction sd said
2003
+ word shd = should
2004
+ word sch = such
2005
+ word themvs = themselves
2006
+ word thyf = thyself
2007
+ contraction td today
2008
+ contraction tgr together
2009
+ contraction tm tomorrow
2010
+ contraction tn tonight
2011
+ contraction wd would
2012
+ contraction yr your
2013
+ contraction yrf yourself
2014
+ contraction yrvs yourselves
2015
+
2016
+ # 10.9.6
2017
+ #TODO
2018
+
2019
+ # Appendix 1
2020
+
2021
+ word abouts 1-12-1256-2345-234
2022
+ word almosts 1-123-134-135-34-234
2023
+ word hims 125-24-134-234
2024
+
2025
+ word alms 1-123-134-234
2026
+
2027
+ # don't mix ’ with ' together
2028
+
2029
+ match %[_~^]%<* whereabouts (['’][Ss])?%>*%[_~^] 5-156-1-12-234
2030
+
2031
+ word 'twould 3-2345-2456-145
2032
+ word 'twould've 3-2345-2456-145-3-1236-15
2033
+ word 'twoulda 3-2345-2456-145-1
2034
+ word 'twouldn't 3-2345-2456-145-1345-3-2345
2035
+ word 'twouldn't've 3-2345-2456-145-1345-3-2345-3-1236-15
2036
+ word aboutface 1-12-124-1-14-15
2037
+ word aboutfaced 1-12-124-1-14-1246
2038
+ word aboutfacer 1-12-124-1-14-12456
2039
+ word aboutfacing 1-12-124-1-14-346
2040
+ word aboutturn 1-12-2345-136-1235-1345
2041
+ word aboutturned 1-12-2345-136-1235-1345-1246
2042
+ word aboveboard 1-12-1236-12-135-345-145
2043
+ word aboveground 1-12-1236-1245-1235-46-145
2044
+ word abovementioned 1-12-1236-134-26-56-1345-1246
2045
+ word accordingly 1-14-123-13456
2046
+ word aforesaid 1-123456-15-234-145
2047
+ word afterbattle 1-124-12-1-2345-2345-123-15
2048
+ word afterbirth 1-124-12-24-1235-1456
2049
+ word afterbreakfast 1-124-12-1235-2-13-124-1-34
2050
+ word afterburn 1-124-12-136-1235-1345
2051
+ word afterburned 1-124-12-136-1235-1345-1246
2052
+ word afterburner 1-124-12-136-1235-1345-12456
2053
+ word afterburning 1-124-12-136-1235-1345-346
2054
+ word aftercare 1-124-14-345-15
2055
+ word afterclap 1-124-14-123-1-1234
2056
+ word aftercoffee 1-124-14-12356-124-15-15
2057
+ word afterdamp 1-124-145-1-134-1234
2058
+ word afterdark 1-124-145-345-13
2059
+ word afterdeck 1-124-145-15-14-13
2060
+ word afterdinner 1-124-145-35-1345-12456
2061
+ word afterflow 1-124-124-123-246
2062
+ word aftergame 1-124-1245-1-134-15
2063
+ word afterglow 1-124-1245-123-246
2064
+ word afterguard 1-124-1245-136-345-145
2065
+ word afterhatch 1-124-125-1-2345-16
2066
+ word afterhatches 1-124-125-1-2345-16-15-234
2067
+ word afterhour 1-124-125-1256-1235
2068
+ word afterlife 1-124-123-24-124-15
2069
+ word afterlight 1-124-123-24-126-2345
2070
+ word afterlives 1-124-123-24-1236-15-234
2071
+ word afterlunch 1-124-123-136-1345-16
2072
+ word afterlunches 1-124-123-136-1345-16-15-234
2073
+ word aftermarket 1-124-134-345-13-15-2345
2074
+ word aftermatch 1-124-134-1-2345-16
2075
+ word aftermatches 1-124-134-1-2345-16-15-234
2076
+ word aftermath 1-124-134-1-1456
2077
+ word aftermeeting 1-124-134-15-15-2345-346
2078
+ word aftermentioned 1-124-134-26-56-1345-1246
2079
+ word aftermidday 1-124-134-24-145-5-145
2080
+ word aftermidnight 1-124-134-24-145-1345-24-126-2345
2081
+ word aftermost 1-124-134-135-34
2082
+ word afternoontea 1-124-1345-2345-15-1
2083
+ word afterpain 1-124-1234-1-35
2084
+ word afterparties 1-124-5-1234-24-15-234
2085
+ word afterparty 1-124-5-1234-13456
2086
+ word afterpiece 1-124-1234-24-15-14-15
2087
+ word afterplay 1-124-1234-123-1-13456
2088
+ word aftersale 1-124-234-1-123-15
2089
+ word afterschool 1-124-234-16-135-135-123
2090
+ word aftersensation 1-124-234-26-234-1-56-1345
2091
+ word aftershave 1-124-146-1-1236-15
2092
+ word aftershock 1-124-146-135-14-13
2093
+ word aftershow 1-124-146-246
2094
+ word aftershower 1-124-146-246-12456
2095
+ word aftersupper 1-124-234-136-1234-1234-12456
2096
+ word aftertaste 1-124-2345-1-34-15
2097
+ word aftertax 1-124-2345-1-1346
2098
+ word aftertaxes 1-124-2345-1-1346-15-234
2099
+ word aftertea 1-124-2345-15-1
2100
+ word aftertheater 1-124-2346-1-2345-12456
2101
+ word aftertheatre 1-124-2346-1-2345-1235-15
2102
+ word afterthought 1-124-1456-5-1256
2103
+ word aftertime 1-124-5-2345
2104
+ word aftertreatment 1-124-2345-1235-2-2345-56-2345
2105
+ word afterword 1-124-45-2456
2106
+ word afterwork 1-124-5-2456
2107
+ word afterworld 1-124-456-2456
2108
+ word apperceive 1-1234-1234-12456-14-1236
2109
+ word apperceived 1-1234-1234-12456-14-1236-145
2110
+ word apperceiver 1-1234-1234-12456-14-1236-1235
2111
+ word apperceiving 1-1234-1234-12456-14-1236-1245
2112
+ word archdeceiver 345-16-145-14-1236-1235
2113
+ word beforehand 23-124-125-12346
2114
+ word beforementioned 23-124-134-26-56-1345-1246
2115
+ word befriend 23-124-1235
2116
+ word behindhand 23-125-125-12346
2117
+ word belittle 23-123-123
2118
+ word belittled 23-123-123-145
2119
+ word belittlement 23-123-123-56-2345
2120
+ word belittler 23-123-123-1235
2121
+ word belowdeck 23-123-145-15-14-13
2122
+ word belowground 23-123-1245-1235-46-145
2123
+ word belowmentioned 23-123-134-26-56-1345-1246
2124
+ word beneathdeck 23-1345-145-15-14-13
2125
+ word beneathground 23-1345-1245-1235-46-145
2126
+ word betweendeck 23-2345-145-15-14-13
2127
+ word betweentime 23-2345-5-2345
2128
+ word betweenwhile 23-2345-156-24-123-15
2129
+ word blindfish 12-123-124-24-146
2130
+ word blindfishes 12-123-124-24-146-15-234
2131
+ word blindfold 12-123-124-135-123-145
2132
+ word blindfolded 12-123-124-135-123-145-1246
2133
+ word blindfolder 12-123-124-135-123-145-12456
2134
+ word blindfolding 12-123-124-135-123-145-346
2135
+ word blindly 12-123-123-13456
2136
+ word blindman 12-123-134-1-1345
2137
+ word blindmen 12-123-134-26
2138
+ word blindness 12-123-56-234
2139
+ word blindnesses 12-123-56-234-15-234
2140
+ word blindside 12-123-234-24-145-15
2141
+ word blindsided 12-123-234-24-145-1246
2142
+ word blindsider 12-123-234-24-145-12456
2143
+ word blindsiding 12-123-234-24-145-346
2144
+ word blindsight 12-123-234-24-126-2345
2145
+ word blindstories 12-123-34-135-1235-24-15-234
2146
+ word blindstory 12-123-34-135-1235-13456
2147
+ word blindworm 12-123-2456-135-1235-134
2148
+ word bloodletter 12-123-135-135-145-123-1235
2149
+ word boyfriend 12-135-13456-124-1235
2150
+ word brailled 12-1235-123-145
2151
+ word brailler 12-1235-123-1235
2152
+ word braillewriter 12-1235-123-2456-1235-24-2345-12456
2153
+ word braillewriting 12-1235-123-2456-1235-24-2345-346
2154
+ word brailley 12-1235-123-13456
2155
+ word brainchildren 12-1235-1-35-16-1345
2156
+ word chainletter 16-1-35-123-1235
2157
+ word children'swear 16-1345-3-234-2456-15-345
2158
+ word colorblind 14-135-123-135-1235-12-123
2159
+ word colorblindness 14-135-123-135-1235-12-123-56-234
2160
+ word colorblindnesses 14-135-123-135-1235-12-123-56-234-15-234
2161
+ word colourblind 14-135-123-1256-1235-12-123
2162
+ word colourblindness 14-135-123-1256-1235-12-123-56-234
2163
+ word colourblindnesses 14-135-123-1256-1235-12-123-56-234-15-234
2164
+ word conceived 25-14-1236-145
2165
+ word conceiver 25-14-1236-1235
2166
+ word could've 14-145-3-1236-15
2167
+ word coulda 14-145-1
2168
+ word couldest 14-145-15-34
2169
+ word couldn't 14-145-1345-3-2345
2170
+ word couldn't've 14-145-1345-3-2345-3-1236-15
2171
+ word couldst 14-145-34
2172
+ word deafblind 145-2-124-12-123
2173
+ word deafblindness 145-2-124-12-123-56-234
2174
+ word deafblindnesses 145-2-124-12-123-56-234-15-234
2175
+ word deceived 145-14-1236-145
2176
+ word deceiver 145-14-1236-1235
2177
+ word declared 145-14-123-145
2178
+ word declarer 145-14-123-1235
2179
+ word defriend 145-15-124-1235
2180
+ word do-it-yourselfer 145-36-1346-36-13456-1235-124-12456
2181
+ word doublequick 145-1256-12-123-15-12345-13
2182
+ word eastabout 15-1-34-1-12
2183
+ word feelgood 124-15-15-123-1245-145
2184
+ word feetfirst 124-15-15-2345-124-34
2185
+ word firstaid 124-34-1-24-145
2186
+ word firstaider 124-34-1-24-145-12456
2187
+ word firstborn 124-34-12-135-1235-1345
2188
+ word firstclass 124-34-14-123-1-234-234
2189
+ word firstclasses 124-34-14-123-1-234-234-15-234
2190
+ word firstday 124-34-5-145
2191
+ word firstdayer 124-34-5-145-12456
2192
+ word firstfruit 124-34-124-1235-136-24-2345
2193
+ word firstfruiting 124-34-124-1235-136-24-2345-346
2194
+ word firstgeneration 124-34-1245-26-12456-1-56-1345
2195
+ word firsthand 124-34-125-12346
2196
+ word firsthanded 124-34-125-12346-1246
2197
+ word firstling 124-34-123-346
2198
+ word firstly 124-34-123-13456
2199
+ word firstness 124-34-56-234
2200
+ word firstnight 124-34-1345-24-126-2345
2201
+ word firstnighter 124-34-1345-24-126-2345-12456
2202
+ word firstrate 124-34-1235-1-2345-15
2203
+ word firstrated 124-34-1235-1-2345-1246
2204
+ word firstrating 124-34-1235-1-2345-346
2205
+ word firststring 124-34-34-1235-346
2206
+ word forasmuch 123456-1-234-134-16
2207
+ word foresaid 123456-15-234-145
2208
+ word fosterchildren 124-135-34-12456-16-1345
2209
+ word friendless 124-1235-46-234
2210
+ word friendlessness 124-1235-46-234-56-234
2211
+ word friendlessnesses 124-1235-46-234-56-234-15-234
2212
+ word friendlier 124-1235-123-24-12456
2213
+ word friendlies 124-1235-123-24-15-234
2214
+ word friendliest 124-1235-123-24-15-34
2215
+ word friendliness 124-1235-123-24-56-234
2216
+ word friendlinesses 124-1235-123-24-56-234-15-234
2217
+ word friendly 124-1235-123-13456
2218
+ word friendship 124-1235-146-24-1234
2219
+ word gadabout 1245-1-145-1-12
2220
+ word gainsaid 1245-1-35-234-145
2221
+ word galfriend 1245-1-123-124-1235
2222
+ word gentlemanfriend 1245-26-2345-123-15-134-1-1345-124-1235
2223
+ word gentlemenfriends 1245-26-2345-123-15-134-26-124-1235-234
2224
+ word girlfriend 1245-24-1235-123-124-1235
2225
+ word godchildren 1245-135-145-16-1345
2226
+ word goodafternoon 1245-145-1-124-1345
2227
+ word goodby 1245-145-12-13456
2228
+ word goodbye 1245-145-12-13456-15
2229
+ word goodbyeing 1245-145-12-13456-15-346
2230
+ word goodbying 1245-145-12-13456-346
2231
+ word goodday 1245-145-5-145
2232
+ word gooder 1245-145-12456
2233
+ word goodest 1245-145-15-34
2234
+ word goodevening 1245-145-15-1236-26-346
2235
+ word goodfellow 1245-145-124-15-123-123-246
2236
+ word goodfellowship 1245-145-124-15-123-123-246-146-24-1234
2237
+ word goodhearted 1245-145-125-15-345-2345-1246
2238
+ word goodheartedly 1245-145-125-15-345-2345-1246-123-13456
2239
+ word goodheartedness 1245-145-125-15-345-2345-1246-56-234
2240
+ word goodhumor 1245-145-125-136-134-135-1235
2241
+ word goodhumored 1245-145-125-136-134-135-1235-1246
2242
+ word goodhumoredly 1245-145-125-136-134-135-1235-1246-123-13456
2243
+ word goodhumoredness 1245-145-125-136-134-135-1235-1246-56-234
2244
+ word goodhumorednesses 1245-145-125-136-134-135-1235-1246-56-234-15-234
2245
+ word goodhumour 1245-145-125-136-134-1256-1235
2246
+ word goodhumoured 1245-145-125-136-134-1256-1235-1246
2247
+ word goodhumouredly 1245-145-125-136-134-1256-1235-1246-123-13456
2248
+ word goodhumouredness 1245-145-125-136-134-1256-1235-1246-56-234
2249
+ word goodhumourednesses 1245-145-125-136-134-1256-1235-1246-56-234-15-234
2250
+ word goodie 1245-145-24-15
2251
+ word goodish 1245-145-24-146
2252
+ word goodlier 1245-145-123-24-12456
2253
+ word goodliest 1245-145-123-24-15-34
2254
+ word goodliness 1245-145-123-24-56-234
2255
+ word goodlook 1245-145-123-135-135-13
2256
+ word goodlooker 1245-145-123-135-135-13-12456
2257
+ word goodlooking 1245-145-123-135-135-13-346
2258
+ word goodly 1245-145-123-13456
2259
+ word goodman 1245-145-134-1-1345
2260
+ word goodmen 1245-145-134-26
2261
+ word goodmorning 1245-145-134-135-1235-1345-346
2262
+ word goodnature 1245-145-1345-1-2345-136-1235-15
2263
+ word goodnatured 1245-145-1345-1-2345-136-1235-1246
2264
+ word goodnaturedly 1245-145-1345-1-2345-136-1235-1246-123-13456
2265
+ word goodnaturedness 1245-145-1345-1-2345-136-1235-1246-56-234
2266
+ word goodness 1245-145-56-234
2267
+ word goodnesses 1245-145-56-234-15-234
2268
+ word goodnight 1245-145-1345-24-126-2345
2269
+ word goodsize 1245-145-234-24-1356-15
2270
+ word goodsized 1245-145-234-24-1356-1246
2271
+ word goodtempered 1245-145-2345-15-134-1234-12456-1246
2272
+ word goodtemperedly 1245-145-2345-15-134-1234-12456-1246-123-13456
2273
+ word goodtime 1245-145-5-2345
2274
+ word goodun 1245-145-136-1345
2275
+ word goodwife 1245-145-2456-24-124-15
2276
+ word goodwill 1245-145-2456-24-123-123
2277
+ word goodwilled 1245-145-2456-24-123-123-1246
2278
+ word goodwives 1245-145-2456-24-1236-15-234
2279
+ word goody 1245-145-13456
2280
+ word goodyear 1245-145-13456-15-345
2281
+ word grandchildren 1245-1235-12346-16-1345
2282
+ word greataunt 1245-1235-2345-1-136-1345-2345
2283
+ word greatbatch 1245-1235-2345-12-1-2345-16
2284
+ word greatcircle 1245-1235-2345-14-24-1235-14-123-15
2285
+ word greatcoat 1245-1235-2345-14-135-1-2345
2286
+ word greaten 1245-1235-2345-26
2287
+ word greatened 1245-1235-2345-26-1246
2288
+ word greatener 1245-1235-2345-26-12456
2289
+ word greatening 1245-1235-2345-26-346
2290
+ word greater 1245-1235-2345-12456
2291
+ word greatest 1245-1235-2345-15-34
2292
+ word greatgrandaunt 1245-1235-2345-1245-1235-12346-1-136-1345-2345
2293
+ word greatgrandchild 1245-1235-2345-1245-1235-12346-16-24-123-145
2294
+ word greatgrandchildren 1245-1235-2345-1245-1235-12346-16-1345
2295
+ word greatgranddad 1245-1235-2345-1245-1235-12346-145-1-145
2296
+ word greatgranddaughter 1245-1235-2345-1245-1235-12346-145-1-136-126-2345-12456
2297
+ word greatgrandfather 1245-1235-2345-1245-1235-12346-5-124
2298
+ word greatgrandfatherhood 1245-1235-2345-1245-1235-12346-5-124-125-135-135-145
2299
+ word greatgrandma 1245-1235-2345-1245-1235-12346-134-1
2300
+ word greatgrandmother 1245-1235-2345-1245-1235-12346-5-134
2301
+ word greatgrandmotherhood 1245-1235-2345-1245-1235-12346-5-134-125-135-135-145
2302
+ word greatgrandnephew 1245-1235-2345-1245-1235-12346-1345-15-1234-125-15-2456
2303
+ word greatgrandniece 1245-1235-2345-1245-1235-12346-1345-24-15-14-15
2304
+ word greatgrandpa 1245-1235-2345-1245-1235-12346-1234-1
2305
+ word greatgrandparent 1245-1235-2345-1245-1235-12346-1234-345-26-2345
2306
+ word greatgrandparenthood 1245-1235-2345-1245-1235-12346-1234-345-26-2345-125-135-135-145
2307
+ word greatgrandson 1245-1235-2345-1245-1235-12346-234-135-1345
2308
+ word greatgranduncle 1245-1235-2345-1245-1235-12346-136-1345-14-123-15
2309
+ word greathearted 1245-1235-2345-125-15-345-2345-1246
2310
+ word greatheartedly 1245-1235-2345-125-15-345-2345-1246-123-13456
2311
+ word greatheartedness 1245-1235-2345-125-15-345-2345-1246-56-234
2312
+ word greatheartednesses 1245-1235-2345-125-15-345-2345-1246-56-234-15-234
2313
+ word greatly 1245-1235-2345-123-13456
2314
+ word greatnephew 1245-1235-2345-1345-15-1234-125-15-2456
2315
+ word greatness 1245-1235-2345-56-234
2316
+ word greatnesses 1245-1235-2345-56-234-15-234
2317
+ word greatniece 1245-1235-2345-1345-24-15-14-15
2318
+ word greatsword 1245-1235-2345-234-45-2456
2319
+ word greatuncle 1245-1235-2345-136-1345-14-123-15
2320
+ word guyfriend 1245-136-13456-124-1235
2321
+ word hateletter 125-1-2345-15-123-1235
2322
+ word headfirst 125-2-145-124-34
2323
+ word hereabout 5-125-1-12
2324
+ word hereafter 5-125-1-124
2325
+ word hereagain 5-125-1-1245
2326
+ word hereagainst 5-125-1-1245-34
2327
+ word hereinabove 5-125-35-1-12-1236
2328
+ word hereinafter 5-125-35-1-124
2329
+ word hereinagain 5-125-35-1-1245
2330
+ word highlypaid 125-24-126-123-13456-1234-145
2331
+ word himbo 125-134-12-135
2332
+ word himboes 125-134-12-135-15-234
2333
+ word illpaid 24-123-123-1234-145
2334
+ word immediately 24-134-134-123-13456
2335
+ word immediateness 24-134-134-56-234
2336
+ word inasmuch 35-1-234-134-16
2337
+ word insomuch 35-234-135-134-16
2338
+ word knockabout 13-1345-135-14-13-1-12
2339
+ word ladyfriend 123-1-145-13456-124-1235
2340
+ word layabout 123-1-13456-1-12
2341
+ word letterbodies 123-1235-12-135-145-24-15-234
2342
+ word letterbody 123-1235-12-135-145-13456
2343
+ word letterbomb 123-1235-12-135-134-12
2344
+ word letterbombed 123-1235-12-135-134-12-1246
2345
+ word letterbomber 123-1235-12-135-134-12-12456
2346
+ word letterbombing 123-1235-12-135-134-12-346
2347
+ word letterbox 123-1235-12-135-1346
2348
+ word letterboxed 123-1235-12-135-1346-1246
2349
+ word letterboxer 123-1235-12-135-1346-12456
2350
+ word letterboxes 123-1235-12-135-1346-15-234
2351
+ word letterboxing 123-1235-12-135-1346-346
2352
+ word lettered 123-1235-1246
2353
+ word letterer 123-1235-12456
2354
+ word letterform 123-1235-123456-134
2355
+ word letterhead 123-1235-125-2-145
2356
+ word letterheading 123-1235-125-2-145-346
2357
+ word lettering 123-1235-346
2358
+ word letterman 123-1235-134-1-1345
2359
+ word lettermen 123-1235-134-26
2360
+ word letteropener 123-1235-135-1234-26-12456
2361
+ word letterperfect 123-1235-1234-12456-124-15-14-2345
2362
+ word letterpress 123-1235-1234-1235-15-234-234
2363
+ word letterpressed 123-1235-1234-1235-15-234-234-1246
2364
+ word letterpresses 123-1235-1234-1235-15-234-234-15-234
2365
+ word letterpressing 123-1235-1234-1235-15-234-234-346
2366
+ word letterquality 123-1235-12345-136-1-123-56-13456
2367
+ word letterspace 123-1235-234-1234-1-14-15
2368
+ word letterspaced 123-1235-234-1234-1-14-1246
2369
+ word letterspacing 123-1235-234-1234-1-14-346
2370
+ word lettertext 123-1235-2345-15-1346-2345
2371
+ word littled 123-123-145
2372
+ word littleneck 123-123-1345-15-14-13
2373
+ word littleness 123-123-56-234
2374
+ word littlenesses 123-123-56-234-15-234
2375
+ word littler 123-123-1235
2376
+ word littlest 123-123-34
2377
+ word lovechildren 123-135-1236-15-16-1345
2378
+ word loveletter 123-135-1236-15-123-1235
2379
+ word lowlypaid 123-246-123-13456-1234-145
2380
+ word manfriend 134-1-1345-124-1235
2381
+ word menfriends 134-26-124-1235-234
2382
+ word midafternoon 134-24-145-1-124-1345
2383
+ word misbraille 134-24-234-12-1235-123
2384
+ word misbrailled 134-24-234-12-1235-123-145
2385
+ word misperceive 134-24-234-1234-12456-14-1236
2386
+ word misperceived 134-24-234-1234-12456-14-1236-145
2387
+ word misperceiver 134-24-234-1234-12456-14-1236-1235
2388
+ word misperceiving 134-24-234-1234-12456-14-1236-1245
2389
+ word missaid 134-24-234-234-145
2390
+ word morningafter 134-135-1235-1345-346-1-124
2391
+ word muchly 134-16-123-13456
2392
+ word muchness 134-16-56-234
2393
+ word must've 134-34-3-1236-15
2394
+ word musta 134-34-1
2395
+ word mustard 134-34-345-145
2396
+ word mustardy 134-34-345-145-13456
2397
+ word mustier 134-34-24-12456
2398
+ word mustiest 134-34-24-15-34
2399
+ word mustily 134-34-24-123-13456
2400
+ word mustiness 134-34-24-56-234
2401
+ word mustn't 134-34-1345-3-2345
2402
+ word mustn't've 134-34-1345-3-2345-3-1236-15
2403
+ word musty 134-34-13456
2404
+ word newsletter 1345-15-2456-234-123-1235
2405
+ word nonesuch 1345-5-135-234-16
2406
+ word nonsuch 1345-135-1345-234-16
2407
+ word northabout 1345-135-1235-1456-1-12
2408
+ word overmuch 135-1236-12456-134-16
2409
+ word overpaid 135-1236-12456-1234-145
2410
+ word penfriend 1234-26-124-1235
2411
+ word perceived 1234-12456-14-1236-145
2412
+ word perceiver 1234-12456-14-1236-1235
2413
+ word perhapses 1234-12456-125-15-234
2414
+ word poorlypaid 1234-135-135-1235-123-13456-1234-145
2415
+ word postpaid 1234-135-34-1234-145
2416
+ word preceive 1234-1235-14-1236
2417
+ word preceiver 1234-1235-14-1236-1235
2418
+ word preceiving 1234-1235-14-1236-1245
2419
+ word prepaid 1234-1235-15-1234-145
2420
+ word purblind 1234-136-1235-12-123
2421
+ word purblindly 1234-136-1235-12-123-123-13456
2422
+ word purblindness 1234-136-1235-12-123-56-234
2423
+ word purblindnesses 1234-136-1235-12-123-56-234-15-234
2424
+ word quickdraw 12345-13-145-1235-1-2456
2425
+ word quicken 12345-13-26
2426
+ word quickened 12345-13-26-1246
2427
+ word quickener 12345-13-26-12456
2428
+ word quickening 12345-13-26-346
2429
+ word quicker 12345-13-12456
2430
+ word quickest 12345-13-15-34
2431
+ word quickfire 12345-13-124-24-1235-15
2432
+ word quickfiring 12345-13-124-24-1235-346
2433
+ word quickfreeze 12345-13-124-1235-15-15-1356-15
2434
+ word quickfreezing 12345-13-124-1235-15-15-1356-346
2435
+ word quickfroze 12345-13-124-1235-135-1356-15
2436
+ word quickfrozen 12345-13-124-1235-135-1356-26
2437
+ word quickie 12345-13-24-15
2438
+ word quickish 12345-13-24-146
2439
+ word quickishly 12345-13-24-146-123-13456
2440
+ word quicklime 12345-13-123-24-134-15
2441
+ word quickly 12345-13-123-13456
2442
+ word quickness 12345-13-56-234
2443
+ word quicknesses 12345-13-56-234-15-234
2444
+ word quicksand 12345-13-234-12346
2445
+ word quickset 12345-13-234-15-2345
2446
+ word quicksilver 12345-13-234-24-123-1236-12456
2447
+ word quicksilvered 12345-13-234-24-123-1236-12456-1246
2448
+ word quicksilvering 12345-13-234-24-123-1236-12456-346
2449
+ word quicksnap 12345-13-234-1345-1-1234
2450
+ word quickstep 12345-13-34-15-1234
2451
+ word quickstepped 12345-13-34-15-1234-1234-1246
2452
+ word quickstepper 12345-13-34-15-1234-1234-12456
2453
+ word quickstepping 12345-13-34-15-1234-1234-346
2454
+ word quicktempered 12345-13-2345-15-134-1234-12456-1246
2455
+ word quicktime 12345-13-5-2345
2456
+ word quickwitted 12345-13-2456-24-2345-2345-1246
2457
+ word quickwittedly 12345-13-2456-24-2345-2345-1246-123-13456
2458
+ word quickwittedness 12345-13-2456-24-2345-2345-1246-56-234
2459
+ word quicky 12345-13-13456
2460
+ word readacross 1235-2-145-1-14-1235
2461
+ word rebraille 1235-15-12-1235-123
2462
+ word rebrailled 1235-15-12-1235-123-145
2463
+ word rebrailler 1235-15-12-1235-123-1235
2464
+ word received 1235-14-1236-145
2465
+ word receiver 1235-14-1236-1235
2466
+ word receivership 1235-14-1236-1235-146-24-1234
2467
+ word rejoiced 1235-245-14-145
2468
+ word rejoiceful 1235-245-14-56-123
2469
+ word rejoicefully 1235-245-14-56-123-123-13456
2470
+ word rejoicefulness 1235-245-14-56-123-56-234
2471
+ word rejoicer 1235-245-14-1235
2472
+ word rejoicingly 1235-245-14-1245-123-13456
2473
+ word reletter 1235-15-123-1235
2474
+ word relettered 1235-15-123-1235-1246
2475
+ word relettering 1235-15-123-1235-346
2476
+ word repaid 1235-15-1234-145
2477
+ word rightabout 5-1235-1-12
2478
+ word roundabout 1235-46-145-1-12
2479
+ word roustabout 1235-1256-34-1-12
2480
+ word runabout 1235-136-1345-1-12
2481
+ word saidest 234-145-15-34
2482
+ word saidst 234-145-34
2483
+ word scattergood 234-14-1-2345-2345-12456-1245-145
2484
+ word schoolchildren 234-16-135-135-123-16-1345
2485
+ word schoolfriend 234-16-135-135-123-124-1235
2486
+ word should've 146-145-3-1236-15
2487
+ word shoulda 146-145-1
2488
+ word shouldest 146-145-15-34
2489
+ word shouldn't 146-145-1345-3-2345
2490
+ word shouldn't've 146-145-1345-3-2345-3-1236-15
2491
+ word shouldst 146-145-34
2492
+ word snowblind 234-1345-246-12-123
2493
+ word snowblindness 234-1345-246-12-123-56-234
2494
+ word snowblindnesses 234-1345-246-12-123-56-234-15-234
2495
+ word somesuch 5-234-234-16
2496
+ word southabout 234-1256-1456-1-12
2497
+ word stepchildren 34-15-1234-16-1345
2498
+ word stirabout 34-24-1235-1-12
2499
+ word suchlike 234-16-123-24-13-15
2500
+ word supergood 234-136-1234-12456-1245-145
2501
+ word superquick 234-136-1234-12456-12345-13
2502
+ word tailfirst 2345-1-24-123-124-34
2503
+ word thereabout 5-2346-1-12
2504
+ word thereafter 5-2346-1-124
2505
+ word thereagain 5-2346-1-1245
2506
+ word thereagainst 5-2346-1-1245-34
2507
+ word thereinafter 5-2346-35-1-124
2508
+ word thereinagain 5-2346-35-1-1245
2509
+ word togetherness 2345-1245-1235-56-234
2510
+ word turnabout 2345-136-1235-1345-1-12
2511
+ word unaccording 136-1345-1-14
2512
+ word unaccordingly 136-1345-1-14-123-13456
2513
+ word unblindfold 136-1345-12-123-124-135-123-145
2514
+ word unblindfolded 136-1345-12-123-124-135-123-145-1246
2515
+ word unblindfolding 136-1345-12-123-124-135-123-145-346
2516
+ word unbraille 136-1345-12-1235-123
2517
+ word unbrailled 136-1345-12-1235-123-145
2518
+ word undeceive 136-1345-145-14-1236
2519
+ word undeceived 136-1345-145-14-1236-145
2520
+ word undeceiver 136-1345-145-14-1236-1235
2521
+ word undeceiving 136-1345-145-14-1236-1245
2522
+ word undeclare 136-1345-145-14-123
2523
+ word undeclared 136-1345-145-14-123-145
2524
+ word underpaid 5-136-1234-145
2525
+ word unfriend 136-1345-124-1235
2526
+ word unfriendlier 136-1345-124-1235-123-24-12456
2527
+ word unfriendliest 136-1345-124-1235-123-24-15-34
2528
+ word unfriendliness 136-1345-124-1235-123-24-56-234
2529
+ word unfriendlinesses 136-1345-124-1235-123-24-56-234-15-234
2530
+ word unfriendly 136-1345-124-1235-123-13456
2531
+ word unlettered 136-1345-123-1235-1246
2532
+ word unnecessary 136-1345-1345-15-14
2533
+ word unpaid 136-1345-1234-145
2534
+ word unperceive 136-1345-1234-12456-14-1236
2535
+ word unperceived 136-1345-1234-12456-14-1236-145
2536
+ word unperceiving 136-1345-1234-12456-14-1236-1245
2537
+ word unquick 136-1345-12345-13
2538
+ word unreceived 136-1345-1235-14-1236-145
2539
+ word unrejoice 136-1345-1235-245-14
2540
+ word unrejoiced 136-1345-1235-245-14-145
2541
+ word unrejoiceful 136-1345-1235-245-14-56-123
2542
+ word unrejoicefully 136-1345-1235-245-14-56-123-123-13456
2543
+ word unrejoicefulness 136-1345-1235-245-14-56-123-56-234
2544
+ word unrejoicer 136-1345-1235-245-14-1235
2545
+ word unrejoicing 136-1345-1235-245-14-1245
2546
+ word unrejoicingly 136-1345-1235-245-14-1245-123-13456
2547
+ word unrepaid 136-1345-1235-15-1234-145
2548
+ word unsaid 136-1345-234-145
2549
+ word walkabout 2456-1-123-13-1-12
2550
+ word wellpaid 2456-15-123-123-1234-145
2551
+ word westabout 2456-15-34-1-12
2552
+ word whereabout 5-156-1-12
2553
+ word whereafter 5-156-1-124
2554
+ word whereagain 5-156-1-1245
2555
+ word whereagainst 5-156-1-1245-34
2556
+ word whereinafter 5-156-35-1-124
2557
+ word whereinagain 5-156-35-1-1245
2558
+ word womanfriend 2456-135-134-1-1345-124-1235
2559
+ word womenfriends 2456-135-134-26-124-1235-234
2560
+ word would've 2456-145-3-1236-15
2561
+ word woulda 2456-145-1
2562
+ word wouldest 2456-145-15-34
2563
+ word wouldn't 2456-145-1345-3-2345
2564
+ word wouldn't've 2456-145-1345-3-2345-3-1236-15
2565
+ word wouldst 2456-145-34
2566
+
2567
+ #TODO: backmatch should be able to merge these
2568
+ word 'twoulds 3-2345-2456-145-234
2569
+ word 'twould'ves 3-2345-2456-145-3-1236-15-234
2570
+ word 'twouldas 3-2345-2456-145-1-234
2571
+ word 'twouldn'ts 3-2345-2456-145-1345-3-2345-234
2572
+ word 'twouldn't'ves 3-2345-2456-145-1345-3-2345-3-1236-15-234
2573
+ word aboutfaces 1-12-124-1-14-15-234
2574
+ word aboutfacers 1-12-124-1-14-12456-234
2575
+ word aboutfacings 1-12-124-1-14-346-234
2576
+ word aboutturns 1-12-2345-136-1235-1345-234
2577
+ word aboveboards 1-12-1236-12-135-345-145-234
2578
+ word abovegrounds 1-12-1236-1245-1235-46-145-234
2579
+ word aforesaids 1-123456-15-234-145-234
2580
+ word afterbattles 1-124-12-1-2345-2345-123-15-234
2581
+ word afterbirths 1-124-12-24-1235-1456-234
2582
+ word afterbreakfasts 1-124-12-1235-2-13-124-1-34-234
2583
+ word afterburns 1-124-12-136-1235-1345-234
2584
+ word afterburners 1-124-12-136-1235-1345-12456-234
2585
+ word afterburnings 1-124-12-136-1235-1345-346-234
2586
+ word aftercares 1-124-14-345-15-234
2587
+ word afterclaps 1-124-14-123-1-1234-234
2588
+ word aftercoffees 1-124-14-12356-124-15-15-234
2589
+ word afterdamps 1-124-145-1-134-1234-234
2590
+ word afterdarks 1-124-145-345-13-234
2591
+ word afterdecks 1-124-145-15-14-13-234
2592
+ word afterdinners 1-124-145-35-1345-12456-234
2593
+ word afterflows 1-124-124-123-246-234
2594
+ word aftergames 1-124-1245-1-134-15-234
2595
+ word afterglows 1-124-1245-123-246-234
2596
+ word afterguards 1-124-1245-136-345-145-234
2597
+ word afterhatchs 1-124-125-1-2345-16-234
2598
+ word afterhatchess 1-124-125-1-2345-16-15-234-234
2599
+ word afterhours 1-124-125-1256-1235-234
2600
+ word afterlifes 1-124-123-24-124-15-234
2601
+ word afterlights 1-124-123-24-126-2345-234
2602
+ word afterlivess 1-124-123-24-1236-15-234-234
2603
+ word afterlunchs 1-124-123-136-1345-16-234
2604
+ word afterlunchess 1-124-123-136-1345-16-15-234-234
2605
+ word aftermarkets 1-124-134-345-13-15-2345-234
2606
+ word aftermatchs 1-124-134-1-2345-16-234
2607
+ word aftermaths 1-124-134-1-1456-234
2608
+ word aftermeetings 1-124-134-15-15-2345-346-234
2609
+ word aftermentioneds 1-124-134-26-56-1345-1246-234
2610
+ word aftermiddays 1-124-134-24-145-5-145-234
2611
+ word aftermidnights 1-124-134-24-145-1345-24-126-2345-234
2612
+ word aftermosts 1-124-134-135-34-234
2613
+ word afternoonteas 1-124-1345-2345-15-1-234
2614
+ word afterpains 1-124-1234-1-35-234
2615
+ word afterpartiess 1-124-5-1234-24-15-234-234
2616
+ word afterpartys 1-124-5-1234-13456-234
2617
+ word afterpieces 1-124-1234-24-15-14-15-234
2618
+ word afterplays 1-124-1234-123-1-13456-234
2619
+ word aftersales 1-124-234-1-123-15-234
2620
+ word afterschools 1-124-234-16-135-135-123-234
2621
+ word aftersensations 1-124-234-26-234-1-56-1345-234
2622
+ word aftershaves 1-124-146-1-1236-15-234
2623
+ word aftershocks 1-124-146-135-14-13-234
2624
+ word aftershows 1-124-146-246-234
2625
+ word aftershowers 1-124-146-246-12456-234
2626
+ word aftersuppers 1-124-234-136-1234-1234-12456-234
2627
+ word aftertastes 1-124-2345-1-34-15-234
2628
+ word aftertaxs 1-124-2345-1-1346-234
2629
+ word aftertaxess 1-124-2345-1-1346-15-234-234
2630
+ word afterteas 1-124-2345-15-1-234
2631
+ word aftertheaters 1-124-2346-1-2345-12456-234
2632
+ word aftertheatres 1-124-2346-1-2345-1235-15-234
2633
+ word afterthoughts 1-124-1456-5-1256-234
2634
+ word aftertimes 1-124-5-2345-234
2635
+ word aftertreatments 1-124-2345-1235-2-2345-56-2345-234
2636
+ word afterwords 1-124-45-2456-234
2637
+ word afterworks 1-124-5-2456-234
2638
+ word afterworlds 1-124-456-2456-234
2639
+ word apperceives 1-1234-1234-12456-14-1236-234
2640
+ word apperceivers 1-1234-1234-12456-14-1236-1235-234
2641
+ word apperceivings 1-1234-1234-12456-14-1236-1245-234
2642
+ word archdeceivers 345-16-145-14-1236-1235-234
2643
+ word beforehands 23-124-125-12346-234
2644
+ word beforementioneds 23-124-134-26-56-1345-1246-234
2645
+ word befriends 23-124-1235-234
2646
+ word behindhands 23-125-125-12346-234
2647
+ word belittles 23-123-123-234
2648
+ word belittlements 23-123-123-56-2345-234
2649
+ word belittlers 23-123-123-1235-234
2650
+ word belowdecks 23-123-145-15-14-13-234
2651
+ word belowgrounds 23-123-1245-1235-46-145-234
2652
+ word beneathdecks 23-1345-145-15-14-13-234
2653
+ word beneathgrounds 23-1345-1245-1235-46-145-234
2654
+ word betweendecks 23-2345-145-15-14-13-234
2655
+ word betweentimes 23-2345-5-2345-234
2656
+ word betweenwhiles 23-2345-156-24-123-15-234
2657
+ word blindfishs 12-123-124-24-146-234
2658
+ word blindfishess 12-123-124-24-146-15-234-234
2659
+ word blindfolds 12-123-124-135-123-145-234
2660
+ word blindfolders 12-123-124-135-123-145-12456-234
2661
+ word blindfoldings 12-123-124-135-123-145-346-234
2662
+ word blindlys 12-123-123-13456-234
2663
+ word blindmans 12-123-134-1-1345-234
2664
+ word blindmens 12-123-134-26-234
2665
+ word blindnesss 12-123-56-234-234
2666
+ word blindnessess 12-123-56-234-15-234-234
2667
+ word blindsides 12-123-234-24-145-15-234
2668
+ word blindsiders 12-123-234-24-145-12456-234
2669
+ word blindsidings 12-123-234-24-145-346-234
2670
+ word blindsights 12-123-234-24-126-2345-234
2671
+ word blindstoriess 12-123-34-135-1235-24-15-234-234
2672
+ word blindstorys 12-123-34-135-1235-13456-234
2673
+ word blindworms 12-123-2456-135-1235-134-234
2674
+ word bloodletters 12-123-135-135-145-123-1235-234
2675
+ word boyfriends 12-135-13456-124-1235-234
2676
+ word braillers 12-1235-123-1235-234
2677
+ word braillewriters 12-1235-123-2456-1235-24-2345-12456-234
2678
+ word braillewritings 12-1235-123-2456-1235-24-2345-346-234
2679
+ word brailleys 12-1235-123-13456-234
2680
+ word brainchildrens 12-1235-1-35-16-1345-234
2681
+ word chainletters 16-1-35-123-1235-234
2682
+ word children'swears 16-1345-3-234-2456-15-345-234
2683
+ word colorblinds 14-135-123-135-1235-12-123-234
2684
+ word colorblindnesss 14-135-123-135-1235-12-123-56-234-234
2685
+ word colorblindnessess 14-135-123-135-1235-12-123-56-234-15-234-234
2686
+ word colourblinds 14-135-123-1256-1235-12-123-234
2687
+ word colourblindnesss 14-135-123-1256-1235-12-123-56-234-234
2688
+ word colourblindnessess 14-135-123-1256-1235-12-123-56-234-15-234-234
2689
+ word conceivers 25-14-1236-1235-234
2690
+ word could'ves 14-145-3-1236-15-234
2691
+ word couldas 14-145-1-234
2692
+ word couldests 14-145-15-34-234
2693
+ word couldn'ts 14-145-1345-3-2345-234
2694
+ word couldn't'ves 14-145-1345-3-2345-3-1236-15-234
2695
+ word couldsts 14-145-34-234
2696
+ word deafblinds 145-2-124-12-123-234
2697
+ word deafblindnesss 145-2-124-12-123-56-234-234
2698
+ word deafblindnessess 145-2-124-12-123-56-234-15-234-234
2699
+ word deceivers 145-14-1236-1235-234
2700
+ word declarers 145-14-123-1235-234
2701
+ word defriends 145-15-124-1235-234
2702
+ word do-it-yourselfers 145-36-1346-36-13456-1235-124-12456-234
2703
+ word doublequicks 145-1256-12-123-15-12345-13-234
2704
+ word eastabouts 15-1-34-1-12-234
2705
+ word feelgoods 124-15-15-123-1245-145-234
2706
+ word feetfirsts 124-15-15-2345-124-34-234
2707
+ word firstaids 124-34-1-24-145-234
2708
+ word firstaiders 124-34-1-24-145-12456-234
2709
+ word firstborns 124-34-12-135-1235-1345-234
2710
+ word firstclasss 124-34-14-123-1-234-234-234
2711
+ word firstclassess 124-34-14-123-1-234-234-15-234-234
2712
+ word firstdays 124-34-5-145-234
2713
+ word firstdayers 124-34-5-145-12456-234
2714
+ word firstfruits 124-34-124-1235-136-24-2345-234
2715
+ word firstfruitings 124-34-124-1235-136-24-2345-346-234
2716
+ word firstgenerations 124-34-1245-26-12456-1-56-1345-234
2717
+ word firsthands 124-34-125-12346-234
2718
+ word firstlings 124-34-123-346-234
2719
+ word firstlys 124-34-123-13456-234
2720
+ word firstnesss 124-34-56-234-234
2721
+ word firstnights 124-34-1345-24-126-2345-234
2722
+ word firstnighters 124-34-1345-24-126-2345-12456-234
2723
+ word firstrates 124-34-1235-1-2345-15-234
2724
+ word firstratings 124-34-1235-1-2345-346-234
2725
+ word firststrings 124-34-34-1235-346-234
2726
+ word forasmuchs 123456-1-234-134-16-234
2727
+ word foresaids 123456-15-234-145-234
2728
+ word fosterchildrens 124-135-34-12456-16-1345-234
2729
+ word friendlesss 124-1235-46-234-234
2730
+ word friendlessnesss 124-1235-46-234-56-234-234
2731
+ word friendlessnessess 124-1235-46-234-56-234-15-234-234
2732
+ word friendliers 124-1235-123-24-12456-234
2733
+ word friendliess 124-1235-123-24-15-234-234
2734
+ word friendliests 124-1235-123-24-15-34-234
2735
+ word friendlinesss 124-1235-123-24-56-234-234
2736
+ word friendlinessess 124-1235-123-24-56-234-15-234-234
2737
+ word friendlys 124-1235-123-13456-234
2738
+ word friendships 124-1235-146-24-1234-234
2739
+ word gadabouts 1245-1-145-1-12-234
2740
+ word gainsaids 1245-1-35-234-145-234
2741
+ word galfriends 1245-1-123-124-1235-234
2742
+ word gentlemanfriends 1245-26-2345-123-15-134-1-1345-124-1235-234
2743
+ word gentlemenfriendss 1245-26-2345-123-15-134-26-124-1235-234-234
2744
+ word girlfriends 1245-24-1235-123-124-1235-234
2745
+ word godchildrens 1245-135-145-16-1345-234
2746
+ word goodafternoons 1245-145-1-124-1345-234
2747
+ word goodbys 1245-145-12-13456-234
2748
+ word goodbyes 1245-145-12-13456-15-234
2749
+ word goodbyeings 1245-145-12-13456-15-346-234
2750
+ word goodbyings 1245-145-12-13456-346-234
2751
+ word gooddays 1245-145-5-145-234
2752
+ word gooders 1245-145-12456-234
2753
+ word goodests 1245-145-15-34-234
2754
+ word goodevenings 1245-145-15-1236-26-346-234
2755
+ word goodfellows 1245-145-124-15-123-123-246-234
2756
+ word goodfellowships 1245-145-124-15-123-123-246-146-24-1234-234
2757
+ word goodheartedlys 1245-145-125-15-345-2345-1246-123-13456-234
2758
+ word goodheartednesss 1245-145-125-15-345-2345-1246-56-234-234
2759
+ word goodhumors 1245-145-125-136-134-135-1235-234
2760
+ word goodhumoredlys 1245-145-125-136-134-135-1235-1246-123-13456-234
2761
+ word goodhumorednesss 1245-145-125-136-134-135-1235-1246-56-234-234
2762
+ word goodhumorednessess 1245-145-125-136-134-135-1235-1246-56-234-15-234-234
2763
+ word goodhumours 1245-145-125-136-134-1256-1235-234
2764
+ word goodhumouredlys 1245-145-125-136-134-1256-1235-1246-123-13456-234
2765
+ word goodhumourednesss 1245-145-125-136-134-1256-1235-1246-56-234-234
2766
+ word goodhumourednessess 1245-145-125-136-134-1256-1235-1246-56-234-15-234-234
2767
+ word goodies 1245-145-24-15-234
2768
+ word goodishs 1245-145-24-146-234
2769
+ word goodliers 1245-145-123-24-12456-234
2770
+ word goodliests 1245-145-123-24-15-34-234
2771
+ word goodlinesss 1245-145-123-24-56-234-234
2772
+ word goodlooks 1245-145-123-135-135-13-234
2773
+ word goodlookers 1245-145-123-135-135-13-12456-234
2774
+ word goodlookings 1245-145-123-135-135-13-346-234
2775
+ word goodlys 1245-145-123-13456-234
2776
+ word goodmans 1245-145-134-1-1345-234
2777
+ word goodmens 1245-145-134-26-234
2778
+ word goodmornings 1245-145-134-135-1235-1345-346-234
2779
+ word goodnatures 1245-145-1345-1-2345-136-1235-15-234
2780
+ word goodnaturedlys 1245-145-1345-1-2345-136-1235-1246-123-13456-234
2781
+ word goodnaturednesss 1245-145-1345-1-2345-136-1235-1246-56-234-234
2782
+ word goodnesss 1245-145-56-234-234
2783
+ word goodnessess 1245-145-56-234-15-234-234
2784
+ word goodnights 1245-145-1345-24-126-2345-234
2785
+ word goodsizes 1245-145-234-24-1356-15-234
2786
+ word goodtemperedlys 1245-145-2345-15-134-1234-12456-1246-123-13456-234
2787
+ word goodtimes 1245-145-5-2345-234
2788
+ word gooduns 1245-145-136-1345-234
2789
+ word goodwifes 1245-145-2456-24-124-15-234
2790
+ word goodwills 1245-145-2456-24-123-123-234
2791
+ word goodwivess 1245-145-2456-24-1236-15-234-234
2792
+ word goodys 1245-145-13456-234
2793
+ word goodyears 1245-145-13456-15-345-234
2794
+ word grandchildrens 1245-1235-12346-16-1345-234
2795
+ word greataunts 1245-1235-2345-1-136-1345-2345-234
2796
+ word greatbatchs 1245-1235-2345-12-1-2345-16-234
2797
+ word greatcircles 1245-1235-2345-14-24-1235-14-123-15-234
2798
+ word greatcoats 1245-1235-2345-14-135-1-2345-234
2799
+ word greatens 1245-1235-2345-26-234
2800
+ word greateners 1245-1235-2345-26-12456-234
2801
+ word greatenings 1245-1235-2345-26-346-234
2802
+ word greaters 1245-1235-2345-12456-234
2803
+ word greatests 1245-1235-2345-15-34-234
2804
+ word greatgrandaunts 1245-1235-2345-1245-1235-12346-1-136-1345-2345-234
2805
+ word greatgrandchilds 1245-1235-2345-1245-1235-12346-16-24-123-145-234
2806
+ word greatgrandchildrens 1245-1235-2345-1245-1235-12346-16-1345-234
2807
+ word greatgranddads 1245-1235-2345-1245-1235-12346-145-1-145-234
2808
+ word greatgranddaughters 1245-1235-2345-1245-1235-12346-145-1-136-126-2345-12456-234
2809
+ word greatgrandfathers 1245-1235-2345-1245-1235-12346-5-124-234
2810
+ word greatgrandfatherhoods 1245-1235-2345-1245-1235-12346-5-124-125-135-135-145-234
2811
+ word greatgrandmas 1245-1235-2345-1245-1235-12346-134-1-234
2812
+ word greatgrandmothers 1245-1235-2345-1245-1235-12346-5-134-234
2813
+ word greatgrandmotherhoods 1245-1235-2345-1245-1235-12346-5-134-125-135-135-145-234
2814
+ word greatgrandnephews 1245-1235-2345-1245-1235-12346-1345-15-1234-125-15-2456-234
2815
+ word greatgrandnieces 1245-1235-2345-1245-1235-12346-1345-24-15-14-15-234
2816
+ word greatgrandpas 1245-1235-2345-1245-1235-12346-1234-1-234
2817
+ word greatgrandparents 1245-1235-2345-1245-1235-12346-1234-345-26-2345-234
2818
+ word greatgrandparenthoods 1245-1235-2345-1245-1235-12346-1234-345-26-2345-125-135-135-145-234
2819
+ word greatgrandsons 1245-1235-2345-1245-1235-12346-234-135-1345-234
2820
+ word greatgranduncles 1245-1235-2345-1245-1235-12346-136-1345-14-123-15-234
2821
+ word greatheartedlys 1245-1235-2345-125-15-345-2345-1246-123-13456-234
2822
+ word greatheartednesss 1245-1235-2345-125-15-345-2345-1246-56-234-234
2823
+ word greatheartednessess 1245-1235-2345-125-15-345-2345-1246-56-234-15-234-234
2824
+ word greatlys 1245-1235-2345-123-13456-234
2825
+ word greatnephews 1245-1235-2345-1345-15-1234-125-15-2456-234
2826
+ word greatnesss 1245-1235-2345-56-234-234
2827
+ word greatnessess 1245-1235-2345-56-234-15-234-234
2828
+ word greatnieces 1245-1235-2345-1345-24-15-14-15-234
2829
+ word greatswords 1245-1235-2345-234-45-2456-234
2830
+ word greatuncles 1245-1235-2345-136-1345-14-123-15-234
2831
+ word guyfriends 1245-136-13456-124-1235-234
2832
+ word hateletters 125-1-2345-15-123-1235-234
2833
+ word headfirsts 125-2-145-124-34-234
2834
+ word hereabouts 5-125-1-12-234
2835
+ word hereafters 5-125-1-124-234
2836
+ word hereagains 5-125-1-1245-234
2837
+ word hereagainsts 5-125-1-1245-34-234
2838
+ word hereinaboves 5-125-35-1-12-1236-234
2839
+ word hereinafters 5-125-35-1-124-234
2840
+ word hereinagains 5-125-35-1-1245-234
2841
+ word highlypaids 125-24-126-123-13456-1234-145-234
2842
+ word himbos 125-134-12-135-234
2843
+ word himboess 125-134-12-135-15-234-234
2844
+ word illpaids 24-123-123-1234-145-234
2845
+ word immediatelys 24-134-134-123-13456-234
2846
+ word immediatenesss 24-134-134-56-234-234
2847
+ word inasmuchs 35-1-234-134-16-234
2848
+ word insomuchs 35-234-135-134-16-234
2849
+ word knockabouts 13-1345-135-14-13-1-12-234
2850
+ word ladyfriends 123-1-145-13456-124-1235-234
2851
+ word layabouts 123-1-13456-1-12-234
2852
+ word letterbodiess 123-1235-12-135-145-24-15-234-234
2853
+ word letterbodys 123-1235-12-135-145-13456-234
2854
+ word letterbombs 123-1235-12-135-134-12-234
2855
+ word letterbombers 123-1235-12-135-134-12-12456-234
2856
+ word letterbombings 123-1235-12-135-134-12-346-234
2857
+ word letterboxs 123-1235-12-135-1346-234
2858
+ word letterboxers 123-1235-12-135-1346-12456-234
2859
+ word letterboxess 123-1235-12-135-1346-15-234-234
2860
+ word letterboxings 123-1235-12-135-1346-346-234
2861
+ word letterers 123-1235-12456-234
2862
+ word letterforms 123-1235-123456-134-234
2863
+ word letterheads 123-1235-125-2-145-234
2864
+ word letterheadings 123-1235-125-2-145-346-234
2865
+ word letterings 123-1235-346-234
2866
+ word lettermans 123-1235-134-1-1345-234
2867
+ word lettermens 123-1235-134-26-234
2868
+ word letteropeners 123-1235-135-1234-26-12456-234
2869
+ word letterperfects 123-1235-1234-12456-124-15-14-2345-234
2870
+ word letterpresss 123-1235-1234-1235-15-234-234-234
2871
+ word letterpressess 123-1235-1234-1235-15-234-234-15-234-234
2872
+ word letterpressings 123-1235-1234-1235-15-234-234-346-234
2873
+ word letterqualitys 123-1235-12345-136-1-123-56-13456-234
2874
+ word letterspaces 123-1235-234-1234-1-14-15-234
2875
+ word letterspacings 123-1235-234-1234-1-14-346-234
2876
+ word lettertexts 123-1235-2345-15-1346-2345-234
2877
+ word littlenecks 123-123-1345-15-14-13-234
2878
+ word littlenesss 123-123-56-234-234
2879
+ word littlenessess 123-123-56-234-15-234-234
2880
+ word littlers 123-123-1235-234
2881
+ word littlests 123-123-34-234
2882
+ word lovechildrens 123-135-1236-15-16-1345-234
2883
+ word loveletters 123-135-1236-15-123-1235-234
2884
+ word lowlypaids 123-246-123-13456-1234-145-234
2885
+ word manfriends 134-1-1345-124-1235-234
2886
+ word menfriendss 134-26-124-1235-234-234
2887
+ word midafternoons 134-24-145-1-124-1345-234
2888
+ word misbrailles 134-24-234-12-1235-123-234
2889
+ word misperceives 134-24-234-1234-12456-14-1236-234
2890
+ word misperceivers 134-24-234-1234-12456-14-1236-1235-234
2891
+ word misperceivings 134-24-234-1234-12456-14-1236-1245-234
2892
+ word missaids 134-24-234-234-145-234
2893
+ word morningafters 134-135-1235-1345-346-1-124-234
2894
+ word muchlys 134-16-123-13456-234
2895
+ word muchnesss 134-16-56-234-234
2896
+ word must'ves 134-34-3-1236-15-234
2897
+ word mustas 134-34-1-234
2898
+ word mustards 134-34-345-145-234
2899
+ word mustardys 134-34-345-145-13456-234
2900
+ word mustiers 134-34-24-12456-234
2901
+ word mustiests 134-34-24-15-34-234
2902
+ word mustilys 134-34-24-123-13456-234
2903
+ word mustinesss 134-34-24-56-234-234
2904
+ word mustn'ts 134-34-1345-3-2345-234
2905
+ word mustn't'ves 134-34-1345-3-2345-3-1236-15-234
2906
+ word mustys 134-34-13456-234
2907
+ word newsletters 1345-15-2456-234-123-1235-234
2908
+ word nonesuchs 1345-5-135-234-16-234
2909
+ word nonsuchs 1345-135-1345-234-16-234
2910
+ word northabouts 1345-135-1235-1456-1-12-234
2911
+ word overmuchs 135-1236-12456-134-16-234
2912
+ word overpaids 135-1236-12456-1234-145-234
2913
+ word penfriends 1234-26-124-1235-234
2914
+ word perceivers 1234-12456-14-1236-1235-234
2915
+ word perhapsess 1234-12456-125-15-234-234
2916
+ word poorlypaids 1234-135-135-1235-123-13456-1234-145-234
2917
+ word postpaids 1234-135-34-1234-145-234
2918
+ word preceives 1234-1235-14-1236-234
2919
+ word preceivers 1234-1235-14-1236-1235-234
2920
+ word preceivings 1234-1235-14-1236-1245-234
2921
+ word prepaids 1234-1235-15-1234-145-234
2922
+ word purblinds 1234-136-1235-12-123-234
2923
+ word purblindlys 1234-136-1235-12-123-123-13456-234
2924
+ word purblindnesss 1234-136-1235-12-123-56-234-234
2925
+ word purblindnessess 1234-136-1235-12-123-56-234-15-234-234
2926
+ word quickdraws 12345-13-145-1235-1-2456-234
2927
+ word quickens 12345-13-26-234
2928
+ word quickeners 12345-13-26-12456-234
2929
+ word quickenings 12345-13-26-346-234
2930
+ word quickers 12345-13-12456-234
2931
+ word quickests 12345-13-15-34-234
2932
+ word quickfires 12345-13-124-24-1235-15-234
2933
+ word quickfirings 12345-13-124-24-1235-346-234
2934
+ word quickfreezes 12345-13-124-1235-15-15-1356-15-234
2935
+ word quickfreezings 12345-13-124-1235-15-15-1356-346-234
2936
+ word quickfrozes 12345-13-124-1235-135-1356-15-234
2937
+ word quickfrozens 12345-13-124-1235-135-1356-26-234
2938
+ word quickies 12345-13-24-15-234
2939
+ word quickishs 12345-13-24-146-234
2940
+ word quickishlys 12345-13-24-146-123-13456-234
2941
+ word quicklimes 12345-13-123-24-134-15-234
2942
+ word quicklys 12345-13-123-13456-234
2943
+ word quicknesss 12345-13-56-234-234
2944
+ word quicknessess 12345-13-56-234-15-234-234
2945
+ word quicksands 12345-13-234-12346-234
2946
+ word quicksets 12345-13-234-15-2345-234
2947
+ word quicksilvers 12345-13-234-24-123-1236-12456-234
2948
+ word quicksilverings 12345-13-234-24-123-1236-12456-346-234
2949
+ word quicksnaps 12345-13-234-1345-1-1234-234
2950
+ word quicksteps 12345-13-34-15-1234-234
2951
+ word quicksteppers 12345-13-34-15-1234-1234-12456-234
2952
+ word quicksteppings 12345-13-34-15-1234-1234-346-234
2953
+ word quicktimes 12345-13-5-2345-234
2954
+ word quickwittedlys 12345-13-2456-24-2345-2345-1246-123-13456-234
2955
+ word quickwittednesss 12345-13-2456-24-2345-2345-1246-56-234-234
2956
+ word quickys 12345-13-13456-234
2957
+ word readacrosss 1235-2-145-1-14-1235-234
2958
+ word rebrailles 1235-15-12-1235-123-234
2959
+ word rebraillers 1235-15-12-1235-123-1235-234
2960
+ word receivers 1235-14-1236-1235-234
2961
+ word receiverships 1235-14-1236-1235-146-24-1234-234
2962
+ word rejoicefuls 1235-245-14-56-123-234
2963
+ word rejoicefullys 1235-245-14-56-123-123-13456-234
2964
+ word rejoicefulnesss 1235-245-14-56-123-56-234-234
2965
+ word rejoicers 1235-245-14-1235-234
2966
+ word rejoicinglys 1235-245-14-1245-123-13456-234
2967
+ word reletters 1235-15-123-1235-234
2968
+ word reletterings 1235-15-123-1235-346-234
2969
+ word repaids 1235-15-1234-145-234
2970
+ word rightabouts 5-1235-1-12-234
2971
+ word roundabouts 1235-46-145-1-12-234
2972
+ word roustabouts 1235-1256-34-1-12-234
2973
+ word runabouts 1235-136-1345-1-12-234
2974
+ word saidests 234-145-15-34-234
2975
+ word saidsts 234-145-34-234
2976
+ word scattergoods 234-14-1-2345-2345-12456-1245-145-234
2977
+ word schoolchildrens 234-16-135-135-123-16-1345-234
2978
+ word schoolfriends 234-16-135-135-123-124-1235-234
2979
+ word should'ves 146-145-3-1236-15-234
2980
+ word shouldas 146-145-1-234
2981
+ word shouldests 146-145-15-34-234
2982
+ word shouldn'ts 146-145-1345-3-2345-234
2983
+ word shouldn't'ves 146-145-1345-3-2345-3-1236-15-234
2984
+ word shouldsts 146-145-34-234
2985
+ word snowblinds 234-1345-246-12-123-234
2986
+ word snowblindnesss 234-1345-246-12-123-56-234-234
2987
+ word snowblindnessess 234-1345-246-12-123-56-234-15-234-234
2988
+ word somesuchs 5-234-234-16-234
2989
+ word southabouts 234-1256-1456-1-12-234
2990
+ word stepchildrens 34-15-1234-16-1345-234
2991
+ word stirabouts 34-24-1235-1-12-234
2992
+ word suchlikes 234-16-123-24-13-15-234
2993
+ word supergoods 234-136-1234-12456-1245-145-234
2994
+ word superquicks 234-136-1234-12456-12345-13-234
2995
+ word tailfirsts 2345-1-24-123-124-34-234
2996
+ word thereabouts 5-2346-1-12-234
2997
+ word thereafters 5-2346-1-124-234
2998
+ word thereagains 5-2346-1-1245-234
2999
+ word thereagainsts 5-2346-1-1245-34-234
3000
+ word thereinafters 5-2346-35-1-124-234
3001
+ word thereinagains 5-2346-35-1-1245-234
3002
+ word togethernesss 2345-1245-1235-56-234-234
3003
+ word turnabouts 2345-136-1235-1345-1-12-234
3004
+ word unaccordings 136-1345-1-14-234
3005
+ word unaccordinglys 136-1345-1-14-123-13456-234
3006
+ word unblindfolds 136-1345-12-123-124-135-123-145-234
3007
+ word unblindfoldings 136-1345-12-123-124-135-123-145-346-234
3008
+ word unbrailles 136-1345-12-1235-123-234
3009
+ word undeceives 136-1345-145-14-1236-234
3010
+ word undeceivers 136-1345-145-14-1236-1235-234
3011
+ word undeceivings 136-1345-145-14-1236-1245-234
3012
+ word undeclares 136-1345-145-14-123-234
3013
+ word underpaids 5-136-1234-145-234
3014
+ word unfriends 136-1345-124-1235-234
3015
+ word unfriendliers 136-1345-124-1235-123-24-12456-234
3016
+ word unfriendliests 136-1345-124-1235-123-24-15-34-234
3017
+ word unfriendlinesss 136-1345-124-1235-123-24-56-234-234
3018
+ word unfriendlinessess 136-1345-124-1235-123-24-56-234-15-234-234
3019
+ word unfriendlys 136-1345-124-1235-123-13456-234
3020
+ word unnecessarys 136-1345-1345-15-14-234
3021
+ word unpaids 136-1345-1234-145-234
3022
+ word unperceives 136-1345-1234-12456-14-1236-234
3023
+ word unperceivings 136-1345-1234-12456-14-1236-1245-234
3024
+ word unquicks 136-1345-12345-13-234
3025
+ word unrejoices 136-1345-1235-245-14-234
3026
+ word unrejoicefuls 136-1345-1235-245-14-56-123-234
3027
+ word unrejoicefullys 136-1345-1235-245-14-56-123-123-13456-234
3028
+ word unrejoicefulnesss 136-1345-1235-245-14-56-123-56-234-234
3029
+ word unrejoicers 136-1345-1235-245-14-1235-234
3030
+ word unrejoicings 136-1345-1235-245-14-1245-234
3031
+ word unrejoicinglys 136-1345-1235-245-14-1245-123-13456-234
3032
+ word unrepaids 136-1345-1235-15-1234-145-234
3033
+ word unsaids 136-1345-234-145-234
3034
+ word walkabouts 2456-1-123-13-1-12-234
3035
+ word wellpaids 2456-15-123-123-1234-145-234
3036
+ word westabouts 2456-15-34-1-12-234
3037
+ word whereabouts 5-156-1-12-234
3038
+ word whereafters 5-156-1-124-234
3039
+ word whereagains 5-156-1-1245-234
3040
+ word whereagainsts 5-156-1-1245-34-234
3041
+ word whereinafters 5-156-35-1-124-234
3042
+ word whereinagains 5-156-35-1-1245-234
3043
+ word womanfriends 2456-135-134-1-1345-124-1235-234
3044
+ word womenfriendss 2456-135-134-26-124-1235-234-234
3045
+ word would'ves 2456-145-3-1236-15-234
3046
+ word wouldas 2456-145-1-234
3047
+ word wouldests 2456-145-15-34-234
3048
+ word wouldn'ts 2456-145-1345-3-2345-234
3049
+ word wouldn't'ves 2456-145-1345-3-2345-3-1236-15-234
3050
+ word wouldsts 2456-145-34-234
3051
+
3052
+ #TODO: what about s'?
3053
+ nofor word 'twould's 3-2345-2456-145-3-234
3054
+ nofor word 'twould've's 3-2345-2456-145-3-1236-15-3-234
3055
+ nofor word 'twoulda's 3-2345-2456-145-1-3-234
3056
+ nofor word 'twouldn't's 3-2345-2456-145-1345-3-2345-3-234
3057
+ nofor word 'twouldn't've's 3-2345-2456-145-1345-3-2345-3-1236-15-3-234
3058
+ nofor word aboutface's 1-12-124-1-14-15-3-234
3059
+ nofor word aboutfaced's 1-12-124-1-14-1246-3-234
3060
+ nofor word aboutfacer's 1-12-124-1-14-12456-3-234
3061
+ nofor word aboutfacing's 1-12-124-1-14-346-3-234
3062
+ nofor word aboutturn's 1-12-2345-136-1235-1345-3-234
3063
+ nofor word aboutturned's 1-12-2345-136-1235-1345-1246-3-234
3064
+ nofor word aboveboard's 1-12-1236-12-135-345-145-3-234
3065
+ nofor word aboveground's 1-12-1236-1245-1235-46-145-3-234
3066
+ nofor word abovementioned's 1-12-1236-134-26-56-1345-1246-3-234
3067
+ nofor word accordingly's 1-14-123-13456-3-234
3068
+ nofor word aforesaid's 1-123456-15-234-145-3-234
3069
+ nofor word afterbattle's 1-124-12-1-2345-2345-123-15-3-234
3070
+ nofor word afterbirth's 1-124-12-24-1235-1456-3-234
3071
+ nofor word afterbreakfast's 1-124-12-1235-2-13-124-1-34-3-234
3072
+ nofor word afterburn's 1-124-12-136-1235-1345-3-234
3073
+ nofor word afterburned's 1-124-12-136-1235-1345-1246-3-234
3074
+ nofor word afterburner's 1-124-12-136-1235-1345-12456-3-234
3075
+ nofor word afterburning's 1-124-12-136-1235-1345-346-3-234
3076
+ nofor word aftercare's 1-124-14-345-15-3-234
3077
+ nofor word afterclap's 1-124-14-123-1-1234-3-234
3078
+ nofor word aftercoffee's 1-124-14-12356-124-15-15-3-234
3079
+ nofor word afterdamp's 1-124-145-1-134-1234-3-234
3080
+ nofor word afterdark's 1-124-145-345-13-3-234
3081
+ nofor word afterdeck's 1-124-145-15-14-13-3-234
3082
+ nofor word afterdinner's 1-124-145-35-1345-12456-3-234
3083
+ nofor word afterflow's 1-124-124-123-246-3-234
3084
+ nofor word aftergame's 1-124-1245-1-134-15-3-234
3085
+ nofor word afterglow's 1-124-1245-123-246-3-234
3086
+ nofor word afterguard's 1-124-1245-136-345-145-3-234
3087
+ nofor word afterhatch's 1-124-125-1-2345-16-3-234
3088
+ nofor word afterhatches's 1-124-125-1-2345-16-15-234-3-234
3089
+ nofor word afterhour's 1-124-125-1256-1235-3-234
3090
+ nofor word afterlife's 1-124-123-24-124-15-3-234
3091
+ nofor word afterlight's 1-124-123-24-126-2345-3-234
3092
+ nofor word afterlives's 1-124-123-24-1236-15-234-3-234
3093
+ nofor word afterlunch's 1-124-123-136-1345-16-3-234
3094
+ nofor word afterlunches's 1-124-123-136-1345-16-15-234-3-234
3095
+ nofor word aftermarket's 1-124-134-345-13-15-2345-3-234
3096
+ nofor word aftermatch's 1-124-134-1-2345-16-3-234
3097
+ nofor word aftermatches's 1-124-134-1-2345-16-15-234-3-234
3098
+ nofor word aftermath's 1-124-134-1-1456-3-234
3099
+ nofor word aftermeeting's 1-124-134-15-15-2345-346-3-234
3100
+ nofor word aftermentioned's 1-124-134-26-56-1345-1246-3-234
3101
+ nofor word aftermidday's 1-124-134-24-145-5-145-3-234
3102
+ nofor word aftermidnight's 1-124-134-24-145-1345-24-126-2345-3-234
3103
+ nofor word aftermost's 1-124-134-135-34-3-234
3104
+ nofor word afternoontea's 1-124-1345-2345-15-1-3-234
3105
+ nofor word afterpain's 1-124-1234-1-35-3-234
3106
+ nofor word afterparties's 1-124-5-1234-24-15-234-3-234
3107
+ nofor word afterparty's 1-124-5-1234-13456-3-234
3108
+ nofor word afterpiece's 1-124-1234-24-15-14-15-3-234
3109
+ nofor word afterplay's 1-124-1234-123-1-13456-3-234
3110
+ nofor word aftersale's 1-124-234-1-123-15-3-234
3111
+ nofor word afterschool's 1-124-234-16-135-135-123-3-234
3112
+ nofor word aftersensation's 1-124-234-26-234-1-56-1345-3-234
3113
+ nofor word aftershave's 1-124-146-1-1236-15-3-234
3114
+ nofor word aftershock's 1-124-146-135-14-13-3-234
3115
+ nofor word aftershow's 1-124-146-246-3-234
3116
+ nofor word aftershower's 1-124-146-246-12456-3-234
3117
+ nofor word aftersupper's 1-124-234-136-1234-1234-12456-3-234
3118
+ nofor word aftertaste's 1-124-2345-1-34-15-3-234
3119
+ nofor word aftertax's 1-124-2345-1-1346-3-234
3120
+ nofor word aftertaxes's 1-124-2345-1-1346-15-234-3-234
3121
+ nofor word aftertea's 1-124-2345-15-1-3-234
3122
+ nofor word aftertheater's 1-124-2346-1-2345-12456-3-234
3123
+ nofor word aftertheatre's 1-124-2346-1-2345-1235-15-3-234
3124
+ nofor word afterthought's 1-124-1456-5-1256-3-234
3125
+ nofor word aftertime's 1-124-5-2345-3-234
3126
+ nofor word aftertreatment's 1-124-2345-1235-2-2345-56-2345-3-234
3127
+ nofor word afterword's 1-124-45-2456-3-234
3128
+ nofor word afterwork's 1-124-5-2456-3-234
3129
+ nofor word afterworld's 1-124-456-2456-3-234
3130
+ nofor word apperceive's 1-1234-1234-12456-14-1236-3-234
3131
+ nofor word apperceived's 1-1234-1234-12456-14-1236-145-3-234
3132
+ nofor word apperceiver's 1-1234-1234-12456-14-1236-1235-3-234
3133
+ nofor word apperceiving's 1-1234-1234-12456-14-1236-1245-3-234
3134
+ nofor word archdeceiver's 345-16-145-14-1236-1235-3-234
3135
+ nofor word beforehand's 23-124-125-12346-3-234
3136
+ nofor word beforementioned's 23-124-134-26-56-1345-1246-3-234
3137
+ nofor word befriend's 23-124-1235-3-234
3138
+ nofor word behindhand's 23-125-125-12346-3-234
3139
+ nofor word belittle's 23-123-123-3-234
3140
+ nofor word belittled's 23-123-123-145-3-234
3141
+ nofor word belittlement's 23-123-123-56-2345-3-234
3142
+ nofor word belittler's 23-123-123-1235-3-234
3143
+ nofor word belowdeck's 23-123-145-15-14-13-3-234
3144
+ nofor word belowground's 23-123-1245-1235-46-145-3-234
3145
+ nofor word belowmentioned's 23-123-134-26-56-1345-1246-3-234
3146
+ nofor word beneathdeck's 23-1345-145-15-14-13-3-234
3147
+ nofor word beneathground's 23-1345-1245-1235-46-145-3-234
3148
+ nofor word betweendeck's 23-2345-145-15-14-13-3-234
3149
+ nofor word betweentime's 23-2345-5-2345-3-234
3150
+ nofor word betweenwhile's 23-2345-156-24-123-15-3-234
3151
+ nofor word blindfish's 12-123-124-24-146-3-234
3152
+ nofor word blindfishes's 12-123-124-24-146-15-234-3-234
3153
+ nofor word blindfold's 12-123-124-135-123-145-3-234
3154
+ nofor word blindfolded's 12-123-124-135-123-145-1246-3-234
3155
+ nofor word blindfolder's 12-123-124-135-123-145-12456-3-234
3156
+ nofor word blindfolding's 12-123-124-135-123-145-346-3-234
3157
+ nofor word blindly's 12-123-123-13456-3-234
3158
+ nofor word blindman's 12-123-134-1-1345-3-234
3159
+ nofor word blindmen's 12-123-134-26-3-234
3160
+ nofor word blindness's 12-123-56-234-3-234
3161
+ nofor word blindnesses's 12-123-56-234-15-234-3-234
3162
+ nofor word blindside's 12-123-234-24-145-15-3-234
3163
+ nofor word blindsided's 12-123-234-24-145-1246-3-234
3164
+ nofor word blindsider's 12-123-234-24-145-12456-3-234
3165
+ nofor word blindsiding's 12-123-234-24-145-346-3-234
3166
+ nofor word blindsight's 12-123-234-24-126-2345-3-234
3167
+ nofor word blindstories's 12-123-34-135-1235-24-15-234-3-234
3168
+ nofor word blindstory's 12-123-34-135-1235-13456-3-234
3169
+ nofor word blindworm's 12-123-2456-135-1235-134-3-234
3170
+ nofor word bloodletter's 12-123-135-135-145-123-1235-3-234
3171
+ nofor word boyfriend's 12-135-13456-124-1235-3-234
3172
+ nofor word brailled's 12-1235-123-145-3-234
3173
+ nofor word brailler's 12-1235-123-1235-3-234
3174
+ nofor word braillewriter's 12-1235-123-2456-1235-24-2345-12456-3-234
3175
+ nofor word braillewriting's 12-1235-123-2456-1235-24-2345-346-3-234
3176
+ nofor word brailley's 12-1235-123-13456-3-234
3177
+ nofor word brainchildren's 12-1235-1-35-16-1345-3-234
3178
+ nofor word chainletter's 16-1-35-123-1235-3-234
3179
+ nofor word children'swear's 16-1345-3-234-2456-15-345-3-234
3180
+ nofor word colorblind's 14-135-123-135-1235-12-123-3-234
3181
+ nofor word colorblindness's 14-135-123-135-1235-12-123-56-234-3-234
3182
+ nofor word colorblindnesses's 14-135-123-135-1235-12-123-56-234-15-234-3-234
3183
+ nofor word colourblind's 14-135-123-1256-1235-12-123-3-234
3184
+ nofor word colourblindness's 14-135-123-1256-1235-12-123-56-234-3-234
3185
+ nofor word colourblindnesses's 14-135-123-1256-1235-12-123-56-234-15-234-3-234
3186
+ nofor word conceived's 25-14-1236-145-3-234
3187
+ nofor word conceiver's 25-14-1236-1235-3-234
3188
+ nofor word could've's 14-145-3-1236-15-3-234
3189
+ nofor word coulda's 14-145-1-3-234
3190
+ nofor word couldest's 14-145-15-34-3-234
3191
+ nofor word couldn't's 14-145-1345-3-2345-3-234
3192
+ nofor word couldn't've's 14-145-1345-3-2345-3-1236-15-3-234
3193
+ nofor word couldst's 14-145-34-3-234
3194
+ nofor word deafblind's 145-2-124-12-123-3-234
3195
+ nofor word deafblindness's 145-2-124-12-123-56-234-3-234
3196
+ nofor word deafblindnesses's 145-2-124-12-123-56-234-15-234-3-234
3197
+ nofor word deceived's 145-14-1236-145-3-234
3198
+ nofor word deceiver's 145-14-1236-1235-3-234
3199
+ nofor word declared's 145-14-123-145-3-234
3200
+ nofor word declarer's 145-14-123-1235-3-234
3201
+ nofor word defriend's 145-15-124-1235-3-234
3202
+ nofor word do-it-yourselfer's 145-36-1346-36-13456-1235-124-12456-3-234
3203
+ nofor word doublequick's 145-1256-12-123-15-12345-13-3-234
3204
+ nofor word eastabout's 15-1-34-1-12-3-234
3205
+ nofor word feelgood's 124-15-15-123-1245-145-3-234
3206
+ nofor word feetfirst's 124-15-15-2345-124-34-3-234
3207
+ nofor word firstaid's 124-34-1-24-145-3-234
3208
+ nofor word firstaider's 124-34-1-24-145-12456-3-234
3209
+ nofor word firstborn's 124-34-12-135-1235-1345-3-234
3210
+ nofor word firstclass's 124-34-14-123-1-234-234-3-234
3211
+ nofor word firstclasses's 124-34-14-123-1-234-234-15-234-3-234
3212
+ nofor word firstday's 124-34-5-145-3-234
3213
+ nofor word firstdayer's 124-34-5-145-12456-3-234
3214
+ nofor word firstfruit's 124-34-124-1235-136-24-2345-3-234
3215
+ nofor word firstfruiting's 124-34-124-1235-136-24-2345-346-3-234
3216
+ nofor word firstgeneration's 124-34-1245-26-12456-1-56-1345-3-234
3217
+ nofor word firsthand's 124-34-125-12346-3-234
3218
+ nofor word firsthanded's 124-34-125-12346-1246-3-234
3219
+ nofor word firstling's 124-34-123-346-3-234
3220
+ nofor word firstly's 124-34-123-13456-3-234
3221
+ nofor word firstness's 124-34-56-234-3-234
3222
+ nofor word firstnight's 124-34-1345-24-126-2345-3-234
3223
+ nofor word firstnighter's 124-34-1345-24-126-2345-12456-3-234
3224
+ nofor word firstrate's 124-34-1235-1-2345-15-3-234
3225
+ nofor word firstrated's 124-34-1235-1-2345-1246-3-234
3226
+ nofor word firstrating's 124-34-1235-1-2345-346-3-234
3227
+ nofor word firststring's 124-34-34-1235-346-3-234
3228
+ nofor word forasmuch's 123456-1-234-134-16-3-234
3229
+ nofor word foresaid's 123456-15-234-145-3-234
3230
+ nofor word fosterchildren's 124-135-34-12456-16-1345-3-234
3231
+ nofor word friendless's 124-1235-46-234-3-234
3232
+ nofor word friendlessness's 124-1235-46-234-56-234-3-234
3233
+ nofor word friendlessnesses's 124-1235-46-234-56-234-15-234-3-234
3234
+ nofor word friendlier's 124-1235-123-24-12456-3-234
3235
+ nofor word friendlies's 124-1235-123-24-15-234-3-234
3236
+ nofor word friendliest's 124-1235-123-24-15-34-3-234
3237
+ nofor word friendliness's 124-1235-123-24-56-234-3-234
3238
+ nofor word friendlinesses's 124-1235-123-24-56-234-15-234-3-234
3239
+ nofor word friendly's 124-1235-123-13456-3-234
3240
+ nofor word friendship's 124-1235-146-24-1234-3-234
3241
+ nofor word gadabout's 1245-1-145-1-12-3-234
3242
+ nofor word gainsaid's 1245-1-35-234-145-3-234
3243
+ nofor word galfriend's 1245-1-123-124-1235-3-234
3244
+ nofor word gentlemanfriend's 1245-26-2345-123-15-134-1-1345-124-1235-3-234
3245
+ nofor word gentlemenfriends's 1245-26-2345-123-15-134-26-124-1235-234-3-234
3246
+ nofor word girlfriend's 1245-24-1235-123-124-1235-3-234
3247
+ nofor word godchildren's 1245-135-145-16-1345-3-234
3248
+ nofor word goodafternoon's 1245-145-1-124-1345-3-234
3249
+ nofor word goodby's 1245-145-12-13456-3-234
3250
+ nofor word goodbye's 1245-145-12-13456-15-3-234
3251
+ nofor word goodbyeing's 1245-145-12-13456-15-346-3-234
3252
+ nofor word goodbying's 1245-145-12-13456-346-3-234
3253
+ nofor word goodday's 1245-145-5-145-3-234
3254
+ nofor word gooder's 1245-145-12456-3-234
3255
+ nofor word goodest's 1245-145-15-34-3-234
3256
+ nofor word goodevening's 1245-145-15-1236-26-346-3-234
3257
+ nofor word goodfellow's 1245-145-124-15-123-123-246-3-234
3258
+ nofor word goodfellowship's 1245-145-124-15-123-123-246-146-24-1234-3-234
3259
+ nofor word goodhearted's 1245-145-125-15-345-2345-1246-3-234
3260
+ nofor word goodheartedly's 1245-145-125-15-345-2345-1246-123-13456-3-234
3261
+ nofor word goodheartedness's 1245-145-125-15-345-2345-1246-56-234-3-234
3262
+ nofor word goodhumor's 1245-145-125-136-134-135-1235-3-234
3263
+ nofor word goodhumored's 1245-145-125-136-134-135-1235-1246-3-234
3264
+ nofor word goodhumoredly's 1245-145-125-136-134-135-1235-1246-123-13456-3-234
3265
+ nofor word goodhumoredness's 1245-145-125-136-134-135-1235-1246-56-234-3-234
3266
+ nofor word goodhumorednesses's 1245-145-125-136-134-135-1235-1246-56-234-15-234-3-234
3267
+ nofor word goodhumour's 1245-145-125-136-134-1256-1235-3-234
3268
+ nofor word goodhumoured's 1245-145-125-136-134-1256-1235-1246-3-234
3269
+ nofor word goodhumouredly's 1245-145-125-136-134-1256-1235-1246-123-13456-3-234
3270
+ nofor word goodhumouredness's 1245-145-125-136-134-1256-1235-1246-56-234-3-234
3271
+ nofor word goodhumourednesses's 1245-145-125-136-134-1256-1235-1246-56-234-15-234-3-234
3272
+ nofor word goodie's 1245-145-24-15-3-234
3273
+ nofor word goodish's 1245-145-24-146-3-234
3274
+ nofor word goodlier's 1245-145-123-24-12456-3-234
3275
+ nofor word goodliest's 1245-145-123-24-15-34-3-234
3276
+ nofor word goodliness's 1245-145-123-24-56-234-3-234
3277
+ nofor word goodlook's 1245-145-123-135-135-13-3-234
3278
+ nofor word goodlooker's 1245-145-123-135-135-13-12456-3-234
3279
+ nofor word goodlooking's 1245-145-123-135-135-13-346-3-234
3280
+ nofor word goodly's 1245-145-123-13456-3-234
3281
+ nofor word goodman's 1245-145-134-1-1345-3-234
3282
+ nofor word goodmen's 1245-145-134-26-3-234
3283
+ nofor word goodmorning's 1245-145-134-135-1235-1345-346-3-234
3284
+ nofor word goodnature's 1245-145-1345-1-2345-136-1235-15-3-234
3285
+ nofor word goodnatured's 1245-145-1345-1-2345-136-1235-1246-3-234
3286
+ nofor word goodnaturedly's 1245-145-1345-1-2345-136-1235-1246-123-13456-3-234
3287
+ nofor word goodnaturedness's 1245-145-1345-1-2345-136-1235-1246-56-234-3-234
3288
+ nofor word goodness's 1245-145-56-234-3-234
3289
+ nofor word goodnesses's 1245-145-56-234-15-234-3-234
3290
+ nofor word goodnight's 1245-145-1345-24-126-2345-3-234
3291
+ nofor word goodsize's 1245-145-234-24-1356-15-3-234
3292
+ nofor word goodsized's 1245-145-234-24-1356-1246-3-234
3293
+ nofor word goodtempered's 1245-145-2345-15-134-1234-12456-1246-3-234
3294
+ nofor word goodtemperedly's 1245-145-2345-15-134-1234-12456-1246-123-13456-3-234
3295
+ nofor word goodtime's 1245-145-5-2345-3-234
3296
+ nofor word goodun's 1245-145-136-1345-3-234
3297
+ nofor word goodwife's 1245-145-2456-24-124-15-3-234
3298
+ nofor word goodwill's 1245-145-2456-24-123-123-3-234
3299
+ nofor word goodwilled's 1245-145-2456-24-123-123-1246-3-234
3300
+ nofor word goodwives's 1245-145-2456-24-1236-15-234-3-234
3301
+ nofor word goody's 1245-145-13456-3-234
3302
+ nofor word goodyear's 1245-145-13456-15-345-3-234
3303
+ nofor word grandchildren's 1245-1235-12346-16-1345-3-234
3304
+ nofor word greataunt's 1245-1235-2345-1-136-1345-2345-3-234
3305
+ nofor word greatbatch's 1245-1235-2345-12-1-2345-16-3-234
3306
+ nofor word greatcircle's 1245-1235-2345-14-24-1235-14-123-15-3-234
3307
+ nofor word greatcoat's 1245-1235-2345-14-135-1-2345-3-234
3308
+ nofor word greaten's 1245-1235-2345-26-3-234
3309
+ nofor word greatened's 1245-1235-2345-26-1246-3-234
3310
+ nofor word greatener's 1245-1235-2345-26-12456-3-234
3311
+ nofor word greatening's 1245-1235-2345-26-346-3-234
3312
+ nofor word greater's 1245-1235-2345-12456-3-234
3313
+ nofor word greatest's 1245-1235-2345-15-34-3-234
3314
+ nofor word greatgrandaunt's 1245-1235-2345-1245-1235-12346-1-136-1345-2345-3-234
3315
+ nofor word greatgrandchild's 1245-1235-2345-1245-1235-12346-16-24-123-145-3-234
3316
+ nofor word greatgrandchildren's 1245-1235-2345-1245-1235-12346-16-1345-3-234
3317
+ nofor word greatgranddad's 1245-1235-2345-1245-1235-12346-145-1-145-3-234
3318
+ nofor word greatgranddaughter's 1245-1235-2345-1245-1235-12346-145-1-136-126-2345-12456-3-234
3319
+ nofor word greatgrandfather's 1245-1235-2345-1245-1235-12346-5-124-3-234
3320
+ nofor word greatgrandfatherhood's 1245-1235-2345-1245-1235-12346-5-124-125-135-135-145-3-234
3321
+ nofor word greatgrandma's 1245-1235-2345-1245-1235-12346-134-1-3-234
3322
+ nofor word greatgrandmother's 1245-1235-2345-1245-1235-12346-5-134-3-234
3323
+ nofor word greatgrandmotherhood's 1245-1235-2345-1245-1235-12346-5-134-125-135-135-145-3-234
3324
+ nofor word greatgrandnephew's 1245-1235-2345-1245-1235-12346-1345-15-1234-125-15-2456-3-234
3325
+ nofor word greatgrandniece's 1245-1235-2345-1245-1235-12346-1345-24-15-14-15-3-234
3326
+ nofor word greatgrandpa's 1245-1235-2345-1245-1235-12346-1234-1-3-234
3327
+ nofor word greatgrandparent's 1245-1235-2345-1245-1235-12346-1234-345-26-2345-3-234
3328
+ nofor word greatgrandparenthood's 1245-1235-2345-1245-1235-12346-1234-345-26-2345-125-135-135-145-3-234
3329
+ nofor word greatgrandson's 1245-1235-2345-1245-1235-12346-234-135-1345-3-234
3330
+ nofor word greatgranduncle's 1245-1235-2345-1245-1235-12346-136-1345-14-123-15-3-234
3331
+ nofor word greathearted's 1245-1235-2345-125-15-345-2345-1246-3-234
3332
+ nofor word greatheartedly's 1245-1235-2345-125-15-345-2345-1246-123-13456-3-234
3333
+ nofor word greatheartedness's 1245-1235-2345-125-15-345-2345-1246-56-234-3-234
3334
+ nofor word greatheartednesses's 1245-1235-2345-125-15-345-2345-1246-56-234-15-234-3-234
3335
+ nofor word greatly's 1245-1235-2345-123-13456-3-234
3336
+ nofor word greatnephew's 1245-1235-2345-1345-15-1234-125-15-2456-3-234
3337
+ nofor word greatness's 1245-1235-2345-56-234-3-234
3338
+ nofor word greatnesses's 1245-1235-2345-56-234-15-234-3-234
3339
+ nofor word greatniece's 1245-1235-2345-1345-24-15-14-15-3-234
3340
+ nofor word greatsword's 1245-1235-2345-234-45-2456-3-234
3341
+ nofor word greatuncle's 1245-1235-2345-136-1345-14-123-15-3-234
3342
+ nofor word guyfriend's 1245-136-13456-124-1235-3-234
3343
+ nofor word hateletter's 125-1-2345-15-123-1235-3-234
3344
+ nofor word headfirst's 125-2-145-124-34-3-234
3345
+ nofor word hereabout's 5-125-1-12-3-234
3346
+ nofor word hereafter's 5-125-1-124-3-234
3347
+ nofor word hereagain's 5-125-1-1245-3-234
3348
+ nofor word hereagainst's 5-125-1-1245-34-3-234
3349
+ nofor word hereinabove's 5-125-35-1-12-1236-3-234
3350
+ nofor word hereinafter's 5-125-35-1-124-3-234
3351
+ nofor word hereinagain's 5-125-35-1-1245-3-234
3352
+ nofor word highlypaid's 125-24-126-123-13456-1234-145-3-234
3353
+ nofor word himbo's 125-134-12-135-3-234
3354
+ nofor word himboes's 125-134-12-135-15-234-3-234
3355
+ nofor word illpaid's 24-123-123-1234-145-3-234
3356
+ nofor word immediately's 24-134-134-123-13456-3-234
3357
+ nofor word immediateness's 24-134-134-56-234-3-234
3358
+ nofor word inasmuch's 35-1-234-134-16-3-234
3359
+ nofor word insomuch's 35-234-135-134-16-3-234
3360
+ nofor word knockabout's 13-1345-135-14-13-1-12-3-234
3361
+ nofor word ladyfriend's 123-1-145-13456-124-1235-3-234
3362
+ nofor word layabout's 123-1-13456-1-12-3-234
3363
+ nofor word letterbodies's 123-1235-12-135-145-24-15-234-3-234
3364
+ nofor word letterbody's 123-1235-12-135-145-13456-3-234
3365
+ nofor word letterbomb's 123-1235-12-135-134-12-3-234
3366
+ nofor word letterbombed's 123-1235-12-135-134-12-1246-3-234
3367
+ nofor word letterbomber's 123-1235-12-135-134-12-12456-3-234
3368
+ nofor word letterbombing's 123-1235-12-135-134-12-346-3-234
3369
+ nofor word letterbox's 123-1235-12-135-1346-3-234
3370
+ nofor word letterboxed's 123-1235-12-135-1346-1246-3-234
3371
+ nofor word letterboxer's 123-1235-12-135-1346-12456-3-234
3372
+ nofor word letterboxes's 123-1235-12-135-1346-15-234-3-234
3373
+ nofor word letterboxing's 123-1235-12-135-1346-346-3-234
3374
+ nofor word lettered's 123-1235-1246-3-234
3375
+ nofor word letterer's 123-1235-12456-3-234
3376
+ nofor word letterform's 123-1235-123456-134-3-234
3377
+ nofor word letterhead's 123-1235-125-2-145-3-234
3378
+ nofor word letterheading's 123-1235-125-2-145-346-3-234
3379
+ nofor word lettering's 123-1235-346-3-234
3380
+ nofor word letterman's 123-1235-134-1-1345-3-234
3381
+ nofor word lettermen's 123-1235-134-26-3-234
3382
+ nofor word letteropener's 123-1235-135-1234-26-12456-3-234
3383
+ nofor word letterperfect's 123-1235-1234-12456-124-15-14-2345-3-234
3384
+ nofor word letterpress's 123-1235-1234-1235-15-234-234-3-234
3385
+ nofor word letterpressed's 123-1235-1234-1235-15-234-234-1246-3-234
3386
+ nofor word letterpresses's 123-1235-1234-1235-15-234-234-15-234-3-234
3387
+ nofor word letterpressing's 123-1235-1234-1235-15-234-234-346-3-234
3388
+ nofor word letterquality's 123-1235-12345-136-1-123-56-13456-3-234
3389
+ nofor word letterspace's 123-1235-234-1234-1-14-15-3-234
3390
+ nofor word letterspaced's 123-1235-234-1234-1-14-1246-3-234
3391
+ nofor word letterspacing's 123-1235-234-1234-1-14-346-3-234
3392
+ nofor word lettertext's 123-1235-2345-15-1346-2345-3-234
3393
+ nofor word littled's 123-123-145-3-234
3394
+ nofor word littleneck's 123-123-1345-15-14-13-3-234
3395
+ nofor word littleness's 123-123-56-234-3-234
3396
+ nofor word littlenesses's 123-123-56-234-15-234-3-234
3397
+ nofor word littler's 123-123-1235-3-234
3398
+ nofor word littlest's 123-123-34-3-234
3399
+ nofor word lovechildren's 123-135-1236-15-16-1345-3-234
3400
+ nofor word loveletter's 123-135-1236-15-123-1235-3-234
3401
+ nofor word lowlypaid's 123-246-123-13456-1234-145-3-234
3402
+ nofor word manfriend's 134-1-1345-124-1235-3-234
3403
+ nofor word menfriends's 134-26-124-1235-234-3-234
3404
+ nofor word midafternoon's 134-24-145-1-124-1345-3-234
3405
+ nofor word misbraille's 134-24-234-12-1235-123-3-234
3406
+ nofor word misbrailled's 134-24-234-12-1235-123-145-3-234
3407
+ nofor word misperceive's 134-24-234-1234-12456-14-1236-3-234
3408
+ nofor word misperceived's 134-24-234-1234-12456-14-1236-145-3-234
3409
+ nofor word misperceiver's 134-24-234-1234-12456-14-1236-1235-3-234
3410
+ nofor word misperceiving's 134-24-234-1234-12456-14-1236-1245-3-234
3411
+ nofor word missaid's 134-24-234-234-145-3-234
3412
+ nofor word morningafter's 134-135-1235-1345-346-1-124-3-234
3413
+ nofor word muchly's 134-16-123-13456-3-234
3414
+ nofor word muchness's 134-16-56-234-3-234
3415
+ nofor word must've's 134-34-3-1236-15-3-234
3416
+ nofor word musta's 134-34-1-3-234
3417
+ nofor word mustard's 134-34-345-145-3-234
3418
+ nofor word mustardy's 134-34-345-145-13456-3-234
3419
+ nofor word mustier's 134-34-24-12456-3-234
3420
+ nofor word mustiest's 134-34-24-15-34-3-234
3421
+ nofor word mustily's 134-34-24-123-13456-3-234
3422
+ nofor word mustiness's 134-34-24-56-234-3-234
3423
+ nofor word mustn't's 134-34-1345-3-2345-3-234
3424
+ nofor word mustn't've's 134-34-1345-3-2345-3-1236-15-3-234
3425
+ nofor word musty's 134-34-13456-3-234
3426
+ nofor word newsletter's 1345-15-2456-234-123-1235-3-234
3427
+ nofor word nonesuch's 1345-5-135-234-16-3-234
3428
+ nofor word nonsuch's 1345-135-1345-234-16-3-234
3429
+ nofor word northabout's 1345-135-1235-1456-1-12-3-234
3430
+ nofor word overmuch's 135-1236-12456-134-16-3-234
3431
+ nofor word overpaid's 135-1236-12456-1234-145-3-234
3432
+ nofor word penfriend's 1234-26-124-1235-3-234
3433
+ nofor word perceived's 1234-12456-14-1236-145-3-234
3434
+ nofor word perceiver's 1234-12456-14-1236-1235-3-234
3435
+ nofor word perhapses's 1234-12456-125-15-234-3-234
3436
+ nofor word poorlypaid's 1234-135-135-1235-123-13456-1234-145-3-234
3437
+ nofor word postpaid's 1234-135-34-1234-145-3-234
3438
+ nofor word preceive's 1234-1235-14-1236-3-234
3439
+ nofor word preceiver's 1234-1235-14-1236-1235-3-234
3440
+ nofor word preceiving's 1234-1235-14-1236-1245-3-234
3441
+ nofor word prepaid's 1234-1235-15-1234-145-3-234
3442
+ nofor word purblind's 1234-136-1235-12-123-3-234
3443
+ nofor word purblindly's 1234-136-1235-12-123-123-13456-3-234
3444
+ nofor word purblindness's 1234-136-1235-12-123-56-234-3-234
3445
+ nofor word purblindnesses's 1234-136-1235-12-123-56-234-15-234-3-234
3446
+ nofor word quickdraw's 12345-13-145-1235-1-2456-3-234
3447
+ nofor word quicken's 12345-13-26-3-234
3448
+ nofor word quickened's 12345-13-26-1246-3-234
3449
+ nofor word quickener's 12345-13-26-12456-3-234
3450
+ nofor word quickening's 12345-13-26-346-3-234
3451
+ nofor word quicker's 12345-13-12456-3-234
3452
+ nofor word quickest's 12345-13-15-34-3-234
3453
+ nofor word quickfire's 12345-13-124-24-1235-15-3-234
3454
+ nofor word quickfiring's 12345-13-124-24-1235-346-3-234
3455
+ nofor word quickfreeze's 12345-13-124-1235-15-15-1356-15-3-234
3456
+ nofor word quickfreezing's 12345-13-124-1235-15-15-1356-346-3-234
3457
+ nofor word quickfroze's 12345-13-124-1235-135-1356-15-3-234
3458
+ nofor word quickfrozen's 12345-13-124-1235-135-1356-26-3-234
3459
+ nofor word quickie's 12345-13-24-15-3-234
3460
+ nofor word quickish's 12345-13-24-146-3-234
3461
+ nofor word quickishly's 12345-13-24-146-123-13456-3-234
3462
+ nofor word quicklime's 12345-13-123-24-134-15-3-234
3463
+ nofor word quickly's 12345-13-123-13456-3-234
3464
+ nofor word quickness's 12345-13-56-234-3-234
3465
+ nofor word quicknesses's 12345-13-56-234-15-234-3-234
3466
+ nofor word quicksand's 12345-13-234-12346-3-234
3467
+ nofor word quickset's 12345-13-234-15-2345-3-234
3468
+ nofor word quicksilver's 12345-13-234-24-123-1236-12456-3-234
3469
+ nofor word quicksilvered's 12345-13-234-24-123-1236-12456-1246-3-234
3470
+ nofor word quicksilvering's 12345-13-234-24-123-1236-12456-346-3-234
3471
+ nofor word quicksnap's 12345-13-234-1345-1-1234-3-234
3472
+ nofor word quickstep's 12345-13-34-15-1234-3-234
3473
+ nofor word quickstepped's 12345-13-34-15-1234-1234-1246-3-234
3474
+ nofor word quickstepper's 12345-13-34-15-1234-1234-12456-3-234
3475
+ nofor word quickstepping's 12345-13-34-15-1234-1234-346-3-234
3476
+ nofor word quicktempered's 12345-13-2345-15-134-1234-12456-1246-3-234
3477
+ nofor word quicktime's 12345-13-5-2345-3-234
3478
+ nofor word quickwitted's 12345-13-2456-24-2345-2345-1246-3-234
3479
+ nofor word quickwittedly's 12345-13-2456-24-2345-2345-1246-123-13456-3-234
3480
+ nofor word quickwittedness's 12345-13-2456-24-2345-2345-1246-56-234-3-234
3481
+ nofor word quicky's 12345-13-13456-3-234
3482
+ nofor word readacross's 1235-2-145-1-14-1235-3-234
3483
+ nofor word rebraille's 1235-15-12-1235-123-3-234
3484
+ nofor word rebrailled's 1235-15-12-1235-123-145-3-234
3485
+ nofor word rebrailler's 1235-15-12-1235-123-1235-3-234
3486
+ nofor word received's 1235-14-1236-145-3-234
3487
+ nofor word receiver's 1235-14-1236-1235-3-234
3488
+ nofor word receivership's 1235-14-1236-1235-146-24-1234-3-234
3489
+ nofor word rejoiced's 1235-245-14-145-3-234
3490
+ nofor word rejoiceful's 1235-245-14-56-123-3-234
3491
+ nofor word rejoicefully's 1235-245-14-56-123-123-13456-3-234
3492
+ nofor word rejoicefulness's 1235-245-14-56-123-56-234-3-234
3493
+ nofor word rejoicer's 1235-245-14-1235-3-234
3494
+ nofor word rejoicingly's 1235-245-14-1245-123-13456-3-234
3495
+ nofor word reletter's 1235-15-123-1235-3-234
3496
+ nofor word relettered's 1235-15-123-1235-1246-3-234
3497
+ nofor word relettering's 1235-15-123-1235-346-3-234
3498
+ nofor word repaid's 1235-15-1234-145-3-234
3499
+ nofor word rightabout's 5-1235-1-12-3-234
3500
+ nofor word roundabout's 1235-46-145-1-12-3-234
3501
+ nofor word roustabout's 1235-1256-34-1-12-3-234
3502
+ nofor word runabout's 1235-136-1345-1-12-3-234
3503
+ nofor word saidest's 234-145-15-34-3-234
3504
+ nofor word saidst's 234-145-34-3-234
3505
+ nofor word scattergood's 234-14-1-2345-2345-12456-1245-145-3-234
3506
+ nofor word schoolchildren's 234-16-135-135-123-16-1345-3-234
3507
+ nofor word schoolfriend's 234-16-135-135-123-124-1235-3-234
3508
+ nofor word should've's 146-145-3-1236-15-3-234
3509
+ nofor word shoulda's 146-145-1-3-234
3510
+ nofor word shouldest's 146-145-15-34-3-234
3511
+ nofor word shouldn't's 146-145-1345-3-2345-3-234
3512
+ nofor word shouldn't've's 146-145-1345-3-2345-3-1236-15-3-234
3513
+ nofor word shouldst's 146-145-34-3-234
3514
+ nofor word snowblind's 234-1345-246-12-123-3-234
3515
+ nofor word snowblindness's 234-1345-246-12-123-56-234-3-234
3516
+ nofor word snowblindnesses's 234-1345-246-12-123-56-234-15-234-3-234
3517
+ nofor word somesuch's 5-234-234-16-3-234
3518
+ nofor word southabout's 234-1256-1456-1-12-3-234
3519
+ nofor word stepchildren's 34-15-1234-16-1345-3-234
3520
+ nofor word stirabout's 34-24-1235-1-12-3-234
3521
+ nofor word suchlike's 234-16-123-24-13-15-3-234
3522
+ nofor word supergood's 234-136-1234-12456-1245-145-3-234
3523
+ nofor word superquick's 234-136-1234-12456-12345-13-3-234
3524
+ nofor word tailfirst's 2345-1-24-123-124-34-3-234
3525
+ nofor word thereabout's 5-2346-1-12-3-234
3526
+ nofor word thereafter's 5-2346-1-124-3-234
3527
+ nofor word thereagain's 5-2346-1-1245-3-234
3528
+ nofor word thereagainst's 5-2346-1-1245-34-3-234
3529
+ nofor word thereinafter's 5-2346-35-1-124-3-234
3530
+ nofor word thereinagain's 5-2346-35-1-1245-3-234
3531
+ nofor word togetherness's 2345-1245-1235-56-234-3-234
3532
+ nofor word turnabout's 2345-136-1235-1345-1-12-3-234
3533
+ nofor word unaccording's 136-1345-1-14-3-234
3534
+ nofor word unaccordingly's 136-1345-1-14-123-13456-3-234
3535
+ nofor word unblindfold's 136-1345-12-123-124-135-123-145-3-234
3536
+ nofor word unblindfolded's 136-1345-12-123-124-135-123-145-1246-3-234
3537
+ nofor word unblindfolding's 136-1345-12-123-124-135-123-145-346-3-234
3538
+ nofor word unbraille's 136-1345-12-1235-123-3-234
3539
+ nofor word unbrailled's 136-1345-12-1235-123-145-3-234
3540
+ nofor word undeceive's 136-1345-145-14-1236-3-234
3541
+ nofor word undeceived's 136-1345-145-14-1236-145-3-234
3542
+ nofor word undeceiver's 136-1345-145-14-1236-1235-3-234
3543
+ nofor word undeceiving's 136-1345-145-14-1236-1245-3-234
3544
+ nofor word undeclare's 136-1345-145-14-123-3-234
3545
+ nofor word undeclared's 136-1345-145-14-123-145-3-234
3546
+ nofor word underpaid's 5-136-1234-145-3-234
3547
+ nofor word unfriend's 136-1345-124-1235-3-234
3548
+ nofor word unfriendlier's 136-1345-124-1235-123-24-12456-3-234
3549
+ nofor word unfriendliest's 136-1345-124-1235-123-24-15-34-3-234
3550
+ nofor word unfriendliness's 136-1345-124-1235-123-24-56-234-3-234
3551
+ nofor word unfriendlinesses's 136-1345-124-1235-123-24-56-234-15-234-3-234
3552
+ nofor word unfriendly's 136-1345-124-1235-123-13456-3-234
3553
+ nofor word unlettered's 136-1345-123-1235-1246-3-234
3554
+ nofor word unnecessary's 136-1345-1345-15-14-3-234
3555
+ nofor word unpaid's 136-1345-1234-145-3-234
3556
+ nofor word unperceive's 136-1345-1234-12456-14-1236-3-234
3557
+ nofor word unperceived's 136-1345-1234-12456-14-1236-145-3-234
3558
+ nofor word unperceiving's 136-1345-1234-12456-14-1236-1245-3-234
3559
+ nofor word unquick's 136-1345-12345-13-3-234
3560
+ nofor word unreceived's 136-1345-1235-14-1236-145-3-234
3561
+ nofor word unrejoice's 136-1345-1235-245-14-3-234
3562
+ nofor word unrejoiced's 136-1345-1235-245-14-145-3-234
3563
+ nofor word unrejoiceful's 136-1345-1235-245-14-56-123-3-234
3564
+ nofor word unrejoicefully's 136-1345-1235-245-14-56-123-123-13456-3-234
3565
+ nofor word unrejoicefulness's 136-1345-1235-245-14-56-123-56-234-3-234
3566
+ nofor word unrejoicer's 136-1345-1235-245-14-1235-3-234
3567
+ nofor word unrejoicing's 136-1345-1235-245-14-1245-3-234
3568
+ nofor word unrejoicingly's 136-1345-1235-245-14-1245-123-13456-3-234
3569
+ nofor word unrepaid's 136-1345-1235-15-1234-145-3-234
3570
+ nofor word unsaid's 136-1345-234-145-3-234
3571
+ nofor word walkabout's 2456-1-123-13-1-12-3-234
3572
+ nofor word wellpaid's 2456-15-123-123-1234-145-3-234
3573
+ nofor word westabout's 2456-15-34-1-12-3-234
3574
+ nofor word whereabout's 5-156-1-12-3-234
3575
+ nofor word whereafter's 5-156-1-124-3-234
3576
+ nofor word whereagain's 5-156-1-1245-3-234
3577
+ nofor word whereagainst's 5-156-1-1245-34-3-234
3578
+ nofor word whereinafter's 5-156-35-1-124-3-234
3579
+ nofor word whereinagain's 5-156-35-1-1245-3-234
3580
+ nofor word womanfriend's 2456-135-134-1-1345-124-1235-3-234
3581
+ nofor word womenfriends's 2456-135-134-26-124-1235-234-3-234
3582
+ nofor word would've's 2456-145-3-1236-15-3-234
3583
+ nofor word woulda's 2456-145-1-3-234
3584
+ nofor word wouldest's 2456-145-15-34-3-234
3585
+ nofor word wouldn't's 2456-145-1345-3-2345-3-234
3586
+ nofor word wouldn't've's 2456-145-1345-3-2345-3-1236-15-3-234
3587
+ nofor word wouldst's 2456-145-34-3-234
3588
+
3589
+ nofor word whereabouts's 5-156-1-12-234-3-234
3590
+
3591
+ contraction abface aboutface
3592
+ contraction abturn aboutturn
3593
+ contraction acly accordingly
3594
+ contraction aclys
3595
+ contraction afbattle afterbattle
3596
+ contraction afburn afterburn
3597
+ contraction afclap afterclap
3598
+ contraction afdamp afterdamp
3599
+ contraction afdeck afterdeck
3600
+ contraction afgame aftergame
3601
+ contraction aflife afterlife
3602
+ contraction aflives afterlives
3603
+ contraction afntea afternoontea
3604
+ contraction afpiece afterpiece
3605
+ contraction afplay afterplay
3606
+ contraction afsale aftersale
3607
+ contraction aftax aftertax
3608
+ contraction aftaxes aftertaxes
3609
+ contraction aftea aftertea
3610
+ contraction blfold blindfold
3611
+ contraction blly blindly
3612
+ contraction blman blindman
3613
+ contraction blside blindside
3614
+ contraction blworm blindworm
3615
+ contraction bloodlr bloodletter
3616
+ contraction boyfr boyfriend
3617
+ contraction brld brailled
3618
+ contraction brlr brailler
3619
+ contraction brlrs
3620
+ contraction brls
3621
+ contraction brlx
3622
+ contraction brly brailley
3623
+ contraction colorbl colorblind
3624
+ contraction cda coulda
3625
+ contraction cds
3626
+ contraction dcvd deceived
3627
+ contraction dcvr deceiver
3628
+ contraction dcvrs
3629
+ contraction dcvs
3630
+ contraction dcld declared
3631
+ contraction dclr declarer
3632
+ contraction dclrs
3633
+ contraction dcls
3634
+ contraction defr defriend
3635
+ contraction defr defriend
3636
+ contraction eis
3637
+ contraction feelgd feelgood
3638
+ contraction frlies friendlies
3639
+ contraction frly friendly
3640
+ contraction gadab gadabout
3641
+ contraction galfr galfriend
3642
+ contraction girlfr girlfriend
3643
+ contraction gdafn goodafternoon
3644
+ contraction gdby goodby
3645
+ contraction gdbye goodbye
3646
+ contraction gdhumor goodhumor
3647
+ contraction gdie goodie
3648
+ contraction gdlook goodlook
3649
+ contraction gdly goodly
3650
+ contraction gdman goodman
3651
+ contraction gdnature goodnature
3652
+ contraction gdsize goodsize
3653
+ contraction gdun goodun
3654
+ contraction gdwife goodwife
3655
+ contraction gdwill goodwill
3656
+ contraction gdwives goodwives
3657
+ contraction gdy goody
3658
+ contraction grtaunt greataunt
3659
+ contraction grtcircle greatcircle
3660
+ contraction grtcoat greatcoat
3661
+ contraction grtly greatly
3662
+ contraction grtnephew greatnephew
3663
+ contraction grtniece greatniece
3664
+ contraction grtuncle greatuncle
3665
+ contraction guyfr guyfriend
3666
+ contraction hatelr hateletter
3667
+ word herfs =
3668
+ contraction hmbo himbo
3669
+ contraction hmboes himboes
3670
+ contraction hmfs
3671
+ contraction illpd illpaid
3672
+ contraction immly immediately
3673
+ contraction immlys
3674
+ contraction imms
3675
+ contraction xfs
3676
+ contraction knockab knockabout
3677
+ contraction ladyfr ladyfriend
3678
+ contraction layab layabout
3679
+ contraction lrbodies letterbodies
3680
+ contraction lrbody letterbody
3681
+ contraction lrbomb letterbomb
3682
+ contraction lrbox letterbox
3683
+ contraction lrboxes letterboxes
3684
+ contraction lrman letterman
3685
+ contraction lrpress letterpress
3686
+ contraction lrpresses letterpresses
3687
+ contraction lrspace letterspace
3688
+ contraction lrtext lettertext
3689
+ contraction lld littled
3690
+ contraction llneck littleneck
3691
+ contraction llr littler
3692
+ contraction lovelr loveletter
3693
+ contraction manfr manfriend
3694
+ word mchs =
3695
+ contraction midafn midafternoon
3696
+ contraction misbrl misbraille
3697
+ contraction misbrld misbrailled
3698
+ contraction missd missaid
3699
+ word msta =
3700
+ word msts =
3701
+ word msty =
3702
+ contraction myfs
3703
+ contraction necs
3704
+ contraction neis
3705
+ contraction newslr newsletter
3706
+ contraction newslrs
3707
+ word onefs =
3708
+ word ourvss =
3709
+ contraction pds
3710
+ word percvd =
3711
+ word percvg =
3712
+ word percvr =
3713
+ word percvrs =
3714
+ word percvs =
3715
+ contraction poorlypd poorlypaid
3716
+ contraction prcv preceive
3717
+ contraction prcvr preceiver
3718
+ contraction prcvg preceiving
3719
+ contraction prepd prepaid
3720
+ contraction prepds
3721
+ contraction purbl purblind
3722
+ contraction purblly purblindly
3723
+ contraction qkdraw quickdraw
3724
+ contraction qkfire quickfire
3725
+ contraction qkfreeze quickfreeze
3726
+ contraction qkfroze quickfroze
3727
+ contraction qkie quickie
3728
+ contraction qklime quicklime
3729
+ contraction qkly quickly
3730
+ contraction qkset quickset
3731
+ contraction qksnap quicksnap
3732
+ contraction qky quicky
3733
+ contraction rebrl rebraille
3734
+ contraction rebrld rebrailled
3735
+ contraction rebrlr rebrailler
3736
+ contraction rcvd received
3737
+ contraction rcvr receiver
3738
+ contraction rcvrs
3739
+ contraction rcvs
3740
+ contraction rjcd rejoiced
3741
+ contraction rjcr
3742
+ contraction rjcrs
3743
+ contraction rjcs rejoicer
3744
+ contraction rjcgly rejoicingly
3745
+ contraction rjcglys
3746
+ contraction relr reletter
3747
+ contraction repd repaid
3748
+ contraction repds
3749
+ contraction runab runabout
3750
+ word schs =
3751
+ contraction sds
3752
+ word shds =
3753
+ contraction tds
3754
+ word tgrness =
3755
+ contraction tgrs
3756
+ word themvss =
3757
+ word thyfs =
3758
+ contraction tms
3759
+ contraction tns
3760
+ contraction turnab turnabout
3761
+ contraction unac unaccording
3762
+ contraction unacly unaccordingly
3763
+ contraction unaclys
3764
+ contraction unacs
3765
+ contraction unblfold unblindfold
3766
+ contraction unbrl unbraille
3767
+ contraction unbrld unbrailled
3768
+ contraction undcv undeceive
3769
+ contraction undcvd undeceived
3770
+ contraction undcvr undeceiver
3771
+ contraction undcvs
3772
+ contraction undcvg undeceiving
3773
+ contraction undcl undeclare
3774
+ contraction undcld undeclared
3775
+ contraction undcls
3776
+ contraction unfr unfriend
3777
+ contraction unfrly unfriendly
3778
+ contraction unnec unnecessary
3779
+ contraction unnecs
3780
+ contraction unpd unpaid
3781
+ contraction unpds
3782
+ word unpercv =
3783
+ word unpercvd =
3784
+ word unpercvg =
3785
+ word unpercvrr =
3786
+ word unpercvs =
3787
+ contraction unqk unquick
3788
+ contraction unrcvd unreceived
3789
+ contraction unrjc unrejoice
3790
+ contraction unrjcd unrejoiced
3791
+ contraction unrjcr unrejoicer
3792
+ contraction unrjcs
3793
+ contraction unrjcg unrejoicing
3794
+ contraction unrjcgly unrejoicingly
3795
+ contraction unrepd unrepaid
3796
+ contraction unsd unsaid
3797
+ contraction unsds
3798
+ contraction walkab walkabout
3799
+ contraction wds
3800
+ contraction wellpd wellpaid
3801
+ contraction womanfr womanfriend
3802
+ contraction wda woulda
3803
+ contraction yrs
3804
+ contraction yrfs
3805
+ contraction yrvss
3806
+
3807
+ # Appendix 1.2
3808
+
3809
+ #sufword acrosses 1-14-1235-135-234-234-15-234
3810
+
3811
+
3812
+ # misc
3813
+
3814
+ sufword preadmit 1234-1235-15-1-145-134-24-2345
3815
+ word rared 1235-1-1235-1246
3816
+
3817
+ contraction blc
3818
+ contraction bldg
3819
+ contraction blt
3820
+ contraction blvd
3821
+ contraction llb
3822
+ contraction llc
3823
+ contraction lld
3824
+ contraction llp
3825
+
3826
+ contraction .com
3827
+ contraction .org
3828
+ contraction .gov
3829
+ contraction .edu
3830
+ contraction .mil
3831
+ contraction .net
3832
+
3833
+ word somesch 234-135-134-15-234-14-125
3834
+
3835
+ contraction blcup
3836
+ contraction grtsamada
3837
+
3838
+ # Shape symbols require a grade 1 indicator (Section 3.22.1)
3839
+ contraction \x25a0 ■ filled (solid) square
3840
+ contraction \x25a1 □ square
3841
+ contraction \x25a7 ▧ shaded square (upper left to lower right)
3842
+ contraction \x25b2 ▲ filled (solid) (equilateral) triangle
3843
+ contraction \x25b3 △ regular (equilateral) triangle
3844
+ contraction \x25cb ○ circle
3845
+ contraction \x25cd ◍ shaded circle
3846
+
3847
+
3848
+
3849
+ # Punctuation in strange places require grade 1 indicator
3850
+ # note, forward direction handled with match elsewhere
3851
+
3852
+ nofor always , 56-2
3853
+ nofor always ; 56-23
3854
+ nofor always : 56-25
3855
+ nofor always . 56-256
3856
+ nofor always ! 56-235
3857
+ nofor always ? 56-236
3858
+
3859
+ # forward rules for typographic-apostrophe (U+2019) forms
3860
+
3861
+ word children’swear 16-1345-3-234-2456-15-345
3862
+ word couldn’t 14-145-1345-3-2345
3863
+ word couldn’t’ve 14-145-1345-3-2345-3-1236-15
3864
+ word could’ve 14-145-3-1236-15
3865
+ word mustn’t 134-34-1345-3-2345
3866
+ word mustn’t’ve 134-34-1345-3-2345-3-1236-15
3867
+ word must’ve 134-34-3-1236-15
3868
+ word shouldn’t 146-145-1345-3-2345
3869
+ word shouldn’t’ve 146-145-1345-3-2345-3-1236-15
3870
+ word should’ve 146-145-3-1236-15
3871
+ word wouldn’t 2456-145-1345-3-2345
3872
+ word wouldn’t’ve 2456-145-1345-3-2345-3-1236-15
3873
+ word would’ve 2456-145-3-1236-15
3874
+ word ’twould 3-2345-2456-145
3875
+ word ’twoulda 3-2345-2456-145-1
3876
+ word ’twouldn’t 3-2345-2456-145-1345-3-2345
3877
+ word ’twouldn’t’ve 3-2345-2456-145-1345-3-2345-3-1236-15
3878
+ word ’twould’ve 3-2345-2456-145-3-1236-15
3879
+
3880
+ # forward-only 'shortform + s' forms
3881
+
3882
+ noback word aboutfaceds 1-12-124-1-14-1246-234
3883
+ noback word aboutturneds 1-12-2345-136-1235-1345-1246-234
3884
+ noback word abovementioneds 1-12-1236-134-26-56-1345-1246-234
3885
+ noback word accordinglys 1-14-123-13456-234
3886
+ noback word afterburneds 1-124-12-136-1235-1345-1246-234
3887
+ noback word aftermatchess 1-124-134-1-2345-16-15-234-234
3888
+ noback word apperceiveds 1-1234-1234-12456-14-1236-145-234
3889
+ noback word belittleds 23-123-123-145-234
3890
+ noback word belowmentioneds 23-123-134-26-56-1345-1246-234
3891
+ noback word children’swears 16-1345-3-234-2456-15-345-234
3892
+ noback word conceiveds 25-14-1236-145-234
3893
+ noback word couldn’ts 14-145-1345-3-2345-234
3894
+ noback word couldn’t’ves 14-145-1345-3-2345-3-1236-15-234
3895
+ noback word could’ves 14-145-3-1236-15-234
3896
+ noback word deceiveds 145-14-1236-145-234
3897
+ noback word declareds 145-14-123-145-234
3898
+ noback word lettereds 123-1235-1246-234
3899
+ noback word misperceiveds 134-24-234-1234-12456-14-1236-145-234
3900
+ noback word mustn’ts 134-34-1345-3-2345-234
3901
+ noback word mustn’t’ves 134-34-1345-3-2345-3-1236-15-234
3902
+ noback word must’ves 134-34-3-1236-15-234
3903
+ noback word perceiveds 1234-12456-14-1236-145-234
3904
+ noback word quickeneds 12345-13-26-1246-234
3905
+ noback word receiveds 1235-14-1236-145-234
3906
+ noback word rejoiceds 1235-245-14-145-234
3907
+ noback word relettereds 1235-15-123-1235-1246-234
3908
+ noback word shouldn’ts 146-145-1345-3-2345-234
3909
+ noback word shouldn’t’ves 146-145-1345-3-2345-3-1236-15-234
3910
+ noback word should’ves 146-145-3-1236-15-234
3911
+ noback word unblindfoldeds 136-1345-12-123-124-135-123-145-1246-234
3912
+ noback word undeceiveds 136-1345-145-14-1236-145-234
3913
+ noback word undeclareds 136-1345-145-14-123-145-234
3914
+ noback word unlettereds 136-1345-123-1235-1246-234
3915
+ noback word unperceiveds 136-1345-1234-12456-14-1236-145-234
3916
+ noback word unreceiveds 136-1345-1235-14-1236-145-234
3917
+ noback word unrejoiceds 136-1345-1235-245-14-145-234
3918
+ noback word wouldn’ts 2456-145-1345-3-2345-234
3919
+ noback word wouldn’t’ves 2456-145-1345-3-2345-3-1236-15-234
3920
+ noback word would’ves 2456-145-3-1236-15-234
3921
+ noback word ’twoulds 3-2345-2456-145-234
3922
+ noback word ’twouldas 3-2345-2456-145-1-234
3923
+ noback word ’twouldn’ts 3-2345-2456-145-1345-3-2345-234
3924
+ noback word ’twouldn’t’ves 3-2345-2456-145-1345-3-2345-3-1236-15-234
3925
+ noback word ’twould’ves 3-2345-2456-145-3-1236-15-234