twitter_cldr 3.2.1 → 3.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1172) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +9 -4
  3. data/History.txt +11 -0
  4. data/README.md +40 -3
  5. data/Rakefile +26 -21
  6. data/lib/twitter_cldr/collation/collator.rb +3 -3
  7. data/lib/twitter_cldr/collation/sort_key_builder.rb +10 -10
  8. data/lib/twitter_cldr/data_readers/calendar_data_reader.rb +8 -8
  9. data/lib/twitter_cldr/data_readers/date_time_data_reader.rb +2 -2
  10. data/lib/twitter_cldr/data_readers/number_data_reader.rb +10 -10
  11. data/lib/twitter_cldr/data_readers/timespan_data_reader.rb +27 -27
  12. data/lib/twitter_cldr/formatters/list_formatter.rb +1 -1
  13. data/lib/twitter_cldr/formatters/numbers/currency_formatter.rb +3 -3
  14. data/lib/twitter_cldr/formatters/numbers/helpers/integer.rb +7 -5
  15. data/lib/twitter_cldr/formatters/numbers/rbnf/formatters.rb +1 -1
  16. data/lib/twitter_cldr/formatters/numbers/rbnf/rule.rb +1 -1
  17. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_set.rb +3 -2
  18. data/lib/twitter_cldr/formatters/numbers/rbnf.rb +2 -2
  19. data/lib/twitter_cldr/formatters/plurals/rules.rb +1 -1
  20. data/lib/twitter_cldr/localized/localized_date.rb +2 -2
  21. data/lib/twitter_cldr/localized/localized_datetime.rb +8 -8
  22. data/lib/twitter_cldr/localized/localized_number.rb +7 -7
  23. data/lib/twitter_cldr/localized/localized_string.rb +33 -1
  24. data/lib/twitter_cldr/localized/localized_symbol.rb +9 -1
  25. data/lib/twitter_cldr/localized/localized_time.rb +2 -2
  26. data/lib/twitter_cldr/localized/localized_timespan.rb +10 -10
  27. data/lib/twitter_cldr/parsers/number_parser.rb +1 -1
  28. data/lib/twitter_cldr/parsers/parser.rb +5 -1
  29. data/lib/twitter_cldr/parsers/unicode_regex/character_class.rb +41 -2
  30. data/lib/twitter_cldr/parsers/unicode_regex/character_range.rb +8 -0
  31. data/lib/twitter_cldr/parsers/unicode_regex/character_set.rb +66 -23
  32. data/lib/twitter_cldr/parsers/unicode_regex/literal.rb +4 -0
  33. data/lib/twitter_cldr/parsers/unicode_regex/unicode_string.rb +6 -3
  34. data/lib/twitter_cldr/parsers/unicode_regex_parser.rb +65 -32
  35. data/lib/twitter_cldr/parsers.rb +1 -2
  36. data/lib/twitter_cldr/resources/custom_locales_resources_importer.rb +4 -4
  37. data/lib/twitter_cldr/resources/download.rb +13 -6
  38. data/lib/twitter_cldr/resources/language_codes_importer.rb +7 -7
  39. data/lib/twitter_cldr/resources/loader.rb +4 -1
  40. data/lib/twitter_cldr/resources/locales_resources_importer.rb +30 -12
  41. data/lib/twitter_cldr/resources/postal_codes_importer.rb +32 -22
  42. data/lib/twitter_cldr/resources/properties/age_property_importer.rb +27 -0
  43. data/lib/twitter_cldr/resources/properties/arabic_shaping_property_importer.rb +42 -0
  44. data/lib/twitter_cldr/resources/properties/bidi_brackets_property_importer.rb +41 -0
  45. data/lib/twitter_cldr/resources/properties/blocks_property_importer.rb +27 -0
  46. data/lib/twitter_cldr/resources/properties/derived_core_properties_importer.rb +36 -0
  47. data/lib/twitter_cldr/resources/properties/east_asian_width_property_importer.rb +27 -0
  48. data/lib/twitter_cldr/resources/properties/grapheme_break_property_importer.rb +27 -0
  49. data/lib/twitter_cldr/resources/properties/hangul_syllable_type_property_importer.rb +27 -0
  50. data/lib/twitter_cldr/resources/properties/indic_positional_category_property_importer.rb +27 -0
  51. data/lib/twitter_cldr/resources/properties/indic_syllabic_category_property_importer.rb +27 -0
  52. data/lib/twitter_cldr/resources/properties/jamo_property_importer.rb +27 -0
  53. data/lib/twitter_cldr/resources/properties/line_break_property_importer.rb +27 -0
  54. data/lib/twitter_cldr/resources/properties/prop_list_importer.rb +36 -0
  55. data/lib/twitter_cldr/resources/properties/properties_importer.rb +59 -0
  56. data/lib/twitter_cldr/resources/properties/property_importer.rb +83 -0
  57. data/lib/twitter_cldr/resources/properties/script_extensions_property_importer.rb +40 -0
  58. data/lib/twitter_cldr/resources/properties/script_property_importer.rb +27 -0
  59. data/lib/twitter_cldr/resources/properties/sentence_break_property_importer.rb +27 -0
  60. data/lib/twitter_cldr/resources/properties/unicode_data_properties_importer.rb +60 -0
  61. data/lib/twitter_cldr/resources/properties/word_break_property_importer.rb +27 -0
  62. data/lib/twitter_cldr/resources/properties.rb +36 -0
  63. data/lib/twitter_cldr/resources/readme_renderer.rb +2 -2
  64. data/lib/twitter_cldr/resources/segment_tests_importer.rb +66 -0
  65. data/lib/twitter_cldr/resources/tailoring_importer.rb +7 -7
  66. data/lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb +1 -1
  67. data/lib/twitter_cldr/resources/unicode_data_importer.rb +19 -60
  68. data/lib/twitter_cldr/resources/unicode_property_aliases_importer.rb +97 -0
  69. data/lib/twitter_cldr/resources.rb +21 -22
  70. data/lib/twitter_cldr/segmentation/break_iterator.rb +54 -0
  71. data/lib/twitter_cldr/segmentation/cursor.rb +34 -0
  72. data/lib/twitter_cldr/segmentation/parser.rb +71 -0
  73. data/lib/twitter_cldr/segmentation/rule.rb +79 -0
  74. data/lib/twitter_cldr/segmentation/rule_set.rb +116 -0
  75. data/lib/twitter_cldr/segmentation/rule_set_builder.rb +142 -0
  76. data/lib/twitter_cldr/segmentation.rb +17 -0
  77. data/lib/twitter_cldr/shared/bidi.rb +4 -4
  78. data/lib/twitter_cldr/shared/calendar.rb +11 -11
  79. data/lib/twitter_cldr/shared/caser.rb +84 -0
  80. data/lib/twitter_cldr/shared/code_point.rb +101 -139
  81. data/lib/twitter_cldr/shared/currencies.rb +5 -5
  82. data/lib/twitter_cldr/shared/language_codes.rb +2 -2
  83. data/lib/twitter_cldr/shared/languages.rb +1 -1
  84. data/lib/twitter_cldr/shared/likely_subtags.rb +104 -0
  85. data/lib/twitter_cldr/shared/locale.rb +252 -0
  86. data/lib/twitter_cldr/shared/postal_codes.rb +21 -9
  87. data/lib/twitter_cldr/shared/properties/arabic_shaping.rb +40 -0
  88. data/lib/twitter_cldr/shared/properties/bidi_brackets.rb +28 -0
  89. data/lib/twitter_cldr/shared/properties.rb +13 -0
  90. data/lib/twitter_cldr/shared/properties_database.rb +180 -0
  91. data/lib/twitter_cldr/shared/property_name_aliases.rb +48 -0
  92. data/lib/twitter_cldr/shared/property_normalizer.rb +108 -0
  93. data/lib/twitter_cldr/shared/property_set.rb +113 -0
  94. data/lib/twitter_cldr/shared/property_value_aliases.rb +99 -0
  95. data/lib/twitter_cldr/shared/unicode_regex.rb +29 -3
  96. data/lib/twitter_cldr/shared.rb +9 -1
  97. data/lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb +1 -1
  98. data/lib/twitter_cldr/tokenizers/token.rb +1 -1
  99. data/lib/twitter_cldr/tokenizers/tokenizer.rb +15 -13
  100. data/lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb +4 -4
  101. data/lib/twitter_cldr/utils/file_system_trie.rb +145 -0
  102. data/lib/twitter_cldr/utils/range_set.rb +131 -31
  103. data/lib/twitter_cldr/utils/regexp_sampler.rb +0 -1
  104. data/lib/twitter_cldr/utils/script_detector.rb +75 -0
  105. data/lib/twitter_cldr/utils/yaml.rb +3 -3
  106. data/lib/twitter_cldr/utils.rb +8 -5
  107. data/lib/twitter_cldr/version.rb +1 -1
  108. data/lib/twitter_cldr/versions.rb +30 -0
  109. data/lib/twitter_cldr.rb +8 -10
  110. data/resources/locales/af/calendars.yml +8 -8
  111. data/resources/locales/af/lists.yml +8 -4
  112. data/resources/locales/af/numbers.yml +54 -30
  113. data/resources/locales/ar/lists.yml +8 -4
  114. data/resources/locales/ar/numbers.yml +48 -24
  115. data/resources/locales/be/calendars.yml +4 -4
  116. data/resources/locales/be/lists.yml +2 -1
  117. data/resources/locales/be/numbers.yml +24 -12
  118. data/resources/locales/bg/calendars.yml +8 -8
  119. data/resources/locales/bg/lists.yml +8 -4
  120. data/resources/locales/bg/numbers.yml +48 -24
  121. data/resources/locales/bn/lists.yml +8 -4
  122. data/resources/locales/bn/numbers.yml +48 -24
  123. data/resources/locales/ca/calendars.yml +8 -8
  124. data/resources/locales/ca/lists.yml +8 -4
  125. data/resources/locales/ca/numbers.yml +48 -24
  126. data/resources/locales/cs/calendars.yml +32 -32
  127. data/resources/locales/cs/lists.yml +8 -4
  128. data/resources/locales/cs/numbers.yml +48 -24
  129. data/resources/locales/cy/calendars.yml +8 -8
  130. data/resources/locales/cy/lists.yml +6 -3
  131. data/resources/locales/cy/numbers.yml +48 -24
  132. data/resources/locales/da/calendars.yml +10 -10
  133. data/resources/locales/da/lists.yml +8 -4
  134. data/resources/locales/da/numbers.yml +48 -24
  135. data/resources/locales/de/calendars.yml +8 -8
  136. data/resources/locales/de/lists.yml +8 -4
  137. data/resources/locales/de/numbers.yml +48 -24
  138. data/resources/locales/de-CH/calendars.yml +8 -8
  139. data/resources/locales/de-CH/lists.yml +8 -4
  140. data/resources/locales/de-CH/numbers.yml +48 -24
  141. data/resources/locales/el/calendars.yml +8 -8
  142. data/resources/locales/el/lists.yml +8 -4
  143. data/resources/locales/el/numbers.yml +48 -24
  144. data/resources/locales/en/calendars.yml +4 -4
  145. data/resources/locales/en/lists.yml +8 -4
  146. data/resources/locales/en/numbers.yml +48 -24
  147. data/resources/locales/en-150/calendars.yml +4 -4
  148. data/resources/locales/en-150/lists.yml +8 -4
  149. data/resources/locales/en-150/numbers.yml +48 -24
  150. data/resources/locales/en-AU/calendars.yml +4 -4
  151. data/resources/locales/en-AU/lists.yml +8 -4
  152. data/resources/locales/en-AU/numbers.yml +48 -24
  153. data/resources/locales/en-CA/calendars.yml +4 -4
  154. data/resources/locales/en-CA/lists.yml +8 -4
  155. data/resources/locales/en-CA/numbers.yml +48 -24
  156. data/resources/locales/en-GB/calendars.yml +4 -4
  157. data/resources/locales/en-GB/lists.yml +8 -4
  158. data/resources/locales/en-GB/numbers.yml +48 -24
  159. data/resources/locales/en-IE/calendars.yml +4 -4
  160. data/resources/locales/en-IE/lists.yml +8 -4
  161. data/resources/locales/en-IE/numbers.yml +48 -24
  162. data/resources/locales/en-SG/calendars.yml +4 -4
  163. data/resources/locales/en-SG/lists.yml +8 -4
  164. data/resources/locales/en-SG/numbers.yml +48 -24
  165. data/resources/locales/en-ZA/calendars.yml +4 -4
  166. data/resources/locales/en-ZA/lists.yml +8 -4
  167. data/resources/locales/en-ZA/numbers.yml +48 -24
  168. data/resources/locales/es/lists.yml +8 -4
  169. data/resources/locales/es/numbers.yml +48 -24
  170. data/resources/locales/es-419/calendars.yml +8 -8
  171. data/resources/locales/es-419/lists.yml +8 -4
  172. data/resources/locales/es-419/numbers.yml +50 -26
  173. data/resources/locales/es-CO/lists.yml +8 -4
  174. data/resources/locales/es-CO/numbers.yml +48 -24
  175. data/resources/locales/es-MX/lists.yml +8 -4
  176. data/resources/locales/es-MX/numbers.yml +48 -24
  177. data/resources/locales/es-US/lists.yml +8 -4
  178. data/resources/locales/es-US/numbers.yml +48 -24
  179. data/resources/locales/eu/calendars.yml +8 -8
  180. data/resources/locales/eu/lists.yml +8 -4
  181. data/resources/locales/eu/numbers.yml +48 -24
  182. data/resources/locales/fa/lists.yml +8 -4
  183. data/resources/locales/fa/numbers.yml +48 -24
  184. data/resources/locales/fi/calendars.yml +8 -8
  185. data/resources/locales/fi/lists.yml +8 -4
  186. data/resources/locales/fi/numbers.yml +48 -24
  187. data/resources/locales/fil/calendars.yml +8 -8
  188. data/resources/locales/fil/lists.yml +8 -4
  189. data/resources/locales/fil/numbers.yml +48 -24
  190. data/resources/locales/fr/calendars.yml +8 -8
  191. data/resources/locales/fr/lists.yml +8 -4
  192. data/resources/locales/fr/numbers.yml +48 -24
  193. data/resources/locales/fr-BE/calendars.yml +8 -8
  194. data/resources/locales/fr-BE/lists.yml +8 -4
  195. data/resources/locales/fr-BE/numbers.yml +48 -24
  196. data/resources/locales/fr-CA/calendars.yml +8 -8
  197. data/resources/locales/fr-CA/lists.yml +8 -4
  198. data/resources/locales/fr-CA/numbers.yml +48 -24
  199. data/resources/locales/fr-CH/calendars.yml +8 -8
  200. data/resources/locales/fr-CH/lists.yml +8 -4
  201. data/resources/locales/fr-CH/numbers.yml +48 -24
  202. data/resources/locales/ga/calendars.yml +8 -8
  203. data/resources/locales/ga/lists.yml +8 -4
  204. data/resources/locales/ga/numbers.yml +48 -24
  205. data/resources/locales/gl/calendars.yml +8 -8
  206. data/resources/locales/gl/lists.yml +8 -4
  207. data/resources/locales/gl/numbers.yml +48 -24
  208. data/resources/locales/he/calendars.yml +28 -28
  209. data/resources/locales/he/lists.yml +8 -4
  210. data/resources/locales/he/numbers.yml +48 -24
  211. data/resources/locales/hi/calendars.yml +8 -8
  212. data/resources/locales/hi/lists.yml +8 -4
  213. data/resources/locales/hi/numbers.yml +48 -24
  214. data/resources/locales/hr/lists.yml +8 -4
  215. data/resources/locales/hr/numbers.yml +48 -24
  216. data/resources/locales/hu/lists.yml +8 -4
  217. data/resources/locales/hu/numbers.yml +48 -24
  218. data/resources/locales/id/calendars.yml +8 -8
  219. data/resources/locales/id/lists.yml +8 -4
  220. data/resources/locales/id/numbers.yml +49 -25
  221. data/resources/locales/is/calendars.yml +8 -8
  222. data/resources/locales/is/lists.yml +8 -4
  223. data/resources/locales/is/numbers.yml +48 -24
  224. data/resources/locales/it/calendars.yml +8 -8
  225. data/resources/locales/it/lists.yml +8 -4
  226. data/resources/locales/it/numbers.yml +54 -30
  227. data/resources/locales/it-CH/calendars.yml +8 -8
  228. data/resources/locales/it-CH/lists.yml +8 -4
  229. data/resources/locales/it-CH/numbers.yml +54 -30
  230. data/resources/locales/ja/calendars.yml +32 -32
  231. data/resources/locales/ja/lists.yml +8 -4
  232. data/resources/locales/ja/numbers.yml +48 -24
  233. data/resources/locales/ko/calendars.yml +8 -8
  234. data/resources/locales/ko/lists.yml +8 -4
  235. data/resources/locales/ko/numbers.yml +48 -24
  236. data/resources/locales/lv/lists.yml +8 -4
  237. data/resources/locales/lv/numbers.yml +48 -24
  238. data/resources/locales/ms/calendars.yml +8 -8
  239. data/resources/locales/ms/lists.yml +8 -4
  240. data/resources/locales/ms/numbers.yml +48 -24
  241. data/resources/locales/nb/calendars.yml +9 -9
  242. data/resources/locales/nb/lists.yml +8 -4
  243. data/resources/locales/nb/numbers.yml +48 -24
  244. data/resources/locales/nl/calendars.yml +8 -8
  245. data/resources/locales/nl/lists.yml +8 -4
  246. data/resources/locales/nl/numbers.yml +48 -24
  247. data/resources/locales/pl/calendars.yml +8 -8
  248. data/resources/locales/pl/lists.yml +8 -4
  249. data/resources/locales/pl/numbers.yml +48 -24
  250. data/resources/locales/pt/calendars.yml +8 -8
  251. data/resources/locales/pt/lists.yml +8 -4
  252. data/resources/locales/pt/numbers.yml +48 -24
  253. data/resources/locales/ro/calendars.yml +8 -8
  254. data/resources/locales/ro/lists.yml +8 -4
  255. data/resources/locales/ro/numbers.yml +48 -24
  256. data/resources/locales/ru/calendars.yml +8 -8
  257. data/resources/locales/ru/lists.yml +8 -4
  258. data/resources/locales/ru/numbers.yml +48 -24
  259. data/resources/locales/sk/calendars.yml +8 -8
  260. data/resources/locales/sk/lists.yml +8 -4
  261. data/resources/locales/sk/numbers.yml +48 -24
  262. data/resources/locales/sq/calendars.yml +8 -8
  263. data/resources/locales/sq/lists.yml +8 -4
  264. data/resources/locales/sq/numbers.yml +48 -24
  265. data/resources/locales/sr/lists.yml +8 -4
  266. data/resources/locales/sr/numbers.yml +48 -24
  267. data/resources/locales/sv/calendars.yml +10 -10
  268. data/resources/locales/sv/lists.yml +8 -4
  269. data/resources/locales/sv/numbers.yml +48 -24
  270. data/resources/locales/ta/calendars.yml +8 -8
  271. data/resources/locales/ta/lists.yml +8 -4
  272. data/resources/locales/ta/numbers.yml +48 -24
  273. data/resources/locales/th/calendars.yml +8 -8
  274. data/resources/locales/th/lists.yml +8 -4
  275. data/resources/locales/th/numbers.yml +48 -24
  276. data/resources/locales/tr/lists.yml +8 -4
  277. data/resources/locales/tr/numbers.yml +50 -26
  278. data/resources/locales/uk/calendars.yml +8 -8
  279. data/resources/locales/uk/lists.yml +8 -4
  280. data/resources/locales/uk/numbers.yml +48 -24
  281. data/resources/locales/ur/calendars.yml +8 -8
  282. data/resources/locales/ur/lists.yml +8 -4
  283. data/resources/locales/ur/numbers.yml +48 -24
  284. data/resources/locales/vi/calendars.yml +32 -32
  285. data/resources/locales/vi/lists.yml +8 -4
  286. data/resources/locales/vi/numbers.yml +48 -24
  287. data/resources/locales/zh/calendars.yml +32 -32
  288. data/resources/locales/zh/lists.yml +8 -4
  289. data/resources/locales/zh/numbers.yml +48 -24
  290. data/resources/locales/zh-Hant/calendars.yml +32 -32
  291. data/resources/locales/zh-Hant/lists.yml +8 -4
  292. data/resources/locales/zh-Hant/numbers.yml +48 -24
  293. data/resources/shared/aliases.yml +1351 -0
  294. data/resources/shared/likely_subtags.yml +1149 -0
  295. data/resources/shared/postal_codes.yml +486 -289
  296. data/resources/shared/segments/segments_root.yml +57 -57
  297. data/resources/shared/segments/tests/sentence_break_test.yml +527 -0
  298. data/resources/shared/segments/tests/word_break_test.yml +1379 -0
  299. data/resources/shared/territories_containment.yml +25 -17
  300. data/resources/shared/variables.yml +1194 -0
  301. data/resources/unicode_data/blocks/ahom.yml +913 -0
  302. data/resources/unicode_data/blocks/anatolian_hieroglyphs.yml +9329 -0
  303. data/resources/unicode_data/blocks/arabic.yml +16 -0
  304. data/resources/unicode_data/blocks/arabic_presentation_forms_a.yml +2 -2
  305. data/resources/unicode_data/blocks/bassa_vah.yml +577 -0
  306. data/resources/unicode_data/blocks/buginese.yml +2 -2
  307. data/resources/unicode_data/blocks/caucasian_albanian.yml +849 -0
  308. data/resources/unicode_data/blocks/cherokee_supplement.yml +1281 -0
  309. data/resources/unicode_data/blocks/cjk_unified_ideographs_extension_e.yml +33 -0
  310. data/resources/unicode_data/blocks/combining_diacritical_marks_extended.yml +241 -0
  311. data/resources/unicode_data/blocks/coptic_epact_numbers.yml +449 -0
  312. data/resources/unicode_data/blocks/cuneiform_numbers_and_punctuation.yml +2 -2
  313. data/resources/unicode_data/blocks/duployan.yml +2289 -0
  314. data/resources/unicode_data/blocks/early_dynastic_cuneiform.yml +3137 -0
  315. data/resources/unicode_data/blocks/elbasan.yml +641 -0
  316. data/resources/unicode_data/blocks/general_punctuation.yml +64 -0
  317. data/resources/unicode_data/blocks/geometric_shapes_extended.yml +1361 -0
  318. data/resources/unicode_data/blocks/grantha.yml +1361 -0
  319. data/resources/unicode_data/blocks/gujarati.yml +0 -16
  320. data/resources/unicode_data/blocks/hatran.yml +417 -0
  321. data/resources/unicode_data/blocks/kannada.yml +0 -16
  322. data/resources/unicode_data/blocks/khojki.yml +977 -0
  323. data/resources/unicode_data/blocks/khudawadi.yml +1105 -0
  324. data/resources/unicode_data/blocks/latin_extended_e.yml +865 -0
  325. data/resources/unicode_data/blocks/linear_a.yml +5457 -0
  326. data/resources/unicode_data/blocks/mahajani.yml +625 -0
  327. data/resources/unicode_data/blocks/manichaean.yml +817 -0
  328. data/resources/unicode_data/blocks/mende_kikakui.yml +3409 -0
  329. data/resources/unicode_data/blocks/miscellaneous_technical.yml +4 -4
  330. data/resources/unicode_data/blocks/modi.yml +1265 -0
  331. data/resources/unicode_data/blocks/mongolian.yml +2 -2
  332. data/resources/unicode_data/blocks/mro.yml +689 -0
  333. data/resources/unicode_data/blocks/multani.yml +609 -0
  334. data/resources/unicode_data/blocks/myanmar_extended_b.yml +497 -0
  335. data/resources/unicode_data/blocks/nabataean.yml +641 -0
  336. data/resources/unicode_data/blocks/old_hungarian.yml +1729 -0
  337. data/resources/unicode_data/blocks/old_north_arabian.yml +513 -0
  338. data/resources/unicode_data/blocks/old_permic.yml +689 -0
  339. data/resources/unicode_data/blocks/ornamental_dingbats.yml +769 -0
  340. data/resources/unicode_data/blocks/pahawh_hmong.yml +2033 -0
  341. data/resources/unicode_data/blocks/palmyrene.yml +513 -0
  342. data/resources/unicode_data/blocks/pau_cin_hau.yml +913 -0
  343. data/resources/unicode_data/blocks/psalter_pahlavi.yml +465 -0
  344. data/resources/unicode_data/blocks/shorthand_format_controls.yml +65 -0
  345. data/resources/unicode_data/blocks/siddham.yml +1473 -0
  346. data/resources/unicode_data/blocks/sinhala_archaic_numbers.yml +321 -0
  347. data/resources/unicode_data/blocks/supplemental_arrows_c.yml +2369 -0
  348. data/resources/unicode_data/blocks/supplemental_symbols_and_pictographs.yml +241 -0
  349. data/resources/unicode_data/blocks/sutton_signwriting.yml +10753 -0
  350. data/resources/unicode_data/blocks/tirhuta.yml +1313 -0
  351. data/resources/unicode_data/blocks/warang_citi.yml +1345 -0
  352. data/resources/unicode_data/properties/ASCII_Hex_Digit/value.dump +5 -0
  353. data/resources/unicode_data/properties/Age/1.1/value.dump +0 -0
  354. data/resources/unicode_data/properties/Age/2.0/value.dump +0 -0
  355. data/resources/unicode_data/properties/Age/2.1/value.dump +4 -0
  356. data/resources/unicode_data/properties/Age/3.0/value.dump +0 -0
  357. data/resources/unicode_data/properties/Age/3.1/value.dump +0 -0
  358. data/resources/unicode_data/properties/Age/3.2/value.dump +0 -0
  359. data/resources/unicode_data/properties/Age/4.0/value.dump +0 -0
  360. data/resources/unicode_data/properties/Age/4.1/value.dump +0 -0
  361. data/resources/unicode_data/properties/Age/5.0/value.dump +0 -0
  362. data/resources/unicode_data/properties/Age/5.1/value.dump +0 -0
  363. data/resources/unicode_data/properties/Age/5.2/value.dump +0 -0
  364. data/resources/unicode_data/properties/Age/6.0/value.dump +0 -0
  365. data/resources/unicode_data/properties/Age/6.1/value.dump +0 -0
  366. data/resources/unicode_data/properties/Age/6.2/value.dump +3 -0
  367. data/resources/unicode_data/properties/Age/6.3/value.dump +4 -0
  368. data/resources/unicode_data/properties/Alphabetic/value.dump +0 -0
  369. data/resources/unicode_data/properties/Bidi_Class/AL/value.dump +0 -0
  370. data/resources/unicode_data/properties/Bidi_Class/AN/value.dump +0 -0
  371. data/resources/unicode_data/properties/Bidi_Class/B/value.dump +8 -0
  372. data/resources/unicode_data/properties/Bidi_Class/BN/value.dump +0 -0
  373. data/resources/unicode_data/properties/Bidi_Class/CS/value.dump +15 -0
  374. data/resources/unicode_data/properties/Bidi_Class/EN/value.dump +0 -0
  375. data/resources/unicode_data/properties/Bidi_Class/ES/value.dump +11 -0
  376. data/resources/unicode_data/properties/Bidi_Class/ET/value.dump +27 -0
  377. data/resources/unicode_data/properties/Bidi_Class/FSI/value.dump +3 -0
  378. data/resources/unicode_data/properties/Bidi_Class/L/value.dump +0 -0
  379. data/resources/unicode_data/properties/Bidi_Class/LRE/value.dump +3 -0
  380. data/resources/unicode_data/properties/Bidi_Class/LRI/value.dump +3 -0
  381. data/resources/unicode_data/properties/Bidi_Class/LRO/value.dump +3 -0
  382. data/resources/unicode_data/properties/Bidi_Class/NSM/value.dump +0 -0
  383. data/resources/unicode_data/properties/Bidi_Class/ON/value.dump +0 -0
  384. data/resources/unicode_data/properties/Bidi_Class/PDF/value.dump +3 -0
  385. data/resources/unicode_data/properties/Bidi_Class/PDI/value.dump +3 -0
  386. data/resources/unicode_data/properties/Bidi_Class/R/value.dump +0 -0
  387. data/resources/unicode_data/properties/Bidi_Class/RLE/value.dump +3 -0
  388. data/resources/unicode_data/properties/Bidi_Class/RLI/value.dump +3 -0
  389. data/resources/unicode_data/properties/Bidi_Class/RLO/value.dump +3 -0
  390. data/resources/unicode_data/properties/Bidi_Class/S/value.dump +5 -0
  391. data/resources/unicode_data/properties/Bidi_Class/WS/value.dump +0 -0
  392. data/resources/unicode_data/properties/Bidi_Control/value.dump +4 -0
  393. data/resources/unicode_data/properties/Bidi_Mirrored/N/value.dump +0 -0
  394. data/resources/unicode_data/properties/Bidi_Mirrored/Y/value.dump +115 -0
  395. data/resources/unicode_data/properties/Block/Aegean Numbers/value.dump +0 -0
  396. data/resources/unicode_data/properties/Block/Alchemical Symbols/value.dump +0 -0
  397. data/resources/unicode_data/properties/Block/Alphabetic Presentation Forms/value.dump +0 -0
  398. data/resources/unicode_data/properties/Block/Ancient Greek Musical Notation/value.dump +0 -0
  399. data/resources/unicode_data/properties/Block/Ancient Greek Numbers/value.dump +3 -0
  400. data/resources/unicode_data/properties/Block/Ancient Symbols/value.dump +3 -0
  401. data/resources/unicode_data/properties/Block/Arabic/value.dump +0 -0
  402. data/resources/unicode_data/properties/Block/Arabic Extended-A/value.dump +3 -0
  403. data/resources/unicode_data/properties/Block/Arabic Mathematical Alphabetic Symbols/value.dump +0 -0
  404. data/resources/unicode_data/properties/Block/Arabic Presentation Forms-A/value.dump +3 -0
  405. data/resources/unicode_data/properties/Block/Arabic Presentation Forms-B/value.dump +3 -0
  406. data/resources/unicode_data/properties/Block/Arabic Supplement/value.dump +3 -0
  407. data/resources/unicode_data/properties/Block/Armenian/value.dump +3 -0
  408. data/resources/unicode_data/properties/Block/Arrows/value.dump +3 -0
  409. data/resources/unicode_data/properties/Block/Avestan/value.dump +0 -0
  410. data/resources/unicode_data/properties/Block/Balinese/value.dump +0 -0
  411. data/resources/unicode_data/properties/Block/Bamum/value.dump +3 -0
  412. data/resources/unicode_data/properties/Block/Bamum Supplement/value.dump +0 -0
  413. data/resources/unicode_data/properties/Block/Basic Latin/value.dump +0 -0
  414. data/resources/unicode_data/properties/Block/Batak/value.dump +3 -0
  415. data/resources/unicode_data/properties/Block/Bengali/value.dump +3 -0
  416. data/resources/unicode_data/properties/Block/Block Elements/value.dump +3 -0
  417. data/resources/unicode_data/properties/Block/Bopomofo/value.dump +0 -0
  418. data/resources/unicode_data/properties/Block/Bopomofo Extended/value.dump +3 -0
  419. data/resources/unicode_data/properties/Block/Box Drawing/value.dump +0 -0
  420. data/resources/unicode_data/properties/Block/Brahmi/value.dump +0 -0
  421. data/resources/unicode_data/properties/Block/Braille Patterns/value.dump +0 -0
  422. data/resources/unicode_data/properties/Block/Buginese/value.dump +0 -0
  423. data/resources/unicode_data/properties/Block/Buhid/value.dump +3 -0
  424. data/resources/unicode_data/properties/Block/Byzantine Musical Symbols/value.dump +0 -0
  425. data/resources/unicode_data/properties/Block/CJK Compatibility/value.dump +0 -0
  426. data/resources/unicode_data/properties/Block/CJK Compatibility Forms/value.dump +3 -0
  427. data/resources/unicode_data/properties/Block/CJK Compatibility Ideographs/value.dump +0 -0
  428. data/resources/unicode_data/properties/Block/CJK Compatibility Ideographs Supplement/value.dump +0 -0
  429. data/resources/unicode_data/properties/Block/CJK Radicals Supplement/value.dump +3 -0
  430. data/resources/unicode_data/properties/Block/CJK Strokes/value.dump +3 -0
  431. Punctuation/value.dump +0 -0
  432. data/resources/unicode_data/properties/Block/CJK Unified Ideographs/value.dump +0 -0
  433. data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension A/value.dump +0 -0
  434. data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension B/value.dump +0 -0
  435. data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension C/value.dump +0 -0
  436. data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension D/value.dump +3 -0
  437. data/resources/unicode_data/properties/Block/Carian/value.dump +3 -0
  438. data/resources/unicode_data/properties/Block/Chakma/value.dump +0 -0
  439. data/resources/unicode_data/properties/Block/Cham/value.dump +0 -0
  440. data/resources/unicode_data/properties/Block/Cherokee/value.dump +3 -0
  441. data/resources/unicode_data/properties/Block/Combining Diacritical Marks/value.dump +0 -0
  442. data/resources/unicode_data/properties/Block/Combining Diacritical Marks Supplement/value.dump +3 -0
  443. data/resources/unicode_data/properties/Block/Combining Diacritical Marks for Symbols/value.dump +3 -0
  444. data/resources/unicode_data/properties/Block/Combining Half Marks/value.dump +3 -0
  445. data/resources/unicode_data/properties/Block/Common Indic Number Forms/value.dump +3 -0
  446. data/resources/unicode_data/properties/Block/Control Pictures/value.dump +0 -0
  447. data/resources/unicode_data/properties/Block/Coptic/value.dump +3 -0
  448. data/resources/unicode_data/properties/Block/Counting Rod Numerals/value.dump +3 -0
  449. data/resources/unicode_data/properties/Block/Cuneiform/value.dump +0 -0
  450. Punctuation/value.dump +0 -0
  451. data/resources/unicode_data/properties/Block/Currency Symbols/value.dump +3 -0
  452. data/resources/unicode_data/properties/Block/Cypriot Syllabary/value.dump +0 -0
  453. data/resources/unicode_data/properties/Block/Cyrillic/value.dump +0 -0
  454. data/resources/unicode_data/properties/Block/Cyrillic Extended-A/value.dump +3 -0
  455. data/resources/unicode_data/properties/Block/Cyrillic Extended-B/value.dump +3 -0
  456. data/resources/unicode_data/properties/Block/Cyrillic Supplement/value.dump +0 -0
  457. data/resources/unicode_data/properties/Block/Deseret/value.dump +0 -0
  458. data/resources/unicode_data/properties/Block/Devanagari/value.dump +0 -0
  459. data/resources/unicode_data/properties/Block/Devanagari Extended/value.dump +3 -0
  460. data/resources/unicode_data/properties/Block/Dingbats/value.dump +0 -0
  461. data/resources/unicode_data/properties/Block/Domino Tiles/value.dump +3 -0
  462. data/resources/unicode_data/properties/Block/Egyptian Hieroglyphs/value.dump +0 -0
  463. data/resources/unicode_data/properties/Block/Emoticons/value.dump +0 -0
  464. data/resources/unicode_data/properties/Block/Enclosed Alphanumeric Supplement/value.dump +0 -0
  465. data/resources/unicode_data/properties/Block/Enclosed Alphanumerics/value.dump +3 -0
  466. Months/value.dump +0 -0
  467. data/resources/unicode_data/properties/Block/Enclosed Ideographic Supplement/value.dump +0 -0
  468. data/resources/unicode_data/properties/Block/Ethiopic/value.dump +0 -0
  469. data/resources/unicode_data/properties/Block/Ethiopic Extended/value.dump +3 -0
  470. data/resources/unicode_data/properties/Block/Ethiopic Extended-A/value.dump +0 -0
  471. data/resources/unicode_data/properties/Block/Ethiopic Supplement/value.dump +3 -0
  472. data/resources/unicode_data/properties/Block/General Punctuation/value.dump +0 -0
  473. data/resources/unicode_data/properties/Block/Geometric Shapes/value.dump +3 -0
  474. data/resources/unicode_data/properties/Block/Georgian/value.dump +3 -0
  475. data/resources/unicode_data/properties/Block/Georgian Supplement/value.dump +0 -0
  476. data/resources/unicode_data/properties/Block/Glagolitic/value.dump +0 -0
  477. data/resources/unicode_data/properties/Block/Gothic/value.dump +3 -0
  478. data/resources/unicode_data/properties/Block/Greek Extended/value.dump +0 -0
  479. data/resources/unicode_data/properties/Block/Greek and Coptic/value.dump +3 -0
  480. data/resources/unicode_data/properties/Block/Gujarati/value.dump +4 -0
  481. data/resources/unicode_data/properties/Block/Gurmukhi/value.dump +0 -0
  482. Fullwidth Forms/value.dump +0 -0
  483. data/resources/unicode_data/properties/Block/Hangul Compatibility Jamo/value.dump +3 -0
  484. data/resources/unicode_data/properties/Block/Hangul Jamo/value.dump +0 -0
  485. data/resources/unicode_data/properties/Block/Hangul Jamo Extended-A/value.dump +3 -0
  486. data/resources/unicode_data/properties/Block/Hangul Jamo Extended-B/value.dump +3 -0
  487. data/resources/unicode_data/properties/Block/Hangul Syllables/value.dump +0 -0
  488. data/resources/unicode_data/properties/Block/Hanunoo/value.dump +3 -0
  489. data/resources/unicode_data/properties/Block/Hebrew/value.dump +3 -0
  490. data/resources/unicode_data/properties/Block/High Private Use Surrogates/value.dump +3 -0
  491. data/resources/unicode_data/properties/Block/High Surrogates/value.dump +0 -0
  492. data/resources/unicode_data/properties/Block/Hiragana/value.dump +3 -0
  493. data/resources/unicode_data/properties/Block/IPA Extensions/value.dump +3 -0
  494. data/resources/unicode_data/properties/Block/Ideographic Description Characters/value.dump +3 -0
  495. data/resources/unicode_data/properties/Block/Imperial Aramaic/value.dump +3 -0
  496. data/resources/unicode_data/properties/Block/Inscriptional Pahlavi/value.dump +3 -0
  497. data/resources/unicode_data/properties/Block/Inscriptional Parthian/value.dump +3 -0
  498. data/resources/unicode_data/properties/Block/Javanese/value.dump +3 -0
  499. data/resources/unicode_data/properties/Block/Kaithi/value.dump +3 -0
  500. data/resources/unicode_data/properties/Block/Kana Supplement/value.dump +0 -0
  501. data/resources/unicode_data/properties/Block/Kanbun/value.dump +3 -0
  502. data/resources/unicode_data/properties/Block/Kangxi Radicals/value.dump +0 -0
  503. data/resources/unicode_data/properties/Block/Kannada/value.dump +3 -0
  504. data/resources/unicode_data/properties/Block/Katakana/value.dump +3 -0
  505. data/resources/unicode_data/properties/Block/Katakana Phonetic Extensions/value.dump +3 -0
  506. data/resources/unicode_data/properties/Block/Kayah Li/value.dump +0 -0
  507. data/resources/unicode_data/properties/Block/Kharoshthi/value.dump +0 -0
  508. data/resources/unicode_data/properties/Block/Khmer/value.dump +3 -0
  509. data/resources/unicode_data/properties/Block/Khmer Symbols/value.dump +3 -0
  510. data/resources/unicode_data/properties/Block/Lao/value.dump +3 -0
  511. data/resources/unicode_data/properties/Block/Latin Extended Additional/value.dump +0 -0
  512. data/resources/unicode_data/properties/Block/Latin Extended-A/value.dump +0 -0
  513. data/resources/unicode_data/properties/Block/Latin Extended-B/value.dump +3 -0
  514. data/resources/unicode_data/properties/Block/Latin Extended-C/value.dump +3 -0
  515. data/resources/unicode_data/properties/Block/Latin Extended-D/value.dump +3 -0
  516. data/resources/unicode_data/properties/Block/Latin-1 Supplement/value.dump +3 -0
  517. data/resources/unicode_data/properties/Block/Lepcha/value.dump +0 -0
  518. data/resources/unicode_data/properties/Block/Letterlike Symbols/value.dump +0 -0
  519. data/resources/unicode_data/properties/Block/Limbu/value.dump +0 -0
  520. data/resources/unicode_data/properties/Block/Linear B Ideograms/value.dump +0 -0
  521. data/resources/unicode_data/properties/Block/Linear B Syllabary/value.dump +0 -0
  522. data/resources/unicode_data/properties/Block/Lisu/value.dump +3 -0
  523. data/resources/unicode_data/properties/Block/Low Surrogates/value.dump +0 -0
  524. data/resources/unicode_data/properties/Block/Lycian/value.dump +3 -0
  525. data/resources/unicode_data/properties/Block/Lydian/value.dump +3 -0
  526. data/resources/unicode_data/properties/Block/Mahjong Tiles/value.dump +0 -0
  527. data/resources/unicode_data/properties/Block/Malayalam/value.dump +0 -0
  528. data/resources/unicode_data/properties/Block/Mandaic/value.dump +3 -0
  529. data/resources/unicode_data/properties/Block/Mathematical Alphanumeric Symbols/value.dump +0 -0
  530. data/resources/unicode_data/properties/Block/Mathematical Operators/value.dump +0 -0
  531. data/resources/unicode_data/properties/Block/Meetei Mayek/value.dump +3 -0
  532. data/resources/unicode_data/properties/Block/Meetei Mayek Extensions/value.dump +3 -0
  533. data/resources/unicode_data/properties/Block/Meroitic Cursive/value.dump +3 -0
  534. data/resources/unicode_data/properties/Block/Meroitic Hieroglyphs/value.dump +3 -0
  535. data/resources/unicode_data/properties/Block/Miao/value.dump +0 -0
  536. data/resources/unicode_data/properties/Block/Miscellaneous Mathematical Symbols-A/value.dump +3 -0
  537. data/resources/unicode_data/properties/Block/Miscellaneous Mathematical Symbols-B/value.dump +3 -0
  538. data/resources/unicode_data/properties/Block/Miscellaneous Symbols/value.dump +0 -0
  539. data/resources/unicode_data/properties/Block/Miscellaneous Symbols And Pictographs/value.dump +0 -0
  540. Arrows/value.dump +0 -0
  541. data/resources/unicode_data/properties/Block/Miscellaneous Technical/value.dump +0 -0
  542. data/resources/unicode_data/properties/Block/Modifier Tone Letters/value.dump +0 -0
  543. data/resources/unicode_data/properties/Block/Mongolian/value.dump +0 -0
  544. data/resources/unicode_data/properties/Block/Musical Symbols/value.dump +0 -0
  545. data/resources/unicode_data/properties/Block/Myanmar/value.dump +0 -0
  546. data/resources/unicode_data/properties/Block/Myanmar Extended-A/value.dump +3 -0
  547. data/resources/unicode_data/properties/Block/NKo/value.dump +3 -0
  548. data/resources/unicode_data/properties/Block/New Tai Lue/value.dump +3 -0
  549. data/resources/unicode_data/properties/Block/Number Forms/value.dump +3 -0
  550. data/resources/unicode_data/properties/Block/Ogham/value.dump +3 -0
  551. data/resources/unicode_data/properties/Block/Ol Chiki/value.dump +3 -0
  552. data/resources/unicode_data/properties/Block/Old Italic/value.dump +0 -0
  553. data/resources/unicode_data/properties/Block/Old Persian/value.dump +3 -0
  554. data/resources/unicode_data/properties/Block/Old South Arabian/value.dump +5 -0
  555. data/resources/unicode_data/properties/Block/Old Turkic/value.dump +0 -0
  556. data/resources/unicode_data/properties/Block/Optical Character Recognition/value.dump +3 -0
  557. data/resources/unicode_data/properties/Block/Oriya/value.dump +0 -0
  558. data/resources/unicode_data/properties/Block/Osmanya/value.dump +3 -0
  559. data/resources/unicode_data/properties/Block/Phags-pa/value.dump +3 -0
  560. data/resources/unicode_data/properties/Block/Phaistos Disc/value.dump +3 -0
  561. data/resources/unicode_data/properties/Block/Phoenician/value.dump +0 -0
  562. data/resources/unicode_data/properties/Block/Phonetic Extensions/value.dump +0 -0
  563. data/resources/unicode_data/properties/Block/Phonetic Extensions Supplement/value.dump +3 -0
  564. data/resources/unicode_data/properties/Block/Playing Cards/value.dump +3 -0
  565. data/resources/unicode_data/properties/Block/Private Use Area/value.dump +0 -0
  566. data/resources/unicode_data/properties/Block/Rejang/value.dump +3 -0
  567. data/resources/unicode_data/properties/Block/Rumi Numeral Symbols/value.dump +3 -0
  568. data/resources/unicode_data/properties/Block/Runic/value.dump +3 -0
  569. data/resources/unicode_data/properties/Block/Samaritan/value.dump +0 -0
  570. data/resources/unicode_data/properties/Block/Saurashtra/value.dump +3 -0
  571. data/resources/unicode_data/properties/Block/Sharada/value.dump +3 -0
  572. data/resources/unicode_data/properties/Block/Shavian/value.dump +3 -0
  573. data/resources/unicode_data/properties/Block/Sinhala/value.dump +3 -0
  574. data/resources/unicode_data/properties/Block/Small Form Variants/value.dump +3 -0
  575. data/resources/unicode_data/properties/Block/Sora Sompeng/value.dump +3 -0
  576. data/resources/unicode_data/properties/Block/Spacing Modifier Letters/value.dump +3 -0
  577. data/resources/unicode_data/properties/Block/Specials/value.dump +3 -0
  578. data/resources/unicode_data/properties/Block/Sundanese/value.dump +3 -0
  579. data/resources/unicode_data/properties/Block/Sundanese Supplement/value.dump +3 -0
  580. data/resources/unicode_data/properties/Block/Superscripts and Subscripts/value.dump +3 -0
  581. data/resources/unicode_data/properties/Block/Supplemental Arrows-A/value.dump +3 -0
  582. data/resources/unicode_data/properties/Block/Supplemental Arrows-B/value.dump +0 -0
  583. data/resources/unicode_data/properties/Block/Supplemental Mathematical Operators/value.dump +0 -0
  584. data/resources/unicode_data/properties/Block/Supplemental Punctuation/value.dump +0 -0
  585. data/resources/unicode_data/properties/Block/Supplementary Private Use Area-A/value.dump +0 -0
  586. data/resources/unicode_data/properties/Block/Supplementary Private Use Area-B/value.dump +0 -0
  587. data/resources/unicode_data/properties/Block/Syloti Nagri/value.dump +0 -0
  588. data/resources/unicode_data/properties/Block/Syriac/value.dump +0 -0
  589. data/resources/unicode_data/properties/Block/Tagalog/value.dump +0 -0
  590. data/resources/unicode_data/properties/Block/Tagbanwa/value.dump +3 -0
  591. data/resources/unicode_data/properties/Block/Tags/value.dump +0 -0
  592. data/resources/unicode_data/properties/Block/Tai Le/value.dump +3 -0
  593. data/resources/unicode_data/properties/Block/Tai Tham/value.dump +3 -0
  594. data/resources/unicode_data/properties/Block/Tai Viet/value.dump +3 -0
  595. data/resources/unicode_data/properties/Block/Tai Xuan Jing Symbols/value.dump +0 -0
  596. data/resources/unicode_data/properties/Block/Takri/value.dump +3 -0
  597. data/resources/unicode_data/properties/Block/Tamil/value.dump +3 -0
  598. data/resources/unicode_data/properties/Block/Telugu/value.dump +0 -0
  599. data/resources/unicode_data/properties/Block/Thaana/value.dump +3 -0
  600. data/resources/unicode_data/properties/Block/Thai/value.dump +0 -0
  601. data/resources/unicode_data/properties/Block/Tibetan/value.dump +0 -0
  602. data/resources/unicode_data/properties/Block/Tifinagh/value.dump +3 -0
  603. data/resources/unicode_data/properties/Block/Transport And Map Symbols/value.dump +3 -0
  604. data/resources/unicode_data/properties/Block/Ugaritic/value.dump +3 -0
  605. data/resources/unicode_data/properties/Block/Unified Canadian Aboriginal Syllabics/value.dump +0 -0
  606. data/resources/unicode_data/properties/Block/Unified Canadian Aboriginal Syllabics Extended/value.dump +3 -0
  607. data/resources/unicode_data/properties/Block/Vai/value.dump +0 -0
  608. data/resources/unicode_data/properties/Block/Variation Selectors/value.dump +0 -0
  609. data/resources/unicode_data/properties/Block/Variation Selectors Supplement/value.dump +0 -0
  610. data/resources/unicode_data/properties/Block/Vedic Extensions/value.dump +3 -0
  611. data/resources/unicode_data/properties/Block/Vertical Forms/value.dump +3 -0
  612. data/resources/unicode_data/properties/Block/Yi Radicals/value.dump +3 -0
  613. data/resources/unicode_data/properties/Block/Yi Syllables/value.dump +0 -0
  614. data/resources/unicode_data/properties/Block/Yijing Hexagram Symbols/value.dump +3 -0
  615. data/resources/unicode_data/properties/Canonical_Combining_Class/0/value.dump +0 -0
  616. data/resources/unicode_data/properties/Canonical_Combining_Class/1/value.dump +13 -0
  617. data/resources/unicode_data/properties/Canonical_Combining_Class/10/value.dump +3 -0
  618. data/resources/unicode_data/properties/Canonical_Combining_Class/103/value.dump +3 -0
  619. data/resources/unicode_data/properties/Canonical_Combining_Class/107/value.dump +3 -0
  620. data/resources/unicode_data/properties/Canonical_Combining_Class/11/value.dump +3 -0
  621. data/resources/unicode_data/properties/Canonical_Combining_Class/118/value.dump +3 -0
  622. data/resources/unicode_data/properties/Canonical_Combining_Class/12/value.dump +3 -0
  623. data/resources/unicode_data/properties/Canonical_Combining_Class/122/value.dump +3 -0
  624. data/resources/unicode_data/properties/Canonical_Combining_Class/129/value.dump +3 -0
  625. data/resources/unicode_data/properties/Canonical_Combining_Class/13/value.dump +3 -0
  626. data/resources/unicode_data/properties/Canonical_Combining_Class/130/value.dump +5 -0
  627. data/resources/unicode_data/properties/Canonical_Combining_Class/132/value.dump +3 -0
  628. data/resources/unicode_data/properties/Canonical_Combining_Class/14/value.dump +3 -0
  629. data/resources/unicode_data/properties/Canonical_Combining_Class/15/value.dump +3 -0
  630. data/resources/unicode_data/properties/Canonical_Combining_Class/16/value.dump +3 -0
  631. data/resources/unicode_data/properties/Canonical_Combining_Class/17/value.dump +3 -0
  632. data/resources/unicode_data/properties/Canonical_Combining_Class/18/value.dump +4 -0
  633. data/resources/unicode_data/properties/Canonical_Combining_Class/19/value.dump +3 -0
  634. data/resources/unicode_data/properties/Canonical_Combining_Class/20/value.dump +3 -0
  635. data/resources/unicode_data/properties/Canonical_Combining_Class/202/value.dump +5 -0
  636. data/resources/unicode_data/properties/Canonical_Combining_Class/21/value.dump +3 -0
  637. data/resources/unicode_data/properties/Canonical_Combining_Class/214/value.dump +3 -0
  638. data/resources/unicode_data/properties/Canonical_Combining_Class/216/value.dump +6 -0
  639. data/resources/unicode_data/properties/Canonical_Combining_Class/218/value.dump +3 -0
  640. data/resources/unicode_data/properties/Canonical_Combining_Class/22/value.dump +3 -0
  641. data/resources/unicode_data/properties/Canonical_Combining_Class/220/value.dump +70 -0
  642. data/resources/unicode_data/properties/Canonical_Combining_Class/222/value.dump +6 -0
  643. data/resources/unicode_data/properties/Canonical_Combining_Class/224/value.dump +3 -0
  644. data/resources/unicode_data/properties/Canonical_Combining_Class/226/value.dump +3 -0
  645. data/resources/unicode_data/properties/Canonical_Combining_Class/228/value.dump +5 -0
  646. data/resources/unicode_data/properties/Canonical_Combining_Class/23/value.dump +3 -0
  647. data/resources/unicode_data/properties/Canonical_Combining_Class/230/value.dump +0 -0
  648. data/resources/unicode_data/properties/Canonical_Combining_Class/232/value.dump +6 -0
  649. data/resources/unicode_data/properties/Canonical_Combining_Class/233/value.dump +6 -0
  650. data/resources/unicode_data/properties/Canonical_Combining_Class/234/value.dump +5 -0
  651. data/resources/unicode_data/properties/Canonical_Combining_Class/24/value.dump +3 -0
  652. data/resources/unicode_data/properties/Canonical_Combining_Class/240/value.dump +3 -0
  653. data/resources/unicode_data/properties/Canonical_Combining_Class/25/value.dump +3 -0
  654. data/resources/unicode_data/properties/Canonical_Combining_Class/26/value.dump +3 -0
  655. data/resources/unicode_data/properties/Canonical_Combining_Class/27/value.dump +4 -0
  656. data/resources/unicode_data/properties/Canonical_Combining_Class/28/value.dump +4 -0
  657. data/resources/unicode_data/properties/Canonical_Combining_Class/29/value.dump +4 -0
  658. data/resources/unicode_data/properties/Canonical_Combining_Class/30/value.dump +4 -0
  659. data/resources/unicode_data/properties/Canonical_Combining_Class/31/value.dump +4 -0
  660. data/resources/unicode_data/properties/Canonical_Combining_Class/32/value.dump +4 -0
  661. data/resources/unicode_data/properties/Canonical_Combining_Class/33/value.dump +3 -0
  662. data/resources/unicode_data/properties/Canonical_Combining_Class/34/value.dump +3 -0
  663. data/resources/unicode_data/properties/Canonical_Combining_Class/35/value.dump +3 -0
  664. data/resources/unicode_data/properties/Canonical_Combining_Class/36/value.dump +3 -0
  665. data/resources/unicode_data/properties/Canonical_Combining_Class/7/value.dump +19 -0
  666. data/resources/unicode_data/properties/Canonical_Combining_Class/8/value.dump +3 -0
  667. data/resources/unicode_data/properties/Canonical_Combining_Class/84/value.dump +3 -0
  668. data/resources/unicode_data/properties/Canonical_Combining_Class/9/value.dump +41 -0
  669. data/resources/unicode_data/properties/Canonical_Combining_Class/91/value.dump +3 -0
  670. data/resources/unicode_data/properties/Case_Ignorable/value.dump +0 -0
  671. data/resources/unicode_data/properties/Cased/value.dump +0 -0
  672. data/resources/unicode_data/properties/Changes_When_Casefolded/value.dump +0 -0
  673. data/resources/unicode_data/properties/Changes_When_Casemapped/value.dump +0 -0
  674. data/resources/unicode_data/properties/Changes_When_Lowercased/value.dump +0 -0
  675. data/resources/unicode_data/properties/Changes_When_Titlecased/value.dump +589 -0
  676. data/resources/unicode_data/properties/Changes_When_Uppercased/value.dump +588 -0
  677. data/resources/unicode_data/properties/Dash/value.dump +0 -0
  678. data/resources/unicode_data/properties/Default_Ignorable_Code_Point/value.dump +0 -0
  679. data/resources/unicode_data/properties/Deprecated/value.dump +0 -0
  680. data/resources/unicode_data/properties/Diacritic/value.dump +135 -0
  681. data/resources/unicode_data/properties/East_Asian_Width/A/value.dump +0 -0
  682. data/resources/unicode_data/properties/East_Asian_Width/F/value.dump +0 -0
  683. data/resources/unicode_data/properties/East_Asian_Width/H/value.dump +9 -0
  684. data/resources/unicode_data/properties/East_Asian_Width/N/value.dump +0 -0
  685. data/resources/unicode_data/properties/East_Asian_Width/Na/value.dump +9 -0
  686. data/resources/unicode_data/properties/East_Asian_Width/W/value.dump +0 -0
  687. data/resources/unicode_data/properties/Extender/value.dump +26 -0
  688. data/resources/unicode_data/properties/General_Category/C/c/value.dump +0 -0
  689. data/resources/unicode_data/properties/General_Category/C/f/value.dump +0 -0
  690. data/resources/unicode_data/properties/General_Category/C/o/value.dump +0 -0
  691. data/resources/unicode_data/properties/General_Category/C/s/value.dump +0 -0
  692. data/resources/unicode_data/properties/General_Category/L/l/value.dump +0 -0
  693. data/resources/unicode_data/properties/General_Category/L/m/value.dump +54 -0
  694. data/resources/unicode_data/properties/General_Category/L/o/value.dump +0 -0
  695. data/resources/unicode_data/properties/General_Category/L/t/value.dump +12 -0
  696. data/resources/unicode_data/properties/General_Category/L/u/value.dump +0 -0
  697. data/resources/unicode_data/properties/General_Category/M/c/value.dump +0 -0
  698. data/resources/unicode_data/properties/General_Category/M/e/value.dump +6 -0
  699. data/resources/unicode_data/properties/General_Category/M/n/value.dump +0 -0
  700. data/resources/unicode_data/properties/General_Category/N/d/value.dump +0 -0
  701. data/resources/unicode_data/properties/General_Category/N/l/value.dump +0 -0
  702. data/resources/unicode_data/properties/General_Category/N/o/value.dump +0 -0
  703. data/resources/unicode_data/properties/General_Category/P/c/value.dump +8 -0
  704. data/resources/unicode_data/properties/General_Category/P/d/value.dump +0 -0
  705. data/resources/unicode_data/properties/General_Category/P/e/value.dump +72 -0
  706. data/resources/unicode_data/properties/General_Category/P/f/value.dump +14 -0
  707. data/resources/unicode_data/properties/General_Category/P/i/value.dump +13 -0
  708. data/resources/unicode_data/properties/General_Category/P/o/value.dump +0 -0
  709. data/resources/unicode_data/properties/General_Category/P/s/value.dump +76 -0
  710. data/resources/unicode_data/properties/General_Category/S/c/value.dump +21 -0
  711. data/resources/unicode_data/properties/General_Category/S/k/value.dump +0 -0
  712. data/resources/unicode_data/properties/General_Category/S/m/value.dump +0 -0
  713. data/resources/unicode_data/properties/General_Category/S/o/value.dump +0 -0
  714. data/resources/unicode_data/properties/General_Category/Z/l/value.dump +3 -0
  715. data/resources/unicode_data/properties/General_Category/Z/p/value.dump +3 -0
  716. data/resources/unicode_data/properties/General_Category/Z/s/value.dump +0 -0
  717. data/resources/unicode_data/properties/Grapheme_Base/value.dump +0 -0
  718. data/resources/unicode_data/properties/Grapheme_Cluster_Break/CR/value.dump +3 -0
  719. data/resources/unicode_data/properties/Grapheme_Cluster_Break/Control/value.dump +0 -0
  720. data/resources/unicode_data/properties/Grapheme_Cluster_Break/Extend/value.dump +0 -0
  721. data/resources/unicode_data/properties/Grapheme_Cluster_Break/L/value.dump +0 -0
  722. data/resources/unicode_data/properties/Grapheme_Cluster_Break/LF/value.dump +3 -0
  723. data/resources/unicode_data/properties/Grapheme_Cluster_Break/LV/value.dump +0 -0
  724. data/resources/unicode_data/properties/Grapheme_Cluster_Break/LVT/value.dump +401 -0
  725. data/resources/unicode_data/properties/Grapheme_Cluster_Break/Regional_Indicator/value.dump +3 -0
  726. data/resources/unicode_data/properties/Grapheme_Cluster_Break/SpacingMark/value.dump +0 -0
  727. data/resources/unicode_data/properties/Grapheme_Cluster_Break/T/value.dump +4 -0
  728. data/resources/unicode_data/properties/Grapheme_Cluster_Break/V/value.dump +4 -0
  729. data/resources/unicode_data/properties/Grapheme_Extend/value.dump +0 -0
  730. data/resources/unicode_data/properties/Grapheme_Link/value.dump +41 -0
  731. data/resources/unicode_data/properties/Hangul_Syllable_Type/L/value.dump +0 -0
  732. data/resources/unicode_data/properties/Hangul_Syllable_Type/LV/value.dump +0 -0
  733. data/resources/unicode_data/properties/Hangul_Syllable_Type/LVT/value.dump +401 -0
  734. data/resources/unicode_data/properties/Hangul_Syllable_Type/T/value.dump +4 -0
  735. data/resources/unicode_data/properties/Hangul_Syllable_Type/V/value.dump +4 -0
  736. data/resources/unicode_data/properties/Hex_Digit/value.dump +8 -0
  737. data/resources/unicode_data/properties/Hyphen/value.dump +12 -0
  738. data/resources/unicode_data/properties/IDS_Binary_Operator/value.dump +4 -0
  739. data/resources/unicode_data/properties/IDS_Trinary_Operator/value.dump +3 -0
  740. data/resources/unicode_data/properties/ID_Continue/value.dump +0 -0
  741. data/resources/unicode_data/properties/ID_Start/value.dump +0 -0
  742. data/resources/unicode_data/properties/Ideographic/value.dump +0 -0
  743. data/resources/unicode_data/properties/Indic_Positional_Category/Bottom/value.dump +78 -0
  744. data/resources/unicode_data/properties/Indic_Positional_Category/Bottom_And_Right/value.dump +4 -0
  745. data/resources/unicode_data/properties/Indic_Positional_Category/Invisible/value.dump +10 -0
  746. data/resources/unicode_data/properties/Indic_Positional_Category/Left/value.dump +36 -0
  747. data/resources/unicode_data/properties/Indic_Positional_Category/Left_And_Right/value.dump +10 -0
  748. data/resources/unicode_data/properties/Indic_Positional_Category/Overstruck/value.dump +8 -0
  749. data/resources/unicode_data/properties/Indic_Positional_Category/Right/value.dump +86 -0
  750. data/resources/unicode_data/properties/Indic_Positional_Category/Top/value.dump +91 -0
  751. data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Bottom/value.dump +8 -0
  752. data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Bottom_And_Right/value.dump +3 -0
  753. data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Left/value.dump +6 -0
  754. data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Left_And_Right/value.dump +4 -0
  755. data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Right/value.dump +12 -0
  756. data/resources/unicode_data/properties/Indic_Positional_Category/Visual_Order_Left/value.dump +8 -0
  757. data/resources/unicode_data/properties/Indic_Syllabic_Category/Avagraha/value.dump +15 -0
  758. data/resources/unicode_data/properties/Indic_Syllabic_Category/Bindu/value.dump +0 -0
  759. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant/value.dump +0 -0
  760. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Dead/value.dump +4 -0
  761. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Final/value.dump +13 -0
  762. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Head_Letter/value.dump +3 -0
  763. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Medial/value.dump +12 -0
  764. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Placeholder/value.dump +0 -0
  765. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Repha/value.dump +8 -0
  766. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Subjoined/value.dump +11 -0
  767. data/resources/unicode_data/properties/Indic_Syllabic_Category/Modifying_Letter/value.dump +3 -0
  768. data/resources/unicode_data/properties/Indic_Syllabic_Category/Nukta/value.dump +18 -0
  769. data/resources/unicode_data/properties/Indic_Syllabic_Category/Register_Shifter/value.dump +3 -0
  770. data/resources/unicode_data/properties/Indic_Syllabic_Category/Tone_Letter/value.dump +5 -0
  771. data/resources/unicode_data/properties/Indic_Syllabic_Category/Tone_Mark/value.dump +17 -0
  772. data/resources/unicode_data/properties/Indic_Syllabic_Category/Virama/value.dump +41 -0
  773. data/resources/unicode_data/properties/Indic_Syllabic_Category/Visarga/value.dump +32 -0
  774. data/resources/unicode_data/properties/Indic_Syllabic_Category/Vowel/value.dump +6 -0
  775. data/resources/unicode_data/properties/Indic_Syllabic_Category/Vowel_Dependent/value.dump +112 -0
  776. data/resources/unicode_data/properties/Indic_Syllabic_Category/Vowel_Independent/value.dump +0 -0
  777. data/resources/unicode_data/properties/Jamo_Short_Name/A/value.dump +3 -0
  778. data/resources/unicode_data/properties/Jamo_Short_Name/AE/value.dump +3 -0
  779. data/resources/unicode_data/properties/Jamo_Short_Name/B/value.dump +4 -0
  780. data/resources/unicode_data/properties/Jamo_Short_Name/BB/value.dump +3 -0
  781. data/resources/unicode_data/properties/Jamo_Short_Name/BS/value.dump +3 -0
  782. data/resources/unicode_data/properties/Jamo_Short_Name/C/value.dump +4 -0
  783. data/resources/unicode_data/properties/Jamo_Short_Name/D/value.dump +4 -0
  784. data/resources/unicode_data/properties/Jamo_Short_Name/DD/value.dump +3 -0
  785. data/resources/unicode_data/properties/Jamo_Short_Name/E/value.dump +3 -0
  786. data/resources/unicode_data/properties/Jamo_Short_Name/EO/value.dump +3 -0
  787. data/resources/unicode_data/properties/Jamo_Short_Name/EU/value.dump +3 -0
  788. data/resources/unicode_data/properties/Jamo_Short_Name/G/value.dump +0 -0
  789. data/resources/unicode_data/properties/Jamo_Short_Name/GG/value.dump +4 -0
  790. data/resources/unicode_data/properties/Jamo_Short_Name/GS/value.dump +3 -0
  791. data/resources/unicode_data/properties/Jamo_Short_Name/H/value.dump +4 -0
  792. data/resources/unicode_data/properties/Jamo_Short_Name/I/value.dump +3 -0
  793. data/resources/unicode_data/properties/Jamo_Short_Name/J/value.dump +4 -0
  794. data/resources/unicode_data/properties/Jamo_Short_Name/JJ/value.dump +3 -0
  795. data/resources/unicode_data/properties/Jamo_Short_Name/K/value.dump +4 -0
  796. data/resources/unicode_data/properties/Jamo_Short_Name/L/value.dump +3 -0
  797. data/resources/unicode_data/properties/Jamo_Short_Name/LB/value.dump +3 -0
  798. data/resources/unicode_data/properties/Jamo_Short_Name/LG/value.dump +3 -0
  799. data/resources/unicode_data/properties/Jamo_Short_Name/LH/value.dump +3 -0
  800. data/resources/unicode_data/properties/Jamo_Short_Name/LM/value.dump +3 -0
  801. data/resources/unicode_data/properties/Jamo_Short_Name/LP/value.dump +3 -0
  802. data/resources/unicode_data/properties/Jamo_Short_Name/LS/value.dump +3 -0
  803. data/resources/unicode_data/properties/Jamo_Short_Name/LT/value.dump +3 -0
  804. data/resources/unicode_data/properties/Jamo_Short_Name/M/value.dump +4 -0
  805. data/resources/unicode_data/properties/Jamo_Short_Name/N/value.dump +4 -0
  806. data/resources/unicode_data/properties/Jamo_Short_Name/NG/value.dump +3 -0
  807. data/resources/unicode_data/properties/Jamo_Short_Name/NH/value.dump +3 -0
  808. data/resources/unicode_data/properties/Jamo_Short_Name/NJ/value.dump +3 -0
  809. data/resources/unicode_data/properties/Jamo_Short_Name/O/value.dump +3 -0
  810. data/resources/unicode_data/properties/Jamo_Short_Name/OE/value.dump +3 -0
  811. data/resources/unicode_data/properties/Jamo_Short_Name/P/value.dump +4 -0
  812. data/resources/unicode_data/properties/Jamo_Short_Name/R/value.dump +3 -0
  813. data/resources/unicode_data/properties/Jamo_Short_Name/S/value.dump +4 -0
  814. data/resources/unicode_data/properties/Jamo_Short_Name/SS/value.dump +6 -0
  815. data/resources/unicode_data/properties/Jamo_Short_Name/T/value.dump +4 -0
  816. data/resources/unicode_data/properties/Jamo_Short_Name/U/value.dump +3 -0
  817. data/resources/unicode_data/properties/Jamo_Short_Name/WA/value.dump +3 -0
  818. data/resources/unicode_data/properties/Jamo_Short_Name/WAE/value.dump +3 -0
  819. data/resources/unicode_data/properties/Jamo_Short_Name/WE/value.dump +3 -0
  820. data/resources/unicode_data/properties/Jamo_Short_Name/WEO/value.dump +3 -0
  821. data/resources/unicode_data/properties/Jamo_Short_Name/WI/value.dump +3 -0
  822. data/resources/unicode_data/properties/Jamo_Short_Name/YA/value.dump +3 -0
  823. data/resources/unicode_data/properties/Jamo_Short_Name/YAE/value.dump +3 -0
  824. data/resources/unicode_data/properties/Jamo_Short_Name/YE/value.dump +3 -0
  825. data/resources/unicode_data/properties/Jamo_Short_Name/YEO/value.dump +3 -0
  826. data/resources/unicode_data/properties/Jamo_Short_Name/YI/value.dump +3 -0
  827. data/resources/unicode_data/properties/Jamo_Short_Name/YO/value.dump +3 -0
  828. data/resources/unicode_data/properties/Jamo_Short_Name/YU/value.dump +3 -0
  829. data/resources/unicode_data/properties/Jamo_Short_Name/value.dump +3 -0
  830. data/resources/unicode_data/properties/Join_Control/value.dump +3 -0
  831. data/resources/unicode_data/properties/Line_Break/AI/value.dump +0 -0
  832. data/resources/unicode_data/properties/Line_Break/AL/value.dump +0 -0
  833. data/resources/unicode_data/properties/Line_Break/B2/value.dump +4 -0
  834. data/resources/unicode_data/properties/Line_Break/BA/value.dump +0 -0
  835. data/resources/unicode_data/properties/Line_Break/BB/value.dump +15 -0
  836. data/resources/unicode_data/properties/Line_Break/BK/value.dump +4 -0
  837. data/resources/unicode_data/properties/Line_Break/CB/value.dump +3 -0
  838. data/resources/unicode_data/properties/Line_Break/CJ/value.dump +27 -0
  839. data/resources/unicode_data/properties/Line_Break/CL/value.dump +81 -0
  840. data/resources/unicode_data/properties/Line_Break/CM/value.dump +0 -0
  841. data/resources/unicode_data/properties/Line_Break/CP/value.dump +4 -0
  842. data/resources/unicode_data/properties/Line_Break/CR/value.dump +3 -0
  843. data/resources/unicode_data/properties/Line_Break/EX/value.dump +24 -0
  844. data/resources/unicode_data/properties/Line_Break/GL/value.dump +13 -0
  845. data/resources/unicode_data/properties/Line_Break/H2/value.dump +0 -0
  846. data/resources/unicode_data/properties/Line_Break/H3/value.dump +401 -0
  847. data/resources/unicode_data/properties/Line_Break/HL/value.dump +12 -0
  848. data/resources/unicode_data/properties/Line_Break/HY/value.dump +3 -0
  849. data/resources/unicode_data/properties/Line_Break/ID/value.dump +0 -0
  850. data/resources/unicode_data/properties/Line_Break/IN/value.dump +4 -0
  851. data/resources/unicode_data/properties/Line_Break/IS/value.dump +12 -0
  852. data/resources/unicode_data/properties/Line_Break/JL/value.dump +0 -0
  853. data/resources/unicode_data/properties/Line_Break/JT/value.dump +4 -0
  854. data/resources/unicode_data/properties/Line_Break/JV/value.dump +4 -0
  855. data/resources/unicode_data/properties/Line_Break/LF/value.dump +3 -0
  856. data/resources/unicode_data/properties/Line_Break/NL/value.dump +3 -0
  857. data/resources/unicode_data/properties/Line_Break/NS/value.dump +17 -0
  858. data/resources/unicode_data/properties/Line_Break/NU/value.dump +0 -0
  859. data/resources/unicode_data/properties/Line_Break/OP/value.dump +83 -0
  860. data/resources/unicode_data/properties/Line_Break/PO/value.dump +20 -0
  861. data/resources/unicode_data/properties/Line_Break/PR/value.dump +24 -0
  862. data/resources/unicode_data/properties/Line_Break/QU/value.dump +0 -0
  863. data/resources/unicode_data/properties/Line_Break/RI/value.dump +3 -0
  864. data/resources/unicode_data/properties/Line_Break/SA/value.dump +0 -0
  865. data/resources/unicode_data/properties/Line_Break/SG/value.dump +0 -0
  866. data/resources/unicode_data/properties/Line_Break/SP/value.dump +3 -0
  867. data/resources/unicode_data/properties/Line_Break/SY/value.dump +3 -0
  868. data/resources/unicode_data/properties/Line_Break/WJ/value.dump +4 -0
  869. data/resources/unicode_data/properties/Line_Break/XX/value.dump +0 -0
  870. data/resources/unicode_data/properties/Line_Break/ZW/value.dump +3 -0
  871. data/resources/unicode_data/properties/Logical_Order_Exception/value.dump +8 -0
  872. data/resources/unicode_data/properties/Lowercase/value.dump +0 -0
  873. data/resources/unicode_data/properties/Math/value.dump +0 -0
  874. data/resources/unicode_data/properties/Noncharacter_Code_Point/value.dump +22 -0
  875. data/resources/unicode_data/properties/Numeric_Type/0/value.dump +0 -0
  876. data/resources/unicode_data/properties/Numeric_Type/1/value.dump +69 -0
  877. data/resources/unicode_data/properties/Numeric_Type/2/value.dump +68 -0
  878. data/resources/unicode_data/properties/Numeric_Type/3/value.dump +68 -0
  879. data/resources/unicode_data/properties/Numeric_Type/4/value.dump +68 -0
  880. data/resources/unicode_data/properties/Numeric_Type/5/value.dump +65 -0
  881. data/resources/unicode_data/properties/Numeric_Type/6/value.dump +65 -0
  882. data/resources/unicode_data/properties/Numeric_Type/7/value.dump +65 -0
  883. data/resources/unicode_data/properties/Numeric_Type/8/value.dump +65 -0
  884. data/resources/unicode_data/properties/Numeric_Type/9/value.dump +67 -0
  885. data/resources/unicode_data/properties/Numeric_Type/value.dump +0 -0
  886. data/resources/unicode_data/properties/Other_Alphabetic/value.dump +0 -0
  887. data/resources/unicode_data/properties/Other_Default_Ignorable_Code_Point/value.dump +0 -0
  888. data/resources/unicode_data/properties/Other_Grapheme_Extend/value.dump +19 -0
  889. data/resources/unicode_data/properties/Other_ID_Continue/value.dump +6 -0
  890. data/resources/unicode_data/properties/Other_ID_Start/value.dump +5 -0
  891. data/resources/unicode_data/properties/Other_Lowercase/value.dump +20 -0
  892. data/resources/unicode_data/properties/Other_Math/value.dump +0 -0
  893. data/resources/unicode_data/properties/Other_Uppercase/value.dump +4 -0
  894. data/resources/unicode_data/properties/Pattern_Syntax/value.dump +0 -0
  895. data/resources/unicode_data/properties/Pattern_White_Space/value.dump +8 -0
  896. data/resources/unicode_data/properties/Quotation_Mark/value.dump +14 -0
  897. data/resources/unicode_data/properties/Radical/value.dump +0 -0
  898. data/resources/unicode_data/properties/STerm/value.dump +0 -0
  899. data/resources/unicode_data/properties/Script/Arabic/value.dump +0 -0
  900. data/resources/unicode_data/properties/Script/Armenian/value.dump +8 -0
  901. data/resources/unicode_data/properties/Script/Avestan/value.dump +0 -0
  902. data/resources/unicode_data/properties/Script/Balinese/value.dump +0 -0
  903. data/resources/unicode_data/properties/Script/Bamum/value.dump +0 -0
  904. data/resources/unicode_data/properties/Script/Batak/value.dump +4 -0
  905. data/resources/unicode_data/properties/Script/Bengali/value.dump +16 -0
  906. data/resources/unicode_data/properties/Script/Bopomofo/value.dump +5 -0
  907. data/resources/unicode_data/properties/Script/Brahmi/value.dump +0 -0
  908. data/resources/unicode_data/properties/Script/Braille/value.dump +0 -0
  909. data/resources/unicode_data/properties/Script/Buginese/value.dump +0 -0
  910. data/resources/unicode_data/properties/Script/Buhid/value.dump +3 -0
  911. data/resources/unicode_data/properties/Script/Canadian_Aboriginal/value.dump +0 -0
  912. data/resources/unicode_data/properties/Script/Carian/value.dump +3 -0
  913. data/resources/unicode_data/properties/Script/Chakma/value.dump +0 -0
  914. data/resources/unicode_data/properties/Script/Cham/value.dump +0 -0
  915. data/resources/unicode_data/properties/Script/Cherokee/value.dump +3 -0
  916. data/resources/unicode_data/properties/Script/Common/value.dump +0 -0
  917. data/resources/unicode_data/properties/Script/Coptic/value.dump +5 -0
  918. data/resources/unicode_data/properties/Script/Cuneiform/value.dump +0 -0
  919. data/resources/unicode_data/properties/Script/Cypriot/value.dump +0 -0
  920. data/resources/unicode_data/properties/Script/Cyrillic/value.dump +0 -0
  921. data/resources/unicode_data/properties/Script/Deseret/value.dump +0 -0
  922. data/resources/unicode_data/properties/Script/Devanagari/value.dump +0 -0
  923. data/resources/unicode_data/properties/Script/Egyptian_Hieroglyphs/value.dump +0 -0
  924. data/resources/unicode_data/properties/Script/Ethiopic/value.dump +0 -0
  925. data/resources/unicode_data/properties/Script/Georgian/value.dump +0 -0
  926. data/resources/unicode_data/properties/Script/Glagolitic/value.dump +0 -0
  927. data/resources/unicode_data/properties/Script/Gothic/value.dump +3 -0
  928. data/resources/unicode_data/properties/Script/Greek/value.dump +0 -0
  929. data/resources/unicode_data/properties/Script/Gujarati/value.dump +40 -0
  930. data/resources/unicode_data/properties/Script/Gurmukhi/value.dump +50 -0
  931. data/resources/unicode_data/properties/Script/Han/value.dump +0 -0
  932. data/resources/unicode_data/properties/Script/Hangul/value.dump +0 -0
  933. data/resources/unicode_data/properties/Script/Hanunoo/value.dump +3 -0
  934. data/resources/unicode_data/properties/Script/Hebrew/value.dump +11 -0
  935. data/resources/unicode_data/properties/Script/Hiragana/value.dump +0 -0
  936. data/resources/unicode_data/properties/Script/Imperial_Aramaic/value.dump +4 -0
  937. data/resources/unicode_data/properties/Script/Inherited/value.dump +0 -0
  938. data/resources/unicode_data/properties/Script/Inscriptional_Pahlavi/value.dump +4 -0
  939. data/resources/unicode_data/properties/Script/Inscriptional_Parthian/value.dump +4 -0
  940. data/resources/unicode_data/properties/Script/Javanese/value.dump +5 -0
  941. data/resources/unicode_data/properties/Script/Kaithi/value.dump +3 -0
  942. data/resources/unicode_data/properties/Script/Kannada/value.dump +16 -0
  943. data/resources/unicode_data/properties/Script/Katakana/value.dump +0 -0
  944. data/resources/unicode_data/properties/Script/Kayah_Li/value.dump +0 -0
  945. data/resources/unicode_data/properties/Script/Kharoshthi/value.dump +0 -0
  946. data/resources/unicode_data/properties/Script/Khmer/value.dump +6 -0
  947. data/resources/unicode_data/properties/Script/Lao/value.dump +20 -0
  948. data/resources/unicode_data/properties/Script/Latin/value.dump +0 -0
  949. data/resources/unicode_data/properties/Script/Lepcha/value.dump +0 -0
  950. data/resources/unicode_data/properties/Script/Limbu/value.dump +0 -0
  951. data/resources/unicode_data/properties/Script/Linear_B/value.dump +0 -0
  952. data/resources/unicode_data/properties/Script/Lisu/value.dump +3 -0
  953. data/resources/unicode_data/properties/Script/Lycian/value.dump +3 -0
  954. data/resources/unicode_data/properties/Script/Lydian/value.dump +4 -0
  955. data/resources/unicode_data/properties/Script/Malayalam/value.dump +13 -0
  956. data/resources/unicode_data/properties/Script/Mandaic/value.dump +4 -0
  957. data/resources/unicode_data/properties/Script/Meetei_Mayek/value.dump +5 -0
  958. data/resources/unicode_data/properties/Script/Meroitic_Cursive/value.dump +4 -0
  959. data/resources/unicode_data/properties/Script/Meroitic_Hieroglyphs/value.dump +3 -0
  960. data/resources/unicode_data/properties/Script/Miao/value.dump +0 -0
  961. data/resources/unicode_data/properties/Script/Mongolian/value.dump +0 -0
  962. data/resources/unicode_data/properties/Script/Myanmar/value.dump +0 -0
  963. data/resources/unicode_data/properties/Script/New_Tai_Lue/value.dump +6 -0
  964. data/resources/unicode_data/properties/Script/Nko/value.dump +3 -0
  965. data/resources/unicode_data/properties/Script/Ogham/value.dump +3 -0
  966. data/resources/unicode_data/properties/Script/Ol_Chiki/value.dump +3 -0
  967. data/resources/unicode_data/properties/Script/Old_Italic/value.dump +0 -0
  968. data/resources/unicode_data/properties/Script/Old_Persian/value.dump +4 -0
  969. data/resources/unicode_data/properties/Script/Old_South_Arabian/value.dump +5 -0
  970. data/resources/unicode_data/properties/Script/Old_Turkic/value.dump +0 -0
  971. data/resources/unicode_data/properties/Script/Oriya/value.dump +16 -0
  972. data/resources/unicode_data/properties/Script/Osmanya/value.dump +4 -0
  973. data/resources/unicode_data/properties/Script/Phags_Pa/value.dump +3 -0
  974. data/resources/unicode_data/properties/Script/Phoenician/value.dump +0 -0
  975. data/resources/unicode_data/properties/Script/Rejang/value.dump +4 -0
  976. data/resources/unicode_data/properties/Script/Runic/value.dump +4 -0
  977. data/resources/unicode_data/properties/Script/Samaritan/value.dump +0 -0
  978. data/resources/unicode_data/properties/Script/Saurashtra/value.dump +4 -0
  979. data/resources/unicode_data/properties/Script/Sharada/value.dump +4 -0
  980. data/resources/unicode_data/properties/Script/Shavian/value.dump +3 -0
  981. data/resources/unicode_data/properties/Script/Sinhala/value.dump +13 -0
  982. data/resources/unicode_data/properties/Script/Sora_Sompeng/value.dump +4 -0
  983. data/resources/unicode_data/properties/Script/Sundanese/value.dump +4 -0
  984. data/resources/unicode_data/properties/Script/Syloti_Nagri/value.dump +0 -0
  985. data/resources/unicode_data/properties/Script/Syriac/value.dump +0 -0
  986. data/resources/unicode_data/properties/Script/Tagalog/value.dump +0 -0
  987. data/resources/unicode_data/properties/Script/Tagbanwa/value.dump +5 -0
  988. data/resources/unicode_data/properties/Script/Tai_Le/value.dump +4 -0
  989. data/resources/unicode_data/properties/Script/Tai_Tham/value.dump +8 -0
  990. data/resources/unicode_data/properties/Script/Tai_Viet/value.dump +4 -0
  991. data/resources/unicode_data/properties/Script/Takri/value.dump +4 -0
  992. data/resources/unicode_data/properties/Script/Tamil/value.dump +18 -0
  993. data/resources/unicode_data/properties/Script/Telugu/value.dump +16 -0
  994. data/resources/unicode_data/properties/Script/Thaana/value.dump +3 -0
  995. data/resources/unicode_data/properties/Script/Thai/value.dump +4 -0
  996. data/resources/unicode_data/properties/Script/Tibetan/value.dump +0 -0
  997. data/resources/unicode_data/properties/Script/Tifinagh/value.dump +5 -0
  998. data/resources/unicode_data/properties/Script/Ugaritic/value.dump +4 -0
  999. data/resources/unicode_data/properties/Script/Vai/value.dump +0 -0
  1000. data/resources/unicode_data/properties/Script/Yi/value.dump +0 -0
  1001. data/resources/unicode_data/properties/Script_Extensions/Arab/value.dump +11 -0
  1002. data/resources/unicode_data/properties/Script_Extensions/Armn/value.dump +3 -0
  1003. data/resources/unicode_data/properties/Script_Extensions/Beng/value.dump +3 -0
  1004. data/resources/unicode_data/properties/Script_Extensions/Bopo/value.dump +19 -0
  1005. data/resources/unicode_data/properties/Script_Extensions/Bugi/value.dump +3 -0
  1006. data/resources/unicode_data/properties/Script_Extensions/Buhd/value.dump +3 -0
  1007. data/resources/unicode_data/properties/Script_Extensions/Cakm/value.dump +4 -0
  1008. data/resources/unicode_data/properties/Script_Extensions/Cprt/value.dump +0 -0
  1009. data/resources/unicode_data/properties/Script_Extensions/Cyrl/value.dump +3 -0
  1010. data/resources/unicode_data/properties/Script_Extensions/Deva/value.dump +4 -0
  1011. data/resources/unicode_data/properties/Script_Extensions/Geor/value.dump +3 -0
  1012. data/resources/unicode_data/properties/Script_Extensions/Grek/value.dump +5 -0
  1013. data/resources/unicode_data/properties/Script_Extensions/Gujr/value.dump +3 -0
  1014. data/resources/unicode_data/properties/Script_Extensions/Guru/value.dump +4 -0
  1015. data/resources/unicode_data/properties/Script_Extensions/Hang/value.dump +18 -0
  1016. data/resources/unicode_data/properties/Script_Extensions/Hani/value.dump +21 -0
  1017. data/resources/unicode_data/properties/Script_Extensions/Hano/value.dump +3 -0
  1018. data/resources/unicode_data/properties/Script_Extensions/Hira/value.dump +24 -0
  1019. data/resources/unicode_data/properties/Script_Extensions/Java/value.dump +3 -0
  1020. data/resources/unicode_data/properties/Script_Extensions/Kana/value.dump +24 -0
  1021. data/resources/unicode_data/properties/Script_Extensions/Kthi/value.dump +3 -0
  1022. data/resources/unicode_data/properties/Script_Extensions/Latn/value.dump +5 -0
  1023. data/resources/unicode_data/properties/Script_Extensions/Linb/value.dump +0 -0
  1024. data/resources/unicode_data/properties/Script_Extensions/Mand/value.dump +3 -0
  1025. data/resources/unicode_data/properties/Script_Extensions/Mong/value.dump +4 -0
  1026. data/resources/unicode_data/properties/Script_Extensions/Mymr/value.dump +3 -0
  1027. data/resources/unicode_data/properties/Script_Extensions/Orya/value.dump +3 -0
  1028. data/resources/unicode_data/properties/Script_Extensions/Phag/value.dump +4 -0
  1029. data/resources/unicode_data/properties/Script_Extensions/Sylo/value.dump +3 -0
  1030. data/resources/unicode_data/properties/Script_Extensions/Syrc/value.dump +8 -0
  1031. data/resources/unicode_data/properties/Script_Extensions/Tagb/value.dump +3 -0
  1032. data/resources/unicode_data/properties/Script_Extensions/Takr/value.dump +3 -0
  1033. data/resources/unicode_data/properties/Script_Extensions/Tale/value.dump +3 -0
  1034. data/resources/unicode_data/properties/Script_Extensions/Tglg/value.dump +3 -0
  1035. data/resources/unicode_data/properties/Script_Extensions/Thaa/value.dump +8 -0
  1036. data/resources/unicode_data/properties/Script_Extensions/Yiii/value.dump +8 -0
  1037. data/resources/unicode_data/properties/Sentence_Break/ATerm/value.dump +6 -0
  1038. data/resources/unicode_data/properties/Sentence_Break/CR/value.dump +3 -0
  1039. data/resources/unicode_data/properties/Sentence_Break/Close/value.dump +0 -0
  1040. data/resources/unicode_data/properties/Sentence_Break/Extend/value.dump +0 -0
  1041. data/resources/unicode_data/properties/Sentence_Break/Format/value.dump +0 -0
  1042. data/resources/unicode_data/properties/Sentence_Break/LF/value.dump +3 -0
  1043. data/resources/unicode_data/properties/Sentence_Break/Lower/value.dump +0 -0
  1044. data/resources/unicode_data/properties/Sentence_Break/Numeric/value.dump +0 -0
  1045. data/resources/unicode_data/properties/Sentence_Break/OLetter/value.dump +0 -0
  1046. data/resources/unicode_data/properties/Sentence_Break/SContinue/value.dump +21 -0
  1047. data/resources/unicode_data/properties/Sentence_Break/STerm/value.dump +0 -0
  1048. data/resources/unicode_data/properties/Sentence_Break/Sep/value.dump +4 -0
  1049. data/resources/unicode_data/properties/Sentence_Break/Sp/value.dump +0 -0
  1050. data/resources/unicode_data/properties/Sentence_Break/Upper/value.dump +0 -0
  1051. data/resources/unicode_data/properties/Soft_Dotted/value.dump +33 -0
  1052. data/resources/unicode_data/properties/Terminal_Punctuation/value.dump +0 -0
  1053. data/resources/unicode_data/properties/Unified_Ideograph/value.dump +0 -0
  1054. data/resources/unicode_data/properties/Uppercase/value.dump +0 -0
  1055. data/resources/unicode_data/properties/Variation_Selector/value.dump +0 -0
  1056. data/resources/unicode_data/properties/White_Space/value.dump +0 -0
  1057. data/resources/unicode_data/properties/Word_Break/ALetter/value.dump +0 -0
  1058. data/resources/unicode_data/properties/Word_Break/CR/value.dump +3 -0
  1059. data/resources/unicode_data/properties/Word_Break/Double_Quote/value.dump +3 -0
  1060. data/resources/unicode_data/properties/Word_Break/Extend/value.dump +0 -0
  1061. data/resources/unicode_data/properties/Word_Break/ExtendNumLet/value.dump +8 -0
  1062. data/resources/unicode_data/properties/Word_Break/Format/value.dump +0 -0
  1063. data/resources/unicode_data/properties/Word_Break/Hebrew_Letter/value.dump +12 -0
  1064. data/resources/unicode_data/properties/Word_Break/Katakana/value.dump +0 -0
  1065. data/resources/unicode_data/properties/Word_Break/LF/value.dump +3 -0
  1066. data/resources/unicode_data/properties/Word_Break/MidLetter/value.dump +10 -0
  1067. data/resources/unicode_data/properties/Word_Break/MidNum/value.dump +16 -0
  1068. data/resources/unicode_data/properties/Word_Break/MidNumLet/value.dump +9 -0
  1069. data/resources/unicode_data/properties/Word_Break/Newline/value.dump +5 -0
  1070. data/resources/unicode_data/properties/Word_Break/Numeric/value.dump +0 -0
  1071. data/resources/unicode_data/properties/Word_Break/Regional_Indicator/value.dump +3 -0
  1072. data/resources/unicode_data/properties/Word_Break/Single_Quote/value.dump +3 -0
  1073. data/resources/unicode_data/properties/XID_Continue/value.dump +0 -0
  1074. data/resources/unicode_data/properties/XID_Start/value.dump +0 -0
  1075. data/resources/unicode_data/property_aliases.yml +350 -0
  1076. data/resources/unicode_data/property_value_aliases.yml +1829 -0
  1077. data/spec/bidi/bidi_spec.rb +2 -2
  1078. data/spec/collation/collation_spec.rb +1 -1
  1079. data/spec/collation/collator_spec.rb +6 -6
  1080. data/spec/collation/sort_key_builder_spec.rb +11 -11
  1081. data/spec/collation/tailoring_spec.rb +1 -1
  1082. data/spec/collation/trie_dumps_spec.rb +1 -1
  1083. data/spec/data_readers/date_time_data_reader_spec.rb +1 -1
  1084. data/spec/data_readers/number_data_reader_spec.rb +19 -6
  1085. data/spec/formatters/calendars/datetime_formatter_spec.rb +1 -1
  1086. data/spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb +1 -1
  1087. data/spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb +5 -5
  1088. data/spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb +4 -4
  1089. data/spec/formatters/numbers/currency_formatter_spec.rb +10 -10
  1090. data/spec/formatters/numbers/decimal_formatter_spec.rb +2 -2
  1091. data/spec/formatters/numbers/helpers/fraction_spec.rb +4 -4
  1092. data/spec/formatters/numbers/helpers/integer_spec.rb +21 -16
  1093. data/spec/formatters/numbers/number_formatter_spec.rb +9 -9
  1094. data/spec/formatters/numbers/percent_formatter_spec.rb +2 -2
  1095. data/spec/formatters/numbers/rbnf/rbnf_spec.rb +5 -5
  1096. data/spec/formatters/plurals/plural_formatter_spec.rb +25 -25
  1097. data/spec/formatters/plurals/rules_spec.rb +4 -4
  1098. data/spec/localized/localized_date_spec.rb +25 -25
  1099. data/spec/localized/localized_datetime_spec.rb +7 -7
  1100. data/spec/localized/localized_hash_spec.rb +1 -1
  1101. data/spec/localized/localized_number_spec.rb +23 -23
  1102. data/spec/localized/localized_object_spec.rb +2 -2
  1103. data/spec/localized/localized_string_spec.rb +43 -16
  1104. data/spec/localized/localized_symbol_spec.rb +31 -4
  1105. data/spec/localized/localized_time_spec.rb +3 -3
  1106. data/spec/localized/localized_timespan_spec.rb +42 -42
  1107. data/spec/normalization_spec.rb +4 -4
  1108. data/spec/parsers/number_parser_spec.rb +10 -10
  1109. data/spec/parsers/parser_spec.rb +19 -3
  1110. data/spec/parsers/symbol_table_spec.rb +1 -1
  1111. data/spec/parsers/unicode_regex/character_class_spec.rb +12 -0
  1112. data/spec/parsers/unicode_regex/character_range_spec.rb +24 -5
  1113. data/spec/parsers/unicode_regex/character_set_spec.rb +9 -1
  1114. data/spec/parsers/unicode_regex_parser_spec.rb +1 -1
  1115. data/spec/resources/loader_spec.rb +6 -6
  1116. data/spec/{shared → segmentation}/break_iterator_spec.rb +45 -16
  1117. data/spec/segmentation/parser_spec.rb +107 -0
  1118. data/spec/segmentation/rule_set_spec.rb +102 -0
  1119. data/spec/shared/calendar_spec.rb +30 -30
  1120. data/spec/shared/caser_spec.rb +79 -0
  1121. data/spec/shared/code_point_spec.rb +52 -151
  1122. data/spec/shared/currencies_spec.rb +8 -8
  1123. data/spec/shared/language_codes_spec.rb +13 -13
  1124. data/spec/shared/likely_subtags_spec.rb +58 -0
  1125. data/spec/shared/locale_spec.rb +211 -0
  1126. data/spec/shared/numbers_spec.rb +4 -4
  1127. data/spec/shared/postal_codes_spec.rb +24 -4
  1128. data/spec/shared/properties_database_spec.rb +157 -0
  1129. data/spec/shared/property_name_aliases_spec.rb +56 -0
  1130. data/spec/shared/property_normalizer_spec.rb +64 -0
  1131. data/spec/shared/property_set_spec.rb +218 -0
  1132. data/spec/shared/property_value_aliases_spec.rb +58 -0
  1133. data/spec/shared/territories_spec.rb +1 -1
  1134. data/spec/shared/unicode_regex_spec.rb +35 -2
  1135. data/spec/spec_helper.rb +3 -3
  1136. data/spec/tokenizers/calendars/date_tokenizer_spec.rb +23 -23
  1137. data/spec/tokenizers/calendars/datetime_tokenizer_spec.rb +18 -18
  1138. data/spec/tokenizers/calendars/time_tokenizer_spec.rb +19 -19
  1139. data/spec/tokenizers/composite_token_spec.rb +4 -4
  1140. data/spec/tokenizers/numbers/number_tokenizer_spec.rb +16 -16
  1141. data/spec/tokenizers/token_spec.rb +2 -2
  1142. data/spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb +94 -94
  1143. data/spec/utils/file_system_trie_spec.rb +98 -0
  1144. data/spec/utils/range_set_spec.rb +53 -1
  1145. data/spec/utils/script_detector_spec.rb +58 -0
  1146. data/spec/utils/yaml/yaml_spec.rb +22 -22
  1147. data/spec/utils_spec.rb +21 -21
  1148. metadata +832 -28
  1149. data/lib/twitter_cldr/parsers/segmentation_parser.rb +0 -137
  1150. data/lib/twitter_cldr/resources/canonical_compositions_updater.rb +0 -51
  1151. data/lib/twitter_cldr/resources/composition_exclusions_importer.rb +0 -62
  1152. data/lib/twitter_cldr/resources/normalization_quick_check_importer.rb +0 -73
  1153. data/lib/twitter_cldr/resources/unicode_properties_importer.rb +0 -79
  1154. data/lib/twitter_cldr/shared/break_iterator.rb +0 -213
  1155. data/lib/twitter_cldr/tokenizers/segmentation/segmentation_tokenizer.rb +0 -39
  1156. data/resources/shared/segments/tailorings/en.yml +0 -8
  1157. data/resources/unicode_data/canonical_compositions.yml +0 -4925
  1158. data/resources/unicode_data/composition_exclusions.yml +0 -297
  1159. data/resources/unicode_data/hangul_blocks.yml +0 -21
  1160. data/resources/unicode_data/indices/bidi_class.yml +0 -4572
  1161. data/resources/unicode_data/indices/bidi_mirrored.yml +0 -3087
  1162. data/resources/unicode_data/indices/category.yml +0 -10918
  1163. data/resources/unicode_data/indices/keys.yml +0 -101
  1164. data/resources/unicode_data/nfc_quick_check.yml +0 -293
  1165. data/resources/unicode_data/nfd_quick_check.yml +0 -909
  1166. data/resources/unicode_data/nfkc_quick_check.yml +0 -989
  1167. data/resources/unicode_data/nfkd_quick_check.yml +0 -1537
  1168. data/resources/unicode_data/properties/line_break.yml +0 -9269
  1169. data/resources/unicode_data/properties/sentence_break.yml +0 -8067
  1170. data/resources/unicode_data/properties/word_break.yml +0 -3001
  1171. data/spec/parsers/segmentation_parser_spec.rb +0 -100
  1172. data/spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb +0 -40
