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