twitter_cldr 1.5.0 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (203) hide show
  1. data/Gemfile +32 -0
  2. data/History.txt +78 -0
  3. data/README.md +72 -62
  4. data/Rakefile +22 -0
  5. data/js/lib/compiler.rb +40 -0
  6. data/js/lib/mustache/bundle.coffee +14 -0
  7. data/js/lib/mustache/calendars/datetime.coffee +240 -0
  8. data/js/lib/mustache/calendars/timespan.coffee +52 -0
  9. data/js/lib/mustache/plurals/rules.coffee +14 -0
  10. data/js/lib/renderers/base.rb +18 -0
  11. data/js/lib/renderers/bundle.rb +18 -0
  12. data/js/lib/renderers/calendars/datetime_renderer.rb +34 -0
  13. data/js/lib/renderers/calendars/timespan_renderer.rb +39 -0
  14. data/js/lib/renderers/plurals/rules/plural_rules_compiler.rb +89 -0
  15. data/js/lib/renderers/plurals/rules/plural_rules_renderer.rb +26 -0
  16. data/js/lib/twitter_cldr_js.rb +85 -0
  17. data/js/spec/js/calendars/datetime_spec.js +418 -0
  18. data/js/spec/js/calendars/timespan_spec.js +91 -0
  19. data/js/spec/js/plurals/plural_rules_spec.js +28 -0
  20. data/js/spec/js/support/jasmine.yml +8 -0
  21. data/js/spec/rb/renderers/plurals/plural_rules_compiler_spec.rb +52 -0
  22. data/js/spec/rb/spec_helper.rb +13 -0
  23. data/lib/twitter_cldr.rb +2 -1
  24. data/lib/twitter_cldr/collation.rb +2 -1
  25. data/lib/twitter_cldr/collation/collator.rb +49 -31
  26. data/lib/twitter_cldr/collation/{sort_key.rb → sort_key_builder.rb} +31 -8
  27. data/lib/twitter_cldr/collation/trie.rb +116 -24
  28. data/lib/twitter_cldr/collation/trie_builder.rb +54 -28
  29. data/lib/twitter_cldr/collation/trie_with_fallback.rb +55 -0
  30. data/lib/twitter_cldr/core_ext/array.rb +14 -1
  31. data/lib/twitter_cldr/core_ext/calendars/datetime.rb +8 -2
  32. data/lib/twitter_cldr/core_ext/calendars/timespan.rb +5 -5
  33. data/lib/twitter_cldr/formatters/calendars/timespan_formatter.rb +10 -10
  34. data/lib/twitter_cldr/formatters/plurals/rules.rb +3 -5
  35. data/lib/twitter_cldr/resources.rb +11 -0
  36. data/lib/twitter_cldr/resources/import.rb +12 -0
  37. data/lib/twitter_cldr/resources/import/tailoring.rb +193 -0
  38. data/lib/twitter_cldr/{shared/resources.rb → resources/loader.rb} +17 -4
  39. data/lib/twitter_cldr/shared.rb +0 -1
  40. data/lib/twitter_cldr/tokenizers/base.rb +9 -9
  41. data/lib/twitter_cldr/tokenizers/calendars/datetime_tokenizer.rb +0 -4
  42. data/lib/twitter_cldr/tokenizers/calendars/timespan_tokenizer.rb +21 -7
  43. data/lib/twitter_cldr/utils.rb +11 -0
  44. data/lib/twitter_cldr/version.rb +1 -1
  45. data/resources/collation/tailoring/af.yml +3 -0
  46. data/resources/collation/tailoring/ar.yml +21 -0
  47. data/resources/collation/tailoring/ca.yml +9 -0
  48. data/resources/collation/tailoring/cs.yml +25 -0
  49. data/resources/collation/tailoring/da.yml +59 -0
  50. data/resources/collation/tailoring/de.yml +3 -0
  51. data/resources/collation/tailoring/el.yml +3 -0
  52. data/resources/collation/tailoring/en.yml +3 -0
  53. data/resources/collation/tailoring/es.yml +5 -0
  54. data/resources/collation/tailoring/eu.yml +3 -0
  55. data/resources/collation/tailoring/fa.yml +73 -0
  56. data/resources/collation/tailoring/fi.yml +61 -0
  57. data/resources/collation/tailoring/fil.yml +11 -0
  58. data/resources/collation/tailoring/fr.yml +3 -0
  59. data/resources/collation/tailoring/he.yml +3 -0
  60. data/resources/collation/tailoring/hi.yml +7 -0
  61. data/resources/collation/tailoring/hu.yml +125 -0
  62. data/resources/collation/tailoring/id.yml +3 -0
  63. data/resources/collation/tailoring/it.yml +3 -0
  64. data/resources/collation/tailoring/ja.yml +14647 -0
  65. data/resources/collation/tailoring/ko.yml +14953 -0
  66. data/resources/collation/tailoring/ms.yml +3 -0
  67. data/resources/collation/tailoring/nb.yml +59 -0
  68. data/resources/collation/tailoring/nl.yml +3 -0
  69. data/resources/collation/tailoring/pl.yml +37 -0
  70. data/resources/collation/tailoring/pt.yml +3 -0
  71. data/resources/collation/tailoring/ru.yml +3 -0
  72. data/resources/collation/tailoring/sv.yml +63 -0
  73. data/resources/collation/tailoring/th.yml +19 -0
  74. data/resources/collation/tailoring/tr.yml +27 -0
  75. data/resources/collation/tailoring/uk.yml +5 -0
  76. data/resources/collation/tailoring/ur.yml +163 -0
  77. data/resources/collation/tailoring/zh-Hant.yml +3 -0
  78. data/resources/collation/tailoring/zh.yml +149 -0
  79. data/resources/custom/locales/af/units.yml +19 -0
  80. data/resources/custom/locales/ar/units.yml +35 -0
  81. data/resources/custom/locales/ca/units.yml +19 -0
  82. data/resources/custom/locales/cs/units.yml +23 -0
  83. data/resources/custom/locales/da/units.yml +19 -0
  84. data/resources/custom/locales/de/units.yml +19 -0
  85. data/resources/custom/locales/el/units.yml +19 -0
  86. data/resources/custom/locales/en/units.yml +18 -0
  87. data/resources/custom/locales/es/units.yml +19 -0
  88. data/resources/custom/locales/eu/units.yml +19 -0
  89. data/resources/custom/locales/fa/units.yml +15 -0
  90. data/resources/custom/locales/fi/units.yml +19 -0
  91. data/resources/custom/locales/fil/units.yml +19 -0
  92. data/resources/custom/locales/fr/units.yml +19 -0
  93. data/resources/custom/locales/he/units.yml +19 -0
  94. data/resources/custom/locales/hi/units.yml +19 -0
  95. data/resources/custom/locales/hu/units.yml +15 -0
  96. data/resources/custom/locales/id/units.yml +15 -0
  97. data/resources/custom/locales/it/units.yml +19 -0
  98. data/resources/custom/locales/ja/units.yml +15 -0
  99. data/resources/custom/locales/ko/units.yml +15 -0
  100. data/resources/custom/locales/ms/units.yml +15 -0
  101. data/resources/custom/locales/nb/units.yml +19 -0
  102. data/resources/custom/locales/nl/units.yml +19 -0
  103. data/resources/custom/locales/pl/units.yml +23 -0
  104. data/resources/custom/locales/pt/units.yml +19 -0
  105. data/resources/custom/locales/ru/units.yml +27 -0
  106. data/resources/custom/locales/sv/units.yml +19 -0
  107. data/resources/custom/locales/th/units.yml +15 -0
  108. data/resources/custom/locales/tr/units.yml +15 -0
  109. data/resources/custom/locales/uk/units.yml +27 -0
  110. data/resources/custom/locales/ur/units.yml +19 -0
  111. data/resources/custom/locales/zh-Hant/units.yml +15 -0
  112. data/resources/custom/locales/zh/units.yml +15 -0
  113. data/resources/locales/af/units.yml +112 -65
  114. data/resources/locales/ar/units.yml +196 -126
  115. data/resources/locales/ca/units.yml +112 -70
  116. data/resources/locales/cs/units.yml +140 -91
  117. data/resources/locales/da/units.yml +98 -56
  118. data/resources/locales/de/units.yml +112 -70
  119. data/resources/locales/el/units.yml +119 -84
  120. data/resources/locales/en/units.yml +84 -42
  121. data/resources/locales/es/units.yml +112 -70
  122. data/resources/locales/eu/units.yml +105 -68
  123. data/resources/locales/fa/units.yml +98 -63
  124. data/resources/locales/fi/units.yml +112 -70
  125. data/resources/locales/fil/units.yml +98 -56
  126. data/resources/locales/fr/units.yml +112 -70
  127. data/resources/locales/he/units.yml +98 -56
  128. data/resources/locales/hi/units.yml +98 -56
  129. data/resources/locales/hu/units.yml +84 -49
  130. data/resources/locales/id/units.yml +84 -49
  131. data/resources/locales/it/units.yml +98 -56
  132. data/resources/locales/ja/units.yml +84 -49
  133. data/resources/locales/ko/units.yml +84 -49
  134. data/resources/locales/ms/units.yml +112 -63
  135. data/resources/locales/nb/units.yml +106 -64
  136. data/resources/locales/nl/units.yml +98 -56
  137. data/resources/locales/pl/units.yml +181 -112
  138. data/resources/locales/pt/units.yml +112 -70
  139. data/resources/locales/ru/units.yml +168 -112
  140. data/resources/locales/sv/units.yml +112 -70
  141. data/resources/locales/th/units.yml +84 -49
  142. data/resources/locales/tr/units.yml +84 -49
  143. data/resources/locales/uk/units.yml +168 -112
  144. data/resources/locales/ur/units.yml +112 -63
  145. data/resources/locales/zh-Hant/units.yml +84 -49
  146. data/resources/locales/zh/units.yml +84 -49
  147. data/spec/collation/collation_spec.rb +1 -1
  148. data/spec/collation/collator_spec.rb +120 -48
  149. data/spec/collation/sort_key_builder_spec.rb +80 -0
  150. data/spec/collation/tailoring_spec.rb +137 -0
  151. data/spec/collation/tailoring_tests/af.txt +321 -0
  152. data/spec/collation/tailoring_tests/ar.txt +188 -0
  153. data/spec/collation/tailoring_tests/ca.txt +446 -0
  154. data/spec/collation/tailoring_tests/cs.txt +273 -0
  155. data/spec/collation/tailoring_tests/da.txt +293 -0
  156. data/spec/collation/tailoring_tests/de.txt +414 -0
  157. data/spec/collation/tailoring_tests/el.txt +228 -0
  158. data/spec/collation/tailoring_tests/en.txt +399 -0
  159. data/spec/collation/tailoring_tests/es.txt +402 -0
  160. data/spec/collation/tailoring_tests/eu.txt +183 -0
  161. data/spec/collation/tailoring_tests/fa.txt +263 -0
  162. data/spec/collation/tailoring_tests/fi.txt +389 -0
  163. data/spec/collation/tailoring_tests/fil.txt +279 -0
  164. data/spec/collation/tailoring_tests/fr.txt +363 -0
  165. data/spec/collation/tailoring_tests/he.txt +167 -0
  166. data/spec/collation/tailoring_tests/hi.txt +230 -0
  167. data/spec/collation/tailoring_tests/hu.txt +773 -0
  168. data/spec/collation/tailoring_tests/id.txt +171 -0
  169. data/spec/collation/tailoring_tests/it.txt +231 -0
  170. data/spec/collation/tailoring_tests/ja.txt +4287 -0
  171. data/spec/collation/tailoring_tests/ko.txt +1761 -0
  172. data/spec/collation/tailoring_tests/ms.txt +531 -0
  173. data/spec/collation/tailoring_tests/nb.txt +375 -0
  174. data/spec/collation/tailoring_tests/nl.txt +273 -0
  175. data/spec/collation/tailoring_tests/pl.txt +225 -0
  176. data/spec/collation/tailoring_tests/pt.txt +405 -0
  177. data/spec/collation/tailoring_tests/ru.txt +213 -0
  178. data/spec/collation/tailoring_tests/sv.txt +353 -0
  179. data/spec/collation/tailoring_tests/th.txt +239 -0
  180. data/spec/collation/tailoring_tests/tr.txt +414 -0
  181. data/spec/collation/tailoring_tests/uk.txt +218 -0
  182. data/spec/collation/tailoring_tests/ur.txt +284 -0
  183. data/spec/collation/tailoring_tests/zh-Hant.txt +626 -0
  184. data/spec/collation/tailoring_tests/zh.txt +717 -0
  185. data/spec/collation/trie_builder_spec.rb +131 -51
  186. data/spec/collation/trie_spec.rb +301 -26
  187. data/spec/collation/trie_with_fallback_spec.rb +41 -0
  188. data/spec/core_ext/array_spec.rb +46 -3
  189. data/spec/core_ext/calendars/date_spec.rb +24 -24
  190. data/spec/core_ext/calendars/datetime_spec.rb +7 -0
  191. data/spec/core_ext/calendars/time_spec.rb +2 -2
  192. data/spec/formatters/calendars/timespan_formatter_spec.rb +47 -18
  193. data/spec/formatters/plurals/rules_spec.rb +3 -11
  194. data/spec/readme_spec.rb +15 -15
  195. data/spec/resources/loader_spec.rb +94 -0
  196. data/spec/spec_helper.rb +6 -0
  197. data/spec/tokenizers/calendars/timespan_tokenizer_spec.rb +1 -1
  198. data/spec/twitter_cldr_spec.rb +3 -3
  199. data/spec/utils_spec.rb +38 -0
  200. data/twitter_cldr.gemspec +25 -0
  201. metadata +156 -110
  202. data/spec/collation/sort_key_spec.rb +0 -56
  203. data/spec/shared/resources_spec.rb +0 -75
