u 0.5.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (316) hide show
  1. checksums.yaml +7 -0
  2. data/build/ext/u/data/attributes.rb +39 -0
  3. data/build/ext/u/data/bidi-mirroring.rb +27 -0
  4. data/build/ext/u/data/canonical-combining-class.rb +15 -0
  5. data/build/ext/u/data/case-folding.rb +39 -0
  6. data/build/ext/u/data/cased.rb +19 -0
  7. data/build/ext/u/data/compose.rb +304 -0
  8. data/build/ext/u/data/constants.rb +31 -0
  9. data/build/ext/u/data/decompose.rb +85 -0
  10. data/build/ext/u/data/general-category.rb +61 -0
  11. data/build/ext/u/data/grapheme-word-break.rb +15 -0
  12. data/build/ext/u/data/marshalled.rb +5 -0
  13. data/build/ext/u/data/script.rb +91 -0
  14. data/build/ext/u/data/soft-dotted.rb +17 -0
  15. data/build/ext/u/data/title-table.rb +30 -0
  16. data/build/ext/u/data/wide.rb +17 -0
  17. data/build/lib/u/build.rb +8 -0
  18. data/build/lib/u/build/data.rb +16 -0
  19. data/build/lib/u/build/data/bidimirroring.rb +26 -0
  20. data/build/lib/u/build/data/break.rb +14 -0
  21. data/build/lib/u/build/data/casefolding.rb +77 -0
  22. data/build/lib/u/build/data/compositionexclusions.rb +14 -0
  23. data/build/lib/u/build/data/derivedeastasianwidth.rb +15 -0
  24. data/build/lib/u/build/data/file.rb +88 -0
  25. data/build/lib/u/build/data/linebreak.rb +14 -0
  26. data/build/lib/u/build/data/proplist.rb +18 -0
  27. data/build/lib/u/build/data/scripts.rb +22 -0
  28. data/build/lib/u/build/data/specialcasing.rb +106 -0
  29. data/build/lib/u/build/data/unicode.rb +41 -0
  30. data/build/lib/u/build/data/unicode/entry.rb +27 -0
  31. data/build/lib/u/build/data/unicode/entry/decomposition.rb +29 -0
  32. data/build/lib/u/build/data/unicode/points.rb +32 -0
  33. data/build/lib/u/build/header.rb +11 -0
  34. data/build/lib/u/build/header/table.rb +19 -0
  35. data/build/lib/u/build/header/table/row.rb +64 -0
  36. data/build/lib/u/build/header/tables.rb +6 -0
  37. data/build/lib/u/build/header/tables/intervals.rb +50 -0
  38. data/build/lib/u/build/header/tables/split.rb +20 -0
  39. data/build/lib/u/build/header/tables/split/data.rb +29 -0
  40. data/build/lib/u/build/header/tables/split/part1.rb +28 -0
  41. data/build/lib/u/build/header/tables/split/part2.rb +13 -0
  42. data/build/lib/u/build/header/tables/split/row.rb +34 -0
  43. data/build/lib/u/build/header/tables/split/rows.rb +22 -0
  44. data/build/test/unit/break.rb +45 -0
  45. data/build/test/unit/case.rb +178 -0
  46. data/build/test/unit/foldcase.rb +44 -0
  47. data/build/test/unit/normalize.rb +81 -0
  48. data/ext/u/attributes.c +62 -0
  49. data/ext/u/attributes.h +5 -0
  50. data/ext/u/case.h +41 -0
  51. data/ext/u/data/attributes.h +3070 -0
  52. data/ext/u/data/bidi-mirroring.h +373 -0
  53. data/ext/u/data/canonical-combining-class.h +2157 -0
  54. data/ext/u/data/case-folding.h +171 -0
  55. data/ext/u/data/cased.h +42 -0
  56. data/ext/u/data/compose.h +1714 -0
  57. data/ext/u/data/constants.h +17 -0
  58. data/ext/u/data/decompose.h +9356 -0
  59. data/ext/u/data/general-category.h +28959 -0
  60. data/ext/u/data/grapheme-break.h +13201 -0
  61. data/ext/u/data/line-break.h +26501 -0
  62. data/ext/u/data/normalization-quick-check.h +3002 -0
  63. data/ext/u/data/script.h +2928 -0
  64. data/ext/u/data/soft-dotted.h +55 -0
  65. data/ext/u/data/title-table.h +41 -0
  66. data/ext/u/data/types.h +11117 -0
  67. data/ext/u/data/wide-cjk.h +197 -0
  68. data/ext/u/data/wide.h +59 -0
  69. data/ext/u/data/word-break.h +10001 -0
  70. data/ext/u/depend +281 -0
  71. data/ext/u/extconf.rb +158 -0
  72. data/ext/u/output.h +51 -0
  73. data/ext/{encoding/character/utf-8 → u}/private.c +11 -15
  74. data/ext/u/private.h +58 -0
  75. data/ext/u/rb_includes.h +10 -0
  76. data/ext/u/rb_private.c +98 -0
  77. data/ext/u/rb_private.h +67 -0
  78. data/ext/u/rb_u.c +251 -0
  79. data/ext/u/rb_u_buffer.c +443 -0
  80. data/ext/u/rb_u_buffer.h +24 -0
  81. data/ext/u/rb_u_re.c +43 -0
  82. data/ext/u/rb_u_re.h +15 -0
  83. data/ext/u/rb_u_string.c +478 -0
  84. data/ext/u/rb_u_string.h +173 -0
  85. data/ext/u/rb_u_string_alnum.c +10 -0
  86. data/ext/u/rb_u_string_alpha.c +10 -0
  87. data/ext/u/rb_u_string_aref.c +142 -0
  88. data/ext/u/rb_u_string_ascii_only.c +13 -0
  89. data/ext/u/rb_u_string_assigned.c +10 -0
  90. data/ext/u/rb_u_string_b.c +18 -0
  91. data/ext/u/rb_u_string_bytesize.c +10 -0
  92. data/ext/u/rb_u_string_byteslice.c +103 -0
  93. data/ext/u/rb_u_string_canonical_combining_class.c +33 -0
  94. data/ext/u/rb_u_string_case_ignorable.c +25 -0
  95. data/ext/u/rb_u_string_casecmp.c +61 -0
  96. data/ext/u/rb_u_string_cased.c +17 -0
  97. data/ext/u/rb_u_string_chomp.c +107 -0
  98. data/ext/u/rb_u_string_chop.c +33 -0
  99. data/ext/u/rb_u_string_chr.c +9 -0
  100. data/ext/u/rb_u_string_cntrl.c +10 -0
  101. data/ext/u/rb_u_string_collate.c +46 -0
  102. data/ext/u/rb_u_string_collation_key.c +18 -0
  103. data/ext/u/rb_u_string_count.c +38 -0
  104. data/ext/u/rb_u_string_defined.c +10 -0
  105. data/ext/u/rb_u_string_delete.c +62 -0
  106. data/ext/u/rb_u_string_digit.c +10 -0
  107. data/ext/u/rb_u_string_downcase.c +13 -0
  108. data/ext/u/rb_u_string_dump.c +153 -0
  109. data/ext/u/rb_u_string_each_byte.c +46 -0
  110. data/ext/u/rb_u_string_each_char.c +49 -0
  111. data/ext/u/rb_u_string_each_codepoint.c +45 -0
  112. data/ext/u/rb_u_string_each_grapheme_cluster.c +36 -0
  113. data/ext/u/rb_u_string_each_line.c +142 -0
  114. data/ext/u/rb_u_string_each_word.c +34 -0
  115. data/ext/u/rb_u_string_empty.c +11 -0
  116. data/ext/u/rb_u_string_end_with.c +31 -0
  117. data/ext/u/rb_u_string_eql.c +30 -0
  118. data/ext/u/rb_u_string_equal.c +33 -0
  119. data/ext/u/rb_u_string_foldcase.c +12 -0
  120. data/ext/u/rb_u_string_folded.c +13 -0
  121. data/ext/u/rb_u_string_format.c +1745 -0
  122. data/ext/u/rb_u_string_general_category.c +109 -0
  123. data/ext/u/rb_u_string_getbyte.c +21 -0
  124. data/ext/u/rb_u_string_graph.c +21 -0
  125. data/ext/u/rb_u_string_grapheme_break.c +61 -0
  126. data/ext/u/rb_u_string_gsub.c +164 -0
  127. data/ext/u/rb_u_string_hash.c +10 -0
  128. data/ext/u/rb_u_string_hex.c +9 -0
  129. data/ext/u/rb_u_string_include.c +10 -0
  130. data/ext/u/rb_u_string_index.c +110 -0
  131. data/ext/u/rb_u_string_inspect.c +189 -0
  132. data/ext/u/rb_u_string_internal_tr.c +148 -0
  133. data/ext/u/rb_u_string_internal_tr.h +29 -0
  134. data/ext/u/rb_u_string_justify.c +169 -0
  135. data/ext/u/rb_u_string_length.c +10 -0
  136. data/ext/u/rb_u_string_line_break.c +115 -0
  137. data/ext/u/rb_u_string_lower.c +13 -0
  138. data/ext/u/rb_u_string_lstrip.c +24 -0
  139. data/ext/u/rb_u_string_match.c +65 -0
  140. data/ext/u/rb_u_string_mirror.c +16 -0
  141. data/ext/u/rb_u_string_newline.c +21 -0
  142. data/ext/u/rb_u_string_normalize.c +70 -0
  143. data/ext/u/rb_u_string_normalized.c +28 -0
  144. data/ext/u/rb_u_string_oct.c +11 -0
  145. data/ext/u/rb_u_string_ord.c +14 -0
  146. data/ext/u/rb_u_string_partition.c +80 -0
  147. data/ext/u/rb_u_string_plus.c +33 -0
  148. data/ext/u/rb_u_string_print.c +10 -0
  149. data/ext/u/rb_u_string_punct.c +10 -0
  150. data/ext/u/rb_u_string_reverse.c +13 -0
  151. data/ext/u/rb_u_string_rindex.c +104 -0
  152. data/ext/u/rb_u_string_rpartition.c +81 -0
  153. data/ext/u/rb_u_string_rstrip.c +29 -0
  154. data/ext/u/rb_u_string_scan.c +109 -0
  155. data/ext/u/rb_u_string_script.c +253 -0
  156. data/ext/u/rb_u_string_soft_dotted.c +13 -0
  157. data/ext/u/rb_u_string_space.c +24 -0
  158. data/ext/u/rb_u_string_split.c +245 -0
  159. data/ext/u/rb_u_string_squeeze.c +75 -0
  160. data/ext/u/rb_u_string_start_with.c +31 -0
  161. data/ext/u/rb_u_string_strip.c +36 -0
  162. data/ext/u/rb_u_string_sub.c +147 -0
  163. data/ext/u/rb_u_string_times.c +35 -0
  164. data/ext/u/rb_u_string_title.c +10 -0
  165. data/ext/u/rb_u_string_titlecase.c +13 -0
  166. data/ext/u/rb_u_string_to_i.c +45 -0
  167. data/ext/u/rb_u_string_to_inum.c +364 -0
  168. data/ext/u/rb_u_string_to_inum.h +1 -0
  169. data/ext/u/rb_u_string_to_str.c +17 -0
  170. data/ext/u/rb_u_string_to_sym.c +12 -0
  171. data/ext/u/rb_u_string_tr.c +290 -0
  172. data/ext/u/rb_u_string_upcase.c +12 -0
  173. data/ext/u/rb_u_string_upper.c +13 -0
  174. data/ext/u/rb_u_string_valid.c +10 -0
  175. data/ext/u/rb_u_string_valid_encoding.c +12 -0
  176. data/ext/u/rb_u_string_wide.c +21 -0
  177. data/ext/u/rb_u_string_wide_cjk.c +21 -0
  178. data/ext/u/rb_u_string_width.c +19 -0
  179. data/ext/u/rb_u_string_word_break.c +63 -0
  180. data/ext/u/rb_u_string_xdigit.c +22 -0
  181. data/ext/u/rb_u_string_zero_width.c +16 -0
  182. data/ext/u/titled.c +55 -0
  183. data/ext/u/titled.h +1 -0
  184. data/ext/u/u.c +23 -0
  185. data/ext/u/u.h +458 -0
  186. data/ext/u/u_char_canonical_combining_class.c +31 -0
  187. data/ext/u/u_char_digit_value.c +21 -0
  188. data/ext/u/u_char_downcase.c +27 -0
  189. data/ext/u/u_char_general_category.c +31 -0
  190. data/ext/u/u_char_grapheme_break.c +28 -0
  191. data/ext/u/u_char_isalnum.c +24 -0
  192. data/ext/u/u_char_isalpha.c +21 -0
  193. data/ext/u/u_char_isassigned.c +16 -0
  194. data/ext/u/u_char_iscased.c +22 -0
  195. data/ext/u/u_char_iscaseignorable.c +29 -0
  196. data/ext/u/u_char_iscntrl.c +17 -0
  197. data/ext/u/u_char_isdefined.c +15 -0
  198. data/ext/u/u_char_isdigit.c +16 -0
  199. data/ext/u/u_char_isgraph.c +22 -0
  200. data/ext/u/u_char_islower.c +16 -0
  201. data/ext/u/u_char_isnewline.c +24 -0
  202. data/ext/u/u_char_isprint.c +21 -0
  203. data/ext/u/u_char_ispunct.c +27 -0
  204. data/ext/u/u_char_issoftdotted.c +18 -0
  205. data/ext/u/u_char_isspace.c +28 -0
  206. data/ext/u/u_char_isupper.c +16 -0
  207. data/ext/u/u_char_isvalid.c +18 -0
  208. data/ext/u/u_char_iswide.c +18 -0
  209. data/ext/u/u_char_iswide_cjk.c +22 -0
  210. data/ext/u/u_char_isxdigit.c +27 -0
  211. data/ext/u/u_char_iszerowidth.c +29 -0
  212. data/ext/u/u_char_line_break.c +29 -0
  213. data/ext/u/u_char_mirror.c +16 -0
  214. data/ext/u/u_char_normalized.c +23 -0
  215. data/ext/u/u_char_script.c +41 -0
  216. data/ext/u/u_char_to_u.c +48 -0
  217. data/ext/u/u_char_upcase.c +24 -0
  218. data/ext/u/u_char_width.c +12 -0
  219. data/ext/u/u_char_word_break.c +28 -0
  220. data/ext/u/u_char_xdigit_value.c +31 -0
  221. data/ext/u/u_collate.c +83 -0
  222. data/ext/u/u_collation_key.c +132 -0
  223. data/ext/u/u_decode.c +156 -0
  224. data/ext/u/u_downcase.c +201 -0
  225. data/ext/u/u_foldcase.c +68 -0
  226. data/ext/u/u_grapheme_clusters.c +57 -0
  227. data/ext/u/u_has_prefix.c +27 -0
  228. data/ext/u/u_index.c +93 -0
  229. data/ext/u/u_is_ascii_only.c +33 -0
  230. data/ext/u/u_locale.c +40 -0
  231. data/ext/u/u_locale.h +14 -0
  232. data/ext/u/u_mirror.c +20 -0
  233. data/ext/u/u_n_bytes.c +16 -0
  234. data/ext/u/u_n_chars.c +43 -0
  235. data/ext/u/u_normalize.c +232 -0
  236. data/ext/u/u_normalized.c +28 -0
  237. data/ext/u/u_offset_to_pointer.c +62 -0
  238. data/ext/u/u_pointer_to_offset.c +23 -0
  239. data/ext/u/u_recode.c +73 -0
  240. data/ext/u/u_reverse.c +21 -0
  241. data/ext/u/u_rindex.c +132 -0
  242. data/ext/u/u_titlecase.c +68 -0
  243. data/ext/u/u_upcase.c +89 -0
  244. data/ext/u/u_width.c +35 -0
  245. data/ext/u/u_words.c +82 -0
  246. data/ext/u/yield.h +27 -0
  247. data/lib/u-1.0.rb +20 -0
  248. data/lib/u-1.0/buffer.rb +10 -0
  249. data/lib/u-1.0/string.rb +9 -0
  250. data/lib/u-1.0/version.rb +287 -0
  251. data/test/unit/case.rb +2080 -0
  252. data/test/unit/foldcase.rb +1136 -0
  253. data/test/unit/graphemebreak.rb +407 -0
  254. data/test/unit/normalize.rb +367545 -0
  255. data/test/unit/u-1.0.rb +10 -0
  256. data/test/unit/u-1.0/buffer.rb +52 -0
  257. data/test/unit/u-1.0/string.rb +1439 -0
  258. data/test/unit/{u.rb → u-1.0/version.rb} +0 -1
  259. data/test/unit/wordbreak.rb +1083 -0
  260. metadata +603 -148
  261. data/README +0 -38
  262. data/Rakefile +0 -64
  263. data/ext/encoding/character/utf-8/break.c +0 -25
  264. data/ext/encoding/character/utf-8/data/break.h +0 -22931
  265. data/ext/encoding/character/utf-8/data/character-tables.h +0 -14358
  266. data/ext/encoding/character/utf-8/data/compose.h +0 -1607
  267. data/ext/encoding/character/utf-8/data/decompose.h +0 -10926
  268. data/ext/encoding/character/utf-8/data/generate-unicode-data.rb +0 -1070
  269. data/ext/encoding/character/utf-8/decompose.c +0 -444
  270. data/ext/encoding/character/utf-8/depend +0 -65
  271. data/ext/encoding/character/utf-8/extconf.rb +0 -67
  272. data/ext/encoding/character/utf-8/private.h +0 -51
  273. data/ext/encoding/character/utf-8/properties.c +0 -1056
  274. data/ext/encoding/character/utf-8/rb_includes.h +0 -19
  275. data/ext/encoding/character/utf-8/rb_methods.h +0 -49
  276. data/ext/encoding/character/utf-8/rb_private.h +0 -52
  277. data/ext/encoding/character/utf-8/rb_utf_aref.c +0 -111
  278. data/ext/encoding/character/utf-8/rb_utf_aset.c +0 -105
  279. data/ext/encoding/character/utf-8/rb_utf_casecmp.c +0 -24
  280. data/ext/encoding/character/utf-8/rb_utf_chomp.c +0 -114
  281. data/ext/encoding/character/utf-8/rb_utf_chop.c +0 -44
  282. data/ext/encoding/character/utf-8/rb_utf_collate.c +0 -13
  283. data/ext/encoding/character/utf-8/rb_utf_count.c +0 -30
  284. data/ext/encoding/character/utf-8/rb_utf_delete.c +0 -60
  285. data/ext/encoding/character/utf-8/rb_utf_downcase.c +0 -13
  286. data/ext/encoding/character/utf-8/rb_utf_each_char.c +0 -27
  287. data/ext/encoding/character/utf-8/rb_utf_foldcase.c +0 -13
  288. data/ext/encoding/character/utf-8/rb_utf_hex.c +0 -14
  289. data/ext/encoding/character/utf-8/rb_utf_index.c +0 -50
  290. data/ext/encoding/character/utf-8/rb_utf_insert.c +0 -48
  291. data/ext/encoding/character/utf-8/rb_utf_internal_bignum.c +0 -332
  292. data/ext/encoding/character/utf-8/rb_utf_internal_bignum.h +0 -12
  293. data/ext/encoding/character/utf-8/rb_utf_internal_tr.c +0 -142
  294. data/ext/encoding/character/utf-8/rb_utf_internal_tr.h +0 -41
  295. data/ext/encoding/character/utf-8/rb_utf_justify.c +0 -96
  296. data/ext/encoding/character/utf-8/rb_utf_length.c +0 -14
  297. data/ext/encoding/character/utf-8/rb_utf_lstrip.c +0 -41
  298. data/ext/encoding/character/utf-8/rb_utf_normalize.c +0 -51
  299. data/ext/encoding/character/utf-8/rb_utf_oct.c +0 -14
  300. data/ext/encoding/character/utf-8/rb_utf_reverse.c +0 -13
  301. data/ext/encoding/character/utf-8/rb_utf_rindex.c +0 -88
  302. data/ext/encoding/character/utf-8/rb_utf_rstrip.c +0 -51
  303. data/ext/encoding/character/utf-8/rb_utf_squeeze.c +0 -70
  304. data/ext/encoding/character/utf-8/rb_utf_strip.c +0 -27
  305. data/ext/encoding/character/utf-8/rb_utf_to_i.c +0 -25
  306. data/ext/encoding/character/utf-8/rb_utf_tr.c +0 -250
  307. data/ext/encoding/character/utf-8/rb_utf_upcase.c +0 -13
  308. data/ext/encoding/character/utf-8/tables.h +0 -38
  309. data/ext/encoding/character/utf-8/unicode.c +0 -319
  310. data/ext/encoding/character/utf-8/unicode.h +0 -216
  311. data/ext/encoding/character/utf-8/utf.c +0 -1334
  312. data/lib/encoding/character/utf-8.rb +0 -201
  313. data/lib/u.rb +0 -16
  314. data/lib/u/string.rb +0 -185
  315. data/lib/u/version.rb +0 -5
  316. data/test/unit/u/string.rb +0 -91
