twitter_cldr 1.6.2 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (733) hide show
  1. data/Gemfile +3 -1
  2. data/History.txt +8 -0
  3. data/README.md +64 -14
  4. data/Rakefile +57 -7
  5. data/js/lib/compiler.rb +3 -1
  6. data/js/lib/mustache/bundle.coffee +5 -5
  7. data/js/lib/mustache/numbers/numbers.coffee +179 -0
  8. data/js/lib/mustache/shared/currencies.coffee +27 -0
  9. data/js/lib/renderers/numbers/numbers_renderer.rb +31 -0
  10. data/js/lib/renderers/plurals/rules/plural_rules_compiler.rb +5 -1
  11. data/js/lib/renderers/shared/currencies_renderer.rb +23 -0
  12. data/js/lib/twitter_cldr_js.rb +2 -0
  13. data/js/spec/js/calendars/timespan_spec.js +2 -2
  14. data/js/spec/js/numbers/currency_spec.js +34 -0
  15. data/js/spec/js/numbers/decimal_spec.js +24 -0
  16. data/js/spec/js/numbers/helpers/fraction_spec.js +23 -0
  17. data/js/spec/js/numbers/helpers/integer_spec.js +100 -0
  18. data/js/spec/js/numbers/number_spec.js +70 -0
  19. data/js/spec/js/numbers/percent_spec.js +22 -0
  20. data/js/spec/rb/renderers/plurals/plural_rules_compiler_spec.rb +4 -0
  21. data/lib/twitter_cldr/collation/collator.rb +14 -20
  22. data/lib/twitter_cldr/collation/trie_builder.rb +3 -3
  23. data/lib/twitter_cldr/formatters/numbers/decimal_formatter.rb +0 -6
  24. data/lib/twitter_cldr/formatters/numbers/helpers/base.rb +1 -1
  25. data/lib/twitter_cldr/formatters/numbers/number_formatter.rb +6 -2
  26. data/lib/twitter_cldr/normalization/base.rb +7 -1
  27. data/lib/twitter_cldr/normalization/nfd.rb +2 -6
  28. data/lib/twitter_cldr/normalization/nfkc.rb +4 -10
  29. data/lib/twitter_cldr/normalization/nfkd.rb +12 -37
  30. data/lib/twitter_cldr/resources.rb +10 -3
  31. data/lib/twitter_cldr/resources/canonical_compositions_updater.rb +51 -0
  32. data/lib/twitter_cldr/resources/composition_exclusions_importer.rb +62 -0
  33. data/lib/twitter_cldr/resources/custom_locales_resources_importer.rb +80 -0
  34. data/lib/twitter_cldr/resources/download.rb +41 -0
  35. data/lib/twitter_cldr/resources/loader.rb +1 -1
  36. data/lib/twitter_cldr/resources/locales_resources_importer.rb +105 -0
  37. data/lib/twitter_cldr/resources/phone_codes_importer.rb +48 -0
  38. data/lib/twitter_cldr/resources/postal_codes_importer.rb +44 -0
  39. data/lib/twitter_cldr/resources/tailoring_importer.rb +18 -16
  40. data/lib/twitter_cldr/resources/unicode_data_importer.rb +90 -0
  41. data/lib/twitter_cldr/shared.rb +3 -1
  42. data/lib/twitter_cldr/shared/code_point.rb +47 -36
  43. data/lib/twitter_cldr/shared/currencies.rb +12 -15
  44. data/lib/twitter_cldr/shared/phone_codes.rb +30 -0
  45. data/lib/twitter_cldr/shared/postal_codes.rb +35 -0
  46. data/lib/twitter_cldr/tokenizers/calendars/timespan_tokenizer.rb +11 -3
  47. data/lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb +8 -1
  48. data/lib/twitter_cldr/utils/code_points.rb +2 -2
  49. data/lib/twitter_cldr/version.rb +1 -1
  50. data/resources/collation/tailoring/af.yml +3 -3
  51. data/resources/collation/tailoring/ar.yml +3 -3
  52. data/resources/collation/tailoring/ca.yml +3 -3
  53. data/resources/collation/tailoring/cs.yml +3 -3
  54. data/resources/collation/tailoring/da.yml +4 -4
  55. data/resources/collation/tailoring/de.yml +3 -3
  56. data/resources/collation/tailoring/el.yml +3 -3
  57. data/resources/collation/tailoring/en.yml +3 -3
  58. data/resources/collation/tailoring/es.yml +3 -3
  59. data/resources/collation/tailoring/eu.yml +3 -3
  60. data/resources/collation/tailoring/fa.yml +3 -3
  61. data/resources/collation/tailoring/fi.yml +3 -3
  62. data/resources/collation/tailoring/fil.yml +3 -3
  63. data/resources/collation/tailoring/fr.yml +3 -3
  64. data/resources/collation/tailoring/he.yml +3 -3
  65. data/resources/collation/tailoring/hi.yml +3 -3
  66. data/resources/collation/tailoring/hu.yml +3 -3
  67. data/resources/collation/tailoring/id.yml +3 -3
  68. data/resources/collation/tailoring/it.yml +3 -3
  69. data/resources/collation/tailoring/ja.yml +3 -3
  70. data/resources/collation/tailoring/ko.yml +3 -3
  71. data/resources/collation/tailoring/ms.yml +3 -3
  72. data/resources/collation/tailoring/nb.yml +3 -3
  73. data/resources/collation/tailoring/nl.yml +3 -3
  74. data/resources/collation/tailoring/pl.yml +3 -3
  75. data/resources/collation/tailoring/pt.yml +3 -3
  76. data/resources/collation/tailoring/ru.yml +3 -3
  77. data/resources/collation/tailoring/sv.yml +3 -3
  78. data/resources/collation/tailoring/th.yml +3 -3
  79. data/resources/collation/tailoring/tr.yml +3 -3
  80. data/resources/collation/tailoring/uk.yml +3 -3
  81. data/resources/collation/tailoring/ur.yml +3 -3
  82. data/resources/collation/tailoring/zh-Hant.yml +3 -3
  83. data/resources/collation/tailoring/zh.yml +3 -3
  84. data/resources/custom/locales/af/units.yml +19 -19
  85. data/resources/custom/locales/ar/units.yml +35 -35
  86. data/resources/custom/locales/ca/units.yml +19 -19
  87. data/resources/custom/locales/cs/units.yml +23 -23
  88. data/resources/custom/locales/da/units.yml +19 -19
  89. data/resources/custom/locales/de/units.yml +19 -19
  90. data/resources/custom/locales/el/units.yml +19 -19
  91. data/resources/custom/locales/en/units.yml +10 -10
  92. data/resources/custom/locales/es/units.yml +19 -19
  93. data/resources/custom/locales/eu/units.yml +19 -19
  94. data/resources/custom/locales/fa/units.yml +15 -15
  95. data/resources/custom/locales/fi/units.yml +19 -19
  96. data/resources/custom/locales/fil/units.yml +19 -19
  97. data/resources/custom/locales/fr/units.yml +19 -19
  98. data/resources/custom/locales/he/units.yml +19 -19
  99. data/resources/custom/locales/hi/units.yml +19 -19
  100. data/resources/custom/locales/hu/units.yml +15 -15
  101. data/resources/custom/locales/id/units.yml +15 -15
  102. data/resources/custom/locales/it/units.yml +19 -19
  103. data/resources/custom/locales/ja/units.yml +15 -15
  104. data/resources/custom/locales/ko/units.yml +15 -15
  105. data/resources/custom/locales/ms/units.yml +15 -15
  106. data/resources/custom/locales/nb/units.yml +19 -19
  107. data/resources/custom/locales/nl/units.yml +19 -19
  108. data/resources/custom/locales/pl/units.yml +27 -23
  109. data/resources/custom/locales/pt/units.yml +19 -19
  110. data/resources/custom/locales/ru/units.yml +27 -27
  111. data/resources/custom/locales/sv/units.yml +19 -19
  112. data/resources/custom/locales/th/units.yml +15 -15
  113. data/resources/custom/locales/tr/units.yml +15 -15
  114. data/resources/custom/locales/uk/units.yml +27 -27
  115. data/resources/custom/locales/ur/units.yml +19 -19
  116. data/resources/custom/locales/zh-Hant/units.yml +15 -15
  117. data/resources/custom/locales/zh/units.yml +15 -15
  118. data/resources/locales/af/calendars.yml +114 -113
  119. data/resources/locales/af/languages.yml +174 -173
  120. data/resources/locales/af/numbers.yml +43 -42
  121. data/resources/locales/af/plurals.yml +3 -2
  122. data/resources/locales/af/units.yml +136 -135
  123. data/resources/locales/ar/calendars.yml +121 -120
  124. data/resources/locales/ar/languages.yml +501 -500
  125. data/resources/locales/ar/numbers.yml +36 -35
  126. data/resources/locales/ar/plurals.yml +9 -1
  127. data/resources/locales/ar/units.yml +220 -219
  128. data/resources/locales/ca/calendars.yml +157 -156
  129. data/resources/locales/ca/languages.yml +511 -510
  130. data/resources/locales/ca/numbers.yml +44 -43
  131. data/resources/locales/ca/plurals.yml +3 -2
  132. data/resources/locales/ca/units.yml +136 -135
  133. data/resources/locales/cs/calendars.yml +153 -152
  134. data/resources/locales/cs/languages.yml +472 -471
  135. data/resources/locales/cs/numbers.yml +45 -44
  136. data/resources/locales/cs/plurals.yml +3 -2
  137. data/resources/locales/cs/units.yml +164 -163
  138. data/resources/locales/da/calendars.yml +117 -116
  139. data/resources/locales/da/languages.yml +515 -514
  140. data/resources/locales/da/numbers.yml +44 -43
  141. data/resources/locales/da/plurals.yml +3 -1
  142. data/resources/locales/da/units.yml +122 -121
  143. data/resources/locales/de/calendars.yml +136 -135
  144. data/resources/locales/de/languages.yml +514 -513
  145. data/resources/locales/de/numbers.yml +44 -43
  146. data/resources/locales/de/plurals.yml +3 -1
  147. data/resources/locales/de/units.yml +136 -135
  148. data/resources/locales/el/calendars.yml +138 -137
  149. data/resources/locales/el/languages.yml +520 -519
  150. data/resources/locales/el/numbers.yml +43 -42
  151. data/resources/locales/el/plurals.yml +3 -2
  152. data/resources/locales/el/units.yml +143 -142
  153. data/resources/locales/en/calendars.yml +117 -116
  154. data/resources/locales/en/languages.yml +559 -558
  155. data/resources/locales/en/numbers.yml +32 -31
  156. data/resources/locales/en/plurals.yml +3 -1
  157. data/resources/locales/en/units.yml +108 -107
  158. data/resources/locales/es/calendars.yml +118 -117
  159. data/resources/locales/es/languages.yml +511 -510
  160. data/resources/locales/es/numbers.yml +42 -41
  161. data/resources/locales/es/plurals.yml +3 -1
  162. data/resources/locales/es/units.yml +136 -135
  163. data/resources/locales/eu/calendars.yml +124 -123
  164. data/resources/locales/eu/languages.yml +162 -161
  165. data/resources/locales/eu/numbers.yml +44 -43
  166. data/resources/locales/eu/plurals.yml +3 -2
  167. data/resources/locales/eu/units.yml +129 -128
  168. data/resources/locales/fa/calendars.yml +137 -136
  169. data/resources/locales/fa/languages.yml +489 -488
  170. data/resources/locales/fa/numbers.yml +31 -30
  171. data/resources/locales/fa/plurals.yml +3 -1
  172. data/resources/locales/fa/units.yml +122 -121
  173. data/resources/locales/fi/calendars.yml +153 -152
  174. data/resources/locales/fi/languages.yml +520 -519
  175. data/resources/locales/fi/numbers.yml +44 -43
  176. data/resources/locales/fi/plurals.yml +3 -1
  177. data/resources/locales/fi/units.yml +136 -135
  178. data/resources/locales/fil/calendars.yml +123 -122
  179. data/resources/locales/fil/languages.yml +169 -168
  180. data/resources/locales/fil/numbers.yml +32 -31
  181. data/resources/locales/fil/plurals.yml +3 -1
  182. data/resources/locales/fil/units.yml +122 -121
  183. data/resources/locales/fr/calendars.yml +144 -143
  184. data/resources/locales/fr/languages.yml +512 -511
  185. data/resources/locales/fr/numbers.yml +44 -43
  186. data/resources/locales/fr/plurals.yml +3 -1
  187. data/resources/locales/fr/units.yml +136 -135
  188. data/resources/locales/he/calendars.yml +120 -119
  189. data/resources/locales/he/languages.yml +282 -281
  190. data/resources/locales/he/numbers.yml +32 -31
  191. data/resources/locales/he/plurals.yml +3 -1
  192. data/resources/locales/he/units.yml +122 -121
  193. data/resources/locales/hi/calendars.yml +112 -111
  194. data/resources/locales/hi/languages.yml +511 -510
  195. data/resources/locales/hi/numbers.yml +32 -31
  196. data/resources/locales/hi/plurals.yml +3 -1
  197. data/resources/locales/hi/units.yml +122 -121
  198. data/resources/locales/hu/calendars.yml +142 -141
  199. data/resources/locales/hu/languages.yml +520 -519
  200. data/resources/locales/hu/numbers.yml +43 -42
  201. data/resources/locales/hu/plurals.yml +3 -1
  202. data/resources/locales/hu/units.yml +108 -107
  203. data/resources/locales/id/calendars.yml +117 -116
  204. data/resources/locales/id/languages.yml +514 -513
  205. data/resources/locales/id/numbers.yml +43 -42
  206. data/resources/locales/id/plurals.yml +3 -1
  207. data/resources/locales/id/units.yml +108 -107
  208. data/resources/locales/it/calendars.yml +123 -122
  209. data/resources/locales/it/languages.yml +504 -503
  210. data/resources/locales/it/numbers.yml +44 -43
  211. data/resources/locales/it/plurals.yml +3 -1
  212. data/resources/locales/it/units.yml +122 -121
  213. data/resources/locales/ja/calendars.yml +109 -108
  214. data/resources/locales/ja/languages.yml +516 -515
  215. data/resources/locales/ja/numbers.yml +35 -34
  216. data/resources/locales/ja/plurals.yml +3 -1
  217. data/resources/locales/ja/units.yml +108 -107
  218. data/resources/locales/ko/calendars.yml +112 -111
  219. data/resources/locales/ko/languages.yml +509 -508
  220. data/resources/locales/ko/numbers.yml +32 -31
  221. data/resources/locales/ko/plurals.yml +3 -1
  222. data/resources/locales/ko/units.yml +108 -107
  223. data/resources/locales/ms/calendars.yml +134 -133
  224. data/resources/locales/ms/languages.yml +158 -157
  225. data/resources/locales/ms/numbers.yml +31 -30
  226. data/resources/locales/ms/plurals.yml +3 -1
  227. data/resources/locales/ms/units.yml +136 -135
  228. data/resources/locales/nb/calendars.yml +143 -142
  229. data/resources/locales/nb/languages.yml +530 -529
  230. data/resources/locales/nb/numbers.yml +44 -43
  231. data/resources/locales/nb/plurals.yml +3 -2
  232. data/resources/locales/nb/units.yml +130 -129
  233. data/resources/locales/nl/calendars.yml +124 -123
  234. data/resources/locales/nl/languages.yml +516 -515
  235. data/resources/locales/nl/numbers.yml +44 -43
  236. data/resources/locales/nl/plurals.yml +3 -1
  237. data/resources/locales/nl/units.yml +122 -121
  238. data/resources/locales/pl/calendars.yml +148 -147
  239. data/resources/locales/pl/languages.yml +505 -504
  240. data/resources/locales/pl/numbers.yml +46 -45
  241. data/resources/locales/pl/plurals.yml +5 -1
  242. data/resources/locales/pl/units.yml +205 -204
  243. data/resources/locales/pt/calendars.yml +131 -130
  244. data/resources/locales/pt/languages.yml +517 -516
  245. data/resources/locales/pt/numbers.yml +44 -43
  246. data/resources/locales/pt/plurals.yml +3 -1
  247. data/resources/locales/pt/units.yml +136 -135
  248. data/resources/locales/ru/calendars.yml +143 -142
  249. data/resources/locales/ru/languages.yml +511 -510
  250. data/resources/locales/ru/numbers.yml +43 -42
  251. data/resources/locales/ru/plurals.yml +5 -1
  252. data/resources/locales/ru/units.yml +192 -191
  253. data/resources/locales/sv/calendars.yml +151 -150
  254. data/resources/locales/sv/languages.yml +531 -530
  255. data/resources/locales/sv/numbers.yml +44 -43
  256. data/resources/locales/sv/plurals.yml +3 -1
  257. data/resources/locales/sv/units.yml +136 -135
  258. data/resources/locales/th/calendars.yml +125 -124
  259. data/resources/locales/th/languages.yml +510 -509
  260. data/resources/locales/th/numbers.yml +41 -40
  261. data/resources/locales/th/plurals.yml +3 -1
  262. data/resources/locales/th/units.yml +108 -107
  263. data/resources/locales/tr/calendars.yml +139 -138
  264. data/resources/locales/tr/languages.yml +511 -510
  265. data/resources/locales/tr/numbers.yml +43 -42
  266. data/resources/locales/tr/plurals.yml +3 -1
  267. data/resources/locales/tr/units.yml +108 -107
  268. data/resources/locales/uk/calendars.yml +131 -130
  269. data/resources/locales/uk/languages.yml +520 -519
  270. data/resources/locales/uk/numbers.yml +46 -45
  271. data/resources/locales/uk/plurals.yml +5 -2
  272. data/resources/locales/uk/units.yml +192 -191
  273. data/resources/locales/ur/calendars.yml +111 -110
  274. data/resources/locales/ur/languages.yml +164 -163
  275. data/resources/locales/ur/numbers.yml +32 -31
  276. data/resources/locales/ur/plurals.yml +3 -1
  277. data/resources/locales/ur/units.yml +136 -135
  278. data/resources/locales/zh-Hant/calendars.yml +116 -115
  279. data/resources/locales/zh-Hant/languages.yml +510 -509
  280. data/resources/locales/zh-Hant/numbers.yml +35 -34
  281. data/resources/locales/zh-Hant/plurals.yml +3 -2
  282. data/resources/locales/zh-Hant/units.yml +108 -107
  283. data/resources/locales/zh/calendars.yml +138 -137
  284. data/resources/locales/zh/languages.yml +506 -505
  285. data/resources/locales/zh/numbers.yml +35 -34
  286. data/resources/locales/zh/plurals.yml +3 -1
  287. data/resources/locales/zh/units.yml +80 -79
  288. data/resources/shared/currencies.yml +448 -451
  289. data/resources/shared/phone_codes.yml +241 -0
  290. data/resources/shared/postal_codes.yml +160 -0
  291. data/resources/unicode_data/blocks.yml +221 -221
  292. data/resources/unicode_data/blocks/aegean_numbers.yml +913 -0
  293. data/resources/unicode_data/blocks/alchemical_symbols.yml +1857 -0
  294. data/resources/unicode_data/blocks/alphabetic_presentation_forms.yml +929 -0
  295. data/resources/unicode_data/blocks/ancient_greek_musical_notation.yml +1121 -0
  296. data/resources/unicode_data/blocks/ancient_greek_numbers.yml +1201 -0
  297. data/resources/unicode_data/blocks/ancient_symbols.yml +193 -0
  298. data/resources/unicode_data/blocks/arabic.yml +4049 -0
  299. data/resources/unicode_data/blocks/arabic_extended_a.yml +625 -0
  300. data/resources/unicode_data/blocks/arabic_mathematical_alphabetic_symbols.yml +2289 -0
  301. data/resources/unicode_data/{arabic_presentation_forms_a.yml → blocks/arabic_presentation_forms_a.yml} +7369 -7368
  302. data/resources/unicode_data/{arabic_presentation_forms_b.yml → blocks/arabic_presentation_forms_b.yml} +1414 -1414
  303. data/resources/unicode_data/blocks/arabic_supplement.yml +769 -0
  304. data/resources/unicode_data/blocks/armenian.yml +1393 -0
  305. data/resources/unicode_data/blocks/arrows.yml +1793 -0
  306. data/resources/unicode_data/blocks/avestan.yml +977 -0
  307. data/resources/unicode_data/blocks/balinese.yml +1937 -0
  308. data/resources/unicode_data/blocks/bamum.yml +1409 -0
  309. data/resources/unicode_data/blocks/bamum_supplement.yml +9105 -0
  310. data/resources/unicode_data/blocks/basic_latin.yml +2049 -0
  311. data/resources/unicode_data/blocks/batak.yml +897 -0
  312. data/resources/unicode_data/blocks/bengali.yml +1473 -0
  313. data/resources/unicode_data/blocks/block_elements.yml +513 -0
  314. data/resources/unicode_data/blocks/bopomofo.yml +657 -0
  315. data/resources/unicode_data/blocks/bopomofo_extended.yml +433 -0
  316. data/resources/unicode_data/{box_drawing.yml → blocks/box_drawing.yml} +1537 -1537
  317. data/resources/unicode_data/blocks/brahmi.yml +1729 -0
  318. data/resources/unicode_data/blocks/braille_patterns.yml +4097 -0
  319. data/resources/unicode_data/blocks/buginese.yml +481 -0
  320. data/resources/unicode_data/blocks/buhid.yml +321 -0
  321. data/resources/unicode_data/blocks/byzantine_musical_symbols.yml +3937 -0
  322. data/resources/unicode_data/blocks/carian.yml +785 -0
  323. data/resources/unicode_data/blocks/chakma.yml +1073 -0
  324. data/resources/unicode_data/blocks/cham.yml +1329 -0
  325. data/resources/unicode_data/blocks/cherokee.yml +1361 -0
  326. data/resources/unicode_data/{cjk_compatibility.yml → blocks/cjk_compatibility.yml} +2706 -2706
  327. data/resources/unicode_data/{cjk_compatibility_forms.yml → blocks/cjk_compatibility_forms.yml} +363 -363
  328. data/resources/unicode_data/blocks/cjk_compatibility_ideographs.yml +7553 -0
  329. data/resources/unicode_data/blocks/cjk_compatibility_ideographs_supplement.yml +8673 -0
  330. data/resources/unicode_data/blocks/cjk_radicals_supplement.yml +1841 -0
  331. data/resources/unicode_data/blocks/cjk_strokes.yml +577 -0
  332. data/resources/unicode_data/blocks/cjk_symbols_and_punctuation.yml +1025 -0
  333. data/resources/unicode_data/blocks/cjk_unified_ideographs.yml +33 -0
  334. data/resources/unicode_data/blocks/cjk_unified_ideographs_extension_a.yml +33 -0
  335. data/resources/unicode_data/blocks/cjk_unified_ideographs_extension_b.yml +33 -0
  336. data/resources/unicode_data/blocks/cjk_unified_ideographs_extension_c.yml +33 -0
  337. data/resources/unicode_data/blocks/cjk_unified_ideographs_extension_d.yml +33 -0
  338. data/resources/unicode_data/blocks/combining_diacritical_marks.yml +1793 -0
  339. data/resources/unicode_data/{combining_diacritical_marks_for_symbols.yml → blocks/combining_diacritical_marks_for_symbols.yml} +409 -409
  340. data/resources/unicode_data/blocks/combining_diacritical_marks_supplement.yml +689 -0
  341. data/resources/unicode_data/blocks/combining_half_marks.yml +113 -0
  342. data/resources/unicode_data/blocks/common_indic_number_forms.yml +161 -0
  343. data/resources/unicode_data/blocks/control_pictures.yml +625 -0
  344. data/resources/unicode_data/blocks/coptic.yml +1969 -0
  345. data/resources/unicode_data/blocks/counting_rod_numerals.yml +289 -0
  346. data/resources/unicode_data/blocks/cuneiform.yml +14065 -0
  347. data/resources/unicode_data/blocks/cuneiform_numbers_and_punctuation.yml +1649 -0
  348. data/resources/unicode_data/blocks/currency_symbols.yml +417 -0
  349. data/resources/unicode_data/blocks/cypriot_syllabary.yml +881 -0
  350. data/resources/unicode_data/{cyrillic.yml → blocks/cyrillic.yml} +2765 -2765
  351. data/resources/unicode_data/blocks/cyrillic_extended_a.yml +513 -0
  352. data/resources/unicode_data/blocks/cyrillic_extended_b.yml +1425 -0
  353. data/resources/unicode_data/blocks/cyrillic_supplement.yml +641 -0
  354. data/resources/unicode_data/blocks/deseret.yml +1281 -0
  355. data/resources/unicode_data/blocks/devanagari.yml +2033 -0
  356. data/resources/unicode_data/blocks/devanagari_extended.yml +449 -0
  357. data/resources/unicode_data/blocks/dingbats.yml +3057 -0
  358. data/resources/unicode_data/blocks/domino_tiles.yml +1601 -0
  359. data/resources/unicode_data/blocks/egyptian_hieroglyphs.yml +17137 -0
  360. data/resources/unicode_data/blocks/emoticons.yml +1217 -0
  361. data/resources/unicode_data/blocks/enclosed_alphanumeric_supplement.yml +2737 -0
  362. data/resources/unicode_data/blocks/enclosed_alphanumerics.yml +2561 -0
  363. data/resources/unicode_data/{enclosed_cjk_letters_and_months.yml → blocks/enclosed_cjk_letters_and_months.yml} +3067 -3067
  364. data/resources/unicode_data/{enclosed_ideographic_supplement.yml → blocks/enclosed_ideographic_supplement.yml} +685 -685
  365. data/resources/unicode_data/blocks/ethiopic.yml +5729 -0
  366. data/resources/unicode_data/blocks/ethiopic_extended.yml +1265 -0
  367. data/resources/unicode_data/blocks/ethiopic_extended_a.yml +513 -0
  368. data/resources/unicode_data/blocks/ethiopic_supplement.yml +417 -0
  369. data/resources/unicode_data/blocks/general_punctuation.yml +1713 -0
  370. data/resources/unicode_data/blocks/geometric_shapes.yml +1537 -0
  371. data/resources/unicode_data/blocks/georgian.yml +1409 -0
  372. data/resources/unicode_data/blocks/georgian_supplement.yml +641 -0
  373. data/resources/unicode_data/blocks/glagolitic.yml +1505 -0
  374. data/resources/unicode_data/blocks/gothic.yml +433 -0
  375. data/resources/unicode_data/{greek_and_coptic.yml → blocks/greek_and_coptic.yml} +1360 -1360
  376. data/resources/unicode_data/{greek_extended.yml → blocks/greek_extended.yml} +2330 -2330
  377. data/resources/unicode_data/blocks/gujarati.yml +1345 -0
  378. data/resources/unicode_data/blocks/gurmukhi.yml +1265 -0
  379. data/resources/unicode_data/{halfwidth_and_fullwidth_forms.yml → blocks/halfwidth_and_fullwidth_forms.yml} +2517 -2517
  380. data/resources/unicode_data/{hangul_compatibility_jamo.yml → blocks/hangul_compatibility_jamo.yml} +993 -993
  381. data/resources/unicode_data/blocks/hangul_jamo.yml +4097 -0
  382. data/resources/unicode_data/blocks/hangul_jamo_extended_a.yml +465 -0
  383. data/resources/unicode_data/blocks/hangul_jamo_extended_b.yml +1153 -0
  384. data/resources/unicode_data/blocks/hangul_syllables.yml +33 -0
  385. data/resources/unicode_data/blocks/hanunoo.yml +369 -0
  386. data/resources/unicode_data/blocks/hebrew.yml +1393 -0
  387. data/resources/unicode_data/blocks/high_private_use_surrogates.yml +33 -0
  388. data/resources/unicode_data/blocks/high_surrogates.yml +33 -0
  389. data/resources/unicode_data/blocks/hiragana.yml +1489 -0
  390. data/resources/unicode_data/blocks/ideographic_description_characters.yml +193 -0
  391. data/resources/unicode_data/blocks/imperial_aramaic.yml +497 -0
  392. data/resources/unicode_data/blocks/inscriptional_pahlavi.yml +433 -0
  393. data/resources/unicode_data/blocks/inscriptional_parthian.yml +481 -0
  394. data/resources/unicode_data/{ipa_extensions.yml → blocks/ipa_extensions.yml} +1050 -1050
  395. data/resources/unicode_data/blocks/javanese.yml +1457 -0
  396. data/resources/unicode_data/blocks/kaithi.yml +1057 -0
  397. data/resources/unicode_data/blocks/kana_supplement.yml +33 -0
  398. data/resources/unicode_data/{kanbun.yml → blocks/kanbun.yml} +167 -167
  399. data/resources/unicode_data/blocks/kangxi_radicals.yml +3425 -0
  400. data/resources/unicode_data/blocks/kannada.yml +1377 -0
  401. data/resources/unicode_data/blocks/katakana.yml +1537 -0
  402. data/resources/unicode_data/blocks/katakana_phonetic_extensions.yml +257 -0
  403. data/resources/unicode_data/blocks/kayah_li.yml +769 -0
  404. data/resources/unicode_data/blocks/kharoshthi.yml +1041 -0
  405. data/resources/unicode_data/blocks/khmer.yml +1825 -0
  406. data/resources/unicode_data/blocks/khmer_symbols.yml +513 -0
  407. data/resources/unicode_data/blocks/lao.yml +1073 -0
  408. data/resources/unicode_data/{latin_1_supplement.yml → blocks/latin_1_supplement.yml} +1319 -1319
  409. data/resources/unicode_data/{latin_extended_a.yml → blocks/latin_extended_a.yml} +1210 -1210
  410. data/resources/unicode_data/{latin_extended_additional.yml → blocks/latin_extended_additional.yml} +2460 -2460
  411. data/resources/unicode_data/{latin_extended_b.yml → blocks/latin_extended_b.yml} +2096 -2096
  412. data/resources/unicode_data/blocks/latin_extended_c.yml +513 -0
  413. data/resources/unicode_data/blocks/latin_extended_d.yml +2145 -0
  414. data/resources/unicode_data/blocks/lepcha.yml +1185 -0
  415. data/resources/unicode_data/blocks/letterlike_symbols.yml +1281 -0
  416. data/resources/unicode_data/blocks/limbu.yml +1057 -0
  417. data/resources/unicode_data/blocks/linear_b_ideograms.yml +1969 -0
  418. data/resources/unicode_data/blocks/linear_b_syllabary.yml +1409 -0
  419. data/resources/unicode_data/blocks/lisu.yml +769 -0
  420. data/resources/unicode_data/blocks/low_surrogates.yml +33 -0
  421. data/resources/unicode_data/blocks/lycian.yml +465 -0
  422. data/resources/unicode_data/blocks/lydian.yml +433 -0
  423. data/resources/unicode_data/blocks/mahjong_tiles.yml +705 -0
  424. data/resources/unicode_data/blocks/malayalam.yml +1569 -0
  425. data/resources/unicode_data/blocks/mandaic.yml +465 -0
  426. data/resources/unicode_data/{mathematical_alphanumeric_symbols.yml → blocks/mathematical_alphanumeric_symbols.yml} +11953 -11953
  427. data/resources/unicode_data/blocks/mathematical_operators.yml +4097 -0
  428. data/resources/unicode_data/blocks/meetei_mayek.yml +897 -0
  429. data/resources/unicode_data/blocks/meetei_mayek_extensions.yml +369 -0
  430. data/resources/unicode_data/blocks/meroitic_cursive.yml +417 -0
  431. data/resources/unicode_data/blocks/meroitic_hieroglyphs.yml +513 -0
  432. data/resources/unicode_data/blocks/miao.yml +2129 -0
  433. data/resources/unicode_data/blocks/miscellaneous_mathematical_symbols_a.yml +769 -0
  434. data/resources/unicode_data/blocks/miscellaneous_mathematical_symbols_b.yml +2049 -0
  435. data/resources/unicode_data/blocks/miscellaneous_symbols.yml +4097 -0
  436. data/resources/unicode_data/blocks/miscellaneous_symbols_and_arrows.yml +1393 -0
  437. data/resources/unicode_data/blocks/miscellaneous_symbols_and_pictographs.yml +8529 -0
  438. data/resources/unicode_data/blocks/miscellaneous_technical.yml +3905 -0
  439. data/resources/unicode_data/blocks/modifier_tone_letters.yml +513 -0
  440. data/resources/unicode_data/blocks/mongolian.yml +2497 -0
  441. data/resources/unicode_data/blocks/musical_symbols.yml +3521 -0
  442. data/resources/unicode_data/blocks/myanmar.yml +2561 -0
  443. data/resources/unicode_data/blocks/myanmar_extended_a.yml +449 -0
  444. data/resources/unicode_data/blocks/new_tai_lue.yml +1329 -0
  445. data/resources/unicode_data/blocks/nko.yml +945 -0
  446. data/resources/unicode_data/blocks/number_forms.yml +929 -0
  447. data/resources/unicode_data/blocks/ogham.yml +465 -0
  448. data/resources/unicode_data/blocks/ol_chiki.yml +769 -0
  449. data/resources/unicode_data/blocks/old_italic.yml +561 -0
  450. data/resources/unicode_data/blocks/old_persian.yml +801 -0
  451. data/resources/unicode_data/blocks/old_south_arabian.yml +513 -0
  452. data/resources/unicode_data/blocks/old_turkic.yml +1169 -0
  453. data/resources/unicode_data/blocks/optical_character_recognition.yml +177 -0
  454. data/resources/unicode_data/blocks/oriya.yml +1441 -0
  455. data/resources/unicode_data/blocks/osmanya.yml +641 -0
  456. data/resources/unicode_data/blocks/phags_pa.yml +897 -0
  457. data/resources/unicode_data/blocks/phaistos_disc.yml +737 -0
  458. data/resources/unicode_data/blocks/phoenician.yml +465 -0
  459. data/resources/unicode_data/blocks/phonetic_extensions.yml +2049 -0
  460. data/resources/unicode_data/blocks/phonetic_extensions_supplement.yml +1025 -0
  461. data/resources/unicode_data/blocks/playing_cards.yml +945 -0
  462. data/resources/unicode_data/blocks/private_use_area.yml +33 -0
  463. data/resources/unicode_data/blocks/rejang.yml +593 -0
  464. data/resources/unicode_data/blocks/rumi_numeral_symbols.yml +497 -0
  465. data/resources/unicode_data/blocks/runic.yml +1297 -0
  466. data/resources/unicode_data/blocks/samaritan.yml +977 -0
  467. data/resources/unicode_data/blocks/saurashtra.yml +1297 -0
  468. data/resources/unicode_data/blocks/sharada.yml +1329 -0
  469. data/resources/unicode_data/blocks/shavian.yml +769 -0
  470. data/resources/unicode_data/blocks/sinhala.yml +1281 -0
  471. data/resources/unicode_data/blocks/small_form_variants.yml +417 -0
  472. data/resources/unicode_data/blocks/sora_sompeng.yml +561 -0
  473. data/resources/unicode_data/blocks/spacing_modifier_letters.yml +1281 -0
  474. data/resources/unicode_data/blocks/specials.yml +81 -0
  475. data/resources/unicode_data/blocks/sundanese.yml +1025 -0
  476. data/resources/unicode_data/blocks/sundanese_supplement.yml +129 -0
  477. data/resources/unicode_data/blocks/superscripts_and_subscripts.yml +673 -0
  478. data/resources/unicode_data/blocks/supplemental_arrows_a.yml +257 -0
  479. data/resources/unicode_data/blocks/supplemental_arrows_b.yml +2049 -0
  480. data/resources/unicode_data/blocks/supplemental_mathematical_operators.yml +4097 -0
  481. data/resources/unicode_data/blocks/supplemental_punctuation.yml +961 -0
  482. data/resources/unicode_data/blocks/supplementary_private_use_area_a.yml +33 -0
  483. data/resources/unicode_data/blocks/supplementary_private_use_area_b.yml +33 -0
  484. data/resources/unicode_data/blocks/syloti_nagri.yml +705 -0
  485. data/resources/unicode_data/blocks/syriac.yml +1233 -0
  486. data/resources/unicode_data/blocks/tagalog.yml +321 -0
  487. data/resources/unicode_data/blocks/tagbanwa.yml +289 -0
  488. data/resources/unicode_data/blocks/tags.yml +1553 -0
  489. data/resources/unicode_data/blocks/tai_le.yml +561 -0
  490. data/resources/unicode_data/blocks/tai_tham.yml +2033 -0
  491. data/resources/unicode_data/blocks/tai_viet.yml +1153 -0
  492. data/resources/unicode_data/blocks/tai_xuan_jing_symbols.yml +1393 -0
  493. data/resources/unicode_data/blocks/takri.yml +1057 -0
  494. data/resources/unicode_data/blocks/tamil.yml +1153 -0
  495. data/resources/unicode_data/blocks/telugu.yml +1489 -0
  496. data/resources/unicode_data/blocks/thaana.yml +801 -0
  497. data/resources/unicode_data/blocks/thai.yml +1393 -0
  498. data/resources/unicode_data/blocks/tibetan.yml +3377 -0
  499. data/resources/unicode_data/blocks/tifinagh.yml +945 -0
  500. data/resources/unicode_data/blocks/transport_and_map_symbols.yml +1121 -0
  501. data/resources/unicode_data/blocks/ugaritic.yml +497 -0
  502. data/resources/unicode_data/blocks/unified_canadian_aboriginal_syllabics.yml +10241 -0
  503. data/resources/unicode_data/blocks/unified_canadian_aboriginal_syllabics_extended.yml +1121 -0
  504. data/resources/unicode_data/blocks/vai.yml +4801 -0
  505. data/resources/unicode_data/blocks/variation_selectors.yml +257 -0
  506. data/resources/unicode_data/blocks/variation_selectors_supplement.yml +3841 -0
  507. data/resources/unicode_data/blocks/vedic_extensions.yml +625 -0
  508. data/resources/unicode_data/{vertical_forms.yml → blocks/vertical_forms.yml} +121 -121
  509. data/resources/unicode_data/blocks/yi_radicals.yml +881 -0
  510. data/resources/unicode_data/blocks/yi_syllables.yml +18641 -0
  511. data/resources/unicode_data/blocks/yijing_hexagram_symbols.yml +1025 -0
  512. data/resources/unicode_data/canonical_compositions.yml +4925 -0
  513. data/resources/unicode_data/composition_exclusions.yml +78 -74
  514. data/resources/unicode_data/hangul_blocks.yml +9 -9
  515. data/spec/collation/collation_spec.rb +6 -6
  516. data/spec/collation/collator_spec.rb +18 -19
  517. data/spec/collation/trie_builder_spec.rb +6 -9
  518. data/spec/core_ext/array_spec.rb +1 -1
  519. data/spec/core_ext/string_spec.rb +1 -1
  520. data/spec/formatters/numbers/currency_formatter_spec.rb +5 -0
  521. data/spec/formatters/numbers/decimal_formatter_spec.rb +4 -0
  522. data/spec/formatters/numbers/number_formatter_spec.rb +4 -4
  523. data/spec/formatters/numbers/percent_formatter_spec.rb +8 -0
  524. data/spec/normalization/base_spec.rb +2 -2
  525. data/spec/normalization/normalization_spec.rb +7 -3
  526. data/spec/readme_spec.rb +9 -9
  527. data/spec/resources/loader_spec.rb +4 -4
  528. data/spec/shared/code_point_spec.rb +102 -62
  529. data/spec/shared/currencies_spec.rb +17 -19
  530. data/spec/shared/phone_codes_spec.rb +49 -0
  531. data/spec/shared/postal_codes_spec.rb +68 -0
  532. data/spec/utils/code_points_spec.rb +6 -6
  533. metadata +264 -224
  534. data/resources/unicode_data/aegean_numbers.yml +0 -913
  535. data/resources/unicode_data/alchemical_symbols.yml +0 -1857
  536. data/resources/unicode_data/alphabetic_presentation_forms.yml +0 -929
  537. data/resources/unicode_data/ancient_greek_musical_notation.yml +0 -1121
  538. data/resources/unicode_data/ancient_greek_numbers.yml +0 -1201
  539. data/resources/unicode_data/ancient_symbols.yml +0 -193
  540. data/resources/unicode_data/arabic.yml +0 -4049
  541. data/resources/unicode_data/arabic_extended_a.yml +0 -625
  542. data/resources/unicode_data/arabic_mathematical_alphabetic_symbols.yml +0 -2289
  543. data/resources/unicode_data/arabic_supplement.yml +0 -769
  544. data/resources/unicode_data/armenian.yml +0 -1393
  545. data/resources/unicode_data/arrows.yml +0 -1793
  546. data/resources/unicode_data/avestan.yml +0 -977
  547. data/resources/unicode_data/balinese.yml +0 -1937
  548. data/resources/unicode_data/bamum.yml +0 -1409
  549. data/resources/unicode_data/bamum_supplement.yml +0 -9105
  550. data/resources/unicode_data/basic_latin.yml +0 -2049
  551. data/resources/unicode_data/batak.yml +0 -897
  552. data/resources/unicode_data/bengali.yml +0 -1473
  553. data/resources/unicode_data/block_elements.yml +0 -513
  554. data/resources/unicode_data/bopomofo.yml +0 -657
  555. data/resources/unicode_data/bopomofo_extended.yml +0 -433
  556. data/resources/unicode_data/brahmi.yml +0 -1729
  557. data/resources/unicode_data/braille_patterns.yml +0 -4097
  558. data/resources/unicode_data/buginese.yml +0 -481
  559. data/resources/unicode_data/buhid.yml +0 -321
  560. data/resources/unicode_data/byzantine_musical_symbols.yml +0 -3937
  561. data/resources/unicode_data/carian.yml +0 -785
  562. data/resources/unicode_data/chakma.yml +0 -1073
  563. data/resources/unicode_data/cham.yml +0 -1329
  564. data/resources/unicode_data/cherokee.yml +0 -1361
  565. data/resources/unicode_data/cjk_compatibility_ideographs.yml +0 -7553
  566. data/resources/unicode_data/cjk_compatibility_ideographs_supplement.yml +0 -8673
  567. data/resources/unicode_data/cjk_radicals_supplement.yml +0 -1841
  568. data/resources/unicode_data/cjk_strokes.yml +0 -577
  569. data/resources/unicode_data/cjk_symbols_and_punctuation.yml +0 -1025
  570. data/resources/unicode_data/cjk_unified_ideographs.yml +0 -33
  571. data/resources/unicode_data/cjk_unified_ideographs_extension_a.yml +0 -33
  572. data/resources/unicode_data/cjk_unified_ideographs_extension_b.yml +0 -33
  573. data/resources/unicode_data/cjk_unified_ideographs_extension_c.yml +0 -33
  574. data/resources/unicode_data/cjk_unified_ideographs_extension_d.yml +0 -33
  575. data/resources/unicode_data/combining_diacritical_marks.yml +0 -1793
  576. data/resources/unicode_data/combining_diacritical_marks_supplement.yml +0 -689
  577. data/resources/unicode_data/combining_half_marks.yml +0 -113
  578. data/resources/unicode_data/common_indic_number_forms.yml +0 -161
  579. data/resources/unicode_data/control_pictures.yml +0 -625
  580. data/resources/unicode_data/coptic.yml +0 -1969
  581. data/resources/unicode_data/counting_rod_numerals.yml +0 -289
  582. data/resources/unicode_data/cuneiform.yml +0 -14065
  583. data/resources/unicode_data/cuneiform_numbers_and_punctuation.yml +0 -1649
  584. data/resources/unicode_data/currency_symbols.yml +0 -417
  585. data/resources/unicode_data/cypriot_syllabary.yml +0 -881
  586. data/resources/unicode_data/cyrillic_extended_a.yml +0 -513
  587. data/resources/unicode_data/cyrillic_extended_b.yml +0 -1425
  588. data/resources/unicode_data/cyrillic_supplement.yml +0 -641
  589. data/resources/unicode_data/decomposition_map.yml +0 -4565
  590. data/resources/unicode_data/deseret.yml +0 -1281
  591. data/resources/unicode_data/devanagari.yml +0 -2033
  592. data/resources/unicode_data/devanagari_extended.yml +0 -449
  593. data/resources/unicode_data/dingbats.yml +0 -3057
  594. data/resources/unicode_data/domino_tiles.yml +0 -1601
  595. data/resources/unicode_data/egyptian_hieroglyphs.yml +0 -17137
  596. data/resources/unicode_data/emoticons.yml +0 -1217
  597. data/resources/unicode_data/enclosed_alphanumeric_supplement.yml +0 -2737
  598. data/resources/unicode_data/enclosed_alphanumerics.yml +0 -2561
  599. data/resources/unicode_data/ethiopic.yml +0 -5729
  600. data/resources/unicode_data/ethiopic_extended.yml +0 -1265
  601. data/resources/unicode_data/ethiopic_extended_a.yml +0 -513
  602. data/resources/unicode_data/ethiopic_supplement.yml +0 -417
  603. data/resources/unicode_data/general_punctuation.yml +0 -1713
  604. data/resources/unicode_data/geometric_shapes.yml +0 -1537
  605. data/resources/unicode_data/georgian.yml +0 -1409
  606. data/resources/unicode_data/georgian_supplement.yml +0 -641
  607. data/resources/unicode_data/glagolitic.yml +0 -1505
  608. data/resources/unicode_data/gothic.yml +0 -433
  609. data/resources/unicode_data/gujarati.yml +0 -1345
  610. data/resources/unicode_data/gurmukhi.yml +0 -1265
  611. data/resources/unicode_data/hangul_jamo.yml +0 -4097
  612. data/resources/unicode_data/hangul_jamo_extended_a.yml +0 -465
  613. data/resources/unicode_data/hangul_jamo_extended_b.yml +0 -1153
  614. data/resources/unicode_data/hangul_syllables.yml +0 -33
  615. data/resources/unicode_data/hanunoo.yml +0 -369
  616. data/resources/unicode_data/hebrew.yml +0 -1393
  617. data/resources/unicode_data/high_private_use_surrogates.yml +0 -33
  618. data/resources/unicode_data/high_surrogates.yml +0 -33
  619. data/resources/unicode_data/hiragana.yml +0 -1489
  620. data/resources/unicode_data/ideographic_description_characters.yml +0 -193
  621. data/resources/unicode_data/imperial_aramaic.yml +0 -497
  622. data/resources/unicode_data/inscriptional_pahlavi.yml +0 -433
  623. data/resources/unicode_data/inscriptional_parthian.yml +0 -481
  624. data/resources/unicode_data/javanese.yml +0 -1457
  625. data/resources/unicode_data/kaithi.yml +0 -1057
  626. data/resources/unicode_data/kana_supplement.yml +0 -33
  627. data/resources/unicode_data/kangxi_radicals.yml +0 -3425
  628. data/resources/unicode_data/kannada.yml +0 -1377
  629. data/resources/unicode_data/katakana.yml +0 -1537
  630. data/resources/unicode_data/katakana_phonetic_extensions.yml +0 -257
  631. data/resources/unicode_data/kayah_li.yml +0 -769
  632. data/resources/unicode_data/kharoshthi.yml +0 -1041
  633. data/resources/unicode_data/khmer.yml +0 -1825
  634. data/resources/unicode_data/khmer_symbols.yml +0 -513
  635. data/resources/unicode_data/lao.yml +0 -1073
  636. data/resources/unicode_data/latin_extended_c.yml +0 -513
  637. data/resources/unicode_data/latin_extended_d.yml +0 -2145
  638. data/resources/unicode_data/lepcha.yml +0 -1185
  639. data/resources/unicode_data/letterlike_symbols.yml +0 -1281
  640. data/resources/unicode_data/limbu.yml +0 -1057
  641. data/resources/unicode_data/linear_b_ideograms.yml +0 -1969
  642. data/resources/unicode_data/linear_b_syllabary.yml +0 -1409
  643. data/resources/unicode_data/lisu.yml +0 -769
  644. data/resources/unicode_data/low_surrogates.yml +0 -33
  645. data/resources/unicode_data/lycian.yml +0 -465
  646. data/resources/unicode_data/lydian.yml +0 -433
  647. data/resources/unicode_data/mahjong_tiles.yml +0 -705
  648. data/resources/unicode_data/malayalam.yml +0 -1569
  649. data/resources/unicode_data/mandaic.yml +0 -465
  650. data/resources/unicode_data/mathematical_operators.yml +0 -4097
  651. data/resources/unicode_data/meetei_mayek.yml +0 -897
  652. data/resources/unicode_data/meetei_mayek_extensions.yml +0 -369
  653. data/resources/unicode_data/meroitic_cursive.yml +0 -417
  654. data/resources/unicode_data/meroitic_hieroglyphs.yml +0 -513
  655. data/resources/unicode_data/miao.yml +0 -2129
  656. data/resources/unicode_data/miscellaneous_mathematical_symbols_a.yml +0 -769
  657. data/resources/unicode_data/miscellaneous_mathematical_symbols_b.yml +0 -2049
  658. data/resources/unicode_data/miscellaneous_symbols.yml +0 -4097
  659. data/resources/unicode_data/miscellaneous_symbols_and_arrows.yml +0 -1393
  660. data/resources/unicode_data/miscellaneous_symbols_and_pictographs.yml +0 -8529
  661. data/resources/unicode_data/miscellaneous_technical.yml +0 -3905
  662. data/resources/unicode_data/modifier_tone_letters.yml +0 -513
  663. data/resources/unicode_data/mongolian.yml +0 -2497
  664. data/resources/unicode_data/musical_symbols.yml +0 -3521
  665. data/resources/unicode_data/myanmar.yml +0 -2561
  666. data/resources/unicode_data/myanmar_extended_a.yml +0 -449
  667. data/resources/unicode_data/new_tai_lue.yml +0 -1329
  668. data/resources/unicode_data/nko.yml +0 -945
  669. data/resources/unicode_data/number_forms.yml +0 -929
  670. data/resources/unicode_data/ogham.yml +0 -465
  671. data/resources/unicode_data/ol_chiki.yml +0 -769
  672. data/resources/unicode_data/old_italic.yml +0 -561
  673. data/resources/unicode_data/old_persian.yml +0 -801
  674. data/resources/unicode_data/old_south_arabian.yml +0 -513
  675. data/resources/unicode_data/old_turkic.yml +0 -1169
  676. data/resources/unicode_data/optical_character_recognition.yml +0 -177
  677. data/resources/unicode_data/oriya.yml +0 -1441
  678. data/resources/unicode_data/osmanya.yml +0 -641
  679. data/resources/unicode_data/phags_pa.yml +0 -897
  680. data/resources/unicode_data/phaistos_disc.yml +0 -737
  681. data/resources/unicode_data/phoenician.yml +0 -465
  682. data/resources/unicode_data/phonetic_extensions.yml +0 -2049
  683. data/resources/unicode_data/phonetic_extensions_supplement.yml +0 -1025
  684. data/resources/unicode_data/playing_cards.yml +0 -945
  685. data/resources/unicode_data/private_use_area.yml +0 -33
  686. data/resources/unicode_data/rejang.yml +0 -593
  687. data/resources/unicode_data/rumi_numeral_symbols.yml +0 -497
  688. data/resources/unicode_data/runic.yml +0 -1297
  689. data/resources/unicode_data/samaritan.yml +0 -977
  690. data/resources/unicode_data/saurashtra.yml +0 -1297
  691. data/resources/unicode_data/sharada.yml +0 -1329
  692. data/resources/unicode_data/shavian.yml +0 -769
  693. data/resources/unicode_data/sinhala.yml +0 -1281
  694. data/resources/unicode_data/small_form_variants.yml +0 -417
  695. data/resources/unicode_data/sora_sompeng.yml +0 -561
  696. data/resources/unicode_data/spacing_modifier_letters.yml +0 -1281
  697. data/resources/unicode_data/specials.yml +0 -81
  698. data/resources/unicode_data/sundanese.yml +0 -1025
  699. data/resources/unicode_data/sundanese_supplement.yml +0 -129
  700. data/resources/unicode_data/superscripts_and_subscripts.yml +0 -673
  701. data/resources/unicode_data/supplemental_arrows_a.yml +0 -257
  702. data/resources/unicode_data/supplemental_arrows_b.yml +0 -2049
  703. data/resources/unicode_data/supplemental_mathematical_operators.yml +0 -4097
  704. data/resources/unicode_data/supplemental_punctuation.yml +0 -961
  705. data/resources/unicode_data/supplementary_private_use_area_a.yml +0 -33
  706. data/resources/unicode_data/supplementary_private_use_area_b.yml +0 -33
  707. data/resources/unicode_data/syloti_nagri.yml +0 -705
  708. data/resources/unicode_data/syriac.yml +0 -1233
  709. data/resources/unicode_data/tagalog.yml +0 -321
  710. data/resources/unicode_data/tagbanwa.yml +0 -289
  711. data/resources/unicode_data/tags.yml +0 -1553
  712. data/resources/unicode_data/tai_le.yml +0 -561
  713. data/resources/unicode_data/tai_tham.yml +0 -2033
  714. data/resources/unicode_data/tai_viet.yml +0 -1153
  715. data/resources/unicode_data/tai_xuan_jing_symbols.yml +0 -1393
  716. data/resources/unicode_data/takri.yml +0 -1057
  717. data/resources/unicode_data/tamil.yml +0 -1153
  718. data/resources/unicode_data/telugu.yml +0 -1489
  719. data/resources/unicode_data/thaana.yml +0 -801
  720. data/resources/unicode_data/thai.yml +0 -1393
  721. data/resources/unicode_data/tibetan.yml +0 -3377
  722. data/resources/unicode_data/tifinagh.yml +0 -945
  723. data/resources/unicode_data/transport_and_map_symbols.yml +0 -1121
  724. data/resources/unicode_data/ugaritic.yml +0 -497
  725. data/resources/unicode_data/unified_canadian_aboriginal_syllabics.yml +0 -10241
  726. data/resources/unicode_data/unified_canadian_aboriginal_syllabics_extended.yml +0 -1121
  727. data/resources/unicode_data/vai.yml +0 -4801
  728. data/resources/unicode_data/variation_selectors.yml +0 -257
  729. data/resources/unicode_data/variation_selectors_supplement.yml +0 -3841
  730. data/resources/unicode_data/vedic_extensions.yml +0 -625
  731. data/resources/unicode_data/yi_radicals.yml +0 -881
  732. data/resources/unicode_data/yi_syllables.yml +0 -18641
  733. data/resources/unicode_data/yijing_hexagram_symbols.yml +0 -1025
