money 4.0.1 → 4.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.md +405 -391
 - data/LICENSE +21 -21
 - data/README.md +249 -243
 - data/Rakefile +52 -49
 - data/config/currency.json +2068 -2068
 - data/config/currency_bc.json +41 -41
 - data/lib/money.rb +28 -28
 - data/lib/money/bank/base.rb +130 -131
 - data/lib/money/bank/variable_exchange.rb +253 -252
 - data/lib/money/core_extensions.rb +82 -82
 - data/lib/money/currency.rb +280 -263
 - data/lib/money/currency_loader.rb +21 -19
 - data/lib/money/money.rb +411 -405
 - data/lib/money/money/arithmetic.rb +257 -246
 - data/lib/money/money/formatting.rb +251 -260
 - data/lib/money/money/parsing.rb +350 -350
 - data/money.gemspec +29 -29
 - data/spec/bank/base_spec.rb +69 -72
 - data/spec/bank/variable_exchange_spec.rb +233 -238
 - data/spec/core_extensions_spec.rb +160 -158
 - data/spec/currency_spec.rb +139 -120
 - data/spec/money/arithmetic_spec.rb +482 -479
 - data/spec/money/formatting_spec.rb +402 -383
 - data/spec/money/parsing_spec.rb +210 -197
 - data/spec/money_spec.rb +312 -292
 - data/spec/spec_helper.rb +32 -28
 - metadata +14 -14
 
    
        data/Rakefile
    CHANGED
    
    | 
         @@ -1,49 +1,52 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            require 'rubygems'
         
     | 
| 
       2 
     | 
    
         
            -
            require 'rake/clean'
         
     | 
| 
       3 
     | 
    
         
            -
             
     | 
| 
       4 
     | 
    
         
            -
            CLOBBER.include('doc', '.yardoc')
         
     | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       6 
     | 
    
         
            -
            def gemspec
         
     | 
| 
       7 
     | 
    
         
            -
              @gemspec ||= begin
         
     | 
| 
       8 
     | 
    
         
            -
                file = File.expand_path("../money.gemspec", __FILE__)
         
     | 
| 
       9 
     | 
    
         
            -
                eval(File.read(file), binding, file)
         
     | 
| 
       10 
     | 
    
         
            -
              end
         
     | 
| 
       11 
     | 
    
         
            -
            end
         
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
       15 
     | 
    
         
            -
             
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
             
     | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
       20 
     | 
    
         
            -
             
     | 
| 
       21 
     | 
    
         
            -
             
     | 
| 
       22 
     | 
    
         
            -
             
     | 
| 
       23 
     | 
    
         
            -
             
     | 
| 
       24 
     | 
    
         
            -
             
     | 
| 
       25 
     | 
    
         
            -
             
     | 
| 
       26 
     | 
    
         
            -
               
     | 
| 
       27 
     | 
    
         
            -
             
     | 
| 
       28 
     | 
    
         
            -
             
     | 
| 
       29 
     | 
    
         
            -
             
     | 
| 
       30 
     | 
    
         
            -
             
     | 
| 
       31 
     | 
    
         
            -
             
     | 
| 
       32 
     | 
    
         
            -
             
     | 
| 
       33 
     | 
    
         
            -
               
     | 
| 
       34 
     | 
    
         
            -
             
     | 
| 
       35 
     | 
    
         
            -
             
     | 
| 
       36 
     | 
    
         
            -
             
     | 
| 
       37 
     | 
    
         
            -
             
     | 
| 
       38 
     | 
    
         
            -
             
     | 
| 
       39 
     | 
    
         
            -
             
     | 
| 
       40 
     | 
    
         
            -
             
     | 
| 
       41 
     | 
    
         
            -
             
     | 
| 
       42 
     | 
    
         
            -
             
     | 
| 
       43 
     | 
    
         
            -
             
     | 
| 
       44 
     | 
    
         
            -
             
     | 
| 
       45 
     | 
    
         
            -
             
     | 
| 
       46 
     | 
    
         
            -
             
     | 
| 
       47 
     | 
    
         
            -
             
     | 
| 
       48 
     | 
    
         
            -
             
     | 
| 
       49 
     | 
    
         
            -
             
     | 
| 
      
 1 
     | 
    
         
            +
            require 'rubygems'
         
     | 
| 
      
 2 
     | 
    
         
            +
            require 'rake/clean'
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            CLOBBER.include('doc', '.yardoc')
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            def gemspec
         
     | 
| 
      
 7 
     | 
    
         
            +
              @gemspec ||= begin
         
     | 
| 
      
 8 
     | 
    
         
            +
                file = File.expand_path("../money.gemspec", __FILE__)
         
     | 
| 
      
 9 
     | 
    
         
            +
                eval(File.read(file), binding, file)
         
     | 
| 
      
 10 
     | 
    
         
            +
              end
         
     | 
| 
      
 11 
     | 
    
         
            +
            end
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            task :default => :spec
         
     | 
| 
      
 15 
     | 
    
         
            +
            task :test => :spec
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            require 'rspec/core/rake_task'
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            RSpec::Core::RakeTask.new
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            require 'yard'
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            YARD::Rake::YardocTask.new do |t|
         
     | 
| 
      
 26 
     | 
    
         
            +
              t.options << "--files" << "CHANGELOG.md,LICENSE"
         
     | 
| 
      
 27 
     | 
    
         
            +
            end
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
            require 'rubygems/package_task'
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
            Gem::PackageTask.new(gemspec) do |pkg|
         
     | 
| 
      
 33 
     | 
    
         
            +
              pkg.gem_spec = gemspec
         
     | 
| 
      
 34 
     | 
    
         
            +
            end
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
            task :gem => :gemspec
         
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
            desc "Install the gem locally"
         
     | 
| 
      
 39 
     | 
    
         
            +
            task :install => :gem do
         
     | 
| 
      
 40 
     | 
    
         
            +
              sh "gem install pkg/#{gemspec.full_name}.gem"
         
     | 
| 
      
 41 
     | 
    
         
            +
            end
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
            desc "Validate the gemspec"
         
     | 
| 
      
 44 
     | 
    
         
            +
            task :gemspec do
         
     | 
| 
      
 45 
     | 
    
         
            +
              gemspec.validate
         
     | 
| 
      
 46 
     | 
    
         
            +
            end
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
            desc "Open an irb session preloaded with this library"
         
     | 
| 
      
 50 
     | 
    
         
            +
            task :console do
         
     | 
| 
      
 51 
     | 
    
         
            +
              sh "irb -rubygems -I lib -r money.rb"
         
     | 