@@ -1,4925 +0,0 @@
1
- ---
2
- ? - 65
3
- - 768
4
- : 192
5
- ? - 65
6
- - 769
7
- : 193
8
- ? - 65
9
- - 770
10
- : 194
11
- ? - 65
12
- - 771
13
- : 195
14
- ? - 65
15
- - 776
16
- : 196
17
- ? - 65
18
- - 778
19
- : 197
20
- ? - 67
21
- - 807
22
- : 199
23
- ? - 69
24
- - 768
25
- : 200
26
- ? - 69
27
- - 769
28
- : 201
29
- ? - 69
30
- - 770
31
- : 202
32
- ? - 69
33
- - 776
34
- : 203
35
- ? - 73
36
- - 768
37
- : 204
38
- ? - 73
39
- - 769
40
- : 205
41
- ? - 73
42
- - 770
43
- : 206
44
- ? - 73
45
- - 776
46
- : 207
47
- ? - 78
48
- - 771
49
- : 209
50
- ? - 79
51
- - 768
52
- : 210
53
- ? - 79
54
- - 769
55
- : 211
56
- ? - 79
57
- - 770
58
- : 212
59
- ? - 79
60
- - 771
61
- : 213
62
- ? - 79
63
- - 776
64
- : 214
65
- ? - 85
66
- - 768
67
- : 217
68
- ? - 85
69
- - 769
70
- : 218
71
- ? - 85
72
- - 770
73
- : 219
74
- ? - 85
75
- - 776
76
- : 220
77
- ? - 89
78
- - 769
79
- : 221
80
- ? - 97
81
- - 768
82
- : 224
83
- ? - 97
84
- - 769
85
- : 225
86
- ? - 97
87
- - 770
88
- : 226
89
- ? - 97
90
- - 771
91
- : 227
92
- ? - 97
93
- - 776
94
- : 228
95
- ? - 97
96
- - 778
97
- : 229
98
- ? - 99
99
- - 807
100
- : 231
101
- ? - 101
102
- - 768
103
- : 232
104
- ? - 101
105
- - 769
106
- : 233
107
- ? - 101
108
- - 770
109
- : 234
110
- ? - 101
111
- - 776
112
- : 235
113
- ? - 105
114
- - 768
115
- : 236
116
- ? - 105
117
- - 769
118
- : 237
119
- ? - 105
120
- - 770
121
- : 238
122
- ? - 105
123
- - 776
124
- : 239
125
- ? - 110
126
- - 771
127
- : 241
128
- ? - 111
129
- - 768
130
- : 242
131
- ? - 111
132
- - 769
133
- : 243
134
- ? - 111
135
- - 770
136
- : 244
137
- ? - 111
138
- - 771
139
- : 245
140
- ? - 111
141
- - 776
142
- : 246
143
- ? - 117
144
- - 768
145
- : 249
146
- ? - 117
147
- - 769
148
- : 250
149
- ? - 117
150
- - 770
151
- : 251
152
- ? - 117
153
- - 776
154
- : 252
155
- ? - 121
156
- - 769
157
- : 253
158
- ? - 121
159
- - 776
160
- : 255
161
- ? - 65
162
- - 772
163
- : 256
164
- ? - 97
165
- - 772
166
- : 257
167
- ? - 65
168
- - 774
169
- : 258
170
- ? - 97
171
- - 774
172
- : 259
173
- ? - 65
174
- - 808
175
- : 260
176
- ? - 97
177
- - 808
178
- : 261
179
- ? - 67
180
- - 769
181
- : 262
182
- ? - 99
183
- - 769
184
- : 263
185
- ? - 67
186
- - 770
187
- : 264
188
- ? - 99
189
- - 770
190
- : 265
191
- ? - 67
192
- - 775
193
- : 266
194
- ? - 99
195
- - 775
196
- : 267
197
- ? - 67
198
- - 780
199
- : 268
200
- ? - 99
201
- - 780
202
- : 269
203
- ? - 68
204
- - 780
205
- : 270
206
- ? - 100
207
- - 780
208
- : 271
209
- ? - 69
210
- - 772
211
- : 274
212
- ? - 101
213
- - 772
214
- : 275
215
- ? - 69
216
- - 774
217
- : 276
218
- ? - 101
219
- - 774
220
- : 277
221
- ? - 69
222
- - 775
223
- : 278
224
- ? - 101
225
- - 775
226
- : 279
227
- ? - 69
228
- - 808
229
- : 280
230
- ? - 101
231
- - 808
232
- : 281
233
- ? - 69
234
- - 780
235
- : 282
236
- ? - 101
237
- - 780
238
- : 283
239
- ? - 71
240
- - 770
241
- : 284
242
- ? - 103
243
- - 770
244
- : 285
245
- ? - 71
246
- - 774
247
- : 286
248
- ? - 103
249
- - 774
250
- : 287
251
- ? - 71
252
- - 775
253
- : 288
254
- ? - 103
255
- - 775
256
- : 289
257
- ? - 71
258
- - 807
259
- : 290
260
- ? - 103
261
- - 807
262
- : 291
263
- ? - 72
264
- - 770
265
- : 292
266
- ? - 104
267
- - 770
268
- : 293
269
- ? - 73
270
- - 771
271
- : 296
272
- ? - 105
273
- - 771
274
- : 297
275
- ? - 73
276
- - 772
277
- : 298
278
- ? - 105
279
- - 772
280
- : 299
281
- ? - 73
282
- - 774
283
- : 300
284
- ? - 105
285
- - 774
286
- : 301
287
- ? - 73
288
- - 808
289
- : 302
290
- ? - 105
291
- - 808
292
- : 303
293
- ? - 73
294
- - 775
295
- : 304
296
- ? - 74
297
- - 770
298
- : 308
299
- ? - 106
300
- - 770
301
- : 309
302
- ? - 75
303
- - 807
304
- : 310
305
- ? - 107
306
- - 807
307
- : 311
308
- ? - 76
309
- - 769
310
- : 313
311
- ? - 108
312
- - 769
313
- : 314
314
- ? - 76
315
- - 807
316
- : 315
317
- ? - 108
318
- - 807
319
- : 316
320
- ? - 76
321
- - 780
322
- : 317
323
- ? - 108
324
- - 780
325
- : 318
326
- ? - 78
327
- - 769
328
- : 323
329
- ? - 110
330
- - 769
331
- : 324
332
- ? - 78
333
- - 807
334
- : 325
335
- ? - 110
336
- - 807
337
- : 326
338
- ? - 78
339
- - 780
340
- : 327
341
- ? - 110
342
- - 780
343
- : 328
344
- ? - 79
345
- - 772
346
- : 332
347
- ? - 111
348
- - 772
349
- : 333
350
- ? - 79
351
- - 774
352
- : 334
353
- ? - 111
354
- - 774
355
- : 335
356
- ? - 79
357
- - 779
358
- : 336
359
- ? - 111
360
- - 779
361
- : 337
362
- ? - 82
363
- - 769
364
- : 340
365
- ? - 114
366
- - 769
367
- : 341
368
- ? - 82
369
- - 807
370
- : 342
371
- ? - 114
372
- - 807
373
- : 343
374
- ? - 82
375
- - 780
376
- : 344
377
- ? - 114
378
- - 780
379
- : 345
380
- ? - 83
381
- - 769
382
- : 346
383
- ? - 115
384
- - 769
385
- : 347
386
- ? - 83
387
- - 770
388
- : 348
389
- ? - 115
390
- - 770
391
- : 349
392
- ? - 83
393
- - 807
394
- : 350
395
- ? - 115
396
- - 807
397
- : 351
398
- ? - 83
399
- - 780
400
- : 352
401
- ? - 115
402
- - 780
403
- : 353
404
- ? - 84
405
- - 807
406
- : 354
407
- ? - 116
408
- - 807
409
- : 355
410
- ? - 84
411
- - 780
412
- : 356
413
- ? - 116
414
- - 780
415
- : 357
416
- ? - 85
417
- - 771
418
- : 360
419
- ? - 117
420
- - 771
421
- : 361
422
- ? - 85
423
- - 772
424
- : 362
425
- ? - 117
426
- - 772
427
- : 363
428
- ? - 85
429
- - 774
430
- : 364
431
- ? - 117
432
- - 774
433
- : 365
434
- ? - 85
435
- - 778
436
- : 366
437
- ? - 117
438
- - 778
439
- : 367
440
- ? - 85
441
- - 779
442
- : 368
443
- ? - 117
444
- - 779
445
- : 369
446
- ? - 85
447
- - 808
448
- : 370
449
- ? - 117
450
- - 808
451
- : 371
452
- ? - 87
453
- - 770
454
- : 372
455
- ? - 119
456
- - 770
457
- : 373
458
- ? - 89
459
- - 770
460
- : 374
461
- ? - 121
462
- - 770
463
- : 375
464
- ? - 89
465
- - 776
466
- : 376
467
- ? - 90
468
- - 769
469
- : 377
470
- ? - 122
471
- - 769
472
- : 378
473
- ? - 90
474
- - 775
475
- : 379
476
- ? - 122
477
- - 775
478
- : 380
479
- ? - 90
480
- - 780
481
- : 381
482
- ? - 122
483
- - 780
484
- : 382
485
- ? - 79
486
- - 795
487
- : 416
488
- ? - 111
489
- - 795
490
- : 417
491
- ? - 85
492
- - 795
493
- : 431
494
- ? - 117
495
- - 795
496
- : 432
497
- ? - 65
498
- - 780
499
- : 461
500
- ? - 97
501
- - 780
502
- : 462
503
- ? - 73
504
- - 780
505
- : 463
506
- ? - 105
507
- - 780
508
- : 464
509
- ? - 79
510
- - 780
511
- : 465
512
- ? - 111
513
- - 780
514
- : 466
515
- ? - 85
516
- - 780
517
- : 467
518
- ? - 117
519
- - 780
520
- : 468
521
- ? - 220
522
- - 772
523
- : 469
524
- ? - 252
525
- - 772
526
- : 470
527
- ? - 220
528
- - 769
529
- : 471
530
- ? - 252
531
- - 769
532
- : 472
533
- ? - 220
534
- - 780
535
- : 473
536
- ? - 252
537
- - 780
538
- : 474
539
- ? - 220
540
- - 768
541
- : 475
542
- ? - 252
543
- - 768
544
- : 476
545
- ? - 196
546
- - 772
547
- : 478
548
- ? - 228
549
- - 772
550
- : 479
551
- ? - 550
552
- - 772
553
- : 480
554
- ? - 551
555
- - 772
556
- : 481
557
- ? - 198
558
- - 772
559
- : 482
560
- ? - 230
561
- - 772
562
- : 483
563
- ? - 71
564
- - 780
565
- : 486
566
- ? - 103
567
- - 780
568
- : 487
569
- ? - 75
570
- - 780
571
- : 488
572
- ? - 107
573
- - 780
574
- : 489
575
- ? - 79
576
- - 808
577
- : 490
578
- ? - 111
579
- - 808
580
- : 491
581
- ? - 490
582
- - 772
583
- : 492
584
- ? - 491
585
- - 772
586
- : 493
587
- ? - 439
588
- - 780
589
- : 494
590
- ? - 658
591
- - 780
592
- : 495
593
- ? - 106
594
- - 780
595
- : 496
596
- ? - 71
597
- - 769
598
- : 500
599
- ? - 103
600
- - 769
601
- : 501
602
- ? - 78
603
- - 768
604
- : 504
605
- ? - 110
606
- - 768
607
- : 505
608
- ? - 197
609
- - 769
610
- : 506
611
- ? - 229
612
- - 769
613
- : 507
614
- ? - 198
615
- - 769
616
- : 508
617
- ? - 230
618
- - 769
619
- : 509
620
- ? - 216
621
- - 769
622
- : 510
623
- ? - 248
624
- - 769
625
- : 511
626
- ? - 65
627
- - 783
628
- : 512
629
- ? - 97
630
- - 783
631
- : 513
632
- ? - 65
633
- - 785
634
- : 514
635
- ? - 97
636
- - 785
637
- : 515
638
- ? - 69
639
- - 783
640
- : 516
641
- ? - 101
642
- - 783
643
- : 517
644
- ? - 69
645
- - 785
646
- : 518
647
- ? - 101
648
- - 785
649
- : 519
650
- ? - 73
651
- - 783
652
- : 520
653
- ? - 105
654
- - 783
655
- : 521
656
- ? - 73
657
- - 785
658
- : 522
659
- ? - 105
660
- - 785
661
- : 523
662
- ? - 79
663
- - 783
664
- : 524
665
- ? - 111
666
- - 783
667
- : 525
668
- ? - 79
669
- - 785
670
- : 526
671
- ? - 111
672
- - 785
673
- : 527
674
- ? - 82
675
- - 783
676
- : 528
677
- ? - 114
678
- - 783
679
- : 529
680
- ? - 82
681
- - 785
682
- : 530
683
- ? - 114
684
- - 785
685
- : 531
686
- ? - 85
687
- - 783
688
- : 532
689
- ? - 117
690
- - 783
691
- : 533
692
- ? - 85
693
- - 785
694
- : 534
695
- ? - 117
696
- - 785
697
- : 535
698
- ? - 83
699
- - 806
700
- : 536
701
- ? - 115
702
- - 806
703
- : 537
704
- ? - 84
705
- - 806
706
- : 538
707
- ? - 116
708
- - 806
709
- : 539
710
- ? - 72
711
- - 780
712
- : 542
713
- ? - 104
714
- - 780
715
- : 543
716
- ? - 65
717
- - 775
718
- : 550
719
- ? - 97
720
- - 775
721
- : 551
722
- ? - 69
723
- - 807
724
- : 552
725
- ? - 101
726
- - 807
727
- : 553
728
- ? - 214
729
- - 772
730
- : 554
731
- ? - 246
732
- - 772
733
- : 555
734
- ? - 213
735
- - 772
736
- : 556
737
- ? - 245
738
- - 772
739
- : 557
740
- ? - 79
741
- - 775
742
- : 558
743
- ? - 111
744
- - 775
745
- : 559
746
- ? - 558
747
- - 772
748
- : 560
749
- ? - 559
750
- - 772
751
- : 561
752
- ? - 89
753
- - 772
754
- : 562
755
- ? - 121
756
- - 772
757
- : 563
758
- ? - 768
759
- : 832
760
- ? - 769
761
- : 833
762
- ? - 787
763
- : 835
764
- ? - 776
765
- - 769
766
- : 836
767
- ? - 697
768
- : 884
769
- ? - 59
770
- : 894
771
- ? - 168
772
- - 769
773
- : 901
774
- ? - 913
775
- - 769
776
- : 902
777
- ? - 183
778
- : 903
779
- ? - 917
780
- - 769
781
- : 904
782
- ? - 919
783
- - 769
784
- : 905
785
- ? - 921
786
- - 769
787
- : 906
788
- ? - 927
789
- - 769
790
- : 908
791
- ? - 933
792
- - 769
793
- : 910
794
- ? - 937
795
- - 769
796
- : 911
797
- ? - 970
798
- - 769
799
- : 912
800
- ? - 921
801
- - 776
802
- : 938
803
- ? - 933
804
- - 776
805
- : 939
806
- ? - 945
807
- - 769
808
- : 940
809
- ? - 949
810
- - 769
811
- : 941
812
- ? - 951
813
- - 769
814
- : 942
815
- ? - 953
816
- - 769
817
- : 943
818
- ? - 971
819
- - 769
820
- : 944
821
- ? - 953
822
- - 776
823
- : 970
824
- ? - 965
825
- - 776
826
- : 971
827
- ? - 959
828
- - 769
829
- : 972
830
- ? - 965
831
- - 769
832
- : 973
833
- ? - 969
834
- - 769
835
- : 974
836
- ? - 978
837
- - 769
838
- : 979
839
- ? - 978
840
- - 776
841
- : 980
842
- ? - 1045
843
- - 768
844
- : 1024
845
- ? - 1045
846
- - 776
847
- : 1025
848
- ? - 1043
849
- - 769
850
- : 1027
851
- ? - 1030
852
- - 776
853
- : 1031
854
- ? - 1050
855
- - 769
856
- : 1036
857
- ? - 1048
858
- - 768
859
- : 1037
860
- ? - 1059
861
- - 774
862
- : 1038
863
- ? - 1048
864
- - 774
865
- : 1049
866
- ? - 1080
867
- - 774
868
- : 1081
869
- ? - 1077
870
- - 768
871
- : 1104
872
- ? - 1077
873
- - 776
874
- : 1105
875
- ? - 1075
876
- - 769
877
- : 1107
878
- ? - 1110
879
- - 776
880
- : 1111
881
- ? - 1082
882
- - 769
883
- : 1116
884
- ? - 1080
885
- - 768
886
- : 1117
887
- ? - 1091
888
- - 774
889
- : 1118
890
- ? - 1140
891
- - 783
892
- : 1142
893
- ? - 1141
894
- - 783
895
- : 1143
896
- ? - 1046
897
- - 774
898
- : 1217
899
- ? - 1078
900
- - 774
901
- : 1218
902
- ? - 1040
903
- - 774
904
- : 1232
905
- ? - 1072
906
- - 774
907
- : 1233
908
- ? - 1040
909
- - 776
910
- : 1234
911
- ? - 1072
912
- - 776
913
- : 1235
914
- ? - 1045
915
- - 774
916
- : 1238
917
- ? - 1077
918
- - 774
919
- : 1239
920
- ? - 1240
921
- - 776
922
- : 1242
923
- ? - 1241
924
- - 776
925
- : 1243
926
- ? - 1046
927
- - 776
928
- : 1244
929
- ? - 1078
930
- - 776
931
- : 1245
932
- ? - 1047
933
- - 776
934
- : 1246
935
- ? - 1079
936
- - 776
937
- : 1247
938
- ? - 1048
939
- - 772
940
- : 1250
941
- ? - 1080
942
- - 772
943
- : 1251
944
- ? - 1048
945
- - 776
946
- : 1252
947
- ? - 1080
948
- - 776
949
- : 1253
950
- ? - 1054
951
- - 776
952
- : 1254
953
- ? - 1086
954
- - 776
955
- : 1255
956
- ? - 1256
957
- - 776
958
- : 1258
959
- ? - 1257
960
- - 776
961
- : 1259
962
- ? - 1069
963
- - 776
964
- : 1260
965
- ? - 1101
966
- - 776
967
- : 1261
968
- ? - 1059
969
- - 772
970
- : 1262
971
- ? - 1091
972
- - 772
973
- : 1263
974
- ? - 1059
975
- - 776
976
- : 1264
977
- ? - 1091
978
- - 776
979
- : 1265
980
- ? - 1059
981
- - 779
982
- : 1266
983
- ? - 1091
984
- - 779
985
- : 1267
986
- ? - 1063
987
- - 776
988
- : 1268
989
- ? - 1095
990
- - 776
991
- : 1269
992
- ? - 1067
993
- - 776
994
- : 1272
995
- ? - 1099
996
- - 776
997
- : 1273
998
- ? - 1575
999
- - 1619
1000
- : 1570
1001
- ? - 1575
1002
- - 1620
1003
- : 1571
1004
- ? - 1608
1005
- - 1620
1006
- : 1572
1007
- ? - 1575
1008
- - 1621
1009
- : 1573
1010
- ? - 1610
1011
- - 1620
1012
- : 1574
1013
- ? - 1749
1014
- - 1620
1015
- : 1728
1016
- ? - 1729
1017
- - 1620
1018
- : 1730
1019
- ? - 1746
1020
- - 1620
1021
- : 1747
1022
- ? - 2344
1023
- - 2364
1024
- : 2345
1025
- ? - 2352
1026
- - 2364
1027
- : 2353
1028
- ? - 2355
1029
- - 2364
1030
- : 2356
1031
- ? - 2325
1032
- - 2364
1033
- : 2392
1034
- ? - 2326
1035
- - 2364
1036
- : 2393
1037
- ? - 2327
1038
- - 2364
1039
- : 2394
1040
- ? - 2332
1041
- - 2364
1042
- : 2395
1043
- ? - 2337
1044
- - 2364
1045
- : 2396
1046
- ? - 2338
1047
- - 2364
1048
- : 2397
1049
- ? - 2347
1050
- - 2364
1051
- : 2398
1052
- ? - 2351
1053
- - 2364
1054
- : 2399
1055
- ? - 2503
1056
- - 2494
1057
- : 2507
1058
- ? - 2503
1059
- - 2519
1060
- : 2508
1061
- ? - 2465
1062
- - 2492
1063
- : 2524
1064
- ? - 2466
1065
- - 2492
1066
- : 2525
1067
- ? - 2479
1068
- - 2492
1069
- : 2527
1070
- ? - 2610
1071
- - 2620
1072
- : 2611
1073
- ? - 2616
1074
- - 2620
1075
- : 2614
1076
- ? - 2582
1077
- - 2620
1078
- : 2649
1079
- ? - 2583
1080
- - 2620
1081
- : 2650
1082
- ? - 2588
1083
- - 2620
1084
- : 2651
1085
- ? - 2603
1086
- - 2620
1087
- : 2654
1088
- ? - 2887
1089
- - 2902
1090
- : 2888
1091
- ? - 2887
1092
- - 2878
1093
- : 2891
1094
- ? - 2887
1095
- - 2903
1096
- : 2892
1097
- ? - 2849
1098
- - 2876
1099
- : 2908
1100
- ? - 2850
1101
- - 2876
1102
- : 2909
1103
- ? - 2962
1104
- - 3031
1105
- : 2964
1106
- ? - 3014
1107
- - 3006
1108
- : 3018
1109
- ? - 3015
1110
- - 3006
1111
- : 3019
1112
- ? - 3014
1113
- - 3031
1114
- : 3020
1115
- ? - 3142
1116
- - 3158
1117
- : 3144
1118
- ? - 3263
1119
- - 3285
1120
- : 3264
1121
- ? - 3270
1122
- - 3285
1123
- : 3271
1124
- ? - 3270
1125
- - 3286
1126
- : 3272
1127
- ? - 3270
1128
- - 3266
1129
- : 3274
1130
- ? - 3274
1131
- - 3285
1132
- : 3275
1133
- ? - 3398
1134
- - 3390
1135
- : 3402
1136
- ? - 3399
1137
- - 3390
1138
- : 3403
1139
- ? - 3398
1140
- - 3415
1141
- : 3404
1142
- ? - 3545
1143
- - 3530
1144
- : 3546
1145
- ? - 3545
1146
- - 3535
1147
- : 3548
1148
- ? - 3548
1149
- - 3530
1150
- : 3549
1151
- ? - 3545
1152
- - 3551
1153
- : 3550
1154
- ? - 3906
1155
- - 4023
1156
- : 3907
1157
- ? - 3916
1158
- - 4023
1159
- : 3917
1160
- ? - 3921
1161
- - 4023
1162
- : 3922
1163
- ? - 3926
1164
- - 4023
1165
- : 3927
1166
- ? - 3931
1167
- - 4023
1168
- : 3932
1169
- ? - 3904
1170
- - 4021
1171
- : 3945
1172
- ? - 3953
1173
- - 3954
1174
- : 3955
1175
- ? - 3953
1176
- - 3956
1177
- : 3957
1178
- ? - 4018
1179
- - 3968
1180
- : 3958
1181
- ? - 4019
1182
- - 3968
1183
- : 3960
1184
- ? - 3953
1185
- - 3968
1186
- : 3969
1187
- ? - 3986
1188
- - 4023
1189
- : 3987
1190
- ? - 3996
1191
- - 4023
1192
- : 3997
1193
- ? - 4001
1194
- - 4023
1195
- : 4002
1196
- ? - 4006
1197
- - 4023
1198
- : 4007
1199
- ? - 4011
1200
- - 4023
1201
- : 4012
1202
- ? - 3984
1203
- - 4021
1204
- : 4025
1205
- ? - 4133
1206
- - 4142
1207
- : 4134
1208
- ? - 6917
1209
- - 6965
1210
- : 6918
1211
- ? - 6919
1212
- - 6965
1213
- : 6920
1214
- ? - 6921
1215
- - 6965
1216
- : 6922
1217
- ? - 6923
1218
- - 6965
1219
- : 6924
1220
- ? - 6925
1221
- - 6965
1222
- : 6926
1223
- ? - 6929
1224
- - 6965
1225
- : 6930
1226
- ? - 6970
1227
- - 6965
1228
- : 6971
1229
- ? - 6972
1230
- - 6965
1231
- : 6973
1232
- ? - 6974
1233
- - 6965
1234
- : 6976
1235
- ? - 6975
1236
- - 6965
1237
- : 6977
1238
- ? - 6978
1239
- - 6965
1240
- : 6979
1241
- ? - 65
1242
- - 805
1243
- : 7680
1244
- ? - 97
1245
- - 805
1246
- : 7681
1247
- ? - 66
1248
- - 775
1249
- : 7682
1250
- ? - 98
1251
- - 775
1252
- : 7683
1253
- ? - 66
1254
- - 803
1255
- : 7684
1256
- ? - 98
1257
- - 803
1258
- : 7685
1259
- ? - 66
1260
- - 817
1261
- : 7686
1262
- ? - 98
1263
- - 817
1264
- : 7687
1265
- ? - 199
1266
- - 769
1267
- : 7688
1268
- ? - 231
1269
- - 769
1270
- : 7689
1271
- ? - 68
1272
- - 775
1273
- : 7690
1274
- ? - 100
1275
- - 775
1276
- : 7691
1277
- ? - 68
1278
- - 803
1279
- : 7692
1280
- ? - 100
1281
- - 803
1282
- : 7693
1283
- ? - 68
1284
- - 817
1285
- : 7694
1286
- ? - 100
1287
- - 817
1288
- : 7695
1289
- ? - 68
1290
- - 807
1291
- : 7696
1292
- ? - 100
1293
- - 807
1294
- : 7697
1295
- ? - 68
1296
- - 813
1297
- : 7698
1298
- ? - 100
1299
- - 813
1300
- : 7699
1301
- ? - 274
1302
- - 768
1303
- : 7700
1304
- ? - 275
1305
- - 768
1306
- : 7701
1307
- ? - 274
1308
- - 769
1309
- : 7702
1310
- ? - 275
1311
- - 769
1312
- : 7703
1313
- ? - 69
1314
- - 813
1315
- : 7704
1316
- ? - 101
1317
- - 813
1318
- : 7705
1319
- ? - 69
1320
- - 816
1321
- : 7706
1322
- ? - 101
1323
- - 816
1324
- : 7707
1325
- ? - 552
1326
- - 774
1327
- : 7708
1328
- ? - 553
1329
- - 774
1330
- : 7709
1331
- ? - 70
1332
- - 775
1333
- : 7710
1334
- ? - 102
1335
- - 775
1336
- : 7711
1337
- ? - 71
1338
- - 772
1339
- : 7712
1340
- ? - 103
1341
- - 772
1342
- : 7713
1343
- ? - 72
1344
- - 775
1345
- : 7714
1346
- ? - 104
1347
- - 775
1348
- : 7715
1349
- ? - 72
1350
- - 803
1351
- : 7716
1352
- ? - 104
1353
- - 803
1354
- : 7717
1355
- ? - 72
1356
- - 776
1357
- : 7718
1358
- ? - 104
1359
- - 776
1360
- : 7719
1361
- ? - 72
1362
- - 807
1363
- : 7720
1364
- ? - 104
1365
- - 807
1366
- : 7721
1367
- ? - 72
1368
- - 814
1369
- : 7722
1370
- ? - 104
1371
- - 814
1372
- : 7723
1373
- ? - 73
1374
- - 816
1375
- : 7724
1376
- ? - 105
1377
- - 816
1378
- : 7725
1379
- ? - 207
1380
- - 769
1381
- : 7726
1382
- ? - 239
1383
- - 769
1384
- : 7727
1385
- ? - 75
1386
- - 769
1387
- : 7728
1388
- ? - 107
1389
- - 769
1390
- : 7729
1391
- ? - 75
1392
- - 803
1393
- : 7730
1394
- ? - 107
1395
- - 803
1396
- : 7731
1397
- ? - 75
1398
- - 817
1399
- : 7732
1400
- ? - 107
1401
- - 817
1402
- : 7733
1403
- ? - 76
1404
- - 803
1405
- : 7734
1406
- ? - 108
1407
- - 803
1408
- : 7735
1409
- ? - 7734
1410
- - 772
1411
- : 7736
1412
- ? - 7735
1413
- - 772
1414
- : 7737
1415
- ? - 76
1416
- - 817
1417
- : 7738
1418
- ? - 108
1419
- - 817
1420
- : 7739
1421
- ? - 76
1422
- - 813
1423
- : 7740
1424
- ? - 108
1425
- - 813
1426
- : 7741
1427
- ? - 77
1428
- - 769
1429
- : 7742
1430
- ? - 109
1431
- - 769
1432
- : 7743
1433
- ? - 77
1434
- - 775
1435
- : 7744
1436
- ? - 109
1437
- - 775
1438
- : 7745
1439
- ? - 77
1440
- - 803
1441
- : 7746
1442
- ? - 109
1443
- - 803
1444
- : 7747
1445
- ? - 78
1446
- - 775
1447
- : 7748
1448
- ? - 110
1449
- - 775
1450
- : 7749
1451
- ? - 78
1452
- - 803
1453
- : 7750
1454
- ? - 110
1455
- - 803
1456
- : 7751
1457
- ? - 78
1458
- - 817
1459
- : 7752
1460
- ? - 110
1461
- - 817
1462
- : 7753
1463
- ? - 78
1464
- - 813
1465
- : 7754
1466
- ? - 110
1467
- - 813
1468
- : 7755
1469
- ? - 213
1470
- - 769
1471
- : 7756
1472
- ? - 245
1473
- - 769
1474
- : 7757
1475
- ? - 213
1476
- - 776
1477
- : 7758
1478
- ? - 245
1479
- - 776
1480
- : 7759
1481
- ? - 332
1482
- - 768
1483
- : 7760
1484
- ? - 333
1485
- - 768
1486
- : 7761
1487
- ? - 332
1488
- - 769
1489
- : 7762
1490
- ? - 333
1491
- - 769
1492
- : 7763
1493
- ? - 80
1494
- - 769
1495
- : 7764
1496
- ? - 112
1497
- - 769
1498
- : 7765
1499
- ? - 80
1500
- - 775
1501
- : 7766
1502
- ? - 112
1503
- - 775
1504
- : 7767
1505
- ? - 82
1506
- - 775
1507
- : 7768
1508
- ? - 114
1509
- - 775
1510
- : 7769
1511
- ? - 82
1512
- - 803
1513
- : 7770
1514
- ? - 114
1515
- - 803
1516
- : 7771
1517
- ? - 7770
1518
- - 772
1519
- : 7772
1520
- ? - 7771
1521
- - 772
1522
- : 7773
1523
- ? - 82
1524
- - 817
1525
- : 7774
1526
- ? - 114
1527
- - 817
1528
- : 7775
1529
- ? - 83
1530
- - 775
1531
- : 7776
1532
- ? - 115
1533
- - 775
1534
- : 7777
1535
- ? - 83
1536
- - 803
1537
- : 7778
1538
- ? - 115
1539
- - 803
1540
- : 7779
1541
- ? - 346
1542
- - 775
1543
- : 7780
1544
- ? - 347
1545
- - 775
1546
- : 7781
1547
- ? - 352
1548
- - 775
1549
- : 7782
1550
- ? - 353
1551
- - 775
1552
- : 7783
1553
- ? - 7778
1554
- - 775
1555
- : 7784
1556
- ? - 7779
1557
- - 775
1558
- : 7785
1559
- ? - 84
1560
- - 775
1561
- : 7786
1562
- ? - 116
1563
- - 775
1564
- : 7787
1565
- ? - 84
1566
- - 803
1567
- : 7788
1568
- ? - 116
1569
- - 803
1570
- : 7789
1571
- ? - 84
1572
- - 817
1573
- : 7790
1574
- ? - 116
1575
- - 817
1576
- : 7791
1577
- ? - 84
1578
- - 813
1579
- : 7792
1580
- ? - 116
1581
- - 813
1582
- : 7793
1583
- ? - 85
1584
- - 804
1585
- : 7794
1586
- ? - 117
1587
- - 804
1588
- : 7795
1589
- ? - 85
1590
- - 816
1591
- : 7796
1592
- ? - 117
1593
- - 816
1594
- : 7797
1595
- ? - 85
1596
- - 813
1597
- : 7798
1598
- ? - 117
1599
- - 813
1600
- : 7799
1601
- ? - 360
1602
- - 769
1603
- : 7800
1604
- ? - 361
1605
- - 769
1606
- : 7801
1607
- ? - 362
1608
- - 776
1609
- : 7802
1610
- ? - 363
1611
- - 776
1612
- : 7803
1613
- ? - 86
1614
- - 771
1615
- : 7804
1616
- ? - 118
1617
- - 771
1618
- : 7805
1619
- ? - 86
1620
- - 803
1621
- : 7806
1622
- ? - 118
1623
- - 803
1624
- : 7807
1625
- ? - 87
1626
- - 768
1627
- : 7808
1628
- ? - 119
1629
- - 768
1630
- : 7809
1631
- ? - 87
1632
- - 769
1633
- : 7810
1634
- ? - 119
1635
- - 769
1636
- : 7811
1637
- ? - 87
1638
- - 776
1639
- : 7812
1640
- ? - 119
1641
- - 776
1642
- : 7813
1643
- ? - 87
1644
- - 775
1645
- : 7814
1646
- ? - 119
1647
- - 775
1648
- : 7815
1649
- ? - 87
1650
- - 803
1651
- : 7816
1652
- ? - 119
1653
- - 803
1654
- : 7817
1655
- ? - 88
1656
- - 775
1657
- : 7818
1658
- ? - 120
1659
- - 775
1660
- : 7819
1661
- ? - 88
1662
- - 776
1663
- : 7820
1664
- ? - 120
1665
- - 776
1666
- : 7821
1667
- ? - 89
1668
- - 775
1669
- : 7822
1670
- ? - 121
1671
- - 775
1672
- : 7823
1673
- ? - 90
1674
- - 770
1675
- : 7824
1676
- ? - 122
1677
- - 770
1678
- : 7825
1679
- ? - 90
1680
- - 803
1681
- : 7826
1682
- ? - 122
1683
- - 803
1684
- : 7827
1685
- ? - 90
1686
- - 817
1687
- : 7828
1688
- ? - 122
1689
- - 817
1690
- : 7829
1691
- ? - 104
1692
- - 817
1693
- : 7830
1694
- ? - 116
1695
- - 776
1696
- : 7831
1697
- ? - 119
1698
- - 778
1699
- : 7832
1700
- ? - 121
1701
- - 778
1702
- : 7833
1703
- ? - 383
1704
- - 775
1705
- : 7835
1706
- ? - 65
1707
- - 803
1708
- : 7840
1709
- ? - 97
1710
- - 803
1711
- : 7841
1712
- ? - 65
1713
- - 777
1714
- : 7842
1715
- ? - 97
1716
- - 777
1717
- : 7843
1718
- ? - 194
1719
- - 769
1720
- : 7844
1721
- ? - 226
1722
- - 769
1723
- : 7845
1724
- ? - 194
1725
- - 768
1726
- : 7846
1727
- ? - 226
1728
- - 768
1729
- : 7847
1730
- ? - 194
1731
- - 777
1732
- : 7848
1733
- ? - 226
1734
- - 777
1735
- : 7849
1736
- ? - 194
1737
- - 771
1738
- : 7850
1739
- ? - 226
1740
- - 771
1741
- : 7851
1742
- ? - 7840
1743
- - 770
1744
- : 7852
1745
- ? - 7841
1746
- - 770
1747
- : 7853
1748
- ? - 258
1749
- - 769
1750
- : 7854
1751
- ? - 259
1752
- - 769
1753
- : 7855
1754
- ? - 258
1755
- - 768
1756
- : 7856
1757
- ? - 259
1758
- - 768
1759
- : 7857
1760
- ? - 258
1761
- - 777
1762
- : 7858
1763
- ? - 259
1764
- - 777
1765
- : 7859
1766
- ? - 258
1767
- - 771
1768
- : 7860
1769
- ? - 259
1770
- - 771
1771
- : 7861
1772
- ? - 7840
1773
- - 774
1774
- : 7862
1775
- ? - 7841
1776
- - 774
1777
- : 7863
1778
- ? - 69
1779
- - 803
1780
- : 7864
1781
- ? - 101
1782
- - 803
1783
- : 7865
1784
- ? - 69
1785
- - 777
1786
- : 7866
1787
- ? - 101
1788
- - 777
1789
- : 7867
1790
- ? - 69
1791
- - 771
1792
- : 7868
1793
- ? - 101
1794
- - 771
1795
- : 7869
1796
- ? - 202
1797
- - 769
1798
- : 7870
1799
- ? - 234
1800
- - 769
1801
- : 7871
1802
- ? - 202
1803
- - 768
1804
- : 7872
1805
- ? - 234
1806
- - 768
1807
- : 7873
1808
- ? - 202
1809
- - 777
1810
- : 7874
1811
- ? - 234
1812
- - 777
1813
- : 7875
1814
- ? - 202
1815
- - 771
1816
- : 7876
1817
- ? - 234
1818
- - 771
1819
- : 7877
1820
- ? - 7864
1821
- - 770
1822
- : 7878
1823
- ? - 7865
1824
- - 770
1825
- : 7879
1826
- ? - 73
1827
- - 777
1828
- : 7880
1829
- ? - 105
1830
- - 777
1831
- : 7881
1832
- ? - 73
1833
- - 803
1834
- : 7882
1835
- ? - 105
1836
- - 803
1837
- : 7883
1838
- ? - 79
1839
- - 803
1840
- : 7884
1841
- ? - 111
1842
- - 803
1843
- : 7885
1844
- ? - 79
1845
- - 777
1846
- : 7886
1847
- ? - 111
1848
- - 777
1849
- : 7887
1850
- ? - 212
1851
- - 769
1852
- : 7888
1853
- ? - 244
1854
- - 769
1855
- : 7889
1856
- ? - 212
1857
- - 768
1858
- : 7890
1859
- ? - 244
1860
- - 768
1861
- : 7891
1862
- ? - 212
1863
- - 777
1864
- : 7892
1865
- ? - 244
1866
- - 777
1867
- : 7893
1868
- ? - 212
1869
- - 771
1870
- : 7894
1871
- ? - 244
1872
- - 771
1873
- : 7895
1874
- ? - 7884
1875
- - 770
1876
- : 7896
1877
- ? - 7885
1878
- - 770
1879
- : 7897
1880
- ? - 416
1881
- - 769
1882
- : 7898
1883
- ? - 417
1884
- - 769
1885
- : 7899
1886
- ? - 416
1887
- - 768
1888
- : 7900
1889
- ? - 417
1890
- - 768
1891
- : 7901
1892
- ? - 416
1893
- - 777
1894
- : 7902
1895
- ? - 417
1896
- - 777
1897
- : 7903
1898
- ? - 416
1899
- - 771
1900
- : 7904
1901
- ? - 417
1902
- - 771
1903
- : 7905
1904
- ? - 416
1905
- - 803
1906
- : 7906
1907
- ? - 417
1908
- - 803
1909
- : 7907
1910
- ? - 85
1911
- - 803
1912
- : 7908
1913
- ? - 117
1914
- - 803
1915
- : 7909
1916
- ? - 85
1917
- - 777
1918
- : 7910
1919
- ? - 117
1920
- - 777
1921
- : 7911
1922
- ? - 431
1923
- - 769
1924
- : 7912
1925
- ? - 432
1926
- - 769
1927
- : 7913
1928
- ? - 431
1929
- - 768
1930
- : 7914
1931
- ? - 432
1932
- - 768
1933
- : 7915
1934
- ? - 431
1935
- - 777
1936
- : 7916
1937
- ? - 432
1938
- - 777
1939
- : 7917
1940
- ? - 431
1941
- - 771
1942
- : 7918
1943
- ? - 432
1944
- - 771
1945
- : 7919
1946
- ? - 431
1947
- - 803
1948
- : 7920
1949
- ? - 432
1950
- - 803
1951
- : 7921
1952
- ? - 89
1953
- - 768
1954
- : 7922
1955
- ? - 121
1956
- - 768
1957
- : 7923
1958
- ? - 89
1959
- - 803
1960
- : 7924
1961
- ? - 121
1962
- - 803
1963
- : 7925
1964
- ? - 89
1965
- - 777
1966
- : 7926
1967
- ? - 121
1968
- - 777
1969
- : 7927
1970
- ? - 89
1971
- - 771
1972
- : 7928
1973
- ? - 121
1974
- - 771
1975
- : 7929
1976
- ? - 945
1977
- - 787
1978
- : 7936
1979
- ? - 945
1980
- - 788
1981
- : 7937
1982
- ? - 7936
1983
- - 768
1984
- : 7938
1985
- ? - 7937
1986
- - 768
1987
- : 7939
1988
- ? - 7936
1989
- - 769
1990
- : 7940
1991
- ? - 7937
1992
- - 769
1993
- : 7941
1994
- ? - 7936
1995
- - 834
1996
- : 7942
1997
- ? - 7937
1998
- - 834
1999
- : 7943
2000
- ? - 913
2001
- - 787
2002
- : 7944
2003
- ? - 913
2004
- - 788
2005
- : 7945
2006
- ? - 7944
2007
- - 768
2008
- : 7946
2009
- ? - 7945
2010
- - 768
2011
- : 7947
2012
- ? - 7944
2013
- - 769
2014
- : 7948
2015
- ? - 7945
2016
- - 769
2017
- : 7949
2018
- ? - 7944
2019
- - 834
2020
- : 7950
2021
- ? - 7945
2022
- - 834
2023
- : 7951
2024
- ? - 949
2025
- - 787
2026
- : 7952
2027
- ? - 949
2028
- - 788
2029
- : 7953
2030
- ? - 7952
2031
- - 768
2032
- : 7954
2033
- ? - 7953
2034
- - 768
2035
- : 7955
2036
- ? - 7952
2037
- - 769
2038
- : 7956
2039
- ? - 7953
2040
- - 769
2041
- : 7957
2042
- ? - 917
2043
- - 787
2044
- : 7960
2045
- ? - 917
2046
- - 788
2047
- : 7961
2048
- ? - 7960
2049
- - 768
2050
- : 7962
2051
- ? - 7961
2052
- - 768
2053
- : 7963
2054
- ? - 7960
2055
- - 769
2056
- : 7964
2057
- ? - 7961
2058
- - 769
2059
- : 7965
2060
- ? - 951
2061
- - 787
2062
- : 7968
2063
- ? - 951
2064
- - 788
2065
- : 7969
2066
- ? - 7968
2067
- - 768
2068
- : 7970
2069
- ? - 7969
2070
- - 768
2071
- : 7971
2072
- ? - 7968
2073
- - 769
2074
- : 7972
2075
- ? - 7969
2076
- - 769
2077
- : 7973
2078
- ? - 7968
2079
- - 834
2080
- : 7974
2081
- ? - 7969
2082
- - 834
2083
- : 7975
2084
- ? - 919
2085
- - 787
2086
- : 7976
2087
- ? - 919
2088
- - 788
2089
- : 7977
2090
- ? - 7976
2091
- - 768
2092
- : 7978
2093
- ? - 7977
2094
- - 768
2095
- : 7979
2096
- ? - 7976
2097
- - 769
2098
- : 7980
2099
- ? - 7977
2100
- - 769
2101
- : 7981
2102
- ? - 7976
2103
- - 834
2104
- : 7982
2105
- ? - 7977
2106
- - 834
2107
- : 7983
2108
- ? - 953
2109
- - 787
2110
- : 7984
2111
- ? - 953
2112
- - 788
2113
- : 7985
2114
- ? - 7984
2115
- - 768
2116
- : 7986
2117
- ? - 7985
2118
- - 768
2119
- : 7987
2120
- ? - 7984
2121
- - 769
2122
- : 7988
2123
- ? - 7985
2124
- - 769
2125
- : 7989
2126
- ? - 7984
2127
- - 834
2128
- : 7990
2129
- ? - 7985
2130
- - 834
2131
- : 7991
2132
- ? - 921
2133
- - 787
2134
- : 7992
2135
- ? - 921
2136
- - 788
2137
- : 7993
2138
- ? - 7992
2139
- - 768
2140
- : 7994
2141
- ? - 7993
2142
- - 768
2143
- : 7995
2144
- ? - 7992
2145
- - 769
2146
- : 7996
2147
- ? - 7993
2148
- - 769
2149
- : 7997
2150
- ? - 7992
2151
- - 834
2152
- : 7998
2153
- ? - 7993
2154
- - 834
2155
- : 7999
2156
- ? - 959
2157
- - 787
2158
- : 8000
2159
- ? - 959
2160
- - 788
2161
- : 8001
2162
- ? - 8000
2163
- - 768
2164
- : 8002
2165
- ? - 8001
2166
- - 768
2167
- : 8003
2168
- ? - 8000
2169
- - 769
2170
- : 8004
2171
- ? - 8001
2172
- - 769
2173
- : 8005
2174
- ? - 927
2175
- - 787
2176
- : 8008
2177
- ? - 927
2178
- - 788
2179
- : 8009
2180
- ? - 8008
2181
- - 768
2182
- : 8010
2183
- ? - 8009
2184
- - 768
2185
- : 8011
2186
- ? - 8008
2187
- - 769
2188
- : 8012
2189
- ? - 8009
2190
- - 769
2191
- : 8013
2192
- ? - 965
2193
- - 787
2194
- : 8016
2195
- ? - 965
2196
- - 788
2197
- : 8017
2198
- ? - 8016
2199
- - 768
2200
- : 8018
2201
- ? - 8017
2202
- - 768
2203
- : 8019
2204
- ? - 8016
2205
- - 769
2206
- : 8020
2207
- ? - 8017
2208
- - 769
2209
- : 8021
2210
- ? - 8016
2211
- - 834
2212
- : 8022
2213
- ? - 8017
2214
- - 834
2215
- : 8023
2216
- ? - 933
2217
- - 788
2218
- : 8025
2219
- ? - 8025
2220
- - 768
2221
- : 8027
2222
- ? - 8025
2223
- - 769
2224
- : 8029
2225
- ? - 8025
2226
- - 834
2227
- : 8031
2228
- ? - 969
2229
- - 787
2230
- : 8032
2231
- ? - 969
2232
- - 788
2233
- : 8033
2234
- ? - 8032
2235
- - 768
2236
- : 8034
2237
- ? - 8033
2238
- - 768
2239
- : 8035
2240
- ? - 8032
2241
- - 769
2242
- : 8036
2243
- ? - 8033
2244
- - 769
2245
- : 8037
2246
- ? - 8032
2247
- - 834
2248
- : 8038
2249
- ? - 8033
2250
- - 834
2251
- : 8039
2252
- ? - 937
2253
- - 787
2254
- : 8040
2255
- ? - 937
2256
- - 788
2257
- : 8041
2258
- ? - 8040
2259
- - 768
2260
- : 8042
2261
- ? - 8041
2262
- - 768
2263
- : 8043
2264
- ? - 8040
2265
- - 769
2266
- : 8044
2267
- ? - 8041
2268
- - 769
2269
- : 8045
2270
- ? - 8040
2271
- - 834
2272
- : 8046
2273
- ? - 8041
2274
- - 834
2275
- : 8047
2276
- ? - 945
2277
- - 768
2278
- : 8048
2279
- ? - 940
2280
- : 8049
2281
- ? - 949
2282
- - 768
2283
- : 8050
2284
- ? - 941
2285
- : 8051
2286
- ? - 951
2287
- - 768
2288
- : 8052
2289
- ? - 942
2290
- : 8053
2291
- ? - 953
2292
- - 768
2293
- : 8054
2294
- ? - 943
2295
- : 8055
2296
- ? - 959
2297
- - 768
2298
- : 8056
2299
- ? - 972
2300
- : 8057
2301
- ? - 965
2302
- - 768
2303
- : 8058
2304
- ? - 973
2305
- : 8059
2306
- ? - 969
2307
- - 768
2308
- : 8060
2309
- ? - 974
2310
- : 8061
2311
- ? - 7936
2312
- - 837
2313
- : 8064
2314
- ? - 7937
2315
- - 837
2316
- : 8065
2317
- ? - 7938
2318
- - 837
2319
- : 8066
2320
- ? - 7939
2321
- - 837
2322
- : 8067
2323
- ? - 7940
2324
- - 837
2325
- : 8068
2326
- ? - 7941
2327
- - 837
2328
- : 8069
2329
- ? - 7942
2330
- - 837
2331
- : 8070
2332
- ? - 7943
2333
- - 837
2334
- : 8071
2335
- ? - 7944
2336
- - 837
2337
- : 8072
2338
- ? - 7945
2339
- - 837
2340
- : 8073
2341
- ? - 7946
2342
- - 837
2343
- : 8074
2344
- ? - 7947
2345
- - 837
2346
- : 8075
2347
- ? - 7948
2348
- - 837
2349
- : 8076
2350
- ? - 7949
2351
- - 837
2352
- : 8077
2353
- ? - 7950
2354
- - 837
2355
- : 8078
2356
- ? - 7951
2357
- - 837
2358
- : 8079
2359
- ? - 7968
2360
- - 837
2361
- : 8080
2362
- ? - 7969
2363
- - 837
2364
- : 8081
2365
- ? - 7970
2366
- - 837
2367
- : 8082
2368
- ? - 7971
2369
- - 837
2370
- : 8083
2371
- ? - 7972
2372
- - 837
2373
- : 8084
2374
- ? - 7973
2375
- - 837
2376
- : 8085
2377
- ? - 7974
2378
- - 837
2379
- : 8086
2380
- ? - 7975
2381
- - 837
2382
- : 8087
2383
- ? - 7976
2384
- - 837
2385
- : 8088
2386
- ? - 7977
2387
- - 837
2388
- : 8089
2389
- ? - 7978
2390
- - 837
2391
- : 8090
2392
- ? - 7979
2393
- - 837
2394
- : 8091
2395
- ? - 7980
2396
- - 837
2397
- : 8092
2398
- ? - 7981
2399
- - 837
2400
- : 8093
2401
- ? - 7982
2402
- - 837
2403
- : 8094
2404
- ? - 7983
2405
- - 837
2406
- : 8095
2407
- ? - 8032
2408
- - 837
2409
- : 8096
2410
- ? - 8033
2411
- - 837
2412
- : 8097
2413
- ? - 8034
2414
- - 837
2415
- : 8098
2416
- ? - 8035
2417
- - 837
2418
- : 8099
2419
- ? - 8036
2420
- - 837
2421
- : 8100
2422
- ? - 8037
2423
- - 837
2424
- : 8101
2425
- ? - 8038
2426
- - 837
2427
- : 8102
2428
- ? - 8039
2429
- - 837
2430
- : 8103
2431
- ? - 8040
2432
- - 837
2433
- : 8104
2434
- ? - 8041
2435
- - 837
2436
- : 8105
2437
- ? - 8042
2438
- - 837
2439
- : 8106
2440
- ? - 8043
2441
- - 837
2442
- : 8107
2443
- ? - 8044
2444
- - 837
2445
- : 8108
2446
- ? - 8045
2447
- - 837
2448
- : 8109
2449
- ? - 8046
2450
- - 837
2451
- : 8110
2452
- ? - 8047
2453
- - 837
2454
- : 8111
2455
- ? - 945
2456
- - 774
2457
- : 8112
2458
- ? - 945
2459
- - 772
2460
- : 8113
2461
- ? - 8048
2462
- - 837
2463
- : 8114
2464
- ? - 945
2465
- - 837
2466
- : 8115
2467
- ? - 940
2468
- - 837
2469
- : 8116
2470
- ? - 945
2471
- - 834
2472
- : 8118
2473
- ? - 8118
2474
- - 837
2475
- : 8119
2476
- ? - 913
2477
- - 774
2478
- : 8120
2479
- ? - 913
2480
- - 772
2481
- : 8121
2482
- ? - 913
2483
- - 768
2484
- : 8122
2485
- ? - 902
2486
- : 8123
2487
- ? - 913
2488
- - 837
2489
- : 8124
2490
- ? - 953
2491
- : 8126
2492
- ? - 168
2493
- - 834
2494
- : 8129
2495
- ? - 8052
2496
- - 837
2497
- : 8130
2498
- ? - 951
2499
- - 837
2500
- : 8131
2501
- ? - 942
2502
- - 837
2503
- : 8132
2504
- ? - 951
2505
- - 834
2506
- : 8134
2507
- ? - 8134
2508
- - 837
2509
- : 8135
2510
- ? - 917
2511
- - 768
2512
- : 8136
2513
- ? - 904
2514
- : 8137
2515
- ? - 919
2516
- - 768
2517
- : 8138
2518
- ? - 905
2519
- : 8139
2520
- ? - 919
2521
- - 837
2522
- : 8140
2523
- ? - 8127
2524
- - 768
2525
- : 8141
2526
- ? - 8127
2527
- - 769
2528
- : 8142
2529
- ? - 8127
2530
- - 834
2531
- : 8143
2532
- ? - 953
2533
- - 774
2534
- : 8144
2535
- ? - 953
2536
- - 772
2537
- : 8145
2538
- ? - 970
2539
- - 768
2540
- : 8146
2541
- ? - 912
2542
- : 8147
2543
- ? - 953
2544
- - 834
2545
- : 8150
2546
- ? - 970
2547
- - 834
2548
- : 8151
2549
- ? - 921
2550
- - 774
2551
- : 8152
2552
- ? - 921
2553
- - 772
2554
- : 8153
2555
- ? - 921
2556
- - 768
2557
- : 8154
2558
- ? - 906
2559
- : 8155
2560
- ? - 8190
2561
- - 768
2562
- : 8157
2563
- ? - 8190
2564
- - 769
2565
- : 8158
2566
- ? - 8190
2567
- - 834
2568
- : 8159
2569
- ? - 965
2570
- - 774
2571
- : 8160
2572
- ? - 965
2573
- - 772
2574
- : 8161
2575
- ? - 971
2576
- - 768
2577
- : 8162
2578
- ? - 944
2579
- : 8163
2580
- ? - 961
2581
- - 787
2582
- : 8164
2583
- ? - 961
2584
- - 788
2585
- : 8165
2586
- ? - 965
2587
- - 834
2588
- : 8166
2589
- ? - 971
2590
- - 834
2591
- : 8167
2592
- ? - 933
2593
- - 774
2594
- : 8168
2595
- ? - 933
2596
- - 772
2597
- : 8169
2598
- ? - 933
2599
- - 768
2600
- : 8170
2601
- ? - 910
2602
- : 8171
2603
- ? - 929
2604
- - 788
2605
- : 8172
2606
- ? - 168
2607
- - 768
2608
- : 8173
2609
- ? - 901
2610
- : 8174
2611
- ? - 96
2612
- : 8175
2613
- ? - 8060
2614
- - 837
2615
- : 8178
2616
- ? - 969
2617
- - 837
2618
- : 8179
2619
- ? - 974
2620
- - 837
2621
- : 8180
2622
- ? - 969
2623
- - 834
2624
- : 8182
2625
- ? - 8182
2626
- - 837
2627
- : 8183
2628
- ? - 927
2629
- - 768
2630
- : 8184
2631
- ? - 908
2632
- : 8185
2633
- ? - 937
2634
- - 768
2635
- : 8186
2636
- ? - 911
2637
- : 8187
2638
- ? - 937
2639
- - 837
2640
- : 8188
2641
- ? - 180
2642
- : 8189
2643
- ? - 8194
2644
- : 8192
2645
- ? - 8195
2646
- : 8193
2647
- ? - 937
2648
- : 8486
2649
- ? - 75
2650
- : 8490
2651
- ? - 197
2652
- : 8491
2653
- ? - 8592
2654
- - 824
2655
- : 8602
2656
- ? - 8594
2657
- - 824
2658
- : 8603
2659
- ? - 8596
2660
- - 824
2661
- : 8622
2662
- ? - 8656
2663
- - 824
2664
- : 8653
2665
- ? - 8660
2666
- - 824
2667
- : 8654
2668
- ? - 8658
2669
- - 824
2670
- : 8655
2671
- ? - 8707
2672
- - 824
2673
- : 8708
2674
- ? - 8712
2675
- - 824
2676
- : 8713
2677
- ? - 8715
2678
- - 824
2679
- : 8716
2680
- ? - 8739
2681
- - 824
2682
- : 8740
2683
- ? - 8741
2684
- - 824
2685
- : 8742
2686
- ? - 8764
2687
- - 824
2688
- : 8769
2689
- ? - 8771
2690
- - 824
2691
- : 8772
2692
- ? - 8773
2693
- - 824
2694
- : 8775
2695
- ? - 8776
2696
- - 824
2697
- : 8777
2698
- ? - 61
2699
- - 824
2700
- : 8800
2701
- ? - 8801
2702
- - 824
2703
- : 8802
2704
- ? - 8781
2705
- - 824
2706
- : 8813
2707
- ? - 60
2708
- - 824
2709
- : 8814
2710
- ? - 62
2711
- - 824
2712
- : 8815
2713
- ? - 8804
2714
- - 824
2715
- : 8816
2716
- ? - 8805
2717
- - 824
2718
- : 8817
2719
- ? - 8818
2720
- - 824
2721
- : 8820
2722
- ? - 8819
2723
- - 824
2724
- : 8821
2725
- ? - 8822
2726
- - 824
2727
- : 8824
2728
- ? - 8823
2729
- - 824
2730
- : 8825
2731
- ? - 8826
2732
- - 824
2733
- : 8832
2734
- ? - 8827
2735
- - 824
2736
- : 8833
2737
- ? - 8834
2738
- - 824
2739
- : 8836
2740
- ? - 8835
2741
- - 824
2742
- : 8837
2743
- ? - 8838
2744
- - 824
2745
- : 8840
2746
- ? - 8839
2747
- - 824
2748
- : 8841
2749
- ? - 8866
2750
- - 824
2751
- : 8876
2752
- ? - 8872
2753
- - 824
2754
- : 8877
2755
- ? - 8873
2756
- - 824
2757
- : 8878
2758
- ? - 8875
2759
- - 824
2760
- : 8879
2761
- ? - 8828
2762
- - 824
2763
- : 8928
2764
- ? - 8829
2765
- - 824
2766
- : 8929
2767
- ? - 8849
2768
- - 824
2769
- : 8930
2770
- ? - 8850
2771
- - 824
2772
- : 8931
2773
- ? - 8882
2774
- - 824
2775
- : 8938
2776
- ? - 8883
2777
- - 824
2778
- : 8939
2779
- ? - 8884
2780
- - 824
2781
- : 8940
2782
- ? - 8885
2783
- - 824
2784
- : 8941
2785
- ? - 12296
2786
- : 9001
2787
- ? - 12297
2788
- : 9002
2789
- ? - 10973
2790
- - 824
2791
- : 10972
2792
- ? - 12363
2793
- - 12441
2794
- : 12364
2795
- ? - 12365
2796
- - 12441
2797
- : 12366
2798
- ? - 12367
2799
- - 12441
2800
- : 12368
2801
- ? - 12369
2802
- - 12441
2803
- : 12370
2804
- ? - 12371
2805
- - 12441
2806
- : 12372
2807
- ? - 12373
2808
- - 12441
2809
- : 12374
2810
- ? - 12375
2811
- - 12441
2812
- : 12376
2813
- ? - 12377
2814
- - 12441
2815
- : 12378
2816
- ? - 12379
2817
- - 12441
2818
- : 12380
2819
- ? - 12381
2820
- - 12441
2821
- : 12382
2822
- ? - 12383
2823
- - 12441
2824
- : 12384
2825
- ? - 12385
2826
- - 12441
2827
- : 12386
2828
- ? - 12388
2829
- - 12441
2830
- : 12389
2831
- ? - 12390
2832
- - 12441
2833
- : 12391
2834
- ? - 12392
2835
- - 12441
2836
- : 12393
2837
- ? - 12399
2838
- - 12441
2839
- : 12400
2840
- ? - 12399
2841
- - 12442
2842
- : 12401
2843
- ? - 12402
2844
- - 12441
2845
- : 12403
2846
- ? - 12402
2847
- - 12442
2848
- : 12404
2849
- ? - 12405
2850
- - 12441
2851
- : 12406
2852
- ? - 12405
2853
- - 12442
2854
- : 12407
2855
- ? - 12408
2856
- - 12441
2857
- : 12409
2858
- ? - 12408
2859
- - 12442
2860
- : 12410
2861
- ? - 12411
2862
- - 12441
2863
- : 12412
2864
- ? - 12411
2865
- - 12442
2866
- : 12413
2867
- ? - 12358
2868
- - 12441
2869
- : 12436
2870
- ? - 12445
2871
- - 12441
2872
- : 12446
2873
- ? - 12459
2874
- - 12441
2875
- : 12460
2876
- ? - 12461
2877
- - 12441
2878
- : 12462
2879
- ? - 12463
2880
- - 12441
2881
- : 12464
2882
- ? - 12465
2883
- - 12441
2884
- : 12466
2885
- ? - 12467
2886
- - 12441
2887
- : 12468
2888
- ? - 12469
2889
- - 12441
2890
- : 12470
2891
- ? - 12471
2892
- - 12441
2893
- : 12472
2894
- ? - 12473
2895
- - 12441
2896
- : 12474
2897
- ? - 12475
2898
- - 12441
2899
- : 12476
2900
- ? - 12477
2901
- - 12441
2902
- : 12478
2903
- ? - 12479
2904
- - 12441
2905
- : 12480
2906
- ? - 12481
2907
- - 12441
2908
- : 12482
2909
- ? - 12484
2910
- - 12441
2911
- : 12485
2912
- ? - 12486
2913
- - 12441
2914
- : 12487
2915
- ? - 12488
2916
- - 12441
2917
- : 12489
2918
- ? - 12495
2919
- - 12441
2920
- : 12496
2921
- ? - 12495
2922
- - 12442
2923
- : 12497
2924
- ? - 12498
2925
- - 12441
2926
- : 12499
2927
- ? - 12498
2928
- - 12442
2929
- : 12500
2930
- ? - 12501
2931
- - 12441
2932
- : 12502
2933
- ? - 12501
2934
- - 12442
2935
- : 12503
2936
- ? - 12504
2937
- - 12441
2938
- : 12505
2939
- ? - 12504
2940
- - 12442
2941
- : 12506
2942
- ? - 12507
2943
- - 12441
2944
- : 12508
2945
- ? - 12507
2946
- - 12442
2947
- : 12509
2948
- ? - 12454
2949
- - 12441
2950
- : 12532
2951
- ? - 12527
2952
- - 12441
2953
- : 12535
2954
- ? - 12528
2955
- - 12441
2956
- : 12536
2957
- ? - 12529
2958
- - 12441
2959
- : 12537
2960
- ? - 12530
2961
- - 12441
2962
- : 12538
2963
- ? - 12541
2964
- - 12441
2965
- : 12542
2966
- ? - 35912
2967
- : 63744
2968
- ? - 26356
2969
- : 63745
2970
- ? - 36554
2971
- : 63746
2972
- ? - 36040
2973
- : 63747
2974
- ? - 28369
2975
- : 63748
2976
- ? - 20018
2977
- : 63749
2978
- ? - 21477
2979
- : 63750
2980
- ? - 40860
2981
- : 64206
2982
- ? - 22865
2983
- : 63753
2984
- ? - 37329
2985
- : 63754
2986
- ? - 21895
2987
- : 63755
2988
- ? - 22856
2989
- : 63756
2990
- ? - 25078
2991
- : 194737
2992
- ? - 30313
2993
- : 63758
2994
- ? - 32645
2995
- : 63759
2996
- ? - 34367
2997
- : 63760
2998
- ? - 34746
2999
- : 63761
3000
- ? - 35064
3001
- : 63762
3002
- ? - 37007
3003
- : 63763
3004
- ? - 27138
3005
- : 63935
3006
- ? - 27931
3007
- : 63765
3008
- ? - 28889
3009
- : 63766
3010
- ? - 29662
3011
- : 63767
3012
- ? - 33853
3013
- : 63768
3014
- ? - 37226
3015
- : 63769
3016
- ? - 39409
3017
- : 63770
3018
- ? - 20098
3019
- : 63771
3020
- ? - 21365
3021
- : 63772
3022
- ? - 27396
3023
- : 63773
3024
- ? - 29211
3025
- : 63774
3026
- ? - 34349
3027
- : 63775
3028
- ? - 40478
3029
- : 63776
3030
- ? - 23888
3031
- : 63777
3032
- ? - 28651
3033
- : 63778
3034
- ? - 34253
3035
- : 63779
3036
- ? - 35172
3037
- : 63780
3038
- ? - 25289
3039
- : 63781
3040
- ? - 33240
3041
- : 63782
3042
- ? - 34847
3043
- : 63783
3044
- ? - 24266
3045
- : 194702
3046
- ? - 26391
3047
- : 194776
3048
- ? - 28010
3049
- : 63786
3050
- ? - 29436
3051
- : 63787
3052
- ? - 37070
3053
- : 63788
3054
- ? - 20358
3055
- : 63789
3056
- ? - 20919
3057
- : 63790
3058
- ? - 21214
3059
- : 63791
3060
- ? - 25796
3061
- : 63792
3062
- ? - 27347
3063
- : 63793
3064
- ? - 29200
3065
- : 63794
3066
- ? - 30439
3067
- : 63795
3068
- ? - 32769
3069
- : 63796
3070
- ? - 34310
3071
- : 63797
3072
- ? - 34396
3073
- : 194996
3074
- ? - 36335
3075
- : 63799
3076
- ? - 38706
3077
- : 63800
3078
- ? - 39791
3079
- : 63801
3080
- ? - 40442
3081
- : 63802
3082
- ? - 30860
3083
- : 194895
3084
- ? - 31103
3085
- : 63804
3086
- ? - 32160
3087
- : 63805
3088
- ? - 33737
3089
- : 63806
3090
- ? - 37636
3091
- : 63807
3092
- ? - 40575
3093
- : 63808
3094
- ? - 35542
3095
- : 63809
3096
- ? - 22751
3097
- : 63810
3098
- ? - 24324
3099
- : 63811
3100
- ? - 31840
3101
- : 63812
3102
- ? - 32894
3103
- : 63813
3104
- ? - 29282
3105
- : 63814
3106
- ? - 30922
3107
- : 63815
3108
- ? - 36034
3109
- : 63816
3110
- ? - 38647
3111
- : 63817
3112
- ? - 22744
3113
- : 63818
3114
- ? - 23650
3115
- : 63819
3116
- ? - 27155
3117
- : 63820
3118
- ? - 28122
3119
- : 63821
3120
- ? - 28431
3121
- : 63822
3122
- ? - 32047
3123
- : 63823
3124
- ? - 32311
3125
- : 63824
3126
- ? - 38475
3127
- : 63825
3128
- ? - 21202
3129
- : 63826
3130
- ? - 32907
3131
- : 63827
3132
- ? - 20956
3133
- : 63828
3134
- ? - 20940
3135
- : 63829
3136
- ? - 31260
3137
- : 63830
3138
- ? - 32190
3139
- : 63831
3140
- ? - 33777
3141
- : 63832
3142
- ? - 38517
3143
- : 63833
3144
- ? - 35712
3145
- : 63834
3146
- ? - 25295
3147
- : 63835
3148
- ? - 35582
3149
- : 64189
3150
- ? - 20025
3151
- : 63838
3152
- ? - 23527
3153
- : 194671
3154
- ? - 24594
3155
- : 63840
3156
- ? - 29575
3157
- : 63963
3158
- ? - 30064
3159
- : 194872
3160
- ? - 21271
3161
- : 194603
3162
- ? - 30971
3163
- : 63844
3164
- ? - 20415
3165
- : 63845
3166
- ? - 24489
3167
- : 63846
3168
- ? - 19981
3169
- : 63847
3170
- ? - 27852
3171
- : 63848
3172
- ? - 25976
3173
- : 63849
3174
- ? - 32034
3175
- : 63850
3176
- ? - 21443
3177
- : 63851
3178
- ? - 22622
3179
- : 63852
3180
- ? - 30465
3181
- : 63853
3182
- ? - 33865
3183
- : 63854
3184
- ? - 35498
3185
- : 63905
3186
- ? - 27578
3187
- : 194805
3188
- ? - 36784
3189
- : 63857
3190
- ? - 27784
3191
- : 63858
3192
- ? - 25342
3193
- : 63859
3194
- ? - 33509
3195
- : 194968
3196
- ? - 25504
3197
- : 63861
3198
- ? - 30053
3199
- : 63862
3200
- ? - 20142
3201
- : 63863
3202
- ? - 20841
3203
- : 63864
3204
- ? - 20937
3205
- : 63865
3206
- ? - 26753
3207
- : 63866
3208
- ? - 31975
3209
- : 63867
3210
- ? - 33391
3211
- : 63868
3212
- ? - 35538
3213
- : 63869
3214
- ? - 37327
3215
- : 63870
3216
- ? - 21237
3217
- : 63871
3218
- ? - 21570
3219
- : 63872
3220
- ? - 22899
3221
- : 63873
3222
- ? - 24300
3223
- : 63874
3224
- ? - 26053
3225
- : 63875
3226
- ? - 28670
3227
- : 63876
3228
- ? - 31018
3229
- : 63877
3230
- ? - 38317
3231
- : 63878
3232
- ? - 39530
3233
- : 63879
3234
- ? - 40599
3235
- : 63880
3236
- ? - 40654
3237
- : 63881
3238
- ? - 21147
3239
- : 63882
3240
- ? - 26310
3241
- : 63883
3242
- ? - 27511
3243
- : 63884
3244
- ? - 36706
3245
- : 63885
3246
- ? - 24180
3247
- : 63886
3248
- ? - 24976
3249
- : 63887
3250
- ? - 25088
3251
- : 63888
3252
- ? - 25754
3253
- : 63889
3254
- ? - 28451
3255
- : 63890
3256
- ? - 29001
3257
- : 63891
3258
- ? - 29833
3259
- : 63892
3260
- ? - 31178
3261
- : 63893
3262
- ? - 32244
3263
- : 64176
3264
- ? - 32879
3265
- : 63895
3266
- ? - 36646
3267
- : 63896
3268
- ? - 34030
3269
- : 63897
3270
- ? - 36899
3271
- : 63898
3272
- ? - 37706
3273
- : 63899
3274
- ? - 21015
3275
- : 63900
3276
- ? - 21155
3277
- : 63901
3278
- ? - 21693
3279
- : 63902
3280
- ? - 28872
3281
- : 63903
3282
- ? - 35010
3283
- : 63904
3284
- ? - 24265
3285
- : 63906
3286
- ? - 24565
3287
- : 63907
3288
- ? - 25467
3289
- : 63908
3290
- ? - 27566
3291
- : 63909
3292
- ? - 31806
3293
- : 63910
3294
- ? - 29557
3295
- : 63911
3296
- ? - 20196
3297
- : 63912
3298
- ? - 22265
3299
- : 63913
3300
- ? - 23994
3301
- : 63915
3302
- ? - 24604
3303
- : 63916
3304
- ? - 29618
3305
- : 63917
3306
- ? - 29801
3307
- : 63918
3308
- ? - 32666
3309
- : 63919
3310
- ? - 32838
3311
- : 63920
3312
- ? - 37428
3313
- : 63921
3314
- ? - 38646
3315
- : 63922
3316
- ? - 38728
3317
- : 63923
3318
- ? - 38936
3319
- : 63924
3320
- ? - 20363
3321
- : 63925
3322
- ? - 31150
3323
- : 63926
3324
- ? - 37300
3325
- : 63927
3326
- ? - 38584
3327
- : 63928
3328
- ? - 24801
3329
- : 63929
3330
- ? - 20102
3331
- : 63930
3332
- ? - 20698
3333
- : 63931
3334
- ? - 23534
3335
- : 63932
3336
- ? - 23615
3337
- : 63933
3338
- ? - 26009
3339
- : 63934
3340
- ? - 29134
3341
- : 63936
3342
- ? - 30274
3343
- : 63937
3344
- ? - 34044
3345
- : 63938
3346
- ? - 36988
3347
- : 63939
3348
- ? - 40845
3349
- : 63940
3350
- ? - 26248
3351
- : 63941
3352
- ? - 38446
3353
- : 63942
3354
- ? - 21129
3355
- : 63943
3356
- ? - 26491
3357
- : 63944
3358
- ? - 26611
3359
- : 63945
3360
- ? - 27969
3361
- : 194818
3362
- ? - 28316
3363
- : 63947
3364
- ? - 29705
3365
- : 63948
3366
- ? - 30041
3367
- : 63949
3368
- ? - 30827
3369
- : 63950
3370
- ? - 32016
3371
- : 63951
3372
- ? - 39006
3373
- : 63952
3374
- ? - 20845
3375
- : 63953
3376
- ? - 25134
3377
- : 63954
3378
- ? - 38520
3379
- : 63955
3380
- ? - 20523
3381
- : 63956
3382
- ? - 23833
3383
- : 63957
3384
- ? - 28138
3385
- : 63958
3386
- ? - 36650
3387
- : 63959
3388
- ? - 24459
3389
- : 63960
3390
- ? - 24900
3391
- : 63961
3392
- ? - 26647
3393
- : 63962
3394
- ? - 38534
3395
- : 63964
3396
- ? - 21033
3397
- : 63965
3398
- ? - 21519
3399
- : 63966
3400
- ? - 23653
3401
- : 63967
3402
- ? - 26131
3403
- : 63968
3404
- ? - 26446
3405
- : 63969
3406
- ? - 26792
3407
- : 63970
3408
- ? - 27877
3409
- : 63971
3410
- ? - 29702
3411
- : 63972
3412
- ? - 30178
3413
- : 63973
3414
- ? - 32633
3415
- : 63974
3416
- ? - 35023
3417
- : 63975
3418
- ? - 35041
3419
- : 63976
3420
- ? - 37324
3421
- : 63977
3422
- ? - 38626
3423
- : 63978
3424
- ? - 21311
3425
- : 63979
3426
- ? - 28346
3427
- : 63980
3428
- ? - 21533
3429
- : 63981
3430
- ? - 29136
3431
- : 63982
3432
- ? - 29848
3433
- : 63983
3434
- ? - 34298
3435
- : 63984
3436
- ? - 38563
3437
- : 63985
3438
- ? - 40023
3439
- : 63986
3440
- ? - 40607
3441
- : 63987
3442
- ? - 26519
3443
- : 63988
3444
- ? - 28107
3445
- : 63989
3446
- ? - 33256
3447
- : 63990
3448
- ? - 31435
3449
- : 63991
3450
- ? - 31520
3451
- : 63992
3452
- ? - 31890
3453
- : 63993
3454
- ? - 29376
3455
- : 63994
3456
- ? - 28825
3457
- : 63995
3458
- ? - 35672
3459
- : 63996
3460
- ? - 20160
3461
- : 63997
3462
- ? - 33590
3463
- : 63998
3464
- ? - 21050
3465
- : 63999
3466
- ? - 20999
3467
- : 194640
3468
- ? - 24230
3469
- : 64001
3470
- ? - 25299
3471
- : 64002
3472
- ? - 31958
3473
- : 64003
3474
- ? - 23429
3475
- : 64004
3476
- ? - 27934
3477
- : 64005
3478
- ? - 26292
3479
- : 64006
3480
- ? - 36667
3481
- : 64007
3482
- ? - 34892
3483
- : 64008
3484
- ? - 38477
3485
- : 64009
3486
- ? - 35211
3487
- : 64010
3488
- ? - 24275
3489
- : 64011
3490
- ? - 20800
3491
- : 64012
3492
- ? - 21952
3493
- : 64013
3494
- ? - 22618
3495
- : 64124
3496
- ? - 26228
3497
- : 64145
3498
- ? - 20958
3499
- : 64021
3500
- ? - 29482
3501
- : 64160
3502
- ? - 30410
3503
- : 64166
3504
- ? - 31036
3505
- : 64024
3506
- ? - 31070
3507
- : 64025
3508
- ? - 31077
3509
- : 64026
3510
- ? - 31119
3511
- : 194902
3512
- ? - 38742
3513
- : 64200
3514
- ? - 31934
3515
- : 64029
3516
- ? - 32701
3517
- : 64030
3518
- ? - 34322
3519
- : 64032
3520
- ? - 35576
3521
- : 64186
3522
- ? - 36920
3523
- : 64103
3524
- ? - 37117
3525
- : 64038
3526
- ? - 39151
3527
- : 64042
3528
- ? - 39164
3529
- : 64043
3530
- ? - 39208
3531
- : 64044
3532
- ? - 40372
3533
- : 64045
3534
- ? - 37086
3535
- : 64046
3536
- ? - 38583
3537
- : 64047
3538
- ? - 20398
3539
- : 194565
3540
- ? - 20711
3541
- : 194570
3542
- ? - 20813
3543
- : 194574
3544
- ? - 21193
3545
- : 194598
3546
- ? - 21220
3547
- : 194599
3548
- ? - 21329
3549
- : 194605
3550
- ? - 21917
3551
- : 64120
3552
- ? - 22022
3553
- : 194636
3554
- ? - 22120
3555
- : 64056
3556
- ? - 22592
3557
- : 64057
3558
- ? - 22696
3559
- : 64058
3560
- ? - 23652
3561
- : 64059
3562
- ? - 23662
3563
- : 194680
3564
- ? - 24724
3565
- : 194723
3566
- ? - 24936
3567
- : 64062
3568
- ? - 24974
3569
- : 194731
3570
- ? - 25074
3571
- : 194736
3572
- ? - 25935
3573
- : 194760
3574
- ? - 26082
3575
- : 64066
3576
- ? - 26257
3577
- : 194767
3578
- ? - 26757
3579
- : 194786
3580
- ? - 28023
3581
- : 194817
3582
- ? - 28186
3583
- : 64070
3584
- ? - 28450
3585
- : 64154
3586
- ? - 29038
3587
- : 64156
3588
- ? - 29227
3589
- : 64073
3590
- ? - 29730
3591
- : 64074
3592
- ? - 30865
3593
- : 64075
3594
- ? - 31038
3595
- : 64076
3596
- ? - 31049
3597
- : 64077
3598
- ? - 31048
3599
- : 64078
3600
- ? - 31056
3601
- : 64079
3602
- ? - 31062
3603
- : 194899
3604
- ? - 31069
3605
- : 64081
3606
- ? - 31117
3607
- : 64082
3608
- ? - 31118
3609
- : 64083
3610
- ? - 31296
3611
- : 194905
3612
- ? - 31361
3613
- : 64085
3614
- ? - 31680
3615
- : 64173
3616
- ? - 32265
3617
- : 64088
3618
- ? - 32321
3619
- : 64089
3620
- ? - 32626
3621
- : 64090
3622
- ? - 32773
3623
- : 194938
3624
- ? - 33261
3625
- : 64092
3626
- ? - 33401
3627
- : 64094
3628
- ? - 33879
3629
- : 194975
3630
- ? - 35088
3631
- : 64096
3632
- ? - 35222
3633
- : 64184
3634
- ? - 35585
3635
- : 64188
3636
- ? - 35641
3637
- : 64191
3638
- ? - 36051
3639
- : 64100
3640
- ? - 36104
3641
- : 64193
3642
- ? - 36790
3643
- : 64102
3644
- ? - 38627
3645
- : 64199
3646
- ? - 38911
3647
- : 64202
3648
- ? - 38971
3649
- : 64204
3650
- ? - 24693
3651
- : 64107
3652
- ? - 148206
3653
- : 64108
3654
- ? - 33304
3655
- : 64109
3656
- ? - 20006
3657
- : 64112
3658
- ? - 20917
3659
- : 194587
3660
- ? - 20840
3661
- : 64114
3662
- ? - 20352
3663
- : 64115
3664
- ? - 20805
3665
- : 64116
3666
- ? - 20864
3667
- : 64117
3668
- ? - 21191
3669
- : 194597
3670
- ? - 21242
3671
- : 194600
3672
- ? - 21845
3673
- : 64121
3674
- ? - 21913
3675
- : 194631
3676
- ? - 21986
3677
- : 64123
3678
- ? - 22707
3679
- : 64125
3680
- ? - 22852
3681
- : 64126
3682
- ? - 22868
3683
- : 64127
3684
- ? - 23138
3685
- : 64128
3686
- ? - 23336
3687
- : 64129
3688
- ? - 24274
3689
- : 64130
3690
- ? - 24281
3691
- : 64131
3692
- ? - 24425
3693
- : 64132
3694
- ? - 24493
3695
- : 64133
3696
- ? - 24792
3697
- : 64134
3698
- ? - 24910
3699
- : 194728
3700
- ? - 24840
3701
- : 64136
3702
- ? - 24928
3703
- : 64138
3704
- ? - 25140
3705
- : 64140
3706
- ? - 25540
3707
- : 64141
3708
- ? - 25628
3709
- : 64142
3710
- ? - 25682
3711
- : 64143
3712
- ? - 25942
3713
- : 64144
3714
- ? - 26395
3715
- : 194777
3716
- ? - 26454
3717
- : 64148
3718
- ? - 27513
3719
- : 64149
3720
- ? - 28379
3721
- : 64152
3722
- ? - 28363
3723
- : 194827
3724
- ? - 28702
3725
- : 194836
3726
- ? - 30631
3727
- : 64157
3728
- ? - 29237
3729
- : 194849
3730
- ? - 29359
3731
- : 64159
3732
- ? - 29809
3733
- : 194864
3734
- ? - 29958
3735
- : 64162
3736
- ? - 30011
3737
- : 64163
3738
- ? - 30237
3739
- : 64164
3740
- ? - 30239
3741
- : 64165
3742
- ? - 30427
3743
- : 64167
3744
- ? - 30452
3745
- : 194880
3746
- ? - 30538
3747
- : 194888
3748
- ? - 30528
3749
- : 64170
3750
- ? - 30924
3751
- : 194896
3752
- ? - 31409
3753
- : 64172
3754
- ? - 31867
3755
- : 64174
3756
- ? - 32091
3757
- : 64175
3758
- ? - 32574
3759
- : 64177
3760
- ? - 33618
3761
- : 64179
3762
- ? - 33775
3763
- : 64180
3764
- ? - 34681
3765
- : 195003
3766
- ? - 35137
3767
- : 64182
3768
- ? - 35206
3769
- : 64183
3770
- ? - 35519
3771
- : 64185
3772
- ? - 35531
3773
- : 64187
3774
- ? - 35565
3775
- : 195024
3776
- ? - 35722
3777
- : 195025
3778
- ? - 36664
3779
- : 195039
3780
- ? - 36978
3781
- : 64195
3782
- ? - 37273
3783
- : 64196
3784
- ? - 37494
3785
- : 64197
3786
- ? - 38524
3787
- : 64198
3788
- ? - 38875
3789
- : 64201
3790
- ? - 38923
3791
- : 195071
3792
- ? - 39698
3793
- : 195082
3794
- ? - 141386
3795
- : 64207
3796
- ? - 141380
3797
- : 64208
3798
- ? - 144341
3799
- : 64209
3800
- ? - 15261
3801
- : 194791
3802
- ? - 16408
3803
- : 64211
3804
- ? - 16441
3805
- : 194889
3806
- ? - 152137
3807
- : 64213
3808
- ? - 154832
3809
- : 64214
3810
- ? - 163539
3811
- : 64215
3812
- ? - 40771
3813
- : 64216
3814
- ? - 40846
3815
- : 64217
3816
- ? - 1497
3817
- - 1460
3818
- : 64285
3819
- ? - 1522
3820
- - 1463
3821
- : 64287
3822
- ? - 1513
3823
- - 1473
3824
- : 64298
3825
- ? - 1513
3826
- - 1474
3827
- : 64299
3828
- ? - 64329
3829
- - 1473
3830
- : 64300
3831
- ? - 64329
3832
- - 1474
3833
- : 64301
3834
- ? - 1488
3835
- - 1463
3836
- : 64302
3837
- ? - 1488
3838
- - 1464
3839
- : 64303
3840
- ? - 1488
3841
- - 1468
3842
- : 64304
3843
- ? - 1489
3844
- - 1468
3845
- : 64305
3846
- ? - 1490
3847
- - 1468
3848
- : 64306
3849
- ? - 1491
3850
- - 1468
3851
- : 64307
3852
- ? - 1492
3853
- - 1468
3854
- : 64308
3855
- ? - 1493
3856
- - 1468
3857
- : 64309
3858
- ? - 1494
3859
- - 1468
3860
- : 64310
3861
- ? - 1496
3862
- - 1468
3863
- : 64312
3864
- ? - 1497
3865
- - 1468
3866
- : 64313
3867
- ? - 1498
3868
- - 1468
3869
- : 64314
3870
- ? - 1499
3871
- - 1468
3872
- : 64315
3873
- ? - 1500
3874
- - 1468
3875
- : 64316
3876
- ? - 1502
3877
- - 1468
3878
- : 64318
3879
- ? - 1504
3880
- - 1468
3881
- : 64320
3882
- ? - 1505
3883
- - 1468
3884
- : 64321
3885
- ? - 1507
3886
- - 1468
3887
- : 64323
3888
- ? - 1508
3889
- - 1468
3890
- : 64324
3891
- ? - 1510
3892
- - 1468
3893
- : 64326
3894
- ? - 1511
3895
- - 1468
3896
- : 64327
3897
- ? - 1512
3898
- - 1468
3899
- : 64328
3900
- ? - 1513
3901
- - 1468
3902
- : 64329
3903
- ? - 1514
3904
- - 1468
3905
- : 64330
3906
- ? - 1493
3907
- - 1465
3908
- : 64331
3909
- ? - 1489
3910
- - 1471
3911
- : 64332
3912
- ? - 1499
3913
- - 1471
3914
- : 64333
3915
- ? - 1508
3916
- - 1471
3917
- : 64334
3918
- ? - 69785
3919
- - 69818
3920
- : 69786
3921
- ? - 69787
3922
- - 69818
3923
- : 69788
3924
- ? - 69797
3925
- - 69818
3926
- : 69803
3927
- ? - 69937
3928
- - 69927
3929
- : 69934
3930
- ? - 69938
3931
- - 69927
3932
- : 69935
3933
- ? - 119127
3934
- - 119141
3935
- : 119134
3936
- ? - 119128
3937
- - 119141
3938
- : 119135
3939
- ? - 119135
3940
- - 119150
3941
- : 119136
3942
- ? - 119135
3943
- - 119151
3944
- : 119137
3945
- ? - 119135
3946
- - 119152
3947
- : 119138
3948
- ? - 119135
3949
- - 119153
3950
- : 119139
3951
- ? - 119135
3952
- - 119154
3953
- : 119140
3954
- ? - 119225
3955
- - 119141
3956
- : 119227
3957
- ? - 119226
3958
- - 119141
3959
- : 119228
3960
- ? - 119227
3961
- - 119150
3962
- : 119229
3963
- ? - 119228
3964
- - 119150
3965
- : 119230
3966
- ? - 119227
3967
- - 119151
3968
- : 119231
3969
- ? - 119228
3970
- - 119151
3971
- : 119232
3972
- ? - 20029
3973
- : 194560
3974
- ? - 20024
3975
- : 194561
3976
- ? - 20033
3977
- : 194562
3978
- ? - 131362
3979
- : 194563
3980
- ? - 20320
3981
- : 194564
3982
- ? - 20411
3983
- : 194566
3984
- ? - 20482
3985
- : 194567
3986
- ? - 20602
3987
- : 194568
3988
- ? - 20633
3989
- : 194569
3990
- ? - 20687
3991
- : 194571
3992
- ? - 13470
3993
- : 194572
3994
- ? - 132666
3995
- : 194573
3996
- ? - 20820
3997
- : 194575
3998
- ? - 20836
3999
- : 194576
4000
- ? - 20855
4001
- : 194577
4002
- ? - 132380
4003
- : 194578
4004
- ? - 13497
4005
- : 194579
4006
- ? - 20839
4007
- : 194580
4008
- ? - 20877
4009
- : 194581
4010
- ? - 132427
4011
- : 194582
4012
- ? - 20887
4013
- : 194583
4014
- ? - 20900
4015
- : 194584
4016
- ? - 20172
4017
- : 194585
4018
- ? - 20908
4019
- : 194586
4020
- ? - 168415
4021
- : 194588
4022
- ? - 20981
4023
- : 194589
4024
- ? - 20995
4025
- : 194590
4026
- ? - 13535
4027
- : 194591
4028
- ? - 21051
4029
- : 194592
4030
- ? - 21062
4031
- : 194593
4032
- ? - 21106
4033
- : 194594
4034
- ? - 21111
4035
- : 194595
4036
- ? - 13589
4037
- : 194596
4038
- ? - 21253
4039
- : 194601
4040
- ? - 21254
4041
- : 194602
4042
- ? - 21321
4043
- : 194604
4044
- ? - 21338
4045
- : 194606
4046
- ? - 21363
4047
- : 194607
4048
- ? - 21373
4049
- : 194608
4050
- ? - 21375
4051
- : 194611
4052
- ? - 133676
4053
- : 194612
4054
- ? - 28784
4055
- : 194613
4056
- ? - 21450
4057
- : 194614
4058
- ? - 21471
4059
- : 194615
4060
- ? - 133987
4061
- : 194616
4062
- ? - 21483
4063
- : 194617
4064
- ? - 21489
4065
- : 194618
4066
- ? - 21510
4067
- : 194619
4068
- ? - 21662
4069
- : 194620
4070
- ? - 21560
4071
- : 194621
4072
- ? - 21576
4073
- : 194622
4074
- ? - 21608
4075
- : 194623
4076
- ? - 21666
4077
- : 194624
4078
- ? - 21750
4079
- : 194625
4080
- ? - 21776
4081
- : 194626
4082
- ? - 21843
4083
- : 194627
4084
- ? - 21859
4085
- : 194628
4086
- ? - 21892
4087
- : 194630
4088
- ? - 21931
4089
- : 194632
4090
- ? - 21939
4091
- : 194633
4092
- ? - 21954
4093
- : 194634
4094
- ? - 22294
4095
- : 194635
4096
- ? - 22295
4097
- : 194637
4098
- ? - 22097
4099
- : 194638
4100
- ? - 22132
4101
- : 194639
4102
- ? - 22766
4103
- : 194641
4104
- ? - 22478
4105
- : 194642
4106
- ? - 22516
4107
- : 194643
4108
- ? - 22541
4109
- : 194644
4110
- ? - 22411
4111
- : 194645
4112
- ? - 22578
4113
- : 194646
4114
- ? - 22577
4115
- : 194647
4116
- ? - 22700
4117
- : 194648
4118
- ? - 136420
4119
- : 194649
4120
- ? - 22770
4121
- : 194650
4122
- ? - 22775
4123
- : 194651
4124
- ? - 22790
4125
- : 194652
4126
- ? - 22810
4127
- : 194653
4128
- ? - 22818
4129
- : 194654
4130
- ? - 22882
4131
- : 194655
4132
- ? - 136872
4133
- : 194656
4134
- ? - 136938
4135
- : 194657
4136
- ? - 23020
4137
- : 194658
4138
- ? - 23067
4139
- : 194659
4140
- ? - 23079
4141
- : 194660
4142
- ? - 23000
4143
- : 194661
4144
- ? - 23142
4145
- : 194662
4146
- ? - 14062
4147
- : 194663
4148
- ? - 14076
4149
- : 194664
4150
- ? - 23304
4151
- : 194665
4152
- ? - 23358
4153
- : 194667
4154
- ? - 137672
4155
- : 194668
4156
- ? - 23491
4157
- : 194669
4158
- ? - 23512
4159
- : 194670
4160
- ? - 23539
4161
- : 194672
4162
- ? - 138008
4163
- : 194673
4164
- ? - 23551
4165
- : 194674
4166
- ? - 23558
4167
- : 194675
4168
- ? - 24403
4169
- : 194676
4170
- ? - 23586
4171
- : 194677
4172
- ? - 14209
4173
- : 194678
4174
- ? - 23648
4175
- : 194679
4176
- ? - 23744
4177
- : 194681
4178
- ? - 23693
4179
- : 194682
4180
- ? - 138724
4181
- : 194683
4182
- ? - 23875
4183
- : 194684
4184
- ? - 138726
4185
- : 194685
4186
- ? - 23918
4187
- : 194686
4188
- ? - 23915
4189
- : 194687
4190
- ? - 23932
4191
- : 194688
4192
- ? - 24033
4193
- : 194689
4194
- ? - 24034
4195
- : 194690
4196
- ? - 14383
4197
- : 194691
4198
- ? - 24061
4199
- : 194692
4200
- ? - 24104
4201
- : 194693
4202
- ? - 24125
4203
- : 194694
4204
- ? - 24169
4205
- : 194695
4206
- ? - 14434
4207
- : 194696
4208
- ? - 139651
4209
- : 194697
4210
- ? - 14460
4211
- : 194698
4212
- ? - 24240
4213
- : 194699
4214
- ? - 24243
4215
- : 194700
4216
- ? - 24246
4217
- : 194701
4218
- ? - 172946
4219
- : 194703
4220
- ? - 24318
4221
- : 194704
4222
- ? - 140081
4223
- : 194706
4224
- ? - 33281
4225
- : 194955
4226
- ? - 24354
4227
- : 194709
4228
- ? - 14535
4229
- : 194710
4230
- ? - 144056
4231
- : 194711
4232
- ? - 156122
4233
- : 194712
4234
- ? - 24418
4235
- : 194713
4236
- ? - 24427
4237
- : 194714
4238
- ? - 14563
4239
- : 194715
4240
- ? - 24474
4241
- : 194716
4242
- ? - 24525
4243
- : 194717
4244
- ? - 24535
4245
- : 194718
4246
- ? - 24569
4247
- : 194719
4248
- ? - 24705
4249
- : 194720
4250
- ? - 14650
4251
- : 194721
4252
- ? - 14620
4253
- : 194722
4254
- ? - 141012
4255
- : 194724
4256
- ? - 24775
4257
- : 194725
4258
- ? - 24904
4259
- : 194726
4260
- ? - 24908
4261
- : 194729
4262
- ? - 24954
4263
- : 194730
4264
- ? - 25010
4265
- : 194732
4266
- ? - 24996
4267
- : 194733
4268
- ? - 25007
4269
- : 194734
4270
- ? - 25054
4271
- : 194735
4272
- ? - 25104
4273
- : 194738
4274
- ? - 25115
4275
- : 194739
4276
- ? - 25181
4277
- : 194740
4278
- ? - 25265
4279
- : 194741
4280
- ? - 25300
4281
- : 194742
4282
- ? - 25424
4283
- : 194743
4284
- ? - 142092
4285
- : 194744
4286
- ? - 25405
4287
- : 194745
4288
- ? - 25340
4289
- : 194746
4290
- ? - 25448
4291
- : 194747
4292
- ? - 25475
4293
- : 194748
4294
- ? - 25572
4295
- : 194749
4296
- ? - 142321
4297
- : 194750
4298
- ? - 25634
4299
- : 194751
4300
- ? - 25541
4301
- : 194752
4302
- ? - 25513
4303
- : 194753
4304
- ? - 14894
4305
- : 194754
4306
- ? - 25705
4307
- : 194755
4308
- ? - 25726
4309
- : 194756
4310
- ? - 25757
4311
- : 194757
4312
- ? - 25719
4313
- : 194758
4314
- ? - 14956
4315
- : 194759
4316
- ? - 25964
4317
- : 194761
4318
- ? - 143370
4319
- : 194762
4320
- ? - 26083
4321
- : 194763
4322
- ? - 26360
4323
- : 194764
4324
- ? - 26185
4325
- : 194765
4326
- ? - 15129
4327
- : 194766
4328
- ? - 15112
4329
- : 194768
4330
- ? - 15076
4331
- : 194769
4332
- ? - 20882
4333
- : 194770
4334
- ? - 20885
4335
- : 194771
4336
- ? - 26368
4337
- : 194772
4338
- ? - 26268
4339
- : 194773
4340
- ? - 32941
4341
- : 194774
4342
- ? - 17369
4343
- : 194775
4344
- ? - 26401
4345
- : 194778
4346
- ? - 26462
4347
- : 194779
4348
- ? - 26451
4349
- : 194780
4350
- ? - 144323
4351
- : 194781
4352
- ? - 15177
4353
- : 194782
4354
- ? - 26618
4355
- : 194783
4356
- ? - 26501
4357
- : 194784
4358
- ? - 26706
4359
- : 194785
4360
- ? - 144493
4361
- : 194787
4362
- ? - 26766
4363
- : 194788
4364
- ? - 26655
4365
- : 194789
4366
- ? - 26900
4367
- : 194790
4368
- ? - 26946
4369
- : 194792
4370
- ? - 27043
4371
- : 194793
4372
- ? - 27114
4373
- : 194794
4374
- ? - 27304
4375
- : 194795
4376
- ? - 145059
4377
- : 194796
4378
- ? - 27355
4379
- : 194797
4380
- ? - 15384
4381
- : 194798
4382
- ? - 27425
4383
- : 194799
4384
- ? - 145575
4385
- : 194800
4386
- ? - 27476
4387
- : 194801
4388
- ? - 15438
4389
- : 194802
4390
- ? - 27506
4391
- : 194803
4392
- ? - 27551
4393
- : 194804
4394
- ? - 27579
4395
- : 194806
4396
- ? - 146061
4397
- : 194807
4398
- ? - 138507
4399
- : 194808
4400
- ? - 146170
4401
- : 194809
4402
- ? - 27726
4403
- : 194810
4404
- ? - 146620
4405
- : 194811
4406
- ? - 27839
4407
- : 194812
4408
- ? - 27853
4409
- : 194813
4410
- ? - 27751
4411
- : 194814
4412
- ? - 27926
4413
- : 194815
4414
- ? - 27966
4415
- : 194816
4416
- ? - 28009
4417
- : 194819
4418
- ? - 28024
4419
- : 194820
4420
- ? - 28037
4421
- : 194821
4422
- ? - 146718
4423
- : 194822
4424
- ? - 27956
4425
- : 194823
4426
- ? - 28207
4427
- : 194824
4428
- ? - 28270
4429
- : 194825
4430
- ? - 15667
4431
- : 194826
4432
- ? - 28359
4433
- : 194828
4434
- ? - 147153
4435
- : 194829
4436
- ? - 28153
4437
- : 194830
4438
- ? - 28526
4439
- : 194831
4440
- ? - 147294
4441
- : 194832
4442
- ? - 147342
4443
- : 194833
4444
- ? - 28614
4445
- : 194834
4446
- ? - 28729
4447
- : 194835
4448
- ? - 28699
4449
- : 194837
4450
- ? - 15766
4451
- : 194838
4452
- ? - 28746
4453
- : 194839
4454
- ? - 28797
4455
- : 194840
4456
- ? - 28791
4457
- : 194841
4458
- ? - 28845
4459
- : 194842
4460
- ? - 132389
4461
- : 194843
4462
- ? - 28997
4463
- : 194844
4464
- ? - 148067
4465
- : 194845
4466
- ? - 29084
4467
- : 194846
4468
- ? - 148395
4469
- : 194847
4470
- ? - 29224
4471
- : 194848
4472
- ? - 29264
4473
- : 194850
4474
- ? - 149000
4475
- : 194851
4476
- ? - 29312
4477
- : 194852
4478
- ? - 29333
4479
- : 194853
4480
- ? - 149301
4481
- : 194854
4482
- ? - 149524
4483
- : 194855
4484
- ? - 29562
4485
- : 194856
4486
- ? - 29579
4487
- : 194857
4488
- ? - 16044
4489
- : 194858
4490
- ? - 29605
4491
- : 194859
4492
- ? - 16056
4493
- : 194861
4494
- ? - 29767
4495
- : 194862
4496
- ? - 29788
4497
- : 194863
4498
- ? - 29829
4499
- : 194865
4500
- ? - 29898
4501
- : 194866
4502
- ? - 16155
4503
- : 194867
4504
- ? - 29988
4505
- : 194868
4506
- ? - 150582
4507
- : 194869
4508
- ? - 30014
4509
- : 194870
4510
- ? - 150674
4511
- : 194871
4512
- ? - 139679
4513
- : 194873
4514
- ? - 30224
4515
- : 194874
4516
- ? - 151457
4517
- : 194875
4518
- ? - 151480
4519
- : 194876
4520
- ? - 151620
4521
- : 194877
4522
- ? - 16380
4523
- : 194878
4524
- ? - 16392
4525
- : 194879
4526
- ? - 151795
4527
- : 194881
4528
- ? - 151794
4529
- : 194882
4530
- ? - 151833
4531
- : 194883
4532
- ? - 151859
4533
- : 194884
4534
- ? - 30494
4535
- : 194885
4536
- ? - 30495
4537
- : 194887
4538
- ? - 30603
4539
- : 194890
4540
- ? - 16454
4541
- : 194891
4542
- ? - 16534
4543
- : 194892
4544
- ? - 152605
4545
- : 194893
4546
- ? - 30798
4547
- : 194894
4548
- ? - 16611
4549
- : 194897
4550
- ? - 153126
4551
- : 194898
4552
- ? - 153242
4553
- : 194900
4554
- ? - 153285
4555
- : 194901
4556
- ? - 31211
4557
- : 194903
4558
- ? - 16687
4559
- : 194904
4560
- ? - 31306
4561
- : 194906
4562
- ? - 31311
4563
- : 194907
4564
- ? - 153980
4565
- : 194908
4566
- ? - 154279
4567
- : 194910
4568
- ? - 31470
4569
- : 194911
4570
- ? - 16898
4571
- : 194912
4572
- ? - 154539
4573
- : 194913
4574
- ? - 31686
4575
- : 194914
4576
- ? - 31689
4577
- : 194915
4578
- ? - 16935
4579
- : 194916
4580
- ? - 154752
4581
- : 194917
4582
- ? - 31954
4583
- : 194918
4584
- ? - 17056
4585
- : 194919
4586
- ? - 31976
4587
- : 194920
4588
- ? - 31971
4589
- : 194921
4590
- ? - 32000
4591
- : 194922
4592
- ? - 155526
4593
- : 194923
4594
- ? - 32099
4595
- : 194924
4596
- ? - 17153
4597
- : 194925
4598
- ? - 32199
4599
- : 194926
4600
- ? - 32258
4601
- : 194927
4602
- ? - 32325
4603
- : 194928
4604
- ? - 17204
4605
- : 194929
4606
- ? - 156200
4607
- : 194930
4608
- ? - 156231
4609
- : 194931
4610
- ? - 17241
4611
- : 194932
4612
- ? - 156377
4613
- : 194933
4614
- ? - 32634
4615
- : 194934
4616
- ? - 156478
4617
- : 194935
4618
- ? - 32661
4619
- : 194936
4620
- ? - 32762
4621
- : 194937
4622
- ? - 156890
4623
- : 194939
4624
- ? - 156963
4625
- : 194940
4626
- ? - 32864
4627
- : 194941
4628
- ? - 157096
4629
- : 194942
4630
- ? - 32880
4631
- : 194943
4632
- ? - 144223
4633
- : 194944
4634
- ? - 17365
4635
- : 194945
4636
- ? - 32946
4637
- : 194946
4638
- ? - 33027
4639
- : 194947
4640
- ? - 17419
4641
- : 194948
4642
- ? - 33086
4643
- : 194949
4644
- ? - 23221
4645
- : 194950
4646
- ? - 157607
4647
- : 194951
4648
- ? - 157621
4649
- : 194952
4650
- ? - 144275
4651
- : 194953
4652
- ? - 144284
4653
- : 194954
4654
- ? - 33284
4655
- : 194956
4656
- ? - 36766
4657
- : 194957
4658
- ? - 17515
4659
- : 194958
4660
- ? - 33425
4661
- : 194959
4662
- ? - 33419
4663
- : 194960
4664
- ? - 33437
4665
- : 194961
4666
- ? - 21171
4667
- : 194962
4668
- ? - 33457
4669
- : 194963
4670
- ? - 33459
4671
- : 194964
4672
- ? - 33469
4673
- : 194965
4674
- ? - 33510
4675
- : 194966
4676
- ? - 158524
4677
- : 194967
4678
- ? - 33565
4679
- : 194969
4680
- ? - 33635
4681
- : 194970
4682
- ? - 33709
4683
- : 194971
4684
- ? - 33571
4685
- : 194972
4686
- ? - 33725
4687
- : 194973
4688
- ? - 33767
4689
- : 194974
4690
- ? - 33619
4691
- : 194976
4692
- ? - 33738
4693
- : 194977
4694
- ? - 33740
4695
- : 194978
4696
- ? - 33756
4697
- : 194979
4698
- ? - 158774
4699
- : 194980
4700
- ? - 159083
4701
- : 194981
4702
- ? - 158933
4703
- : 194982
4704
- ? - 17707
4705
- : 194983
4706
- ? - 34033
4707
- : 194984
4708
- ? - 34035
4709
- : 194985
4710
- ? - 34070
4711
- : 194986
4712
- ? - 160714
4713
- : 194987
4714
- ? - 34148
4715
- : 194988
4716
- ? - 159532
4717
- : 194989
4718
- ? - 17757
4719
- : 194990
4720
- ? - 17761
4721
- : 194991
4722
- ? - 159665
4723
- : 194992
4724
- ? - 159954
4725
- : 194993
4726
- ? - 17771
4727
- : 194994
4728
- ? - 34384
4729
- : 194995
4730
- ? - 34407
4731
- : 194997
4732
- ? - 34409
4733
- : 194998
4734
- ? - 34473
4735
- : 194999
4736
- ? - 34440
4737
- : 195000
4738
- ? - 34574
4739
- : 195001
4740
- ? - 34530
4741
- : 195002
4742
- ? - 34600
4743
- : 195004
4744
- ? - 34667
4745
- : 195005
4746
- ? - 34694
4747
- : 195006
4748
- ? - 17879
4749
- : 195007
4750
- ? - 34785
4751
- : 195008
4752
- ? - 34817
4753
- : 195009
4754
- ? - 17913
4755
- : 195010
4756
- ? - 34912
4757
- : 195011
4758
- ? - 34915
4759
- : 195012
4760
- ? - 161383
4761
- : 195013
4762
- ? - 35031
4763
- : 195014
4764
- ? - 35038
4765
- : 195015
4766
- ? - 17973
4767
- : 195016
4768
- ? - 35066
4769
- : 195017
4770
- ? - 13499
4771
- : 195018
4772
- ? - 161966
4773
- : 195019
4774
- ? - 162150
4775
- : 195020
4776
- ? - 18110
4777
- : 195021
4778
- ? - 18119
4779
- : 195022
4780
- ? - 35488
4781
- : 195023
4782
- ? - 35925
4783
- : 195026
4784
- ? - 162984
4785
- : 195027
4786
- ? - 36011
4787
- : 195028
4788
- ? - 36033
4789
- : 195029
4790
- ? - 36123
4791
- : 195030
4792
- ? - 36215
4793
- : 195031
4794
- ? - 163631
4795
- : 195032
4796
- ? - 133124
4797
- : 195033
4798
- ? - 36299
4799
- : 195034
4800
- ? - 36284
4801
- : 195035
4802
- ? - 36336
4803
- : 195036
4804
- ? - 133342
4805
- : 195037
4806
- ? - 36564
4807
- : 195038
4808
- ? - 165330
4809
- : 195040
4810
- ? - 165357
4811
- : 195041
4812
- ? - 37012
4813
- : 195042
4814
- ? - 37105
4815
- : 195043
4816
- ? - 37137
4817
- : 195044
4818
- ? - 165678
4819
- : 195045
4820
- ? - 37147
4821
- : 195046
4822
- ? - 37432
4823
- : 195047
4824
- ? - 37591
4825
- : 195048
4826
- ? - 37592
4827
- : 195049
4828
- ? - 37500
4829
- : 195050
4830
- ? - 37881
4831
- : 195051
4832
- ? - 37909
4833
- : 195052
4834
- ? - 166906
4835
- : 195053
4836
- ? - 38283
4837
- : 195054
4838
- ? - 18837
4839
- : 195055
4840
- ? - 38327
4841
- : 195056
4842
- ? - 167287
4843
- : 195057
4844
- ? - 18918
4845
- : 195058
4846
- ? - 38595
4847
- : 195059
4848
- ? - 23986
4849
- : 195060
4850
- ? - 38691
4851
- : 195061
4852
- ? - 168261
4853
- : 195062
4854
- ? - 168474
4855
- : 195063
4856
- ? - 19054
4857
- : 195064
4858
- ? - 19062
4859
- : 195065
4860
- ? - 38880
4861
- : 195066
4862
- ? - 168970
4863
- : 195067
4864
- ? - 19122
4865
- : 195068
4866
- ? - 169110
4867
- : 195069
4868
- ? - 38953
4869
- : 195072
4870
- ? - 169398
4871
- : 195073
4872
- ? - 39138
4873
- : 195074
4874
- ? - 19251
4875
- : 195075
4876
- ? - 39209
4877
- : 195076
4878
- ? - 39335
4879
- : 195077
4880
- ? - 39362
4881
- : 195078
4882
- ? - 39422
4883
- : 195079
4884
- ? - 19406
4885
- : 195080
4886
- ? - 170800
4887
- : 195081
4888
- ? - 40000
4889
- : 195083
4890
- ? - 40189
4891
- : 195084
4892
- ? - 19662
4893
- : 195085
4894
- ? - 19693
4895
- : 195086
4896
- ? - 40295
4897
- : 195087
4898
- ? - 172238
4899
- : 195088
4900
- ? - 19704
4901
- : 195089
4902
- ? - 172293
4903
- : 195090
4904
- ? - 172558
4905
- : 195091
4906
- ? - 172689
4907
- : 195092
4908
- ? - 40635
4909
- : 195093
4910
- ? - 19798
4911
- : 195094
4912
- ? - 40697
4913
- : 195095
4914
- ? - 40702
4915
- : 195096
4916
- ? - 40709
4917
- : 195097
4918
- ? - 40719
4919
- : 195098
4920
- ? - 40726
4921
- : 195099
4922
- ? - 40763
4923
- : 195100
4924
- ? - 173568
4925
- : 195101