@@ -0,0 +1,433 @@
1
+ ---
2
+ 12704:
3
+ - 12704
4
+ - BOPOMOFO LETTER BU
5
+ - Lo
6
+ - '0'
7
+ - L
8
+ - ''
9
+ - ''
10
+ - ''
11
+ - ''
12
+ - N
13
+ - ''
14
+ - ''
15
+ - ''
16
+ - ''
17
+ - ''
18
+ 12705:
19
+ - 12705
20
+ - BOPOMOFO LETTER ZI
21
+ - Lo
22
+ - '0'
23
+ - L
24
+ - ''
25
+ - ''
26
+ - ''
27
+ - ''
28
+ - N
29
+ - ''
30
+ - ''
31
+ - ''
32
+ - ''
33
+ - ''
34
+ 12706:
35
+ - 12706
36
+ - BOPOMOFO LETTER JI
37
+ - Lo
38
+ - '0'
39
+ - L
40
+ - ''
41
+ - ''
42
+ - ''
43
+ - ''
44
+ - N
45
+ - ''
46
+ - ''
47
+ - ''
48
+ - ''
49
+ - ''
50
+ 12707:
51
+ - 12707
52
+ - BOPOMOFO LETTER GU
53
+ - Lo
54
+ - '0'
55
+ - L
56
+ - ''
57
+ - ''
58
+ - ''
59
+ - ''
60
+ - N
61
+ - ''
62
+ - ''
63
+ - ''
64
+ - ''
65
+ - ''
66
+ 12708:
67
+ - 12708
68
+ - BOPOMOFO LETTER EE
69
+ - Lo
70
+ - '0'
71
+ - L
72
+ - ''
73
+ - ''
74
+ - ''
75
+ - ''
76
+ - N
77
+ - ''
78
+ - ''
79
+ - ''
80
+ - ''
81
+ - ''
82
+ 12709:
83
+ - 12709
84
+ - BOPOMOFO LETTER ENN
85
+ - Lo
86
+ - '0'
87
+ - L
88
+ - ''
89
+ - ''
90
+ - ''
91
+ - ''
92
+ - N
93
+ - ''
94
+ - ''
95
+ - ''
96
+ - ''
97
+ - ''
98
+ 12710:
99
+ - 12710
100
+ - BOPOMOFO LETTER OO
101
+ - Lo
102
+ - '0'
103
+ - L
104
+ - ''
105
+ - ''
106
+ - ''
107
+ - ''
108
+ - N
109
+ - ''
110
+ - ''
111
+ - ''
112
+ - ''
113
+ - ''
114
+ 12711:
115
+ - 12711
116
+ - BOPOMOFO LETTER ONN
117
+ - Lo
118
+ - '0'
119
+ - L
120
+ - ''
121
+ - ''
122
+ - ''
123
+ - ''
124
+ - N
125
+ - ''
126
+ - ''
127
+ - ''
128
+ - ''
129
+ - ''
130
+ 12712:
131
+ - 12712
132
+ - BOPOMOFO LETTER IR
133
+ - Lo
134
+ - '0'
135
+ - L
136
+ - ''
137
+ - ''
138
+ - ''
139
+ - ''
140
+ - N
141
+ - ''
142
+ - ''
143
+ - ''
144
+ - ''
145
+ - ''
146
+ 12713:
147
+ - 12713
148
+ - BOPOMOFO LETTER ANN
149
+ - Lo
150
+ - '0'
151
+ - L
152
+ - ''
153
+ - ''
154
+ - ''
155
+ - ''
156
+ - N
157
+ - ''
158
+ - ''
159
+ - ''
160
+ - ''
161
+ - ''
162
+ 12714:
163
+ - 12714
164
+ - BOPOMOFO LETTER INN
165
+ - Lo
166
+ - '0'
167
+ - L
168
+ - ''
169
+ - ''
170
+ - ''
171
+ - ''
172
+ - N
173
+ - ''
174
+ - ''
175
+ - ''
176
+ - ''
177
+ - ''
178
+ 12715:
179
+ - 12715
180
+ - BOPOMOFO LETTER UNN
181
+ - Lo
182
+ - '0'
183
+ - L
184
+ - ''
185
+ - ''
186
+ - ''
187
+ - ''
188
+ - N
189
+ - ''
190
+ - ''
191
+ - ''
192
+ - ''
193
+ - ''
194
+ 12716:
195
+ - 12716
196
+ - BOPOMOFO LETTER IM
197
+ - Lo
198
+ - '0'
199
+ - L
200
+ - ''
201
+ - ''
202
+ - ''
203
+ - ''
204
+ - N
205
+ - ''
206
+ - ''
207
+ - ''
208
+ - ''
209
+ - ''
210
+ 12717:
211
+ - 12717
212
+ - BOPOMOFO LETTER NGG
213
+ - Lo
214
+ - '0'
215
+ - L
216
+ - ''
217
+ - ''
218
+ - ''
219
+ - ''
220
+ - N
221
+ - ''
222
+ - ''
223
+ - ''
224
+ - ''
225
+ - ''
226
+ 12718:
227
+ - 12718
228
+ - BOPOMOFO LETTER AINN
229
+ - Lo
230
+ - '0'
231
+ - L
232
+ - ''
233
+ - ''
234
+ - ''
235
+ - ''
236
+ - N
237
+ - ''
238
+ - ''
239
+ - ''
240
+ - ''
241
+ - ''
242
+ 12719:
243
+ - 12719
244
+ - BOPOMOFO LETTER AUNN
245
+ - Lo
246
+ - '0'
247
+ - L
248
+ - ''
249
+ - ''
250
+ - ''
251
+ - ''
252
+ - N
253
+ - ''
254
+ - ''
255
+ - ''
256
+ - ''
257
+ - ''
258
+ 12720:
259
+ - 12720
260
+ - BOPOMOFO LETTER AM
261
+ - Lo
262
+ - '0'
263
+ - L
264
+ - ''
265
+ - ''
266
+ - ''
267
+ - ''
268
+ - N
269
+ - ''
270
+ - ''
271
+ - ''
272
+ - ''
273
+ - ''
274
+ 12721:
275
+ - 12721
276
+ - BOPOMOFO LETTER OM
277
+ - Lo
278
+ - '0'
279
+ - L
280
+ - ''
281
+ - ''
282
+ - ''
283
+ - ''
284
+ - N
285
+ - ''
286
+ - ''
287
+ - ''
288
+ - ''
289
+ - ''
290
+ 12722:
291
+ - 12722
292
+ - BOPOMOFO LETTER ONG
293
+ - Lo
294
+ - '0'
295
+ - L
296
+ - ''
297
+ - ''
298
+ - ''
299
+ - ''
300
+ - N
301
+ - ''
302
+ - ''
303
+ - ''
304
+ - ''
305
+ - ''
306
+ 12723:
307
+ - 12723
308
+ - BOPOMOFO LETTER INNN
309
+ - Lo
310
+ - '0'
311
+ - L
312
+ - ''
313
+ - ''
314
+ - ''
315
+ - ''
316
+ - N
317
+ - ''
318
+ - ''
319
+ - ''
320
+ - ''
321
+ - ''
322
+ 12724:
323
+ - 12724
324
+ - BOPOMOFO FINAL LETTER P
325
+ - Lo
326
+ - '0'
327
+ - L
328
+ - ''
329
+ - ''
330
+ - ''
331
+ - ''
332
+ - N
333
+ - ''
334
+ - ''
335
+ - ''
336
+ - ''
337
+ - ''
338
+ 12725:
339
+ - 12725
340
+ - BOPOMOFO FINAL LETTER T
341
+ - Lo
342
+ - '0'
343
+ - L
344
+ - ''
345
+ - ''
346
+ - ''
347
+ - ''
348
+ - N
349
+ - ''
350
+ - ''
351
+ - ''
352
+ - ''
353
+ - ''
354
+ 12726:
355
+ - 12726
356
+ - BOPOMOFO FINAL LETTER K
357
+ - Lo
358
+ - '0'
359
+ - L
360
+ - ''
361
+ - ''
362
+ - ''
363
+ - ''
364
+ - N
365
+ - ''
366
+ - ''
367
+ - ''
368
+ - ''
369
+ - ''
370
+ 12727:
371
+ - 12727
372
+ - BOPOMOFO FINAL LETTER H
373
+ - Lo
374
+ - '0'
375
+ - L
376
+ - ''
377
+ - ''
378
+ - ''
379
+ - ''
380
+ - N
381
+ - ''
382
+ - ''
383
+ - ''
384
+ - ''
385
+ - ''
386
+ 12728:
387
+ - 12728
388
+ - BOPOMOFO LETTER GH
389
+ - Lo
390
+ - '0'
391
+ - L
392
+ - ''
393
+ - ''
394
+ - ''
395
+ - ''
396
+ - N
397
+ - ''
398
+ - ''
399
+ - ''
400
+ - ''
401
+ - ''
402
+ 12729:
403
+ - 12729
404
+ - BOPOMOFO LETTER LH
405
+ - Lo
406
+ - '0'
407
+ - L
408
+ - ''
409
+ - ''
410
+ - ''
411
+ - ''
412
+ - N
413
+ - ''
414
+ - ''
415
+ - ''
416
+ - ''
417
+ - ''
418
+ 12730:
419
+ - 12730
420
+ - BOPOMOFO LETTER ZY
421
+ - Lo
422
+ - '0'
423
+ - L
424
+ - ''
425
+ - ''
426
+ - ''
427
+ - ''
428
+ - N
429
+ - ''
430
+ - ''
431
+ - ''
432
+ - ''
433
+ - ''
@@ -1,2049 +1,2049 @@
1
- ---
2
- "2500":
3
- - "2500"
1
+ ---
2
+ 9472:
3
+ - 9472
4
4
  - BOX DRAWINGS LIGHT HORIZONTAL