@@ -0,0 +1,167 @@
1
+ # Pending: failures identical to ICU.
2
+
3
+
4
+ x‎
5
+
6
+ x‏
7
+
8
+
9
+ X‎
10
+
11
+ X‏
12
+
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+ xֿ
42
+ // Xֿ
43
+ x
44
+ X
45
+ x x
46
+ x.
47
+ X.
48
+ x.x
49
+
50
+
51
+ x־x
52
+
53
+
54
+ x׳x
55
+
56
+
57
+ x״x
58
+ x0
59
+ X0
60
+ x0x
61
+ x12
62
+ X12
63
+ x12x
64
+ x2
65
+ X2
66
+ x2x
67
+ xׄx
68
+ xֽx
69
+ x‏x
70
+ x‎x
71
+ xׄx
72
+ xְx
73
+ xֱx
74
+ xֲx
75
+ xֳx
76
+ xִx
77
+ xֵx
78
+ xֶx
79
+ xַx
80
+ xָx
81
+ xֹx
82
+ xֻx
83
+ xׂx
84
+ xׁx
85
+ xּx
86
+ xֿx
87
+
88
+
89
+ xאx
90
+
91
+
92
+ xבx
93
+
94
+
95
+ xגx
96
+
97
+
98
+ xדx
99
+
100
+
101
+ xהx
102
+
103
+
104
+ xוx
105
+
106
+
107
+ xזx
108
+
109
+
110
+ xחx
111
+
112
+
113
+ xטx
114
+
115
+
116
+ xיx
117
+
118
+
119
+
120
+
121
+ xכx
122
+ xךx
123
+
124
+
125
+ xלx
126
+
127
+
128
+
129
+
130
+ xמx
131
+ xםx
132
+
133
+
134
+
135
+
136
+ xנx
137
+ xןx
138
+
139
+
140
+ xסx
141
+
142
+
143
+ xעx
144
+
145
+
146
+
147
+
148
+ xפx
149
+ xףx
150
+
151
+
152
+
153
+
154
+ xצx
155
+ xץx
156
+
157
+
158
+ xקx
159
+
160
+
161
+ xרx
162
+
163
+
164
+ xשx
165
+
166
+
167
+ xתx
@@ -0,0 +1,230 @@
1
+ # Pending: failures identical to ICU.
2
+
3
+ x‌
4
+ x‍
5
+ x‌
6
+ X‌
7
+ X‍
8
+ X‌
9
+ x़
10
+ // X़
11
+ x
12
+ X
13
+ x x
14
+ x.
15
+ X.
16
+ x.x
17
+ x0
18
+ X0
19
+ x0x
20
+ x12
21
+ X12
22
+ x12x
23
+ x2
24
+ X2
25
+ x2x
26
+ x‌x
27
+ x‍x
28
+ x‌x
29
+ x़x
30
+ xॐ
31
+ Xॐ
32
+ xॐx
33
+ xं
34
+ Xं
35
+ xँ
36
+ Xँ
37
+ xंx
38
+ xँx
39
+ xः
40
+ Xः
41
+ xःx
42
+ xअ
43
+ Xअ
44
+ xअx
45
+ xआ
46
+ Xआ
47
+ xआx
48
+ xइ
49
+ Xइ
50
+ xइx
51
+ xई
52
+ Xई
53
+ xईx
54
+ xउ
55
+ Xउ
56
+ xउx
57
+ xऊ
58
+ Xऊ
59
+ xऊx
60
+ xऋ
61
+ Xऋ
62
+ xऋx
63
+ xऌ
64
+ Xऌ
65
+ xऌx
66
+ xऍ
67
+ Xऍ
68
+ xऍx
69
+ xए
70
+ Xए
71
+ xएx
72
+ xऐ
73
+ Xऐ
74
+ xऐx
75
+ xऑ
76
+ Xऑ
77
+ xऑx
78
+ xओ
79
+ Xओ
80
+ xओx
81
+ xऔ
82
+ Xऔ
83
+ xऔx
84
+ xक
85
+ Xक
86
+ xकx
87
+ xख
88
+ Xख
89
+ xखx
90
+ xग
91
+ Xग
92
+ xगx
93
+ xघ
94
+ Xघ
95
+ xघx
96
+ xङ
97
+ Xङ
98
+ xङx
99
+ xच
100
+ Xच
101
+ xचx
102
+ xछ
103
+ Xछ
104
+ xछx
105
+ xज
106
+ Xज
107
+ xजx
108
+ xझ
109
+ Xझ
110
+ xझx
111
+ xञ
112
+ Xञ
113
+ xञx
114
+ xट
115
+ Xट
116
+ xटx
117
+ xठ
118
+ Xठ
119
+ xठx
120
+ xड
121
+ Xड
122
+ xडx
123
+ xढ
124
+ Xढ
125
+ xढx
126
+ xण
127
+ Xण
128
+ xणx
129
+ xत
130
+ Xत
131
+ xतx
132
+ xथ
133
+ Xथ
134
+ xथx
135
+ xद
136
+ Xद
137
+ xदx
138
+ xध
139
+ Xध
140
+ xधx
141
+ xन
142
+ Xन
143
+ xनx
144
+ xप
145
+ Xप
146
+ xपx
147
+ xफ
148
+ Xफ
149
+ xफx
150
+ xब
151
+ Xब
152
+ xबx
153
+ xभ
154
+ Xभ
155
+ xभx
156
+ xम
157
+ Xम
158
+ xमx
159
+ xय
160
+ Xय
161
+ xयx
162
+ xर
163
+ Xर
164
+ xरx
165
+ xल
166
+ Xल
167
+ xलx
168
+ xळ
169
+ Xळ
170
+ xळx
171
+ xव
172
+ Xव
173
+ xवx
174
+ xश
175
+ Xश
176
+ xशx
177
+ xष
178
+ Xष
179
+ xषx
180
+ xस
181
+ Xस
182
+ xसx
183
+ xह
184
+ Xह
185
+ xहx
186
+ xऽ
187
+ Xऽ
188
+ xऽx
189
+ xा
190
+ Xा
191
+ xाx
192
+ xि
193
+ Xि
194
+ xिx
195
+ xी
196
+ Xी
197
+ xीx
198
+ xु
199
+ Xु
200
+ xुx
201
+ xू
202
+ Xू
203
+ xूx
204
+ xृ
205
+ Xृ
206
+ xृx
207
+ xॄ
208
+ Xॄ
209
+ xॄx
210
+ xॅ
211
+ Xॅ
212
+ xॅx
213
+ xे
214
+ Xे
215
+ xेx
216
+ xै
217
+ Xै
218
+ xैx
219
+ xॉ
220
+ Xॉ
221
+ xॉx
222
+ xो
223
+ Xो
224
+ xोx
225
+ xौ
226
+ Xौ
227
+ xौx
228
+ x्
229
+ X्
230
+ x्x
@@ -0,0 +1,773 @@
1
+ # Pending: failures identical to ICU.
2
+
3
+ jjx
4
+ X
5
+ x x
6
+ x.
7
+ X.
8
+ x.x
9
+ x0
10
+ X0
11
+ x0x
12
+ x12
13
+ X12
14
+ x12x
15
+ x2
16
+ X2
17
+ x2x
18
+ xa
19
+ xA
20
+ Xa
21
+ XA
22
+
23
+
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+ xæx
59
+ xÆx
60
+ xax
61
+ xAx
62
+ xáx
63
+ xÁx
64
+ xàx
65
+ xÀx
66
+ xăx
67
+ xĂx
68
+ xâx
69
+ xÂx
70
+ xåx
71
+ xÅx
72
+ xäx
73
+ xÄx
74
+ xãx
75
+ xÃx
76
+ xāx
77
+ xĀx
78
+ xb
79
+ xB
80
+ Xb
81
+ XB
82
+ xbx
83
+ xBx
84
+ xc
85
+ xC
86
+ Xc
87
+ XC
88
+
89
+
90
+
91
+
92
+ xcx
93
+ xCx
94
+ xçx
95
+ xÇx
96
+ // xcs
97
+ xcS
98
+ xCs
99
+ xCS
100
+ // Xcs
101
+ XcS
102
+ XCs
103
+ XCS
104
+ // xccs
105
+ xccS
106
+ xcCs
107
+ xcCS
108
+ // xCcs
109
+ xCcS
110
+ xCCs
111
+ xCCS
112
+ // Xccs
113
+ XccS
114
+ XcCs
115
+ XcCS
116
+ // XCcs
117
+ XCcS
118
+ XCCs
119
+ XCCS
120
+ // xccsx
121
+ xccSx
122
+ xcCsx
123
+ xcCSx
124
+ // xCcsx
125
+ xCcSx
126
+ xCCsx
127
+ xCCSx
128
+ // xcsx
129
+ xcSx
130
+ xCsx
131
+ xCSx
132
+ xd
133
+ xD
134
+ Xd
135
+ XD
136
+ xdx
137
+ xDx
138
+ // xdz
139
+ xdZ
140
+ xDz
141
+ xDZ
142
+ // Xdz
143
+ XdZ
144
+ XDz
145
+ XDZ
146
+ // xddz
147
+ xddZ
148
+ xdDz
149
+ xdDZ
150
+ // xDdz
151
+ xDdZ
152
+ xDDz
153
+ xDDZ
154
+ // Xddz
155
+ XddZ
156
+ XdDz
157
+ XdDZ
158
+ // XDdz
159
+ XDdZ
160
+ XDDz
161
+ XDDZ
162
+ // xddzx
163
+ xddZx
164
+ xdDzx
165
+ xdDZx
166
+ // xDdzx
167
+ xDdZx
168
+ xDDzx
169
+ xDDZx
170
+ // xdzx
171
+ xdZx
172
+ xDzx
173
+ xDZx
174
+ // xdzs
175
+ // xdzS
176
+ xdZs
177
+ xdZS
178
+ // xDzs
179
+ xDzS
180
+ xDZs
181
+ xDZS
182
+ // Xdzs
183
+ // XdzS
184
+ XdZs
185
+ XdZS
186
+ // XDzs
187
+ XDzS
188
+ XDZs
189
+ XDZS
190
+ // xddzs
191
+ // xddzS
192
+ xddZs
193
+ xddZS
194
+ // xdDzs
195
+ xdDzS
196
+ xdDZs
197
+ xdDZS
198
+ // xDdzs
199
+ // xDdzS
200
+ xDdZs
201
+ xDdZS
202
+ // xDDzs
203
+ xDDzS
204
+ xDDZs
205
+ xDDZS
206
+ // Xddzs
207
+ // XddzS
208
+ XddZs
209
+ XddZS
210
+ // XdDzs
211
+ XdDzS
212
+ XdDZs
213
+ XdDZS
214
+ // XDdzs
215
+ // XDdzS
216
+ XDdZs
217
+ XDdZS
218
+ // XDDzs
219
+ XDDzS
220
+ XDDZs
221
+ XDDZS
222
+ // xddzsx
223
+ // xddzSx
224
+ xddZsx
225
+ xddZSx
226
+ // xdDzsx
227
+ xdDzSx
228
+ xdDZsx
229
+ xdDZSx
230
+ // xDdzsx
231
+ // xDdzSx
232
+ xDdZsx
233
+ xDdZSx
234
+ // xDDzsx
235
+ xDDzSx
236
+ xDDZsx
237
+ xDDZSx
238
+ // xdzsx
239
+ // xdzSx
240
+ xdZsx
241
+ xdZSx
242
+ // xDzsx
243
+ xDzSx
244
+ xDZsx
245
+ xDZSx
246
+ xe
247
+ xE
248
+ Xe
249
+ XE
250
+
251
+
252
+
253
+
254
+
255
+
256
+
257
+
258
+
259
+
260
+
261
+
262
+
263
+
264
+
265
+
266
+
267
+
268
+
269
+
270
+
271
+
272
+
273
+
274
+ xex
275
+ xEx
276
+ xéx
277
+ xÉx
278
+ xèx
279
+ xÈx
280
+ xĕx
281
+ xĔx
282
+ xêx
283
+ xÊx
284
+ xëx
285
+ xËx
286
+ xēx
287
+ xĒx
288
+ xf
289
+ xF
290
+ Xf
291
+ XF
292
+ xfx
293
+ xFx
294
+ xg
295
+ xG
296
+ Xg
297
+ XG
298
+ xgx
299
+ xGx
300
+ // xgy
301
+ xgY
302
+ xGy
303
+ xGY
304
+ // Xgy
305
+ XgY
306
+ XGy
307
+ XGY
308
+ // xggy
309
+ xggY
310
+ xgGy
311
+ xgGY
312
+ // xGgy
313
+ xGgY
314
+ xGGy
315
+ xGGY
316
+ // Xggy
317
+ XggY
318
+ XgGy
319
+ XgGY
320
+ // XGgy
321
+ XGgY
322
+ XGGy
323
+ XGGY
324
+ // xggyx
325
+ xggYx
326
+ xgGyx
327
+ xgGYx
328
+ // xGgyx
329
+ xGgYx
330
+ xGGyx
331
+ xGGYx
332
+ // xgyx
333
+ xgYx
334
+ xGyx
335
+ xGYx
336
+ xh
337
+ xH
338
+ Xh
339
+ XH
340
+ xhx
341
+ xHx
342
+ xi
343
+ xI
344
+ Xi
345
+ XI
346
+
347
+
348
+
349
+
350
+
351
+
352
+
353
+
354
+
355
+
356
+
357
+
358
+
359
+
360
+
361
+
362
+
363
+
364
+
365
+
366
+
367
+
368
+
369
+
370
+ xix
371
+ xIx
372
+ xíx
373
+ xÍx
374
+ xìx
375
+ xÌx
376
+ xĭx
377
+ xĬx
378
+ xîx
379
+ xÎx
380
+ xïx
381
+ xÏx
382
+ xīx
383
+ xĪx
384
+ xj
385
+ xJ
386
+ Xj
387
+ XJ
388
+ xjx
389
+ xJx
390
+ xk
391
+ xK
392
+ Xk
393
+ XK
394
+ xkx
395
+ xKx
396
+ xl
397
+ xL
398
+ Xl
399
+ XL
400
+ xlx
401
+ xLx
402
+ // xly
403
+ xlY
404
+ xLy
405
+ xLY
406
+ // Xly
407
+ XlY
408
+ XLy
409
+ XLY
410
+ // xlly
411
+ xllY
412
+ xlLy
413
+ xlLY
414
+ // xLly
415
+ xLlY
416
+ xLLy
417
+ xLLY
418
+ // Xlly
419
+ XllY
420
+ XlLy
421
+ XlLY
422
+ // XLly
423
+ XLlY
424
+ XLLy
425
+ XLLY
426
+ // xllyx
427
+ xllYx
428
+ xlLyx
429
+ xlLYx
430
+ // xLlyx
431
+ xLlYx
432
+ xLLyx
433
+ xLLYx
434
+ // xlyx
435
+ xlYx
436
+ xLyx
437
+ xLYx
438
+ xm
439
+ xM
440
+ Xm
441
+ XM
442
+ xmx
443
+ xMx
444
+ xn
445
+ xN
446
+ Xn
447
+ XN
448
+
449
+
450
+
451
+
452
+ xnx
453
+ xNx
454
+ xñx
455
+ xÑx
456
+ // xny
457
+ xnY
458
+ xNy
459
+ xNY
460
+ // Xny
461
+ XnY
462
+ XNy
463
+ XNY
464
+ // xnny
465
+ xnnY
466
+ xnNy
467
+ xnNY
468
+ // xNny
469
+ xNnY
470
+ xNNy
471
+ xNNY
472
+ // Xnny
473
+ XnnY
474
+ XnNy
475
+ XnNY
476
+ // XNny
477
+ XNnY
478
+ XNNy
479
+ XNNY
480
+ // xnnyx
481
+ xnnYx
482
+ xnNyx
483
+ xnNYx
484
+ // xNnyx
485
+ xNnYx
486
+ xNNyx
487
+ xNNYx
488
+ // xnyx
489
+ xnYx
490
+ xNyx
491
+ xNYx
492
+ xo
493
+ xO
494
+ Xo
495
+ XO
496
+
497
+
498
+
499
+
500
+
501
+
502
+
503
+
504
+
505
+
506
+
507
+
508
+
509
+
510
+
511
+
512
+
513
+
514
+
515
+
516
+
517
+
518
+
519
+
520
+
521
+
522
+
523
+
524
+ xœx
525
+ xŒx
526
+ xox
527
+ xOx
528
+ xóx
529
+ xÓx
530
+ xòx
531
+ xÒx
532
+ xŏx
533
+ xŎx
534
+ xôx
535
+ xÔx
536
+ xøx
537
+ xØx
538
+ xōx
539
+ xŌx
540
+
541
+
542
+
543
+
544
+
545
+
546
+
547
+
548
+ xöx
549
+ xÖx
550
+ xőx
551
+ xŐx
552
+ xp
553
+ xP
554
+ Xp
555
+ XP
556
+ xpx
557
+ xPx
558
+ xq
559
+ xQ
560
+ Xq
561
+ XQ
562
+ xqx
563
+ xQx
564
+ xr
565
+ xR
566
+ Xr
567
+ XR
568
+ xrx
569
+ xRx
570
+ xs
571
+ xS
572
+ Xs
573
+ XS
574
+ xsx
575
+ xSx
576
+ // xsz
577
+ xsZ
578
+ xSz
579
+ xSZ
580
+ // Xsz
581
+ XsZ
582
+ XSz
583
+ XSZ
584
+ // xssz
585
+ xssZ
586
+ xsSz
587
+ xsSZ
588
+ // xSsz
589
+ xSsZ
590
+ xSSz
591
+ xSSZ
592
+ // Xssz
593
+ XssZ
594
+ XsSz
595
+ XsSZ
596
+ // XSsz
597
+ XSsZ
598
+ XSSz
599
+ XSSZ
600
+ // xsszx
601
+ xssZx
602
+ xsSzx
603
+ xsSZx
604
+ // xSszx
605
+ xSsZx
606
+ xSSzx
607
+ xSSZx
608
+ // xszx
609
+ xsZx
610
+ xSzx
611
+ xSZx
612
+ xt
613
+ xT
614
+ Xt
615
+ XT
616
+ xtx
617
+ xTx
618
+ // xty
619
+ xtY
620
+ xTy
621
+ xTY
622
+ // Xty
623
+ XtY
624
+ XTy
625
+ XTY
626
+ // xtty
627
+ xttY
628
+ xtTy
629
+ xtTY
630
+ // xTty
631
+ xTtY
632
+ xTTy
633
+ xTTY
634
+ // Xtty
635
+ XttY
636
+ XtTy
637
+ XtTY
638
+ // XTty
639
+ XTtY
640
+ XTTy
641
+ XTTY
642
+ // xttyx
643
+ xttYx
644
+ xtTyx
645
+ xtTYx
646
+ // xTtyx
647
+ xTtYx
648
+ xTTyx
649
+ xTTYx
650
+ // xtyx
651
+ xtYx
652
+ xTyx
653
+ xTYx
654
+ xu
655
+ xU
656
+ Xu
657
+ XU
658
+
659
+
660
+
661
+
662
+
663
+
664
+
665
+
666
+
667
+
668
+
669
+
670
+
671
+
672
+
673
+
674
+
675
+
676
+
677
+
678
+ xux
679
+ xUx
680
+ xúx
681
+ xÚx
682
+ xùx
683
+ xÙx
684
+ xŭx
685
+ xŬx
686
+ xûx
687
+ xÛx
688
+ xūx
689
+ xŪx
690
+
691
+
692
+
693
+
694
+
695
+
696
+
697
+
698
+ xüx
699
+ xÜx
700
+ xűx
701
+ xŰx
702
+ xv
703
+ xV
704
+ Xv
705
+ XV
706
+ xvx
707
+ xVx
708
+ xw
709
+ xW
710
+ Xw
711
+ XW
712
+ xwx
713
+ xWx
714
+ xx
715
+ xX
716
+ Xx
717
+ XX
718
+ xxx
719
+ xXx
720
+ xy
721
+ xY
722
+ Xy
723
+ XY
724
+ xÿ
725
+
726
+ Xÿ
727
+
728
+ xyx
729
+ xYx
730
+ xÿx
731
+ xŸx
732
+ xz
733
+ xZ
734
+ Xz
735
+ XZ
736
+ xzx
737
+ xZx
738
+ // xzs
739
+ xzS
740
+ xZs
741
+ xZS
742
+ // Xzs
743
+ XzS
744
+ XZs
745
+ XZS
746
+ // xzsx
747
+ xzSx
748
+ xZsx
749
+ xZSx
750
+ // xzzs
751
+ xzzS
752
+ xzZs
753
+ xzZS
754
+ // xZzs
755
+ xZzS
756
+ xZZs
757
+ xZZS
758
+ // Xzzs
759
+ XzzS
760
+ XzZs
761
+ XzZS
762
+ // XZzs
763
+ XZzS
764
+ XZZs
765
+ XZZS
766
+ // xzzsx
767
+ xzzSx
768
+ xzZsx
769
+ xzZSx
770
+ // xZzsx
771
+ xZzSx
772
+ xZZsx
773
+ xZZSx