@@ -1,1607 +0,0 @@
1
- /* Automatically generated file */
2
-
3
- #ifndef COMPOSE_H
4
- #define COMPOSE_H
5
-
6
-
7
- #define COMPOSE_FIRST_START 1
8
- #define COMPOSE_FIRST_SINGLE_START 147
9
- #define COMPOSE_SECOND_START 368
10
- #define COMPOSE_SECOND_SINGLE_START 399
11
- #define COMPOSE_TABLE_LAST 48
12
-
13
-
14
- static const uint16_t compose_data[][256] = {
15
- { /* page 0, index 0 */
16
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
17
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
18
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147,
19
- 148, 149, 0, 0, 1, 2, 3, 4, 5, 150, 6, 7, 8, 151, 9, 10, 11,
20
- 12, 13, 14, 0, 15, 16, 17, 18, 19, 20, 21, 22, 23, 0, 0, 0, 0,
21
- 0, 0, 24, 25, 26, 27, 28, 152, 29, 30, 31, 32, 33, 34, 35, 36,
22
- 37, 38, 0, 39, 40, 41, 42, 43, 44, 45, 46, 47, 0, 0, 0, 0, 0,
23
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
24
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,
25
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
26
- 0, 0, 0, 0, 49, 0, 153, 154, 50, 155, 0, 0, 51, 0, 0, 0, 0,
27
- 156, 0, 0, 0, 0, 52, 53, 157, 0, 158, 0, 0, 0, 54, 0, 0, 0, 0,
28
- 0, 55, 0, 159, 160, 56, 161, 0, 0, 57, 0, 0, 0, 0, 162, 0, 0,
29
- 0, 0, 58, 59, 163, 0, 164, 0, 0, 0, 60, 0, 0, 0,
30
- },
31
- { /* page 1, index 1 */
32
- 0, 0, 61, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63,
33
- 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
34
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
35
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65, 66, 0, 0,
36
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 166, 0, 0, 0, 0, 167, 168,
37
- 0, 0, 0, 0, 0, 0, 169, 170, 171, 172, 0, 0, 0, 0, 0, 0, 0, 0,
38
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173, 0, 0, 0, 0, 0, 0, 0, 0,
39
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
40
- 0, 0, 0, 67, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69,
41
- 70, 0, 0, 0, 0, 0, 0, 174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
42
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
43
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175, 176,
44
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
45
- },
46
- { /* page 2, index 2 */
47
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
48
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177, 178,
49
- 179, 180, 0, 0, 0, 0, 181, 182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
50
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
51
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
52
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
53
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
54
- 0, 0, 0, 0, 183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
55
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
56
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
57
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
58
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
59
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
60
- },
61
- { /* page 3, index 3 */
62
- 368, 369, 370, 371, 372, 0, 373, 374, 375, 376, 377, 378, 379,
63
- 0, 0, 380, 0, 381, 0, 382, 383, 0, 0, 0, 0, 0, 0, 384, 0, 0,
64
- 0, 0, 0, 0, 0, 385, 386, 387, 388, 389, 390, 0, 0, 0, 0, 391,
65
- 392, 0, 393, 394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
66
- 0, 395, 0, 0, 396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
67
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
68
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
69
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,
70
- 0, 0, 0, 72, 0, 73, 0, 74, 0, 0, 0, 0, 0, 75, 0, 184, 0, 0, 0,
71
- 76, 0, 0, 0, 77, 0, 0, 185, 0, 186, 0, 0, 78, 0, 0, 0, 79, 0,
72
- 80, 0, 81, 0, 0, 0, 0, 0, 82, 0, 83, 0, 0, 0, 84, 0, 0, 0, 85,
73
- 86, 87, 0, 0, 187, 0, 0, 0, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
74
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
75
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
76
- },
77
- { /* page 4, index 4 */
78
- 0, 0, 0, 0, 0, 0, 188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 0, 0,
79
- 189, 0, 90, 91, 190, 92, 0, 191, 0, 0, 0, 192, 0, 0, 0, 0, 93,
80
- 0, 0, 0, 193, 0, 0, 0, 194, 0, 195, 0, 0, 94, 0, 0, 196, 0,
81
- 95, 96, 197, 97, 0, 198, 0, 0, 0, 199, 0, 0, 0, 0, 98, 0, 0,
82
- 0, 200, 0, 0, 0, 201, 0, 202, 0, 0, 0, 0, 0, 0, 0, 0, 203, 0,
83
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
84
- 0, 0, 0, 0, 0, 0, 0, 204, 205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
85
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
86
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
87
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
88
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
89
- 0, 0, 0, 0, 206, 207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
90
- 0, 208, 209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
91
- 0, 0, 0, 0, 0, 0,
92
- },
93
- { /* page 6, index 5 */
94
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
95
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99, 0,
96
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
97
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 0, 211, 0, 0, 0, 0, 0, 0,
98
- 0, 0, 399, 400, 401, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
99
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
100
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
101
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
102
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
103
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
104
- 0, 0, 0, 0, 0, 0, 213, 0, 0, 214, 0, 0, 0, 0, 0, 0, 0, 0, 0,
105
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
106
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
107
- },
108
- { /* page 9, index 6 */
109
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
110
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 215,
111
- 0, 0, 0, 0, 0, 0, 0, 216, 0, 0, 217, 0, 0, 0, 0, 0, 0, 0, 0,
112
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
113
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
114
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
115
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
116
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
117
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
118
- 0, 0, 0, 0, 402, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0,
119
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 403, 0, 0, 0, 0, 0, 0, 0, 0, 0,
120
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
121
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
122
- },
123
- { /* page 11, index 7 */
124
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
125
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
126
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
127
- 404, 0, 0, 0, 0, 0, 0, 0, 0, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0,
128
- 0, 0, 0, 0, 0, 405, 406, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
129
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
130
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
131
- 0, 0, 0, 0, 218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
132
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
133
- 0, 0, 0, 0, 0, 0, 0, 407, 0, 0, 0, 0, 0, 0, 0, 102, 219, 0, 0,
134
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 408, 0, 0, 0, 0, 0, 0,
135
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
136
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
137
- },
138
- { /* page 12, index 8 */
139
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
140
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
141
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
142
- 0, 0, 0, 0, 0, 0, 0, 220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
143
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
144
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
145
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
146
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
147
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
148
- 0, 0, 0, 221, 0, 0, 409, 0, 0, 0, 103, 0, 0, 0, 222, 0, 0, 0,
149
- 0, 0, 0, 0, 0, 0, 0, 410, 411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
150
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
151
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
152
- },
153
- { /* page 13, index 9 */
154
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
155
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
156
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
157
- 412, 0, 0, 0, 0, 0, 0, 0, 104, 223, 0, 0, 0, 0, 0, 0, 0, 0, 0,
158
- 0, 0, 0, 0, 0, 0, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
159
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
160
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
161
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
162
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
163
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 414, 0, 0,
164
- 0, 0, 415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105, 0, 0, 224, 0, 0,
165
- 416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
166
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
167
- },
168
- { /* page 16, index 10 */
169
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
170
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 0, 0, 0,
171
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
172
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
173
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
174
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
175
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
176
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
177
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
178
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
179
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
180
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
181
- 0, 0, 0, 0, 0,
182
- },
183
- { /* page 27, index 11 */
184
- 0, 0, 0, 0, 0, 226, 0, 227, 0, 228, 0, 229, 0, 230, 0, 0, 0,
185
- 231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
186
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
187
- 232, 0, 233, 0, 234, 235, 0, 0, 236, 0, 0, 0, 0, 0, 0, 0, 0,
188
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
189
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
190
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
191
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
192
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
193
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
194
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
195
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
196
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
197
- },
198
- { /* page 30, index 12 */
199
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
200
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
201
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237, 238, 0, 0, 0, 0, 0,
202
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
203
- 0, 0, 0, 0, 0, 0, 0, 0, 239, 240, 0, 0, 0, 0, 0, 0, 241, 242,
204
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
205
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
206
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106,
207
- 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
208
- 0, 0, 0, 243, 244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
209
- 0, 0, 0, 0, 245, 246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
210
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
211
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
212
- },
213
- { /* page 31, index 13 */
214
- 108, 109, 247, 248, 249, 250, 251, 252, 110, 111, 253, 254,
215
- 255, 256, 257, 258, 112, 113, 0, 0, 0, 0, 0, 0, 114, 115, 0,
216
- 0, 0, 0, 0, 0, 116, 117, 259, 260, 261, 262, 263, 264, 118,
217
- 119, 265, 266, 267, 268, 269, 270, 120, 121, 0, 0, 0, 0, 0, 0,
218
- 122, 123, 0, 0, 0, 0, 0, 0, 124, 125, 0, 0, 0, 0, 0, 0, 126,
219
- 127, 0, 0, 0, 0, 0, 0, 128, 129, 0, 0, 0, 0, 0, 0, 0, 130, 0,
220
- 0, 0, 0, 0, 0, 131, 132, 271, 272, 273, 274, 275, 276, 133,
221
- 134, 277, 278, 279, 280, 281, 282, 283, 0, 0, 0, 284, 0, 0, 0,
222
- 0, 0, 0, 0, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
223
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
224
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
225
- 286, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, 0, 0, 0, 0, 0, 287, 0, 0,
226
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
227
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
228
- 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 136, 0,
229
- },
230
- { /* page 33, index 14 */
231
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
232
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
233
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
234
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
235
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
236
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
237
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0,
238
- 290, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
239
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
240
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
241
- 0, 292, 0, 293, 0, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
242
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
243
- 0, 0, 0, 0, 0, 0, 0, 0, 0,
244
- },
245
- { /* page 34, index 15 */
246
- 0, 0, 0, 295, 0, 0, 0, 0, 296, 0, 0, 297, 0, 0, 0, 0, 0, 0, 0,
247
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 298, 0, 299,
248
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
249
- 0, 300, 0, 0, 0, 0, 0, 0, 301, 0, 302, 0, 0, 303, 0, 0, 0, 0,
250
- 304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
251
- 305, 0, 0, 306, 307, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 308,
252
- 309, 0, 0, 310, 311, 0, 0, 312, 313, 314, 315, 0, 0, 0, 0,
253
- 316, 317, 0, 0, 318, 319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320, 321,
254
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 322, 0, 0, 0, 0,
255
- 0, 323, 324, 0, 325, 0, 0, 0, 0, 0, 0, 326, 327, 328, 329, 0,
256
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
257
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
258
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
259
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
260
- },
261
- { /* page 48, index 16 */
262
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
263
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
264
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
265
- 0, 0, 0, 0, 0, 0, 0, 330, 0, 0, 0, 0, 331, 0, 332, 0, 333, 0,
266
- 334, 0, 335, 0, 336, 0, 337, 0, 338, 0, 339, 0, 340, 0, 341,
267
- 0, 342, 0, 0, 343, 0, 344, 0, 345, 0, 0, 0, 0, 0, 0, 137, 0,
268
- 0, 138, 0, 0, 139, 0, 0, 140, 0, 0, 141, 0, 0, 0, 0, 0, 0, 0,
269
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
270
- 0, 397, 398, 0, 0, 346, 0, 0, 0, 0, 0, 0, 0, 0, 347, 0, 0, 0,
271
- 0, 348, 0, 349, 0, 350, 0, 351, 0, 352, 0, 353, 0, 354, 0,
272
- 355, 0, 356, 0, 357, 0, 358, 0, 359, 0, 0, 360, 0, 361, 0,
273
- 362, 0, 0, 0, 0, 0, 0, 142, 0, 0, 143, 0, 0, 144, 0, 0, 145,
274
- 0, 0, 146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
275
- 0, 0, 363, 364, 365, 366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 367,
276
- 0, 0,
277
- }
278
- };
279
-
280
-
281
- static const int16_t compose_table[COMPOSE_TABLE_LAST + 1] = {
282
- 0 /* page 0 */,
283
- 1 /* page 1 */,
284
- 2 /* page 2 */,
285
- 3 /* page 3 */,
286
- 4 /* page 4 */,
287
- 0 + UNICODE_MAX_TABLE_INDEX,
288
- 5 /* page 6 */,
289
- 0 + UNICODE_MAX_TABLE_INDEX,
290
- 0 + UNICODE_MAX_TABLE_INDEX,
291
- 6 /* page 9 */,
292
- 0 + UNICODE_MAX_TABLE_INDEX,
293
- 7 /* page 11 */,
294
- 8 /* page 12 */,
295
- 9 /* page 13 */,
296
- 0 + UNICODE_MAX_TABLE_INDEX,
297
- 0 + UNICODE_MAX_TABLE_INDEX,
298
- 10 /* page 16 */,
299
- 0 + UNICODE_MAX_TABLE_INDEX,
300
- 0 + UNICODE_MAX_TABLE_INDEX,
301
- 0 + UNICODE_MAX_TABLE_INDEX,
302
- 0 + UNICODE_MAX_TABLE_INDEX,
303
- 0 + UNICODE_MAX_TABLE_INDEX,
304
- 0 + UNICODE_MAX_TABLE_INDEX,
305
- 0 + UNICODE_MAX_TABLE_INDEX,
306
- 0 + UNICODE_MAX_TABLE_INDEX,
307
- 0 + UNICODE_MAX_TABLE_INDEX,
308
- 0 + UNICODE_MAX_TABLE_INDEX,
309
- 11 /* page 27 */,
310
- 0 + UNICODE_MAX_TABLE_INDEX,
311
- 0 + UNICODE_MAX_TABLE_INDEX,
312
- 12 /* page 30 */,
313
- 13 /* page 31 */,
314
- 0 + UNICODE_MAX_TABLE_INDEX,
315
- 14 /* page 33 */,
316
- 15 /* page 34 */,
317
- 0 + UNICODE_MAX_TABLE_INDEX,
318
- 0 + UNICODE_MAX_TABLE_INDEX,
319
- 0 + UNICODE_MAX_TABLE_INDEX,
320
- 0 + UNICODE_MAX_TABLE_INDEX,
321
- 0 + UNICODE_MAX_TABLE_INDEX,
322
- 0 + UNICODE_MAX_TABLE_INDEX,
323
- 0 + UNICODE_MAX_TABLE_INDEX,
324
- 0 + UNICODE_MAX_TABLE_INDEX,
325
- 0 + UNICODE_MAX_TABLE_INDEX,
326
- 0 + UNICODE_MAX_TABLE_INDEX,
327
- 0 + UNICODE_MAX_TABLE_INDEX,
328
- 0 + UNICODE_MAX_TABLE_INDEX,
329
- 0 + UNICODE_MAX_TABLE_INDEX,
330
- 16 /* page 48 */,
331
- };
332
-
333
-
334
- static const uint16_t compose_first_single[][2] = {
335
- { 0x0338, 0x226e },
336
- { 0x0338, 0x2260 },
337
- { 0x0338, 0x226f },
338
- { 0x0307, 0x1e1e },
339
- { 0x0302, 0x0134 },
340
- { 0x0307, 0x1e1f },
341
- { 0x0304, 0x01de },
342
- { 0x0301, 0x01fa },
343
- { 0x0301, 0x1e08 },
344
- { 0x0301, 0x1e2e },
345
- { 0x0304, 0x022a },
346
- { 0x0301, 0x01fe },
347
- { 0x0304, 0x01df },
348
- { 0x0301, 0x01fb },
349
- { 0x0301, 0x1e09 },
350
- { 0x0301, 0x1e2f },
351
- { 0x0304, 0x022b },
352
- { 0x0301, 0x01ff },
353
- { 0x0307, 0x1e64 },
354
- { 0x0307, 0x1e65 },
355
- { 0x0307, 0x1e66 },
356
- { 0x0307, 0x1e67 },
357
- { 0x0301, 0x1e78 },
358
- { 0x0301, 0x1e79 },
359
- { 0x0308, 0x1e7a },
360
- { 0x0308, 0x1e7b },
361
- { 0x0307, 0x1e9b },
362
- { 0x030c, 0x01ee },
363
- { 0x0304, 0x01ec },
364
- { 0x0304, 0x01ed },
365
- { 0x0304, 0x01e0 },
366
- { 0x0304, 0x01e1 },
367
- { 0x0306, 0x1e1c },
368
- { 0x0306, 0x1e1d },
369
- { 0x0304, 0x0230 },
370
- { 0x0304, 0x0231 },
371
- { 0x030c, 0x01ef },
372
- { 0x0314, 0x1fec },
373
- { 0x0345, 0x1fb4 },
374
- { 0x0345, 0x1fc4 },
375
- { 0x0345, 0x1ff4 },
376
- { 0x0308, 0x0407 },
377
- { 0x0301, 0x0403 },
378
- { 0x0308, 0x04de },
379
- { 0x0301, 0x040c },
380
- { 0x0308, 0x04e6 },
381
- { 0x0308, 0x04f4 },
382
- { 0x0308, 0x04f8 },
383
- { 0x0308, 0x04ec },
384
- { 0x0301, 0x0453 },
385
- { 0x0308, 0x04df },
386
- { 0x0301, 0x045c },
387
- { 0x0308, 0x04e7 },
388
- { 0x0308, 0x04f5 },
389
- { 0x0308, 0x04f9 },
390
- { 0x0308, 0x04ed },
391
- { 0x0308, 0x0457 },
392
- { 0x030f, 0x0476 },
393
- { 0x030f, 0x0477 },
394
- { 0x0308, 0x04da },
395
- { 0x0308, 0x04db },
396
- { 0x0308, 0x04ea },
397
- { 0x0308, 0x04eb },
398
- { 0x0654, 0x0624 },
399
- { 0x0654, 0x0626 },
400
- { 0x0654, 0x06c2 },
401
- { 0x0654, 0x06d3 },
402
- { 0x0654, 0x06c0 },
403
- { 0x093c, 0x0929 },
404
- { 0x093c, 0x0931 },
405
- { 0x093c, 0x0934 },
406
- { 0x0bd7, 0x0b94 },
407
- { 0x0bbe, 0x0bcb },
408
- { 0x0c56, 0x0c48 },
409
- { 0x0cd5, 0x0cc0 },
410
- { 0x0cd5, 0x0ccb },
411
- { 0x0d3e, 0x0d4b },
412
- { 0x0dca, 0x0ddd },
413
- { 0x102e, 0x1026 },
414
- { 0x1b35, 0x1b06 },
415
- { 0x1b35, 0x1b08 },
416
- { 0x1b35, 0x1b0a },
417
- { 0x1b35, 0x1b0c },
418
- { 0x1b35, 0x1b0e },
419
- { 0x1b35, 0x1b12 },
420
- { 0x1b35, 0x1b3b },
421
- { 0x1b35, 0x1b3d },
422
- { 0x1b35, 0x1b40 },
423
- { 0x1b35, 0x1b41 },
424
- { 0x1b35, 0x1b43 },
425
- { 0x0304, 0x1e38 },
426
- { 0x0304, 0x1e39 },
427
- { 0x0304, 0x1e5c },
428
- { 0x0304, 0x1e5d },
429
- { 0x0307, 0x1e68 },
430
- { 0x0307, 0x1e69 },
431
- { 0x0302, 0x1ec6 },
432
- { 0x0302, 0x1ec7 },
433
- { 0x0302, 0x1ed8 },
434
- { 0x0302, 0x1ed9 },
435
- { 0x0345, 0x1f82 },
436
- { 0x0345, 0x1f83 },
437
- { 0x0345, 0x1f84 },
438
- { 0x0345, 0x1f85 },
439
- { 0x0345, 0x1f86 },
440
- { 0x0345, 0x1f87 },
441
- { 0x0345, 0x1f8a },
442
- { 0x0345, 0x1f8b },
443
- { 0x0345, 0x1f8c },
444
- { 0x0345, 0x1f8d },
445
- { 0x0345, 0x1f8e },
446
- { 0x0345, 0x1f8f },
447
- { 0x0345, 0x1f92 },
448
- { 0x0345, 0x1f93 },
449
- { 0x0345, 0x1f94 },
450
- { 0x0345, 0x1f95 },
451
- { 0x0345, 0x1f96 },
452
- { 0x0345, 0x1f97 },
453
- { 0x0345, 0x1f9a },
454
- { 0x0345, 0x1f9b },
455
- { 0x0345, 0x1f9c },
456
- { 0x0345, 0x1f9d },
457
- { 0x0345, 0x1f9e },
458
- { 0x0345, 0x1f9f },
459
- { 0x0345, 0x1fa2 },
460
- { 0x0345, 0x1fa3 },
461
- { 0x0345, 0x1fa4 },
462
- { 0x0345, 0x1fa5 },
463
- { 0x0345, 0x1fa6 },
464
- { 0x0345, 0x1fa7 },
465
- { 0x0345, 0x1faa },
466
- { 0x0345, 0x1fab },
467
- { 0x0345, 0x1fac },
468
- { 0x0345, 0x1fad },
469
- { 0x0345, 0x1fae },
470
- { 0x0345, 0x1faf },
471
- { 0x0345, 0x1fb2 },
472
- { 0x0345, 0x1fc2 },
473
- { 0x0345, 0x1ff2 },
474
- { 0x0345, 0x1fb7 },
475
- { 0x0345, 0x1fc7 },
476
- { 0x0345, 0x1ff7 },
477
- { 0x0338, 0x219a },
478
- { 0x0338, 0x219b },
479
- { 0x0338, 0x21ae },
480
- { 0x0338, 0x21cd },
481
- { 0x0338, 0x21cf },
482
- { 0x0338, 0x21ce },
483
- { 0x0338, 0x2204 },
484
- { 0x0338, 0x2209 },
485
- { 0x0338, 0x220c },
486
- { 0x0338, 0x2224 },
487
- { 0x0338, 0x2226 },
488
- { 0x0338, 0x2241 },
489
- { 0x0338, 0x2244 },
490
- { 0x0338, 0x2247 },
491
- { 0x0338, 0x2249 },
492
- { 0x0338, 0x226d },
493
- { 0x0338, 0x2262 },
494
- { 0x0338, 0x2270 },
495
- { 0x0338, 0x2271 },
496
- { 0x0338, 0x2274 },
497
- { 0x0338, 0x2275 },
498
- { 0x0338, 0x2278 },
499
- { 0x0338, 0x2279 },
500
- { 0x0338, 0x2280 },
501
- { 0x0338, 0x2281 },
502
- { 0x0338, 0x22e0 },
503
- { 0x0338, 0x22e1 },
504
- { 0x0338, 0x2284 },
505
- { 0x0338, 0x2285 },
506
- { 0x0338, 0x2288 },
507
- { 0x0338, 0x2289 },
508
- { 0x0338, 0x22e2 },
509
- { 0x0338, 0x22e3 },
510
- { 0x0338, 0x22ac },
511
- { 0x0338, 0x22ad },
512
- { 0x0338, 0x22ae },
513
- { 0x0338, 0x22af },
514
- { 0x0338, 0x22ea },
515
- { 0x0338, 0x22eb },
516
- { 0x0338, 0x22ec },
517
- { 0x0338, 0x22ed },
518
- { 0x3099, 0x3094 },
519
- { 0x3099, 0x304c },
520
- { 0x3099, 0x304e },
521
- { 0x3099, 0x3050 },
522
- { 0x3099, 0x3052 },
523
- { 0x3099, 0x3054 },
524
- { 0x3099, 0x3056 },
525
- { 0x3099, 0x3058 },
526
- { 0x3099, 0x305a },
527
- { 0x3099, 0x305c },
528
- { 0x3099, 0x305e },
529
- { 0x3099, 0x3060 },
530
- { 0x3099, 0x3062 },
531
- { 0x3099, 0x3065 },
532
- { 0x3099, 0x3067 },
533
- { 0x3099, 0x3069 },
534
- { 0x3099, 0x309e },
535
- { 0x3099, 0x30f4 },
536
- { 0x3099, 0x30ac },
537
- { 0x3099, 0x30ae },
538
- { 0x3099, 0x30b0 },
539
- { 0x3099, 0x30b2 },
540
- { 0x3099, 0x30b4 },
541
- { 0x3099, 0x30b6 },
542
- { 0x3099, 0x30b8 },
543
- { 0x3099, 0x30ba },
544
- { 0x3099, 0x30bc },
545
- { 0x3099, 0x30be },
546
- { 0x3099, 0x30c0 },
547
- { 0x3099, 0x30c2 },
548
- { 0x3099, 0x30c5 },
549
- { 0x3099, 0x30c7 },
550
- { 0x3099, 0x30c9 },
551
- { 0x3099, 0x30f7 },
552
- { 0x3099, 0x30f8 },
553
- { 0x3099, 0x30f9 },
554
- { 0x3099, 0x30fa },
555
- { 0x3099, 0x30fe },
556
- };
557
-
558
-
559
- static const uint16_t compose_second_single[][2] = {
560
- { 0x0627, 0x0622 },
561
- { 0x0627, 0x0623 },
562
- { 0x0627, 0x0625 },
563
- { 0x09c7, 0x09cb },
564
- { 0x09c7, 0x09cc },
565
- { 0x0b47, 0x0b4b },
566
- { 0x0b47, 0x0b48 },
567
- { 0x0b47, 0x0b4c },
568
- { 0x0bc6, 0x0bca },
569
- { 0x0bc6, 0x0bcc },
570
- { 0x0cc6, 0x0cca },
571
- { 0x0cc6, 0x0cc7 },
572
- { 0x0cc6, 0x0cc8 },
573
- { 0x0d46, 0x0d4a },
574
- { 0x0d46, 0x0d4c },
575
- { 0x0dd9, 0x0dda },
576
- { 0x0dd9, 0x0ddc },
577
- { 0x0dd9, 0x0dde },
578
- };
579
-
580
-
581
- static const uint16_t compose_array[146][31] = {
582
- {
583
- 0x00c0, 0x00c1, 0x00c2, 0x00c3, 0x0100, 0x0102, 0x0226,
584
- 0x00c4, 0x1ea2, 0x00c5, 0, 0x01cd, 0x0200, 0x0202,
585
- 0, 0, 0, 0x1ea0, 0, 0x1e00, 0,
586
- 0, 0x0104, 0, 0, 0, 0, 0,
587
- 0, 0, 0,
588
- },
589
- {
590
- 0, 0, 0, 0, 0, 0, 0x1e02,
591
- 0, 0, 0, 0, 0, 0, 0,
592
- 0, 0, 0, 0x1e04, 0, 0, 0,
593
- 0, 0, 0, 0, 0, 0x1e06, 0,
594
- 0, 0, 0,
595
- },
596
- {
597
- 0, 0x0106, 0x0108, 0, 0, 0, 0x010a,
598
- 0, 0, 0, 0, 0x010c, 0, 0,
599
- 0, 0, 0, 0, 0, 0, 0,
600
- 0x00c7, 0, 0, 0, 0, 0, 0,
601
- 0, 0, 0,
602
- },
603
- {
604
- 0, 0, 0, 0, 0, 0, 0x1e0a,
605
- 0, 0, 0, 0, 0x010e, 0, 0,
606
- 0, 0, 0, 0x1e0c, 0, 0, 0,
607
- 0x1e10, 0, 0x1e12, 0, 0, 0x1e0e, 0,
608
- 0, 0, 0,
609
- },
610
- {
611
- 0x00c8, 0x00c9, 0x00ca, 0x1ebc, 0x0112, 0x0114, 0x0116,
612
- 0x00cb, 0x1eba, 0, 0, 0x011a, 0x0204, 0x0206,
613
- 0, 0, 0, 0x1eb8, 0, 0, 0,
614
- 0x0228, 0x0118, 0x1e18, 0, 0x1e1a, 0, 0,
615
- 0, 0, 0,
616
- },
617
- {
618
- 0, 0x01f4, 0x011c, 0, 0x1e20, 0x011e, 0x0120,
619
- 0, 0, 0, 0, 0x01e6, 0, 0,
620
- 0, 0, 0, 0, 0, 0, 0,
621
- 0x0122, 0, 0, 0, 0, 0, 0,
622
- 0, 0, 0,
623
- },
624
- {
625
- 0, 0, 0x0124, 0, 0, 0, 0x1e22,
626
- 0x1e26, 0, 0, 0, 0x021e, 0, 0,
627
- 0, 0, 0, 0x1e24, 0, 0, 0,
628
- 0x1e28, 0, 0, 0x1e2a, 0, 0, 0,
629
- 0, 0, 0,
630
- },
631
- {
632
- 0x00cc, 0x00cd, 0x00ce, 0x0128, 0x012a, 0x012c, 0x0130,
633
- 0x00cf, 0x1ec8, 0, 0, 0x01cf, 0x0208, 0x020a,
634
- 0, 0, 0, 0x1eca, 0, 0, 0,
635
- 0, 0x012e, 0, 0, 0x1e2c, 0, 0,
636
- 0, 0, 0,
637
- },
638
- {
639
- 0, 0x1e30, 0, 0, 0, 0, 0,
640
- 0, 0, 0, 0, 0x01e8, 0, 0,
641
- 0, 0, 0, 0x1e32, 0, 0, 0,
642
- 0x0136, 0, 0, 0, 0, 0x1e34, 0,
643
- 0, 0, 0,
644
- },
645
- {
646
- 0, 0x0139, 0, 0, 0, 0, 0,
647
- 0, 0, 0, 0, 0x013d, 0, 0,
648
- 0, 0, 0, 0x1e36, 0, 0, 0,
649
- 0x013b, 0, 0x1e3c, 0, 0, 0x1e3a, 0,
650
- 0, 0, 0,
651
- },
652
- {
653
- 0, 0x1e3e, 0, 0, 0, 0, 0x1e40,
654
- 0, 0, 0, 0, 0, 0, 0,
655
- 0, 0, 0, 0x1e42, 0, 0, 0,
656
- 0, 0, 0, 0, 0, 0, 0,
657
- 0, 0, 0,
658
- },
659
- {
660
- 0x01f8, 0x0143, 0, 0x00d1, 0, 0, 0x1e44,
661
- 0, 0, 0, 0, 0x0147, 0, 0,
662
- 0, 0, 0, 0x1e46, 0, 0, 0,
663
- 0x0145, 0, 0x1e4a, 0, 0, 0x1e48, 0,
664
- 0, 0, 0,
665
- },
666
- {
667
- 0x00d2, 0x00d3, 0x00d4, 0x00d5, 0x014c, 0x014e, 0x022e,
668
- 0x00d6, 0x1ece, 0, 0x0150, 0x01d1, 0x020c, 0x020e,
669
- 0, 0, 0x01a0, 0x1ecc, 0, 0, 0,
670
- 0, 0x01ea, 0, 0, 0, 0, 0,
671
- 0, 0, 0,
672
- },
673
- {
674
- 0, 0x1e54, 0, 0, 0, 0, 0x1e56,
675
- 0, 0, 0, 0, 0, 0, 0,
676
- 0, 0, 0, 0, 0, 0, 0,
677
- 0, 0, 0, 0, 0, 0, 0,
678
- 0, 0, 0,
679
- },
680
- {
681
- 0, 0x0154, 0, 0, 0, 0, 0x1e58,
682
- 0, 0, 0, 0, 0x0158, 0x0210, 0x0212,
683
- 0, 0, 0, 0x1e5a, 0, 0, 0,
684
- 0x0156, 0, 0, 0, 0, 0x1e5e, 0,
685
- 0, 0, 0,
686
- },
687
- {
688
- 0, 0x015a, 0x015c, 0, 0, 0, 0x1e60,
689
- 0, 0, 0, 0, 0x0160, 0, 0,
690
- 0, 0, 0, 0x1e62, 0, 0, 0x0218,
691
- 0x015e, 0, 0, 0, 0, 0, 0,
692
- 0, 0, 0,
693
- },
694
- {
695
- 0, 0, 0, 0, 0, 0, 0x1e6a,
696
- 0, 0, 0, 0, 0x0164, 0, 0,
697
- 0, 0, 0, 0x1e6c, 0, 0, 0x021a,
698
- 0x0162, 0, 0x1e70, 0, 0, 0x1e6e, 0,
699
- 0, 0, 0,
700
- },
701
- {
702
- 0x00d9, 0x00da, 0x00db, 0x0168, 0x016a, 0x016c, 0,
703
- 0x00dc, 0x1ee6, 0x016e, 0x0170, 0x01d3, 0x0214, 0x0216,
704
- 0, 0, 0x01af, 0x1ee4, 0x1e72, 0, 0,
705
- 0, 0x0172, 0x1e76, 0, 0x1e74, 0, 0,
706
- 0, 0, 0,
707
- },
708
- {
709
- 0, 0, 0, 0x1e7c, 0, 0, 0,
710
- 0, 0, 0, 0, 0, 0, 0,
711
- 0, 0, 0, 0x1e7e, 0, 0, 0,
712
- 0, 0, 0, 0, 0, 0, 0,
713
- 0, 0, 0,
714
- },
715
- {
716
- 0x1e80, 0x1e82, 0x0174, 0, 0, 0, 0x1e86,
717
- 0x1e84, 0, 0, 0, 0, 0, 0,
718
- 0, 0, 0, 0x1e88, 0, 0, 0,
719
- 0, 0, 0, 0, 0, 0, 0,
720
- 0, 0, 0,
721
- },
722
- {
723
- 0, 0, 0, 0, 0, 0, 0x1e8a,
724
- 0x1e8c, 0, 0, 0, 0, 0, 0,
725
- 0, 0, 0, 0, 0, 0, 0,
726
- 0, 0, 0, 0, 0, 0, 0,
727
- 0, 0, 0,
728
- },
729
- {
730
- 0x1ef2, 0x00dd, 0x0176, 0x1ef8, 0x0232, 0, 0x1e8e,
731
- 0x0178, 0x1ef6, 0, 0, 0, 0, 0,
732
- 0, 0, 0, 0x1ef4, 0, 0, 0,
733
- 0, 0, 0, 0, 0, 0, 0,
734
- 0, 0, 0,
735
- },
736
- {
737
- 0, 0x0179, 0x1e90, 0, 0, 0, 0x017b,
738
- 0, 0, 0, 0, 0x017d, 0, 0,
739
- 0, 0, 0, 0x1e92, 0, 0, 0,
740
- 0, 0, 0, 0, 0, 0x1e94, 0,
741
- 0, 0, 0,
742
- },
743
- {
744
- 0x00e0, 0x00e1, 0x00e2, 0x00e3, 0x0101, 0x0103, 0x0227,
745
- 0x00e4, 0x1ea3, 0x00e5, 0, 0x01ce, 0x0201, 0x0203,
746
- 0, 0, 0, 0x1ea1, 0, 0x1e01, 0,
747
- 0, 0x0105, 0, 0, 0, 0, 0,
748
- 0, 0, 0,
749
- },
750
- {
751
- 0, 0, 0, 0, 0, 0, 0x1e03,
752
- 0, 0, 0, 0, 0, 0, 0,
753
- 0, 0, 0, 0x1e05, 0, 0, 0,
754
- 0, 0, 0, 0, 0, 0x1e07, 0,
755
- 0, 0, 0,
756
- },
757
- {
758
- 0, 0x0107, 0x0109, 0, 0, 0, 0x010b,
759
- 0, 0, 0, 0, 0x010d, 0, 0,
760
- 0, 0, 0, 0, 0, 0, 0,
761
- 0x00e7, 0, 0, 0, 0, 0, 0,
762
- 0, 0, 0,
763
- },
764
- {
765
- 0, 0, 0, 0, 0, 0, 0x1e0b,
766
- 0, 0, 0, 0, 0x010f, 0, 0,
767
- 0, 0, 0, 0x1e0d, 0, 0, 0,
768
- 0x1e11, 0, 0x1e13, 0, 0, 0x1e0f, 0,
769
- 0, 0, 0,
770
- },
771
- {
772
- 0x00e8, 0x00e9, 0x00ea, 0x1ebd, 0x0113, 0x0115, 0x0117,
773
- 0x00eb, 0x1ebb, 0, 0, 0x011b, 0x0205, 0x0207,
774
- 0, 0, 0, 0x1eb9, 0, 0, 0,
775
- 0x0229, 0x0119, 0x1e19, 0, 0x1e1b, 0, 0,
776
- 0, 0, 0,
777
- },
778
- {
779
- 0, 0x01f5, 0x011d, 0, 0x1e21, 0x011f, 0x0121,
780
- 0, 0, 0, 0, 0x01e7, 0, 0,
781
- 0, 0, 0, 0, 0, 0, 0,
782
- 0x0123, 0, 0, 0, 0, 0, 0,
783
- 0, 0, 0,
784
- },
785
- {
786
- 0, 0, 0x0125, 0, 0, 0, 0x1e23,
787
- 0x1e27, 0, 0, 0, 0x021f, 0, 0,
788
- 0, 0, 0, 0x1e25, 0, 0, 0,
789
- 0x1e29, 0, 0, 0x1e2b, 0, 0x1e96, 0,
790
- 0, 0, 0,
791
- },
792
- {
793
- 0x00ec, 0x00ed, 0x00ee, 0x0129, 0x012b, 0x012d, 0,
794
- 0x00ef, 0x1ec9, 0, 0, 0x01d0, 0x0209, 0x020b,
795
- 0, 0, 0, 0x1ecb, 0, 0, 0,
796
- 0, 0x012f, 0, 0, 0x1e2d, 0, 0,
797
- 0, 0, 0,
798
- },
799
- {
800
- 0, 0, 0x0135, 0, 0, 0, 0,
801
- 0, 0, 0, 0, 0x01f0, 0, 0,
802
- 0, 0, 0, 0, 0, 0, 0,
803
- 0, 0, 0, 0, 0, 0, 0,
804
- 0, 0, 0,
805
- },
806
- {
807
- 0, 0x1e31, 0, 0, 0, 0, 0,
808
- 0, 0, 0, 0, 0x01e9, 0, 0,
809
- 0, 0, 0, 0x1e33, 0, 0, 0,
810
- 0x0137, 0, 0, 0, 0, 0x1e35, 0,
811
- 0, 0, 0,
812
- },
813
- {
814
- 0, 0x013a, 0, 0, 0, 0, 0,
815
- 0, 0, 0, 0, 0x013e, 0, 0,
816
- 0, 0, 0, 0x1e37, 0, 0, 0,
817
- 0x013c, 0, 0x1e3d, 0, 0, 0x1e3b, 0,
818
- 0, 0, 0,
819
- },
820
- {
821
- 0, 0x1e3f, 0, 0, 0, 0, 0x1e41,
822
- 0, 0, 0, 0, 0, 0, 0,
823
- 0, 0, 0, 0x1e43, 0, 0, 0,
824
- 0, 0, 0, 0, 0, 0, 0,
825
- 0, 0, 0,
826
- },
827
- {
828
- 0x01f9, 0x0144, 0, 0x00f1, 0, 0, 0x1e45,
829
- 0, 0, 0, 0, 0x0148, 0, 0,
830
- 0, 0, 0, 0x1e47, 0, 0, 0,
831
- 0x0146, 0, 0x1e4b, 0, 0, 0x1e49, 0,
832
- 0, 0, 0,
833
- },
834
- {
835
- 0x00f2, 0x00f3, 0x00f4, 0x00f5, 0x014d, 0x014f, 0x022f,
836
- 0x00f6, 0x1ecf, 0, 0x0151, 0x01d2, 0x020d, 0x020f,
837
- 0, 0, 0x01a1, 0x1ecd, 0, 0, 0,
838
- 0, 0x01eb, 0, 0, 0, 0, 0,
839
- 0, 0, 0,
840
- },
841
- {
842
- 0, 0x1e55, 0, 0, 0, 0, 0x1e57,
843
- 0, 0, 0, 0, 0, 0, 0,
844
- 0, 0, 0, 0, 0, 0, 0,
845
- 0, 0, 0, 0, 0, 0, 0,
846
- 0, 0, 0,
847
- },
848
- {
849
- 0, 0x0155, 0, 0, 0, 0, 0x1e59,
850
- 0, 0, 0, 0, 0x0159, 0x0211, 0x0213,
851
- 0, 0, 0, 0x1e5b, 0, 0, 0,
852
- 0x0157, 0, 0, 0, 0, 0x1e5f, 0,
853
- 0, 0, 0,
854
- },
855
- {
856
- 0, 0x015b, 0x015d, 0, 0, 0, 0x1e61,
857
- 0, 0, 0, 0, 0x0161, 0, 0,
858
- 0, 0, 0, 0x1e63, 0, 0, 0x0219,
859
- 0x015f, 0, 0, 0, 0, 0, 0,
860
- 0, 0, 0,
861
- },
862
- {
863
- 0, 0, 0, 0, 0, 0, 0x1e6b,
864
- 0x1e97, 0, 0, 0, 0x0165, 0, 0,
865
- 0, 0, 0, 0x1e6d, 0, 0, 0x021b,
866
- 0x0163, 0, 0x1e71, 0, 0, 0x1e6f, 0,
867
- 0, 0, 0,
868
- },
869
- {
870
- 0x00f9, 0x00fa, 0x00fb, 0x0169, 0x016b, 0x016d, 0,
871
- 0x00fc, 0x1ee7, 0x016f, 0x0171, 0x01d4, 0x0215, 0x0217,
872
- 0, 0, 0x01b0, 0x1ee5, 0x1e73, 0, 0,
873
- 0, 0x0173, 0x1e77, 0, 0x1e75, 0, 0,
874
- 0, 0, 0,
875
- },
876
- {
877
- 0, 0, 0, 0x1e7d, 0, 0, 0,
878
- 0, 0, 0, 0, 0, 0, 0,
879
- 0, 0, 0, 0x1e7f, 0, 0, 0,
880
- 0, 0, 0, 0, 0, 0, 0,
881
- 0, 0, 0,
882
- },
883
- {
884
- 0x1e81, 0x1e83, 0x0175, 0, 0, 0, 0x1e87,
885
- 0x1e85, 0, 0x1e98, 0, 0, 0, 0,
886
- 0, 0, 0, 0x1e89, 0, 0, 0,
887
- 0, 0, 0, 0, 0, 0, 0,
888
- 0, 0, 0,
889
- },
890
- {
891
- 0, 0, 0, 0, 0, 0, 0x1e8b,
892
- 0x1e8d, 0, 0, 0, 0, 0, 0,
893
- 0, 0, 0, 0, 0, 0, 0,
894
- 0, 0, 0, 0, 0, 0, 0,
895
- 0, 0, 0,
896
- },
897
- {
898
- 0x1ef3, 0x00fd, 0x0177, 0x1ef9, 0x0233, 0, 0x1e8f,
899
- 0x00ff, 0x1ef7, 0x1e99, 0, 0, 0, 0,
900
- 0, 0, 0, 0x1ef5, 0, 0, 0,
901
- 0, 0, 0, 0, 0, 0, 0,
902
- 0, 0, 0,
903
- },
904
- {
905
- 0, 0x017a, 0x1e91, 0, 0, 0, 0x017c,
906
- 0, 0, 0, 0, 0x017e, 0, 0,
907
- 0, 0, 0, 0x1e93, 0, 0, 0,
908
- 0, 0, 0, 0, 0, 0x1e95, 0,
909
- 0, 0, 0,
910
- },
911
- {
912
- 0x1fed, 0x0385, 0, 0, 0, 0, 0,
913
- 0, 0, 0, 0, 0, 0, 0,
914
- 0, 0, 0, 0, 0, 0, 0,
915
- 0, 0, 0, 0, 0, 0, 0x1fc1,
916
- 0, 0, 0,
917
- },
918
- {
919
- 0x1ea6, 0x1ea4, 0, 0x1eaa, 0, 0, 0,
920
- 0, 0x1ea8, 0, 0, 0, 0, 0,
921
- 0, 0, 0, 0, 0, 0, 0,
922
- 0, 0, 0, 0, 0, 0, 0,
923
- 0, 0, 0,
924
- },
925
- {
926
- 0, 0x01fc, 0, 0, 0x01e2, 0, 0,
927
- 0, 0, 0, 0, 0, 0, 0,
928
- 0, 0, 0, 0, 0, 0, 0,
929
- 0, 0, 0, 0, 0, 0, 0,
930
- 0, 0, 0,
931
- },
932
- {
933
- 0x1ec0, 0x1ebe, 0, 0x1ec4, 0, 0, 0,
934
- 0, 0x1ec2, 0, 0, 0, 0, 0,
935
- 0, 0, 0, 0, 0, 0, 0,
936
- 0, 0, 0, 0, 0, 0, 0,
937
- 0, 0, 0,
938
- },
939
- {
940
- 0x1ed2, 0x1ed0, 0, 0x1ed6, 0, 0, 0,
941
- 0, 0x1ed4, 0, 0, 0, 0, 0,
942
- 0, 0, 0, 0, 0, 0, 0,
943
- 0, 0, 0, 0, 0, 0, 0,
944
- 0, 0, 0,
945
- },
946
- {
947
- 0, 0x1e4c, 0, 0, 0x022c, 0, 0,
948
- 0x1e4e, 0, 0, 0, 0, 0, 0,
949
- 0, 0, 0, 0, 0, 0, 0,
950
- 0, 0, 0, 0, 0, 0, 0,
951
- 0, 0, 0,
952
- },
953
- {
954
- 0x01db, 0x01d7, 0, 0, 0x01d5, 0, 0,
955
- 0, 0, 0, 0, 0x01d9, 0, 0,
956
- 0, 0, 0, 0, 0, 0, 0,
957
- 0, 0, 0, 0, 0, 0, 0,
958
- 0, 0, 0,
959
- },
960
- {
961
- 0x1ea7, 0x1ea5, 0, 0x1eab, 0, 0, 0,
962
- 0, 0x1ea9, 0, 0, 0, 0, 0,
963
- 0, 0, 0, 0, 0, 0, 0,
964
- 0, 0, 0, 0, 0, 0, 0,
965
- 0, 0, 0,
966
- },
967
- {
968
- 0, 0x01fd, 0, 0, 0x01e3, 0, 0,
969
- 0, 0, 0, 0, 0, 0, 0,
970
- 0, 0, 0, 0, 0, 0, 0,
971
- 0, 0, 0, 0, 0, 0, 0,
972
- 0, 0, 0,
973
- },
974
- {
975
- 0x1ec1, 0x1ebf, 0, 0x1ec5, 0, 0, 0,
976
- 0, 0x1ec3, 0, 0, 0, 0, 0,
977
- 0, 0, 0, 0, 0, 0, 0,
978
- 0, 0, 0, 0, 0, 0, 0,
979
- 0, 0, 0,
980
- },
981
- {
982
- 0x1ed3, 0x1ed1, 0, 0x1ed7, 0, 0, 0,
983
- 0, 0x1ed5, 0, 0, 0, 0, 0,
984
- 0, 0, 0, 0, 0, 0, 0,
985
- 0, 0, 0, 0, 0, 0, 0,
986
- 0, 0, 0,
987
- },
988
- {
989
- 0, 0x1e4d, 0, 0, 0x022d, 0, 0,
990
- 0x1e4f, 0, 0, 0, 0, 0, 0,
991
- 0, 0, 0, 0, 0, 0, 0,
992
- 0, 0, 0, 0, 0, 0, 0,
993
- 0, 0, 0,
994
- },
995
- {
996
- 0x01dc, 0x01d8, 0, 0, 0x01d6, 0, 0,
997
- 0, 0, 0, 0, 0x01da, 0, 0,
998
- 0, 0, 0, 0, 0, 0, 0,
999
- 0, 0, 0, 0, 0, 0, 0,
1000
- 0, 0, 0,
1001
- },
1002
- {
1003
- 0x1eb0, 0x1eae, 0, 0x1eb4, 0, 0, 0,
1004
- 0, 0x1eb2, 0, 0, 0, 0, 0,
1005
- 0, 0, 0, 0, 0, 0, 0,
1006
- 0, 0, 0, 0, 0, 0, 0,
1007
- 0, 0, 0,
1008
- },
1009
- {
1010
- 0x1eb1, 0x1eaf, 0, 0x1eb5, 0, 0, 0,
1011
- 0, 0x1eb3, 0, 0, 0, 0, 0,
1012
- 0, 0, 0, 0, 0, 0, 0,
1013
- 0, 0, 0, 0, 0, 0, 0,
1014
- 0, 0, 0,
1015
- },
1016
- {
1017
- 0x1e14, 0x1e16, 0, 0, 0, 0, 0,
1018
- 0, 0, 0, 0, 0, 0, 0,
1019
- 0, 0, 0, 0, 0, 0, 0,
1020
- 0, 0, 0, 0, 0, 0, 0,
1021
- 0, 0, 0,
1022
- },
1023
- {
1024
- 0x1e15, 0x1e17, 0, 0, 0, 0, 0,
1025
- 0, 0, 0, 0, 0, 0, 0,
1026
- 0, 0, 0, 0, 0, 0, 0,
1027
- 0, 0, 0, 0, 0, 0, 0,
1028
- 0, 0, 0,
1029
- },
1030
- {
1031
- 0x1e50, 0x1e52, 0, 0, 0, 0, 0,
1032
- 0, 0, 0, 0, 0, 0, 0,
1033
- 0, 0, 0, 0, 0, 0, 0,
1034
- 0, 0, 0, 0, 0, 0, 0,
1035
- 0, 0, 0,
1036
- },
1037
- {
1038
- 0x1e51, 0x1e53, 0, 0, 0, 0, 0,
1039
- 0, 0, 0, 0, 0, 0, 0,
1040
- 0, 0, 0, 0, 0, 0, 0,
1041
- 0, 0, 0, 0, 0, 0, 0,
1042
- 0, 0, 0,
1043
- },
1044
- {
1045
- 0x1edc, 0x1eda, 0, 0x1ee0, 0, 0, 0,
1046
- 0, 0x1ede, 0, 0, 0, 0, 0,
1047
- 0, 0, 0, 0x1ee2, 0, 0, 0,
1048
- 0, 0, 0, 0, 0, 0, 0,
1049
- 0, 0, 0,
1050
- },
1051
- {
1052
- 0x1edd, 0x1edb, 0, 0x1ee1, 0, 0, 0,
1053
- 0, 0x1edf, 0, 0, 0, 0, 0,
1054
- 0, 0, 0, 0x1ee3, 0, 0, 0,
1055
- 0, 0, 0, 0, 0, 0, 0,
1056
- 0, 0, 0,
1057
- },
1058
- {
1059
- 0x1eea, 0x1ee8, 0, 0x1eee, 0, 0, 0,
1060
- 0, 0x1eec, 0, 0, 0, 0, 0,
1061
- 0, 0, 0, 0x1ef0, 0, 0, 0,
1062
- 0, 0, 0, 0, 0, 0, 0,
1063
- 0, 0, 0,
1064
- },
1065
- {
1066
- 0x1eeb, 0x1ee9, 0, 0x1eef, 0, 0, 0,
1067
- 0, 0x1eed, 0, 0, 0, 0, 0,
1068
- 0, 0, 0, 0x1ef1, 0, 0, 0,
1069
- 0, 0, 0, 0, 0, 0, 0,
1070
- 0, 0, 0,
1071
- },
1072
- {
1073
- 0x1fba, 0x0386, 0, 0, 0x1fb9, 0x1fb8, 0,
1074
- 0, 0, 0, 0, 0, 0, 0,
1075
- 0x1f08, 0x1f09, 0, 0, 0, 0, 0,
1076
- 0, 0, 0, 0, 0, 0, 0,
1077
- 0x1fbc, 0, 0,
1078
- },
1079
- {
1080
- 0x1fc8, 0x0388, 0, 0, 0, 0, 0,
1081
- 0, 0, 0, 0, 0, 0, 0,
1082
- 0x1f18, 0x1f19, 0, 0, 0, 0, 0,
1083
- 0, 0, 0, 0, 0, 0, 0,
1084
- 0, 0, 0,
1085
- },
1086
- {
1087
- 0x1fca, 0x0389, 0, 0, 0, 0, 0,
1088
- 0, 0, 0, 0, 0, 0, 0,
1089
- 0x1f28, 0x1f29, 0, 0, 0, 0, 0,
1090
- 0, 0, 0, 0, 0, 0, 0,
1091
- 0x1fcc, 0, 0,
1092
- },
1093
- {
1094
- 0x1fda, 0x038a, 0, 0, 0x1fd9, 0x1fd8, 0,
1095
- 0x03aa, 0, 0, 0, 0, 0, 0,
1096
- 0x1f38, 0x1f39, 0, 0, 0, 0, 0,
1097
- 0, 0, 0, 0, 0, 0, 0,
1098
- 0, 0, 0,
1099
- },
1100
- {
1101
- 0x1ff8, 0x038c, 0, 0, 0, 0, 0,
1102
- 0, 0, 0, 0, 0, 0, 0,
1103
- 0x1f48, 0x1f49, 0, 0, 0, 0, 0,
1104
- 0, 0, 0, 0, 0, 0, 0,
1105
- 0, 0, 0,
1106
- },
1107
- {
1108
- 0x1fea, 0x038e, 0, 0, 0x1fe9, 0x1fe8, 0,
1109
- 0x03ab, 0, 0, 0, 0, 0, 0,
1110
- 0, 0x1f59, 0, 0, 0, 0, 0,
1111
- 0, 0, 0, 0, 0, 0, 0,
1112
- 0, 0, 0,
1113
- },
1114
- {
1115
- 0x1ffa, 0x038f, 0, 0, 0, 0, 0,
1116
- 0, 0, 0, 0, 0, 0, 0,
1117
- 0x1f68, 0x1f69, 0, 0, 0, 0, 0,
1118
- 0, 0, 0, 0, 0, 0, 0,
1119
- 0x1ffc, 0, 0,
1120
- },
1121
- {
1122
- 0x1f70, 0x03ac, 0, 0, 0x1fb1, 0x1fb0, 0,
1123
- 0, 0, 0, 0, 0, 0, 0,
1124
- 0x1f00, 0x1f01, 0, 0, 0, 0, 0,
1125
- 0, 0, 0, 0, 0, 0, 0x1fb6,
1126
- 0x1fb3, 0, 0,
1127
- },
1128
- {
1129
- 0x1f72, 0x03ad, 0, 0, 0, 0, 0,
1130
- 0, 0, 0, 0, 0, 0, 0,
1131
- 0x1f10, 0x1f11, 0, 0, 0, 0, 0,
1132
- 0, 0, 0, 0, 0, 0, 0,
1133
- 0, 0, 0,
1134
- },
1135
- {
1136
- 0x1f74, 0x03ae, 0, 0, 0, 0, 0,
1137
- 0, 0, 0, 0, 0, 0, 0,
1138
- 0x1f20, 0x1f21, 0, 0, 0, 0, 0,
1139
- 0, 0, 0, 0, 0, 0, 0x1fc6,
1140
- 0x1fc3, 0, 0,
1141
- },
1142
- {
1143
- 0x1f76, 0x03af, 0, 0, 0x1fd1, 0x1fd0, 0,
1144
- 0x03ca, 0, 0, 0, 0, 0, 0,
1145
- 0x1f30, 0x1f31, 0, 0, 0, 0, 0,
1146
- 0, 0, 0, 0, 0, 0, 0x1fd6,
1147
- 0, 0, 0,
1148
- },
1149
- {
1150
- 0x1f78, 0x03cc, 0, 0, 0, 0, 0,
1151
- 0, 0, 0, 0, 0, 0, 0,
1152
- 0x1f40, 0x1f41, 0, 0, 0, 0, 0,
1153
- 0, 0, 0, 0, 0, 0, 0,
1154
- 0, 0, 0,
1155
- },
1156
- {
1157
- 0, 0, 0, 0, 0, 0, 0,
1158
- 0, 0, 0, 0, 0, 0, 0,
1159
- 0x1fe4, 0x1fe5, 0, 0, 0, 0, 0,
1160
- 0, 0, 0, 0, 0, 0, 0,
1161
- 0, 0, 0,
1162
- },
1163
- {
1164
- 0x1f7a, 0x03cd, 0, 0, 0x1fe1, 0x1fe0, 0,
1165
- 0x03cb, 0, 0, 0, 0, 0, 0,
1166
- 0x1f50, 0x1f51, 0, 0, 0, 0, 0,
1167
- 0, 0, 0, 0, 0, 0, 0x1fe6,
1168
- 0, 0, 0,
1169
- },
1170
- {
1171
- 0x1f7c, 0x03ce, 0, 0, 0, 0, 0,
1172
- 0, 0, 0, 0, 0, 0, 0,
1173
- 0x1f60, 0x1f61, 0, 0, 0, 0, 0,
1174
- 0, 0, 0, 0, 0, 0, 0x1ff6,
1175
- 0x1ff3, 0, 0,
1176
- },
1177
- {
1178
- 0x1fd2, 0x0390, 0, 0, 0, 0, 0,
1179
- 0, 0, 0, 0, 0, 0, 0,
1180
- 0, 0, 0, 0, 0, 0, 0,
1181
- 0, 0, 0, 0, 0, 0, 0x1fd7,
1182
- 0, 0, 0,
1183
- },
1184
- {
1185
- 0x1fe2, 0x03b0, 0, 0, 0, 0, 0,
1186
- 0, 0, 0, 0, 0, 0, 0,
1187
- 0, 0, 0, 0, 0, 0, 0,
1188
- 0, 0, 0, 0, 0, 0, 0x1fe7,
1189
- 0, 0, 0,
1190
- },
1191
- {
1192
- 0, 0x03d3, 0, 0, 0, 0, 0,
1193
- 0x03d4, 0, 0, 0, 0, 0, 0,
1194
- 0, 0, 0, 0, 0, 0, 0,
1195
- 0, 0, 0, 0, 0, 0, 0,
1196
- 0, 0, 0,
1197
- },
1198
- {
1199
- 0, 0, 0, 0, 0, 0x04d0, 0,
1200
- 0x04d2, 0, 0, 0, 0, 0, 0,
1201
- 0, 0, 0, 0, 0, 0, 0,
1202
- 0, 0, 0, 0, 0, 0, 0,
1203
- 0, 0, 0,
1204
- },
1205
- {
1206
- 0x0400, 0, 0, 0, 0, 0x04d6, 0,
1207
- 0x0401, 0, 0, 0, 0, 0, 0,
1208
- 0, 0, 0, 0, 0, 0, 0,
1209
- 0, 0, 0, 0, 0, 0, 0,
1210
- 0, 0, 0,
1211
- },
1212
- {
1213
- 0, 0, 0, 0, 0, 0x04c1, 0,
1214
- 0x04dc, 0, 0, 0, 0, 0, 0,
1215
- 0, 0, 0, 0, 0, 0, 0,
1216
- 0, 0, 0, 0, 0, 0, 0,
1217
- 0, 0, 0,
1218
- },
1219
- {
1220
- 0x040d, 0, 0, 0, 0x04e2, 0x0419, 0,
1221
- 0x04e4, 0, 0, 0, 0, 0, 0,
1222
- 0, 0, 0, 0, 0, 0, 0,
1223
- 0, 0, 0, 0, 0, 0, 0,
1224
- 0, 0, 0,
1225
- },
1226
- {
1227
- 0, 0, 0, 0, 0x04ee, 0x040e, 0,
1228
- 0x04f0, 0, 0, 0x04f2, 0, 0, 0,
1229
- 0, 0, 0, 0, 0, 0, 0,
1230
- 0, 0, 0, 0, 0, 0, 0,
1231
- 0, 0, 0,
1232
- },
1233
- {
1234
- 0, 0, 0, 0, 0, 0x04d1, 0,
1235
- 0x04d3, 0, 0, 0, 0, 0, 0,
1236
- 0, 0, 0, 0, 0, 0, 0,
1237
- 0, 0, 0, 0, 0, 0, 0,
1238
- 0, 0, 0,
1239
- },
1240
- {
1241
- 0x0450, 0, 0, 0, 0, 0x04d7, 0,
1242
- 0x0451, 0, 0, 0, 0, 0, 0,
1243
- 0, 0, 0, 0, 0, 0, 0,
1244
- 0, 0, 0, 0, 0, 0, 0,
1245
- 0, 0, 0,
1246
- },
1247
- {
1248
- 0, 0, 0, 0, 0, 0x04c2, 0,
1249
- 0x04dd, 0, 0, 0, 0, 0, 0,
1250
- 0, 0, 0, 0, 0, 0, 0,
1251
- 0, 0, 0, 0, 0, 0, 0,
1252
- 0, 0, 0,
1253
- },
1254
- {
1255
- 0x045d, 0, 0, 0, 0x04e3, 0x0439, 0,
1256
- 0x04e5, 0, 0, 0, 0, 0, 0,
1257
- 0, 0, 0, 0, 0, 0, 0,
1258
- 0, 0, 0, 0, 0, 0, 0,
1259
- 0, 0, 0,
1260
- },
1261
- {
1262
- 0, 0, 0, 0, 0x04ef, 0x045e, 0,
1263
- 0x04f1, 0, 0, 0x04f3, 0, 0, 0,
1264
- 0, 0, 0, 0, 0, 0, 0,
1265
- 0, 0, 0, 0, 0, 0, 0,
1266
- 0, 0, 0,
1267
- },
1268
- {
1269
- 0, 0, 0, 0, 0, 0, 0,
1270
- 0, 0, 0, 0, 0, 0, 0,
1271
- 0, 0, 0, 0, 0, 0, 0,
1272
- 0, 0, 0, 0, 0, 0, 0,
1273
- 0, 0, 0,
1274
- },
1275
- {
1276
- 0, 0, 0, 0, 0, 0, 0,
1277
- 0, 0, 0, 0, 0, 0, 0,
1278
- 0, 0, 0, 0, 0, 0, 0,
1279
- 0, 0, 0, 0, 0, 0, 0,
1280
- 0, 0, 0,
1281
- },
1282
- {
1283
- 0, 0, 0, 0, 0, 0, 0,
1284
- 0, 0, 0, 0, 0, 0, 0,
1285
- 0, 0, 0, 0, 0, 0, 0,
1286
- 0, 0, 0, 0, 0, 0, 0,
1287
- 0, 0, 0,
1288
- },
1289
- {
1290
- 0, 0, 0, 0, 0, 0, 0,
1291
- 0, 0, 0, 0, 0, 0, 0,
1292
- 0, 0, 0, 0, 0, 0, 0,
1293
- 0, 0, 0, 0, 0, 0, 0,
1294
- 0, 0, 0,
1295
- },
1296
- {
1297
- 0, 0, 0, 0, 0, 0, 0,
1298
- 0, 0, 0, 0, 0, 0, 0,
1299
- 0, 0, 0, 0, 0, 0, 0,
1300
- 0, 0, 0, 0, 0, 0, 0,
1301
- 0, 0, 0,
1302
- },
1303
- {
1304
- 0, 0, 0, 0, 0, 0, 0,
1305
- 0, 0, 0, 0, 0, 0, 0,
1306
- 0, 0, 0, 0, 0, 0, 0,
1307
- 0, 0, 0, 0, 0, 0, 0,
1308
- 0, 0, 0,
1309
- },
1310
- {
1311
- 0, 0, 0, 0, 0, 0, 0,
1312
- 0, 0, 0, 0, 0, 0, 0,
1313
- 0, 0, 0, 0, 0, 0, 0,
1314
- 0, 0, 0, 0, 0, 0, 0,
1315
- 0, 0, 0,
1316
- },
1317
- {
1318
- 0, 0, 0x1eac, 0, 0, 0x1eb6, 0,
1319
- 0, 0, 0, 0, 0, 0, 0,
1320
- 0, 0, 0, 0, 0, 0, 0,
1321
- 0, 0, 0, 0, 0, 0, 0,
1322
- 0, 0, 0,
1323
- },
1324
- {
1325
- 0, 0, 0x1ead, 0, 0, 0x1eb7, 0,
1326
- 0, 0, 0, 0, 0, 0, 0,
1327
- 0, 0, 0, 0, 0, 0, 0,
1328
- 0, 0, 0, 0, 0, 0, 0,
1329
- 0, 0, 0,
1330
- },
1331
- {
1332
- 0x1f02, 0x1f04, 0, 0, 0, 0, 0,
1333
- 0, 0, 0, 0, 0, 0, 0,
1334
- 0, 0, 0, 0, 0, 0, 0,
1335
- 0, 0, 0, 0, 0, 0, 0x1f06,
1336
- 0x1f80, 0, 0,
1337
- },
1338
- {
1339
- 0x1f03, 0x1f05, 0, 0, 0, 0, 0,
1340
- 0, 0, 0, 0, 0, 0, 0,
1341
- 0, 0, 0, 0, 0, 0, 0,
1342
- 0, 0, 0, 0, 0, 0, 0x1f07,
1343
- 0x1f81, 0, 0,
1344
- },
1345
- {
1346
- 0x1f0a, 0x1f0c, 0, 0, 0, 0, 0,
1347
- 0, 0, 0, 0, 0, 0, 0,
1348
- 0, 0, 0, 0, 0, 0, 0,
1349
- 0, 0, 0, 0, 0, 0, 0x1f0e,
1350
- 0x1f88, 0, 0,
1351
- },
1352
- {
1353
- 0x1f0b, 0x1f0d, 0, 0, 0, 0, 0,
1354
- 0, 0, 0, 0, 0, 0, 0,
1355
- 0, 0, 0, 0, 0, 0, 0,
1356
- 0, 0, 0, 0, 0, 0, 0x1f0f,
1357
- 0x1f89, 0, 0,
1358
- },
1359
- {
1360
- 0x1f12, 0x1f14, 0, 0, 0, 0, 0,
1361
- 0, 0, 0, 0, 0, 0, 0,
1362
- 0, 0, 0, 0, 0, 0, 0,
1363
- 0, 0, 0, 0, 0, 0, 0,
1364
- 0, 0, 0,
1365
- },
1366
- {
1367
- 0x1f13, 0x1f15, 0, 0, 0, 0, 0,
1368
- 0, 0, 0, 0, 0, 0, 0,
1369
- 0, 0, 0, 0, 0, 0, 0,
1370
- 0, 0, 0, 0, 0, 0, 0,
1371
- 0, 0, 0,
1372
- },
1373
- {
1374
- 0x1f1a, 0x1f1c, 0, 0, 0, 0, 0,
1375
- 0, 0, 0, 0, 0, 0, 0,
1376
- 0, 0, 0, 0, 0, 0, 0,
1377
- 0, 0, 0, 0, 0, 0, 0,
1378
- 0, 0, 0,
1379
- },
1380
- {
1381
- 0x1f1b, 0x1f1d, 0, 0, 0, 0, 0,
1382
- 0, 0, 0, 0, 0, 0, 0,
1383
- 0, 0, 0, 0, 0, 0, 0,
1384
- 0, 0, 0, 0, 0, 0, 0,
1385
- 0, 0, 0,
1386
- },
1387
- {
1388
- 0x1f22, 0x1f24, 0, 0, 0, 0, 0,
1389
- 0, 0, 0, 0, 0, 0, 0,
1390
- 0, 0, 0, 0, 0, 0, 0,
1391
- 0, 0, 0, 0, 0, 0, 0x1f26,
1392
- 0x1f90, 0, 0,
1393
- },
1394
- {
1395
- 0x1f23, 0x1f25, 0, 0, 0, 0, 0,
1396
- 0, 0, 0, 0, 0, 0, 0,
1397
- 0, 0, 0, 0, 0, 0, 0,
1398
- 0, 0, 0, 0, 0, 0, 0x1f27,
1399
- 0x1f91, 0, 0,
1400
- },
1401
- {
1402
- 0x1f2a, 0x1f2c, 0, 0, 0, 0, 0,
1403
- 0, 0, 0, 0, 0, 0, 0,
1404
- 0, 0, 0, 0, 0, 0, 0,
1405
- 0, 0, 0, 0, 0, 0, 0x1f2e,
1406
- 0x1f98, 0, 0,
1407
- },
1408
- {
1409
- 0x1f2b, 0x1f2d, 0, 0, 0, 0, 0,
1410
- 0, 0, 0, 0, 0, 0, 0,
1411
- 0, 0, 0, 0, 0, 0, 0,
1412
- 0, 0, 0, 0, 0, 0, 0x1f2f,
1413
- 0x1f99, 0, 0,
1414
- },
1415
- {
1416
- 0x1f32, 0x1f34, 0, 0, 0, 0, 0,
1417
- 0, 0, 0, 0, 0, 0, 0,
1418
- 0, 0, 0, 0, 0, 0, 0,
1419
- 0, 0, 0, 0, 0, 0, 0x1f36,
1420
- 0, 0, 0,
1421
- },
1422
- {
1423
- 0x1f33, 0x1f35, 0, 0, 0, 0, 0,
1424
- 0, 0, 0, 0, 0, 0, 0,
1425
- 0, 0, 0, 0, 0, 0, 0,
1426
- 0, 0, 0, 0, 0, 0, 0x1f37,
1427
- 0, 0, 0,
1428
- },
1429
- {
1430
- 0x1f3a, 0x1f3c, 0, 0, 0, 0, 0,
1431
- 0, 0, 0, 0, 0, 0, 0,
1432
- 0, 0, 0, 0, 0, 0, 0,
1433
- 0, 0, 0, 0, 0, 0, 0x1f3e,
1434
- 0, 0, 0,
1435
- },
1436
- {
1437
- 0x1f3b, 0x1f3d, 0, 0, 0, 0, 0,
1438
- 0, 0, 0, 0, 0, 0, 0,
1439
- 0, 0, 0, 0, 0, 0, 0,
1440
- 0, 0, 0, 0, 0, 0, 0x1f3f,
1441
- 0, 0, 0,
1442
- },
1443
- {
1444
- 0x1f42, 0x1f44, 0, 0, 0, 0, 0,
1445
- 0, 0, 0, 0, 0, 0, 0,
1446
- 0, 0, 0, 0, 0, 0, 0,
1447
- 0, 0, 0, 0, 0, 0, 0,
1448
- 0, 0, 0,
1449
- },
1450
- {
1451
- 0x1f43, 0x1f45, 0, 0, 0, 0, 0,
1452
- 0, 0, 0, 0, 0, 0, 0,
1453
- 0, 0, 0, 0, 0, 0, 0,
1454
- 0, 0, 0, 0, 0, 0, 0,
1455
- 0, 0, 0,
1456
- },
1457
- {
1458
- 0x1f4a, 0x1f4c, 0, 0, 0, 0, 0,
1459
- 0, 0, 0, 0, 0, 0, 0,
1460
- 0, 0, 0, 0, 0, 0, 0,
1461
- 0, 0, 0, 0, 0, 0, 0,
1462
- 0, 0, 0,
1463
- },
1464
- {
1465
- 0x1f4b, 0x1f4d, 0, 0, 0, 0, 0,
1466
- 0, 0, 0, 0, 0, 0, 0,
1467
- 0, 0, 0, 0, 0, 0, 0,
1468
- 0, 0, 0, 0, 0, 0, 0,
1469
- 0, 0, 0,
1470
- },
1471
- {
1472
- 0x1f52, 0x1f54, 0, 0, 0, 0, 0,
1473
- 0, 0, 0, 0, 0, 0, 0,
1474
- 0, 0, 0, 0, 0, 0, 0,
1475
- 0, 0, 0, 0, 0, 0, 0x1f56,
1476
- 0, 0, 0,
1477
- },
1478
- {
1479
- 0x1f53, 0x1f55, 0, 0, 0, 0, 0,
1480
- 0, 0, 0, 0, 0, 0, 0,
1481
- 0, 0, 0, 0, 0, 0, 0,
1482
- 0, 0, 0, 0, 0, 0, 0x1f57,
1483
- 0, 0, 0,
1484
- },
1485
- {
1486
- 0x1f5b, 0x1f5d, 0, 0, 0, 0, 0,
1487
- 0, 0, 0, 0, 0, 0, 0,
1488
- 0, 0, 0, 0, 0, 0, 0,
1489
- 0, 0, 0, 0, 0, 0, 0x1f5f,
1490
- 0, 0, 0,
1491
- },
1492
- {
1493
- 0x1f62, 0x1f64, 0, 0, 0, 0, 0,
1494
- 0, 0, 0, 0, 0, 0, 0,
1495
- 0, 0, 0, 0, 0, 0, 0,
1496
- 0, 0, 0, 0, 0, 0, 0x1f66,
1497
- 0x1fa0, 0, 0,
1498
- },
1499
- {
1500
- 0x1f63, 0x1f65, 0, 0, 0, 0, 0,
1501
- 0, 0, 0, 0, 0, 0, 0,
1502
- 0, 0, 0, 0, 0, 0, 0,
1503
- 0, 0, 0, 0, 0, 0, 0x1f67,
1504
- 0x1fa1, 0, 0,
1505
- },
1506
- {
1507
- 0x1f6a, 0x1f6c, 0, 0, 0, 0, 0,
1508
- 0, 0, 0, 0, 0, 0, 0,
1509
- 0, 0, 0, 0, 0, 0, 0,
1510
- 0, 0, 0, 0, 0, 0, 0x1f6e,
1511
- 0x1fa8, 0, 0,
1512
- },
1513
- {
1514
- 0x1f6b, 0x1f6d, 0, 0, 0, 0, 0,
1515
- 0, 0, 0, 0, 0, 0, 0,
1516
- 0, 0, 0, 0, 0, 0, 0,
1517
- 0, 0, 0, 0, 0, 0, 0x1f6f,
1518
- 0x1fa9, 0, 0,
1519
- },
1520
- {
1521
- 0x1fcd, 0x1fce, 0, 0, 0, 0, 0,
1522
- 0, 0, 0, 0, 0, 0, 0,
1523
- 0, 0, 0, 0, 0, 0, 0,
1524
- 0, 0, 0, 0, 0, 0, 0x1fcf,
1525
- 0, 0, 0,
1526
- },
1527
- {
1528
- 0x1fdd, 0x1fde, 0, 0, 0, 0, 0,
1529
- 0, 0, 0, 0, 0, 0, 0,
1530
- 0, 0, 0, 0, 0, 0, 0,
1531
- 0, 0, 0, 0, 0, 0, 0x1fdf,
1532
- 0, 0, 0,
1533
- },
1534
- {
1535
- 0, 0, 0, 0, 0, 0, 0,
1536
- 0, 0, 0, 0, 0, 0, 0,
1537
- 0, 0, 0, 0, 0, 0, 0,
1538
- 0, 0, 0, 0, 0, 0, 0,
1539
- 0, 0x3070, 0x3071,
1540
- },
1541
- {
1542
- 0, 0, 0, 0, 0, 0, 0,
1543
- 0, 0, 0, 0, 0, 0, 0,
1544
- 0, 0, 0, 0, 0, 0, 0,
1545
- 0, 0, 0, 0, 0, 0, 0,
1546
- 0, 0x3073, 0x3074,
1547
- },
1548
- {
1549
- 0, 0, 0, 0, 0, 0, 0,
1550
- 0, 0, 0, 0, 0, 0, 0,
1551
- 0, 0, 0, 0, 0, 0, 0,
1552
- 0, 0, 0, 0, 0, 0, 0,
1553
- 0, 0x3076, 0x3077,
1554
- },
1555
- {
1556
- 0, 0, 0, 0, 0, 0, 0,
1557
- 0, 0, 0, 0, 0, 0, 0,
1558
- 0, 0, 0, 0, 0, 0, 0,
1559
- 0, 0, 0, 0, 0, 0, 0,
1560
- 0, 0x3079, 0x307a,
1561
- },
1562
- {
1563
- 0, 0, 0, 0, 0, 0, 0,
1564
- 0, 0, 0, 0, 0, 0, 0,
1565
- 0, 0, 0, 0, 0, 0, 0,
1566
- 0, 0, 0, 0, 0, 0, 0,
1567
- 0, 0x307c, 0x307d,
1568
- },
1569
- {
1570
- 0, 0, 0, 0, 0, 0, 0,
1571
- 0, 0, 0, 0, 0, 0, 0,
1572
- 0, 0, 0, 0, 0, 0, 0,
1573
- 0, 0, 0, 0, 0, 0, 0,
1574
- 0, 0x30d0, 0x30d1,
1575
- },
1576
- {
1577
- 0, 0, 0, 0, 0, 0, 0,
1578
- 0, 0, 0, 0, 0, 0, 0,
1579
- 0, 0, 0, 0, 0, 0, 0,
1580
- 0, 0, 0, 0, 0, 0, 0,
1581
- 0, 0x30d3, 0x30d4,
1582
- },
1583
- {
1584
- 0, 0, 0, 0, 0, 0, 0,
1585
- 0, 0, 0, 0, 0, 0, 0,
1586
- 0, 0, 0, 0, 0, 0, 0,
1587
- 0, 0, 0, 0, 0, 0, 0,
1588
- 0, 0x30d6, 0x30d7,
1589
- },
1590
- {
1591
- 0, 0, 0, 0, 0, 0, 0,
1592
- 0, 0, 0, 0, 0, 0, 0,
1593
- 0, 0, 0, 0, 0, 0, 0,
1594
- 0, 0, 0, 0, 0, 0, 0,
1595
- 0, 0x30d9, 0x30da,
1596
- },
1597
- {
1598
- 0, 0, 0, 0, 0, 0, 0,
1599
- 0, 0, 0, 0, 0, 0, 0,
1600
- 0, 0, 0, 0, 0, 0, 0,
1601
- 0, 0, 0, 0, 0, 0, 0,
1602
- 0, 0x30dc, 0x30dd,
1603
- },
1604
- };
1605
-
1606
-
1607
- #endif /* COMPOSE_H */