5
5
  - So
6
- - "0"
7
- - "ON"
8
- - ""
9
- - ""
10
- - ""
11
- - ""
6
+ - '0'
7
+ - 'ON'
8
+ - ''
9
+ - ''
10
+ - ''
11
+ - ''
12
12
  - N
13
13
  - FORMS LIGHT HORIZONTAL
14
- - ""
15
- - ""
16
- - ""
17
- - ""
18
- "2501":
19
- - "2501"
14
+ - ''
15
+ - ''
16
+ - ''
17
+ - ''
18
+ 9473:
19
+ - 9473
20
20
  - BOX DRAWINGS HEAVY HORIZONTAL
21
21
  - So
22
- - "0"
23
- - "ON"
24
- - ""
25
- - ""
26
- - ""
27
- - ""
22
+ - '0'
23
+ - 'ON'
24
+ - ''
25
+ - ''
26
+ - ''
27
+ - ''
28
28
  - N
29
29
  - FORMS HEAVY HORIZONTAL
30
- - ""
31
- - ""
32
- - ""
33
- - ""
34
- "2502":
35
- - "2502"
30
+ - ''
31
+ - ''
32
+ - ''
33
+ - ''
34
+ 9474:
35
+ - 9474
36
36
  - BOX DRAWINGS LIGHT VERTICAL
