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,663 @@
1
+ # liblouis: Italiano 8 punti
2
+
3
+ # -----------
4
+ #-index-name: Italian, computer
5
+ #-display-name: Italian computer braille
6
+ #
7
+ #+language:it
8
+ #+type:computer
9
+ #+dots:8
10
+ # Marked as "direction:both" by Bue Vester-Andersen
11
+ # as it is a computer Braille table.
12
+ #+direction:both
13
+ #
14
+ # TODO: Please correct the metadata above. It is not meant to be
15
+ # accurate nor complete. It hasn't been verified by the table
16
+ # author yet. It is merely an attempt by the liblouis maintainers
17
+ # to get some sensible initial values in place.
18
+ #
19
+ # TODO: Please add a reference to official documentation about
20
+ # the implemented braille code. Preferably submit the documents
21
+ # to https://github.com/liblouis/braille-specs.
22
+ # -----------
23
+
24
+ # Copyright (C) 2011 by Caterina Avoledo <catery81@yahoo.it>
25
+ # Copyright (C) 2012,2016,2021 by Simone Dal Maso <simone.dalmaso@gmail.com>
26
+ # Copyright (C) 2026 by Christian Comaschi <christiancomaschi81@gmail.com>
27
+
28
+ # This file is part of liblouis.
29
+ #
30
+ # liblouis is free software: you can redistribute it and/or modify it
31
+ # under the terms of the GNU Lesser General Public License as
32
+ # published by the Free Software Foundation, either version 2.1 of the
33
+ # License, or (at your option) any later version.
34
+ #
35
+ # liblouis is distributed in the hope that it will be useful, but
36
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
37
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
38
+ # Lesser General Public License for more details.
39
+ #
40
+ # You should have received a copy of the GNU Lesser General Public
41
+ # License along with liblouis. If not, see
42
+ # <http://www.gnu.org/licenses/>.
43
+ #
44
+
45
+ #--------------------- All chars definitions ------------------------------
46
+
47
+ space \x0000 34578 #NULL
48
+ space \x0001 178 #Start of heading
49
+ space \x0002 1278 #Start of text
50
+ space \x0003 1478 #End of text
51
+ space \x0004 14578 #End of transmission
52
+ space \x0005 1578 #Enquiry
53
+ space \x0006 12478 #Acknowledge
54
+ space \x0007 124578 #Bell
55
+ space \x0008 12578 #Backspace
56
+ #space \x0009 2478
57
+ space \s 0 #blank 32
58
+ space \t 0 #Tab \x0009
59
+ space \x000A 24578 #Line feed
60
+ space \x000B 1378 #Line tabulation
61
+ space \x000C 12378 #Form feed
62
+ space \x000D 13478 #Carriage return
63
+ space \x000E 134578 #Shift out
64
+ space \x000F 13578 #Shift in
65
+ space \x0010 123478 #Data link escape
66
+ space \x0011 1234578 #Device control one
67
+ space \x0012 123578 #Device control two
68
+ space \x0013 23478 #Device control three
69
+ space \x0014 234578 #Device control four
70
+ space \x0015 13678 #Negative acknoledgement
71
+ space \x0016 123678 #Synchronous idle
72
+ space \x0017 245678 #End of transmission block
73
+ space \x0018 134678 #Cancel
74
+ space \x0019 1345678 #End of medium
75
+ space \x001A 135678 #Substitute
76
+ space \x001B 1235678 #Escape
77
+ space \x001C 3478 #Information separator four
78
+ space \x001D 2345678 #Information separator three
79
+ space \x001E 234678 #Information separator two
80
+ space \x001F 45678 #Information separator one
81
+ punctuation ! 5 #33
82
+ punctuation " 4 #34
83
+ sign # 3456 #35
84
+ sign $ 46 #36
85
+ sign % 123456 #37
86
+ sign & 12346 #38
87
+ punctuation ' 6 #39
88
+ punctuation ( 236 #40
89
+ punctuation ) 356 #41
90
+ punctuation * 35 #42
91
+ sign + 235 #43
92
+ punctuation , 2 #44
93
+ punctuation - 36 #45 the hyphen-minus
94
+ punctuation . 3 #46
95
+ sign / 256 #47
96
+
97
+ include digits6DotsPlusDot6.uti
98
+
99
+ punctuation : 25 #colon x003A
100
+ punctuation ; 23 #semicolon x003B
101
+ math < 56 #x003C
102
+ math = 2356 #equal sign x003D
103
+ math > 45 #x003E
104
+ punctuation ? 26 #x003F
105
+ sign @ 3457 #commercial at x0040
106
+
107
+ include latinLetterDef8Dots.uti
108
+ punctuation [ 123567 #91
109
+ sign \\ 347 #92
110
+ punctuation ] 234567 #93
111
+ sign ^ 23467 #94
112
+ sign _ 4567 #underscore 95
113
+ sign ` 345 #96
114
+
115
+ # a - z 97 - 122 x0061 - x007A
116
+
117
+ punctuation { 12356 #123
118
+ sign | 34 #124
119
+ punctuation } 23456 #125
120
+ sign ~ 2346 #126
121
+ sign \x007F 456 #Delete
122
+
123
+
124
+ #--- Unicode latin
125
+ #sign \x0080 8 #Control
126
+ #From \x0080 to \x009F control characters
127
+
128
+ space \x00A0 0 #no-break space
129
+ punctuation \x00A1 367 #Inverted exclamation mark
130
+ sign \x00A2 58 #cent sign
131
+ sign \x00A3 467 #pound sign
132
+ sign \x00A4 4678 #¤ currency sign x00A4
133
+ sign \x00A5 468 #¥ yen sign x00A5
134
+ sign \x00A6 158 #Broken bar
135
+ sign \x00A7 357 #§ paragraph sign x00A7
136
+ sign \x00A8 48 #Diaeresis sign
137
+ sign \x00A9 123468 #© copyright x00A9
138
+ sign \x00AA 1258 #Feminine ordinal indicator
139
+ punctuation \x00AB 5678 # « #left-pointing double quotation mark x00AB
140
+ sign \x00AC 25678 #Not sign
141
+ sign \x00AD 368 #Soft hyphen
142
+ sign \x00AE 12358 #Registered sign
143
+ sign \x00AF 458 #Macron sign
144
+ sign \x00B0 4568 #° degree sign x00B0
145
+ sign \x00B1 23578 #Plus-Minus sign
146
+ sign \x00B2 128 #² #superscript 2 sign x00B2
147
+ sign \x00B3 148 #³superscript 3 sign x00B3
148
+ sign \x00B4 568 #acute accent
149
+ sign \x00B5 1348 #µ micro sign x00B5
150
+ sign \x00B6 1458 #¶ pilcrow sign x00B6
151
+ punctuation \x00B7 37 #Middle dot
152
+ sign \x00B8 68 #Cedilla
153
+ sign \x00B9 18 #¹ superscript 1 sign x00B9
154
+ sign \x00BA 2458 #Masculine ordinal indicator
155
+ punctuation \x00BB 4578 #»right-pointing double quotation mark x00BB
156
+ sign \x00BC 1368 #¼ vulgar fraction one quarter x00BC
157
+ sign \x00BD 12368 #½vulgar fraction one half x00BD
158
+ sign \x00BE 13468 #¾ vulgar fraction 3 quarters x00BE
159
+ punctuation \x00BF 38 #Inverted question mark
160
+
161
+ uppercase \x00C0 23678 #A with grave above
162
+ uppercase \x00C1 28 #A with acute above
163
+ uppercase \x00C2 167 #A with Circumflex
164
+ uppercase \x00C3 3467 #A with tilde
165
+ uppercase \x00C4 567 #A with diaeresis
166
+ uppercase \x00C5 34567 #A with ring above
167
+ uppercase \x00C6 47 #AE
168
+ uppercase \x00C7 123467 #C with cedilla
169
+ uppercase \x00C8 3578 #E with grave above
170
+ uppercase \x00C9 1234567 #E with acute above
171
+ uppercase \x00CA 1267 #E with circumflex
172
+ uppercase \x00CB 2358 #E with diaeresis
173
+ uppercase \x00CC 57 #I with grave above
174
+ uppercase \x00CD 258 #I with acute
175
+ uppercase \x00CE 1467 #I with circumflex
176
+ uppercase \x00CF 23568 #I with diaeresis
177
+ uppercase \x00D0 3567 #ETH
178
+ uppercase \x00D1 2567 #N with tilde
179
+ uppercase \x00D2 578 #O with grave
180
+ uppercase \x00D3 2568 #O with acute
181
+ uppercase \x00D4 14567 #O with circumflex
182
+ uppercase \x00D5 267 #O with tilde
183
+ uppercase \x00D6 358 #O with diaeresis
184
+ noback math \x00D7 23468 #Multiplication sign \x00d7
185
+ uppercase \x00D8 2467 #O with stroke
186
+ uppercase \x00D9 35678 #U with grave above
187
+ uppercase \x00DA 268 #U with acute above
188
+ uppercase \x00DB 1567 #U with circumflex
189
+ uppercase \x00DC 2368 #U with diaeresis
190
+ uppercase \x00DD 3568 #Y with acute
191
+ uppercase \x00DE 2357 #THORN
192
+ uppercase \x00DF 34568 #sharp s
193
+ lowercase \x00E0 123568 #a with grave
194
+ lowercase \x00E1 168 #a with acute
195
+ lowercase \x00E2 1678 #a with circumflex
196
+ lowercase \x00E3 34678 #a with tilde
197
+ lowercase \x00E4 3458 #a with diaeresis
198
+ lowercase \x00E5 345678 #a with ring above
199
+ lowercase \x00E6 478 #ae
200
+ lowercase \x00E7 1234678 #c with cedilla
201
+ lowercase \x00E8 23468 #e with grave
202
+ lowercase \x00E9 1234568 #e with acute
203
+ lowercase \x00EA 12678 #e with circumflex
204
+ lowercase \x00EB 12468 #e with diaeresis
205
+ lowercase \x00EC 348 #i with grave above
206
+ lowercase \x00ED 1468 #i withacute
207
+ lowercase \x00EE 14678 #i with circumflex
208
+ lowercase \x00EF 124568 #i with diaeresis
209
+ lowercase \x00F0 23458 #eth
210
+ lowercase \x00F1 13458 #n with tilde
211
+ lowercase \x00F2 3468 #o with grave above
212
+ lowercase \x00F3 14568 #o with acute
213
+ lowercase \x00F4 145678 #o with circumflex
214
+ lowercase \x00F5 1358 #o with tilde
215
+ lowercase \x00F6 2468 #o with diaeresis
216
+ math \x00F7 125678 #division sign x00f7
217
+ lowercase \x00F8 24678 #o with stroke
218
+ lowercase \x00F9 234568 #u with grave above
219
+ lowercase \x00FA 1568 #u with acute above
220
+ lowercase \x00FB 15678 #u with circumflex
221
+ lowercase \x00FC 12568 #u with diaeresis
222
+ lowercase \x00FD 24568 #y with acute
223
+ lowercase \x00FE 12348 #thorn
224
+ lowercase \x00FF 134568 #y with diaeresis
225
+
226
+ #--- Unicode Multilingual
227
+ uppercase \x0100 1678 #A with macron
228
+ lowercase \x0101 168 #a with macron
229
+ uppercase \x0102 1235678 #A with breve
230
+ lowercase \x0103 123568 #a with breve
231
+ uppercase \x0104 134568 #A with ogonek
232
+ lowercase \x0105 168 #a with ogonek
233
+ uppercase \x0106 14678 #C with acute
234
+ lowercase \x0107 1468 #c with acute
235
+ uppercase \x0108 14678 #C with circumflex
236
+ lowercase \x0109 1468 #c with circumflex
237
+ #uppercase \x010A 0 #C with dot above
238
+ #lowercase \x010B #c with dot above
239
+ uppercase \x010C 14678 #C with caron
240
+ lowercase \x010D 1468 #c with caron
241
+ #uppercase \x010E #D with caron
242
+ #lowercase \x010F #d with caron
243
+ uppercase \x0110 145678 #D with stroke
244
+ lowercase \x0111 14568 #d with stroke
245
+ uppercase \x0112 15678 #E with macron
246
+ lowercase \x0113 1568 #e with macron
247
+ uppercase \x0118 12678 #E with ogonek
248
+ lowercase \x0119 1268 #e with ogonek
249
+ uppercase \x011C 1245678 #G with circumflex
250
+ lowercase \x011D 124568 #g with circumflex
251
+ uppercase \x0141 134568 #L with stroke
252
+ lowercase \x0142 1568 #l with stroke
253
+ uppercase \x0143 145678 #N with acute
254
+ lowercase \x0144 14568 #n with acute
255
+ uppercase \x0145 1345678 #N with cedilla
256
+ lowercase \x0146 134568 #n with cedilla
257
+ uppercase \x0150 1245678 #O with double acute
258
+ lowercase \x0151 124568 #o with double acute
259
+ uppercase \x0152 237 #ligature OE
260
+ lowercase \x0153 467 #ligature oe
261
+ uppercase \x0156 1235678 #R with cedilla
262
+ lowercase \x0157 123568 #r with cedilla
263
+ lowercase \x0159 2456 #r with caron
264
+ uppercase \x015A 134568 #S with acute
265
+ lowercase \x015B 134568 #s with acute
266
+ uppercase \x015C 234678 #S with circumflex
267
+ lowercase \x015D 23468 #s with cirumflex
268
+ uppercase \x015E 134568 #S with cedilla
269
+ lowercase \x015F 123468 #s with cedilla
270
+ uppercase \x0160 678 #S with caron
271
+ lowercase \x0161 1568 #s withcaron
272
+ uppercase \x0162 24678 #T with cedilla
273
+ lowercase \x0163 23458 #t with cedilla
274
+ uppercase \x0164 125678 #T with caron
275
+ lowercase \x0165 1256 #t with caron
276
+ uppercase \x016A 34678 #U wtih macron
277
+ lowercase \x016B 3468 #u with macron
278
+ uppercase \x016C 34678 #U with breve
279
+ lowercase \x016D 3468 #u with breve
280
+ lowercase \x016F 23456 #u with ring above
281
+ uppercase \x0170 2345678 #U with double acute
282
+ lowercase \x0171 234568 #u with double acute
283
+ uppercase \x0178 12345678 #Y with diaeresis
284
+ uppercase \x0179 134568 #Z with acute
285
+ lowercase \x017A 134568 #z with acute
286
+ uppercase \x017B 134568 #Z with dot above
287
+ lowercase \x017C 123468 #z with dot above
288
+ uppercase \x017D 12567 #Z with caron
289
+ lowercase \x017E 2346 #z with caron
290
+ lowercase \x0192 78 #f with hook
291
+ lowercase \x025C 13567 #reversed open e
292
+ sign \x02C6 378 #circumflex accent
293
+ sign \x02C7 134568 #caron
294
+ sign \x02D8 134568 #breve
295
+ sign \x02D9 5 #dot above
296
+ sign \x02DB 134568 #ogonek
297
+ sign \x02DC 2578 #small tilde
298
+
299
+ #--- Unicode Special Symbols
300
+ space \x2002 0 #EN space
301
+ space \x2003 0 #EM space
302
+ space \x2004 0 #THREE-PER-EM SPACE
303
+ space \x2005 0 #FOUR-PER-EM SPACE
304
+ space \x2006 0 #SIX-PER-EM SPACE
305
+ punctuation \x2007 0 #FIGURE SPACE
306
+ space \x2008 0 #PUNCTUATION SPACE
307
+ space \x2009 0 #THIN SPACE
308
+ space \x200A 0 #HAIR SPACE
309
+ sign \x2011 36 #Non-breaking hyphen
310
+ sign \x2013 368 #En dash
311
+ sign \x2014 36 #EM dash
312
+ sign \x2015 36 #Horizontal bar
313
+ sign \x2017 36 #Double low line
314
+ sign \x2018 6 #Left single quotation mark
315
+ sign \x2019 6 #Right single quotation mark
316
+ sign \x201A 3678 #Single low-9 quotation mark
317
+ sign \x201C 4 #Left double quotation mark
318
+ sign \x201D 4 #Right double quotation mark
319
+ sign \x201E 1268 #Double low-9 quotation mark
320
+ sign \x2020 134568 #Dagger
321
+ sign \x2021 12458 #Double dagger
322
+ sign \x2022 35 #Bullet
323
+ sign \x2026 238 #Horizontal ellipsis
324
+ punctuation \x202F 0 #NARROW NO-BREAK SPACE
325
+ sign \x2030 1345678 #Per mille sign
326
+ sign \x2039 27 #Single left-pointing quotation mark
327
+ sign \x203A 23567 #Single right-pointing quotation mark
328
+ space \x205F 0 #MEDIUM MATHEMATICAL SPACE
329
+ sign \x207F 13467 #Superscript n
330
+ sign \x20AC 457 #Euro sign
331
+ sign \x20AF 145678 #Drachma sign
332
+ sign \x2116 3456 #Number sign
333
+ sign \x2122 1245678 #Trade mark sign
334
+ math \x2219 48 #Bullet operator
335
+ math \x221A 1467 #Square root
336
+ math \x221E 234678 #Infinity
337
+ math \x2229 578 #Intersection
338
+ math \x2248 3578 #Almost equal to
339
+ math \x2261 23568 #Identical to
340
+ math \x2264 568 #Less-than or equal to
341
+ math \x2265 458 #Greater-than or equal to
342
+ sign \x2310 14567 #Reversed not sign
343
+ math \x2320 347 #Top half integral
344
+ math \x2321 1567 #Bottom half integral
345
+ sign \x2500 67 #Box drawings light horizontal
346
+ sign \x2502 237 #Box drawings light horizontal
347
+ sign \x250C 257 #Box drawings light down and right
348
+ sign \x2510 278 #Box drawings light down and left
349
+ sign \x2514 378 #Box drawings light up and right
350
+ sign \x2518 678 #Box drawings light up and left
351
+ sign \x251C 2367 #Box drawings light vertical and right
352
+ sign \x2524 13568 #Box drawings light vertical and left
353
+ sign \x252C 138 #Box drawings light down and horizontal
354
+ sign \x2534 27 #Box drawings light up and horizontal
355
+ sign \x2550 2578 #Box drawings double horizontal
356
+ sign \x2551 1234568 #Box drawings double vertical
357
+ sign \x2552 123468 #Box drawings down single and right double
358
+ sign \x2553 1358 #Box drawings down double and right single
359
+ sign \x2554 23567 #Box drawings double down and right
360
+ sign \x2555 148 #Box drawings down single and left double
361
+ sign \x2556 368 #Box drawings down double and left single
362
+ sign \x2557 12458 #Box drawings double down left
363
+ sign \x2558 248 #Box drawings up single and right double
364
+ sign \x2559 1238 #Box drawings up double and right single
365
+ sign \x255A 2378 #Box drawings double up and right
366
+ sign \x255B 34678 #Box drawings up single and left double
367
+ sign \x255C 4678 #Box drawings up double and left single
368
+ sign \x255D 2678 #Box drawings double up and left
369
+ sign \x255E 68 #Box drawings vertical single and right double
370
+ sign \x255F 257 #Box drawings vertical double and right single
371
+ sign \x2560 1248 #Box drawings vertical double and right
372
+ sign \x2561 268 #Box drawings vertical single and left double
373
+ sign \x2562 24568 #Box drawings vertical double and left single
374
+ sign \x2563 123567 #Box drawings double vertical and left
375
+ sign \x2564 3467 #Box drawings down single and horizontal double
376
+ sign \x2565 28 #Box drawings down double and horizontal single
377
+ sign \x2566 123458 #Box drawings double down and horizontal
378
+ sign \x2567 167 #Box drawings up single and horizontal double
379
+ sign \x2568 57 #Box drawings up double and horizontal single
380
+ sign \x2569 8 #Box drawings double up and horizontal
381
+ sign \x256A 3567 #Box drawings vertical single and horizontal double
382
+ sign \x256B 12358 #Box drawings vertical double and horizontal single
383
+ sign \x256C 5678 #Box drawings double vertical and horizontal
384
+ sign \x2580 234567 #Upper half block
385
+ sign \x2584 1267 #Lower half block
386
+ sign \x2588 12345678 #Full block
387
+ sign \x258C 23678 #Left half block
388
+ sign \x2590 35678 #Right half block
389
+ sign \x2591 78 #Light shade
390
+ sign \x2592 3678 #Medium shade
391
+ sign \x2593 235678 #Dark shade
392
+ sign \x25A0 1234567 #Black square
393
+ sign \x25AA 5678 #black small square
394
+ sign \x25B6 456-135 #Black right-pointing triangle
395
+ sign \x25CF 35 #Black circle
396
+ sign \x25E6 35 #White bullet
397
+ sign \x2665 56-146 #heart
398
+ sign \x2713 3678 #check mark
399
+ sign \x2714 235678 #Heavy check mark
400
+ sign \x2794 25-25-135 #right arrow
401
+ sign \x2190 246-25-25 #left arrow
402
+ sign \x2192 25-25-135 #left arrow
403
+ sign \x25B7 456-135 #white right-pointing triangle
404
+ sign \xF0B7 35 #bullet
405
+ noback sign \xFB00 124-124 #latin small ligature
406
+
407
+
408
+ #--- Unicode Greek (revisione)
409
+ sign \x0374 3456 #GREEK UPPER NUMERAL SIGN Dexia keraia
410
+ sign \x0375 5678 #GREEK LOWER NUMERAL SIGN Aristeri keraia
411
+ punctuation \x037E 26 #GREEK QUESTION MARK
412
+ sign \x0384 4 #GREEK TONOS
413
+ sign \x0385 45 #GREEK DIALYTIKA TONOS
414
+ uppercase \x0386 34578 #Greek letter alpha with tonos
415
+ sign \x0387 467 #GREEK ANO TELEIA
416
+ uppercase \x0388 12467 #Greek letter epsilon with tonos
417
+ uppercase \x0389 1234567 #Greek letter eta with tonos
418
+ uppercase \x038A 124567 #Greek letter iota with tonos
419
+ uppercase \x038C 24678 #Greek letter omicron with tonos
420
+ uppercase \x038E 12567 #Greek letter upsilon with tonos
421
+ uppercase \x038F 2457 #Greek letter omega with tonos
422
+ lowercase \x0390 248 #GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS
423
+ uppercase \x0391 17 #GREEK CAPITAL LETTER ALPHA
424
+ uppercase \x0392 127 #GREEK CAPITAL LETTER BETA
425
+ uppercase \x0393 12457 #GREEK CAPITAL LETTER GAMMA
426
+ uppercase \x0394 1457 #GREEK CAPITAL LETTER DELTA
427
+ uppercase \x0395 157 #GREEK CAPITAL LETTER EPSILON
428
+ uppercase \x0396 13567 #GREEK CAPITAL LETTER ZETA
429
+ uppercase \x0397 1567 #GREEK CAPITAL LETTER ETA
430
+ uppercase \x0398 14567 #GREEK CAPITAL LETTER THETA
431
+ uppercase \x0399 24 #GREEK CAPITAL LETTER IOTA
432
+ uppercase \x039A 137 #GREEK CAPITAL LETTER KAPPA
433
+ uppercase \x039B 1237 #GREEK CAPITAL LETTER LAMDA
434
+ uppercase \x039C 1347 #GREEK CAPITAL LETTER MU
435
+ uppercase \x039D 13457 #GREEK CAPITAL LETTER NU
436
+ uppercase \x039E 13467 #GREEK CAPITAL LETTER XI
437
+ uppercase \x039F 1357 #GREEK CAPITAL LETTER OMICRON
438
+ uppercase \x03A0 12347 #GREEK CAPITAL LETTER PI
439
+ uppercase \x03A1 12357 #GREEK CAPITAL LETTER RHO
440
+ uppercase \x03A3 2347 #GREEK CAPITAL LETTER SIGMA
441
+ uppercase \x03A4 23457 #GREEK CAPITAL LETTER TAU
442
+ uppercase \x03A5 1367 #GREEK CAPITAL LETTER UPSILON
443
+ uppercase \x03A6 1247 #GREEK CAPITAL LETTER PHI
444
+ uppercase \x03A7 123467 #GREEK CAPITAL LETTER CHI
445
+ uppercase \x03A8 134567 #GREEK CAPITAL LETTER PSI
446
+ uppercase \x03A9 24567 #GREEK CAPITAL LETTER OMEGA
447
+ uppercase \x03AA 2478 #GREEK CAPITAL LETTER IOTA WITH DIALYTIKA
448
+ uppercase \x03AB 1345678 #GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA
449
+ lowercase \x03AC 345 #Greek letter alpha with tonos
450
+ lowercase \x03AD 1246 #Greek letter epsilon with tonos
451
+ lowercase \x03AE 123456 #Greek letter eta with tonos
452
+ lowercase \x03AF 12456 #Greek letter iota with tonos
453
+ lowercase \x03B0 134568 #GREEK SMALL LETTER UPSILON WITH DIALYTIKA
454
+ lowercase \x03B1 1 #GREEK SMALL LETTER ALPHA
455
+ lowercase \x03B2 12 #GREEK SMALL LETTER BETA
456
+ lowercase \x03B3 1245 #GREEK SMALL LETTER GAMMA
457
+ lowercase \x03B4 145 #GREEK SMALL LETTER DELTA
458
+ lowercase \x03B5 15 #GREEK SMALL LETTER EPSILON
459
+ lowercase \x03B6 1356 #GREEK SMALL LETTER ZETA
460
+ lowercase \x03B7 156 #GREEK SMALL LETTER ETA
461
+ lowercase \x03B8 1456 #GREEK SMALL LETTER THETA
462
+ lowercase \x03B9 24 #GREEK SMALL LETTER IOTA
463
+ lowercase \x03BA 13 #GREEK SMALL LETTER KAPPA
464
+ lowercase \x03BB 123 #GREEK SMALL LETTER LAMDA
465
+ lowercase \x03BC 134 #GREEK SMALL LETTER MU
466
+ lowercase \x03BD 1345 #GREEK SMALL LETTER NU
467
+ lowercase \x03BE 1346 #GREEK SMALL LETTER XI
468
+ lowercase \x03BF 135 #GREEK SMALL LETTER OMICRON
469
+ lowercase \x03C0 1234 #GREEK SMALL LETTER PI
470
+ lowercase \x03C1 1235 #GREEK SMALL LETTER RHO
471
+ lowercase \x03C2 234 #GREEK SMALL LETTER FINAL SIGMA
472
+ lowercase \x03C3 234 #GREEK SMALL LETTER FINAL SIGMA
473
+ lowercase \x03C4 2345 #GREEK SMALL LETTER TAU
474
+ lowercase \x03C5 136 #GREEK SMALL LETTER UPSILON
475
+ lowercase \x03C6 124 #GREEK SMALL LETTER PHI
476
+ lowercase \x03C7 12346 #GREEK SMALL LETTER CHI
477
+ lowercase \x03C8 13456 #GREEK SMALL LETTER PSI
478
+ lowercase \x03C9 2456 #GREEK SMALL LETTER OMEGA
479
+ lowercase \x03CA 348 #GREEK SMALL LETTER IOTA WITH DIALYTIKA
480
+ lowercase \x03CB 234568 #GREEK SMALL LETTER UPSILON WITH DIALYTIKA
481
+ lowercase \x03CC 246 #Greek letter omicron with tonos
482
+ lowercase \x03CD 1256 #Greek letter upsilon with tonos
483
+ lowercase \x03CE 245 #Greek letter omega with tonos
484
+ sign \x03D0 1278 #GREEK BETA SYMBOL
485
+ sign \x03D1 145678 #GREEK THETA SYMBOL α
486
+ letter \x03D2 12368 #GREEK UPSILON WITH HOOK SYMBOL
487
+ letter \x03D3 23456 #GREEK UPSILON WITH ACUTE AND HOOK SYMBOL
488
+ letter \x03D4 1368 #GREEK UPSILON WITH DIAERESIS AND HOOK SYMBOL
489
+ sign \x03D5 12478 #GREEK PHI SYMBOL
490
+ sign \x03D6 123478 #GREEK PI SYMBOL
491
+ sign \x03D7 12346 #GREEK KAI SYMBOL
492
+ uppercase \x03D8 1234578 #GREEK LETTER ARCHAIC KOPPA
493
+ lowercase \x03D9 123458 #GREEK SMALL LETTER ARCHAIC KOPPA
494
+ uppercase \x03DA 123678 #GREEK CAPITAL LETTER STIGMA
495
+ lowercase \x03DB 12368 #GREEK SMALL LETTER STIGMA
496
+ uppercase \x03DC 145678 #GREEK CAPITAL LETTER DIGAMMA
497
+ lowercase \x03DD 12368 #GREEK SMALL LETTER DIGAMMA
498
+ uppercase \x03DE 1234578 #GREEK CAPITAL LETTER KOPPA
499
+ lowercase \x03DF 123458 #GREEK SMALL LETTER KOPPA
500
+ uppercase \x03E0 234678 #GREEK CAPITAL LETTER SAMPI
501
+ lowercase \x03E1 23468 #GREEK SMALL LETTER SAMPI
502
+ sign \x03F0 1234578 #GREEK KAPPA SYMBOL
503
+ sign \x03F1 123578 #GREEK RHO SYMBOL
504
+ sign \x03F2 23478 #GREEK LUNATE SIGMA SYMBOL
505
+ sign \x03F4 145678 #GREEK CAPITAL THETA SYMBOL
506
+ sign \x03F5 1578 #GREEK LUNATE EPSILON SYMBOL
507
+ uppercase \x03FA 234678 #GREEK CAPITAL LETTER SAN
508
+ lowercase \x03FB 23468 #GREEK SMALL LETTER SAN
509
+
510
+ include gr-pl-comp8.uti
511
+
512
+ #--- Unicode Cyrillic
513
+ uppercase \x0401 1678 #CYRILLIC CAPITAL LETTER IO
514
+ uppercase \x0404 34578 #CYRILLIC CAPITAL LETTER UKRAINIAN IE
515
+ uppercase \x0406 1345678 #CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I
516
+ uppercase \x0407 145678 #CYRILLIC CAPITAL LETTER YI
517
+ uppercase \x0410 178 #CYRILLIC CAPITAL LETTER A
518
+ uppercase \x0411 1278 #CYRILLIC CAPITAL LETTER BE
519
+ uppercase \x0412 245678 #CYRILLIC CAPITAL LETTER VE
520
+ uppercase \x0413 124578 #CYRILLIC CAPITAL LETTER GHE
521
+ uppercase \x0414 14578 #CYRILLIC CAPITAL LETTER DE
522
+ uppercase \x0415 157 #CYRILLIC CAPITAL LETTER IE
523
+ uppercase \x0416 24578 #CYRILLIC CAPITAL LETTER ZHE
524
+ uppercase \x0417 135678 #CYRILLIC CAPITAL LETTER ZE
525
+ uppercase \x0418 2478 #CYRILLIC CAPITAL LETTER I
526
+ uppercase \x0419 1234678 #CYRILLIC CAPITAL LETTER SHORT I
527
+ uppercase \x041A 1378 #CYRILLIC CAPITAL LETTER KA
528
+ uppercase \x041B 12378 #CYRILLIC CAPITAL LETTER EL
529
+ uppercase \x041C 13478 #CYRILLIC CAPITAL LETTER EM
530
+ uppercase \x041D 134578 #CYRILLIC CAPITAL LETTER EN
531
+ uppercase \x041E 13578 #CYRILLIC CAPITAL LETTER O
532
+ uppercase \x041F 123478 #CYRILLIC CAPITAL LETTER PE
533
+ uppercase \x0420 123578 #CYRILLIC CAPITAL LETTER ER
534
+ uppercase \x0421 23478 #CYRILLIC CAPITAL LETTER ES
535
+ uppercase \x0422 234578 #CYRILLIC CAPITAL LETTER TE
536
+ uppercase \x0423 13678 #CYRILLIC CAPITAL LETTER U
537
+ uppercase \x0424 12478 #CYRILLIC CAPITAL LETTER EF
538
+ uppercase \x0425 12578 #CYRILLIC CAPITAL LETTER HA
539
+ uppercase \x0426 1478 #CYRILLIC CAPITAL LETTER TSE
540
+ uppercase \x0427 1234578 #CYRILLIC CAPITAL LETTER CHE
541
+ uppercase \x0428 15678 #CYRILLIC CAPITAL LETTER SHA
542
+ uppercase \x0429 134678 #CYRILLIC CAPITAL LETTER SHCHA
543
+ uppercase \x042A 1235678 #CYRILLIC CAPITAL LETTER HARD SIGN
544
+ uppercase \x042B 234678 #CYRILLIC CAPITAL LETTER YERU
545
+ uppercase \x042C 2345678 #CYRILLIC CAPITAL LETTER SOFT SIGN
546
+ uppercase \x042D 24678 #CYRILLIC CAPITAL LETTER E
547
+ uppercase \x042E 125678 #CYRILLIC CAPITAL LETTER YU
548
+ uppercase \x042F 124678 #CYRILLIC CAPITAL LETTER YA
549
+ lowercase \x0430 18 #CYRILLIC SMALL LETTER A
550
+ lowercase \x0431 128 #CYRILLIC SMALL LETTER BE
551
+ lowercase \x0432 24568 #CYRILLIC SMALL LETTER VE
552
+ lowercase \x0433 12458 #CYRILLIC SMALL LETTER GHE
553
+ lowercase \x0434 1458 #CYRILLIC SMALL LETTER DE
554
+ lowercase \x0435 158 #CYRILLIC SMALL LETTER IE
555
+ lowercase \x0436 2458 #CYRILLIC SMALL LETTER ZHE
556
+ lowercase \x0437 13568 #CYRILLIC SMALL LETTER ZE
557
+ lowercase \x0438 248 #CYRILLIC SMALL LETTER I
558
+ lowercase \x0439 123468 #CYRILLIC SMALL LETTER SHORT I
559
+ lowercase \x043A 138 #CYRILLIC SMALL LETTER KA
560
+ lowercase \x043B 1238 #CYRILLIC SMALL LETTER EL
561
+ lowercase \x043C 1348 #CYRILLIC SMALL LETTER EM
562
+ lowercase \x043D 13458 #CYRILLIC SMALL LETTER EN
563
+ lowercase \x043E 1358 #CYRILLIC SMALL LETTER O
564
+ lowercase \x043F 12348 #CYRILLIC SMALL LETTER PE
565
+ lowercase \x0440 12358 #CYRILLIC SMALL LETTER ER
566
+ lowercase \x0441 2348 #CYRILLIC SMALL LETTER ES
567
+ lowercase \x0442 23458 #CYRILLIC SMALL LETTER TE
568
+ lowercase \x0443 1368 #CYRILLIC SMALL LETTER U
569
+ lowercase \x0444 1248 #CYRILLIC SMALL LETTER EF
570
+ lowercase \x0445 1258 #CYRILLIC SMALL LETTER HA
571
+ lowercase \x0446 148 #CYRILLIC SMALL LETTER TSE
572
+ lowercase \x0447 123458 #CYRILLIC SMALL LETTER CHE
573
+ lowercase \x0448 1568 #CYRILLIC SMALL LETTER SHA
574
+ lowercase \x0449 13468 #CYRILLIC SMALL LETTER SHCHA
575
+ lowercase \x044A 123568 #CYRILLIC SMALL LETTER HARD SIGN
576
+ lowercase \x044B 23468 #CYRILLIC SMALL LETTER YERU
577
+ lowercase \x044C 234568 #CYRILLIC SMALL LETTER SOFT SIGN
578
+ lowercase \x044D 2468 #CYRILLIC SMALL LETTER E
579
+ lowercase \x044E 12568 #CYRILLIC SMALL LETTER YU
580
+ lowercase \x044F 12468 #CYRILLIC SMALL LETTER YA
581
+ lowercase \x0451 168 #CYRILLIC SMALL LETTER IO
582
+ lowercase \x0452 1468 #CYRILLIC SMALL LETTER DJE Serbocroatian
583
+ lowercase \x0454 3458 #CYRILLIC SMALL LETTER UKRAINIAN IE
584
+ lowercase \x0455 12368 #CYRILLIC SMALL LETTER DZE
585
+ lowercase \x0456 134568 #CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I
586
+ lowercase \x0457 14568 #CYRILLIC SMALL LETTER YI
587
+ lowercase \x0458 3458 #CYRILLIC SMALL LETTER JE
588
+ lowercase \x0459 1268 #CYRILLIC SMALL LETTER LJE
589
+ lowercase \x045A 12468 #CYRILLIC SMALL LETTER NJE
590
+ lowercase \x045B 1468 #CYRILLIC SMALL LETTER TSHE Serbocroatian
591
+ lowercase \x045E 3468 #CYRILLIC SMALL LETTER SHORT U
592
+ uppercase \x0462 3457 #CYRILLIC CAPITAL LETTER YAT
593
+ lowercase \x0463 3458 #CYRILLIC SMALL LETTER YAT
594
+ lowercase \x0467 18 #CYRILLIC SMALL LETTER LITTLE YUS
595
+ uppercase \x046A 2467 #CYRILLIC CAPITAL LETTER BIG YUS
596
+ lowercase \x046B 124568 #CYRILLIC SMALL LETTER BIG YUS
597
+ lowercase \x0479 3468 #CYRILLIC SMALL LETTER UK DIGRAPH
598
+ sign \x0484 478 #CYRILLIC NON-SPACING PALATALIZATION
599
+ uppercase \x0490 1245678 #CYRILLIC CAPITAL LETTER GHE WITH UPTURN
600
+ lowercase \x0491 124568 #CYRILLIC SMALL LETTER GHE WITH UPTURN
601
+ lowercase \x04A3 13458 #CYRILLIC SMALL LETTER EN WITH DESCENDER
602
+ lowercase \x04AF 12568 #CYRILLIC SMALL LETTER STRAIGHT U
603
+ lowercase \x04BB 128 #CYRILLIC SMALL LETTER SHHA
604
+ lowercase \x04D9 2468 #CYRILLIC SMALL LETTER SCHWA
605
+
606
+ #---- Hebrew Unicode
607
+ punctuation \x05B0 3 #HEBREW POINT SHEVA
608
+ punctuation \x05B1 26 #HEBREW POINT HATAF SEGOL
609
+ punctuation \x05B2 25 #HEBREW POINT HATAF PATAH
610
+ punctuation \x05B3 345 #HEBREW POINT HATAF QAMATS
611
+ punctuation \x05B4 24 #HEBREW POINT HIRIQ
612
+ punctuation \x05B5 34 #HEBREW POINT TSERE
613
+ punctuation \x05B6 15 #HEBREW POINT SEGOL
614
+ punctuation \x05B7 14 #HEBREW POINT PATAH
615
+ punctuation \x05B8 126 #HEBREW POINT QAMATS
616
+ punctuation \x05B9 135 #HEBREW POINT HOLAM
617
+ punctuation \x05BB 136 #HEBREW POINT QUBUTS
618
+ punctuation \x05BC 5 #HEBREW POINT DAGESH OR MAPIQ
619
+ punctuation \x05BD 4 #HEBREW POINT METEG
620
+ punctuation \x05C1 1568 #HEBREW POINT SHIN DOT
621
+ punctuation \x05C2 2348 #HEBREW POINT SIN DOT
622
+ letter \x05D0 1 #HEBREW LETTER ALEF
623
+ letter \x05D1 1236 #HEBREW LETTER BET
624
+ letter \x05D2 1245 #HEBREW LETTER GIMEL
625
+ letter \x05D3 145 #HEBREW LETTER DALET
626
+ letter \x05D4 125 #HEBREW LETTER HE
627
+ letter \x05D5 2456 #HEBREW LETTER VAV
628
+ letter \x05D6 1356 #HEBREW LETTER ZAYIN
629
+ letter \x05D7 1346 #HEBREW LETTER HET
630
+ letter \x05D8 2345 #HEBREW LETTER TET
631
+ letter \x05D9 245 #HEBREW LETTER YOD
632
+ letter \x05DA 16 #HEBREW LETTER FINAL KAF
633
+ letter \x05DB 16 #HEBREW LETTER KAF
634
+ letter \x05DC 123 #HEBREW LETTER LAMED
635
+ letter \x05DD 134 #HEBREW LETTER FINAL MEM
636
+ letter \x05DE 134 #HEBREW LETTER MEM
637
+ letter \x05DF 1345 #HEBREW LETTER FINAL NUN
638
+ letter \x05E0 1345 #HEBREW LETTER NUN
639
+ letter \x05E1 234 #HEBREW LETTER SAMEKH
640
+ letter \x05E2 1246 #HEBREW LETTER AYIN
641
+ letter \x05E3 124 #HEBREW LETTER FINAL PE
642
+ letter \x05E4 124 #HEBREW LETTER PE
643
+ letter \x05E5 2346 #HEBREW LETTER FINAL TSADI
644
+ letter \x05E6 2346 #HEBREW LETTER TSADI
645
+ letter \x05E7 12345 #HEBREW LETTER QOF
646
+ letter \x05E8 1235 #HEBREW LETTER RESH
647
+ letter \x05E9 146 #HEBREW LETTER SHIN
648
+ letter \x05EA 1456 #HEBREW LETTER TAV
649
+ letter \xFB1D 35 #HEBREW LETTER YOD WITH HIRIQ
650
+ letter \xFB2A 146 #HEBREW LETTER SHIN WITH SHIN DOT
651
+ letter \xFB2B 156 #HEBREW LETTER SHIN WITH SIN DOT
652
+ letter \xFB31 12 #HEBREW LETTER BET WITH DAGESH
653
+ letter \xFB35 346 #HEBREW LETTER VAV WITH DAGESH
654
+ letter \xFB3A 13 #HEBREW LETTER FINAL KAF WITH DAGESH
655
+ letter \xFB3B 13 #HEBREW LETTER KAF WITH DAGESH
656
+ letter \xFB43 1234 #HEBREW LETTER FINAL PE WITH DAGESH
657
+ letter \xFB44 1234 #HEBREW LETTER PE WITH DAGESH
658
+ letter \xFB4A 1256 #HEBREW LETTER TAV WITH DAGESH
659
+
660
+ #---- Special Signs
661
+ sign \xFEFF 0 #Zero width no-break Space
662
+ include braille-patterns.cti
663
+