changed CHANGELOG.md
 
@@ -1,5 +1,11 @@
1
1
# Changelog
2
2
3
+ ## Cldr v0.13.1 November 13th, 2017
4
+
5
+ ### Enhancements
6
+
7
+ * Remove dependency on `Flow` and make `GenStage` an optional dependency and only for `:dev` and `:test`
8
+
3
9
## Cldr v0.13.0 November 12th, 2017
4
10
5
11
### Enhancements
changed hex_metadata.config
 
@@ -31,20 +31,21 @@
31
31
<<"guides/9_source_data.md">>,<<"config/config.exs">>,<<"config/dev.exs">>,
32
32
<<"config/docs.exs">>,<<"config/test.exs">>,<<"mix.exs">>,<<"README.md">>,
33
33
<<"CHANGELOG.md">>,<<"LICENSE.md">>,<<"priv/cldr/locales/en.json">>,
34
- <<"priv/cldr/locales/root.json">>,<<"priv/cldr/available_locales.json">>,
35
- <<"priv/cldr/number_systems.json">>,<<"priv/cldr/plural_rules.json">>,
36
- <<"priv/cldr/version.json">>,<<"priv/cldr/currencies.json">>,
37
- <<"priv/cldr/week_data.json">>,<<"priv/cldr/calendar_data.json">>,
38
- <<"priv/cldr/day_periods.json">>,<<"priv/cldr/likely_subtags.json">>,
39
- <<"priv/cldr/aliases.json">>,<<"priv/cldr/territory_containment.json">>,
34
+ <<"priv/cldr/locales/en-001.json">>,<<"priv/cldr/locales/root.json">>,
35
+ <<"priv/cldr/available_locales.json">>,<<"priv/cldr/number_systems.json">>,
36
+ <<"priv/cldr/plural_rules.json">>,<<"priv/cldr/version.json">>,
37
+ <<"priv/cldr/currencies.json">>,<<"priv/cldr/week_data.json">>,
38
+ <<"priv/cldr/calendar_data.json">>,<<"priv/cldr/day_periods.json">>,
39
+ <<"priv/cldr/likely_subtags.json">>,<<"priv/cldr/aliases.json">>,
40
+ <<"priv/cldr/territory_containment.json">>,
40
41
<<"priv/cldr/territory_info.json">>,<<"priv/cldr/rfc5646.abnf">>]}.
41
42
{<<"licenses">>,[<<"Apache 2.0">>]}.
42
43
{<<"links">>,
43
44
[{<<"Changelog">>,
44
- <<"https://github.com/kipcole9/cldr/blob/v0.13.0/CHANGELOG.md">>},
45
+ <<"https://github.com/kipcole9/cldr/blob/v0.13.1/CHANGELOG.md">>},
45
46
{<<"GitHub">>,<<"https://github.com/kipcole9/cldr">>},
46
47
{<<"Readme">>,
47
- <<"https://github.com/kipcole9/cldr/blob/v0.13.0/README.md">>}]}.
48
+ <<"https://github.com/kipcole9/cldr/blob/v0.13.1/README.md">>}]}.
48
49
{<<"maintainers">>,[<<"Kip Cole">>]}.
49
50
{<<"name">>,<<"ex_cldr">>}.
50
51
{<<"requirements">>,
 
@@ -56,14 +57,6 @@
56
57
{<<"name">>,<<"decimal">>},
57
58
{<<"optional">>,false},
58
59
{<<"requirement">>,<<"~> 1.4.1">>}],
59
- [{<<"app">>,<<"gen_stage">>},
60
- {<<"name">>,<<"gen_stage">>},
61
- {<<"optional">>,false},
62
- {<<"requirement">>,<<"~> 0.12.2">>}],
63
- [{<<"app">>,<<"flow">>},
64
- {<<"name">>,<<"flow">>},
65
- {<<"optional">>,false},
66
- {<<"requirement">>,<<"~> 0.11">>}],
67
60
[{<<"app">>,<<"abnf2">>},
68
61
{<<"name">>,<<"abnf2">>},
69
62
{<<"optional">>,false},
 
@@ -72,4 +65,4 @@
72
65
{<<"name">>,<<"gettext">>},
73
66
{<<"optional">>,true},
74
67
{<<"requirement">>,<<"~> 0.13.0">>}]]}.
75
- {<<"version">>,<<"0.13.0">>}.
68
+ {<<"version">>,<<"0.13.1">>}.
changed lib/cldr/accept_language.ex
 
@@ -158,7 +158,7 @@ defmodule Cldr.AcceptLanguage do
158
158
159
159
* `{:ok, [{quality, language_tag}, ...]}` or
160
160
161
- * `raises an `Cldr.AcceptLanguageError` exception
161
+ * raises a `Cldr.AcceptLanguageError` exception
162
162
163
163
If at least one valid language tag is found but errors are also
164
164
detected on one more more tags, an `{ok, list}` tuple is returned
changed lib/cldr/config/config.ex
 
@@ -452,17 +452,23 @@ defmodule Cldr.Config do
452
452
number_systems() |> Map.keys |> Enum.sort
453
453
end
454
454
455
- @max_demand :erlang.system_info(:schedulers_online)
455
+ @max_concurrency System.schedulers_online * 2
456
456
def known_number_system_types do
457
457
known_locale_names()
458
- |> Flow.from_enumerable(max_demand: @max_demand)
459
- |> Flow.map(&get_locale/1)
460
- |> Flow.map(&Map.get(&1, :number_systems))
461
- |> Flow.flat_map(&Map.keys/1)
458
+ |> Task.async_stream(__MODULE__, :number_systems_for, [], max_concurrency: @max_concurrency)
459
+ |> Enum.to_list
460
+ |> Enum.flat_map(&elem(&1, 1))
462
461
|> Enum.uniq
463
462
|> Enum.sort
464
463
end
465
464
465
+ def number_systems_for(locale_name) do
466
+ locale_name
467
+ |> get_locale
468
+ |> Map.get(:number_systems)
469
+ |> Enum.map(&elem(&1, 0))
470
+ end
471
+
466
472
@doc """
467
473
Returns a list of atoms representing the territories known to `Cldr`.
changed mix.exs
 
@@ -1,7 +1,7 @@
1
1
defmodule Cldr.Mixfile do
2
2
use Mix.Project
3
3
4
- @version "0.13.0"
4
+ @version "0.13.1"
5
5
6
6
def project do
7
7
[
 
@@ -41,8 +41,7 @@ defmodule Cldr.Mixfile do
41
41
[
42
42
{:poison, "~> 2.1 or ~> 3.0"},
43
43
{:decimal, "~> 1.4.1"},
44
- {:gen_stage, "~> 0.12.2"},
45
- {:flow, "~> 0.11"},
44
+ {:gen_stage, "~> 0.12.2", only: [:dev, :test], optional: true},
46
45
{:ex_doc, "~> 0.18.1", only: [:dev, :docs]},
47
46
{:abnf2, "~> 0.1"},
48
47
{:gettext, "~> 0.13.0", optional: true},
 
@@ -60,6 +59,7 @@ defmodule Cldr.Mixfile do
60
59
"lib", "src", "guides", "config",
61
60
"mix.exs", "README*", "CHANGELOG*", "LICENSE*",
62
61
"priv/cldr/locales/en.json",
62
+ "priv/cldr/locales/en-001.json",
63
63
"priv/cldr/locales/root.json",
64
64
"priv/cldr/available_locales.json",
65
65
"priv/cldr/number_systems.json",
added priv/cldr/locales/en-001.json
 
@@ -0,0 +1 @@
1
+ {"units":{"short":{"frequency_kilohertz":{"other":[0," kHz"],"one":[0," kHz"]},"length_kilometer":{"per_unit_pattern":[0,"/km"],"other":[0," km"],"one":[0," km"]},"volume_cubic_centimeter":{"per_unit_pattern":[0,"/cm³"],"other":[0," cm³"],"one":[0," cm³"]},"mass_milligram":{"other":[0," mg"],"one":[0," mg"]},"volume_teaspoon":{"other":[0," tsp"],"one":[0," tsp"]},"volume_cubic_meter":{"per_unit_pattern":[0,"/m³"],"other":[0," m³"],"one":[0," m³"]},"frequency_megahertz":{"other":[0," MHz"],"one":[0," MHz"]},"volume_cup":{"other":[0," c"],"one":[0," c"]},"volume_bushel":{"other":[0," bu"],"one":[0," bu"]},"frequency_hertz":{"other":[0," Hz"],"one":[0," Hz"]},"volume_cubic_foot":{"other":[0," ft³"],"one":[0," ft³"]},"length_mile_scandinavian":{"other":[0," smi"],"one":[0," smi"]},"volume_pint_metric":{"other":[0," mpt"],"one":[0," mpt"]},"volume_milliliter":{"other":[0," ml"],"one":[0," ml"]},"area_square_mile":{"per_unit_pattern":[0,"/mi²"],"other":[0," sq mi"],"one":[0," sq mi"]},"volume_cubic_mile":{"other":[0," mi³"],"one":[0," mi³"]},"electric_milliampere":{"other":[0," mA"],"one":[0," mA"]},"volume_cubic_yard":{"other":[0," yd³"],"one":[0," yd³"]},"power_gigawatt":{"other":[0," GW"],"one":[0," GW"]},"duration_day":{"per_unit_pattern":[0,"/d"],"other":[0," days"],"one":[0," day"]},"duration_week":{"per_unit_pattern":[0,"/w"],"other":[0," wks"],"one":[0," wk"]},"mass_kilogram":{"per_unit_pattern":[0,"/kg"],"other":[0," kg"],"one":[0," kg"]},"volume_fluid_ounce":{"other":[0," fl oz"],"one":[0," fl oz"]},"angle_radian":{"other":[0," rad"],"one":[0," rad"]},"area_square_meter":{"per_unit_pattern":[0,"/m²"],"other":[0," m²"],"one":[0," m²"]},"concentr_karat":{"other":[0," ct"],"one":[0," ct"]},"length_parsec":{"other":[0," pc"],"one":[0," pc"]},"duration_second":{"per_unit_pattern":[0,"ps"],"other":[0," secs"],"one":[0," sec"]},"duration_microsecond":{"other":[0," μs"],"one":[0," μs"]},"pressure_millimeter_of_mercury":{"other":[0," mm Hg"],"one":[0," mm Hg"]},"length_nautical_mile":{"other":[0," nmi"],"one":[0," nmi"]},"speed_kilometer_per_hour":{"other":[0," kph"],"one":[0," kph"]},"area_square_foot":{"other":[0," sq ft"],"one":[0," sq ft"]},"concentr_part_per_million":{"other":[0," ppm"],"one":[0," ppm"]},"length_foot":{"per_unit_pattern":[0,"/ft"],"other":[0," ft"],"one":[0," ft"]},"volume_pint":{"other":[0," pt"],"one":[0," pt"]},"area_square_yard":{"other":[0," yd²"],"one":[0," yd²"]},"concentr_millimole_per_liter":{"other":[0," mmol/l"],"one":[0," mmol/l"]},"power_watt":{"other":[0," W"],"one":[0," W"]},"duration_minute":{"per_unit_pattern":[0,"/min"],"other":[0," mins"],"one":[0," min"]},"duration_millisecond":{"other":[0," ms"],"one":[0," ms"]},"mass_ton":{"other":[0," tn"],"one":[0," tn"]},"mass_microgram":{"other":[0," µg"],"one":[0," µg"]},"power_horsepower":{"other":[0," hp"],"one":[0," hp"]},"length_decimeter":{"other":[0," dm"],"one":[0," dm"]},"volume_acre_foot":{"other":[0," ac ft"],"one":[0," ac ft"]},"speed_meter_per_second":{"other":[0," m/s"],"one":[0," m/s"]},"digital_kilobyte":{"other":[0," kB"],"one":[0," kB"]},"area_hectare":{"other":[0," ha"],"one":[0," ha"]},"digital_megabyte":{"other":[0," MB"],"one":[0," MB"]},"volume_liter":{"per_unit_pattern":[0,"/l"],"other":[0," l"],"one":[0," l"]},"angle_degree":{"other":[0," deg"],"one":[0," deg"]},"volume_tablespoon":{"other":[0," tbsp"],"one":[0," tbsp"]},"consumption_liter_per_100kilometers":{"other":[0," l/100 km"],"one":[0," l/100 km"]},"length_inch":{"per_unit_pattern":[0,"/in"],"other":[0," in"],"one":[0," in"]},"volume_quart":{"other":[0," qt"],"one":[0," qt"]},"electric_volt":{"other":[0," V"],"one":[0," V"]},"light_lux":{"other":[0," lx"],"one":[0," lx"]},"duration_century":{"other":[0," c"],"one":[0," c"]},"length_millimeter":{"other":[0," mm"],"one":[0," mm"]},"volume_cubic_inch":{"other":[0," in³"],"one":[0," in³"]},"length_picometer":{"other":[0," pm"],"one":[0," pm"]},"duration_hour":{"per_unit_pattern":[0,"ph"],"other":[0," hrs"],"one":[0," hr"]},"energy_kilowatt_hour":{"other":[0," kWh"],"one":[0," kWh"]},"temperature_fahrenheit":{"other":[0,"°F"],"one":[0,"°F"]},"area_square_centimeter":{"per_unit_pattern":[0,"/cm²"],"other":[0," cm²"],"one":[0," cm²"]},"pressure_inch_hg":{"other":[0," inHg"],"one":[0," inHg"]},"area_square_kilometer":{"per_unit_pattern":[0,"/km²"],"other":[0," km²"],"one":[0," km²"]},"digital_bit":{"other":[0," bit"],"one":[0," bit"]},"temperature_celsius":{"other":[0,"°C"],"one":[0,"°C"]},"angle_arc_minute":{"other":[0," arcmins"],"one":[0," arcmin"]},"duration_year":{"per_unit_pattern":[0,"/y"],"other":[0," yrs"],"one":[0," yr"]},"energy_kilocalorie":{"other":[0," kcal"],"one":[0," kcal"]},"duration_month":{"per_unit_pattern":[0,"/m"],"other":[0," mths"],"one":[0," mth"]},"power_megawatt":{"other":[0," MW"],"one":[0," MW"]},"length_meter":{"per_unit_pattern":[0,"/m"],"other":[0," m"],"one":[0," m"]},"pressure_millibar":{"other":[0," mbar"],"one":[0," mbar"]},"length_micrometer":{"other":[0," µm"],"one":[0," µm"]},"temperature_kelvin":{"other":[0," K"],"one":[0," K"]},"digital_terabyte":{"other":[0," TB"],"one":[0," TB"]},"length_astronomical_unit":{"other":[0," au"],"one":[0," au"]},"coordinate_unit":{"west":[0," W"],"south":[0," S"],"north":[0," N"],"east":[0," E"]},"duration_nanosecond":{"other":[0," ns"],"one":[0," ns"]},"energy_joule":{"other":[0," J"],"one":[0," J"]},"volume_megaliter":{"other":[0," MLl"],"one":[0," Ml"]},"volume_centiliter":{"other":[0," cl"],"one":[0," cl"]},"digital_gigabyte":{"other":[0," GB"],"one":[0," GB"]},"acceleration_meter_per_second_squared":{"other":[0," m/s²"],"one":[0," m/s²"]},"speed_knot":{"other":[0," kn"],"one":[0," kn"]},"digital_kilobit":{"other":[0," kb"],"one":[0," kb"]},"temperature_generic":{"other":[0,"°"]},"volume_cubic_kilometer":{"other":[0," km³"],"one":[0," km³"]},"digital_terabit":{"other":[0," Tb"],"one":[0," Tb"]},"mass_carat":{"other":[0," CD"],"one":[0," CD"]},"length_nanometer":{"other":[0," nm"],"one":[0," nm"]},"angle_revolution":{"other":[0," rev"],"one":[0," rev"]},"electric_ampere":{"other":[0," A"],"one":[0," A"]},"area_square_inch":{"per_unit_pattern":[0,"/in²"],"other":[0," in²"],"one":[0," in²"]},"digital_megabit":{"other":[0," Mb"],"one":[0," Mb"]},"angle_arc_second":{"other":[0," arcsecs"],"one":[0," arcsec"]},"volume_gallon_imperial":{"per_unit_pattern":[0,"/gal"],"other":[0," gal"],"one":[0," gal"]},"length_centimeter":{"per_unit_pattern":[0,"/cm"],"other":[0," cm"],"one":[0," cm"]},"volume_cup_metric":{"other":[0," mc"],"one":[0," mc"]},"mass_metric_ton":{"other":[0," t"],"one":[0," t"]},"energy_kilojoule":{"other":[0," kJ"],"one":[0," kJ"]},"electric_ohm":{"other":[0," Ω"],"one":[0," Ω"]},"mass_stone":{"other":[0," st"],"one":[0," st"]},"mass_gram":{"per_unit_pattern":[0,"/g"],"other":[0," g"],"one":[0," g"]},"per":{"compound_unit_pattern":[0,"/",1]},"consumption_liter_per_kilometer":{"other":[0," l/km"],"one":[0," l/km"]},"length_fathom":{"other":[0," ftm"],"one":[0," ftm"]},"volume_gallon":{"per_unit_pattern":[0,"/gal US"],"other":[0," gal US"],"one":[0," gal US"]},"mass_ounce":{"per_unit_pattern":[0,"/oz"],"other":[0," oz"],"one":[0," oz"]},"power_milliwatt":{"other":[0," mW"],"one":[0," mW"]},"energy_calorie":{"other":[0," cal"],"one":[0," cal"]},"length_light_year":{"other":[0," ly"],"one":[0," ly"]},"volume_deciliter":{"other":[0," dl"],"one":[0," dl"]},"consumption_mile_per_gallon_imperial":{"other":[0," mpg"],"one":[0," mpg"]},"pressure_pound_per_square_inch":{"other":[0," psi"],"one":[0," psi"]},"pressure_hectopascal":{"other":[0," hPa"],"one":[0," hPa"]},"length_furlong":{"other":[0," fur"],"one":[0," fur"]},"mass_pound":{"per_unit_pattern":[0,"/lb"],"other":[0," lb"],"one":[0," lb"]},"speed_mile_per_hour":{"other":[0," mph"],"one":[0," mph"]},"length_point":{"other":[0," pt"],"one":[0," pt"]},"acceleration_g_force":{"other":[0," G"],"one":[0," G"]},"mass_ounce_troy":{"other":[0," oz t"],"one":[0," oz t"]},"volume_hectoliter":{"other":[0," hl"],"one":[0," hl"]},"power_kilowatt":{"other":[0," kW"],"one":[0," kW"]},"concentr_milligram_per_deciliter":{"other":[0," mg/dl"],"one":[0," mg/dl"]},"consumption_mile_per_gallon":{"other":[0," mpg US"],"one":[0," mpg US"]},"digital_byte":{"other":[0," byte"],"one":[0," byte"]},"frequency_gigahertz":{"other":[0," GHz"],"one":[0," GHz"]},"length_mile":{"other":[0," mi"],"one":[0," mi"]},"energy_foodcalorie":{"other":[0," Cal"],"one":[0," Cal"]},"digital_gigabit":{"other":[0," Gb"],"one":[0," Gb"]},"area_acre":{"other":[0," ac"],"one":[0," ac"]},"length_yard":{"other":[0," yd"],"one":[0," yd"]}},"narrow":{"frequency_kilohertz":{"other":[0,"kHz"],"one":[0,"kHz"]},"length_kilometer":{"per_unit_pattern":[0,"/km"],"other":[0,"km"],"one":[0,"km"]},"volume_cubic_centimeter":{"per_unit_pattern":[0,"/cm³"],"other":[0,"cm³"],"one":[0,"cm³"]},"mass_milligram":{"other":[0,"mg"],"one":[0,"mg"]},"volume_teaspoon":{"other":[0,"tsp"],"one":[0,"tsp"]},"volume_cubic_meter":{"per_unit_pattern":[0,"/m³"],"other":[0,"m³"],"one":[0,"m³"]},"frequency_megahertz":{"other":[0,"MHz"],"one":[0,"MHz"]},"volume_cup":{"other":[0,"c"],"one":[0,"c"]},"volume_bushel":{"other":[0,"bu"],"one":[0,"bu"]},"frequency_hertz":{"other":[0,"Hz"],"one":[0,"Hz"]},"volume_cubic_foot":{"other":[0,"ft³"],"one":[0,"ft³"]},"length_mile_scandinavian":{"other":[0,"smi"],"one":[0,"smi"]},"volume_pint_metric":{"other":[0,"mpt"],"one":[0,"mpt"]},"volume_milliliter":{"other":[0,"ml"],"one":[0,"ml"]},"area_square_mile":{"per_unit_pattern":[0,"/mi²"],"other":[0,"mi²"],"one":[0,"mi²"]},"volume_cubic_mile":{"other":[0,"mi³"],"one":[0,"mi³"]},"electric_milliampere":{"other":[0,"mA"],"one":[0,"mA"]},"volume_cubic_yard":{"other":[0,"yd³"],"one":[0,"yd³"]},"power_gigawatt":{"other":[0,"GW"],"one":[0,"GW"]},"duration_day":{"per_unit_pattern":[0,"/d"],"other":[0,"d"],"one":[0,"d"]},"duration_week":{"per_unit_pattern":[0,"/w"],"other":[0,"w"],"one":[0,"w"]},"mass_kilogram":{"per_unit_pattern":[0,"/kg"],"other":[0,"kg"],"one":[0,"kg"]},"volume_fluid_ounce":{"other":[0,"fl oz"],"one":[0,"fl oz"]},"angle_radian":{"other":[0,"rad"],"one":[0,"rad"]},"area_square_meter":{"per_unit_pattern":[0,"/m²"],"other":[0," m²"],"one":[0," m²"]},"concentr_karat":{"other":[0,"kt"],"one":[0,"kt"]},"length_parsec":{"other":[0,"pc"],"one":[0,"pc"]},"duration_second":{"per_unit_pattern":[0,"ps"],"other":[0,"s"],"one":[0,"s"]},"duration_microsecond":{"other":[0,"μs"],"one":[0,"μs"]},"pressure_millimeter_of_mercury":{"other":[0,"mmHg"],"one":[0,"mmHg"]},"length_nautical_mile":{"other":[0,"nmi"],"one":[0,"nmi"]},"speed_kilometer_per_hour":{"other":[0,"kph"],"one":[0,"kph"]},"area_square_foot":{"other":[0,"ft²"],"one":[0,"ft²"]},"concentr_part_per_million":{"other":[0,"ppm"],"one":[0,"ppm"]},"length_foot":{"per_unit_pattern":[0,"/ft"],"other":[0,"′"],"one":[0,"′"]},"volume_pint":{"other":[0,"pt"],"one":[0,"pt"]},"area_square_yard":{"other":[0,"yd²"],"one":[0,"yd²"]},"concentr_millimole_per_liter":{"other":[0,"mmol/l"],"one":[0,"mmol/l"]},"power_watt":{"other":[0,"W"],"one":[0,"W"]},"duration_minute":{"per_unit_pattern":[0,"/min"],"other":[0,"m"],"one":[0,"m"]},"duration_millisecond":{"other":[0,"ms"],"one":[0,"ms"]},"mass_ton":{"other":[0,"tn"],"one":[0,"tn"]},"mass_microgram":{"other":[0,"µg"],"one":[0,"µg"]},"power_horsepower":{"other":[0,"hp"],"one":[0,"hp"]},"length_decimeter":{"other":[0,"dm"],"one":[0,"dm"]},"volume_acre_foot":{"other":[0,"ac ft"],"one":[0,"ac ft"]},"speed_meter_per_second":{"other":[0,"m/s"],"one":[0,"m/s"]},"digital_kilobyte":{"other":[0,"kB"],"one":[0,"kB"]},"area_hectare":{"other":[0,"ha"],"one":[0,"ha"]},"digital_megabyte":{"other":[0,"MB"],"one":[0,"MB"]},"volume_liter":{"per_unit_pattern":[0,"/l"],"other":[0,"l"],"one":[0,"l"]},"angle_degree":{"other":[0,"°"],"one":[0,"°"]},"volume_tablespoon":{"other":[0,"tbsp"],"one":[0,"tbsp"]},"consumption_liter_per_100kilometers":{"other":[0,"l/100km"],"one":[0,"l/100km"]},"length_inch":{"per_unit_pattern":[0,"/in"],"other":[0,"″"],"one":[0,"″"]},"volume_quart":{"other":[0,"qt"],"one":[0,"qt"]},"electric_volt":{"other":[0,"V"],"one":[0,"V"]},"light_lux":{"other":[0,"lx"],"one":[0,"lx"]},"duration_century":{"other":[0," c"],"one":[0," c"]},"length_millimeter":{"other":[0,"mm"],"one":[0,"mm"]},"volume_cubic_inch":{"other":[0,"in³"],"one":[0,"in³"]},"length_picometer":{"other":[0,"pm"],"one":[0,"pm"]},"duration_hour":{"per_unit_pattern":[0,"ph"],"other":[0,"h"],"one":[0,"h"]},"energy_kilowatt_hour":{"other":[0,"kWh"],"one":[0,"kWh"]},"temperature_fahrenheit":{"other":[0,"°F"],"one":[0,"°F"]},"area_square_centimeter":{"per_unit_pattern":[0,"/cm²"],"other":[0,"cm²"],"one":[0,"cm²"]},"pressure_inch_hg":{"other":[0,"″ Hg"],"one":[0,"″ Hg"]},"area_square_kilometer":{"per_unit_pattern":[0,"/km²"],"other":[0," km²"],"one":[0," km²"]},"digital_bit":{"other":[0,"bit"],"one":[0,"bit"]},"temperature_celsius":{"other":[0,"°"],"one":[0,"°"]},"angle_arc_minute":{"other":[0,"′"],"one":[0,"′"]},"duration_year":{"per_unit_pattern":[0,"/y"],"other":[0,"y"],"one":[0,"y"]},"energy_kilocalorie":{"other":[0,"kcal"],"one":[0,"kcal"]},"duration_month":{"per_unit_pattern":[0,"/m"],"other":[0,"m"],"one":[0,"m"]},"power_megawatt":{"other":[0,"MW"],"one":[0,"MW"]},"length_meter":{"per_unit_pattern":[0,"/m"],"other":[0,"m"],"one":[0,"m"]},"pressure_millibar":{"other":[0,"mb"],"one":[0,"mb"]},"length_micrometer":{"other":[0,"µm"],"one":[0,"µm"]},"temperature_kelvin":{"other":[0,"K"],"one":[0,"K"]},"digital_terabyte":{"other":[0,"TB"],"one":[0,"TB"]},"length_astronomical_unit":{"other":[0,"au"],"one":[0,"au"]},"coordinate_unit":{"west":[0,"W"],"south":[0,"S"],"north":[0,"N"],"east":[0,"E"]},"duration_nanosecond":{"other":[0,"ns"],"one":[0,"ns"]},"energy_joule":{"other":[0,"J"],"one":[0,"J"]},"volume_megaliter":{"other":[0,"Ml"],"one":[0,"Ml"]},"volume_centiliter":{"other":[0,"cl"],"one":[0,"cl"]},"digital_gigabyte":{"other":[0,"GB"],"one":[0,"GB"]},"acceleration_meter_per_second_squared":{"other":[0,"m/s²"],"one":[0,"m/s²"]},"speed_knot":{"other":[0,"kn"],"one":[0,"kn"]},"digital_kilobit":{"other":[0,"kb"],"one":[0,"kb"]},"temperature_generic":{"other":[0,"°"]},"volume_cubic_kilometer":{"other":[0,"km³"],"one":[0,"km³"]},"digital_terabit":{"other":[0,"Tb"],"one":[0,"Tb"]},"mass_carat":{"other":[0,"CD"],"one":[0,"CD"]},"length_nanometer":{"other":[0,"nm"],"one":[0,"nm"]},"angle_revolution":{"other":[0,"rev"],"one":[0,"rev"]},"electric_ampere":{"other":[0,"A"],"one":[0,"A"]},"area_square_inch":{"per_unit_pattern":[0,"/in²"],"other":[0,"in²"],"one":[0,"in²"]},"digital_megabit":{"other":[0,"Mb"],"one":[0,"Mb"]},"angle_arc_second":{"other":[0,"″"],"one":[0,"″"]},"volume_gallon_imperial":{"per_unit_pattern":[0,"/gal"],"other":[0,"gal"],"one":[0,"gal"]},"length_centimeter":{"per_unit_pattern":[0,"/cm"],"other":[0,"cm"],"one":[0,"cm"]},"volume_cup_metric":{"other":[0,"mc"],"one":[0,"mc"]},"mass_metric_ton":{"other":[0,"t"],"one":[0,"t"]},"energy_kilojoule":{"other":[0,"kJ"],"one":[0,"kJ"]},"electric_ohm":{"other":[0,"Ω"],"one":[0,"Ω"]},"mass_stone":{"other":[0,"st"],"one":[0,"st"]},"mass_gram":{"per_unit_pattern":[0,"/g"],"other":[0,"g"],"one":[0,"g"]},"per":{"compound_unit_pattern":[0,"/",1]},"consumption_liter_per_kilometer":{"other":[0,"l/km"],"one":[0,"l/km"]},"length_fathom":{"other":[0,"fm"],"one":[0,"fm"]},"volume_gallon":{"per_unit_pattern":[0,"/galUS"],"other":[0,"galUS"],"one":[0,"galUS"]},"mass_ounce":{"per_unit_pattern":[0,"/oz"],"other":[0,"oz"],"one":[0,"oz"]},"power_milliwatt":{"other":[0,"mW"],"one":[0,"mW"]},"energy_calorie":{"other":[0,"cal"],"one":[0,"cal"]},"length_light_year":{"other":[0,"ly"],"one":[0,"ly"]},"volume_deciliter":{"other":[0,"dl"],"one":[0,"dl"]},"consumption_mile_per_gallon_imperial":{"other":[0,"mpg"],"one":[0,"mpg"]},"pressure_pound_per_square_inch":{"other":[0,"psi"],"one":[0,"psi"]},"pressure_hectopascal":{"other":[0,"hPa"],"one":[0,"hPa"]},"length_furlong":{"other":[0,"fur"],"one":[0,"fur"]},"mass_pound":{"per_unit_pattern":[0,"/lb"],"other":[0,"lb"],"one":[0,"lb"]},"speed_mile_per_hour":{"other":[0,"mph"],"one":[0,"mph"]},"length_point":{"other":[0,"pt"],"one":[0,"pt"]},"acceleration_g_force":{"other":[0,"Gs"],"one":[0,"G"]},"mass_ounce_troy":{"other":[0,"oz t"],"one":[0,"oz t"]},"volume_hectoliter":{"other":[0,"hl"],"one":[0,"hl"]},"power_kilowatt":{"other":[0,"kW"],"one":[0,"kW"]},"concentr_milligram_per_deciliter":{"other":[0,"mg/dl"],"one":[0,"mg/dl"]},"consumption_mile_per_gallon":{"other":[0,"mpgUS"],"one":[0,"mpgUS"]},"digital_byte":{"other":[0,"B"],"one":[0,"B"]},"frequency_gigahertz":{"other":[0,"GHz"],"one":[0,"GHz"]},"length_mile":{"other":[0,"mi"],"one":[0,"mi"]},"energy_foodcalorie":{"other":[0,"Cal"],"one":[0,"Cal"]},"digital_gigabit":{"other":[0,"Gb"],"one":[0,"Gb"]},"area_acre":{"other":[0,"ac"],"one":[0,"ac"]},"length_yard":{"other":[0,"yd"],"one":[0,"yd"]}},"long":{"frequency_kilohertz":{"other":[0," kilohertz"],"one":[0," kilohertz"]},"length_kilometer":{"per_unit_pattern":[0," per kilometre"],"other":[0," kilometres"],"one":[0," kilometre"]},"volume_cubic_centimeter":{"per_unit_pattern":[0," per cubic centimetre"],"other":[0," cubic centimetres"],"one":[0," cubic centimetre"]},"mass_milligram":{"other":[0," milligrams"],"one":[0," milligram"]},"volume_teaspoon":{"other":[0," teaspoons"],"one":[0," teaspoon"]},"volume_cubic_meter":{"per_unit_pattern":[0," per cubic metre"],"other":[0," cubic metres"],"one":[0," cubic metre"]},"frequency_megahertz":{"other":[0," megahertz"],"one":[0," megahertz"]},"volume_cup":{"other":[0," cups"],"one":[0," cup"]},"volume_bushel":{"other":[0," bushels"],"one":[0," bushel"]},"frequency_hertz":{"other":[0," hertz"],"one":[0," hertz"]},"volume_cubic_foot":{"other":[0," cubic feet"],"one":[0," cubic foot"]},"length_mile_scandinavian":{"other":[0," miles-scandinavian"],"one":[0," mile-scandinavian"]},"volume_pint_metric":{"other":[0," metric pints"],"one":[0," metric pint"]},"volume_milliliter":{"other":[0," millilitres"],"one":[0," millilitre"]},"area_square_mile":{"per_unit_pattern":[0," per square mile"],"other":[0," square miles"],"one":[0," square mile"]},"volume_cubic_mile":{"other":[0," cubic miles"],"one":[0," cubic mile"]},"electric_milliampere":{"other":[0," milliamperes"],"one":[0," milliampere"]},"volume_cubic_yard":{"other":[0," cubic yards"],"one":[0," cubic yard"]},"power_gigawatt":{"other":[0," gigawatts"],"one":[0," gigawatt"]},"duration_day":{"per_unit_pattern":[0," per day"],"other":[0," days"],"one":[0," day"]},"duration_week":{"per_unit_pattern":[0," per week"],"other":[0," weeks"],"one":[0," week"]},"mass_kilogram":{"per_unit_pattern":[0," per kilogram"],"other":[0," kilograms"],"one":[0," kilogram"]},"volume_fluid_ounce":{"other":[0," fluid ounces"],"one":[0," fluid ounce"]},"angle_radian":{"other":[0," radians"],"one":[0," radian"]},"area_square_meter":{"per_unit_pattern":[0," per square metre"],"other":[0," square metres"],"one":[0," square metre"]},"concentr_karat":{"other":[0," carats"],"one":[0," carat"]},"length_parsec":{"other":[0," parsecs"],"one":[0," parsec"]},"duration_second":{"per_unit_pattern":[0," per second"],"other":[0," seconds"],"one":[0," second"]},"duration_microsecond":{"other":[0," microseconds"],"one":[0," microsecond"]},"pressure_millimeter_of_mercury":{"other":[0," millimetres of mercury"],"one":[0," millimetre of mercury"]},"length_nautical_mile":{"other":[0," nautical miles"],"one":[0," nautical mile"]},"speed_kilometer_per_hour":{"other":[0," kilometres per hour"],"one":[0," kilometre per hour"]},"area_square_foot":{"other":[0," square feet"],"one":[0," square foot"]},"concentr_part_per_million":{"other":[0," parts per million"],"one":[0," part per million"]},"length_foot":{"per_unit_pattern":[0," per foot"],"other":[0," feet"],"one":[0," foot"]},"volume_pint":{"other":[0," pints"],"one":[0," pint"]},"area_square_yard":{"other":[0," square yards"],"one":[0," square yard"]},"concentr_millimole_per_liter":{"other":[0," millimoles per litre"],"one":[0," millimole per litre"]},"power_watt":{"other":[0," watts"],"one":[0," watt"]},"duration_minute":{"per_unit_pattern":[0," per minute"],"other":[0," minutes"],"one":[0," minute"]},"duration_millisecond":{"other":[0," milliseconds"],"one":[0," millisecond"]},"mass_ton":{"other":[0," tons"],"one":[0," ton"]},"mass_microgram":{"other":[0," micrograms"],"one":[0," microgram"]},"power_horsepower":{"other":[0," horsepower"],"one":[0," horsepower"]},"length_decimeter":{"other":[0," decimetres"],"one":[0," decimetre"]},"volume_acre_foot":{"other":[0," acre-feet"],"one":[0," acre-foot"]},"speed_meter_per_second":{"other":[0," metres per second"],"one":[0," metre per second"]},"digital_kilobyte":{"other":[0," kilobytes"],"one":[0," kilobyte"]},"area_hectare":{"other":[0," hectares"],"one":[0," hectare"]},"digital_megabyte":{"other":[0," megabytes"],"one":[0," megabyte"]},"volume_liter":{"per_unit_pattern":[0," per litre"],"other":[0," litres"],"one":[0," litre"]},"angle_degree":{"other":[0," degrees"],"one":[0," degree"]},"volume_tablespoon":{"other":[0," tablespoons"],"one":[0," tablespoon"]},"consumption_liter_per_100kilometers":{"other":[0," litres per 100 kilometres"],"one":[0," litre per 100 kilometres"]},"length_inch":{"per_unit_pattern":[0," per inch"],"other":[0," inches"],"one":[0," inch"]},"volume_quart":{"other":[0," quarts"],"one":[0," quart"]},"electric_volt":{"other":[0," volts"],"one":[0," volt"]},"light_lux":{"other":[0," lux"],"one":[0," lux"]},"duration_century":{"other":[0," centuries"],"one":[0," century"]},"length_millimeter":{"other":[0," millimetres"],"one":[0," millimetre"]},"volume_cubic_inch":{"other":[0," cubic inches"],"one":[0," cubic inch"]},"length_picometer":{"other":[0," picometres"],"one":[0," picometre"]},"duration_hour":{"per_unit_pattern":[0," per hour"],"other":[0," hours"],"one":[0," hour"]},"energy_kilowatt_hour":{"other":[0," kilowatt-hours"],"one":[0," kilowatt hour"]},"temperature_fahrenheit":{"other":[0," degrees Fahrenheit"],"one":[0," degree Fahrenheit"]},"area_square_centimeter":{"per_unit_pattern":[0," per square centimetre"],"other":[0," square centimetres"],"one":[0," square centimetre"]},"pressure_inch_hg":{"other":[0," inches of mercury"],"one":[0," inch of mercury"]},"area_square_kilometer":{"per_unit_pattern":[0," per square kilometre"],"other":[0," square kilometres"],"one":[0," square kilometre"]},"digital_bit":{"other":[0," bits"],"one":[0," bit"]},"temperature_celsius":{"other":[0," degrees Celsius"],"one":[0," degree Celsius"]},"angle_arc_minute":{"other":[0," arcminutes"],"one":[0," arcminute"]},"duration_year":{"per_unit_pattern":[0," per year"],"other":[0," years"],"one":[0," year"]},"energy_kilocalorie":{"other":[0," kilocalories"],"one":[0," kilocalorie"]},"duration_month":{"per_unit_pattern":[0," per month"],"other":[0," months"],"one":[0," month"]},"power_megawatt":{"other":[0," megawatts"],"one":[0," megawatt"]},"length_meter":{"per_unit_pattern":[0," per metre"],"other":[0," metres"],"one":[0," metre"]},"pressure_millibar":{"other":[0," millibars"],"one":[0," millibar"]},"length_micrometer":{"other":[0," micrometres"],"one":[0," micrometre"]},"temperature_kelvin":{"other":[0," kelvin"],"one":[0," kelvin"]},"digital_terabyte":{"other":[0," terabytes"],"one":[0," terabyte"]},"length_astronomical_unit":{"other":[0," astronomical units"],"one":[0," astronomical unit"]},"coordinate_unit":{"west":[0," west"],"south":[0," south"],"north":[0," north"],"east":[0," east"]},"duration_nanosecond":{"other":[0," nanoseconds"],"one":[0," nanosecond"]},"energy_joule":{"other":[0," joules"],"one":[0," joule"]},"volume_megaliter":{"other":[0," megalitres"],"one":[0," megalitre"]},"volume_centiliter":{"other":[0," centilitres"],"one":[0," centilitre"]},"digital_gigabyte":{"other":[0," gigabytes"],"one":[0," gigabyte"]},"acceleration_meter_per_second_squared":{"other":[0," metres per second squared"],"one":[0," metre per second squared"]},"speed_knot":{"other":[0," knots"],"one":[0," knot"]},"digital_kilobit":{"other":[0," kilobits"],"one":[0," kilobit"]},"temperature_generic":{"other":[0,"°"]},"volume_cubic_kilometer":{"other":[0," cubic kilometres"],"one":[0," cubic kilometre"]},"digital_terabit":{"other":[0," terabits"],"one":[0," terabit"]},"mass_carat":{"other":[0," carats"],"one":[0," carat"]},"length_nanometer":{"other":[0," nanometres"],"one":[0," nanometre"]},"angle_revolution":{"other":[0," revolutions"],"one":[0," revolution"]},"electric_ampere":{"other":[0," amperes"],"one":[0," ampere"]},"area_square_inch":{"per_unit_pattern":[0," per square inch"],"other":[0," square inches"],"one":[0," square inch"]},"digital_megabit":{"other":[0," megabits"],"one":[0," megabit"]},"angle_arc_second":{"other":[0," arcseconds"],"one":[0," arcsecond"]},"volume_gallon_imperial":{"per_unit_pattern":[0," per gallon"],"other":[0," gallons"],"one":[0," gallon"]},"length_centimeter":{"per_unit_pattern":[0," per centimetre"],"other":[0," centimetres"],"one":[0," centimetre"]},"volume_cup_metric":{"other":[0," metric cups"],"one":[0," metric cup"]},"mass_metric_ton":{"other":[0," tonnes"],"one":[0," tonne"]},"energy_kilojoule":{"other":[0," kilojoules"],"one":[0," kilojoule"]},"electric_ohm":{"other":[0," ohms"],"one":[0," ohm"]},"mass_stone":{"other":[0," stone"],"one":[0," stone"]},"mass_gram":{"per_unit_pattern":[0," per gram"],"other":[0," grams"],"one":[0," gram"]},"per":{"compound_unit_pattern":[0," per ",1]},"consumption_liter_per_kilometer":{"other":[0," litres per kilometre"],"one":[0," litre per kilometre"]},"length_fathom":{"other":[0," fathoms"],"one":[0," fathom"]},"volume_gallon":{"per_unit_pattern":[0," per US gallon"],"other":[0," US gallons"],"one":[0," US gallon"]},"mass_ounce":{"per_unit_pattern":[0," per ounce"],"other":[0," ounces"],"one":[0," ounce"]},"power_milliwatt":{"other":[0," milliwatts"],"one":[0," milliwatt"]},"energy_calorie":{"other":[0," calories"],"one":[0," calorie"]},"length_light_year":{"other":[0," light years"],"one":[0," light year"]},"volume_deciliter":{"other":[0," decilitres"],"one":[0," decilitre"]},"consumption_mile_per_gallon_imperial":{"other":[0," miles per gallon"],"one":[0," mile per gallon"]},"pressure_pound_per_square_inch":{"other":[0," pounds per square inch"],"one":[0," pound per square inch"]},"pressure_hectopascal":{"other":[0," hectopascals"],"one":[0," hectopascal"]},"length_furlong":{"other":[0," furlongs"],"one":[0," furlong"]},"mass_pound":{"per_unit_pattern":[0," per pound"],"other":[0," pounds"],"one":[0," pound"]},"speed_mile_per_hour":{"other":[0," miles per hour"],"one":[0," mile per hour"]},"length_point":{"other":[0," points"],"one":[0," point"]},"acceleration_g_force":{"other":[0," g-force"],"one":[0," g-force"]},"mass_ounce_troy":{"other":[0," troy ounces"],"one":[0," troy ounce"]},"volume_hectoliter":{"other":[0," hectolitres"],"one":[0," hectolitre"]},"power_kilowatt":{"other":[0," kilowatts"],"one":[0," kilowatt"]},"concentr_milligram_per_deciliter":{"other":[0," milligrams per decilitre"],"one":[0," milligram per decilitre"]},"consumption_mile_per_gallon":{"other":[0," miles per US gallon"],"one":[0," mile per US gallon"]},"digital_byte":{"other":[0," bytes"],"one":[0," byte"]},"frequency_gigahertz":{"other":[0," gigahertz"],"one":[0," gigahertz"]},"length_mile":{"other":[0," miles"],"one":[0," mile"]},"energy_foodcalorie":{"other":[0," Calories"],"one":[0," Calorie"]},"digital_gigabit":{"other":[0," gigabits"],"one":[0," gigabit"]},"area_acre":{"other":[0," acres"],"one":[0," acre"]},"length_yard":{"other":[0," yards"],"one":[0," yard"]}}},"territories":{"SK":{"standard":"Slovakia"},"VG":{"standard":"British Virgin Islands"},"BS":{"standard":"Bahamas"},"US":{"standard":"United States","short":"US"},"NI":{"standard":"Nicaragua"},"AS":{"standard":"American Samoa"},"054":{"standard":"Melanesia"},"NL":{"standard":"Netherlands"},"QA":{"standard":"Qatar"},"AO":{"standard":"Angola"},"MR":{"standard":"Mauritania"},"029":{"standard":"Caribbean"},"ER":{"standard":"Eritrea"},"CY":{"standard":"Cyprus"},"PT":{"standard":"Portugal"},"AD":{"standard":"Andorra"},"SY":{"standard":"Syria"},"GH":{"standard":"Ghana"},"GY":{"standard":"Guyana"},"ZW":{"standard":"Zimbabwe"},"TN":{"standard":"Tunisia"},"LB":{"standard":"Lebanon"},"SN":{"standard":"Senegal"},"LY":{"standard":"Libya"},"BZ":{"standard":"Belize"},"IM":{"standard":"Isle of Man"},"CK":{"standard":"Cook Islands"},"KN":{"standard":"St. Kitts & Nevis"},"BN":{"standard":"Brunei"},"MS":{"standard":"Montserrat"},"MZ":{"standard":"Mozambique"},"RW":{"standard":"Rwanda"},"SI":{"standard":"Slovenia"},"SS":{"standard":"South Sudan"},"ZM":{"standard":"Zambia"},"CW":{"standard":"Curaçao"},"CN":{"standard":"China"},"150":{"standard":"Europe"},"SO":{"standard":"Somalia"},"013":{"standard":"Central America"},"NO":{"standard":"Norway"},"HU":{"standard":"Hungary"},"CI":{"variant":"Ivory Coast","standard":"Côte d’Ivoire"},"PS":{"standard":"Palestinian Territories","short":"Palestine"},"003":{"standard":"North America"},"FR":{"standard":"France"},"DZ":{"standard":"Algeria"},"CV":{"standard":"Cape Verde"},"CO":{"standard":"Colombia"},"NF":{"standard":"Norfolk Island"},"VE":{"standard":"Venezuela"},"MA":{"standard":"Morocco"},"TF":{"standard":"French Southern Territories"},"AX":{"standard":"Åland Islands"},"TD":{"standard":"Chad"},"UA":{"standard":"Ukraine"},"CU":{"standard":"Cuba"},"LT":{"standard":"Lithuania"},"GU":{"standard":"Guam"},"JE":{"standard":"Jersey"},"KE":{"standard":"Kenya"},"SH":{"standard":"St. Helena"},"NZ":{"standard":"New Zealand"},"021":{"standard":"Northern America"},"MD":{"standard":"Moldova"},"TW":{"standard":"Taiwan"},"TJ":{"standard":"Tajikistan"},"CC":{"standard":"Cocos (Keeling) Islands"},"AT":{"standard":"Austria"},"PR":{"standard":"Puerto Rico"},"LR":{"standard":"Liberia"},"KI":{"standard":"Kiribati"},"FK":{"variant":"Falkland Islands (Islas Malvinas)","standard":"Falkland Islands"},"AR":{"standard":"Argentina"},"SM":{"standard":"San Marino"},"ES":{"standard":"Spain"},"RU":{"standard":"Russia"},"IR":{"standard":"Iran"},"GN":{"standard":"Guinea"},"TM":{"standard":"Turkmenistan"},"BE":{"standard":"Belgium"},"EE":{"standard":"Estonia"},"NR":{"standard":"Nauru"},"MX":{"standard":"Mexico"},"IL":{"standard":"Israel"},"017":{"standard":"Middle Africa"},"DM":{"standard":"Dominica"},"BT":{"standard":"Bhutan"},"HT":{"standard":"Haiti"},"LI":{"standard":"Liechtenstein"},"PH":{"standard":"Philippines"},"CH":{"standard":"Switzerland"},"IQ":{"standard":"Iraq"},"ET":{"standard":"Ethiopia"},"GG":{"standard":"Guernsey"},"AI":{"standard":"Anguilla"},"AW":{"standard":"Aruba"},"CD":{"variant":"Congo (DRC)","standard":"Congo - Kinshasa"},"NC":{"standard":"New Caledonia"},"151":{"standard":"Eastern Europe"},"GS":{"standard":"South Georgia & South Sandwich Islands"},"MC":{"standard":"Monaco"},"DK":{"standard":"Denmark"},"ST":{"standard":"São Tomé & Príncipe"},"CF":{"standard":"Central African Republic"},"TK":{"standard":"Tokelau"},"MW":{"standard":"Malawi"},"039":{"standard":"Southern Europe"},"UN":{"standard":"United Nations","short":"UN"},"002":{"standard":"Africa"},"SG":{"standard":"Singapore"},"TO":{"standard":"Tonga"},"XK":{"standard":"Kosovo"},"MG":{"standard":"Madagascar"},"SJ":{"standard":"Svalbard & Jan Mayen"},"LA":{"standard":"Laos"},"NU":{"standard":"Niue"},"BY":{"standard":"Belarus"},"EC":{"standard":"Ecuador"},"145":{"standard":"Western Asia"},"HM":{"standard":"Heard & McDonald Islands"},"KZ":{"standard":"Kazakhstan"},"TH":{"standard":"Thailand"},"GL":{"standard":"Greenland"},"GD":{"standard":"Grenada"},"FM":{"standard":"Micronesia"},"BQ":{"standard":"Caribbean Netherlands"},"IO":{"standard":"British Indian Ocean Territory"},"PY":{"standard":"Paraguay"},"MF":{"standard":"St. Martin"},"BM":{"standard":"Bermuda"},"PF":{"standard":"French Polynesia"},"IT":{"standard":"Italy"},"KG":{"standard":"Kyrgyzstan"},"155":{"standard":"Western Europe"},"009":{"standard":"Oceania"},"DO":{"standard":"Dominican Republic"},"VU":{"standard":"Vanuatu"},"JM":{"standard":"Jamaica"},"PE":{"standard":"Peru"},"061":{"standard":"Polynesia"},"DE":{"standard":"Germany"},"LV":{"standard":"Latvia"},"MV":{"standard":"Maldives"},"034":{"standard":"Southern Asia"},"JP":{"standard":"Japan"},"GF":{"standard":"French Guiana"},"CA":{"standard":"Canada"},"OM":{"standard":"Oman"},"BA":{"standard":"Bosnia & Herzegovina","short":"Bosnia"},"KP":{"standard":"North Korea"},"PM":{"standard":"St. Pierre & Miquelon"},"TT":{"standard":"Trinidad & Tobago"},"MT":{"standard":"Malta"},"SZ":{"standard":"Swaziland"},"005":{"standard":"South America"},"GE":{"standard":"Georgia"},"SB":{"standard":"Solomon Islands"},"001":{"standard":"World"},"QO":{"standard":"Outlying Oceania"},"SX":{"standard":"Sint Maarten"},"LK":{"standard":"Sri Lanka"},"NA":{"standard":"Namibia"},"CM":{"standard":"Cameroon"},"BG":{"standard":"Bulgaria"},"154":{"standard":"Northern Europe"},"053":{"standard":"Australasia"},"RS":{"standard":"Serbia"},"ML":{"standard":"Mali"},"PG":{"standard":"Papua New Guinea"},"BI":{"standard":"Burundi"},"ID":{"standard":"Indonesia"},"NE":{"standard":"Niger"},"LS":{"standard":"Lesotho"},"PA":{"standard":"Panama"},"SE":{"standard":"Sweden"},"TL":{"variant":"East Timor","standard":"Timor-Leste"},"SC":{"standard":"Seychelles"},"030":{"standard":"Eastern Asia"},"MY":{"standard":"Malaysia"},"AZ":{"standard":"Azerbaijan"},"YT":{"standard":"Mayotte"},"BF":{"standard":"Burkina Faso"},"FO":{"standard":"Faroe Islands"},"018":{"standard":"Southern Africa"},"BD":{"standard":"Bangladesh"},"AQ":{"standard":"Antarctica"},"VN":{"standard":"Vietnam"},"SD":{"standard":"Sudan"},"AM":{"standard":"Armenia"},"WF":{"standard":"Wallis & Futuna"},"BB":{"standard":"Barbados"},"DG":{"standard":"Diego Garcia"},"WS":{"standard":"Samoa"},"BH":{"standard":"Bahrain"},"MP":{"standard":"Northern Mariana Islands"},"KR":{"standard":"South Korea"},"JO":{"standard":"Jordan"},"019":{"standard":"Americas"},"IC":{"standard":"Canary Islands"},"GA":{"standard":"Gabon"},"SR":{"standard":"Suriname"},"KM":{"standard":"Comoros"},"GR":{"standard":"Greece"},"DJ":{"standard":"Djibouti"},"ZA":{"standard":"South Africa"},"PW":{"standard":"Palau"},"RE":{"standard":"Réunion"},"AG":{"standard":"Antigua & Barbuda"},"MU":{"standard":"Mauritius"},"PN":{"standard":"Pitcairn Islands"},"IN":{"standard":"India"},"143":{"standard":"Central Asia"},"ZZ":{"standard":"Unknown Region"},"BV":{"standard":"Bouvet Island"},"SV":{"standard":"El Salvador"},"UG":{"standard":"Uganda"},"057":{"standard":"Micronesian Region"},"011":{"standard":"Western Africa"},"YE":{"standard":"Yemen"},"GT":{"standard":"Guatemala"},"CZ":{"variant":"Czech Republic","standard":"Czechia"},"NG":{"standard":"Nigeria"},"PK":{"standard":"Pakistan"},"202":{"standard":"Sub-Saharan Africa"},"MO":{"standard":"Macau SAR China","short":"Macau"},"CR":{"standard":"Costa Rica"},"SL":{"standard":"Sierra Leone"},"CL":{"standard":"Chile"},"TA":{"standard":"Tristan da Cunha"},"AC":{"standard":"Ascension Island"},"BO":{"standard":"Bolivia"},"NP":{"standard":"Nepal"},"EU":{"standard":"European Union"},"FI":{"standard":"Finland"},"EG":{"standard":"Egypt"},"014":{"standard":"Eastern Africa"},"BJ":{"standard":"Benin"},"TV":{"standard":"Tuvalu"},"VI":{"standard":"U.S. Virgin Islands"},"UY":{"standard":"Uruguay"},"TR":{"standard":"Turkey"},"TC":{"standard":"Turks & Caicos Islands"},"RO":{"standard":"Romania"},"CG":{"variant":"Congo (Republic)","standard":"Congo - Brazzaville"},"VC":{"standard":"St. Vincent & Grenadines"},"TG":{"standard":"Togo"},"PL":{"standard":"Poland"},"CP":{"standard":"Clipperton Island"},"BR":{"standard":"Brazil"},"AU":{"standard":"Australia"},"LC":{"standard":"St. Lucia"},"GI":{"standard":"Gibraltar"},"AE":{"standard":"United Arab Emirates"},"KW":{"standard":"Kuwait"},"EH":{"standard":"Western Sahara"},"CX":{"standard":"Christmas Island"},"SA":{"standard":"Saudi Arabia"},"GW":{"standard":"Guinea-Bissau"},"GM":{"standard":"Gambia"},"AF":{"standard":"Afghanistan"},"HN":{"standard":"Honduras"},"EA":{"standard":"Ceuta & Melilla"},"MN":{"standard":"Mongolia"},"GP":{"standard":"Guadeloupe"},"VA":{"standard":"Vatican City"},"MH":{"standard":"Marshall Islands"},"FJ":{"standard":"Fiji"},"IE":{"standard":"Ireland"},"BL":{"standard":"St. Barthélemy"},"KY":{"standard":"Cayman Islands"},"LU":{"standard":"Luxembourg"},"035":{"standard":"Southeast Asia"},"MQ":{"standard":"Martinique"},"BW":{"standard":"Botswana"},"AL":{"standard":"Albania"},"UZ":{"standard":"Uzbekistan"},"KH":{"standard":"Cambodia"},"GB":{"standard":"United Kingdom","short":"UK"},"MM":{"standard":"Myanmar (Burma)","short":"Myanmar"},"IS":{"standard":"Iceland"},"142":{"standard":"Asia"},"EZ":{"standard":"Eurozone"},"HK":{"standard":"Hong Kong SAR China","short":"Hong Kong"},"TZ":{"standard":"Tanzania"},"015":{"standard":"Northern Africa"},"MK":{"variant":"Macedonia (FYROM)","standard":"Macedonia"},"ME":{"standard":"Montenegro"},"GQ":{"standard":"Equatorial Guinea"},"UM":{"standard":"U.S. Outlying Islands"},"419":{"standard":"Latin America"},"HR":{"standard":"Croatia"}},"rbnf":{},"number_systems":{"native":"latn","default":"latn"},"number_symbols":{"latn":{"time_separator":":","superscripting_exponent":"×","plus_sign":"+","percent_sign":"%","per_mille":"‰","nan":"NaN","minus_sign":"-","list":";","infinity":"∞","group":",","exponential":"E","decimal":"."}},"number_formats":{"latn":{"standard":"#,##0.###","scientific":"#E0","percent":"#,##0%","decimal_short":[[1000,{"other":["0K",1],"one":["0K",1]}],[10000,{"other":["00K",2],"one":["00K",2]}],[100000,{"other":["000K",3],"one":["000K",3]}],[1000000,{"other":["0M",1],"one":["0M",1]}],[10000000,{"other":["00M",2],"one":["00M",2]}],[100000000,{"other":["000M",3],"one":["000M",3]}],[1000000000,{"other":["0B",1],"one":["0B",1]}],[10000000000,{"other":["00B",2],"one":["00B",2]}],[100000000000,{"other":["000B",3],"one":["000B",3]}],[1000000000000,{"other":["0T",1],"one":["0T",1]}],[10000000000000,{"other":["00T",2],"one":["00T",2]}],[100000000000000,{"other":["000T",3],"one":["000T",3]}]],"decimal_long":[[1000,{"other":["0 thousand",1],"one":["0 thousand",1]}],[10000,{"other":["00 thousand",2],"one":["00 thousand",2]}],[100000,{"other":["000 thousand",3],"one":["000 thousand",3]}],[1000000,{"other":["0 million",1],"one":["0 million",1]}],[10000000,{"other":["00 million",2],"one":["00 million",2]}],[100000000,{"other":["000 million",3],"one":["000 million",3]}],[1000000000,{"other":["0 billion",1],"one":["0 billion",1]}],[10000000000,{"other":["00 billion",2],"one":["00 billion",2]}],[100000000000,{"other":["000 billion",3],"one":["000 billion",3]}],[1000000000000,{"other":["0 trillion",1],"one":["0 trillion",1]}],[10000000000000,{"other":["00 trillion",2],"one":["00 trillion",2]}],[100000000000000,{"other":["000 trillion",3],"one":["000 trillion",3]}]],"currency_spacing":{"before_currency":{"surrounding_match":"[:digit:]","insert_between":" ","currency_match":"[:^S:]"},"after_currency":{"surrounding_match":"[:digit:]","insert_between":" ","currency_match":"[:^S:]"}},"currency_short":[[1000,{"other":["¤0K",1],"one":["¤0K",1]}],[10000,{"other":["¤00K",2],"one":["¤00K",2]}],[100000,{"other":["¤000K",3],"one":["¤000K",3]}],[1000000,{"other":["¤0M",1],"one":["¤0M",1]}],[10000000,{"other":["¤00M",2],"one":["¤00M",2]}],[100000000,{"other":["¤000M",3],"one":["¤000M",3]}],[1000000000,{"other":["¤0B",1],"one":["¤0B",1]}],[10000000000,{"other":["¤00B",2],"one":["¤00B",2]}],[100000000000,{"other":["¤000B",3],"one":["¤000B",3]}],[1000000000000,{"other":["¤0T",1],"one":["¤0T",1]}],[10000000000000,{"other":["¤00T",2],"one":["¤00T",2]}],[100000000000000,{"other":["¤000T",3],"one":["¤000T",3]}]],"currency_long":{"other":[0," ",1],"one":[0," ",1]},"currency":"¤#,##0.00","accounting":"¤#,##0.00;(¤#,##0.00)"}},"minimum_grouping_digits":1,"list_formats":{"unit_short":{"start":[0,", ",1],"middle":[0,", ",1],"end":[0,", ",1],"2":[0,", ",1]},"unit_narrow":{"start":[0," ",1],"middle":[0," ",1],"end":[0," ",1],"2":[0," ",1]},"unit":{"start":[0,", ",1],"middle":[0,", ",1],"end":[0,", ",1],"2":[0,", ",1]},"standard_short":{"start":[0,", ",1],"middle":[0,", ",1],"end":[0,", and ",1],"2":[0," and ",1]},"standard":{"start":[0,", ",1],"middle":[0,", ",1],"end":[0,", and ",1],"2":[0," and ",1]},"or":{"start":[0,", ",1],"middle":[0,", ",1],"end":[0,", or ",1],"2":[0," or ",1]}},"languages":{"ebu":{"standard":"Embu"},"ks":{"standard":"Kashmiri"},"zgh":{"standard":"Standard Moroccan Tamazight"},"gez":{"standard":"Geez"},"as":{"standard":"Assamese"},"mag":{"standard":"Magahi"},"bfq":{"standard":"Badaga"},"kok":{"standard":"Konkani"},"sms":{"standard":"Skolt Sami"},"loz":{"standard":"Lozi"},"kcg":{"standard":"Tyap"},"akk":{"standard":"Akkadian"},"is":{"standard":"Icelandic"},"zbl":{"standard":"Blissymbols"},"hy":{"standard":"Armenian"},"zen":{"standard":"Zenaga"},"kg":{"standard":"Kongo"},"osa":{"standard":"Osage"},"mga":{"standard":"Middle Irish"},"rue":{"standard":"Rusyn"},"av":{"standard":"Avaric"},"sdc":{"standard":"Sassarese Sardinian"},"eka":{"standard":"Ekajuk"},"lah":{"standard":"Lahnda"},"ae":{"standard":"Avestan"},"srn":{"standard":"Sranan Tongo"},"yrl":{"standard":"Nheengatu"},"hr":{"standard":"Croatian"},"lt":{"standard":"Lithuanian"},"krc":{"standard":"Karachay-Balkar"},"mul":{"standard":"Multiple languages"},"del":{"standard":"Delaware"},"srr":{"standard":"Serer"},"eu":{"standard":"Basque"},"chr":{"standard":"Cherokee"},"mi":{"standard":"Maori"},"ter":{"standard":"Tereno"},"su":{"standard":"Sundanese"},"mr":{"standard":"Marathi"},"ho":{"standard":"Hiri Motu"},"ay":{"standard":"Aymara"},"hif":{"standard":"Fiji Hindi"},"gl":{"standard":"Galician"},"zun":{"standard":"Zuni"},"crs":{"standard":"Seselwa Creole French"},"pag":{"standard":"Pangasinan"},"vo":{"standard":"Volapük"},"fa":{"standard":"Persian"},"kv":{"standard":"Komi"},"fur":{"standard":"Friulian"},"enm":{"standard":"Middle English"},"te":{"standard":"Telugu"},"lag":{"standard":"Langi"},"xal":{"standard":"Kalmyk"},"ie":{"standard":"Interlingue"},"sly":{"standard":"Selayar"},"sm":{"standard":"Samoan"},"glk":{"standard":"Gilaki"},"mrj":{"standard":"Western Mari"},"lol":{"standard":"Mongo"},"bfd":{"standard":"Bafut"},"oc":{"standard":"Occitan"},"chm":{"standard":"Mari"},"fil":{"standard":"Filipino"},"saq":{"standard":"Samburu"},"guc":{"standard":"Wayuu"},"gmh":{"standard":"Middle High German"},"teo":{"standard":"Teso"},"en-AU":{"standard":"Australian English"},"saz":{"standard":"Saurashtra"},"ka":{"standard":"Georgian"},"lui":{"standard":"Luiseno"},"ar-001":{"standard":"Modern Standard Arabic"},"pt-PT":{"standard":"European Portuguese"},"et":{"standard":"Estonian"},"sga":{"standard":"Old Irish"},"snk":{"standard":"Soninke"},"rom":{"standard":"Romany"},"chn":{"standard":"Chinook Jargon"},"zza":{"standard":"Zaza"},"kea":{"standard":"Kabuverdianu"},"lkt":{"standard":"Lakota"},"chk":{"standard":"Chuukese"},"myv":{"standard":"Erzya"},"min":{"standard":"Minangkabau"},"ru":{"standard":"Russian"},"ia":{"standard":"Interlingua"},"kos":{"standard":"Kosraean"},"bum":{"standard":"Bulu"},"shi":{"standard":"Tachelhit"},"awa":{"standard":"Awadhi"},"mzn":{"standard":"Mazanderani"},"got":{"standard":"Gothic"},"arw":{"standard":"Arawak"},"li":{"standard":"Limburgish"},"sw":{"standard":"Swahili"},"raj":{"standard":"Rajasthani"},"fj":{"standard":"Fijian"},"fon":{"standard":"Fon"},"sc":{"standard":"Sardinian"},"scn":{"standard":"Sicilian"},"ltg":{"standard":"Latgalian"},"af":{"standard":"Afrikaans"},"bin":{"standard":"Bini"},"jgo":{"standard":"Ngomba"},"asa":{"standard":"Asu"},"naq":{"standard":"Nama"},"sid":{"standard":"Sidamo"},"bm":{"standard":"Bambara"},"xog":{"standard":"Soga"},"din":{"standard":"Dinka"},"cps":{"standard":"Capiznon"},"mdf":{"standard":"Moksha"},"rwk":{"standard":"Rwa"},"ii":{"standard":"Sichuan Yi"},"grc":{"standard":"Ancient Greek"},"fr-CH":{"standard":"Swiss French"},"en-US":{"standard":"American English"},"ti":{"standard":"Tigrinya"},"zap":{"standard":"Zapotec"},"fat":{"standard":"Fanti"},"ext":{"standard":"Extremaduran"},"wa":{"standard":"Walloon"},"kpe":{"standard":"Kpelle"},"wuu":{"standard":"Wu Chinese"},"tsi":{"standard":"Tsimshian"},"phn":{"standard":"Phoenician"},"hsb":{"standard":"Upper Sorbian"},"bug":{"standard":"Buginese"},"ch":{"standard":"Chamorro"},"ca":{"standard":"Catalan"},"sv":{"standard":"Swedish"},"ksh":{"standard":"Colognian"},"tum":{"standard":"Tumbuka"},"yi":{"standard":"Yiddish"},"fi":{"standard":"Finnish"},"cch":{"standard":"Atsam"},"szl":{"standard":"Silesian"},"dv":{"standard":"Divehi"},"lam":{"standard":"Lamba"},"kaj":{"standard":"Jju"},"ab":{"standard":"Abkhazian"},"fit":{"standard":"Tornedalen Finnish"},"ssy":{"standard":"Saho"},"gv":{"standard":"Manx"},"rar":{"standard":"Rarotongan"},"luy":{"standard":"Luyia"},"mnc":{"standard":"Manchu"},"vmf":{"standard":"Main-Franconian"},"umb":{"standard":"Umbundu"},"tkr":{"standard":"Tsakhur"},"mde":{"standard":"Maba"},"vot":{"standard":"Votic"},"tig":{"standard":"Tigre"},"bo":{"standard":"Tibetan"},"tet":{"standard":"Tetum"},"nus":{"standard":"Nuer"},"pam":{"standard":"Pampanga"},"chg":{"standard":"Chagatai"},"ms":{"standard":"Malay"},"kk":{"standard":"Kazakh"},"aln":{"standard":"Gheg Albanian"},"jv":{"standard":"Javanese"},"suk":{"standard":"Sukuma"},"om":{"standard":"Oromo"},"trv":{"standard":"Taroko"},"arz":{"standard":"Egyptian Arabic"},"pms":{"standard":"Piedmontese"},"ky":{"variant":"Kirghiz","standard":"Kyrgyz"},"mus":{"standard":"Creek"},"pdc":{"standard":"Pennsylvania German"},"mt":{"standard":"Maltese"},"st":{"standard":"Southern Sotho"},"mwr":{"standard":"Marwari"},"rap":{"standard":"Rapanui"},"bg":{"standard":"Bulgarian"},"new":{"standard":"Newari"},"cay":{"standard":"Cayuga"},"bik":{"standard":"Bikol"},"agq":{"standard":"Aghem"},"de":{"standard":"German"},"bqi":{"standard":"Bakhtiari"},"ksf":{"standard":"Bafia"},"zh":{"standard":"Chinese","long":"Mandarin Chinese"},"ary":{"standard":"Moroccan Arabic"},"dsb":{"standard":"Lower Sorbian"},"frr":{"standard":"Northern Frisian"},"tn":{"standard":"Tswana"},"nr":{"standard":"South Ndebele"},"cr":{"standard":"Cree"},"nov":{"standard":"Novial"},"ewo":{"standard":"Ewondo"},"lad":{"standard":"Ladino"},"nap":{"standard":"Neapolitan"},"lua":{"standard":"Luba-Lulua"},"pap":{"standard":"Papiamento"},"fr":{"standard":"French"},"gil":{"standard":"Gilbertese"},"gur":{"standard":"Frafra"},"rif":{"standard":"Riffian"},"khq":{"standard":"Koyra Chiini"},"rm":{"standard":"Romansh"},"pt":{"standard":"Portuguese"},"tly":{"standard":"Talysh"},"zxx":{"standard":"No linguistic content"},"sgs":{"standard":"Samogitian"},"mos":{"standard":"Mossi"},"nso":{"standard":"Northern Sotho"},"gn":{"standard":"Guarani"},"arn":{"standard":"Mapuche"},"io":{"standard":"Ido"},"rw":{"standard":"Kinyarwanda"},"tl":{"standard":"Tagalog"},"sdh":{"standard":"Southern Kurdish"},"br":{"standard":"Breton"},"cs":{"standard":"Czech"},"maf":{"standard":"Mafa"},"kgp":{"standard":"Kaingang"},"kum":{"standard":"Kumyk"},"dtp":{"standard":"Central Dusun"},"be":{"standard":"Belarusian"},"ar":{"standard":"Arabic"},"pt-BR":{"standard":"Brazilian Portuguese"},"ln":{"standard":"Lingala"},"bla":{"standard":"Siksika"},"crh":{"standard":"Crimean Turkish"},"smj":{"standard":"Lule Sami"},"bbc":{"standard":"Batak Toba"},"qu":{"standard":"Quechua"},"kj":{"standard":"Kuanyama"},"en-CA":{"standard":"Canadian English"},"fro":{"standard":"Old French"},"az":{"standard":"Azerbaijani","short":"Azeri"},"kut":{"standard":"Kutenai"},"nds-NL":{"standard":"Low Saxon"},"ase":{"standard":"American Sign Language"},"grb":{"standard":"Grebo"},"tw":{"standard":"Twi"},"si":{"standard":"Sinhala"},"se":{"standard":"Northern Sami"},"krl":{"standard":"Karelian"},"nb":{"standard":"Norwegian Bokmål"},"kmb":{"standard":"Kimbundu"},"sus":{"standard":"Susu"},"lzz":{"standard":"Laz"},"nyo":{"standard":"Nyoro"},"cho":{"standard":"Choctaw"},"sw-CD":{"standard":"Congo Swahili"},"smn":{"standard":"Inari Sami"},"tvl":{"standard":"Tuvalu"},"sr":{"standard":"Serbian"},"yao":{"standard":"Yao"},"or":{"standard":"Odia"},"ast":{"standard":"Asturian"},"uz":{"standard":"Uzbek"},"xmf":{"standard":"Mingrelian"},"was":{"standard":"Washo"},"dak":{"standard":"Dakota"},"xh":{"standard":"Xhosa"},"hup":{"standard":"Hupa"},"es-MX":{"standard":"Mexican Spanish"},"tem":{"standard":"Timne"},"bpy":{"standard":"Bishnupriya"},"dzg":{"standard":"Dazaga"},"avk":{"standard":"Kotava"},"pro":{"standard":"Old Provençal"},"bal":{"standard":"Baluchi"},"jmc":{"standard":"Machame"},"pon":{"standard":"Pohnpeian"},"ksb":{"standard":"Shambala"},"lu":{"standard":"Luba-Katanga"},"vro":{"standard":"Võro"},"pnt":{"standard":"Pontic"},"prg":{"standard":"Prussian"},"ba":{"standard":"Bashkir"},"izh":{"standard":"Ingrian"},"gba":{"standard":"Gbaya"},"tt":{"standard":"Tatar"},"luo":{"standard":"Luo"},"km":{"standard":"Khmer"},"dav":{"standard":"Taita"},"non":{"standard":"Old Norse"},"tsd":{"standard":"Tsakonian"},"vi":{"standard":"Vietnamese"},"shn":{"standard":"Shan"},"efi":{"standard":"Efik"},"arc":{"standard":"Aramaic"},"sn":{"standard":"Shona"},"goh":{"standard":"Old High German"},"mgo":{"standard":"Metaʼ"},"en-GB":{"standard":"British English"},"gan":{"standard":"Gan Chinese"},"tpi":{"standard":"Tok Pisin"},"zea":{"standard":"Zeelandic"},"stq":{"standard":"Saterland Frisian"},"co":{"standard":"Corsican"},"ur":{"standard":"Urdu"},"kl":{"standard":"Kalaallisut"},"ses":{"standard":"Koyraboro Senni"},"ak":{"standard":"Akan"},"nqo":{"standard":"N’Ko"},"bew":{"standard":"Betawi"},"ng":{"standard":"Ndonga"},"yue":{"standard":"Cantonese"},"anp":{"standard":"Angika"},"ada":{"standard":"Adangme"},"mak":{"standard":"Makasar"},"lmo":{"standard":"Lombard"},"sl":{"standard":"Slovenian"},"egl":{"standard":"Emilian"},"eo":{"standard":"Esperanto"},"mer":{"standard":"Meru"},"pdt":{"standard":"Plautdietsch"},"ale":{"standard":"Aleut"},"nyn":{"standard":"Nyankole"},"bez":{"standard":"Bena"},"kln":{"standard":"Kalenjin"},"dgr":{"standard":"Dogrib"},"nia":{"standard":"Nias"},"syc":{"standard":"Classical Syriac"},"th":{"standard":"Thai"},"ht":{"standard":"Haitian Creole"},"haw":{"standard":"Hawaiian"},"tg":{"standard":"Tajik"},"ace":{"standard":"Achinese"},"mwv":{"standard":"Mentawai"},"aeb":{"standard":"Tunisian Arabic"},"tli":{"standard":"Tlingit"},"bss":{"standard":"Akoose"},"kho":{"standard":"Khotanese"},"byv":{"standard":"Medumba"},"pl":{"standard":"Polish"},"tkl":{"standard":"Tokelau"},"wae":{"standard":"Walser"},"see":{"standard":"Seneca"},"lg":{"standard":"Ganda"},"wal":{"standard":"Wolaytta"},"kbd":{"standard":"Kabardian"},"tiv":{"standard":"Tiv"},"sam":{"standard":"Samaritan Aramaic"},"afh":{"standard":"Afrihili"},"lrc":{"standard":"Northern Luri"},"nl-BE":{"standard":"Flemish"},"an":{"standard":"Aragonese"},"bi":{"standard":"Bislama"},"nwc":{"standard":"Classical Newari"},"pal":{"standard":"Pahlavi"},"frp":{"standard":"Arpitan"},"mye":{"standard":"Myene"},"tyv":{"standard":"Tuvinian"},"ff":{"standard":"Fulah"},"cu":{"standard":"Church Slavic"},"ve":{"standard":"Venda"},"gom":{"standard":"Goan Konkani"},"he":{"standard":"Hebrew"},"lb":{"standard":"Luxembourgish"},"ko":{"standard":"Korean"},"ml":{"standard":"Malayalam"},"ars":{"standard":"Najdi Arabic"},"mai":{"standard":"Maithili"},"ccp":{"standard":"Chakma"},"jrb":{"standard":"Judeo-Arabic"},"car":{"standard":"Carib"},"yav":{"standard":"Yangben"},"pfl":{"standard":"Palatine German"},"rof":{"standard":"Rombo"},"akz":{"standard":"Alabama"},"ken":{"standard":"Kenyang"},"vai":{"standard":"Vai"},"gon":{"standard":"Gondi"},"hu":{"standard":"Hungarian"},"mg":{"standard":"Malagasy"},"fa-AF":{"standard":"Dari"},"uga":{"standard":"Ugaritic"},"uk":{"standard":"Ukrainian"},"tru":{"standard":"Turoyo"},"kaw":{"standard":"Kawi"},"man":{"standard":"Mandingo"},"dum":{"standard":"Middle Dutch"},"mas":{"standard":"Masai"},"ig":{"standard":"Igbo"},"bar":{"standard":"Bavarian"},"pi":{"standard":"Pali"},"doi":{"standard":"Dogri"},"iba":{"standard":"Iban"},"lzh":{"standard":"Literary Chinese"},"cad":{"standard":"Caddo"},"el":{"standard":"Greek"},"it":{"standard":"Italian"},"qug":{"standard":"Chimborazo Highland Quichua"},"moh":{"standard":"Mohawk"},"udm":{"standard":"Udmurt"},"ce":{"standard":"Chechen"},"kr":{"standard":"Kanuri"},"arp":{"standard":"Arapaho"},"oj":{"standard":"Ojibwa"},"kaa":{"standard":"Kara-Kalpak"},"sas":{"standard":"Sasak"},"sg":{"standard":"Sango"},"tcy":{"standard":"Tulu"},"mh":{"standard":"Marshallese"},"lij":{"standard":"Ligurian"},"koi":{"standard":"Komi-Permyak"},"ota":{"standard":"Ottoman Turkish"},"lun":{"standard":"Lunda"},"pcm":{"standard":"Nigerian Pidgin"},"dyu":{"standard":"Dyula"},"gsw":{"standard":"Swiss German"},"ug":{"variant":"Uighur","standard":"Uyghur"},"kac":{"standard":"Kachin"},"aro":{"standard":"Araona"},"gay":{"standard":"Gayo"},"kru":{"standard":"Kurukh"},"sd":{"standard":"Sindhi"},"zu":{"standard":"Zulu"},"ja":{"standard":"Japanese"},"fr-CA":{"standard":"Canadian French"},"bej":{"standard":"Beja"},"den":{"standard":"Slave"},"sa":{"standard":"Sanskrit"},"hmn":{"standard":"Hmong"},"sel":{"standard":"Selkup"},"root":{"standard":"Root"},"hit":{"standard":"Hittite"},"seh":{"standard":"Sena"},"bra":{"standard":"Braj"},"ss":{"standard":"Swati"},"hz":{"standard":"Herero"},"hil":{"standard":"Hiligaynon"},"sei":{"standard":"Seri"},"os":{"standard":"Ossetic"},"kri":{"standard":"Krio"},"lus":{"standard":"Mizo"},"na":{"standard":"Nauru"},"tmh":{"standard":"Tamashek"},"dar":{"standard":"Dargwa"},"jut":{"standard":"Jutish"},"elx":{"standard":"Elamite"},"fy":{"standard":"Western Frisian"},"bem":{"standard":"Bemba"},"zh-Hans":{"standard":"Simplified Chinese"},"jpr":{"standard":"Judeo-Persian"},"brx":{"standard":"Bodo"},"esu":{"standard":"Central Yupik"},"gbz":{"standard":"Zoroastrian Dari"},"jam":{"standard":"Jamaican Creole English"},"wo":{"standard":"Wolof"},"mwl":{"standard":"Mirandese"},"ban":{"standard":"Balinese"},"en-U-S":{"short":"US English"},"tlh":{"standard":"Klingon"},"bjn":{"standard":"Banjar"},"vun":{"standard":"Vunjo"},"fan":{"standard":"Fang"},"gaa":{"standard":"Ga"},"shu":{"standard":"Chadian Arabic"},"nzi":{"standard":"Nzima"},"bn":{"standard":"Bangla"},"mfe":{"standard":"Morisyen"},"chp":{"standard":"Chipewyan"},"rn":{"standard":"Rundi"},"ee":{"standard":"Ewe"},"sbp":{"standard":"Sangu"},"mad":{"standard":"Madurese"},"mgh":{"standard":"Makhuwa-Meetto"},"ady":{"standard":"Adyghe"},"sah":{"standard":"Sakha"},"bas":{"standard":"Basaa"},"syr":{"standard":"Syriac"},"ain":{"standard":"Ainu"},"ts":{"standard":"Tsonga"},"sat":{"standard":"Santali"},"en-G-B":{"short":"UK English"},"ki":{"standard":"Kikuyu"},"de-AT":{"standard":"Austrian German"},"sh":{"standard":"Serbo-Croatian"},"bho":{"standard":"Bhojpuri"},"khw":{"standard":"Khowar"},"kn":{"standard":"Kannada"},"sba":{"standard":"Ngambay"},"es-419":{"standard":"Latin American Spanish"},"dyo":{"standard":"Jola-Fonyi"},"njo":{"standard":"Ao Naga"},"dje":{"standard":"Zarma"},"bbj":{"standard":"Ghomala"},"gd":{"standard":"Scottish Gaelic"},"swb":{"standard":"Comorian"},"vls":{"standard":"West Flemish"},"rgn":{"standard":"Romagnol"},"yap":{"standard":"Yapese"},"lo":{"standard":"Lao"},"ttt":{"standard":"Muslim Tat"},"frs":{"standard":"Eastern Frisian"},"sog":{"standard":"Sogdien"},"rup":{"standard":"Aromanian"},"cop":{"standard":"Coptic"},"za":{"standard":"Zhuang"},"rug":{"standard":"Roviana"},"de-CH":{"standard":"Swiss High German"},"dua":{"standard":"Duala"},"niu":{"standard":"Niuean"},"liv":{"standard":"Livonian"},"guz":{"standard":"Gusii"},"lv":{"standard":"Latvian"},"kfo":{"standard":"Koro"},"cgg":{"standard":"Chiga"},"hai":{"standard":"Haida"},"kab":{"standard":"Kabyle"},"gwi":{"standard":"Gwichʼin"},"mua":{"standard":"Mundang"},"rtm":{"standard":"Rotuman"},"alt":{"standard":"Southern Altai"},"dz":{"standard":"Dzongkha"},"peo":{"standard":"Old Persian"},"nym":{"standard":"Nyamwezi"},"nl":{"standard":"Dutch"},"krj":{"standard":"Kinaray-a"},"vep":{"standard":"Veps"},"mic":{"standard":"Mi'kmaq"},"kam":{"standard":"Kamba"},"frm":{"standard":"Middle French"},"yo":{"standard":"Yoruba"},"kde":{"standard":"Makonde"},"sco":{"standard":"Scots"},"tr":{"standard":"Turkish"},"tk":{"standard":"Turkmen"},"cy":{"standard":"Welsh"},"cv":{"standard":"Chuvash"},"nmg":{"standard":"Kwasio"},"nv":{"standard":"Navajo"},"ibb":{"standard":"Ibibio"},"id":{"standard":"Indonesian"},"fo":{"standard":"Faroese"},"ps":{"variant":"Pushto","standard":"Pashto"},"bua":{"standard":"Buriat"},"da":{"standard":"Danish"},"ro-MD":{"standard":"Moldavian"},"ceb":{"standard":"Cebuano"},"ybb":{"standard":"Yemba"},"kkj":{"standard":"Kako"},"csb":{"standard":"Kashubian"},"kha":{"standard":"Khasi"},"gor":{"standard":"Gorontalo"},"nd":{"standard":"North Ndebele"},"inh":{"standard":"Ingush"},"ga":{"standard":"Irish"},"byn":{"standard":"Blin"},"quc":{"standard":"Kʼicheʼ"},"iu":{"standard":"Inuktitut"},"ilo":{"standard":"Iloko"},"chb":{"standard":"Chibcha"},"twq":{"standard":"Tasawaq"},"no":{"standard":"Norwegian"},"mdr":{"standard":"Mandar"},"sq":{"standard":"Albanian"},"nog":{"standard":"Nogai"},"tog":{"standard":"Nyasa Tonga"},"nan":{"standard":"Min Nan Chinese"},"arq":{"standard":"Algerian Arabic"},"jbo":{"standard":"Lojban"},"kbl":{"standard":"Kanembu"},"gu":{"standard":"Gujarati"},"bax":{"standard":"Bamun"},"mn":{"standard":"Mongolian"},"lfn":{"standard":"Lingua Franca Nova"},"sk":{"standard":"Slovak"},"am":{"standard":"Amharic"},"ha":{"standard":"Hausa"},"ang":{"standard":"Old English"},"tzm":{"standard":"Central Atlas Tamazight"},"ik":{"standard":"Inupiaq"},"lez":{"standard":"Lezghian"},"to":{"standard":"Tongan"},"ach":{"standard":"Acoli"},"lou":{"standard":"Louisiana Creole"},"en":{"standard":"English"},"pau":{"standard":"Palauan"},"frc":{"standard":"Cajun French"},"es-ES":{"standard":"European Spanish"},"hsn":{"standard":"Xiang Chinese"},"ne":{"standard":"Nepali"},"bs":{"standard":"Bosnian"},"mk":{"standard":"Macedonian"},"wbp":{"standard":"Warlpiri"},"ty":{"standard":"Tahitian"},"zh-Hant":{"standard":"Traditional Chinese"},"bgn":{"standard":"Western Balochi"},"bkm":{"standard":"Kom"},"und":{"standard":"Unknown language"},"ku":{"standard":"Kurdish"},"ckb":{"standard":"Central Kurdish"},"kiu":{"standard":"Kirmanjki"},"gag":{"standard":"Gagauz"},"sli":{"standard":"Lower Silesian"},"sad":{"standard":"Sandawe"},"my":{"variant":"Myanmar Language","standard":"Burmese"},"so":{"standard":"Somali"},"hak":{"standard":"Hakka Chinese"},"war":{"standard":"Waray"},"sux":{"standard":"Sumerian"},"chy":{"standard":"Cheyenne"},"es":{"standard":"Spanish"},"men":{"standard":"Mende"},"vec":{"standard":"Venetian"},"ta":{"standard":"Tamil"},"hi":{"standard":"Hindi"},"la":{"standard":"Latin"},"pcd":{"standard":"Picard"},"aa":{"standard":"Afar"},"mni":{"standard":"Manipuri"},"ro":{"standard":"Romanian"},"pa":{"standard":"Punjabi"},"brh":{"standard":"Brahui"},"nn":{"standard":"Norwegian Nynorsk"},"egy":{"standard":"Ancient Egyptian"},"nds":{"standard":"Low German"},"nnh":{"standard":"Ngiemboon"},"ny":{"standard":"Nyanja"},"kw":{"standard":"Cornish"},"sma":{"standard":"Southern Sami"}},"dates":{"time_zone_names":{"zone":{"pacific":{"rarotonga":{"exemplar_city":"Rarotonga"},"bougainville":{"exemplar_city":"Bougainville"},"pago_pago":{"exemplar_city":"Pago Pago"},"apia":{"exemplar_city":"Apia"},"norfolk":{"exemplar_city":"Norfolk"},"kiritimati":{"exemplar_city":"Kiritimati"},"port_moresby":{"exemplar_city":"Port Moresby"},"nauru":{"exemplar_city":"Nauru"},"niue":{"exemplar_city":"Niue"},"auckland":{"exemplar_city":"Auckland"},"chatham":{"exemplar_city":"Chatham"},"majuro":{"exemplar_city":"Majuro"},"palau":{"exemplar_city":"Palau"},"enderbury":{"exemplar_city":"Enderbury"},"tarawa":{"exemplar_city":"Tarawa"},"efate":{"exemplar_city":"Efate"},"johnston":{"exemplar_city":"Johnston"},"wake":{"exemplar_city":"Wake"},"kosrae":{"exemplar_city":"Kosrae"},"funafuti":{"exemplar_city":"Funafuti"},"pitcairn":{"exemplar_city":"Pitcairn"},"galapagos":{"exemplar_city":"Galapagos"},"ponape":{"exemplar_city":"Pohnpei"},"kwajalein":{"exemplar_city":"Kwajalein"},"tahiti":{"exemplar_city":"Tahiti"},"truk":{"exemplar_city":"Chuuk"},"wallis":{"exemplar_city":"Wallis"},"fiji":{"exemplar_city":"Fiji"},"guam":{"exemplar_city":"Guam"},"saipan":{"exemplar_city":"Saipan"},"fakaofo":{"exemplar_city":"Fakaofo"},"guadalcanal":{"exemplar_city":"Guadalcanal"},"easter":{"exemplar_city":"Easter"},"noumea":{"exemplar_city":"Noumea"},"tongatapu":{"exemplar_city":"Tongatapu"},"gambier":{"exemplar_city":"Gambier"},"marquesas":{"exemplar_city":"Marquesas"},"midway":{"exemplar_city":"Midway"}},"indian":{"reunion":{"exemplar_city":"Réunion"},"mayotte":{"exemplar_city":"Mayotte"},"mauritius":{"exemplar_city":"Mauritius"},"maldives":{"exemplar_city":"Maldives"},"mahe":{"exemplar_city":"Mahe"},"kerguelen":{"exemplar_city":"Kerguelen"},"comoro":{"exemplar_city":"Comoro"},"cocos":{"exemplar_city":"Cocos"},"christmas":{"exemplar_city":"Christmas"},"chagos":{"exemplar_city":"Chagos"},"antananarivo":{"exemplar_city":"Antananarivo"}},"europe":{"simferopol":{"exemplar_city":"Simferopol"},"astrakhan":{"exemplar_city":"Astrakhan"},"vatican":{"exemplar_city":"Vatican"},"bucharest":{"exemplar_city":"Bucharest"},"riga":{"exemplar_city":"Riga"},"prague":{"exemplar_city":"Prague"},"stockholm":{"exemplar_city":"Stockholm"},"samara":{"exemplar_city":"Samara"},"tallinn":{"exemplar_city":"Tallinn"},"vienna":{"exemplar_city":"Vienna"},"berlin":{"exemplar_city":"Berlin"},"sarajevo":{"exemplar_city":"Sarajevo"},"malta":{"exemplar_city":"Malta"},"helsinki":{"exemplar_city":"Helsinki"},"moscow":{"exemplar_city":"Moscow"},"monaco":{"exemplar_city":"Monaco"},"madrid":{"exemplar_city":"Madrid"},"zaporozhye":{"exemplar_city":"Zaporozhye"},"kirov":{"exemplar_city":"Kirov"},"lisbon":{"exemplar_city":"Lisbon"},"tirane":{"exemplar_city":"Tirane"},"paris":{"exemplar_city":"Paris"},"andorra":{"exemplar_city":"Andorra"},"zagreb":{"exemplar_city":"Zagreb"},"budapest":{"exemplar_city":"Budapest"},"minsk":{"exemplar_city":"Minsk"},"belgrade":{"exemplar_city":"Belgrade"},"vaduz":{"exemplar_city":"Vaduz"},"brussels":{"exemplar_city":"Brussels"},"podgorica":{"exemplar_city":"Podgorica"},"mariehamn":{"exemplar_city":"Mariehamn"},"oslo":{"exemplar_city":"Oslo"},"ljubljana":{"exemplar_city":"Ljubljana"},"ulyanovsk":{"exemplar_city":"Ulyanovsk"},"isle_of_man":{"exemplar_city":"Isle of Man"},"chisinau":{"exemplar_city":"Chisinau"},"saratov":{"exemplar_city":"Saratov"},"london":{"long":{"daylight":"British Summer Time"},"exemplar_city":"London"},"copenhagen":{"exemplar_city":"Copenhagen"},"vilnius":{"exemplar_city":"Vilnius"},"istanbul":{"exemplar_city":"Istanbul"},"uzhgorod":{"exemplar_city":"Uzhhorod"},"amsterdam":{"exemplar_city":"Amsterdam"},"volgograd":{"exemplar_city":"Volgograd"},"busingen":{"exemplar_city":"Busingen"},"gibraltar":{"exemplar_city":"Gibraltar"},"guernsey":{"exemplar_city":"Guernsey"},"skopje":{"exemplar_city":"Skopje"},"athens":{"exemplar_city":"Athens"},"sofia":{"exemplar_city":"Sofia"},"warsaw":{"exemplar_city":"Warsaw"},"dublin":{"long":{"daylight":"Irish Standard Time"},"exemplar_city":"Dublin"},"kiev":{"exemplar_city":"Kiev"},"rome":{"exemplar_city":"Rome"},"kaliningrad":{"exemplar_city":"Kaliningrad"},"jersey":{"exemplar_city":"Jersey"},"san_marino":{"exemplar_city":"San Marino"},"luxembourg":{"exemplar_city":"Luxembourg"},"bratislava":{"exemplar_city":"Bratislava"},"zurich":{"exemplar_city":"Zurich"}},"etc":{"utc":{"short":{"standard":"UTC"},"long":{"standard":"Coordinated Universal Time"}},"unknown":{"exemplar_city":"Unknown City"}},"australia":{"sydney":{"exemplar_city":"Sydney"},"perth":{"exemplar_city":"Perth"},"melbourne":{"exemplar_city":"Melbourne"},"lord_howe":{"exemplar_city":"Lord Howe"},"lindeman":{"exemplar_city":"Lindeman"},"hobart":{"exemplar_city":"Hobart"},"eucla":{"exemplar_city":"Eucla"},"darwin":{"exemplar_city":"Darwin"},"currie":{"exemplar_city":"Currie"},"broken_hill":{"exemplar_city":"Broken Hill"},"brisbane":{"exemplar_city":"Brisbane"},"adelaide":{"exemplar_city":"Adelaide"}},"atlantic":{"stanley":{"exemplar_city":"Stanley"},"st_helena":{"exemplar_city":"St. Helena"},"south_georgia":{"exemplar_city":"South Georgia"},"reykjavik":{"exemplar_city":"Reykjavik"},"madeira":{"exemplar_city":"Madeira"},"faeroe":{"exemplar_city":"Faroe"},"cape_verde":{"exemplar_city":"Cape Verde"},"canary":{"exemplar_city":"Canary"},"bermuda":{"exemplar_city":"Bermuda"},"azores":{"exemplar_city":"Azores"}},"asia":{"katmandu":{"exemplar_city":"Kathmandu"},"tashkent":{"exemplar_city":"Tashkent"},"vladivostok":{"exemplar_city":"Vladivostok"},"shanghai":{"exemplar_city":"Shanghai"},"taipei":{"exemplar_city":"Taipei"},"hong_kong":{"exemplar_city":"Hong Kong"},"sakhalin":{"exemplar_city":"Sakhalin"},"calcutta":{"exemplar_city":"Kolkata"},"ashgabat":{"exemplar_city":"Ashgabat"},"atyrau":{"exemplar_city":"Atyrau"},"khandyga":{"exemplar_city":"Khandyga"},"dili":{"exemplar_city":"Dili"},"tokyo":{"exemplar_city":"Tokyo"},"novosibirsk":{"exemplar_city":"Novosibirsk"},"dhaka":{"exemplar_city":"Dhaka"},"omsk":{"exemplar_city":"Omsk"},"karachi":{"exemplar_city":"Karachi"},"ust__nera":{"exemplar_city":"Ust-Nera"},"kamchatka":{"exemplar_city":"Kamchatka"},"aden":{"exemplar_city":"Aden"},"chita":{"exemplar_city":"Chita"},"aqtobe":{"exemplar_city":"Aqtobe"},"dushanbe":{"exemplar_city":"Dushanbe"},"singapore":{"exemplar_city":"Singapore"},"baku":{"exemplar_city":"Baku"},"seoul":{"exemplar_city":"Seoul"},"bishkek":{"exemplar_city":"Bishkek"},"oral":{"exemplar_city":"Oral"},"rangoon":{"exemplar_city":"Yangon"},"colombo":{"exemplar_city":"Colombo"},"gaza":{"exemplar_city":"Gaza"},"baghdad":{"exemplar_city":"Baghdad"},"pyongyang":{"exemplar_city":"Pyongyang"},"jakarta":{"exemplar_city":"Jakarta"},"thimphu":{"exemplar_city":"Thimphu"},"jerusalem":{"exemplar_city":"Jerusalem"},"almaty":{"exemplar_city":"Almaty"},"muscat":{"exemplar_city":"Muscat"},"macau":{"exemplar_city":"Macau"},"phnom_penh":{"exemplar_city":"Phnom Penh"},"qatar":{"exemplar_city":"Qatar"},"damascus":{"exemplar_city":"Damascus"},"riyadh":{"exemplar_city":"Riyadh"},"krasnoyarsk":{"exemplar_city":"Krasnoyarsk"},"makassar":{"exemplar_city":"Makassar"},"urumqi":{"exemplar_city":"Urumqi"},"qyzylorda":{"exemplar_city":"Qyzylorda"},"magadan":{"exemplar_city":"Magadan"},"bahrain":{"exemplar_city":"Bahrain"},"tomsk":{"exemplar_city":"Tomsk"},"nicosia":{"exemplar_city":"Nicosia"},"irkutsk":{"exemplar_city":"Irkutsk"},"tbilisi":{"exemplar_city":"Tbilisi"},"jayapura":{"exemplar_city":"Jayapura"},"yekaterinburg":{"exemplar_city":"Yekaterinburg"},"vientiane":{"exemplar_city":"Vientiane"},"aqtau":{"exemplar_city":"Aqtau"},"yerevan":{"exemplar_city":"Yerevan"},"kuching":{"exemplar_city":"Kuching"},"anadyr":{"exemplar_city":"Anadyr"},"kuwait":{"exemplar_city":"Kuwait"},"barnaul":{"exemplar_city":"Barnaul"},"manila":{"exemplar_city":"Manila"},"samarkand":{"exemplar_city":"Samarkand"},"hovd":{"exemplar_city":"Hovd"},"yakutsk":{"exemplar_city":"Yakutsk"},"ulaanbaatar":{"exemplar_city":"Ulaanbaatar"},"tehran":{"exemplar_city":"Tehran"},"dubai":{"exemplar_city":"Dubai"},"bangkok":{"exemplar_city":"Bangkok"},"beirut":{"exemplar_city":"Beirut"},"hebron":{"exemplar_city":"Hebron"},"famagusta":{"exemplar_city":"Famagusta"},"kabul":{"exemplar_city":"Kabul"},"amman":{"exemplar_city":"Amman"},"srednekolymsk":{"exemplar_city":"Srednekolymsk"},"brunei":{"exemplar_city":"Brunei"},"novokuznetsk":{"exemplar_city":"Novokuznetsk"},"pontianak":{"exemplar_city":"Pontianak"},"saigon":{"exemplar_city":"Ho Chi Minh City"},"kuala_lumpur":{"exemplar_city":"Kuala Lumpur"},"choibalsan":{"exemplar_city":"Choibalsan"}},"arctic":{"longyearbyen":{"exemplar_city":"Longyearbyen"}},"antarctica":{"vostok":{"exemplar_city":"Vostok"},"troll":{"exemplar_city":"Troll"},"syowa":{"exemplar_city":"Syowa"},"rothera":{"exemplar_city":"Rothera"},"palmer":{"exemplar_city":"Palmer"},"mc_murdo":{"exemplar_city":"McMurdo"},"mawson":{"exemplar_city":"Mawson"},"macquarie":{"exemplar_city":"Macquarie"},"dumont_d_urville":{"exemplar_city":"Dumont d’Urville"},"davis":{"exemplar_city":"Davis"},"casey":{"exemplar_city":"Casey"}},"america":{"guyana":{"exemplar_city":"Guyana"},"jujuy":{"exemplar_city":"Jujuy"},"boa_vista":{"exemplar_city":"Boa Vista"},"matamoros":{"exemplar_city":"Matamoros"},"araguaina":{"exemplar_city":"Araguaina"},"puerto_rico":{"exemplar_city":"Puerto Rico"},"juneau":{"exemplar_city":"Juneau"},"goose_bay":{"exemplar_city":"Goose Bay"},"anchorage":{"exemplar_city":"Anchorage"},"los_angeles":{"exemplar_city":"Los Angeles"},"new_york":{"exemplar_city":"New York"},"cancun":{"exemplar_city":"Cancun"},"fortaleza":{"exemplar_city":"Fortaleza"},"mazatlan":{"exemplar_city":"Mazatlan"},"st_kitts":{"exemplar_city":"St. Kitts"},"havana":{"exemplar_city":"Havana"},"mexico_city":{"exemplar_city":"Mexico City"},"dominica":{"exemplar_city":"Dominica"},"yakutat":{"exemplar_city":"Yakutat"},"rio_branco":{"exemplar_city":"Rio Branco"},"belize":{"exemplar_city":"Belize"},"panama":{"exemplar_city":"Panama"},"pangnirtung":{"exemplar_city":"Pangnirtung"},"lower_princes":{"exemplar_city":"Lower Prince’s Quarter"},"chihuahua":{"exemplar_city":"Chihuahua"},"merida":{"exemplar_city":"Merida"},"vancouver":{"exemplar_city":"Vancouver"},"moncton":{"exemplar_city":"Moncton"},"regina":{"exemplar_city":"Regina"},"cayenne":{"exemplar_city":"Cayenne"},"nipigon":{"exemplar_city":"Nipigon"},"hermosillo":{"exemplar_city":"Hermosillo"},"resolute":{"exemplar_city":"Resolute"},"fort_nelson":{"exemplar_city":"Fort Nelson"},"metlakatla":{"exemplar_city":"Metlakatla"},"santo_domingo":{"exemplar_city":"Santo Domingo"},"aruba":{"exemplar_city":"Aruba"},"st_thomas":{"exemplar_city":"St. Thomas"},"miquelon":{"exemplar_city":"Miquelon"},"punta_arenas":{"exemplar_city":"Punta Arenas"},"louisville":{"exemplar_city":"Louisville"},"inuvik":{"exemplar_city":"Inuvik"},"bogota":{"exemplar_city":"Bogota"},"creston":{"exemplar_city":"Creston"},"guatemala":{"exemplar_city":"Guatemala"},"costa_rica":{"exemplar_city":"Costa Rica"},"caracas":{"exemplar_city":"Caracas"},"catamarca":{"exemplar_city":"Catamarca"},"curacao":{"exemplar_city":"Curaçao"},"recife":{"exemplar_city":"Recife"},"rainy_river":{"exemplar_city":"Rainy River"},"martinique":{"exemplar_city":"Martinique"},"la_paz":{"exemplar_city":"La Paz"},"kentucky":{"monticello":{"exemplar_city":"Monticello, Kentucky"}},"bahia":{"exemplar_city":"Bahia"},"grenada":{"exemplar_city":"Grenada"},"lima":{"exemplar_city":"Lima"},"st_barthelemy":{"exemplar_city":"St. Barthélemy"},"grand_turk":{"exemplar_city":"Grand Turk"},"adak":{"exemplar_city":"Adak"},"ojinaga":{"exemplar_city":"Ojinaga"},"santarem":{"exemplar_city":"Santarem"},"nome":{"exemplar_city":"Nome"},"godthab":{"exemplar_city":"Nuuk"},"antigua":{"exemplar_city":"Antigua"},"eirunepe":{"exemplar_city":"Eirunepe"},"swift_current":{"exemplar_city":"Swift Current"},"montserrat":{"exemplar_city":"Montserrat"},"cuiaba":{"exemplar_city":"Cuiaba"},"dawson":{"exemplar_city":"Dawson"},"cambridge_bay":{"exemplar_city":"Cambridge Bay"},"st_vincent":{"exemplar_city":"St. Vincent"},"st_lucia":{"exemplar_city":"St. Lucia"},"asuncion":{"exemplar_city":"Asunción"},"scoresbysund":{"exemplar_city":"Ittoqqortoormiit"},"belem":{"exemplar_city":"Belem"},"tegucigalpa":{"exemplar_city":"Tegucigalpa"},"port_au__prince":{"exemplar_city":"Port-au-Prince"},"manaus":{"exemplar_city":"Manaus"},"chicago":{"exemplar_city":"Chicago"},"yellowknife":{"exemplar_city":"Yellowknife"},"blanc__sablon":{"exemplar_city":"Blanc-Sablon"},"phoenix":{"exemplar_city":"Phoenix"},"glace_bay":{"exemplar_city":"Glace Bay"},"santiago":{"exemplar_city":"Santiago"},"whitehorse":{"exemplar_city":"Whitehorse"},"denver":{"exemplar_city":"Denver"},"sitka":{"exemplar_city":"Sitka"},"coral_harbour":{"exemplar_city":"Atikokan"},"guayaquil":{"exemplar_city":"Guayaquil"},"edmonton":{"exemplar_city":"Edmonton"},"marigot":{"exemplar_city":"Marigot"},"thunder_bay":{"exemplar_city":"Thunder Bay"},"campo_grande":{"exemplar_city":"Campo Grande"},"cordoba":{"exemplar_city":"Cordoba"},"cayman":{"exemplar_city":"Cayman"},"jamaica":{"exemplar_city":"Jamaica"},"buenos_aires":{"exemplar_city":"Buenos Aires"},"tijuana":{"exemplar_city":"Tijuana"},"port_of_spain":{"exemplar_city":"Port of Spain"},"guadeloupe":{"exemplar_city":"Guadeloupe"},"detroit":{"exemplar_city":"Detroit"},"argentina":{"ushuaia":{"exemplar_city":"Ushuaia"},"tucuman":{"exemplar_city":"Tucuman"},"san_luis":{"exemplar_city":"San Luis"},"san_juan":{"exemplar_city":"San Juan"},"salta":{"exemplar_city":"Salta"},"rio_gallegos":{"exemplar_city":"Rio Gallegos"},"la_rioja":{"exemplar_city":"La Rioja"}},"st_johns":{"exemplar_city":"St. John’s"},"mendoza":{"exemplar_city":"Mendoza"},"danmarkshavn":{"exemplar_city":"Danmarkshavn"},"el_salvador":{"exemplar_city":"El Salvador"},"halifax":{"exemplar_city":"Halifax"},"rankin_inlet":{"exemplar_city":"Rankin Inlet"},"boise":{"exemplar_city":"Boise"},"dawson_creek":{"exemplar_city":"Dawson Creek"},"maceio":{"exemplar_city":"Maceio"},"porto_velho":{"exemplar_city":"Porto Velho"},"monterrey":{"exemplar_city":"Monterrey"},"noronha":{"exemplar_city":"Noronha"},"sao_paulo":{"exemplar_city":"Sao Paulo"},"thule":{"exemplar_city":"Thule"},"anguilla":{"exemplar_city":"Anguilla"},"winnipeg":{"exemplar_city":"Winnipeg"},"managua":{"exemplar_city":"Managua"},"north_dakota":{"new_salem":{"exemplar_city":"New Salem, North Dakota"},"center":{"exemplar_city":"Center, North Dakota"},"beulah":{"exemplar_city":"Beulah, North Dakota"}},"iqaluit":{"exemplar_city":"Iqaluit"},"indiana":{"winamac":{"exemplar_city":"Winamac, Indiana"},"vincennes":{"exemplar_city":"Vincennes, Indiana"},"vevay":{"exemplar_city":"Vevay, Indiana"},"tell_city":{"exemplar_city":"Tell City, Indiana"},"petersburg":{"exemplar_city":"Petersburg, Indiana"},"marengo":{"exemplar_city":"Marengo, Indiana"},"knox":{"exemplar_city":"Knox, Indiana"}},"kralendijk":{"exemplar_city":"Kralendijk"},"montevideo":{"exemplar_city":"Montevideo"},"nassau":{"exemplar_city":"Nassau"},"bahia_banderas":{"exemplar_city":"Bahia Banderas"},"menominee":{"exemplar_city":"Menominee"},"toronto":{"exemplar_city":"Toronto"},"tortola":{"exemplar_city":"Tortola"},"paramaribo":{"exemplar_city":"Paramaribo"},"barbados":{"exemplar_city":"Barbados"},"indianapolis":{"exemplar_city":"Indianapolis"}},"africa":{"lagos":{"exemplar_city":"Lagos"},"brazzaville":{"exemplar_city":"Brazzaville"},"monrovia":{"exemplar_city":"Monrovia"},"gaborone":{"exemplar_city":"Gaborone"},"luanda":{"exemplar_city":"Luanda"},"windhoek":{"exemplar_city":"Windhoek"},"tunis":{"exemplar_city":"Tunis"},"cairo":{"exemplar_city":"Cairo"},"lubumbashi":{"exemplar_city":"Lubumbashi"},"bissau":{"exemplar_city":"Bissau"},"conakry":{"exemplar_city":"Conakry"},"freetown":{"exemplar_city":"Freetown"},"bamako":{"exemplar_city":"Bamako"},"lusaka":{"exemplar_city":"Lusaka"},"libreville":{"exemplar_city":"Libreville"},"harare":{"exemplar_city":"Harare"},"ouagadougou":{"exemplar_city":"Ouagadougou"},"juba":{"exemplar_city":"Juba"},"djibouti":{"exemplar_city":"Djibouti"},"bujumbura":{"exemplar_city":"Bujumbura"},"dar_es_salaam":{"exemplar_city":"Dar es Salaam"},"douala":{"exemplar_city":"Douala"},"banjul":{"exemplar_city":"Banjul"},"porto__novo":{"exemplar_city":"Porto-Novo"},"bangui":{"exemplar_city":"Bangui"},"kinshasa":{"exemplar_city":"Kinshasa"},"ceuta":{"exemplar_city":"Ceuta"},"accra":{"exemplar_city":"Accra"},"nouakchott":{"exemplar_city":"Nouakchott"},"kampala":{"exemplar_city":"Kampala"},"khartoum":{"exemplar_city":"Khartoum"},"blantyre":{"exemplar_city":"Blantyre"},"malabo":{"exemplar_city":"Malabo"},"maseru":{"exemplar_city":"Maseru"},"niamey":{"exemplar_city":"Niamey"},"johannesburg":{"exemplar_city":"Johannesburg"},"lome":{"exemplar_city":"Lome"},"asmera":{"exemplar_city":"Asmara"},"addis_ababa":{"exemplar_city":"Addis Ababa"},"mbabane":{"exemplar_city":"Mbabane"},"algiers":{"exemplar_city":"Algiers"},"maputo":{"exemplar_city":"Maputo"},"sao_tome":{"exemplar_city":"São Tomé"},"tripoli":{"exemplar_city":"Tripoli"},"ndjamena":{"exemplar_city":"Ndjamena"},"kigali":{"exemplar_city":"Kigali"},"casablanca":{"exemplar_city":"Casablanca"},"nairobi":{"exemplar_city":"Nairobi"},"mogadishu":{"exemplar_city":"Mogadishu"},"dakar":{"exemplar_city":"Dakar"},"el_aaiun":{"exemplar_city":"El Aaiun"},"abidjan":{"exemplar_city":"Abidjan"}}},"region_format_type_standard":[0," Standard Time"],"region_format_type_daylight":[0," Daylight Time"],"region_format":[0," Time"],"metazone":{"guyana":{"long":{"standard":"Guyana Time"}},"north_mariana":{"long":{"standard":"North Mariana Islands Time"}},"line_islands":{"long":{"standard":"Line Islands Time"}},"vostok":{"long":{"standard":"Vostok Time"}},"australia_eastern":{"long":{"standard":"Australian Eastern Standard Time","generic":"Eastern Australia Time","daylight":"Australian Eastern Daylight Time"}},"vladivostok":{"long":{"standard":"Vladivostok Standard Time","generic":"Vladivostok Time","daylight":"Vladivostok Summer Time"}},"taipei":{"long":{"standard":"Taipei Standard Time","generic":"Taipei Time","daylight":"Taipei Daylight Time"}},"chamorro":{"long":{"standard":"Chamorro Standard Time"}},"hong_kong":{"long":{"standard":"Hong Kong Standard Time","generic":"Hong Kong Time","daylight":"Hong Kong Summer Time"}},"sakhalin":{"long":{"standard":"Sakhalin Standard Time","generic":"Sakhalin Time","daylight":"Sakhalin Summer Time"}},"europe_central":{"long":{"standard":"Central European Standard Time","generic":"Central European Time","daylight":"Central European Summer Time"}},"french_guiana":{"long":{"standard":"French Guiana Time"}},"kazakhstan_western":{"long":{"standard":"West Kazakhstan Time"}},"falkland":{"long":{"standard":"Falkland Islands Standard Time","generic":"Falkland Islands Time","daylight":"Falkland Islands Summer Time"}},"argentina_western":{"long":{"standard":"Western Argentina Standard Time","generic":"Western Argentina Time","daylight":"Western Argentina Summer Time"}},"uruguay":{"long":{"standard":"Uruguay Standard Time","generic":"Uruguay Time","daylight":"Uruguay Summer Time"}},"novosibirsk":{"long":{"standard":"Novosibirsk Standard Time","generic":"Novosibirsk Time","daylight":"Novosibirsk Summer Time"}},"apia":{"long":{"standard":"Apia Standard Time","generic":"Apia Time","daylight":"Apia Daylight Time"}},"cuba":{"long":{"standard":"Cuba Standard Time","generic":"Cuba Time","daylight":"Cuba Daylight Time"}},"cook":{"long":{"standard":"Cook Islands Standard Time","generic":"Cook Islands Time","daylight":"Cook Islands Half Summer Time"}},"bangladesh":{"long":{"standard":"Bangladesh Standard Time","generic":"Bangladesh Time","daylight":"Bangladesh Summer Time"}},"christmas":{"long":{"standard":"Christmas Island Time"}},"omsk":{"long":{"standard":"Omsk Standard Time","generic":"Omsk Time","daylight":"Omsk Summer Time"}},"norfolk":{"long":{"standard":"Norfolk Island Time"}},"kamchatka":{"long":{"standard":"Petropavlovsk-Kamchatski Standard Time","generic":"Petropavlovsk-Kamchatski Time","daylight":"Petropavlovsk-Kamchatski Summer Time"}},"uzbekistan":{"long":{"standard":"Uzbekistan Standard Time","generic":"Uzbekistan Time","daylight":"Uzbekistan Summer Time"}},"marshall_islands":{"long":{"standard":"Marshall Islands Time"}},"samara":{"long":{"standard":"Samara Standard Time","generic":"Samara Time","daylight":"Samara Summer Time"}},"aqtobe":{"long":{"standard":"Aqtobe Standard Time","generic":"Aqtobe Time","daylight":"Aqtobe Summer Time"}},"singapore":{"long":{"standard":"Singapore Standard Time"}},"cocos":{"long":{"standard":"Cocos Islands Time"}},"indochina":{"long":{"standard":"Indochina Time"}},"mexico_pacific":{"long":{"standard":"Mexican Pacific Standard Time","generic":"Mexican Pacific Time","daylight":"Mexican Pacific Daylight Time"}},"ecuador":{"long":{"standard":"Ecuador Time"}},"japan":{"long":{"standard":"Japan Standard Time","generic":"Japan Time","daylight":"Japan Daylight Time"}},"nauru":{"long":{"standard":"Nauru Time"}},"moscow":{"long":{"standard":"Moscow Standard Time","generic":"Moscow Time","daylight":"Moscow Summer Time"}},"nepal":{"long":{"standard":"Nepal Time"}},"pyongyang":{"long":{"standard":"Pyongyang Time"}},"niue":{"long":{"standard":"Niue Time"}},"indian_ocean":{"long":{"standard":"Indian Ocean Time"}},"almaty":{"long":{"standard":"Almaty Standard Time","generic":"Almaty Time","daylight":"Almaty Summer Time"}},"dumont_d_urville":{"long":{"standard":"Dumont-d’Urville Time"}},"tokelau":{"long":{"standard":"Tokelau Time"}},"macau":{"long":{"standard":"Macau Standard Time","generic":"Macau Time","daylight":"Macau Summer Time"}},"hawaii_aleutian":{"long":{"standard":"Hawaii-Aleutian Standard Time","generic":"Hawaii-Aleutian Time","daylight":"Hawaii-Aleutian Daylight Time"}},"suriname":{"long":{"standard":"Suriname Time"}},"venezuela":{"long":{"standard":"Venezuela Time"}},"azores":{"long":{"standard":"Azores Standard Time","generic":"Azores Time","daylight":"Azores Summer Time"}},"south_georgia":{"long":{"standard":"South Georgia Time"}},"brasilia":{"long":{"standard":"Brasilia Standard Time","generic":"Brasilia Time","daylight":"Brasilia Summer Time"}},"chatham":{"long":{"standard":"Chatham Standard Time","generic":"Chatham Time","daylight":"Chatham Daylight Time"}},"gilbert_islands":{"long":{"standard":"Gilbert Islands Time"}},"africa_southern":{"long":{"standard":"South Africa Standard Time"}},"georgia":{"long":{"standard":"Georgia Standard Time","generic":"Georgia Time","daylight":"Georgia Summer Time"}},"afghanistan":{"long":{"standard":"Afghanistan Time"}},"acre":{"long":{"standard":"Acre Standard Time","generic":"Acre Time","daylight":"Acre Summer Time"}},"indonesia_eastern":{"long":{"standard":"Eastern Indonesia Time"}},"cape_verde":{"long":{"standard":"Cape Verde Standard Time","generic":"Cape Verde Time","daylight":"Cape Verde Summer Time"}},"bhutan":{"long":{"standard":"Bhutan Time"}},"krasnoyarsk":{"long":{"standard":"Krasnoyarsk Standard Time","generic":"Krasnoyarsk Time","daylight":"Krasnoyarsk Summer Time"}},"palau":{"long":{"standard":"Palau Time"}},"australia_central_western":{"long":{"standard":"Australian Central Western Standard Time","generic":"Australian Central Western Time","daylight":"Australian Central Western Daylight Time"}},"casey":{"long":{"standard":"Casey Time"}},"vanuatu":{"long":{"standard":"Vanuatu Standard Time","generic":"Vanuatu Time","daylight":"Vanuatu Summer Time"}},"mauritius":{"long":{"standard":"Mauritius Standard Time","generic":"Mauritius Time","daylight":"Mauritius Summer Time"}},"gulf":{"long":{"standard":"Gulf Standard Time"}},"tonga":{"long":{"standard":"Tonga Standard Time","generic":"Tonga Time","daylight":"Tonga Summer Time"}},"qyzylorda":{"long":{"standard":"Qyzylorda Standard Time","generic":"Qyzylorda Time","daylight":"Qyzylorda Summer Time"}},"america_central":{"long":{"standard":"Central Standard Time","generic":"Central Time","daylight":"Central Daylight Time"}},"philippines":{"long":{"standard":"Philippine Standard Time","generic":"Philippine Time","daylight":"Philippine Summer Time"}},"solomon":{"long":{"standard":"Solomon Islands Time"}},"turkmenistan":{"long":{"standard":"Turkmenistan Standard Time","generic":"Turkmenistan Time","daylight":"Turkmenistan Summer Time"}},"magadan":{"long":{"standard":"Magadan Standard Time","generic":"Magadan Time","daylight":"Magadan Summer Time"}},"wake":{"long":{"standard":"Wake Island Time"}},"paraguay":{"long":{"standard":"Paraguay Standard Time","generic":"Paraguay Time","daylight":"Paraguay Summer Time"}},"kosrae":{"long":{"standard":"Kosrae Time"}},"africa_central":{"long":{"standard":"Central Africa Time"}},"rothera":{"long":{"standard":"Rothera Time"}},"lord_howe":{"long":{"standard":"Lord Howe Standard Time","generic":"Lord Howe Time","daylight":"Lord Howe Daylight Time"}},"seychelles":{"long":{"standard":"Seychelles Time"}},"irkutsk":{"long":{"standard":"Irkutsk Standard Time","generic":"Irkutsk Time","daylight":"Irkutsk Summer Time"}},"new_zealand":{"long":{"standard":"New Zealand Standard Time","generic":"New Zealand Time","daylight":"New Zealand Daylight Time"}},"pitcairn":{"long":{"standard":"Pitcairn Time"}},"australia_western":{"long":{"standard":"Australian Western Standard Time","generic":"Western Australia Time","daylight":"Australian Western Daylight Time"}},"peru":{"long":{"standard":"Peru Standard Time","generic":"Peru Time","daylight":"Peru Summer Time"}},"myanmar":{"long":{"standard":"Myanmar Time"}},"bolivia":{"long":{"standard":"Bolivia Time"}},"galapagos":{"long":{"standard":"Galapagos Time"}},"yekaterinburg":{"long":{"standard":"Yekaterinburg Standard Time","generic":"Yekaterinburg Time","daylight":"Yekaterinburg Summer Time"}},"amazon":{"long":{"standard":"Amazon Standard Time","generic":"Amazon Time","daylight":"Amazon Summer Time"}},"ponape":{"long":{"standard":"Ponape Time"}},"australia_central":{"long":{"standard":"Australian Central Standard Time","generic":"Central Australia Time","daylight":"Australian Central Daylight Time"}},"mexico_northwest":{"long":{"standard":"Northwest Mexico Standard Time","generic":"Northwest Mexico Time","daylight":"Northwest Mexico Daylight Time"}},"malaysia":{"long":{"standard":"Malaysia Time"}},"chile":{"long":{"standard":"Chile Standard Time","generic":"Chile Time","daylight":"Chile Summer Time"}},"aqtau":{"long":{"standard":"Aqtau Standard Time","generic":"Aqtau Time","daylight":"Aqtau Summer Time"}},"newfoundland":{"long":{"standard":"Newfoundland Standard Time","generic":"Newfoundland Time","daylight":"Newfoundland Daylight Time"}},"phoenix_islands":{"long":{"standard":"Phoenix Islands Time"}},"kazakhstan_eastern":{"long":{"standard":"East Kazakhstan Time"}},"tahiti":{"long":{"standard":"Tahiti Time"}},"indonesia_western":{"long":{"standard":"Western Indonesia Time"}},"truk":{"long":{"standard":"Chuuk Time"}},"new_caledonia":{"long":{"standard":"New Caledonia Standard Time","generic":"New Caledonia Time","daylight":"New Caledonia Summer Time"}},"anadyr":{"long":{"standard":"Anadyr Standard Time","generic":"Anadyr Time","daylight":"Anadyr Summer Time"}},"wallis":{"long":{"standard":"Wallis & Futuna Time"}},"fiji":{"long":{"standard":"Fiji Standard Time","generic":"Fiji Time","daylight":"Fiji Summer Time"}},"arabian":{"long":{"standard":"Arabian Standard Time","generic":"Arabian Time","daylight":"Arabian Daylight Time"}},"guam":{"long":{"standard":"Guam Standard Time"}},"reunion":{"long":{"standard":"Reunion Time"}},"greenland_eastern":{"long":{"standard":"East Greenland Standard Time","generic":"East Greenland Time","daylight":"East Greenland Summer Time"}},"america_mountain":{"long":{"standard":"Mountain Standard Time","generic":"Mountain Time","daylight":"Mountain Daylight Time"}},"maldives":{"long":{"standard":"Maldives Time"}},"greenland_western":{"long":{"standard":"West Greenland Standard Time","generic":"West Greenland Time","daylight":"West Greenland Summer Time"}},"america_pacific":{"long":{"standard":"Pacific Standard Time","generic":"Pacific Time","daylight":"Pacific Daylight Time"}},"easter":{"long":{"standard":"Easter Island Standard Time","generic":"Easter Island Time","daylight":"Easter Island Summer Time"}},"argentina":{"long":{"standard":"Argentina Standard Time","generic":"Argentina Time","daylight":"Argentina Summer Time"}},"israel":{"long":{"standard":"Israel Standard Time","generic":"Israel Time","daylight":"Israel Daylight Time"}},"europe_western":{"long":{"standard":"Western European Standard Time","generic":"Western European Time","daylight":"Western European Summer Time"}},"hovd":{"long":{"standard":"Hovd Standard Time","generic":"Hovd Time","daylight":"Hovd Summer Time"}},"africa_western":{"long":{"standard":"West Africa Standard Time","generic":"West Africa Time","daylight":"West Africa Summer Time"}},"volgograd":{"long":{"standard":"Volgograd Standard Time","generic":"Volgograd Time","daylight":"Volgograd Summer Time"}},"macquarie":{"long":{"standard":"Macquarie Island Time"}},"samoa":{"long":{"standard":"Samoa Standard Time","generic":"Samoa Time","daylight":"Samoa Daylight Time"}},"america_eastern":{"long":{"standard":"Eastern Standard Time","generic":"Eastern Time","daylight":"Eastern Daylight Time"}},"papua_new_guinea":{"long":{"standard":"Papua New Guinea Time"}},"yakutsk":{"long":{"standard":"Yakutsk Standard Time","generic":"Yakutsk Time","daylight":"Yakutsk Summer Time"}},"davis":{"long":{"standard":"Davis Time"}},"korea":{"long":{"standard":"Korean Standard Time","generic":"Korean Time","daylight":"Korean Daylight Time"}},"gambier":{"long":{"standard":"Gambier Time"}},"atlantic":{"long":{"standard":"Atlantic Standard Time","generic":"Atlantic Time","daylight":"Atlantic Daylight Time"}},"iran":{"long":{"standard":"Iran Standard Time","generic":"Iran Time","daylight":"Iran Daylight Time"}},"lanka":{"long":{"standard":"Lanka Time"}},"pakistan":{"long":{"standard":"Pakistan Standard Time","generic":"Pakistan Time","daylight":"Pakistan Summer Time"}},"noronha":{"long":{"standard":"Fernando de Noronha Standard Time","generic":"Fernando de Noronha Time","daylight":"Fernando de Noronha Summer Time"}},"tajikistan":{"long":{"standard":"Tajikistan Time"}},"pierre_miquelon":{"long":{"standard":"St. Pierre & Miquelon Standard Time","generic":"St. Pierre & Miquelon Time","daylight":"St. Pierre & Miquelon Daylight Time"}},"syowa":{"long":{"standard":"Syowa Time"}},"europe_further_eastern":{"long":{"standard":"Further-eastern European Time"}},"europe_eastern":{"long":{"standard":"Eastern European Standard Time","generic":"Eastern European Time","daylight":"Eastern European Summer Time"}},"azerbaijan":{"long":{"standard":"Azerbaijan Standard Time","generic":"Azerbaijan Time","daylight":"Azerbaijan Summer Time"}},"alaska":{"long":{"standard":"Alaska Standard Time","generic":"Alaska Time","daylight":"Alaska Daylight Time"}},"gmt":{"short":{"standard":"GMT"},"long":{"standard":"Greenwich Mean Time"}},"colombia":{"long":{"standard":"Colombia Standard Time","generic":"Colombia Time","daylight":"Colombia Summer Time"}},"brunei":{"long":{"standard":"Brunei Darussalam Time"}},"mongolia":{"long":{"standard":"Ulaanbaatar Standard Time","generic":"Ulaanbaatar Time","daylight":"Ulaanbaatar Summer Time"}},"tuvalu":{"long":{"standard":"Tuvalu Time"}},"east_timor":{"long":{"standard":"East Timor Time"}},"china":{"long":{"standard":"China Standard Time","generic":"China Time","daylight":"China Daylight Time"}},"indonesia_central":{"long":{"standard":"Central Indonesia Time"}},"french_southern":{"long":{"standard":"French Southern & Antarctic Time"}},"africa_eastern":{"long":{"standard":"East Africa Time"}},"armenia":{"long":{"standard":"Armenia Standard Time","generic":"Armenia Time","daylight":"Armenia Summer Time"}},"mawson":{"long":{"standard":"Mawson Time"}},"india":{"long":{"standard":"India Standard Time"}},"marquesas":{"long":{"standard":"Marquesas Time"}},"kyrgystan":{"long":{"standard":"Kyrgyzstan Time"}},"choibalsan":{"long":{"standard":"Choibalsan Standard Time","generic":"Choibalsan Time","daylight":"Choibalsan Summer Time"}}},"hour_format":"+HH:mm;-HH:mm","gmt_zero_format":"GMT","gmt_format":["GMT",0],"fallback_format":[1," (",0,")"]},"calendars":{"roc":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"September","8":"August","7":"July","6":"June","5":"May","4":"April","3":"March","2":"February","12":"December","11":"November","10":"October","1":"January"},"narrow":{"9":"S","8":"A","7":"J","6":"J","5":"M","4":"A","3":"M","2":"F","12":"D","11":"N","10":"O","1":"J"},"abbreviated":{"9":"Sep","8":"Aug","7":"Jul","6":"Jun","5":"May","4":"Apr","3":"Mar","2":"Feb","12":"Dec","11":"Nov","10":"Oct","1":"Jan"}},"format":{"wide":{"9":"September","8":"August","7":"July","6":"June","5":"May","4":"April","3":"March","2":"February","12":"December","11":"November","10":"October","1":"January"},"narrow":{"9":"S","8":"A","7":"J","6":"J","5":"M","4":"A","3":"M","2":"F","12":"D","11":"N","10":"O","1":"J"},"abbreviated":{"9":"Sep","8":"Aug","7":"Jul","6":"Jun","5":"May","4":"Apr","3":"Mar","2":"Feb","12":"Dec","11":"Nov","10":"Oct","1":"Jan"}}},"eras":{"era_narrow":{"1":"Minguo","0":"Before R.O.C."},"era_names":{"1":"Minguo","0":"Before R.O.C."},"era_abbr":{"1":"Minguo","0":"Before R.O.C."}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM y – MMMM y G","m":"MMMM – MMMM y G"},"y_mmm_ed":{"y":"E, d MMM y – E, d MMM y G","m":"E, d MMM – E, d MMM y G","d":"E, d – E, d MMM y G"},"y_mmm":{"y":"MMM y – MMM y G","m":"MMM – MMM y G"},"y_mm_md":{"y":"d MMM y – d MMM y G","m":"d MMM – d MMM y G","d":"d – d MMM y G"},"y_md":{"y":"dd/MM/y – dd/MM/y GGGGG","m":"dd/MM/y – dd/MM/y GGGGG","d":"dd/MM/y – dd/MM/y GGGGG"},"y_m_ed":{"y":"E, dd/MM/y – E, dd/MM/y GGGGG","m":"E, dd/MM/y – E, dd/MM/y GGGGG","d":"E, dd/MM/y – E, dd/MM/y GGGGG"},"y_m":{"y":"MM/y – MM/y GGGGG","m":"MM/y – MM/y GGGGG"},"y":{"y":"y – y G"},"mmm_ed":{"m":"E d MMM – E d MMM","d":"E d – E d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"dd/MM – dd/MM","d":"dd/MM – dd/MM"},"m_ed":{"m":"E dd/MM – E dd/MM","d":"E dd/MM – E dd/MM"},"m":{"m":"M – M"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"md":"dd/MM","mmm_md":"d MMMM","yyyy_mmm_ed":"E, d MMM y G","h":"h a","yyyy_qqq":"QQQ y G","bhm":"h:mm B","mm_md":"d MMM","d":"d","yyyy":"y G","e_hm":"E HH:mm","ms":"mm:ss","yyyy_m":"MM/y GGGGG","e_hms":"E HH:mm:ss","gy":"y G","ed":"E d","hms":"h:mm:ss a","bhms":"h:mm:ss B","yyyy_qqqq":"QQQQ y G","y":"y G","mmm":"LLL","gy_mm_md":"d MMM y G","yyyy_mm_md":"d MMM y G","m":"LL","gy_mmm_ed":"E, d MMM y G","yyyy_mmmm":"MMMM y G","ehm":"E h:mm a","gy_mmm":"MMM y G","yyyy_m_ed":"E, dd/MM/y GGGGG","yyyy_md":"dd/MM/y GGGGG","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","yyyy_mmm":"MMM y G","m_ed":"E, dd/MM"},"append_items":{"year":"{0} {1}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{0} {1}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"dd/MM/y GGGGG","medium":"d MMM y G","long":"d MMMM y G","full":"EEEE, d MMMM y G"}},"persian":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"Azar","8":"Aban","7":"Mehr","6":"Shahrivar","5":"Mordad","4":"Tir","3":"Khordad","2":"Ordibehesht","12":"Esfand","11":"Bahman","10":"Dey","1":"Farvardin"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Azar","8":"Aban","7":"Mehr","6":"Shahrivar","5":"Mordad","4":"Tir","3":"Khordad","2":"Ordibehesht","12":"Esfand","11":"Bahman","10":"Dey","1":"Farvardin"}},"format":{"wide":{"9":"Azar","8":"Aban","7":"Mehr","6":"Shahrivar","5":"Mordad","4":"Tir","3":"Khordad","2":"Ordibehesht","12":"Esfand","11":"Bahman","10":"Dey","1":"Farvardin"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Azar","8":"Aban","7":"Mehr","6":"Shahrivar","5":"Mordad","4":"Tir","3":"Khordad","2":"Ordibehesht","12":"Esfand","11":"Bahman","10":"Dey","1":"Farvardin"}}},"eras":{"era_narrow":{"0":"AP"},"era_names":{"0":"AP"},"era_abbr":{"0":"AP"}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM y – MMMM y G","m":"MMMM – MMMM y G"},"y_mmm_ed":{"y":"E, d MMM y – E, d MMM y G","m":"E, d MMM – E, d MMM y G","d":"E, d – E, d MMM y G"},"y_mmm":{"y":"MMM y – MMM y G","m":"MMM – MMM y G"},"y_mm_md":{"y":"d MMM y – d MMM y G","m":"d MMM – d MMM y G","d":"d – d MMM y G"},"y_md":{"y":"dd/MM/y – dd/MM/y GGGGG","m":"dd/MM/y – dd/MM/y GGGGG","d":"dd/MM/y – dd/MM/y GGGGG"},"y_m_ed":{"y":"E, dd/MM/y – E, dd/MM/y GGGGG","m":"E, dd/MM/y – E, dd/MM/y GGGGG","d":"E, dd/MM/y – E, dd/MM/y GGGGG"},"y_m":{"y":"MM/y – MM/y GGGGG","m":"MM/y – MM/y GGGGG"},"y":{"y":"y – y G"},"mmm_ed":{"m":"E d MMM – E d MMM","d":"E d – E d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"dd/MM – dd/MM","d":"dd/MM – dd/MM"},"m_ed":{"m":"E dd/MM – E dd/MM","d":"E dd/MM – E dd/MM"},"m":{"m":"M – M"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"md":"dd/MM","mmm_md":"d MMMM","yyyy_mmm_ed":"E, d MMM y G","h":"h a","yyyy_qqq":"QQQ y G","bhm":"h:mm B","mm_md":"d MMM","d":"d","yyyy":"y G","e_hm":"E HH:mm","ms":"mm:ss","yyyy_m":"MM/y GGGGG","e_hms":"E HH:mm:ss","gy":"y G","ed":"E d","hms":"h:mm:ss a","bhms":"h:mm:ss B","yyyy_qqqq":"QQQQ y G","y":"y G","mmm":"LLL","gy_mm_md":"d MMM y G","yyyy_mm_md":"d MMM y G","m":"LL","gy_mmm_ed":"E, d MMM y G","yyyy_mmmm":"MMMM y G","ehm":"E h:mm a","gy_mmm":"MMM y G","yyyy_m_ed":"E, dd/MM/y GGGGG","yyyy_md":"dd/MM/y GGGGG","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","yyyy_mmm":"MMM y G","m_ed":"E, dd/MM"},"append_items":{"year":"{0} {1}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{0} {1}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"dd/MM/y GGGGG","medium":"d MMM y G","long":"d MMMM y G","full":"EEEE, d MMMM y G"}},"japanese":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"September","8":"August","7":"July","6":"June","5":"May","4":"April","3":"March","2":"February","12":"December","11":"November","10":"October","1":"January"},"narrow":{"9":"S","8":"A","7":"J","6":"J","5":"M","4":"A","3":"M","2":"F","12":"D","11":"N","10":"O","1":"J"},"abbreviated":{"9":"Sep","8":"Aug","7":"Jul","6":"Jun","5":"May","4":"Apr","3":"Mar","2":"Feb","12":"Dec","11":"Nov","10":"Oct","1":"Jan"}},"format":{"wide":{"9":"September","8":"August","7":"July","6":"June","5":"May","4":"April","3":"March","2":"February","12":"December","11":"November","10":"October","1":"January"},"narrow":{"9":"S","8":"A","7":"J","6":"J","5":"M","4":"A","3":"M","2":"F","12":"D","11":"N","10":"O","1":"J"},"abbreviated":{"9":"Sep","8":"Aug","7":"Jul","6":"Jun","5":"May","4":"Apr","3":"Mar","2":"Feb","12":"Dec","11":"Nov","10":"Oct","1":"Jan"}}},"eras":{"era_narrow":{"123":"Tenpuku (1233–1234)","228":"Man’en (1860–1861)","128":"Ninji (1240–1243)","72":"Eichō (1096–1097)","95":"Eiryaku (1160–1161)","199":"Shōho (1644–1648)","223":"Bunsei (1818–1830)","93":"Hōgen (1156–1159)","39":"Kōhō (964–968)","140":"Shōō (1288–1293)","111":"Genkyū (1204–1206)","4":"Taihō (701–704)","52":"Kankō (1004–1012)","195":"Bunroku (1592–1596)","79":"Eikyū (1113–1118)","211":"Kyōhō (1716–1736)","126":"Ryakunin (1238–1239)","213":"Kanpō (1741–1744)","159":"Shōhei (1346–1370)","8":"Yōrō (717–724)","177":"Kōshō (1455–1457)","217":"Meiwa (1764–1772)","132":"Kōgen (1256–1257)","41":"Tenroku (970–973)","183":"Chōkyō (1487–1489)","15":"Jingo-keiun (767–770)","24":"Ninju (851–854)","214":"Enkyō (1744–1748)","63":"Kōhei (1058–1065)","120":"Antei (1227–1229)","76":"Kashō (1106–1108)","37":"Tentoku (957–961)","83":"Daiji (1126–1131)","18":"Enryaku (782–806)","57":"Chōgen (1028–1037)","101":"Shōan (1171–1175)","129":"Kangen (1243–1247)","96":"Ōho (1161–1163)","173":"Kakitsu (1441–1444)","190":"Tenbun (1532–1555)","109":"Shōji (1199–1201)","150":"Genō (1319–1321)","189":"Kyōroku (1528–1532)","230":"Genji (1864–1865)","229":"Bunkyū (1861–1864)","205":"Enpō (1673–1681)","175":"Hōtoku (1449–1452)","166":"Meitoku (1384–1387)","144":"Kagen (1303–1306)","186":"Bunki (1501–1504)","138":"Kenji (1275–1278)","5":"Keiun (704–708)","32":"Engi (901–923)","98":"Eiman (1165–1166)","122":"Jōei (1232–1233)","58":"Chōryaku (1037–1040)","17":"Ten-ō (781–782)","68":"Eihō (1081–1084)","174":"Bun’an (1444–1449)","149":"Bunpō (1317–1319)","170":"Ōei (1394–1428)","165":"Genchū (1384–1392)","231":"Keiō (1865–1868)","137":"Bun’ei (1264–1275)","16":"Hōki (770–780)","127":"En’ō (1239–1240)","10":"Tenpyō (729–749)","28":"Gangyō (877–885)","182":"Bunmei (1469–1487)","216":"Hōreki (1751–1764)","51":"Chōhō (999–1004)","110":"Kennin (1201–1204)","226":"Kaei (1848–1854)","100":"Kaō (1169–1171)","104":"Yōwa (1181–1182)","121":"Kanki (1229–1232)","125":"Katei (1235–1238)","0":"Taika (645–650)","198":"Kan’ei (1624–1644)","151":"Genkō (1321–1324)","88":"Kōji (1142–1144)","60":"Kantoku (1044–1046)","153":"Karyaku (1326–1329)","212":"Genbun (1736–1741)","206":"Tenna (1681–1684)","148":"Shōwa (1312–1317)","67":"Shōryaku (1077–1081)","45":"Eikan (983–985)","26":"Ten-an (857–859)","184":"Entoku (1489–1492)","1":"Hakuchi (650–671)","36":"Tenryaku (947–957)","194":"Tenshō (1573–1592)","133":"Shōka (1257–1259)","115":"Kenpō (1213–1219)","31":"Shōtai (898–901)","62":"Tengi (1053–1058)","188":"Taiei (1521–1528)","82":"Tenji (1124–1126)","20":"Kōnin (810–824)","6":"Wadō (708–715)","107":"Bunji (1185–1190)","113":"Jōgen (1207–1211)","146":"Enkyō (1308–1311)","47":"Eien (987–989)","208":"Genroku (1688–1704)","145":"Tokuji (1306–1308)","50":"Chōtoku (995–999)","85":"Chōshō (1132–1135)","215":"Kan’en (1748–1751)","168":"Kōō (1389–1390)","222":"Bunka (1804–1818)","102":"Angen (1175–1177)","224":"Tenpō (1830–1844)","23":"Kajō (848–851)","21":"Tenchō (824–834)","163":"Kōryaku (1379–1381)","155":"Genkō (1331–1334)","187":"Eishō (1504–1521)","78":"Ten-ei (1110–1113)","53":"Chōwa (1012–1017)","44":"Tengen (978–983)","64":"Jiryaku (1065–1069)","197":"Genna (1615–1624)","141":"Einin (1293–1299)","30":"Kanpyō (889–898)","81":"Hōan (1120–1124)","178":"Chōroku (1457–1460)","196":"Keichō (1596–1615)","97":"Chōkan (1163–1165)","179":"Kanshō (1460–1466)","154":"Gentoku (1329–1331)","203":"Manji (1658–1661)","35":"Tengyō (938–947)","232":"M","171":"Shōchō (1428–1429)","54":"Kannin (1017–1021)","80":"Gen’ei (1118–1120)","158":"Kōkoku (1340–1346)","218":"An’ei (1772–1781)","233":"T","75":"Chōji (1104–1106)","99":"Nin’an (1166–1169)","157":"Engen (1336–1340)","117":"Jōō (1222–1224)","225":"Kōka (1844–1848)","84":"Tenshō (1131–1132)","71":"Kahō (1094–1096)","204":"Kanbun (1661–1673)","27":"Jōgan (859–877)","73":"Jōtoku (1097–1099)","112":"Ken’ei (1206–1207)","201":"Jōō (1652–1655)","103":"Jishō (1177–1181)","119":"Karoku (1225–1227)","185":"Meiō (1492–1501)","161":"Bunchū (1372–1375)","134":"Shōgen (1259–1260)","147":"Ōchō (1311–1312)","66":"Shōho (1074–1077)","234":"S","48":"Eiso (989–990)","42":"Ten’en (973–976)","3":"Shuchō (686–701)","43":"Jōgen (976–978)","77":"Tennin (1108–1110)","9":"Jinki (724–729)","192":"Eiroku (1558–1570)","22":"Jōwa (834–848)","200":"Keian (1648–1652)","235":"H","143":"Kengen (1302–1303)","176":"Kyōtoku (1452–1455)","221":"Kyōwa (1801–1804)","34":"Jōhei (931–938)","193":"Genki (1570–1573)","181":"Ōnin (1467–1469)","114":"Kenryaku (1211–1213)","86":"Hōen (1135–1141)","40":"Anna (968–970)","2":"Hakuhō (672–686)","105":"Juei (1182–1184)","106":"Genryaku (1184–1185)","202":"Meireki (1655–1658)","91":"Ninpei (1151–1154)","70":"Kanji (1087–1094)","69":"Ōtoku (1084–1087)","12":"Tenpyō-shōhō (749–757)","156":"Kenmu (1334–1336)","108":"Kenkyū (1190–1199)","180":"Bunshō (1466–1467)","56":"Manju (1024–1028)","130":"Hōji (1247–1249)","89":"Ten’yō (1144–1145)","59":"Chōkyū (1040–1044)","136":"Kōchō (1261–1264)","13":"Tenpyō-hōji (757–765)","87":"Eiji (1141–1142)","131":"Kenchō (1249–1256)","29":"Ninna (885–889)","139":"Kōan (1278–1288)","74":"Kōwa (1099–1104)","116":"Jōkyū (1219–1222)","124":"Bunryaku (1234–1235)","55":"Jian (1021–1024)","191":"Kōji (1555–1558)","94":"Heiji (1159–1160)","118":"Gennin (1224–1225)","25":"Saikō (854–857)","33":"Enchō (923–931)","90":"Kyūan (1145–1151)","11":"Tenpyō-kampō (749–749)","172":"Eikyō (1429–1441)","46":"Kanna (985–987)","7":"Reiki (715–717)","38":"Ōwa (961–964)","152":"Shōchū (1324–1326)","14":"Tenpyō-jingo (765–767)","164":"Kōwa (1381–1384)","207":"Jōkyō (1684–1688)","167":"Kakei (1387–1389)","19":"Daidō (806–810)","135":"Bun’ō (1260–1261)","65":"Enkyū (1069–1074)","210":"Shōtoku (1711–1716)","219":"Tenmei (1781–1789)","220":"Kansei (1789–1801)","169":"Meitoku (1390–1394)","49":"Shōryaku (990–995)","209":"Hōei (1704–1711)","142":"Shōan (1299–1302)","61":"Eishō (1046–1053)","160":"Kentoku (1370–1372)","162":"Tenju (1375–1379)","92":"Kyūju (1154–1156)","227":"Ansei (1854–1860)"},"era_names":{"123":"Tenpuku (1233–1234)","228":"Man’en (1860–1861)","128":"Ninji (1240–1243)","72":"Eichō (1096–1097)","95":"Eiryaku (1160–1161)","199":"Shōho (1644–1648)","223":"Bunsei (1818–1830)","93":"Hōgen (1156–1159)","39":"Kōhō (964–968)","140":"Shōō (1288–1293)","111":"Genkyū (1204–1206)","4":"Taihō (701–704)","52":"Kankō (1004–1012)","195":"Bunroku (1592–1596)","79":"Eikyū (1113–1118)","211":"Kyōhō (1716–1736)","126":"Ryakunin (1238–1239)","213":"Kanpō (1741–1744)","159":"Shōhei (1346–1370)","8":"Yōrō (717–724)","177":"Kōshō (1455–1457)","217":"Meiwa (1764–1772)","132":"Kōgen (1256–1257)","41":"Tenroku (970–973)","183":"Chōkyō (1487–1489)","15":"Jingo-keiun (767–770)","24":"Ninju (851–854)","214":"Enkyō (1744–1748)","63":"Kōhei (1058–1065)","120":"Antei (1227–1229)","76":"Kashō (1106–1108)","37":"Tentoku (957–961)","83":"Daiji (1126–1131)","18":"Enryaku (782–806)","57":"Chōgen (1028–1037)","101":"Shōan (1171–1175)","129":"Kangen (1243–1247)","96":"Ōho (1161–1163)","173":"Kakitsu (1441–1444)","190":"Tenbun (1532–1555)","109":"Shōji (1199–1201)","150":"Genō (1319–1321)","189":"Kyōroku (1528–1532)","230":"Genji (1864–1865)","229":"Bunkyū (1861–1864)","205":"Enpō (1673–1681)","175":"Hōtoku (1449–1452)","166":"Meitoku (1384–1387)","144":"Kagen (1303–1306)","186":"Bunki (1501–1504)","138":"Kenji (1275–1278)","5":"Keiun (704–708)","32":"Engi (901–923)","98":"Eiman (1165–1166)","122":"Jōei (1232–1233)","58":"Chōryaku (1037–1040)","17":"Ten-ō (781–782)","68":"Eihō (1081–1084)","174":"Bun’an (1444–1449)","149":"Bunpō (1317–1319)","170":"Ōei (1394–1428)","165":"Genchū (1384–1392)","231":"Keiō (1865–1868)","137":"Bun’ei (1264–1275)","16":"Hōki (770–780)","127":"En’ō (1239–1240)","10":"Tenpyō (729–749)","28":"Gangyō (877–885)","182":"Bunmei (1469–1487)","216":"Hōreki (1751–1764)","51":"Chōhō (999–1004)","110":"Kennin (1201–1204)","226":"Kaei (1848–1854)","100":"Kaō (1169–1171)","104":"Yōwa (1181–1182)","121":"Kanki (1229–1232)","125":"Katei (1235–1238)","0":"Taika (645–650)","198":"Kan’ei (1624–1644)","151":"Genkō (1321–1324)","88":"Kōji (1142–1144)","60":"Kantoku (1044–1046)","153":"Karyaku (1326–1329)","212":"Genbun (1736–1741)","206":"Tenna (1681–1684)","148":"Shōwa (1312–1317)","67":"Shōryaku (1077–1081)","45":"Eikan (983–985)","26":"Ten-an (857–859)","184":"Entoku (1489–1492)","1":"Hakuchi (650–671)","36":"Tenryaku (947–957)","194":"Tenshō (1573–1592)","133":"Shōka (1257–1259)","115":"Kenpō (1213–1219)","31":"Shōtai (898–901)","62":"Tengi (1053–1058)","188":"Taiei (1521–1528)","82":"Tenji (1124–1126)","20":"Kōnin (810–824)","6":"Wadō (708–715)","107":"Bunji (1185–1190)","113":"Jōgen (1207–1211)","146":"Enkyō (1308–1311)","47":"Eien (987–989)","208":"Genroku (1688–1704)","145":"Tokuji (1306–1308)","50":"Chōtoku (995–999)","85":"Chōshō (1132–1135)","215":"Kan’en (1748–1751)","168":"Kōō (1389–1390)","222":"Bunka (1804–1818)","102":"Angen (1175–1177)","224":"Tenpō (1830–1844)","23":"Kajō (848–851)","21":"Tenchō (824–834)","163":"Kōryaku (1379–1381)","155":"Genkō (1331–1334)","187":"Eishō (1504–1521)","78":"Ten-ei (1110–1113)","53":"Chōwa (1012–1017)","44":"Tengen (978–983)","64":"Jiryaku (1065–1069)","197":"Genna (1615–1624)","141":"Einin (1293–1299)","30":"Kanpyō (889–898)","81":"Hōan (1120–1124)","178":"Chōroku (1457–1460)","196":"Keichō (1596–1615)","97":"Chōkan (1163–1165)","179":"Kanshō (1460–1466)","154":"Gentoku (1329–1331)","203":"Manji (1658–1661)","35":"Tengyō (938–947)","232":"Meiji","171":"Shōchō (1428–1429)","54":"Kannin (1017–1021)","80":"Gen’ei (1118–1120)","158":"Kōkoku (1340–1346)","218":"An’ei (1772–1781)","233":"Taishō","75":"Chōji (1104–1106)","99":"Nin’an (1166–1169)","157":"Engen (1336–1340)","117":"Jōō (1222–1224)","225":"Kōka (1844–1848)","84":"Tenshō (1131–1132)","71":"Kahō (1094–1096)","204":"Kanbun (1661–1673)","27":"Jōgan (859–877)","73":"Jōtoku (1097–1099)","112":"Ken’ei (1206–1207)","201":"Jōō (1652–1655)","103":"Jishō (1177–1181)","119":"Karoku (1225–1227)","185":"Meiō (1492–1501)","161":"Bunchū (1372–1375)","134":"Shōgen (1259–1260)","147":"Ōchō (1311–1312)","66":"Shōho (1074–1077)","234":"Shōwa","48":"Eiso (989–990)","42":"Ten’en (973–976)","3":"Shuchō (686–701)","43":"Jōgen (976–978)","77":"Tennin (1108–1110)","9":"Jinki (724–729)","192":"Eiroku (1558–1570)","22":"Jōwa (834–848)","200":"Keian (1648–1652)","235":"Heisei","143":"Kengen (1302–1303)","176":"Kyōtoku (1452–1455)","221":"Kyōwa (1801–1804)","34":"Jōhei (931–938)","193":"Genki (1570–1573)","181":"Ōnin (1467–1469)","114":"Kenryaku (1211–1213)","86":"Hōen (1135–1141)","40":"Anna (968–970)","2":"Hakuhō (672–686)","105":"Juei (1182–1184)","106":"Genryaku (1184–1185)","202":"Meireki (1655–1658)","91":"Ninpei (1151–1154)","70":"Kanji (1087–1094)","69":"Ōtoku (1084–1087)","12":"Tenpyō-shōhō (749–757)","156":"Kenmu (1334–1336)","108":"Kenkyū (1190–1199)","180":"Bunshō (1466–1467)","56":"Manju (1024–1028)","130":"Hōji (1247–1249)","89":"Ten’yō (1144–1145)","59":"Chōkyū (1040–1044)","136":"Kōchō (1261–1264)","13":"Tenpyō-hōji (757–765)","87":"Eiji (1141–1142)","131":"Kenchō (1249–1256)","29":"Ninna (885–889)","139":"Kōan (1278–1288)","74":"Kōwa (1099–1104)","116":"Jōkyū (1219–1222)","124":"Bunryaku (1234–1235)","55":"Jian (1021–1024)","191":"Kōji (1555–1558)","94":"Heiji (1159–1160)","118":"Gennin (1224–1225)","25":"Saikō (854–857)","33":"Enchō (923–931)","90":"Kyūan (1145–1151)","11":"Tenpyō-kampō (749–749)","172":"Eikyō (1429–1441)","46":"Kanna (985–987)","7":"Reiki (715–717)","38":"Ōwa (961–964)","152":"Shōchū (1324–1326)","14":"Tenpyō-jingo (765–767)","164":"Kōwa (1381–1384)","207":"Jōkyō (1684–1688)","167":"Kakei (1387–1389)","19":"Daidō (806–810)","135":"Bun’ō (1260–1261)","65":"Enkyū (1069–1074)","210":"Shōtoku (1711–1716)","219":"Tenmei (1781–1789)","220":"Kansei (1789–1801)","169":"Meitoku (1390–1394)","49":"Shōryaku (990–995)","209":"Hōei (1704–1711)","142":"Shōan (1299–1302)","61":"Eishō (1046–1053)","160":"Kentoku (1370–1372)","162":"Tenju (1375–1379)","92":"Kyūju (1154–1156)","227":"Ansei (1854–1860)"},"era_abbr":{"123":"Tenpuku (1233–1234)","228":"Man’en (1860–1861)","128":"Ninji (1240–1243)","72":"Eichō (1096–1097)","95":"Eiryaku (1160–1161)","199":"Shōho (1644–1648)","223":"Bunsei (1818–1830)","93":"Hōgen (1156–1159)","39":"Kōhō (964–968)","140":"Shōō (1288–1293)","111":"Genkyū (1204–1206)","4":"Taihō (701–704)","52":"Kankō (1004–1012)","195":"Bunroku (1592–1596)","79":"Eikyū (1113–1118)","211":"Kyōhō (1716–1736)","126":"Ryakunin (1238–1239)","213":"Kanpō (1741–1744)","159":"Shōhei (1346–1370)","8":"Yōrō (717–724)","177":"Kōshō (1455–1457)","217":"Meiwa (1764–1772)","132":"Kōgen (1256–1257)","41":"Tenroku (970–973)","183":"Chōkyō (1487–1489)","15":"Jingo-keiun (767–770)","24":"Ninju (851–854)","214":"Enkyō (1744–1748)","63":"Kōhei (1058–1065)","120":"Antei (1227–1229)","76":"Kashō (1106–1108)","37":"Tentoku (957–961)","83":"Daiji (1126–1131)","18":"Enryaku (782–806)","57":"Chōgen (1028–1037)","101":"Shōan (1171–1175)","129":"Kangen (1243–1247)","96":"Ōho (1161–1163)","173":"Kakitsu (1441–1444)","190":"Tenbun (1532–1555)","109":"Shōji (1199–1201)","150":"Genō (1319–1321)","189":"Kyōroku (1528–1532)","230":"Genji (1864–1865)","229":"Bunkyū (1861–1864)","205":"Enpō (1673–1681)","175":"Hōtoku (1449–1452)","166":"Meitoku (1384–1387)","144":"Kagen (1303–1306)","186":"Bunki (1501–1504)","138":"Kenji (1275–1278)","5":"Keiun (704–708)","32":"Engi (901–923)","98":"Eiman (1165–1166)","122":"Jōei (1232–1233)","58":"Chōryaku (1037–1040)","17":"Ten-ō (781–782)","68":"Eihō (1081–1084)","174":"Bun’an (1444–1449)","149":"Bunpō (1317–1319)","170":"Ōei (1394–1428)","165":"Genchū (1384–1392)","231":"Keiō (1865–1868)","137":"Bun’ei (1264–1275)","16":"Hōki (770–780)","127":"En’ō (1239–1240)","10":"Tenpyō (729–749)","28":"Gangyō (877–885)","182":"Bunmei (1469–1487)","216":"Hōreki (1751–1764)","51":"Chōhō (999–1004)","110":"Kennin (1201–1204)","226":"Kaei (1848–1854)","100":"Kaō (1169–1171)","104":"Yōwa (1181–1182)","121":"Kanki (1229–1232)","125":"Katei (1235–1238)","0":"Taika (645–650)","198":"Kan’ei (1624–1644)","151":"Genkō (1321–1324)","88":"Kōji (1142–1144)","60":"Kantoku (1044–1046)","153":"Karyaku (1326–1329)","212":"Genbun (1736–1741)","206":"Tenna (1681–1684)","148":"Shōwa (1312–1317)","67":"Shōryaku (1077–1081)","45":"Eikan (983–985)","26":"Ten-an (857–859)","184":"Entoku (1489–1492)","1":"Hakuchi (650–671)","36":"Tenryaku (947–957)","194":"Tenshō (1573–1592)","133":"Shōka (1257–1259)","115":"Kenpō (1213–1219)","31":"Shōtai (898–901)","62":"Tengi (1053–1058)","188":"Taiei (1521–1528)","82":"Tenji (1124–1126)","20":"Kōnin (810–824)","6":"Wadō (708–715)","107":"Bunji (1185–1190)","113":"Jōgen (1207–1211)","146":"Enkyō (1308–1311)","47":"Eien (987–989)","208":"Genroku (1688–1704)","145":"Tokuji (1306–1308)","50":"Chōtoku (995–999)","85":"Chōshō (1132–1135)","215":"Kan’en (1748–1751)","168":"Kōō (1389–1390)","222":"Bunka (1804–1818)","102":"Angen (1175–1177)","224":"Tenpō (1830–1844)","23":"Kajō (848–851)","21":"Tenchō (824–834)","163":"Kōryaku (1379–1381)","155":"Genkō (1331–1334)","187":"Eishō (1504–1521)","78":"Ten-ei (1110–1113)","53":"Chōwa (1012–1017)","44":"Tengen (978–983)","64":"Jiryaku (1065–1069)","197":"Genna (1615–1624)","141":"Einin (1293–1299)","30":"Kanpyō (889–898)","81":"Hōan (1120–1124)","178":"Chōroku (1457–1460)","196":"Keichō (1596–1615)","97":"Chōkan (1163–1165)","179":"Kanshō (1460–1466)","154":"Gentoku (1329–1331)","203":"Manji (1658–1661)","35":"Tengyō (938–947)","232":"Meiji","171":"Shōchō (1428–1429)","54":"Kannin (1017–1021)","80":"Gen’ei (1118–1120)","158":"Kōkoku (1340–1346)","218":"An’ei (1772–1781)","233":"Taishō","75":"Chōji (1104–1106)","99":"Nin’an (1166–1169)","157":"Engen (1336–1340)","117":"Jōō (1222–1224)","225":"Kōka (1844–1848)","84":"Tenshō (1131–1132)","71":"Kahō (1094–1096)","204":"Kanbun (1661–1673)","27":"Jōgan (859–877)","73":"Jōtoku (1097–1099)","112":"Ken’ei (1206–1207)","201":"Jōō (1652–1655)","103":"Jishō (1177–1181)","119":"Karoku (1225–1227)","185":"Meiō (1492–1501)","161":"Bunchū (1372–1375)","134":"Shōgen (1259–1260)","147":"Ōchō (1311–1312)","66":"Shōho (1074–1077)","234":"Shōwa","48":"Eiso (989–990)","42":"Ten’en (973–976)","3":"Shuchō (686–701)","43":"Jōgen (976–978)","77":"Tennin (1108–1110)","9":"Jinki (724–729)","192":"Eiroku (1558–1570)","22":"Jōwa (834–848)","200":"Keian (1648–1652)","235":"Heisei","143":"Kengen (1302–1303)","176":"Kyōtoku (1452–1455)","221":"Kyōwa (1801–1804)","34":"Jōhei (931–938)","193":"Genki (1570–1573)","181":"Ōnin (1467–1469)","114":"Kenryaku (1211–1213)","86":"Hōen (1135–1141)","40":"Anna (968–970)","2":"Hakuhō (672–686)","105":"Juei (1182–1184)","106":"Genryaku (1184–1185)","202":"Meireki (1655–1658)","91":"Ninpei (1151–1154)","70":"Kanji (1087–1094)","69":"Ōtoku (1084–1087)","12":"Tenpyō-shōhō (749–757)","156":"Kenmu (1334–1336)","108":"Kenkyū (1190–1199)","180":"Bunshō (1466–1467)","56":"Manju (1024–1028)","130":"Hōji (1247–1249)","89":"Ten’yō (1144–1145)","59":"Chōkyū (1040–1044)","136":"Kōchō (1261–1264)","13":"Tenpyō-hōji (757–765)","87":"Eiji (1141–1142)","131":"Kenchō (1249–1256)","29":"Ninna (885–889)","139":"Kōan (1278–1288)","74":"Kōwa (1099–1104)","116":"Jōkyū (1219–1222)","124":"Bunryaku (1234–1235)","55":"Jian (1021–1024)","191":"Kōji (1555–1558)","94":"Heiji (1159–1160)","118":"Gennin (1224–1225)","25":"Saikō (854–857)","33":"Enchō (923–931)","90":"Kyūan (1145–1151)","11":"Tenpyō-kampō (749–749)","172":"Eikyō (1429–1441)","46":"Kanna (985–987)","7":"Reiki (715–717)","38":"Ōwa (961–964)","152":"Shōchū (1324–1326)","14":"Tenpyō-jingo (765–767)","164":"Kōwa (1381–1384)","207":"Jōkyō (1684–1688)","167":"Kakei (1387–1389)","19":"Daidō (806–810)","135":"Bun’ō (1260–1261)","65":"Enkyū (1069–1074)","210":"Shōtoku (1711–1716)","219":"Tenmei (1781–1789)","220":"Kansei (1789–1801)","169":"Meitoku (1390–1394)","49":"Shōryaku (990–995)","209":"Hōei (1704–1711)","142":"Shōan (1299–1302)","61":"Eishō (1046–1053)","160":"Kentoku (1370–1372)","162":"Tenju (1375–1379)","92":"Kyūju (1154–1156)","227":"Ansei (1854–1860)"}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM y – MMMM y G","m":"MMMM – MMMM y G"},"y_mmm_ed":{"y":"E, d MMM y – E, d MMM y G","m":"E, d MMM – E, d MMM y G","d":"E, d – E, d MMM y G"},"y_mmm":{"y":"MMM y – MMM y G","m":"MMM – MMM y G"},"y_mm_md":{"y":"d MMM y – d MMM y G","m":"d MMM – d MMM y G","d":"d – d MMM y G"},"y_md":{"y":"dd/MM/y – dd/MM/y GGGGG","m":"dd/MM/y – dd/MM/y GGGGG","d":"dd/MM/y – dd/MM/y GGGGG"},"y_m_ed":{"y":"E, dd/MM/y – E, dd/MM/y GGGGG","m":"E, dd/MM/y – E, dd/MM/y GGGGG","d":"E, dd/MM/y – E, dd/MM/y GGGGG"},"y_m":{"y":"MM/y – MM/y GGGGG","m":"MM/y – MM/y GGGGG"},"y":{"y":"y – y G"},"mmm_ed":{"m":"E d MMM – E d MMM","d":"E d – E d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"dd/MM – dd/MM","d":"dd/MM – dd/MM"},"m_ed":{"m":"E dd/MM – E dd/MM","d":"E dd/MM – E dd/MM"},"m":{"m":"M – M"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"md":"dd/MM","mmm_md":"d MMMM","yyyy_mmm_ed":"E, d MMM y G","h":"h a","yyyy_qqq":"QQQ y G","bhm":"h:mm B","mm_md":"d MMM","d":"d","yyyy":"y G","e_hm":"E HH:mm","ms":"mm:ss","yyyy_m":"MM/y GGGGG","e_hms":"E HH:mm:ss","gy":"y G","ed":"E d","hms":"h:mm:ss a","bhms":"h:mm:ss B","yyyy_qqqq":"QQQQ y G","y":"y G","mmm":"LLL","gy_mm_md":"d MMM y G","yyyy_mm_md":"d MMM y G","m":"LL","gy_mmm_ed":"E, d MMM y G","yyyy_mmmm":"MMMM y G","ehm":"E h:mm a","gy_mmm":"MMM y G","yyyy_m_ed":"E, dd/MM/y GGGGG","yyyy_md":"dd/MM/y GGGGG","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","yyyy_mmm":"MMM y G","m_ed":"E, dd/MM"},"append_items":{"year":"{0} {1}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{0} {1}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"M/d/y GGGGG","medium":"MMM d, y G","long":"MMMM d, y G","full":"EEEE, MMMM d, y G"}},"islamic_umalqura":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"Ramadan","8":"Shaʻban","7":"Rajab","6":"Jumada II","5":"Jumada I","4":"Rabiʻ II","3":"Rabiʻ I","2":"Safar","12":"Dhuʻl-Hijjah","11":"Dhuʻl-Qiʻdah","10":"Shawwal","1":"Muharram"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Ram.","8":"Sha.","7":"Raj.","6":"Jum. II","5":"Jum. I","4":"Rab. II","3":"Rab. I","2":"Saf.","12":"Dhuʻl-H.","11":"Dhuʻl-Q.","10":"Shaw.","1":"Muh."}},"format":{"wide":{"9":"Ramadan","8":"Shaʻban","7":"Rajab","6":"Jumada II","5":"Jumada I","4":"Rabiʻ II","3":"Rabiʻ I","2":"Safar","12":"Dhuʻl-Hijjah","11":"Dhuʻl-Qiʻdah","10":"Shawwal","1":"Muharram"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Ram.","8":"Sha.","7":"Raj.","6":"Jum. II","5":"Jum. I","4":"Rab. II","3":"Rab. I","2":"Saf.","12":"Dhuʻl-H.","11":"Dhuʻl-Q.","10":"Shaw.","1":"Muh."}}},"eras":{"era_narrow":{"0":"AH"},"era_names":{"0":"AH"},"era_abbr":{"0":"AH"}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM y – MMMM y G","m":"MMMM – MMMM y G"},"y_mmm_ed":{"y":"E, d MMM y – E, d MMM y G","m":"E, d MMM – E, d MMM y G","d":"E, d – E, d MMM y G"},"y_mmm":{"y":"MMM y – MMM y G","m":"MMM – MMM y G"},"y_mm_md":{"y":"d MMM y – d MMM y G","m":"d MMM – d MMM y G","d":"d – d MMM y G"},"y_md":{"y":"dd/MM/y – dd/MM/y GGGGG","m":"dd/MM/y – dd/MM/y GGGGG","d":"dd/MM/y – dd/MM/y GGGGG"},"y_m_ed":{"y":"E, dd/MM/y – E, dd/MM/y GGGGG","m":"E, dd/MM/y – E, dd/MM/y GGGGG","d":"E, dd/MM/y – E, dd/MM/y GGGGG"},"y_m":{"y":"MM/y – MM/y GGGGG","m":"MM/y – MM/y GGGGG"},"y":{"y":"y – y G"},"mmm_ed":{"m":"E d MMM – E d MMM","d":"E d – E d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"dd/MM – dd/MM","d":"dd/MM – dd/MM"},"m_ed":{"m":"E dd/MM – E dd/MM","d":"E dd/MM – E dd/MM"},"m":{"m":"M – M"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"md":"dd/MM","mmm_md":"d MMMM","yyyy_mmm_ed":"E, d MMM y G","h":"h a","yyyy_qqq":"QQQ y G","bhm":"h:mm B","mm_md":"d MMM","d":"d","yyyy":"y G","e_hm":"E HH:mm","ms":"mm:ss","yyyy_m":"MM/y GGGGG","e_hms":"E HH:mm:ss","gy":"y G","ed":"E d","hms":"h:mm:ss a","bhms":"h:mm:ss B","yyyy_qqqq":"QQQQ y G","y":"y G","mmm":"LLL","gy_mm_md":"d MMM y G","yyyy_mm_md":"d MMM y G","m":"LL","gy_mmm_ed":"E, d MMM y G","yyyy_mmmm":"MMMM y G","ehm":"E h:mm a","gy_mmm":"MMM y G","yyyy_m_ed":"E, dd/MM/y GGGGG","yyyy_md":"dd/MM/y GGGGG","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","yyyy_mmm":"MMM y G","m_ed":"E, dd/MM"},"append_items":{"year":"{0} {1}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{0} {1}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"dd/MM/y GGGGG","medium":"d MMM y G","long":"d MMMM y G","full":"EEEE, d MMMM y G"}},"islamic_tbla":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"Ramadan","8":"Shaʻban","7":"Rajab","6":"Jumada II","5":"Jumada I","4":"Rabiʻ II","3":"Rabiʻ I","2":"Safar","12":"Dhuʻl-Hijjah","11":"Dhuʻl-Qiʻdah","10":"Shawwal","1":"Muharram"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Ram.","8":"Sha.","7":"Raj.","6":"Jum. II","5":"Jum. I","4":"Rab. II","3":"Rab. I","2":"Saf.","12":"Dhuʻl-H.","11":"Dhuʻl-Q.","10":"Shaw.","1":"Muh."}},"format":{"wide":{"9":"Ramadan","8":"Shaʻban","7":"Rajab","6":"Jumada II","5":"Jumada I","4":"Rabiʻ II","3":"Rabiʻ I","2":"Safar","12":"Dhuʻl-Hijjah","11":"Dhuʻl-Qiʻdah","10":"Shawwal","1":"Muharram"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Ram.","8":"Sha.","7":"Raj.","6":"Jum. II","5":"Jum. I","4":"Rab. II","3":"Rab. I","2":"Saf.","12":"Dhuʻl-H.","11":"Dhuʻl-Q.","10":"Shaw.","1":"Muh."}}},"eras":{"era_narrow":{"0":"AH"},"era_names":{"0":"AH"},"era_abbr":{"0":"AH"}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM y – MMMM y G","m":"MMMM – MMMM y G"},"y_mmm_ed":{"y":"E, d MMM y – E, d MMM y G","m":"E, d MMM – E, d MMM y G","d":"E, d – E, d MMM y G"},"y_mmm":{"y":"MMM y – MMM y G","m":"MMM – MMM y G"},"y_mm_md":{"y":"d MMM y – d MMM y G","m":"d MMM – d MMM y G","d":"d – d MMM y G"},"y_md":{"y":"dd/MM/y – dd/MM/y GGGGG","m":"dd/MM/y – dd/MM/y GGGGG","d":"dd/MM/y – dd/MM/y GGGGG"},"y_m_ed":{"y":"E, dd/MM/y – E, dd/MM/y GGGGG","m":"E, dd/MM/y – E, dd/MM/y GGGGG","d":"E, dd/MM/y – E, dd/MM/y GGGGG"},"y_m":{"y":"MM/y – MM/y GGGGG","m":"MM/y – MM/y GGGGG"},"y":{"y":"y – y G"},"mmm_ed":{"m":"E d MMM – E d MMM","d":"E d – E d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"dd/MM – dd/MM","d":"dd/MM – dd/MM"},"m_ed":{"m":"E dd/MM – E dd/MM","d":"E dd/MM – E dd/MM"},"m":{"m":"M – M"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"md":"dd/MM","mmm_md":"d MMMM","yyyy_mmm_ed":"E, d MMM y G","h":"h a","yyyy_qqq":"QQQ y G","bhm":"h:mm B","mm_md":"d MMM","d":"d","yyyy":"y G","e_hm":"E HH:mm","ms":"mm:ss","yyyy_m":"MM/y GGGGG","e_hms":"E HH:mm:ss","gy":"y G","ed":"E d","hms":"h:mm:ss a","bhms":"h:mm:ss B","yyyy_qqqq":"QQQQ y G","y":"y G","mmm":"LLL","gy_mm_md":"d MMM y G","yyyy_mm_md":"d MMM y G","m":"LL","gy_mmm_ed":"E, d MMM y G","yyyy_mmmm":"MMMM y G","ehm":"E h:mm a","gy_mmm":"MMM y G","yyyy_m_ed":"E, dd/MM/y GGGGG","yyyy_md":"dd/MM/y GGGGG","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","yyyy_mmm":"MMM y G","m_ed":"E, dd/MM"},"append_items":{"year":"{0} {1}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{0} {1}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"dd/MM/y GGGGG","medium":"d MMM y G","long":"d MMMM y G","full":"EEEE, d MMMM y G"}},"islamic_rgsa":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"Ramadan","8":"Shaʻban","7":"Rajab","6":"Jumada II","5":"Jumada I","4":"Rabiʻ II","3":"Rabiʻ I","2":"Safar","12":"Dhuʻl-Hijjah","11":"Dhuʻl-Qiʻdah","10":"Shawwal","1":"Muharram"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Ram.","8":"Sha.","7":"Raj.","6":"Jum. II","5":"Jum. I","4":"Rab. II","3":"Rab. I","2":"Saf.","12":"Dhuʻl-H.","11":"Dhuʻl-Q.","10":"Shaw.","1":"Muh."}},"format":{"wide":{"9":"Ramadan","8":"Shaʻban","7":"Rajab","6":"Jumada II","5":"Jumada I","4":"Rabiʻ II","3":"Rabiʻ I","2":"Safar","12":"Dhuʻl-Hijjah","11":"Dhuʻl-Qiʻdah","10":"Shawwal","1":"Muharram"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Ram.","8":"Sha.","7":"Raj.","6":"Jum. II","5":"Jum. I","4":"Rab. II","3":"Rab. I","2":"Saf.","12":"Dhuʻl-H.","11":"Dhuʻl-Q.","10":"Shaw.","1":"Muh."}}},"eras":{"era_narrow":{"0":"AH"},"era_names":{"0":"AH"},"era_abbr":{"0":"AH"}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM y – MMMM y G","m":"MMMM – MMMM y G"},"y_mmm_ed":{"y":"E, d MMM y – E, d MMM y G","m":"E, d MMM – E, d MMM y G","d":"E, d – E, d MMM y G"},"y_mmm":{"y":"MMM y – MMM y G","m":"MMM – MMM y G"},"y_mm_md":{"y":"d MMM y – d MMM y G","m":"d MMM – d MMM y G","d":"d – d MMM y G"},"y_md":{"y":"dd/MM/y – dd/MM/y GGGGG","m":"dd/MM/y – dd/MM/y GGGGG","d":"dd/MM/y – dd/MM/y GGGGG"},"y_m_ed":{"y":"E, dd/MM/y – E, dd/MM/y GGGGG","m":"E, dd/MM/y – E, dd/MM/y GGGGG","d":"E, dd/MM/y – E, dd/MM/y GGGGG"},"y_m":{"y":"MM/y – MM/y GGGGG","m":"MM/y – MM/y GGGGG"},"y":{"y":"y – y G"},"mmm_ed":{"m":"E d MMM – E d MMM","d":"E d – E d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"dd/MM – dd/MM","d":"dd/MM – dd/MM"},"m_ed":{"m":"E dd/MM – E dd/MM","d":"E dd/MM – E dd/MM"},"m":{"m":"M – M"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"md":"dd/MM","mmm_md":"d MMMM","yyyy_mmm_ed":"E, d MMM y G","h":"h a","yyyy_qqq":"QQQ y G","bhm":"h:mm B","mm_md":"d MMM","d":"d","yyyy":"y G","e_hm":"E HH:mm","ms":"mm:ss","yyyy_m":"MM/y GGGGG","e_hms":"E HH:mm:ss","gy":"y G","ed":"E d","hms":"h:mm:ss a","bhms":"h:mm:ss B","yyyy_qqqq":"QQQQ y G","y":"y G","mmm":"LLL","gy_mm_md":"d MMM y G","yyyy_mm_md":"d MMM y G","m":"LL","gy_mmm_ed":"E, d MMM y G","yyyy_mmmm":"MMMM y G","ehm":"E h:mm a","gy_mmm":"MMM y G","yyyy_m_ed":"E, dd/MM/y GGGGG","yyyy_md":"dd/MM/y GGGGG","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","yyyy_mmm":"MMM y G","m_ed":"E, dd/MM"},"append_items":{"year":"{0} {1}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{0} {1}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"dd/MM/y GGGGG","medium":"d MMM y G","long":"d MMMM y G","full":"EEEE, d MMMM y G"}},"islamic_civil":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"Ramadan","8":"Shaʻban","7":"Rajab","6":"Jumada II","5":"Jumada I","4":"Rabiʻ II","3":"Rabiʻ I","2":"Safar","12":"Dhuʻl-Hijjah","11":"Dhuʻl-Qiʻdah","10":"Shawwal","1":"Muharram"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Ram.","8":"Sha.","7":"Raj.","6":"Jum. II","5":"Jum. I","4":"Rab. II","3":"Rab. I","2":"Saf.","12":"Dhuʻl-H.","11":"Dhuʻl-Q.","10":"Shaw.","1":"Muh."}},"format":{"wide":{"9":"Ramadan","8":"Shaʻban","7":"Rajab","6":"Jumada II","5":"Jumada I","4":"Rabiʻ II","3":"Rabiʻ I","2":"Safar","12":"Dhuʻl-Hijjah","11":"Dhuʻl-Qiʻdah","10":"Shawwal","1":"Muharram"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Ram.","8":"Sha.","7":"Raj.","6":"Jum. II","5":"Jum. I","4":"Rab. II","3":"Rab. I","2":"Saf.","12":"Dhuʻl-H.","11":"Dhuʻl-Q.","10":"Shaw.","1":"Muh."}}},"eras":{"era_narrow":{"0":"AH"},"era_names":{"0":"AH"},"era_abbr":{"0":"AH"}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM y – MMMM y G","m":"MMMM – MMMM y G"},"y_mmm_ed":{"y":"E, d MMM y – E, d MMM y G","m":"E, d MMM – E, d MMM y G","d":"E, d – E, d MMM y G"},"y_mmm":{"y":"MMM y – MMM y G","m":"MMM – MMM y G"},"y_mm_md":{"y":"d MMM y – d MMM y G","m":"d MMM – d MMM y G","d":"d – d MMM y G"},"y_md":{"y":"dd/MM/y – dd/MM/y GGGGG","m":"dd/MM/y – dd/MM/y GGGGG","d":"dd/MM/y – dd/MM/y GGGGG"},"y_m_ed":{"y":"E, dd/MM/y – E, dd/MM/y GGGGG","m":"E, dd/MM/y – E, dd/MM/y GGGGG","d":"E, dd/MM/y – E, dd/MM/y GGGGG"},"y_m":{"y":"MM/y – MM/y GGGGG","m":"MM/y – MM/y GGGGG"},"y":{"y":"y – y G"},"mmm_ed":{"m":"E d MMM – E d MMM","d":"E d – E d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"dd/MM – dd/MM","d":"dd/MM – dd/MM"},"m_ed":{"m":"E dd/MM – E dd/MM","d":"E dd/MM – E dd/MM"},"m":{"m":"M – M"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"md":"dd/MM","mmm_md":"d MMMM","yyyy_mmm_ed":"E, d MMM y G","h":"h a","yyyy_qqq":"QQQ y G","bhm":"h:mm B","mm_md":"d MMM","d":"d","yyyy":"y G","e_hm":"E HH:mm","ms":"mm:ss","yyyy_m":"MM/y GGGGG","e_hms":"E HH:mm:ss","gy":"y G","ed":"E d","hms":"h:mm:ss a","bhms":"h:mm:ss B","yyyy_qqqq":"QQQQ y G","y":"y G","mmm":"LLL","gy_mm_md":"d MMM y G","yyyy_mm_md":"d MMM y G","m":"LL","gy_mmm_ed":"E, d MMM y G","yyyy_mmmm":"MMMM y G","ehm":"E h:mm a","gy_mmm":"MMM y G","yyyy_m_ed":"E, dd/MM/y GGGGG","yyyy_md":"dd/MM/y GGGGG","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","yyyy_mmm":"MMM y G","m_ed":"E, dd/MM"},"append_items":{"year":"{0} {1}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{0} {1}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"dd/MM/y GGGGG","medium":"d MMM y G","long":"d MMMM y G","full":"EEEE, d MMMM y G"}},"islamic":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"Ramadan","8":"Shaʻban","7":"Rajab","6":"Jumada II","5":"Jumada I","4":"Rabiʻ II","3":"Rabiʻ I","2":"Safar","12":"Dhuʻl-Hijjah","11":"Dhuʻl-Qiʻdah","10":"Shawwal","1":"Muharram"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Ram.","8":"Sha.","7":"Raj.","6":"Jum. II","5":"Jum. I","4":"Rab. II","3":"Rab. I","2":"Saf.","12":"Dhuʻl-H.","11":"Dhuʻl-Q.","10":"Shaw.","1":"Muh."}},"format":{"wide":{"9":"Ramadan","8":"Shaʻban","7":"Rajab","6":"Jumada II","5":"Jumada I","4":"Rabiʻ II","3":"Rabiʻ I","2":"Safar","12":"Dhuʻl-Hijjah","11":"Dhuʻl-Qiʻdah","10":"Shawwal","1":"Muharram"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Ram.","8":"Sha.","7":"Raj.","6":"Jum. II","5":"Jum. I","4":"Rab. II","3":"Rab. I","2":"Saf.","12":"Dhuʻl-H.","11":"Dhuʻl-Q.","10":"Shaw.","1":"Muh."}}},"eras":{"era_narrow":{"0":"AH"},"era_names":{"0":"AH"},"era_abbr":{"0":"AH"}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM y – MMMM y G","m":"MMMM – MMMM y G"},"y_mmm_ed":{"y":"E, d MMM y – E, d MMM y G","m":"E, d MMM – E, d MMM y G","d":"E, d – E, d MMM y G"},"y_mmm":{"y":"MMM y – MMM y G","m":"MMM – MMM y G"},"y_mm_md":{"y":"d MMM y – d MMM y G","m":"d MMM – d MMM y G","d":"d – d MMM y G"},"y_md":{"y":"dd/MM/y – dd/MM/y GGGGG","m":"dd/MM/y – dd/MM/y GGGGG","d":"dd/MM/y – dd/MM/y GGGGG"},"y_m_ed":{"y":"E, dd/MM/y – E, dd/MM/y GGGGG","m":"E, dd/MM/y – E, dd/MM/y GGGGG","d":"E, dd/MM/y – E, dd/MM/y GGGGG"},"y_m":{"y":"MM/y – MM/y GGGGG","m":"MM/y – MM/y GGGGG"},"y":{"y":"y – y G"},"mmm_ed":{"m":"E d MMM – E d MMM","d":"E d – E d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"dd/MM – dd/MM","d":"dd/MM – dd/MM"},"m_ed":{"m":"E dd/MM – E dd/MM","d":"E dd/MM – E dd/MM"},"m":{"m":"M – M"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"md":"dd/MM","mmm_md":"d MMMM","yyyy_mmm_ed":"E, d MMM y G","h":"h a","yyyy_qqq":"QQQ y G","bhm":"h:mm B","mm_md":"d MMM","d":"d","yyyy":"y G","e_hm":"E HH:mm","ms":"mm:ss","yyyy_m":"MM/y GGGGG","e_hms":"E HH:mm:ss","gy":"y G","ed":"E d","hms":"h:mm:ss a","bhms":"h:mm:ss B","yyyy_qqqq":"QQQQ y G","y":"y G","mmm":"LLL","gy_mm_md":"d MMM y G","yyyy_mm_md":"d MMM y G","m":"LL","gy_mmm_ed":"E, d MMM y G","yyyy_mmmm":"MMMM y G","ehm":"E h:mm a","gy_mmm":"MMM y G","yyyy_m_ed":"E, dd/MM/y GGGGG","yyyy_md":"dd/MM/y GGGGG","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","yyyy_mmm":"MMM y G","m_ed":"E, dd/MM"},"append_items":{"year":"{0} {1}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{0} {1}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"dd/MM/y GGGGG","medium":"d MMM y G","long":"d MMMM y G","full":"EEEE, d MMMM y G"}},"indian":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"Agrahayana","8":"Kartika","7":"Asvina","6":"Bhadra","5":"Sravana","4":"Asadha","3":"Jyaistha","2":"Vaisakha","12":"Phalguna","11":"Magha","10":"Pausa","1":"Chaitra"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Agrahayana","8":"Kartika","7":"Asvina","6":"Bhadra","5":"Sravana","4":"Asadha","3":"Jyaistha","2":"Vaisakha","12":"Phalguna","11":"Magha","10":"Pausa","1":"Chaitra"}},"format":{"wide":{"9":"Agrahayana","8":"Kartika","7":"Asvina","6":"Bhadra","5":"Sravana","4":"Asadha","3":"Jyaistha","2":"Vaisakha","12":"Phalguna","11":"Magha","10":"Pausa","1":"Chaitra"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Agrahayana","8":"Kartika","7":"Asvina","6":"Bhadra","5":"Sravana","4":"Asadha","3":"Jyaistha","2":"Vaisakha","12":"Phalguna","11":"Magha","10":"Pausa","1":"Chaitra"}}},"eras":{"era_narrow":{"0":"Saka"},"era_names":{"0":"Saka"},"era_abbr":{"0":"Saka"}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM y – MMMM y G","m":"MMMM – MMMM y G"},"y_mmm_ed":{"y":"E, d MMM y – E, d MMM y G","m":"E, d MMM – E, d MMM y G","d":"E, d – E, d MMM y G"},"y_mmm":{"y":"MMM y – MMM y G","m":"MMM – MMM y G"},"y_mm_md":{"y":"d MMM y – d MMM y G","m":"d MMM – d MMM y G","d":"d – d MMM y G"},"y_md":{"y":"dd/MM/y – dd/MM/y GGGGG","m":"dd/MM/y – dd/MM/y GGGGG","d":"dd/MM/y – dd/MM/y GGGGG"},"y_m_ed":{"y":"E, dd/MM/y – E, dd/MM/y GGGGG","m":"E, dd/MM/y – E, dd/MM/y GGGGG","d":"E, dd/MM/y – E, dd/MM/y GGGGG"},"y_m":{"y":"MM/y – MM/y GGGGG","m":"MM/y – MM/y GGGGG"},"y":{"y":"y – y G"},"mmm_ed":{"m":"E d MMM – E d MMM","d":"E d – E d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"dd/MM – dd/MM","d":"dd/MM – dd/MM"},"m_ed":{"m":"E dd/MM – E dd/MM","d":"E dd/MM – E dd/MM"},"m":{"m":"M – M"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"md":"dd/MM","mmm_md":"d MMMM","yyyy_mmm_ed":"E, d MMM y G","h":"h a","yyyy_qqq":"QQQ y G","bhm":"h:mm B","mm_md":"d MMM","d":"d","yyyy":"y G","e_hm":"E HH:mm","ms":"mm:ss","yyyy_m":"MM/y GGGGG","e_hms":"E HH:mm:ss","gy":"y G","ed":"E d","hms":"h:mm:ss a","bhms":"h:mm:ss B","yyyy_qqqq":"QQQQ y G","y":"y G","mmm":"LLL","gy_mm_md":"d MMM y G","yyyy_mm_md":"d MMM y G","m":"LL","gy_mmm_ed":"E, d MMM y G","yyyy_mmmm":"MMMM y G","ehm":"E h:mm a","gy_mmm":"MMM y G","yyyy_m_ed":"E, dd/MM/y GGGGG","yyyy_md":"dd/MM/y GGGGG","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","yyyy_mmm":"MMM y G","m_ed":"E, dd/MM"},"append_items":{"year":"{0} {1}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{0} {1}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"dd/MM/y GGGGG","medium":"d MMM y G","long":"d MMMM y G","full":"EEEE, d MMMM y G"}},"hebrew":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"Iyar","8":"Nisan","7_yeartype_leap":"Adar II","7":"Adar","6":"Adar I","5":"Shevat","4":"Tevet","3":"Kislev","2":"Heshvan","13":"Elul","12":"Av","11":"Tamuz","10":"Sivan","1":"Tishri"},"narrow":{"9":"9","8":"8","7_yeartype_leap":"7","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","13":"13","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Iyar","8":"Nisan","7_yeartype_leap":"Adar II","7":"Adar","6":"Adar I","5":"Shevat","4":"Tevet","3":"Kislev","2":"Heshvan","13":"Elul","12":"Av","11":"Tamuz","10":"Sivan","1":"Tishri"}},"format":{"wide":{"9":"Iyar","8":"Nisan","7_yeartype_leap":"Adar II","7":"Adar","6":"Adar I","5":"Shevat","4":"Tevet","3":"Kislev","2":"Heshvan","13":"Elul","12":"Av","11":"Tamuz","10":"Sivan","1":"Tishri"},"narrow":{"9":"9","8":"8","7_yeartype_leap":"7","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","13":"13","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Iyar","8":"Nisan","7_yeartype_leap":"Adar II","7":"Adar","6":"Adar I","5":"Shevat","4":"Tevet","3":"Kislev","2":"Heshvan","13":"Elul","12":"Av","11":"Tamuz","10":"Sivan","1":"Tishri"}}},"eras":{"era_narrow":{"0":"AM"},"era_names":{"0":"AM"},"era_abbr":{"0":"AM"}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM y – MMMM y","m":"MMMM – MMMM y"},"y_mmm_ed":{"y":"E, d MMM y – E, d MMM y","m":"E, d MMM – E, d MMM y","d":"E, d MMM – E, d MMM y"},"y_mmm":{"y":"MMM y – MMM y","m":"MMM – MMM y"},"y_mm_md":{"y":"d MMM y – d MMM y","m":"d MMM – d MMM y","d":"d – d MMM y"},"y_md":{"y":"d MMM y – d MMM y","m":"d MMM – d MMM y","d":"d – d MMM y"},"y_m_ed":{"y":"E, d MMM y – E, d MMM y","m":"E, d MMM – E, d MMM y","d":"E, d MMM – E, d MMM y"},"y_m":{"y":"MMM y – MMM y","m":"MMM – MMM y"},"y":{"y":"y – y G"},"mmm_ed":{"m":"E, d MMM – E, d MMM","d":"E, d MMM – E, d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"d MMM – d MMM","d":"d – d MMM"},"m_ed":{"m":"E, d MMM – E, d MMM","d":"E, d MMM – E, d MMM"},"m":{"m":"MMM – MMM"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"y_qqqq":"QQQQ y","md":"d MMM","mmm_md":"d MMMM","yyyy_mmm_ed":"E, d MMM y G","h":"h a","yyyy_qqq":"QQQ y G","bhm":"h:mm B","mm_md":"d MMM","d":"d","yyyy":"y G","e_hm":"E HH:mm","ms":"mm:ss","y_mm_md":"d MMM y","y_qqq":"QQQ y","yyyy_m":"MM/y GGGGG","e_hms":"E HH:mm:ss","gy":"y G","ed":"E d","y_m":"MMM y","y_m_ed":"E, d MMM y","y_mmm_ed":"E, d MMM y","hms":"h:mm:ss a","bhms":"h:mm:ss B","yyyy_qqqq":"QQQQ y G","y":"y","mmm":"LLL","gy_mm_md":"d MMM y G","yyyy_mm_md":"d MMM y G","m":"L","y_md":"d MMM y","gy_mmm_ed":"E, d MMM y G","y_mmm":"MMM y","yyyy_mmmm":"MMMM y G","ehm":"E h:mm a","gy_mmm":"MMM y G","yyyy_m_ed":"E, dd/MM/y GGGGG","yyyy_md":"dd/MM/y GGGGG","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","yyyy_mmm":"MMM y G","m_ed":"E, d MMM","y_mmmm":"MMMM y"},"append_items":{"year":"{0} {1}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{0} {1}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"d MMM y","medium":"d MMM y","long":"d MMMM y","full":"EEEE, d MMMM y"}},"gregorian":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"September","8":"August","7":"July","6":"June","5":"May","4":"April","3":"March","2":"February","12":"December","11":"November","10":"October","1":"January"},"narrow":{"9":"S","8":"A","7":"J","6":"J","5":"M","4":"A","3":"M","2":"F","12":"D","11":"N","10":"O","1":"J"},"abbreviated":{"9":"Sep","8":"Aug","7":"Jul","6":"Jun","5":"May","4":"Apr","3":"Mar","2":"Feb","12":"Dec","11":"Nov","10":"Oct","1":"Jan"}},"format":{"wide":{"9":"September","8":"August","7":"July","6":"June","5":"May","4":"April","3":"March","2":"February","12":"December","11":"November","10":"October","1":"January"},"narrow":{"9":"S","8":"A","7":"J","6":"J","5":"M","4":"A","3":"M","2":"F","12":"D","11":"N","10":"O","1":"J"},"abbreviated":{"9":"Sep","8":"Aug","7":"Jul","6":"Jun","5":"May","4":"Apr","3":"Mar","2":"Feb","12":"Dec","11":"Nov","10":"Oct","1":"Jan"}}},"eras":{"era_narrow":{"1_alt_variant":"CE","1":"A","0_alt_variant":"BCE","0":"B"},"era_names":{"1_alt_variant":"Common Era","1":"Anno Domini","0_alt_variant":"Before Common Era","0":"Before Christ"},"era_abbr":{"1_alt_variant":"CE","1":"AD","0_alt_variant":"BCE","0":"BC"}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM y – MMMM y","m":"MMMM – MMMM y"},"y_mmm_ed":{"y":"E, d MMM y – E, d MMM y","m":"E, d MMM – E, d MMM y","d":"E, d – E, d MMM y"},"y_mmm":{"y":"MMM y – MMM y","m":"MMM – MMM y"},"y_mm_md":{"y":"d MMM y – d MMM y","m":"d MMM – d MMM y","d":"d – d MMM y"},"y_md":{"y":"dd/MM/y – dd/MM/y","m":"dd/MM/y – dd/MM/y","d":"dd/MM/y – dd/MM/y"},"y_m_ed":{"y":"E, dd/MM/y – E, dd/MM/y","m":"E, dd/MM/y – E, dd/MM/y","d":"E, dd/MM/y – E, dd/MM/y"},"y_m":{"y":"MM/y – MM/y","m":"MM/y – MM/y"},"y":{"y":"y – y"},"mmm_ed":{"m":"E d MMM – E d MMM","d":"E d – E d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"dd/MM – dd/MM","d":"dd/MM – dd/MM"},"m_ed":{"m":"E dd/MM – E dd/MM","d":"E dd/MM – E dd/MM"},"m":{"m":"M – M"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"m_mdd":"dd/MM","y_qqqq":"QQQQ y","hmsv":"h:mm:ss a v","hmv":"h:mm a v","md":"dd/MM","mmm_md":"d MMMM","yw_count_one":"'week' w 'of' Y","h":"h a","bhm":"h:mm B","mm_md":"d MMM","d":"d","e_hm":"E HH:mm","ms":"mm:ss","y_mm_md":"d MMM y","y_qqq":"QQQ y","e_hms":"E HH:mm:ss","gy":"y G","ed":"E d","y_m":"MM/y","y_m_ed":"E, dd/MM/y","y_mmm_ed":"E, d MMM y","hms":"h:mm:ss a","bhms":"h:mm:ss B","y":"y","mmm":"LLL","gy_mm_md":"d MMM y G","mmmm_w_count_one":"'week' W 'of' MMMM","m":"L","mmmm_w_count_other":"'week' W 'of' MMMM","y_md":"dd/MM/y","gy_mmm_ed":"E, d MMM y G","y_mmm":"MMM y","ehm":"E h:mm a","gy_mmm":"MMM y G","yw_count_other":"'week' w 'of' Y","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","m_ed":"E, dd/MM","y_mmmm":"MMMM y"},"append_items":{"year":"{0} {1}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{0} {1}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"dd/MM/y","medium":"d MMM y","long":"d MMMM y","full":"EEEE, d MMMM y"}},"generic":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"M09","8":"M08","7":"M07","6":"M06","5":"M05","4":"M04","3":"M03","2":"M02","12":"M12","11":"M11","10":"M10","1":"M01"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"M09","8":"M08","7":"M07","6":"M06","5":"M05","4":"M04","3":"M03","2":"M02","12":"M12","11":"M11","10":"M10","1":"M01"}},"format":{"wide":{"9":"M09","8":"M08","7":"M07","6":"M06","5":"M05","4":"M04","3":"M03","2":"M02","12":"M12","11":"M11","10":"M10","1":"M01"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"M09","8":"M08","7":"M07","6":"M06","5":"M05","4":"M04","3":"M03","2":"M02","12":"M12","11":"M11","10":"M10","1":"M01"}}},"eras":{"era_narrow":{"1":"ERA1","0":"ERA0"},"era_names":{"1":"ERA1","0":"ERA0"},"era_abbr":{"1":"ERA1","0":"ERA0"}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM y – MMMM y G","m":"MMMM – MMMM y G"},"y_mmm_ed":{"y":"E, d MMM y – E, d MMM y G","m":"E, d MMM – E, d MMM y G","d":"E, d – E, d MMM y G"},"y_mmm":{"y":"MMM y – MMM y G","m":"MMM – MMM y G"},"y_mm_md":{"y":"d MMM y – d MMM y G","m":"d MMM – d MMM y G","d":"d – d MMM y G"},"y_md":{"y":"dd/MM/y – dd/MM/y GGGGG","m":"dd/MM/y – dd/MM/y GGGGG","d":"dd/MM/y – dd/MM/y GGGGG"},"y_m_ed":{"y":"E, dd/MM/y – E, dd/MM/y GGGGG","m":"E, dd/MM/y – E, dd/MM/y GGGGG","d":"E, dd/MM/y – E, dd/MM/y GGGGG"},"y_m":{"y":"MM/y – MM/y GGGGG","m":"MM/y – MM/y GGGGG"},"y":{"y":"y – y G"},"mmm_ed":{"m":"E d MMM – E d MMM","d":"E d – E d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"dd/MM – dd/MM","d":"dd/MM – dd/MM"},"m_ed":{"m":"E dd/MM – E dd/MM","d":"E dd/MM – E dd/MM"},"m":{"m":"M – M"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"md":"dd/MM","mmm_md":"d MMMM","yyyy_mmm_ed":"E, d MMM y G","h":"h a","yyyy_qqq":"QQQ y G","bhm":"h:mm B","mm_md":"d MMM","d":"d","yyyy":"y G","e_hm":"E HH:mm","ms":"mm:ss","yyyy_m":"MM/y GGGGG","e_hms":"E HH:mm:ss","gy":"y G","ed":"E d","hms":"h:mm:ss a","bhms":"h:mm:ss B","yyyy_qqqq":"QQQQ y G","y":"y G","mmm":"LLL","gy_mm_md":"d MMM y G","yyyy_mm_md":"d MMM y G","m":"LL","gy_mmm_ed":"E, d MMM y G","yyyy_mmmm":"MMMM y G","ehm":"E h:mm a","gy_mmm":"MMM y G","yyyy_m_ed":"E, dd/MM/y GGGGG","yyyy_md":"dd/MM/y GGGGG","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","yyyy_mmm":"MMM y G","m_ed":"E, dd/MM"},"append_items":{"year":"{0} {1}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{0} {1}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"dd/MM/y GGGGG","medium":"d MMM y G","long":"d MMMM y G","full":"EEEE, d MMMM y G"}},"ethiopic_amete_alem":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"Genbot","8":"Miazia","7":"Megabit","6":"Yekatit","5":"Ter","4":"Tahsas","3":"Hedar","2":"Tekemt","13":"Pagumen","12":"Nehasse","11":"Hamle","10":"Sene","1":"Meskerem"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","13":"13","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Genbot","8":"Miazia","7":"Megabit","6":"Yekatit","5":"Ter","4":"Tahsas","3":"Hedar","2":"Tekemt","13":"Pagumen","12":"Nehasse","11":"Hamle","10":"Sene","1":"Meskerem"}},"format":{"wide":{"9":"Genbot","8":"Miazia","7":"Megabit","6":"Yekatit","5":"Ter","4":"Tahsas","3":"Hedar","2":"Tekemt","13":"Pagumen","12":"Nehasse","11":"Hamle","10":"Sene","1":"Meskerem"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","13":"13","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Genbot","8":"Miazia","7":"Megabit","6":"Yekatit","5":"Ter","4":"Tahsas","3":"Hedar","2":"Tekemt","13":"Pagumen","12":"Nehasse","11":"Hamle","10":"Sene","1":"Meskerem"}}},"eras":{"era_narrow":{"0":"ERA0"},"era_names":{"0":"ERA0"},"era_abbr":{"0":"ERA0"}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM y – MMMM y G","m":"MMMM – MMMM y G"},"y_mmm_ed":{"y":"E, d MMM y – E, d MMM y G","m":"E, d MMM – E, d MMM y G","d":"E, d – E, d MMM y G"},"y_mmm":{"y":"MMM y – MMM y G","m":"MMM – MMM y G"},"y_mm_md":{"y":"d MMM y – d MMM y G","m":"d MMM – d MMM y G","d":"d – d MMM y G"},"y_md":{"y":"dd/MM/y – dd/MM/y GGGGG","m":"dd/MM/y – dd/MM/y GGGGG","d":"dd/MM/y – dd/MM/y GGGGG"},"y_m_ed":{"y":"E, dd/MM/y – E, dd/MM/y GGGGG","m":"E, dd/MM/y – E, dd/MM/y GGGGG","d":"E, dd/MM/y – E, dd/MM/y GGGGG"},"y_m":{"y":"MM/y – MM/y GGGGG","m":"MM/y – MM/y GGGGG"},"y":{"y":"y – y G"},"mmm_ed":{"m":"E d MMM – E d MMM","d":"E d – E d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"dd/MM – dd/MM","d":"dd/MM – dd/MM"},"m_ed":{"m":"E dd/MM – E dd/MM","d":"E dd/MM – E dd/MM"},"m":{"m":"M – M"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"md":"dd/MM","mmm_md":"d MMMM","yyyy_mmm_ed":"E, d MMM y G","h":"h a","yyyy_qqq":"QQQ y G","bhm":"h:mm B","mm_md":"d MMM","d":"d","yyyy":"y G","e_hm":"E HH:mm","ms":"mm:ss","yyyy_m":"MM/y GGGGG","e_hms":"E HH:mm:ss","gy":"y G","ed":"E d","hms":"h:mm:ss a","bhms":"h:mm:ss B","yyyy_qqqq":"QQQQ y G","y":"y G","mmm":"LLL","gy_mm_md":"d MMM y G","yyyy_mm_md":"d MMM y G","m":"LL","gy_mmm_ed":"E, d MMM y G","yyyy_mmmm":"MMMM y G","ehm":"E h:mm a","gy_mmm":"MMM y G","yyyy_m_ed":"E, dd/MM/y GGGGG","yyyy_md":"dd/MM/y GGGGG","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","yyyy_mmm":"MMM y G","m_ed":"E, dd/MM"},"append_items":{"year":"{0} {1}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{0} {1}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"dd/MM/y GGGGG","medium":"d MMM y G","long":"d MMMM y G","full":"EEEE, d MMMM y G"}},"ethiopic":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"Genbot","8":"Miazia","7":"Megabit","6":"Yekatit","5":"Ter","4":"Tahsas","3":"Hedar","2":"Tekemt","13":"Pagumen","12":"Nehasse","11":"Hamle","10":"Sene","1":"Meskerem"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","13":"13","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Genbot","8":"Miazia","7":"Megabit","6":"Yekatit","5":"Ter","4":"Tahsas","3":"Hedar","2":"Tekemt","13":"Pagumen","12":"Nehasse","11":"Hamle","10":"Sene","1":"Meskerem"}},"format":{"wide":{"9":"Genbot","8":"Miazia","7":"Megabit","6":"Yekatit","5":"Ter","4":"Tahsas","3":"Hedar","2":"Tekemt","13":"Pagumen","12":"Nehasse","11":"Hamle","10":"Sene","1":"Meskerem"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","13":"13","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Genbot","8":"Miazia","7":"Megabit","6":"Yekatit","5":"Ter","4":"Tahsas","3":"Hedar","2":"Tekemt","13":"Pagumen","12":"Nehasse","11":"Hamle","10":"Sene","1":"Meskerem"}}},"eras":{"era_narrow":{"1":"ERA1","0":"ERA0"},"era_names":{"1":"ERA1","0":"ERA0"},"era_abbr":{"1":"ERA1","0":"ERA0"}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM y – MMMM y G","m":"MMMM – MMMM y G"},"y_mmm_ed":{"y":"E, d MMM y – E, d MMM y G","m":"E, d MMM – E, d MMM y G","d":"E, d – E, d MMM y G"},"y_mmm":{"y":"MMM y – MMM y G","m":"MMM – MMM y G"},"y_mm_md":{"y":"d MMM y – d MMM y G","m":"d MMM – d MMM y G","d":"d – d MMM y G"},"y_md":{"y":"dd/MM/y – dd/MM/y GGGGG","m":"dd/MM/y – dd/MM/y GGGGG","d":"dd/MM/y – dd/MM/y GGGGG"},"y_m_ed":{"y":"E, dd/MM/y – E, dd/MM/y GGGGG","m":"E, dd/MM/y – E, dd/MM/y GGGGG","d":"E, dd/MM/y – E, dd/MM/y GGGGG"},"y_m":{"y":"MM/y – MM/y GGGGG","m":"MM/y – MM/y GGGGG"},"y":{"y":"y – y G"},"mmm_ed":{"m":"E d MMM – E d MMM","d":"E d – E d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"dd/MM – dd/MM","d":"dd/MM – dd/MM"},"m_ed":{"m":"E dd/MM – E dd/MM","d":"E dd/MM – E dd/MM"},"m":{"m":"M – M"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"md":"dd/MM","mmm_md":"d MMMM","yyyy_mmm_ed":"E, d MMM y G","h":"h a","yyyy_qqq":"QQQ y G","bhm":"h:mm B","mm_md":"d MMM","d":"d","yyyy":"y G","e_hm":"E HH:mm","ms":"mm:ss","yyyy_m":"MM/y GGGGG","e_hms":"E HH:mm:ss","gy":"y G","ed":"E d","hms":"h:mm:ss a","bhms":"h:mm:ss B","yyyy_qqqq":"QQQQ y G","y":"y G","mmm":"LLL","gy_mm_md":"d MMM y G","yyyy_mm_md":"d MMM y G","m":"LL","gy_mmm_ed":"E, d MMM y G","yyyy_mmmm":"MMMM y G","ehm":"E h:mm a","gy_mmm":"MMM y G","yyyy_m_ed":"E, dd/MM/y GGGGG","yyyy_md":"dd/MM/y GGGGG","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","yyyy_mmm":"MMM y G","m_ed":"E, dd/MM"},"append_items":{"year":"{0} {1}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{0} {1}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"dd/MM/y GGGGG","medium":"d MMM y G","long":"d MMMM y G","full":"EEEE, d MMMM y G"}},"dangi":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"Ninth Month","8":"Eighth Month","7":"Seventh Month","6":"Sixth Month","5":"Fifth Month","4":"Fourth Month","3":"Third Month","2":"Second Month","12":"Twelfth Month","11":"Eleventh Month","10":"Tenth Month","1":"First Month"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Mo9","8":"Mo8","7":"Mo7","6":"Mo6","5":"Mo5","4":"Mo4","3":"Mo3","2":"Mo2","12":"Mo12","11":"Mo11","10":"Mo10","1":"Mo1"}},"format":{"wide":{"9":"Ninth Month","8":"Eighth Month","7":"Seventh Month","6":"Sixth Month","5":"Fifth Month","4":"Fourth Month","3":"Third Month","2":"Second Month","12":"Twelfth Month","11":"Eleventh Month","10":"Tenth Month","1":"First Month"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Mo9","8":"Mo8","7":"Mo7","6":"Mo6","5":"Mo5","4":"Mo4","3":"Mo3","2":"Mo2","12":"Mo12","11":"Mo11","10":"Mo10","1":"Mo1"}}},"month_patterns":{"stand_alone":{"wide":{"leap":[0,"bis"]},"narrow":{"leap":[0,"b"]},"abbreviated":{"leap":[0,"bis"]}},"numeric":{"all":{"leap":[0,"bis"]}},"format":{"wide":{"leap":[0,"bis"]},"narrow":{"leap":[0,"b"]},"abbreviated":{"leap":[0,"bis"]}}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM U – MMMM U","m":"MMMM – MMMM U"},"y_mmm_ed":{"y":"E, d MMM U – E, d MMM U","m":"E, d MMM – E, d MMM U","d":"E, d – E, d MMM U"},"y_mmm":{"y":"MMM U – MMM U","m":"MMM – MMM U"},"y_mm_md":{"y":"d MMM U – d MMM U","m":"d MMM – d MMM U","d":"d – d MMM U"},"y_md":{"y":"dd/MM/y – dd/MM/y","m":"dd/MM/y – dd/MM/y","d":"dd/MM/y – dd/MM/y"},"y_m_ed":{"y":"E, dd/MM/y – E, dd/MM/y","m":"E, dd/MM/y – E, dd/MM/y","d":"E, dd/MM/y – E, dd/MM/y"},"y_m":{"y":"MM/y – MM/y","m":"MM/y – MM/y"},"y":{"y":"U – U"},"mmm_ed":{"m":"E d MMM – E d MMM","d":"E d – E d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"dd/MM – dd/MM","d":"dd/MM – dd/MM"},"m_ed":{"m":"E dd/MM – E dd/MM","d":"E dd/MM – E dd/MM"},"m":{"m":"M – M"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"u_md":"dd/MM/U","md":"dd/MM","mmm_md":"d MMMM","yyyy_mmm_ed":"E, d MMM r(U)","h":"h a","yyyy_qqq":"QQQ r(U)","bhm":"h:mm B","mm_md":"d MMM","d":"d","yyyy":"r(U)","e_hm":"E HH:mm","ms":"mm:ss","yyyy_m":"MM/r","e_hms":"E HH:mm:ss","gy":"r(U)","ed":"E d","ummm":"MMM U","um":"M/U","hms":"h:mm:ss a","umm_md":"d MMM U","bhms":"h:mm:ss B","yyyy_qqqq":"QQQQ r(U)","y":"r(U)","mmm":"LLL","gy_mm_md":"d MMM r","yyyy_mm_md":"d MMM r","m":"LL","y_md":"dd/MM/r","gy_mmm_ed":"E, d MMM r(U)","yyyy_mmmm":"MMMM r(U)","ehm":"E h:mm a","gy_mmm":"MMM r(U)","yyyy_m_ed":"E, dd/MM/r","yyyy_md":"dd/MM/r","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","yyyy_mmm":"MMM r(U)","m_ed":"E, dd/MM"},"append_items":{"year":"{1} {0}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{1} {0}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"dd/MM/r","medium":"d MMM r","long":"d MMMM r(U)","full":"EEEE, d MMMM r(U)"},"cyclic_name_sets":{"zodiacs":{"format":{"wide":{"9":"Monkey","8":"Goat","7":"Horse","6":"Snake","5":"Dragon","4":"Rabbit","3":"Tiger","2":"Ox","12":"Pig","11":"Dog","10":"Rooster","1":"Rat"},"narrow":{"9":"Monkey","8":"Goat","7":"Horse","6":"Snake","5":"Dragon","4":"Rabbit","3":"Tiger","2":"Ox","12":"Pig","11":"Dog","10":"Rooster","1":"Rat"},"abbreviated":{"9":"Monkey","8":"Goat","7":"Horse","6":"Snake","5":"Dragon","4":"Rabbit","3":"Tiger","2":"Ox","12":"Pig","11":"Dog","10":"Rooster","1":"Rat"}}},"years":{"format":{"wide":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"},"narrow":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"},"abbreviated":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"}}},"solar_terms":{"format":{"wide":{"9":"grain in ear","8":"grain full","7":"summer begins","6":"grain rain","5":"bright and clear","4":"spring equinox","3":"insects awaken","24":"major cold","23":"minor cold","22":"winter solstice","21":"major snow","20":"minor snow","2":"rain water","19":"winter begins","18":"frost descends","17":"cold dew","16":"autumn equinox","15":"white dew","14":"end of heat","13":"autumn begins","12":"major heat","11":"minor heat","10":"summer solstice","1":"spring begins"},"narrow":{"9":"grain in ear","8":"grain full","7":"summer begins","6":"grain rain","5":"bright and clear","4":"spring equinox","3":"insects awaken","24":"major cold","23":"minor cold","22":"winter solstice","21":"major snow","20":"minor snow","2":"rain water","19":"winter begins","18":"frost descends","17":"cold dew","16":"autumn equinox","15":"white dew","14":"end of heat","13":"autumn begins","12":"major heat","11":"minor heat","10":"summer solstice","1":"spring begins"},"abbreviated":{"9":"grain in ear","8":"grain full","7":"summer begins","6":"grain rain","5":"bright and clear","4":"spring equinox","3":"insects awaken","24":"major cold","23":"minor cold","22":"winter solstice","21":"major snow","20":"minor snow","2":"rain water","19":"winter begins","18":"frost descends","17":"cold dew","16":"autumn equinox","15":"white dew","14":"end of heat","13":"autumn begins","12":"major heat","11":"minor heat","10":"summer solstice","1":"spring begins"}}},"months":{"format":{"wide":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"},"narrow":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"},"abbreviated":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"}}},"days":{"format":{"wide":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"},"narrow":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"},"abbreviated":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"}}},"day_parts":{"format":{"wide":{"9":"shen","8":"wei","7":"wu","6":"si","5":"chen","4":"mao","3":"yin","2":"chou","12":"hai","11":"xu","10":"you","1":"zi"},"narrow":{"9":"shen","8":"wei","7":"wu","6":"si","5":"chen","4":"mao","3":"yin","2":"chou","12":"hai","11":"xu","10":"you","1":"zi"},"abbreviated":{"9":"shen","8":"wei","7":"wu","6":"si","5":"chen","4":"mao","3":"yin","2":"chou","12":"hai","11":"xu","10":"you","1":"zi"}}}}},"coptic":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"Bashans","8":"Baramouda","7":"Baramhat","6":"Amshir","5":"Toba","4":"Kiahk","3":"Hator","2":"Baba","13":"Nasie","12":"Mesra","11":"Epep","10":"Paona","1":"Tout"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","13":"13","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Bashans","8":"Baramouda","7":"Baramhat","6":"Amshir","5":"Toba","4":"Kiahk","3":"Hator","2":"Baba","13":"Nasie","12":"Mesra","11":"Epep","10":"Paona","1":"Tout"}},"format":{"wide":{"9":"Bashans","8":"Baramouda","7":"Baramhat","6":"Amshir","5":"Toba","4":"Kiahk","3":"Hator","2":"Baba","13":"Nasie","12":"Mesra","11":"Epep","10":"Paona","1":"Tout"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","13":"13","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Bashans","8":"Baramouda","7":"Baramhat","6":"Amshir","5":"Toba","4":"Kiahk","3":"Hator","2":"Baba","13":"Nasie","12":"Mesra","11":"Epep","10":"Paona","1":"Tout"}}},"eras":{"era_narrow":{"1":"ERA1","0":"ERA0"},"era_names":{"1":"ERA1","0":"ERA0"},"era_abbr":{"1":"ERA1","0":"ERA0"}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM y – MMMM y G","m":"MMMM – MMMM y G"},"y_mmm_ed":{"y":"E, d MMM y – E, d MMM y G","m":"E, d MMM – E, d MMM y G","d":"E, d – E, d MMM y G"},"y_mmm":{"y":"MMM y – MMM y G","m":"MMM – MMM y G"},"y_mm_md":{"y":"d MMM y – d MMM y G","m":"d MMM – d MMM y G","d":"d – d MMM y G"},"y_md":{"y":"dd/MM/y – dd/MM/y GGGGG","m":"dd/MM/y – dd/MM/y GGGGG","d":"dd/MM/y – dd/MM/y GGGGG"},"y_m_ed":{"y":"E, dd/MM/y – E, dd/MM/y GGGGG","m":"E, dd/MM/y – E, dd/MM/y GGGGG","d":"E, dd/MM/y – E, dd/MM/y GGGGG"},"y_m":{"y":"MM/y – MM/y GGGGG","m":"MM/y – MM/y GGGGG"},"y":{"y":"y – y G"},"mmm_ed":{"m":"E d MMM – E d MMM","d":"E d – E d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"dd/MM – dd/MM","d":"dd/MM – dd/MM"},"m_ed":{"m":"E dd/MM – E dd/MM","d":"E dd/MM – E dd/MM"},"m":{"m":"M – M"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"md":"dd/MM","mmm_md":"d MMMM","yyyy_mmm_ed":"E, d MMM y G","h":"h a","yyyy_qqq":"QQQ y G","bhm":"h:mm B","mm_md":"d MMM","d":"d","yyyy":"y G","e_hm":"E HH:mm","ms":"mm:ss","yyyy_m":"MM/y GGGGG","e_hms":"E HH:mm:ss","gy":"y G","ed":"E d","hms":"h:mm:ss a","bhms":"h:mm:ss B","yyyy_qqqq":"QQQQ y G","y":"y G","mmm":"LLL","gy_mm_md":"d MMM y G","yyyy_mm_md":"d MMM y G","m":"LL","gy_mmm_ed":"E, d MMM y G","yyyy_mmmm":"MMMM y G","ehm":"E h:mm a","gy_mmm":"MMM y G","yyyy_m_ed":"E, dd/MM/y GGGGG","yyyy_md":"dd/MM/y GGGGG","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","yyyy_mmm":"MMM y G","m_ed":"E, dd/MM"},"append_items":{"year":"{0} {1}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{0} {1}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"dd/MM/y GGGGG","medium":"d MMM y G","long":"d MMMM y G","full":"EEEE, d MMMM y G"}},"chinese":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"Ninth Month","8":"Eighth Month","7":"Seventh Month","6":"Sixth Month","5":"Fifth Month","4":"Fourth Month","3":"Third Month","2":"Second Month","12":"Twelfth Month","11":"Eleventh Month","10":"Tenth Month","1":"First Month"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Mo9","8":"Mo8","7":"Mo7","6":"Mo6","5":"Mo5","4":"Mo4","3":"Mo3","2":"Mo2","12":"Mo12","11":"Mo11","10":"Mo10","1":"Mo1"}},"format":{"wide":{"9":"Ninth Month","8":"Eighth Month","7":"Seventh Month","6":"Sixth Month","5":"Fifth Month","4":"Fourth Month","3":"Third Month","2":"Second Month","12":"Twelfth Month","11":"Eleventh Month","10":"Tenth Month","1":"First Month"},"narrow":{"9":"9","8":"8","7":"7","6":"6","5":"5","4":"4","3":"3","2":"2","12":"12","11":"11","10":"10","1":"1"},"abbreviated":{"9":"Mo9","8":"Mo8","7":"Mo7","6":"Mo6","5":"Mo5","4":"Mo4","3":"Mo3","2":"Mo2","12":"Mo12","11":"Mo11","10":"Mo10","1":"Mo1"}}},"month_patterns":{"stand_alone":{"wide":{"leap":[0,"bis"]},"narrow":{"leap":[0,"b"]},"abbreviated":{"leap":[0,"bis"]}},"numeric":{"all":{"leap":[0,"bis"]}},"format":{"wide":{"leap":[0,"bis"]},"narrow":{"leap":[0,"b"]},"abbreviated":{"leap":[0,"bis"]}}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM U – MMMM U","m":"MMMM – MMMM U"},"y_mmm_ed":{"y":"E, d MMM U – E, d MMM U","m":"E, d MMM – E, d MMM U","d":"E, d – E, d MMM U"},"y_mmm":{"y":"MMM U – MMM U","m":"MMM – MMM U"},"y_mm_md":{"y":"d MMM U – d MMM U","m":"d MMM – d MMM U","d":"d – d MMM U"},"y_md":{"y":"dd/MM/y – dd/MM/y","m":"dd/MM/y – dd/MM/y","d":"dd/MM/y – dd/MM/y"},"y_m_ed":{"y":"E, dd/MM/y – E, dd/MM/y","m":"E, dd/MM/y – E, dd/MM/y","d":"E, dd/MM/y – E, dd/MM/y"},"y_m":{"y":"MM/y – MM/y","m":"MM/y – MM/y"},"y":{"y":"U – U"},"mmm_ed":{"m":"E d MMM – E d MMM","d":"E d – E d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"dd/MM – dd/MM","d":"dd/MM – dd/MM"},"m_ed":{"m":"E dd/MM – E dd/MM","d":"E dd/MM – E dd/MM"},"m":{"m":"M – M"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"u_md":"dd/MM/U","md":"dd/MM","mmm_md":"d MMMM","yyyy_mmm_ed":"E, d MMM r(U)","h":"h a","yyyy_qqq":"QQQ r(U)","bhm":"h:mm B","mm_md":"d MMM","d":"d","yyyy":"r(U)","e_hm":"E HH:mm","ms":"mm:ss","yyyy_m":"MM/r","e_hms":"E HH:mm:ss","gy":"r(U)","ed":"E d","ummm":"MMM U","um":"M/U","hms":"h:mm:ss a","umm_md":"d MMM U","bhms":"h:mm:ss B","yyyy_qqqq":"QQQQ r(U)","y":"r(U)","mmm":"LLL","gy_mm_md":"d MMM r","yyyy_mm_md":"d MMM r","m":"LL","y_md":"dd/MM/r","gy_mmm_ed":"E, d MMM r(U)","yyyy_mmmm":"MMMM r(U)","ehm":"E h:mm a","gy_mmm":"MMM r(U)","yyyy_m_ed":"E, dd/MM/r","yyyy_md":"dd/MM/r","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","yyyy_mmm":"MMM r(U)","m_ed":"E, dd/MM"},"append_items":{"year":"{1} {0}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{1} {0}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"dd/MM/r","medium":"d MMM r","long":"d MMMM r(U)","full":"EEEE, d MMMM r(U)"},"cyclic_name_sets":{"zodiacs":{"format":{"wide":{"9":"Monkey","8":"Goat","7":"Horse","6":"Snake","5":"Dragon","4":"Rabbit","3":"Tiger","2":"Ox","12":"Pig","11":"Dog","10":"Rooster","1":"Rat"},"narrow":{"9":"Monkey","8":"Goat","7":"Horse","6":"Snake","5":"Dragon","4":"Rabbit","3":"Tiger","2":"Ox","12":"Pig","11":"Dog","10":"Rooster","1":"Rat"},"abbreviated":{"9":"Monkey","8":"Goat","7":"Horse","6":"Snake","5":"Dragon","4":"Rabbit","3":"Tiger","2":"Ox","12":"Pig","11":"Dog","10":"Rooster","1":"Rat"}}},"years":{"format":{"wide":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"},"narrow":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"},"abbreviated":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"}}},"solar_terms":{"format":{"wide":{"9":"grain in ear","8":"grain full","7":"summer begins","6":"grain rain","5":"bright and clear","4":"spring equinox","3":"insects awaken","24":"major cold","23":"minor cold","22":"winter solstice","21":"major snow","20":"minor snow","2":"rain water","19":"winter begins","18":"frost descends","17":"cold dew","16":"autumn equinox","15":"white dew","14":"end of heat","13":"autumn begins","12":"major heat","11":"minor heat","10":"summer solstice","1":"spring begins"},"narrow":{"9":"grain in ear","8":"grain full","7":"summer begins","6":"grain rain","5":"bright and clear","4":"spring equinox","3":"insects awaken","24":"major cold","23":"minor cold","22":"winter solstice","21":"major snow","20":"minor snow","2":"rain water","19":"winter begins","18":"frost descends","17":"cold dew","16":"autumn equinox","15":"white dew","14":"end of heat","13":"autumn begins","12":"major heat","11":"minor heat","10":"summer solstice","1":"spring begins"},"abbreviated":{"9":"grain in ear","8":"grain full","7":"summer begins","6":"grain rain","5":"bright and clear","4":"spring equinox","3":"insects awaken","24":"major cold","23":"minor cold","22":"winter solstice","21":"major snow","20":"minor snow","2":"rain water","19":"winter begins","18":"frost descends","17":"cold dew","16":"autumn equinox","15":"white dew","14":"end of heat","13":"autumn begins","12":"major heat","11":"minor heat","10":"summer solstice","1":"spring begins"}}},"months":{"format":{"wide":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"},"narrow":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"},"abbreviated":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"}}},"days":{"format":{"wide":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"},"narrow":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"},"abbreviated":{"39":"ren-yin","4":"ding-mao","52":"yi-mao","8":"xin-wei","41":"jia-chen","15":"wu-yin","24":"ding-hai","37":"geng-zi","18":"xin-si","57":"geng-shen","5":"wu-chen","32":"yi-wei","58":"xin-you","17":"geng-chen","16":"ji-mao","10":"gui-you","28":"xin-mao","51":"jia-yin","60":"gui-hai","45":"wu-shen","26":"ji-chou","1":"jia-zi","36":"ji-hai","31":"jia-wu","20":"gui-wei","6":"ji-si","47":"geng-xu","50":"gui-chou","23":"bing-xu","21":"jia-shen","53":"bing-chen","44":"ding-wei","30":"gui-si","35":"wu-xu","54":"ding-si","27":"geng-yin","48":"xin-hai","42":"yi-si","3":"bing-yin","43":"bing-wu","9":"ren-shen","22":"yi-you","34":"ding-you","40":"gui-mao","2":"yi-chou","12":"yi-hai","56":"ji-wei","59":"ren-xu","13":"bing-zi","29":"ren-chen","55":"wu-wu","25":"wu-zi","33":"bing-shen","11":"jia-xu","46":"ji-you","7":"geng-wu","38":"xin-chou","14":"ding-chou","19":"ren-wu","49":"ren-zi"}}},"day_parts":{"format":{"wide":{"9":"shen","8":"wei","7":"wu","6":"si","5":"chen","4":"mao","3":"yin","2":"chou","12":"hai","11":"xu","10":"you","1":"zi"},"narrow":{"9":"shen","8":"wei","7":"wu","6":"si","5":"chen","4":"mao","3":"yin","2":"chou","12":"hai","11":"xu","10":"you","1":"zi"},"abbreviated":{"9":"shen","8":"wei","7":"wu","6":"si","5":"chen","4":"mao","3":"yin","2":"chou","12":"hai","11":"xu","10":"you","1":"zi"}}}}},"buddhist":{"time_formats":{"short":"h:mm a","medium":"h:mm:ss a","long":"h:mm:ss a z","full":"h:mm:ss a zzzz"},"quarters":{"stand_alone":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}},"format":{"wide":{"4":"4th quarter","3":"3rd quarter","2":"2nd quarter","1":"1st quarter"},"narrow":{"4":"4","3":"3","2":"2","1":"1"},"abbreviated":{"4":"Q4","3":"Q3","2":"Q2","1":"Q1"}}},"months":{"stand_alone":{"wide":{"9":"September","8":"August","7":"July","6":"June","5":"May","4":"April","3":"March","2":"February","12":"December","11":"November","10":"October","1":"January"},"narrow":{"9":"S","8":"A","7":"J","6":"J","5":"M","4":"A","3":"M","2":"F","12":"D","11":"N","10":"O","1":"J"},"abbreviated":{"9":"Sep","8":"Aug","7":"Jul","6":"Jun","5":"May","4":"Apr","3":"Mar","2":"Feb","12":"Dec","11":"Nov","10":"Oct","1":"Jan"}},"format":{"wide":{"9":"September","8":"August","7":"July","6":"June","5":"May","4":"April","3":"March","2":"February","12":"December","11":"November","10":"October","1":"January"},"narrow":{"9":"S","8":"A","7":"J","6":"J","5":"M","4":"A","3":"M","2":"F","12":"D","11":"N","10":"O","1":"J"},"abbreviated":{"9":"Sep","8":"Aug","7":"Jul","6":"Jun","5":"May","4":"Apr","3":"Mar","2":"Feb","12":"Dec","11":"Nov","10":"Oct","1":"Jan"}}},"eras":{"era_narrow":{"0":"BE"},"era_names":{"0":"BE"},"era_abbr":{"0":"BE"}},"days":{"stand_alone":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}},"format":{"wide":{"wed":"Wednesday","tue":"Tuesday","thu":"Thursday","sun":"Sunday","sat":"Saturday","mon":"Monday","fri":"Friday"},"short":{"wed":"We","tue":"Tu","thu":"Th","sun":"Su","sat":"Sa","mon":"Mo","fri":"Fr"},"narrow":{"wed":"W","tue":"T","thu":"T","sun":"S","sat":"S","mon":"M","fri":"F"},"abbreviated":{"wed":"Wed","tue":"Tue","thu":"Thu","sun":"Sun","sat":"Sat","mon":"Mon","fri":"Fri"}}},"day_periods":{"stand_alone":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"night","morning1":"morning","midnight":"midnight","evening1":"evening","am_alt_variant":"am","am":"AM","afternoon1":"afternoon"}},"format":{"wide":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"},"narrow":{"pm_alt_variant":"pm","pm":"p","noon":"n","night1":"at night","morning1":"in the morning","midnight":"mi","evening1":"in the evening","am_alt_variant":"am","am":"a","afternoon1":"in the afternoon"},"abbreviated":{"pm_alt_variant":"pm","pm":"PM","noon":"noon","night1":"at night","morning1":"in the morning","midnight":"midnight","evening1":"in the evening","am_alt_variant":"am","am":"AM","afternoon1":"in the afternoon"}}},"date_time_formats":{"short":"{1}, {0}","medium":"{1}, {0}","long":"{1} 'at' {0}","interval_formats":{"y_mmmm":{"y":"MMMM y – MMMM y G","m":"MMMM – MMMM y G"},"y_mmm_ed":{"y":"E, d MMM y – E, d MMM y G","m":"E, d MMM – E, d MMM y G","d":"E, d – E, d MMM y G"},"y_mmm":{"y":"MMM y – MMM y G","m":"MMM – MMM y G"},"y_mm_md":{"y":"d MMM y – d MMM y G","m":"d MMM – d MMM y G","d":"d – d MMM y G"},"y_md":{"y":"dd/MM/y – dd/MM/y GGGGG","m":"dd/MM/y – dd/MM/y GGGGG","d":"dd/MM/y – dd/MM/y GGGGG"},"y_m_ed":{"y":"E, dd/MM/y – E, dd/MM/y GGGGG","m":"E, dd/MM/y – E, dd/MM/y GGGGG","d":"E, dd/MM/y – E, dd/MM/y GGGGG"},"y_m":{"y":"MM/y – MM/y GGGGG","m":"MM/y – MM/y GGGGG"},"y":{"y":"y – y G"},"mmm_ed":{"m":"E d MMM – E d MMM","d":"E d – E d MMM"},"mmm":{"m":"MMM – MMM"},"mm_md":{"m":"d MMM – d MMM","d":"d – d MMM"},"md":{"m":"dd/MM – dd/MM","d":"dd/MM – dd/MM"},"m_ed":{"m":"E dd/MM – E dd/MM","d":"E dd/MM – E dd/MM"},"m":{"m":"M – M"},"interval_format_fallback":"{0} – {1}","hv":{"h":"h – h a v","a":"h a – h a v"},"hmv":{"m":"h:mm – h:mm a v","h":"h:mm – h:mm a v","a":"h:mm a – h:mm a v"},"hm":{"m":"h:mm – h:mm a","h":"h:mm – h:mm a","a":"h:mm a – h:mm a"},"h":{"h":"h – h a","a":"h a – h a"},"d":{"d":"d – d"}},"full":"{1} 'at' {0}","available_formats":{"md":"dd/MM","mmm_md":"d MMMM","yyyy_mmm_ed":"E, d MMM y G","h":"h a","yyyy_qqq":"QQQ y G","bhm":"h:mm B","mm_md":"d MMM","d":"d","yyyy":"y G","e_hm":"E HH:mm","ms":"mm:ss","yyyy_m":"MM/y GGGGG","e_hms":"E HH:mm:ss","gy":"y G","ed":"E d","hms":"h:mm:ss a","bhms":"h:mm:ss B","yyyy_qqqq":"QQQQ y G","y":"y G","mmm":"LLL","gy_mm_md":"d MMM y G","yyyy_mm_md":"d MMM y G","m":"LL","gy_mmm_ed":"E, d MMM y G","yyyy_mmmm":"MMMM y G","ehm":"E h:mm a","gy_mmm":"MMM y G","yyyy_m_ed":"E, dd/MM/y GGGGG","yyyy_md":"dd/MM/y GGGGG","mmm_ed":"E, d MMM","hm":"h:mm a","bh":"h B","e":"ccc","e_bhms":"E h:mm:ss B","e_bhm":"E h:mm B","ehms":"E h:mm:ss a","yyyy_mmm":"MMM y G","m_ed":"E, dd/MM"},"append_items":{"year":"{0} {1}","week":"{0} ({2}: {1})","timezone":"{0} {1}","second":"{0} ({2}: {1})","quarter":"{0} ({2}: {1})","month":"{0} ({2}: {1})","minute":"{0} ({2}: {1})","hour":"{0} ({2}: {1})","era":"{0} {1}","day__of__week":"{0} {1}","day":"{0} ({2}: {1})"}},"date_formats":{"short":"dd/MM/y GGGGG","medium":"d MMM y G","long":"d MMMM y G","full":"EEEE, d MMMM y G"}}}},"date_fields":{"zone":{"short":{"relative_ordinal":[null,null,null],"display_name":"zone"},"narrow":{"relative_ordinal":[null,null,null],"display_name":"zone"},"default":{"relative_ordinal":[null,null,null],"display_name":"time zone"}},"year":{"short":{"relative_past":{"other":[0," yr ago"],"one":[0," yr ago"]},"relative_ordinal":["last yr.","this yr.","next yr."],"relative_future":{"other":["in ",0," yr"],"one":["in ",0," yr"]},"display_name":"yr"},"narrow":{"relative_past":{"other":[0," yr ago"],"one":[0," yr ago"]},"relative_ordinal":["last yr.","this yr.","next yr."],"relative_future":{"other":["in ",0," yr"],"one":["in ",0," yr"]},"display_name":"yr"},"default":{"relative_past":{"other":[0," years ago"],"one":[0," year ago"]},"relative_ordinal":["last year","this year","next year"],"relative_future":{"other":["in ",0," years"],"one":["in ",0," year"]},"display_name":"year"}},"weekday_of_month":{"short":{"relative_ordinal":[null,null,null],"display_name":"wkday. of mo."},"narrow":{"relative_ordinal":[null,null,null],"display_name":"wkday. of mo."},"default":{"relative_ordinal":[null,null,null],"display_name":"weekday of the month"}},"weekday":{"short":{"relative_ordinal":[null,null,null],"display_name":"day of wk."},"narrow":{"relative_ordinal":[null,null,null],"display_name":"day of wk."},"default":{"relative_ordinal":[null,null,null],"display_name":"day of the week"}},"week_of_month":{"short":{"relative_ordinal":[null,null,null],"display_name":"wk. of mo."},"narrow":{"relative_ordinal":[null,null,null],"display_name":"wk. of mo."},"default":{"relative_ordinal":[null,null,null],"display_name":"week of month"}},"week":{"short":{"relative_period":["the week of ",0],"relative_past":{"other":[0," wk ago"],"one":[0," wk ago"]},"relative_ordinal":["last wk.","this wk.","next wk."],"relative_future":{"other":["in ",0," wk"],"one":["in ",0," wk"]},"display_name":"wk"},"narrow":{"relative_period":["the week of ",0],"relative_past":{"other":[0," wk ago"],"one":[0," wk ago"]},"relative_ordinal":["last wk.","this wk.","next wk."],"relative_future":{"other":["in ",0," wk"],"one":["in ",0," wk"]},"display_name":"wk"},"default":{"relative_period":["the week of ",0],"relative_past":{"other":[0," weeks ago"],"one":[0," week ago"]},"relative_ordinal":["last week","this week","next week"],"relative_future":{"other":["in ",0," weeks"],"one":["in ",0," week"]},"display_name":"week"}},"wed":{"short":{"relative_past":{"other":[0," Wednesdays ago"],"one":[0," Wednesday ago"]},"relative_ordinal":["last Wed.","this Wed.","next Wed."],"relative_future":{"other":["in ",0," Wednesdays"],"one":["in ",0," Wednesday"]}},"narrow":{"relative_past":{"other":[0," Wednesdays ago"],"one":[0," Wednesday ago"]},"relative_ordinal":["last W","this W","next W"],"relative_future":{"other":["in ",0," Wednesdays"],"one":["in ",0," Wednesday"]}},"default":{"relative_past":{"other":[0," Wednesdays ago"],"one":[0," Wednesday ago"]},"relative_ordinal":["last Wednesday","this Wednesday","next Wednesday"],"relative_future":{"other":["in ",0," Wednesdays"],"one":["in ",0," Wednesday"]}}},"tue":{"short":{"relative_past":{"other":[0," Tuesdays ago"],"one":[0," Tuesday ago"]},"relative_ordinal":["last Tue.","this Tue.","next Tue."],"relative_future":{"other":["in ",0," Tuesdays"],"one":["in ",0," Tuesday"]}},"narrow":{"relative_past":{"other":[0," Tuesdays ago"],"one":[0," Tuesday ago"]},"relative_ordinal":["last Tu","this Tu","next Tu"],"relative_future":{"other":["in ",0," Tuesdays"],"one":["in ",0," Tuesday"]}},"default":{"relative_past":{"other":[0," Tuesdays ago"],"one":[0," Tuesday ago"]},"relative_ordinal":["last Tuesday","this Tuesday","next Tuesday"],"relative_future":{"other":["in ",0," Tuesdays"],"one":["in ",0," Tuesday"]}}},"thu":{"short":{"relative_past":{"other":[0," Thursdays ago"],"one":[0," Thursday ago"]},"relative_ordinal":["last Thu.","this Thu.","next Thu."],"relative_future":{"other":["in ",0," Thursdays"],"one":["in ",0," Thursday"]}},"narrow":{"relative_past":{"other":[0," Thursdays ago"],"one":[0," Thursday ago"]},"relative_ordinal":["last Th","this Th","next Th"],"relative_future":{"other":["in ",0," Thursdays"],"one":["in ",0," Thursday"]}},"default":{"relative_past":{"other":[0," Thursdays ago"],"one":[0," Thursday ago"]},"relative_ordinal":["last Thursday","this Thursday","next Thursday"],"relative_future":{"other":["in ",0," Thursdays"],"one":["in ",0," Thursday"]}}},"sun":{"short":{"relative_past":{"other":[0," Sundays ago"],"one":[0," Sunday ago"]},"relative_ordinal":["last Sun.","this Sun.","next Sun."],"relative_future":{"other":["in ",0," Sundays"],"one":["in ",0," Sunday"]}},"narrow":{"relative_past":{"other":[0," Sundays ago"],"one":[0," Sunday ago"]},"relative_ordinal":["last Su","this Su","next Su"],"relative_future":{"other":["in ",0," Sundays"],"one":["in ",0," Sunday"]}},"default":{"relative_past":{"other":[0," Sundays ago"],"one":[0," Sunday ago"]},"relative_ordinal":["last Sunday","this Sunday","next Sunday"],"relative_future":{"other":["in ",0," Sundays"],"one":["in ",0," Sunday"]}}},"second":{"short":{"relative_past":{"other":[0," sec ago"],"one":[0," sec ago"]},"relative_ordinal":[null,"now",null],"relative_future":{"other":["in ",0," sec"],"one":["in ",0," sec"]},"display_name":"sec"},"narrow":{"relative_past":{"other":[0," sec ago"],"one":[0," sec ago"]},"relative_ordinal":[null,"now",null],"relative_future":{"other":["in ",0," sec"],"one":["in ",0," sec"]},"display_name":"sec"},"default":{"relative_past":{"other":[0," seconds ago"],"one":[0," second ago"]},"relative_ordinal":[null,"now",null],"relative_future":{"other":["in ",0," seconds"],"one":["in ",0," second"]},"display_name":"second"}},"sat":{"short":{"relative_past":{"other":[0," Saturdays ago"],"one":[0," Saturday ago"]},"relative_ordinal":["last Sat.","this Sat.","next Sat."],"relative_future":{"other":["in ",0," Saturdays"],"one":["in ",0," Saturday"]}},"narrow":{"relative_past":{"other":[0," Saturdays ago"],"one":[0," Saturday ago"]},"relative_ordinal":["last Sa","this Sa","next Sa"],"relative_future":{"other":["in ",0," Saturdays"],"one":["in ",0," Saturday"]}},"default":{"relative_past":{"other":[0," Saturdays ago"],"one":[0," Saturday ago"]},"relative_ordinal":["last Saturday","this Saturday","next Saturday"],"relative_future":{"other":["in ",0," Saturdays"],"one":["in ",0," Saturday"]}}},"quarter":{"short":{"relative_past":{"other":[0," qtr ago"],"one":[0," qtr ago"]},"relative_ordinal":["last qtr.","this qtr.","next qtr."],"relative_future":{"other":["in ",0," qtr"],"one":["in ",0," qtr"]},"display_name":"qtr"},"narrow":{"relative_past":{"other":[0," qtr ago"],"one":[0," qtr ago"]},"relative_ordinal":["last qtr.","this qtr.","next qtr."],"relative_future":{"other":["in ",0," qtr"],"one":["in ",0," qtr"]},"display_name":"qtr"},"default":{"relative_past":{"other":[0," quarters ago"],"one":[0," quarter ago"]},"relative_ordinal":["last quarter","this quarter","next quarter"],"relative_future":{"other":["in ",0," quarters"],"one":["in ",0," quarter"]},"display_name":"quarter"}},"month":{"short":{"relative_past":{"other":[0," mo ago"],"one":[0," mo ago"]},"relative_ordinal":["last mo.","this mo.","next mo."],"relative_future":{"other":["in ",0," mo"],"one":["in ",0," mo"]},"display_name":"mo"},"narrow":{"relative_past":{"other":[0," mo ago"],"one":[0," mo ago"]},"relative_ordinal":["last mo.","this mo.","next mo."],"relative_future":{"other":["in ",0," mo"],"one":["in ",0," mo"]},"display_name":"mo"},"default":{"relative_past":{"other":[0," months ago"],"one":[0," month ago"]},"relative_ordinal":["last month","this month","next month"],"relative_future":{"other":["in ",0," months"],"one":["in ",0," month"]},"display_name":"month"}},"mon":{"short":{"relative_past":{"other":[0," Mondays ago"],"one":[0," Monday ago"]},"relative_ordinal":["last Mon.","this Mon.","next Mon."],"relative_future":{"other":["in ",0," Mondays"],"one":["in ",0," Monday"]}},"narrow":{"relative_past":{"other":[0," Mondays ago"],"one":[0," Monday ago"]},"relative_ordinal":["last M","this M","next M"],"relative_future":{"other":["in ",0," Mondays"],"one":["in ",0," Monday"]}},"default":{"relative_past":{"other":[0," Mondays ago"],"one":[0," Monday ago"]},"relative_ordinal":["last Monday","this Monday","next Monday"],"relative_future":{"other":["in ",0," Mondays"],"one":["in ",0," Monday"]}}},"minute":{"short":{"relative_past":{"other":[0," min ago"],"one":[0," min ago"]},"relative_ordinal":[null,"this minute",null],"relative_future":{"other":["in ",0," min"],"one":["in ",0," min"]},"display_name":"min"},"narrow":{"relative_past":{"other":[0," min ago"],"one":[0," min ago"]},"relative_ordinal":[null,"this minute",null],"relative_future":{"other":["in ",0," min"],"one":["in ",0," min"]},"display_name":"min"},"default":{"relative_past":{"other":[0," minutes ago"],"one":[0," minute ago"]},"relative_ordinal":[null,"this minute",null],"relative_future":{"other":["in ",0," minutes"],"one":["in ",0," minute"]},"display_name":"minute"}},"hour":{"short":{"relative_past":{"other":[0," hr ago"],"one":[0," hr ago"]},"relative_ordinal":[null,"this hour",null],"relative_future":{"other":["in ",0," hr"],"one":["in ",0," hr"]},"display_name":"hr"},"narrow":{"relative_past":{"other":[0," hr ago"],"one":[0," hr ago"]},"relative_ordinal":[null,"this hour",null],"relative_future":{"other":["in ",0," hr"],"one":["in ",0," hr"]},"display_name":"hr"},"default":{"relative_past":{"other":[0," hours ago"],"one":[0," hour ago"]},"relative_ordinal":[null,"this hour",null],"relative_future":{"other":["in ",0," hours"],"one":["in ",0," hour"]},"display_name":"hour"}},"fri":{"short":{"relative_past":{"other":[0," Fridays ago"],"one":[0," Friday ago"]},"relative_ordinal":["last Fri.","this Fri.","next Fri."],"relative_future":{"other":["in ",0," Fridays"],"one":["in ",0," Friday"]}},"narrow":{"relative_past":{"other":[0," Fridays ago"],"one":[0," Friday ago"]},"relative_ordinal":["last F","this F","next F"],"relative_future":{"other":["in ",0," Fridays"],"one":["in ",0," Friday"]}},"default":{"relative_past":{"other":[0," Fridays ago"],"one":[0," Friday ago"]},"relative_ordinal":["last Friday","this Friday","next Friday"],"relative_future":{"other":["in ",0," Fridays"],"one":["in ",0," Friday"]}}},"era":{"short":{"relative_ordinal":[null,null,null],"display_name":"era"},"narrow":{"relative_ordinal":[null,null,null],"display_name":"era"},"default":{"relative_ordinal":[null,null,null],"display_name":"era"}},"dayperiod":{"short":{"relative_ordinal":[null,null,null],"display_name_alt_variant":"am/pm","display_name":"AM/PM"},"narrow":{"relative_ordinal":[null,null,null],"display_name_alt_variant":"am/pm","display_name":"AM/PM"},"default":{"relative_ordinal":[null,null,null],"display_name_alt_variant":"am/pm","display_name":"am/pm"}},"day_of_year":{"short":{"relative_ordinal":[null,null,null],"display_name":"day of yr."},"narrow":{"relative_ordinal":[null,null,null],"display_name":"day of yr."},"default":{"relative_ordinal":[null,null,null],"display_name":"day of year"}},"day":{"short":{"relative_past":{"other":[0," days ago"],"one":[0," day ago"]},"relative_ordinal":["yesterday","today","tomorrow"],"relative_future":{"other":["in ",0," days"],"one":["in ",0," day"]},"display_name":"day"},"narrow":{"relative_past":{"other":[0," days ago"],"one":[0," day ago"]},"relative_ordinal":["yesterday","today","tomorrow"],"relative_future":{"other":["in ",0," days"],"one":["in ",0," day"]},"display_name":"day"},"default":{"relative_past":{"other":[0," days ago"],"one":[0," day ago"]},"relative_ordinal":["yesterday","today","tomorrow"],"relative_future":{"other":["in ",0," days"],"one":["in ",0," day"]},"display_name":"day"}}},"currencies":{"BMD":{"tender":true,"symbol":"BMD","rounding":0,"narrow_symbol":"$","name":"Bermudan Dollar","digits":2,"count":{"other":"Bermudan dollars","one":"Bermudan dollar"},"code":"BMD","cash_rounding":0,"cash_digits":2},"ALK":{"tender":true,"symbol":"ALK","rounding":0,"narrow_symbol":null,"name":"Albanian Lek (1946–1965)","digits":2,"count":{"other":"Albanian lekë (1946–1965)","one":"Albanian lek (1946–1965)"},"code":"ALK","cash_rounding":0,"cash_digits":2},"NLG":{"tender":true,"symbol":"NLG","rounding":0,"narrow_symbol":null,"name":"Dutch Guilder","digits":2,"count":{"other":"Dutch guilders","one":"Dutch guilder"},"code":"NLG","cash_rounding":0,"cash_digits":2},"XRE":{"tender":true,"symbol":"XRE","rounding":0,"narrow_symbol":null,"name":"RINET Funds","digits":2,"count":{"other":"RINET Funds units","one":"RINET Funds unit"},"code":"XRE","cash_rounding":0,"cash_digits":2},"BRC":{"tender":true,"symbol":"BRC","rounding":0,"narrow_symbol":null,"name":"Brazilian Cruzado (1986–1989)","digits":2,"count":{"other":"Brazilian cruzados (1986–1989)","one":"Brazilian cruzado (1986–1989)"},"code":"BRC","cash_rounding":0,"cash_digits":2},"XBC":{"tender":true,"symbol":"XBC","rounding":0,"narrow_symbol":null,"name":"European Unit of Account (XBC)","digits":2,"count":{"other":"European units of account (XBC)","one":"European unit of account (XBC)"},"code":"XBC","cash_rounding":0,"cash_digits":2},"MVP":{"tender":true,"symbol":"MVP","rounding":0,"narrow_symbol":null,"name":"Maldivian Rupee (1947–1981)","digits":2,"count":{"other":"Maldivian rupees (1947–1981)","one":"Maldivian rupee (1947–1981)"},"code":"MVP","cash_rounding":0,"cash_digits":2},"BND":{"tender":true,"symbol":"BND","rounding":0,"narrow_symbol":"$","name":"Brunei Dollar","digits":2,"count":{"other":"Brunei dollars","one":"Brunei dollar"},"code":"BND","cash_rounding":0,"cash_digits":2},"CLF":{"tender":true,"symbol":"CLF","rounding":0,"narrow_symbol":null,"name":"Chilean Unit of Account (UF)","digits":4,"count":{"other":"Chilean units of account (UF)","one":"Chilean unit of account (UF)"},"code":"CLF","cash_rounding":0,"cash_digits":4},"COU":{"tender":true,"symbol":"COU","rounding":0,"narrow_symbol":null,"name":"Colombian Real Value Unit","digits":2,"count":{"other":"Colombian real value units","one":"Colombian real value unit"},"code":"COU","cash_rounding":0,"cash_digits":2},"MUR":{"tender":true,"symbol":"MUR","rounding":0,"narrow_symbol":"Rs","name":"Mauritian Rupee","digits":0,"count":{"other":"Mauritian rupees","one":"Mauritian rupee"},"code":"MUR","cash_rounding":0,"cash_digits":0},"MGA":{"tender":true,"symbol":"MGA","rounding":0,"narrow_symbol":"Ar","name":"Malagasy Ariary","digits":0,"count":{"other":"Malagasy ariaries","one":"Malagasy ariary"},"code":"MGA","cash_rounding":0,"cash_digits":0},"BYN":{"tender":true,"symbol":"BYN","rounding":0,"narrow_symbol":"р.","name":"Belarusian Rouble","digits":2,"count":{"other":"Belarusian roubles","one":"Belarusian rouble"},"code":"BYN","cash_rounding":0,"cash_digits":2},"ZAR":{"tender":true,"symbol":"ZAR","rounding":0,"narrow_symbol":"R","name":"South African Rand","digits":2,"count":{"other":"South African rand","one":"South African rand"},"code":"ZAR","cash_rounding":0,"cash_digits":2},"RSD":{"tender":true,"symbol":"RSD","rounding":0,"narrow_symbol":null,"name":"Serbian Dinar","digits":0,"count":{"other":"Serbian dinars","one":"Serbian dinar"},"code":"RSD","cash_rounding":0,"cash_digits":0},"MYR":{"tender":true,"symbol":"MYR","rounding":0,"narrow_symbol":"RM","name":"Malaysian Ringgit","digits":2,"count":{"other":"Malaysian ringgits","one":"Malaysian ringgit"},"code":"MYR","cash_rounding":0,"cash_digits":2},"ZRN":{"tender":true,"symbol":"ZRN","rounding":0,"narrow_symbol":null,"name":"Zairean New Zaire (1993–1998)","digits":2,"count":{"other":"Zairean new zaires (1993–1998)","one":"Zairean new zaire (1993–1998)"},"code":"ZRN","cash_rounding":0,"cash_digits":2},"MOP":{"tender":true,"symbol":"MOP","rounding":0,"narrow_symbol":null,"name":"Macanese Pataca","digits":2,"count":{"other":"Macanese patacas","one":"Macanese pataca"},"code":"MOP","cash_rounding":0,"cash_digits":2},"AFN":{"tender":true,"symbol":"AFN","rounding":0,"narrow_symbol":null,"name":"Afghan Afghani","digits":0,"count":{"other":"Afghan Afghanis","one":"Afghan Afghani"},"code":"AFN","cash_rounding":0,"cash_digits":0},"LTL":{"tender":true,"symbol":"LTL","rounding":0,"narrow_symbol":"Lt","name":"Lithuanian Litas","digits":2,"count":{"other":"Lithuanian litai","one":"Lithuanian litas"},"code":"LTL","cash_rounding":0,"cash_digits":2},"FJD":{"tender":true,"symbol":"FJD","rounding":0,"narrow_symbol":"$","name":"Fijian Dollar","digits":2,"count":{"other":"Fijian dollars","one":"Fijian dollar"},"code":"FJD","cash_rounding":0,"cash_digits":2},"TTD":{"tender":true,"symbol":"TTD","rounding":0,"narrow_symbol":"$","name":"Trinidad & Tobago Dollar","digits":2,"count":{"other":"Trinidad & Tobago dollars","one":"Trinidad & Tobago dollar"},"code":"TTD","cash_rounding":0,"cash_digits":2},"UYI":{"tender":true,"symbol":"UYI","rounding":0,"narrow_symbol":null,"name":"Uruguayan Peso (Indexed Units)","digits":0,"count":{"other":"Uruguayan pesos (indexed units)","one":"Uruguayan peso (indexed units)"},"code":"UYI","cash_rounding":0,"cash_digits":0},"GIP":{"tender":true,"symbol":"GIP","rounding":0,"narrow_symbol":"£","name":"Gibraltar Pound","digits":2,"count":{"other":"Gibraltar pounds","one":"Gibraltar pound"},"code":"GIP","cash_rounding":0,"cash_digits":2},"RON":{"tender":true,"symbol":"RON","rounding":0,"narrow_symbol":"lei","name":"Romanian Leu","digits":2,"count":{"other":"Romanian lei","one":"Romanian leu"},"code":"RON","cash_rounding":0,"cash_digits":2},"CHW":{"tender":true,"symbol":"CHW","rounding":0,"narrow_symbol":null,"name":"WIR Franc","digits":2,"count":{"other":"WIR francs","one":"WIR franc"},"code":"CHW","cash_rounding":0,"cash_digits":2},"TZS":{"tender":true,"symbol":"TZS","rounding":0,"narrow_symbol":null,"name":"Tanzanian Shilling","digits":0,"count":{"other":"Tanzanian shillings","one":"Tanzanian shilling"},"code":"TZS","cash_rounding":0,"cash_digits":0},"LTT":{"tender":true,"symbol":"LTT","rounding":0,"narrow_symbol":null,"name":"Lithuanian Talonas","digits":2,"count":{"other":"Lithuanian talonases","one":"Lithuanian talonas"},"code":"LTT","cash_rounding":0,"cash_digits":2},"BEL":{"tender":true,"symbol":"BEL","rounding":0,"narrow_symbol":null,"name":"Belgian Franc (financial)","digits":2,"count":{"other":"Belgian francs (financial)","one":"Belgian franc (financial)"},"code":"BEL","cash_rounding":0,"cash_digits":2},"AED":{"tender":true,"symbol":"AED","rounding":0,"narrow_symbol":null,"name":"United Arab Emirates Dirham","digits":2,"count":{"other":"UAE dirhams","one":"UAE dirham"},"code":"AED","cash_rounding":0,"cash_digits":2},"VUV":{"tender":true,"symbol":"VUV","rounding":0,"narrow_symbol":null,"name":"Vanuatu Vatu","digits":0,"count":{"other":"Vanuatu vatus","one":"Vanuatu vatu"},"code":"VUV","cash_rounding":0,"cash_digits":0},"TRY":{"tender":true,"symbol":"TRY","rounding":0,"narrow_symbol":"₺","name":"Turkish Lira","digits":2,"count":{"other":"Turkish Lira","one":"Turkish lira"},"code":"TRY","cash_rounding":0,"cash_digits":2},"DEM":{"tender":true,"symbol":"DEM","rounding":0,"narrow_symbol":null,"name":"German Mark","digits":2,"count":{"other":"German marks","one":"German mark"},"code":"DEM","cash_rounding":0,"cash_digits":2},"KGS":{"tender":true,"symbol":"KGS","rounding":0,"narrow_symbol":null,"name":"Kyrgystani Som","digits":2,"count":{"other":"Kyrgystani soms","one":"Kyrgystani som"},"code":"KGS","cash_rounding":0,"cash_digits":2},"TJR":{"tender":true,"symbol":"TJR","rounding":0,"narrow_symbol":null,"name":"Tajikistani Rouble","digits":2,"count":{"other":"Tajikistani roubles","one":"Tajikistani rouble"},"code":"TJR","cash_rounding":0,"cash_digits":2},"BOL":{"tender":true,"symbol":"BOL","rounding":0,"narrow_symbol":null,"name":"Bolivian Boliviano (1863–1963)","digits":2,"count":{"other":"Bolivian bolivianos (1863–1963)","one":"Bolivian boliviano (1863–1963)"},"code":"BOL","cash_rounding":0,"cash_digits":2},"SRG":{"tender":true,"symbol":"SRG","rounding":0,"narrow_symbol":null,"name":"Surinamese Guilder","digits":2,"count":{"other":"Surinamese guilders","one":"Surinamese guilder"},"code":"SRG","cash_rounding":0,"cash_digits":2},"PGK":{"tender":true,"symbol":"PGK","rounding":0,"narrow_symbol":null,"name":"Papua New Guinean Kina","digits":2,"count":{"other":"Papua New Guinean kina","one":"Papua New Guinean kina"},"code":"PGK","cash_rounding":0,"cash_digits":2},"SGD":{"tender":true,"symbol":"SGD","rounding":0,"narrow_symbol":"$","name":"Singapore Dollar","digits":2,"count":{"other":"Singapore dollars","one":"Singapore dollar"},"code":"SGD","cash_rounding":0,"cash_digits":2},"PYG":{"tender":true,"symbol":"PYG","rounding":0,"narrow_symbol":"₲","name":"Paraguayan Guarani","digits":0,"count":{"other":"Paraguayan guaranis","one":"Paraguayan guarani"},"code":"PYG","cash_rounding":0,"cash_digits":0},"STD":{"tender":true,"symbol":"STD","rounding":0,"narrow_symbol":"Db","name":"São Tomé & Príncipe Dobra","digits":0,"count":{"other":"São Tomé & Príncipe dobras","one":"São Tomé & Príncipe dobra"},"code":"STD","cash_rounding":0,"cash_digits":0},"BOV":{"tender":true,"symbol":"BOV","rounding":0,"narrow_symbol":null,"name":"Bolivian Mvdol","digits":2,"count":{"other":"Bolivian mvdols","one":"Bolivian mvdol"},"code":"BOV","cash_rounding":0,"cash_digits":2},"XFU":{"tender":true,"symbol":"XFU","rounding":0,"narrow_symbol":null,"name":"French UIC-Franc","digits":2,"count":{"other":"French UIC-francs","one":"French UIC-franc"},"code":"XFU","cash_rounding":0,"cash_digits":2},"KES":{"tender":true,"symbol":"KES","rounding":0,"narrow_symbol":null,"name":"Kenyan Shilling","digits":2,"count":{"other":"Kenyan shillings","one":"Kenyan shilling"},"code":"KES","cash_rounding":0,"cash_digits":2},"BRR":{"tender":true,"symbol":"BRR","rounding":0,"narrow_symbol":null,"name":"Brazilian Cruzeiro (1993–1994)","digits":2,"count":{"other":"Brazilian cruzeiros (1993–1994)","one":"Brazilian cruzeiro (1993–1994)"},"code":"BRR","cash_rounding":0,"cash_digits":2},"JOD":{"tender":true,"symbol":"JOD","rounding":0,"narrow_symbol":null,"name":"Jordanian Dinar","digits":3,"count":{"other":"Jordanian dinars","one":"Jordanian dinar"},"code":"JOD","cash_rounding":0,"cash_digits":3},"BGN":{"tender":true,"symbol":"BGN","rounding":0,"narrow_symbol":null,"name":"Bulgarian Lev","digits":2,"count":{"other":"Bulgarian leva","one":"Bulgarian lev"},"code":"BGN","cash_rounding":0,"cash_digits":2},"MZM":{"tender":true,"symbol":"MZM","rounding":0,"narrow_symbol":null,"name":"Mozambican Metical (1980–2006)","digits":2,"count":{"other":"Mozambican meticals (1980–2006)","one":"Mozambican metical (1980–2006)"},"code":"MZM","cash_rounding":0,"cash_digits":2},"RWF":{"tender":true,"symbol":"RWF","rounding":0,"narrow_symbol":"RF","name":"Rwandan Franc","digits":0,"count":{"other":"Rwandan francs","one":"Rwandan franc"},"code":"RWF","cash_rounding":0,"cash_digits":0},"MNT":{"tender":true,"symbol":"MNT","rounding":0,"narrow_symbol":"₮","name":"Mongolian Tugrik","digits":0,"count":{"other":"Mongolian tugriks","one":"Mongolian tugrik"},"code":"MNT","cash_rounding":0,"cash_digits":0},"BZD":{"tender":true,"symbol":"BZD","rounding":0,"narrow_symbol":"$","name":"Belize Dollar","digits":2,"count":{"other":"Belize dollars","one":"Belize dollar"},"code":"BZD","cash_rounding":0,"cash_digits":2},"RUR":{"tender":true,"symbol":"RUR","rounding":0,"narrow_symbol":"р.","name":"Russian Rouble (1991–1998)","digits":2,"count":{"other":"Russian roubles (1991–1998)","one":"Russian rouble (1991–1998)"},"code":"RUR","cash_rounding":0,"cash_digits":2},"ALL":{"tender":true,"symbol":"ALL","rounding":0,"narrow_symbol":null,"name":"Albanian Lek","digits":0,"count":{"other":"Albanian lekë","one":"Albanian lek"},"code":"ALL","cash_rounding":0,"cash_digits":0},"SBD":{"tender":true,"symbol":"SBD","rounding":0,"narrow_symbol":"$","name":"Solomon Islands Dollar","digits":2,"count":{"other":"Solomon Islands dollars","one":"Solomon Islands dollar"},"code":"SBD","cash_rounding":0,"cash_digits":2},"DDM":{"tender":true,"symbol":"DDM","rounding":0,"narrow_symbol":null,"name":"East German Mark","digits":2,"count":{"other":"East German marks","one":"East German mark"},"code":"DDM","cash_rounding":0,"cash_digits":2},"XBB":{"tender":true,"symbol":"XBB","rounding":0,"narrow_symbol":null,"name":"European Monetary Unit","digits":2,"count":{"other":"European monetary units","one":"European monetary unit"},"code":"XBB","cash_rounding":0,"cash_digits":2},"PLZ":{"tender":true,"symbol":"PLZ","rounding":0,"narrow_symbol":null,"name":"Polish Zloty (1950–1995)","digits":2,"count":{"other":"Polish zlotys (PLZ)","one":"Polish zloty (PLZ)"},"code":"PLZ","cash_rounding":0,"cash_digits":2},"GRD":{"tender":true,"symbol":"GRD","rounding":0,"narrow_symbol":null,"name":"Greek Drachma","digits":2,"count":{"other":"Greek drachmas","one":"Greek drachma"},"code":"GRD","cash_rounding":0,"cash_digits":2},"AZN":{"tender":true,"symbol":"AZN","rounding":0,"narrow_symbol":null,"name":"Azerbaijani Manat","digits":2,"count":{"other":"Azerbaijani manats","one":"Azerbaijani manat"},"code":"AZN","cash_rounding":0,"cash_digits":2},"TMT":{"tender":true,"symbol":"TMT","rounding":0,"narrow_symbol":null,"name":"Turkmenistani Manat","digits":2,"count":{"other":"Turkmenistani manat","one":"Turkmenistani manat"},"code":"TMT","cash_rounding":0,"cash_digits":2},"XAF":{"tender":true,"symbol":"FCFA","rounding":0,"narrow_symbol":null,"name":"Central African CFA Franc","digits":0,"count":{"other":"Central African CFA francs","one":"Central African CFA franc"},"code":"XAF","cash_rounding":0,"cash_digits":0},"SAR":{"tender":true,"symbol":"SAR","rounding":0,"narrow_symbol":null,"name":"Saudi Riyal","digits":2,"count":{"other":"Saudi riyals","one":"Saudi riyal"},"code":"SAR","cash_rounding":0,"cash_digits":2},"USN":{"tender":true,"symbol":"USN","rounding":0,"narrow_symbol":null,"name":"US Dollar (Next day)","digits":2,"count":{"other":"US dollars (next day)","one":"US dollar (next day)"},"code":"USN","cash_rounding":0,"cash_digits":2},"ZWD":{"tender":true,"symbol":"ZWD","rounding":0,"narrow_symbol":null,"name":"Zimbabwean Dollar (1980–2008)","digits":0,"count":{"other":"Zimbabwean dollars (1980–2008)","one":"Zimbabwean dollar (1980–2008)"},"code":"ZWD","cash_rounding":0,"cash_digits":0},"CVE":{"tender":true,"symbol":"CVE","rounding":0,"narrow_symbol":null,"name":"Cape Verdean Escudo","digits":2,"count":{"other":"Cape Verdean escudos","one":"Cape Verdean escudo"},"code":"CVE","cash_rounding":0,"cash_digits":2},"CUP":{"tender":true,"symbol":"CUP","rounding":0,"narrow_symbol":"$","name":"Cuban Peso","digits":2,"count":{"other":"Cuban pesos","one":"Cuban peso"},"code":"CUP","cash_rounding":0,"cash_digits":2},"UAK":{"tender":true,"symbol":"UAK","rounding":0,"narrow_symbol":null,"name":"Ukrainian Karbovanets","digits":2,"count":{"other":"Ukrainian karbovantsiv","one":"Ukrainian karbovanets"},"code":"UAK","cash_rounding":0,"cash_digits":2},"GYD":{"tender":true,"symbol":"GYD","rounding":0,"narrow_symbol":"$","name":"Guyanaese Dollar","digits":0,"count":{"other":"Guyanaese dollars","one":"Guyanaese dollar"},"code":"GYD","cash_rounding":0,"cash_digits":0},"BUK":{"tender":true,"symbol":"BUK","rounding":0,"narrow_symbol":null,"name":"Burmese Kyat","digits":2,"count":{"other":"Burmese kyats","one":"Burmese kyat"},"code":"BUK","cash_rounding":0,"cash_digits":2},"BAN":{"tender":true,"symbol":"BAN","rounding":0,"narrow_symbol":null,"name":"Bosnia-Herzegovina New Dinar (1994–1997)","digits":2,"count":{"other":"Bosnia-Herzegovina new dinars (1994–1997)","one":"Bosnia-Herzegovina new dinar (1994–1997)"},"code":"BAN","cash_rounding":0,"cash_digits":2},"NPR":{"tender":true,"symbol":"NPR","rounding":0,"narrow_symbol":"Rs","name":"Nepalese Rupee","digits":2,"count":{"other":"Nepalese rupees","one":"Nepalese rupee"},"code":"NPR","cash_rounding":0,"cash_digits":2},"YUD":{"tender":true,"symbol":"YUD","rounding":0,"narrow_symbol":null,"name":"Yugoslavian Hard Dinar (1966–1990)","digits":2,"count":{"other":"Yugoslavian hard dinars (1966–1990)","one":"Yugoslavian hard dinar (1966–1990)"},"code":"YUD","cash_rounding":0,"cash_digits":2},"BYR":{"tender":true,"symbol":"BYR","rounding":0,"narrow_symbol":null,"name":"Belarusian Rouble (2000–2016)","digits":0,"count":{"other":"Belarusian roubles (2000–2016)","one":"Belarusian rouble (2000–2016)"},"code":"BYR","cash_rounding":0,"cash_digits":0},"TND":{"tender":true,"symbol":"TND","rounding":0,"narrow_symbol":null,"name":"Tunisian Dinar","digits":3,"count":{"other":"Tunisian dinars","one":"Tunisian dinar"},"code":"TND","cash_rounding":0,"cash_digits":3},"PLN":{"tender":true,"symbol":"PLN","rounding":0,"narrow_symbol":"zł","name":"Polish Zloty","digits":2,"count":{"other":"Polish zlotys","one":"Polish zloty"},"code":"PLN","cash_rounding":0,"cash_digits":2},"HUF":{"tender":true,"symbol":"HUF","rounding":0,"narrow_symbol":"Ft","name":"Hungarian Forint","digits":2,"count":{"other":"Hungarian forints","one":"Hungarian forint"},"code":"HUF","cash_rounding":0,"cash_digits":0},"MCF":{"tender":true,"symbol":"MCF","rounding":0,"narrow_symbol":null,"name":"Monegasque Franc","digits":2,"count":{"other":"Monegasque francs","one":"Monegasque franc"},"code":"MCF","cash_rounding":0,"cash_digits":2},"LVL":{"tender":true,"symbol":"LVL","rounding":0,"narrow_symbol":"Ls","name":"Latvian Lats","digits":2,"count":{"other":"Latvian lati","one":"Latvian lats"},"code":"LVL","cash_rounding":0,"cash_digits":2},"UAH":{"tender":true,"symbol":"UAH","rounding":0,"narrow_symbol":"₴","name":"Ukrainian Hryvnia","digits":2,"count":{"other":"Ukrainian hryvnias","one":"Ukrainian hryvnia"},"code":"UAH","cash_rounding":0,"cash_digits":2},"LSL":{"tender":true,"symbol":"LSL","rounding":0,"narrow_symbol":null,"name":"Lesotho Loti","digits":2,"count":{"other":"Lesotho lotis","one":"Lesotho loti"},"code":"LSL","cash_rounding":0,"cash_digits":2},"ETB":{"tender":true,"symbol":"ETB","rounding":0,"narrow_symbol":null,"name":"Ethiopian Birr","digits":2,"count":{"other":"Ethiopian birrs","one":"Ethiopian birr"},"code":"ETB","cash_rounding":0,"cash_digits":2},"NIO":{"tender":true,"symbol":"NIO","rounding":0,"narrow_symbol":"C$","name":"Nicaraguan Córdoba","digits":2,"count":{"other":"Nicaraguan córdobas","one":"Nicaraguan córdoba"},"code":"NIO","cash_rounding":0,"cash_digits":2},"IQD":{"tender":true,"symbol":"IQD","rounding":0,"narrow_symbol":null,"name":"Iraqi Dinar","digits":0,"count":{"other":"Iraqi dinars","one":"Iraqi dinar"},"code":"IQD","cash_rounding":0,"cash_digits":0},"ROL":{"tender":true,"symbol":"ROL","rounding":0,"narrow_symbol":null,"name":"Romanian Leu (1952–2006)","digits":2,"count":{"other":"Romanian Lei (1952–2006)","one":"Romanian leu (1952–2006)"},"code":"ROL","cash_rounding":0,"cash_digits":2},"CRC":{"tender":true,"symbol":"CRC","rounding":0,"narrow_symbol":"₡","name":"Costa Rican Colón","digits":2,"count":{"other":"Costa Rican colóns","one":"Costa Rican colón"},"code":"CRC","cash_rounding":0,"cash_digits":0},"IRR":{"tender":true,"symbol":"IRR","rounding":0,"narrow_symbol":null,"name":"Iranian Rial","digits":0,"count":{"other":"Iranian rials","one":"Iranian rial"},"code":"IRR","cash_rounding":0,"cash_digits":0},"ITL":{"tender":true,"symbol":"ITL","rounding":0,"narrow_symbol":null,"name":"Italian Lira","digits":0,"count":{"other":"Italian liras","one":"Italian lira"},"code":"ITL","cash_rounding":0,"cash_digits":0},"SSP":{"tender":true,"symbol":"SSP","rounding":0,"narrow_symbol":"£","name":"South Sudanese Pound","digits":2,"count":{"other":"South Sudanese pounds","one":"South Sudanese pound"},"code":"SSP","cash_rounding":0,"cash_digits":2},"XPD":{"tender":true,"symbol":"XPD","rounding":0,"narrow_symbol":null,"name":"Palladium","digits":2,"count":{"other":"troy ounces of palladium","one":"troy ounce of palladium"},"code":"XPD","cash_rounding":0,"cash_digits":2},"FKP":{"tender":true,"symbol":"FKP","rounding":0,"narrow_symbol":"£","name":"Falkland Islands Pound","digits":2,"count":{"other":"Falkland Islands pounds","one":"Falkland Islands pound"},"code":"FKP","cash_rounding":0,"cash_digits":2},"SKK":{"tender":true,"symbol":"SKK","rounding":0,"narrow_symbol":null,"name":"Slovak Koruna","digits":2,"count":{"other":"Slovak korunas","one":"Slovak koruna"},"code":"SKK","cash_rounding":0,"cash_digits":2},"SIT":{"tender":true,"symbol":"SIT","rounding":0,"narrow_symbol":null,"name":"Slovenian Tolar","digits":2,"count":{"other":"Slovenian tolars","one":"Slovenian tolar"},"code":"SIT","cash_rounding":0,"cash_digits":2},"CHF":{"tender":true,"symbol":"CHF","rounding":0,"narrow_symbol":null,"name":"Swiss Franc","digits":2,"count":{"other":"Swiss francs","one":"Swiss franc"},"code":"CHF","cash_rounding":5,"cash_digits":2},"JMD":{"tender":true,"symbol":"JMD","rounding":0,"narrow_symbol":"$","name":"Jamaican Dollar","digits":2,"count":{"other":"Jamaican dollars","one":"Jamaican dollar"},"code":"JMD","cash_rounding":0,"cash_digits":2},"QAR":{"tender":true,"symbol":"QAR","rounding":0,"narrow_symbol":null,"name":"Qatari Rial","digits":2,"count":{"other":"Qatari rials","one":"Qatari rial"},"code":"QAR","cash_rounding":0,"cash_digits":2},"KHR":{"tender":true,"symbol":"KHR","rounding":0,"narrow_symbol":"៛","name":"Cambodian Riel","digits":2,"count":{"other":"Cambodian riels","one":"Cambodian riel"},"code":"KHR","cash_rounding":0,"cash_digits":2},"OMR":{"tender":true,"symbol":"OMR","rounding":0,"narrow_symbol":null,"name":"Omani Rial","digits":3,"count":{"other":"Omani rials","one":"Omani rial"},"code":"OMR","cash_rounding":0,"cash_digits":3},"CHE":{"tender":true,"symbol":"CHE","rounding":0,"narrow_symbol":null,"name":"WIR Euro","digits":2,"count":{"other":"WIR euros","one":"WIR euro"},"code":"CHE","cash_rounding":0,"cash_digits":2},"CNH":{"tender":true,"symbol":"CNH","rounding":0,"narrow_symbol":null,"name":"Chinese Yuan (offshore)","digits":2,"count":{"other":"Chinese yuan (offshore)","one":"Chinese yuan (offshore)"},"code":"CNH","cash_rounding":0,"cash_digits":2},"CDF":{"tender":true,"symbol":"CDF","rounding":0,"narrow_symbol":null,"name":"Congolese Franc","digits":2,"count":{"other":"Congolese francs","one":"Congolese franc"},"code":"CDF","cash_rounding":0,"cash_digits":2},"MGF":{"tender":true,"symbol":"MGF","rounding":0,"narrow_symbol":null,"name":"Malagasy Franc","digits":0,"count":{"other":"Malagasy francs","one":"Malagasy franc"},"code":"MGF","cash_rounding":0,"cash_digits":0},"PES":{"tender":true,"symbol":"PES","rounding":0,"narrow_symbol":null,"name":"Peruvian Sol (1863–1965)","digits":2,"count":{"other":"Peruvian soles (1863–1965)","one":"Peruvian sol (1863–1965)"},"code":"PES","cash_rounding":0,"cash_digits":2},"XAG":{"tender":true,"symbol":"XAG","rounding":0,"narrow_symbol":null,"name":"Silver","digits":2,"count":{"other":"troy ounces of silver","one":"troy ounce of silver"},"code":"XAG","cash_rounding":0,"cash_digits":2},"ILS":{"tender":true,"symbol":"₪","rounding":0,"narrow_symbol":"₪","name":"Israeli New Shekel","digits":2,"count":{"other":"Israeli new shekels","one":"Israeli new shekel"},"code":"ILS","cash_rounding":0,"cash_digits":2},"KYD":{"tender":true,"symbol":"KYD","rounding":0,"narrow_symbol":"$","name":"Cayman Islands Dollar","digits":2,"count":{"other":"Cayman Islands dollars","one":"Cayman Islands dollar"},"code":"KYD","cash_rounding":0,"cash_digits":2},"UGS":{"tender":true,"symbol":"UGS","rounding":0,"narrow_symbol":null,"name":"Ugandan Shilling (1966–1987)","digits":2,"count":{"other":"Ugandan shillings (1966–1987)","one":"Ugandan shilling (1966–1987)"},"code":"UGS","cash_rounding":0,"cash_digits":2},"ECV":{"tender":true,"symbol":"ECV","rounding":0,"narrow_symbol":null,"name":"Ecuadorian Unit of Constant Value","digits":2,"count":{"other":"Ecuadorian units of constant value","one":"Ecuadorian unit of constant value"},"code":"ECV","cash_rounding":0,"cash_digits":2},"MWK":{"tender":true,"symbol":"MWK","rounding":0,"narrow_symbol":null,"name":"Malawian Kwacha","digits":2,"count":{"other":"Malawian kwachas","one":"Malawian kwacha"},"code":"MWK","cash_rounding":0,"cash_digits":2},"EEK":{"tender":true,"symbol":"EEK","rounding":0,"narrow_symbol":null,"name":"Estonian Kroon","digits":2,"count":{"other":"Estonian kroons","one":"Estonian kroon"},"code":"EEK","cash_rounding":0,"cash_digits":2},"SUR":{"tender":true,"symbol":"SUR","rounding":0,"narrow_symbol":null,"name":"Soviet Rouble","digits":2,"count":{"other":"Soviet roubles","one":"Soviet rouble"},"code":"SUR","cash_rounding":0,"cash_digits":2},"ZMW":{"tender":true,"symbol":"ZMW","rounding":0,"narrow_symbol":"ZK","name":"Zambian Kwacha","digits":2,"count":{"other":"Zambian kwachas","one":"Zambian kwacha"},"code":"ZMW","cash_rounding":0,"cash_digits":2},"YDD":{"tender":true,"symbol":"YDD","rounding":0,"narrow_symbol":null,"name":"Yemeni Dinar","digits":2,"count":{"other":"Yemeni dinars","one":"Yemeni dinar"},"code":"YDD","cash_rounding":0,"cash_digits":2},"ARS":{"tender":true,"symbol":"ARS","rounding":0,"narrow_symbol":"$","name":"Argentine Peso","digits":2,"count":{"other":"Argentine pesos","one":"Argentine peso"},"code":"ARS","cash_rounding":0,"cash_digits":2},"FRF":{"tender":true,"symbol":"FRF","rounding":0,"narrow_symbol":null,"name":"French Franc","digits":2,"count":{"other":"French francs","one":"French franc"},"code":"FRF","cash_rounding":0,"cash_digits":2},"GNS":{"tender":true,"symbol":"GNS","rounding":0,"narrow_symbol":null,"name":"Guinean Syli","digits":2,"count":{"other":"Guinean sylis","one":"Guinean syli"},"code":"GNS","cash_rounding":0,"cash_digits":2},"MZN":{"tender":true,"symbol":"MZN","rounding":0,"narrow_symbol":null,"name":"Mozambican Metical","digits":2,"count":{"other":"Mozambican meticals","one":"Mozambican metical"},"code":"MZN","cash_rounding":0,"cash_digits":2},"MRO":{"tender":true,"symbol":"MRO","rounding":0,"narrow_symbol":null,"name":"Mauritanian Ouguiya","digits":0,"count":{"other":"Mauritanian ouguiyas","one":"Mauritanian ouguiya"},"code":"MRO","cash_rounding":0,"cash_digits":0},"SDG":{"tender":true,"symbol":"SDG","rounding":0,"narrow_symbol":null,"name":"Sudanese Pound","digits":2,"count":{"other":"Sudanese pounds","one":"Sudanese pound"},"code":"SDG","cash_rounding":0,"cash_digits":2},"RUB":{"tender":true,"symbol":"RUB","rounding":0,"narrow_symbol":"₽","name":"Russian Rouble","digits":2,"count":{"other":"Russian roubles","one":"Russian rouble"},"code":"RUB","cash_rounding":0,"cash_digits":2},"LVR":{"tender":true,"symbol":"LVR","rounding":0,"narrow_symbol":null,"name":"Latvian Rouble","digits":2,"count":{"other":"Latvian roubles","one":"Latvian rouble"},"code":"LVR","cash_rounding":0,"cash_digits":2},"CLP":{"tender":true,"symbol":"CLP","rounding":0,"narrow_symbol":"$","name":"Chilean Peso","digits":0,"count":{"other":"Chilean pesos","one":"Chilean peso"},"code":"CLP","cash_rounding":0,"cash_digits":0},"CNY":{"tender":true,"symbol":"CN¥","rounding":0,"narrow_symbol":"¥","name":"Chinese Yuan","digits":2,"count":{"other":"Chinese yuan","one":"Chinese yuan"},"code":"CNY","cash_rounding":0,"cash_digits":2},"LBP":{"tender":true,"symbol":"LBP","rounding":0,"narrow_symbol":"L£","name":"Lebanese Pound","digits":0,"count":{"other":"Lebanese pounds","one":"Lebanese pound"},"code":"LBP","cash_rounding":0,"cash_digits":0},"INR":{"tender":true,"symbol":"₹","rounding":0,"narrow_symbol":"₹","name":"Indian Rupee","digits":2,"count":{"other":"Indian rupees","one":"Indian rupee"},"code":"INR","cash_rounding":0,"cash_digits":2},"UYP":{"tender":true,"symbol":"UYP","rounding":0,"narrow_symbol":null,"name":"Uruguayan Peso (1975–1993)","digits":2,"count":{"other":"Uruguayan pesos (1975–1993)","one":"Uruguayan peso (1975–1993)"},"code":"UYP","cash_rounding":0,"cash_digits":2},"PEI":{"tender":true,"symbol":"PEI","rounding":0,"narrow_symbol":null,"name":"Peruvian Inti","digits":2,"count":{"other":"Peruvian intis","one":"Peruvian inti"},"code":"PEI","cash_rounding":0,"cash_digits":2},"ERN":{"tender":true,"symbol":"ERN","rounding":0,"narrow_symbol":null,"name":"Eritrean Nakfa","digits":2,"count":{"other":"Eritrean nakfas","one":"Eritrean nakfa"},"code":"ERN","cash_rounding":0,"cash_digits":2},"GNF":{"tender":true,"symbol":"GNF","rounding":0,"narrow_symbol":"FG","name":"Guinean Franc","digits":0,"count":{"other":"Guinean francs","one":"Guinean franc"},"code":"GNF","cash_rounding":0,"cash_digits":0},"ZWL":{"tender":true,"symbol":"ZWL","rounding":0,"narrow_symbol":null,"name":"Zimbabwean Dollar (2009)","digits":2,"count":{"other":"Zimbabwean dollars (2009)","one":"Zimbabwean dollar (2009)"},"code":"ZWL","cash_rounding":0,"cash_digits":2},"STN":{"tender":true,"symbol":"STN","rounding":0,"narrow_symbol":null,"name":"São Tomé & Príncipe Dobra (2018)","digits":2,"count":{"other":"São Tomé & Príncipe dobras (2018)","one":"São Tomé & Príncipe dobra (2018)"},"code":"STN","cash_rounding":0,"cash_digits":2},"ESA":{"tender":true,"symbol":"ESA","rounding":0,"narrow_symbol":null,"name":"Spanish Peseta (A account)","digits":2,"count":{"other":"Spanish pesetas (A account)","one":"Spanish peseta (A account)"},"code":"ESA","cash_rounding":0,"cash_digits":2},"XEU":{"tender":true,"symbol":"XEU","rounding":0,"narrow_symbol":null,"name":"European Currency Unit","digits":2,"count":{"other":"European currency units","one":"European currency unit"},"code":"XEU","cash_rounding":0,"cash_digits":2},"PAB":{"tender":true,"symbol":"PAB","rounding":0,"narrow_symbol":null,"name":"Panamanian Balboa","digits":2,"count":{"other":"Panamanian balboas","one":"Panamanian balboa"},"code":"PAB","cash_rounding":0,"cash_digits":2},"VEB":{"tender":true,"symbol":"VEB","rounding":0,"narrow_symbol":null,"name":"Venezuelan Bolívar (1871–2008)","digits":2,"count":{"other":"Venezuelan bolívars (1871–2008)","one":"Venezuelan bolívar (1871–2008)"},"code":"VEB","cash_rounding":0,"cash_digits":2},"HRD":{"tender":true,"symbol":"HRD","rounding":0,"narrow_symbol":null,"name":"Croatian Dinar","digits":2,"count":{"other":"Croatian dinars","one":"Croatian dinar"},"code":"HRD","cash_rounding":0,"cash_digits":2},"DZD":{"tender":true,"symbol":"DZD","rounding":0,"narrow_symbol":null,"name":"Algerian Dinar","digits":2,"count":{"other":"Algerian dinars","one":"Algerian dinar"},"code":"DZD","cash_rounding":0,"cash_digits":2},"YUM":{"tender":true,"symbol":"YUM","rounding":0,"narrow_symbol":null,"name":"Yugoslavian New Dinar (1994–2002)","digits":2,"count":{"other":"Yugoslavian new dinars (1994–2002)","one":"Yugoslavian new dinar (1994–2002)"},"code":"YUM","cash_rounding":0,"cash_digits":2},"XFO":{"tender":true,"symbol":"XFO","rounding":0,"narrow_symbol":null,"name":"French Gold Franc","digits":2,"count":{"other":"French gold francs","one":"French gold franc"},"code":"XFO","cash_rounding":0,"cash_digits":2},"BHD":{"tender":true,"symbol":"BHD","rounding":0,"narrow_symbol":null,"name":"Bahraini Dinar","digits":3,"count":{"other":"Bahraini dinars","one":"Bahraini dinar"},"code":"BHD","cash_rounding":0,"cash_digits":3},"ZRZ":{"tender":true,"symbol":"ZRZ","rounding":0,"narrow_symbol":null,"name":"Zairean Zaire (1971–1993)","digits":2,"count":{"other":"Zairean zaires (1971–1993)","one":"Zairean zaire (1971–1993)"},"code":"ZRZ","cash_rounding":0,"cash_digits":2},"SCR":{"tender":true,"symbol":"SCR","rounding":0,"narrow_symbol":null,"name":"Seychellois Rupee","digits":2,"count":{"other":"Seychellois rupees","one":"Seychellois rupee"},"code":"SCR","cash_rounding":0,"cash_digits":2},"DJF":{"tender":true,"symbol":"DJF","rounding":0,"narrow_symbol":null,"name":"Djiboutian Franc","digits":0,"count":{"other":"Djiboutian francs","one":"Djiboutian franc"},"code":"DJF","cash_rounding":0,"cash_digits":0},"WST":{"tender":true,"symbol":"WST","rounding":0,"narrow_symbol":null,"name":"Samoan Tala","digits":2,"count":{"other":"Samoan tala","one":"Samoan tala"},"code":"WST","cash_rounding":0,"cash_digits":2},"KRW":{"tender":true,"symbol":"₩","rounding":0,"narrow_symbol":"₩","name":"South Korean Won","digits":0,"count":{"other":"South Korean won","one":"South Korean won"},"code":"KRW","cash_rounding":0,"cash_digits":0},"BRN":{"tender":true,"symbol":"BRN","rounding":0,"narrow_symbol":null,"name":"Brazilian New Cruzado (1989–1990)","digits":2,"count":{"other":"Brazilian new cruzados (1989–1990)","one":"Brazilian new cruzado (1989–1990)"},"code":"BRN","cash_rounding":0,"cash_digits":2},"ANG":{"tender":true,"symbol":"ANG","rounding":0,"narrow_symbol":null,"name":"Netherlands Antillean Guilder","digits":2,"count":{"other":"Netherlands Antillean guilders","one":"Netherlands Antillean guilder"},"code":"ANG","cash_rounding":0,"cash_digits":2},"TOP":{"tender":true,"symbol":"TOP","rounding":0,"narrow_symbol":"T$","name":"Tongan Paʻanga","digits":2,"count":{"other":"Tongan paʻanga","one":"Tongan paʻanga"},"code":"TOP","cash_rounding":0,"cash_digits":2},"IEP":{"tender":true,"symbol":"IEP","rounding":0,"narrow_symbol":null,"name":"Irish Pound","digits":2,"count":{"other":"Irish pounds","one":"Irish pound"},"code":"IEP","cash_rounding":0,"cash_digits":2},"XOF":{"tender":true,"symbol":"CFA","rounding":0,"narrow_symbol":null,"name":"West African CFA Franc","digits":0,"count":{"other":"West African CFA francs","one":"West African CFA franc"},"code":"XOF","cash_rounding":0,"cash_digits":0},"MKD":{"tender":true,"symbol":"MKD","rounding":0,"narrow_symbol":null,"name":"Macedonian Denar","digits":2,"count":{"other":"Macedonian denari","one":"Macedonian denar"},"code":"MKD","cash_rounding":0,"cash_digits":2},"ARA":{"tender":true,"symbol":"ARA","rounding":0,"narrow_symbol":null,"name":"Argentine Austral","digits":2,"count":{"other":"Argentine australs","one":"Argentine austral"},"code":"ARA","cash_rounding":0,"cash_digits":2},"GBP":{"tender":true,"symbol":"£","rounding":0,"narrow_symbol":"£","name":"British Pound","digits":2,"count":{"other":"British pounds","one":"British pound"},"code":"GBP","cash_rounding":0,"cash_digits":2},"SDD":{"tender":true,"symbol":"SDD","rounding":0,"narrow_symbol":null,"name":"Sudanese Dinar (1992–2007)","digits":2,"count":{"other":"Sudanese dinars (1992–2007)","one":"Sudanese dinar (1992–2007)"},"code":"SDD","cash_rounding":0,"cash_digits":2},"BDT":{"tender":true,"symbol":"BDT","rounding":0,"narrow_symbol":"৳","name":"Bangladeshi Taka","digits":2,"count":{"other":"Bangladeshi takas","one":"Bangladeshi taka"},"code":"BDT","cash_rounding":0,"cash_digits":2},"MTL":{"tender":true,"symbol":"MTL","rounding":0,"narrow_symbol":null,"name":"Maltese Lira","digits":2,"count":{"other":"Maltese lira","one":"Maltese lira"},"code":"MTL","cash_rounding":0,"cash_digits":2},"GQE":{"tender":true,"symbol":"GQE","rounding":0,"narrow_symbol":null,"name":"Equatorial Guinean Ekwele","digits":2,"count":{"other":"Equatorial Guinean ekwele","one":"Equatorial Guinean ekwele"},"code":"GQE","cash_rounding":0,"cash_digits":2},"ILP":{"tender":true,"symbol":"ILP","rounding":0,"narrow_symbol":null,"name":"Israeli Pound","digits":2,"count":{"other":"Israeli pounds","one":"Israeli pound"},"code":"ILP","cash_rounding":0,"cash_digits":2},"PEN":{"tender":true,"symbol":"PEN","rounding":0,"narrow_symbol":null,"name":"Peruvian Sol","digits":2,"count":{"other":"Peruvian soles","one":"Peruvian sol"},"code":"PEN","cash_rounding":0,"cash_digits":2},"XBD":{"tender":true,"symbol":"XBD","rounding":0,"narrow_symbol":null,"name":"European Unit of Account (XBD)","digits":2,"count":{"other":"European units of account (XBD)","one":"European unit of account (XBD)"},"code":"XBD","cash_rounding":0,"cash_digits":2},"XSU":{"tender":true,"symbol":"XSU","rounding":0,"narrow_symbol":null,"name":"Sucre","digits":2,"count":{"other":"Sucres","one":"Sucre"},"code":"XSU","cash_rounding":0,"cash_digits":2},"XDR":{"tender":true,"symbol":"XDR","rounding":0,"narrow_symbol":null,"name":"Special Drawing Rights","digits":2,"count":{"other":"special drawing rights","one":"special drawing rights"},"code":"XDR","cash_rounding":0,"cash_digits":2},"GEK":{"tender":true,"symbol":"GEK","rounding":0,"narrow_symbol":null,"name":"Georgian Kupon Larit","digits":2,"count":{"other":"Georgian kupon larits","one":"Georgian kupon larit"},"code":"GEK","cash_rounding":0,"cash_digits":2},"KRH":{"tender":true,"symbol":"KRH","rounding":0,"narrow_symbol":null,"name":"South Korean Hwan (1953–1962)","digits":2,"count":{"other":"South Korean hwan (1953–1962)","one":"South Korean hwan (1953–1962)"},"code":"KRH","cash_rounding":0,"cash_digits":2},"TWD":{"tender":true,"symbol":"NT$","rounding":0,"narrow_symbol":"$","name":"New Taiwan Dollar","digits":2,"count":{"other":"New Taiwan dollars","one":"New Taiwan dollar"},"code":"TWD","cash_rounding":0,"cash_digits":0},"BGM":{"tender":true,"symbol":"BGM","rounding":0,"narrow_symbol":null,"name":"Bulgarian Socialist Lev","digits":2,"count":{"other":"Bulgarian socialist leva","one":"Bulgarian socialist lev"},"code":"BGM","cash_rounding":0,"cash_digits":2},"LAK":{"tender":true,"symbol":"LAK","rounding":0,"narrow_symbol":"₭","name":"Laotian Kip","digits":0,"count":{"other":"Laotian kips","one":"Laotian kip"},"code":"LAK","cash_rounding":0,"cash_digits":0},"MKN":{"tender":true,"symbol":"MKN","rounding":0,"narrow_symbol":null,"name":"Macedonian Denar (1992–1993)","digits":2,"count":{"other":"Macedonian denari (1992–1993)","one":"Macedonian denar (1992–1993)"},"code":"MKN","cash_rounding":0,"cash_digits":2},"TPE":{"tender":true,"symbol":"TPE","rounding":0,"narrow_symbol":null,"name":"Timorese Escudo","digits":2,"count":{"other":"Timorese escudos","one":"Timorese escudo"},"code":"TPE","cash_rounding":0,"cash_digits":2},"MXV":{"tender":true,"symbol":"MXV","rounding":0,"narrow_symbol":null,"name":"Mexican Investment Unit","digits":2,"count":{"other":"Mexican investment units","one":"Mexican investment unit"},"code":"MXV","cash_rounding":0,"cash_digits":2},"PTE":{"tender":true,"symbol":"PTE","rounding":0,"narrow_symbol":null,"name":"Portuguese Escudo","digits":2,"count":{"other":"Portuguese escudos","one":"Portuguese escudo"},"code":"PTE","cash_rounding":0,"cash_digits":2},"ILR":{"tender":true,"symbol":"ILR","rounding":0,"narrow_symbol":null,"name":"Israeli Shekel (1980–1985)","digits":2,"count":{"other":"Israeli shekels (1980–1985)","one":"Israeli shekel (1980–1985)"},"code":"ILR","cash_rounding":0,"cash_digits":2},"EGP":{"tender":true,"symbol":"EGP","rounding":0,"narrow_symbol":"E£","name":"Egyptian Pound","digits":2,"count":{"other":"Egyptian pounds","one":"Egyptian pound"},"code":"EGP","cash_rounding":0,"cash_digits":2},"HRK":{"tender":true,"symbol":"HRK","rounding":0,"narrow_symbol":"kn","name":"Croatian Kuna","digits":2,"count":{"other":"Croatian kunas","one":"Croatian kuna"},"code":"HRK","cash_rounding":0,"cash_digits":2},"HTG":{"tender":true,"symbol":"HTG","rounding":0,"narrow_symbol":null,"name":"Haitian Gourde","digits":2,"count":{"other":"Haitian gourdes","one":"Haitian gourde"},"code":"HTG","cash_rounding":0,"cash_digits":2},"CYP":{"tender":true,"symbol":"CYP","rounding":0,"narrow_symbol":null,"name":"Cypriot Pound","digits":2,"count":{"other":"Cypriot pounds","one":"Cypriot pound"},"code":"CYP","cash_rounding":0,"cash_digits":2},"VNN":{"tender":true,"symbol":"VNN","rounding":0,"narrow_symbol":null,"name":"Vietnamese Dong (1978–1985)","digits":2,"count":{"other":"Vietnamese dong (1978–1985)","one":"Vietnamese dong (1978–1985)"},"code":"VNN","cash_rounding":0,"cash_digits":2},"XAU":{"tender":true,"symbol":"XAU","rounding":0,"narrow_symbol":null,"name":"Gold","digits":2,"count":{"other":"troy ounces of gold","one":"troy ounce of gold"},"code":"XAU","cash_rounding":0,"cash_digits":2},"ESP":{"tender":true,"symbol":"ESP","rounding":0,"narrow_symbol":"₧","name":"Spanish Peseta","digits":0,"count":{"other":"Spanish pesetas","one":"Spanish peseta"},"code":"ESP","cash_rounding":0,"cash_digits":0},"MTP":{"tender":true,"symbol":"MTP","rounding":0,"narrow_symbol":null,"name":"Maltese Pound","digits":2,"count":{"other":"Maltese pounds","one":"Maltese pound"},"code":"MTP","cash_rounding":0,"cash_digits":2},"XUA":{"tender":true,"symbol":"XUA","rounding":0,"narrow_symbol":null,"name":"ADB Unit of Account","digits":2,"count":{"other":"ADB units of account","one":"ADB unit of account"},"code":"XUA","cash_rounding":0,"cash_digits":2},"XTS":{"tender":true,"symbol":"XTS","rounding":0,"narrow_symbol":null,"name":"Testing Currency Code","digits":2,"count":{"other":"Testing Currency units","one":"Testing Currency unit"},"code":"XTS","cash_rounding":0,"cash_digits":2},"CUC":{"tender":true,"symbol":"CUC","rounding":0,"narrow_symbol":"$","name":"Cuban Convertible Peso","digits":2,"count":{"other":"Cuban convertible pesos","one":"Cuban convertible peso"},"code":"CUC","cash_rounding":0,"cash_digits":2},"LRD":{"tender":true,"symbol":"LRD","rounding":0,"narrow_symbol":"$","name":"Liberian Dollar","digits":2,"count":{"other":"Liberian dollars","one":"Liberian dollar"},"code":"LRD","cash_rounding":0,"cash_digits":2},"ARP":{"tender":true,"symbol":"ARP","rounding":0,"narrow_symbol":null,"name":"Argentine Peso (1983–1985)","digits":2,"count":{"other":"Argentine pesos (1983–1985)","one":"Argentine peso (1983–1985)"},"code":"ARP","cash_rounding":0,"cash_digits":2},"SVC":{"tender":true,"symbol":"SVC","rounding":0,"narrow_symbol":null,"name":"Salvadoran Colón","digits":2,"count":{"other":"Salvadoran colones","one":"Salvadoran colón"},"code":"SVC","cash_rounding":0,"cash_digits":2},"SOS":{"tender":true,"symbol":"SOS","rounding":0,"narrow_symbol":null,"name":"Somali Shilling","digits":0,"count":{"other":"Somali shillings","one":"Somali shilling"},"code":"SOS","cash_rounding":0,"cash_digits":0},"KWD":{"tender":true,"symbol":"KWD","rounding":0,"narrow_symbol":null,"name":"Kuwaiti Dinar","digits":3,"count":{"other":"Kuwaiti dinars","one":"Kuwaiti dinar"},"code":"KWD","cash_rounding":0,"cash_digits":3},"YER":{"tender":true,"symbol":"YER","rounding":0,"narrow_symbol":null,"name":"Yemeni Rial","digits":0,"count":{"other":"Yemeni rials","one":"Yemeni rial"},"code":"YER","cash_rounding":0,"cash_digits":0},"UZS":{"tender":true,"symbol":"UZS","rounding":0,"narrow_symbol":null,"name":"Uzbekistani Som","digits":0,"count":{"other":"Uzbekistani som","one":"Uzbekistani som"},"code":"UZS","cash_rounding":0,"cash_digits":0},"AWG":{"tender":true,"symbol":"AWG","rounding":0,"narrow_symbol":null,"name":"Aruban Florin","digits":2,"count":{"other":"Aruban florin","one":"Aruban florin"},"code":"AWG","cash_rounding":0,"cash_digits":2},"BOP":{"tender":true,"symbol":"BOP","rounding":0,"narrow_symbol":null,"name":"Bolivian Peso","digits":2,"count":{"other":"Bolivian pesos","one":"Bolivian peso"},"code":"BOP","cash_rounding":0,"cash_digits":2},"VEF":{"tender":true,"symbol":"VEF","rounding":0,"narrow_symbol":"Bs","name":"Venezuelan Bolívar","digits":2,"count":{"other":"Venezuelan bolívars","one":"Venezuelan bolívar"},"code":"VEF","cash_rounding":0,"cash_digits":2},"THB":{"tender":true,"symbol":"THB","rounding":0,"narrow_symbol":"฿","name":"Thai Baht","digits":2,"count":{"other":"Thai baht","one":"Thai baht"},"code":"THB","cash_rounding":0,"cash_digits":2},"LYD":{"tender":true,"symbol":"LYD","rounding":0,"narrow_symbol":null,"name":"Libyan Dinar","digits":3,"count":{"other":"Libyan dinars","one":"Libyan dinar"},"code":"LYD","cash_rounding":0,"cash_digits":3},"AOA":{"tender":true,"symbol":"AOA","rounding":0,"narrow_symbol":"Kz","name":"Angolan Kwanza","digits":2,"count":{"other":"Angolan kwanzas","one":"Angolan kwanza"},"code":"AOA","cash_rounding":0,"cash_digits":2},"GHS":{"tender":true,"symbol":"GHS","rounding":0,"narrow_symbol":null,"name":"Ghanaian Cedi","digits":2,"count":{"other":"Ghanaian cedis","one":"Ghanaian cedi"},"code":"GHS","cash_rounding":0,"cash_digits":2},"UYU":{"tender":true,"symbol":"UYU","rounding":0,"narrow_symbol":"$","name":"Uruguayan Peso","digits":2,"count":{"other":"Uruguayan pesos","one":"Uruguayan peso"},"code":"UYU","cash_rounding":0,"cash_digits":2},"BYB":{"tender":true,"symbol":"BYB","rounding":0,"narrow_symbol":null,"name":"Belarusian New Rouble (1994–1999)","digits":2,"count":{"other":"Belarusian new roubles (1994–1999)","one":"Belarusian new rouble (1994–1999)"},"code":"BYB","cash_rounding":0,"cash_digits":2},"KPW":{"tender":true,"symbol":"KPW","rounding":0,"narrow_symbol":"₩","name":"North Korean Won","digits":0,"count":{"other":"North Korean won","one":"North Korean won"},"code":"KPW","cash_rounding":0,"cash_digits":0},"VND":{"tender":true,"symbol":"₫","rounding":0,"narrow_symbol":"₫","name":"Vietnamese Dong","digits":0,"count":{"other":"Vietnamese dong","one":"Vietnamese dong"},"code":"VND","cash_rounding":0,"cash_digits":0},"BSD":{"tender":true,"symbol":"BSD","rounding":0,"narrow_symbol":"$","name":"Bahamian Dollar","digits":2,"count":{"other":"Bahamian dollars","one":"Bahamian dollar"},"code":"BSD","cash_rounding":0,"cash_digits":2},"SLL":{"tender":true,"symbol":"SLL","rounding":0,"narrow_symbol":null,"name":"Sierra Leonean Leone","digits":0,"count":{"other":"Sierra Leonean leones","one":"Sierra Leonean leone"},"code":"SLL","cash_rounding":0,"cash_digits":0},"DKK":{"tender":true,"symbol":"DKK","rounding":0,"narrow_symbol":"kr","name":"Danish Krone","digits":2,"count":{"other":"Danish kroner","one":"Danish krone"},"code":"DKK","cash_rounding":50,"cash_digits":2},"GTQ":{"tender":true,"symbol":"GTQ","rounding":0,"narrow_symbol":"Q","name":"Guatemalan Quetzal","digits":2,"count":{"other":"Guatemalan quetzals","one":"Guatemalan quetzal"},"code":"GTQ","cash_rounding":0,"cash_digits":2},"BAM":{"tender":true,"symbol":"BAM","rounding":0,"narrow_symbol":"KM","name":"Bosnia-Herzegovina Convertible Mark","digits":2,"count":{"other":"Bosnia-Herzegovina convertible marks","one":"Bosnia-Herzegovina convertible mark"},"code":"BAM","cash_rounding":0,"cash_digits":2},"MAF":{"tender":true,"symbol":"MAF","rounding":0,"narrow_symbol":null,"name":"Moroccan Franc","digits":2,"count":{"other":"Moroccan francs","one":"Moroccan franc"},"code":"MAF","cash_rounding":0,"cash_digits":2},"USD":{"tender":true,"symbol":"US$","rounding":0,"narrow_symbol":"$","name":"US Dollar","digits":2,"count":{"other":"US dollars","one":"US dollar"},"code":"USD","cash_rounding":0,"cash_digits":2},"LUF":{"tender":true,"symbol":"LUF","rounding":0,"narrow_symbol":null,"name":"Luxembourgian Franc","digits":0,"count":{"other":"Luxembourgian francs","one":"Luxembourgian franc"},"code":"LUF","cash_rounding":0,"cash_digits":0},"SEK":{"tender":true,"symbol":"SEK","rounding":0,"narrow_symbol":"kr","name":"Swedish Krona","digits":2,"count":{"other":"Swedish kronor","one":"Swedish krona"},"code":"SEK","cash_rounding":0,"cash_digits":0},"BTN":{"tender":true,"symbol":"BTN","rounding":0,"narrow_symbol":null,"name":"Bhutanese Ngultrum","digits":2,"count":{"other":"Bhutanese ngultrums","one":"Bhutanese ngultrum"},"code":"BTN","cash_rounding":0,"cash_digits":2},"BEC":{"tender":true,"symbol":"BEC","rounding":0,"narrow_symbol":null,"name":"Belgian Franc (convertible)","digits":2,"count":{"other":"Belgian francs (convertible)","one":"Belgian franc (convertible)"},"code":"BEC","cash_rounding":0,"cash_digits":2},"ADP":{"tender":true,"symbol":"ADP","rounding":0,"narrow_symbol":null,"name":"Andorran Peseta","digits":0,"count":{"other":"Andorran pesetas","one":"Andorran peseta"},"code":"ADP","cash_rounding":0,"cash_digits":0},"ECS":{"tender":true,"symbol":"ECS","rounding":0,"narrow_symbol":null,"name":"Ecuadorian Sucre","digits":2,"count":{"other":"Ecuadorian sucres","one":"Ecuadorian sucre"},"code":"ECS","cash_rounding":0,"cash_digits":2},"BIF":{"tender":true,"symbol":"BIF","rounding":0,"narrow_symbol":null,"name":"Burundian Franc","digits":0,"count":{"other":"Burundian francs","one":"Burundian franc"},"code":"BIF","cash_rounding":0,"cash_digits":0},"PKR":{"tender":true,"symbol":"PKR","rounding":0,"narrow_symbol":"Rs","name":"Pakistani Rupee","digits":0,"count":{"other":"Pakistani rupees","one":"Pakistani rupee"},"code":"PKR","cash_rounding":0,"cash_digits":0},"MVR":{"tender":true,"symbol":"MVR","rounding":0,"narrow_symbol":null,"name":"Maldivian Rufiyaa","digits":2,"count":{"other":"Maldivian rufiyaas","one":"Maldivian rufiyaa"},"code":"MVR","cash_rounding":0,"cash_digits":2},"KMF":{"tender":true,"symbol":"KMF","rounding":0,"narrow_symbol":"CF","name":"Comorian Franc","digits":0,"count":{"other":"Comorian francs","one":"Comorian franc"},"code":"KMF","cash_rounding":0,"cash_digits":0},"TRL":{"tender":true,"symbol":"TRL","rounding":0,"narrow_symbol":null,"name":"Turkish Lira (1922–2005)","digits":0,"count":{"other":"Turkish Lira (1922–2005)","one":"Turkish lira (1922–2005)"},"code":"TRL","cash_rounding":0,"cash_digits":0},"ISK":{"tender":true,"symbol":"ISK","rounding":0,"narrow_symbol":"kr","name":"Icelandic Króna","digits":0,"count":{"other":"Icelandic krónur","one":"Icelandic króna"},"code":"ISK","cash_rounding":0,"cash_digits":0},"XPF":{"tender":true,"symbol":"CFPF","rounding":0,"narrow_symbol":null,"name":"CFP Franc","digits":0,"count":{"other":"CFP francs","one":"CFP franc"},"code":"XPF","cash_rounding":0,"cash_digits":0},"BRB":{"tender":true,"symbol":"BRB","rounding":0,"narrow_symbol":null,"name":"Brazilian New Cruzeiro (1967–1986)","digits":2,"count":{"other":"Brazilian new cruzeiros (1967–1986)","one":"Brazilian new cruzeiro (1967–1986)"},"code":"BRB","cash_rounding":0,"cash_digits":2},"PHP":{"tender":true,"symbol":"PHP","rounding":0,"narrow_symbol":"₱","name":"Philippine Piso","digits":2,"count":{"other":"Philippine pisos","one":"Philippine piso"},"code":"PHP","cash_rounding":0,"cash_digits":2},"JPY":{"tender":true,"symbol":"JP¥","rounding":0,"narrow_symbol":"¥","name":"Japanese Yen","digits":0,"count":{"other":"Japanese yen","one":"Japanese yen"},"code":"JPY","cash_rounding":0,"cash_digits":0},"AOR":{"tender":true,"symbol":"AOR","rounding":0,"narrow_symbol":null,"name":"Angolan Readjusted Kwanza (1995–1999)","digits":2,"count":{"other":"Angolan readjusted kwanzas (1995–1999)","one":"Angolan readjusted kwanza (1995–1999)"},"code":"AOR","cash_rounding":0,"cash_digits":2},"ATS":{"tender":true,"symbol":"ATS","rounding":0,"narrow_symbol":null,"name":"Austrian Schilling","digits":2,"count":{"other":"Austrian schillings","one":"Austrian schilling"},"code":"ATS","cash_rounding":0,"cash_digits":2},"FIM":{"tender":true,"symbol":"FIM","rounding":0,"narrow_symbol":null,"name":"Finnish Markka","digits":2,"count":{"other":"Finnish markkas","one":"Finnish markka"},"code":"FIM","cash_rounding":0,"cash_digits":2},"CZK":{"tender":true,"symbol":"CZK","rounding":0,"narrow_symbol":"Kč","name":"Czech Koruna","digits":2,"count":{"other":"Czech korunas","one":"Czech koruna"},"code":"CZK","cash_rounding":0,"cash_digits":0},"NOK":{"tender":true,"symbol":"NOK","rounding":0,"narrow_symbol":"kr","name":"Norwegian Krone","digits":2,"count":{"other":"Norwegian kroner","one":"Norwegian krone"},"code":"NOK","cash_rounding":0,"cash_digits":0},"NGN":{"tender":true,"symbol":"NGN","rounding":0,"narrow_symbol":"₦","name":"Nigerian Naira","digits":2,"count":{"other":"Nigerian nairas","one":"Nigerian naira"},"code":"NGN","cash_rounding":0,"cash_digits":2},"BEF":{"tender":true,"symbol":"BEF","rounding":0,"narrow_symbol":null,"name":"Belgian Franc","digits":2,"count":{"other":"Belgian francs","one":"Belgian franc"},"code":"BEF","cash_rounding":0,"cash_digits":2},"GEL":{"tender":true,"symbol":"GEL","rounding":0,"narrow_symbol":"₾","name":"Georgian Lari","digits":2,"count":{"other":"Georgian laris","one":"Georgian lari"},"code":"GEL","cash_rounding":0,"cash_digits":2},"ZAL":{"tender":true,"symbol":"ZAL","rounding":0,"narrow_symbol":null,"name":"South African Rand (financial)","digits":2,"count":{"other":"South African rands (financial)","one":"South African rand (financial)"},"code":"ZAL","cash_rounding":0,"cash_digits":2},"XBA":{"tender":true,"symbol":"XBA","rounding":0,"narrow_symbol":null,"name":"European Composite Unit","digits":2,"count":{"other":"European composite units","one":"European composite unit"},"code":"XBA","cash_rounding":0,"cash_digits":2},"MAD":{"tender":true,"symbol":"MAD","rounding":0,"narrow_symbol":null,"name":"Moroccan Dirham","digits":2,"count":{"other":"Moroccan dirhams","one":"Moroccan dirham"},"code":"MAD","cash_rounding":0,"cash_digits":2},"MDC":{"tender":true,"symbol":"MDC","rounding":0,"narrow_symbol":null,"name":"Moldovan Cupon","digits":2,"count":{"other":"Moldovan cupon","one":"Moldovan cupon"},"code":"MDC","cash_rounding":0,"cash_digits":2},"EUR":{"tender":true,"symbol":"€","rounding":0,"narrow_symbol":"€","name":"Euro","digits":2,"count":{"other":"euros","one":"euro"},"code":"EUR","cash_rounding":0,"cash_digits":2},"MXP":{"tender":true,"symbol":"MXP","rounding":0,"narrow_symbol":null,"name":"Mexican Silver Peso (1861–1992)","digits":2,"count":{"other":"Mexican silver pesos (1861–1992)","one":"Mexican silver peso (1861–1992)"},"code":"MXP","cash_rounding":0,"cash_digits":2},"CLE":{"tender":true,"symbol":"CLE","rounding":0,"narrow_symbol":null,"name":"Chilean Escudo","digits":2,"count":{"other":"Chilean escudos","one":"Chilean escudo"},"code":"CLE","cash_rounding":0,"cash_digits":2},"COP":{"tender":true,"symbol":"COP","rounding":0,"narrow_symbol":"$","name":"Colombian Peso","digits":0,"count":{"other":"Colombian pesos","one":"Colombian peso"},"code":"COP","cash_rounding":0,"cash_digits":0},"NAD":{"tender":true,"symbol":"NAD","rounding":0,"narrow_symbol":"$","name":"Namibian Dollar","digits":2,"count":{"other":"Namibian dollars","one":"Namibian dollar"},"code":"NAD","cash_rounding":0,"cash_digits":2},"DOP":{"tender":true,"symbol":"DOP","rounding":0,"narrow_symbol":"$","name":"Dominican Peso","digits":2,"count":{"other":"Dominican pesos","one":"Dominican peso"},"code":"DOP","cash_rounding":0,"cash_digits":2},"CSD":{"tender":true,"symbol":"CSD","rounding":0,"narrow_symbol":null,"name":"Serbian Dinar (2002–2006)","digits":2,"count":{"other":"Serbian dinars (2002–2006)","one":"Serbian dinar (2002–2006)"},"code":"CSD","cash_rounding":0,"cash_digits":2},"BGL":{"tender":true,"symbol":"BGL","rounding":0,"narrow_symbol":null,"name":"Bulgarian Hard Lev","digits":2,"count":{"other":"Bulgarian hard leva","one":"Bulgarian hard lev"},"code":"BGL","cash_rounding":0,"cash_digits":2},"CSK":{"tender":true,"symbol":"CSK","rounding":0,"narrow_symbol":null,"name":"Czechoslovak Hard Koruna","digits":2,"count":{"other":"Czechoslovak hard korunas","one":"Czechoslovak hard koruna"},"code":"CSK","cash_rounding":0,"cash_digits":2},"CNX":{"tender":true,"symbol":"CNX","rounding":0,"narrow_symbol":null,"name":"Chinese People’s Bank Dollar","digits":2,"count":{"other":"Chinese People’s Bank dollars","one":"Chinese People’s Bank dollar"},"code":"CNX","cash_rounding":0,"cash_digits":2},"BRE":{"tender":true,"symbol":"BRE","rounding":0,"narrow_symbol":null,"name":"Brazilian Cruzeiro (1990–1993)","digits":2,"count":{"other":"Brazilian cruzeiros (1990–1993)","one":"Brazilian cruzeiro (1990–1993)"},"code":"BRE","cash_rounding":0,"cash_digits":2},"MLF":{"tender":true,"symbol":"MLF","rounding":0,"narrow_symbol":null,"name":"Malian Franc","digits":2,"count":{"other":"Malian francs","one":"Malian franc"},"code":"MLF","cash_rounding":0,"cash_digits":2},"AFA":{"tender":true,"symbol":"AFA","rounding":0,"narrow_symbol":null,"name":"Afghan Afghani (1927–2002)","digits":2,"count":{"other":"Afghan afghanis (1927–2002)","one":"Afghan afghani (1927–2002)"},"code":"AFA","cash_rounding":0,"cash_digits":2},"NZD":{"tender":true,"symbol":"NZ$","rounding":0,"narrow_symbol":"$","name":"New Zealand Dollar","digits":2,"count":{"other":"New Zealand dollars","one":"New Zealand dollar"},"code":"NZD","cash_rounding":0,"cash_digits":2},"ZMK":{"tender":true,"symbol":"ZMK","rounding":0,"narrow_symbol":null,"name":"Zambian Kwacha (1968–2012)","digits":0,"count":{"other":"Zambian kwachas (1968–2012)","one":"Zambian kwacha (1968–2012)"},"code":"ZMK","cash_rounding":0,"cash_digits":0},"GWE":{"tender":true,"symbol":"GWE","rounding":0,"narrow_symbol":null,"name":"Portuguese Guinea Escudo","digits":2,"count":{"other":"Portuguese Guinea escudos","one":"Portuguese Guinea escudo"},"code":"GWE","cash_rounding":0,"cash_digits":2},"AON":{"tender":true,"symbol":"AON","rounding":0,"narrow_symbol":null,"name":"Angolan New Kwanza (1990–2000)","digits":2,"count":{"other":"Angolan new kwanzas (1990–2000)","one":"Angolan new kwanza (1990–2000)"},"code":"AON","cash_rounding":0,"cash_digits":2},"MZE":{"tender":true,"symbol":"MZE","rounding":0,"narrow_symbol":null,"name":"Mozambican Escudo","digits":2,"count":{"other":"Mozambican escudos","one":"Mozambican escudo"},"code":"MZE","cash_rounding":0,"cash_digits":2},"XXX":{"tender":true,"symbol":"XXX","rounding":0,"narrow_symbol":null,"name":"Unknown Currency","digits":2,"count":{"other":"(unknown currency)","one":"(unknown unit of currency)"},"code":"XXX","cash_rounding":0,"cash_digits":2},"HKD":{"tender":true,"symbol":"HK$","rounding":0,"narrow_symbol":"$","name":"Hong Kong Dollar","digits":2,"count":{"other":"Hong Kong dollars","one":"Hong Kong dollar"},"code":"HKD","cash_rounding":0,"cash_digits":2},"KRO":{"tender":true,"symbol":"KRO","rounding":0,"narrow_symbol":null,"name":"South Korean Won (1945–1953)","digits":2,"count":{"other":"South Korean won (1945–1953)","one":"South Korean won (1945–1953)"},"code":"KRO","cash_rounding":0,"cash_digits":2},"SDP":{"tender":true,"symbol":"SDP","rounding":0,"narrow_symbol":null,"name":"Sudanese Pound (1957–1998)","digits":2,"count":{"other":"Sudanese pounds (1957–1998)","one":"Sudanese pound (1957–1998)"},"code":"SDP","cash_rounding":0,"cash_digits":2},"TMM":{"tender":true,"symbol":"TMM","rounding":0,"narrow_symbol":null,"name":"Turkmenistani Manat (1993–2009)","digits":0,"count":{"other":"Turkmenistani manat (1993–2009)","one":"Turkmenistani manat (1993–2009)"},"code":"TMM","cash_rounding":0,"cash_digits":0},"BWP":{"tender":true,"symbol":"BWP","rounding":0,"narrow_symbol":"P","name":"Botswanan Pula","digits":2,"count":{"other":"Botswanan pulas","one":"Botswanan pula"},"code":"BWP","cash_rounding":0,"cash_digits":2},"ISJ":{"tender":true,"symbol":"ISJ","rounding":0,"narrow_symbol":null,"name":"Icelandic Króna (1918–1981)","digits":2,"count":{"other":"Icelandic krónur (1918–1981)","one":"Icelandic króna (1918–1981)"},"code":"ISJ","cash_rounding":0,"cash_digits":2},"XCD":{"tender":true,"symbol":"EC$","rounding":0,"narrow_symbol":"$","name":"East Caribbean Dollar","digits":2,"count":{"other":"East Caribbean dollars","one":"East Caribbean dollar"},"code":"XCD","cash_rounding":0,"cash_digits":2},"KZT":{"tender":true,"symbol":"KZT","rounding":0,"narrow_symbol":"₸","name":"Kazakhstani Tenge","digits":2,"count":{"other":"Kazakhstani tenges","one":"Kazakhstani tenge"},"code":"KZT","cash_rounding":0,"cash_digits":2},"TJS":{"tender":true,"symbol":"TJS","rounding":0,"narrow_symbol":null,"name":"Tajikistani Somoni","digits":2,"count":{"other":"Tajikistani somonis","one":"Tajikistani somoni"},"code":"TJS","cash_rounding":0,"cash_digits":2},"MXN":{"tender":true,"symbol":"MX$","rounding":0,"narrow_symbol":"$","name":"Mexican Peso","digits":2,"count":{"other":"Mexican pesos","one":"Mexican peso"},"code":"MXN","cash_rounding":0,"cash_digits":2},"BRZ":{"tender":true,"symbol":"BRZ","rounding":0,"narrow_symbol":null,"name":"Brazilian Cruzeiro (1942–1967)","digits":2,"count":{"other":"Brazilian cruzeiros (1942–1967)","one":"Brazilian cruzeiro (1942–1967)"},"code":"BRZ","cash_rounding":0,"cash_digits":2},"ARM":{"tender":true,"symbol":"ARM","rounding":0,"narrow_symbol":null,"name":"Argentine Peso (1881–1970)","digits":2,"count":{"other":"Argentine pesos (1881–1970)","one":"Argentine peso (1881–1970)"},"code":"ARM","cash_rounding":0,"cash_digits":2},"ARL":{"tender":true,"symbol":"ARL","rounding":0,"narrow_symbol":null,"name":"Argentine Peso Ley (1970–1983)","digits":2,"count":{"other":"Argentine pesos ley (1970–1983)","one":"Argentine peso ley (1970–1983)"},"code":"ARL","cash_rounding":0,"cash_digits":2},"RHD":{"tender":true,"symbol":"RHD","rounding":0,"narrow_symbol":null,"name":"Rhodesian Dollar","digits":2,"count":{"other":"Rhodesian dollars","one":"Rhodesian dollar"},"code":"RHD","cash_rounding":0,"cash_digits":2},"GHC":{"tender":true,"symbol":"GHC","rounding":0,"narrow_symbol":null,"name":"Ghanaian Cedi (1979–2007)","digits":2,"count":{"other":"Ghanaian cedis (1979–2007)","one":"Ghanaian cedi (1979–2007)"},"code":"GHC","cash_rounding":0,"cash_digits":2},"AZM":{"tender":true,"symbol":"AZM","rounding":0,"narrow_symbol":null,"name":"Azerbaijani Manat (1993–2006)","digits":2,"count":{"other":"Azerbaijani manats (1993–2006)","one":"Azerbaijani manat (1993–2006)"},"code":"AZM","cash_rounding":0,"cash_digits":2},"ZWR":{"tender":true,"symbol":"ZWR","rounding":0,"narrow_symbol":null,"name":"Zimbabwean Dollar (2008)","digits":2,"count":{"other":"Zimbabwean dollars (2008)","one":"Zimbabwean dollar (2008)"},"code":"ZWR","cash_rounding":0,"cash_digits":2},"LUC":{"tender":true,"symbol":"LUC","rounding":0,"narrow_symbol":null,"name":"Luxembourgian Convertible Franc","digits":2,"count":{"other":"Luxembourgian convertible francs","one":"Luxembourgian convertible franc"},"code":"LUC","cash_rounding":0,"cash_digits":2},"BGO":{"tender":true,"symbol":"BGO","rounding":0,"narrow_symbol":null,"name":"Bulgarian Lev (1879–1952)","digits":2,"count":{"other":"Bulgarian leva (1879–1952)","one":"Bulgarian lev (1879–1952)"},"code":"BGO","cash_rounding":0,"cash_digits":2},"IDR":{"tender":true,"symbol":"IDR","rounding":0,"narrow_symbol":"Rp","name":"Indonesian Rupiah","digits":0,"count":{"other":"Indonesian rupiahs","one":"Indonesian rupiah"},"code":"IDR","cash_rounding":0,"cash_digits":0},"AMD":{"tender":true,"symbol":"AMD","rounding":0,"narrow_symbol":null,"name":"Armenian Dram","digits":0,"count":{"other":"Armenian drams","one":"Armenian dram"},"code":"AMD","cash_rounding":0,"cash_digits":0},"SYP":{"tender":true,"symbol":"SYP","rounding":0,"narrow_symbol":"£","name":"Syrian Pound","digits":0,"count":{"other":"Syrian pounds","one":"Syrian pound"},"code":"SYP","cash_rounding":0,"cash_digits":0},"CAD":{"tender":true,"symbol":"CA$","rounding":0,"narrow_symbol":"$","name":"Canadian Dollar","digits":2,"count":{"other":"Canadian dollars","one":"Canadian dollar"},"code":"CAD","cash_rounding":5,"cash_digits":2},"UGX":{"tender":true,"symbol":"UGX","rounding":0,"narrow_symbol":null,"name":"Ugandan Shilling","digits":0,"count":{"other":"Ugandan shillings","one":"Ugandan shilling"},"code":"UGX","cash_rounding":0,"cash_digits":0},"LKR":{"tender":true,"symbol":"LKR","rounding":0,"narrow_symbol":"Rs","name":"Sri Lankan Rupee","digits":2,"count":{"other":"Sri Lankan rupees","one":"Sri Lankan rupee"},"code":"LKR","cash_rounding":0,"cash_digits":2},"YUN":{"tender":true,"symbol":"YUN","rounding":0,"narrow_symbol":null,"name":"Yugoslavian Convertible Dinar (1990–1992)","digits":2,"count":{"other":"Yugoslavian convertible dinars (1990–1992)","one":"Yugoslavian convertible dinar (1990–1992)"},"code":"YUN","cash_rounding":0,"cash_digits":2},"LUL":{"tender":true,"symbol":"LUL","rounding":0,"narrow_symbol":null,"name":"Luxembourg Financial Franc","digits":2,"count":{"other":"Luxembourg financial francs","one":"Luxembourg financial franc"},"code":"LUL","cash_rounding":0,"cash_digits":2},"BOB":{"tender":true,"symbol":"BOB","rounding":0,"narrow_symbol":"Bs","name":"Bolivian Boliviano","digits":2,"count":{"other":"Bolivian bolivianos","one":"Bolivian boliviano"},"code":"BOB","cash_rounding":0,"cash_digits":2},"SHP":{"tender":true,"symbol":"SHP","rounding":0,"narrow_symbol":"£","name":"St. Helena Pound","digits":2,"count":{"other":"St. Helena pounds","one":"St. Helena pound"},"code":"SHP","cash_rounding":0,"cash_digits":2},"BAD":{"tender":true,"symbol":"BAD","rounding":0,"narrow_symbol":null,"name":"Bosnia-Herzegovina Dinar (1992–1994)","digits":2,"count":{"other":"Bosnia-Herzegovina dinars (1992–1994)","one":"Bosnia-Herzegovina dinar (1992–1994)"},"code":"BAD","cash_rounding":0,"cash_digits":2},"GMD":{"tender":true,"symbol":"GMD","rounding":0,"narrow_symbol":null,"name":"Gambian Dalasi","digits":2,"count":{"other":"Gambian dalasis","one":"Gambian dalasi"},"code":"GMD","cash_rounding":0,"cash_digits":2},"BRL":{"tender":true,"symbol":"R$","rounding":0,"narrow_symbol":"R$","name":"Brazilian Real","digits":2,"count":{"other":"Brazilian reals","one":"Brazilian real"},"code":"BRL","cash_rounding":0,"cash_digits":2},"MDL":{"tender":true,"symbol":"MDL","rounding":0,"narrow_symbol":null,"name":"Moldovan Leu","digits":2,"count":{"other":"Moldovan lei","one":"Moldovan leu"},"code":"MDL","cash_rounding":0,"cash_digits":2},"GWP":{"tender":true,"symbol":"GWP","rounding":0,"narrow_symbol":null,"name":"Guinea-Bissau Peso","digits":2,"count":{"other":"Guinea-Bissau pesos","one":"Guinea-Bissau peso"},"code":"GWP","cash_rounding":0,"cash_digits":2},"XPT":{"tender":true,"symbol":"XPT","rounding":0,"narrow_symbol":null,"name":"Platinum","digits":2,"count":{"other":"troy ounces of platinum","one":"troy ounce of platinum"},"code":"XPT","cash_rounding":0,"cash_digits":2},"YUR":{"tender":true,"symbol":"YUR","rounding":0,"narrow_symbol":null,"name":"Yugoslavian Reformed Dinar (1992–1993)","digits":2,"count":{"other":"Yugoslavian reformed dinars (1992–1993)","one":"Yugoslavian reformed dinar (1992–1993)"},"code":"YUR","cash_rounding":0,"cash_digits":2},"USS":{"tender":true,"symbol":"USS","rounding":0,"narrow_symbol":null,"name":"US Dollar (Same day)","digits":2,"count":{"other":"US dollars (same day)","one":"US dollar (same day)"},"code":"USS","cash_rounding":0,"cash_digits":2},"HNL":{"tender":true,"symbol":"HNL","rounding":0,"narrow_symbol":"L","name":"Honduran Lempira","digits":2,"count":{"other":"Honduran lempiras","one":"Honduran lempira"},"code":"HNL","cash_rounding":0,"cash_digits":2},"AUD":{"tender":true,"symbol":"A$","rounding":0,"narrow_symbol":"$","name":"Australian Dollar","digits":2,"count":{"other":"Australian dollars","one":"Australian dollar"},"code":"AUD","cash_rounding":0,"cash_digits":2},"SZL":{"tender":true,"symbol":"SZL","rounding":0,"narrow_symbol":null,"name":"Swazi Lilangeni","digits":2,"count":{"other":"Swazi emalangeni","one":"Swazi lilangeni"},"code":"SZL","cash_rounding":0,"cash_digits":2},"BBD":{"tender":true,"symbol":"BBD","rounding":0,"narrow_symbol":"$","name":"Barbadian Dollar","digits":2,"count":{"other":"Barbadian dollars","one":"Barbadian dollar"},"code":"BBD","cash_rounding":0,"cash_digits":2},"ESB":{"tender":true,"symbol":"ESB","rounding":0,"narrow_symbol":null,"name":"Spanish Peseta (convertible account)","digits":2,"count":{"other":"Spanish pesetas (convertible account)","one":"Spanish peseta (convertible account)"},"code":"ESB","cash_rounding":0,"cash_digits":2},"NIC":{"tender":true,"symbol":"NIC","rounding":0,"narrow_symbol":null,"name":"Nicaraguan Córdoba (1988–1991)","digits":2,"count":{"other":"Nicaraguan córdobas (1988–1991)","one":"Nicaraguan córdoba (1988–1991)"},"code":"NIC","cash_rounding":0,"cash_digits":2},"SRD":{"tender":true,"symbol":"SRD","rounding":0,"narrow_symbol":"$","name":"Surinamese Dollar","digits":2,"count":{"other":"Surinamese dollars","one":"Surinamese dollar"},"code":"SRD","cash_rounding":0,"cash_digits":2},"MMK":{"tender":true,"symbol":"MMK","rounding":0,"narrow_symbol":"K","name":"Myanmar Kyat","digits":0,"count":{"other":"Myanmar kyats","one":"Myanmar kyat"},"code":"MMK","cash_rounding":0,"cash_digits":0},"AOK":{"tender":true,"symbol":"AOK","rounding":0,"narrow_symbol":null,"name":"Angolan Kwanza (1977–1991)","digits":2,"count":{"other":"Angolan kwanzas (1977–1991)","one":"Angolan kwanza (1977–1991)"},"code":"AOK","cash_rounding":0,"cash_digits":2}}}
\ No newline at end of file