37
37
  - So
38
- - "0"
39
- - "ON"
40
- - ""
41
- - ""
42
- - ""
43
- - ""
38
+ - '0'
39
+ - 'ON'
40
+ - ''
41
+ - ''
42
+ - ''
43
+ - ''
44
44
  - N
45
45
  - FORMS LIGHT VERTICAL
46
- - ""
47
- - ""
48
- - ""
49
- - ""
50
- "2503":
51
- - "2503"
46
+ - ''
47
+ - ''
48
+ - ''
49
+ - ''
50
+ 9475:
51
+ - 9475
52
52
  - BOX DRAWINGS HEAVY VERTICAL
53
53
  - So
54
- - "0"
55
- - "ON"
56
- - ""
57
- - ""
58
- - ""
59
- - ""
54
+ - '0'
55
+ - 'ON'
56
+ - ''
57
+ - ''
58
+ - ''
59
+ - ''
60
60
  - N
61
61
  - FORMS HEAVY VERTICAL
62
- - ""
63
- - ""
64
- - ""
65
- - ""
66
- "2504":
67
- - "2504"
62
+ - ''
63
+ - ''
64
+ - ''
65
+ - ''
66
+ 9476:
67
+ - 9476
68
68
  - BOX DRAWINGS LIGHT TRIPLE DASH HORIZONTAL
69
69
  - So
70
- - "0"
71
- - "ON"
72
- - ""
73
- - ""
74
- - ""
75
- - ""
70
+ - '0'
71
+ - 'ON'
72
+ - ''
73
+ - ''
74
+ - ''
75
+ - ''
76
76
  - N
77
77
  - FORMS LIGHT TRIPLE DASH HORIZONTAL
78
- - ""
79
- - ""
80
- - ""
81
- - ""
82
- "2505":
83
- - "2505"
78
+ - ''
79
+ - ''
80
+ - ''
81
+ - ''
82
+ 9477:
83
+ - 9477
84
84
  - BOX DRAWINGS HEAVY TRIPLE DASH HORIZONTAL
85
85
  - So
86
- - "0"
87
- - "ON"
88
- - ""
89
- - ""
90
- - ""
91
- - ""
86
+ - '0'
87
+ - 'ON'
88
+ - ''
89
+ - ''
90
+ - ''
91
+ - ''
92
92
  - N
93
93
  - FORMS HEAVY TRIPLE DASH HORIZONTAL
94
- - ""
95
- - ""
96
- - ""
97
- - ""
98
- "2506":
99
- - "2506"
94
+ - ''
95
+ - ''
96
+ - ''
97
+ - ''
98
+ 9478:
99
+ - 9478
100
100
  - BOX DRAWINGS LIGHT TRIPLE DASH VERTICAL
101
101
  - So
102
- - "0"
103
- - "ON"
104
- - ""
105
- - ""
106
- - ""
107
- - ""
102
+ - '0'
103
+ - 'ON'
104
+ - ''
105
+ - ''
106
+ - ''
107
+ - ''
108
108
  - N
109
109
  - FORMS LIGHT TRIPLE DASH VERTICAL
110
- - ""
111
- - ""
112
- - ""
113
- - ""
114
- "2507":
115
- - "2507"
110
+ - ''
111
+ - ''
112
+ - ''
113
+ - ''
114
+ 9479:
115
+ - 9479
116
116
  - BOX DRAWINGS HEAVY TRIPLE DASH VERTICAL
117
117
  - So
118
- - "0"
119
- - "ON"
120
- - ""
121
- - ""
122
- - ""
123
- - ""
118
+ - '0'
119
+ - 'ON'
120
+ - ''
121
+ - ''
122
+ - ''
123
+ - ''
124
124
  - N
125
125
  - FORMS HEAVY TRIPLE DASH VERTICAL
126
- - ""
127
- - ""
128
- - ""
129
- - ""
130
- "2508":
131
- - "2508"
126
+ - ''
127
+ - ''
128
+ - ''
129
+ - ''
130
+ 9480:
131
+ - 9480
132
132
  - BOX DRAWINGS LIGHT QUADRUPLE DASH HORIZONTAL
133
133
  - So
134
- - "0"
135
- - "ON"
136
- - ""
137
- - ""
138
- - ""
139
- - ""
134
+ - '0'
135
+ - 'ON'
136
+ - ''
137
+ - ''
138
+ - ''
139
+ - ''
140
140
  - N
141
141
  - FORMS LIGHT QUADRUPLE DASH HORIZONTAL
142
- - ""
143
- - ""
144
- - ""
145
- - ""
146
- "2509":
147
- - "2509"
142
+ - ''
143
+ - ''
144
+ - ''
145
+ - ''
146
+ 9481:
147
+ - 9481
148
148
  - BOX DRAWINGS HEAVY QUADRUPLE DASH HORIZONTAL
149
149
  - So
150
- - "0"
151
- - "ON"
152
- - ""
153
- - ""
154
- - ""
155
- - ""
150
+ - '0'
151
+ - 'ON'
152
+ - ''
153
+ - ''
154
+ - ''
155
+ - ''
156
156
  - N
157
157
  - FORMS HEAVY QUADRUPLE DASH HORIZONTAL
158
- - ""
159
- - ""
160
- - ""
161
- - ""
162
- 250A:
163
- - 250A
158
+ - ''
159
+ - ''
160
+ - ''
161
+ - ''
162
+ 9482:
163
+ - 9482
164
164
  - BOX DRAWINGS LIGHT QUADRUPLE DASH VERTICAL
165
165
  - So
166
- - "0"
167
- - "ON"
168
- - ""
169
- - ""
170
- - ""
171
- - ""
166
+ - '0'
167
+ - 'ON'
168
+ - ''
169
+ - ''
170
+ - ''
171
+ - ''
172
172
  - N
173
173
  - FORMS LIGHT QUADRUPLE DASH VERTICAL
174
- - ""
175
- - ""
176
- - ""
177
- - ""
178
- 250B:
179
- - 250B
174
+ - ''
175
+ - ''
176
+ - ''
177
+ - ''
178
+ 9483:
179
+ - 9483
180
180
  - BOX DRAWINGS HEAVY QUADRUPLE DASH VERTICAL
181
181
  - So
182
- - "0"
183
- - "ON"
184
- - ""
185
- - ""
186
- - ""
187
- - ""
182
+ - '0'
183
+ - 'ON'
184
+ - ''
185
+ - ''
186
+ - ''
187
+ - ''
188
188
  - N
189
189
  - FORMS HEAVY QUADRUPLE DASH VERTICAL
190
- - ""
191
- - ""
192
- - ""
193
- - ""
194
- 250C:
195
- - 250C
190
+ - ''
191
+ - ''
192
+ - ''
193
+ - ''
194
+ 9484:
195
+ - 9484
196
196
  - BOX DRAWINGS LIGHT DOWN AND RIGHT
197
197
  - So
198
- - "0"
199
- - "ON"
200
- - ""
201
- - ""
202
- - ""
203
- - ""
198
+ - '0'
199
+ - 'ON'
200
+ - ''
201
+ - ''
202
+ - ''
203
+ - ''
204
204
  - N
205
205
  - FORMS LIGHT DOWN AND RIGHT
206
- - ""
207
- - ""
208
- - ""
209
- - ""
210
- 250D:
211
- - 250D
206
+ - ''
207
+ - ''
208
+ - ''
209
+ - ''
210
+ 9485:
211
+ - 9485
212
212
  - BOX DRAWINGS DOWN LIGHT AND RIGHT HEAVY
213
213
  - So
214
- - "0"
215
- - "ON"
216
- - ""
217
- - ""
218
- - ""
219
- - ""
214
+ - '0'
215
+ - 'ON'
216
+ - ''
217
+ - ''
218
+ - ''
219
+ - ''
220
220
  - N
221
221
  - FORMS DOWN LIGHT AND RIGHT HEAVY
222
- - ""
223
- - ""
224
- - ""
225
- - ""
226
- 250E:
227
- - 250E
222
+ - ''
223
+ - ''
224
+ - ''
225
+ - ''
226
+ 9486:
227
+ - 9486
228
228
  - BOX DRAWINGS DOWN HEAVY AND RIGHT LIGHT
229
229
  - So
230
- - "0"
231
- - "ON"
232
- - ""
233
- - ""
234
- - ""
235
- - ""
230
+ - '0'
231
+ - 'ON'
232
+ - ''
233
+ - ''
234
+ - ''
235
+ - ''
236
236
  - N
237
237
  - FORMS DOWN HEAVY AND RIGHT LIGHT
238
- - ""
239
- - ""
240
- - ""
241
- - ""
242
- 250F:
243
- - 250F
238
+ - ''
239
+ - ''
240
+ - ''
241
+ - ''
242
+ 9487:
243
+ - 9487
244
244
  - BOX DRAWINGS HEAVY DOWN AND RIGHT
245
245
  - So
246
- - "0"
247
- - "ON"
248
- - ""
249
- - ""
250
- - ""
251
- - ""
246
+ - '0'
247
+ - 'ON'
248
+ - ''
249
+ - ''
250
+ - ''
251
+ - ''
252
252
  - N
253
253
  - FORMS HEAVY DOWN AND RIGHT
254
- - ""
255
- - ""
256
- - ""
257
- - ""
258
- "2510":
259
- - "2510"
254
+ - ''
255
+ - ''
256
+ - ''
257
+ - ''
258
+ 9488:
259
+ - 9488
260
260
  - BOX DRAWINGS LIGHT DOWN AND LEFT
261
261
  - So
262
- - "0"
263
- - "ON"
264
- - ""
265
- - ""
266
- - ""
267
- - ""
262
+ - '0'
263
+ - 'ON'
264
+ - ''
265
+ - ''
266
+ - ''
267
+ - ''
268
268
  - N
269
269
  - FORMS LIGHT DOWN AND LEFT
270
- - ""
271
- - ""
272
- - ""
273
- - ""
274
- "2511":
275
- - "2511"
270
+ - ''
271
+ - ''
272
+ - ''
273
+ - ''
274
+ 9489:
275
+ - 9489
276
276
  - BOX DRAWINGS DOWN LIGHT AND LEFT HEAVY
277
277
  - So
278
- - "0"
279
- - "ON"
280
- - ""
281
- - ""
282
- - ""
283
- - ""
278
+ - '0'
279
+ - 'ON'
280
+ - ''
281
+ - ''
282
+ - ''
283
+ - ''
284
284
  - N
285
285
  - FORMS DOWN LIGHT AND LEFT HEAVY
286
- - ""
287
- - ""
288
- - ""
289
- - ""
290
- "2512":
291
- - "2512"
286
+ - ''
287
+ - ''
288
+ - ''
289
+ - ''
290
+ 9490:
291
+ - 9490
292
292
  - BOX DRAWINGS DOWN HEAVY AND LEFT LIGHT
293
293
  - So
294
- - "0"
295
- - "ON"
296
- - ""
297
- - ""
298
- - ""
299
- - ""
294
+ - '0'
295
+ - 'ON'
296
+ - ''
297
+ - ''
298
+ - ''
299
+ - ''
300
300
  - N
301
301
  - FORMS DOWN HEAVY AND LEFT LIGHT