| 
      
 52 
     | 
    
         
            +
            end
         
     | 
    
        data/config/currency.json
    CHANGED
    
    | 
         @@ -1,2069 +1,2069 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {
         
     | 
| 
       2 
     | 
    
         
            -
              "aed": {
         
     | 
| 
       3 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       4 
     | 
    
         
            -
                "iso_code": "AED",
         
     | 
| 
       5 
     | 
    
         
            -
                "name": "United Arab Emirates Dirham",
         
     | 
| 
       6 
     | 
    
         
            -
                "symbol": "د.إ",
         
     | 
| 
       7 
     | 
    
         
            -
                "subunit": "Fils",
         
     | 
| 
       8 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       9 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       10 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       11 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       12 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       13 
     | 
    
         
            -
                "iso_numeric": "784"
         
     | 
| 
       14 
     | 
    
         
            -
              },
         
     | 
| 
       15 
     | 
    
         
            -
              "afn": {
         
     | 
| 
       16 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       17 
     | 
    
         
            -
                "iso_code": "AFN",
         
     | 
| 
       18 
     | 
    
         
            -
                "name": "Afghan Afghani",
         
     | 
| 
       19 
     | 
    
         
            -
                "symbol": "؋",
         
     | 
| 
       20 
     | 
    
         
            -
                "subunit": "Pul",
         
     | 
| 
       21 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       22 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       23 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       24 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       25 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       26 
     | 
    
         
            -
                "iso_numeric": "971"
         
     | 
| 
       27 
     | 
    
         
            -
              },
         
     | 
| 
       28 
     | 
    
         
            -
              "all": {
         
     | 
| 
       29 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       30 
     | 
    
         
            -
                "iso_code": "ALL",
         
     | 
| 
       31 
     | 
    
         
            -
                "name": "Albanian Lek",
         
     | 
| 
       32 
     | 
    
         
            -
                "symbol": "L",
         
     | 
| 
       33 
     | 
    
         
            -
                "subunit": "Qintar",
         
     | 
| 
       34 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       35 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       36 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       37 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       38 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       39 
     | 
    
         
            -
                "iso_numeric": "008"
         
     | 
| 
       40 
     | 
    
         
            -
              },
         
     | 
| 
       41 
     | 
    
         
            -
              "amd": {
         
     | 
| 
       42 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       43 
     | 
    
         
            -
                "iso_code": "AMD",
         
     | 
| 
       44 
     | 
    
         
            -
                "name": "Armenian Dram",
         
     | 
| 
       45 
     | 
    
         
            -
                "symbol": "դր.",
         
     | 
| 
       46 
     | 
    
         
            -
                "subunit": "Luma",
         
     | 
| 
       47 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       48 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       49 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       50 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       51 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       52 
     | 
    
         
            -
                "iso_numeric": "051"
         
     | 
| 
       53 
     | 
    
         
            -
              },
         
     | 
| 
       54 
     | 
    
         
            -
              "ang": {
         
     | 
| 
       55 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       56 
     | 
    
         
            -
                "iso_code": "ANG",
         
     | 
| 
       57 
     | 
    
         
            -
                "name": "Netherlands Antillean Gulden",
         
     | 
| 
       58 
     | 
    
         
            -
                "symbol": "ƒ",
         
     | 
| 
       59 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       60 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       61 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       62 
     | 
    
         
            -
                "html_entity": "ƒ",
         
     | 
| 
       63 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       64 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       65 
     | 
    
         
            -
                "iso_numeric": "532"
         
     | 
| 
       66 
     | 
    
         
            -
              },
         
     | 
| 
       67 
     | 
    
         
            -
              "aoa": {
         
     | 
| 
       68 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       69 
     | 
    
         
            -
                "iso_code": "AOA",
         
     | 
| 
       70 
     | 
    
         
            -
                "name": "Angolan Kwanza",
         
     | 
| 
       71 
     | 
    
         
            -
                "symbol": "Kz",
         
     | 
| 
       72 
     | 
    
         
            -
                "subunit": "Cêntimo",
         
     | 
| 
       73 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       74 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       75 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       76 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       77 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       78 
     | 
    
         
            -
                "iso_numeric": "973"
         
     | 
| 
       79 
     | 
    
         
            -
              },
         
     | 
| 
       80 
     | 
    
         
            -
              "ars": {
         
     | 
| 
       81 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       82 
     | 
    
         
            -
                "iso_code": "ARS",
         
     | 
| 
       83 
     | 
    
         
            -
                "name": "Argentine Peso",
         
     | 
| 
       84 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       85 
     | 
    
         
            -
                "subunit": "Centavo",
         
     | 
| 
       86 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       87 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       88 
     | 
    
         
            -
                "html_entity": "₱",
         
     | 
| 
       89 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       90 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       91 
     | 
    
         
            -
                "iso_numeric": "032"
         
     | 
| 
       92 
     | 
    
         
            -
              },
         
     | 
| 
       93 
     | 
    
         
            -
              "aud": {
         
     | 
| 
       94 
     | 
    
         
            -
                "priority": 4,
         
     | 
| 
       95 
     | 
    
         
            -
                "iso_code": "AUD",
         
     | 
| 
       96 
     | 
    
         
            -
                "name": "Australian Dollar",
         
     | 
| 
       97 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       98 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       99 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       100 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       101 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       102 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       103 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       104 
     | 
    
         
            -
                "iso_numeric": "036"
         
     | 
| 
       105 
     | 
    
         
            -
              },
         
     | 
| 
       106 
     | 
    
         
            -
              "awg": {
         
     | 
| 
       107 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       108 
     | 
    
         
            -
                "iso_code": "AWG",
         
     | 
| 
       109 
     | 
    
         
            -
                "name": "Aruban Florin",
         
     | 
| 
       110 
     | 
    
         
            -
                "symbol": "ƒ",
         
     | 
| 
       111 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       112 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       113 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       114 
     | 
    
         
            -
                "html_entity": "ƒ",
         
     | 
| 
       115 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       116 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       117 
     | 
    
         
            -
                "iso_numeric": "533"
         
     | 
| 
       118 
     | 
    
         
            -
              },
         
     | 
| 
       119 
     | 
    
         
            -
              "azn": {
         
     | 
| 
       120 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       121 
     | 
    
         
            -
                "iso_code": "AZN",
         
     | 
| 
       122 
     | 
    
         
            -
                "name": "Azerbaijani Manat",
         
     | 
| 
       123 
     | 
    
         
            -
                "symbol": null,
         
     | 
| 
       124 
     | 
    
         
            -
                "subunit": "Qəpik",
         
     | 
| 
       125 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       126 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       127 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       128 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       129 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       130 
     | 
    
         
            -
                "iso_numeric": "944"
         
     | 
| 
       131 
     | 
    
         
            -
              },
         
     | 
| 
       132 
     | 
    
         
            -
              "bam": {
         
     | 
| 
       133 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       134 
     | 
    
         
            -
                "iso_code": "BAM",
         
     | 
| 
       135 
     | 
    
         
            -
                "name": "Bosnia and Herzegovina Convertible Mark",
         
     | 
| 
       136 
     | 
    
         
            -
                "symbol": "KM or КМ",
         
     | 
| 
       137 
     | 
    
         
            -
                "subunit": "Fening",
         
     | 
| 
       138 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       139 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       140 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       141 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       142 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       143 
     | 
    
         
            -
                "iso_numeric": "977"
         
     | 
| 
       144 
     | 
    
         
            -
              },
         
     | 
| 
       145 
     | 
    
         
            -
              "bbd": {
         
     | 
| 
       146 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       147 
     | 
    
         
            -
                "iso_code": "BBD",
         
     | 
| 
       148 
     | 
    
         
            -
                "name": "Barbadian Dollar",
         
     | 
| 
       149 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       150 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       151 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       152 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       153 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       154 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       155 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       156 
     | 
    
         
            -
                "iso_numeric": "052"
         
     | 
| 
       157 
     | 
    
         
            -
              },
         
     | 
| 
       158 
     | 
    
         
            -
              "bdt": {
         
     | 
| 
       159 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       160 
     | 
    
         
            -
                "iso_code": "BDT",
         
     | 
| 
       161 
     | 
    
         
            -
                "name": "Bangladeshi Taka",
         
     | 
| 
       162 
     | 
    
         
            -
                "symbol": "৳",
         
     | 
| 
       163 
     | 
    
         
            -
                "subunit": "Paisa",
         
     | 
| 
       164 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       165 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       166 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       167 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       168 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       169 
     | 
    
         
            -
                "iso_numeric": "050"
         
     | 
| 
       170 
     | 
    
         
            -
              },
         
     | 
| 
       171 
     | 
    
         
            -
              "bgn": {
         
     | 
| 
       172 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       173 
     | 
    
         
            -
                "iso_code": "BGN",
         
     | 
| 
       174 
     | 
    
         
            -
                "name": "Bulgarian Lev",
         
     | 
| 
       175 
     | 
    
         
            -
                "symbol": "лв",
         
     | 
| 
       176 
     | 
    
         
            -
                "subunit": "Stotinka",
         
     | 
| 
       177 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       178 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       179 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       180 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       181 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       182 
     | 
    
         
            -
                "iso_numeric": "975"
         
     | 
| 
       183 
     | 
    
         
            -
              },
         
     | 
| 
       184 
     | 
    
         
            -
              "bhd": {
         
     | 
| 
       185 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       186 
     | 
    
         
            -
                "iso_code": "BHD",
         
     | 
| 
       187 
     | 
    
         
            -
                "name": "Bahraini Dinar",
         
     | 
| 
       188 
     | 
    
         
            -
                "symbol": "ب.د",
         
     | 
| 
       189 
     | 
    
         
            -
                "subunit": "Fils",
         
     | 
| 
       190 
     | 
    
         
            -
                "subunit_to_unit": 1000,
         
     | 
| 
       191 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       192 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       193 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       194 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       195 
     | 
    
         
            -
                "iso_numeric": "048"
         
     | 
| 
       196 
     | 
    
         
            -
              },
         
     | 
| 
       197 
     | 
    
         
            -
              "bif": {
         
     | 
| 
       198 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       199 
     | 
    
         
            -
                "iso_code": "BIF",
         
     | 
| 
       200 
     | 
    
         
            -
                "name": "Burundian Franc",
         
     | 
| 
       201 
     | 
    
         
            -
                "symbol": "Fr",
         
     | 
| 
       202 
     | 
    
         
            -
                "subunit": "Centime",
         
     | 
| 
       203 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       204 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       205 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       206 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       207 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       208 
     | 
    
         
            -
                "iso_numeric": "108"
         
     | 
| 
       209 
     | 
    
         
            -
              },
         
     | 
| 
       210 
     | 
    
         
            -
              "bmd": {
         
     | 
| 
       211 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       212 
     | 
    
         
            -
                "iso_code": "BMD",
         
     | 
| 
       213 
     | 
    
         
            -
                "name": "Bermudian Dollar",
         
     | 
| 
       214 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       215 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       216 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       217 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       218 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       219 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       220 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       221 
     | 
    
         
            -
                "iso_numeric": "060"
         
     | 
| 
       222 
     | 
    
         
            -
              },
         
     | 
| 
       223 
     | 
    
         
            -
              "bnd": {
         
     | 
| 
       224 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       225 
     | 
    
         
            -
                "iso_code": "BND",
         
     | 
| 
       226 
     | 
    
         
            -
                "name": "Brunei Dollar",
         
     | 
| 
       227 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       228 
     | 
    
         
            -
                "subunit": "Sen",
         
     | 
| 
       229 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       230 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       231 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       232 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       233 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       234 
     | 
    
         
            -
                "iso_numeric": "096"
         
     | 
| 
       235 
     | 
    
         
            -
              },
         
     | 
| 
       236 
     | 
    
         
            -
              "bob": {
         
     | 
| 
       237 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       238 
     | 
    
         
            -
                "iso_code": "BOB",
         
     | 
| 
       239 
     | 
    
         
            -
                "name": "Bolivian Boliviano",
         
     | 
| 
       240 
     | 
    
         
            -
                "symbol": "Bs.",
         
     | 
| 
       241 
     | 
    
         
            -
                "subunit": "Centavo",
         
     | 
| 
       242 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       243 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       244 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       245 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       246 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       247 
     | 
    
         
            -
                "iso_numeric": "068"
         
     | 
| 
       248 
     | 
    
         
            -
              },
         
     | 
| 
       249 
     | 
    
         
            -
              "brl": {
         
     | 
| 
       250 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       251 
     | 
    
         
            -
                "iso_code": "BRL",
         
     | 
| 
       252 
     | 
    
         
            -
                "name": "Brazilian Real",
         
     | 
| 
       253 
     | 
    
         
            -
                "symbol": "R$ ",
         
     | 
| 
       254 
     | 
    
         
            -
                "subunit": "Centavo",
         
     | 
| 
       255 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       256 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       257 
     | 
    
         
            -
                "html_entity": "R$",
         
     | 
| 
       258 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       259 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       260 
     | 
    
         
            -
                "iso_numeric": "986"
         
     | 
| 
       261 
     | 
    
         
            -
              },
         
     | 
| 
       262 
     | 
    
         
            -
              "bsd": {
         
     | 
| 
       263 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       264 
     | 
    
         
            -
                "iso_code": "BSD",
         
     | 
| 
       265 
     | 
    
         
            -
                "name": "Bahamian Dollar",
         
     | 
| 
       266 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       267 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       268 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       269 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       270 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       271 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       272 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       273 
     | 
    
         
            -
                "iso_numeric": "044"
         
     | 
| 
       274 
     | 
    
         
            -
              },
         
     | 
| 
       275 
     | 
    
         
            -
              "btn": {
         
     | 
| 
       276 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       277 
     | 
    
         
            -
                "iso_code": "BTN",
         
     | 
| 
       278 
     | 
    
         
            -
                "name": "Bhutanese Ngultrum",
         
     | 
| 
       279 
     | 
    
         
            -
                "symbol": null,
         
     | 
| 
       280 
     | 
    
         
            -
                "subunit": "Chertrum",
         
     | 
| 
       281 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       282 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       283 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       284 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       285 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       286 
     | 
    
         
            -
                "iso_numeric": "064"
         
     | 
| 
       287 
     | 
    
         
            -
              },
         
     | 
| 
       288 
     | 
    
         
            -
              "bwp": {
         
     | 
| 
       289 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       290 
     | 
    
         
            -
                "iso_code": "BWP",
         
     | 
| 
       291 
     | 
    
         
            -
                "name": "Botswana Pula",
         
     | 
| 
       292 
     | 
    
         
            -
                "symbol": "P",
         
     | 
| 
       293 
     | 
    
         
            -
                "subunit": "Thebe",
         
     | 
| 
       294 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       295 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       296 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       297 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       298 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       299 
     | 
    
         
            -
                "iso_numeric": "072"
         
     | 
| 
       300 
     | 
    
         
            -
              },
         
     | 
| 
       301 
     | 
    
         
            -
              "byr": {
         
     | 
| 
       302 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       303 
     | 
    
         
            -
                "iso_code": "BYR",
         
     | 
| 
       304 
     | 
    
         
            -
                "name": "Belarusian Ruble",
         
     | 
| 
       305 
     | 
    
         
            -
                "symbol": "Br",
         
     | 
| 
       306 
     | 
    
         
            -
                "subunit": "Kapyeyka",
         
     | 
| 
       307 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       308 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       309 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       310 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       311 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       312 
     | 
    
         
            -
                "iso_numeric": "974"
         
     | 
| 
       313 
     | 
    
         
            -
              },
         
     | 
| 
       314 
     | 
    
         
            -
              "bzd": {
         
     | 
| 
       315 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       316 
     | 
    
         
            -
                "iso_code": "BZD",
         
     | 
| 
       317 
     | 
    
         
            -
                "name": "Belize Dollar",
         
     | 
| 
       318 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       319 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       320 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       321 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       322 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       323 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       324 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       325 
     | 
    
         
            -
                "iso_numeric": "084"
         
     | 
| 
       326 
     | 
    
         
            -
              },
         
     | 
| 
       327 
     | 
    
         
            -
              "cad": {
         
     | 
| 
       328 
     | 
    
         
            -
                "priority": 5,
         
     | 
| 
       329 
     | 
    
         
            -
                "iso_code": "CAD",
         
     | 
| 
       330 
     | 
    
         
            -
                "name": "Canadian Dollar",
         
     | 
| 
       331 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       332 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       333 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       334 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       335 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       336 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       337 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       338 
     | 
    
         
            -
                "iso_numeric": "124"
         
     | 
| 
       339 
     | 
    
         
            -
              },
         
     | 
| 
       340 
     | 
    
         
            -
              "cdf": {
         
     | 
| 
       341 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       342 
     | 
    
         
            -
                "iso_code": "CDF",
         
     | 
| 
       343 
     | 
    
         
            -
                "name": "Congolese Franc",
         
     | 
| 
       344 
     | 
    
         
            -
                "symbol": "Fr",
         
     | 
| 
       345 
     | 
    
         
            -
                "subunit": "Centime",
         
     | 
| 
       346 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       347 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       348 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       349 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       350 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       351 
     | 
    
         
            -
                "iso_numeric": "976"
         
     | 
| 
       352 
     | 
    
         
            -
              },
         
     | 
| 
       353 
     | 
    
         
            -
              "chf": {
         
     | 
| 
       354 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       355 
     | 
    
         
            -
                "iso_code": "CHF",
         
     | 
| 
       356 
     | 
    
         
            -
                "name": "Swiss Franc",
         
     | 
| 
       357 
     | 
    
         
            -
                "symbol": "Fr",
         
     | 
| 
       358 
     | 
    
         
            -
                "subunit": "Rappen",
         
     | 
| 
       359 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       360 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       361 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       362 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       363 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       364 
     | 
    
         
            -
                "iso_numeric": "756"
         
     | 
| 
       365 
     | 
    
         
            -
              },
         
     | 
| 
       366 
     | 
    
         
            -
              "clp": {
         
     | 
| 
       367 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       368 
     | 
    
         
            -
                "iso_code": "CLP",
         
     | 
| 
       369 
     | 
    
         
            -
                "name": "Chilean Peso",
         
     | 
| 
       370 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       371 
     | 
    
         
            -
                "subunit": "Peso",
         
     | 
| 
       372 
     | 
    
         
            -
                "subunit_to_unit": 1,
         
     | 
| 
       373 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       374 
     | 
    
         
            -
                "html_entity": "₱",
         
     | 
| 
       375 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       376 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       377 
     | 
    
         
            -
                "iso_numeric": "152"
         
     | 
| 
       378 
     | 
    
         
            -
              },
         
     | 
| 
       379 
     | 
    
         
            -
              "cny": {
         
     | 
| 
       380 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       381 
     | 
    
         
            -
                "iso_code": "CNY",
         
     | 
| 
       382 
     | 
    
         
            -
                "name": "Chinese Renminbi Yuan",
         
     | 
| 
       383 
     | 
    
         
            -
                "symbol": "¥",
         
     | 
| 
       384 
     | 
    
         
            -
                "subunit": "Fen",
         
     | 
| 
       385 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       386 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       387 
     | 
    
         
            -
                "html_entity": "圓",
         
     | 
| 
       388 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       389 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       390 
     | 
    
         
            -
                "iso_numeric": "156"
         
     | 
| 
       391 
     | 
    
         
            -
              },
         
     | 
| 
       392 
     | 
    
         
            -
              "cop": {
         
     | 
| 
       393 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       394 
     | 
    
         
            -
                "iso_code": "COP",
         
     | 
| 
       395 
     | 
    
         
            -
                "name": "Colombian Peso",
         
     | 
| 
       396 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       397 
     | 
    
         
            -
                "subunit": "Centavo",
         
     | 
| 
       398 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       399 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       400 
     | 
    
         
            -
                "html_entity": "₱",
         
     | 
| 
       401 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       402 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       403 
     | 
    
         
            -
                "iso_numeric": "170"
         
     | 
| 
       404 
     | 
    
         
            -
              },
         
     | 
| 
       405 
     | 
    
         
            -
              "crc": {
         
     | 
| 
       406 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       407 
     | 
    
         
            -
                "iso_code": "CRC",
         
     | 
| 
       408 
     | 
    
         
            -
                "name": "Costa Rican Colón",
         
     | 
| 
       409 
     | 
    
         
            -
                "symbol": "₡",
         
     | 
| 
       410 
     | 
    
         
            -
                "subunit": "Céntimo",
         
     | 
| 
       411 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       412 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       413 
     | 
    
         
            -
                "html_entity": "₡",
         
     | 
| 
       414 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       415 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       416 
     | 
    
         
            -
                "iso_numeric": "188"
         
     | 
| 
       417 
     | 
    
         
            -
              },
         
     | 
| 
       418 
     | 
    
         
            -
              "cuc": {
         
     | 
| 
       419 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       420 
     | 
    
         
            -
                "iso_code": "CUC",
         
     | 
| 
       421 
     | 
    
         
            -
                "name": "Cuban Convertible Peso",
         
     | 
| 
       422 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       423 
     | 
    
         
            -
                "subunit": "Centavo",
         
     | 
| 
       424 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       425 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       426 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       427 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       428 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       429 
     | 
    
         
            -
                "iso_numeric": "931"
         
     | 
| 
       430 
     | 
    
         
            -
              },
         
     | 
| 
       431 
     | 
    
         
            -
              "cup": {
         
     | 
| 
       432 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       433 
     | 
    
         
            -
                "iso_code": "CUP",
         
     | 
| 
       434 
     | 
    
         
            -
                "name": "Cuban Peso",
         
     | 
| 
       435 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       436 
     | 
    
         
            -
                "subunit": "Centavo",
         
     | 
| 
       437 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       438 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       439 
     | 
    
         
            -
                "html_entity": "₱",
         
     | 
| 
       440 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       441 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       442 
     | 
    
         
            -
                "iso_numeric": "192"
         
     | 
| 
       443 
     | 
    
         
            -
              },
         
     | 
| 
       444 
     | 
    
         
            -
              "cve": {
         
     | 
| 
       445 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       446 
     | 
    
         
            -
                "iso_code": "CVE",
         
     | 
| 
       447 
     | 
    
         
            -
                "name": "Cape Verdean Escudo",
         
     | 
| 
       448 
     | 
    
         
            -
                "symbol": "$ or Esc",
         
     | 
| 
       449 
     | 
    
         
            -
                "subunit": "Centavo",
         
     | 
| 
       450 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       451 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       452 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       453 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       454 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       455 
     | 
    
         
            -
                "iso_numeric": "132"
         
     | 
| 
       456 
     | 
    
         
            -
              },
         
     | 
| 
       457 
     | 
    
         
            -
              "czk": {
         
     | 
| 
       458 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       459 
     | 
    
         
            -
                "iso_code": "CZK",
         
     | 
| 
       460 
     | 
    
         
            -
                "name": "Czech Koruna",
         
     | 
| 
       461 
     | 
    
         
            -
                "symbol": "Kč",
         
     | 
| 
       462 
     | 
    
         
            -
                "subunit": "Haléř",
         
     | 
| 
       463 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       464 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       465 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       466 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       467 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       468 
     | 
    
         
            -
                "iso_numeric": "203"
         
     | 
| 
       469 
     | 
    
         
            -
              },
         
     | 
| 
       470 
     | 
    
         
            -
              "djf": {
         
     | 
| 
       471 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       472 
     | 
    
         
            -
                "iso_code": "DJF",
         
     | 
| 
       473 
     | 
    
         
            -
                "name": "Djiboutian Franc",
         
     | 
| 
       474 
     | 
    
         
            -
                "symbol": "Fr",
         
     | 
| 
       475 
     | 
    
         
            -
                "subunit": "Centime",
         
     | 
| 
       476 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       477 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       478 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       479 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       480 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       481 
     | 
    
         
            -
                "iso_numeric": "262"
         
     | 
| 
       482 
     | 
    
         
            -
              },
         
     | 
| 
       483 
     | 
    
         
            -
              "dkk": {
         
     | 
| 
       484 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       485 
     | 
    
         
            -
                "iso_code": "DKK",
         
     | 
| 
       486 
     | 
    
         
            -
                "name": "Danish Krone",
         
     | 
| 
       487 
     | 
    
         
            -
                "symbol": "kr",
         
     | 
| 
       488 
     | 
    
         
            -
                "subunit": "Øre",
         
     | 
| 
       489 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       490 
     | 
    
         
            -
                "symbol_first":  
     | 
| 
       491 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       492 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       493 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       494 
     | 
    
         
            -
                "iso_numeric": "208"
         
     | 
| 
       495 
     | 
    
         
            -
              },
         
     | 
| 
       496 
     | 
    
         
            -
              "dop": {
         
     | 
| 
       497 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       498 
     | 
    
         
            -
                "iso_code": "DOP",
         
     | 
| 
       499 
     | 
    
         
            -
                "name": "Dominican Peso",
         
     | 
| 
       500 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       501 
     | 
    
         
            -
                "subunit": "Centavo",
         
     | 
| 
       502 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       503 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       504 
     | 
    
         
            -
                "html_entity": "₱",
         
     | 
| 
       505 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       506 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       507 
     | 
    
         
            -
                "iso_numeric": "214"
         
     | 
| 
       508 
     | 
    
         
            -
              },
         
     | 
| 
       509 
     | 
    
         
            -
              "dzd": {
         
     | 
| 
       510 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       511 
     | 
    
         
            -
                "iso_code": "DZD",
         
     | 
| 
       512 
     | 
    
         
            -
                "name": "Algerian Dinar",
         
     | 
| 
       513 
     | 
    
         
            -
                "symbol": "د.ج",
         
     | 
| 
       514 
     | 
    
         
            -
                "subunit": "Centime",
         
     | 
| 
       515 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       516 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       517 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       518 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       519 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       520 
     | 
    
         
            -
                "iso_numeric": "012"
         
     | 
| 
       521 
     | 
    
         
            -
              },
         
     | 
| 
       522 
     | 
    
         
            -
              "egp": {
         
     | 
| 
       523 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       524 
     | 
    
         
            -
                "iso_code": "EGP",
         
     | 
| 
       525 
     | 
    
         
            -
                "name": "Egyptian Pound",
         
     | 
| 
       526 
     | 
    
         
            -
                "symbol": "£ or ج.م",
         
     | 
| 
       527 
     | 
    
         
            -
                "subunit": "Piastre",
         
     | 
| 
       528 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       529 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       530 
     | 
    
         
            -
                "html_entity": "£",
         
     | 
| 
       531 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       532 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       533 
     | 
    
         
            -
                "iso_numeric": "818"
         
     | 
| 
       534 
     | 
    
         
            -
              },
         
     | 
| 
       535 
     | 
    
         
            -
              "ern": {
         
     | 
| 
       536 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       537 
     | 
    
         
            -
                "iso_code": "ERN",
         
     | 
| 
       538 
     | 
    
         
            -
                "name": "Eritrean Nakfa",
         
     | 
| 
       539 
     | 
    
         
            -
                "symbol": "Nfk",
         
     | 
| 
       540 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       541 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       542 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       543 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       544 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       545 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       546 
     | 
    
         
            -
                "iso_numeric": "232"
         
     | 
| 
       547 
     | 
    
         
            -
              },
         
     | 
| 
       548 
     | 
    
         
            -
              "etb": {
         
     | 
| 
       549 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       550 
     | 
    
         
            -
                "iso_code": "ETB",
         
     | 
| 
       551 
     | 
    
         
            -
                "name": "Ethiopian Birr",
         
     | 
| 
       552 
     | 
    
         
            -
                "symbol": null,
         
     | 
| 
       553 
     | 
    
         
            -
                "subunit": "Santim",
         
     | 
| 
       554 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       555 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       556 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       557 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       558 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       559 
     | 
    
         
            -
                "iso_numeric": "230"
         
     | 
| 
       560 
     | 
    
         
            -
              },
         
     | 
| 
       561 
     | 
    
         
            -
              "eur": {
         
     | 
| 
       562 
     | 
    
         
            -
                "priority": 2,
         
     | 
| 
       563 
     | 
    
         
            -
                "iso_code": "EUR",
         
     | 
| 
       564 
     | 
    
         
            -
                "name": "Euro",
         
     | 
| 
       565 
     | 
    
         
            -
                "symbol": "€",
         
     | 
| 
       566 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       567 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       568 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       569 
     | 
    
         
            -
                "html_entity": "€",
         
     | 
| 
       570 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       571 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       572 
     | 
    
         
            -
                "iso_numeric": "978"
         
     | 
| 
       573 
     | 
    
         
            -
              },
         
     | 
| 
       574 
     | 
    
         
            -
              "fjd": {
         
     | 
| 
       575 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       576 
     | 
    
         
            -
                "iso_code": "FJD",
         
     | 
| 
       577 
     | 
    
         
            -
                "name": "Fijian Dollar",
         
     | 
| 
       578 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       579 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       580 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       581 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       582 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       583 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       584 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       585 
     | 
    
         
            -
                "iso_numeric": "242"
         
     | 
| 
       586 
     | 
    
         
            -
              },
         
     | 
| 
       587 
     | 
    
         
            -
              "fkp": {
         
     | 
| 
       588 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       589 
     | 
    
         
            -
                "iso_code": "FKP",
         
     | 
| 
       590 
     | 
    
         
            -
                "name": "Falkland Pound",
         
     | 
| 
       591 
     | 
    
         
            -
                "symbol": "£",
         
     | 
| 
       592 
     | 
    
         
            -
                "subunit": "Penny",
         
     | 
| 
       593 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       594 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       595 
     | 
    
         
            -
                "html_entity": "£",
         
     | 
| 
       596 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       597 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       598 
     | 
    
         
            -
                "iso_numeric": "238"
         
     | 
| 
       599 
     | 
    
         
            -
              },
         
     | 
| 
       600 
     | 
    
         
            -
              "gbp": {
         
     | 
| 
       601 
     | 
    
         
            -
                "priority": 3,
         
     | 
| 
       602 
     | 
    
         
            -
                "iso_code": "GBP",
         
     | 
| 
       603 
     | 
    
         
            -
                "name": "British Pound",
         
     | 
| 
       604 
     | 
    
         
            -
                "symbol": "£",
         
     | 
| 
       605 
     | 
    
         
            -
                "subunit": "Penny",
         
     | 
| 
       606 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       607 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       608 
     | 
    
         
            -
                "html_entity": "£",
         
     | 
| 
       609 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       610 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       611 
     | 
    
         
            -
                "iso_numeric": "826"
         
     | 
| 
       612 
     | 
    
         
            -
              },
         
     | 
| 
       613 
     | 
    
         
            -
              "gel": {
         
     | 
| 
       614 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       615 
     | 
    
         
            -
                "iso_code": "GEL",
         
     | 
| 
       616 
     | 
    
         
            -
                "name": "Georgian Lari",
         
     | 
| 
       617 
     | 
    
         
            -
                "symbol": "ლ",
         
     | 
| 
       618 
     | 
    
         
            -
                "subunit": "Tetri",
         
     | 
| 
       619 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       620 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       621 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       622 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       623 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       624 
     | 
    
         
            -
                "iso_numeric": "981"
         
     | 
| 
       625 
     | 
    
         
            -
              },
         
     | 
| 
       626 
     | 
    
         
            -
              "ghs": {
         
     | 
| 
       627 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       628 
     | 
    
         
            -
                "iso_code": "GHS",
         
     | 
| 
       629 
     | 
    
         
            -
                "name": "Ghanaian Cedi",
         
     | 
| 
       630 
     | 
    
         
            -
                "symbol": "₵",
         
     | 
| 
       631 
     | 
    
         
            -
                "subunit": "Pesewa",
         
     | 
| 
       632 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       633 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       634 
     | 
    
         
            -
                "html_entity": "₵",
         
     | 
| 
       635 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       636 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       637 
     | 
    
         
            -
                "iso_numeric": "936"
         
     | 
| 
       638 
     | 
    
         
            -
              },
         
     | 
| 
       639 
     | 
    
         
            -
              "gip": {
         
     | 
| 
       640 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       641 
     | 
    
         
            -
                "iso_code": "GIP",
         
     | 
| 
       642 
     | 
    
         
            -
                "name": "Gibraltar Pound",
         
     | 
| 
       643 
     | 
    
         
            -
                "symbol": "£",
         
     | 
| 
       644 
     | 
    
         
            -
                "subunit": "Penny",
         
     | 
| 
       645 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       646 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       647 
     | 
    
         
            -
                "html_entity": "£",
         
     | 
| 
       648 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       649 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       650 
     | 
    
         
            -
                "iso_numeric": "292"
         
     | 
| 
       651 
     | 
    
         
            -
              },
         
     | 
| 
       652 
     | 
    
         
            -
              "gmd": {
         
     | 
| 
       653 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       654 
     | 
    
         
            -
                "iso_code": "GMD",
         
     | 
| 
       655 
     | 
    
         
            -
                "name": "Gambian Dalasi",
         
     | 
| 
       656 
     | 
    
         
            -
                "symbol": "D",
         
     | 
| 
       657 
     | 
    
         
            -
                "subunit": "Butut",
         
     | 
| 
       658 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       659 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       660 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       661 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       662 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       663 
     | 
    
         
            -
                "iso_numeric": "270"
         
     | 
| 
       664 
     | 
    
         
            -
              },
         
     | 
| 
       665 
     | 
    
         
            -
              "gnf": {
         
     | 
| 
       666 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       667 
     | 
    
         
            -
                "iso_code": "GNF",
         
     | 
| 
       668 
     | 
    
         
            -
                "name": "Guinean Franc",
         
     | 
| 
       669 
     | 
    
         
            -
                "symbol": "Fr",
         
     | 
| 
       670 
     | 
    
         
            -
                "subunit": "Centime",
         
     | 
| 
       671 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       672 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       673 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       674 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       675 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       676 
     | 
    
         
            -
                "iso_numeric": "324"
         
     | 
| 
       677 
     | 
    
         
            -
              },
         
     | 
| 
       678 
     | 
    
         
            -
              "gtq": {
         
     | 
| 
       679 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       680 
     | 
    
         
            -
                "iso_code": "GTQ",
         
     | 
| 
       681 
     | 
    
         
            -
                "name": "Guatemalan Quetzal",
         
     | 
| 
       682 
     | 
    
         
            -
                "symbol": "Q",
         
     | 
| 
       683 
     | 
    
         
            -
                "subunit": "Centavo",
         
     | 
| 
       684 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       685 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       686 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       687 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       688 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       689 
     | 
    
         
            -
                "iso_numeric": "320"
         
     | 
| 
       690 
     | 
    
         
            -
              },
         
     | 
| 
       691 
     | 
    
         
            -
              "gyd": {
         
     | 
| 
       692 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       693 
     | 
    
         
            -
                "iso_code": "GYD",
         
     | 
| 
       694 
     | 
    
         
            -
                "name": "Guyanese Dollar",
         
     | 
| 
       695 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       696 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       697 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       698 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       699 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       700 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       701 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       702 
     | 
    
         
            -
                "iso_numeric": "328"
         
     | 
| 
       703 
     | 
    
         
            -
              },
         
     | 
| 
       704 
     | 
    
         
            -
              "hkd": {
         
     | 
| 
       705 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       706 
     | 
    
         
            -
                "iso_code": "HKD",
         
     | 
| 
       707 
     | 
    
         
            -
                "name": "Hong Kong Dollar",
         
     | 
| 
       708 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       709 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       710 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       711 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       712 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       713 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       714 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       715 
     | 
    
         
            -
                "iso_numeric": "344"
         
     | 
| 
       716 
     | 
    
         
            -
              },
         
     | 
| 
       717 
     | 
    
         
            -
              "hnl": {
         
     | 
| 
       718 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       719 
     | 
    
         
            -
                "iso_code": "HNL",
         
     | 
| 
       720 
     | 
    
         
            -
                "name": "Honduran Lempira",
         
     | 
| 
       721 
     | 
    
         
            -
                "symbol": "L",
         
     | 
| 
       722 
     | 
    
         
            -
                "subunit": "Centavo",
         
     | 
| 
       723 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       724 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       725 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       726 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       727 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       728 
     | 
    
         
            -
                "iso_numeric": "340"
         
     | 
| 
       729 
     | 
    
         
            -
              },
         
     | 
| 
       730 
     | 
    
         
            -
              "hrk": {
         
     | 
| 
       731 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       732 
     | 
    
         
            -
                "iso_code": "HRK",
         
     | 
| 
       733 
     | 
    
         
            -
                "name": "Croatian Kuna",
         
     | 
| 
       734 
     | 
    
         
            -
                "symbol": "kn",
         
     | 
| 
       735 
     | 
    
         
            -
                "subunit": "Lipa",
         
     | 
| 
       736 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       737 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       738 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       739 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       740 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       741 
     | 
    
         
            -
                "iso_numeric": "191"
         
     | 
| 
       742 
     | 
    
         
            -
              },
         
     | 
| 
       743 
     | 
    
         
            -
              "htg": {
         
     | 
| 
       744 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       745 
     | 
    
         
            -
                "iso_code": "HTG",
         
     | 
| 
       746 
     | 
    
         
            -
                "name": "Haitian Gourde",
         
     | 
| 
       747 
     | 
    
         
            -
                "symbol": "G",
         
     | 
| 
       748 
     | 
    
         
            -
                "subunit": "Centime",
         
     | 
| 
       749 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       750 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       751 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       752 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       753 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       754 
     | 
    
         
            -
                "iso_numeric": "332"
         
     | 
| 
       755 
     | 
    
         
            -
              },
         
     | 
| 
       756 
     | 
    
         
            -
              "huf": {
         
     | 
| 
       757 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       758 
     | 
    
         
            -
                "iso_code": "HUF",
         
     | 
| 
       759 
     | 
    
         
            -
                "name": "Hungarian Forint",
         
     | 
| 
       760 
     | 
    
         
            -
                "symbol": "Ft",
         
     | 
| 
       761 
     | 
    
         
            -
                "subunit": "Fillér",
         
     | 
| 
       762 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       763 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       764 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       765 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       766 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       767 
     | 
    
         
            -
                "iso_numeric": "348"
         
     | 
| 
       768 
     | 
    
         
            -
              },
         
     | 
| 
       769 
     | 
    
         
            -
              "idr": {
         
     | 
| 
       770 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       771 
     | 
    
         
            -
                "iso_code": "IDR",
         
     | 
| 
       772 
     | 
    
         
            -
                "name": "Indonesian Rupiah",
         
     | 
| 
       773 
     | 
    
         
            -
                "symbol": "Rp",
         
     | 
| 
       774 
     | 
    
         
            -
                "subunit": "Sen",
         
     | 
| 
       775 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       776 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       777 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       778 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       779 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       780 
     | 
    
         
            -
                "iso_numeric": "360"
         
     | 
| 
       781 
     | 
    
         
            -
              },
         
     | 
| 
       782 
     | 
    
         
            -
              "ils": {
         
     | 
| 
       783 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       784 
     | 
    
         
            -
                "iso_code": "ILS",
         
     | 
| 
       785 
     | 
    
         
            -
                "name": "Israeli New Sheqel",
         
     | 
| 
       786 
     | 
    
         
            -
                "symbol": "₪",
         
     | 
| 
       787 
     | 
    
         
            -
                "subunit": "Agora",
         
     | 
| 
       788 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       789 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       790 
     | 
    
         
            -
                "html_entity": "₪",
         
     | 
| 
       791 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       792 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       793 
     | 
    
         
            -
                "iso_numeric": "376"
         
     | 
| 
       794 
     | 
    
         
            -
              },
         
     | 
| 
       795 
     | 
    
         
            -
              "inr": {
         
     | 
| 
       796 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       797 
     | 
    
         
            -
                "iso_code": "INR",
         
     | 
| 
       798 
     | 
    
         
            -
                "name": "Indian Rupee",
         
     | 
| 
       799 
     | 
    
         
            -
                "symbol": "₨",
         
     | 
| 
       800 
     | 
    
         
            -
                "subunit": "Paisa",
         
     | 
| 
       801 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       802 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       803 
     | 
    
         
            -
                "html_entity": "₨",
         
     | 
| 
       804 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       805 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       806 
     | 
    
         
            -
                "iso_numeric": "356"
         
     | 
| 
       807 
     | 
    
         
            -
              },
         
     | 
| 
       808 
     | 
    
         
            -
              "iqd": {
         
     | 
| 
       809 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       810 
     | 
    
         
            -
                "iso_code": "IQD",
         
     | 
| 
       811 
     | 
    
         
            -
                "name": "Iraqi Dinar",
         
     | 
| 
       812 
     | 
    
         
            -
                "symbol": "ع.د",
         
     | 
| 
       813 
     | 
    
         
            -
                "subunit": "Fils",
         
     | 
| 
       814 
     | 
    
         
            -
                "subunit_to_unit": 1000,
         
     | 
| 
       815 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       816 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       817 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       818 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       819 
     | 
    
         
            -
                "iso_numeric": "368"
         
     | 
| 
       820 
     | 
    
         
            -
              },
         
     | 
| 
       821 
     | 
    
         
            -
              "irr": {
         
     | 
| 
       822 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       823 
     | 
    
         
            -
                "iso_code": "IRR",
         
     | 
| 
       824 
     | 
    
         
            -
                "name": "Iranian Rial",
         
     | 
| 
       825 
     | 
    
         
            -
                "symbol": "﷼",
         
     | 
| 
       826 
     | 
    
         
            -
                "subunit": "Dinar",
         
     | 
| 
       827 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       828 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       829 
     | 
    
         
            -
                "html_entity": "﷼",
         
     | 
| 
       830 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       831 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       832 
     | 
    
         
            -
                "iso_numeric": "364"
         
     | 
| 
       833 
     | 
    
         
            -
              },
         
     | 
| 
       834 
     | 
    
         
            -
              "isk": {
         
     | 
| 
       835 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       836 
     | 
    
         
            -
                "iso_code": "ISK",
         
     | 
| 
       837 
     | 
    
         
            -
                "name": "Icelandic Króna",
         
     | 
| 
       838 
     | 
    
         
            -
                "symbol": "kr",
         
     | 
| 
       839 
     | 
    
         
            -
                "subunit": "Eyrir",
         
     | 
| 
       840 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       841 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       842 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       843 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       844 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       845 
     | 
    
         
            -
                "iso_numeric": "352"
         
     | 
| 
       846 
     | 
    
         
            -
              },
         
     | 
| 
       847 
     | 
    
         
            -
              "jmd": {
         
     | 
| 
       848 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       849 
     | 
    
         
            -
                "iso_code": "JMD",
         
     | 
| 
       850 
     | 
    
         
            -
                "name": "Jamaican Dollar",
         
     | 
| 
       851 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       852 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       853 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       854 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       855 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       856 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       857 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       858 
     | 
    
         
            -
                "iso_numeric": "388"
         
     | 
| 
       859 
     | 
    
         
            -
              },
         
     | 
| 
       860 
     | 
    
         
            -
              "jod": {
         
     | 
| 
       861 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       862 
     | 
    
         
            -
                "iso_code": "JOD",
         
     | 
| 
       863 
     | 
    
         
            -
                "name": "Jordanian Dinar",
         
     | 
| 
       864 
     | 
    
         
            -
                "symbol": "د.ا",
         
     | 
| 
       865 
     | 
    
         
            -
                "subunit": "Piastre",
         
     | 
| 
       866 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       867 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       868 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       869 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       870 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       871 
     | 
    
         
            -
                "iso_numeric": "400"
         
     | 
| 
       872 
     | 
    
         
            -
              },
         
     | 
| 
       873 
     | 
    
         
            -
              "jpy": {
         
     | 
| 
       874 
     | 
    
         
            -
                "priority": 6,
         
     | 
| 
       875 
     | 
    
         
            -
                "iso_code": "JPY",
         
     | 
| 
       876 
     | 
    
         
            -
                "name": "Japanese Yen",
         
     | 
| 
       877 
     | 
    
         
            -
                "symbol": "¥",
         
     | 
| 
       878 
     | 
    
         
            -
                "subunit": null,
         
     | 
| 
       879 
     | 
    
         
            -
                "subunit_to_unit": 1,
         
     | 
| 
       880 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       881 
     | 
    
         
            -
                "html_entity": "¥",
         
     | 
| 
       882 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       883 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       884 
     | 
    
         
            -
                "iso_numeric": "392"
         
     | 
| 
       885 
     | 
    
         
            -
              },
         
     | 
| 
       886 
     | 
    
         
            -
              "kes": {
         
     | 
| 
       887 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       888 
     | 
    
         
            -
                "iso_code": "KES",
         
     | 
| 
       889 
     | 
    
         
            -
                "name": "Kenyan Shilling",
         
     | 
| 
       890 
     | 
    
         
            -
                "symbol": "Sh",
         
     | 
| 
       891 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       892 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       893 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       894 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       895 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       896 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       897 
     | 
    
         
            -
                "iso_numeric": "404"
         
     | 
| 
       898 
     | 
    
         
            -
              },
         
     | 
| 
       899 
     | 
    
         
            -
              "kgs": {
         
     | 
| 
       900 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       901 
     | 
    
         
            -
                "iso_code": "KGS",
         
     | 
| 
       902 
     | 
    
         
            -
                "name": "Kyrgyzstani Som",
         
     | 
| 
       903 
     | 
    
         
            -
                "symbol": null,
         
     | 
| 
       904 
     | 
    
         
            -
                "subunit": "Tyiyn",
         
     | 
| 
       905 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       906 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       907 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       908 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       909 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       910 
     | 
    
         
            -
                "iso_numeric": "417"
         
     | 
| 
       911 
     | 
    
         
            -
              },
         
     | 
| 
       912 
     | 
    
         
            -
              "khr": {
         
     | 
| 
       913 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       914 
     | 
    
         
            -
                "iso_code": "KHR",
         
     | 
| 
       915 
     | 
    
         
            -
                "name": "Cambodian Riel",
         
     | 
| 
       916 
     | 
    
         
            -
                "symbol": "៛",
         
     | 
| 
       917 
     | 
    
         
            -
                "subunit": "Sen",
         
     | 
| 
       918 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       919 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       920 
     | 
    
         
            -
                "html_entity": "៛",
         
     | 
| 
       921 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       922 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       923 
     | 
    
         
            -
                "iso_numeric": "116"
         
     | 
| 
       924 
     | 
    
         
            -
              },
         
     | 
| 
       925 
     | 
    
         
            -
              "kmf": {
         
     | 
| 
       926 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       927 
     | 
    
         
            -
                "iso_code": "KMF",
         
     | 
| 
       928 
     | 
    
         
            -
                "name": "Comorian Franc",
         
     | 
| 
       929 
     | 
    
         
            -
                "symbol": "Fr",
         
     | 
| 
       930 
     | 
    
         
            -
                "subunit": "Centime",
         
     | 
| 
       931 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       932 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       933 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       934 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       935 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       936 
     | 
    
         
            -
                "iso_numeric": "174"
         
     | 
| 
       937 
     | 
    
         
            -
              },
         
     | 
| 
       938 
     | 
    
         
            -
              "kpw": {
         
     | 
| 
       939 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       940 
     | 
    
         
            -
                "iso_code": "KPW",
         
     | 
| 
       941 
     | 
    
         
            -
                "name": "North Korean Won",
         
     | 
| 
       942 
     | 
    
         
            -
                "symbol": "₩",
         
     | 
| 
       943 
     | 
    
         
            -
                "subunit": "Chŏn",
         
     | 
| 
       944 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       945 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       946 
     | 
    
         
            -
                "html_entity": "₩",
         
     | 
| 
       947 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       948 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       949 
     | 
    
         
            -
                "iso_numeric": "408"
         
     | 
| 
       950 
     | 
    
         
            -
              },
         
     | 
| 
       951 
     | 
    
         
            -
              "krw": {
         
     | 
| 
       952 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       953 
     | 
    
         
            -
                "iso_code": "KRW",
         
     | 
| 
       954 
     | 
    
         
            -
                "name": "South Korean Won",
         
     | 
| 
       955 
     | 
    
         
            -
                "symbol": "₩",
         
     | 
| 
       956 
     | 
    
         
            -
                "subunit": "Jeon",
         
     | 
| 
       957 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       958 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       959 
     | 
    
         
            -
                "html_entity": "₩",
         
     | 
| 
       960 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       961 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       962 
     | 
    
         
            -
                "iso_numeric": "410"
         
     | 
| 
       963 
     | 
    
         
            -
              },
         
     | 
| 
       964 
     | 
    
         
            -
              "kwd": {
         
     | 
| 
       965 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       966 
     | 
    
         
            -
                "iso_code": "KWD",
         
     | 
| 
       967 
     | 
    
         
            -
                "name": "Kuwaiti Dinar",
         
     | 
| 
       968 
     | 
    
         
            -
                "symbol": "د.ك",
         
     | 
| 
       969 
     | 
    
         
            -
                "subunit": "Fils",
         
     | 
| 
       970 
     | 
    
         
            -
                "subunit_to_unit": 1000,
         
     | 
| 
       971 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       972 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       973 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       974 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       975 
     | 
    
         
            -
                "iso_numeric": "414"
         
     | 
| 
       976 
     | 
    
         
            -
              },
         
     | 
| 
       977 
     | 
    
         
            -
              "kyd": {
         
     | 
| 
       978 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       979 
     | 
    
         
            -
                "iso_code": "KYD",
         
     | 
| 
       980 
     | 
    
         
            -
                "name": "Cayman Islands Dollar",
         
     | 
| 
       981 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       982 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       983 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       984 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       985 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       986 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       987 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       988 
     | 
    
         
            -
                "iso_numeric": "136"
         
     | 
| 
       989 
     | 
    
         
            -
              },
         
     | 
| 
       990 
     | 
    
         
            -
              "kzt": {
         
     | 
| 
       991 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       992 
     | 
    
         
            -
                "iso_code": "KZT",
         
     | 
| 
       993 
     | 
    
         
            -
                "name": "Kazakhstani Tenge",
         
     | 
| 
       994 
     | 
    
         
            -
                "symbol": "〒",
         
     | 
| 
       995 
     | 
    
         
            -
                "subunit": "Tiyn",
         
     | 
| 
       996 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       997 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       998 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       999 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1000 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1001 
     | 
    
         
            -
                "iso_numeric": "398"
         
     | 
| 
       1002 
     | 
    
         
            -
              },
         
     | 
| 
       1003 
     | 
    
         
            -
              "lak": {
         
     | 
| 
       1004 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1005 
     | 
    
         
            -
                "iso_code": "LAK",
         
     | 
| 
       1006 
     | 
    
         
            -
                "name": "Lao Kip",
         
     | 
| 
       1007 
     | 
    
         
            -
                "symbol": "₭",
         
     | 
| 
       1008 
     | 
    
         
            -
                "subunit": "Att",
         
     | 
| 
       1009 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1010 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1011 
     | 
    
         
            -
                "html_entity": "₭",
         
     | 
| 
       1012 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1013 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1014 
     | 
    
         
            -
                "iso_numeric": "418"
         
     | 
| 
       1015 
     | 
    
         
            -
              },
         
     | 
| 
       1016 
     | 
    
         
            -
              "lbp": {
         
     | 
| 
       1017 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1018 
     | 
    
         
            -
                "iso_code": "LBP",
         
     | 
| 
       1019 
     | 
    
         
            -
                "name": "Lebanese Pound",
         
     | 
| 
       1020 
     | 
    
         
            -
                "symbol": "ل.ل",
         
     | 
| 
       1021 
     | 
    
         
            -
                "subunit": "Piastre",
         
     | 
| 
       1022 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1023 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1024 
     | 
    
         
            -
                "html_entity": "£",
         
     | 
| 
       1025 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1026 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1027 
     | 
    
         
            -
                "iso_numeric": "422"
         
     | 
| 
       1028 
     | 
    
         
            -
              },
         
     | 
| 
       1029 
     | 
    
         
            -
              "lkr": {
         
     | 
| 
       1030 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1031 
     | 
    
         
            -
                "iso_code": "LKR",
         
     | 
| 
       1032 
     | 
    
         
            -
                "name": "Sri Lankan Rupee",
         
     | 
| 
       1033 
     | 
    
         
            -
                "symbol": "₨",
         
     | 
| 
       1034 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1035 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1036 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1037 
     | 
    
         
            -
                "html_entity": "௹",
         
     | 
| 
       1038 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1039 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1040 
     | 
    
         
            -
                "iso_numeric": "144"
         
     | 
| 
       1041 
     | 
    
         
            -
              },
         
     | 
| 
       1042 
     | 
    
         
            -
              "lrd": {
         
     | 
| 
       1043 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1044 
     | 
    
         
            -
                "iso_code": "LRD",
         
     | 
| 
       1045 
     | 
    
         
            -
                "name": "Liberian Dollar",
         
     | 
| 
       1046 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       1047 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1048 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1049 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1050 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       1051 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1052 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1053 
     | 
    
         
            -
                "iso_numeric": "430"
         
     | 
| 
       1054 
     | 
    
         
            -
              },
         
     | 
| 
       1055 
     | 
    
         
            -
              "lsl": {
         
     | 
| 
       1056 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1057 
     | 
    
         
            -
                "iso_code": "LSL",
         
     | 
| 
       1058 
     | 
    
         
            -
                "name": "Lesotho Loti",
         
     | 
| 
       1059 
     | 
    
         
            -
                "symbol": "L",
         
     | 
| 
       1060 
     | 
    
         
            -
                "subunit": "Sente",
         
     | 
| 
       1061 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1062 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1063 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1064 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1065 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1066 
     | 
    
         
            -
                "iso_numeric": "426"
         
     | 
| 
       1067 
     | 
    
         
            -
              },
         
     | 
| 
       1068 
     | 
    
         
            -
              "ltl": {
         
     | 
| 
       1069 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1070 
     | 
    
         
            -
                "iso_code": "LTL",
         
     | 
| 
       1071 
     | 
    
         
            -
                "name": "Lithuanian Litas",
         
     | 
| 
       1072 
     | 
    
         
            -
                "symbol": "Lt",
         
     | 
| 
       1073 
     | 
    
         
            -
                "subunit": "Centas",
         
     | 
| 
       1074 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1075 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1076 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1077 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1078 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1079 
     | 
    
         
            -
                "iso_numeric": "440"
         
     | 
| 
       1080 
     | 
    
         
            -
              },
         
     | 
| 
       1081 
     | 
    
         
            -
              "lvl": {
         
     | 
| 
       1082 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1083 
     | 
    
         
            -
                "iso_code": "LVL",
         
     | 
| 
       1084 
     | 
    
         
            -
                "name": "Latvian Lats",
         
     | 
| 
       1085 
     | 
    
         
            -
                "symbol": "Ls",
         
     | 
| 
       1086 
     | 
    
         
            -
                "subunit": "Santīms",
         
     | 
| 
       1087 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1088 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1089 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1090 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1091 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1092 
     | 
    
         
            -
                "iso_numeric": "428"
         
     | 
| 
       1093 
     | 
    
         
            -
              },
         
     | 
| 
       1094 
     | 
    
         
            -
              "lyd": {
         
     | 
| 
       1095 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1096 
     | 
    
         
            -
                "iso_code": "LYD",
         
     | 
| 
       1097 
     | 
    
         
            -
                "name": "Libyan Dinar",
         
     | 
| 
       1098 
     | 
    
         
            -
                "symbol": "ل.د",
         
     | 
| 
       1099 
     | 
    
         
            -
                "subunit": "Dirham",
         
     | 
| 
       1100 
     | 
    
         
            -
                "subunit_to_unit": 1000,
         
     | 
| 
       1101 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1102 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1103 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1104 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1105 
     | 
    
         
            -
                "iso_numeric": "434"
         
     | 
| 
       1106 
     | 
    
         
            -
              },
         
     | 
| 
       1107 
     | 
    
         
            -
              "mad": {
         
     | 
| 
       1108 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1109 
     | 
    
         
            -
                "iso_code": "MAD",
         
     | 
| 
       1110 
     | 
    
         
            -
                "name": "Moroccan Dirham",
         
     | 
| 
       1111 
     | 
    
         
            -
                "symbol": "د.م.",
         
     | 
| 
       1112 
     | 
    
         
            -
                "subunit": "Centime",
         
     | 
| 
       1113 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1114 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1115 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1116 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1117 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1118 
     | 
    
         
            -
                "iso_numeric": "504"
         
     | 
| 
       1119 
     | 
    
         
            -
              },
         
     | 
| 
       1120 
     | 
    
         
            -
              "mdl": {
         
     | 
| 
       1121 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1122 
     | 
    
         
            -
                "iso_code": "MDL",
         
     | 
| 
       1123 
     | 
    
         
            -
                "name": "Moldovan Leu",
         
     | 
| 
       1124 
     | 
    
         
            -
                "symbol": "L",
         
     | 
| 
       1125 
     | 
    
         
            -
                "subunit": "Ban",
         
     | 
| 
       1126 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1127 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1128 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1129 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1130 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1131 
     | 
    
         
            -
                "iso_numeric": "498"
         
     | 
| 
       1132 
     | 
    
         
            -
              },
         
     | 
| 
       1133 
     | 
    
         
            -
              "mga": {
         
     | 
| 
       1134 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1135 
     | 
    
         
            -
                "iso_code": "MGA",
         
     | 
| 
       1136 
     | 
    
         
            -
                "name": "Malagasy Ariary",
         
     | 
| 
       1137 
     | 
    
         
            -
                "symbol": null,
         
     | 
| 
       1138 
     | 
    
         
            -
                "subunit": "Iraimbilanja",
         
     | 
| 
       1139 
     | 
    
         
            -
                "subunit_to_unit": 5,
         
     | 
| 
       1140 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1141 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1142 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1143 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1144 
     | 
    
         
            -
                "iso_numeric": "969"
         
     | 
| 
       1145 
     | 
    
         
            -
              },
         
     | 
| 
       1146 
     | 
    
         
            -
              "mkd": {
         
     | 
| 
       1147 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1148 
     | 
    
         
            -
                "iso_code": "MKD",
         
     | 
| 
       1149 
     | 
    
         
            -
                "name": "Macedonian Denar",
         
     | 
| 
       1150 
     | 
    
         
            -
                "symbol": "ден",
         
     | 
| 
       1151 
     | 
    
         
            -
                "subunit": "Deni",
         
     | 
| 
       1152 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1153 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1154 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1155 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1156 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1157 
     | 
    
         
            -
                "iso_numeric": "807"
         
     | 
| 
       1158 
     | 
    
         
            -
              },
         
     | 
| 
       1159 
     | 
    
         
            -
              "mmk": {
         
     | 
| 
       1160 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1161 
     | 
    
         
            -
                "iso_code": "MMK",
         
     | 
| 
       1162 
     | 
    
         
            -
                "name": "Myanmar Kyat",
         
     | 
| 
       1163 
     | 
    
         
            -
                "symbol": "K",
         
     | 
| 
       1164 
     | 
    
         
            -
                "subunit": "Pya",
         
     | 
| 
       1165 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1166 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1167 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1168 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1169 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1170 
     | 
    
         
            -
                "iso_numeric": "104"
         
     | 
| 
       1171 
     | 
    
         
            -
              },
         
     | 
| 
       1172 
     | 
    
         
            -
              "mnt": {
         
     | 
| 
       1173 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1174 
     | 
    
         
            -
                "iso_code": "MNT",
         
     | 
| 
       1175 
     | 
    
         
            -
                "name": "Mongolian Tögrög",
         
     | 
| 
       1176 
     | 
    
         
            -
                "symbol": "₮",
         
     | 
| 
       1177 
     | 
    
         
            -
                "subunit": "Möngö",
         
     | 
| 
       1178 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1179 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1180 
     | 
    
         
            -
                "html_entity": "₮",
         
     | 
| 
       1181 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1182 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1183 
     | 
    
         
            -
                "iso_numeric": "496"
         
     | 
| 
       1184 
     | 
    
         
            -
              },
         
     | 
| 
       1185 
     | 
    
         
            -
              "mop": {
         
     | 
| 
       1186 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1187 
     | 
    
         
            -
                "iso_code": "MOP",
         
     | 
| 
       1188 
     | 
    
         
            -
                "name": "Macanese Pataca",
         
     | 
| 
       1189 
     | 
    
         
            -
                "symbol": "P",
         
     | 
| 
       1190 
     | 
    
         
            -
                "subunit": "Avo",
         
     | 
| 
       1191 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1192 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1193 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1194 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1195 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1196 
     | 
    
         
            -
                "iso_numeric": "446"
         
     | 
| 
       1197 
     | 
    
         
            -
              },
         
     | 
| 
       1198 
     | 
    
         
            -
              "mro": {
         
     | 
| 
       1199 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1200 
     | 
    
         
            -
                "iso_code": "MRO",
         
     | 
| 
       1201 
     | 
    
         
            -
                "name": "Mauritanian Ouguiya",
         
     | 
| 
       1202 
     | 
    
         
            -
                "symbol": "UM",
         
     | 
| 
       1203 
     | 
    
         
            -
                "subunit": "Khoums",
         
     | 
| 
       1204 
     | 
    
         
            -
                "subunit_to_unit": 5,
         
     | 
| 
       1205 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1206 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1207 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1208 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1209 
     | 
    
         
            -
                "iso_numeric": "478"
         
     | 
| 
       1210 
     | 
    
         
            -
              },
         
     | 
| 
       1211 
     | 
    
         
            -
              "mur": {
         
     | 
| 
       1212 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1213 
     | 
    
         
            -
                "iso_code": "MUR",
         
     | 
| 
       1214 
     | 
    
         
            -
                "name": "Mauritian Rupee",
         
     | 
| 
       1215 
     | 
    
         
            -
                "symbol": "₨",
         
     | 
| 
       1216 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1217 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1218 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1219 
     | 
    
         
            -
                "html_entity": "₨",
         
     | 
| 
       1220 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1221 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1222 
     | 
    
         
            -
                "iso_numeric": "480"
         
     | 
| 
       1223 
     | 
    
         
            -
              },
         
     | 
| 
       1224 
     | 
    
         
            -
              "mvr": {
         
     | 
| 
       1225 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1226 
     | 
    
         
            -
                "iso_code": "MVR",
         
     | 
| 
       1227 
     | 
    
         
            -
                "name": "Maldivian Rufiyaa",
         
     | 
| 
       1228 
     | 
    
         
            -
                "symbol": "ރ.",
         
     | 
| 
       1229 
     | 
    
         
            -
                "subunit": "Laari",
         
     | 
| 
       1230 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1231 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1232 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1233 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1234 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1235 
     | 
    
         
            -
                "iso_numeric": "462"
         
     | 
| 
       1236 
     | 
    
         
            -
              },
         
     | 
| 
       1237 
     | 
    
         
            -
              "mwk": {
         
     | 
| 
       1238 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1239 
     | 
    
         
            -
                "iso_code": "MWK",
         
     | 
| 
       1240 
     | 
    
         
            -
                "name": "Malawian Kwacha",
         
     | 
| 
       1241 
     | 
    
         
            -
                "symbol": "MK",
         
     | 
| 
       1242 
     | 
    
         
            -
                "subunit": "Tambala",
         
     | 
| 
       1243 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1244 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1245 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1246 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1247 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1248 
     | 
    
         
            -
                "iso_numeric": "454"
         
     | 
| 
       1249 
     | 
    
         
            -
              },
         
     | 
| 
       1250 
     | 
    
         
            -
              "mxn": {
         
     | 
| 
       1251 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1252 
     | 
    
         
            -
                "iso_code": "MXN",
         
     | 
| 
       1253 
     | 
    
         
            -
                "name": "Mexican Peso",
         
     | 
| 
       1254 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       1255 
     | 
    
         
            -
                "subunit": "Centavo",
         
     | 
| 
       1256 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1257 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1258 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       1259 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1260 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1261 
     | 
    
         
            -
                "iso_numeric": "484"
         
     | 
| 
       1262 
     | 
    
         
            -
              },
         
     | 
| 
       1263 
     | 
    
         
            -
              "myr": {
         
     | 
| 
       1264 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1265 
     | 
    
         
            -
                "iso_code": "MYR",
         
     | 
| 
       1266 
     | 
    
         
            -
                "name": "Malaysian Ringgit",
         
     | 
| 
       1267 
     | 
    
         
            -
                "symbol": "RM",
         
     | 
| 
       1268 
     | 
    
         
            -
                "subunit": "Sen",
         
     | 
| 
       1269 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1270 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1271 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1272 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1273 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1274 
     | 
    
         
            -
                "iso_numeric": "458"
         
     | 
| 
       1275 
     | 
    
         
            -
              },
         
     | 
| 
       1276 
     | 
    
         
            -
              "mzn": {
         
     | 
| 
       1277 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1278 
     | 
    
         
            -
                "iso_code": "MZN",
         
     | 
| 
       1279 
     | 
    
         
            -
                "name": "Mozambican Metical",
         
     | 
| 
       1280 
     | 
    
         
            -
                "symbol": "MTn",
         
     | 
| 
       1281 
     | 
    
         
            -
                "subunit": "Centavo",
         
     | 
| 
       1282 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1283 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1284 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1285 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       1286 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       1287 
     | 
    
         
            -
                "iso_numeric": "943"
         
     | 
| 
       1288 
     | 
    
         
            -
              },
         
     | 
| 
       1289 
     | 
    
         
            -
              "nad": {
         
     | 
| 
       1290 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1291 
     | 
    
         
            -
                "iso_code": "NAD",
         
     | 
| 
       1292 
     | 
    
         
            -
                "name": "Namibian Dollar",
         
     | 
| 
       1293 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       1294 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1295 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1296 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1297 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       1298 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1299 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1300 
     | 
    
         
            -
                "iso_numeric": "516"
         
     | 
| 
       1301 
     | 
    
         
            -
              },
         
     | 
| 
       1302 
     | 
    
         
            -
              "ngn": {
         
     | 
| 
       1303 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1304 
     | 
    
         
            -
                "iso_code": "NGN",
         
     | 
| 
       1305 
     | 
    
         
            -
                "name": "Nigerian Naira",
         
     | 
| 
       1306 
     | 
    
         
            -
                "symbol": "₦",
         
     | 
| 
       1307 
     | 
    
         
            -
                "subunit": "Kobo",
         
     | 
| 
       1308 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1309 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1310 
     | 
    
         
            -
                "html_entity": "₦",
         
     | 
| 
       1311 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1312 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1313 
     | 
    
         
            -
                "iso_numeric": "566"
         
     | 
| 
       1314 
     | 
    
         
            -
              },
         
     | 
| 
       1315 
     | 
    
         
            -
              "nio": {
         
     | 
| 
       1316 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1317 
     | 
    
         
            -
                "iso_code": "NIO",
         
     | 
| 
       1318 
     | 
    
         
            -
                "name": "Nicaraguan Córdoba",
         
     | 
| 
       1319 
     | 
    
         
            -
                "symbol": "C$",
         
     | 
| 
       1320 
     | 
    
         
            -
                "subunit": "Centavo",
         
     | 
| 
       1321 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1322 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1323 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1324 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1325 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1326 
     | 
    
         
            -
                "iso_numeric": "558"
         
     | 
| 
       1327 
     | 
    
         
            -
              },
         
     | 
| 
       1328 
     | 
    
         
            -
              "nok": {
         
     | 
| 
       1329 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1330 
     | 
    
         
            -
                "iso_code": "NOK",
         
     | 
| 
       1331 
     | 
    
         
            -
                "name": "Norwegian Krone",
         
     | 
| 
       1332 
     | 
    
         
            -
                "symbol": "kr",
         
     | 
| 
       1333 
     | 
    
         
            -
                "subunit": "Øre",
         
     | 
| 
       1334 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1335 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1336 
     | 
    
         
            -
                "html_entity": "kr",
         
     | 
| 
       1337 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       1338 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       1339 
     | 
    
         
            -
                "iso_numeric": "578"
         
     | 
| 
       1340 
     | 
    
         
            -
              },
         
     | 
| 
       1341 
     | 
    
         
            -
              "npr": {
         
     | 
| 
       1342 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1343 
     | 
    
         
            -
                "iso_code": "NPR",
         
     | 
| 
       1344 
     | 
    
         
            -
                "name": "Nepalese Rupee",
         
     | 
| 
       1345 
     | 
    
         
            -
                "symbol": "₨",
         
     | 
| 
       1346 
     | 
    
         
            -
                "subunit": "Paisa",
         
     | 
| 
       1347 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1348 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1349 
     | 
    
         
            -
                "html_entity": "₨",
         
     | 
| 
       1350 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1351 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1352 
     | 
    
         
            -
                "iso_numeric": "524"
         
     | 
| 
       1353 
     | 
    
         
            -
              },
         
     | 
| 
       1354 
     | 
    
         
            -
              "nzd": {
         
     | 
| 
       1355 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1356 
     | 
    
         
            -
                "iso_code": "NZD",
         
     | 
| 
       1357 
     | 
    
         
            -
                "name": "New Zealand Dollar",
         
     | 
| 
       1358 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       1359 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1360 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1361 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1362 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       1363 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1364 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1365 
     | 
    
         
            -
                "iso_numeric": "554"
         
     | 
| 
       1366 
     | 
    
         
            -
              },
         
     | 
| 
       1367 
     | 
    
         
            -
              "omr": {
         
     | 
| 
       1368 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1369 
     | 
    
         
            -
                "iso_code": "OMR",
         
     | 
| 
       1370 
     | 
    
         
            -
                "name": "Omani Rial",
         
     | 
| 
       1371 
     | 
    
         
            -
                "symbol": "ر.ع.",
         
     | 
| 
       1372 
     | 
    
         
            -
                "subunit": "Baisa",
         
     | 
| 
       1373 
     | 
    
         
            -
                "subunit_to_unit": 1000,
         
     | 
| 
       1374 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1375 
     | 
    
         
            -
                "html_entity": "﷼",
         
     | 
| 
       1376 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1377 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1378 
     | 
    
         
            -
                "iso_numeric": "512"
         
     | 
| 
       1379 
     | 
    
         
            -
              },
         
     | 
| 
       1380 
     | 
    
         
            -
              "pab": {
         
     | 
| 
       1381 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1382 
     | 
    
         
            -
                "iso_code": "PAB",
         
     | 
| 
       1383 
     | 
    
         
            -
                "name": "Panamanian Balboa",
         
     | 
| 
       1384 
     | 
    
         
            -
                "symbol": "B/.",
         
     | 
| 
       1385 
     | 
    
         
            -
                "subunit": "Centésimo",
         
     | 
| 
       1386 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1387 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1388 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1389 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1390 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1391 
     | 
    
         
            -
                "iso_numeric": "590"
         
     | 
| 
       1392 
     | 
    
         
            -
              },
         
     | 
| 
       1393 
     | 
    
         
            -
              "pen": {
         
     | 
| 
       1394 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1395 
     | 
    
         
            -
                "iso_code": "PEN",
         
     | 
| 
       1396 
     | 
    
         
            -
                "name": "Peruvian Nuevo Sol",
         
     | 
| 
       1397 
     | 
    
         
            -
                "symbol": "S/.",
         
     | 
| 
       1398 
     | 
    
         
            -
                "subunit": "Céntimo",
         
     | 
| 
       1399 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1400 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1401 
     | 
    
         
            -
                "html_entity": "S/.",
         
     | 
| 
       1402 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1403 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1404 
     | 
    
         
            -
                "iso_numeric": "604"
         
     | 
| 
       1405 
     | 
    
         
            -
              },
         
     | 
| 
       1406 
     | 
    
         
            -
              "pgk": {
         
     | 
| 
       1407 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1408 
     | 
    
         
            -
                "iso_code": "PGK",
         
     | 
| 
       1409 
     | 
    
         
            -
                "name": "Papua New Guinean Kina",
         
     | 
| 
       1410 
     | 
    
         
            -
                "symbol": "K",
         
     | 
| 
       1411 
     | 
    
         
            -
                "subunit": "Toea",
         
     | 
| 
       1412 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1413 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1414 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1415 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1416 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1417 
     | 
    
         
            -
                "iso_numeric": "598"
         
     | 
| 
       1418 
     | 
    
         
            -
              },
         
     | 
| 
       1419 
     | 
    
         
            -
              "php": {
         
     | 
| 
       1420 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1421 
     | 
    
         
            -
                "iso_code": "PHP",
         
     | 
| 
       1422 
     | 
    
         
            -
                "name": "Philippine Peso",
         
     | 
| 
       1423 
     | 
    
         
            -
                "symbol": "₱",
         
     | 
| 
       1424 
     | 
    
         
            -
                "subunit": "Centavo",
         
     | 
| 
       1425 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1426 
     | 
    
         
            -
                "symbol_first":  
     | 
| 
       1427 
     | 
    
         
            -
                "html_entity": "₱",
         
     | 
| 
       1428 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1429 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1430 
     | 
    
         
            -
                "iso_numeric": "608"
         
     | 
| 
       1431 
     | 
    
         
            -
              },
         
     | 
| 
       1432 
     | 
    
         
            -
              "pkr": {
         
     | 
| 
       1433 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1434 
     | 
    
         
            -
                "iso_code": "PKR",
         
     | 
| 
       1435 
     | 
    
         
            -
                "name": "Pakistani Rupee",
         
     | 
| 
       1436 
     | 
    
         
            -
                "symbol": "₨",
         
     | 
| 
       1437 
     | 
    
         
            -
                "subunit": "Paisa",
         
     | 
| 
       1438 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1439 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1440 
     | 
    
         
            -
                "html_entity": "₨",
         
     | 
| 
       1441 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1442 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1443 
     | 
    
         
            -
                "iso_numeric": "586"
         
     | 
| 
       1444 
     | 
    
         
            -
              },
         
     | 
| 
       1445 
     | 
    
         
            -
              "pln": {
         
     | 
| 
       1446 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1447 
     | 
    
         
            -
                "iso_code": "PLN",
         
     | 
| 
       1448 
     | 
    
         
            -
                "name": "Polish Złoty",
         
     | 
| 
       1449 
     | 
    
         
            -
                "symbol": "zł",
         
     | 
| 
       1450 
     | 
    
         
            -
                "subunit": "Grosz",
         
     | 
| 
       1451 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1452 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1453 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1454 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1455 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1456 
     | 
    
         
            -
                "iso_numeric": "985"
         
     | 
| 
       1457 
     | 
    
         
            -
              },
         
     | 
| 
       1458 
     | 
    
         
            -
              "pyg": {
         
     | 
| 
       1459 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1460 
     | 
    
         
            -
                "iso_code": "PYG",
         
     | 
| 
       1461 
     | 
    
         
            -
                "name": "Paraguayan Guaraní",
         
     | 
| 
       1462 
     | 
    
         
            -
                "symbol": "₲",
         
     | 
| 
       1463 
     | 
    
         
            -
                "subunit": "Céntimo",
         
     | 
| 
       1464 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1465 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1466 
     | 
    
         
            -
                "html_entity": "₲",
         
     | 
| 
       1467 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1468 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1469 
     | 
    
         
            -
                "iso_numeric": "600"
         
     | 
| 
       1470 
     | 
    
         
            -
              },
         
     | 
| 
       1471 
     | 
    
         
            -
              "qar": {
         
     | 
| 
       1472 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1473 
     | 
    
         
            -
                "iso_code": "QAR",
         
     | 
| 
       1474 
     | 
    
         
            -
                "name": "Qatari Riyal",
         
     | 
| 
       1475 
     | 
    
         
            -
                "symbol": "ر.ق",
         
     | 
| 
       1476 
     | 
    
         
            -
                "subunit": "Dirham",
         
     | 
| 
       1477 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1478 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1479 
     | 
    
         
            -
                "html_entity": "﷼",
         
     | 
| 
       1480 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1481 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1482 
     | 
    
         
            -
                "iso_numeric": "634"
         
     | 
| 
       1483 
     | 
    
         
            -
              },
         
     | 
| 
       1484 
     | 
    
         
            -
              "ron": {
         
     | 
| 
       1485 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1486 
     | 
    
         
            -
                "iso_code": "RON",
         
     | 
| 
       1487 
     | 
    
         
            -
                "name": "Romanian Leu",
         
     | 
| 
       1488 
     | 
    
         
            -
                "symbol": "L",
         
     | 
| 
       1489 
     | 
    
         
            -
                "subunit": "Ban",
         
     | 
| 
       1490 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1491 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1492 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1493 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       1494 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       1495 
     | 
    
         
            -
                "iso_numeric": "946"
         
     | 
| 
       1496 
     | 
    
         
            -
              },
         
     | 
| 
       1497 
     | 
    
         
            -
              "rsd": {
         
     | 
| 
       1498 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1499 
     | 
    
         
            -
                "iso_code": "RSD",
         
     | 
| 
       1500 
     | 
    
         
            -
                "name": "Serbian Dinar",
         
     | 
| 
       1501 
     | 
    
         
            -
                "symbol": "din. or дин.",
         
     | 
| 
       1502 
     | 
    
         
            -
                "subunit": "Para",
         
     | 
| 
       1503 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1504 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1505 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1506 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1507 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1508 
     | 
    
         
            -
                "iso_numeric": "941"
         
     | 
| 
       1509 
     | 
    
         
            -
              },
         
     | 
| 
       1510 
     | 
    
         
            -
              "rub": {
         
     | 
| 
       1511 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1512 
     | 
    
         
            -
                "iso_code": "RUB",
         
     | 
| 
       1513 
     | 
    
         
            -
                "name": "Russian Ruble",
         
     | 
| 
       1514 
     | 
    
         
            -
                "symbol": "р.",
         
     | 
| 
       1515 
     | 
    
         
            -
                "subunit": "Kopek",
         
     | 
| 
       1516 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1517 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1518 
     | 
    
         
            -
                "html_entity": "руб",
         
     | 
| 
       1519 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       1520 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       1521 
     | 
    
         
            -
                "iso_numeric": "643"
         
     | 
| 
       1522 
     | 
    
         
            -
              },
         
     | 
| 
       1523 
     | 
    
         
            -
              "rwf": {
         
     | 
| 
       1524 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1525 
     | 
    
         
            -
                "iso_code": "RWF",
         
     | 
| 
       1526 
     | 
    
         
            -
                "name": "Rwandan Franc",
         
     | 
| 
       1527 
     | 
    
         
            -
                "symbol": "Fr",
         
     | 
| 
       1528 
     | 
    
         
            -
                "subunit": "Centime",
         
     | 
| 
       1529 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1530 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1531 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1532 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1533 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1534 
     | 
    
         
            -
                "iso_numeric": "646"
         
     | 
| 
       1535 
     | 
    
         
            -
              },
         
     | 
| 
       1536 
     | 
    
         
            -
              "sar": {
         
     | 
| 
       1537 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1538 
     | 
    
         
            -
                "iso_code": "SAR",
         
     | 
| 
       1539 
     | 
    
         
            -
                "name": "Saudi Riyal",
         
     | 
| 
       1540 
     | 
    
         
            -
                "symbol": "ر.س",
         
     | 
| 
       1541 
     | 
    
         
            -
                "subunit": "Hallallah",
         
     | 
| 
       1542 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1543 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1544 
     | 
    
         
            -
                "html_entity": "﷼",
         
     | 
| 
       1545 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1546 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1547 
     | 
    
         
            -
                "iso_numeric": "682"
         
     | 
| 
       1548 
     | 
    
         
            -
              },
         
     | 
| 
       1549 
     | 
    
         
            -
              "sbd": {
         
     | 
| 
       1550 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1551 
     | 
    
         
            -
                "iso_code": "SBD",
         
     | 
| 
       1552 
     | 
    
         
            -
                "name": "Solomon Islands Dollar",
         
     | 
| 
       1553 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       1554 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1555 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1556 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1557 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       1558 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1559 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1560 
     | 
    
         
            -
                "iso_numeric": "090"
         
     | 
| 
       1561 
     | 
    
         
            -
              },
         
     | 
| 
       1562 
     | 
    
         
            -
              "scr": {
         
     | 
| 
       1563 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1564 
     | 
    
         
            -
                "iso_code": "SCR",
         
     | 
| 
       1565 
     | 
    
         
            -
                "name": "Seychellois Rupee",
         
     | 
| 
       1566 
     | 
    
         
            -
                "symbol": "₨",
         
     | 
| 
       1567 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1568 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1569 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1570 
     | 
    
         
            -
                "html_entity": "₨",
         
     | 
| 
       1571 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1572 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1573 
     | 
    
         
            -
                "iso_numeric": "690"
         
     | 
| 
       1574 
     | 
    
         
            -
              },
         
     | 
| 
       1575 
     | 
    
         
            -
              "sdg": {
         
     | 
| 
       1576 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1577 
     | 
    
         
            -
                "iso_code": "SDG",
         
     | 
| 
       1578 
     | 
    
         
            -
                "name": "Sudanese Pound",
         
     | 
| 
       1579 
     | 
    
         
            -
                "symbol": "£",
         
     | 
| 
       1580 
     | 
    
         
            -
                "subunit": "Piastre",
         
     | 
| 
       1581 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1582 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1583 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1584 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1585 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1586 
     | 
    
         
            -
                "iso_numeric": "938"
         
     | 
| 
       1587 
     | 
    
         
            -
              },
         
     | 
| 
       1588 
     | 
    
         
            -
              "sek": {
         
     | 
| 
       1589 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1590 
     | 
    
         
            -
                "iso_code": "SEK",
         
     | 
| 
       1591 
     | 
    
         
            -
                "name": "Swedish Krona",
         
     | 
| 
       1592 
     | 
    
         
            -
                "symbol": "kr",
         
     | 
| 
       1593 
     | 
    
         
            -
                "subunit": "Öre",
         
     | 
| 
       1594 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1595 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1596 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1597 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1598 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1599 
     | 
    
         
            -
                "iso_numeric": "752"
         
     | 
| 
       1600 
     | 
    
         
            -
              },
         
     | 
| 
       1601 
     | 
    
         
            -
              "sgd": {
         
     | 
| 
       1602 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1603 
     | 
    
         
            -
                "iso_code": "SGD",
         
     | 
| 
       1604 
     | 
    
         
            -
                "name": "Singapore Dollar",
         
     | 
| 
       1605 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       1606 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1607 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1608 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1609 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       1610 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1611 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1612 
     | 
    
         
            -
                "iso_numeric": "702"
         
     | 
| 
       1613 
     | 
    
         
            -
              },
         
     | 
| 
       1614 
     | 
    
         
            -
              "shp": {
         
     | 
| 
       1615 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1616 
     | 
    
         
            -
                "iso_code": "SHP",
         
     | 
| 
       1617 
     | 
    
         
            -
                "name": "Saint Helenian Pound",
         
     | 
| 
       1618 
     | 
    
         
            -
                "symbol": "£",
         
     | 
| 
       1619 
     | 
    
         
            -
                "subunit": "Penny",
         
     | 
| 
       1620 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1621 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1622 
     | 
    
         
            -
                "html_entity": "£",
         
     | 
| 
       1623 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1624 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1625 
     | 
    
         
            -
                "iso_numeric": "654"
         
     | 
| 
       1626 
     | 
    
         
            -
              },
         
     | 
| 
       1627 
     | 
    
         
            -
              "skk": {
         
     | 
| 
       1628 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1629 
     | 
    
         
            -
                "iso_code": "SKK",
         
     | 
| 
       1630 
     | 
    
         
            -
                "name": "Slovak Koruna",
         
     | 
| 
       1631 
     | 
    
         
            -
                "symbol": "Sk",
         
     | 
| 
       1632 
     | 
    
         
            -
                "subunit": "Halier",
         
     | 
| 
       1633 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1634 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1635 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1636 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1637 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1638 
     | 
    
         
            -
                "iso_numeric": "703"
         
     | 
| 
       1639 
     | 
    
         
            -
              },
         
     | 
| 
       1640 
     | 
    
         
            -
              "sll": {
         
     | 
| 
       1641 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1642 
     | 
    
         
            -
                "iso_code": "SLL",
         
     | 
| 
       1643 
     | 
    
         
            -
                "name": "Sierra Leonean Leone",
         
     | 
| 
       1644 
     | 
    
         
            -
                "symbol": "Le",
         
     | 
| 
       1645 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1646 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1647 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1648 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1649 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1650 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1651 
     | 
    
         
            -
                "iso_numeric": "694"
         
     | 
| 
       1652 
     | 
    
         
            -
              },
         
     | 
| 
       1653 
     | 
    
         
            -
              "sos": {
         
     | 
| 
       1654 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1655 
     | 
    
         
            -
                "iso_code": "SOS",
         
     | 
| 
       1656 
     | 
    
         
            -
                "name": "Somali Shilling",
         
     | 
| 
       1657 
     | 
    
         
            -
                "symbol": "Sh",
         
     | 
| 
       1658 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1659 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1660 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1661 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1662 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1663 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1664 
     | 
    
         
            -
                "iso_numeric": "706"
         
     | 
| 
       1665 
     | 
    
         
            -
              },
         
     | 
| 
       1666 
     | 
    
         
            -
              "srd": {
         
     | 
| 
       1667 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1668 
     | 
    
         
            -
                "iso_code": "SRD",
         
     | 
| 
       1669 
     | 
    
         
            -
                "name": "Surinamese Dollar",
         
     | 
| 
       1670 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       1671 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1672 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1673 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1674 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1675 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1676 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1677 
     | 
    
         
            -
                "iso_numeric": "968"
         
     | 
| 
       1678 
     | 
    
         
            -
              },
         
     | 
| 
       1679 
     | 
    
         
            -
              "std": {
         
     | 
| 
       1680 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1681 
     | 
    
         
            -
                "iso_code": "STD",
         
     | 
| 
       1682 
     | 
    
         
            -
                "name": "São Tomé and Príncipe Dobra",
         
     | 
| 
       1683 
     | 
    
         
            -
                "symbol": "Db",
         
     | 
| 
       1684 
     | 
    
         
            -
                "subunit": "Cêntimo",
         
     | 
| 
       1685 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1686 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1687 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1688 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1689 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1690 
     | 
    
         
            -
                "iso_numeric": "678"
         
     | 
| 
       1691 
     | 
    
         
            -
              },
         
     | 
| 
       1692 
     | 
    
         
            -
              "svc": {
         
     | 
| 
       1693 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1694 
     | 
    
         
            -
                "iso_code": "SVC",
         
     | 
| 
       1695 
     | 
    
         
            -
                "name": "Salvadoran Colón",
         
     | 
| 
       1696 
     | 
    
         
            -
                "symbol": "₡",
         
     | 
| 
       1697 
     | 
    
         
            -
                "subunit": "Centavo",
         
     | 
| 
       1698 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1699 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1700 
     | 
    
         
            -
                "html_entity": "₡",
         
     | 
| 
       1701 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1702 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1703 
     | 
    
         
            -
                "iso_numeric": "222"
         
     | 
| 
       1704 
     | 
    
         
            -
              },
         
     | 
| 
       1705 
     | 
    
         
            -
              "syp": {
         
     | 
| 
       1706 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1707 
     | 
    
         
            -
                "iso_code": "SYP",
         
     | 
| 
       1708 
     | 
    
         
            -
                "name": "Syrian Pound",
         
     | 
| 
       1709 
     | 
    
         
            -
                "symbol": "£ or ل.س",
         
     | 
| 
       1710 
     | 
    
         
            -
                "subunit": "Piastre",
         
     | 
| 
       1711 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1712 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1713 
     | 
    
         
            -
                "html_entity": "£",
         
     | 
| 
       1714 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1715 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1716 
     | 
    
         
            -
                "iso_numeric": "760"
         
     | 
| 
       1717 
     | 
    
         
            -
              },
         
     | 
| 
       1718 
     | 
    
         
            -
              "szl": {
         
     | 
| 
       1719 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1720 
     | 
    
         
            -
                "iso_code": "SZL",
         
     | 
| 
       1721 
     | 
    
         
            -
                "name": "Swazi Lilangeni",
         
     | 
| 
       1722 
     | 
    
         
            -
                "symbol": "L",
         
     | 
| 
       1723 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1724 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1725 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1726 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1727 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1728 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1729 
     | 
    
         
            -
                "iso_numeric": "748"
         
     | 
| 
       1730 
     | 
    
         
            -
              },
         
     | 
| 
       1731 
     | 
    
         
            -
              "thb": {
         
     | 
| 
       1732 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1733 
     | 
    
         
            -
                "iso_code": "THB",
         
     | 
| 
       1734 
     | 
    
         
            -
                "name": "Thai Baht",
         
     | 
| 
       1735 
     | 
    
         
            -
                "symbol": "฿",
         
     | 
| 
       1736 
     | 
    
         
            -
                "subunit": "Satang",
         
     | 
| 
       1737 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1738 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1739 
     | 
    
         
            -
                "html_entity": "฿",
         
     | 
| 
       1740 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1741 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1742 
     | 
    
         
            -
                "iso_numeric": "764"
         
     | 
| 
       1743 
     | 
    
         
            -
              },
         
     | 
| 
       1744 
     | 
    
         
            -
              "tjs": {
         
     | 
| 
       1745 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1746 
     | 
    
         
            -
                "iso_code": "TJS",
         
     | 
| 
       1747 
     | 
    
         
            -
                "name": "Tajikistani Somoni",
         
     | 
| 
       1748 
     | 
    
         
            -
                "symbol": "ЅМ",
         
     | 
| 
       1749 
     | 
    
         
            -
                "subunit": "Diram",
         
     | 
| 
       1750 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1751 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1752 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1753 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1754 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1755 
     | 
    
         
            -
                "iso_numeric": "972"
         
     | 
| 
       1756 
     | 
    
         
            -
              },
         
     | 
| 
       1757 
     | 
    
         
            -
              "tmm": {
         
     | 
| 
       1758 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1759 
     | 
    
         
            -
                "iso_code": "TMM",
         
     | 
| 
       1760 
     | 
    
         
            -
                "name": "Turkmenistani Manat",
         
     | 
| 
       1761 
     | 
    
         
            -
                "symbol": "m",
         
     | 
| 
       1762 
     | 
    
         
            -
                "subunit": "Tennesi",
         
     | 
| 
       1763 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1764 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1765 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1766 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1767 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1768 
     | 
    
         
            -
                "iso_numeric": "795"
         
     | 
| 
       1769 
     | 
    
         
            -
              },
         
     | 
| 
       1770 
     | 
    
         
            -
              "tnd": {
         
     | 
| 
       1771 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1772 
     | 
    
         
            -
                "iso_code": "TND",
         
     | 
| 
       1773 
     | 
    
         
            -
                "name": "Tunisian Dinar",
         
     | 
| 
       1774 
     | 
    
         
            -
                "symbol": "د.ت",
         
     | 
| 
       1775 
     | 
    
         
            -
                "subunit": "Millime",
         
     | 
| 
       1776 
     | 
    
         
            -
                "subunit_to_unit": 1000,
         
     | 
| 
       1777 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1778 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1779 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1780 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1781 
     | 
    
         
            -
                "iso_numeric": "788"
         
     | 
| 
       1782 
     | 
    
         
            -
              },
         
     | 
| 
       1783 
     | 
    
         
            -
              "top": {
         
     | 
| 
       1784 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1785 
     | 
    
         
            -
                "iso_code": "TOP",
         
     | 
| 
       1786 
     | 
    
         
            -
                "name": "Tongan Paʻanga",
         
     | 
| 
       1787 
     | 
    
         
            -
                "symbol": "T$",
         
     | 
| 
       1788 
     | 
    
         
            -
                "subunit": "Seniti",
         
     | 
| 
       1789 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1790 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1791 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1792 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1793 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1794 
     | 
    
         
            -
                "iso_numeric": "776"
         
     | 
| 
       1795 
     | 
    
         
            -
              },
         
     | 
| 
       1796 
     | 
    
         
            -
              "try": {
         
     | 
| 
       1797 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1798 
     | 
    
         
            -
                "iso_code": "TRY",
         
     | 
| 
       1799 
     | 
    
         
            -
                "name": "Turkish Lira",
         
     | 
| 
       1800 
     | 
    
         
            -
                "symbol": "TL",
         
     | 
| 
       1801 
     | 
    
         
            -
                "subunit": "kuruş",
         
     | 
| 
       1802 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1803 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1804 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1805 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1806 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1807 
     | 
    
         
            -
                "iso_numeric": "949"
         
     | 
| 
       1808 
     | 
    
         
            -
              },
         
     | 
| 
       1809 
     | 
    
         
            -
              "ttd": {
         
     | 
| 
       1810 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1811 
     | 
    
         
            -
                "iso_code": "TTD",
         
     | 
| 
       1812 
     | 
    
         
            -
                "name": "Trinidad and Tobago Dollar",
         
     | 
| 
       1813 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       1814 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1815 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1816 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1817 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       1818 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1819 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1820 
     | 
    
         
            -
                "iso_numeric": "780"
         
     | 
| 
       1821 
     | 
    
         
            -
              },
         
     | 
| 
       1822 
     | 
    
         
            -
              "twd": {
         
     | 
| 
       1823 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1824 
     | 
    
         
            -
                "iso_code": "TWD",
         
     | 
| 
       1825 
     | 
    
         
            -
                "name": "New Taiwan Dollar",
         
     | 
| 
       1826 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       1827 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1828 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1829 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1830 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       1831 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1832 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1833 
     | 
    
         
            -
                "iso_numeric": "901"
         
     | 
| 
       1834 
     | 
    
         
            -
              },
         
     | 
| 
       1835 
     | 
    
         
            -
              "tzs": {
         
     | 
| 
       1836 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1837 
     | 
    
         
            -
                "iso_code": "TZS",
         
     | 
| 
       1838 
     | 
    
         
            -
                "name": "Tanzanian Shilling",
         
     | 
| 
       1839 
     | 
    
         
            -
                "symbol": "Sh",
         
     | 
| 
       1840 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1841 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1842 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1843 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1844 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1845 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1846 
     | 
    
         
            -
                "iso_numeric": "834"
         
     | 
| 
       1847 
     | 
    
         
            -
              },
         
     | 
| 
       1848 
     | 
    
         
            -
              "uah": {
         
     | 
| 
       1849 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1850 
     | 
    
         
            -
                "iso_code": "UAH",
         
     | 
| 
       1851 
     | 
    
         
            -
                "name": "Ukrainian Hryvnia",
         
     | 
| 
       1852 
     | 
    
         
            -
                "symbol": "₴",
         
     | 
| 
       1853 
     | 
    
         
            -
                "subunit": "Kopiyka",
         
     | 
| 
       1854 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1855 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1856 
     | 
    
         
            -
                "html_entity": "₴",
         
     | 
| 
       1857 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1858 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1859 
     | 
    
         
            -
                "iso_numeric": "980"
         
     | 
| 
       1860 
     | 
    
         
            -
              },
         
     | 
| 
       1861 
     | 
    
         
            -
              "ugx": {
         
     | 
| 
       1862 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1863 
     | 
    
         
            -
                "iso_code": "UGX",
         
     | 
| 
       1864 
     | 
    
         
            -
                "name": "Ugandan Shilling",
         
     | 
| 
       1865 
     | 
    
         
            -
                "symbol": "Sh",
         
     | 
| 
       1866 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1867 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1868 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1869 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1870 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1871 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1872 
     | 
    
         
            -
                "iso_numeric": "800"
         
     | 
| 
       1873 
     | 
    
         
            -
              },
         
     | 
| 
       1874 
     | 
    
         
            -
              "usd": {
         
     | 
| 
       1875 
     | 
    
         
            -
                "priority": 1,
         
     | 
| 
       1876 
     | 
    
         
            -
                "iso_code": "USD",
         
     | 
| 
       1877 
     | 
    
         
            -
                "name": "United States Dollar",
         
     | 
| 
       1878 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       1879 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1880 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1881 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1882 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       1883 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1884 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1885 
     | 
    
         
            -
                "iso_numeric": "840"
         
     | 
| 
       1886 
     | 
    
         
            -
              },
         
     | 
| 
       1887 
     | 
    
         
            -
              "uyu": {
         
     | 
| 
       1888 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1889 
     | 
    
         
            -
                "iso_code": "UYU",
         
     | 
| 
       1890 
     | 
    
         
            -
                "name": "Uruguayan Peso",
         
     | 
| 
       1891 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       1892 
     | 
    
         
            -
                "subunit": "Centésimo",
         
     | 
| 
       1893 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1894 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1895 
     | 
    
         
            -
                "html_entity": "₱",
         
     | 
| 
       1896 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       1897 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       1898 
     | 
    
         
            -
                "iso_numeric": "858"
         
     | 
| 
       1899 
     | 
    
         
            -
              },
         
     | 
| 
       1900 
     | 
    
         
            -
              "uzs": {
         
     | 
| 
       1901 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1902 
     | 
    
         
            -
                "iso_code": "UZS",
         
     | 
| 
       1903 
     | 
    
         
            -
                "name": "Uzbekistani Som",
         
     | 
| 
       1904 
     | 
    
         
            -
                "symbol": null,
         
     | 
| 
       1905 
     | 
    
         
            -
                "subunit": "Tiyin",
         
     | 
| 
       1906 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1907 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1908 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1909 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1910 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1911 
     | 
    
         
            -
                "iso_numeric": "860"
         
     | 
| 
       1912 
     | 
    
         
            -
              },
         
     | 
| 
       1913 
     | 
    
         
            -
              "vef": {
         
     | 
| 
       1914 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1915 
     | 
    
         
            -
                "iso_code": "VEF",
         
     | 
| 
       1916 
     | 
    
         
            -
                "name": "Venezuelan Bolívar",
         
     | 
| 
       1917 
     | 
    
         
            -
                "symbol": "Bs F",
         
     | 
| 
       1918 
     | 
    
         
            -
                "subunit": "Céntimo",
         
     | 
| 
       1919 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1920 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1921 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1922 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       1923 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       1924 
     | 
    
         
            -
                "iso_numeric": "937"
         
     | 
| 
       1925 
     | 
    
         
            -
              },
         
     | 
| 
       1926 
     | 
    
         
            -
              "vnd": {
         
     | 
| 
       1927 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1928 
     | 
    
         
            -
                "iso_code": "VND",
         
     | 
| 
       1929 
     | 
    
         
            -
                "name": "Vietnamese Đồng",
         
     | 
| 
       1930 
     | 
    
         
            -
                "symbol": "₫",
         
     | 
| 
       1931 
     | 
    
         
            -
                "subunit": "Hào",
         
     | 
| 
       1932 
     | 
    
         
            -
                "subunit_to_unit": 10,
         
     | 
| 
       1933 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1934 
     | 
    
         
            -
                "html_entity": "₫",
         
     | 
| 
       1935 
     | 
    
         
            -
                "decimal_mark": ",",
         
     | 
| 
       1936 
     | 
    
         
            -
                "thousands_separator": ".",
         
     | 
| 
       1937 
     | 
    
         
            -
                "iso_numeric": "704"
         
     | 
| 
       1938 
     | 
    
         
            -
              },
         
     | 
| 
       1939 
     | 
    
         
            -
              "vuv": {
         
     | 
| 
       1940 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1941 
     | 
    
         
            -
                "iso_code": "VUV",
         
     | 
| 
       1942 
     | 
    
         
            -
                "name": "Vanuatu Vatu",
         
     | 
| 
       1943 
     | 
    
         
            -
                "symbol": "Vt",
         
     | 
| 
       1944 
     | 
    
         
            -
                "subunit": null,
         
     | 
| 
       1945 
     | 
    
         
            -
                "subunit_to_unit": 1,
         
     | 
| 
       1946 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1947 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1948 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1949 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1950 
     | 
    
         
            -
                "iso_numeric": "548"
         
     | 
| 
       1951 
     | 
    
         
            -
              },
         
     | 
| 
       1952 
     | 
    
         
            -
              "wst": {
         
     | 
| 
       1953 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1954 
     | 
    
         
            -
                "iso_code": "WST",
         
     | 
| 
       1955 
     | 
    
         
            -
                "name": "Samoan Tala",
         
     | 
| 
       1956 
     | 
    
         
            -
                "symbol": "T",
         
     | 
| 
       1957 
     | 
    
         
            -
                "subunit": "Sene",
         
     | 
| 
       1958 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1959 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1960 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1961 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1962 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1963 
     | 
    
         
            -
                "iso_numeric": "882"
         
     | 
| 
       1964 
     | 
    
         
            -
              },
         
     | 
| 
       1965 
     | 
    
         
            -
              "xaf": {
         
     | 
| 
       1966 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1967 
     | 
    
         
            -
                "iso_code": "XAF",
         
     | 
| 
       1968 
     | 
    
         
            -
                "name": "Central African Cfa Franc",
         
     | 
| 
       1969 
     | 
    
         
            -
                "symbol": "Fr",
         
     | 
| 
       1970 
     | 
    
         
            -
                "subunit": "Centime",
         
     | 
| 
       1971 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1972 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1973 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       1974 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1975 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1976 
     | 
    
         
            -
                "iso_numeric": "950"
         
     | 
| 
       1977 
     | 
    
         
            -
              },
         
     | 
| 
       1978 
     | 
    
         
            -
              "xcd": {
         
     | 
| 
       1979 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1980 
     | 
    
         
            -
                "iso_code": "XCD",
         
     | 
| 
       1981 
     | 
    
         
            -
                "name": "East Caribbean Dollar",
         
     | 
| 
       1982 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       1983 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       1984 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1985 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       1986 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       1987 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       1988 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       1989 
     | 
    
         
            -
                "iso_numeric": "951"
         
     | 
| 
       1990 
     | 
    
         
            -
              },
         
     | 
| 
       1991 
     | 
    
         
            -
              "xof": {
         
     | 
| 
       1992 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       1993 
     | 
    
         
            -
                "iso_code": "XOF",
         
     | 
| 
       1994 
     | 
    
         
            -
                "name": "West African Cfa Franc",
         
     | 
| 
       1995 
     | 
    
         
            -
                "symbol": "Fr",
         
     | 
| 
       1996 
     | 
    
         
            -
                "subunit": "Centime",
         
     | 
| 
       1997 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       1998 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       1999 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       2000 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       2001 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       2002 
     | 
    
         
            -
                "iso_numeric": "952"
         
     | 
| 
       2003 
     | 
    
         
            -
              },
         
     | 
| 
       2004 
     | 
    
         
            -
              "xpf": {
         
     | 
| 
       2005 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       2006 
     | 
    
         
            -
                "iso_code": "XPF",
         
     | 
| 
       2007 
     | 
    
         
            -
                "name": "Cfp Franc",
         
     | 
| 
       2008 
     | 
    
         
            -
                "symbol": "Fr",
         
     | 
| 
       2009 
     | 
    
         
            -
                "subunit": "Centime",
         
     | 
| 
       2010 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       2011 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       2012 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       2013 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       2014 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       2015 
     | 
    
         
            -
                "iso_numeric": "953"
         
     | 
| 
       2016 
     | 
    
         
            -
              },
         
     | 
| 
       2017 
     | 
    
         
            -
              "yer": {
         
     | 
| 
       2018 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       2019 
     | 
    
         
            -
                "iso_code": "YER",
         
     | 
| 
       2020 
     | 
    
         
            -
                "name": "Yemeni Rial",
         
     | 
| 
       2021 
     | 
    
         
            -
                "symbol": "﷼",
         
     | 
| 
       2022 
     | 
    
         
            -
                "subunit": "Fils",
         
     | 
| 
       2023 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       2024 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       2025 
     | 
    
         
            -
                "html_entity": "﷼",
         
     | 
| 
       2026 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       2027 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       2028 
     | 
    
         
            -
                "iso_numeric": "886"
         
     | 
| 
       2029 
     | 
    
         
            -
              },
         
     | 
| 
       2030 
     | 
    
         
            -
              "zar": {
         
     | 
| 
       2031 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       2032 
     | 
    
         
            -
                "iso_code": "ZAR",
         
     | 
| 
       2033 
     | 
    
         
            -
                "name": "South African Rand",
         
     | 
| 
       2034 
     | 
    
         
            -
                "symbol": "R",
         
     | 
| 
       2035 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       2036 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       2037 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       2038 
     | 
    
         
            -
                "html_entity": "R",
         
     | 
| 
       2039 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       2040 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       2041 
     | 
    
         
            -
                "iso_numeric": "710"
         
     | 
| 
       2042 
     | 
    
         
            -
              },
         
     | 
| 
       2043 
     | 
    
         
            -
              "zmk": {
         
     | 
| 
       2044 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       2045 
     | 
    
         
            -
                "iso_code": "ZMK",
         
     | 
| 
       2046 
     | 
    
         
            -
                "name": "Zambian Kwacha",
         
     | 
| 
       2047 
     | 
    
         
            -
                "symbol": "ZK",
         
     | 
| 
       2048 
     | 
    
         
            -
                "subunit": "Ngwee",
         
     | 
| 
       2049 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       2050 
     | 
    
         
            -
                "symbol_first": false,
         
     | 
| 
       2051 
     | 
    
         
            -
                "html_entity": "",
         
     | 
| 
       2052 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       2053 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       2054 
     | 
    
         
            -
                "iso_numeric": "894"
         
     | 
| 
       2055 
     | 
    
         
            -
              },
         
     | 
| 
       2056 
     | 
    
         
            -
              "zwd": {
         
     | 
| 
       2057 
     | 
    
         
            -
                "priority": 100,
         
     | 
| 
       2058 
     | 
    
         
            -
                "iso_code": "ZWD",
         
     | 
| 
       2059 
     | 
    
         
            -
                "name": "Zimbabwean Dollar",
         
     | 
| 
       2060 
     | 
    
         
            -
                "symbol": "$",
         
     | 
| 
       2061 
     | 
    
         
            -
                "subunit": "Cent",
         
     | 
| 
       2062 
     | 
    
         
            -
                "subunit_to_unit": 100,
         
     | 
| 
       2063 
     | 
    
         
            -
                "symbol_first": true,
         
     | 
| 
       2064 
     | 
    
         
            -
                "html_entity": "$",
         
     | 
| 
       2065 
     | 
    
         
            -
                "decimal_mark": ".",
         
     | 
| 
       2066 
     | 
    
         
            -
                "thousands_separator": ",",
         
     | 
| 
       2067 
     | 
    
         
            -
                "iso_numeric": "716"
         
     | 
| 
       2068 
     | 
    
         
            -
              }
         
     | 
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              "aed": {
         
     | 
| 
      
 3 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 4 
     | 
    
         
            +
                "iso_code": "AED",
         
     | 
| 
      
 5 
     | 
    
         
            +
                "name": "United Arab Emirates Dirham",
         
     | 
| 
      
 6 
     | 
    
         
            +
                "symbol": "د.إ",
         
     | 
| 
      
 7 
     | 
    
         
            +
                "subunit": "Fils",
         
     | 
| 
      
 8 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 9 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 10 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 11 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 12 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 13 
     | 
    
         
            +
                "iso_numeric": "784"
         
     | 
| 
      
 14 
     | 
    
         
            +
              },
         
     | 
| 
      
 15 
     | 
    
         
            +
              "afn": {
         
     | 
| 
      
 16 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 17 
     | 
    
         
            +
                "iso_code": "AFN",
         
     | 
| 
      
 18 
     | 
    
         
            +
                "name": "Afghan Afghani",
         
     | 
| 
      
 19 
     | 
    
         
            +
                "symbol": "؋",
         
     | 
| 
      
 20 
     | 
    
         
            +
                "subunit": "Pul",
         
     | 
| 
      
 21 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 22 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 23 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 24 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 25 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 26 
     | 
    
         
            +
                "iso_numeric": "971"
         
     | 
| 
      
 27 
     | 
    
         
            +
              },
         
     | 
| 
      
 28 
     | 
    
         
            +
              "all": {
         
     | 
| 
      
 29 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 30 
     | 
    
         
            +
                "iso_code": "ALL",
         
     | 
| 
      
 31 
     | 
    
         
            +
                "name": "Albanian Lek",
         
     | 
| 
      
 32 
     | 
    
         
            +
                "symbol": "L",
         
     | 
| 
      
 33 
     | 
    
         
            +
                "subunit": "Qintar",
         
     | 
| 
      
 34 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 35 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 36 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 37 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 38 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 39 
     | 
    
         
            +
                "iso_numeric": "008"
         
     | 
| 
      
 40 
     | 
    
         
            +
              },
         
     | 
| 
      
 41 
     | 
    
         
            +
              "amd": {
         
     | 
| 
      
 42 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 43 
     | 
    
         
            +
                "iso_code": "AMD",
         
     | 
| 
      
 44 
     | 
    
         
            +
                "name": "Armenian Dram",
         
     | 
| 
      
 45 
     | 
    
         
            +
                "symbol": "դր.",
         
     | 
| 
      
 46 
     | 
    
         
            +
                "subunit": "Luma",
         
     | 
| 
      
 47 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 48 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 49 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 50 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 51 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 52 
     | 
    
         
            +
                "iso_numeric": "051"
         
     | 
| 
      
 53 
     | 
    
         
            +
              },
         
     | 
| 
      
 54 
     | 
    
         
            +
              "ang": {
         
     | 
| 
      
 55 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 56 
     | 
    
         
            +
                "iso_code": "ANG",
         
     | 
| 
      
 57 
     | 
    
         
            +
                "name": "Netherlands Antillean Gulden",
         
     | 
| 
      
 58 
     | 
    
         
            +
                "symbol": "ƒ",
         
     | 
| 
      
 59 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 60 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 61 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 62 
     | 
    
         
            +
                "html_entity": "ƒ",
         
     | 
| 
      
 63 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 64 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 65 
     | 
    
         
            +
                "iso_numeric": "532"
         
     | 
| 
      
 66 
     | 
    
         
            +
              },
         
     | 
| 
      
 67 
     | 
    
         
            +
              "aoa": {
         
     | 
| 
      
 68 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 69 
     | 
    
         
            +
                "iso_code": "AOA",
         
     | 
| 
      
 70 
     | 
    
         
            +
                "name": "Angolan Kwanza",
         
     | 
| 
      
 71 
     | 
    
         
            +
                "symbol": "Kz",
         
     | 
| 
      
 72 
     | 
    
         
            +
                "subunit": "Cêntimo",
         
     | 
| 
      
 73 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 74 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 75 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 76 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 77 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 78 
     | 
    
         
            +
                "iso_numeric": "973"
         
     | 
| 
      
 79 
     | 
    
         
            +
              },
         
     | 
| 
      
 80 
     | 
    
         
            +
              "ars": {
         
     | 
| 
      
 81 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 82 
     | 
    
         
            +
                "iso_code": "ARS",
         
     | 
| 
      
 83 
     | 
    
         
            +
                "name": "Argentine Peso",
         
     | 
| 
      
 84 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 85 
     | 
    
         
            +
                "subunit": "Centavo",
         
     | 
| 
      
 86 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 87 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 88 
     | 
    
         
            +
                "html_entity": "₱",
         
     | 
| 
      
 89 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 90 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 91 
     | 
    
         
            +
                "iso_numeric": "032"
         
     | 
| 
      
 92 
     | 
    
         
            +
              },
         
     | 
| 
      
 93 
     | 
    
         
            +
              "aud": {
         
     | 
| 
      
 94 
     | 
    
         
            +
                "priority": 4,
         
     | 
| 
      
 95 
     | 
    
         
            +
                "iso_code": "AUD",
         
     | 
| 
      
 96 
     | 
    
         
            +
                "name": "Australian Dollar",
         
     | 
| 
      
 97 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 98 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 99 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 100 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 101 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 102 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 103 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 104 
     | 
    
         
            +
                "iso_numeric": "036"
         
     | 
| 
      
 105 
     | 
    
         
            +
              },
         
     | 
| 
      
 106 
     | 
    
         
            +
              "awg": {
         
     | 
| 
      
 107 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 108 
     | 
    
         
            +
                "iso_code": "AWG",
         
     | 
| 
      
 109 
     | 
    
         
            +
                "name": "Aruban Florin",
         
     | 
| 
      
 110 
     | 
    
         
            +
                "symbol": "ƒ",
         
     | 
| 
      
 111 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 112 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 113 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 114 
     | 
    
         
            +
                "html_entity": "ƒ",
         
     | 
| 
      
 115 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 116 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 117 
     | 
    
         
            +
                "iso_numeric": "533"
         
     | 
| 
      
 118 
     | 
    
         
            +
              },
         
     | 
| 
      
 119 
     | 
    
         
            +
              "azn": {
         
     | 
| 
      
 120 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 121 
     | 
    
         
            +
                "iso_code": "AZN",
         
     | 
| 
      
 122 
     | 
    
         
            +
                "name": "Azerbaijani Manat",
         
     | 
| 
      
 123 
     | 
    
         
            +
                "symbol": null,
         
     | 
| 
      
 124 
     | 
    
         
            +
                "subunit": "Qəpik",
         
     | 
| 
      
 125 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 126 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 127 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 128 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 129 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 130 
     | 
    
         
            +
                "iso_numeric": "944"
         
     | 
| 
      
 131 
     | 
    
         
            +
              },
         
     | 
| 
      
 132 
     | 
    
         
            +
              "bam": {
         
     | 
| 
      
 133 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 134 
     | 
    
         
            +
                "iso_code": "BAM",
         
     | 
| 
      
 135 
     | 
    
         
            +
                "name": "Bosnia and Herzegovina Convertible Mark",
         
     | 
| 
      
 136 
     | 
    
         
            +
                "symbol": "KM or КМ",
         
     | 
| 
      
 137 
     | 
    
         
            +
                "subunit": "Fening",
         
     | 
| 
      
 138 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 139 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 140 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 141 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 142 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 143 
     | 
    
         
            +
                "iso_numeric": "977"
         
     | 
| 
      
 144 
     | 
    
         
            +
              },
         
     | 
| 
      
 145 
     | 
    
         
            +
              "bbd": {
         
     | 
| 
      
 146 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 147 
     | 
    
         
            +
                "iso_code": "BBD",
         
     | 
| 
      
 148 
     | 
    
         
            +
                "name": "Barbadian Dollar",
         
     | 
| 
      
 149 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 150 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 151 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 152 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 153 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 154 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 155 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 156 
     | 
    
         
            +
                "iso_numeric": "052"
         
     | 
| 
      
 157 
     | 
    
         
            +
              },
         
     | 
| 
      
 158 
     | 
    
         
            +
              "bdt": {
         
     | 
| 
      
 159 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 160 
     | 
    
         
            +
                "iso_code": "BDT",
         
     | 
| 
      
 161 
     | 
    
         
            +
                "name": "Bangladeshi Taka",
         
     | 
| 
      
 162 
     | 
    
         
            +
                "symbol": "৳",
         
     | 
| 
      
 163 
     | 
    
         
            +
                "subunit": "Paisa",
         
     | 
| 
      
 164 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 165 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 166 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 167 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 168 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 169 
     | 
    
         
            +
                "iso_numeric": "050"
         
     | 
| 
      
 170 
     | 
    
         
            +
              },
         
     | 
| 
      
 171 
     | 
    
         
            +
              "bgn": {
         
     | 
| 
      
 172 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 173 
     | 
    
         
            +
                "iso_code": "BGN",
         
     | 
| 
      
 174 
     | 
    
         
            +
                "name": "Bulgarian Lev",
         
     | 
| 
      
 175 
     | 
    
         
            +
                "symbol": "лв",
         
     | 
| 
      
 176 
     | 
    
         
            +
                "subunit": "Stotinka",
         
     | 
| 
      
 177 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 178 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 179 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 180 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 181 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 182 
     | 
    
         
            +
                "iso_numeric": "975"
         
     | 
| 
      
 183 
     | 
    
         
            +
              },
         
     | 
| 
      
 184 
     | 
    
         
            +
              "bhd": {
         
     | 
| 
      
 185 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 186 
     | 
    
         
            +
                "iso_code": "BHD",
         
     | 
| 
      
 187 
     | 
    
         
            +
                "name": "Bahraini Dinar",
         
     | 
| 
      
 188 
     | 
    
         
            +
                "symbol": "ب.د",
         
     | 
| 
      
 189 
     | 
    
         
            +
                "subunit": "Fils",
         
     | 
| 
      
 190 
     | 
    
         
            +
                "subunit_to_unit": 1000,
         
     | 
| 
      
 191 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 192 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 193 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 194 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 195 
     | 
    
         
            +
                "iso_numeric": "048"
         
     | 
| 
      
 196 
     | 
    
         
            +
              },
         
     | 
| 
      
 197 
     | 
    
         
            +
              "bif": {
         
     | 
| 
      
 198 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 199 
     | 
    
         
            +
                "iso_code": "BIF",
         
     | 
| 
      
 200 
     | 
    
         
            +
                "name": "Burundian Franc",
         
     | 
| 
      
 201 
     | 
    
         
            +
                "symbol": "Fr",
         
     | 
| 
      
 202 
     | 
    
         
            +
                "subunit": "Centime",
         
     | 
| 
      
 203 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 204 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 205 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 206 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 207 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 208 
     | 
    
         
            +
                "iso_numeric": "108"
         
     | 
| 
      
 209 
     | 
    
         
            +
              },
         
     | 
| 
      
 210 
     | 
    
         
            +
              "bmd": {
         
     | 
| 
      
 211 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 212 
     | 
    
         
            +
                "iso_code": "BMD",
         
     | 
| 
      
 213 
     | 
    
         
            +
                "name": "Bermudian Dollar",
         
     | 
| 
      
 214 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 215 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 216 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 217 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 218 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 219 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 220 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 221 
     | 
    
         
            +
                "iso_numeric": "060"
         
     | 
| 
      
 222 
     | 
    
         
            +
              },
         
     | 
| 
      
 223 
     | 
    
         
            +
              "bnd": {
         
     | 
| 
      
 224 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 225 
     | 
    
         
            +
                "iso_code": "BND",
         
     | 
| 
      
 226 
     | 
    
         
            +
                "name": "Brunei Dollar",
         
     | 
| 
      
 227 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 228 
     | 
    
         
            +
                "subunit": "Sen",
         
     | 
| 
      
 229 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 230 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 231 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 232 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 233 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 234 
     | 
    
         
            +
                "iso_numeric": "096"
         
     | 
| 
      
 235 
     | 
    
         
            +
              },
         
     | 
| 
      
 236 
     | 
    
         
            +
              "bob": {
         
     | 
| 
      
 237 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 238 
     | 
    
         
            +
                "iso_code": "BOB",
         
     | 
| 
      
 239 
     | 
    
         
            +
                "name": "Bolivian Boliviano",
         
     | 
| 
      
 240 
     | 
    
         
            +
                "symbol": "Bs.",
         
     | 
| 
      
 241 
     | 
    
         
            +
                "subunit": "Centavo",
         
     | 
| 
      
 242 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 243 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 244 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 245 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 246 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 247 
     | 
    
         
            +
                "iso_numeric": "068"
         
     | 
| 
      
 248 
     | 
    
         
            +
              },
         
     | 
| 
      
 249 
     | 
    
         
            +
              "brl": {
         
     | 
| 
      
 250 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 251 
     | 
    
         
            +
                "iso_code": "BRL",
         
     | 
| 
      
 252 
     | 
    
         
            +
                "name": "Brazilian Real",
         
     | 
| 
      
 253 
     | 
    
         
            +
                "symbol": "R$ ",
         
     | 
| 
      
 254 
     | 
    
         
            +
                "subunit": "Centavo",
         
     | 
| 
      
 255 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 256 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 257 
     | 
    
         
            +
                "html_entity": "R$",
         
     | 
| 
      
 258 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 259 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 260 
     | 
    
         
            +
                "iso_numeric": "986"
         
     | 
| 
      
 261 
     | 
    
         
            +
              },
         
     | 
| 
      
 262 
     | 
    
         
            +
              "bsd": {
         
     | 
| 
      
 263 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 264 
     | 
    
         
            +
                "iso_code": "BSD",
         
     | 
| 
      
 265 
     | 
    
         
            +
                "name": "Bahamian Dollar",
         
     | 
| 
      
 266 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 267 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 268 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 269 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 270 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 271 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 272 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 273 
     | 
    
         
            +
                "iso_numeric": "044"
         
     | 
| 
      
 274 
     | 
    
         
            +
              },
         
     | 
| 
      
 275 
     | 
    
         
            +
              "btn": {
         
     | 
| 
      
 276 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 277 
     | 
    
         
            +
                "iso_code": "BTN",
         
     | 
| 
      
 278 
     | 
    
         
            +
                "name": "Bhutanese Ngultrum",
         
     | 
| 
      
 279 
     | 
    
         
            +
                "symbol": null,
         
     | 
| 
      
 280 
     | 
    
         
            +
                "subunit": "Chertrum",
         
     | 
| 
      
 281 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 282 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 283 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 284 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 285 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 286 
     | 
    
         
            +
                "iso_numeric": "064"
         
     | 
| 
      
 287 
     | 
    
         
            +
              },
         
     | 
| 
      
 288 
     | 
    
         
            +
              "bwp": {
         
     | 
| 
      
 289 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 290 
     | 
    
         
            +
                "iso_code": "BWP",
         
     | 
| 
      
 291 
     | 
    
         
            +
                "name": "Botswana Pula",
         
     | 
| 
      
 292 
     | 
    
         
            +
                "symbol": "P",
         
     | 
| 
      
 293 
     | 
    
         
            +
                "subunit": "Thebe",
         
     | 
| 
      
 294 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 295 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 296 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 297 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 298 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 299 
     | 
    
         
            +
                "iso_numeric": "072"
         
     | 
| 
      
 300 
     | 
    
         
            +
              },
         
     | 
| 
      
 301 
     | 
    
         
            +
              "byr": {
         
     | 
| 
      
 302 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 303 
     | 
    
         
            +
                "iso_code": "BYR",
         
     | 
| 
      
 304 
     | 
    
         
            +
                "name": "Belarusian Ruble",
         
     | 
| 
      
 305 
     | 
    
         
            +
                "symbol": "Br",
         
     | 
| 
      
 306 
     | 
    
         
            +
                "subunit": "Kapyeyka",
         
     | 
| 
      
 307 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 308 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 309 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 310 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 311 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 312 
     | 
    
         
            +
                "iso_numeric": "974"
         
     | 
| 
      
 313 
     | 
    
         
            +
              },
         
     | 
| 
      
 314 
     | 
    
         
            +
              "bzd": {
         
     | 
| 
      
 315 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 316 
     | 
    
         
            +
                "iso_code": "BZD",
         
     | 
| 
      
 317 
     | 
    
         
            +
                "name": "Belize Dollar",
         
     | 
| 
      
 318 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 319 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 320 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 321 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 322 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 323 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 324 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 325 
     | 
    
         
            +
                "iso_numeric": "084"
         
     | 
| 
      
 326 
     | 
    
         
            +
              },
         
     | 
| 
      
 327 
     | 
    
         
            +
              "cad": {
         
     | 
| 
      
 328 
     | 
    
         
            +
                "priority": 5,
         
     | 
| 
      
 329 
     | 
    
         
            +
                "iso_code": "CAD",
         
     | 
| 
      
 330 
     | 
    
         
            +
                "name": "Canadian Dollar",
         
     | 
| 
      
 331 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 332 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 333 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 334 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 335 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 336 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 337 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 338 
     | 
    
         
            +
                "iso_numeric": "124"
         
     | 
| 
      
 339 
     | 
    
         
            +
              },
         
     | 
| 
      
 340 
     | 
    
         
            +
              "cdf": {
         
     | 
| 
      
 341 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 342 
     | 
    
         
            +
                "iso_code": "CDF",
         
     | 
| 
      
 343 
     | 
    
         
            +
                "name": "Congolese Franc",
         
     | 
| 
      
 344 
     | 
    
         
            +
                "symbol": "Fr",
         
     | 
| 
      
 345 
     | 
    
         
            +
                "subunit": "Centime",
         
     | 
| 
      
 346 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 347 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 348 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 349 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 350 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 351 
     | 
    
         
            +
                "iso_numeric": "976"
         
     | 
| 
      
 352 
     | 
    
         
            +
              },
         
     | 
| 
      
 353 
     | 
    
         
            +
              "chf": {
         
     | 
| 
      
 354 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 355 
     | 
    
         
            +
                "iso_code": "CHF",
         
     | 
| 
      
 356 
     | 
    
         
            +
                "name": "Swiss Franc",
         
     | 
| 
      
 357 
     | 
    
         
            +
                "symbol": "Fr",
         
     | 
| 
      
 358 
     | 
    
         
            +
                "subunit": "Rappen",
         
     | 
| 
      
 359 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 360 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 361 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 362 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 363 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 364 
     | 
    
         
            +
                "iso_numeric": "756"
         
     | 
| 
      
 365 
     | 
    
         
            +
              },
         
     | 
| 
      
 366 
     | 
    
         
            +
              "clp": {
         
     | 
| 
      
 367 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 368 
     | 
    
         
            +
                "iso_code": "CLP",
         
     | 
| 
      
 369 
     | 
    
         
            +
                "name": "Chilean Peso",
         
     | 
| 
      
 370 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 371 
     | 
    
         
            +
                "subunit": "Peso",
         
     | 
| 
      
 372 
     | 
    
         
            +
                "subunit_to_unit": 1,
         
     | 
| 
      
 373 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 374 
     | 
    
         
            +
                "html_entity": "₱",
         
     | 
| 
      
 375 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 376 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 377 
     | 
    
         
            +
                "iso_numeric": "152"
         
     | 
| 
      
 378 
     | 
    
         
            +
              },
         
     | 
| 
      
 379 
     | 
    
         
            +
              "cny": {
         
     | 
| 
      
 380 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 381 
     | 
    
         
            +
                "iso_code": "CNY",
         
     | 
| 
      
 382 
     | 
    
         
            +
                "name": "Chinese Renminbi Yuan",
         
     | 
| 
      
 383 
     | 
    
         
            +
                "symbol": "¥",
         
     | 
| 
      
 384 
     | 
    
         
            +
                "subunit": "Fen",
         
     | 
| 
      
 385 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 386 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 387 
     | 
    
         
            +
                "html_entity": "圓",
         
     | 
| 
      
 388 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 389 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 390 
     | 
    
         
            +
                "iso_numeric": "156"
         
     | 
| 
      
 391 
     | 
    
         
            +
              },
         
     | 
| 
      
 392 
     | 
    
         
            +
              "cop": {
         
     | 
| 
      
 393 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 394 
     | 
    
         
            +
                "iso_code": "COP",
         
     | 
| 
      
 395 
     | 
    
         
            +
                "name": "Colombian Peso",
         
     | 
| 
      
 396 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 397 
     | 
    
         
            +
                "subunit": "Centavo",
         
     | 
| 
      
 398 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 399 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 400 
     | 
    
         
            +
                "html_entity": "₱",
         
     | 
| 
      
 401 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 402 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 403 
     | 
    
         
            +
                "iso_numeric": "170"
         
     | 
| 
      
 404 
     | 
    
         
            +
              },
         
     | 
| 
      
 405 
     | 
    
         
            +
              "crc": {
         
     | 
| 
      
 406 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 407 
     | 
    
         
            +
                "iso_code": "CRC",
         
     | 
| 
      
 408 
     | 
    
         
            +
                "name": "Costa Rican Colón",
         
     | 
| 
      
 409 
     | 
    
         
            +
                "symbol": "₡",
         
     | 
| 
      
 410 
     | 
    
         
            +
                "subunit": "Céntimo",
         
     | 
| 
      
 411 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 412 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 413 
     | 
    
         
            +
                "html_entity": "₡",
         
     | 
| 
      
 414 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 415 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 416 
     | 
    
         
            +
                "iso_numeric": "188"
         
     | 
| 
      
 417 
     | 
    
         
            +
              },
         
     | 
| 
      
 418 
     | 
    
         
            +
              "cuc": {
         
     | 
| 
      
 419 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 420 
     | 
    
         
            +
                "iso_code": "CUC",
         
     | 
| 
      
 421 
     | 
    
         
            +
                "name": "Cuban Convertible Peso",
         
     | 
| 
      
 422 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 423 
     | 
    
         
            +
                "subunit": "Centavo",
         
     | 
| 
      
 424 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 425 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 426 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 427 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 428 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 429 
     | 
    
         
            +
                "iso_numeric": "931"
         
     | 
| 
      
 430 
     | 
    
         
            +
              },
         
     | 
| 
      
 431 
     | 
    
         
            +
              "cup": {
         
     | 
| 
      
 432 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 433 
     | 
    
         
            +
                "iso_code": "CUP",
         
     | 
| 
      
 434 
     | 
    
         
            +
                "name": "Cuban Peso",
         
     | 
| 
      
 435 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 436 
     | 
    
         
            +
                "subunit": "Centavo",
         
     | 
| 
      
 437 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 438 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 439 
     | 
    
         
            +
                "html_entity": "₱",
         
     | 
| 
      
 440 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 441 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 442 
     | 
    
         
            +
                "iso_numeric": "192"
         
     | 
| 
      
 443 
     | 
    
         
            +
              },
         
     | 
| 
      
 444 
     | 
    
         
            +
              "cve": {
         
     | 
| 
      
 445 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 446 
     | 
    
         
            +
                "iso_code": "CVE",
         
     | 
| 
      
 447 
     | 
    
         
            +
                "name": "Cape Verdean Escudo",
         
     | 
| 
      
 448 
     | 
    
         
            +
                "symbol": "$ or Esc",
         
     | 
| 
      
 449 
     | 
    
         
            +
                "subunit": "Centavo",
         
     | 
| 
      
 450 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 451 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 452 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 453 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 454 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 455 
     | 
    
         
            +
                "iso_numeric": "132"
         
     | 
| 
      
 456 
     | 
    
         
            +
              },
         
     | 
| 
      
 457 
     | 
    
         
            +
              "czk": {
         
     | 
| 
      
 458 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 459 
     | 
    
         
            +
                "iso_code": "CZK",
         
     | 
| 
      
 460 
     | 
    
         
            +
                "name": "Czech Koruna",
         
     | 
| 
      
 461 
     | 
    
         
            +
                "symbol": "Kč",
         
     | 
| 
      
 462 
     | 
    
         
            +
                "subunit": "Haléř",
         
     | 
| 
      
 463 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 464 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 465 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 466 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 467 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 468 
     | 
    
         
            +
                "iso_numeric": "203"
         
     | 
| 
      
 469 
     | 
    
         
            +
              },
         
     | 
| 
      
 470 
     | 
    
         
            +
              "djf": {
         
     | 
| 
      
 471 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 472 
     | 
    
         
            +
                "iso_code": "DJF",
         
     | 
| 
      
 473 
     | 
    
         
            +
                "name": "Djiboutian Franc",
         
     | 
| 
      
 474 
     | 
    
         
            +
                "symbol": "Fr",
         
     | 
| 
      
 475 
     | 
    
         
            +
                "subunit": "Centime",
         
     | 
| 
      
 476 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 477 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 478 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 479 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 480 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 481 
     | 
    
         
            +
                "iso_numeric": "262"
         
     | 
| 
      
 482 
     | 
    
         
            +
              },
         
     | 
| 
      
 483 
     | 
    
         
            +
              "dkk": {
         
     | 
| 
      
 484 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 485 
     | 
    
         
            +
                "iso_code": "DKK",
         
     | 
| 
      
 486 
     | 
    
         
            +
                "name": "Danish Krone",
         
     | 
| 
      
 487 
     | 
    
         
            +
                "symbol": "kr",
         
     | 
| 
      
 488 
     | 
    
         
            +
                "subunit": "Øre",
         
     | 
| 
      
 489 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 490 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 491 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 492 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 493 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 494 
     | 
    
         
            +
                "iso_numeric": "208"
         
     | 
| 
      
 495 
     | 
    
         
            +
              },
         
     | 
| 
      
 496 
     | 
    
         
            +
              "dop": {
         
     | 
| 
      
 497 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 498 
     | 
    
         
            +
                "iso_code": "DOP",
         
     | 
| 
      
 499 
     | 
    
         
            +
                "name": "Dominican Peso",
         
     | 
| 
      
 500 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 501 
     | 
    
         
            +
                "subunit": "Centavo",
         
     | 
| 
      
 502 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 503 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 504 
     | 
    
         
            +
                "html_entity": "₱",
         
     | 
| 
      
 505 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 506 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 507 
     | 
    
         
            +
                "iso_numeric": "214"
         
     | 
| 
      
 508 
     | 
    
         
            +
              },
         
     | 
| 
      
 509 
     | 
    
         
            +
              "dzd": {
         
     | 
| 
      
 510 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 511 
     | 
    
         
            +
                "iso_code": "DZD",
         
     | 
| 
      
 512 
     | 
    
         
            +
                "name": "Algerian Dinar",
         
     | 
| 
      
 513 
     | 
    
         
            +
                "symbol": "د.ج",
         
     | 
| 
      
 514 
     | 
    
         
            +
                "subunit": "Centime",
         
     | 
| 
      
 515 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 516 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 517 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 518 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 519 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 520 
     | 
    
         
            +
                "iso_numeric": "012"
         
     | 
| 
      
 521 
     | 
    
         
            +
              },
         
     | 
| 
      
 522 
     | 
    
         
            +
              "egp": {
         
     | 
| 
      
 523 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 524 
     | 
    
         
            +
                "iso_code": "EGP",
         
     | 
| 
      
 525 
     | 
    
         
            +
                "name": "Egyptian Pound",
         
     | 
| 
      
 526 
     | 
    
         
            +
                "symbol": "£ or ج.م",
         
     | 
| 
      
 527 
     | 
    
         
            +
                "subunit": "Piastre",
         
     | 
| 
      
 528 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 529 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 530 
     | 
    
         
            +
                "html_entity": "£",
         
     | 
| 
      
 531 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 532 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 533 
     | 
    
         
            +
                "iso_numeric": "818"
         
     | 
| 
      
 534 
     | 
    
         
            +
              },
         
     | 
| 
      
 535 
     | 
    
         
            +
              "ern": {
         
     | 
| 
      
 536 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 537 
     | 
    
         
            +
                "iso_code": "ERN",
         
     | 
| 
      
 538 
     | 
    
         
            +
                "name": "Eritrean Nakfa",
         
     | 
| 
      
 539 
     | 
    
         
            +
                "symbol": "Nfk",
         
     | 
| 
      
 540 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 541 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 542 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 543 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 544 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 545 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 546 
     | 
    
         
            +
                "iso_numeric": "232"
         
     | 
| 
      
 547 
     | 
    
         
            +
              },
         
     | 
| 
      
 548 
     | 
    
         
            +
              "etb": {
         
     | 
| 
      
 549 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 550 
     | 
    
         
            +
                "iso_code": "ETB",
         
     | 
| 
      
 551 
     | 
    
         
            +
                "name": "Ethiopian Birr",
         
     | 
| 
      
 552 
     | 
    
         
            +
                "symbol": null,
         
     | 
| 
      
 553 
     | 
    
         
            +
                "subunit": "Santim",
         
     | 
| 
      
 554 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 555 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 556 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 557 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 558 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 559 
     | 
    
         
            +
                "iso_numeric": "230"
         
     | 
| 
      
 560 
     | 
    
         
            +
              },
         
     | 
| 
      
 561 
     | 
    
         
            +
              "eur": {
         
     | 
| 
      
 562 
     | 
    
         
            +
                "priority": 2,
         
     | 
| 
      
 563 
     | 
    
         
            +
                "iso_code": "EUR",
         
     | 
| 
      
 564 
     | 
    
         
            +
                "name": "Euro",
         
     | 
| 
      
 565 
     | 
    
         
            +
                "symbol": "€",
         
     | 
| 
      
 566 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 567 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 568 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 569 
     | 
    
         
            +
                "html_entity": "€",
         
     | 
| 
      
 570 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 571 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 572 
     | 
    
         
            +
                "iso_numeric": "978"
         
     | 
| 
      
 573 
     | 
    
         
            +
              },
         
     | 
| 
      
 574 
     | 
    
         
            +
              "fjd": {
         
     | 
| 
      
 575 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 576 
     | 
    
         
            +
                "iso_code": "FJD",
         
     | 
| 
      
 577 
     | 
    
         
            +
                "name": "Fijian Dollar",
         
     | 
| 
      
 578 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 579 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 580 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 581 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 582 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 583 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 584 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 585 
     | 
    
         
            +
                "iso_numeric": "242"
         
     | 
| 
      
 586 
     | 
    
         
            +
              },
         
     | 
| 
      
 587 
     | 
    
         
            +
              "fkp": {
         
     | 
| 
      
 588 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 589 
     | 
    
         
            +
                "iso_code": "FKP",
         
     | 
| 
      
 590 
     | 
    
         
            +
                "name": "Falkland Pound",
         
     | 
| 
      
 591 
     | 
    
         
            +
                "symbol": "£",
         
     | 
| 
      
 592 
     | 
    
         
            +
                "subunit": "Penny",
         
     | 
| 
      
 593 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 594 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 595 
     | 
    
         
            +
                "html_entity": "£",
         
     | 
| 
      
 596 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 597 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 598 
     | 
    
         
            +
                "iso_numeric": "238"
         
     | 
| 
      
 599 
     | 
    
         
            +
              },
         
     | 
| 
      
 600 
     | 
    
         
            +
              "gbp": {
         
     | 
| 
      
 601 
     | 
    
         
            +
                "priority": 3,
         
     | 
| 
      
 602 
     | 
    
         
            +
                "iso_code": "GBP",
         
     | 
| 
      
 603 
     | 
    
         
            +
                "name": "British Pound",
         
     | 
| 
      
 604 
     | 
    
         
            +
                "symbol": "£",
         
     | 
| 
      
 605 
     | 
    
         
            +
                "subunit": "Penny",
         
     | 
| 
      
 606 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 607 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 608 
     | 
    
         
            +
                "html_entity": "£",
         
     | 
| 
      
 609 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 610 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 611 
     | 
    
         
            +
                "iso_numeric": "826"
         
     | 
| 
      
 612 
     | 
    
         
            +
              },
         
     | 
| 
      
 613 
     | 
    
         
            +
              "gel": {
         
     | 
| 
      
 614 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 615 
     | 
    
         
            +
                "iso_code": "GEL",
         
     | 
| 
      
 616 
     | 
    
         
            +
                "name": "Georgian Lari",
         
     | 
| 
      
 617 
     | 
    
         
            +
                "symbol": "ლ",
         
     | 
| 
      
 618 
     | 
    
         
            +
                "subunit": "Tetri",
         
     | 
| 
      
 619 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 620 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 621 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 622 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 623 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 624 
     | 
    
         
            +
                "iso_numeric": "981"
         
     | 
| 
      
 625 
     | 
    
         
            +
              },
         
     | 
| 
      
 626 
     | 
    
         
            +
              "ghs": {
         
     | 
| 
      
 627 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 628 
     | 
    
         
            +
                "iso_code": "GHS",
         
     | 
| 
      
 629 
     | 
    
         
            +
                "name": "Ghanaian Cedi",
         
     | 
| 
      
 630 
     | 
    
         
            +
                "symbol": "₵",
         
     | 
| 
      
 631 
     | 
    
         
            +
                "subunit": "Pesewa",
         
     | 
| 
      
 632 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 633 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 634 
     | 
    
         
            +
                "html_entity": "₵",
         
     | 
| 
      
 635 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 636 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 637 
     | 
    
         
            +
                "iso_numeric": "936"
         
     | 
| 
      
 638 
     | 
    
         
            +
              },
         
     | 
| 
      
 639 
     | 
    
         
            +
              "gip": {
         
     | 
| 
      
 640 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 641 
     | 
    
         
            +
                "iso_code": "GIP",
         
     | 
| 
      
 642 
     | 
    
         
            +
                "name": "Gibraltar Pound",
         
     | 
| 
      
 643 
     | 
    
         
            +
                "symbol": "£",
         
     | 
| 
      
 644 
     | 
    
         
            +
                "subunit": "Penny",
         
     | 
| 
      
 645 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 646 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 647 
     | 
    
         
            +
                "html_entity": "£",
         
     | 
| 
      
 648 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 649 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 650 
     | 
    
         
            +
                "iso_numeric": "292"
         
     | 
| 
      
 651 
     | 
    
         
            +
              },
         
     | 
| 
      
 652 
     | 
    
         
            +
              "gmd": {
         
     | 
| 
      
 653 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 654 
     | 
    
         
            +
                "iso_code": "GMD",
         
     | 
| 
      
 655 
     | 
    
         
            +
                "name": "Gambian Dalasi",
         
     | 
| 
      
 656 
     | 
    
         
            +
                "symbol": "D",
         
     | 
| 
      
 657 
     | 
    
         
            +
                "subunit": "Butut",
         
     | 
| 
      
 658 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 659 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 660 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 661 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 662 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 663 
     | 
    
         
            +
                "iso_numeric": "270"
         
     | 
| 
      
 664 
     | 
    
         
            +
              },
         
     | 
| 
      
 665 
     | 
    
         
            +
              "gnf": {
         
     | 
| 
      
 666 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 667 
     | 
    
         
            +
                "iso_code": "GNF",
         
     | 
| 
      
 668 
     | 
    
         
            +
                "name": "Guinean Franc",
         
     | 
| 
      
 669 
     | 
    
         
            +
                "symbol": "Fr",
         
     | 
| 
      
 670 
     | 
    
         
            +
                "subunit": "Centime",
         
     | 
| 
      
 671 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 672 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 673 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 674 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 675 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 676 
     | 
    
         
            +
                "iso_numeric": "324"
         
     | 
| 
      
 677 
     | 
    
         
            +
              },
         
     | 
| 
      
 678 
     | 
    
         
            +
              "gtq": {
         
     | 
| 
      
 679 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 680 
     | 
    
         
            +
                "iso_code": "GTQ",
         
     | 
| 
      
 681 
     | 
    
         
            +
                "name": "Guatemalan Quetzal",
         
     | 
| 
      
 682 
     | 
    
         
            +
                "symbol": "Q",
         
     | 
| 
      
 683 
     | 
    
         
            +
                "subunit": "Centavo",
         
     | 
| 
      
 684 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 685 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 686 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 687 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 688 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 689 
     | 
    
         
            +
                "iso_numeric": "320"
         
     | 
| 
      
 690 
     | 
    
         
            +
              },
         
     | 
| 
      
 691 
     | 
    
         
            +
              "gyd": {
         
     | 
| 
      
 692 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 693 
     | 
    
         
            +
                "iso_code": "GYD",
         
     | 
| 
      
 694 
     | 
    
         
            +
                "name": "Guyanese Dollar",
         
     | 
| 
      
 695 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 696 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 697 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 698 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 699 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 700 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 701 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 702 
     | 
    
         
            +
                "iso_numeric": "328"
         
     | 
| 
      
 703 
     | 
    
         
            +
              },
         
     | 
| 
      
 704 
     | 
    
         
            +
              "hkd": {
         
     | 
| 
      
 705 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 706 
     | 
    
         
            +
                "iso_code": "HKD",
         
     | 
| 
      
 707 
     | 
    
         
            +
                "name": "Hong Kong Dollar",
         
     | 
| 
      
 708 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 709 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 710 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 711 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 712 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 713 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 714 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 715 
     | 
    
         
            +
                "iso_numeric": "344"
         
     | 
| 
      
 716 
     | 
    
         
            +
              },
         
     | 
| 
      
 717 
     | 
    
         
            +
              "hnl": {
         
     | 
| 
      
 718 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 719 
     | 
    
         
            +
                "iso_code": "HNL",
         
     | 
| 
      
 720 
     | 
    
         
            +
                "name": "Honduran Lempira",
         
     | 
| 
      
 721 
     | 
    
         
            +
                "symbol": "L",
         
     | 
| 
      
 722 
     | 
    
         
            +
                "subunit": "Centavo",
         
     | 
| 
      
 723 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 724 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 725 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 726 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 727 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 728 
     | 
    
         
            +
                "iso_numeric": "340"
         
     | 
| 
      
 729 
     | 
    
         
            +
              },
         
     | 
| 
      
 730 
     | 
    
         
            +
              "hrk": {
         
     | 
| 
      
 731 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 732 
     | 
    
         
            +
                "iso_code": "HRK",
         
     | 
| 
      
 733 
     | 
    
         
            +
                "name": "Croatian Kuna",
         
     | 
| 
      
 734 
     | 
    
         
            +
                "symbol": "kn",
         
     | 
| 
      
 735 
     | 
    
         
            +
                "subunit": "Lipa",
         
     | 
| 
      
 736 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 737 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 738 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 739 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 740 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 741 
     | 
    
         
            +
                "iso_numeric": "191"
         
     | 
| 
      
 742 
     | 
    
         
            +
              },
         
     | 
| 
      
 743 
     | 
    
         
            +
              "htg": {
         
     | 
| 
      
 744 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 745 
     | 
    
         
            +
                "iso_code": "HTG",
         
     | 
| 
      
 746 
     | 
    
         
            +
                "name": "Haitian Gourde",
         
     | 
| 
      
 747 
     | 
    
         
            +
                "symbol": "G",
         
     | 
| 
      
 748 
     | 
    
         
            +
                "subunit": "Centime",
         
     | 
| 
      
 749 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 750 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 751 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 752 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 753 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 754 
     | 
    
         
            +
                "iso_numeric": "332"
         
     | 
| 
      
 755 
     | 
    
         
            +
              },
         
     | 
| 
      
 756 
     | 
    
         
            +
              "huf": {
         
     | 
| 
      
 757 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 758 
     | 
    
         
            +
                "iso_code": "HUF",
         
     | 
| 
      
 759 
     | 
    
         
            +
                "name": "Hungarian Forint",
         
     | 
| 
      
 760 
     | 
    
         
            +
                "symbol": "Ft",
         
     | 
| 
      
 761 
     | 
    
         
            +
                "subunit": "Fillér",
         
     | 
| 
      
 762 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 763 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 764 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 765 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 766 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 767 
     | 
    
         
            +
                "iso_numeric": "348"
         
     | 
| 
      
 768 
     | 
    
         
            +
              },
         
     | 
| 
      
 769 
     | 
    
         
            +
              "idr": {
         
     | 
| 
      
 770 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 771 
     | 
    
         
            +
                "iso_code": "IDR",
         
     | 
| 
      
 772 
     | 
    
         
            +
                "name": "Indonesian Rupiah",
         
     | 
| 
      
 773 
     | 
    
         
            +
                "symbol": "Rp",
         
     | 
| 
      
 774 
     | 
    
         
            +
                "subunit": "Sen",
         
     | 
| 
      
 775 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 776 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 777 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 778 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 779 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 780 
     | 
    
         
            +
                "iso_numeric": "360"
         
     | 
| 
      
 781 
     | 
    
         
            +
              },
         
     | 
| 
      
 782 
     | 
    
         
            +
              "ils": {
         
     | 
| 
      
 783 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 784 
     | 
    
         
            +
                "iso_code": "ILS",
         
     | 
| 
      
 785 
     | 
    
         
            +
                "name": "Israeli New Sheqel",
         
     | 
| 
      
 786 
     | 
    
         
            +
                "symbol": "₪",
         
     | 
| 
      
 787 
     | 
    
         
            +
                "subunit": "Agora",
         
     | 
| 
      
 788 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 789 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 790 
     | 
    
         
            +
                "html_entity": "₪",
         
     | 
| 
      
 791 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 792 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 793 
     | 
    
         
            +
                "iso_numeric": "376"
         
     | 
| 
      
 794 
     | 
    
         
            +
              },
         
     | 
| 
      
 795 
     | 
    
         
            +
              "inr": {
         
     | 
| 
      
 796 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 797 
     | 
    
         
            +
                "iso_code": "INR",
         
     | 
| 
      
 798 
     | 
    
         
            +
                "name": "Indian Rupee",
         
     | 
| 
      
 799 
     | 
    
         
            +
                "symbol": "₨",
         
     | 
| 
      
 800 
     | 
    
         
            +
                "subunit": "Paisa",
         
     | 
| 
      
 801 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 802 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 803 
     | 
    
         
            +
                "html_entity": "₨",
         
     | 
| 
      
 804 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 805 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 806 
     | 
    
         
            +
                "iso_numeric": "356"
         
     | 
| 
      
 807 
     | 
    
         
            +
              },
         
     | 
| 
      
 808 
     | 
    
         
            +
              "iqd": {
         
     | 
| 
      
 809 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 810 
     | 
    
         
            +
                "iso_code": "IQD",
         
     | 
| 
      
 811 
     | 
    
         
            +
                "name": "Iraqi Dinar",
         
     | 
| 
      
 812 
     | 
    
         
            +
                "symbol": "ع.د",
         
     | 
| 
      
 813 
     | 
    
         
            +
                "subunit": "Fils",
         
     | 
| 
      
 814 
     | 
    
         
            +
                "subunit_to_unit": 1000,
         
     | 
| 
      
 815 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 816 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 817 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 818 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 819 
     | 
    
         
            +
                "iso_numeric": "368"
         
     | 
| 
      
 820 
     | 
    
         
            +
              },
         
     | 
| 
      
 821 
     | 
    
         
            +
              "irr": {
         
     | 
| 
      
 822 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 823 
     | 
    
         
            +
                "iso_code": "IRR",
         
     | 
| 
      
 824 
     | 
    
         
            +
                "name": "Iranian Rial",
         
     | 
| 
      
 825 
     | 
    
         
            +
                "symbol": "﷼",
         
     | 
| 
      
 826 
     | 
    
         
            +
                "subunit": "Dinar",
         
     | 
| 
      
 827 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 828 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 829 
     | 
    
         
            +
                "html_entity": "﷼",
         
     | 
| 
      
 830 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 831 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 832 
     | 
    
         
            +
                "iso_numeric": "364"
         
     | 
| 
      
 833 
     | 
    
         
            +
              },
         
     | 
| 
      
 834 
     | 
    
         
            +
              "isk": {
         
     | 
| 
      
 835 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 836 
     | 
    
         
            +
                "iso_code": "ISK",
         
     | 
| 
      
 837 
     | 
    
         
            +
                "name": "Icelandic Króna",
         
     | 
| 
      
 838 
     | 
    
         
            +
                "symbol": "kr",
         
     | 
| 
      
 839 
     | 
    
         
            +
                "subunit": "Eyrir",
         
     | 
| 
      
 840 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 841 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 842 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 843 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 844 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 845 
     | 
    
         
            +
                "iso_numeric": "352"
         
     | 
| 
      
 846 
     | 
    
         
            +
              },
         
     | 
| 
      
 847 
     | 
    
         
            +
              "jmd": {
         
     | 
| 
      
 848 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 849 
     | 
    
         
            +
                "iso_code": "JMD",
         
     | 
| 
      
 850 
     | 
    
         
            +
                "name": "Jamaican Dollar",
         
     | 
| 
      
 851 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 852 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 853 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 854 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 855 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 856 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 857 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 858 
     | 
    
         
            +
                "iso_numeric": "388"
         
     | 
| 
      
 859 
     | 
    
         
            +
              },
         
     | 
| 
      
 860 
     | 
    
         
            +
              "jod": {
         
     | 
| 
      
 861 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 862 
     | 
    
         
            +
                "iso_code": "JOD",
         
     | 
| 
      
 863 
     | 
    
         
            +
                "name": "Jordanian Dinar",
         
     | 
| 
      
 864 
     | 
    
         
            +
                "symbol": "د.ا",
         
     | 
| 
      
 865 
     | 
    
         
            +
                "subunit": "Piastre",
         
     | 
| 
      
 866 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 867 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 868 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 869 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 870 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 871 
     | 
    
         
            +
                "iso_numeric": "400"
         
     | 
| 
      
 872 
     | 
    
         
            +
              },
         
     | 
| 
      
 873 
     | 
    
         
            +
              "jpy": {
         
     | 
| 
      
 874 
     | 
    
         
            +
                "priority": 6,
         
     | 
| 
      
 875 
     | 
    
         
            +
                "iso_code": "JPY",
         
     | 
| 
      
 876 
     | 
    
         
            +
                "name": "Japanese Yen",
         
     | 
| 
      
 877 
     | 
    
         
            +
                "symbol": "¥",
         
     | 
| 
      
 878 
     | 
    
         
            +
                "subunit": null,
         
     | 
| 
      
 879 
     | 
    
         
            +
                "subunit_to_unit": 1,
         
     | 
| 
      
 880 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 881 
     | 
    
         
            +
                "html_entity": "¥",
         
     | 
| 
      
 882 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 883 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 884 
     | 
    
         
            +
                "iso_numeric": "392"
         
     | 
| 
      
 885 
     | 
    
         
            +
              },
         
     | 
| 
      
 886 
     | 
    
         
            +
              "kes": {
         
     | 
| 
      
 887 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 888 
     | 
    
         
            +
                "iso_code": "KES",
         
     | 
| 
      
 889 
     | 
    
         
            +
                "name": "Kenyan Shilling",
         
     | 
| 
      
 890 
     | 
    
         
            +
                "symbol": "Sh",
         
     | 
| 
      
 891 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 892 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 893 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 894 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 895 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 896 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 897 
     | 
    
         
            +
                "iso_numeric": "404"
         
     | 
| 
      
 898 
     | 
    
         
            +
              },
         
     | 
| 
      
 899 
     | 
    
         
            +
              "kgs": {
         
     | 
| 
      
 900 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 901 
     | 
    
         
            +
                "iso_code": "KGS",
         
     | 
| 
      
 902 
     | 
    
         
            +
                "name": "Kyrgyzstani Som",
         
     | 
| 
      
 903 
     | 
    
         
            +
                "symbol": null,
         
     | 
| 
      
 904 
     | 
    
         
            +
                "subunit": "Tyiyn",
         
     | 
| 
      
 905 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 906 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 907 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 908 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 909 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 910 
     | 
    
         
            +
                "iso_numeric": "417"
         
     | 
| 
      
 911 
     | 
    
         
            +
              },
         
     | 
| 
      
 912 
     | 
    
         
            +
              "khr": {
         
     | 
| 
      
 913 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 914 
     | 
    
         
            +
                "iso_code": "KHR",
         
     | 
| 
      
 915 
     | 
    
         
            +
                "name": "Cambodian Riel",
         
     | 
| 
      
 916 
     | 
    
         
            +
                "symbol": "៛",
         
     | 
| 
      
 917 
     | 
    
         
            +
                "subunit": "Sen",
         
     | 
| 
      
 918 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 919 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 920 
     | 
    
         
            +
                "html_entity": "៛",
         
     | 
| 
      
 921 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 922 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 923 
     | 
    
         
            +
                "iso_numeric": "116"
         
     | 
| 
      
 924 
     | 
    
         
            +
              },
         
     | 
| 
      
 925 
     | 
    
         
            +
              "kmf": {
         
     | 
| 
      
 926 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 927 
     | 
    
         
            +
                "iso_code": "KMF",
         
     | 
| 
      
 928 
     | 
    
         
            +
                "name": "Comorian Franc",
         
     | 
| 
      
 929 
     | 
    
         
            +
                "symbol": "Fr",
         
     | 
| 
      
 930 
     | 
    
         
            +
                "subunit": "Centime",
         
     | 
| 
      
 931 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 932 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 933 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 934 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 935 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 936 
     | 
    
         
            +
                "iso_numeric": "174"
         
     | 
| 
      
 937 
     | 
    
         
            +
              },
         
     | 
| 
      
 938 
     | 
    
         
            +
              "kpw": {
         
     | 
| 
      
 939 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 940 
     | 
    
         
            +
                "iso_code": "KPW",
         
     | 
| 
      
 941 
     | 
    
         
            +
                "name": "North Korean Won",
         
     | 
| 
      
 942 
     | 
    
         
            +
                "symbol": "₩",
         
     | 
| 
      
 943 
     | 
    
         
            +
                "subunit": "Chŏn",
         
     | 
| 
      
 944 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 945 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 946 
     | 
    
         
            +
                "html_entity": "₩",
         
     | 
| 
      
 947 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 948 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 949 
     | 
    
         
            +
                "iso_numeric": "408"
         
     | 
| 
      
 950 
     | 
    
         
            +
              },
         
     | 
| 
      
 951 
     | 
    
         
            +
              "krw": {
         
     | 
| 
      
 952 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 953 
     | 
    
         
            +
                "iso_code": "KRW",
         
     | 
| 
      
 954 
     | 
    
         
            +
                "name": "South Korean Won",
         
     | 
| 
      
 955 
     | 
    
         
            +
                "symbol": "₩",
         
     | 
| 
      
 956 
     | 
    
         
            +
                "subunit": "Jeon",
         
     | 
| 
      
 957 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 958 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 959 
     | 
    
         
            +
                "html_entity": "₩",
         
     | 
| 
      
 960 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 961 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 962 
     | 
    
         
            +
                "iso_numeric": "410"
         
     | 
| 
      
 963 
     | 
    
         
            +
              },
         
     | 
| 
      
 964 
     | 
    
         
            +
              "kwd": {
         
     | 
| 
      
 965 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 966 
     | 
    
         
            +
                "iso_code": "KWD",
         
     | 
| 
      
 967 
     | 
    
         
            +
                "name": "Kuwaiti Dinar",
         
     | 
| 
      
 968 
     | 
    
         
            +
                "symbol": "د.ك",
         
     | 
| 
      
 969 
     | 
    
         
            +
                "subunit": "Fils",
         
     | 
| 
      
 970 
     | 
    
         
            +
                "subunit_to_unit": 1000,
         
     | 
| 
      
 971 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 972 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 973 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 974 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 975 
     | 
    
         
            +
                "iso_numeric": "414"
         
     | 
| 
      
 976 
     | 
    
         
            +
              },
         
     | 
| 
      
 977 
     | 
    
         
            +
              "kyd": {
         
     | 
| 
      
 978 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 979 
     | 
    
         
            +
                "iso_code": "KYD",
         
     | 
| 
      
 980 
     | 
    
         
            +
                "name": "Cayman Islands Dollar",
         
     | 
| 
      
 981 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 982 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 983 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 984 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 985 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 986 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 987 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 988 
     | 
    
         
            +
                "iso_numeric": "136"
         
     | 
| 
      
 989 
     | 
    
         
            +
              },
         
     | 
| 
      
 990 
     | 
    
         
            +
              "kzt": {
         
     | 
| 
      
 991 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 992 
     | 
    
         
            +
                "iso_code": "KZT",
         
     | 
| 
      
 993 
     | 
    
         
            +
                "name": "Kazakhstani Tenge",
         
     | 
| 
      
 994 
     | 
    
         
            +
                "symbol": "〒",
         
     | 
| 
      
 995 
     | 
    
         
            +
                "subunit": "Tiyn",
         
     | 
| 
      
 996 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 997 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 998 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 999 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1000 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1001 
     | 
    
         
            +
                "iso_numeric": "398"
         
     | 
| 
      
 1002 
     | 
    
         
            +
              },
         
     | 
| 
      
 1003 
     | 
    
         
            +
              "lak": {
         
     | 
| 
      
 1004 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1005 
     | 
    
         
            +
                "iso_code": "LAK",
         
     | 
| 
      
 1006 
     | 
    
         
            +
                "name": "Lao Kip",
         
     | 
| 
      
 1007 
     | 
    
         
            +
                "symbol": "₭",
         
     | 
| 
      
 1008 
     | 
    
         
            +
                "subunit": "Att",
         
     | 
| 
      
 1009 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1010 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1011 
     | 
    
         
            +
                "html_entity": "₭",
         
     | 
| 
      
 1012 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1013 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1014 
     | 
    
         
            +
                "iso_numeric": "418"
         
     | 
| 
      
 1015 
     | 
    
         
            +
              },
         
     | 
| 
      
 1016 
     | 
    
         
            +
              "lbp": {
         
     | 
| 
      
 1017 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1018 
     | 
    
         
            +
                "iso_code": "LBP",
         
     | 
| 
      
 1019 
     | 
    
         
            +
                "name": "Lebanese Pound",
         
     | 
| 
      
 1020 
     | 
    
         
            +
                "symbol": "ل.ل",
         
     | 
| 
      
 1021 
     | 
    
         
            +
                "subunit": "Piastre",
         
     | 
| 
      
 1022 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1023 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1024 
     | 
    
         
            +
                "html_entity": "£",
         
     | 
| 
      
 1025 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1026 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1027 
     | 
    
         
            +
                "iso_numeric": "422"
         
     | 
| 
      
 1028 
     | 
    
         
            +
              },
         
     | 
| 
      
 1029 
     | 
    
         
            +
              "lkr": {
         
     | 
| 
      
 1030 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1031 
     | 
    
         
            +
                "iso_code": "LKR",
         
     | 
| 
      
 1032 
     | 
    
         
            +
                "name": "Sri Lankan Rupee",
         
     | 
| 
      
 1033 
     | 
    
         
            +
                "symbol": "₨",
         
     | 
| 
      
 1034 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1035 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1036 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1037 
     | 
    
         
            +
                "html_entity": "௹",
         
     | 
| 
      
 1038 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1039 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1040 
     | 
    
         
            +
                "iso_numeric": "144"
         
     | 
| 
      
 1041 
     | 
    
         
            +
              },
         
     | 
| 
      
 1042 
     | 
    
         
            +
              "lrd": {
         
     | 
| 
      
 1043 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1044 
     | 
    
         
            +
                "iso_code": "LRD",
         
     | 
| 
      
 1045 
     | 
    
         
            +
                "name": "Liberian Dollar",
         
     | 
| 
      
 1046 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 1047 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1048 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1049 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1050 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 1051 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1052 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1053 
     | 
    
         
            +
                "iso_numeric": "430"
         
     | 
| 
      
 1054 
     | 
    
         
            +
              },
         
     | 
| 
      
 1055 
     | 
    
         
            +
              "lsl": {
         
     | 
| 
      
 1056 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1057 
     | 
    
         
            +
                "iso_code": "LSL",
         
     | 
| 
      
 1058 
     | 
    
         
            +
                "name": "Lesotho Loti",
         
     | 
| 
      
 1059 
     | 
    
         
            +
                "symbol": "L",
         
     | 
| 
      
 1060 
     | 
    
         
            +
                "subunit": "Sente",
         
     | 
| 
      
 1061 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1062 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1063 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1064 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1065 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1066 
     | 
    
         
            +
                "iso_numeric": "426"
         
     | 
| 
      
 1067 
     | 
    
         
            +
              },
         
     | 
| 
      
 1068 
     | 
    
         
            +
              "ltl": {
         
     | 
| 
      
 1069 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1070 
     | 
    
         
            +
                "iso_code": "LTL",
         
     | 
| 
      
 1071 
     | 
    
         
            +
                "name": "Lithuanian Litas",
         
     | 
| 
      
 1072 
     | 
    
         
            +
                "symbol": "Lt",
         
     | 
| 
      
 1073 
     | 
    
         
            +
                "subunit": "Centas",
         
     | 
| 
      
 1074 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1075 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1076 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1077 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1078 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1079 
     | 
    
         
            +
                "iso_numeric": "440"
         
     | 
| 
      
 1080 
     | 
    
         
            +
              },
         
     | 
| 
      
 1081 
     | 
    
         
            +
              "lvl": {
         
     | 
| 
      
 1082 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1083 
     | 
    
         
            +
                "iso_code": "LVL",
         
     | 
| 
      
 1084 
     | 
    
         
            +
                "name": "Latvian Lats",
         
     | 
| 
      
 1085 
     | 
    
         
            +
                "symbol": "Ls",
         
     | 
| 
      
 1086 
     | 
    
         
            +
                "subunit": "Santīms",
         
     | 
| 
      
 1087 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1088 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1089 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1090 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1091 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1092 
     | 
    
         
            +
                "iso_numeric": "428"
         
     | 
| 
      
 1093 
     | 
    
         
            +
              },
         
     | 
| 
      
 1094 
     | 
    
         
            +
              "lyd": {
         
     | 
| 
      
 1095 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1096 
     | 
    
         
            +
                "iso_code": "LYD",
         
     | 
| 
      
 1097 
     | 
    
         
            +
                "name": "Libyan Dinar",
         
     | 
| 
      
 1098 
     | 
    
         
            +
                "symbol": "ل.د",
         
     | 
| 
      
 1099 
     | 
    
         
            +
                "subunit": "Dirham",
         
     | 
| 
      
 1100 
     | 
    
         
            +
                "subunit_to_unit": 1000,
         
     | 
| 
      
 1101 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1102 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1103 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1104 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1105 
     | 
    
         
            +
                "iso_numeric": "434"
         
     | 
| 
      
 1106 
     | 
    
         
            +
              },
         
     | 
| 
      
 1107 
     | 
    
         
            +
              "mad": {
         
     | 
| 
      
 1108 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1109 
     | 
    
         
            +
                "iso_code": "MAD",
         
     | 
| 
      
 1110 
     | 
    
         
            +
                "name": "Moroccan Dirham",
         
     | 
| 
      
 1111 
     | 
    
         
            +
                "symbol": "د.م.",
         
     | 
| 
      
 1112 
     | 
    
         
            +
                "subunit": "Centime",
         
     | 
| 
      
 1113 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1114 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1115 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1116 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1117 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1118 
     | 
    
         
            +
                "iso_numeric": "504"
         
     | 
| 
      
 1119 
     | 
    
         
            +
              },
         
     | 
| 
      
 1120 
     | 
    
         
            +
              "mdl": {
         
     | 
| 
      
 1121 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1122 
     | 
    
         
            +
                "iso_code": "MDL",
         
     | 
| 
      
 1123 
     | 
    
         
            +
                "name": "Moldovan Leu",
         
     | 
| 
      
 1124 
     | 
    
         
            +
                "symbol": "L",
         
     | 
| 
      
 1125 
     | 
    
         
            +
                "subunit": "Ban",
         
     | 
| 
      
 1126 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1127 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1128 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1129 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1130 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1131 
     | 
    
         
            +
                "iso_numeric": "498"
         
     | 
| 
      
 1132 
     | 
    
         
            +
              },
         
     | 
| 
      
 1133 
     | 
    
         
            +
              "mga": {
         
     | 
| 
      
 1134 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1135 
     | 
    
         
            +
                "iso_code": "MGA",
         
     | 
| 
      
 1136 
     | 
    
         
            +
                "name": "Malagasy Ariary",
         
     | 
| 
      
 1137 
     | 
    
         
            +
                "symbol": null,
         
     | 
| 
      
 1138 
     | 
    
         
            +
                "subunit": "Iraimbilanja",
         
     | 
| 
      
 1139 
     | 
    
         
            +
                "subunit_to_unit": 5,
         
     | 
| 
      
 1140 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1141 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1142 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1143 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1144 
     | 
    
         
            +
                "iso_numeric": "969"
         
     | 
| 
      
 1145 
     | 
    
         
            +
              },
         
     | 
| 
      
 1146 
     | 
    
         
            +
              "mkd": {
         
     | 
| 
      
 1147 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1148 
     | 
    
         
            +
                "iso_code": "MKD",
         
     | 
| 
      
 1149 
     | 
    
         
            +
                "name": "Macedonian Denar",
         
     | 
| 
      
 1150 
     | 
    
         
            +
                "symbol": "ден",
         
     | 
| 
      
 1151 
     | 
    
         
            +
                "subunit": "Deni",
         
     | 
| 
      
 1152 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1153 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1154 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1155 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1156 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1157 
     | 
    
         
            +
                "iso_numeric": "807"
         
     | 
| 
      
 1158 
     | 
    
         
            +
              },
         
     | 
| 
      
 1159 
     | 
    
         
            +
              "mmk": {
         
     | 
| 
      
 1160 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1161 
     | 
    
         
            +
                "iso_code": "MMK",
         
     | 
| 
      
 1162 
     | 
    
         
            +
                "name": "Myanmar Kyat",
         
     | 
| 
      
 1163 
     | 
    
         
            +
                "symbol": "K",
         
     | 
| 
      
 1164 
     | 
    
         
            +
                "subunit": "Pya",
         
     | 
| 
      
 1165 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1166 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1167 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1168 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1169 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1170 
     | 
    
         
            +
                "iso_numeric": "104"
         
     | 
| 
      
 1171 
     | 
    
         
            +
              },
         
     | 
| 
      
 1172 
     | 
    
         
            +
              "mnt": {
         
     | 
| 
      
 1173 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1174 
     | 
    
         
            +
                "iso_code": "MNT",
         
     | 
| 
      
 1175 
     | 
    
         
            +
                "name": "Mongolian Tögrög",
         
     | 
| 
      
 1176 
     | 
    
         
            +
                "symbol": "₮",
         
     | 
| 
      
 1177 
     | 
    
         
            +
                "subunit": "Möngö",
         
     | 
| 
      
 1178 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1179 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1180 
     | 
    
         
            +
                "html_entity": "₮",
         
     | 
| 
      
 1181 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1182 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1183 
     | 
    
         
            +
                "iso_numeric": "496"
         
     | 
| 
      
 1184 
     | 
    
         
            +
              },
         
     | 
| 
      
 1185 
     | 
    
         
            +
              "mop": {
         
     | 
| 
      
 1186 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1187 
     | 
    
         
            +
                "iso_code": "MOP",
         
     | 
| 
      
 1188 
     | 
    
         
            +
                "name": "Macanese Pataca",
         
     | 
| 
      
 1189 
     | 
    
         
            +
                "symbol": "P",
         
     | 
| 
      
 1190 
     | 
    
         
            +
                "subunit": "Avo",
         
     | 
| 
      
 1191 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1192 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1193 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1194 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1195 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1196 
     | 
    
         
            +
                "iso_numeric": "446"
         
     | 
| 
      
 1197 
     | 
    
         
            +
              },
         
     | 
| 
      
 1198 
     | 
    
         
            +
              "mro": {
         
     | 
| 
      
 1199 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1200 
     | 
    
         
            +
                "iso_code": "MRO",
         
     | 
| 
      
 1201 
     | 
    
         
            +
                "name": "Mauritanian Ouguiya",
         
     | 
| 
      
 1202 
     | 
    
         
            +
                "symbol": "UM",
         
     | 
| 
      
 1203 
     | 
    
         
            +
                "subunit": "Khoums",
         
     | 
| 
      
 1204 
     | 
    
         
            +
                "subunit_to_unit": 5,
         
     | 
| 
      
 1205 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1206 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1207 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1208 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1209 
     | 
    
         
            +
                "iso_numeric": "478"
         
     | 
| 
      
 1210 
     | 
    
         
            +
              },
         
     | 
| 
      
 1211 
     | 
    
         
            +
              "mur": {
         
     | 
| 
      
 1212 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1213 
     | 
    
         
            +
                "iso_code": "MUR",
         
     | 
| 
      
 1214 
     | 
    
         
            +
                "name": "Mauritian Rupee",
         
     | 
| 
      
 1215 
     | 
    
         
            +
                "symbol": "₨",
         
     | 
| 
      
 1216 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1217 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1218 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1219 
     | 
    
         
            +
                "html_entity": "₨",
         
     | 
| 
      
 1220 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1221 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1222 
     | 
    
         
            +
                "iso_numeric": "480"
         
     | 
| 
      
 1223 
     | 
    
         
            +
              },
         
     | 
| 
      
 1224 
     | 
    
         
            +
              "mvr": {
         
     | 
| 
      
 1225 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1226 
     | 
    
         
            +
                "iso_code": "MVR",
         
     | 
| 
      
 1227 
     | 
    
         
            +
                "name": "Maldivian Rufiyaa",
         
     | 
| 
      
 1228 
     | 
    
         
            +
                "symbol": "ރ.",
         
     | 
| 
      
 1229 
     | 
    
         
            +
                "subunit": "Laari",
         
     | 
| 
      
 1230 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1231 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1232 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1233 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1234 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1235 
     | 
    
         
            +
                "iso_numeric": "462"
         
     | 
| 
      
 1236 
     | 
    
         
            +
              },
         
     | 
| 
      
 1237 
     | 
    
         
            +
              "mwk": {
         
     | 
| 
      
 1238 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1239 
     | 
    
         
            +
                "iso_code": "MWK",
         
     | 
| 
      
 1240 
     | 
    
         
            +
                "name": "Malawian Kwacha",
         
     | 
| 
      
 1241 
     | 
    
         
            +
                "symbol": "MK",
         
     | 
| 
      
 1242 
     | 
    
         
            +
                "subunit": "Tambala",
         
     | 
| 
      
 1243 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1244 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1245 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1246 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1247 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1248 
     | 
    
         
            +
                "iso_numeric": "454"
         
     | 
| 
      
 1249 
     | 
    
         
            +
              },
         
     | 
| 
      
 1250 
     | 
    
         
            +
              "mxn": {
         
     | 
| 
      
 1251 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1252 
     | 
    
         
            +
                "iso_code": "MXN",
         
     | 
| 
      
 1253 
     | 
    
         
            +
                "name": "Mexican Peso",
         
     | 
| 
      
 1254 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 1255 
     | 
    
         
            +
                "subunit": "Centavo",
         
     | 
| 
      
 1256 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1257 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1258 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 1259 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1260 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1261 
     | 
    
         
            +
                "iso_numeric": "484"
         
     | 
| 
      
 1262 
     | 
    
         
            +
              },
         
     | 
| 
      
 1263 
     | 
    
         
            +
              "myr": {
         
     | 
| 
      
 1264 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1265 
     | 
    
         
            +
                "iso_code": "MYR",
         
     | 
| 
      
 1266 
     | 
    
         
            +
                "name": "Malaysian Ringgit",
         
     | 
| 
      
 1267 
     | 
    
         
            +
                "symbol": "RM",
         
     | 
| 
      
 1268 
     | 
    
         
            +
                "subunit": "Sen",
         
     | 
| 
      
 1269 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1270 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1271 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1272 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1273 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1274 
     | 
    
         
            +
                "iso_numeric": "458"
         
     | 
| 
      
 1275 
     | 
    
         
            +
              },
         
     | 
| 
      
 1276 
     | 
    
         
            +
              "mzn": {
         
     | 
| 
      
 1277 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1278 
     | 
    
         
            +
                "iso_code": "MZN",
         
     | 
| 
      
 1279 
     | 
    
         
            +
                "name": "Mozambican Metical",
         
     | 
| 
      
 1280 
     | 
    
         
            +
                "symbol": "MTn",
         
     | 
| 
      
 1281 
     | 
    
         
            +
                "subunit": "Centavo",
         
     | 
| 
      
 1282 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1283 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1284 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1285 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 1286 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 1287 
     | 
    
         
            +
                "iso_numeric": "943"
         
     | 
| 
      
 1288 
     | 
    
         
            +
              },
         
     | 
| 
      
 1289 
     | 
    
         
            +
              "nad": {
         
     | 
| 
      
 1290 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1291 
     | 
    
         
            +
                "iso_code": "NAD",
         
     | 
| 
      
 1292 
     | 
    
         
            +
                "name": "Namibian Dollar",
         
     | 
| 
      
 1293 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 1294 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1295 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1296 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1297 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 1298 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1299 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1300 
     | 
    
         
            +
                "iso_numeric": "516"
         
     | 
| 
      
 1301 
     | 
    
         
            +
              },
         
     | 
| 
      
 1302 
     | 
    
         
            +
              "ngn": {
         
     | 
| 
      
 1303 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1304 
     | 
    
         
            +
                "iso_code": "NGN",
         
     | 
| 
      
 1305 
     | 
    
         
            +
                "name": "Nigerian Naira",
         
     | 
| 
      
 1306 
     | 
    
         
            +
                "symbol": "₦",
         
     | 
| 
      
 1307 
     | 
    
         
            +
                "subunit": "Kobo",
         
     | 
| 
      
 1308 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1309 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1310 
     | 
    
         
            +
                "html_entity": "₦",
         
     | 
| 
      
 1311 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1312 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1313 
     | 
    
         
            +
                "iso_numeric": "566"
         
     | 
| 
      
 1314 
     | 
    
         
            +
              },
         
     | 
| 
      
 1315 
     | 
    
         
            +
              "nio": {
         
     | 
| 
      
 1316 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1317 
     | 
    
         
            +
                "iso_code": "NIO",
         
     | 
| 
      
 1318 
     | 
    
         
            +
                "name": "Nicaraguan Córdoba",
         
     | 
| 
      
 1319 
     | 
    
         
            +
                "symbol": "C$",
         
     | 
| 
      
 1320 
     | 
    
         
            +
                "subunit": "Centavo",
         
     | 
| 
      
 1321 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1322 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1323 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1324 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1325 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1326 
     | 
    
         
            +
                "iso_numeric": "558"
         
     | 
| 
      
 1327 
     | 
    
         
            +
              },
         
     | 
| 
      
 1328 
     | 
    
         
            +
              "nok": {
         
     | 
| 
      
 1329 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1330 
     | 
    
         
            +
                "iso_code": "NOK",
         
     | 
| 
      
 1331 
     | 
    
         
            +
                "name": "Norwegian Krone",
         
     | 
| 
      
 1332 
     | 
    
         
            +
                "symbol": "kr",
         
     | 
| 
      
 1333 
     | 
    
         
            +
                "subunit": "Øre",
         
     | 
| 
      
 1334 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1335 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1336 
     | 
    
         
            +
                "html_entity": "kr",
         
     | 
| 
      
 1337 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 1338 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 1339 
     | 
    
         
            +
                "iso_numeric": "578"
         
     | 
| 
      
 1340 
     | 
    
         
            +
              },
         
     | 
| 
      
 1341 
     | 
    
         
            +
              "npr": {
         
     | 
| 
      
 1342 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1343 
     | 
    
         
            +
                "iso_code": "NPR",
         
     | 
| 
      
 1344 
     | 
    
         
            +
                "name": "Nepalese Rupee",
         
     | 
| 
      
 1345 
     | 
    
         
            +
                "symbol": "₨",
         
     | 
| 
      
 1346 
     | 
    
         
            +
                "subunit": "Paisa",
         
     | 
| 
      
 1347 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1348 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1349 
     | 
    
         
            +
                "html_entity": "₨",
         
     | 
| 
      
 1350 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1351 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1352 
     | 
    
         
            +
                "iso_numeric": "524"
         
     | 
| 
      
 1353 
     | 
    
         
            +
              },
         
     | 
| 
      
 1354 
     | 
    
         
            +
              "nzd": {
         
     | 
| 
      
 1355 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1356 
     | 
    
         
            +
                "iso_code": "NZD",
         
     | 
| 
      
 1357 
     | 
    
         
            +
                "name": "New Zealand Dollar",
         
     | 
| 
      
 1358 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 1359 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1360 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1361 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1362 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 1363 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1364 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1365 
     | 
    
         
            +
                "iso_numeric": "554"
         
     | 
| 
      
 1366 
     | 
    
         
            +
              },
         
     | 
| 
      
 1367 
     | 
    
         
            +
              "omr": {
         
     | 
| 
      
 1368 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1369 
     | 
    
         
            +
                "iso_code": "OMR",
         
     | 
| 
      
 1370 
     | 
    
         
            +
                "name": "Omani Rial",
         
     | 
| 
      
 1371 
     | 
    
         
            +
                "symbol": "ر.ع.",
         
     | 
| 
      
 1372 
     | 
    
         
            +
                "subunit": "Baisa",
         
     | 
| 
      
 1373 
     | 
    
         
            +
                "subunit_to_unit": 1000,
         
     | 
| 
      
 1374 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1375 
     | 
    
         
            +
                "html_entity": "﷼",
         
     | 
| 
      
 1376 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1377 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1378 
     | 
    
         
            +
                "iso_numeric": "512"
         
     | 
| 
      
 1379 
     | 
    
         
            +
              },
         
     | 
| 
      
 1380 
     | 
    
         
            +
              "pab": {
         
     | 
| 
      
 1381 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1382 
     | 
    
         
            +
                "iso_code": "PAB",
         
     | 
| 
      
 1383 
     | 
    
         
            +
                "name": "Panamanian Balboa",
         
     | 
| 
      
 1384 
     | 
    
         
            +
                "symbol": "B/.",
         
     | 
| 
      
 1385 
     | 
    
         
            +
                "subunit": "Centésimo",
         
     | 
| 
      
 1386 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1387 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1388 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1389 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1390 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1391 
     | 
    
         
            +
                "iso_numeric": "590"
         
     | 
| 
      
 1392 
     | 
    
         
            +
              },
         
     | 
| 
      
 1393 
     | 
    
         
            +
              "pen": {
         
     | 
| 
      
 1394 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1395 
     | 
    
         
            +
                "iso_code": "PEN",
         
     | 
| 
      
 1396 
     | 
    
         
            +
                "name": "Peruvian Nuevo Sol",
         
     | 
| 
      
 1397 
     | 
    
         
            +
                "symbol": "S/.",
         
     | 
| 
      
 1398 
     | 
    
         
            +
                "subunit": "Céntimo",
         
     | 
| 
      
 1399 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1400 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1401 
     | 
    
         
            +
                "html_entity": "S/.",
         
     | 
| 
      
 1402 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1403 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1404 
     | 
    
         
            +
                "iso_numeric": "604"
         
     | 
| 
      
 1405 
     | 
    
         
            +
              },
         
     | 
| 
      
 1406 
     | 
    
         
            +
              "pgk": {
         
     | 
| 
      
 1407 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1408 
     | 
    
         
            +
                "iso_code": "PGK",
         
     | 
| 
      
 1409 
     | 
    
         
            +
                "name": "Papua New Guinean Kina",
         
     | 
| 
      
 1410 
     | 
    
         
            +
                "symbol": "K",
         
     | 
| 
      
 1411 
     | 
    
         
            +
                "subunit": "Toea",
         
     | 
| 
      
 1412 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1413 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1414 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1415 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1416 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1417 
     | 
    
         
            +
                "iso_numeric": "598"
         
     | 
| 
      
 1418 
     | 
    
         
            +
              },
         
     | 
| 
      
 1419 
     | 
    
         
            +
              "php": {
         
     | 
| 
      
 1420 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1421 
     | 
    
         
            +
                "iso_code": "PHP",
         
     | 
| 
      
 1422 
     | 
    
         
            +
                "name": "Philippine Peso",
         
     | 
| 
      
 1423 
     | 
    
         
            +
                "symbol": "₱",
         
     | 
| 
      
 1424 
     | 
    
         
            +
                "subunit": "Centavo",
         
     | 
| 
      
 1425 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1426 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1427 
     | 
    
         
            +
                "html_entity": "₱",
         
     | 
| 
      
 1428 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1429 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1430 
     | 
    
         
            +
                "iso_numeric": "608"
         
     | 
| 
      
 1431 
     | 
    
         
            +
              },
         
     | 
| 
      
 1432 
     | 
    
         
            +
              "pkr": {
         
     | 
| 
      
 1433 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1434 
     | 
    
         
            +
                "iso_code": "PKR",
         
     | 
| 
      
 1435 
     | 
    
         
            +
                "name": "Pakistani Rupee",
         
     | 
| 
      
 1436 
     | 
    
         
            +
                "symbol": "₨",
         
     | 
| 
      
 1437 
     | 
    
         
            +
                "subunit": "Paisa",
         
     | 
| 
      
 1438 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1439 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1440 
     | 
    
         
            +
                "html_entity": "₨",
         
     | 
| 
      
 1441 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1442 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1443 
     | 
    
         
            +
                "iso_numeric": "586"
         
     | 
| 
      
 1444 
     | 
    
         
            +
              },
         
     | 
| 
      
 1445 
     | 
    
         
            +
              "pln": {
         
     | 
| 
      
 1446 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1447 
     | 
    
         
            +
                "iso_code": "PLN",
         
     | 
| 
      
 1448 
     | 
    
         
            +
                "name": "Polish Złoty",
         
     | 
| 
      
 1449 
     | 
    
         
            +
                "symbol": "zł",
         
     | 
| 
      
 1450 
     | 
    
         
            +
                "subunit": "Grosz",
         
     | 
| 
      
 1451 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1452 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1453 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1454 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1455 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1456 
     | 
    
         
            +
                "iso_numeric": "985"
         
     | 
| 
      
 1457 
     | 
    
         
            +
              },
         
     | 
| 
      
 1458 
     | 
    
         
            +
              "pyg": {
         
     | 
| 
      
 1459 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1460 
     | 
    
         
            +
                "iso_code": "PYG",
         
     | 
| 
      
 1461 
     | 
    
         
            +
                "name": "Paraguayan Guaraní",
         
     | 
| 
      
 1462 
     | 
    
         
            +
                "symbol": "₲",
         
     | 
| 
      
 1463 
     | 
    
         
            +
                "subunit": "Céntimo",
         
     | 
| 
      
 1464 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1465 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1466 
     | 
    
         
            +
                "html_entity": "₲",
         
     | 
| 
      
 1467 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1468 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1469 
     | 
    
         
            +
                "iso_numeric": "600"
         
     | 
| 
      
 1470 
     | 
    
         
            +
              },
         
     | 
| 
      
 1471 
     | 
    
         
            +
              "qar": {
         
     | 
| 
      
 1472 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1473 
     | 
    
         
            +
                "iso_code": "QAR",
         
     | 
| 
      
 1474 
     | 
    
         
            +
                "name": "Qatari Riyal",
         
     | 
| 
      
 1475 
     | 
    
         
            +
                "symbol": "ر.ق",
         
     | 
| 
      
 1476 
     | 
    
         
            +
                "subunit": "Dirham",
         
     | 
| 
      
 1477 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1478 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1479 
     | 
    
         
            +
                "html_entity": "﷼",
         
     | 
| 
      
 1480 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1481 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1482 
     | 
    
         
            +
                "iso_numeric": "634"
         
     | 
| 
      
 1483 
     | 
    
         
            +
              },
         
     | 
| 
      
 1484 
     | 
    
         
            +
              "ron": {
         
     | 
| 
      
 1485 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1486 
     | 
    
         
            +
                "iso_code": "RON",
         
     | 
| 
      
 1487 
     | 
    
         
            +
                "name": "Romanian Leu",
         
     | 
| 
      
 1488 
     | 
    
         
            +
                "symbol": "L",
         
     | 
| 
      
 1489 
     | 
    
         
            +
                "subunit": "Ban",
         
     | 
| 
      
 1490 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1491 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1492 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1493 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 1494 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 1495 
     | 
    
         
            +
                "iso_numeric": "946"
         
     | 
| 
      
 1496 
     | 
    
         
            +
              },
         
     | 
| 
      
 1497 
     | 
    
         
            +
              "rsd": {
         
     | 
| 
      
 1498 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1499 
     | 
    
         
            +
                "iso_code": "RSD",
         
     | 
| 
      
 1500 
     | 
    
         
            +
                "name": "Serbian Dinar",
         
     | 
| 
      
 1501 
     | 
    
         
            +
                "symbol": "din. or дин.",
         
     | 
| 
      
 1502 
     | 
    
         
            +
                "subunit": "Para",
         
     | 
| 
      
 1503 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1504 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1505 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1506 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1507 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1508 
     | 
    
         
            +
                "iso_numeric": "941"
         
     | 
| 
      
 1509 
     | 
    
         
            +
              },
         
     | 
| 
      
 1510 
     | 
    
         
            +
              "rub": {
         
     | 
| 
      
 1511 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1512 
     | 
    
         
            +
                "iso_code": "RUB",
         
     | 
| 
      
 1513 
     | 
    
         
            +
                "name": "Russian Ruble",
         
     | 
| 
      
 1514 
     | 
    
         
            +
                "symbol": "р.",
         
     | 
| 
      
 1515 
     | 
    
         
            +
                "subunit": "Kopek",
         
     | 
| 
      
 1516 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1517 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1518 
     | 
    
         
            +
                "html_entity": "руб",
         
     | 
| 
      
 1519 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 1520 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 1521 
     | 
    
         
            +
                "iso_numeric": "643"
         
     | 
| 
      
 1522 
     | 
    
         
            +
              },
         
     | 
| 
      
 1523 
     | 
    
         
            +
              "rwf": {
         
     | 
| 
      
 1524 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1525 
     | 
    
         
            +
                "iso_code": "RWF",
         
     | 
| 
      
 1526 
     | 
    
         
            +
                "name": "Rwandan Franc",
         
     | 
| 
      
 1527 
     | 
    
         
            +
                "symbol": "Fr",
         
     | 
| 
      
 1528 
     | 
    
         
            +
                "subunit": "Centime",
         
     | 
| 
      
 1529 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1530 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1531 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1532 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1533 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1534 
     | 
    
         
            +
                "iso_numeric": "646"
         
     | 
| 
      
 1535 
     | 
    
         
            +
              },
         
     | 
| 
      
 1536 
     | 
    
         
            +
              "sar": {
         
     | 
| 
      
 1537 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1538 
     | 
    
         
            +
                "iso_code": "SAR",
         
     | 
| 
      
 1539 
     | 
    
         
            +
                "name": "Saudi Riyal",
         
     | 
| 
      
 1540 
     | 
    
         
            +
                "symbol": "ر.س",
         
     | 
| 
      
 1541 
     | 
    
         
            +
                "subunit": "Hallallah",
         
     | 
| 
      
 1542 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1543 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1544 
     | 
    
         
            +
                "html_entity": "﷼",
         
     | 
| 
      
 1545 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1546 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1547 
     | 
    
         
            +
                "iso_numeric": "682"
         
     | 
| 
      
 1548 
     | 
    
         
            +
              },
         
     | 
| 
      
 1549 
     | 
    
         
            +
              "sbd": {
         
     | 
| 
      
 1550 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1551 
     | 
    
         
            +
                "iso_code": "SBD",
         
     | 
| 
      
 1552 
     | 
    
         
            +
                "name": "Solomon Islands Dollar",
         
     | 
| 
      
 1553 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 1554 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1555 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1556 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1557 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 1558 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1559 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1560 
     | 
    
         
            +
                "iso_numeric": "090"
         
     | 
| 
      
 1561 
     | 
    
         
            +
              },
         
     | 
| 
      
 1562 
     | 
    
         
            +
              "scr": {
         
     | 
| 
      
 1563 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1564 
     | 
    
         
            +
                "iso_code": "SCR",
         
     | 
| 
      
 1565 
     | 
    
         
            +
                "name": "Seychellois Rupee",
         
     | 
| 
      
 1566 
     | 
    
         
            +
                "symbol": "₨",
         
     | 
| 
      
 1567 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1568 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1569 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1570 
     | 
    
         
            +
                "html_entity": "₨",
         
     | 
| 
      
 1571 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1572 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1573 
     | 
    
         
            +
                "iso_numeric": "690"
         
     | 
| 
      
 1574 
     | 
    
         
            +
              },
         
     | 
| 
      
 1575 
     | 
    
         
            +
              "sdg": {
         
     | 
| 
      
 1576 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1577 
     | 
    
         
            +
                "iso_code": "SDG",
         
     | 
| 
      
 1578 
     | 
    
         
            +
                "name": "Sudanese Pound",
         
     | 
| 
      
 1579 
     | 
    
         
            +
                "symbol": "£",
         
     | 
| 
      
 1580 
     | 
    
         
            +
                "subunit": "Piastre",
         
     | 
| 
      
 1581 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1582 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1583 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1584 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1585 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1586 
     | 
    
         
            +
                "iso_numeric": "938"
         
     | 
| 
      
 1587 
     | 
    
         
            +
              },
         
     | 
| 
      
 1588 
     | 
    
         
            +
              "sek": {
         
     | 
| 
      
 1589 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1590 
     | 
    
         
            +
                "iso_code": "SEK",
         
     | 
| 
      
 1591 
     | 
    
         
            +
                "name": "Swedish Krona",
         
     | 
| 
      
 1592 
     | 
    
         
            +
                "symbol": "kr",
         
     | 
| 
      
 1593 
     | 
    
         
            +
                "subunit": "Öre",
         
     | 
| 
      
 1594 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1595 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1596 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1597 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1598 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1599 
     | 
    
         
            +
                "iso_numeric": "752"
         
     | 
| 
      
 1600 
     | 
    
         
            +
              },
         
     | 
| 
      
 1601 
     | 
    
         
            +
              "sgd": {
         
     | 
| 
      
 1602 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1603 
     | 
    
         
            +
                "iso_code": "SGD",
         
     | 
| 
      
 1604 
     | 
    
         
            +
                "name": "Singapore Dollar",
         
     | 
| 
      
 1605 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 1606 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1607 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1608 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1609 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 1610 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1611 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1612 
     | 
    
         
            +
                "iso_numeric": "702"
         
     | 
| 
      
 1613 
     | 
    
         
            +
              },
         
     | 
| 
      
 1614 
     | 
    
         
            +
              "shp": {
         
     | 
| 
      
 1615 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1616 
     | 
    
         
            +
                "iso_code": "SHP",
         
     | 
| 
      
 1617 
     | 
    
         
            +
                "name": "Saint Helenian Pound",
         
     | 
| 
      
 1618 
     | 
    
         
            +
                "symbol": "£",
         
     | 
| 
      
 1619 
     | 
    
         
            +
                "subunit": "Penny",
         
     | 
| 
      
 1620 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1621 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1622 
     | 
    
         
            +
                "html_entity": "£",
         
     | 
| 
      
 1623 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1624 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1625 
     | 
    
         
            +
                "iso_numeric": "654"
         
     | 
| 
      
 1626 
     | 
    
         
            +
              },
         
     | 
| 
      
 1627 
     | 
    
         
            +
              "skk": {
         
     | 
| 
      
 1628 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1629 
     | 
    
         
            +
                "iso_code": "SKK",
         
     | 
| 
      
 1630 
     | 
    
         
            +
                "name": "Slovak Koruna",
         
     | 
| 
      
 1631 
     | 
    
         
            +
                "symbol": "Sk",
         
     | 
| 
      
 1632 
     | 
    
         
            +
                "subunit": "Halier",
         
     | 
| 
      
 1633 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1634 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1635 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1636 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1637 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1638 
     | 
    
         
            +
                "iso_numeric": "703"
         
     | 
| 
      
 1639 
     | 
    
         
            +
              },
         
     | 
| 
      
 1640 
     | 
    
         
            +
              "sll": {
         
     | 
| 
      
 1641 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1642 
     | 
    
         
            +
                "iso_code": "SLL",
         
     | 
| 
      
 1643 
     | 
    
         
            +
                "name": "Sierra Leonean Leone",
         
     | 
| 
      
 1644 
     | 
    
         
            +
                "symbol": "Le",
         
     | 
| 
      
 1645 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1646 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1647 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1648 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1649 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1650 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1651 
     | 
    
         
            +
                "iso_numeric": "694"
         
     | 
| 
      
 1652 
     | 
    
         
            +
              },
         
     | 
| 
      
 1653 
     | 
    
         
            +
              "sos": {
         
     | 
| 
      
 1654 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1655 
     | 
    
         
            +
                "iso_code": "SOS",
         
     | 
| 
      
 1656 
     | 
    
         
            +
                "name": "Somali Shilling",
         
     | 
| 
      
 1657 
     | 
    
         
            +
                "symbol": "Sh",
         
     | 
| 
      
 1658 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1659 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1660 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1661 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1662 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1663 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1664 
     | 
    
         
            +
                "iso_numeric": "706"
         
     | 
| 
      
 1665 
     | 
    
         
            +
              },
         
     | 
| 
      
 1666 
     | 
    
         
            +
              "srd": {
         
     | 
| 
      
 1667 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1668 
     | 
    
         
            +
                "iso_code": "SRD",
         
     | 
| 
      
 1669 
     | 
    
         
            +
                "name": "Surinamese Dollar",
         
     | 
| 
      
 1670 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 1671 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1672 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1673 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1674 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1675 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1676 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1677 
     | 
    
         
            +
                "iso_numeric": "968"
         
     | 
| 
      
 1678 
     | 
    
         
            +
              },
         
     | 
| 
      
 1679 
     | 
    
         
            +
              "std": {
         
     | 
| 
      
 1680 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1681 
     | 
    
         
            +
                "iso_code": "STD",
         
     | 
| 
      
 1682 
     | 
    
         
            +
                "name": "São Tomé and Príncipe Dobra",
         
     | 
| 
      
 1683 
     | 
    
         
            +
                "symbol": "Db",
         
     | 
| 
      
 1684 
     | 
    
         
            +
                "subunit": "Cêntimo",
         
     | 
| 
      
 1685 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1686 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1687 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1688 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1689 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1690 
     | 
    
         
            +
                "iso_numeric": "678"
         
     | 
| 
      
 1691 
     | 
    
         
            +
              },
         
     | 
| 
      
 1692 
     | 
    
         
            +
              "svc": {
         
     | 
| 
      
 1693 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1694 
     | 
    
         
            +
                "iso_code": "SVC",
         
     | 
| 
      
 1695 
     | 
    
         
            +
                "name": "Salvadoran Colón",
         
     | 
| 
      
 1696 
     | 
    
         
            +
                "symbol": "₡",
         
     | 
| 
      
 1697 
     | 
    
         
            +
                "subunit": "Centavo",
         
     | 
| 
      
 1698 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1699 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1700 
     | 
    
         
            +
                "html_entity": "₡",
         
     | 
| 
      
 1701 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1702 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1703 
     | 
    
         
            +
                "iso_numeric": "222"
         
     | 
| 
      
 1704 
     | 
    
         
            +
              },
         
     | 
| 
      
 1705 
     | 
    
         
            +
              "syp": {
         
     | 
| 
      
 1706 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1707 
     | 
    
         
            +
                "iso_code": "SYP",
         
     | 
| 
      
 1708 
     | 
    
         
            +
                "name": "Syrian Pound",
         
     | 
| 
      
 1709 
     | 
    
         
            +
                "symbol": "£ or ل.س",
         
     | 
| 
      
 1710 
     | 
    
         
            +
                "subunit": "Piastre",
         
     | 
| 
      
 1711 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1712 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1713 
     | 
    
         
            +
                "html_entity": "£",
         
     | 
| 
      
 1714 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1715 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1716 
     | 
    
         
            +
                "iso_numeric": "760"
         
     | 
| 
      
 1717 
     | 
    
         
            +
              },
         
     | 
| 
      
 1718 
     | 
    
         
            +
              "szl": {
         
     | 
| 
      
 1719 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1720 
     | 
    
         
            +
                "iso_code": "SZL",
         
     | 
| 
      
 1721 
     | 
    
         
            +
                "name": "Swazi Lilangeni",
         
     | 
| 
      
 1722 
     | 
    
         
            +
                "symbol": "L",
         
     | 
| 
      
 1723 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1724 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1725 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1726 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1727 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1728 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1729 
     | 
    
         
            +
                "iso_numeric": "748"
         
     | 
| 
      
 1730 
     | 
    
         
            +
              },
         
     | 
| 
      
 1731 
     | 
    
         
            +
              "thb": {
         
     | 
| 
      
 1732 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1733 
     | 
    
         
            +
                "iso_code": "THB",
         
     | 
| 
      
 1734 
     | 
    
         
            +
                "name": "Thai Baht",
         
     | 
| 
      
 1735 
     | 
    
         
            +
                "symbol": "฿",
         
     | 
| 
      
 1736 
     | 
    
         
            +
                "subunit": "Satang",
         
     | 
| 
      
 1737 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1738 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1739 
     | 
    
         
            +
                "html_entity": "฿",
         
     | 
| 
      
 1740 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1741 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1742 
     | 
    
         
            +
                "iso_numeric": "764"
         
     | 
| 
      
 1743 
     | 
    
         
            +
              },
         
     | 
| 
      
 1744 
     | 
    
         
            +
              "tjs": {
         
     | 
| 
      
 1745 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1746 
     | 
    
         
            +
                "iso_code": "TJS",
         
     | 
| 
      
 1747 
     | 
    
         
            +
                "name": "Tajikistani Somoni",
         
     | 
| 
      
 1748 
     | 
    
         
            +
                "symbol": "ЅМ",
         
     | 
| 
      
 1749 
     | 
    
         
            +
                "subunit": "Diram",
         
     | 
| 
      
 1750 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1751 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1752 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1753 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1754 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1755 
     | 
    
         
            +
                "iso_numeric": "972"
         
     | 
| 
      
 1756 
     | 
    
         
            +
              },
         
     | 
| 
      
 1757 
     | 
    
         
            +
              "tmm": {
         
     | 
| 
      
 1758 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1759 
     | 
    
         
            +
                "iso_code": "TMM",
         
     | 
| 
      
 1760 
     | 
    
         
            +
                "name": "Turkmenistani Manat",
         
     | 
| 
      
 1761 
     | 
    
         
            +
                "symbol": "m",
         
     | 
| 
      
 1762 
     | 
    
         
            +
                "subunit": "Tennesi",
         
     | 
| 
      
 1763 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1764 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1765 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1766 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1767 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1768 
     | 
    
         
            +
                "iso_numeric": "795"
         
     | 
| 
      
 1769 
     | 
    
         
            +
              },
         
     | 
| 
      
 1770 
     | 
    
         
            +
              "tnd": {
         
     | 
| 
      
 1771 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1772 
     | 
    
         
            +
                "iso_code": "TND",
         
     | 
| 
      
 1773 
     | 
    
         
            +
                "name": "Tunisian Dinar",
         
     | 
| 
      
 1774 
     | 
    
         
            +
                "symbol": "د.ت",
         
     | 
| 
      
 1775 
     | 
    
         
            +
                "subunit": "Millime",
         
     | 
| 
      
 1776 
     | 
    
         
            +
                "subunit_to_unit": 1000,
         
     | 
| 
      
 1777 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1778 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1779 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1780 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1781 
     | 
    
         
            +
                "iso_numeric": "788"
         
     | 
| 
      
 1782 
     | 
    
         
            +
              },
         
     | 
| 
      
 1783 
     | 
    
         
            +
              "top": {
         
     | 
| 
      
 1784 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1785 
     | 
    
         
            +
                "iso_code": "TOP",
         
     | 
| 
      
 1786 
     | 
    
         
            +
                "name": "Tongan Paʻanga",
         
     | 
| 
      
 1787 
     | 
    
         
            +
                "symbol": "T$",
         
     | 
| 
      
 1788 
     | 
    
         
            +
                "subunit": "Seniti",
         
     | 
| 
      
 1789 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1790 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1791 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1792 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1793 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1794 
     | 
    
         
            +
                "iso_numeric": "776"
         
     | 
| 
      
 1795 
     | 
    
         
            +
              },
         
     | 
| 
      
 1796 
     | 
    
         
            +
              "try": {
         
     | 
| 
      
 1797 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1798 
     | 
    
         
            +
                "iso_code": "TRY",
         
     | 
| 
      
 1799 
     | 
    
         
            +
                "name": "Turkish Lira",
         
     | 
| 
      
 1800 
     | 
    
         
            +
                "symbol": "TL",
         
     | 
| 
      
 1801 
     | 
    
         
            +
                "subunit": "kuruş",
         
     | 
| 
      
 1802 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1803 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1804 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1805 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1806 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1807 
     | 
    
         
            +
                "iso_numeric": "949"
         
     | 
| 
      
 1808 
     | 
    
         
            +
              },
         
     | 
| 
      
 1809 
     | 
    
         
            +
              "ttd": {
         
     | 
| 
      
 1810 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1811 
     | 
    
         
            +
                "iso_code": "TTD",
         
     | 
| 
      
 1812 
     | 
    
         
            +
                "name": "Trinidad and Tobago Dollar",
         
     | 
| 
      
 1813 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 1814 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1815 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1816 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1817 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 1818 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1819 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1820 
     | 
    
         
            +
                "iso_numeric": "780"
         
     | 
| 
      
 1821 
     | 
    
         
            +
              },
         
     | 
| 
      
 1822 
     | 
    
         
            +
              "twd": {
         
     | 
| 
      
 1823 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1824 
     | 
    
         
            +
                "iso_code": "TWD",
         
     | 
| 
      
 1825 
     | 
    
         
            +
                "name": "New Taiwan Dollar",
         
     | 
| 
      
 1826 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 1827 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1828 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1829 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1830 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 1831 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1832 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1833 
     | 
    
         
            +
                "iso_numeric": "901"
         
     | 
| 
      
 1834 
     | 
    
         
            +
              },
         
     | 
| 
      
 1835 
     | 
    
         
            +
              "tzs": {
         
     | 
| 
      
 1836 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1837 
     | 
    
         
            +
                "iso_code": "TZS",
         
     | 
| 
      
 1838 
     | 
    
         
            +
                "name": "Tanzanian Shilling",
         
     | 
| 
      
 1839 
     | 
    
         
            +
                "symbol": "Sh",
         
     | 
| 
      
 1840 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1841 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1842 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1843 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1844 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1845 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1846 
     | 
    
         
            +
                "iso_numeric": "834"
         
     | 
| 
      
 1847 
     | 
    
         
            +
              },
         
     | 
| 
      
 1848 
     | 
    
         
            +
              "uah": {
         
     | 
| 
      
 1849 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1850 
     | 
    
         
            +
                "iso_code": "UAH",
         
     | 
| 
      
 1851 
     | 
    
         
            +
                "name": "Ukrainian Hryvnia",
         
     | 
| 
      
 1852 
     | 
    
         
            +
                "symbol": "₴",
         
     | 
| 
      
 1853 
     | 
    
         
            +
                "subunit": "Kopiyka",
         
     | 
| 
      
 1854 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1855 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1856 
     | 
    
         
            +
                "html_entity": "₴",
         
     | 
| 
      
 1857 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1858 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1859 
     | 
    
         
            +
                "iso_numeric": "980"
         
     | 
| 
      
 1860 
     | 
    
         
            +
              },
         
     | 
| 
      
 1861 
     | 
    
         
            +
              "ugx": {
         
     | 
| 
      
 1862 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1863 
     | 
    
         
            +
                "iso_code": "UGX",
         
     | 
| 
      
 1864 
     | 
    
         
            +
                "name": "Ugandan Shilling",
         
     | 
| 
      
 1865 
     | 
    
         
            +
                "symbol": "Sh",
         
     | 
| 
      
 1866 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1867 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1868 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1869 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1870 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1871 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1872 
     | 
    
         
            +
                "iso_numeric": "800"
         
     | 
| 
      
 1873 
     | 
    
         
            +
              },
         
     | 
| 
      
 1874 
     | 
    
         
            +
              "usd": {
         
     | 
| 
      
 1875 
     | 
    
         
            +
                "priority": 1,
         
     | 
| 
      
 1876 
     | 
    
         
            +
                "iso_code": "USD",
         
     | 
| 
      
 1877 
     | 
    
         
            +
                "name": "United States Dollar",
         
     | 
| 
      
 1878 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 1879 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1880 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1881 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1882 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 1883 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1884 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1885 
     | 
    
         
            +
                "iso_numeric": "840"
         
     | 
| 
      
 1886 
     | 
    
         
            +
              },
         
     | 
| 
      
 1887 
     | 
    
         
            +
              "uyu": {
         
     | 
| 
      
 1888 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1889 
     | 
    
         
            +
                "iso_code": "UYU",
         
     | 
| 
      
 1890 
     | 
    
         
            +
                "name": "Uruguayan Peso",
         
     | 
| 
      
 1891 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 1892 
     | 
    
         
            +
                "subunit": "Centésimo",
         
     | 
| 
      
 1893 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1894 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1895 
     | 
    
         
            +
                "html_entity": "₱",
         
     | 
| 
      
 1896 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 1897 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 1898 
     | 
    
         
            +
                "iso_numeric": "858"
         
     | 
| 
      
 1899 
     | 
    
         
            +
              },
         
     | 
| 
      
 1900 
     | 
    
         
            +
              "uzs": {
         
     | 
| 
      
 1901 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1902 
     | 
    
         
            +
                "iso_code": "UZS",
         
     | 
| 
      
 1903 
     | 
    
         
            +
                "name": "Uzbekistani Som",
         
     | 
| 
      
 1904 
     | 
    
         
            +
                "symbol": null,
         
     | 
| 
      
 1905 
     | 
    
         
            +
                "subunit": "Tiyin",
         
     | 
| 
      
 1906 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1907 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1908 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1909 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1910 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1911 
     | 
    
         
            +
                "iso_numeric": "860"
         
     | 
| 
      
 1912 
     | 
    
         
            +
              },
         
     | 
| 
      
 1913 
     | 
    
         
            +
              "vef": {
         
     | 
| 
      
 1914 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1915 
     | 
    
         
            +
                "iso_code": "VEF",
         
     | 
| 
      
 1916 
     | 
    
         
            +
                "name": "Venezuelan Bolívar",
         
     | 
| 
      
 1917 
     | 
    
         
            +
                "symbol": "Bs F",
         
     | 
| 
      
 1918 
     | 
    
         
            +
                "subunit": "Céntimo",
         
     | 
| 
      
 1919 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1920 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1921 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1922 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 1923 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 1924 
     | 
    
         
            +
                "iso_numeric": "937"
         
     | 
| 
      
 1925 
     | 
    
         
            +
              },
         
     | 
| 
      
 1926 
     | 
    
         
            +
              "vnd": {
         
     | 
| 
      
 1927 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1928 
     | 
    
         
            +
                "iso_code": "VND",
         
     | 
| 
      
 1929 
     | 
    
         
            +
                "name": "Vietnamese Đồng",
         
     | 
| 
      
 1930 
     | 
    
         
            +
                "symbol": "₫",
         
     | 
| 
      
 1931 
     | 
    
         
            +
                "subunit": "Hào",
         
     | 
| 
      
 1932 
     | 
    
         
            +
                "subunit_to_unit": 10,
         
     | 
| 
      
 1933 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1934 
     | 
    
         
            +
                "html_entity": "₫",
         
     | 
| 
      
 1935 
     | 
    
         
            +
                "decimal_mark": ",",
         
     | 
| 
      
 1936 
     | 
    
         
            +
                "thousands_separator": ".",
         
     | 
| 
      
 1937 
     | 
    
         
            +
                "iso_numeric": "704"
         
     | 
| 
      
 1938 
     | 
    
         
            +
              },
         
     | 
| 
      
 1939 
     | 
    
         
            +
              "vuv": {
         
     | 
| 
      
 1940 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1941 
     | 
    
         
            +
                "iso_code": "VUV",
         
     | 
| 
      
 1942 
     | 
    
         
            +
                "name": "Vanuatu Vatu",
         
     | 
| 
      
 1943 
     | 
    
         
            +
                "symbol": "Vt",
         
     | 
| 
      
 1944 
     | 
    
         
            +
                "subunit": null,
         
     | 
| 
      
 1945 
     | 
    
         
            +
                "subunit_to_unit": 1,
         
     | 
| 
      
 1946 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1947 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1948 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1949 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1950 
     | 
    
         
            +
                "iso_numeric": "548"
         
     | 
| 
      
 1951 
     | 
    
         
            +
              },
         
     | 
| 
      
 1952 
     | 
    
         
            +
              "wst": {
         
     | 
| 
      
 1953 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1954 
     | 
    
         
            +
                "iso_code": "WST",
         
     | 
| 
      
 1955 
     | 
    
         
            +
                "name": "Samoan Tala",
         
     | 
| 
      
 1956 
     | 
    
         
            +
                "symbol": "T",
         
     | 
| 
      
 1957 
     | 
    
         
            +
                "subunit": "Sene",
         
     | 
| 
      
 1958 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1959 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1960 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1961 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1962 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1963 
     | 
    
         
            +
                "iso_numeric": "882"
         
     | 
| 
      
 1964 
     | 
    
         
            +
              },
         
     | 
| 
      
 1965 
     | 
    
         
            +
              "xaf": {
         
     | 
| 
      
 1966 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1967 
     | 
    
         
            +
                "iso_code": "XAF",
         
     | 
| 
      
 1968 
     | 
    
         
            +
                "name": "Central African Cfa Franc",
         
     | 
| 
      
 1969 
     | 
    
         
            +
                "symbol": "Fr",
         
     | 
| 
      
 1970 
     | 
    
         
            +
                "subunit": "Centime",
         
     | 
| 
      
 1971 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1972 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1973 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 1974 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1975 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1976 
     | 
    
         
            +
                "iso_numeric": "950"
         
     | 
| 
      
 1977 
     | 
    
         
            +
              },
         
     | 
| 
      
 1978 
     | 
    
         
            +
              "xcd": {
         
     | 
| 
      
 1979 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1980 
     | 
    
         
            +
                "iso_code": "XCD",
         
     | 
| 
      
 1981 
     | 
    
         
            +
                "name": "East Caribbean Dollar",
         
     | 
| 
      
 1982 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 1983 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 1984 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1985 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 1986 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 1987 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 1988 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 1989 
     | 
    
         
            +
                "iso_numeric": "951"
         
     | 
| 
      
 1990 
     | 
    
         
            +
              },
         
     | 
| 
      
 1991 
     | 
    
         
            +
              "xof": {
         
     | 
| 
      
 1992 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 1993 
     | 
    
         
            +
                "iso_code": "XOF",
         
     | 
| 
      
 1994 
     | 
    
         
            +
                "name": "West African Cfa Franc",
         
     | 
| 
      
 1995 
     | 
    
         
            +
                "symbol": "Fr",
         
     | 
| 
      
 1996 
     | 
    
         
            +
                "subunit": "Centime",
         
     | 
| 
      
 1997 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 1998 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 1999 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 2000 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 2001 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 2002 
     | 
    
         
            +
                "iso_numeric": "952"
         
     | 
| 
      
 2003 
     | 
    
         
            +
              },
         
     | 
| 
      
 2004 
     | 
    
         
            +
              "xpf": {
         
     | 
| 
      
 2005 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 2006 
     | 
    
         
            +
                "iso_code": "XPF",
         
     | 
| 
      
 2007 
     | 
    
         
            +
                "name": "Cfp Franc",
         
     | 
| 
      
 2008 
     | 
    
         
            +
                "symbol": "Fr",
         
     | 
| 
      
 2009 
     | 
    
         
            +
                "subunit": "Centime",
         
     | 
| 
      
 2010 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 2011 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 2012 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 2013 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 2014 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 2015 
     | 
    
         
            +
                "iso_numeric": "953"
         
     | 
| 
      
 2016 
     | 
    
         
            +
              },
         
     | 
| 
      
 2017 
     | 
    
         
            +
              "yer": {
         
     | 
| 
      
 2018 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 2019 
     | 
    
         
            +
                "iso_code": "YER",
         
     | 
| 
      
 2020 
     | 
    
         
            +
                "name": "Yemeni Rial",
         
     | 
| 
      
 2021 
     | 
    
         
            +
                "symbol": "﷼",
         
     | 
| 
      
 2022 
     | 
    
         
            +
                "subunit": "Fils",
         
     | 
| 
      
 2023 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 2024 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 2025 
     | 
    
         
            +
                "html_entity": "﷼",
         
     | 
| 
      
 2026 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 2027 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 2028 
     | 
    
         
            +
                "iso_numeric": "886"
         
     | 
| 
      
 2029 
     | 
    
         
            +
              },
         
     | 
| 
      
 2030 
     | 
    
         
            +
              "zar": {
         
     | 
| 
      
 2031 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 2032 
     | 
    
         
            +
                "iso_code": "ZAR",
         
     | 
| 
      
 2033 
     | 
    
         
            +
                "name": "South African Rand",
         
     | 
| 
      
 2034 
     | 
    
         
            +
                "symbol": "R",
         
     | 
| 
      
 2035 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 2036 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 2037 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 2038 
     | 
    
         
            +
                "html_entity": "R",
         
     | 
| 
      
 2039 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 2040 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 2041 
     | 
    
         
            +
                "iso_numeric": "710"
         
     | 
| 
      
 2042 
     | 
    
         
            +
              },
         
     | 
| 
      
 2043 
     | 
    
         
            +
              "zmk": {
         
     | 
| 
      
 2044 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 2045 
     | 
    
         
            +
                "iso_code": "ZMK",
         
     | 
| 
      
 2046 
     | 
    
         
            +
                "name": "Zambian Kwacha",
         
     | 
| 
      
 2047 
     | 
    
         
            +
                "symbol": "ZK",
         
     | 
| 
      
 2048 
     | 
    
         
            +
                "subunit": "Ngwee",
         
     | 
| 
      
 2049 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 2050 
     | 
    
         
            +
                "symbol_first": false,
         
     | 
| 
      
 2051 
     | 
    
         
            +
                "html_entity": "",
         
     | 
| 
      
 2052 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 2053 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 2054 
     | 
    
         
            +
                "iso_numeric": "894"
         
     | 
| 
      
 2055 
     | 
    
         
            +
              },
         
     | 
| 
      
 2056 
     | 
    
         
            +
              "zwd": {
         
     | 
| 
      
 2057 
     | 
    
         
            +
                "priority": 100,
         
     | 
| 
      
 2058 
     | 
    
         
            +
                "iso_code": "ZWD",
         
     | 
| 
      
 2059 
     | 
    
         
            +
                "name": "Zimbabwean Dollar",
         
     | 
| 
      
 2060 
     | 
    
         
            +
                "symbol": "$",
         
     | 
| 
      
 2061 
     | 
    
         
            +
                "subunit": "Cent",
         
     | 
| 
      
 2062 
     | 
    
         
            +
                "subunit_to_unit": 100,
         
     | 
| 
      
 2063 
     | 
    
         
            +
                "symbol_first": true,
         
     | 
| 
      
 2064 
     | 
    
         
            +
                "html_entity": "$",
         
     | 
| 
      
 2065 
     | 
    
         
            +
                "decimal_mark": ".",
         
     | 
| 
      
 2066 
     | 
    
         
            +
                "thousands_separator": ",",
         
     | 
| 
      
 2067 
     | 
    
         
            +
                "iso_numeric": "716"
         
     | 
| 
      
 2068 
     | 
    
         
            +
              }
         
     | 
| 
       2069 
2069 
     | 
    
         
             
            }
         
     |