redmineup 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (118) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +21 -0
  3. data/Gemfile +4 -0
  4. data/README.md +204 -0
  5. data/Rakefile +11 -0
  6. data/app/controllers/redmineup_controller.rb +26 -0
  7. data/app/views/redmine_crm/redmineup_calendar/_calendar.html.erb +34 -0
  8. data/app/views/redmineup/_money.html.erb +44 -0
  9. data/app/views/redmineup/settings.html.erb +10 -0
  10. data/bitbucket-pipelines.yml +50 -0
  11. data/config/currency_iso.json +2544 -0
  12. data/config/locales/cs.yml +13 -0
  13. data/config/locales/de.yml +13 -0
  14. data/config/locales/en.yml +13 -0
  15. data/config/locales/es.yml +13 -0
  16. data/config/locales/ru.yml +13 -0
  17. data/config/routes.rb +5 -0
  18. data/doc/CHANGELOG +14 -0
  19. data/doc/LICENSE.txt +339 -0
  20. data/lib/redmineup/acts_as_draftable/draft.rb +40 -0
  21. data/lib/redmineup/acts_as_draftable/up_acts_as_draftable.rb +172 -0
  22. data/lib/redmineup/acts_as_list/list.rb +282 -0
  23. data/lib/redmineup/acts_as_priceable/up_acts_as_priceable.rb +33 -0
  24. data/lib/redmineup/acts_as_taggable/tag.rb +81 -0
  25. data/lib/redmineup/acts_as_taggable/tag_list.rb +111 -0
  26. data/lib/redmineup/acts_as_taggable/tagging.rb +16 -0
  27. data/lib/redmineup/acts_as_taggable/up_acts_as_taggable.rb +357 -0
  28. data/lib/redmineup/acts_as_viewed/up_acts_as_viewed.rb +274 -0
  29. data/lib/redmineup/acts_as_votable/up_acts_as_votable.rb +80 -0
  30. data/lib/redmineup/acts_as_votable/up_acts_as_voter.rb +20 -0
  31. data/lib/redmineup/acts_as_votable/votable.rb +323 -0
  32. data/lib/redmineup/acts_as_votable/vote.rb +28 -0
  33. data/lib/redmineup/acts_as_votable/voter.rb +131 -0
  34. data/lib/redmineup/assets_manager.rb +43 -0
  35. data/lib/redmineup/colors_helper.rb +192 -0
  36. data/lib/redmineup/compatibility/application_controller_patch.rb +33 -0
  37. data/lib/redmineup/compatibility/routing_mapper_patch.rb +25 -0
  38. data/lib/redmineup/currency/formatting.rb +224 -0
  39. data/lib/redmineup/currency/heuristics.rb +151 -0
  40. data/lib/redmineup/currency/loader.rb +23 -0
  41. data/lib/redmineup/currency.rb +450 -0
  42. data/lib/redmineup/engine.rb +4 -0
  43. data/lib/redmineup/helpers/external_assets_helper.rb +20 -0
  44. data/lib/redmineup/helpers/form_tag_helper.rb +88 -0
  45. data/lib/redmineup/helpers/rup_calendar_helper.rb +146 -0
  46. data/lib/redmineup/helpers/tags_helper.rb +13 -0
  47. data/lib/redmineup/helpers/vote_helper.rb +35 -0
  48. data/lib/redmineup/hooks/views_layouts_hook.rb +11 -0
  49. data/lib/redmineup/liquid/drops/attachment_drop.rb +47 -0
  50. data/lib/redmineup/liquid/drops/issue_relations_drop.rb +41 -0
  51. data/lib/redmineup/liquid/drops/issues_drop.rb +217 -0
  52. data/lib/redmineup/liquid/drops/news_drop.rb +54 -0
  53. data/lib/redmineup/liquid/drops/projects_drop.rb +86 -0
  54. data/lib/redmineup/liquid/drops/time_entries_drop.rb +65 -0
  55. data/lib/redmineup/liquid/drops/users_drop.rb +68 -0
  56. data/lib/redmineup/liquid/filters/arrays.rb +254 -0
  57. data/lib/redmineup/liquid/filters/base.rb +249 -0
  58. data/lib/redmineup/liquid/filters/colors.rb +31 -0
  59. data/lib/redmineup/money_helper.rb +66 -0
  60. data/lib/redmineup/patches/liquid_patch.rb +33 -0
  61. data/lib/redmineup/settings/money.rb +46 -0
  62. data/lib/redmineup/settings.rb +53 -0
  63. data/lib/redmineup/version.rb +3 -0
  64. data/lib/redmineup.rb +108 -0
  65. data/redmineup.gemspec +29 -0
  66. data/test/acts_as_draftable/draft_test.rb +29 -0
  67. data/test/acts_as_draftable/rup_acts_as_draftable_test.rb +178 -0
  68. data/test/acts_as_taggable/rup_acts_as_taggable_test.rb +350 -0
  69. data/test/acts_as_taggable/tag_list_test.rb +34 -0
  70. data/test/acts_as_taggable/tag_test.rb +72 -0
  71. data/test/acts_as_taggable/tagging_test.rb +15 -0
  72. data/test/acts_as_viewed/rup_acts_as_viewed_test.rb +47 -0
  73. data/test/acts_as_votable/rup_acts_as_votable_test.rb +19 -0
  74. data/test/acts_as_votable/rup_acts_as_voter_test.rb +14 -0
  75. data/test/acts_as_votable/votable_test.rb +507 -0
  76. data/test/acts_as_votable/voter_test.rb +296 -0
  77. data/test/currency_test.rb +292 -0
  78. data/test/database.yml +17 -0
  79. data/test/fixtures/attachments.yml +14 -0
  80. data/test/fixtures/issues.yml +24 -0
  81. data/test/fixtures/news.yml +8 -0
  82. data/test/fixtures/projects.yml +10 -0
  83. data/test/fixtures/taggings.yml +32 -0
  84. data/test/fixtures/tags.yml +11 -0
  85. data/test/fixtures/users.yml +9 -0
  86. data/test/fixtures/votable_caches.yml +2 -0
  87. data/test/fixtures/votables.yml +4 -0
  88. data/test/fixtures/voters.yml +6 -0
  89. data/test/liquid/drops/attachment_drop_test.rb +15 -0
  90. data/test/liquid/drops/issue_relations_drop_test.rb +24 -0
  91. data/test/liquid/drops/issues_drop_test.rb +38 -0
  92. data/test/liquid/drops/news_drop_test.rb +38 -0
  93. data/test/liquid/drops/projects_drop_test.rb +44 -0
  94. data/test/liquid/drops/uses_drop_test.rb +36 -0
  95. data/test/liquid/filters/arrays_filter_test.rb +31 -0
  96. data/test/liquid/filters/base_filter_test.rb +67 -0
  97. data/test/liquid/filters/colors_filter_test.rb +33 -0
  98. data/test/liquid/liquid_helper.rb +34 -0
  99. data/test/models/attachment.rb +3 -0
  100. data/test/models/issue.rb +21 -0
  101. data/test/models/issue_relation.rb +10 -0
  102. data/test/models/news.rb +3 -0
  103. data/test/models/project.rb +8 -0
  104. data/test/models/user.rb +11 -0
  105. data/test/models/vote_classes.rb +33 -0
  106. data/test/money_helper_test.rb +12 -0
  107. data/test/schema.rb +144 -0
  108. data/test/tags_helper_test.rb +29 -0
  109. data/test/test_helper.rb +66 -0
  110. data/test/vote_helper_test.rb +28 -0
  111. data/vendor/assets/images/money.png +0 -0
  112. data/vendor/assets/images/vcard.png +0 -0
  113. data/vendor/assets/javascripts/Chart.bundle.min.js +16 -0
  114. data/vendor/assets/javascripts/select2.js +2 -0
  115. data/vendor/assets/javascripts/select2_helpers.js +192 -0
  116. data/vendor/assets/stylesheets/money.css +96 -0
  117. data/vendor/assets/stylesheets/select2.css +424 -0
  118. metadata +295 -0