302
- - ""
303
- - ""
304
- - ""
305
- - ""
306
- "2513":
307
- - "2513"
302
+ - ''
303
+ - ''
304
+ - ''
305
+ - ''
306
+ 9491:
307
+ - 9491
308
308
  - BOX DRAWINGS HEAVY DOWN AND LEFT
309
309
  - So
310
- - "0"
311
- - "ON"
312
- - ""
313
- - ""
314
- - ""
315
- - ""
310
+ - '0'
311
+ - 'ON'
312
+ - ''
313
+ - ''
314
+ - ''
315
+ - ''
316
316
  - N
317
317
  - FORMS HEAVY DOWN AND LEFT
318
- - ""
319
- - ""
320
- - ""
321
- - ""
322
- "2514":
323
- - "2514"
318
+ - ''
319
+ - ''
320
+ - ''
321
+ - ''
322
+ 9492:
323
+ - 9492
324
324
  - BOX DRAWINGS LIGHT UP AND RIGHT
325
325
  - So
326
- - "0"
327
- - "ON"
328
- - ""
329
- - ""
330
- - ""
331
- - ""
326
+ - '0'
327
+ - 'ON'
328
+ - ''
329
+ - ''
330
+ - ''
331
+ - ''
332
332
  - N
333
333
  - FORMS LIGHT UP AND RIGHT
334
- - ""
335
- - ""
336
- - ""
337
- - ""
338
- "2515":
339
- - "2515"
334
+ - ''
335
+ - ''
336
+ - ''
337
+ - ''
338
+ 9493:
339
+ - 9493
340
340
  - BOX DRAWINGS UP LIGHT AND RIGHT HEAVY
341
341
  - So
342
- - "0"
343
- - "ON"
344
- - ""
345
- - ""
346
- - ""
347
- - ""
342
+ - '0'
343
+ - 'ON'
344
+ - ''
345
+ - ''
346
+ - ''
347
+ - ''
348
348
  - N
349
349
  - FORMS UP LIGHT AND RIGHT HEAVY
350
- - ""
351
- - ""
352
- - ""
353
- - ""
354
- "2516":
355
- - "2516"
350
+ - ''
351
+ - ''
352
+ - ''
353
+ - ''
354
+ 9494:
355
+ - 9494
356
356
  - BOX DRAWINGS UP HEAVY AND RIGHT LIGHT
357
357
  - So
358
- - "0"
359
- - "ON"
360
- - ""
361
- - ""
362
- - ""
363
- - ""
358
+ - '0'
359
+ - 'ON'
360
+ - ''
361
+ - ''
362
+ - ''
363
+ - ''
364
364
  - N
365
365
  - FORMS UP HEAVY AND RIGHT LIGHT
366
- - ""
367
- - ""
368
- - ""
369
- - ""
370
- "2517":
371
- - "2517"
366
+ - ''
367
+ - ''
368
+ - ''
369
+ - ''
370
+ 9495:
371
+ - 9495
372
372
  - BOX DRAWINGS HEAVY UP AND RIGHT
373
373
  - So
374
- - "0"
375
- - "ON"
376
- - ""
377
- - ""
378
- - ""
379
- - ""
374
+ - '0'
375
+ - 'ON'
376
+ - ''
377
+ - ''
378
+ - ''
379
+ - ''
380
380
  - N
381
381
  - FORMS HEAVY UP AND RIGHT
382
- - ""
383
- - ""
384
- - ""
385
- - ""
386
- "2518":
387
- - "2518"
382
+ - ''
383
+ - ''
384
+ - ''
385
+ - ''
386
+ 9496:
387
+ - 9496
388
388
  - BOX DRAWINGS LIGHT UP AND LEFT
389
389
  - So
390
- - "0"
391
- - "ON"
392
- - ""
393
- - ""
394
- - ""
395
- - ""
390
+ - '0'
391
+ - 'ON'
392
+ - ''
393
+ - ''
394
+ - ''
395
+ - ''
396
396
  - N
397
397
  - FORMS LIGHT UP AND LEFT
398
- - ""
399
- - ""
400
- - ""
401
- - ""
402
- "2519":
403
- - "2519"
398
+ - ''
399
+ - ''
400
+ - ''
401
+ - ''
402
+ 9497:
403
+ - 9497
404
404
  - BOX DRAWINGS UP LIGHT AND LEFT HEAVY
405
405
  - So
406
- - "0"
407
- - "ON"
408
- - ""
409
- - ""
410
- - ""
411
- - ""
406
+ - '0'
407
+ - 'ON'
408
+ - ''
409
+ - ''
410
+ - ''
411
+ - ''
412
412
  - N
413
413
  - FORMS UP LIGHT AND LEFT HEAVY
414
- - ""
415
- - ""
416
- - ""
417
- - ""
418
- 251A:
419
- - 251A
414
+ - ''
415
+ - ''
416
+ - ''
417
+ - ''
418
+ 9498:
419
+ - 9498
420
420
  - BOX DRAWINGS UP HEAVY AND LEFT LIGHT
421
421
  - So
422
- - "0"
423
- - "ON"
424
- - ""
425
- - ""
426
- - ""
427
- - ""
422
+ - '0'
423
+ - 'ON'
424
+ - ''
425
+ - ''
426
+ - ''
427
+ - ''
428
428
  - N
429
429
  - FORMS UP HEAVY AND LEFT LIGHT
430
- - ""
431
- - ""
432
- - ""
433
- - ""
434
- 251B:
435
- - 251B
430
+ - ''
431
+ - ''
432
+ - ''
433
+ - ''
434
+ 9499:
435
+ - 9499
436
436
  - BOX DRAWINGS HEAVY UP AND LEFT
437
437
  - So
438
- - "0"
439
- - "ON"
440
- - ""
441
- - ""
442
- - ""
443
- - ""
438
+ - '0'
439
+ - 'ON'
440
+ - ''
441
+ - ''
442
+ - ''
443
+ - ''
444
444
  - N
445
445
  - FORMS HEAVY UP AND LEFT
446
- - ""
447
- - ""
448
- - ""
449
- - ""
450
- 251C:
451
- - 251C
446
+ - ''
447
+ - ''
448
+ - ''
449
+ - ''
450
+ 9500:
451
+ - 9500
452
452
  - BOX DRAWINGS LIGHT VERTICAL AND RIGHT
453
453
  - So
454
- - "0"
455
- - "ON"
456
- - ""
457
- - ""
458
- - ""
459
- - ""
454
+ - '0'
455
+ - 'ON'
456
+ - ''
457
+ - ''
458
+ - ''
459
+ - ''
460
460
  - N
461
461
  - FORMS LIGHT VERTICAL AND RIGHT
462
- - ""
463
- - ""
464
- - ""
465
- - ""
466
- 251D:
467
- - 251D
462
+ - ''
463
+ - ''
464
+ - ''
465
+ - ''
466
+ 9501:
467
+ - 9501
468
468
  - BOX DRAWINGS VERTICAL LIGHT AND RIGHT HEAVY
469
469
  - So
470
- - "0"
471
- - "ON"
472
- - ""
473
- - ""
474
- - ""
475
- - ""
470
+ - '0'
471
+ - 'ON'
472
+ - ''
473
+ - ''
474
+ - ''
475
+ - ''
476
476
  - N
477
477
  - FORMS VERTICAL LIGHT AND RIGHT HEAVY
478
- - ""
479
- - ""
480
- - ""
481
- - ""
482
- 251E:
483
- - 251E
478
+ - ''
479
+ - ''
480
+ - ''
481
+ - ''
482
+ 9502:
483
+ - 9502
484
484
  - BOX DRAWINGS UP HEAVY AND RIGHT DOWN LIGHT
485
485
  - So
486
- - "0"
487
- - "ON"
488
- - ""
489
- - ""
490
- - ""
491
- - ""
486
+ - '0'
487
+ - 'ON'
488
+ - ''
489
+ - ''
490
+ - ''
491
+ - ''
492
492
  - N
493
493
  - FORMS UP HEAVY AND RIGHT DOWN LIGHT
494
- - ""
495
- - ""
496
- - ""
497
- - ""
498
- 251F:
499
- - 251F
494
+ - ''
495
+ - ''
496
+ - ''
497
+ - ''
498
+ 9503:
499
+ - 9503
500
500
  - BOX DRAWINGS DOWN HEAVY AND RIGHT UP LIGHT
501
501
  - So
502
- - "0"
503
- - "ON"
504
- - ""
505
- - ""
506
- - ""
507
- - ""
502
+ - '0'
503
+ - 'ON'
504
+ - ''
505
+ - ''
506
+ - ''
507
+ - ''
508
508
  - N
509
509
  - FORMS DOWN HEAVY AND RIGHT UP LIGHT
510
- - ""
511
- - ""
512
- - ""
513
- - ""
514
- "2520":
515
- - "2520"
510
+ - ''
511
+ - ''
512
+ - ''
513
+ - ''
514
+ 9504:
515
+ - 9504
516
516
  - BOX DRAWINGS VERTICAL HEAVY AND RIGHT LIGHT
517
517
  - So
518
- - "0"
519
- - "ON"
520
- - ""
521
- - ""
522
- - ""
523
- - ""
518
+ - '0'
519
+ - 'ON'
520
+ - ''
521
+ - ''
522
+ - ''
523
+ - ''
524
524
  - N
525
525
  - FORMS VERTICAL HEAVY AND RIGHT LIGHT
526
- - ""
527
- - ""
528
- - ""
529
- - ""
530
- "2521":
531
- - "2521"
526
+ - ''
527
+ - ''
528
+ - ''
529
+ - ''
530
+ 9505:
531
+ - 9505
532
532
  - BOX DRAWINGS DOWN LIGHT AND RIGHT UP HEAVY
533
533
  - So
534
- - "0"
535
- - "ON"
536
- - ""
537
- - ""
538
- - ""
539
- - ""
534
+ - '0'
535
+ - 'ON'
536
+ - ''
537
+ - ''
538
+ - ''
539
+ - ''
540
540
  - N
541
541
  - FORMS DOWN LIGHT AND RIGHT UP HEAVY
542
- - ""
543
- - ""
544
- - ""
545
- - ""
546
- "2522":
547
- - "2522"
542
+ - ''
543
+ - ''
544
+ - ''
545
+ - ''
546
+ 9506:
547
+ - 9506
548
548
  - BOX DRAWINGS UP LIGHT AND RIGHT DOWN HEAVY
549
549
  - So
550
- - "0"
551
- - "ON"
552
- - ""
553
- - ""
554
- - ""
555
- - ""
550
+ - '0'
551
+ - 'ON'
552
+ - ''
553
+ - ''
554
+ - ''
555
+ - ''
556
556
  - N
557
557
  - FORMS UP LIGHT AND RIGHT DOWN HEAVY
558
- - ""
559
- - ""
560
- - ""
561
- - ""
562
- "2523":
563
- - "2523"
558
+ - ''
559
+ - ''
560
+ - ''
561
+ - ''
562
+ 9507:
563
+ - 9507
564
564
  - BOX DRAWINGS HEAVY VERTICAL AND RIGHT
565
565
  - So
566
- - "0"
567
- - "ON"
568
- - ""
569
- - ""
570
- - ""
571
- - ""
566
+ - '0'
567
+ - 'ON'
568
+ - ''
569
+ - ''
570
+ - ''
571
+ - ''
572
572
  - N
573
573
  - FORMS HEAVY VERTICAL AND RIGHT
574
- - ""
575
- - ""
576
- - ""
577
- - ""
578
- "2524":
579
- - "2524"
574
+ - ''
575
+ - ''
576
+ - ''
577
+ - ''
578
+ 9508:
579
+ - 9508
580
580
  - BOX DRAWINGS LIGHT VERTICAL AND LEFT
581
581
  - So
582
- - "0"
583
- - "ON"
584
- - ""
585
- - ""
586
- - ""
587
- - ""
582
+ - '0'
583
+ - 'ON'
584
+ - ''
585
+ - ''
586
+ - ''
587
+ - ''
588
588
  - N
589
589
  - FORMS LIGHT VERTICAL AND LEFT
590
- - ""
591
- - ""
592
- - ""
593
- - ""
594
- "2525":
595
- - "2525"
590
+ - ''
591
+ - ''
592
+ - ''
593
+ - ''
594
+ 9509:
595
+ - 9509
596
596
  - BOX DRAWINGS VERTICAL LIGHT AND LEFT HEAVY
597
597
  - So
598
- - "0"
599
- - "ON"
600
- - ""
601
- - ""
602
- - ""
603
- - ""
598
+ - '0'
599
+ - 'ON'
600
+ - ''
601
+ - ''
602
+ - ''
603
+ - ''
604
604
  - N
605
605
  - FORMS VERTICAL LIGHT AND LEFT HEAVY
606
- - ""
607
- - ""
608
- - ""
609
- - ""
610
- "2526":
611
- - "2526"
606
+ - ''
607
+ - ''
608
+ - ''
609
+ - ''
610
+ 9510:
611
+ - 9510
612
612
  - BOX DRAWINGS UP HEAVY AND LEFT DOWN LIGHT
613
613
  - So
614
- - "0"
615
- - "ON"
616
- - ""
617
- - ""
618
- - ""
619
- - ""
614
+ - '0'
615
+ - 'ON'
616
+ - ''
617
+ - ''
618
+ - ''
619
+ - ''
620
620
  - N
621
621
  - FORMS UP HEAVY AND LEFT DOWN LIGHT
622
- - ""
623
- - ""
624
- - ""
625
- - ""
626
- "2527":
627
- - "2527"
622
+ - ''
623
+ - ''
624
+ - ''
625
+ - ''
626
+ 9511:
627
+ - 9511
628
628
  - BOX DRAWINGS DOWN HEAVY AND LEFT UP LIGHT
629
629
  - So
630
- - "0"
631
- - "ON"
632
- - ""
633
- - ""
634
- - ""
635
- - ""
630
+ - '0'
631
+ - 'ON'
632
+ - ''
633
+ - ''
634
+ - ''
635
+ - ''
636
636
  - N
637
637
  - FORMS DOWN HEAVY AND LEFT UP LIGHT
638
- - ""
639
- - ""
640
- - ""
641
- - ""
642
- "2528":
643
- - "2528"
638
+ - ''
639
+ - ''
640
+ - ''
641
+ - ''
642
+ 9512:
643
+ - 9512
644
644
  - BOX DRAWINGS VERTICAL HEAVY AND LEFT LIGHT
645
645
  - So
646
- - "0"
647
- - "ON"
648
- - ""
649
- - ""
650
- - ""
651
- - ""
646
+ - '0'
647
+ - 'ON'
648
+ - ''
649
+ - ''
650
+ - ''
651
+ - ''
652
652
  - N
653
653
  - FORMS VERTICAL HEAVY AND LEFT LIGHT
654
- - ""
655
- - ""
656
- - ""
657
- - ""
658
- "2529":
659
- - "2529"
654
+ - ''
655
+ - ''
656
+ - ''
657
+ - ''
658
+ 9513:
659
+ - 9513
660
660
  - BOX DRAWINGS DOWN LIGHT AND LEFT UP HEAVY
661
661
  - So
662
- - "0"
663
- - "ON"
664
- - ""
665
- - ""
666
- - ""
667
- - ""
662
+ - '0'
663
+ - 'ON'
664
+ - ''
665
+ - ''
666
+ - ''
667
+ - ''
668
668
  - N
669
669
  - FORMS DOWN LIGHT AND LEFT UP HEAVY
670
- - ""
671
- - ""
672
- - ""
673
- - ""
674
- 252A:
675
- - 252A
670
+ - ''
671
+ - ''
672
+ - ''
673
+ - ''
674
+ 9514:
675
+ - 9514
676
676
  - BOX DRAWINGS UP LIGHT AND LEFT DOWN HEAVY
677
677
  - So
678
- - "0"
679
- - "ON"
680
- - ""
681
- - ""
682
- - ""
683
- - ""
678
+ - '0'
679
+ - 'ON'
680
+ - ''
681
+ - ''
682
+ - ''
683
+ - ''
684
684
  - N
685
685
  - FORMS UP LIGHT AND LEFT DOWN HEAVY
686
- - ""
687
- - ""
688
- - ""
689
- - ""
690
- 252B:
691
- - 252B
686
+ - ''
687
+ - ''
688
+ - ''
689
+ - ''
690
+ 9515:
691
+ - 9515
692
692
  - BOX DRAWINGS HEAVY VERTICAL AND LEFT
693
693
  - So
694
- - "0"
695
- - "ON"
696
- - ""
697
- - ""
698
- - ""
699
- - ""
694
+ - '0'
695
+ - 'ON'
696
+ - ''
697
+ - ''
698
+ - ''
699
+ - ''
700
700
  - N
701
701
  - FORMS HEAVY VERTICAL AND LEFT
702
- - ""
703
- - ""
704
- - ""
705
- - ""
706
- 252C:
707
- - 252C
702
+ - ''
703
+ - ''
704
+ - ''
705
+ - ''
706
+ 9516:
707
+ - 9516
708
708
  - BOX DRAWINGS LIGHT DOWN AND HORIZONTAL
709
709
  - So
710
- - "0"
711
- - "ON"
712
- - ""
713
- - ""
714
- - ""
715
- - ""
710
+ - '0'
711
+ - 'ON'
712
+ - ''
713
+ - ''
714
+ - ''
715
+ - ''
716
716
  - N
717
717
  - FORMS LIGHT DOWN AND HORIZONTAL
718
- - ""
719
- - ""
720
- - ""
721
- - ""
722
- 252D:
723
- - 252D
718
+ - ''
719
+ - ''
720
+ - ''
721
+ - ''
722
+ 9517:
723
+ - 9517
724
724
  - BOX DRAWINGS LEFT HEAVY AND RIGHT DOWN LIGHT
725
725
  - So
726
- - "0"
727
- - "ON"
728
- - ""
729
- - ""
730
- - ""
731
- - ""
726
+ - '0'
727
+ - 'ON'
728
+ - ''
729
+ - ''
730
+ - ''
731
+ - ''
732
732
  - N
733
733
  - FORMS LEFT HEAVY AND RIGHT DOWN LIGHT
734
- - ""
735
- - ""
736
- - ""
737
- - ""
738
- 252E:
739
- - 252E
734
+ - ''
735
+ - ''
736
+ - ''
737
+ - ''
738
+ 9518:
739
+ - 9518
740
740
  - BOX DRAWINGS RIGHT HEAVY AND LEFT DOWN LIGHT
741
741
  - So
742
- - "0"
743
- - "ON"
744
- - ""
745
- - ""
746
- - ""
747
- - ""
742
+ - '0'
743
+ - 'ON'
744
+ - ''
745
+ - ''
746
+ - ''
747
+ - ''
748
748
  - N
749
749
  - FORMS RIGHT HEAVY AND LEFT DOWN LIGHT
750
- - ""
751
- - ""
752
- - ""
753
- - ""
754
- 252F:
755
- - 252F
750
+ - ''
751
+ - ''
752
+ - ''
753
+ - ''
754
+ 9519:
755
+ - 9519
756
756
  - BOX DRAWINGS DOWN LIGHT AND HORIZONTAL HEAVY
757
757
  - So
758
- - "0"
759
- - "ON"
760
- - ""
761
- - ""
762
- - ""
763
- - ""
758
+ - '0'
759
+ - 'ON'
760
+ - ''
761
+ - ''
762
+ - ''
763
+ - ''
764
764
  - N
