1 // ***************************************************************************
3 // * Copyright (C) 1997-2003, International Business Machines
4 // * Corporation and others. All Rights Reserved.
6 // ***************************************************************************
11 "#,##0.###;-#,##0.###",
12 "\u00A4#,##0.00;-\u00A4#,##0.00",
17 // Format for the display name of a Transliterator.
18 // This is the English form of this resource.
19 TransliteratorNamePattern { "{0,choice,0#|1#{1}|2#{1} to {2}}" }
24 "Pacific Standard Time",
26 "Pacific Daylight Time",
31 "America/Los_Angeles",
32 "Pacific Standard Time",
34 "Pacific Daylight Time",
40 "Mountain Standard Time",
42 "Mountain Daylight Time",
48 "Mountain Standard Time",
50 "Mountain Daylight Time",
56 "Mountain Standard Time",
58 "Mountain Standard Time",
64 "Mountain Standard Time",
66 "Mountain Standard Time",
72 "Central Standard Time",
74 "Central Daylight Time",
80 "Central Standard Time",
82 "Central Daylight Time",
88 "Eastern Standard Time",
90 "Eastern Daylight Time",
96 "Eastern Standard Time",
98 "Eastern Daylight Time",
104 "Eastern Standard Time",
106 "Eastern Standard Time",
111 "America/Indianapolis",
112 "Eastern Standard Time",
114 "Eastern Standard Time",
120 "Hawaii Standard Time",
122 "Hawaii Standard Time",
128 "Hawaii Standard Time",
130 "Hawaii Standard Time",
136 "Alaska Standard Time",
138 "Alaska Daylight Time",
144 "Alaska Standard Time",
146 "Alaska Daylight Time",
152 "Atlantic Standard Time",
154 "Atlantic Daylight Time",
160 "Newfoundland Standard Time",
162 "Newfoundland Daylight Time",
168 "Newfoundland Standard Time",
170 "Newfoundland Daylight Time",
176 "Central European Standard Time",
178 "Central European Daylight Time",
184 "Central European Standard Time",
186 "Central European Daylight Time",
192 "Greenwich Mean Time",
194 "Greenwich Mean Time",
200 "Greenwich Mean Time",
202 "Greenwich Mean Time",
208 "Israel Standard Time",
210 "Israel Daylight Time",
216 "Japan Standard Time",
218 "Japan Standard Time",
224 "Japan Standard Time",
226 "Japan Standard Time",
232 "Eastern European Standard Time",
234 "Eastern European Daylight Time",
240 "China Standard Time",
242 "China Standard Time",
248 "China Standard Time",
250 "China Standard Time",
255 LocaleID:int { 0x09 }
257 // "Latn", // ISO 15924 Name
260 //------------------------------------------------------------
261 // Rule Based Number Format Support
262 //------------------------------------------------------------
264 // * Spellout rules for U.S. English. This rule set has two variants:
265 // * %simplified is a set of rules showing the simple method of spelling
266 // * out numbers in English: 289 is formatted as "two hundred eighty-nine".
267 // * %default uses a more complicated algorithm to format
268 // * numbers in a more natural way: 289 is formatted as "two hundred AND
269 // * eighty-nine" and commas are inserted between the thousands groups for
270 // * values above 100,000.
273 // This rule set shows the normal simple formatting rules for English
275 // negative number rule. This rule is used to format negative
276 // numbers. The result of formatting the number's absolute
277 // value is placed where the >> is.
279 // faction rule. This rule is used for formatting numbers
280 // with fractional parts. The result of formatting the
281 // number's integral part is substituted for the <<, and
282 // the result of formatting the number's fractional part
283 // (one digit at a time, e.g., 0.123 is "zero point one two
284 // three") replaces the >>.
285 " x.x: << point >>;\n"
286 // the rules for the values from 0 to 19 are simply the
287 // words for those numbers
288 " zero; one; two; three; four; five; six; seven; eight; nine;\n"
289 " ten; eleven; twelve; thirteen; fourteen; fifteen; sixteen;\n"
290 " seventeen; eighteen; nineteen;\n"
291 // beginning at 20, we use the >> to mark the position where
292 // the result of formatting the number's ones digit. Thus,
293 // we only need a new rule at every multiple of 10. Text in
294 // backets is omitted if the value being formatted is an
295 // even multiple of 10.
296 " 20: twenty[->>];\n"
297 " 30: thirty[->>];\n"
301 " 70: seventy[->>];\n"
302 " 80: eighty[->>];\n"
303 " 90: ninety[->>];\n"
304 // beginning at 100, we can use << to mark the position where
305 // the result of formatting the multiple of 100 is to be
306 // inserted. Notice also that the meaning of >> has shifted:
307 // here, it refers to both the ones place and the tens place.
308 // The meanings of the << and >> tokens depend on the base value
309 // of the rule. A rule's divisor is (usually) the highest
310 // power of 10 that is less than or equal to the rule's base
311 // value. The value being formatted is divided by the rule's
312 // divisor, and the integral quotient is used to get the text
313 // for <<, while the remainder is used to produce the text
314 // for >>. Again, text in brackets is omitted if the value
315 // being formatted is an even multiple of the rule's divisor
316 // (in this case, an even multiple of 100)
317 " 100: << hundred[ >>];\n"
318 // The rules for the higher numbers work the same way as the
319 // rule for 100: Again, the << and >> tokens depend on the
320 // rule's divisor, which for all these rules is also the rule's
321 // base value. To group by thousand, we simply don't have any
322 // rules between 1,000 and 1,000,000.
323 " 1000: << thousand[ >>];\n"
324 " 1,000,000: << million[ >>];\n"
325 " 1,000,000,000: << billion[ >>];\n"
326 " 1,000,000,000,000: << trillion[ >>];\n"
327 // overflow rule. This rule specifies that values of a
328 // quadrillion or more are shown in numerals rather than words.
329 // The == token means to format (with new rules) the value
330 // being formatted by this rule and place the result where
331 // the == is. The #,##0 inside the == signs is a
332 // DecimalFormat pattern. It specifies that the value should
333 // be formatted with a DecimalFormat object, and that it
334 // should be formatted with no decimal places, at least one
335 // digit, and a thousands separator.
336 " 1,000,000,000,000,000: =#,##0=;\n"
338 // %default is a more elaborate form of %simplified; It is basically
339 // the same, except that it introduces "and" before the ones digit
340 // when appropriate (basically, between the tens and ones digits) and
341 // separates the thousands groups with commas in values over 100,000.
343 // negative-number and fraction rules. These are the same
344 // as those for %simplified, but have to be stated here too
345 // because this is an entry point
347 " x.x: << point >>;\n"
348 // just use %simplified for values below 100
350 // for values from 100 to 9,999 use %%and to decide whether or
351 // not to interpose the "and"
352 " 100: << hundred[ >%%and>];\n"
353 " 1000: << thousand[ >%%and>];\n"
354 // for values of 100,000 and up, use %%commas to interpose the
355 // commas in the right places (and also to interpose the "and")
356 " 100,000>>: << thousand[>%%commas>];\n"
357 " 1,000,000: << million[>%%commas>];\n"
358 " 1,000,000,000: << billion[>%%commas>];\n"
359 " 1,000,000,000,000: << trillion[>%%commas>];\n"
360 " 1,000,000,000,000,000: =#,##0=;\n"
361 // if the value passed to this rule set is greater than 100, don't
362 // add the "and"; if it's less than 100, add "and" before the last
366 " 100: =%default=;\n"
367 // this rule set is used to place the commas
369 // for values below 100, add "and" (the apostrophe at the
370 // beginning is ignored, but causes the space that follows it
371 // to be significant: this is necessary because the rules
372 // calling %%commas don't put a space before it)
373 " ' and =%default=;\n"
374 // put a comma after the thousands (or whatever preceded the
376 " 100: , =%default=;\n"
377 // put a comma after the millions (or whatever precedes the
379 " 1000: , <%default< thousand, >%default>;\n"
381 " 1,000,000: , =%default=;"
382 // %%lenient-parse isn't really a set of number formatting rules;
383 // it's a set of collation rules. Lenient-parse mode uses a Collator
384 // object to compare fragments of the text being parsed to the text
385 // in the rules, allowing more leeway in the matching text. This set
386 // of rules tells the formatter to ignore commas when parsing (it
387 // already ignores spaces, which is why we refer to the space; it also
388 // ignores hyphens, making "twenty one" and "twenty-one" parse
391 // " & ' ' , ',' ;\n"
392 " &\u0000 << ' ' << ',' << '-'; \n"
396 // * This rule set adds an English ordinal abbreviation to the end of a
397 // * number. For example, 2 is formatted as "2nd". Parsing doesn't work with
398 // * this rule set. To parse, use DecimalFormat on the numeral.
400 // this rule set formats the numeral and calls %%abbrev to
401 // supply the abbreviation
403 " =#,##0==%%abbrev=;\n"
404 // this rule set supplies the abbreviation
406 // the abbreviations. Everything from 4 to 19 ends in "th"
407 " th; st; nd; rd; th;\n"
408 // at 20, we begin repeating the cycle every 10 (13 is "13th",
409 // but 23 and 33 are "23rd" and "33rd") We do this by
410 // ignoring all bug the ones digit in selecting the abbreviation
412 // at 100, we repeat the whole cycle by considering only the
413 // tens and ones digits in picking an abbreviation
417 // * This rule set formats a number of seconds in sexagesimal notation
418 // * (i.e., hours, minutes, and seconds). %with-words formats it with
419 // * words (3,740 is "1 hour, 2 minutes, 20 seconds") and %in-numerals
420 // * formats it entirely in numerals (3,740 is "1:02:20").
422 // main rule set for formatting with words
424 // take care of singular and plural forms of "second"
425 " 0 seconds; 1 second; =0= seconds;\n"
426 // use %%min to format values greater than 60 seconds
427 " 60/60: <%%min<[, >>];\n"
428 // use %%hr to format values greater than 3,600 seconds
429 // (the ">>>" below causes us to see the number of minutes
430 // when when there are zero minutes)
431 " 3600/60: <%%hr<[, >>>];\n"
432 // this rule set takes care of the singular and plural forms
435 " 0 minutes; 1 minute; =0= minutes;\n"
436 // this rule set takes care of the singular and plural forms
439 " 0 hours; 1 hour; =0= hours;\n"
441 // main rule set for formatting in numerals
443 // values below 60 seconds are shown with "sec."
445 // higher values are shown with colons: %%min-sec is used for
446 // values below 3,600 seconds...
447 " 60: =%%min-sec=;\n"
448 // ...and %%hr-min-sec is used for values of 3,600 seconds
450 " 3600: =%%hr-min-sec=;\n"
451 // this rule causes values of less than 10 minutes to show without
456 // this rule set is used for values of 3,600 or more. Minutes are always
457 // shown, and always shown with two digits
461 " 3600/60: <#,##0<:>>>;\n"
462 // the lenient-parse rules allow several different characters to be used
463 // as delimiters between hours, minutes, and seconds
465 " & ':' = '.' = ' ' = '-';\n"
468 // Last update: May 2003
470 ADD { "ADD", "Andorran Diner" } // 1873-06/30/2002
471 ADP { "ADP", "Andorran Peseta" } // 1936-
472 AED { "AED", "United Arab Emirates Dirham" } // 12/2/1971-
473 AFA { "AFA", "Afghani (1927-2002)" } // 1927-
474 AFN { "Af", "Afghani" }
475 AIF { "AIF", "Affars and Issas Franc" } // 07/05/1967-06/27/1977
476 ALK { "ALK", "Albanian Lek (1946-1961)" } // 1946-1961
477 ALL { "lek", "Albanian Lek" } // 1961-
478 ALV { "ALV", "Albanian Lek Valute" } // 1992-1993
479 ALX { "ALX", "Albanian Dollar Foreign Exchange Certificates" } // 1953-1965
480 AMD { "dram","Armenian Dram" } // 11/22/1993-
481 ANG { "NA f.","Netherlands Antillan Guilder" } // 05/10/1940-
482 AOA { "AOA", "Angolan Kwanza" } // 09/1926-12/31/1958
483 AOK { "AOK", "Angolan Kwanza (1977-1990)" } // 01/08/1977-09/25/1990
484 AON { "AON", "Angolan New Kwanza (1990-2000)" } // 09/25/1990-07/01/1995
485 AOR { "AOR", "Angolan Kwanza Reajustado (1995-1999)" } // 07/01/1995-12/13/1999
486 AOS { "AOS", "Angolan Escudo" } // 12/31/1958-11/11/1976
487 ARA { "ARA", "Argentine Austral" } // 06/14/1985-01/01/1992
488 ARM { "ARM", "Argentine Peso Moneda Nacional" } // 1899-01/01/1970
489 ARP { "ARP", "Argentine Peso (1983-1985)" } // 06/01/1983-06/14/1985
490 ARS { "Arg$","Argentine Peso" } // 01/01/1992-
491 ATS { "ATS", "Austrian Schilling" } // 12/04/1947-02/28/2002
492 AUD { "$A", "Australian Dollar" } // 02/14/1966-
493 AUP { "AUP", "Australian Pound" } // 1902-02/14/1966
494 AWG { "AWG", "Aruban Guilder" } // 01/01/1986-
495 AZM { "AZM", "Azerbaijanian Manat" } // 1992-
496 BAD { "BAD", "Bosnia-Herzegovina Dinar" } // 07/01/1992-08/15/1994
497 BAM { "KM", "Bosnia-Herzegovina Convertible Mark" } // 01/01/1995-
498 BAN { "BAN", "Bosnia-Herzegovina New Dinar" } // 08/15/1994-01/01/1995
499 BBD { "BDS$","Barbados Dollar" } // 11/29/1966-
500 BDT { "Tk", "Bangladesh Taka" } // 01/01/1972-
501 BEC { "BEC", "Belgian Franc (convertible)" }
502 BEF { "BF", "Belgian Franc" } // 1831-2002
503 BEL { "BEL", "Belgian Franc (financial)" }
504 BGL { "lev", "Bulgarian Hard Lev" } // 01/01/1962-01/01/1999
505 BGM { "BGM", "Bulgarian Socialist Lev" } // 05/1952-01/01/1962
506 BGN { "BGN", "Bulgarian New Lev" } // 01/01/1999-
507 BGO { "BGO", "Bulgarian Lev (1879-1952)" } // 07/08/1879-05/1952
508 BGX { "BGX", "Bulgarian Lev Foreign Exchange Certificates" } // 1965-1986
509 BHD { "BD", "Bahraini Dinar" } // 10/1965-
510 BIF { "Fbu", "Burundi Franc" } // 05/19/1964-
511 BMD { "Ber$","Bermudan Dollar" } // 02/06/1970-
512 BMP { "BMP", "Bermudan Pound" } // 1914-02/06/1970
513 BND { "BND", "Brunei Dollar" } // 06/12/1967-
514 BOB { "Bs", "Boliviano" } // 1986-
515 BOL { "BOL", "Boliviano (1863-1962)" } // 06/23/1863-12/31/1962
516 BOP { "BOP", "Bolivian Peso" } // 01/01/1963-1986
517 BOV { "BOV", "Bolivian Mvdol" }
518 BRB { "BRB", "Brazilian Cruzeiro Novo (1967-1986)" } // 02/13/1967-02/28/1986
519 BRC { "BRC", "Brazilian Cruzado" } // 02/28/1986-01/15/1989
520 BRE { "BRE", "Brazilian Cruzeiro (1990-1993)" } // 03/16/1990-08/01/1993
521 BRL { "R$", "Brazilian Real" } // 07/01/1994-
522 BRN { "BRN", "Brazilian Cruzado Novo" } // 01/15/1989-03/16/1990
523 BRR { "BRR", "Brazilian Cruzeiro" } // 08/01/1993-07/01/1994
524 BRZ { "BRZ", "Brazilian Cruzeiro (1942-1967)" } // 1942-1967
525 BSD { "BSD", "Bahamian Dollar" } // 5/25/1966-
526 BSP { "BSP", "Bahamian Pound" } // 1869-5/25/1966
527 BTN { "Nu", "Bhutan Ngultrum" } // 1974-
528 BTR { "BTR", "Bhutan Rupee" } // 1928-1974
529 BUK { "BUK", "Burmese Kyat" } // 01/04/1948-06/18/1989
530 BUR { "BUR", "Burmese Rupee" } // 04/01/1937-07/01/1952
531 BWP { "BWP", "Botswanan Pula" } // 1976-
532 BYB { "BYB", "Belarussian New Ruble (1994-1999)" } // 08/1994-01/01/2000
533 BYL { "BYL", "Belarussian Ruble (1992-1994)" } // 09/25/1992-08/1994
534 BYR { "Rbl", "Belarussian Ruble" } // 01/01/2000-
535 BZD { "BZ$", "Belize Dollar" } // 1973-
536 BZH { "BZH", "British Honduras Dollar" } // 1855-1972
537 CAD { "Can$","Canadian Dollar" } // 1858-
538 CDF { "CDF", "Congolese Franc Congolais" } // 07/1998-
539 CDG { "CDG", "Congolese Republic Franc" } // 06/30/1960-07/22/1967
540 CDL { "CDL", "Congolese Zaire" } // 07/23/1967-10/27/1971
541 CFF { "CFF", "Central African Republic CFA Franc" } // 04/01/1973-1992
542 CHF { "SwF", "Swiss Franc" } // 03/17/1799-
543 CKD { "CKD", "Cook Islands Dollar" } // 1987-
544 CLC { "CLC", "Chilean Condor" } // 1817-12/31/1959
545 CLE { "CLE", "Chilean Escudo" } // 1/1/1960-1975
546 CLF { "CLF", "Chilean Unidades de Fomento" } // 1975-
547 CLP { "Ch$", "Chilean Peso" } // 1975-
548 CMF { "CMF", "Cameroon CFA Franc" } // 01/01/1960-1992
549 CNP { "CNP", "Chinese Jen Min Piao Yuan" } // 1948-04/30/1953
550 CNX { "CNX", "Chinese US Dollar Foreign Exchange Certificates" } // 1979-1998
551 CNY { "Y", "Chinese Yuan Renminbi" } // 03/01/1953-
552 COB { "COB", "Colombian Paper Peso" }
553 COF { "COF", "Congo CFA Franc" } // 04/01/1973-1992
554 COP { "Col$","Colombian Peso" } // 6/9/1871-
555 CRC { "C", "Costa Rican Colon" } // 10/26/1896-
556 CSC { "CSC", "Czechoslovak Koruna" } // 05/1945-06/01/1953
557 CSK { "CSK", "Czechoslovak Hard Koruna" } // 06/01/1953-12/31/1992
558 CUP { "CUP", "Cuban Peso" } // 1881-
559 CUX { "CUX", "Cuban Foreign Exchange Certificates" } // 1985-
560 CVE { "CVEsc","Cape Verde Escudo" } // 05/22/1911-
561 CWG { "CWG", "Curacao Guilder" } // 1848-1960
562 CYP { "\u00A3C","Cyprus Pound" } // 9/5/1917-
563 CZK { "CZK", "Czech Republic Koruna" } // 01/01/1993-
564 DDM { "DDM", "East German Ostmark" } // 07/20/1948-10/02/1990
565 DEM { "DEM", "Deutsche Mark" } // 6/20/1948-2002
566 DES { "DES", "German Sperrmark" } // 03/31/1951-12/29/1958
567 DJF { "DF", "Djibouti Franc" } // 06/27/1977-
568 DKK { "DKr", "Danish Krone" } // 5/27/1873-
569 DOP { "RD$", "Dominican Peso" } // 10/1947-
570 DZD { "DA", "Algerian Dinar" } // 04/01/1964-
571 DZF { "DZF", "Algerian New Franc" } // 01/01/1960-04/01/1964
572 DZG { "DZG", "Algerian Franc Germinal" } // 08/04/1851-12/31/1959
573 ECS { "ECS", "Ecuador Sucre" } // 4/1/1884-2000
574 ECV { "ECV", "Ecuador Unidad de Valor Constante (UVC)" } // 1980-
575 EEK { "EEK", "Estonian Kroon" } // 06/21/1992-
576 EGP { "EGP", "Egyptian Pound" } // 11/14/1885-
577 ERN { "ERN", "Eritrean Nakfa" } // 1997-
578 ESP { "ESP","Spanish Peseta" } // 01/01/1859-02/28/2002
579 ETB { "Br", "Ethiopian Birr" } // 09/15/1976-
580 ETD { "ETD", "Ethiopian Dollar" } // 07/23/1945-09/15/1976
581 EUR { "\u20AC","Euro" } // 01/01/1999-
582 FIM { "FIM", "Finnish Markka" } // 1/1/1963-2002
583 FIN { "FIN", "Finnish Markka (1860-1962)" } // 4/4/1860-12/31/1962
584 FJD { "F$", "Fiji Dollar" } // 01/13/1969-
585 FJP { "FJP", "Fiji Pound" } // 1917-01/13/1969
586 FKP { "FKP", "Falkland Islands Pound" } // 1901-
587 FOK { "FOK", "Faeroe Islands Kronur" } // 1940-
588 FRF { "FRF", "French Franc" } // 01/01/1960-2002
589 FRG { "FRG", "French Franc Germinal/Franc Poincare" } // 04/07/1803-12/31/1959
590 GAF { "GAF", "Gabon CFA Franc" } // 04/01/1973-1992
591 GBP { "\u00A3","British Pound Sterling" } // 07/27/1694-
592 GEK { "GEK", "Georgian Kupon Larit" } // 04/05/1993-09/23/1995
593 GEL { "lari","Georgian Lari" } // 09/23/1995-
594 GHC { "GHC", "Ghana Cedi" } // 03/09/1979-
595 GHO { "GHO", "Ghana Old Cedi" } // 07/19/1965-02/17/1967
596 GHP { "GHP", "Ghana Pound" } // 07/14/1958-
597 GHR { "GHR", "Ghana Revalued Cedi" } // 02/17/1967-03/09/1979
598 GIP { "GIP", "Gibraltar Pound" } // 1713-
599 GLK { "GLK", "Greenland Krone" } // 1874-07/01/1967
600 GMD { "GMD", "Gambia Dalasi" } // 07/01/1971-
601 GMP { "GMP", "Gambia Pound" } // 05/13/1964-07/01/1971
602 GNF { "GF", "Guinea Franc" } // 01/06/1986-
603 GNI { "GNI", "Guinea Franc (1960-1972)" } // 03/01/1960-10/02/1972
604 GNS { "GNS", "Guinea Syli" } // 10/02/1972-01/06/1986
605 GPF { "GPF", "Guadeloupe Franc" } // 07/11/1851-12/31/1959
606 GQE { "GQE", "Equatorial Guinea Ekwele Guineana" } // 07/07/1975-01/01/1985
607 GQF { "GQF", "Equatorial Guinea Franco" } // 01/01/1985-1992
608 GQP { "GQP", "Equatorial Guinea Peseta Guineana" } // 10/12/1968-07/07/1975
609 GRD { "GRD", "Greek Drachma" } // 05/01/1954-2002
610 GRN { "GRN", "Greek New Drachma" } // 11/11/1944-05/01/1954
611 GTQ { "Q", "Guatemala Quetzal" } // 05/27/1925-
612 GUF { "GUF", "French Guyana Franc Guiana" } // 07/11/1851-12/31/1959
613 GWE { "GWE", "Portuguese Guinea Escudo" } // 1879-09/10/1974
614 GWM { "GWM", "Portuguese Guinea Mil Reis" } // 1879-09/10/1974
615 GWP { "GWP", "Guinea-Bissau Peso" } // 9/10/1974-12/31/1996
616 GYD { "G$", "Guyana Dollar" } // 05/26/1966-
617 HKD { "HK$", "Hong Kong Dollar" } // 2/2/1895-
618 HNL { "L", "Hoduras Lempira" } // 04/03/1926-
619 HRD { "HRD", "Croatian Dinar" }
620 HRK { "HRK", "Croatian Kuna" } // 05/30/1994-
621 HTG { "HTG", "Haitian Gourde" } // 08/26/1872-
622 HUF { "Ft", "Hungarian Forint" } // 07/23/1946-
623 IBP { "IBP", "Northern Irish Pound" } // 07/27/1694-
624 IDG { "IDG", "Indonesian Nica Guilder" } // 09/1945-05/13/1950
625 IDJ { "IDJ", "Indonesian Java Rupiah" } // 10/17/1945-03/13/1950
626 IDN { "IDN", "Indonesian New Rupiah" } // 11/02/1949-12/13/1965
627 IDR { "Rp", "Indonesian Rupiah" } // 12/13/1965-
628 IEP { "IR\u00A3","Irish Pound" } // 1922-2001
629 ILL { "ILL", "Israeli Sheqel" } // 02/22/1980-09/04/1985
630 ILP { "ILP", "Israeli Pound" } // 08/16/1948-02/22/1980
631 ILS { "ILS","Israeli New Sheqel" } // 09/04/1985-
632 IMP { "IMP", "Isle of Man Pound Sterling" } // 1865-
633 INR { "=0#Rs.|1#Re.|1<Rs.", "Indian Rupee" } // 08/17/1835-
634 IQD { "ID", "Iraqi Dinar" } // 04/19/1931-
635 IRR { "RI", "Iranian Rial" } // 05/13/1932-
636 ISK { "ISK", "Icelandic Krona" } // 12/1/1918-
637 ITL { "\u20A4", "Italian Lira" } // 11/10/1859-
638 JEP { "JEP", "Jersey Pound Sterling" } // 1840-
639 JMD { "J$", "Jamaican Dollar" } // 09/08/1969-
640 JMP { "JMP", "Jamaican Pound" } // 1900-09/08/1969
641 JOD { "JD", "Jordanian Dinar" } // 07/01/1950-
642 JPY { "\u00A5","Japanese Yen" } // 06/1871
643 KES { "K Sh","Kenyan Shilling" } // 09/14/1966-
644 KGS { "som", "Kyrgystan Som" } // 05/10/1993-
645 KHO { "KHO", "Cambodian Old Riel" } // 01/01/1955-1975
646 KHR { "CR", "Cambodian Riel" } // 03/20/1980-
647 KID { "KID", "Kiribati Dollar" } // 07/12/1979-
648 KMF { "CF", "Comoro Franc" } // 07/06/1975-
649 KPP { "KPP", "North Korean People's Won" } // 1947-02/1959
650 KPW { "KPW", "North Korean Won" } // 02/1959-
651 KRH { "KRH", "South Korean Hwan" } // 02/15/1953-06/10/1962
652 KRO { "KRO", "South Korean Old Won" } // 1947-02/15/1953
653 KRW { "KRW","South Korean Won" } // 06/10/1962-
654 KWD { "KD", "Kuwaiti Dinar" } // 04/01/1961-
655 KYD { "KYD", "Cayman Islands Dollar" } // 1971-
656 KZR { "KZR", "Kazakhstan Ruble" } // 08/1993-11/05/1993
657 KZT { "T", "Kazakhstan Tenge" } // 11/05/1993-
658 LAK { "LAK","Laotian Kip" } // 05/05/1955-
659 LBP { "LL", "Lebanese Pound" } // 01/01/1948-
660 LIF { "LIF", "Liechtenstein Franc" } // 03/17/1799-
661 LKR { "SL Re","Sri Lanka Rupee" } // 05/22/1978-
662 LNR { "LNR", "Ceylon Rupee" } // 12/16/1949-05/22/1978
663 LRD { "LRD", "Liberian Dollar" } // 01/01/1944-
664 LSL { "M", "Lesotho Loti" } // 01/22/1980-
665 LTL { "LTL", "Lithuanian Lita" } // 06/25/1993-
666 LTT { "LTT", "Lithuanian Talonas" } // 10/1/1992-06/25/1993
667 LUF { "LUF", "Luxembourg Franc" } // 12/20/1848-
668 LVL { "LVL", "Latvian Lats" } // 06/28/1993-
669 LVR { "LVR", "Latvian Ruble" } // 05/07/1992-10/17/1993
670 LYB { "LYB", "Libyan British Military Authority Lira" } // 1941-12/24/1951
671 LYD { "LD", "Libyan Dinar" } // 09/01/1971-
672 LYP { "LYP", "Libyan Pound" } // 12/24/1951-09/01/1971
673 MAD { "MAD", "Moroccan Dirham" } // 10/17/1959-
674 MAF { "MAF", "Moroccan Franc" } // 1881-10/17/1959
675 MCF { "MCF", "Monaco Franc Nouveau" } // 01/01/1960-
676 MCG { "MCG", "Monaco Franc Germinal" } // 03/07/1837-12/31/1959
677 MDC { "MDC", "Moldovan Leu Cupon" } // 06/1992-11/29/1993
678 MDL { "MDL", "Moldovan Leu" } // 11/29/1993-
679 MDR { "MDR", "Moldovan Ruble Cupon" } // 05/23/1991-06/1992
680 MGA { "MGA", "Madagascar Ariary" } // 11/01/1983-
681 MGF { "MGF", "Madagascar Franc" } // 07/01/1963-
682 MHD { "MHD", "Marshall Islands Dollar" } // 1979-
683 MKD { "MDen","Macedonian Denar" } // 05/20/1993-
684 MKN { "MKN", "Macedonian Denar (1992-1993)" } // 04/26/1992-05/20/1993
685 MLF { "MLF", "Mali Franc" } // 07/02/1962-1984
686 MMK { "MMK", "Myanmar Kyat" } // 06/18/1989-
687 MMX { "MMX", "Myanmar Dollar Foreign Exchange Certificates" }
688 MNT { "Tug", "Mongolian Tugrik" } // 03/13/1921-
689 MOP { "MOP", "Macao Pataca" } // 1895-
690 MQF { "MQF", "Martinique Franc" } // 07/11/1851-1959
691 MRO { "UM", "Mauritania Ouguiya" } // 06/29/1973-
692 MTL { "Lm", "Maltese Lira" }
693 MTP { "MTP", "Maltese Pound" } // 08/13/1914-
694 MUR { "MUR", "Mauritius Rupee" } // 1848-03/12/1968
695 MVP { "MVP", "Maldive Islands Rupee" } // 1960-07/01/1981
696 MVR { "MVR", "Maldive Islands Rufiyaa" } // 07/01/1981-
697 MWK { "MK", "Malawi Kwacha" } // 02/15/1971-
698 MWP { "MWP", "Malawi Pound" } // 07/06/1964-02/15/1971
699 MXN { "MEX$","Mexican Peso" } // 01/01/1993-
700 MXP { "MXP", "Mexican Silver Peso (1861-1992)" } // 1822-12/31/1992
701 MXV { "MXV", "Mexican Unidad de Inversion (UDI)" } // 1975-
702 MYR { "RM", "Malaysian Ringgit" } // 9/16/1963-
703 MZE { "MZE", "Mozambique Escudo" } // 09/01/1922-06/16/1980
704 MZM { "Mt", "Mozambique Metical" } // 06/16/1980-
705 NAD { "N$", "Namibia Dollar" } // 1993-
706 NCF { "NCF", "New Caledonia Franc Germinal" } // 12/26/1945-1992
707 NGN { "NGN", "Nigerian Naira" } // 01/01/1973-
708 NGP { "NGP", "Nigerian Pound" } // 07/01/1959-01/01/1973
709 NHF { "NHF", "New Hebrides CFP Franc" } // 08/31/1941-12/31/1959
710 NIC { "NIC", "Nicaraguan Cordoba" } // 02/15/1988-04/30/1991
711 NIG { "NIG", "Nicaraguan Gold Cordoba" } // 04/03/1926-02/15/1988
712 NIO { "NIO", "Nicaraguan Cordoba Oro" } // 04/30/1991-
713 NLG { "NLG", "Netherlands Guilder" } // 1795-
714 NOK { "NKr", "Norwegian Krone" } // 1905-
715 NPR { "Nrs", "Nepalese Rupee" } // 1945-
716 NZD { "$NZ", "New Zealand Dollar" } // 07/10/1967-
717 NZP { "NZP", "New Zealand Pound" } // 1907-07/10/1967
718 OMR { "RO", "Oman Rial" } // 11/11/1972-
719 OMS { "OMS", "Oman Rial Saidi" } // 07/25/1970-11/11/1972
720 PAB { "PAB", "Panamanian Balboa" } // 1904-
721 PDK { "PDK", "Transdniestria Ruble Kupon" } // 12/01/1994-12/31/2000
722 PDN { "PDN", "Transdniestria New Ruble" } // 01/01/2001-
723 PDR { "PDR", "Transdniestria Ruble" } // 01/24/1994-12/01/1994
724 PEI { "PEI", "Peruvian Inti" } // 02/01/1985-07/01/1991
725 PEN { "PEN", "Peruvian Sol Nuevo" } // 07/01/1991-
726 PES { "PES", "Peruvian Sol" } // 02/14/1863-02/01/1985
727 PGK { "PGK", "Papua New Guinea Kina" } // 09/16/1975-
728 PHP { "PHP", "Philippine Peso" } // 03/02/1903-
729 PKR { "Pra", "Pakistan Rupee" } // 04/01/1948-
730 PLN { "Zl", "Polish Zloty" } // 01/01/1995-
731 PLX { "PLX", "Polish US Dollar Foreign Exchange Certificates" } // 1960-
732 PLZ { "PLZ", "Polish Zloty (1950-1995)" } // 10/28/1950-12/31/1994
733 PSP { "PSP", "Palestine Pound" } // 11/01/1927-07/01/1950
734 PTC { "PTC", "Portuguese Conto" } // 06/09/1931-2002
735 PTE { "PTE", "Portuguese Escudo" } // 05/22/1911-2002
736 PYG { "PYG", "Paraguay Guarani" } // 11/1943-
737 QAR { "QR", "Qatari Rial" } // 05/19/1973-
738 REF { "REF", "Reunion Franc" } // 07/11/1851-12/31/1959
739 ROL { "leu", "Romanian Leu" } // 01/28/1952-
740 RON { "RON", "Romanian New Leu" } // 08/15/1947-01/28/1952
741 RUB { "RUB", "Russian Ruble" } // 01/01/1999-
742 RUR { "RUR", "Russian Ruble (1991-1998)" } // 12/25/1991-12/31/1998
743 RWF { "RWF", "Rwandan Franc" } // 05/19/1964-
744 SAR { "SRl", "Saudi Riyal" } // 10/22/1952-
745 SAS { "SAS", "Saudi Sovereign Riyal" } // 01/01/1936-10/22/1952
746 SBD { "SI$", "Solomon Islands Dollar" } // 10/24/1977-
747 SCR { "SR", "Seychelles Rupee" } // 1900-
748 SDD { "SDD", "Sudanese Dinar" } // 1992-
749 SDP { "SDP", "Sudanese Pound" } // 04/08/1957-06/1998
750 SEK { "SKr", "Swedish Krona" } // 5/27/1873-
751 SGD { "S$", "Singapore Dollar" } // 8/9/1965-
752 SHP { "SHP", "Saint Helena Pound" } // 1917-
753 SIB { "SIB", "Slovenia Tolar Bons" } // 10/08/1991-10/07/1992
754 SIT { "SIT", "Slovenia Tolar" } // 10/07/1992-
755 SKK { "Sk", "Slovak Koruna" } // 01/31/1992-
756 SLL { "SLL", "Sierra Leone Leone" } // 08/04/1964-
757 SML { "SML", "San Marino Lira" } // 12/23/1865-
758 SOS { "So. Sh.","Somali Shilling" } // 07/01/1960-05/24/1991
759 SQS { "SQS", "Somaliland Shilling" } // 05/24/1991-
760 SRG { "Sf", "Suriname Guilder" } // 12/25/1975-
761 SSP { "SSP", "Scotland Pound" } // 1707-
762 STD { "Db", "Sao Tome and Principe Dobra" }
763 STE { "STE", "Sao Tome and Principe Escudo" } // 05/22/1911-07/05/1975
764 SUN { "SUN", "Soviet New Ruble" } // 12/16/1947-12/31/1960
765 SUR { "SUR", "Soviet Rouble" } // 01/01/1961-12/25/1991
766 SVC { "SVC", "El Salvador Colon" } // 11/11/1919-
767 SYP { "LS", "Syrian Pound" } // 01/01/1948-
768 SZL { "E", "Swaziland Lilangeni" } // 09/06/1974-
769 TCC { "TCC", "Turks and Caicos Crown" } // 1971-
770 TDF { "TDF", "Chad CFA Franc" } // 04/01/1973-1992
771 THB { "THB", "Thai Baht" } // 04/15/1928-
772 TJR { "TJR", "Tajikistan Ruble" } // 05/1995-12/31/2000
773 TJS { "TJS", "Tajikistan Somoni" } // 01/01/2001-
774 TMM { "TMM", "Turkmenistan Manat" } // 11/01/1993-
775 TND { "TND", "Tunisian Dinar" } // 11/01/1958-
776 TOP { "T$", "Tonga Pa\u00b4anga" } // 02/14/1966-
777 TOS { "TOS", "Tonga Pound Sterling" } // 1921-02/14/1966
778 TPE { "TPE", "Timor Escudo" } // 01/02/1959-12/07/1975
779 TPP { "TPP", "Timor Pataca" } // 1895-12/31/1958
780 TRL { "TL", "Turkish Lira" } // 11/01/1922-
781 TTD { "TT$", "Trinidad and Tobago Dollar" } // 08/31/1962-
782 TTO { "TTO", "Trinidad and Tobago Old Dollar" } // 01/01/1899-08/01/1951
783 TVD { "TVD", "Tuvalu Dollar" } // 1979-
784 TWD { "NT$", "Taiwan New Dollar" } // 6/15/1949-
785 TZS { "T Sh","Tanzanian Shilling" } // 06/14/1966-
786 UAH { "UAH", "Ukrainian Hryvnia" } // 09/02/1996-
787 UAK { "UAK", "Ukrainian Karbovanetz" } // 11/13/1992-10/17/1993
788 UGS { "UGS", "Ugandan Shilling (1966-1987)" } // 08/15/1966-05/15/1987
789 UGX { "U Sh","Ugandan Shilling" } // 05/15/1987-
790 USD { "$", "US Dollar" } // 04/04/1792-
791 USN { "USN", "US Dollar (Next day)" }
792 USS { "USS", "US Dollar (Same day)" }
793 UYF { "UYF", "Uruguay Peso Fuerte" } // 06/23/1862-07/01/1975
794 UYP { "UYP", "Uruguay Peso (1975-1993)" } // 07/01/1975-03/01/1993
795 UYU { "Ur$", "Uruguay Peso Uruguayo" } // 03/01/1993-
796 UZC { "UZC", "Uzbekistan Coupon Som" } // 1993-07/1994
797 UZS { "UZS", "Uzbekistan Sum" } // 07/1994-
798 VAL { "VAL", "Vatican City Lira" } // 1929-2002
799 VDD { "VDD", "North Vietnam Piastre Dong Viet" } // 1953-02/28/1958
800 VDN { "VDN", "North Vietnam New Dong" } // 02/28/1958-05/03/1978
801 VDP { "VDP", "North Vietnam Viet Minh Piastre Dong Viet" } // 11/3/1946-1953
802 VEB { "Be", "Venezuelan Bolivar" } // 05/11/1871-
803 VGD { "VGD", "British Virgin Islands Dollar" } // 1973-
804 VND { "VND", "Vietnamese Dong" } // 09/14/1985-
805 VNN { "VNN", "Vietnamese New Dong" } // 05/03/1978-09/14/1985
806 VNR { "VNR", "Vietnamese Republic Dong" } // 12/29/1954-9/22/1975
807 VNS { "VNS", "Vietnamese National Dong" } // 09/22/1975-05/03/1978
808 VUV { "VT", "Vanuatu Vatu" } // 01/01/1981-
809 WSP { "WSP", "Western Samoa Pound" } // 12/17/1920-07/10/1962
810 WST { "WST", "Western Samoa Tala" } // 07/10/1967-
811 XAD { "XAD", "Asian Dinar Unit of Account" }
812 XAF { "XAF", "CFA Franc BEAC" } // 1974-
813 XAM { "XAM", "Asian Monetary Unit" } // 12/1974-
814 XAU { "XAU", "Gold" }
815 XBA { "XBA", "European Composite Unit" }
816 XBB { "XBB", "European Monetary Unit" } // 12/1970-04/1972
817 XBC { "XBC", "European Unit of Account (XBC)" } // 04/1972-12/31/1978
818 XBD { "XBD", "European Unit of Account (XBD)" } // 1961-12/31/1978
819 XCD { "EC$", "East Caribbean Dollar" } // 10/06/1965-
820 XCF { "XCF", "CFA Nouveau Franc" } // 01/01/1960-
821 XDR { "XDR", "Special Drawing Rights" } // 1970-
822 XEF { "XEF", "CFA Franc BCEAEC" } // 12/04/1958-04/01/1973
823 XEU { "XEU", "European Currency Unit" } // 1975-1998
824 XFO { "XFO", "French Gold Franc" }
825 XFU { "XFU", "French UIC-Franc" }
826 XID { "XID", "Islamic Dinar" }
827 XMF { "XMF", "French Metropolitan Nouveau Franc" } // 1960-
828 XNF { "XNF", "French Antilles CFA Franc" } // 01/01/1960-1975
829 XOF { "XOF", "CFA Franc BCEAO" } // 12/04/1958-
830 XPF { "CFPF","CFP Franc" } // 12/26/1945-
831 XPS { "XPS", "Pound Sterling" } // 07/27/1694-
832 XSS { "XSS", "Shilling Sterling" } // 07/27/1694-
833 XTR { "XTR", "COMECON Transferable Ruble" } // 1960-1992
834 YDD { "YDD", "Yemeni Dinar" } // 4/1/1965-05/22/1990
835 YEI { "YEI", "Yemeni Imadi Riyal" } // 1904-02/1964
836 YER { "YRl", "Yemeni Rial" } // 02/1964-
837 YUD { "YUD", "Yugoslavian Hard Dinar" } // 01/01/1966-1990
838 YUF { "YUF", "Yugoslavian Federation Dinar" } // 12/04/1943-12/31/1965
839 YUG { "YUG", "Yugoslavian 1994 Dinar" } // 01/1994-02/1994
840 YUM { "YUM", "Yugoslavian Noviy Dinar" } // 02/1994-
841 YUN { "YUN", "Yugoslavian Convertible Dinar" } // 1990-07/1992
842 YUO { "YUO", "Yugoslavian October Dinar" } // 10/1993-12/1993
843 YUR { "YUR", "Yugoslavian Reformed Dinar" } // 07/1992-10/1993
844 ZAL { "ZAL", "South African Rand (financial)" }
845 ZAP { "ZAP", "South African Pound" } // 1920-02/14/1961
846 ZAR { "R", "South African Rand" } // 02/14/1961-
847 ZMK { "ZMK", "Zambian Kwacha" } // 01/16/1968-
848 ZMP { "ZMP", "Zambian Pound" } // 08/07/1964-01/16/1968
849 ZRN { "ZRN", "Zairean New Zaire" } // 11/01/1993-07/1998
850 ZRZ { "ZRZ", "Zairean Zaire" } // 10/27/1971-11/01/1993
851 ZWD { "Z$", "Zimbabwe Dollar" } // 04/18/1980-