@@ -0,0 +1,2544 @@
1
+ {
2
+ "aed": {
3
+ "priority": 100,
4
+ "iso_code": "AED",
5
+ "name": "United Arab Emirates Dirham",
6
+ "symbol": "د.إ",
7
+ "alternate_symbols": ["DH", "Dhs"],
8
+ "subunit": "Fils",
9
+ "subunit_to_unit": 100,
10
+ "symbol_first": true,
11
+ "html_entity": "",
12
+ "decimal_mark": ".",
13
+ "thousands_separator": ",",
14
+ "iso_numeric": "784",
15
+ "smallest_denomination": 25
16
+ },
17
+ "afn": {
18
+ "priority": 100,
19
+ "iso_code": "AFN",
20
+ "name": "Afghan Afghani",
21
+ "symbol": "؋",
22
+ "alternate_symbols": ["Af", "Afs"],
23
+ "subunit": "Pul",
24
+ "subunit_to_unit": 100,
25
+ "symbol_first": false,
26
+ "html_entity": "",
27
+ "decimal_mark": ".",
28
+ "thousands_separator": ",",
29
+ "iso_numeric": "971",
30
+ "smallest_denomination": 100
31
+ },
32
+ "all": {
33
+ "priority": 100,
34
+ "iso_code": "ALL",
35
+ "name": "Albanian Lek",
36
+ "symbol": "L",
37
+ "disambiguate_symbol": "Lek",
38
+ "alternate_symbols": ["Lek"],
39
+ "subunit": "Qintar",
40
+ "subunit_to_unit": 100,
41
+ "symbol_first": false,
42
+ "html_entity": "",
43
+ "decimal_mark": ".",
44
+ "thousands_separator": ",",
45
+ "iso_numeric": "008",
46
+ "smallest_denomination": 100
47
+ },
48
+ "amd": {
49
+ "priority": 100,
50
+ "iso_code": "AMD",
51
+ "name": "Armenian Dram",
52
+ "symbol": "դր.",
53
+ "alternate_symbols": ["dram"],
54
+ "subunit": "Luma",
55
+ "subunit_to_unit": 100,
56
+ "symbol_first": false,
57
+ "html_entity": "",
58
+ "decimal_mark": ".",
59
+ "thousands_separator": ",",
60
+ "iso_numeric": "051",
61
+ "smallest_denomination": 10
62
+ },
63
+ "ang": {
64
+ "priority": 100,
65
+ "iso_code": "ANG",
66
+ "name": "Netherlands Antillean Gulden",
67
+ "symbol": "ƒ",
68
+ "alternate_symbols": ["NAƒ", "NAf", "f"],
69
+ "subunit": "Cent",
70
+ "subunit_to_unit": 100,
71
+ "symbol_first": true,
72
+ "html_entity": "ƒ",
73
+ "decimal_mark": ",",
74
+ "thousands_separator": ".",
75
+ "iso_numeric": "532",
76
+ "smallest_denomination": 1
77
+ },
78
+ "aoa": {
79
+ "priority": 100,
80
+ "iso_code": "AOA",
81
+ "name": "Angolan Kwanza",
82
+ "symbol": "Kz",
83
+ "alternate_symbols": [],
84
+ "subunit": "Cêntimo",
85
+ "subunit_to_unit": 100,
86
+ "symbol_first": false,
87
+ "html_entity": "",
88
+ "decimal_mark": ".",
89
+ "thousands_separator": ",",
90
+ "iso_numeric": "973",
91
+ "smallest_denomination": 10
92
+ },
93
+ "ars": {
94
+ "priority": 100,
95
+ "iso_code": "ARS",
96
+ "name": "Argentine Peso",
97
+ "symbol": "$",
98
+ "disambiguate_symbol": "$m/n",
99
+ "alternate_symbols": ["$m/n", "m$n"],
100
+ "subunit": "Centavo",
101
+ "subunit_to_unit": 100,
102
+ "symbol_first": true,
103
+ "html_entity": "₱",
104
+ "decimal_mark": ",",
105
+ "thousands_separator": ".",
106
+ "iso_numeric": "032",
107
+ "smallest_denomination": 1
108
+ },
109
+ "aud": {
110
+ "priority": 4,
111
+ "iso_code": "AUD",
112
+ "name": "Australian Dollar",
113
+ "symbol": "$",
114
+ "disambiguate_symbol": "A$",
115
+ "alternate_symbols": ["A$"],
116
+ "subunit": "Cent",
117
+ "subunit_to_unit": 100,
118
+ "symbol_first": true,
119
+ "html_entity": "$",
120
+ "decimal_mark": ".",
121
+ "thousands_separator": ",",
122
+ "iso_numeric": "036",
123
+ "smallest_denomination": 5
124
+ },
125
+ "awg": {
126
+ "priority": 100,
127
+ "iso_code": "AWG",
128
+ "name": "Aruban Florin",
129
+ "symbol": "ƒ",
130
+ "alternate_symbols": ["Afl"],
131
+ "subunit": "Cent",
132
+ "subunit_to_unit": 100,
133
+ "symbol_first": false,
134
+ "html_entity": "ƒ",
135
+ "decimal_mark": ".",
136
+ "thousands_separator": ",",
137
+ "iso_numeric": "533",
138
+ "smallest_denomination": 5
139
+ },
140
+ "azn": {
141
+ "priority": 100,
142
+ "iso_code": "AZN",
143
+ "name": "Azerbaijani Manat",
144
+ "symbol": "₼",
145
+ "alternate_symbols": ["m", "man"],
146
+ "subunit": "Qəpik",
147
+ "subunit_to_unit": 100,
148
+ "symbol_first": true,
149
+ "html_entity": "",
150
+ "decimal_mark": ".",
151
+ "thousands_separator": ",",
152
+ "iso_numeric": "944",
153
+ "smallest_denomination": 1
154
+ },
155
+ "bam": {
156
+ "priority": 100,
157
+ "iso_code": "BAM",
158
+ "name": "Bosnia and Herzegovina Convertible Mark",
159
+ "symbol": "КМ",
160
+ "alternate_symbols": ["KM"],
161
+ "subunit": "Fening",
162
+ "subunit_to_unit": 100,
163
+ "symbol_first": true,
164
+ "html_entity": "",
165
+ "decimal_mark": ".",
166
+ "thousands_separator": ",",
167
+ "iso_numeric": "977",
168
+ "smallest_denomination": 5
169
+ },
170
+ "bbd": {
171
+ "priority": 100,
172
+ "iso_code": "BBD",
173
+ "name": "Barbadian Dollar",
174
+ "symbol": "$",
175
+ "disambiguate_symbol": "Bds$",
176
+ "alternate_symbols": ["Bds$"],
177
+ "subunit": "Cent",
178
+ "subunit_to_unit": 100,
179
+ "symbol_first": false,
180
+ "html_entity": "$",
181
+ "decimal_mark": ".",
182
+ "thousands_separator": ",",
183
+ "iso_numeric": "052",
184
+ "smallest_denomination": 1
185
+ },
186
+ "bdt": {
187
+ "priority": 100,
188
+ "iso_code": "BDT",
189
+ "name": "Bangladeshi Taka",
190
+ "symbol": "৳",
191
+ "alternate_symbols": ["Tk"],
192
+ "subunit": "Paisa",
193
+ "subunit_to_unit": 100,
194
+ "symbol_first": true,
195
+ "html_entity": "",
196
+ "decimal_mark": ".",
197
+ "thousands_separator": ",",
198
+ "iso_numeric": "050",
199
+ "smallest_denomination": 1
200
+ },
201
+ "bgn": {
202
+ "priority": 100,
203
+ "iso_code": "BGN",
204
+ "name": "Bulgarian Lev",
205
+ "symbol": "лв",
206
+ "alternate_symbols": ["lev", "leva", "лев", "лева"],
207
+ "subunit": "Stotinka",
208
+ "subunit_to_unit": 100,
209
+ "symbol_first": false,
210
+ "html_entity": "",
211
+ "decimal_mark": ".",
212
+ "thousands_separator": ",",
213
+ "iso_numeric": "975",
214
+ "smallest_denomination": 1
215
+ },
216
+ "bhd": {
217
+ "priority": 100,
218
+ "iso_code": "BHD",
219
+ "name": "Bahraini Dinar",
220
+ "symbol": "ب.د",
221
+ "alternate_symbols": ["BD"],
222
+ "subunit": "Fils",
223
+ "subunit_to_unit": 1000,
224
+ "symbol_first": true,
225
+ "html_entity": "",
226
+ "decimal_mark": ".",
227
+ "thousands_separator": ",",
228
+ "iso_numeric": "048",
229
+ "smallest_denomination": 5
230
+ },
231
+ "bif": {
232
+ "priority": 100,
233
+ "iso_code": "BIF",
234
+ "name": "Burundian Franc",
235
+ "symbol": "Fr",
236
+ "disambiguate_symbol": "FBu",
237
+ "alternate_symbols": ["FBu"],
238
+ "subunit": "Centime",
239
+ "subunit_to_unit": 100,
240
+ "symbol_first": false,
241
+ "html_entity": "",
242
+ "decimal_mark": ".",
243
+ "thousands_separator": ",",
244
+ "iso_numeric": "108",
245
+ "smallest_denomination": 100
246
+ },
247
+ "bmd": {
248
+ "priority": 100,
249
+ "iso_code": "BMD",
250
+ "name": "Bermudian Dollar",
251
+ "symbol": "$",
252
+ "disambiguate_symbol": "BD$",
253
+ "alternate_symbols": ["BD$"],
254
+ "subunit": "Cent",
255
+ "subunit_to_unit": 100,
256
+ "symbol_first": true,
257
+ "html_entity": "$",
258
+ "decimal_mark": ".",
259
+ "thousands_separator": ",",
260
+ "iso_numeric": "060",
261
+ "smallest_denomination": 1
262
+ },
263
+ "bnd": {
264
+ "priority": 100,
265
+ "iso_code": "BND",
266
+ "name": "Brunei Dollar",
267
+ "symbol": "$",
268
+ "disambiguate_symbol": "BND",
269
+ "alternate_symbols": ["B$"],
270
+ "subunit": "Sen",
271
+ "subunit_to_unit": 100,
272
+ "symbol_first": true,
273
+ "html_entity": "$",
274
+ "decimal_mark": ".",
275
+ "thousands_separator": ",",
276
+ "iso_numeric": "096",
277
+ "smallest_denomination": 1
278
+ },
279
+ "bob": {
280
+ "priority": 100,
281
+ "iso_code": "BOB",
282
+ "name": "Bolivian Boliviano",
283
+ "symbol": "Bs.",
284
+ "alternate_symbols": ["Bs"],
285
+ "subunit": "Centavo",
286
+ "subunit_to_unit": 100,
287
+ "symbol_first": true,
288
+ "html_entity": "",
289
+ "decimal_mark": ".",
290
+ "thousands_separator": ",",
291
+ "iso_numeric": "068",
292
+ "smallest_denomination": 10
293
+ },
294
+ "brl": {
295
+ "priority": 100,
296
+ "iso_code": "BRL",
297
+ "name": "Brazilian Real",
298
+ "symbol": "R$",
299
+ "subunit": "Centavo",
300
+ "subunit_to_unit": 100,
301
+ "symbol_first": true,
302
+ "html_entity": "R$",
303
+ "decimal_mark": ",",
304
+ "thousands_separator": ".",
305
+ "iso_numeric": "986",
306
+ "smallest_denomination": 5
307
+ },
308
+ "bsd": {
309
+ "priority": 100,
310
+ "iso_code": "BSD",
311
+ "name": "Bahamian Dollar",
312
+ "symbol": "$",
313
+ "disambiguate_symbol": "BSD",
314
+ "alternate_symbols": ["B$"],
315
+ "subunit": "Cent",
316
+ "subunit_to_unit": 100,
317
+ "symbol_first": true,
318
+ "html_entity": "$",
319
+ "decimal_mark": ".",
320
+ "thousands_separator": ",",
321
+ "iso_numeric": "044",
322
+ "smallest_denomination": 1
323
+ },
324
+ "btn": {
325
+ "priority": 100,
326
+ "iso_code": "BTN",
327
+ "name": "Bhutanese Ngultrum",
328
+ "symbol": "Nu.",
329
+ "alternate_symbols": ["Nu"],
330
+ "subunit": "Chertrum",
331
+ "subunit_to_unit": 100,
332
+ "symbol_first": false,
333
+ "html_entity": "",
334
+ "decimal_mark": ".",
335
+ "thousands_separator": ",",
336
+ "iso_numeric": "064",
337
+ "smallest_denomination": 5
338
+ },
339
+ "bwp": {
340
+ "priority": 100,
341
+ "iso_code": "BWP",
342
+ "name": "Botswana Pula",
343
+ "symbol": "P",
344
+ "alternate_symbols": [],
345
+ "subunit": "Thebe",
346
+ "subunit_to_unit": 100,
347
+ "symbol_first": true,
348
+ "html_entity": "",
349
+ "decimal_mark": ".",
350
+ "thousands_separator": ",",
351
+ "iso_numeric": "072",
352
+ "smallest_denomination": 5
353
+ },
354
+ "byr": {
355
+ "priority": 100,
356
+ "iso_code": "BYR",
357
+ "name": "Belarusian Ruble (Old)",
358
+ "symbol": "Br",
359
+ "disambiguate_symbol": "BYR",
360
+ "alternate_symbols": ["бел. руб.", "б.р.", "руб.", "р."],
361
+ "subunit": null,
362
+ "subunit_to_unit": 1,
363
+ "symbol_first": false,
364
+ "html_entity": "",
365
+ "decimal_mark": ",",
366
+ "thousands_separator": " ",
367
+ "iso_numeric": "974",
368
+ "smallest_denomination": 50
369
+ },
370
+ "byn": {
371
+ "priority": 100,
372
+ "iso_code": "BYN",
373
+ "name": "Belarusian Ruble",
374
+ "symbol": "Br",
375
+ "disambiguate_symbol": "BYN",
376
+ "alternate_symbols": ["бел. руб.", "б.р.", "руб.", "р."],
377
+ "subunit": null,
378
+ "subunit_to_unit": 1,
379
+ "symbol_first": false,
380
+ "html_entity": "",
381
+ "decimal_mark": ",",
382
+ "thousands_separator": " ",
383
+ "iso_numeric": "933",
384
+ "smallest_denomination": 50
385
+ },
386
+ "bzd": {
387
+ "priority": 100,
388
+ "iso_code": "BZD",
389
+ "name": "Belize Dollar",
390
+ "symbol": "$",
391
+ "disambiguate_symbol": "BZ$",
392
+ "alternate_symbols": ["BZ$"],
393
+ "subunit": "Cent",
394
+ "subunit_to_unit": 100,
395
+ "symbol_first": true,
396
+ "html_entity": "$",
397
+ "decimal_mark": ".",
398
+ "thousands_separator": ",",
399
+ "iso_numeric": "084",
400
+ "smallest_denomination": 1
401
+ },
402
+ "cad": {
403
+ "priority": 5,
404
+ "iso_code": "CAD",
405
+ "name": "Canadian Dollar",
406
+ "symbol": "$",
407
+ "disambiguate_symbol": "C$",
408
+ "alternate_symbols": ["C$", "CAD$"],
409
+ "subunit": "Cent",
410
+ "subunit_to_unit": 100,
411
+ "symbol_first": true,
412
+ "html_entity": "$",
413
+ "decimal_mark": ".",
414
+ "thousands_separator": ",",
415
+ "iso_numeric": "124",
416
+ "smallest_denomination": 5
417
+ },
418
+ "cdf": {
419
+ "priority": 100,
420
+ "iso_code": "CDF",
421
+ "name": "Congolese Franc",
422
+ "symbol": "Fr",
423
+ "disambiguate_symbol": "FC",
424
+ "alternate_symbols": ["FC"],
425
+ "subunit": "Centime",
426
+ "subunit_to_unit": 100,
427
+ "symbol_first": false,
428
+ "html_entity": "",
429
+ "decimal_mark": ".",
430
+ "thousands_separator": ",",
431
+ "iso_numeric": "976",
432
+ "smallest_denomination": 1
433
+ },
434
+ "chf": {
435
+ "priority": 100,
436
+ "iso_code": "CHF",
437
+ "name": "Swiss Franc",
438
+ "symbol": "CHF",
439
+ "alternate_symbols": ["SFr", "Fr"],
440
+ "subunit": "Rappen",
441
+ "subunit_to_unit": 100,
442
+ "symbol_first": true,
443
+ "html_entity": "",
444
+ "decimal_mark": ".",
445
+ "thousands_separator": ",",
446
+ "iso_numeric": "756",
447
+ "smallest_denomination": 5
448
+ },
449
+ "clf": {
450
+ "priority": 100,
451
+ "iso_code": "CLF",
452
+ "name": "Unidad de Fomento",
453
+ "symbol": "UF",
454
+ "alternate_symbols": [],
455
+ "subunit": "Peso",
456
+ "subunit_to_unit": 10000,
457
+ "symbol_first": true,
458
+ "html_entity": "₱",
459
+ "decimal_mark": ",",
460
+ "thousands_separator": ".",
461
+ "iso_numeric": "990"
462
+ },
463
+ "clp": {
464
+ "priority": 100,
465
+ "iso_code": "CLP",
466
+ "name": "Chilean Peso",
467
+ "symbol": "$",
468
+ "disambiguate_symbol": "CLP",
469
+ "alternate_symbols": [],
470
+ "subunit": "Peso",
471
+ "subunit_to_unit": 1,
472
+ "symbol_first": true,
473
+ "html_entity": "$",
474
+ "decimal_mark": ",",
475
+ "thousands_separator": ".",
476
+ "iso_numeric": "152",
477
+ "smallest_denomination": 1
478
+ },
479
+ "cny": {
480
+ "priority": 100,
481
+ "iso_code": "CNY",
482
+ "name": "Chinese Renminbi Yuan",
483
+ "symbol": "¥",
484
+ "alternate_symbols": ["CN¥", "元", "CN元"],
485
+ "subunit": "Fen",
486
+ "subunit_to_unit": 100,
487
+ "symbol_first": true,
488
+ "html_entity": "¥",
489
+ "decimal_mark": ".",
490
+ "thousands_separator": ",",
491
+ "iso_numeric": "156",
492
+ "smallest_denomination": 1
493
+ },
494
+ "cop": {
495
+ "priority": 100,
496
+ "iso_code": "COP",
497
+ "name": "Colombian Peso",
498
+ "symbol": "$",
499
+ "disambiguate_symbol": "COL$",
500
+ "alternate_symbols": ["COL$"],
501
+ "subunit": "Centavo",
502
+ "subunit_to_unit": 100,
503
+ "symbol_first": true,
504
+ "html_entity": "₱",
505
+ "decimal_mark": ",",
506
+ "thousands_separator": ".",
507
+ "iso_numeric": "170",
508
+ "smallest_denomination": 20
509
+ },
510
+ "crc": {
511
+ "priority": 100,
512
+ "iso_code": "CRC",
513
+ "name": "Costa Rican Colón",
514
+ "symbol": "₡",
515
+ "alternate_symbols": ["¢"],
516
+ "subunit": "Céntimo",
517
+ "subunit_to_unit": 100,
518
+ "symbol_first": true,
519
+ "html_entity": "₡",
520
+ "decimal_mark": ",",
521
+ "thousands_separator": ".",
522
+ "iso_numeric": "188",
523
+ "smallest_denomination": 500
524
+ },
525
+ "cuc": {
526
+ "priority": 100,
527
+ "iso_code": "CUC",
528
+ "name": "Cuban Convertible Peso",
529
+ "symbol": "$",
530
+ "disambiguate_symbol": "CUC$",
531
+ "alternate_symbols": ["CUC$"],
532
+ "subunit": "Centavo",
533
+ "subunit_to_unit": 100,
534
+ "symbol_first": false,
535
+ "html_entity": "",
536
+ "decimal_mark": ".",
537
+ "thousands_separator": ",",
538
+ "iso_numeric": "931",
539
+ "smallest_denomination": 1
540
+ },
541
+ "cup": {
542
+ "priority": 100,
543
+ "iso_code": "CUP",
544
+ "name": "Cuban Peso",
545
+ "symbol": "$",
546
+ "disambiguate_symbol": "$MN",
547
+ "alternate_symbols": ["$MN"],
548
+ "subunit": "Centavo",
549
+ "subunit_to_unit": 100,
550
+ "symbol_first": true,
551
+ "html_entity": "₱",
552
+ "decimal_mark": ".",
553
+ "thousands_separator": ",",
554
+ "iso_numeric": "192",
555
+ "smallest_denomination": 1
556
+ },
557
+ "cve": {
558
+ "priority": 100,
559
+ "iso_code": "CVE",
560
+ "name": "Cape Verdean Escudo",
561
+ "symbol": "$",
562
+ "disambiguate_symbol": "Esc",
563
+ "alternate_symbols": ["Esc"],
564
+ "subunit": "Centavo",
565
+ "subunit_to_unit": 100,
566
+ "symbol_first": false,
567
+ "html_entity": "",
568
+ "decimal_mark": ".",
569
+ "thousands_separator": ",",
570
+ "iso_numeric": "132",
571
+ "smallest_denomination": 100
572
+ },
573
+ "czk": {
574
+ "priority": 100,
575
+ "iso_code": "CZK",
576
+ "name": "Czech Koruna",
577
+ "symbol": "Kč",
578
+ "alternate_symbols": [],
579
+ "subunit": "Haléř",
580
+ "subunit_to_unit": 100,
581
+ "symbol_first": false,
582
+ "html_entity": "",
583
+ "decimal_mark": ",",
584
+ "thousands_separator": ".",
585
+ "iso_numeric": "203",
586
+ "smallest_denomination": 100
587
+ },
588
+ "djf": {
589
+ "priority": 100,
590
+ "iso_code": "DJF",
591
+ "name": "Djiboutian Franc",
592
+ "symbol": "Fdj",
593
+ "alternate_symbols": [],
594
+ "subunit": "Centime",
595
+ "subunit_to_unit": 100,
596
+ "symbol_first": false,
597
+ "html_entity": "",
598
+ "decimal_mark": ".",
599
+ "thousands_separator": ",",
600
+ "iso_numeric": "262",
601
+ "smallest_denomination": 100
602
+ },
603
+ "dkk": {
604
+ "priority": 100,
605
+ "iso_code": "DKK",
606
+ "name": "Danish Krone",
607
+ "symbol": "kr",
608
+ "disambiguate_symbol": "DKK",
609
+ "alternate_symbols": [",-"],
610
+ "subunit": "Øre",
611
+ "subunit_to_unit": 100,
612
+ "symbol_first": false,
613
+ "html_entity": "",
614
+ "decimal_mark": ",",
615
+ "thousands_separator": ".",
616
+ "iso_numeric": "208",
617
+ "smallest_denomination": 50
618
+ },
619
+ "dop": {
620
+ "priority": 100,
621
+ "iso_code": "DOP",
622
+ "name": "Dominican Peso",
623
+ "symbol": "$",
624
+ "disambiguate_symbol": "RD$",
625
+ "alternate_symbols": ["RD$"],
626
+ "subunit": "Centavo",
627
+ "subunit_to_unit": 100,
628
+ "symbol_first": true,
629
+ "html_entity": "₱",
630
+ "decimal_mark": ".",
631
+ "thousands_separator": ",",
632
+ "iso_numeric": "214",
633
+ "smallest_denomination": 100
634
+ },
635
+ "dzd": {
636
+ "priority": 100,
637
+ "iso_code": "DZD",
638
+ "name": "Algerian Dinar",
639
+ "symbol": "د.ج",
640
+ "alternate_symbols": ["DA"],
641
+ "subunit": "Centime",
642
+ "subunit_to_unit": 100,
643
+ "symbol_first": false,
644
+ "html_entity": "",
645
+ "decimal_mark": ".",
646
+ "thousands_separator": ",",
647
+ "iso_numeric": "012",
648
+ "smallest_denomination": 100
649
+ },
650
+ "egp": {
651
+ "priority": 100,
652
+ "iso_code": "EGP",
653
+ "name": "Egyptian Pound",
654
+ "symbol": "ج.م",
655
+ "alternate_symbols": ["LE", "E£", "L.E."],
656
+ "subunit": "Piastre",
657
+ "subunit_to_unit": 100,
658
+ "symbol_first": true,
659
+ "html_entity": "£",
660
+ "decimal_mark": ".",
661
+ "thousands_separator": ",",
662
+ "iso_numeric": "818",
663
+ "smallest_denomination": 25
664
+ },
665
+ "ern": {
666
+ "priority": 100,
667
+ "iso_code": "ERN",
668
+ "name": "Eritrean Nakfa",
669
+ "symbol": "Nfk",
670
+ "alternate_symbols": [],
671
+ "subunit": "Cent",
672
+ "subunit_to_unit": 100,
673
+ "symbol_first": false,
674
+ "html_entity": "",
675
+ "decimal_mark": ".",
676
+ "thousands_separator": ",",
677
+ "iso_numeric": "232",
678
+ "smallest_denomination": 1
679
+ },
680
+ "etb": {
681
+ "priority": 100,
682
+ "iso_code": "ETB",
683
+ "name": "Ethiopian Birr",
684
+ "symbol": "Br",
685
+ "disambiguate_symbol": "ETB",
686
+ "alternate_symbols": [],
687
+ "subunit": "Santim",
688
+ "subunit_to_unit": 100,
689
+ "symbol_first": false,
690
+ "html_entity": "",
691
+ "decimal_mark": ".",
692
+ "thousands_separator": ",",
693
+ "iso_numeric": "230",
694
+ "smallest_denomination": 1
695
+ },
696
+ "eur": {
697
+ "priority": 2,
698
+ "iso_code": "EUR",
699
+ "name": "Euro",
700
+ "symbol": "€",
701
+ "alternate_symbols": [],
702
+ "subunit": "Cent",
703
+ "subunit_to_unit": 100,
704
+ "symbol_first": true,
705
+ "html_entity": "€",
706
+ "decimal_mark": ",",
707
+ "thousands_separator": ".",
708
+ "iso_numeric": "978",
709
+ "smallest_denomination": 1
710
+ },
711
+ "fjd": {
712
+ "priority": 100,
713
+ "iso_code": "FJD",
714
+ "name": "Fijian Dollar",
715
+ "symbol": "$",
716
+ "disambiguate_symbol": "FJ$",
717
+ "alternate_symbols": ["FJ$"],
718
+ "subunit": "Cent",
719
+ "subunit_to_unit": 100,
720
+ "symbol_first": false,
721
+ "html_entity": "$",
722
+ "decimal_mark": ".",
723
+ "thousands_separator": ",",
724
+ "iso_numeric": "242",
725
+ "smallest_denomination": 5
726
+ },
727
+ "fkp": {
728
+ "priority": 100,
729
+ "iso_code": "FKP",
730
+ "name": "Falkland Pound",
731
+ "symbol": "£",
732
+ "disambiguate_symbol": "FK£",
733
+ "alternate_symbols": ["FK£"],
734
+ "subunit": "Penny",
735
+ "subunit_to_unit": 100,
736
+ "symbol_first": false,
737
+ "html_entity": "£",
738
+ "decimal_mark": ".",
739
+ "thousands_separator": ",",
740
+ "iso_numeric": "238",
741
+ "smallest_denomination": 1
742
+ },
743
+ "gbp": {
744
+ "priority": 3,
745
+ "iso_code": "GBP",
746
+ "name": "British Pound",
747
+ "symbol": "£",
748
+ "alternate_symbols": [],
749
+ "subunit": "Penny",
750
+ "subunit_to_unit": 100,
751
+ "symbol_first": true,
752
+ "html_entity": "£",
753
+ "decimal_mark": ".",
754
+ "thousands_separator": ",",
755
+ "iso_numeric": "826",
756
+ "smallest_denomination": 1
757
+ },
758
+ "gel": {
759
+ "priority": 100,
760
+ "iso_code": "GEL",
761
+ "name": "Georgian Lari",
762
+ "symbol": "ლ",
763
+ "alternate_symbols": ["lari"],
764
+ "subunit": "Tetri",
765
+ "subunit_to_unit": 100,
766
+ "symbol_first": false,
767
+ "html_entity": "",
768
+ "decimal_mark": ".",
769
+ "thousands_separator": ",",
770
+ "iso_numeric": "981",
771
+ "smallest_denomination": 1
772
+ },
773
+ "ghs": {
774
+ "priority": 100,
775
+ "iso_code": "GHS",
776
+ "name": "Ghanaian Cedi",
777
+ "symbol": "₵",
778
+ "alternate_symbols": ["GH¢", "GH₵"],
779
+ "subunit": "Pesewa",
780
+ "subunit_to_unit": 100,
781
+ "symbol_first": true,
782
+ "html_entity": "₵",
783
+ "decimal_mark": ".",
784
+ "thousands_separator": ",",
785
+ "iso_numeric": "936",
786
+ "smallest_denomination": 1
787
+ },
788
+ "gip": {
789
+ "priority": 100,
790
+ "iso_code": "GIP",
791
+ "name": "Gibraltar Pound",
792
+ "symbol": "£",
793
+ "disambiguate_symbol": "GIP",
794
+ "alternate_symbols": [],
795
+ "subunit": "Penny",
796
+ "subunit_to_unit": 100,
797
+ "symbol_first": true,
798
+ "html_entity": "£",
799
+ "decimal_mark": ".",
800
+ "thousands_separator": ",",
801
+ "iso_numeric": "292",
802
+ "smallest_denomination": 1
803
+ },
804
+ "gmd": {
805
+ "priority": 100,
806
+ "iso_code": "GMD",
807
+ "name": "Gambian Dalasi",
808
+ "symbol": "D",
809
+ "alternate_symbols": [],
810
+ "subunit": "Butut",
811
+ "subunit_to_unit": 100,
812
+ "symbol_first": false,
813
+ "html_entity": "",
814
+ "decimal_mark": ".",
815
+ "thousands_separator": ",",
816
+ "iso_numeric": "270",
817
+ "smallest_denomination": 1
818
+ },
819
+ "gnf": {
820
+ "priority": 100,
821
+ "iso_code": "GNF",
822
+ "name": "Guinean Franc",
823
+ "symbol": "Fr",
824
+ "disambiguate_symbol": "FG",
825
+ "alternate_symbols": ["FG", "GFr"],
826
+ "subunit": "Centime",
827
+ "subunit_to_unit": 100,
828
+ "symbol_first": false,
829
+ "html_entity": "",
830
+ "decimal_mark": ".",
831
+ "thousands_separator": ",",
832
+ "iso_numeric": "324",
833
+ "smallest_denomination": 100
834
+ },
835
+ "gtq": {
836
+ "priority": 100,
837
+ "iso_code": "GTQ",
838
+ "name": "Guatemalan Quetzal",
839
+ "symbol": "Q",
840
+ "alternate_symbols": [],
841
+ "subunit": "Centavo",
842
+ "subunit_to_unit": 100,
843
+ "symbol_first": true,
844
+ "html_entity": "",
845
+ "decimal_mark": ".",
846
+ "thousands_separator": ",",
847
+ "iso_numeric": "320",
848
+ "smallest_denomination": 1
849
+ },
850
+ "gyd": {
851
+ "priority": 100,
852
+ "iso_code": "GYD",
853
+ "name": "Guyanese Dollar",
854
+ "symbol": "$",
855
+ "disambiguate_symbol": "G$",
856
+ "alternate_symbols": ["G$"],
857
+ "subunit": "Cent",
858
+ "subunit_to_unit": 100,
859
+ "symbol_first": false,
860
+ "html_entity": "$",
861
+ "decimal_mark": ".",
862
+ "thousands_separator": ",",
863
+ "iso_numeric": "328",
864
+ "smallest_denomination": 100
865
+ },
866
+ "hkd": {
867
+ "priority": 100,
868
+ "iso_code": "HKD",
869
+ "name": "Hong Kong Dollar",
870
+ "symbol": "$",
871
+ "disambiguate_symbol": "HK$",
872
+ "alternate_symbols": ["HK$"],
873
+ "subunit": "Cent",
874
+ "subunit_to_unit": 100,
875
+ "symbol_first": true,
876
+ "html_entity": "$",
877
+ "decimal_mark": ".",
878
+ "thousands_separator": ",",
879
+ "iso_numeric": "344",
880
+ "smallest_denomination": 10
881
+ },
882
+ "hnl": {
883
+ "priority": 100,
884
+ "iso_code": "HNL",
885
+ "name": "Honduran Lempira",
886
+ "symbol": "L",
887
+ "disambiguate_symbol": "HNL",
888
+ "alternate_symbols": [],
889
+ "subunit": "Centavo",
890
+ "subunit_to_unit": 100,
891
+ "symbol_first": true,
892
+ "html_entity": "",
893
+ "decimal_mark": ".",
894
+ "thousands_separator": ",",
895
+ "iso_numeric": "340",
896
+ "smallest_denomination": 5
897
+ },
898
+ "hrk": {
899
+ "priority": 100,
900
+ "iso_code": "HRK",
901
+ "name": "Croatian Kuna",
902
+ "symbol": "kn",
903
+ "alternate_symbols": [],
904
+ "subunit": "Lipa",
905
+ "subunit_to_unit": 100,
906
+ "symbol_first": true,
907
+ "html_entity": "",
908
+ "decimal_mark": ",",
909
+ "thousands_separator": ".",
910
+ "iso_numeric": "191",
911
+ "smallest_denomination": 1
912
+ },
913
+ "htg": {
914
+ "priority": 100,
915
+ "iso_code": "HTG",
916
+ "name": "Haitian Gourde",
917
+ "symbol": "G",
918
+ "alternate_symbols": [],
919
+ "subunit": "Centime",
920
+ "subunit_to_unit": 100,
921
+ "symbol_first": false,
922
+ "html_entity": "",
923
+ "decimal_mark": ".",
924
+ "thousands_separator": ",",
925
+ "iso_numeric": "332",
926
+ "smallest_denomination": 5
927
+ },
928
+ "huf": {
929
+ "priority": 100,
930
+ "iso_code": "HUF",
931
+ "name": "Hungarian Forint",
932
+ "symbol": "Ft",
933
+ "alternate_symbols": [],
934
+ "subunit": "Fillér",
935
+ "subunit_to_unit": 100,
936
+ "symbol_first": false,
937
+ "html_entity": "",
938
+ "decimal_mark": ",",
939
+ "thousands_separator": ".",
940
+ "iso_numeric": "348",
941
+ "smallest_denomination": 500
942
+ },
943
+ "idr": {
944
+ "priority": 100,
945
+ "iso_code": "IDR",
946
+ "name": "Indonesian Rupiah",
947
+ "symbol": "Rp",
948
+ "alternate_symbols": [],
949
+ "subunit": "Sen",
950
+ "subunit_to_unit": 100,
951
+ "symbol_first": true,
952
+ "html_entity": "",
953
+ "decimal_mark": ",",
954
+ "thousands_separator": ".",
955
+ "iso_numeric": "360",
956
+ "smallest_denomination": 5000
957
+ },
958
+ "ils": {
959
+ "priority": 100,
960
+ "iso_code": "ILS",
961
+ "name": "Israeli New Sheqel",
962
+ "symbol": "₪",
963
+ "alternate_symbols": ["ש״ח", "NIS"],
964
+ "subunit": "Agora",
965
+ "subunit_to_unit": 100,
966
+ "symbol_first": true,
967
+ "html_entity": "₪",
968
+ "decimal_mark": ".",
969
+ "thousands_separator": ",",
970
+ "iso_numeric": "376",
971
+ "smallest_denomination": 10
972
+ },
973
+ "inr": {
974
+ "priority": 100,
975
+ "iso_code": "INR",
976
+ "name": "Indian Rupee",
977
+ "symbol": "₹",
978
+ "alternate_symbols": ["Rs", "৳", "૱", "௹", "रु", "₨"],
979
+ "subunit": "Paisa",
980
+ "subunit_to_unit": 100,
981
+ "symbol_first": true,
982
+ "html_entity": "₹",
983
+ "decimal_mark": ".",
984
+ "thousands_separator": ",",
985
+ "iso_numeric": "356",
986
+ "smallest_denomination": 50
987
+ },
988
+ "iqd": {
989
+ "priority": 100,
990
+ "iso_code": "IQD",
991
+ "name": "Iraqi Dinar",
992
+ "symbol": "ع.د",
993
+ "alternate_symbols": [],
994
+ "subunit": "Fils",
995
+ "subunit_to_unit": 1000,
996
+ "symbol_first": false,
997
+ "html_entity": "",
998
+ "decimal_mark": ".",
999
+ "thousands_separator": ",",
1000
+ "iso_numeric": "368",
1001
+ "smallest_denomination": 50000
1002
+ },
1003
+ "irr": {
1004
+ "priority": 100,
1005
+ "iso_code": "IRR",
1006
+ "name": "Iranian Rial",
1007
+ "symbol": "﷼",
1008
+ "alternate_symbols": [],
1009
+ "subunit": "Dinar",
1010
+ "subunit_to_unit": 100,
1011
+ "symbol_first": true,
1012
+ "html_entity": "﷼",
1013
+ "decimal_mark": ".",
1014
+ "thousands_separator": ",",
1015
+ "iso_numeric": "364",
1016
+ "smallest_denomination": 5000
1017
+ },
1018
+ "isk": {
1019
+ "priority": 100,
1020
+ "iso_code": "ISK",
1021
+ "name": "Icelandic Króna",
1022
+ "symbol": "kr",
1023
+ "alternate_symbols": ["Íkr"],
1024
+ "subunit": null,
1025
+ "subunit_to_unit": 1,
1026
+ "symbol_first": true,
1027
+ "html_entity": "",
1028
+ "decimal_mark": ",",
1029
+ "thousands_separator": ".",
1030
+ "iso_numeric": "352",
1031
+ "smallest_denomination": 1
1032
+ },
1033
+ "jmd": {
1034
+ "priority": 100,
1035
+ "iso_code": "JMD",
1036
+ "name": "Jamaican Dollar",
1037
+ "symbol": "$",
1038
+ "disambiguate_symbol": "J$",
1039
+ "alternate_symbols": ["J$"],
1040
+ "subunit": "Cent",
1041
+ "subunit_to_unit": 100,
1042
+ "symbol_first": true,
1043
+ "html_entity": "$",
1044
+ "decimal_mark": ".",
1045
+ "thousands_separator": ",",
1046
+ "iso_numeric": "388",
1047
+ "smallest_denomination": 1
1048
+ },
1049
+ "jod": {
1050
+ "priority": 100,
1051
+ "iso_code": "JOD",
1052
+ "name": "Jordanian Dinar",
1053
+ "symbol": "د.ا",
1054
+ "alternate_symbols": ["JD"],
1055
+ "subunit": "Piastre",
1056
+ "subunit_to_unit": 100,
1057
+ "symbol_first": true,
1058
+ "html_entity": "",
1059
+ "decimal_mark": ".",
1060
+ "thousands_separator": ",",
1061
+ "iso_numeric": "400",
1062
+ "smallest_denomination": 0.5
1063
+ },
1064
+ "jpy": {
1065
+ "priority": 6,
1066
+ "iso_code": "JPY",
1067
+ "name": "Japanese Yen",
1068
+ "symbol": "¥",
1069
+ "alternate_symbols": ["円", "圓"],
1070
+ "subunit": null,
1071
+ "subunit_to_unit": 1,
1072
+ "symbol_first": true,
1073
+ "html_entity": "¥",
1074
+ "decimal_mark": ".",
1075
+ "thousands_separator": ",",
1076
+ "iso_numeric": "392",
1077
+ "smallest_denomination": 1
1078
+ },
1079
+ "kes": {
1080
+ "priority": 100,
1081
+ "iso_code": "KES",
1082
+ "name": "Kenyan Shilling",
1083
+ "symbol": "KSh",
1084
+ "alternate_symbols": ["Sh"],
1085
+ "subunit": "Cent",
1086
+ "subunit_to_unit": 100,
1087
+ "symbol_first": true,
1088
+ "html_entity": "",
1089
+ "decimal_mark": ".",
1090
+ "thousands_separator": ",",
1091
+ "iso_numeric": "404",
1092
+ "smallest_denomination": 50
1093
+ },
1094
+ "kgs": {
1095
+ "priority": 100,
1096
+ "iso_code": "KGS",
1097
+ "name": "Kyrgyzstani Som",
1098
+ "symbol": "som",
1099
+ "alternate_symbols": ["сом"],
1100
+ "subunit": "Tyiyn",
1101
+ "subunit_to_unit": 100,
1102
+ "symbol_first": false,
1103
+ "html_entity": "",
1104
+ "decimal_mark": ".",
1105
+ "thousands_separator": ",",
1106
+ "iso_numeric": "417",
1107
+ "smallest_denomination": 1
1108
+ },
1109
+ "khr": {
1110
+ "priority": 100,
1111
+ "iso_code": "KHR",
1112
+ "name": "Cambodian Riel",
1113
+ "symbol": "៛",
1114
+ "alternate_symbols": [],
1115
+ "subunit": "Sen",
1116
+ "subunit_to_unit": 100,
1117
+ "symbol_first": false,
1118
+ "html_entity": "៛",
1119
+ "decimal_mark": ".",
1120
+ "thousands_separator": ",",
1121
+ "iso_numeric": "116",
1122
+ "smallest_denomination": 5000
1123
+ },
1124
+ "kmf": {
1125
+ "priority": 100,
1126
+ "iso_code": "KMF",
1127
+ "name": "Comorian Franc",
1128
+ "symbol": "Fr",
1129
+ "disambiguate_symbol": "CF",
1130
+ "alternate_symbols": ["CF"],
1131
+ "subunit": "Centime",
1132
+ "subunit_to_unit": 100,
1133
+ "symbol_first": false,
1134
+ "html_entity": "",
1135
+ "decimal_mark": ".",
1136
+ "thousands_separator": ",",
1137
+ "iso_numeric": "174",
1138
+ "smallest_denomination": 100
1139
+ },
1140
+ "kpw": {
1141
+ "priority": 100,
1142
+ "iso_code": "KPW",
1143
+ "name": "North Korean Won",
1144
+ "symbol": "₩",
1145
+ "alternate_symbols": [],
1146
+ "subunit": "Chŏn",
1147
+ "subunit_to_unit": 100,
1148
+ "symbol_first": false,
1149
+ "html_entity": "₩",
1150
+ "decimal_mark": ".",
1151
+ "thousands_separator": ",",
1152
+ "iso_numeric": "408",
1153
+ "smallest_denomination": 1
1154
+ },
1155
+ "krw": {
1156
+ "priority": 100,
1157
+ "iso_code": "KRW",
1158
+ "name": "South Korean Won",
1159
+ "symbol": "₩",
1160
+ "subunit": null,
1161
+ "subunit_to_unit": 1,
1162
+ "alternate_symbols": [],
1163
+ "symbol_first": true,
1164
+ "html_entity": "₩",
1165
+ "decimal_mark": ".",
1166
+ "thousands_separator": ",",
1167
+ "iso_numeric": "410",
1168
+ "smallest_denomination": 1
1169
+ },
1170
+ "kwd": {
1171
+ "priority": 100,
1172
+ "iso_code": "KWD",
1173
+ "name": "Kuwaiti Dinar",
1174
+ "symbol": "د.ك",
1175
+ "alternate_symbols": ["K.D."],
1176
+ "subunit": "Fils",
1177
+ "subunit_to_unit": 1000,
1178
+ "symbol_first": true,
1179
+ "html_entity": "",
1180
+ "decimal_mark": ".",
1181
+ "thousands_separator": ",",
1182
+ "iso_numeric": "414",
1183
+ "smallest_denomination": 5
1184
+ },
1185
+ "kyd": {
1186
+ "priority": 100,
1187
+ "iso_code": "KYD",
1188
+ "name": "Cayman Islands Dollar",
1189
+ "symbol": "$",
1190
+ "disambiguate_symbol": "CI$",
1191
+ "alternate_symbols": ["CI$"],
1192
+ "subunit": "Cent",
1193
+ "subunit_to_unit": 100,
1194
+ "symbol_first": true,
1195
+ "html_entity": "$",
1196
+ "decimal_mark": ".",
1197
+ "thousands_separator": ",",
1198
+ "iso_numeric": "136",
1199
+ "smallest_denomination": 1
1200
+ },
1201
+ "kzt": {
1202
+ "priority": 100,
1203
+ "iso_code": "KZT",
1204
+ "name": "Kazakhstani Tenge",
1205
+ "symbol": "〒",
1206
+ "alternate_symbols": [],
1207
+ "subunit": "Tiyn",
1208
+ "subunit_to_unit": 100,
1209
+ "symbol_first": false,
1210
+ "html_entity": "",
1211
+ "decimal_mark": ".",
1212
+ "thousands_separator": ",",
1213
+ "iso_numeric": "398",
1214
+ "smallest_denomination": 100
1215
+ },
1216
+ "lak": {
1217
+ "priority": 100,
1218
+ "iso_code": "LAK",
1219
+ "name": "Lao Kip",
1220
+ "symbol": "₭",
1221
+ "alternate_symbols": ["₭N"],
1222
+ "subunit": "Att",
1223
+ "subunit_to_unit": 100,
1224
+ "symbol_first": false,
1225
+ "html_entity": "₭",
1226
+ "decimal_mark": ".",
1227
+ "thousands_separator": ",",
1228
+ "iso_numeric": "418",
1229
+ "smallest_denomination": 10
1230
+ },
1231
+ "lbp": {
1232
+ "priority": 100,
1233
+ "iso_code": "LBP",
1234
+ "name": "Lebanese Pound",
1235
+ "symbol": "ل.ل",
1236
+ "alternate_symbols": ["£", "L£"],
1237
+ "subunit": "Piastre",
1238
+ "subunit_to_unit": 100,
1239
+ "symbol_first": true,
1240
+ "html_entity": "£",
1241
+ "decimal_mark": ".",
1242
+ "thousands_separator": ",",
1243
+ "iso_numeric": "422",
1244
+ "smallest_denomination": 25000
1245
+ },
1246
+ "lkr": {
1247
+ "priority": 100,
1248
+ "iso_code": "LKR",
1249
+ "name": "Sri Lankan Rupee",
1250
+ "symbol": "₨",
1251
+ "disambiguate_symbol": "SLRs",
1252
+ "alternate_symbols": ["රු", "ரூ", "SLRs", "/-"],
1253
+ "subunit": "Cent",
1254
+ "subunit_to_unit": 100,
1255
+ "symbol_first": false,
1256
+ "html_entity": "௹",
1257
+ "decimal_mark": ".",
1258
+ "thousands_separator": ",",
1259
+ "iso_numeric": "144",
1260
+ "smallest_denomination": 100
1261
+ },
1262
+ "lrd": {
1263
+ "priority": 100,
1264
+ "iso_code": "LRD",
1265
+ "name": "Liberian Dollar",
1266
+ "symbol": "$",
1267
+ "disambiguate_symbol": "L$",
1268
+ "alternate_symbols": ["L$"],
1269
+ "subunit": "Cent",
1270
+ "subunit_to_unit": 100,
1271
+ "symbol_first": false,
1272
+ "html_entity": "$",
1273
+ "decimal_mark": ".",
1274
+ "thousands_separator": ",",
1275
+ "iso_numeric": "430",
1276
+ "smallest_denomination": 5
1277
+ },
1278
+ "lsl": {
1279
+ "priority": 100,
1280
+ "iso_code": "LSL",
1281
+ "name": "Lesotho Loti",
1282
+ "symbol": "L",
1283
+ "disambiguate_symbol": "M",
1284
+ "alternate_symbols": ["M"],
1285
+ "subunit": "Sente",
1286
+ "subunit_to_unit": 100,
1287
+ "symbol_first": false,
1288
+ "html_entity": "",
1289
+ "decimal_mark": ".",
1290
+ "thousands_separator": ",",
1291
+ "iso_numeric": "426",
1292
+ "smallest_denomination": 1
1293
+ },
1294
+ "ltl": {
1295
+ "priority": 100,
1296
+ "iso_code": "LTL",
1297
+ "name": "Lithuanian Litas",
1298
+ "symbol": "Lt",
1299
+ "alternate_symbols": [],
1300
+ "subunit": "Centas",
1301
+ "subunit_to_unit": 100,
1302
+ "symbol_first": false,
1303
+ "html_entity": "",
1304
+ "decimal_mark": ".",
1305
+ "thousands_separator": ",",
1306
+ "iso_numeric": "440",
1307
+ "smallest_denomination": 1
1308
+ },
1309
+ "lvl": {
1310
+ "priority": 100,
1311
+ "iso_code": "LVL",
1312
+ "name": "Latvian Lats",
1313
+ "symbol": "Ls",
1314
+ "alternate_symbols": [],
1315
+ "subunit": "Santīms",
1316
+ "subunit_to_unit": 100,
1317
+ "symbol_first": true,
1318
+ "html_entity": "",
1319
+ "decimal_mark": ".",
1320
+ "thousands_separator": ",",
1321
+ "iso_numeric": "428",
1322
+ "smallest_denomination": 1
1323
+ },
1324
+ "lyd": {
1325
+ "priority": 100,
1326
+ "iso_code": "LYD",
1327
+ "name": "Libyan Dinar",
1328
+ "symbol": "ل.د",
1329
+ "alternate_symbols": ["LD"],
1330
+ "subunit": "Dirham",
1331
+ "subunit_to_unit": 1000,
1332
+ "symbol_first": false,
1333
+ "html_entity": "",
1334
+ "decimal_mark": ".",
1335
+ "thousands_separator": ",",
1336
+ "iso_numeric": "434",
1337
+ "smallest_denomination": 50
1338
+ },
1339
+ "mad": {
1340
+ "priority": 100,
1341
+ "iso_code": "MAD",
1342
+ "name": "Moroccan Dirham",
1343
+ "symbol": "د.م.",
1344
+ "alternate_symbols": [],
1345
+ "subunit": "Centime",
1346
+ "subunit_to_unit": 100,
1347
+ "symbol_first": false,
1348
+ "html_entity": "",
1349
+ "decimal_mark": ".",
1350
+ "thousands_separator": ",",
1351
+ "iso_numeric": "504",
1352
+ "smallest_denomination": 1
1353
+ },
1354
+ "mdl": {
1355
+ "priority": 100,
1356
+ "iso_code": "MDL",
1357
+ "name": "Moldovan Leu",
1358
+ "symbol": "L",
1359
+ "alternate_symbols": ["lei"],
1360
+ "subunit": "Ban",
1361
+ "subunit_to_unit": 100,
1362
+ "symbol_first": false,
1363
+ "html_entity": "",
1364
+ "decimal_mark": ".",
1365
+ "thousands_separator": ",",
1366
+ "iso_numeric": "498",
1367
+ "smallest_denomination": 1
1368
+ },
1369
+ "mga": {
1370
+ "priority": 100,
1371
+ "iso_code": "MGA",
1372
+ "name": "Malagasy Ariary",
1373
+ "symbol": "Ar",
1374
+ "alternate_symbols": [],
1375
+ "subunit": "Iraimbilanja",
1376
+ "subunit_to_unit": 5,
1377
+ "symbol_first": true,
1378
+ "html_entity": "",
1379
+ "decimal_mark": ".",
1380
+ "thousands_separator": ",",
1381
+ "iso_numeric": "969",
1382
+ "smallest_denomination": 1
1383
+ },
1384
+ "mkd": {
1385
+ "priority": 100,
1386
+ "iso_code": "MKD",
1387
+ "name": "Macedonian Denar",
1388
+ "symbol": "ден",
1389
+ "alternate_symbols": [],
1390
+ "subunit": "Deni",
1391
+ "subunit_to_unit": 100,
1392
+ "symbol_first": false,
1393
+ "html_entity": "",
1394
+ "decimal_mark": ".",
1395
+ "thousands_separator": ",",
1396
+ "iso_numeric": "807",
1397
+ "smallest_denomination": 100
1398
+ },
1399
+ "mmk": {
1400
+ "priority": 100,
1401
+ "iso_code": "MMK",
1402
+ "name": "Myanmar Kyat",
1403
+ "symbol": "K",
1404
+ "disambiguate_symbol": "MMK",
1405
+ "alternate_symbols": [],
1406
+ "subunit": "Pya",
1407
+ "subunit_to_unit": 100,
1408
+ "symbol_first": false,
1409
+ "html_entity": "",
1410
+ "decimal_mark": ".",
1411
+ "thousands_separator": ",",
1412
+ "iso_numeric": "104",
1413
+ "smallest_denomination": 50
1414
+ },
1415
+ "mnt": {
1416
+ "priority": 100,
1417
+ "iso_code": "MNT",
1418
+ "name": "Mongolian Tögrög",
1419
+ "symbol": "₮",
1420
+ "alternate_symbols": [],
1421
+ "subunit": "Möngö",
1422
+ "subunit_to_unit": 100,
1423
+ "symbol_first": false,
1424
+ "html_entity": "₮",
1425
+ "decimal_mark": ".",
1426
+ "thousands_separator": ",",
1427
+ "iso_numeric": "496",
1428
+ "smallest_denomination": 2000
1429
+ },
1430
+ "mop": {
1431
+ "priority": 100,
1432
+ "iso_code": "MOP",
1433
+ "name": "Macanese Pataca",
1434
+ "symbol": "P",
1435
+ "alternate_symbols": ["MOP$"],
1436
+ "subunit": "Avo",
1437
+ "subunit_to_unit": 100,
1438
+ "symbol_first": false,
1439
+ "html_entity": "",
1440
+ "decimal_mark": ".",
1441
+ "thousands_separator": ",",
1442
+ "iso_numeric": "446",
1443
+ "smallest_denomination": 10
1444
+ },
1445
+ "mro": {
1446
+ "priority": 100,
1447
+ "iso_code": "MRO",
1448
+ "name": "Mauritanian Ouguiya",
1449
+ "symbol": "UM",
1450
+ "alternate_symbols": [],
1451
+ "subunit": "Khoums",
1452
+ "subunit_to_unit": 5,
1453
+ "symbol_first": false,
1454
+ "html_entity": "",
1455
+ "decimal_mark": ".",
1456
+ "thousands_separator": ",",
1457
+ "iso_numeric": "478",
1458
+ "smallest_denomination": 1
1459
+ },
1460
+ "mur": {
1461
+ "priority": 100,
1462
+ "iso_code": "MUR",
1463
+ "name": "Mauritian Rupee",
1464
+ "symbol": "₨",
1465
+ "alternate_symbols": [],
1466
+ "subunit": "Cent",
1467
+ "subunit_to_unit": 100,
1468
+ "symbol_first": true,
1469
+ "html_entity": "₨",
1470
+ "decimal_mark": ".",
1471
+ "thousands_separator": ",",
1472
+ "iso_numeric": "480",
1473
+ "smallest_denomination": 100
1474
+ },
1475
+ "mvr": {
1476
+ "priority": 100,
1477
+ "iso_code": "MVR",
1478
+ "name": "Maldivian Rufiyaa",
1479
+ "symbol": "MVR",
1480
+ "alternate_symbols": ["MRF", "Rf", "/-", "ރ"],
1481
+ "subunit": "Laari",
1482
+ "subunit_to_unit": 100,
1483
+ "symbol_first": false,
1484
+ "html_entity": "",
1485
+ "decimal_mark": ".",
1486
+ "thousands_separator": ",",
1487
+ "iso_numeric": "462",
1488
+ "smallest_denomination": 1
1489
+ },
1490
+ "mwk": {
1491
+ "priority": 100,
1492
+ "iso_code": "MWK",
1493
+ "name": "Malawian Kwacha",
1494
+ "symbol": "MK",
1495
+ "alternate_symbols": [],
1496
+ "subunit": "Tambala",
1497
+ "subunit_to_unit": 100,
1498
+ "symbol_first": false,
1499
+ "html_entity": "",
1500
+ "decimal_mark": ".",
1501
+ "thousands_separator": ",",
1502
+ "iso_numeric": "454",
1503
+ "smallest_denomination": 1
1504
+ },
1505
+ "mxn": {
1506
+ "priority": 100,
1507
+ "iso_code": "MXN",
1508
+ "name": "Mexican Peso",
1509
+ "symbol": "$",
1510
+ "disambiguate_symbol": "MEX$",
1511
+ "alternate_symbols": ["MEX$"],
1512
+ "subunit": "Centavo",
1513
+ "subunit_to_unit": 100,
1514
+ "symbol_first": true,
1515
+ "html_entity": "$",
1516
+ "decimal_mark": ".",
1517
+ "thousands_separator": ",",
1518
+ "iso_numeric": "484",
1519
+ "smallest_denomination": 5
1520
+ },
1521
+ "myr": {
1522
+ "priority": 100,
1523
+ "iso_code": "MYR",
1524
+ "name": "Malaysian Ringgit",
1525
+ "symbol": "RM",
1526
+ "alternate_symbols": [],
1527
+ "subunit": "Sen",
1528
+ "subunit_to_unit": 100,
1529
+ "symbol_first": true,
1530
+ "html_entity": "",
1531
+ "decimal_mark": ".",
1532
+ "thousands_separator": ",",
1533
+ "iso_numeric": "458",
1534
+ "smallest_denomination": 5
1535
+ },
1536
+ "mzn": {
1537
+ "priority": 100,
1538
+ "iso_code": "MZN",
1539
+ "name": "Mozambican Metical",
1540
+ "symbol": "MTn",
1541
+ "alternate_symbols": ["MZN"],
1542
+ "subunit": "Centavo",
1543
+ "subunit_to_unit": 100,
1544
+ "symbol_first": true,
1545
+ "html_entity": "",
1546
+ "decimal_mark": ",",
1547
+ "thousands_separator": ".",
1548
+ "iso_numeric": "943",
1549
+ "smallest_denomination": 1
1550
+ },
1551
+ "nad": {
1552
+ "priority": 100,
1553
+ "iso_code": "NAD",
1554
+ "name": "Namibian Dollar",
1555
+ "symbol": "$",
1556
+ "disambiguate_symbol": "N$",
1557
+ "alternate_symbols": ["N$"],
1558
+ "subunit": "Cent",
1559
+ "subunit_to_unit": 100,
1560
+ "symbol_first": false,
1561
+ "html_entity": "$",
1562
+ "decimal_mark": ".",
1563
+ "thousands_separator": ",",
1564
+ "iso_numeric": "516",
1565
+ "smallest_denomination": 5
1566
+ },
1567
+ "ngn": {
1568
+ "priority": 100,
1569
+ "iso_code": "NGN",
1570
+ "name": "Nigerian Naira",
1571
+ "symbol": "₦",
1572
+ "alternate_symbols": [],
1573
+ "subunit": "Kobo",
1574
+ "subunit_to_unit": 100,
1575
+ "symbol_first": true,
1576
+ "html_entity": "₦",
1577
+ "decimal_mark": ".",
1578
+ "thousands_separator": ",",
1579
+ "iso_numeric": "566",
1580
+ "smallest_denomination": 50
1581
+ },
1582
+ "nio": {
1583
+ "priority": 100,
1584
+ "iso_code": "NIO",
1585
+ "name": "Nicaraguan Córdoba",
1586
+ "symbol": "C$",
1587
+ "alternate_symbols": [],
1588
+ "subunit": "Centavo",
1589
+ "subunit_to_unit": 100,
1590
+ "symbol_first": false,
1591
+ "html_entity": "",
1592
+ "decimal_mark": ".",
1593
+ "thousands_separator": ",",
1594
+ "iso_numeric": "558",
1595
+ "smallest_denomination": 5
1596
+ },
1597
+ "nok": {
1598
+ "priority": 100,
1599
+ "iso_code": "NOK",
1600
+ "name": "Norwegian Krone",
1601
+ "symbol": "kr",
1602
+ "disambiguate_symbol": "NOK",
1603
+ "alternate_symbols": [",-"],
1604
+ "subunit": "Øre",
1605
+ "subunit_to_unit": 100,
1606
+ "symbol_first": false,
1607
+ "html_entity": "kr",
1608
+ "decimal_mark": ",",
1609
+ "thousands_separator": ".",
1610
+ "iso_numeric": "578",
1611
+ "smallest_denomination": 100
1612
+ },
1613
+ "npr": {
1614
+ "priority": 100,
1615
+ "iso_code": "NPR",
1616
+ "name": "Nepalese Rupee",
1617
+ "symbol": "₨",
1618
+ "disambiguate_symbol": "NPR",
1619
+ "alternate_symbols": ["Rs", "रू"],
1620
+ "subunit": "Paisa",
1621
+ "subunit_to_unit": 100,
1622
+ "symbol_first": true,
1623
+ "html_entity": "₨",
1624
+ "decimal_mark": ".",
1625
+ "thousands_separator": ",",
1626
+ "iso_numeric": "524",
1627
+ "smallest_denomination": 1
1628
+ },
1629
+ "nzd": {
1630
+ "priority": 100,
1631
+ "iso_code": "NZD",
1632
+ "name": "New Zealand Dollar",
1633
+ "symbol": "$",
1634
+ "disambiguate_symbol": "NZ$",
1635
+ "alternate_symbols": ["NZ$"],
1636
+ "subunit": "Cent",
1637
+ "subunit_to_unit": 100,
1638
+ "symbol_first": true,
1639
+ "html_entity": "$",
1640
+ "decimal_mark": ".",
1641
+ "thousands_separator": ",",
1642
+ "iso_numeric": "554",
1643
+ "smallest_denomination": 10
1644
+ },
1645
+ "omr": {
1646
+ "priority": 100,
1647
+ "iso_code": "OMR",
1648
+ "name": "Omani Rial",
1649
+ "symbol": "ر.ع.",
1650
+ "alternate_symbols": [],
1651
+ "subunit": "Baisa",
1652
+ "subunit_to_unit": 1000,
1653
+ "symbol_first": true,
1654
+ "html_entity": "﷼",
1655
+ "decimal_mark": ".",
1656
+ "thousands_separator": ",",
1657
+ "iso_numeric": "512",
1658
+ "smallest_denomination": 5
1659
+ },
1660
+ "pab": {
1661
+ "priority": 100,
1662
+ "iso_code": "PAB",
1663
+ "name": "Panamanian Balboa",
1664
+ "symbol": "B/.",
1665
+ "alternate_symbols": [],
1666
+ "subunit": "Centésimo",
1667
+ "subunit_to_unit": 100,
1668
+ "symbol_first": false,
1669
+ "html_entity": "",
1670
+ "decimal_mark": ".",
1671
+ "thousands_separator": ",",
1672
+ "iso_numeric": "590",
1673
+ "smallest_denomination": 1
1674
+ },
1675
+ "pen": {
1676
+ "priority": 100,
1677
+ "iso_code": "PEN",
1678
+ "name": "Peruvian Nuevo Sol",
1679
+ "symbol": "S/.",
1680
+ "alternate_symbols": [],
1681
+ "subunit": "Céntimo",
1682
+ "subunit_to_unit": 100,
1683
+ "symbol_first": true,
1684
+ "html_entity": "S/.",
1685
+ "decimal_mark": ".",
1686
+ "thousands_separator": ",",
1687
+ "iso_numeric": "604",
1688
+ "smallest_denomination": 1
1689
+ },
1690
+ "pgk": {
1691
+ "priority": 100,
1692
+ "iso_code": "PGK",
1693
+ "name": "Papua New Guinean Kina",
1694
+ "symbol": "K",
1695
+ "disambiguate_symbol": "PGK",
1696
+ "alternate_symbols": [],
1697
+ "subunit": "Toea",
1698
+ "subunit_to_unit": 100,
1699
+ "symbol_first": false,
1700
+ "html_entity": "",
1701
+ "decimal_mark": ".",
1702
+ "thousands_separator": ",",
1703
+ "iso_numeric": "598",
1704
+ "smallest_denomination": 5
1705
+ },
1706
+ "php": {
1707
+ "priority": 100,
1708
+ "iso_code": "PHP",
1709
+ "name": "Philippine Peso",
1710
+ "symbol": "₱",
1711
+ "alternate_symbols": ["PHP", "PhP", "P"],
1712
+ "subunit": "Centavo",
1713
+ "subunit_to_unit": 100,
1714
+ "symbol_first": true,
1715
+ "html_entity": "₱",
1716
+ "decimal_mark": ".",
1717
+ "thousands_separator": ",",
1718
+ "iso_numeric": "608",
1719
+ "smallest_denomination": 1
1720
+ },
1721
+ "pkr": {
1722
+ "priority": 100,
1723
+ "iso_code": "PKR",
1724
+ "name": "Pakistani Rupee",
1725
+ "symbol": "₨",
1726
+ "disambiguate_symbol": "PKR",
1727
+ "alternate_symbols": ["Rs"],
1728
+ "subunit": "Paisa",
1729
+ "subunit_to_unit": 100,
1730
+ "symbol_first": true,
1731
+ "html_entity": "₨",
1732
+ "decimal_mark": ".",
1733
+ "thousands_separator": ",",
1734
+ "iso_numeric": "586",
1735
+ "smallest_denomination": 100
1736
+ },
1737
+ "pln": {
1738
+ "priority": 100,
1739
+ "iso_code": "PLN",
1740
+ "name": "Polish Złoty",
1741
+ "symbol": "zł",
1742
+ "alternate_symbols": [],
1743
+ "subunit": "Grosz",
1744
+ "subunit_to_unit": 100,
1745
+ "symbol_first": false,
1746
+ "html_entity": "zł",
1747
+ "decimal_mark": ",",
1748
+ "thousands_separator": " ",
1749
+ "iso_numeric": "985",
1750
+ "smallest_denomination": 1
1751
+ },
1752
+ "pyg": {
1753
+ "priority": 100,
1754
+ "iso_code": "PYG",
1755
+ "name": "Paraguayan Guaraní",
1756
+ "symbol": "₲",
1757
+ "alternate_symbols": [],
1758
+ "subunit": "Céntimo",
1759
+ "subunit_to_unit": 100,
1760
+ "symbol_first": true,
1761
+ "html_entity": "₲",
1762
+ "decimal_mark": ".",
1763
+ "thousands_separator": ",",
1764
+ "iso_numeric": "600",
1765
+ "smallest_denomination": 5000
1766
+ },
1767
+ "qar": {
1768
+ "priority": 100,
1769
+ "iso_code": "QAR",
1770
+ "name": "Qatari Riyal",
1771
+ "symbol": "ر.ق",
1772
+ "alternate_symbols": ["QR"],
1773
+ "subunit": "Dirham",
1774
+ "subunit_to_unit": 100,
1775
+ "symbol_first": false,
1776
+ "html_entity": "﷼",
1777
+ "decimal_mark": ".",
1778
+ "thousands_separator": ",",
1779
+ "iso_numeric": "634",
1780
+ "smallest_denomination": 1
1781
+ },
1782
+ "ron": {
1783
+ "priority": 100,
1784
+ "iso_code": "RON",
1785
+ "name": "Romanian Leu",
1786
+ "symbol": "Lei",
1787
+ "alternate_symbols": [],
1788
+ "subunit": "Bani",
1789
+ "subunit_to_unit": 100,
1790
+ "symbol_first": true,
1791
+ "html_entity": "",
1792
+ "decimal_mark": ",",
1793
+ "thousands_separator": ".",
1794
+ "iso_numeric": "946",
1795
+ "smallest_denomination": 1
1796
+ },
1797
+ "rsd": {
1798
+ "priority": 100,
1799
+ "iso_code": "RSD",
1800
+ "name": "Serbian Dinar",
1801
+ "symbol": "РСД",
1802
+ "alternate_symbols": ["RSD", "din", "дин"],
1803
+ "subunit": "Para",
1804
+ "subunit_to_unit": 100,
1805
+ "symbol_first": true,
1806
+ "html_entity": "",
1807
+ "decimal_mark": ".",
1808
+ "thousands_separator": ",",
1809
+ "iso_numeric": "941",
1810
+ "smallest_denomination": 100
1811
+ },
1812
+ "rub": {
1813
+ "priority": 100,
1814
+ "iso_code": "RUB",
1815
+ "name": "Russian Ruble",
1816
+ "symbol": "₽",
1817
+ "alternate_symbols": ["руб.", "р."],
1818
+ "subunit": "Kopeck",
1819
+ "subunit_to_unit": 100,
1820
+ "symbol_first": false,
1821
+ "html_entity": "₽",
1822
+ "decimal_mark": ",",
1823
+ "thousands_separator": ".",
1824
+ "iso_numeric": "643",
1825
+ "smallest_denomination": 1
1826
+ },
1827
+ "rwf": {
1828
+ "priority": 100,
1829
+ "iso_code": "RWF",
1830
+ "name": "Rwandan Franc",
1831
+ "symbol": "FRw",
1832
+ "alternate_symbols": ["RF", "R₣"],
1833
+ "subunit": "Centime",
1834
+ "subunit_to_unit": 100,
1835
+ "symbol_first": false,
1836
+ "html_entity": "",
1837
+ "decimal_mark": ".",
1838
+ "thousands_separator": ",",
1839
+ "iso_numeric": "646",
1840
+ "smallest_denomination": 100
1841
+ },
1842
+ "sar": {
1843
+ "priority": 100,
1844
+ "iso_code": "SAR",
1845
+ "name": "Saudi Riyal",
1846
+ "symbol": "ر.س",
1847
+ "alternate_symbols": ["SR", "﷼"],
1848
+ "subunit": "Hallallah",
1849
+ "subunit_to_unit": 100,
1850
+ "symbol_first": true,
1851
+ "html_entity": "﷼",
1852
+ "decimal_mark": ".",
1853
+ "thousands_separator": ",",
1854
+ "iso_numeric": "682",
1855
+ "smallest_denomination": 5
1856
+ },
1857
+ "sbd": {
1858
+ "priority": 100,
1859
+ "iso_code": "SBD",
1860
+ "name": "Solomon Islands Dollar",
1861
+ "symbol": "$",
1862
+ "disambiguate_symbol": "SI$",
1863
+ "alternate_symbols": ["SI$"],
1864
+ "subunit": "Cent",
1865
+ "subunit_to_unit": 100,
1866
+ "symbol_first": false,
1867
+ "html_entity": "$",
1868
+ "decimal_mark": ".",
1869
+ "thousands_separator": ",",
1870
+ "iso_numeric": "090",
1871
+ "smallest_denomination": 10
1872
+ },
1873
+ "scr": {
1874
+ "priority": 100,
1875
+ "iso_code": "SCR",
1876
+ "name": "Seychellois Rupee",
1877
+ "symbol": "₨",
1878
+ "disambiguate_symbol": "SRe",
1879
+ "alternate_symbols": ["SRe", "SR"],
1880
+ "subunit": "Cent",
1881
+ "subunit_to_unit": 100,
1882
+ "symbol_first": false,
1883
+ "html_entity": "₨",
1884
+ "decimal_mark": ".",
1885
+ "thousands_separator": ",",
1886
+ "iso_numeric": "690",
1887
+ "smallest_denomination": 1
1888
+ },
1889
+ "sdg": {
1890
+ "priority": 100,
1891
+ "iso_code": "SDG",
1892
+ "name": "Sudanese Pound",
1893
+ "symbol": "£",
1894
+ "disambiguate_symbol": "SDG",
1895
+ "alternate_symbols": [],
1896
+ "subunit": "Piastre",
1897
+ "subunit_to_unit": 100,
1898
+ "symbol_first": true,
1899
+ "html_entity": "",
1900
+ "decimal_mark": ".",
1901
+ "thousands_separator": ",",
1902
+ "iso_numeric": "938",
1903
+ "smallest_denomination": 1
1904
+ },
1905
+ "sek": {
1906
+ "priority": 100,
1907
+ "iso_code": "SEK",
1908
+ "name": "Swedish Krona",
1909
+ "symbol": "kr",
1910
+ "disambiguate_symbol": "SEK",
1911
+ "alternate_symbols": [":-"],
1912
+ "subunit": "Öre",
1913
+ "subunit_to_unit": 100,
1914
+ "symbol_first": false,
1915
+ "html_entity": "",
1916
+ "decimal_mark": ",",
1917
+ "thousands_separator": " ",
1918
+ "iso_numeric": "752",
1919
+ "smallest_denomination": 100
1920
+ },
1921
+ "sgd": {
1922
+ "priority": 100,
1923
+ "iso_code": "SGD",
1924
+ "name": "Singapore Dollar",
1925
+ "symbol": "$",
1926
+ "disambiguate_symbol": "S$",
1927
+ "alternate_symbols": ["S$"],
1928
+ "subunit": "Cent",
1929
+ "subunit_to_unit": 100,
1930
+ "symbol_first": true,
1931
+ "html_entity": "$",
1932
+ "decimal_mark": ".",
1933
+ "thousands_separator": ",",
1934
+ "iso_numeric": "702",
1935
+ "smallest_denomination": 1
1936
+ },
1937
+ "shp": {
1938
+ "priority": 100,
1939
+ "iso_code": "SHP",
1940
+ "name": "Saint Helenian Pound",
1941
+ "symbol": "£",
1942
+ "disambiguate_symbol": "SHP",
1943
+ "alternate_symbols": [],
1944
+ "subunit": "Penny",
1945
+ "subunit_to_unit": 100,
1946
+ "symbol_first": false,
1947
+ "html_entity": "£",
1948
+ "decimal_mark": ".",
1949
+ "thousands_separator": ",",
1950
+ "iso_numeric": "654",
1951
+ "smallest_denomination": 1
1952
+ },
1953
+ "skk": {
1954
+ "priority": 100,
1955
+ "iso_code": "SKK",
1956
+ "name": "Slovak Koruna",
1957
+ "symbol": "Sk",
1958
+ "alternate_symbols": [],
1959
+ "subunit": "Halier",
1960
+ "subunit_to_unit": 100,
1961
+ "symbol_first": true,
1962
+ "html_entity": "",
1963
+ "decimal_mark": ".",
1964
+ "thousands_separator": ",",
1965
+ "iso_numeric": "703",
1966
+ "smallest_denomination": 50
1967
+ },
1968
+ "sll": {
1969
+ "priority": 100,
1970
+ "iso_code": "SLL",
1971
+ "name": "Sierra Leonean Leone",
1972
+ "symbol": "Le",
1973
+ "alternate_symbols": [],
1974
+ "subunit": "Cent",
1975
+ "subunit_to_unit": 100,
1976
+ "symbol_first": false,
1977
+ "html_entity": "",
1978
+ "decimal_mark": ".",
1979
+ "thousands_separator": ",",
1980
+ "iso_numeric": "694",
1981
+ "smallest_denomination": 1000
1982
+ },
1983
+ "sos": {
1984
+ "priority": 100,
1985
+ "iso_code": "SOS",
1986
+ "name": "Somali Shilling",
1987
+ "symbol": "Sh",
1988
+ "alternate_symbols": ["Sh.So"],
1989
+ "subunit": "Cent",
1990
+ "subunit_to_unit": 100,
1991
+ "symbol_first": false,
1992
+ "html_entity": "",
1993
+ "decimal_mark": ".",
1994
+ "thousands_separator": ",",
1995
+ "iso_numeric": "706",
1996
+ "smallest_denomination": 1
1997
+ },
1998
+ "srd": {
1999
+ "priority": 100,
2000
+ "iso_code": "SRD",
2001
+ "name": "Surinamese Dollar",
2002
+ "symbol": "$",
2003
+ "disambiguate_symbol": "SRD",
2004
+ "alternate_symbols": [],
2005
+ "subunit": "Cent",
2006
+ "subunit_to_unit": 100,
2007
+ "symbol_first": false,
2008
+ "html_entity": "",
2009
+ "decimal_mark": ".",
2010
+ "thousands_separator": ",",
2011
+ "iso_numeric": "968",
2012
+ "smallest_denomination": 1
2013
+ },
2014
+ "ssp": {
2015
+ "priority": 100,
2016
+ "iso_code": "SSP",
2017
+ "name": "South Sudanese Pound",
2018
+ "symbol": "£",
2019
+ "disambiguate_symbol": "SSP",
2020
+ "alternate_symbols": [],
2021
+ "subunit": "piaster",
2022
+ "subunit_to_unit": 100,
2023
+ "symbol_first": false,
2024
+ "html_entity": "£",
2025
+ "decimal_mark": ".",
2026
+ "thousands_separator": ",",
2027
+ "iso_numeric": "728",
2028
+ "smallest_denomination": 5
2029
+ },
2030
+ "std": {
2031
+ "priority": 100,
2032
+ "iso_code": "STD",
2033
+ "name": "São Tomé and Príncipe Dobra",
2034
+ "symbol": "Db",
2035
+ "alternate_symbols": [],
2036
+ "subunit": "Cêntimo",
2037
+ "subunit_to_unit": 100,
2038
+ "symbol_first": false,
2039
+ "html_entity": "",
2040
+ "decimal_mark": ".",
2041
+ "thousands_separator": ",",
2042
+ "iso_numeric": "678",
2043
+ "smallest_denomination": 10000
2044
+ },
2045
+ "svc": {
2046
+ "priority": 100,
2047
+ "iso_code": "SVC",
2048
+ "name": "Salvadoran Colón",
2049
+ "symbol": "₡",
2050
+ "alternate_symbols": ["¢"],
2051
+ "subunit": "Centavo",
2052
+ "subunit_to_unit": 100,
2053
+ "symbol_first": true,
2054
+ "html_entity": "₡",
2055
+ "decimal_mark": ".",
2056
+ "thousands_separator": ",",
2057
+ "iso_numeric": "222",
2058
+ "smallest_denomination": 1
2059
+ },
2060
+ "syp": {
2061
+ "priority": 100,
2062
+ "iso_code": "SYP",
2063
+ "name": "Syrian Pound",
2064
+ "symbol": "£S",
2065
+ "alternate_symbols": ["£", "ل.س", "LS", "الليرة السورية"],
2066
+ "subunit": "Piastre",
2067
+ "subunit_to_unit": 100,
2068
+ "symbol_first": false,
2069
+ "html_entity": "£",
2070
+ "decimal_mark": ".",
2071
+ "thousands_separator": ",",
2072
+ "iso_numeric": "760",
2073
+ "smallest_denomination": 100
2074
+ },
2075
+ "szl": {
2076
+ "priority": 100,
2077
+ "iso_code": "SZL",
2078
+ "name": "Swazi Lilangeni",
2079
+ "symbol": "E",
2080
+ "disambiguate_symbol": "SZL",
2081
+ "subunit": "Cent",
2082
+ "subunit_to_unit": 100,
2083
+ "symbol_first": true,
2084
+ "html_entity": "",
2085
+ "decimal_mark": ".",
2086
+ "thousands_separator": ",",
2087
+ "iso_numeric": "748",
2088
+ "smallest_denomination": 1
2089
+ },
2090
+ "thb": {
2091
+ "priority": 100,
2092
+ "iso_code": "THB",
2093
+ "name": "Thai Baht",
2094
+ "symbol": "฿",
2095
+ "alternate_symbols": [],
2096
+ "subunit": "Satang",
2097
+ "subunit_to_unit": 100,
2098
+ "symbol_first": true,
2099
+ "html_entity": "฿",
2100
+ "decimal_mark": ".",
2101
+ "thousands_separator": ",",
2102
+ "iso_numeric": "764",
2103
+ "smallest_denomination": 1
2104
+ },
2105
+ "tjs": {
2106
+ "priority": 100,
2107
+ "iso_code": "TJS",
2108
+ "name": "Tajikistani Somoni",
2109
+ "symbol": "ЅМ",
2110
+ "alternate_symbols": [],
2111
+ "subunit": "Diram",
2112
+ "subunit_to_unit": 100,
2113
+ "symbol_first": false,
2114
+ "html_entity": "",
2115
+ "decimal_mark": ".",
2116
+ "thousands_separator": ",",
2117
+ "iso_numeric": "972",
2118
+ "smallest_denomination": 1
2119
+ },
2120
+ "tmt": {
2121
+ "priority": 100,
2122
+ "iso_code": "TMT",
2123
+ "name": "Turkmenistani Manat",
2124
+ "symbol": "T",
2125
+ "alternate_symbols": [],
2126
+ "subunit": "Tenge",
2127
+ "subunit_to_unit": 100,
2128
+ "symbol_first": false,
2129
+ "html_entity": "",
2130
+ "decimal_mark": ".",
2131
+ "thousands_separator": ",",
2132
+ "iso_numeric": "934",
2133
+ "smallest_denomination": 1
2134
+ },
2135
+ "tnd": {
2136
+ "priority": 100,
2137
+ "iso_code": "TND",
2138
+ "name": "Tunisian Dinar",
2139
+ "symbol": "د.ت",
2140
+ "alternate_symbols": ["TD", "DT"],
2141
+ "subunit": "Millime",
2142
+ "subunit_to_unit": 1000,
2143
+ "symbol_first": false,
2144
+ "html_entity": "",
2145
+ "decimal_mark": ".",
2146
+ "thousands_separator": ",",
2147
+ "iso_numeric": "788",
2148
+ "smallest_denomination": 10
2149
+ },
2150
+ "top": {
2151
+ "priority": 100,
2152
+ "iso_code": "TOP",
2153
+ "name": "Tongan Paʻanga",
2154
+ "symbol": "T$",
2155
+ "alternate_symbols": ["PT"],
2156
+ "subunit": "Seniti",
2157
+ "subunit_to_unit": 100,
2158
+ "symbol_first": true,
2159
+ "html_entity": "",
2160
+ "decimal_mark": ".",
2161
+ "thousands_separator": ",",
2162
+ "iso_numeric": "776",
2163
+ "smallest_denomination": 1
2164
+ },
2165
+ "try": {
2166
+ "priority": 100,
2167
+ "iso_code": "TRY",
2168
+ "name": "Turkish Lira",
2169
+ "symbol": "₺",
2170
+ "alternate_symbols": ["TL"],
2171
+ "subunit": "kuruş",
2172
+ "subunit_to_unit": 100,
2173
+ "symbol_first": true,
2174
+ "html_entity": "₺",
2175
+ "decimal_mark": ",",
2176
+ "thousands_separator": ".",
2177
+ "iso_numeric": "949",
2178
+ "smallest_denomination": 1
2179
+ },
2180
+ "ttd": {
2181
+ "priority": 100,
2182
+ "iso_code": "TTD",
2183
+ "name": "Trinidad and Tobago Dollar",
2184
+ "symbol": "$",
2185
+ "disambiguate_symbol": "TT$",
2186
+ "alternate_symbols": ["TT$"],
2187
+ "subunit": "Cent",
2188
+ "subunit_to_unit": 100,
2189
+ "symbol_first": false,
2190
+ "html_entity": "$",
2191
+ "decimal_mark": ".",
2192
+ "thousands_separator": ",",
2193
+ "iso_numeric": "780",
2194
+ "smallest_denomination": 1
2195
+ },
2196
+ "twd": {
2197
+ "priority": 100,
2198
+ "iso_code": "TWD",
2199
+ "name": "New Taiwan Dollar",
2200
+ "symbol": "$",
2201
+ "disambiguate_symbol": "NT$",
2202
+ "alternate_symbols": ["NT$"],
2203
+ "subunit": "Cent",
2204
+ "subunit_to_unit": 100,
2205
+ "symbol_first": true,
2206
+ "html_entity": "$",
2207
+ "decimal_mark": ".",
2208
+ "thousands_separator": ",",
2209
+ "iso_numeric": "901",
2210
+ "smallest_denomination": 50
2211
+ },
2212
+ "tzs": {
2213
+ "priority": 100,
2214
+ "iso_code": "TZS",
2215
+ "name": "Tanzanian Shilling",
2216
+ "symbol": "Sh",
2217
+ "alternate_symbols": [],
2218
+ "subunit": "Cent",
2219
+ "subunit_to_unit": 100,
2220
+ "symbol_first": true,
2221
+ "html_entity": "",
2222
+ "decimal_mark": ".",
2223
+ "thousands_separator": ",",
2224
+ "iso_numeric": "834",
2225
+ "smallest_denomination": 5000
2226
+ },
2227
+ "uah": {
2228
+ "priority": 100,
2229
+ "iso_code": "UAH",
2230
+ "name": "Ukrainian Hryvnia",
2231
+ "symbol": "₴",
2232
+ "alternate_symbols": [],
2233
+ "subunit": "Kopiyka",
2234
+ "subunit_to_unit": 100,
2235
+ "symbol_first": false,
2236
+ "html_entity": "₴",
2237
+ "decimal_mark": ".",
2238
+ "thousands_separator": ",",
2239
+ "iso_numeric": "980",
2240
+ "smallest_denomination": 1
2241
+ },
2242
+ "ugx": {
2243
+ "priority": 100,
2244
+ "iso_code": "UGX",
2245
+ "name": "Ugandan Shilling",
2246
+ "symbol": "USh",
2247
+ "alternate_symbols": [],
2248
+ "subunit": "Cent",
2249
+ "subunit_to_unit": 100,
2250
+ "symbol_first": false,
2251
+ "html_entity": "",
2252
+ "decimal_mark": ".",
2253
+ "thousands_separator": ",",
2254
+ "iso_numeric": "800",
2255
+ "smallest_denomination": 1000
2256
+ },
2257
+ "usd": {
2258
+ "priority": 1,
2259
+ "iso_code": "USD",
2260
+ "name": "United States Dollar",
2261
+ "symbol": "$",
2262
+ "alternate_symbols": ["US$"],
2263
+ "subunit": "Cent",
2264
+ "subunit_to_unit": 100,
2265
+ "symbol_first": true,
2266
+ "html_entity": "$",
2267
+ "decimal_mark": ".",
2268
+ "thousands_separator": ",",
2269
+ "iso_numeric": "840",
2270
+ "smallest_denomination": 1
2271
+ },
2272
+ "uyu": {
2273
+ "priority": 100,
2274
+ "iso_code": "UYU",
2275
+ "name": "Uruguayan Peso",
2276
+ "symbol": "$",
2277
+ "alternate_symbols": ["$U"],
2278
+ "subunit": "Centésimo",
2279
+ "subunit_to_unit": 100,
2280
+ "symbol_first": true,
2281
+ "html_entity": "₱",
2282
+ "decimal_mark": ",",
2283
+ "thousands_separator": ".",
2284
+ "iso_numeric": "858",
2285
+ "smallest_denomination": 100
2286
+ },
2287
+ "uzs": {
2288
+ "priority": 100,
2289
+ "iso_code": "UZS",
2290
+ "name": "Uzbekistani Som",
2291
+ "symbol": null,
2292
+ "alternate_symbols": [],
2293
+ "subunit": "Tiyin",
2294
+ "subunit_to_unit": 100,
2295
+ "symbol_first": false,
2296
+ "html_entity": "",
2297
+ "decimal_mark": ".",
2298
+ "thousands_separator": ",",
2299
+ "iso_numeric": "860",
2300
+ "smallest_denomination": 100
2301
+ },
2302
+ "vef": {
2303
+ "priority": 100,
2304
+ "iso_code": "VEF",
2305
+ "name": "Venezuelan Bolívar",
2306
+ "symbol": "Bs F",
2307
+ "alternate_symbols": ["Bs.F", "Bs"],
2308
+ "subunit": "Céntimo",
2309
+ "subunit_to_unit": 100,
2310
+ "symbol_first": true,
2311
+ "html_entity": "",
2312
+ "decimal_mark": ",",
2313
+ "thousands_separator": ".",
2314
+ "iso_numeric": "937",
2315
+ "smallest_denomination": 1
2316
+ },
2317
+ "vnd": {
2318
+ "priority": 100,
2319
+ "iso_code": "VND",
2320
+ "name": "Vietnamese Đồng",
2321
+ "symbol": "₫",
2322
+ "alternate_symbols": [],
2323
+ "subunit": "Hào",
2324
+ "subunit_to_unit": 1,
2325
+ "symbol_first": true,
2326
+ "html_entity": "₫",
2327
+ "decimal_mark": ",",
2328
+ "thousands_separator": ".",
2329
+ "iso_numeric": "704",
2330
+ "smallest_denomination": 100
2331
+ },
2332
+ "vuv": {
2333
+ "priority": 100,
2334
+ "iso_code": "VUV",
2335
+ "name": "Vanuatu Vatu",
2336
+ "symbol": "Vt",
2337
+ "alternate_symbols": [],
2338
+ "subunit": null,
2339
+ "subunit_to_unit": 1,
2340
+ "symbol_first": true,
2341
+ "html_entity": "",
2342
+ "decimal_mark": ".",
2343
+ "thousands_separator": ",",
2344
+ "iso_numeric": "548",
2345
+ "smallest_denomination": 1
2346
+ },
2347
+ "wst": {
2348
+ "priority": 100,
2349
+ "iso_code": "WST",
2350
+ "name": "Samoan Tala",
2351
+ "symbol": "T",
2352
+ "disambiguate_symbol": "WS$",
2353
+ "alternate_symbols": ["WS$", "SAT", "ST"],
2354
+ "subunit": "Sene",
2355
+ "subunit_to_unit": 100,
2356
+ "symbol_first": false,
2357
+ "html_entity": "",
2358
+ "decimal_mark": ".",
2359
+ "thousands_separator": ",",
2360
+ "iso_numeric": "882",
2361
+ "smallest_denomination": 10
2362
+ },
2363
+ "xaf": {
2364
+ "priority": 100,
2365
+ "iso_code": "XAF",
2366
+ "name": "Central African Cfa Franc",
2367
+ "symbol": "Fr",
2368
+ "disambiguate_symbol": "FCFA",
2369
+ "alternate_symbols": ["FCFA"],
2370
+ "subunit": "Centime",
2371
+ "subunit_to_unit": 100,
2372
+ "symbol_first": false,
2373
+ "html_entity": "",
2374
+ "decimal_mark": ".",
2375
+ "thousands_separator": ",",
2376
+ "iso_numeric": "950",
2377
+ "smallest_denomination": 100
2378
+ },
2379
+ "xag": {
2380
+ "priority": 100,
2381
+ "iso_code": "XAG",
2382
+ "name": "Silver (Troy Ounce)",
2383
+ "symbol": "oz t",
2384
+ "disambiguate_symbol": "XAG",
2385
+ "alternate_symbols": [],
2386
+ "subunit": "oz",
2387
+ "subunit_to_unit": 1,
2388
+ "symbol_first": false,
2389
+ "html_entity": "",
2390
+ "decimal_mark": ".",
2391
+ "thousands_separator": ",",
2392
+ "iso_numeric": "961"
2393
+ },
2394
+ "xau": {
2395
+ "priority": 100,
2396
+ "iso_code": "XAU",
2397
+ "name": "Gold (Troy Ounce)",
2398
+ "symbol": "oz t",
2399
+ "disambiguate_symbol": "XAU",
2400
+ "alternate_symbols": [],
2401
+ "subunit": "oz",
2402
+ "subunit_to_unit": 1,
2403
+ "symbol_first": false,
2404
+ "html_entity": "",
2405
+ "decimal_mark": ".",
2406
+ "thousands_separator": ",",
2407
+ "iso_numeric": "959"
2408
+ },
2409
+ "xcd": {
2410
+ "priority": 100,
2411
+ "iso_code": "XCD",
2412
+ "name": "East Caribbean Dollar",
2413
+ "symbol": "$",
2414
+ "disambiguate_symbol": "EX$",
2415
+ "alternate_symbols": ["EC$"],
2416
+ "subunit": "Cent",
2417
+ "subunit_to_unit": 100,
2418
+ "symbol_first": true,
2419
+ "html_entity": "$",
2420
+ "decimal_mark": ".",
2421
+ "thousands_separator": ",",
2422
+ "iso_numeric": "951",
2423
+ "smallest_denomination": 1
2424
+ },
2425
+ "xdr": {
2426
+ "priority": 100,
2427
+ "iso_code": "XDR",
2428
+ "name": "Special Drawing Rights",
2429
+ "symbol": "SDR",
2430
+ "alternate_symbols": ["XDR"],
2431
+ "subunit": "",
2432
+ "subunit_to_unit": 1,
2433
+ "symbol_first": false,
2434
+ "html_entity": "$",
2435
+ "decimal_mark": ".",
2436
+ "thousands_separator": ",",
2437
+ "iso_numeric": "960"
2438
+ },
2439
+ "xof": {
2440
+ "priority": 100,
2441
+ "iso_code": "XOF",
2442
+ "name": "West African Cfa Franc",
2443
+ "symbol": "Fr",
2444
+ "disambiguate_symbol": "CFA",
2445
+ "alternate_symbols": ["CFA"],
2446
+ "subunit": "Centime",
2447
+ "subunit_to_unit": 100,
2448
+ "symbol_first": false,
2449
+ "html_entity": "",
2450
+ "decimal_mark": ".",
2451
+ "thousands_separator": ",",
2452
+ "iso_numeric": "952",
2453
+ "smallest_denomination": 100
2454
+ },
2455
+ "xpf": {
2456
+ "priority": 100,
2457
+ "iso_code": "XPF",
2458
+ "name": "Cfp Franc",
2459
+ "symbol": "Fr",
2460
+ "alternate_symbols": ["F"],
2461
+ "subunit": "Centime",
2462
+ "subunit_to_unit": 100,
2463
+ "symbol_first": false,
2464
+ "html_entity": "",
2465
+ "decimal_mark": ".",
2466
+ "thousands_separator": ",",
2467
+ "iso_numeric": "953",
2468
+ "smallest_denomination": 100
2469
+ },
2470
+ "yer": {
2471
+ "priority": 100,
2472
+ "iso_code": "YER",
2473
+ "name": "Yemeni Rial",
2474
+ "symbol": "﷼",
2475
+ "alternate_symbols": [],
2476
+ "subunit": "Fils",
2477
+ "subunit_to_unit": 100,
2478
+ "symbol_first": false,
2479
+ "html_entity": "﷼",
2480
+ "decimal_mark": ".",
2481
+ "thousands_separator": ",",
2482
+ "iso_numeric": "886",
2483
+ "smallest_denomination": 100
2484
+ },
2485
+ "zar": {
2486
+ "priority": 100,
2487
+ "iso_code": "ZAR",
2488
+ "name": "South African Rand",
2489
+ "symbol": "R",
2490
+ "alternate_symbols": [],
2491
+ "subunit": "Cent",
2492
+ "subunit_to_unit": 100,
2493
+ "symbol_first": true,
2494
+ "html_entity": "R",
2495
+ "decimal_mark": ".",
2496
+ "thousands_separator": ",",
2497
+ "iso_numeric": "710",
2498
+ "smallest_denomination": 10
2499
+ },
2500
+ "zmk": {
2501
+ "priority": 100,
2502
+ "iso_code": "ZMK",
2503
+ "name": "Zambian Kwacha",
2504
+ "symbol": "ZK",
2505
+ "disambiguate_symbol": "ZMK",
2506
+ "alternate_symbols": [],
2507
+ "subunit": "Ngwee",
2508
+ "subunit_to_unit": 100,
2509
+ "symbol_first": false,
2510
+ "html_entity": "",
2511
+ "decimal_mark": ".",
2512
+ "thousands_separator": ",",
2513
+ "iso_numeric": "894",
2514
+ "smallest_denomination": 5
2515
+ },
2516
+ "zmw": {
2517
+ "priority": 100,
2518
+ "iso_code": "ZMW",
2519
+ "name": "Zambian Kwacha",
2520
+ "symbol": "ZK",
2521
+ "disambiguate_symbol": "ZMW",
2522
+ "alternate_symbols": [],
2523
+ "subunit": "Ngwee",
2524
+ "subunit_to_unit": 100,
2525
+ "symbol_first": false,
2526
+ "html_entity": "",
2527
+ "decimal_mark": ".",
2528
+ "thousands_separator": ",",
2529
+ "iso_numeric": "967",
2530
+ "smallest_denomination": 5
2531
+ },
2532
+ "btc": {
2533
+ "priority": 100,
2534
+ "iso_code": "BTC",
2535
+ "name": "Bitcoin",
2536
+ "symbol": "฿",
2537
+ "subunit": "sat",
2538
+ "subunit_to_unit": 100000000,
2539
+ "symbol_first": false,
2540
+ "html_entity": "฿",
2541
+ "decimal_mark": ",",
2542
+ "thousands_separator": "."
2543
+ }
2544
+ }