765
765
  - FORMS DOWN LIGHT AND HORIZONTAL HEAVY
766
- - ""
767
- - ""
768
- - ""
769
- - ""
770
- "2530":
771
- - "2530"
766
+ - ''
767
+ - ''
768
+ - ''
769
+ - ''
770
+ 9520:
771
+ - 9520
772
772
  - BOX DRAWINGS DOWN HEAVY AND HORIZONTAL LIGHT
773
773
  - So
774
- - "0"
775
- - "ON"
776
- - ""
777
- - ""
778
- - ""
779
- - ""
774
+ - '0'
775
+ - 'ON'
776
+ - ''
777
+ - ''
778
+ - ''
779
+ - ''
780
780
  - N
781
781
  - FORMS DOWN HEAVY AND HORIZONTAL LIGHT
782
- - ""
783
- - ""
784
- - ""
785
- - ""
786
- "2531":
787
- - "2531"
782
+ - ''
783
+ - ''
784
+ - ''
785
+ - ''
786
+ 9521:
787
+ - 9521
788
788
  - BOX DRAWINGS RIGHT LIGHT AND LEFT DOWN HEAVY
789
789
  - So
790
- - "0"
791
- - "ON"
792
- - ""
793
- - ""
794
- - ""
795
- - ""
790
+ - '0'
791
+ - 'ON'
792
+ - ''
793
+ - ''
794
+ - ''
795
+ - ''
796
796
  - N
797
797
  - FORMS RIGHT LIGHT AND LEFT DOWN HEAVY
798
- - ""
799
- - ""
800
- - ""
801
- - ""
802
- "2532":
803
- - "2532"
798
+ - ''
799
+ - ''
800
+ - ''
801
+ - ''
802
+ 9522:
803
+ - 9522
804
804
  - BOX DRAWINGS LEFT LIGHT AND RIGHT DOWN HEAVY
805
805
  - So
806
- - "0"
807
- - "ON"
808
- - ""
809
- - ""
810
- - ""
811
- - ""
806
+ - '0'
807
+ - 'ON'
808
+ - ''
809
+ - ''
810
+ - ''
811
+ - ''
812
812
  - N
813
813
  - FORMS LEFT LIGHT AND RIGHT DOWN HEAVY
814
- - ""
815
- - ""
816
- - ""
817
- - ""
818
- "2533":
819
- - "2533"
814
+ - ''
815
+ - ''
816
+ - ''
817
+ - ''
818
+ 9523:
819
+ - 9523
820
820
  - BOX DRAWINGS HEAVY DOWN AND HORIZONTAL
821
821
  - So
822
- - "0"
823
- - "ON"
824
- - ""
825
- - ""
826
- - ""
827
- - ""
822
+ - '0'
823
+ - 'ON'
824
+ - ''
825
+ - ''
826
+ - ''
827
+ - ''
828
828
  - N
829
829
  - FORMS HEAVY DOWN AND HORIZONTAL
830
- - ""
831
- - ""
832
- - ""
833
- - ""
834
- "2534":
835
- - "2534"
830
+ - ''
831
+ - ''
832
+ - ''
833
+ - ''
834
+ 9524:
835
+ - 9524
836
836
  - BOX DRAWINGS LIGHT UP AND HORIZONTAL
837
837
  - So
838
- - "0"
839
- - "ON"
840
- - ""
841
- - ""
842
- - ""
843
- - ""
838
+ - '0'
839
+ - 'ON'
840
+ - ''
841
+ - ''
842
+ - ''
843
+ - ''
844
844
  - N
845
845
  - FORMS LIGHT UP AND HORIZONTAL
846
- - ""
847
- - ""
848
- - ""
849
- - ""
850
- "2535":
851
- - "2535"
846
+ - ''
847
+ - ''
848
+ - ''
849
+ - ''
850
+ 9525:
851
+ - 9525
852
852
  - BOX DRAWINGS LEFT HEAVY AND RIGHT UP LIGHT
853
853
  - So
854
- - "0"
855
- - "ON"
856
- - ""
857
- - ""
858
- - ""
859
- - ""
854
+ - '0'
855
+ - 'ON'
856
+ - ''
857
+ - ''
858
+ - ''
859
+ - ''
860
860
  - N
861
861
  - FORMS LEFT HEAVY AND RIGHT UP LIGHT
862
- - ""
863
- - ""
864
- - ""
865
- - ""
866
- "2536":
867
- - "2536"
862
+ - ''
863
+ - ''
864
+ - ''
865
+ - ''
866
+ 9526:
867
+ - 9526
868
868
  - BOX DRAWINGS RIGHT HEAVY AND LEFT UP LIGHT
869
869
  - So
870
- - "0"
871
- - "ON"
872
- - ""
873
- - ""
874
- - ""
875
- - ""
870
+ - '0'
871
+ - 'ON'
872
+ - ''
873
+ - ''
874
+ - ''
875
+ - ''
876
876
  - N
877
877
  - FORMS RIGHT HEAVY AND LEFT UP LIGHT
878
- - ""
879
- - ""
880
- - ""
881
- - ""
882
- "2537":
883
- - "2537"
878
+ - ''
879
+ - ''
880
+ - ''
881
+ - ''
882
+ 9527:
883
+ - 9527
884
884
  - BOX DRAWINGS UP LIGHT AND HORIZONTAL HEAVY
885
885
  - So
886
- - "0"
887
- - "ON"
888
- - ""
889
- - ""
890
- - ""
891
- - ""
886
+ - '0'
887
+ - 'ON'
888
+ - ''
889
+ - ''
890
+ - ''
891
+ - ''
892
892
  - N
893
893
  - FORMS UP LIGHT AND HORIZONTAL HEAVY
894
- - ""
895
- - ""
896
- - ""
897
- - ""
898
- "2538":
899
- - "2538"
894
+ - ''
895
+ - ''
896
+ - ''
897
+ - ''
898
+ 9528:
899
+ - 9528
900
900
  - BOX DRAWINGS UP HEAVY AND HORIZONTAL LIGHT
901
901
  - So
902
- - "0"
903
- - "ON"
904
- - ""
905
- - ""
906
- - ""
907
- - ""
902
+ - '0'
903
+ - 'ON'
904
+ - ''
905
+ - ''
906
+ - ''
907
+ - ''
908
908
  - N
909
909
  - FORMS UP HEAVY AND HORIZONTAL LIGHT
910
- - ""
911
- - ""
912
- - ""
913
- - ""
914
- "2539":
915
- - "2539"
910
+ - ''
911
+ - ''
912
+ - ''
913
+ - ''
914
+ 9529:
915
+ - 9529
916
916
  - BOX DRAWINGS RIGHT LIGHT AND LEFT UP HEAVY
917
917
  - So
918
- - "0"
919
- - "ON"
920
- - ""
921
- - ""
922
- - ""
923
- - ""
918
+ - '0'
919
+ - 'ON'
920
+ - ''
921
+ - ''
922
+ - ''
923
+ - ''
924
924
  - N
925
925
  - FORMS RIGHT LIGHT AND LEFT UP HEAVY
926
- - ""
927
- - ""
928
- - ""
929
- - ""
930
- 253A:
931
- - 253A
926
+ - ''
927
+ - ''
928
+ - ''
929
+ - ''
930
+ 9530:
931
+ - 9530
932
932
  - BOX DRAWINGS LEFT LIGHT AND RIGHT UP HEAVY
933
933
  - So
934
- - "0"
935
- - "ON"
936
- - ""
937
- - ""
938
- - ""
939
- - ""
934
+ - '0'
935
+ - 'ON'
936
+ - ''
937
+ - ''
938
+ - ''
939
+ - ''
940
940
  - N
941
941
  - FORMS LEFT LIGHT AND RIGHT UP HEAVY
942
- - ""
943
- - ""
944
- - ""
945
- - ""
946
- 253B:
947
- - 253B
942
+ - ''
943
+ - ''
944
+ - ''
945
+ - ''
946
+ 9531:
947
+ - 9531
948
948
  - BOX DRAWINGS HEAVY UP AND HORIZONTAL
949
949
  - So
950
- - "0"
951
- - "ON"
952
- - ""
953
- - ""
954
- - ""
955
- - ""
950
+ - '0'
951
+ - 'ON'
952
+ - ''
953
+ - ''
954
+ - ''
955
+ - ''
956
956
  - N
957
957
  - FORMS HEAVY UP AND HORIZONTAL
958
- - ""
959
- - ""
960
- - ""
961
- - ""
962
- 253C:
963
- - 253C
958
+ - ''
959
+ - ''
960
+ - ''
961
+ - ''
962
+ 9532:
963
+ - 9532
964
964
  - BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL
965
965
  - So
966
- - "0"
967
- - "ON"
968
- - ""
969
- - ""
970
- - ""
971
- - ""
966
+ - '0'
967
+ - 'ON'
968
+ - ''
969
+ - ''
970
+ - ''
971
+ - ''
972
972
  - N
973
973
  - FORMS LIGHT VERTICAL AND HORIZONTAL
974
- - ""
975
- - ""
976
- - ""
977
- - ""
978
- 253D:
979
- - 253D
974
+ - ''
975
+ - ''
976
+ - ''
977
+ - ''
978
+ 9533:
979
+ - 9533
980
980
  - BOX DRAWINGS LEFT HEAVY AND RIGHT VERTICAL LIGHT
981
981
  - So
982
- - "0"
983
- - "ON"
984
- - ""
985
- - ""
986
- - ""
987
- - ""
982
+ - '0'
983
+ - 'ON'
984
+ - ''
985
+ - ''
986
+ - ''
987
+ - ''
988
988
  - N
989
989
  - FORMS LEFT HEAVY AND RIGHT VERTICAL LIGHT
990
- - ""
991
- - ""
992
- - ""
993
- - ""
994
- 253E:
995
- - 253E
990
+ - ''
991
+ - ''
992
+ - ''
993
+ - ''
994
+ 9534:
995
+ - 9534
996
996
  - BOX DRAWINGS RIGHT HEAVY AND LEFT VERTICAL LIGHT
997
997
  - So
998
- - "0"
999
- - "ON"
1000
- - ""
1001
- - ""
1002
- - ""
1003
- - ""
998
+ - '0'
999
+ - 'ON'
1000
+ - ''
1001
+ - ''
1002
+ - ''
1003
+ - ''
1004
1004
  - N
1005
1005
  - FORMS RIGHT HEAVY AND LEFT VERTICAL LIGHT
1006
- - ""
1007
- - ""
1008
- - ""
1009
- - ""
1010
- 253F:
1011
- - 253F
1006
+ - ''
1007
+ - ''
1008
+ - ''
1009
+ - ''
1010
+ 9535:
1011
+ - 9535
1012
1012
  - BOX DRAWINGS VERTICAL LIGHT AND HORIZONTAL HEAVY
1013
1013
  - So
1014
- - "0"
1015
- - "ON"
1016
- - ""
1017
- - ""
1018
- - ""
1019
- - ""
1014
+ - '0'
1015
+ - 'ON'
1016
+ - ''
1017
+ - ''
1018
+ - ''
1019
+ - ''
1020
1020
  - N
1021
1021
  - FORMS VERTICAL LIGHT AND HORIZONTAL HEAVY
1022
- - ""
1023
- - ""
1024
- - ""
1025
- - ""
1026
- "2540":
1027
- - "2540"
1022
+ - ''
1023
+ - ''
1024
+ - ''
1025
+ - ''
1026
+ 9536:
1027
+ - 9536
1028
1028
  - BOX DRAWINGS UP HEAVY AND DOWN HORIZONTAL LIGHT
1029
1029
  - So
1030
- - "0"
1031
- - "ON"
1032
- - ""
1033
- - ""
1034
- - ""
1035
- - ""
1030
+ - '0'
1031
+ - 'ON'
1032
+ - ''
1033
+ - ''
1034
+ - ''
1035
+ - ''
1036
1036
  - N
1037
1037
  - FORMS UP HEAVY AND DOWN HORIZONTAL LIGHT
1038
- - ""
1039
- - ""
1040
- - ""
1041
- - ""
1042
- "2541":
1043
- - "2541"
1038
+ - ''
1039
+ - ''
1040
+ - ''
1041
+ - ''
1042
+ 9537:
1043
+ - 9537
1044
1044
  - BOX DRAWINGS DOWN HEAVY AND UP HORIZONTAL LIGHT
1045
1045
  - So
1046
- - "0"
1047
- - "ON"
1048
- - ""
1049
- - ""
1050
- - ""
1051
- - ""
1046
+ - '0'
1047
+ - 'ON'
1048
+ - ''
1049
+ - ''
1050
+ - ''
1051
+ - ''
1052
1052
  - N
1053
1053
  - FORMS DOWN HEAVY AND UP HORIZONTAL LIGHT
1054
- - ""
1055
- - ""
1056
- - ""
1057
- - ""
1058
- "2542":
1059
- - "2542"
1054
+ - ''
1055
+ - ''
1056
+ - ''
1057
+ - ''
1058
+ 9538:
1059
+ - 9538
1060
1060
  - BOX DRAWINGS VERTICAL HEAVY AND HORIZONTAL LIGHT
1061
1061
  - So
1062
- - "0"
1063
- - "ON"
1064
- - ""
1065
- - ""
1066
- - ""
1067
- - ""
1062
+ - '0'
1063
+ - 'ON'
1064
+ - ''
1065
+ - ''
1066
+ - ''
1067
+ - ''
1068
1068
  - N
1069
1069
  - FORMS VERTICAL HEAVY AND HORIZONTAL LIGHT
1070
- - ""
1071
- - ""
1072
- - ""
1073
- - ""
1074
- "2543":
1075
- - "2543"
1070
+ - ''
1071
+ - ''
1072
+ - ''
1073
+ - ''
1074
+ 9539:
1075
+ - 9539
1076
1076
  - BOX DRAWINGS LEFT UP HEAVY AND RIGHT DOWN LIGHT
1077
1077
  - So
1078
- - "0"
1079
- - "ON"
1080
- - ""
1081
- - ""
1082
- - ""
1083
- - ""
1078
+ - '0'
1079
+ - 'ON'
1080
+ - ''
1081
+ - ''
1082
+ - ''
1083
+ - ''
1084
1084
  - N
1085
1085
  - FORMS LEFT UP HEAVY AND RIGHT DOWN LIGHT
1086
- - ""
1087
- - ""
1088
- - ""
1089
- - ""
1090
- "2544":
1091
- - "2544"
1086
+ - ''
1087
+ - ''
1088
+ - ''
1089
+ - ''
1090
+ 9540:
1091
+ - 9540
1092
1092
  - BOX DRAWINGS RIGHT UP HEAVY AND LEFT DOWN LIGHT
1093
1093
  - So
1094
- - "0"
1095
- - "ON"
1096
- - ""
1097
- - ""
1098
- - ""
1099
- - ""
1094
+ - '0'
1095
+ - 'ON'
1096
+ - ''
1097
+ - ''
1098
+ - ''
1099
+ - ''
1100
1100
  - N
1101
1101
  - FORMS RIGHT UP HEAVY AND LEFT DOWN LIGHT
1102
- - ""
1103
- - ""
1104
- - ""
1105
- - ""
1106
- "2545":
1107
- - "2545"
1102
+ - ''
1103
+ - ''
1104
+ - ''
1105
+ - ''
1106
+ 9541:
1107
+ - 9541
1108
1108
  - BOX DRAWINGS LEFT DOWN HEAVY AND RIGHT UP LIGHT
1109
1109
  - So
1110
- - "0"
1111
- - "ON"
1112
- - ""
1113
- - ""
1114
- - ""
1115
- - ""
1110
+ - '0'
1111
+ - 'ON'
1112
+ - ''
1113
+ - ''
1114
+ - ''
1115
+ - ''
1116
1116
  - N
1117
1117
  - FORMS LEFT DOWN HEAVY AND RIGHT UP LIGHT
1118
- - ""
1119
- - ""
1120
- - ""
1121
- - ""
1122
- "2546":
1123
- - "2546"
1118
+ - ''
1119
+ - ''
1120
+ - ''
1121
+ - ''
1122
+ 9542:
1123
+ - 9542
1124
1124
  - BOX DRAWINGS RIGHT DOWN HEAVY AND LEFT UP LIGHT
1125
1125
  - So
1126
- - "0"
1127
- - "ON"
1128
- - ""
1129
- - ""
1130
- - ""
1131
- - ""
1126
+ - '0'
1127
+ - 'ON'
1128
+ - ''
1129
+ - ''
1130
+ - ''
1131
+ - ''
1132
1132
  - N
1133
1133
  - FORMS RIGHT DOWN HEAVY AND LEFT UP LIGHT
1134
- - ""
1135
- - ""
1136
- - ""
1137
- - ""
1138
- "2547":
1139
- - "2547"
1134
+ - ''
1135
+ - ''
1136
+ - ''
1137
+ - ''
1138
+ 9543:
1139
+ - 9543
1140
1140
  - BOX DRAWINGS DOWN LIGHT AND UP HORIZONTAL HEAVY
1141
1141
  - So
1142
- - "0"
1143
- - "ON"
1144
- - ""
1145
- - ""
1146
- - ""
1147
- - ""
1142
+ - '0'
1143
+ - 'ON'
1144
+ - ''
1145
+ - ''
1146
+ - ''
1147
+ - ''
1148
1148
  - N
1149
1149
  - FORMS DOWN LIGHT AND UP HORIZONTAL HEAVY
1150
- - ""
1151
- - ""
1152
- - ""
1153
- - ""
1154
- "2548":
1155
- - "2548"
1150
+ - ''
1151
+ - ''
1152
+ - ''
1153
+ - ''
1154
+ 9544:
1155
+ - 9544
1156
1156
  - BOX DRAWINGS UP LIGHT AND DOWN HORIZONTAL HEAVY
1157
1157
  - So
1158
- - "0"
1159
- - "ON"
1160
- - ""
1161
- - ""
1162
- - ""
1163
- - ""
1158
+ - '0'
1159
+ - 'ON'
1160
+ - ''
1161
+ - ''
1162
+ - ''
1163
+ - ''
1164
1164
  - N
1165
1165
  - FORMS UP LIGHT AND DOWN HORIZONTAL HEAVY
1166
- - ""
1167
- - ""
1168
- - ""
1169
- - ""
1170
- "2549":
1171
- - "2549"
1166
+ - ''
1167
+ - ''
1168
+ - ''
1169
+ - ''
1170
+ 9545:
1171
+ - 9545
1172
1172
  - BOX DRAWINGS RIGHT LIGHT AND LEFT VERTICAL HEAVY
1173
1173
  - So
1174
- - "0"
1175
- - "ON"
1176
- - ""
1177
- - ""
1178
- - ""
1179
- - ""
1174
+ - '0'
1175
+ - 'ON'
1176
+ - ''
1177
+ - ''
1178
+ - ''
1179
+ - ''
1180
1180
  - N
1181
1181
  - FORMS RIGHT LIGHT AND LEFT VERTICAL HEAVY
1182
- - ""
1183
- - ""
1184
- - ""
1185
- - ""
1186
- 254A:
1187
- - 254A
1182
+ - ''
1183
+ - ''
1184
+ - ''
1185
+ - ''
1186
+ 9546:
1187
+ - 9546
1188
1188
  - BOX DRAWINGS LEFT LIGHT AND RIGHT VERTICAL HEAVY
1189
1189
  - So
1190
- - "0"
1191
- - "ON"
1192
- - ""
1193
- - ""
1194
- - ""
1195
- - ""
1190
+ - '0'
1191
+ - 'ON'
1192
+ - ''
1193
+ - ''
1194
+ - ''
1195
+ - ''
1196
1196
  - N
1197
1197
  - FORMS LEFT LIGHT AND RIGHT VERTICAL HEAVY
1198
- - ""
1199
- - ""
1200
- - ""
1201
- - ""
1202
- 254B:
1203
- - 254B
1198
+ - ''
1199
+ - ''
1200
+ - ''
1201
+ - ''
1202
+ 9547:
1203
+ - 9547
1204
1204
  - BOX DRAWINGS HEAVY VERTICAL AND HORIZONTAL
1205
1205
  - So
1206
- - "0"
1207
- - "ON"
1208
- - ""
1209
- - ""
1210
- - ""
1211
- - ""
1206
+ - '0'
1207
+ - 'ON'
1208
+ - ''
1209
+ - ''
1210
+ - ''
1211
+ - ''
1212
1212
  - N
1213
1213
  - FORMS HEAVY VERTICAL AND HORIZONTAL
1214
- - ""
1215
- - ""
1216
- - ""
1217
- - ""
1218
- 254C:
1219
- - 254C
1214
+ - ''
1215
+ - ''
1216
+ - ''
1217
+ - ''
1218
+ 9548:
1219
+ - 9548
1220
1220
  - BOX DRAWINGS LIGHT DOUBLE DASH HORIZONTAL
1221
1221
  - So
1222
- - "0"
1223
- - "ON"
1224
- - ""
1225
- - ""
1226
- - ""
1227
- - ""
1222
+ - '0'
1223
+ - 'ON'
1224
+ - ''
1225
+ - ''
1226
+ - ''
1227
+ - ''
1228
1228
  - N
1229
1229
  - FORMS LIGHT DOUBLE DASH HORIZONTAL
1230
- - ""
1231
- - ""
1232
- - ""
1233
- - ""
1234
- 254D:
1235
- - 254D
1230
+ - ''
1231
+ - ''
1232
+ - ''
1233
+ - ''
1234
+ 9549:
1235
+ - 9549
1236
1236
  - BOX DRAWINGS HEAVY DOUBLE DASH HORIZONTAL
1237
1237
  - So
1238
- - "0"
1239
- - "ON"
1240
- - ""
1241
- - ""
1242
- - ""
1243
- - ""
1238
+ - '0'
1239
+ - 'ON'
1240
+ - ''
1241
+ - ''
1242
+ - ''
1243
+ - ''
1244
1244
  - N
1245
1245
  - FORMS HEAVY DOUBLE DASH HORIZONTAL
1246
- - ""
1247
- - ""
1248
- - ""
1249
- - ""
1250
- 254E:
1251
- - 254E
1246
+ - ''
1247
+ - ''
1248
+ - ''
1249
+ - ''
1250
+ 9550:
1251
+ - 9550
1252
1252
  - BOX DRAWINGS LIGHT DOUBLE DASH VERTICAL
1253
1253
  - So
1254
- - "0"
1255
- - "ON"
1256
- - ""
1257
- - ""
1258
- - ""
1259
- - ""
1254
+ - '0'
1255
+ - 'ON'
1256
+ - ''
1257
+ - ''
1258
+ - ''
1259
+ - ''
1260
1260
  - N
1261
1261
  - FORMS LIGHT DOUBLE DASH VERTICAL
1262
- - ""
1263
- - ""
1264
- - ""
1265
- - ""
1266
- 254F:
1267
- - 254F
1262
+ - ''
1263
+ - ''
1264
+ - ''
1265
+ - ''
1266
+ 9551:
1267
+ - 9551
1268
1268
  - BOX DRAWINGS HEAVY DOUBLE DASH VERTICAL
1269
1269
  - So
1270
- - "0"
1271
- - "ON"
1272
- - ""
1273
- - ""
1274
- - ""
1275
- - ""
1270
+ - '0'
1271
+ - 'ON'
1272
+ - ''
1273
+ - ''
1274
+ - ''
1275
+ - ''
1276
1276
  - N
1277
1277
  - FORMS HEAVY DOUBLE DASH VERTICAL
1278
- - ""
1279
- - ""
1280
- - ""
1281
- - ""
1282
- "2550":
1283
- - "2550"
1278
+ - ''
1279
+ - ''
1280
+ - ''
1281
+ - ''
1282
+ 9552:
1283
+ - 9552
1284
1284
  - BOX DRAWINGS DOUBLE HORIZONTAL
1285
1285
  - So
1286
- - "0"
1287
- - "ON"
1288
- - ""
1289
- - ""
1290
- - ""
1291
- - ""
1286
+ - '0'
1287
+ - 'ON'
1288
+ - ''
1289
+ - ''
1290
+ - ''
1291
+ - ''
1292
1292
  - N
1293
1293
  - FORMS DOUBLE HORIZONTAL
1294
- - ""
1295
- - ""
1296
- - ""
1297
- - ""
1298
- "2551":
1299
- - "2551"
1294
+ - ''
1295
+ - ''
1296
+ - ''
1297
+ - ''
1298
+ 9553:
1299
+ - 9553
1300
1300
  - BOX DRAWINGS DOUBLE VERTICAL
1301
1301
  - So
1302
- - "0"
1303
- - "ON"
1304
- - ""
1305
- - ""
1306
- - ""
1307
- - ""
1302
+ - '0'
1303
+ - 'ON'
1304
+ - ''
1305
+ - ''
1306
+ - ''
1307
+ - ''
1308
1308
  - N
1309
1309
  - FORMS DOUBLE VERTICAL
1310
- - ""
1311
- - ""
1312
- - ""
1313
- - ""
1314
- "2552":
1315
- - "2552"
1310
+ - ''
1311
+ - ''
1312
+ - ''
1313
+ - ''
1314
+ 9554:
1315
+ - 9554
1316
1316
  - BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE
1317
1317
  - So
1318
- - "0"
1319
- - "ON"
1320
- - ""
1321
- - ""
1322
- - ""
1323
- - ""
1318
+ - '0'
1319
+ - 'ON'
1320
+ - ''
1321
+ - ''
1322
+ - ''
1323
+ - ''
1324
1324
  - N
1325
1325
  - FORMS DOWN SINGLE AND RIGHT DOUBLE
1326
- - ""
1327
- - ""
1328
- - ""
1329
- - ""
1330
- "2553":
1331
- - "2553"
1326
+ - ''
1327
+ - ''
1328
+ - ''
1329
+ - ''
1330
+ 9555:
1331
+ - 9555
1332
1332
  - BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE
1333
1333
  - So
1334
- - "0"
1335
- - "ON"
1336
- - ""
1337
- - ""
1338
- - ""
1339
- - ""
1334
+ - '0'
1335
+ - 'ON'
1336
+ - ''
1337
+ - ''
1338
+ - ''
1339
+ - ''
1340
1340
  - N
1341
1341
  - FORMS DOWN DOUBLE AND RIGHT SINGLE
1342
- - ""
1343
- - ""
1344
- - ""
1345
- - ""
1346
- "2554":
1347
- - "2554"
1342
+ - ''
1343
+ - ''
1344
+ - ''
1345
+ - ''
1346
+ 9556:
1347
+ - 9556
1348
1348
  - BOX DRAWINGS DOUBLE DOWN AND RIGHT
1349
1349
  - So
1350
- - "0"
1351
- - "ON"
1352
- - ""
1353
- - ""
1354
- - ""
1355
- - ""
1350
+ - '0'
1351
+ - 'ON'
1352
+ - ''
1353
+ - ''
1354
+ - ''
1355
+ - ''
1356
1356
  - N
1357
1357
  - FORMS DOUBLE DOWN AND RIGHT
1358
- - ""
1359
- - ""
1360
- - ""
1361
- - ""
1362
- "2555":
1363
- - "2555"
1358
+ - ''
1359
+ - ''
1360
+ - ''
1361
+ - ''
1362
+ 9557:
1363
+ - 9557
1364
1364
  - BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE
1365
1365
  - So
1366
- - "0"
1367
- - "ON"
1368
- - ""
1369
- - ""
1370
- - ""
1371
- - ""
1366
+ - '0'
1367
+ - 'ON'
1368
+ - ''
1369
+ - ''
1370
+ - ''
1371
+ - ''
1372
1372
  - N
1373
1373
  - FORMS DOWN SINGLE AND LEFT DOUBLE
1374
- - ""
1375
- - ""
1376
- - ""
1377
- - ""
1378
- "2556":
1379
- - "2556"
1374
+ - ''
1375
+ - ''
1376
+ - ''
1377
+ - ''
1378
+ 9558:
1379
+ - 9558
1380
1380
  - BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE
1381
1381
  - So
1382
- - "0"
1383
- - "ON"
1384
- - ""
1385
- - ""
1386
- - ""
1387
- - ""
1382
+ - '0'
1383
+ - 'ON'
1384
+ - ''
1385
+ - ''
1386
+ - ''
1387
+ - ''
1388
1388
  - N
1389
1389
  - FORMS DOWN DOUBLE AND LEFT SINGLE
1390
- - ""
1391
- - ""
1392
- - ""
1393
- - ""
1394
- "2557":
1395
- - "2557"
1390
+ - ''
1391
+ - ''
1392
+ - ''
1393
+ - ''
1394
+ 9559:
1395
+ - 9559
1396
1396
  - BOX DRAWINGS DOUBLE DOWN AND LEFT
1397
1397
  - So
1398
- - "0"
1399
- - "ON"
1400
- - ""
1401
- - ""
1402
- - ""
1403
- - ""
1398
+ - '0'
1399
+ - 'ON'
1400
+ - ''
1401
+ - ''
1402
+ - ''
1403
+ - ''
1404
1404
  - N
1405
1405
  - FORMS DOUBLE DOWN AND LEFT
1406
- - ""
1407
- - ""
1408
- - ""
1409
- - ""
1410
- "2558":
1411
- - "2558"
1406
+ - ''
1407
+ - ''
1408
+ - ''
1409
+ - ''
1410
+ 9560:
1411
+ - 9560
1412
1412
  - BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE
1413
1413
  - So
1414
- - "0"
1415
- - "ON"
1416
- - ""
1417
- - ""
1418
- - ""
1419
- - ""
1414
+ - '0'
1415
+ - 'ON'
1416
+ - ''
1417
+ - ''
1418
+ - ''
1419
+ - ''
1420
1420
  - N
1421
1421
  - FORMS UP SINGLE AND RIGHT DOUBLE
1422
- - ""
1423
- - ""
1424
- - ""
1425
- - ""
1426
- "2559":
1427
- - "2559"
1422
+ - ''
1423
+ - ''
1424
+ - ''
1425
+ - ''
1426
+ 9561:
1427
+ - 9561
1428
1428
  - BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE
1429
1429
  - So
1430
- - "0"
1431
- - "ON"
1432
- - ""
1433
- - ""
1434
- - ""
1435
- - ""
1430
+ - '0'
1431
+ - 'ON'
1432
+ - ''
1433
+ - ''
1434
+ - ''
1435
+ - ''
1436
1436
  - N
1437
1437
  - FORMS UP DOUBLE AND RIGHT SINGLE
1438
- - ""
1439
- - ""
1440
- - ""
1441
- - ""
1442
- 255A:
1443
- - 255A
1438
+ - ''
1439
+ - ''
1440
+ - ''
1441
+ - ''
1442
+ 9562:
1443
+ - 9562
1444
1444
  - BOX DRAWINGS DOUBLE UP AND RIGHT
1445
1445
  - So
1446
- - "0"
1447
- - "ON"
1448
- - ""
1449
- - ""
1450
- - ""
1451
- - ""
1446
+ - '0'
1447
+ - 'ON'
1448
+ - ''
1449
+ - ''
1450
+ - ''
1451
+ - ''
1452
1452
  - N
1453
1453
  - FORMS DOUBLE UP AND RIGHT
1454
- - ""
1455
- - ""
1456
- - ""
1457
- - ""
1458
- 255B:
1459
- - 255B
1454
+ - ''
1455
+ - ''
1456
+ - ''
1457
+ - ''
1458
+ 9563:
1459
+ - 9563
1460
1460
  - BOX DRAWINGS UP SINGLE AND LEFT DOUBLE
1461
1461
  - So
1462
- - "0"
1463
- - "ON"
1464
- - ""
1465
- - ""
1466
- - ""
1467
- - ""
1462
+ - '0'
1463
+ - 'ON'
1464
+ - ''
1465
+ - ''
1466
+ - ''
1467
+ - ''
1468
1468
  - N
1469
1469
  - FORMS UP SINGLE AND LEFT DOUBLE
1470
- - ""
1471
- - ""
1472
- - ""
1473
- - ""
1474
- 255C:
1475
- - 255C
1470
+ - ''
1471
+ - ''
1472
+ - ''
1473
+ - ''
1474
+ 9564:
1475
+ - 9564
1476
1476
  - BOX DRAWINGS UP DOUBLE AND LEFT SINGLE
1477
1477
  - So
1478
- - "0"
1479
- - "ON"
1480
- - ""
1481
- - ""
1482
- - ""
1483
- - ""
1478
+ - '0'
1479
+ - 'ON'
1480
+ - ''
1481
+ - ''
1482
+ - ''
1483
+ - ''
1484
1484
  - N
1485
1485
  - FORMS UP DOUBLE AND LEFT SINGLE
1486
- - ""
1487
- - ""
1488
- - ""
1489
- - ""
1490
- 255D:
1491
- - 255D
1486
+ - ''
1487
+ - ''
1488
+ - ''
1489
+ - ''
1490
+ 9565:
1491
+ - 9565
1492
1492
  - BOX DRAWINGS DOUBLE UP AND LEFT
1493
1493
  - So
1494
- - "0"
1495
- - "ON"
1496
- - ""
1497
- - ""
1498
- - ""
1499
- - ""
1494
+ - '0'
1495
+ - 'ON'
1496
+ - ''
1497
+ - ''
1498
+ - ''
1499
+ - ''
1500
1500
  - N
1501
1501
  - FORMS DOUBLE UP AND LEFT
1502
- - ""
1503
- - ""
1504
- - ""
1505
- - ""
1506
- 255E:
1507
- - 255E
1502
+ - ''
1503
+ - ''
1504
+ - ''
1505
+ - ''
1506
+ 9566:
1507
+ - 9566
1508
1508
  - BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE
1509
1509
  - So
1510
- - "0"
1511
- - "ON"
1512
- - ""
1513
- - ""
1514
- - ""
1515
- - ""
1510
+ - '0'
1511
+ - 'ON'
1512
+ - ''
1513
+ - ''
1514
+ - ''
1515
+ - ''
1516
1516
  - N
1517
1517
  - FORMS VERTICAL SINGLE AND RIGHT DOUBLE
1518
- - ""
1519
- - ""
1520
- - ""
1521
- - ""
1522
- 255F:
1523
- - 255F
1518
+ - ''
1519
+ - ''
1520
+ - ''
1521
+ - ''
1522
+ 9567:
1523
+ - 9567
1524
1524
  - BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE
1525
1525
  - So
1526
- - "0"
1527
- - "ON"
1528
- - ""
1529
- - ""
1530
- - ""
1531
- - ""
1526
+ - '0'
1527
+ - 'ON'
1528
+ - ''
1529
+ - ''
1530
+ - ''
1531
+ - ''
1532
1532
  - N
1533
1533
  - FORMS VERTICAL DOUBLE AND RIGHT SINGLE
1534
- - ""
1535
- - ""
1536
- - ""
1537
- - ""
1538
- "2560":
1539
- - "2560"
1534
+ - ''
1535
+ - ''
1536
+ - ''
1537
+ - ''
1538
+ 9568:
1539
+ - 9568
1540
1540
  - BOX DRAWINGS DOUBLE VERTICAL AND RIGHT
1541
1541
  - So
1542
- - "0"
1543
- - "ON"
1544
- - ""
1545
- - ""
1546
- - ""
1547
- - ""
1542
+ - '0'
1543
+ - 'ON'
1544
+ - ''
1545
+ - ''
1546
+ - ''
1547
+ - ''
1548
1548
  - N
1549
1549
  - FORMS DOUBLE VERTICAL AND RIGHT
1550
- - ""
1551
- - ""
1552
- - ""
1553
- - ""
1554
- "2561":
1555
- - "2561"
1550
+ - ''
1551
+ - ''
1552
+ - ''
1553
+ - ''
1554
+ 9569:
1555
+ - 9569
1556
1556
  - BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE
1557
1557
  - So
1558
- - "0"
1559
- - "ON"
1560
- - ""
1561
- - ""
1562
- - ""
1563
- - ""
1558
+ - '0'
1559
+ - 'ON'
1560
+ - ''
1561
+ - ''
1562
+ - ''
1563
+ - ''
1564
1564
  - N
1565
1565
  - FORMS VERTICAL SINGLE AND LEFT DOUBLE
1566
- - ""
1567
- - ""
1568
- - ""
1569
- - ""
1570
- "2562":
1571
- - "2562"
1566
+ - ''
1567
+ - ''
1568
+ - ''
1569
+ - ''
1570
+ 9570:
1571
+ - 9570
1572
1572
  - BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE
1573
1573
  - So
1574
- - "0"
1575
- - "ON"
1576
- - ""
1577
- - ""
1578
- - ""
1579
- - ""
1574
+ - '0'
1575
+ - 'ON'
1576
+ - ''
1577
+ - ''
1578
+ - ''
1579
+ - ''
1580
1580
  - N
1581
1581
  - FORMS VERTICAL DOUBLE AND LEFT SINGLE
1582
- - ""
1583
- - ""
1584
- - ""
1585
- - ""
1586
- "2563":
1587
- - "2563"
1582
+ - ''
1583
+ - ''
1584
+ - ''
1585
+ - ''
1586
+ 9571:
1587
+ - 9571
1588
1588
  - BOX DRAWINGS DOUBLE VERTICAL AND LEFT
1589
1589
  - So
1590
- - "0"
1591
- - "ON"
1592
- - ""
1593
- - ""
1594
- - ""
1595
- - ""
1590
+ - '0'
1591
+ - 'ON'
1592
+ - ''
1593
+ - ''
1594
+ - ''
1595
+ - ''
1596
1596
  - N
1597
1597
  - FORMS DOUBLE VERTICAL AND LEFT
1598
- - ""
1599
- - ""
1600
- - ""
1601
- - ""
1602
- "2564":
1603
- - "2564"
1598
+ - ''
1599
+ - ''
1600
+ - ''
1601
+ - ''
1602
+ 9572:
1603
+ - 9572
1604
1604
  - BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE
1605
1605
  - So
1606
- - "0"
1607
- - "ON"
1608
- - ""
1609
- - ""
1610
- - ""
1611
- - ""
1606
+ - '0'
1607
+ - 'ON'
1608
+ - ''
1609
+ - ''
1610
+ - ''
1611
+ - ''
1612
1612
  - N
1613
1613
  - FORMS DOWN SINGLE AND HORIZONTAL DOUBLE
1614
- - ""
1615
- - ""
1616
- - ""
1617
- - ""
1618
- "2565":
1619
- - "2565"
1614
+ - ''
1615
+ - ''
1616
+ - ''
1617
+ - ''
1618
+ 9573:
1619
+ - 9573
1620
1620
  - BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE
1621
1621
  - So
1622
- - "0"
1623
- - "ON"
1624
- - ""
1625
- - ""
1626
- - ""
1627
- - ""
1622
+ - '0'
1623
+ - 'ON'
1624
+ - ''
1625
+ - ''
1626
+ - ''
1627
+ - ''
1628
1628
  - N
1629
1629
  - FORMS DOWN DOUBLE AND HORIZONTAL SINGLE
1630
- - ""
1631
- - ""
1632
- - ""
1633
- - ""
1634
- "2566":
1635
- - "2566"
1630
+ - ''
1631
+ - ''
1632
+ - ''
1633
+ - ''
1634
+ 9574:
1635
+ - 9574
1636
1636
  - BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL
1637
1637
  - So
1638
- - "0"
1639
- - "ON"
1640
- - ""
1641
- - ""
1642
- - ""
1643
- - ""
1638
+ - '0'
1639
+ - 'ON'
1640
+ - ''
1641
+ - ''
1642
+ - ''
1643
+ - ''
1644
1644
  - N
1645
1645
  - FORMS DOUBLE DOWN AND HORIZONTAL
1646
- - ""
1647
- - ""
1648
- - ""
1649
- - ""
1650
- "2567":
1651
- - "2567"
1646
+ - ''
1647
+ - ''
1648
+ - ''
1649
+ - ''
1650
+ 9575:
1651
+ - 9575
1652
1652
  - BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE
1653
1653
  - So
1654
- - "0"
1655
- - "ON"
1656
- - ""
1657
- - ""
1658
- - ""
1659
- - ""
1654
+ - '0'
1655
+ - 'ON'
1656
+ - ''
1657
+ - ''
1658
+ - ''
1659
+ - ''
1660
1660
  - N
1661
1661
  - FORMS UP SINGLE AND HORIZONTAL DOUBLE
1662
- - ""
1663
- - ""
1664
- - ""
1665
- - ""
1666
- "2568":
1667
- - "2568"
1662
+ - ''
1663
+ - ''
1664
+ - ''
1665
+ - ''
1666
+ 9576:
1667
+ - 9576
1668
1668
  - BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE
1669
1669
  - So
1670
- - "0"
1671
- - "ON"
1672
- - ""
1673
- - ""
1674
- - ""
1675
- - ""
1670
+ - '0'
1671
+ - 'ON'
1672
+ - ''
1673
+ - ''
1674
+ - ''
1675
+ - ''
1676
1676
  - N
1677
1677
  - FORMS UP DOUBLE AND HORIZONTAL SINGLE
1678
- - ""
1679
- - ""
1680
- - ""
1681
- - ""
1682
- "2569":
1683
- - "2569"
1678
+ - ''
1679
+ - ''
1680
+ - ''
1681
+ - ''
1682
+ 9577:
1683
+ - 9577
1684
1684
  - BOX DRAWINGS DOUBLE UP AND HORIZONTAL
1685
1685
  - So
1686
- - "0"
1687
- - "ON"
1688
- - ""
1689
- - ""
1690
- - ""
1691
- - ""
1686
+ - '0'
1687
+ - 'ON'
1688
+ - ''
1689
+ - ''
1690
+ - ''
1691
+ - ''
1692
1692
  - N
1693
1693
  - FORMS DOUBLE UP AND HORIZONTAL
1694
- - ""
1695
- - ""
1696
- - ""
1697
- - ""
1698
- 256A:
1699
- - 256A
1694
+ - ''
1695
+ - ''
1696
+ - ''
1697
+ - ''
1698
+ 9578:
1699
+ - 9578
1700
1700
  - BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE
1701
1701
  - So
1702
- - "0"
1703
- - "ON"
1704
- - ""
1705
- - ""
1706
- - ""
1707
- - ""
1702
+ - '0'
1703
+ - 'ON'
1704
+ - ''
1705
+ - ''
1706
+ - ''
1707
+ - ''
1708
1708
  - N
1709
1709
  - FORMS VERTICAL SINGLE AND HORIZONTAL DOUBLE
1710
- - ""
1711
- - ""
1712
- - ""
1713
- - ""
1714
- 256B:
1715
- - 256B
1710
+ - ''
1711
+ - ''
1712
+ - ''
1713
+ - ''
1714
+ 9579:
1715
+ - 9579
1716
1716
  - BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE
1717
1717
  - So
1718
- - "0"
1719
- - "ON"
1720
- - ""
1721
- - ""
1722
- - ""
1723
- - ""
1718
+ - '0'
1719
+ - 'ON'
1720
+ - ''
1721
+ - ''
1722
+ - ''
1723
+ - ''
1724
1724
  - N
1725
1725
  - FORMS VERTICAL DOUBLE AND HORIZONTAL SINGLE
1726
- - ""
1727
- - ""
1728
- - ""
1729
- - ""
1730
- 256C:
1731
- - 256C
1726
+ - ''
1727
+ - ''
1728
+ - ''
1729
+ - ''
1730
+ 9580:
1731
+ - 9580
1732
1732
  - BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL
1733
1733
  - So
1734
- - "0"
1735
- - "ON"
1736
- - ""
1737
- - ""
1738
- - ""
1739
- - ""
1734
+ - '0'
1735
+ - 'ON'
1736
+ - ''
1737
+ - ''
1738
+ - ''
1739
+ - ''
1740
1740
  - N
1741
1741
  - FORMS DOUBLE VERTICAL AND HORIZONTAL
1742
- - ""
1743
- - ""
1744
- - ""
1745
- - ""
1746
- 256D:
1747
- - 256D
1742
+ - ''
1743
+ - ''
1744
+ - ''
1745
+ - ''
1746
+ 9581:
1747
+ - 9581
1748
1748
  - BOX DRAWINGS LIGHT ARC DOWN AND RIGHT
1749
1749
  - So
1750
- - "0"
1751
- - "ON"
1752
- - ""
1753
- - ""
1754
- - ""
1755
- - ""
1750
+ - '0'
1751
+ - 'ON'
1752
+ - ''
1753
+ - ''
1754
+ - ''
1755
+ - ''
1756
1756
  - N
1757
1757
  - FORMS LIGHT ARC DOWN AND RIGHT
1758
- - ""
1759
- - ""
1760
- - ""
1761
- - ""
1762
- 256E:
1763
- - 256E
1758
+ - ''
1759
+ - ''
1760
+ - ''
1761
+ - ''
1762
+ 9582:
1763
+ - 9582
1764
1764
  - BOX DRAWINGS LIGHT ARC DOWN AND LEFT
1765
1765
  - So
1766
- - "0"
1767
- - "ON"
1768
- - ""
1769
- - ""
1770
- - ""
1771
- - ""
1766
+ - '0'
1767
+ - 'ON'
1768
+ - ''
1769
+ - ''
1770
+ - ''
1771
+ - ''
1772
1772
  - N
1773
1773
  - FORMS LIGHT ARC DOWN AND LEFT
1774
- - ""
1775
- - ""
1776
- - ""
1777
- - ""
1778
- 256F:
1779
- - 256F
1774
+ - ''
1775
+ - ''
1776
+ - ''
1777
+ - ''
1778
+ 9583:
1779
+ - 9583
1780
1780
  - BOX DRAWINGS LIGHT ARC UP AND LEFT
1781
1781
  - So
1782
- - "0"
1783
- - "ON"
1784
- - ""
1785
- - ""
1786
- - ""
1787
- - ""
1782
+ - '0'
1783
+ - 'ON'
1784
+ - ''
1785
+ - ''
1786
+ - ''
1787
+ - ''
1788
1788
  - N
1789
1789
  - FORMS LIGHT ARC UP AND LEFT
1790
- - ""
1791
- - ""
1792
- - ""
1793
- - ""
1794
- "2570":
1795
- - "2570"
1790
+ - ''
1791
+ - ''
1792
+ - ''
1793
+ - ''
1794
+ 9584:
1795
+ - 9584
1796
1796
  - BOX DRAWINGS LIGHT ARC UP AND RIGHT
1797
1797
  - So
1798
- - "0"
1799
- - "ON"
1800
- - ""
1801
- - ""
1802
- - ""
1803
- - ""
1798
+ - '0'
1799
+ - 'ON'
1800
+ - ''
1801
+ - ''
1802
+ - ''
1803
+ - ''
1804
1804
  - N
1805
1805
  - FORMS LIGHT ARC UP AND RIGHT
1806
- - ""
1807
- - ""
1808
- - ""
1809
- - ""
1810
- "2571":
1811
- - "2571"
1806
+ - ''
1807
+ - ''
1808
+ - ''
1809
+ - ''
1810
+ 9585:
1811
+ - 9585
1812
1812
  - BOX DRAWINGS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT
1813
1813
  - So
1814
- - "0"
1815
- - "ON"
1816
- - ""
1817
- - ""
1818
- - ""
1819
- - ""
1814
+ - '0'
1815
+ - 'ON'
1816
+ - ''
1817
+ - ''
1818
+ - ''
1819
+ - ''
1820
1820
  - N
1821
1821
  - FORMS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT
1822
- - ""
1823
- - ""
1824
- - ""
1825
- - ""
1826
- "2572":
1827
- - "2572"
1822
+ - ''
1823
+ - ''
1824
+ - ''
1825
+ - ''
1826
+ 9586:
1827
+ - 9586
1828
1828
  - BOX DRAWINGS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT
1829
1829
  - So
1830
- - "0"
1831
- - "ON"
1832
- - ""
1833
- - ""
1834
- - ""
1835
- - ""
1830
+ - '0'
1831
+ - 'ON'
1832
+ - ''
1833
+ - ''
1834
+ - ''
1835
+ - ''
1836
1836
  - N
1837
1837
  - FORMS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT
1838
- - ""
1839
- - ""
1840
- - ""
1841
- - ""
1842
- "2573":
1843
- - "2573"
1838
+ - ''
1839
+ - ''
1840
+ - ''
1841
+ - ''
1842
+ 9587:
1843
+ - 9587
1844
1844
  - BOX DRAWINGS LIGHT DIAGONAL CROSS
1845
1845
  - So
1846
- - "0"
1847
- - "ON"
1848
- - ""
1849
- - ""
1850
- - ""
1851
- - ""
1846
+ - '0'
1847
+ - 'ON'
1848
+ - ''
1849
+ - ''
1850
+ - ''
1851
+ - ''
1852
1852
  - N
1853
1853
  - FORMS LIGHT DIAGONAL CROSS
1854
- - ""
1855
- - ""
1856
- - ""
1857
- - ""
1858
- "2574":
1859
- - "2574"
1854
+ - ''
1855
+ - ''
1856
+ - ''
1857
+ - ''
1858
+ 9588:
1859
+ - 9588
1860
1860
  - BOX DRAWINGS LIGHT LEFT
1861
1861
  - So
1862
- - "0"
1863
- - "ON"
1864
- - ""
1865
- - ""
1866
- - ""
1867
- - ""
1862
+ - '0'
1863
+ - 'ON'
1864
+ - ''
1865
+ - ''
1866
+ - ''
1867
+ - ''
1868
1868
  - N
1869
1869
  - FORMS LIGHT LEFT
1870
- - ""
1871
- - ""
1872
- - ""
1873
- - ""
1874
- "2575":
1875
- - "2575"
1870
+ - ''
1871
+ - ''
1872
+ - ''
1873
+ - ''
1874
+ 9589:
1875
+ - 9589
1876
1876
  - BOX DRAWINGS LIGHT UP
1877
1877
  - So
1878
- - "0"
1879
- - "ON"
1880
- - ""
1881
- - ""
1882
- - ""
1883
- - ""
1878
+ - '0'
1879
+ - 'ON'
1880
+ - ''
1881
+ - ''
1882
+ - ''
1883
+ - ''
1884
1884
  - N
1885
1885
  - FORMS LIGHT UP
1886
- - ""
1887
- - ""
1888
- - ""
1889
- - ""
1890
- "2576":
1891
- - "2576"
1886
+ - ''
1887
+ - ''
1888
+ - ''
1889
+ - ''
1890
+ 9590:
1891
+ - 9590
1892
1892
  - BOX DRAWINGS LIGHT RIGHT
1893
1893
  - So
1894
- - "0"
1895
- - "ON"
1896
- - ""
1897
- - ""
1898
- - ""
1899
- - ""
1894
+ - '0'
1895
+ - 'ON'
1896
+ - ''
1897
+ - ''
1898
+ - ''
1899
+ - ''
1900
1900
  - N
1901
1901
  - FORMS LIGHT RIGHT
1902
- - ""
1903
- - ""
1904
- - ""
1905
- - ""
1906
- "2577":
1907
- - "2577"
1902
+ - ''
1903
+ - ''
1904
+ - ''
1905
+ - ''
1906
+ 9591:
1907
+ - 9591
1908
1908
  - BOX DRAWINGS LIGHT DOWN
1909
1909
  - So
1910
- - "0"
1911
- - "ON"
1912
- - ""
1913
- - ""
1914
- - ""
1915
- - ""
1910
+ - '0'
1911
+ - 'ON'
1912
+ - ''
1913
+ - ''
1914
+ - ''
1915
+ - ''
1916
1916
  - N
1917
1917
  - FORMS LIGHT DOWN
1918
- - ""
1919
- - ""
1920
- - ""
1921
- - ""
1922
- "2578":
1923
- - "2578"
1918
+ - ''
1919
+ - ''
1920
+ - ''
1921
+ - ''
1922
+ 9592:
1923
+ - 9592
1924
1924
  - BOX DRAWINGS HEAVY LEFT
1925
1925
  - So
1926
- - "0"
1927
- - "ON"
1928
- - ""
1929
- - ""
1930
- - ""
1931
- - ""
1926
+ - '0'
1927
+ - 'ON'
1928
+ - ''
1929
+ - ''
1930
+ - ''
1931
+ - ''
1932
1932
  - N
1933
1933
  - FORMS HEAVY LEFT
1934
- - ""
1935
- - ""
1936
- - ""
1937
- - ""
1938
- "2579":
1939
- - "2579"
1934
+ - ''
1935
+ - ''
1936
+ - ''
1937
+ - ''
1938
+ 9593:
1939
+ - 9593
1940
1940
  - BOX DRAWINGS HEAVY UP
1941
1941
  - So
1942
- - "0"
1943
- - "ON"
1944
- - ""
1945
- - ""
1946
- - ""
1947
- - ""
1942
+ - '0'
1943
+ - 'ON'
1944
+ - ''
1945
+ - ''
1946
+ - ''
1947
+ - ''
1948
1948
  - N
1949
1949
  - FORMS HEAVY UP
1950
- - ""
1951
- - ""
1952
- - ""
1953
- - ""
1954
- 257A:
1955
- - 257A
1950
+ - ''
1951
+ - ''
1952
+ - ''
1953
+ - ''
1954
+ 9594:
1955
+ - 9594
1956
1956
  - BOX DRAWINGS HEAVY RIGHT
1957
1957
  - So
1958
- - "0"
1959
- - "ON"
1960
- - ""
1961
- - ""
1962
- - ""
1963
- - ""
1958
+ - '0'
1959
+ - 'ON'
1960
+ - ''
1961
+ - ''
1962
+ - ''
1963
+ - ''
1964
1964
  - N
1965
1965
  - FORMS HEAVY RIGHT
1966
- - ""
1967
- - ""
1968
- - ""
1969
- - ""
1970
- 257B:
1971
- - 257B
1966
+ - ''
1967
+ - ''
1968
+ - ''
1969
+ - ''
1970
+ 9595:
1971
+ - 9595
1972
1972
  - BOX DRAWINGS HEAVY DOWN
1973
1973
  - So
1974
- - "0"
1975
- - "ON"
1976
- - ""
1977
- - ""
1978
- - ""
1979
- - ""
1974
+ - '0'
1975
+ - 'ON'
1976
+ - ''
1977
+ - ''
1978
+ - ''
1979
+ - ''
1980
1980
  - N
1981
1981
  - FORMS HEAVY DOWN
1982
- - ""
1983
- - ""
1984
- - ""
1985
- - ""
1986
- 257C:
1987
- - 257C
1982
+ - ''
1983
+ - ''
1984
+ - ''
1985
+ - ''
1986
+ 9596:
1987
+ - 9596
1988
1988
  - BOX DRAWINGS LIGHT LEFT AND HEAVY RIGHT
1989
1989
  - So
1990
- - "0"
1991
- - "ON"
1992
- - ""
1993
- - ""
1994
- - ""
1995
- - ""
1990
+ - '0'
1991
+ - 'ON'
1992
+ - ''
1993
+ - ''
1994
+ - ''
1995
+ - ''
1996
1996
  - N
1997
1997
  - FORMS LIGHT LEFT AND HEAVY RIGHT
1998
- - ""
1999
- - ""
2000
- - ""
2001
- - ""
2002
- 257D:
2003
- - 257D
1998
+ - ''
1999
+ - ''
2000
+ - ''
2001
+ - ''
2002
+ 9597:
2003
+ - 9597
2004
2004
  - BOX DRAWINGS LIGHT UP AND HEAVY DOWN
2005
2005
  - So
2006
- - "0"
2007
- - "ON"
2008
- - ""
2009
- - ""
2010
- - ""
2011
- - ""
2006
+ - '0'
2007
+ - 'ON'
2008
+ - ''
2009
+ - ''
2010
+ - ''
2011
+ - ''
2012
2012
  - N
2013
2013
  - FORMS LIGHT UP AND HEAVY DOWN
2014
- - ""
2015
- - ""
2016
- - ""
2017
- - ""
2018
- 257E:
2019
- - 257E
2014
+ - ''
2015
+ - ''
2016
+ - ''
2017
+ - ''
2018
+ 9598:
2019
+ - 9598
2020
2020
  - BOX DRAWINGS HEAVY LEFT AND LIGHT RIGHT
2021
2021
  - So
2022
- - "0"
2023
- - "ON"
2024
- - ""
2025
- - ""
2026
- - ""
2027
- - ""
2022
+ - '0'
2023
+ - 'ON'
2024
+ - ''
2025
+ - ''
2026
+ - ''
2027
+ - ''
2028
2028
  - N
2029
2029
  - FORMS HEAVY LEFT AND LIGHT RIGHT
2030
- - ""
2031
- - ""
2032
- - ""
2033
- - ""
2034
- 257F:
2035
- - 257F
2030
+ - ''
2031
+ - ''
2032
+ - ''
2033
+ - ''
2034
+ 9599:
2035
+ - 9599
2036
2036
  - BOX DRAWINGS HEAVY UP AND LIGHT DOWN
2037
2037
  - So
2038
- - "0"
2039
- - "ON"
2040
- - ""
2041
- - ""
2042
- - ""
2043
- - ""
2038
+ - '0'
2039
+ - 'ON'
2040
+ - ''
2041
+ - ''
2042
+ - ''
2043
+ - ''
2044
2044
  - N
2045
2045
  - FORMS HEAVY UP AND LIGHT DOWN
2046
- - ""
2047
- - ""
2048
- - ""
2049
- - ""
2046
+ - ''
2047
+ - ''
2048
+ - ''
2049
+ - ''