├── .gitignore ├── README.md ├── bower.json ├── supplemental ├── primaryZones.json ├── measurementData.json ├── gender.json ├── calendarPreferenceData.json ├── parentLocales.json ├── weekData.json ├── numberingSystems.json ├── languageGroups.json ├── territoryContainment.json ├── ordinals.json ├── characterFallbacks.json ├── calendarData.json ├── timeData.json └── codeMappings.json ├── package.json ├── .gitattributes ├── LICENSE ├── defaultContent.json └── availableLocales.json /.gitignore: -------------------------------------------------------------------------------- 1 | /bower_components/ 2 | /node_modules/ 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # cldr-core 2 | 3 | This repository provides the a portion of the JSON distribution of CLDR locale data 4 | for internationalization. 5 | 6 | Refer to the README at https://github.com/unicode-cldr/cldr-json for complete details. 7 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cldr-core", 3 | "version": "37.0.0", 4 | "main": [ 5 | "availableLocales.json", 6 | "defaultContent.json", 7 | "scriptMetadata.json", 8 | "supplemental/*.json" 9 | ], 10 | "ignore": [ 11 | ".gitattributes", 12 | "README.md" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /supplemental/primaryZones.json: -------------------------------------------------------------------------------- 1 | { 2 | "supplemental": { 3 | "version": { 4 | "_unicodeVersion": "13.0.0", 5 | "_cldrVersion": "37" 6 | }, 7 | "primaryZones": { 8 | "CL": "America/Santiago", 9 | "CN": "Asia/Shanghai", 10 | "DE": "Europe/Berlin", 11 | "EC": "America/Guayaquil", 12 | "ES": "Europe/Madrid", 13 | "MH": "Pacific/Majuro", 14 | "MY": "Asia/Kuala_Lumpur", 15 | "NZ": "Pacific/Auckland", 16 | "PT": "Europe/Lisbon", 17 | "UA": "Europe/Kiev", 18 | "UZ": "Asia/Tashkent" 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cldr-core", 3 | "version": "37.0.0", 4 | "homepage": "http://cldr.unicode.org", 5 | "author": "The Unicode Consortium", 6 | "maintainers": [ 7 | { 8 | "name": "John Emmons", 9 | "email": "emmo@us.ibm.com", 10 | "url": "https://github.com/JCEmmons" 11 | } 12 | ], 13 | "repository": { 14 | "type": "git", 15 | "url": "git://github.com/unicode-cldr/cldr-core.git" 16 | }, 17 | "licenses": [ 18 | { 19 | "type": "Unicode-TOU", 20 | "url": "http://www.unicode.org/copyright.html" 21 | } 22 | ], 23 | "bugs": "https://unicode-org.atlassian.net/projects/CLDR/issues" 24 | } 25 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Set the default behavior, in case users don't have core.autocrlf set 2 | * text=auto 3 | 4 | # Files that should always be normalized and converted to native line 5 | # endings on checkout. 6 | *.js text 7 | *.json text 8 | *.htm text 9 | *.html text 10 | *.svg text 11 | *.txt text 12 | *.xml text 13 | *.xsl text 14 | *.dtd text 15 | *.css text 16 | *.rest text 17 | *.rst text 18 | *.md text 19 | *.php text 20 | *.phps text 21 | *.inc text 22 | *.sh text 23 | *.bat text 24 | *.styl text 25 | *.less text 26 | Makefile text 27 | README text 28 | CHANGELOG text 29 | LICENSE text 30 | INSTALL text 31 | BUILD text 32 | 33 | # Files that are truly binary and should not be modified 34 | *.png binary 35 | *.jpg binary 36 | *.jpeg binary 37 | *.gif binary 38 | *.jar binary 39 | *.zip binary 40 | *.psd binary 41 | 42 | -------------------------------------------------------------------------------- /supplemental/measurementData.json: -------------------------------------------------------------------------------- 1 | { 2 | "supplemental": { 3 | "version": { 4 | "_unicodeVersion": "13.0.0", 5 | "_cldrVersion": "37" 6 | }, 7 | "measurementData": { 8 | "measurementSystem": { 9 | "001": "metric", 10 | "GB": "UK", 11 | "LR": "US", 12 | "MM": "US", 13 | "US": "US" 14 | }, 15 | "measurementSystem-category-temperature": { 16 | "BS": "US", 17 | "BZ": "US", 18 | "KY": "US", 19 | "LR": "metric", 20 | "MM": "metric", 21 | "PR": "US", 22 | "PW": "US" 23 | }, 24 | "paperSize": { 25 | "001": "A4", 26 | "BZ": "US-Letter", 27 | "CA": "US-Letter", 28 | "CL": "US-Letter", 29 | "CO": "US-Letter", 30 | "CR": "US-Letter", 31 | "GT": "US-Letter", 32 | "MX": "US-Letter", 33 | "NI": "US-Letter", 34 | "PA": "US-Letter", 35 | "PH": "US-Letter", 36 | "PR": "US-Letter", 37 | "SV": "US-Letter", 38 | "US": "US-Letter", 39 | "VE": "US-Letter" 40 | } 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /supplemental/gender.json: -------------------------------------------------------------------------------- 1 | { 2 | "supplemental": { 3 | "version": { 4 | "_unicodeVersion": "13.0.0", 5 | "_cldrVersion": "37" 6 | }, 7 | "gender": { 8 | "personList": { 9 | "ar": "maleTaints", 10 | "ca": "maleTaints", 11 | "cs": "maleTaints", 12 | "es": "maleTaints", 13 | "fr": "maleTaints", 14 | "he": "maleTaints", 15 | "hi": "maleTaints", 16 | "hr": "maleTaints", 17 | "it": "maleTaints", 18 | "lt": "maleTaints", 19 | "lv": "maleTaints", 20 | "mr": "maleTaints", 21 | "nl": "maleTaints", 22 | "pl": "maleTaints", 23 | "pt": "maleTaints", 24 | "ro": "maleTaints", 25 | "ru": "maleTaints", 26 | "sk": "maleTaints", 27 | "sl": "maleTaints", 28 | "sr": "maleTaints", 29 | "uk": "maleTaints", 30 | "ur": "maleTaints", 31 | "zh": "maleTaints", 32 | "zh-Hant": "maleTaints", 33 | "el": "mixedNeutral", 34 | "is": "mixedNeutral", 35 | "af": "neutral", 36 | "bg": "neutral", 37 | "bn": "neutral", 38 | "da": "neutral", 39 | "de": "neutral", 40 | "en": "neutral", 41 | "et": "neutral", 42 | "eu": "neutral", 43 | "fa": "neutral", 44 | "fi": "neutral", 45 | "fil": "neutral", 46 | "gu": "neutral", 47 | "hu": "neutral", 48 | "id": "neutral", 49 | "ja": "neutral", 50 | "kn": "neutral", 51 | "ko": "neutral", 52 | "ml": "neutral", 53 | "ms": "neutral", 54 | "no": "neutral", 55 | "sv": "neutral", 56 | "sw": "neutral", 57 | "ta": "neutral", 58 | "te": "neutral", 59 | "th": "neutral", 60 | "tr": "neutral", 61 | "vi": "neutral", 62 | "zu": "neutral" 63 | } 64 | } 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /supplemental/calendarPreferenceData.json: -------------------------------------------------------------------------------- 1 | { 2 | "supplemental": { 3 | "version": { 4 | "_unicodeVersion": "13.0.0", 5 | "_cldrVersion": "37" 6 | }, 7 | "calendarPreferenceData": { 8 | "001": "gregorian", 9 | "AE": "gregorian islamic-umalqura islamic islamic-civil islamic-tbla", 10 | "AF": "persian gregorian islamic islamic-civil islamic-tbla", 11 | "BH": "gregorian islamic-umalqura islamic islamic-civil islamic-tbla", 12 | "CN": "gregorian chinese", 13 | "CX": "gregorian chinese", 14 | "DJ": "gregorian islamic islamic-civil islamic-tbla", 15 | "DZ": "gregorian islamic islamic-civil islamic-tbla", 16 | "EG": "gregorian coptic islamic islamic-civil islamic-tbla", 17 | "EH": "gregorian islamic islamic-civil islamic-tbla", 18 | "ER": "gregorian islamic islamic-civil islamic-tbla", 19 | "ET": "gregorian ethiopic", 20 | "HK": "gregorian chinese", 21 | "IL": "gregorian hebrew islamic islamic-civil islamic-tbla", 22 | "IN": "gregorian indian", 23 | "IQ": "gregorian islamic islamic-civil islamic-tbla", 24 | "IR": "persian gregorian islamic islamic-civil islamic-tbla", 25 | "JO": "gregorian islamic islamic-civil islamic-tbla", 26 | "JP": "gregorian japanese", 27 | "KM": "gregorian islamic islamic-civil islamic-tbla", 28 | "KR": "gregorian dangi", 29 | "KW": "gregorian islamic-umalqura islamic islamic-civil islamic-tbla", 30 | "LB": "gregorian islamic islamic-civil islamic-tbla", 31 | "LY": "gregorian islamic islamic-civil islamic-tbla", 32 | "MA": "gregorian islamic islamic-civil islamic-tbla", 33 | "MO": "gregorian chinese", 34 | "MR": "gregorian islamic islamic-civil islamic-tbla", 35 | "OM": "gregorian islamic islamic-civil islamic-tbla", 36 | "PS": "gregorian islamic islamic-civil islamic-tbla", 37 | "QA": "gregorian islamic-umalqura islamic islamic-civil islamic-tbla", 38 | "SA": "islamic-umalqura gregorian islamic islamic-rgsa", 39 | "SD": "gregorian islamic islamic-civil islamic-tbla", 40 | "SG": "gregorian chinese", 41 | "SY": "gregorian islamic islamic-civil islamic-tbla", 42 | "TD": "gregorian islamic islamic-civil islamic-tbla", 43 | "TH": "buddhist gregorian", 44 | "TN": "gregorian islamic islamic-civil islamic-tbla", 45 | "TW": "gregorian roc chinese", 46 | "YE": "gregorian islamic islamic-civil islamic-tbla" 47 | } 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE 2 | 3 | Unicode Data Files include all data files under the directories 4 | http://www.unicode.org/Public/, http://www.unicode.org/reports/, and 5 | http://www.unicode.org/cldr/data/. Unicode Data Files do not include PDF 6 | online code charts under the directory http://www.unicode.org/Public/. 7 | Software includes any source code published in the Unicode Standard or under 8 | the directories http://www.unicode.org/Public/, 9 | http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/. 10 | 11 | NOTICE TO USER: Carefully read the following legal agreement. BY 12 | DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES 13 | ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND 14 | AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF 15 | YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA 16 | FILES OR SOFTWARE. 17 | 18 | COPYRIGHT AND PERMISSION NOTICE 19 | 20 | Copyright © 1991-2015 Unicode, Inc. All rights reserved. Distributed under 21 | the Terms of Use in http://www.unicode.org/copyright.html. 22 | 23 | Permission is hereby granted, free of charge, to any person obtaining a 24 | copy of the Unicode data files and any associated documentation (the "Data 25 | Files") or Unicode software and any associated documentation (the "Software") 26 | to deal in the Data Files or Software without restriction, including without 27 | limitation the rights to use, copy, modify, merge, publish, distribute, and/or 28 | sell copies of the Data Files or Software, and to permit persons to whom the 29 | Data Files or Software are furnished to do so, provided that (a) the above 30 | copyright notice(s) and this permission notice appear with all copies of the 31 | Data Files or Software, (b) both the above copyright notice(s) and this 32 | permission notice appear in associated documentation, and (c) there is clear 33 | notice in each modified Data File or in the Software as well as in the 34 | documentation associated with the Data File(s) or Software that the data or 35 | software has been modified. 36 | 37 | THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY 38 | KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 39 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD 40 | PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN 41 | THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL 42 | DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR 43 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS 44 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE 45 | DATA FILES OR SOFTWARE. 46 | 47 | Except as contained in this notice, the name of a copyright holder shall 48 | not be used in advertising or otherwise to promote the sale, use or other 49 | dealings in these Data Files or Software without prior written authorization 50 | of the copyright holder. 51 | 52 | -------------------------------------------------------------------------------- /defaultContent.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultContent": [ 3 | "af-ZA", 4 | "agq-CM", 5 | "ak-GH", 6 | "am-ET", 7 | "ar-001", 8 | "as-IN", 9 | "asa-TZ", 10 | "ast-ES", 11 | "az-Cyrl-AZ", 12 | "az-Latn-AZ", 13 | "bas-CM", 14 | "be-BY", 15 | "bem-ZM", 16 | "bez-TZ", 17 | "bg-BG", 18 | "bm-ML", 19 | "bn-BD", 20 | "bo-CN", 21 | "br-FR", 22 | "brx-IN", 23 | "bs-Cyrl-BA", 24 | "bs-Latn-BA", 25 | "ca-ES", 26 | "ccp-BD", 27 | "ce-RU", 28 | "ceb-PH", 29 | "cgg-UG", 30 | "chr-US", 31 | "ckb-IQ", 32 | "cs-CZ", 33 | "cu-RU", 34 | "cy-GB", 35 | "da-DK", 36 | "dav-KE", 37 | "de-DE", 38 | "dje-NE", 39 | "dsb-DE", 40 | "dua-CM", 41 | "dyo-SN", 42 | "dz-BT", 43 | "ebu-KE", 44 | "ee-GH", 45 | "el-GR", 46 | "en-US", 47 | "eo-001", 48 | "es-ES", 49 | "et-EE", 50 | "eu-ES", 51 | "ewo-CM", 52 | "fa-IR", 53 | "ff-Adlm-GN", 54 | "ff-Latn-SN", 55 | "fi-FI", 56 | "fil-PH", 57 | "fo-FO", 58 | "fr-FR", 59 | "fur-IT", 60 | "fy-NL", 61 | "ga-IE", 62 | "gd-GB", 63 | "gl-ES", 64 | "gsw-CH", 65 | "gu-IN", 66 | "guz-KE", 67 | "gv-IM", 68 | "ha-NG", 69 | "haw-US", 70 | "he-IL", 71 | "hi-IN", 72 | "hr-HR", 73 | "hsb-DE", 74 | "hu-HU", 75 | "hy-AM", 76 | "ia-001", 77 | "id-ID", 78 | "ig-NG", 79 | "ii-CN", 80 | "is-IS", 81 | "it-IT", 82 | "ja-JP", 83 | "jgo-CM", 84 | "jmc-TZ", 85 | "jv-ID", 86 | "ka-GE", 87 | "kab-DZ", 88 | "kam-KE", 89 | "kde-TZ", 90 | "kea-CV", 91 | "khq-ML", 92 | "ki-KE", 93 | "kk-KZ", 94 | "kkj-CM", 95 | "kl-GL", 96 | "kln-KE", 97 | "km-KH", 98 | "kn-IN", 99 | "ko-KR", 100 | "kok-IN", 101 | "ks-Arab-IN", 102 | "ksb-TZ", 103 | "ksf-CM", 104 | "ksh-DE", 105 | "ku-TR", 106 | "kw-GB", 107 | "ky-KG", 108 | "lag-TZ", 109 | "lb-LU", 110 | "lg-UG", 111 | "lkt-US", 112 | "ln-CD", 113 | "lo-LA", 114 | "lrc-IR", 115 | "lt-LT", 116 | "lu-CD", 117 | "luo-KE", 118 | "luy-KE", 119 | "lv-LV", 120 | "mai-IN", 121 | "mas-KE", 122 | "mer-KE", 123 | "mfe-MU", 124 | "mg-MG", 125 | "mgh-MZ", 126 | "mgo-CM", 127 | "mi-NZ", 128 | "mk-MK", 129 | "ml-IN", 130 | "mn-MN", 131 | "mni-Beng-IN", 132 | "mr-IN", 133 | "ms-MY", 134 | "mt-MT", 135 | "mua-CM", 136 | "my-MM", 137 | "mzn-IR", 138 | "naq-NA", 139 | "nb-NO", 140 | "nd-ZW", 141 | "nds-DE", 142 | "ne-NP", 143 | "nl-NL", 144 | "nmg-CM", 145 | "nn-NO", 146 | "nnh-CM", 147 | "nus-SS", 148 | "nyn-UG", 149 | "om-ET", 150 | "or-IN", 151 | "os-GE", 152 | "pa-Arab-PK", 153 | "pa-Guru-IN", 154 | "pcm-NG", 155 | "pl-PL", 156 | "prg-001", 157 | "ps-AF", 158 | "pt-BR", 159 | "qu-PE", 160 | "rm-CH", 161 | "rn-BI", 162 | "ro-RO", 163 | "rof-TZ", 164 | "ru-RU", 165 | "rw-RW", 166 | "rwk-TZ", 167 | "sah-RU", 168 | "saq-KE", 169 | "sat-Olck-IN", 170 | "sbp-TZ", 171 | "sd-Arab-PK", 172 | "sd-Deva-IN", 173 | "se-NO", 174 | "seh-MZ", 175 | "ses-ML", 176 | "sg-CF", 177 | "shi-Latn-MA", 178 | "shi-Tfng-MA", 179 | "si-LK", 180 | "sk-SK", 181 | "sl-SI", 182 | "smn-FI", 183 | "sn-ZW", 184 | "so-SO", 185 | "sq-AL", 186 | "sr-Cyrl-RS", 187 | "sr-Latn-RS", 188 | "su-Latn-ID", 189 | "sv-SE", 190 | "sw-TZ", 191 | "ta-IN", 192 | "te-IN", 193 | "teo-UG", 194 | "tg-TJ", 195 | "th-TH", 196 | "ti-ET", 197 | "tk-TM", 198 | "to-TO", 199 | "tr-TR", 200 | "tt-RU", 201 | "twq-NE", 202 | "tzm-MA", 203 | "ug-CN", 204 | "uk-UA", 205 | "ur-PK", 206 | "uz-Arab-AF", 207 | "uz-Cyrl-UZ", 208 | "uz-Latn-UZ", 209 | "vai-Latn-LR", 210 | "vai-Vaii-LR", 211 | "vi-VN", 212 | "vo-001", 213 | "vun-TZ", 214 | "wae-CH", 215 | "wo-SN", 216 | "xh-ZA", 217 | "xog-UG", 218 | "yav-CM", 219 | "yi-001", 220 | "yo-NG", 221 | "yue-Hans-CN", 222 | "yue-Hant-HK", 223 | "zgh-MA", 224 | "zh-Hans-CN", 225 | "zh-Hant-TW", 226 | "zu-ZA" 227 | ] 228 | } 229 | -------------------------------------------------------------------------------- /supplemental/parentLocales.json: -------------------------------------------------------------------------------- 1 | { 2 | "supplemental": { 3 | "version": { 4 | "_unicodeVersion": "13.0.0", 5 | "_cldrVersion": "37" 6 | }, 7 | "parentLocales": { 8 | "parentLocale": { 9 | "en-150": "en-001", 10 | "en-AG": "en-001", 11 | "en-AI": "en-001", 12 | "en-AU": "en-001", 13 | "en-BB": "en-001", 14 | "en-BM": "en-001", 15 | "en-BS": "en-001", 16 | "en-BW": "en-001", 17 | "en-BZ": "en-001", 18 | "en-CA": "en-001", 19 | "en-CC": "en-001", 20 | "en-CK": "en-001", 21 | "en-CM": "en-001", 22 | "en-CX": "en-001", 23 | "en-CY": "en-001", 24 | "en-DG": "en-001", 25 | "en-DM": "en-001", 26 | "en-ER": "en-001", 27 | "en-FJ": "en-001", 28 | "en-FK": "en-001", 29 | "en-FM": "en-001", 30 | "en-GB": "en-001", 31 | "en-GD": "en-001", 32 | "en-GG": "en-001", 33 | "en-GH": "en-001", 34 | "en-GI": "en-001", 35 | "en-GM": "en-001", 36 | "en-GY": "en-001", 37 | "en-HK": "en-001", 38 | "en-IE": "en-001", 39 | "en-IL": "en-001", 40 | "en-IM": "en-001", 41 | "en-IN": "en-001", 42 | "en-IO": "en-001", 43 | "en-JE": "en-001", 44 | "en-JM": "en-001", 45 | "en-KE": "en-001", 46 | "en-KI": "en-001", 47 | "en-KN": "en-001", 48 | "en-KY": "en-001", 49 | "en-LC": "en-001", 50 | "en-LR": "en-001", 51 | "en-LS": "en-001", 52 | "en-MG": "en-001", 53 | "en-MO": "en-001", 54 | "en-MS": "en-001", 55 | "en-MT": "en-001", 56 | "en-MU": "en-001", 57 | "en-MW": "en-001", 58 | "en-MY": "en-001", 59 | "en-NA": "en-001", 60 | "en-NF": "en-001", 61 | "en-NG": "en-001", 62 | "en-NR": "en-001", 63 | "en-NU": "en-001", 64 | "en-NZ": "en-001", 65 | "en-PG": "en-001", 66 | "en-PH": "en-001", 67 | "en-PK": "en-001", 68 | "en-PN": "en-001", 69 | "en-PW": "en-001", 70 | "en-RW": "en-001", 71 | "en-SB": "en-001", 72 | "en-SC": "en-001", 73 | "en-SD": "en-001", 74 | "en-SG": "en-001", 75 | "en-SH": "en-001", 76 | "en-SL": "en-001", 77 | "en-SS": "en-001", 78 | "en-SX": "en-001", 79 | "en-SZ": "en-001", 80 | "en-TC": "en-001", 81 | "en-TK": "en-001", 82 | "en-TO": "en-001", 83 | "en-TT": "en-001", 84 | "en-TV": "en-001", 85 | "en-TZ": "en-001", 86 | "en-UG": "en-001", 87 | "en-VC": "en-001", 88 | "en-VG": "en-001", 89 | "en-VU": "en-001", 90 | "en-WS": "en-001", 91 | "en-ZA": "en-001", 92 | "en-ZM": "en-001", 93 | "en-ZW": "en-001", 94 | "en-AT": "en-150", 95 | "en-BE": "en-150", 96 | "en-CH": "en-150", 97 | "en-DE": "en-150", 98 | "en-DK": "en-150", 99 | "en-FI": "en-150", 100 | "en-NL": "en-150", 101 | "en-SE": "en-150", 102 | "en-SI": "en-150", 103 | "es-AR": "es-419", 104 | "es-BO": "es-419", 105 | "es-BR": "es-419", 106 | "es-BZ": "es-419", 107 | "es-CL": "es-419", 108 | "es-CO": "es-419", 109 | "es-CR": "es-419", 110 | "es-CU": "es-419", 111 | "es-DO": "es-419", 112 | "es-EC": "es-419", 113 | "es-GT": "es-419", 114 | "es-HN": "es-419", 115 | "es-MX": "es-419", 116 | "es-NI": "es-419", 117 | "es-PA": "es-419", 118 | "es-PE": "es-419", 119 | "es-PR": "es-419", 120 | "es-PY": "es-419", 121 | "es-SV": "es-419", 122 | "es-US": "es-419", 123 | "es-UY": "es-419", 124 | "es-VE": "es-419", 125 | "pt-AO": "pt-PT", 126 | "pt-CH": "pt-PT", 127 | "pt-CV": "pt-PT", 128 | "pt-FR": "pt-PT", 129 | "pt-GQ": "pt-PT", 130 | "pt-GW": "pt-PT", 131 | "pt-LU": "pt-PT", 132 | "pt-MO": "pt-PT", 133 | "pt-MZ": "pt-PT", 134 | "pt-ST": "pt-PT", 135 | "pt-TL": "pt-PT", 136 | "az-Arab": "root", 137 | "az-Cyrl": "root", 138 | "blt-Latn": "root", 139 | "bm-Nkoo": "root", 140 | "bs-Cyrl": "root", 141 | "byn-Latn": "root", 142 | "cu-Glag": "root", 143 | "dje-Arab": "root", 144 | "dyo-Arab": "root", 145 | "en-Dsrt": "root", 146 | "en-Shaw": "root", 147 | "ff-Adlm": "root", 148 | "ff-Arab": "root", 149 | "ha-Arab": "root", 150 | "hi-Latn": "root", 151 | "iu-Latn": "root", 152 | "kk-Arab": "root", 153 | "ks-Deva": "root", 154 | "ku-Arab": "root", 155 | "ky-Arab": "root", 156 | "ky-Latn": "root", 157 | "ml-Arab": "root", 158 | "mn-Mong": "root", 159 | "mni-Mtei": "root", 160 | "ms-Arab": "root", 161 | "pa-Arab": "root", 162 | "sat-Deva": "root", 163 | "sd-Deva": "root", 164 | "sd-Khoj": "root", 165 | "sd-Sind": "root", 166 | "shi-Latn": "root", 167 | "so-Arab": "root", 168 | "sr-Latn": "root", 169 | "sw-Arab": "root", 170 | "tg-Arab": "root", 171 | "ug-Cyrl": "root", 172 | "uz-Arab": "root", 173 | "uz-Cyrl": "root", 174 | "vai-Latn": "root", 175 | "wo-Arab": "root", 176 | "yo-Arab": "root", 177 | "yue-Hans": "root", 178 | "zh-Hant": "root", 179 | "zh-Hant-MO": "zh-Hant-HK" 180 | } 181 | } 182 | } 183 | } 184 | -------------------------------------------------------------------------------- /supplemental/weekData.json: -------------------------------------------------------------------------------- 1 | { 2 | "supplemental": { 3 | "version": { 4 | "_unicodeVersion": "13.0.0", 5 | "_cldrVersion": "37" 6 | }, 7 | "weekData": { 8 | "minDays": { 9 | "001": "1", 10 | "AD": "4", 11 | "AN": "4", 12 | "AT": "4", 13 | "AX": "4", 14 | "BE": "4", 15 | "BG": "4", 16 | "CH": "4", 17 | "CZ": "4", 18 | "DE": "4", 19 | "DK": "4", 20 | "EE": "4", 21 | "ES": "4", 22 | "FI": "4", 23 | "FJ": "4", 24 | "FO": "4", 25 | "FR": "4", 26 | "GB": "4", 27 | "GF": "4", 28 | "GG": "4", 29 | "GI": "4", 30 | "GP": "4", 31 | "GR": "4", 32 | "GU": "1", 33 | "HU": "4", 34 | "IE": "4", 35 | "IM": "4", 36 | "IS": "4", 37 | "IT": "4", 38 | "JE": "4", 39 | "LI": "4", 40 | "LT": "4", 41 | "LU": "4", 42 | "MC": "4", 43 | "MQ": "4", 44 | "NL": "4", 45 | "NO": "4", 46 | "PL": "4", 47 | "PT": "4", 48 | "RE": "4", 49 | "RU": "4", 50 | "SE": "4", 51 | "SJ": "4", 52 | "SK": "4", 53 | "SM": "4", 54 | "UM": "1", 55 | "US": "1", 56 | "VA": "4", 57 | "VI": "1" 58 | }, 59 | "firstDay": { 60 | "001": "mon", 61 | "AD": "mon", 62 | "AE": "sat", 63 | "AF": "sat", 64 | "AG": "sun", 65 | "AI": "mon", 66 | "AL": "mon", 67 | "AM": "mon", 68 | "AN": "mon", 69 | "AR": "mon", 70 | "AS": "sun", 71 | "AT": "mon", 72 | "AU": "sun", 73 | "AX": "mon", 74 | "AZ": "mon", 75 | "BA": "mon", 76 | "BD": "sun", 77 | "BE": "mon", 78 | "BG": "mon", 79 | "BH": "sat", 80 | "BM": "mon", 81 | "BN": "mon", 82 | "BR": "sun", 83 | "BS": "sun", 84 | "BT": "sun", 85 | "BW": "sun", 86 | "BY": "mon", 87 | "BZ": "sun", 88 | "CA": "sun", 89 | "CH": "mon", 90 | "CL": "mon", 91 | "CM": "mon", 92 | "CN": "sun", 93 | "CO": "sun", 94 | "CR": "mon", 95 | "CY": "mon", 96 | "CZ": "mon", 97 | "DE": "mon", 98 | "DJ": "sat", 99 | "DK": "mon", 100 | "DM": "sun", 101 | "DO": "sun", 102 | "DZ": "sat", 103 | "EC": "mon", 104 | "EE": "mon", 105 | "EG": "sat", 106 | "ES": "mon", 107 | "ET": "sun", 108 | "FI": "mon", 109 | "FJ": "mon", 110 | "FO": "mon", 111 | "FR": "mon", 112 | "GB": "mon", 113 | "GB-alt-variant": "sun", 114 | "GE": "mon", 115 | "GF": "mon", 116 | "GP": "mon", 117 | "GR": "mon", 118 | "GT": "sun", 119 | "GU": "sun", 120 | "HK": "sun", 121 | "HN": "sun", 122 | "HR": "mon", 123 | "HU": "mon", 124 | "ID": "sun", 125 | "IE": "mon", 126 | "IL": "sun", 127 | "IN": "sun", 128 | "IQ": "sat", 129 | "IR": "sat", 130 | "IS": "mon", 131 | "IT": "mon", 132 | "JM": "sun", 133 | "JO": "sat", 134 | "JP": "sun", 135 | "KE": "sun", 136 | "KG": "mon", 137 | "KH": "sun", 138 | "KR": "sun", 139 | "KW": "sat", 140 | "KZ": "mon", 141 | "LA": "sun", 142 | "LB": "mon", 143 | "LI": "mon", 144 | "LK": "mon", 145 | "LT": "mon", 146 | "LU": "mon", 147 | "LV": "mon", 148 | "LY": "sat", 149 | "MC": "mon", 150 | "MD": "mon", 151 | "ME": "mon", 152 | "MH": "sun", 153 | "MK": "mon", 154 | "MM": "sun", 155 | "MN": "mon", 156 | "MO": "sun", 157 | "MQ": "mon", 158 | "MT": "sun", 159 | "MV": "fri", 160 | "MX": "sun", 161 | "MY": "mon", 162 | "MZ": "sun", 163 | "NI": "sun", 164 | "NL": "mon", 165 | "NO": "mon", 166 | "NP": "sun", 167 | "NZ": "mon", 168 | "OM": "sat", 169 | "PA": "sun", 170 | "PE": "sun", 171 | "PH": "sun", 172 | "PK": "sun", 173 | "PL": "mon", 174 | "PR": "sun", 175 | "PT": "sun", 176 | "PY": "sun", 177 | "QA": "sat", 178 | "RE": "mon", 179 | "RO": "mon", 180 | "RS": "mon", 181 | "RU": "mon", 182 | "SA": "sun", 183 | "SD": "sat", 184 | "SE": "mon", 185 | "SG": "sun", 186 | "SI": "mon", 187 | "SK": "mon", 188 | "SM": "mon", 189 | "SV": "sun", 190 | "SY": "sat", 191 | "TH": "sun", 192 | "TJ": "mon", 193 | "TM": "mon", 194 | "TR": "mon", 195 | "TT": "sun", 196 | "TW": "sun", 197 | "UA": "mon", 198 | "UM": "sun", 199 | "US": "sun", 200 | "UY": "mon", 201 | "UZ": "mon", 202 | "VA": "mon", 203 | "VE": "sun", 204 | "VI": "sun", 205 | "VN": "mon", 206 | "WS": "sun", 207 | "XK": "mon", 208 | "YE": "sun", 209 | "ZA": "sun", 210 | "ZW": "sun" 211 | }, 212 | "weekendStart": { 213 | "001": "sat", 214 | "AE": "fri", 215 | "AF": "thu", 216 | "BH": "fri", 217 | "DZ": "fri", 218 | "EG": "fri", 219 | "IL": "fri", 220 | "IN": "sun", 221 | "IQ": "fri", 222 | "IR": "fri", 223 | "JO": "fri", 224 | "KW": "fri", 225 | "LY": "fri", 226 | "OM": "fri", 227 | "QA": "fri", 228 | "SA": "fri", 229 | "SD": "fri", 230 | "SY": "fri", 231 | "UG": "sun", 232 | "YE": "fri" 233 | }, 234 | "weekendEnd": { 235 | "001": "sun", 236 | "AE": "sat", 237 | "AF": "fri", 238 | "BH": "sat", 239 | "DZ": "sat", 240 | "EG": "sat", 241 | "IL": "sat", 242 | "IQ": "sat", 243 | "IR": "fri", 244 | "JO": "sat", 245 | "KW": "sat", 246 | "LY": "sat", 247 | "OM": "sat", 248 | "QA": "sat", 249 | "SA": "sat", 250 | "SD": "sat", 251 | "SY": "sat", 252 | "YE": "sat" 253 | }, 254 | "af": { 255 | "_ordering": "weekOfDate weekOfInterval weekOfMonth" 256 | }, 257 | "am az bs cs cy da el et hi ky lt mk sk ta th": { 258 | "_ordering": "weekOfYear weekOfMonth" 259 | }, 260 | "ar fil gu hu hy id kk ko": { 261 | "_ordering": "weekOfMonth" 262 | }, 263 | "be ro ru": { 264 | "_ordering": "weekOfInterval weekOfMonth" 265 | }, 266 | "bg de iw pt ur zh": { 267 | "_ordering": "weekOfDate weekOfMonth weekOfInterval" 268 | }, 269 | "ca es fr gl": { 270 | "_ordering": "weekOfDate" 271 | }, 272 | "en bn ja ka": { 273 | "_ordering": "weekOfDate weekOfMonth" 274 | }, 275 | "eu": { 276 | "_ordering": "weekOfMonth weekOfDate" 277 | }, 278 | "fa hr it lv pl si sr uk uz": { 279 | "_ordering": "weekOfMonth weekOfInterval" 280 | }, 281 | "fi zh-TW": { 282 | "_ordering": "weekOfYear weekOfDate weekOfMonth" 283 | }, 284 | "is mn no sv vi": { 285 | "_ordering": "weekOfYear weekOfMonth weekOfInterval" 286 | }, 287 | "km mr": { 288 | "_ordering": "weekOfMonth weekOfYear" 289 | }, 290 | "kn ml pa": { 291 | "_ordering": "weekOfMonth weekOfDate weekOfYear" 292 | }, 293 | "lo sq": { 294 | "_ordering": "weekOfMonth weekOfInterval weekOfDate weekOfYear" 295 | }, 296 | "ms tr": { 297 | "_ordering": "weekOfMonth weekOfYear weekOfInterval weekOfDate" 298 | }, 299 | "nl": { 300 | "_ordering": "weekOfDate weekOfYear weekOfMonth" 301 | }, 302 | "sl": { 303 | "_ordering": "weekOfInterval" 304 | }, 305 | "sw te": { 306 | "_ordering": "weekOfMonth weekOfInterval weekOfYear" 307 | }, 308 | "und": { 309 | "_ordering": "weekOfYear" 310 | }, 311 | "zu": { 312 | "_ordering": "weekOfYear weekOfInterval" 313 | } 314 | } 315 | } 316 | } 317 | -------------------------------------------------------------------------------- /supplemental/numberingSystems.json: -------------------------------------------------------------------------------- 1 | { 2 | "supplemental": { 3 | "version": { 4 | "_unicodeVersion": "13.0.0", 5 | "_cldrVersion": "37" 6 | }, 7 | "numberingSystems": { 8 | "adlm": { 9 | "_digits": "𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙", 10 | "_type": "numeric" 11 | }, 12 | "ahom": { 13 | "_digits": "𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹", 14 | "_type": "numeric" 15 | }, 16 | "arab": { 17 | "_digits": "٠١٢٣٤٥٦٧٨٩", 18 | "_type": "numeric" 19 | }, 20 | "arabext": { 21 | "_digits": "۰۱۲۳۴۵۶۷۸۹", 22 | "_type": "numeric" 23 | }, 24 | "armn": { 25 | "_rules": "armenian-upper", 26 | "_type": "algorithmic" 27 | }, 28 | "armnlow": { 29 | "_rules": "armenian-lower", 30 | "_type": "algorithmic" 31 | }, 32 | "bali": { 33 | "_digits": "᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙", 34 | "_type": "numeric" 35 | }, 36 | "beng": { 37 | "_digits": "০১২৩৪৫৬৭৮৯", 38 | "_type": "numeric" 39 | }, 40 | "bhks": { 41 | "_digits": "𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙", 42 | "_type": "numeric" 43 | }, 44 | "brah": { 45 | "_digits": "𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯", 46 | "_type": "numeric" 47 | }, 48 | "cakm": { 49 | "_digits": "𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿", 50 | "_type": "numeric" 51 | }, 52 | "cham": { 53 | "_digits": "꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙", 54 | "_type": "numeric" 55 | }, 56 | "cyrl": { 57 | "_rules": "cyrillic-lower", 58 | "_type": "algorithmic" 59 | }, 60 | "deva": { 61 | "_digits": "०१२३४५६७८९", 62 | "_type": "numeric" 63 | }, 64 | "diak": { 65 | "_digits": "𑥐𑥑𑥒𑥓𑥔𑥕𑥖𑥗𑥘𑥙", 66 | "_type": "numeric" 67 | }, 68 | "ethi": { 69 | "_rules": "ethiopic", 70 | "_type": "algorithmic" 71 | }, 72 | "fullwide": { 73 | "_digits": "0123456789", 74 | "_type": "numeric" 75 | }, 76 | "geor": { 77 | "_rules": "georgian", 78 | "_type": "algorithmic" 79 | }, 80 | "gong": { 81 | "_digits": "𑶠𑶡𑶢𑶣𑶤𑶥𑶦𑶧𑶨𑶩", 82 | "_type": "numeric" 83 | }, 84 | "gonm": { 85 | "_digits": "𑵐𑵑𑵒𑵓𑵔𑵕𑵖𑵗𑵘𑵙", 86 | "_type": "numeric" 87 | }, 88 | "grek": { 89 | "_rules": "greek-upper", 90 | "_type": "algorithmic" 91 | }, 92 | "greklow": { 93 | "_rules": "greek-lower", 94 | "_type": "algorithmic" 95 | }, 96 | "gujr": { 97 | "_digits": "૦૧૨૩૪૫૬૭૮૯", 98 | "_type": "numeric" 99 | }, 100 | "guru": { 101 | "_digits": "੦੧੨੩੪੫੬੭੮੯", 102 | "_type": "numeric" 103 | }, 104 | "hanidays": { 105 | "_rules": "zh/SpelloutRules/spellout-numbering-days", 106 | "_type": "algorithmic" 107 | }, 108 | "hanidec": { 109 | "_digits": "〇一二三四五六七八九", 110 | "_type": "numeric" 111 | }, 112 | "hans": { 113 | "_rules": "zh/SpelloutRules/spellout-cardinal", 114 | "_type": "algorithmic" 115 | }, 116 | "hansfin": { 117 | "_rules": "zh/SpelloutRules/spellout-cardinal-financial", 118 | "_type": "algorithmic" 119 | }, 120 | "hant": { 121 | "_rules": "zh_Hant/SpelloutRules/spellout-cardinal", 122 | "_type": "algorithmic" 123 | }, 124 | "hantfin": { 125 | "_rules": "zh_Hant/SpelloutRules/spellout-cardinal-financial", 126 | "_type": "algorithmic" 127 | }, 128 | "hebr": { 129 | "_rules": "hebrew", 130 | "_type": "algorithmic" 131 | }, 132 | "hmng": { 133 | "_digits": "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙", 134 | "_type": "numeric" 135 | }, 136 | "hmnp": { 137 | "_digits": "𞅀𞅁𞅂𞅃𞅄𞅅𞅆𞅇𞅈𞅉", 138 | "_type": "numeric" 139 | }, 140 | "java": { 141 | "_digits": "꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙", 142 | "_type": "numeric" 143 | }, 144 | "jpan": { 145 | "_rules": "ja/SpelloutRules/spellout-cardinal", 146 | "_type": "algorithmic" 147 | }, 148 | "jpanfin": { 149 | "_rules": "ja/SpelloutRules/spellout-cardinal-financial", 150 | "_type": "algorithmic" 151 | }, 152 | "jpanyear": { 153 | "_rules": "ja/SpelloutRules/spellout-numbering-year-latn", 154 | "_type": "algorithmic" 155 | }, 156 | "kali": { 157 | "_digits": "꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉", 158 | "_type": "numeric" 159 | }, 160 | "khmr": { 161 | "_digits": "០១២៣៤៥៦៧៨៩", 162 | "_type": "numeric" 163 | }, 164 | "knda": { 165 | "_digits": "೦೧೨೩೪೫೬೭೮೯", 166 | "_type": "numeric" 167 | }, 168 | "lana": { 169 | "_digits": "᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉", 170 | "_type": "numeric" 171 | }, 172 | "lanatham": { 173 | "_digits": "᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙", 174 | "_type": "numeric" 175 | }, 176 | "laoo": { 177 | "_digits": "໐໑໒໓໔໕໖໗໘໙", 178 | "_type": "numeric" 179 | }, 180 | "latn": { 181 | "_digits": "0123456789", 182 | "_type": "numeric" 183 | }, 184 | "lepc": { 185 | "_digits": "᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉", 186 | "_type": "numeric" 187 | }, 188 | "limb": { 189 | "_digits": "᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏", 190 | "_type": "numeric" 191 | }, 192 | "mathbold": { 193 | "_digits": "𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗", 194 | "_type": "numeric" 195 | }, 196 | "mathdbl": { 197 | "_digits": "𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡", 198 | "_type": "numeric" 199 | }, 200 | "mathmono": { 201 | "_digits": "𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿", 202 | "_type": "numeric" 203 | }, 204 | "mathsanb": { 205 | "_digits": "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵", 206 | "_type": "numeric" 207 | }, 208 | "mathsans": { 209 | "_digits": "𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫", 210 | "_type": "numeric" 211 | }, 212 | "mlym": { 213 | "_digits": "൦൧൨൩൪൫൬൭൮൯", 214 | "_type": "numeric" 215 | }, 216 | "modi": { 217 | "_digits": "𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙", 218 | "_type": "numeric" 219 | }, 220 | "mong": { 221 | "_digits": "᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙", 222 | "_type": "numeric" 223 | }, 224 | "mroo": { 225 | "_digits": "𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩", 226 | "_type": "numeric" 227 | }, 228 | "mtei": { 229 | "_digits": "꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹", 230 | "_type": "numeric" 231 | }, 232 | "mymr": { 233 | "_digits": "၀၁၂၃၄၅၆၇၈၉", 234 | "_type": "numeric" 235 | }, 236 | "mymrshan": { 237 | "_digits": "႐႑႒႓႔႕႖႗႘႙", 238 | "_type": "numeric" 239 | }, 240 | "mymrtlng": { 241 | "_digits": "꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹", 242 | "_type": "numeric" 243 | }, 244 | "newa": { 245 | "_digits": "𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙", 246 | "_type": "numeric" 247 | }, 248 | "nkoo": { 249 | "_digits": "߀߁߂߃߄߅߆߇߈߉", 250 | "_type": "numeric" 251 | }, 252 | "olck": { 253 | "_digits": "᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙", 254 | "_type": "numeric" 255 | }, 256 | "orya": { 257 | "_digits": "୦୧୨୩୪୫୬୭୮୯", 258 | "_type": "numeric" 259 | }, 260 | "osma": { 261 | "_digits": "𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩", 262 | "_type": "numeric" 263 | }, 264 | "rohg": { 265 | "_digits": "𐴰𐴱𐴲𐴳𐴴𐴵𐴶𐴷𐴸𐴹", 266 | "_type": "numeric" 267 | }, 268 | "roman": { 269 | "_rules": "roman-upper", 270 | "_type": "algorithmic" 271 | }, 272 | "romanlow": { 273 | "_rules": "roman-lower", 274 | "_type": "algorithmic" 275 | }, 276 | "saur": { 277 | "_digits": "꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙", 278 | "_type": "numeric" 279 | }, 280 | "segment": { 281 | "_digits": "🯰🯱🯲🯳🯴🯵🯶🯷🯸🯹", 282 | "_type": "numeric" 283 | }, 284 | "shrd": { 285 | "_digits": "𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙", 286 | "_type": "numeric" 287 | }, 288 | "sind": { 289 | "_digits": "𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹", 290 | "_type": "numeric" 291 | }, 292 | "sinh": { 293 | "_digits": "෦෧෨෩෪෫෬෭෮෯", 294 | "_type": "numeric" 295 | }, 296 | "sora": { 297 | "_digits": "𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹", 298 | "_type": "numeric" 299 | }, 300 | "sund": { 301 | "_digits": "᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹", 302 | "_type": "numeric" 303 | }, 304 | "takr": { 305 | "_digits": "𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉", 306 | "_type": "numeric" 307 | }, 308 | "talu": { 309 | "_digits": "᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙", 310 | "_type": "numeric" 311 | }, 312 | "taml": { 313 | "_rules": "tamil", 314 | "_type": "algorithmic" 315 | }, 316 | "tamldec": { 317 | "_digits": "௦௧௨௩௪௫௬௭௮௯", 318 | "_type": "numeric" 319 | }, 320 | "telu": { 321 | "_digits": "౦౧౨౩౪౫౬౭౮౯", 322 | "_type": "numeric" 323 | }, 324 | "thai": { 325 | "_digits": "๐๑๒๓๔๕๖๗๘๙", 326 | "_type": "numeric" 327 | }, 328 | "tibt": { 329 | "_digits": "༠༡༢༣༤༥༦༧༨༩", 330 | "_type": "numeric" 331 | }, 332 | "tirh": { 333 | "_digits": "𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙", 334 | "_type": "numeric" 335 | }, 336 | "vaii": { 337 | "_digits": "꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩", 338 | "_type": "numeric" 339 | }, 340 | "wara": { 341 | "_digits": "𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩", 342 | "_type": "numeric" 343 | }, 344 | "wcho": { 345 | "_digits": "𞋰𞋱𞋲𞋳𞋴𞋵𞋶𞋷𞋸𞋹", 346 | "_type": "numeric" 347 | } 348 | } 349 | } 350 | } 351 | -------------------------------------------------------------------------------- /supplemental/languageGroups.json: -------------------------------------------------------------------------------- 1 | { 2 | "supplemental": { 3 | "version": { 4 | "_unicodeVersion": "13.0.0", 5 | "_cldrVersion": "37" 6 | }, 7 | "languageGroups": { 8 | "aav": "irr kdt mkh mun nyl sss tth", 9 | "afa": "ber bxe cdc cop cus egy omv sem zwa", 10 | "alg": "alq arp atj ats bla chy ciw cr del kic mez mia mic mjy moe nnt oj ojs ojw otw pim pot qyp sac sjw unm wam xlb xlo xnt xpq", 11 | "alv": "aba abi abr abu ada adj agq ajg ak anw ati avi ayb azo bad bai bax bba bce bci bda beh bfd bfl bgj bim bin bju bkc bkm blo bmq bnt bqj bsc cae cou cwt dag dai dop dur dyo ebr ee efi fap ff fod fon gaa gba gej gjn gkn goy gur gux ig ijo jab kbp kcj kdh keu kia kma knf kqs kro krx kss kzc kzr ldm lee lmp lob mdd mfq mfv mgo mlo mnh mor mos mql mua myk mzm mzv mzw naj ndv nfr nga ngb nie nku ntm nza nzi ogc oku otr ozm pbo pbp pil pny pug sav sev shz snf soy spp srr tbz tem tfi tik tiv tkq tnr tui tuz urh wci wo wwa xsm xwe yav yky yo", 12 | "apa": "apj apk apl apw nv", 13 | "aqa": "alc", 14 | "aql": "alg wiy yur", 15 | "art": "afh avk bzt dws eo ia ie igs io jbo ldn lfn neu nov qya rmv sjn tlh tzl vo zbl", 16 | "ath": "aht apa bcr bea caf chp clc crx den dgr gwi haa hup ing kkz koy kuu srs tau tcb tgx tht tol", 17 | "auf": "aru cul dny pad swx", 18 | "aus": "bck dbl ddj gbu gni kdd kjn kld mep nha nuy piu pkn vma vmb wbp wmt xbp xrg yii yij", 19 | "awd": "aca ame apu bae brg ccc cui gob guc guh guo ign inp kpc mbn not pbg pib pio plu tae trn ycn", 20 | "azc": "chl com cup hch hop lui mfy mnr nah ntp ood opt pao par pia ppl ser shh stp tac tar tla tub var xaw xgf yaq", 21 | "bai": "bbj bko byv fmp jgo nla nnh nnz nwe xmg ybb", 22 | "bat": "lt ltg lv ndf olt prg sgs svx sxl xcu xgl xsv xzm", 23 | "ber": "cnu grr jbe jbn kab mzb nxm oua rif sds shi shy siz taq thv tmh tzm zen zgh", 24 | "bnt": "abb asa auh bas beb bem beq bez bip bja bkh bkw bng bni bqz brf btb bum bvb bwt bxg cgg cjk cwe dav dez dma dua ebu eko eto ewo fan fip guz haq heh hke hoo hz jmc kam kck kcv kde kg ki kj kkj kmb koo koq kqn ksb ksf kws kzo lag lch lg lik ln lol loz lu lua lue lun luy lyn mbo mdw mer mgh mhb mhw mye nba nd ndc ng ngc ngl njx nmg nnb nr nse nso ny nyf nym nyn pic rn rng rof rw rwk rwm sbp seh shr sn snq sop ss st suk sw swb tll tn toi ts tum umb ve vif vmk vun wdd wlc wni xh xog yao zdj zmw zu", 25 | "btk": "akb bbc btd btm bts btx btz", 26 | "cau": "ccn ccs", 27 | "cba": "bzd cbg chb kog mbp mot tuf", 28 | "ccn": "ab abq ady agx akv ani aqc av bbl bdk bph ce cji dar ddo gdo gin huz inh kap kbd khv kjj kpt kry kva lbe lez rut tab tin tkr uby udi", 29 | "ccs": "ka lzz sva xmf", 30 | "cdc": "anc ank bid daa ha hed lme maf mcn mmy mpi mse mug nnc nnn pip sor tmc zim zuy", 31 | "cdd": "ari cad kii paw wic", 32 | "cel": "br cy ga gd gv kw mga nrc obt owl sga wlm xbm xcb xce xga xpi", 33 | "cmc": "ace cje cjm hro huq jra rad rog", 34 | "cpf": "acf cks crs gcf gcr ht kmv lou mfe rcf", 35 | "cpp": "aoa cri fab kea mzs pap pov pre srm xmm", 36 | "csu": "avu bdh bex bot kcm led mdi mdj mhi mwm myb niy sba", 37 | "cus": "aa arv bej bji byn dal irk om orc sid so ssn ssy", 38 | "day": "bth lra sdo sne", 39 | "dmn": "bib bm bqc dnj dyu goa kao knk kno knu kpe lom man men mlq moa mwk rkm snk sus vai xkg yal", 40 | "dra": "brh gon iru kfa kfc kff kmj kn kru kxl kxu kxv mjt mjv ml muv ta tcx tcy te", 41 | "esx": "ale ik iu kl ypk ysr", 42 | "euq": "eu", 43 | "fiu": "chm et fi fit fkv hu izh kca koi krl kv liv mdf mns mrj myv olo smi udm vep vot vro", 44 | "fox": "bnn bzg ckv dru fos pwn pyu ssf sxr tay trv tsu uun xnb xsy", 45 | "gem": "gme gmq gmw", 46 | "gme": "got xvn", 47 | "gmq": "da fo is nb nn non nrn ovd rmg sv", 48 | "gmw": "af ang cim de dum en enm frk frr fy gct gmh gml goh gos gsw ksh lb li lng mhn nds nl odt ofs osx pdc pfl sco stq swg wae wep wym yec yi zea", 49 | "grk": "cpg el gmy grc pnt tsd yej", 50 | "hmx": "bje bpn buh bwn cqd hmd hml hmn hnj ium mji mmr mww pha pnu shx", 51 | "hok": "acv atw boi cid coc crz esq inz kju klb kyh mov mrc obi peb pef pej peq pom poo ppi puy sei sht sln veo was ynn yuf yum", 52 | "iir": "ask bsh inc ira prn wbk xvi", 53 | "inc": "as awa bgc bhb bho bjj bkk bn bns bpy bra ccp ctg dml doi dv emx gu gwc gwt hi hif hne khw kls kok ks lah mag mai mr mvy mwr ne or pa phl pra raj rml rmq rmt rom scl sd sdg si skr syl ur", 54 | "ine": "aln anp bat cel cms gem grk hit hlu hy iir imy itc plq scx sdt sla sq txb txh xcl xcr xdc xlc xld xlg xls xmk xpg xps xsd xto xve", 55 | "ira": "ae bal bsg ckb fa glk hac haz isk jdt jpr kho ku lrc lsa mzn oru os pal peo prc ps sgh sgl sgy siy smy sog sqo srh tg tly ttt wbl xbc xco xpr xsc yai zum zza", 56 | "iro": "cay chr lre moh ntw one ono see sqn tus wya", 57 | "itc": "la osc roa spx xfa xum", 58 | "jpx": "ja", 59 | "kar": "kvq", 60 | "khi": "hts ktz kwz naq nmn sad", 61 | "kro": "ald bsq dic grb gud gxx ney nwb wec", 62 | "map": "fox lcl lnd poz", 63 | "mkh": "bbh bgk blr caq cbn crv cwg huo jah jhi kha kjg km lbn mhe mlf mml mnw mqt mra mtq ncb oyb ply prk pry rka scb sea sii tef tnz tpu tyh uuu vi vwa wbm xao xnh zng", 64 | "mul": "aav afa aqa aql art auf aus awd azc cau cba cdd dra esx euq hmx hok ine iro jpx khi map myn nic omq paa sal sgn sio sit ssa tai tup tut urj wak xnd", 65 | "mun": "hoc pcj sat unr", 66 | "myn": "acr agu caa cac cak ctu hus itz ixl jac kek kjb knj mam mhc mop poc poh quc qum quv toj ttc tzh tzj tzo usp yua", 67 | "nah": "nci", 68 | "ngb": "sg", 69 | "ngf": "bjz ekg uhn", 70 | "nic": "alv dmn eka kdo lam nqo nyo tog znd", 71 | "nub": "fia onw", 72 | "omq": "cco coz czn ixc maj maq miz mxb oto pbs pmq pmz tpc tpl tpx trs zap zaw ztq zty", 73 | "omv": "aiw bcq bwo dim doz jnj mdx noz she wal zay", 74 | "oto": "otm", 75 | "paa": "aau anz ddg gak kax kmo lvk mok nas ngf pgu saj tcm tft tif tlb tqu waj wli yee zuh", 76 | "phi": "akl bik blf bno bnq ceb cps fil gor hil ibg ibl ify ilk ilo kak krj kyj kyk loc mdh mno mog mrw msb pag pam rth sgd snl sxn tbl tdn tne tnt tnw tom txs war", 77 | "plf": "alo amv gal hbu kje lti mhs szn tet tlv txn wha", 78 | "poz": "aol bhp end hvn ivv kei kvh mqy nxe ple plf pqe pqw ski tao xbr xxk", 79 | "pqe": "agw ahb aia aie aji akr alm alu ane anx apb app apr asz aty aua aud aul auq aut baa bch bcm bcu bgt bhc bhw biq bjk blp blq bnk bnr bpa brr btr buk bvc bvd bwd bxa bxf bzh bzq cal cam chk crc ddi dgg dhv dob dor drr erg erk etn faf far fj frt fud fut fwa gdd gei gfk gga ggt ghn gil gli gmb goo gri grz gzn hah hao haw hiw hla hoa hrw iai irh jae jaj jaz kbm kdk khl kij kji kkk klv koa kos kpg kqw krf ksd ksg ktm kvc kwd kwf kxr kzk kzu lbb lbv lcm lek ler leu lga lgb lgk lgl lgr lgu lht lib lid lkn lle llf llp llu llx lmg lml lmu lmv loj los lpa lrv lrz lww mee mek met meu mft mgl mh mi mkj mkv mky mla mln mlu mlv mme mmg mmt mmw mmx mna mnv mox mpr mpy mqa mqm mrb mrl mrm mrn mrq mrv msq mte mtt mvo mwc mwh mwi mwo mxe na nal ncc ncf ncn nee nem nen nfl ngr niu nke nkr nlg nmb nmk nms nmt nnd npn nsn nss nsw nua nuw nwi olr omb onu ora pek pex pfa pgk pif piv piz pkg pma pme pmt pnh pon pop ppn pri pss psw ptp ptv puw pwg rai rak rap rar ray roe rri rro rug sax sbb sbc sbe sbh sgz sij sjr sku slz sm sns sob sol sov sps ssg stn stw swp szw tbc tbe tbf tbj tgc tgi tgp tgs tio tkl tkp tkw tlm tlr tlx tmb tmi tmy tnk tnl tnn tnp tnx to tox tpv tpz tql tqp tsr ttu ttv tuc tva tvk tvl twp ty ubr uge uli upv urr urv utp uve uvl vao vmg vnk vnm vra vrs vrt wiv wls woe wuv wwo wyy xsi yap yly zgr", 80 | "pqw": "abl abs abx ban bdg bdl bdr beg bew bjn bkz bsu btk buc bug ch cia cmc day dbj drg dtr dun dup duq duw eno gay goq iba id jv kaw kge kjc kjk kqr ktq kvr kxd kyi kys lbw lbx lce lcf ley liw ljp llk mad mak mdr mfa mfb mg mhy min mkm mqn ms mtd mui mwv mxr myl mzq nia nij nrm otd pau pdo pel phi pku pse raz ree rej sas sda sjm skh slm sml smr smw snv ssb sse su sya tdi tdu tdx tjg tkg tlk twy txy ulu vkl vko wow wru xkq xmv xmw xmz yka zbc zbe zbw", 81 | "pra": "pi sa", 82 | "roa": "an ast ca co cpf cpp dlm egl es ext fax fr frc frm fro frp fur gl ist it lad lij lld lmo mwl mxi nap nrf oc osp pcd pms pt rgn rm ro ruo rup ruq sc scn sdc sdn vec wa", 83 | "sal": "cjh clm col coo cow crd fla hur lil nok oka qun shs spo squ str thp", 84 | "sdv": "ach alz anu bfa ddd din enb eyo kdj keo kln kpz lky lot lpx luo mas mqu muz niq nsg nub nus saq sgc shk tec teo toq tuv tuy", 85 | "sem": "aao acw acy aeb afb aii ajt akk am amw apc ar arc arq ary arz ayl gdq gez har he jrb mey mt phn sam shu smp sqr syc ti tig tmr uga xaa xeb xpu", 86 | "sgn": "csn fcs fsl ils isg rsl", 87 | "sio": "asb bll cro dak hid iow ksk lkt mhq ofo oma osa qua sto tta win xwc", 88 | "sit": "dz ero grt hmr hni ii jkr kac kar lbj lus mni my new njh njm nmy nwc nxq qvy sxg tbq tsj txg xsr zhx", 89 | "sla": "zle zls zlw", 90 | "smi": "se sia sjd sje sjt sma smj smn sms", 91 | "son": "ddn dje kcy khq ses twq", 92 | "ssa": "csu dzg fvr gly guk ikx kbl kie kmq kr lgn mde mls rou sdv son teu tuq udu wti xmr xom", 93 | "sw": "swc", 94 | "syd": "mtm nio sel xas yrk", 95 | "tai": "lo th", 96 | "tbq": "adx anm bo bqh brx duu ers gqi gro jya lhu lpo mxj njo nun trp twm", 97 | "trk": "aib alt az azb ba chg cjs clw crh cv dlg gag ili jct kaa kdr kim kjh kk klj kmz krc kum ky ota otk qwm qxq sah slr tk tr tt tyv ug uz uzs xpc ybe", 98 | "tup": "eme gn gui guq gyr kay kgk kpn ktn kyr mpu myu nhd psm skf srq tpj tpr tpw twt wyr yrl", 99 | "tut": "nog trk tuw xgn", 100 | "tuw": "eve evn gld juc mnc neg oaa oac orh sjo ude ulc", 101 | "urj": "fiu syd", 102 | "wak": "dtd has hei kwk myh nuk", 103 | "wen": "dsb hsb", 104 | "xgn": "bua dta kxs mhj mjg mn mvf peh sce xal xwo yuy", 105 | "xnd": "ath eya hoi tfn tli", 106 | "ypk": "ems ess esu ynk", 107 | "zhx": "cdo cjy cpx czh czo gan hak hsn ltc mnp nan och wuu wxa yue zh", 108 | "zle": "be orv ru rue uk", 109 | "zls": "bg bs cu hr mk sl sr", 110 | "zlw": "cs csb czk pl pox sk szl wen", 111 | "znd": "zne" 112 | } 113 | } 114 | } 115 | -------------------------------------------------------------------------------- /supplemental/territoryContainment.json: -------------------------------------------------------------------------------- 1 | { 2 | "supplemental": { 3 | "version": { 4 | "_unicodeVersion": "13.0.0", 5 | "_cldrVersion": "37" 6 | }, 7 | "territoryContainment": { 8 | "001": { 9 | "_contains": [ 10 | "019", 11 | "002", 12 | "150", 13 | "142", 14 | "009" 15 | ] 16 | }, 17 | "001-status-deprecated": { 18 | "_contains": [ 19 | "QU" 20 | ] 21 | }, 22 | "001-status-grouping": { 23 | "_contains": [ 24 | "EU", 25 | "EZ", 26 | "UN" 27 | ] 28 | }, 29 | "002": { 30 | "_contains": [ 31 | "015", 32 | "011", 33 | "017", 34 | "014", 35 | "018" 36 | ] 37 | }, 38 | "002-status-grouping": { 39 | "_contains": [ 40 | "202" 41 | ] 42 | }, 43 | "003": { 44 | "_contains": [ 45 | "021", 46 | "013", 47 | "029" 48 | ], 49 | "_grouping": "true" 50 | }, 51 | "005": { 52 | "_contains": [ 53 | "AR", 54 | "BO", 55 | "BR", 56 | "BV", 57 | "CL", 58 | "CO", 59 | "EC", 60 | "FK", 61 | "GF", 62 | "GS", 63 | "GY", 64 | "PE", 65 | "PY", 66 | "SR", 67 | "UY", 68 | "VE" 69 | ] 70 | }, 71 | "009": { 72 | "_contains": [ 73 | "053", 74 | "054", 75 | "057", 76 | "061", 77 | "QO" 78 | ] 79 | }, 80 | "011": { 81 | "_contains": [ 82 | "BF", 83 | "BJ", 84 | "CI", 85 | "CV", 86 | "GH", 87 | "GM", 88 | "GN", 89 | "GW", 90 | "LR", 91 | "ML", 92 | "MR", 93 | "NE", 94 | "NG", 95 | "SH", 96 | "SL", 97 | "SN", 98 | "TG" 99 | ] 100 | }, 101 | "013": { 102 | "_contains": [ 103 | "BZ", 104 | "CR", 105 | "GT", 106 | "HN", 107 | "MX", 108 | "NI", 109 | "PA", 110 | "SV" 111 | ] 112 | }, 113 | "014": { 114 | "_contains": [ 115 | "BI", 116 | "DJ", 117 | "ER", 118 | "ET", 119 | "IO", 120 | "KE", 121 | "KM", 122 | "MG", 123 | "MU", 124 | "MW", 125 | "MZ", 126 | "RE", 127 | "RW", 128 | "SC", 129 | "SO", 130 | "SS", 131 | "TF", 132 | "TZ", 133 | "UG", 134 | "YT", 135 | "ZM", 136 | "ZW" 137 | ] 138 | }, 139 | "015": { 140 | "_contains": [ 141 | "DZ", 142 | "EG", 143 | "EH", 144 | "LY", 145 | "MA", 146 | "SD", 147 | "TN", 148 | "EA", 149 | "IC" 150 | ] 151 | }, 152 | "017": { 153 | "_contains": [ 154 | "AO", 155 | "CD", 156 | "CF", 157 | "CG", 158 | "CM", 159 | "GA", 160 | "GQ", 161 | "ST", 162 | "TD" 163 | ] 164 | }, 165 | "017-status-deprecated": { 166 | "_contains": [ 167 | "ZR" 168 | ] 169 | }, 170 | "018": { 171 | "_contains": [ 172 | "BW", 173 | "LS", 174 | "NA", 175 | "SZ", 176 | "ZA" 177 | ] 178 | }, 179 | "019": { 180 | "_contains": [ 181 | "021", 182 | "013", 183 | "029", 184 | "005" 185 | ] 186 | }, 187 | "019-status-grouping": { 188 | "_contains": [ 189 | "003", 190 | "419" 191 | ] 192 | }, 193 | "021": { 194 | "_contains": [ 195 | "BM", 196 | "CA", 197 | "GL", 198 | "PM", 199 | "US" 200 | ] 201 | }, 202 | "029": { 203 | "_contains": [ 204 | "AG", 205 | "AI", 206 | "AW", 207 | "BB", 208 | "BL", 209 | "BQ", 210 | "BS", 211 | "CU", 212 | "CW", 213 | "DM", 214 | "DO", 215 | "GD", 216 | "GP", 217 | "HT", 218 | "JM", 219 | "KN", 220 | "KY", 221 | "LC", 222 | "MF", 223 | "MQ", 224 | "MS", 225 | "PR", 226 | "SX", 227 | "TC", 228 | "TT", 229 | "VC", 230 | "VG", 231 | "VI" 232 | ] 233 | }, 234 | "029-status-deprecated": { 235 | "_contains": [ 236 | "AN" 237 | ] 238 | }, 239 | "030": { 240 | "_contains": [ 241 | "CN", 242 | "HK", 243 | "JP", 244 | "KP", 245 | "KR", 246 | "MN", 247 | "MO", 248 | "TW" 249 | ] 250 | }, 251 | "034": { 252 | "_contains": [ 253 | "AF", 254 | "BD", 255 | "BT", 256 | "IN", 257 | "IR", 258 | "LK", 259 | "MV", 260 | "NP", 261 | "PK" 262 | ] 263 | }, 264 | "035": { 265 | "_contains": [ 266 | "BN", 267 | "ID", 268 | "KH", 269 | "LA", 270 | "MM", 271 | "MY", 272 | "PH", 273 | "SG", 274 | "TH", 275 | "TL", 276 | "VN" 277 | ] 278 | }, 279 | "035-status-deprecated": { 280 | "_contains": [ 281 | "BU", 282 | "TP" 283 | ] 284 | }, 285 | "039": { 286 | "_contains": [ 287 | "AD", 288 | "AL", 289 | "BA", 290 | "ES", 291 | "GI", 292 | "GR", 293 | "HR", 294 | "IT", 295 | "ME", 296 | "MK", 297 | "MT", 298 | "RS", 299 | "PT", 300 | "SI", 301 | "SM", 302 | "VA", 303 | "XK" 304 | ] 305 | }, 306 | "039-status-deprecated": { 307 | "_contains": [ 308 | "CS", 309 | "YU" 310 | ] 311 | }, 312 | "053": { 313 | "_contains": [ 314 | "AU", 315 | "CC", 316 | "CX", 317 | "HM", 318 | "NF", 319 | "NZ" 320 | ] 321 | }, 322 | "054": { 323 | "_contains": [ 324 | "FJ", 325 | "NC", 326 | "PG", 327 | "SB", 328 | "VU" 329 | ] 330 | }, 331 | "057": { 332 | "_contains": [ 333 | "FM", 334 | "GU", 335 | "KI", 336 | "MH", 337 | "MP", 338 | "NR", 339 | "PW", 340 | "UM" 341 | ] 342 | }, 343 | "061": { 344 | "_contains": [ 345 | "AS", 346 | "CK", 347 | "NU", 348 | "PF", 349 | "PN", 350 | "TK", 351 | "TO", 352 | "TV", 353 | "WF", 354 | "WS" 355 | ] 356 | }, 357 | "142": { 358 | "_contains": [ 359 | "145", 360 | "143", 361 | "030", 362 | "034", 363 | "035" 364 | ] 365 | }, 366 | "143": { 367 | "_contains": [ 368 | "TM", 369 | "TJ", 370 | "KG", 371 | "KZ", 372 | "UZ" 373 | ] 374 | }, 375 | "145": { 376 | "_contains": [ 377 | "AE", 378 | "AM", 379 | "AZ", 380 | "BH", 381 | "CY", 382 | "GE", 383 | "IL", 384 | "IQ", 385 | "JO", 386 | "KW", 387 | "LB", 388 | "OM", 389 | "PS", 390 | "QA", 391 | "SA", 392 | "SY", 393 | "TR", 394 | "YE" 395 | ] 396 | }, 397 | "145-status-deprecated": { 398 | "_contains": [ 399 | "NT", 400 | "YD" 401 | ] 402 | }, 403 | "150": { 404 | "_contains": [ 405 | "154", 406 | "155", 407 | "151", 408 | "039" 409 | ] 410 | }, 411 | "151": { 412 | "_contains": [ 413 | "BG", 414 | "BY", 415 | "CZ", 416 | "HU", 417 | "MD", 418 | "PL", 419 | "RO", 420 | "RU", 421 | "SK", 422 | "UA" 423 | ] 424 | }, 425 | "151-status-deprecated": { 426 | "_contains": [ 427 | "SU" 428 | ] 429 | }, 430 | "154": { 431 | "_contains": [ 432 | "GG", 433 | "IM", 434 | "JE", 435 | "AX", 436 | "DK", 437 | "EE", 438 | "FI", 439 | "FO", 440 | "GB", 441 | "IE", 442 | "IS", 443 | "LT", 444 | "LV", 445 | "NO", 446 | "SE", 447 | "SJ" 448 | ] 449 | }, 450 | "155": { 451 | "_contains": [ 452 | "AT", 453 | "BE", 454 | "CH", 455 | "DE", 456 | "FR", 457 | "LI", 458 | "LU", 459 | "MC", 460 | "NL" 461 | ] 462 | }, 463 | "155-status-deprecated": { 464 | "_contains": [ 465 | "DD", 466 | "FX" 467 | ] 468 | }, 469 | "202": { 470 | "_contains": [ 471 | "011", 472 | "017", 473 | "014", 474 | "018" 475 | ], 476 | "_grouping": "true" 477 | }, 478 | "419": { 479 | "_contains": [ 480 | "013", 481 | "029", 482 | "005" 483 | ], 484 | "_grouping": "true" 485 | }, 486 | "EU": { 487 | "_contains": [ 488 | "AT", 489 | "BE", 490 | "CY", 491 | "CZ", 492 | "DE", 493 | "DK", 494 | "EE", 495 | "ES", 496 | "FI", 497 | "FR", 498 | "GR", 499 | "HR", 500 | "HU", 501 | "IE", 502 | "IT", 503 | "LT", 504 | "LU", 505 | "LV", 506 | "MT", 507 | "NL", 508 | "PL", 509 | "PT", 510 | "SE", 511 | "SI", 512 | "SK", 513 | "BG", 514 | "RO" 515 | ], 516 | "_grouping": "true" 517 | }, 518 | "EZ": { 519 | "_contains": [ 520 | "AT", 521 | "BE", 522 | "CY", 523 | "DE", 524 | "EE", 525 | "ES", 526 | "FI", 527 | "FR", 528 | "GR", 529 | "IE", 530 | "IT", 531 | "LT", 532 | "LU", 533 | "LV", 534 | "MT", 535 | "NL", 536 | "PT", 537 | "SI", 538 | "SK" 539 | ], 540 | "_grouping": "true" 541 | }, 542 | "QO": { 543 | "_contains": [ 544 | "AQ", 545 | "AC", 546 | "CP", 547 | "DG", 548 | "TA" 549 | ] 550 | }, 551 | "UN": { 552 | "_contains": [ 553 | "AD", 554 | "AE", 555 | "AF", 556 | "AG", 557 | "AL", 558 | "AM", 559 | "AO", 560 | "AR", 561 | "AT", 562 | "AU", 563 | "AZ", 564 | "BA", 565 | "BB", 566 | "BD", 567 | "BE", 568 | "BF", 569 | "BG", 570 | "BH", 571 | "BI", 572 | "BJ", 573 | "BN", 574 | "BO", 575 | "BR", 576 | "BS", 577 | "BT", 578 | "BW", 579 | "BY", 580 | "BZ", 581 | "CA", 582 | "CD", 583 | "CF", 584 | "CG", 585 | "CH", 586 | "CI", 587 | "CL", 588 | "CM", 589 | "CN", 590 | "CO", 591 | "CR", 592 | "CU", 593 | "CV", 594 | "CY", 595 | "CZ", 596 | "DE", 597 | "DJ", 598 | "DK", 599 | "DM", 600 | "DO", 601 | "DZ", 602 | "EC", 603 | "EE", 604 | "EG", 605 | "ER", 606 | "ES", 607 | "ET", 608 | "FI", 609 | "FJ", 610 | "FM", 611 | "FR", 612 | "GA", 613 | "GB", 614 | "GD", 615 | "GE", 616 | "GH", 617 | "GM", 618 | "GN", 619 | "GQ", 620 | "GR", 621 | "GT", 622 | "GW", 623 | "GY", 624 | "HN", 625 | "HR", 626 | "HT", 627 | "HU", 628 | "ID", 629 | "IE", 630 | "IL", 631 | "IN", 632 | "IQ", 633 | "IR", 634 | "IS", 635 | "IT", 636 | "JM", 637 | "JO", 638 | "JP", 639 | "KE", 640 | "KG", 641 | "KH", 642 | "KI", 643 | "KM", 644 | "KN", 645 | "KP", 646 | "KR", 647 | "KW", 648 | "KZ", 649 | "LA", 650 | "LB", 651 | "LC", 652 | "LI", 653 | "LK", 654 | "LR", 655 | "LS", 656 | "LT", 657 | "LU", 658 | "LV", 659 | "LY", 660 | "MA", 661 | "MC", 662 | "MD", 663 | "ME", 664 | "MG", 665 | "MH", 666 | "MK", 667 | "ML", 668 | "MM", 669 | "MN", 670 | "MR", 671 | "MT", 672 | "MU", 673 | "MV", 674 | "MX", 675 | "MW", 676 | "MY", 677 | "MZ", 678 | "NA", 679 | "NE", 680 | "NG", 681 | "NI", 682 | "NL", 683 | "NO", 684 | "NR", 685 | "NP", 686 | "NZ", 687 | "OM", 688 | "PA", 689 | "PE", 690 | "PG", 691 | "PH", 692 | "PK", 693 | "PL", 694 | "PT", 695 | "PW", 696 | "PY", 697 | "QA", 698 | "RO", 699 | "RS", 700 | "RU", 701 | "RW", 702 | "SA", 703 | "SB", 704 | "SC", 705 | "SD", 706 | "SE", 707 | "SG", 708 | "SI", 709 | "SK", 710 | "SL", 711 | "SM", 712 | "SN", 713 | "SO", 714 | "SR", 715 | "SS", 716 | "ST", 717 | "SV", 718 | "SY", 719 | "SZ", 720 | "TD", 721 | "TG", 722 | "TH", 723 | "TJ", 724 | "TL", 725 | "TM", 726 | "TN", 727 | "TO", 728 | "TR", 729 | "TT", 730 | "TV", 731 | "TZ", 732 | "UA", 733 | "UG", 734 | "US", 735 | "UY", 736 | "UZ", 737 | "VC", 738 | "VE", 739 | "VN", 740 | "VU", 741 | "WS", 742 | "YE", 743 | "ZA", 744 | "ZM", 745 | "ZW" 746 | ], 747 | "_grouping": "true" 748 | } 749 | } 750 | } 751 | } 752 | -------------------------------------------------------------------------------- /supplemental/ordinals.json: -------------------------------------------------------------------------------- 1 | { 2 | "supplemental": { 3 | "version": { 4 | "_unicodeVersion": "13.0.0", 5 | "_cldrVersion": "37" 6 | }, 7 | "plurals-type-ordinal": { 8 | "af": { 9 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 10 | }, 11 | "am": { 12 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 13 | }, 14 | "an": { 15 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 16 | }, 17 | "ar": { 18 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 19 | }, 20 | "as": { 21 | "pluralRule-count-one": "n = 1,5,7,8,9,10 @integer 1, 5, 7~10", 22 | "pluralRule-count-two": "n = 2,3 @integer 2, 3", 23 | "pluralRule-count-few": "n = 4 @integer 4", 24 | "pluralRule-count-many": "n = 6 @integer 6", 25 | "pluralRule-count-other": " @integer 0, 11~25, 100, 1000, 10000, 100000, 1000000, …" 26 | }, 27 | "az": { 28 | "pluralRule-count-one": "i % 10 = 1,2,5,7,8 or i % 100 = 20,50,70,80 @integer 1, 2, 5, 7, 8, 11, 12, 15, 17, 18, 20~22, 25, 101, 1001, …", 29 | "pluralRule-count-few": "i % 10 = 3,4 or i % 1000 = 100,200,300,400,500,600,700,800,900 @integer 3, 4, 13, 14, 23, 24, 33, 34, 43, 44, 53, 54, 63, 64, 73, 74, 100, 1003, …", 30 | "pluralRule-count-many": "i = 0 or i % 10 = 6 or i % 100 = 40,60,90 @integer 0, 6, 16, 26, 36, 40, 46, 56, 106, 1006, …", 31 | "pluralRule-count-other": " @integer 9, 10, 19, 29, 30, 39, 49, 59, 69, 79, 109, 1000, 10000, 100000, 1000000, …" 32 | }, 33 | "be": { 34 | "pluralRule-count-few": "n % 10 = 2,3 and n % 100 != 12,13 @integer 2, 3, 22, 23, 32, 33, 42, 43, 52, 53, 62, 63, 72, 73, 82, 83, 102, 1002, …", 35 | "pluralRule-count-other": " @integer 0, 1, 4~17, 100, 1000, 10000, 100000, 1000000, …" 36 | }, 37 | "bg": { 38 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 39 | }, 40 | "bn": { 41 | "pluralRule-count-one": "n = 1,5,7,8,9,10 @integer 1, 5, 7~10", 42 | "pluralRule-count-two": "n = 2,3 @integer 2, 3", 43 | "pluralRule-count-few": "n = 4 @integer 4", 44 | "pluralRule-count-many": "n = 6 @integer 6", 45 | "pluralRule-count-other": " @integer 0, 11~25, 100, 1000, 10000, 100000, 1000000, …" 46 | }, 47 | "bs": { 48 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 49 | }, 50 | "ca": { 51 | "pluralRule-count-one": "n = 1,3 @integer 1, 3", 52 | "pluralRule-count-two": "n = 2 @integer 2", 53 | "pluralRule-count-few": "n = 4 @integer 4", 54 | "pluralRule-count-other": " @integer 0, 5~19, 100, 1000, 10000, 100000, 1000000, …" 55 | }, 56 | "ce": { 57 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 58 | }, 59 | "cs": { 60 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 61 | }, 62 | "cy": { 63 | "pluralRule-count-zero": "n = 0,7,8,9 @integer 0, 7~9", 64 | "pluralRule-count-one": "n = 1 @integer 1", 65 | "pluralRule-count-two": "n = 2 @integer 2", 66 | "pluralRule-count-few": "n = 3,4 @integer 3, 4", 67 | "pluralRule-count-many": "n = 5,6 @integer 5, 6", 68 | "pluralRule-count-other": " @integer 10~25, 100, 1000, 10000, 100000, 1000000, …" 69 | }, 70 | "da": { 71 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 72 | }, 73 | "de": { 74 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 75 | }, 76 | "dsb": { 77 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 78 | }, 79 | "el": { 80 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 81 | }, 82 | "en": { 83 | "pluralRule-count-one": "n % 10 = 1 and n % 100 != 11 @integer 1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", 84 | "pluralRule-count-two": "n % 10 = 2 and n % 100 != 12 @integer 2, 22, 32, 42, 52, 62, 72, 82, 102, 1002, …", 85 | "pluralRule-count-few": "n % 10 = 3 and n % 100 != 13 @integer 3, 23, 33, 43, 53, 63, 73, 83, 103, 1003, …", 86 | "pluralRule-count-other": " @integer 0, 4~18, 100, 1000, 10000, 100000, 1000000, …" 87 | }, 88 | "es": { 89 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 90 | }, 91 | "et": { 92 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 93 | }, 94 | "eu": { 95 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 96 | }, 97 | "fa": { 98 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 99 | }, 100 | "fi": { 101 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 102 | }, 103 | "fil": { 104 | "pluralRule-count-one": "n = 1 @integer 1", 105 | "pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …" 106 | }, 107 | "fr": { 108 | "pluralRule-count-one": "n = 1 @integer 1", 109 | "pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …" 110 | }, 111 | "fy": { 112 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 113 | }, 114 | "ga": { 115 | "pluralRule-count-one": "n = 1 @integer 1", 116 | "pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …" 117 | }, 118 | "gd": { 119 | "pluralRule-count-one": "n = 1,11 @integer 1, 11", 120 | "pluralRule-count-two": "n = 2,12 @integer 2, 12", 121 | "pluralRule-count-few": "n = 3,13 @integer 3, 13", 122 | "pluralRule-count-other": " @integer 0, 4~10, 14~21, 100, 1000, 10000, 100000, 1000000, …" 123 | }, 124 | "gl": { 125 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 126 | }, 127 | "gsw": { 128 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 129 | }, 130 | "gu": { 131 | "pluralRule-count-one": "n = 1 @integer 1", 132 | "pluralRule-count-two": "n = 2,3 @integer 2, 3", 133 | "pluralRule-count-few": "n = 4 @integer 4", 134 | "pluralRule-count-many": "n = 6 @integer 6", 135 | "pluralRule-count-other": " @integer 0, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …" 136 | }, 137 | "he": { 138 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 139 | }, 140 | "hi": { 141 | "pluralRule-count-one": "n = 1 @integer 1", 142 | "pluralRule-count-two": "n = 2,3 @integer 2, 3", 143 | "pluralRule-count-few": "n = 4 @integer 4", 144 | "pluralRule-count-many": "n = 6 @integer 6", 145 | "pluralRule-count-other": " @integer 0, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …" 146 | }, 147 | "hr": { 148 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 149 | }, 150 | "hsb": { 151 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 152 | }, 153 | "hu": { 154 | "pluralRule-count-one": "n = 1,5 @integer 1, 5", 155 | "pluralRule-count-other": " @integer 0, 2~4, 6~17, 100, 1000, 10000, 100000, 1000000, …" 156 | }, 157 | "hy": { 158 | "pluralRule-count-one": "n = 1 @integer 1", 159 | "pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …" 160 | }, 161 | "ia": { 162 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 163 | }, 164 | "id": { 165 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 166 | }, 167 | "in": { 168 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 169 | }, 170 | "is": { 171 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 172 | }, 173 | "it": { 174 | "pluralRule-count-many": "n = 11,8,80,800 @integer 8, 11, 80, 800", 175 | "pluralRule-count-other": " @integer 0~7, 9, 10, 12~17, 100, 1000, 10000, 100000, 1000000, …" 176 | }, 177 | "iw": { 178 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 179 | }, 180 | "ja": { 181 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 182 | }, 183 | "ka": { 184 | "pluralRule-count-one": "i = 1 @integer 1", 185 | "pluralRule-count-many": "i = 0 or i % 100 = 2..20,40,60,80 @integer 0, 2~16, 102, 1002, …", 186 | "pluralRule-count-other": " @integer 21~36, 100, 1000, 10000, 100000, 1000000, …" 187 | }, 188 | "kk": { 189 | "pluralRule-count-many": "n % 10 = 6 or n % 10 = 9 or n % 10 = 0 and n != 0 @integer 6, 9, 10, 16, 19, 20, 26, 29, 30, 36, 39, 40, 100, 1000, 10000, 100000, 1000000, …", 190 | "pluralRule-count-other": " @integer 0~5, 7, 8, 11~15, 17, 18, 21, 101, 1001, …" 191 | }, 192 | "km": { 193 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 194 | }, 195 | "kn": { 196 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 197 | }, 198 | "ko": { 199 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 200 | }, 201 | "kw": { 202 | "pluralRule-count-one": "n = 1..4 or n % 100 = 1..4,21..24,41..44,61..64,81..84 @integer 1~4, 21~24, 41~44, 61~64, 101, 1001, …", 203 | "pluralRule-count-many": "n = 5 or n % 100 = 5 @integer 5, 105, 205, 305, 405, 505, 605, 705, 1005, …", 204 | "pluralRule-count-other": " @integer 0, 6~20, 100, 1000, 10000, 100000, 1000000, …" 205 | }, 206 | "ky": { 207 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 208 | }, 209 | "lo": { 210 | "pluralRule-count-one": "n = 1 @integer 1", 211 | "pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …" 212 | }, 213 | "lt": { 214 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 215 | }, 216 | "lv": { 217 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 218 | }, 219 | "mk": { 220 | "pluralRule-count-one": "i % 10 = 1 and i % 100 != 11 @integer 1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", 221 | "pluralRule-count-two": "i % 10 = 2 and i % 100 != 12 @integer 2, 22, 32, 42, 52, 62, 72, 82, 102, 1002, …", 222 | "pluralRule-count-many": "i % 10 = 7,8 and i % 100 != 17,18 @integer 7, 8, 27, 28, 37, 38, 47, 48, 57, 58, 67, 68, 77, 78, 87, 88, 107, 1007, …", 223 | "pluralRule-count-other": " @integer 0, 3~6, 9~19, 100, 1000, 10000, 100000, 1000000, …" 224 | }, 225 | "ml": { 226 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 227 | }, 228 | "mn": { 229 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 230 | }, 231 | "mo": { 232 | "pluralRule-count-one": "n = 1 @integer 1", 233 | "pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …" 234 | }, 235 | "mr": { 236 | "pluralRule-count-one": "n = 1 @integer 1", 237 | "pluralRule-count-two": "n = 2,3 @integer 2, 3", 238 | "pluralRule-count-few": "n = 4 @integer 4", 239 | "pluralRule-count-other": " @integer 0, 5~19, 100, 1000, 10000, 100000, 1000000, …" 240 | }, 241 | "ms": { 242 | "pluralRule-count-one": "n = 1 @integer 1", 243 | "pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …" 244 | }, 245 | "my": { 246 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 247 | }, 248 | "nb": { 249 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 250 | }, 251 | "ne": { 252 | "pluralRule-count-one": "n = 1..4 @integer 1~4", 253 | "pluralRule-count-other": " @integer 0, 5~19, 100, 1000, 10000, 100000, 1000000, …" 254 | }, 255 | "nl": { 256 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 257 | }, 258 | "or": { 259 | "pluralRule-count-one": "n = 1,5,7..9 @integer 1, 5, 7~9", 260 | "pluralRule-count-two": "n = 2,3 @integer 2, 3", 261 | "pluralRule-count-few": "n = 4 @integer 4", 262 | "pluralRule-count-many": "n = 6 @integer 6", 263 | "pluralRule-count-other": " @integer 0, 10~24, 100, 1000, 10000, 100000, 1000000, …" 264 | }, 265 | "pa": { 266 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 267 | }, 268 | "pl": { 269 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 270 | }, 271 | "prg": { 272 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 273 | }, 274 | "ps": { 275 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 276 | }, 277 | "pt": { 278 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 279 | }, 280 | "ro": { 281 | "pluralRule-count-one": "n = 1 @integer 1", 282 | "pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …" 283 | }, 284 | "root": { 285 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 286 | }, 287 | "ru": { 288 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 289 | }, 290 | "sc": { 291 | "pluralRule-count-many": "n = 11,8,80,800 @integer 8, 11, 80, 800", 292 | "pluralRule-count-other": " @integer 0~7, 9, 10, 12~17, 100, 1000, 10000, 100000, 1000000, …" 293 | }, 294 | "scn": { 295 | "pluralRule-count-many": "n = 11,8,80,800 @integer 8, 11, 80, 800", 296 | "pluralRule-count-other": " @integer 0~7, 9, 10, 12~17, 100, 1000, 10000, 100000, 1000000, …" 297 | }, 298 | "sd": { 299 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 300 | }, 301 | "sh": { 302 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 303 | }, 304 | "si": { 305 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 306 | }, 307 | "sk": { 308 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 309 | }, 310 | "sl": { 311 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 312 | }, 313 | "sq": { 314 | "pluralRule-count-one": "n = 1 @integer 1", 315 | "pluralRule-count-many": "n % 10 = 4 and n % 100 != 14 @integer 4, 24, 34, 44, 54, 64, 74, 84, 104, 1004, …", 316 | "pluralRule-count-other": " @integer 0, 2, 3, 5~17, 100, 1000, 10000, 100000, 1000000, …" 317 | }, 318 | "sr": { 319 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 320 | }, 321 | "sv": { 322 | "pluralRule-count-one": "n % 10 = 1,2 and n % 100 != 11,12 @integer 1, 2, 21, 22, 31, 32, 41, 42, 51, 52, 61, 62, 71, 72, 81, 82, 101, 1001, …", 323 | "pluralRule-count-other": " @integer 0, 3~17, 100, 1000, 10000, 100000, 1000000, …" 324 | }, 325 | "sw": { 326 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 327 | }, 328 | "ta": { 329 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 330 | }, 331 | "te": { 332 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 333 | }, 334 | "th": { 335 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 336 | }, 337 | "tk": { 338 | "pluralRule-count-few": "n % 10 = 6,9 or n = 10 @integer 6, 9, 10, 16, 19, 26, 29, 36, 39, 106, 1006, …", 339 | "pluralRule-count-other": " @integer 0~5, 7, 8, 11~15, 17, 18, 20, 100, 1000, 10000, 100000, 1000000, …" 340 | }, 341 | "tl": { 342 | "pluralRule-count-one": "n = 1 @integer 1", 343 | "pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …" 344 | }, 345 | "tr": { 346 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 347 | }, 348 | "uk": { 349 | "pluralRule-count-few": "n % 10 = 3 and n % 100 != 13 @integer 3, 23, 33, 43, 53, 63, 73, 83, 103, 1003, …", 350 | "pluralRule-count-other": " @integer 0~2, 4~16, 100, 1000, 10000, 100000, 1000000, …" 351 | }, 352 | "ur": { 353 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 354 | }, 355 | "uz": { 356 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 357 | }, 358 | "vi": { 359 | "pluralRule-count-one": "n = 1 @integer 1", 360 | "pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …" 361 | }, 362 | "yue": { 363 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 364 | }, 365 | "zh": { 366 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 367 | }, 368 | "zu": { 369 | "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …" 370 | } 371 | } 372 | } 373 | } 374 | -------------------------------------------------------------------------------- /availableLocales.json: -------------------------------------------------------------------------------- 1 | { 2 | "availableLocales": { 3 | "modern": [ 4 | "af", 5 | "af-NA", 6 | "am", 7 | "ar", 8 | "ar-AE", 9 | "ar-BH", 10 | "ar-DJ", 11 | "ar-DZ", 12 | "ar-EG", 13 | "ar-EH", 14 | "ar-ER", 15 | "ar-IL", 16 | "ar-IQ", 17 | "ar-JO", 18 | "ar-KM", 19 | "ar-KW", 20 | "ar-LB", 21 | "ar-LY", 22 | "ar-MA", 23 | "ar-MR", 24 | "ar-OM", 25 | "ar-PS", 26 | "ar-QA", 27 | "ar-SA", 28 | "ar-SD", 29 | "ar-SO", 30 | "ar-SS", 31 | "ar-SY", 32 | "ar-TD", 33 | "ar-TN", 34 | "ar-YE", 35 | "as", 36 | "az", 37 | "az-Latn", 38 | "be", 39 | "bg", 40 | "bn", 41 | "bn-IN", 42 | "bs", 43 | "bs-Latn", 44 | "ca", 45 | "ca-AD", 46 | "ca-ES-VALENCIA", 47 | "ca-FR", 48 | "ca-IT", 49 | "cs", 50 | "cy", 51 | "da", 52 | "da-GL", 53 | "de", 54 | "de-AT", 55 | "de-BE", 56 | "de-CH", 57 | "de-IT", 58 | "de-LI", 59 | "de-LU", 60 | "el", 61 | "el-CY", 62 | "en", 63 | "en-001", 64 | "en-150", 65 | "en-AE", 66 | "en-AG", 67 | "en-AI", 68 | "en-AS", 69 | "en-AT", 70 | "en-AU", 71 | "en-BB", 72 | "en-BE", 73 | "en-BI", 74 | "en-BM", 75 | "en-BS", 76 | "en-BW", 77 | "en-BZ", 78 | "en-CA", 79 | "en-CC", 80 | "en-CH", 81 | "en-CK", 82 | "en-CM", 83 | "en-CX", 84 | "en-CY", 85 | "en-DE", 86 | "en-DG", 87 | "en-DK", 88 | "en-DM", 89 | "en-ER", 90 | "en-FI", 91 | "en-FJ", 92 | "en-FK", 93 | "en-FM", 94 | "en-GB", 95 | "en-GD", 96 | "en-GG", 97 | "en-GH", 98 | "en-GI", 99 | "en-GM", 100 | "en-GU", 101 | "en-GY", 102 | "en-HK", 103 | "en-IE", 104 | "en-IL", 105 | "en-IM", 106 | "en-IN", 107 | "en-IO", 108 | "en-JE", 109 | "en-JM", 110 | "en-KE", 111 | "en-KI", 112 | "en-KN", 113 | "en-KY", 114 | "en-LC", 115 | "en-LR", 116 | "en-LS", 117 | "en-MG", 118 | "en-MH", 119 | "en-MO", 120 | "en-MP", 121 | "en-MS", 122 | "en-MT", 123 | "en-MU", 124 | "en-MW", 125 | "en-MY", 126 | "en-NA", 127 | "en-NF", 128 | "en-NG", 129 | "en-NL", 130 | "en-NR", 131 | "en-NU", 132 | "en-NZ", 133 | "en-PG", 134 | "en-PH", 135 | "en-PK", 136 | "en-PN", 137 | "en-PR", 138 | "en-PW", 139 | "en-RW", 140 | "en-SB", 141 | "en-SC", 142 | "en-SD", 143 | "en-SE", 144 | "en-SG", 145 | "en-SH", 146 | "en-SI", 147 | "en-SL", 148 | "en-SS", 149 | "en-SX", 150 | "en-SZ", 151 | "en-TC", 152 | "en-TK", 153 | "en-TO", 154 | "en-TT", 155 | "en-TV", 156 | "en-TZ", 157 | "en-UG", 158 | "en-UM", 159 | "en-US-POSIX", 160 | "en-VC", 161 | "en-VG", 162 | "en-VI", 163 | "en-VU", 164 | "en-WS", 165 | "en-ZA", 166 | "en-ZM", 167 | "en-ZW", 168 | "es", 169 | "es-419", 170 | "es-AR", 171 | "es-BO", 172 | "es-BR", 173 | "es-BZ", 174 | "es-CL", 175 | "es-CO", 176 | "es-CR", 177 | "es-CU", 178 | "es-DO", 179 | "es-EA", 180 | "es-EC", 181 | "es-GQ", 182 | "es-GT", 183 | "es-HN", 184 | "es-IC", 185 | "es-MX", 186 | "es-NI", 187 | "es-PA", 188 | "es-PE", 189 | "es-PH", 190 | "es-PR", 191 | "es-PY", 192 | "es-SV", 193 | "es-US", 194 | "es-UY", 195 | "es-VE", 196 | "et", 197 | "eu", 198 | "fa", 199 | "fa-AF", 200 | "fi", 201 | "fil", 202 | "fr", 203 | "fr-BE", 204 | "fr-BF", 205 | "fr-BI", 206 | "fr-BJ", 207 | "fr-BL", 208 | "fr-CA", 209 | "fr-CD", 210 | "fr-CF", 211 | "fr-CG", 212 | "fr-CH", 213 | "fr-CI", 214 | "fr-CM", 215 | "fr-DJ", 216 | "fr-DZ", 217 | "fr-GA", 218 | "fr-GF", 219 | "fr-GN", 220 | "fr-GP", 221 | "fr-GQ", 222 | "fr-HT", 223 | "fr-KM", 224 | "fr-LU", 225 | "fr-MA", 226 | "fr-MC", 227 | "fr-MF", 228 | "fr-MG", 229 | "fr-ML", 230 | "fr-MQ", 231 | "fr-MR", 232 | "fr-MU", 233 | "fr-NC", 234 | "fr-NE", 235 | "fr-PF", 236 | "fr-PM", 237 | "fr-RE", 238 | "fr-RW", 239 | "fr-SC", 240 | "fr-SN", 241 | "fr-SY", 242 | "fr-TD", 243 | "fr-TG", 244 | "fr-TN", 245 | "fr-VU", 246 | "fr-WF", 247 | "fr-YT", 248 | "ga", 249 | "ga-GB", 250 | "gl", 251 | "gu", 252 | "he", 253 | "hi", 254 | "hr", 255 | "hr-BA", 256 | "hu", 257 | "hy", 258 | "id", 259 | "is", 260 | "it", 261 | "it-CH", 262 | "it-SM", 263 | "it-VA", 264 | "ja", 265 | "jv", 266 | "ka", 267 | "kk", 268 | "km", 269 | "kn", 270 | "ko", 271 | "ko-KP", 272 | "ky", 273 | "lo", 274 | "lt", 275 | "lv", 276 | "mk", 277 | "ml", 278 | "mn", 279 | "mr", 280 | "ms", 281 | "ms-BN", 282 | "ms-ID", 283 | "ms-SG", 284 | "my", 285 | "nb", 286 | "nb-SJ", 287 | "ne", 288 | "ne-IN", 289 | "nl", 290 | "nl-AW", 291 | "nl-BE", 292 | "nl-BQ", 293 | "nl-CW", 294 | "nl-SR", 295 | "nl-SX", 296 | "or", 297 | "pa", 298 | "pa-Guru", 299 | "pl", 300 | "ps", 301 | "ps-PK", 302 | "pt", 303 | "pt-AO", 304 | "pt-CH", 305 | "pt-CV", 306 | "pt-GQ", 307 | "pt-GW", 308 | "pt-LU", 309 | "pt-MO", 310 | "pt-MZ", 311 | "pt-PT", 312 | "pt-ST", 313 | "pt-TL", 314 | "ro", 315 | "ro-MD", 316 | "root", 317 | "ru", 318 | "ru-BY", 319 | "ru-KG", 320 | "ru-KZ", 321 | "ru-MD", 322 | "ru-UA", 323 | "sd", 324 | "sd-Arab", 325 | "si", 326 | "sk", 327 | "sl", 328 | "so", 329 | "so-DJ", 330 | "so-ET", 331 | "so-KE", 332 | "sq", 333 | "sq-MK", 334 | "sq-XK", 335 | "sr", 336 | "sr-Cyrl", 337 | "sr-Cyrl-BA", 338 | "sr-Cyrl-ME", 339 | "sr-Cyrl-XK", 340 | "sr-Latn", 341 | "sr-Latn-BA", 342 | "sr-Latn-ME", 343 | "sr-Latn-XK", 344 | "sv", 345 | "sv-AX", 346 | "sv-FI", 347 | "sw", 348 | "sw-CD", 349 | "sw-KE", 350 | "sw-UG", 351 | "ta", 352 | "ta-LK", 353 | "ta-MY", 354 | "ta-SG", 355 | "te", 356 | "th", 357 | "tk", 358 | "tr", 359 | "tr-CY", 360 | "uk", 361 | "ur", 362 | "ur-IN", 363 | "uz", 364 | "uz-Latn", 365 | "vi", 366 | "yue", 367 | "yue-Hant", 368 | "zh", 369 | "zh-Hans", 370 | "zh-Hans-HK", 371 | "zh-Hans-MO", 372 | "zh-Hans-SG", 373 | "zh-Hant", 374 | "zh-Hant-HK", 375 | "zh-Hant-MO", 376 | "zu" 377 | ], 378 | "full": [ 379 | "af", 380 | "af-NA", 381 | "agq", 382 | "ak", 383 | "am", 384 | "ar", 385 | "ar-AE", 386 | "ar-BH", 387 | "ar-DJ", 388 | "ar-DZ", 389 | "ar-EG", 390 | "ar-EH", 391 | "ar-ER", 392 | "ar-IL", 393 | "ar-IQ", 394 | "ar-JO", 395 | "ar-KM", 396 | "ar-KW", 397 | "ar-LB", 398 | "ar-LY", 399 | "ar-MA", 400 | "ar-MR", 401 | "ar-OM", 402 | "ar-PS", 403 | "ar-QA", 404 | "ar-SA", 405 | "ar-SD", 406 | "ar-SO", 407 | "ar-SS", 408 | "ar-SY", 409 | "ar-TD", 410 | "ar-TN", 411 | "ar-YE", 412 | "as", 413 | "asa", 414 | "ast", 415 | "az", 416 | "az-Cyrl", 417 | "az-Latn", 418 | "bas", 419 | "be", 420 | "bem", 421 | "bez", 422 | "bg", 423 | "bm", 424 | "bn", 425 | "bn-IN", 426 | "bo", 427 | "bo-IN", 428 | "br", 429 | "brx", 430 | "bs", 431 | "bs-Cyrl", 432 | "bs-Latn", 433 | "ca", 434 | "ca-AD", 435 | "ca-ES-VALENCIA", 436 | "ca-FR", 437 | "ca-IT", 438 | "ccp", 439 | "ccp-IN", 440 | "ce", 441 | "ceb", 442 | "cgg", 443 | "chr", 444 | "ckb", 445 | "ckb-IR", 446 | "cs", 447 | "cu", 448 | "cy", 449 | "da", 450 | "da-GL", 451 | "dav", 452 | "de", 453 | "de-AT", 454 | "de-BE", 455 | "de-CH", 456 | "de-IT", 457 | "de-LI", 458 | "de-LU", 459 | "dje", 460 | "dsb", 461 | "dua", 462 | "dyo", 463 | "dz", 464 | "ebu", 465 | "ee", 466 | "ee-TG", 467 | "el", 468 | "el-CY", 469 | "en", 470 | "en-001", 471 | "en-150", 472 | "en-AE", 473 | "en-AG", 474 | "en-AI", 475 | "en-AS", 476 | "en-AT", 477 | "en-AU", 478 | "en-BB", 479 | "en-BE", 480 | "en-BI", 481 | "en-BM", 482 | "en-BS", 483 | "en-BW", 484 | "en-BZ", 485 | "en-CA", 486 | "en-CC", 487 | "en-CH", 488 | "en-CK", 489 | "en-CM", 490 | "en-CX", 491 | "en-CY", 492 | "en-DE", 493 | "en-DG", 494 | "en-DK", 495 | "en-DM", 496 | "en-ER", 497 | "en-FI", 498 | "en-FJ", 499 | "en-FK", 500 | "en-FM", 501 | "en-GB", 502 | "en-GD", 503 | "en-GG", 504 | "en-GH", 505 | "en-GI", 506 | "en-GM", 507 | "en-GU", 508 | "en-GY", 509 | "en-HK", 510 | "en-IE", 511 | "en-IL", 512 | "en-IM", 513 | "en-IN", 514 | "en-IO", 515 | "en-JE", 516 | "en-JM", 517 | "en-KE", 518 | "en-KI", 519 | "en-KN", 520 | "en-KY", 521 | "en-LC", 522 | "en-LR", 523 | "en-LS", 524 | "en-MG", 525 | "en-MH", 526 | "en-MO", 527 | "en-MP", 528 | "en-MS", 529 | "en-MT", 530 | "en-MU", 531 | "en-MW", 532 | "en-MY", 533 | "en-NA", 534 | "en-NF", 535 | "en-NG", 536 | "en-NL", 537 | "en-NR", 538 | "en-NU", 539 | "en-NZ", 540 | "en-PG", 541 | "en-PH", 542 | "en-PK", 543 | "en-PN", 544 | "en-PR", 545 | "en-PW", 546 | "en-RW", 547 | "en-SB", 548 | "en-SC", 549 | "en-SD", 550 | "en-SE", 551 | "en-SG", 552 | "en-SH", 553 | "en-SI", 554 | "en-SL", 555 | "en-SS", 556 | "en-SX", 557 | "en-SZ", 558 | "en-TC", 559 | "en-TK", 560 | "en-TO", 561 | "en-TT", 562 | "en-TV", 563 | "en-TZ", 564 | "en-UG", 565 | "en-UM", 566 | "en-US-POSIX", 567 | "en-VC", 568 | "en-VG", 569 | "en-VI", 570 | "en-VU", 571 | "en-WS", 572 | "en-ZA", 573 | "en-ZM", 574 | "en-ZW", 575 | "eo", 576 | "es", 577 | "es-419", 578 | "es-AR", 579 | "es-BO", 580 | "es-BR", 581 | "es-BZ", 582 | "es-CL", 583 | "es-CO", 584 | "es-CR", 585 | "es-CU", 586 | "es-DO", 587 | "es-EA", 588 | "es-EC", 589 | "es-GQ", 590 | "es-GT", 591 | "es-HN", 592 | "es-IC", 593 | "es-MX", 594 | "es-NI", 595 | "es-PA", 596 | "es-PE", 597 | "es-PH", 598 | "es-PR", 599 | "es-PY", 600 | "es-SV", 601 | "es-US", 602 | "es-UY", 603 | "es-VE", 604 | "et", 605 | "eu", 606 | "ewo", 607 | "fa", 608 | "fa-AF", 609 | "ff", 610 | "ff-Adlm", 611 | "ff-Adlm-BF", 612 | "ff-Adlm-CM", 613 | "ff-Adlm-GH", 614 | "ff-Adlm-GM", 615 | "ff-Adlm-GW", 616 | "ff-Adlm-LR", 617 | "ff-Adlm-MR", 618 | "ff-Adlm-NE", 619 | "ff-Adlm-NG", 620 | "ff-Adlm-SL", 621 | "ff-Adlm-SN", 622 | "ff-Latn", 623 | "ff-Latn-BF", 624 | "ff-Latn-CM", 625 | "ff-Latn-GH", 626 | "ff-Latn-GM", 627 | "ff-Latn-GN", 628 | "ff-Latn-GW", 629 | "ff-Latn-LR", 630 | "ff-Latn-MR", 631 | "ff-Latn-NE", 632 | "ff-Latn-NG", 633 | "ff-Latn-SL", 634 | "fi", 635 | "fil", 636 | "fo", 637 | "fo-DK", 638 | "fr", 639 | "fr-BE", 640 | "fr-BF", 641 | "fr-BI", 642 | "fr-BJ", 643 | "fr-BL", 644 | "fr-CA", 645 | "fr-CD", 646 | "fr-CF", 647 | "fr-CG", 648 | "fr-CH", 649 | "fr-CI", 650 | "fr-CM", 651 | "fr-DJ", 652 | "fr-DZ", 653 | "fr-GA", 654 | "fr-GF", 655 | "fr-GN", 656 | "fr-GP", 657 | "fr-GQ", 658 | "fr-HT", 659 | "fr-KM", 660 | "fr-LU", 661 | "fr-MA", 662 | "fr-MC", 663 | "fr-MF", 664 | "fr-MG", 665 | "fr-ML", 666 | "fr-MQ", 667 | "fr-MR", 668 | "fr-MU", 669 | "fr-NC", 670 | "fr-NE", 671 | "fr-PF", 672 | "fr-PM", 673 | "fr-RE", 674 | "fr-RW", 675 | "fr-SC", 676 | "fr-SN", 677 | "fr-SY", 678 | "fr-TD", 679 | "fr-TG", 680 | "fr-TN", 681 | "fr-VU", 682 | "fr-WF", 683 | "fr-YT", 684 | "fur", 685 | "fy", 686 | "ga", 687 | "ga-GB", 688 | "gd", 689 | "gl", 690 | "gsw", 691 | "gsw-FR", 692 | "gsw-LI", 693 | "gu", 694 | "guz", 695 | "gv", 696 | "ha", 697 | "ha-GH", 698 | "ha-NE", 699 | "haw", 700 | "he", 701 | "hi", 702 | "hr", 703 | "hr-BA", 704 | "hsb", 705 | "hu", 706 | "hy", 707 | "ia", 708 | "id", 709 | "ig", 710 | "ii", 711 | "is", 712 | "it", 713 | "it-CH", 714 | "it-SM", 715 | "it-VA", 716 | "ja", 717 | "jgo", 718 | "jmc", 719 | "jv", 720 | "ka", 721 | "kab", 722 | "kam", 723 | "kde", 724 | "kea", 725 | "khq", 726 | "ki", 727 | "kk", 728 | "kkj", 729 | "kl", 730 | "kln", 731 | "km", 732 | "kn", 733 | "ko", 734 | "ko-KP", 735 | "kok", 736 | "ks", 737 | "ks-Arab", 738 | "ksb", 739 | "ksf", 740 | "ksh", 741 | "ku", 742 | "kw", 743 | "ky", 744 | "lag", 745 | "lb", 746 | "lg", 747 | "lkt", 748 | "ln", 749 | "ln-AO", 750 | "ln-CF", 751 | "ln-CG", 752 | "lo", 753 | "lrc", 754 | "lrc-IQ", 755 | "lt", 756 | "lu", 757 | "luo", 758 | "luy", 759 | "lv", 760 | "mai", 761 | "mas", 762 | "mas-TZ", 763 | "mer", 764 | "mfe", 765 | "mg", 766 | "mgh", 767 | "mgo", 768 | "mi", 769 | "mk", 770 | "ml", 771 | "mn", 772 | "mni", 773 | "mni-Beng", 774 | "mr", 775 | "ms", 776 | "ms-BN", 777 | "ms-ID", 778 | "ms-SG", 779 | "mt", 780 | "mua", 781 | "my", 782 | "mzn", 783 | "naq", 784 | "nb", 785 | "nb-SJ", 786 | "nd", 787 | "nds", 788 | "nds-NL", 789 | "ne", 790 | "ne-IN", 791 | "nl", 792 | "nl-AW", 793 | "nl-BE", 794 | "nl-BQ", 795 | "nl-CW", 796 | "nl-SR", 797 | "nl-SX", 798 | "nmg", 799 | "nn", 800 | "nnh", 801 | "nus", 802 | "nyn", 803 | "om", 804 | "om-KE", 805 | "or", 806 | "os", 807 | "os-RU", 808 | "pa", 809 | "pa-Arab", 810 | "pa-Guru", 811 | "pcm", 812 | "pl", 813 | "prg", 814 | "ps", 815 | "ps-PK", 816 | "pt", 817 | "pt-AO", 818 | "pt-CH", 819 | "pt-CV", 820 | "pt-GQ", 821 | "pt-GW", 822 | "pt-LU", 823 | "pt-MO", 824 | "pt-MZ", 825 | "pt-PT", 826 | "pt-ST", 827 | "pt-TL", 828 | "qu", 829 | "qu-BO", 830 | "qu-EC", 831 | "rm", 832 | "rn", 833 | "ro", 834 | "ro-MD", 835 | "rof", 836 | "root", 837 | "ru", 838 | "ru-BY", 839 | "ru-KG", 840 | "ru-KZ", 841 | "ru-MD", 842 | "ru-UA", 843 | "rw", 844 | "rwk", 845 | "sah", 846 | "saq", 847 | "sat", 848 | "sat-Olck", 849 | "sbp", 850 | "sd", 851 | "sd-Arab", 852 | "sd-Deva", 853 | "se", 854 | "se-FI", 855 | "se-SE", 856 | "seh", 857 | "ses", 858 | "sg", 859 | "shi", 860 | "shi-Latn", 861 | "shi-Tfng", 862 | "si", 863 | "sk", 864 | "sl", 865 | "smn", 866 | "sn", 867 | "so", 868 | "so-DJ", 869 | "so-ET", 870 | "so-KE", 871 | "sq", 872 | "sq-MK", 873 | "sq-XK", 874 | "sr", 875 | "sr-Cyrl", 876 | "sr-Cyrl-BA", 877 | "sr-Cyrl-ME", 878 | "sr-Cyrl-XK", 879 | "sr-Latn", 880 | "sr-Latn-BA", 881 | "sr-Latn-ME", 882 | "sr-Latn-XK", 883 | "su", 884 | "su-Latn", 885 | "sv", 886 | "sv-AX", 887 | "sv-FI", 888 | "sw", 889 | "sw-CD", 890 | "sw-KE", 891 | "sw-UG", 892 | "ta", 893 | "ta-LK", 894 | "ta-MY", 895 | "ta-SG", 896 | "te", 897 | "teo", 898 | "teo-KE", 899 | "tg", 900 | "th", 901 | "ti", 902 | "ti-ER", 903 | "tk", 904 | "to", 905 | "tr", 906 | "tr-CY", 907 | "tt", 908 | "twq", 909 | "tzm", 910 | "ug", 911 | "uk", 912 | "ur", 913 | "ur-IN", 914 | "uz", 915 | "uz-Arab", 916 | "uz-Cyrl", 917 | "uz-Latn", 918 | "vai", 919 | "vai-Latn", 920 | "vai-Vaii", 921 | "vi", 922 | "vo", 923 | "vun", 924 | "wae", 925 | "wo", 926 | "xh", 927 | "xog", 928 | "yav", 929 | "yi", 930 | "yo", 931 | "yo-BJ", 932 | "yue", 933 | "yue-Hans", 934 | "yue-Hant", 935 | "zgh", 936 | "zh", 937 | "zh-Hans", 938 | "zh-Hans-HK", 939 | "zh-Hans-MO", 940 | "zh-Hans-SG", 941 | "zh-Hant", 942 | "zh-Hant-HK", 943 | "zh-Hant-MO", 944 | "zu" 945 | ] 946 | } 947 | } 948 | -------------------------------------------------------------------------------- /supplemental/characterFallbacks.json: -------------------------------------------------------------------------------- 1 | { 2 | "supplemental": { 3 | "version": { 4 | "_unicodeVersion": "13.0.0", 5 | "_cldrVersion": "37" 6 | }, 7 | "characters": { 8 | "character-fallback": { 9 | "U+00AD": [ 10 | { 11 | "substitute": "-" 12 | } 13 | ], 14 | "U+FF9E": [ 15 | { 16 | "substitute": "゛" 17 | } 18 | ], 19 | "U+FF9F": [ 20 | { 21 | "substitute": "゜" 22 | } 23 | ], 24 | "U+3000": [ 25 | { 26 | "substitute": " " 27 | } 28 | ], 29 | "U+2010": [ 30 | { 31 | "substitute": "-" 32 | } 33 | ], 34 | "U+2011": [ 35 | { 36 | "substitute": "-" 37 | } 38 | ], 39 | "U+2012": [ 40 | { 41 | "substitute": "-" 42 | } 43 | ], 44 | "U+2013": [ 45 | { 46 | "substitute": "-" 47 | } 48 | ], 49 | "U+2014": [ 50 | { 51 | "substitute": "-" 52 | } 53 | ], 54 | "U+2015": [ 55 | { 56 | "substitute": "—" 57 | }, 58 | { 59 | "substitute": "-" 60 | } 61 | ], 62 | "U+066B": [ 63 | { 64 | "substitute": "," 65 | } 66 | ], 67 | "U+066C": [ 68 | { 69 | "substitute": "'" 70 | } 71 | ], 72 | "U+2018": [ 73 | { 74 | "substitute": "'" 75 | } 76 | ], 77 | "U+2019": [ 78 | { 79 | "substitute": "'" 80 | } 81 | ], 82 | "U+201A": [ 83 | { 84 | "substitute": "," 85 | } 86 | ], 87 | "U+201B": [ 88 | { 89 | "substitute": "'" 90 | } 91 | ], 92 | "U+201C": [ 93 | { 94 | "substitute": "\\\"" 95 | } 96 | ], 97 | "U+201D": [ 98 | { 99 | "substitute": "\\\"" 100 | } 101 | ], 102 | "U+201E": [ 103 | { 104 | "substitute": ",," 105 | } 106 | ], 107 | "U+201F": [ 108 | { 109 | "substitute": "\\\"" 110 | } 111 | ], 112 | "U+00AB": [ 113 | { 114 | "substitute": "<<" 115 | } 116 | ], 117 | "U+00BB": [ 118 | { 119 | "substitute": ">>" 120 | } 121 | ], 122 | "U+FF5F": [ 123 | { 124 | "substitute": "((" 125 | } 126 | ], 127 | "U+FF60": [ 128 | { 129 | "substitute": "))" 130 | } 131 | ], 132 | "U+2022": [ 133 | { 134 | "substitute": "·" 135 | } 136 | ], 137 | "U+2027": [ 138 | { 139 | "substitute": "·" 140 | } 141 | ], 142 | "U+05BE": [ 143 | { 144 | "substitute": "‐" 145 | }, 146 | { 147 | "substitute": "-" 148 | } 149 | ], 150 | "U+05F3": [ 151 | { 152 | "substitute": "'" 153 | } 154 | ], 155 | "U+05F4": [ 156 | { 157 | "substitute": "\\\"" 158 | } 159 | ], 160 | "U+FFE3": [ 161 | { 162 | "substitute": "¯" 163 | } 164 | ], 165 | "U+00A9": [ 166 | { 167 | "substitute": "(C)" 168 | } 169 | ], 170 | "U+00AE": [ 171 | { 172 | "substitute": "(R)" 173 | } 174 | ], 175 | "U+211E": [ 176 | { 177 | "substitute": "Rx" 178 | } 179 | ], 180 | "U+220F": [ 181 | { 182 | "substitute": "Π" 183 | } 184 | ], 185 | "U+2211": [ 186 | { 187 | "substitute": "Σ" 188 | } 189 | ], 190 | "U+2212": [ 191 | { 192 | "substitute": "-" 193 | } 194 | ], 195 | "U+2215": [ 196 | { 197 | "substitute": "/" 198 | } 199 | ], 200 | "U+2044": [ 201 | { 202 | "substitute": "/" 203 | } 204 | ], 205 | "U+2216": [ 206 | { 207 | "substitute": "\\\\" 208 | } 209 | ], 210 | "U+2223": [ 211 | { 212 | "substitute": "|" 213 | } 214 | ], 215 | "U+2225": [ 216 | { 217 | "substitute": "‖" 218 | }, 219 | { 220 | "substitute": "||" 221 | } 222 | ], 223 | "U+058F": [ 224 | { 225 | "substitute": "AMD" 226 | } 227 | ], 228 | "U+060B": [ 229 | { 230 | "substitute": "AFN" 231 | } 232 | ], 233 | "U+09F3": [ 234 | { 235 | "substitute": "BDT" 236 | } 237 | ], 238 | "U+0E3F": [ 239 | { 240 | "substitute": "THB" 241 | } 242 | ], 243 | "U+17DB": [ 244 | { 245 | "substitute": "KHR" 246 | } 247 | ], 248 | "U+20A0": [ 249 | { 250 | "substitute": "CE" 251 | } 252 | ], 253 | "U+20A1": [ 254 | { 255 | "substitute": "CRC" 256 | } 257 | ], 258 | "U+20A2": [ 259 | { 260 | "substitute": "Cr" 261 | } 262 | ], 263 | "U+20A3": [ 264 | { 265 | "substitute": "Fr." 266 | } 267 | ], 268 | "U+20A4": [ 269 | { 270 | "substitute": "L." 271 | }, 272 | { 273 | "substitute": "£" 274 | } 275 | ], 276 | "U+20A6": [ 277 | { 278 | "substitute": "NGN" 279 | } 280 | ], 281 | "U+20A7": [ 282 | { 283 | "substitute": "Pts" 284 | } 285 | ], 286 | "U+20A9": [ 287 | { 288 | "substitute": "KRW" 289 | } 290 | ], 291 | "U+FFE6": [ 292 | { 293 | "substitute": "KRW" 294 | } 295 | ], 296 | "U+20AA": [ 297 | { 298 | "substitute": "שח" 299 | }, 300 | { 301 | "substitute": "ILS" 302 | } 303 | ], 304 | "U+20AB": [ 305 | { 306 | "substitute": "đ" 307 | }, 308 | { 309 | "substitute": "VND" 310 | } 311 | ], 312 | "U+20AC": [ 313 | { 314 | "substitute": "EUR" 315 | } 316 | ], 317 | "U+20AD": [ 318 | { 319 | "substitute": "LAK" 320 | } 321 | ], 322 | "U+20AE": [ 323 | { 324 | "substitute": "MNT" 325 | } 326 | ], 327 | "U+20AF": [ 328 | { 329 | "substitute": "GRD" 330 | } 331 | ], 332 | "U+20B1": [ 333 | { 334 | "substitute": "PHP" 335 | } 336 | ], 337 | "U+20B2": [ 338 | { 339 | "substitute": "PYG" 340 | } 341 | ], 342 | "U+20B4": [ 343 | { 344 | "substitute": "UAH" 345 | } 346 | ], 347 | "U+20B5": [ 348 | { 349 | "substitute": "¢" 350 | }, 351 | { 352 | "substitute": "Ȼ" 353 | }, 354 | { 355 | "substitute": "GHS" 356 | } 357 | ], 358 | "U+20B8": [ 359 | { 360 | "substitute": "KZT" 361 | } 362 | ], 363 | "U+20B9": [ 364 | { 365 | "substitute": "INR" 366 | } 367 | ], 368 | "U+20BA": [ 369 | { 370 | "substitute": "TL" 371 | } 372 | ], 373 | "U+20BC": [ 374 | { 375 | "substitute": "AZN" 376 | } 377 | ], 378 | "U+20BD": [ 379 | { 380 | "substitute": "RUB" 381 | } 382 | ], 383 | "U+20BE": [ 384 | { 385 | "substitute": "GEL" 386 | } 387 | ], 388 | "U+215F": [ 389 | { 390 | "substitute": " 1/" 391 | } 392 | ], 393 | "U+00BD": [ 394 | { 395 | "substitute": " 1/2" 396 | } 397 | ], 398 | "U+2153": [ 399 | { 400 | "substitute": " 1/3" 401 | } 402 | ], 403 | "U+00BC": [ 404 | { 405 | "substitute": " 1/4" 406 | } 407 | ], 408 | "U+2155": [ 409 | { 410 | "substitute": " 1/5" 411 | } 412 | ], 413 | "U+2159": [ 414 | { 415 | "substitute": " 1/6" 416 | } 417 | ], 418 | "U+215B": [ 419 | { 420 | "substitute": " 1/8" 421 | } 422 | ], 423 | "U+2154": [ 424 | { 425 | "substitute": " 2/3" 426 | } 427 | ], 428 | "U+2156": [ 429 | { 430 | "substitute": " 2/5" 431 | } 432 | ], 433 | "U+00BE": [ 434 | { 435 | "substitute": " 3/4" 436 | } 437 | ], 438 | "U+2157": [ 439 | { 440 | "substitute": " 3/5" 441 | } 442 | ], 443 | "U+215C": [ 444 | { 445 | "substitute": " 3/8" 446 | } 447 | ], 448 | "U+2158": [ 449 | { 450 | "substitute": " 4/5" 451 | } 452 | ], 453 | "U+215A": [ 454 | { 455 | "substitute": " 5/6" 456 | } 457 | ], 458 | "U+215D": [ 459 | { 460 | "substitute": " 5/8" 461 | } 462 | ], 463 | "U+215E": [ 464 | { 465 | "substitute": " 7/8" 466 | } 467 | ], 468 | "U+33DF": [ 469 | { 470 | "substitute": "A/m" 471 | } 472 | ], 473 | "U+00E6": [ 474 | { 475 | "substitute": "ae" 476 | } 477 | ], 478 | "U+00C6": [ 479 | { 480 | "substitute": "AE" 481 | } 482 | ], 483 | "U+33C6": [ 484 | { 485 | "substitute": "C/kg" 486 | } 487 | ], 488 | "U+33C4": [ 489 | { 490 | "substitute": "CC" 491 | } 492 | ], 493 | "U+33A0": [ 494 | { 495 | "substitute": "cm²" 496 | } 497 | ], 498 | "U+33A4": [ 499 | { 500 | "substitute": "cm³" 501 | } 502 | ], 503 | "U+3378": [ 504 | { 505 | "substitute": "dm²" 506 | } 507 | ], 508 | "U+3379": [ 509 | { 510 | "substitute": "dm³" 511 | } 512 | ], 513 | "U+33A2": [ 514 | { 515 | "substitute": "km²" 516 | } 517 | ], 518 | "U+33A6": [ 519 | { 520 | "substitute": "km³" 521 | } 522 | ], 523 | "U+33A7": [ 524 | { 525 | "substitute": "m/s" 526 | } 527 | ], 528 | "U+33A8": [ 529 | { 530 | "substitute": "m∕s²" 531 | }, 532 | { 533 | "substitute": "m/s²" 534 | } 535 | ], 536 | "U+33A1": [ 537 | { 538 | "substitute": "m²" 539 | } 540 | ], 541 | "U+33A5": [ 542 | { 543 | "substitute": "m³" 544 | } 545 | ], 546 | "U+339F": [ 547 | { 548 | "substitute": "mm²" 549 | } 550 | ], 551 | "U+33A3": [ 552 | { 553 | "substitute": "mm³" 554 | } 555 | ], 556 | "U+0153": [ 557 | { 558 | "substitute": "oe" 559 | } 560 | ], 561 | "U+0152": [ 562 | { 563 | "substitute": "OE" 564 | } 565 | ], 566 | "U+33D7": [ 567 | { 568 | "substitute": "pH" 569 | } 570 | ], 571 | "U+33AE": [ 572 | { 573 | "substitute": "rad/s" 574 | } 575 | ], 576 | "U+33AF": [ 577 | { 578 | "substitute": "rad∕s²" 579 | }, 580 | { 581 | "substitute": "rad/s²" 582 | } 583 | ], 584 | "U+0219": [ 585 | { 586 | "substitute": "ş" 587 | } 588 | ], 589 | "U+0218": [ 590 | { 591 | "substitute": "Ş" 592 | } 593 | ], 594 | "U+00DF": [ 595 | { 596 | "substitute": "ss" 597 | } 598 | ], 599 | "U+FB05": [ 600 | { 601 | "substitute": "ſt" 602 | } 603 | ], 604 | "U+021B": [ 605 | { 606 | "substitute": "ţ" 607 | } 608 | ], 609 | "U+021A": [ 610 | { 611 | "substitute": "Ţ" 612 | } 613 | ], 614 | "U+33DE": [ 615 | { 616 | "substitute": "V/m" 617 | } 618 | ], 619 | "U+0149": [ 620 | { 621 | "substitute": "'n" 622 | } 623 | ], 624 | "U+FFA1": [ 625 | { 626 | "substitute": "ㄱ" 627 | } 628 | ], 629 | "U+FFA2": [ 630 | { 631 | "substitute": "ㄲ" 632 | } 633 | ], 634 | "U+FFA4": [ 635 | { 636 | "substitute": "ㄴ" 637 | } 638 | ], 639 | "U+FFA7": [ 640 | { 641 | "substitute": "ㄷ" 642 | } 643 | ], 644 | "U+FFA8": [ 645 | { 646 | "substitute": "ㄸ" 647 | } 648 | ], 649 | "U+FFA9": [ 650 | { 651 | "substitute": "ㄹ" 652 | } 653 | ], 654 | "U+FFB1": [ 655 | { 656 | "substitute": "ㅁ" 657 | } 658 | ], 659 | "U+FFB2": [ 660 | { 661 | "substitute": "ㅂ" 662 | } 663 | ], 664 | "U+FFB3": [ 665 | { 666 | "substitute": "ㅃ" 667 | } 668 | ], 669 | "U+FFB5": [ 670 | { 671 | "substitute": "ㅅ" 672 | } 673 | ], 674 | "U+FFB6": [ 675 | { 676 | "substitute": "ㅆ" 677 | } 678 | ], 679 | "U+FFB7": [ 680 | { 681 | "substitute": "ㅇ" 682 | } 683 | ], 684 | "U+FFB8": [ 685 | { 686 | "substitute": "ㅈ" 687 | } 688 | ], 689 | "U+FFB9": [ 690 | { 691 | "substitute": "ㅉ" 692 | } 693 | ], 694 | "U+FFBA": [ 695 | { 696 | "substitute": "ㅊ" 697 | } 698 | ], 699 | "U+FFBB": [ 700 | { 701 | "substitute": "ㅋ" 702 | } 703 | ], 704 | "U+FFBC": [ 705 | { 706 | "substitute": "ㅌ" 707 | } 708 | ], 709 | "U+FFBD": [ 710 | { 711 | "substitute": "ㅍ" 712 | } 713 | ], 714 | "U+FFBE": [ 715 | { 716 | "substitute": "ㅎ" 717 | } 718 | ], 719 | "U+FFB0": [ 720 | { 721 | "substitute": "ㅀ" 722 | } 723 | ], 724 | "U+FFB4": [ 725 | { 726 | "substitute": "ㅄ" 727 | } 728 | ], 729 | "U+FFA0": [ 730 | { 731 | "substitute": "ㅤ" 732 | } 733 | ], 734 | "U+FFC2": [ 735 | { 736 | "substitute": "ㅏ" 737 | } 738 | ], 739 | "U+FFC3": [ 740 | { 741 | "substitute": "ㅐ" 742 | } 743 | ], 744 | "U+FFC4": [ 745 | { 746 | "substitute": "ㅑ" 747 | } 748 | ], 749 | "U+FFC5": [ 750 | { 751 | "substitute": "ㅒ" 752 | } 753 | ], 754 | "U+FFC6": [ 755 | { 756 | "substitute": "ㅓ" 757 | } 758 | ], 759 | "U+FFC7": [ 760 | { 761 | "substitute": "ㅔ" 762 | } 763 | ], 764 | "U+FFCA": [ 765 | { 766 | "substitute": "ㅕ" 767 | } 768 | ], 769 | "U+FFCB": [ 770 | { 771 | "substitute": "ㅖ" 772 | } 773 | ], 774 | "U+FFCC": [ 775 | { 776 | "substitute": "ㅗ" 777 | } 778 | ], 779 | "U+FFCD": [ 780 | { 781 | "substitute": "ㅘ" 782 | } 783 | ], 784 | "U+FFCE": [ 785 | { 786 | "substitute": "ㅙ" 787 | } 788 | ], 789 | "U+FFCF": [ 790 | { 791 | "substitute": "ㅚ" 792 | } 793 | ], 794 | "U+FFD2": [ 795 | { 796 | "substitute": "ㅛ" 797 | } 798 | ], 799 | "U+FFD3": [ 800 | { 801 | "substitute": "ㅜ" 802 | } 803 | ], 804 | "U+FFD4": [ 805 | { 806 | "substitute": "ㅝ" 807 | } 808 | ], 809 | "U+FFD5": [ 810 | { 811 | "substitute": "ㅞ" 812 | } 813 | ], 814 | "U+FFD6": [ 815 | { 816 | "substitute": "ㅟ" 817 | } 818 | ], 819 | "U+FFD7": [ 820 | { 821 | "substitute": "ㅠ" 822 | } 823 | ], 824 | "U+FFDA": [ 825 | { 826 | "substitute": "ㅡ" 827 | } 828 | ], 829 | "U+FFDB": [ 830 | { 831 | "substitute": "ㅢ" 832 | } 833 | ], 834 | "U+FFDC": [ 835 | { 836 | "substitute": "ㅣ" 837 | } 838 | ], 839 | "U+FFA3": [ 840 | { 841 | "substitute": "ㄳ" 842 | } 843 | ], 844 | "U+FFA5": [ 845 | { 846 | "substitute": "ㄵ" 847 | } 848 | ], 849 | "U+FFA6": [ 850 | { 851 | "substitute": "ㄶ" 852 | } 853 | ], 854 | "U+FFAA": [ 855 | { 856 | "substitute": "ㄺ" 857 | } 858 | ], 859 | "U+FFAB": [ 860 | { 861 | "substitute": "ㄻ" 862 | } 863 | ], 864 | "U+FFAC": [ 865 | { 866 | "substitute": "ㄼ" 867 | } 868 | ], 869 | "U+FFAD": [ 870 | { 871 | "substitute": "ㄽ" 872 | } 873 | ], 874 | "U+FFAE": [ 875 | { 876 | "substitute": "ㄾ" 877 | } 878 | ], 879 | "U+FFAF": [ 880 | { 881 | "substitute": "ㄿ" 882 | } 883 | ] 884 | } 885 | } 886 | } 887 | } 888 | -------------------------------------------------------------------------------- /supplemental/calendarData.json: -------------------------------------------------------------------------------- 1 | { 2 | "supplemental": { 3 | "version": { 4 | "_unicodeVersion": "13.0.0", 5 | "_cldrVersion": "37" 6 | }, 7 | "calendarData": { 8 | "buddhist": { 9 | "calendarSystem": "solar", 10 | "eras": { 11 | "0": { 12 | "_start": "-542-01-01" 13 | } 14 | } 15 | }, 16 | "chinese": { 17 | "calendarSystem": "lunisolar", 18 | "eras": { 19 | "0": { 20 | "_start": "-2636-01-01" 21 | } 22 | } 23 | }, 24 | "coptic": { 25 | "calendarSystem": "other", 26 | "eras": { 27 | "0": { 28 | "_end": "284-08-28" 29 | }, 30 | "1": { 31 | "_start": "284-08-29" 32 | } 33 | } 34 | }, 35 | "dangi": { 36 | "calendarSystem": "lunisolar", 37 | "eras": { 38 | "0": { 39 | "_start": "-2332-01-01" 40 | } 41 | } 42 | }, 43 | "ethiopic": { 44 | "calendarSystem": "other", 45 | "eras": { 46 | "0": { 47 | "_end": "8-08-28" 48 | }, 49 | "1": { 50 | "_start": "8-08-29" 51 | } 52 | } 53 | }, 54 | "ethiopic-amete-alem": { 55 | "eras": { 56 | "0": { 57 | "_end": "-5492-08-29" 58 | } 59 | } 60 | }, 61 | "generic": {}, 62 | "gregorian": { 63 | "calendarSystem": "solar", 64 | "eras": { 65 | "0": { 66 | "_end": "0-12-31" 67 | }, 68 | "1": { 69 | "_start": "1-01-01" 70 | } 71 | } 72 | }, 73 | "hebrew": { 74 | "calendarSystem": "lunisolar", 75 | "eras": { 76 | "0": { 77 | "_start": "-3760-10-7" 78 | } 79 | } 80 | }, 81 | "indian": { 82 | "eras": { 83 | "0": { 84 | "_start": "79-01-01" 85 | } 86 | } 87 | }, 88 | "islamic": { 89 | "calendarSystem": "lunar", 90 | "eras": { 91 | "0": { 92 | "_start": "622-7-15" 93 | } 94 | } 95 | }, 96 | "islamic-civil": { 97 | "calendarSystem": "lunar", 98 | "eras": { 99 | "0": { 100 | "_start": "622-7-16" 101 | } 102 | } 103 | }, 104 | "islamic-rgsa": { 105 | "calendarSystem": "lunar", 106 | "eras": { 107 | "0": { 108 | "_start": "622-7-15" 109 | } 110 | } 111 | }, 112 | "islamic-tbla": { 113 | "calendarSystem": "lunar", 114 | "eras": { 115 | "0": { 116 | "_start": "622-7-15" 117 | } 118 | } 119 | }, 120 | "islamic-umalqura": { 121 | "calendarSystem": "lunar", 122 | "eras": { 123 | "0": { 124 | "_start": "622-7-15" 125 | } 126 | } 127 | }, 128 | "japanese": { 129 | "calendarSystem": "solar", 130 | "eras": { 131 | "0": { 132 | "_start": "645-6-19" 133 | }, 134 | "1": { 135 | "_start": "650-2-15" 136 | }, 137 | "2": { 138 | "_start": "672-1-1" 139 | }, 140 | "3": { 141 | "_start": "686-7-20" 142 | }, 143 | "4": { 144 | "_start": "701-3-21" 145 | }, 146 | "5": { 147 | "_start": "704-5-10" 148 | }, 149 | "6": { 150 | "_start": "708-1-11" 151 | }, 152 | "7": { 153 | "_start": "715-9-2" 154 | }, 155 | "8": { 156 | "_start": "717-11-17" 157 | }, 158 | "9": { 159 | "_start": "724-2-4" 160 | }, 161 | "10": { 162 | "_start": "729-8-5" 163 | }, 164 | "11": { 165 | "_start": "749-4-14" 166 | }, 167 | "12": { 168 | "_start": "749-7-2" 169 | }, 170 | "13": { 171 | "_start": "757-8-18" 172 | }, 173 | "14": { 174 | "_start": "765-1-7" 175 | }, 176 | "15": { 177 | "_start": "767-8-16" 178 | }, 179 | "16": { 180 | "_start": "770-10-1" 181 | }, 182 | "17": { 183 | "_start": "781-1-1" 184 | }, 185 | "18": { 186 | "_start": "782-8-19" 187 | }, 188 | "19": { 189 | "_start": "806-5-18" 190 | }, 191 | "20": { 192 | "_start": "810-9-19" 193 | }, 194 | "21": { 195 | "_start": "824-1-5" 196 | }, 197 | "22": { 198 | "_start": "834-1-3" 199 | }, 200 | "23": { 201 | "_start": "848-6-13" 202 | }, 203 | "24": { 204 | "_start": "851-4-28" 205 | }, 206 | "25": { 207 | "_start": "854-11-30" 208 | }, 209 | "26": { 210 | "_start": "857-2-21" 211 | }, 212 | "27": { 213 | "_start": "859-4-15" 214 | }, 215 | "28": { 216 | "_start": "877-4-16" 217 | }, 218 | "29": { 219 | "_start": "885-2-21" 220 | }, 221 | "30": { 222 | "_start": "889-4-27" 223 | }, 224 | "31": { 225 | "_start": "898-4-26" 226 | }, 227 | "32": { 228 | "_start": "901-7-15" 229 | }, 230 | "33": { 231 | "_start": "923-4-11" 232 | }, 233 | "34": { 234 | "_start": "931-4-26" 235 | }, 236 | "35": { 237 | "_start": "938-5-22" 238 | }, 239 | "36": { 240 | "_start": "947-4-22" 241 | }, 242 | "37": { 243 | "_start": "957-10-27" 244 | }, 245 | "38": { 246 | "_start": "961-2-16" 247 | }, 248 | "39": { 249 | "_start": "964-7-10" 250 | }, 251 | "40": { 252 | "_start": "968-8-13" 253 | }, 254 | "41": { 255 | "_start": "970-3-25" 256 | }, 257 | "42": { 258 | "_start": "973-12-20" 259 | }, 260 | "43": { 261 | "_start": "976-7-13" 262 | }, 263 | "44": { 264 | "_start": "978-11-29" 265 | }, 266 | "45": { 267 | "_start": "983-4-15" 268 | }, 269 | "46": { 270 | "_start": "985-4-27" 271 | }, 272 | "47": { 273 | "_start": "987-4-5" 274 | }, 275 | "48": { 276 | "_start": "989-8-8" 277 | }, 278 | "49": { 279 | "_start": "990-11-7" 280 | }, 281 | "50": { 282 | "_start": "995-2-22" 283 | }, 284 | "51": { 285 | "_start": "999-1-13" 286 | }, 287 | "52": { 288 | "_start": "1004-7-20" 289 | }, 290 | "53": { 291 | "_start": "1012-12-25" 292 | }, 293 | "54": { 294 | "_start": "1017-4-23" 295 | }, 296 | "55": { 297 | "_start": "1021-2-2" 298 | }, 299 | "56": { 300 | "_start": "1024-7-13" 301 | }, 302 | "57": { 303 | "_start": "1028-7-25" 304 | }, 305 | "58": { 306 | "_start": "1037-4-21" 307 | }, 308 | "59": { 309 | "_start": "1040-11-10" 310 | }, 311 | "60": { 312 | "_start": "1044-11-24" 313 | }, 314 | "61": { 315 | "_start": "1046-4-14" 316 | }, 317 | "62": { 318 | "_start": "1053-1-11" 319 | }, 320 | "63": { 321 | "_start": "1058-8-29" 322 | }, 323 | "64": { 324 | "_start": "1065-8-2" 325 | }, 326 | "65": { 327 | "_start": "1069-4-13" 328 | }, 329 | "66": { 330 | "_start": "1074-8-23" 331 | }, 332 | "67": { 333 | "_start": "1077-11-17" 334 | }, 335 | "68": { 336 | "_start": "1081-2-10" 337 | }, 338 | "69": { 339 | "_start": "1084-2-7" 340 | }, 341 | "70": { 342 | "_start": "1087-4-7" 343 | }, 344 | "71": { 345 | "_start": "1094-12-15" 346 | }, 347 | "72": { 348 | "_start": "1096-12-17" 349 | }, 350 | "73": { 351 | "_start": "1097-11-21" 352 | }, 353 | "74": { 354 | "_start": "1099-8-28" 355 | }, 356 | "75": { 357 | "_start": "1104-2-10" 358 | }, 359 | "76": { 360 | "_start": "1106-4-9" 361 | }, 362 | "77": { 363 | "_start": "1108-8-3" 364 | }, 365 | "78": { 366 | "_start": "1110-7-13" 367 | }, 368 | "79": { 369 | "_start": "1113-7-13" 370 | }, 371 | "80": { 372 | "_start": "1118-4-3" 373 | }, 374 | "81": { 375 | "_start": "1120-4-10" 376 | }, 377 | "82": { 378 | "_start": "1124-4-3" 379 | }, 380 | "83": { 381 | "_start": "1126-1-22" 382 | }, 383 | "84": { 384 | "_start": "1131-1-29" 385 | }, 386 | "85": { 387 | "_start": "1132-8-11" 388 | }, 389 | "86": { 390 | "_start": "1135-4-27" 391 | }, 392 | "87": { 393 | "_start": "1141-7-10" 394 | }, 395 | "88": { 396 | "_start": "1142-4-28" 397 | }, 398 | "89": { 399 | "_start": "1144-2-23" 400 | }, 401 | "90": { 402 | "_start": "1145-7-22" 403 | }, 404 | "91": { 405 | "_start": "1151-1-26" 406 | }, 407 | "92": { 408 | "_start": "1154-10-28" 409 | }, 410 | "93": { 411 | "_start": "1156-4-27" 412 | }, 413 | "94": { 414 | "_start": "1159-4-20" 415 | }, 416 | "95": { 417 | "_start": "1160-1-10" 418 | }, 419 | "96": { 420 | "_start": "1161-9-4" 421 | }, 422 | "97": { 423 | "_start": "1163-3-29" 424 | }, 425 | "98": { 426 | "_start": "1165-6-5" 427 | }, 428 | "99": { 429 | "_start": "1166-8-27" 430 | }, 431 | "100": { 432 | "_start": "1169-4-8" 433 | }, 434 | "101": { 435 | "_start": "1171-4-21" 436 | }, 437 | "102": { 438 | "_start": "1175-7-28" 439 | }, 440 | "103": { 441 | "_start": "1177-8-4" 442 | }, 443 | "104": { 444 | "_start": "1181-7-14" 445 | }, 446 | "105": { 447 | "_start": "1182-5-27" 448 | }, 449 | "106": { 450 | "_start": "1184-4-16" 451 | }, 452 | "107": { 453 | "_start": "1185-8-14" 454 | }, 455 | "108": { 456 | "_start": "1190-4-11" 457 | }, 458 | "109": { 459 | "_start": "1199-4-27" 460 | }, 461 | "110": { 462 | "_start": "1201-2-13" 463 | }, 464 | "111": { 465 | "_start": "1204-2-20" 466 | }, 467 | "112": { 468 | "_start": "1206-4-27" 469 | }, 470 | "113": { 471 | "_start": "1207-10-25" 472 | }, 473 | "114": { 474 | "_start": "1211-3-9" 475 | }, 476 | "115": { 477 | "_start": "1213-12-6" 478 | }, 479 | "116": { 480 | "_start": "1219-4-12" 481 | }, 482 | "117": { 483 | "_start": "1222-4-13" 484 | }, 485 | "118": { 486 | "_start": "1224-11-20" 487 | }, 488 | "119": { 489 | "_start": "1225-4-20" 490 | }, 491 | "120": { 492 | "_start": "1227-12-10" 493 | }, 494 | "121": { 495 | "_start": "1229-3-5" 496 | }, 497 | "122": { 498 | "_start": "1232-4-2" 499 | }, 500 | "123": { 501 | "_start": "1233-4-15" 502 | }, 503 | "124": { 504 | "_start": "1234-11-5" 505 | }, 506 | "125": { 507 | "_start": "1235-9-19" 508 | }, 509 | "126": { 510 | "_start": "1238-11-23" 511 | }, 512 | "127": { 513 | "_start": "1239-2-7" 514 | }, 515 | "128": { 516 | "_start": "1240-7-16" 517 | }, 518 | "129": { 519 | "_start": "1243-2-26" 520 | }, 521 | "130": { 522 | "_start": "1247-2-28" 523 | }, 524 | "131": { 525 | "_start": "1249-3-18" 526 | }, 527 | "132": { 528 | "_start": "1256-10-5" 529 | }, 530 | "133": { 531 | "_start": "1257-3-14" 532 | }, 533 | "134": { 534 | "_start": "1259-3-26" 535 | }, 536 | "135": { 537 | "_start": "1260-4-13" 538 | }, 539 | "136": { 540 | "_start": "1261-2-20" 541 | }, 542 | "137": { 543 | "_start": "1264-2-28" 544 | }, 545 | "138": { 546 | "_start": "1275-4-25" 547 | }, 548 | "139": { 549 | "_start": "1278-2-29" 550 | }, 551 | "140": { 552 | "_start": "1288-4-28" 553 | }, 554 | "141": { 555 | "_start": "1293-8-5" 556 | }, 557 | "142": { 558 | "_start": "1299-4-25" 559 | }, 560 | "143": { 561 | "_start": "1302-11-21" 562 | }, 563 | "144": { 564 | "_start": "1303-8-5" 565 | }, 566 | "145": { 567 | "_start": "1306-12-14" 568 | }, 569 | "146": { 570 | "_start": "1308-10-9" 571 | }, 572 | "147": { 573 | "_start": "1311-4-28" 574 | }, 575 | "148": { 576 | "_start": "1312-3-20" 577 | }, 578 | "149": { 579 | "_start": "1317-2-3" 580 | }, 581 | "150": { 582 | "_start": "1319-4-28" 583 | }, 584 | "151": { 585 | "_start": "1321-2-23" 586 | }, 587 | "152": { 588 | "_start": "1324-12-9" 589 | }, 590 | "153": { 591 | "_start": "1326-4-26" 592 | }, 593 | "154": { 594 | "_start": "1329-8-29" 595 | }, 596 | "155": { 597 | "_start": "1331-8-9" 598 | }, 599 | "156": { 600 | "_start": "1334-1-29" 601 | }, 602 | "157": { 603 | "_start": "1336-2-29" 604 | }, 605 | "158": { 606 | "_start": "1340-4-28" 607 | }, 608 | "159": { 609 | "_start": "1346-12-8" 610 | }, 611 | "160": { 612 | "_start": "1370-7-24" 613 | }, 614 | "161": { 615 | "_start": "1372-4-1" 616 | }, 617 | "162": { 618 | "_start": "1375-5-27" 619 | }, 620 | "163": { 621 | "_start": "1379-3-22" 622 | }, 623 | "164": { 624 | "_start": "1381-2-10" 625 | }, 626 | "165": { 627 | "_start": "1384-4-28" 628 | }, 629 | "166": { 630 | "_start": "1387-8-22" 631 | }, 632 | "167": { 633 | "_start": "1387-8-23" 634 | }, 635 | "168": { 636 | "_start": "1389-2-9" 637 | }, 638 | "169": { 639 | "_start": "1390-3-26" 640 | }, 641 | "170": { 642 | "_start": "1394-7-5" 643 | }, 644 | "171": { 645 | "_start": "1428-4-27" 646 | }, 647 | "172": { 648 | "_start": "1429-9-5" 649 | }, 650 | "173": { 651 | "_start": "1441-2-17" 652 | }, 653 | "174": { 654 | "_start": "1444-2-5" 655 | }, 656 | "175": { 657 | "_start": "1449-7-28" 658 | }, 659 | "176": { 660 | "_start": "1452-7-25" 661 | }, 662 | "177": { 663 | "_start": "1455-7-25" 664 | }, 665 | "178": { 666 | "_start": "1457-9-28" 667 | }, 668 | "179": { 669 | "_start": "1460-12-21" 670 | }, 671 | "180": { 672 | "_start": "1466-2-28" 673 | }, 674 | "181": { 675 | "_start": "1467-3-3" 676 | }, 677 | "182": { 678 | "_start": "1469-4-28" 679 | }, 680 | "183": { 681 | "_start": "1487-7-29" 682 | }, 683 | "184": { 684 | "_start": "1489-8-21" 685 | }, 686 | "185": { 687 | "_start": "1492-7-19" 688 | }, 689 | "186": { 690 | "_start": "1501-2-29" 691 | }, 692 | "187": { 693 | "_start": "1504-2-30" 694 | }, 695 | "188": { 696 | "_start": "1521-8-23" 697 | }, 698 | "189": { 699 | "_start": "1528-8-20" 700 | }, 701 | "190": { 702 | "_start": "1532-7-29" 703 | }, 704 | "191": { 705 | "_start": "1555-10-23" 706 | }, 707 | "192": { 708 | "_start": "1558-2-28" 709 | }, 710 | "193": { 711 | "_start": "1570-4-23" 712 | }, 713 | "194": { 714 | "_start": "1573-7-28" 715 | }, 716 | "195": { 717 | "_start": "1592-12-8" 718 | }, 719 | "196": { 720 | "_start": "1596-10-27" 721 | }, 722 | "197": { 723 | "_start": "1615-7-13" 724 | }, 725 | "198": { 726 | "_start": "1624-2-30" 727 | }, 728 | "199": { 729 | "_start": "1644-12-16" 730 | }, 731 | "200": { 732 | "_start": "1648-2-15" 733 | }, 734 | "201": { 735 | "_start": "1652-9-18" 736 | }, 737 | "202": { 738 | "_start": "1655-4-13" 739 | }, 740 | "203": { 741 | "_start": "1658-7-23" 742 | }, 743 | "204": { 744 | "_start": "1661-4-25" 745 | }, 746 | "205": { 747 | "_start": "1673-9-21" 748 | }, 749 | "206": { 750 | "_start": "1681-9-29" 751 | }, 752 | "207": { 753 | "_start": "1684-2-21" 754 | }, 755 | "208": { 756 | "_start": "1688-9-30" 757 | }, 758 | "209": { 759 | "_start": "1704-3-13" 760 | }, 761 | "210": { 762 | "_start": "1711-4-25" 763 | }, 764 | "211": { 765 | "_start": "1716-6-22" 766 | }, 767 | "212": { 768 | "_start": "1736-4-28" 769 | }, 770 | "213": { 771 | "_start": "1741-2-27" 772 | }, 773 | "214": { 774 | "_start": "1744-2-21" 775 | }, 776 | "215": { 777 | "_start": "1748-7-12" 778 | }, 779 | "216": { 780 | "_start": "1751-10-27" 781 | }, 782 | "217": { 783 | "_start": "1764-6-2" 784 | }, 785 | "218": { 786 | "_start": "1772-11-16" 787 | }, 788 | "219": { 789 | "_start": "1781-4-2" 790 | }, 791 | "220": { 792 | "_start": "1789-1-25" 793 | }, 794 | "221": { 795 | "_start": "1801-2-5" 796 | }, 797 | "222": { 798 | "_start": "1804-2-11" 799 | }, 800 | "223": { 801 | "_start": "1818-4-22" 802 | }, 803 | "224": { 804 | "_start": "1830-12-10" 805 | }, 806 | "225": { 807 | "_start": "1844-12-2" 808 | }, 809 | "226": { 810 | "_start": "1848-2-28" 811 | }, 812 | "227": { 813 | "_start": "1854-11-27" 814 | }, 815 | "228": { 816 | "_start": "1860-3-18" 817 | }, 818 | "229": { 819 | "_start": "1861-2-19" 820 | }, 821 | "230": { 822 | "_start": "1864-2-20" 823 | }, 824 | "231": { 825 | "_start": "1865-4-7" 826 | }, 827 | "232": { 828 | "_start": "1868-9-8" 829 | }, 830 | "233": { 831 | "_start": "1912-7-30" 832 | }, 833 | "234": { 834 | "_start": "1926-12-25" 835 | }, 836 | "235": { 837 | "_start": "1989-1-8" 838 | }, 839 | "236": { 840 | "_start": "2019-5-1" 841 | } 842 | } 843 | }, 844 | "persian": { 845 | "calendarSystem": "solar", 846 | "eras": { 847 | "0": { 848 | "_start": "622-01-01" 849 | } 850 | } 851 | }, 852 | "roc": { 853 | "eras": { 854 | "0": { 855 | "_end": "1911-12-31" 856 | }, 857 | "1": { 858 | "_start": "1912-01-01" 859 | } 860 | } 861 | } 862 | } 863 | } 864 | } 865 | -------------------------------------------------------------------------------- /supplemental/timeData.json: -------------------------------------------------------------------------------- 1 | { 2 | "supplemental": { 3 | "version": { 4 | "_unicodeVersion": "13.0.0", 5 | "_cldrVersion": "37" 6 | }, 7 | "timeData": { 8 | "AX": { 9 | "_allowed": "H", 10 | "_preferred": "H" 11 | }, 12 | "BQ": { 13 | "_allowed": "H", 14 | "_preferred": "H" 15 | }, 16 | "CP": { 17 | "_allowed": "H", 18 | "_preferred": "H" 19 | }, 20 | "CZ": { 21 | "_allowed": "H", 22 | "_preferred": "H" 23 | }, 24 | "DK": { 25 | "_allowed": "H", 26 | "_preferred": "H" 27 | }, 28 | "FI": { 29 | "_allowed": "H", 30 | "_preferred": "H" 31 | }, 32 | "ID": { 33 | "_allowed": "H", 34 | "_preferred": "H" 35 | }, 36 | "IS": { 37 | "_allowed": "H", 38 | "_preferred": "H" 39 | }, 40 | "ML": { 41 | "_allowed": "H", 42 | "_preferred": "H" 43 | }, 44 | "NE": { 45 | "_allowed": "H", 46 | "_preferred": "H" 47 | }, 48 | "RU": { 49 | "_allowed": "H", 50 | "_preferred": "H" 51 | }, 52 | "SE": { 53 | "_allowed": "H", 54 | "_preferred": "H" 55 | }, 56 | "SJ": { 57 | "_allowed": "H", 58 | "_preferred": "H" 59 | }, 60 | "SK": { 61 | "_allowed": "H", 62 | "_preferred": "H" 63 | }, 64 | "AS": { 65 | "_allowed": "h H", 66 | "_preferred": "h" 67 | }, 68 | "BT": { 69 | "_allowed": "h H", 70 | "_preferred": "h" 71 | }, 72 | "DJ": { 73 | "_allowed": "h H", 74 | "_preferred": "h" 75 | }, 76 | "ER": { 77 | "_allowed": "h H", 78 | "_preferred": "h" 79 | }, 80 | "GH": { 81 | "_allowed": "h H", 82 | "_preferred": "h" 83 | }, 84 | "IN": { 85 | "_allowed": "h H", 86 | "_preferred": "h" 87 | }, 88 | "LS": { 89 | "_allowed": "h H", 90 | "_preferred": "h" 91 | }, 92 | "PG": { 93 | "_allowed": "h H", 94 | "_preferred": "h" 95 | }, 96 | "PW": { 97 | "_allowed": "h H", 98 | "_preferred": "h" 99 | }, 100 | "SO": { 101 | "_allowed": "h H", 102 | "_preferred": "h" 103 | }, 104 | "TO": { 105 | "_allowed": "h H", 106 | "_preferred": "h" 107 | }, 108 | "VU": { 109 | "_allowed": "h H", 110 | "_preferred": "h" 111 | }, 112 | "WS": { 113 | "_allowed": "h H", 114 | "_preferred": "h" 115 | }, 116 | "001": { 117 | "_allowed": "H h", 118 | "_preferred": "H" 119 | }, 120 | "AL": { 121 | "_allowed": "h H hB", 122 | "_preferred": "h" 123 | }, 124 | "TD": { 125 | "_allowed": "h H hB", 126 | "_preferred": "h" 127 | }, 128 | "ca_ES": { 129 | "_allowed": "H h hB", 130 | "_preferred": "H" 131 | }, 132 | "CF": { 133 | "_allowed": "H h hB", 134 | "_preferred": "H" 135 | }, 136 | "CM": { 137 | "_allowed": "H h hB", 138 | "_preferred": "H" 139 | }, 140 | "fr_CA": { 141 | "_allowed": "H h hB", 142 | "_preferred": "H" 143 | }, 144 | "gl_ES": { 145 | "_allowed": "H h hB", 146 | "_preferred": "H" 147 | }, 148 | "it_CH": { 149 | "_allowed": "H h hB", 150 | "_preferred": "H" 151 | }, 152 | "it_IT": { 153 | "_allowed": "H h hB", 154 | "_preferred": "H" 155 | }, 156 | "LU": { 157 | "_allowed": "H h hB", 158 | "_preferred": "H" 159 | }, 160 | "NP": { 161 | "_allowed": "H h hB", 162 | "_preferred": "H" 163 | }, 164 | "PF": { 165 | "_allowed": "H h hB", 166 | "_preferred": "H" 167 | }, 168 | "SC": { 169 | "_allowed": "H h hB", 170 | "_preferred": "H" 171 | }, 172 | "SM": { 173 | "_allowed": "H h hB", 174 | "_preferred": "H" 175 | }, 176 | "SN": { 177 | "_allowed": "H h hB", 178 | "_preferred": "H" 179 | }, 180 | "TF": { 181 | "_allowed": "H h hB", 182 | "_preferred": "H" 183 | }, 184 | "VA": { 185 | "_allowed": "H h hB", 186 | "_preferred": "H" 187 | }, 188 | "CY": { 189 | "_allowed": "h H hb hB", 190 | "_preferred": "h" 191 | }, 192 | "GR": { 193 | "_allowed": "h H hb hB", 194 | "_preferred": "h" 195 | }, 196 | "CO": { 197 | "_allowed": "h H hB hb", 198 | "_preferred": "h" 199 | }, 200 | "DO": { 201 | "_allowed": "h H hB hb", 202 | "_preferred": "h" 203 | }, 204 | "KP": { 205 | "_allowed": "h H hB hb", 206 | "_preferred": "h" 207 | }, 208 | "KR": { 209 | "_allowed": "h H hB hb", 210 | "_preferred": "h" 211 | }, 212 | "NA": { 213 | "_allowed": "h H hB hb", 214 | "_preferred": "h" 215 | }, 216 | "PA": { 217 | "_allowed": "h H hB hb", 218 | "_preferred": "h" 219 | }, 220 | "PR": { 221 | "_allowed": "h H hB hb", 222 | "_preferred": "h" 223 | }, 224 | "VE": { 225 | "_allowed": "h H hB hb", 226 | "_preferred": "h" 227 | }, 228 | "AC": { 229 | "_allowed": "H h hb hB", 230 | "_preferred": "H" 231 | }, 232 | "AI": { 233 | "_allowed": "H h hb hB", 234 | "_preferred": "H" 235 | }, 236 | "BW": { 237 | "_allowed": "H h hb hB", 238 | "_preferred": "H" 239 | }, 240 | "BZ": { 241 | "_allowed": "H h hb hB", 242 | "_preferred": "H" 243 | }, 244 | "CC": { 245 | "_allowed": "H h hb hB", 246 | "_preferred": "H" 247 | }, 248 | "CK": { 249 | "_allowed": "H h hb hB", 250 | "_preferred": "H" 251 | }, 252 | "CX": { 253 | "_allowed": "H h hb hB", 254 | "_preferred": "H" 255 | }, 256 | "DG": { 257 | "_allowed": "H h hb hB", 258 | "_preferred": "H" 259 | }, 260 | "FK": { 261 | "_allowed": "H h hb hB", 262 | "_preferred": "H" 263 | }, 264 | "GB": { 265 | "_allowed": "H h hb hB", 266 | "_preferred": "H" 267 | }, 268 | "GG": { 269 | "_allowed": "H h hb hB", 270 | "_preferred": "H" 271 | }, 272 | "GI": { 273 | "_allowed": "H h hb hB", 274 | "_preferred": "H" 275 | }, 276 | "IE": { 277 | "_allowed": "H h hb hB", 278 | "_preferred": "H" 279 | }, 280 | "IM": { 281 | "_allowed": "H h hb hB", 282 | "_preferred": "H" 283 | }, 284 | "IO": { 285 | "_allowed": "H h hb hB", 286 | "_preferred": "H" 287 | }, 288 | "JE": { 289 | "_allowed": "H h hb hB", 290 | "_preferred": "H" 291 | }, 292 | "LT": { 293 | "_allowed": "H h hb hB", 294 | "_preferred": "H" 295 | }, 296 | "MK": { 297 | "_allowed": "H h hb hB", 298 | "_preferred": "H" 299 | }, 300 | "MN": { 301 | "_allowed": "H h hb hB", 302 | "_preferred": "H" 303 | }, 304 | "MS": { 305 | "_allowed": "H h hb hB", 306 | "_preferred": "H" 307 | }, 308 | "NF": { 309 | "_allowed": "H h hb hB", 310 | "_preferred": "H" 311 | }, 312 | "NG": { 313 | "_allowed": "H h hb hB", 314 | "_preferred": "H" 315 | }, 316 | "NR": { 317 | "_allowed": "H h hb hB", 318 | "_preferred": "H" 319 | }, 320 | "NU": { 321 | "_allowed": "H h hb hB", 322 | "_preferred": "H" 323 | }, 324 | "PN": { 325 | "_allowed": "H h hb hB", 326 | "_preferred": "H" 327 | }, 328 | "SH": { 329 | "_allowed": "H h hb hB", 330 | "_preferred": "H" 331 | }, 332 | "SX": { 333 | "_allowed": "H h hb hB", 334 | "_preferred": "H" 335 | }, 336 | "TA": { 337 | "_allowed": "H h hb hB", 338 | "_preferred": "H" 339 | }, 340 | "ZA": { 341 | "_allowed": "H h hb hB", 342 | "_preferred": "H" 343 | }, 344 | "af_ZA": { 345 | "_allowed": "H h hB hb", 346 | "_preferred": "H" 347 | }, 348 | "AR": { 349 | "_allowed": "H h hB hb", 350 | "_preferred": "H" 351 | }, 352 | "CL": { 353 | "_allowed": "H h hB hb", 354 | "_preferred": "H" 355 | }, 356 | "CR": { 357 | "_allowed": "H h hB hb", 358 | "_preferred": "H" 359 | }, 360 | "CU": { 361 | "_allowed": "H h hB hb", 362 | "_preferred": "H" 363 | }, 364 | "EA": { 365 | "_allowed": "H h hB hb", 366 | "_preferred": "H" 367 | }, 368 | "es_BO": { 369 | "_allowed": "H h hB hb", 370 | "_preferred": "H" 371 | }, 372 | "es_BR": { 373 | "_allowed": "H h hB hb", 374 | "_preferred": "H" 375 | }, 376 | "es_EC": { 377 | "_allowed": "H h hB hb", 378 | "_preferred": "H" 379 | }, 380 | "es_ES": { 381 | "_allowed": "H h hB hb", 382 | "_preferred": "H" 383 | }, 384 | "es_GQ": { 385 | "_allowed": "H h hB hb", 386 | "_preferred": "H" 387 | }, 388 | "es_PE": { 389 | "_allowed": "H h hB hb", 390 | "_preferred": "H" 391 | }, 392 | "GT": { 393 | "_allowed": "H h hB hb", 394 | "_preferred": "H" 395 | }, 396 | "HN": { 397 | "_allowed": "H h hB hb", 398 | "_preferred": "H" 399 | }, 400 | "IC": { 401 | "_allowed": "H h hB hb", 402 | "_preferred": "H" 403 | }, 404 | "KG": { 405 | "_allowed": "H h hB hb", 406 | "_preferred": "H" 407 | }, 408 | "KM": { 409 | "_allowed": "H h hB hb", 410 | "_preferred": "H" 411 | }, 412 | "LK": { 413 | "_allowed": "H h hB hb", 414 | "_preferred": "H" 415 | }, 416 | "MA": { 417 | "_allowed": "H h hB hb", 418 | "_preferred": "H" 419 | }, 420 | "MX": { 421 | "_allowed": "H h hB hb", 422 | "_preferred": "H" 423 | }, 424 | "NI": { 425 | "_allowed": "H h hB hb", 426 | "_preferred": "H" 427 | }, 428 | "PY": { 429 | "_allowed": "H h hB hb", 430 | "_preferred": "H" 431 | }, 432 | "SV": { 433 | "_allowed": "H h hB hb", 434 | "_preferred": "H" 435 | }, 436 | "UY": { 437 | "_allowed": "H h hB hb", 438 | "_preferred": "H" 439 | }, 440 | "JP": { 441 | "_allowed": "H h K", 442 | "_preferred": "H" 443 | }, 444 | "AD": { 445 | "_allowed": "H hB", 446 | "_preferred": "H" 447 | }, 448 | "AM": { 449 | "_allowed": "H hB", 450 | "_preferred": "H" 451 | }, 452 | "AO": { 453 | "_allowed": "H hB", 454 | "_preferred": "H" 455 | }, 456 | "AT": { 457 | "_allowed": "H hB", 458 | "_preferred": "H" 459 | }, 460 | "AW": { 461 | "_allowed": "H hB", 462 | "_preferred": "H" 463 | }, 464 | "BE": { 465 | "_allowed": "H hB", 466 | "_preferred": "H" 467 | }, 468 | "BF": { 469 | "_allowed": "H hB", 470 | "_preferred": "H" 471 | }, 472 | "BJ": { 473 | "_allowed": "H hB", 474 | "_preferred": "H" 475 | }, 476 | "BL": { 477 | "_allowed": "H hB", 478 | "_preferred": "H" 479 | }, 480 | "BR": { 481 | "_allowed": "H hB", 482 | "_preferred": "H" 483 | }, 484 | "CG": { 485 | "_allowed": "H hB", 486 | "_preferred": "H" 487 | }, 488 | "CI": { 489 | "_allowed": "H hB", 490 | "_preferred": "H" 491 | }, 492 | "CV": { 493 | "_allowed": "H hB", 494 | "_preferred": "H" 495 | }, 496 | "DE": { 497 | "_allowed": "H hB", 498 | "_preferred": "H" 499 | }, 500 | "EE": { 501 | "_allowed": "H hB", 502 | "_preferred": "H" 503 | }, 504 | "FR": { 505 | "_allowed": "H hB", 506 | "_preferred": "H" 507 | }, 508 | "GA": { 509 | "_allowed": "H hB", 510 | "_preferred": "H" 511 | }, 512 | "GF": { 513 | "_allowed": "H hB", 514 | "_preferred": "H" 515 | }, 516 | "GN": { 517 | "_allowed": "H hB", 518 | "_preferred": "H" 519 | }, 520 | "GP": { 521 | "_allowed": "H hB", 522 | "_preferred": "H" 523 | }, 524 | "GW": { 525 | "_allowed": "H hB", 526 | "_preferred": "H" 527 | }, 528 | "HR": { 529 | "_allowed": "H hB", 530 | "_preferred": "H" 531 | }, 532 | "IL": { 533 | "_allowed": "H hB", 534 | "_preferred": "H" 535 | }, 536 | "IT": { 537 | "_allowed": "H hB", 538 | "_preferred": "H" 539 | }, 540 | "KZ": { 541 | "_allowed": "H hB", 542 | "_preferred": "H" 543 | }, 544 | "MC": { 545 | "_allowed": "H hB", 546 | "_preferred": "H" 547 | }, 548 | "MD": { 549 | "_allowed": "H hB", 550 | "_preferred": "H" 551 | }, 552 | "MF": { 553 | "_allowed": "H hB", 554 | "_preferred": "H" 555 | }, 556 | "MQ": { 557 | "_allowed": "H hB", 558 | "_preferred": "H" 559 | }, 560 | "MZ": { 561 | "_allowed": "H hB", 562 | "_preferred": "H" 563 | }, 564 | "NC": { 565 | "_allowed": "H hB", 566 | "_preferred": "H" 567 | }, 568 | "NL": { 569 | "_allowed": "H hB", 570 | "_preferred": "H" 571 | }, 572 | "PM": { 573 | "_allowed": "H hB", 574 | "_preferred": "H" 575 | }, 576 | "PT": { 577 | "_allowed": "H hB", 578 | "_preferred": "H" 579 | }, 580 | "RE": { 581 | "_allowed": "H hB", 582 | "_preferred": "H" 583 | }, 584 | "RO": { 585 | "_allowed": "H hB", 586 | "_preferred": "H" 587 | }, 588 | "SI": { 589 | "_allowed": "H hB", 590 | "_preferred": "H" 591 | }, 592 | "SR": { 593 | "_allowed": "H hB", 594 | "_preferred": "H" 595 | }, 596 | "ST": { 597 | "_allowed": "H hB", 598 | "_preferred": "H" 599 | }, 600 | "TG": { 601 | "_allowed": "H hB", 602 | "_preferred": "H" 603 | }, 604 | "TR": { 605 | "_allowed": "H hB", 606 | "_preferred": "H" 607 | }, 608 | "WF": { 609 | "_allowed": "H hB", 610 | "_preferred": "H" 611 | }, 612 | "YT": { 613 | "_allowed": "H hB", 614 | "_preferred": "H" 615 | }, 616 | "BD": { 617 | "_allowed": "h hB H", 618 | "_preferred": "h" 619 | }, 620 | "PK": { 621 | "_allowed": "h hB H", 622 | "_preferred": "h" 623 | }, 624 | "AZ": { 625 | "_allowed": "H hB h", 626 | "_preferred": "H" 627 | }, 628 | "BA": { 629 | "_allowed": "H hB h", 630 | "_preferred": "H" 631 | }, 632 | "BG": { 633 | "_allowed": "H hB h", 634 | "_preferred": "H" 635 | }, 636 | "CH": { 637 | "_allowed": "H hB h", 638 | "_preferred": "H" 639 | }, 640 | "GE": { 641 | "_allowed": "H hB h", 642 | "_preferred": "H" 643 | }, 644 | "LI": { 645 | "_allowed": "H hB h", 646 | "_preferred": "H" 647 | }, 648 | "ME": { 649 | "_allowed": "H hB h", 650 | "_preferred": "H" 651 | }, 652 | "RS": { 653 | "_allowed": "H hB h", 654 | "_preferred": "H" 655 | }, 656 | "UA": { 657 | "_allowed": "H hB h", 658 | "_preferred": "H" 659 | }, 660 | "UZ": { 661 | "_allowed": "H hB h", 662 | "_preferred": "H" 663 | }, 664 | "XK": { 665 | "_allowed": "H hB h", 666 | "_preferred": "H" 667 | }, 668 | "AG": { 669 | "_allowed": "h hb H hB", 670 | "_preferred": "h" 671 | }, 672 | "AU": { 673 | "_allowed": "h hb H hB", 674 | "_preferred": "h" 675 | }, 676 | "BB": { 677 | "_allowed": "h hb H hB", 678 | "_preferred": "h" 679 | }, 680 | "BM": { 681 | "_allowed": "h hb H hB", 682 | "_preferred": "h" 683 | }, 684 | "BS": { 685 | "_allowed": "h hb H hB", 686 | "_preferred": "h" 687 | }, 688 | "CA": { 689 | "_allowed": "h hb H hB", 690 | "_preferred": "h" 691 | }, 692 | "DM": { 693 | "_allowed": "h hb H hB", 694 | "_preferred": "h" 695 | }, 696 | "en_001": { 697 | "_allowed": "h hb H hB", 698 | "_preferred": "h" 699 | }, 700 | "FJ": { 701 | "_allowed": "h hb H hB", 702 | "_preferred": "h" 703 | }, 704 | "FM": { 705 | "_allowed": "h hb H hB", 706 | "_preferred": "h" 707 | }, 708 | "GD": { 709 | "_allowed": "h hb H hB", 710 | "_preferred": "h" 711 | }, 712 | "GM": { 713 | "_allowed": "h hb H hB", 714 | "_preferred": "h" 715 | }, 716 | "GU": { 717 | "_allowed": "h hb H hB", 718 | "_preferred": "h" 719 | }, 720 | "GY": { 721 | "_allowed": "h hb H hB", 722 | "_preferred": "h" 723 | }, 724 | "JM": { 725 | "_allowed": "h hb H hB", 726 | "_preferred": "h" 727 | }, 728 | "KI": { 729 | "_allowed": "h hb H hB", 730 | "_preferred": "h" 731 | }, 732 | "KN": { 733 | "_allowed": "h hb H hB", 734 | "_preferred": "h" 735 | }, 736 | "KY": { 737 | "_allowed": "h hb H hB", 738 | "_preferred": "h" 739 | }, 740 | "LC": { 741 | "_allowed": "h hb H hB", 742 | "_preferred": "h" 743 | }, 744 | "LR": { 745 | "_allowed": "h hb H hB", 746 | "_preferred": "h" 747 | }, 748 | "MH": { 749 | "_allowed": "h hb H hB", 750 | "_preferred": "h" 751 | }, 752 | "MP": { 753 | "_allowed": "h hb H hB", 754 | "_preferred": "h" 755 | }, 756 | "MW": { 757 | "_allowed": "h hb H hB", 758 | "_preferred": "h" 759 | }, 760 | "NZ": { 761 | "_allowed": "h hb H hB", 762 | "_preferred": "h" 763 | }, 764 | "SB": { 765 | "_allowed": "h hb H hB", 766 | "_preferred": "h" 767 | }, 768 | "SG": { 769 | "_allowed": "h hb H hB", 770 | "_preferred": "h" 771 | }, 772 | "SL": { 773 | "_allowed": "h hb H hB", 774 | "_preferred": "h" 775 | }, 776 | "SS": { 777 | "_allowed": "h hb H hB", 778 | "_preferred": "h" 779 | }, 780 | "SZ": { 781 | "_allowed": "h hb H hB", 782 | "_preferred": "h" 783 | }, 784 | "TC": { 785 | "_allowed": "h hb H hB", 786 | "_preferred": "h" 787 | }, 788 | "TT": { 789 | "_allowed": "h hb H hB", 790 | "_preferred": "h" 791 | }, 792 | "UM": { 793 | "_allowed": "h hb H hB", 794 | "_preferred": "h" 795 | }, 796 | "US": { 797 | "_allowed": "h hb H hB", 798 | "_preferred": "h" 799 | }, 800 | "VC": { 801 | "_allowed": "h hb H hB", 802 | "_preferred": "h" 803 | }, 804 | "VG": { 805 | "_allowed": "h hb H hB", 806 | "_preferred": "h" 807 | }, 808 | "VI": { 809 | "_allowed": "h hb H hB", 810 | "_preferred": "h" 811 | }, 812 | "ZM": { 813 | "_allowed": "h hb H hB", 814 | "_preferred": "h" 815 | }, 816 | "BO": { 817 | "_allowed": "H hB h hb", 818 | "_preferred": "H" 819 | }, 820 | "EC": { 821 | "_allowed": "H hB h hb", 822 | "_preferred": "H" 823 | }, 824 | "ES": { 825 | "_allowed": "H hB h hb", 826 | "_preferred": "H" 827 | }, 828 | "GQ": { 829 | "_allowed": "H hB h hb", 830 | "_preferred": "H" 831 | }, 832 | "PE": { 833 | "_allowed": "H hB h hb", 834 | "_preferred": "H" 835 | }, 836 | "AE": { 837 | "_allowed": "h hB hb H", 838 | "_preferred": "h" 839 | }, 840 | "ar_001": { 841 | "_allowed": "h hB hb H", 842 | "_preferred": "h" 843 | }, 844 | "BH": { 845 | "_allowed": "h hB hb H", 846 | "_preferred": "h" 847 | }, 848 | "DZ": { 849 | "_allowed": "h hB hb H", 850 | "_preferred": "h" 851 | }, 852 | "EG": { 853 | "_allowed": "h hB hb H", 854 | "_preferred": "h" 855 | }, 856 | "EH": { 857 | "_allowed": "h hB hb H", 858 | "_preferred": "h" 859 | }, 860 | "IQ": { 861 | "_allowed": "h hB hb H", 862 | "_preferred": "h" 863 | }, 864 | "JO": { 865 | "_allowed": "h hB hb H", 866 | "_preferred": "h" 867 | }, 868 | "KW": { 869 | "_allowed": "h hB hb H", 870 | "_preferred": "h" 871 | }, 872 | "LB": { 873 | "_allowed": "h hB hb H", 874 | "_preferred": "h" 875 | }, 876 | "LY": { 877 | "_allowed": "h hB hb H", 878 | "_preferred": "h" 879 | }, 880 | "MR": { 881 | "_allowed": "h hB hb H", 882 | "_preferred": "h" 883 | }, 884 | "OM": { 885 | "_allowed": "h hB hb H", 886 | "_preferred": "h" 887 | }, 888 | "PH": { 889 | "_allowed": "h hB hb H", 890 | "_preferred": "h" 891 | }, 892 | "PS": { 893 | "_allowed": "h hB hb H", 894 | "_preferred": "h" 895 | }, 896 | "QA": { 897 | "_allowed": "h hB hb H", 898 | "_preferred": "h" 899 | }, 900 | "SA": { 901 | "_allowed": "h hB hb H", 902 | "_preferred": "h" 903 | }, 904 | "SD": { 905 | "_allowed": "h hB hb H", 906 | "_preferred": "h" 907 | }, 908 | "SY": { 909 | "_allowed": "h hB hb H", 910 | "_preferred": "h" 911 | }, 912 | "TN": { 913 | "_allowed": "h hB hb H", 914 | "_preferred": "h" 915 | }, 916 | "YE": { 917 | "_allowed": "h hB hb H", 918 | "_preferred": "h" 919 | }, 920 | "AF": { 921 | "_allowed": "H hb hB h", 922 | "_preferred": "H" 923 | }, 924 | "LA": { 925 | "_allowed": "H hb hB h", 926 | "_preferred": "H" 927 | }, 928 | "LV": { 929 | "_allowed": "H hB hb h", 930 | "_preferred": "H" 931 | }, 932 | "TL": { 933 | "_allowed": "H hB hb h", 934 | "_preferred": "H" 935 | }, 936 | "zu_ZA": { 937 | "_allowed": "H hB hb h", 938 | "_preferred": "H" 939 | }, 940 | "CD": { 941 | "_allowed": "hB H", 942 | "_preferred": "H" 943 | }, 944 | "IR": { 945 | "_allowed": "hB H", 946 | "_preferred": "H" 947 | }, 948 | "hi_IN": { 949 | "_allowed": "hB h H", 950 | "_preferred": "h" 951 | }, 952 | "kn_IN": { 953 | "_allowed": "hB h H", 954 | "_preferred": "h" 955 | }, 956 | "ml_IN": { 957 | "_allowed": "hB h H", 958 | "_preferred": "h" 959 | }, 960 | "te_IN": { 961 | "_allowed": "hB h H", 962 | "_preferred": "h" 963 | }, 964 | "KH": { 965 | "_allowed": "hB h H hb", 966 | "_preferred": "h" 967 | }, 968 | "ta_IN": { 969 | "_allowed": "hB h hb H", 970 | "_preferred": "h" 971 | }, 972 | "BN": { 973 | "_allowed": "hb hB h H", 974 | "_preferred": "h" 975 | }, 976 | "MY": { 977 | "_allowed": "hb hB h H", 978 | "_preferred": "h" 979 | }, 980 | "CN": { 981 | "_allowed": "hB hb h H", 982 | "_preferred": "h" 983 | }, 984 | "ET": { 985 | "_allowed": "hB hb h H", 986 | "_preferred": "h" 987 | }, 988 | "gu_IN": { 989 | "_allowed": "hB hb h H", 990 | "_preferred": "h" 991 | }, 992 | "HK": { 993 | "_allowed": "hB hb h H", 994 | "_preferred": "h" 995 | }, 996 | "MO": { 997 | "_allowed": "hB hb h H", 998 | "_preferred": "h" 999 | }, 1000 | "mr_IN": { 1001 | "_allowed": "hB hb h H", 1002 | "_preferred": "h" 1003 | }, 1004 | "pa_IN": { 1005 | "_allowed": "hB hb h H", 1006 | "_preferred": "h" 1007 | }, 1008 | "TW": { 1009 | "_allowed": "hB hb h H", 1010 | "_preferred": "h" 1011 | }, 1012 | "KE": { 1013 | "_allowed": "hB hb H h", 1014 | "_preferred": "H" 1015 | }, 1016 | "MM": { 1017 | "_allowed": "hB hb H h", 1018 | "_preferred": "H" 1019 | }, 1020 | "TZ": { 1021 | "_allowed": "hB hb H h", 1022 | "_preferred": "H" 1023 | }, 1024 | "UG": { 1025 | "_allowed": "hB hb H h", 1026 | "_preferred": "H" 1027 | } 1028 | } 1029 | } 1030 | } 1031 | -------------------------------------------------------------------------------- /supplemental/codeMappings.json: -------------------------------------------------------------------------------- 1 | { 2 | "supplemental": { 3 | "version": { 4 | "_unicodeVersion": "13.0.0", 5 | "_cldrVersion": "37" 6 | }, 7 | "codeMappings": { 8 | "AA": { 9 | "_numeric": "958", 10 | "_alpha3": "AAA" 11 | }, 12 | "AC": { 13 | "_alpha3": "ASC" 14 | }, 15 | "AD": { 16 | "_numeric": "020", 17 | "_alpha3": "AND", 18 | "_fips10": "AN" 19 | }, 20 | "AE": { 21 | "_numeric": "784", 22 | "_alpha3": "ARE" 23 | }, 24 | "AF": { 25 | "_numeric": "004", 26 | "_alpha3": "AFG" 27 | }, 28 | "AG": { 29 | "_numeric": "028", 30 | "_alpha3": "ATG", 31 | "_fips10": "AC" 32 | }, 33 | "AI": { 34 | "_numeric": "660", 35 | "_alpha3": "AIA", 36 | "_fips10": "AV" 37 | }, 38 | "AL": { 39 | "_numeric": "008", 40 | "_alpha3": "ALB" 41 | }, 42 | "AM": { 43 | "_numeric": "051", 44 | "_alpha3": "ARM" 45 | }, 46 | "AN": { 47 | "_numeric": "530", 48 | "_alpha3": "ANT", 49 | "_fips10": "NT" 50 | }, 51 | "AO": { 52 | "_numeric": "024", 53 | "_alpha3": "AGO" 54 | }, 55 | "AQ": { 56 | "_numeric": "010", 57 | "_alpha3": "ATA", 58 | "_fips10": "AY" 59 | }, 60 | "AR": { 61 | "_numeric": "032", 62 | "_alpha3": "ARG" 63 | }, 64 | "AS": { 65 | "_numeric": "016", 66 | "_alpha3": "ASM", 67 | "_fips10": "AQ" 68 | }, 69 | "AT": { 70 | "_numeric": "040", 71 | "_alpha3": "AUT", 72 | "_fips10": "AU" 73 | }, 74 | "AU": { 75 | "_numeric": "036", 76 | "_alpha3": "AUS", 77 | "_fips10": "AS" 78 | }, 79 | "AW": { 80 | "_numeric": "533", 81 | "_alpha3": "ABW", 82 | "_fips10": "AA" 83 | }, 84 | "AX": { 85 | "_numeric": "248", 86 | "_alpha3": "ALA" 87 | }, 88 | "AZ": { 89 | "_numeric": "031", 90 | "_alpha3": "AZE", 91 | "_fips10": "AJ" 92 | }, 93 | "BA": { 94 | "_numeric": "070", 95 | "_alpha3": "BIH", 96 | "_fips10": "BK" 97 | }, 98 | "BB": { 99 | "_numeric": "052", 100 | "_alpha3": "BRB" 101 | }, 102 | "BD": { 103 | "_numeric": "050", 104 | "_alpha3": "BGD", 105 | "_fips10": "BG" 106 | }, 107 | "BE": { 108 | "_numeric": "056", 109 | "_alpha3": "BEL" 110 | }, 111 | "BF": { 112 | "_numeric": "854", 113 | "_alpha3": "BFA", 114 | "_fips10": "UV" 115 | }, 116 | "BG": { 117 | "_numeric": "100", 118 | "_alpha3": "BGR", 119 | "_fips10": "BU" 120 | }, 121 | "BH": { 122 | "_numeric": "048", 123 | "_alpha3": "BHR", 124 | "_fips10": "BA" 125 | }, 126 | "BI": { 127 | "_numeric": "108", 128 | "_alpha3": "BDI", 129 | "_fips10": "BY" 130 | }, 131 | "BJ": { 132 | "_numeric": "204", 133 | "_alpha3": "BEN", 134 | "_fips10": "BN" 135 | }, 136 | "BL": { 137 | "_numeric": "652", 138 | "_alpha3": "BLM", 139 | "_fips10": "TB" 140 | }, 141 | "BM": { 142 | "_numeric": "060", 143 | "_alpha3": "BMU", 144 | "_fips10": "BD" 145 | }, 146 | "BN": { 147 | "_numeric": "096", 148 | "_alpha3": "BRN", 149 | "_fips10": "BX" 150 | }, 151 | "BO": { 152 | "_numeric": "068", 153 | "_alpha3": "BOL", 154 | "_fips10": "BL" 155 | }, 156 | "BQ": { 157 | "_numeric": "535", 158 | "_alpha3": "BES" 159 | }, 160 | "BR": { 161 | "_numeric": "076", 162 | "_alpha3": "BRA" 163 | }, 164 | "BS": { 165 | "_numeric": "044", 166 | "_alpha3": "BHS", 167 | "_fips10": "BF" 168 | }, 169 | "BT": { 170 | "_numeric": "064", 171 | "_alpha3": "BTN" 172 | }, 173 | "BU": { 174 | "_numeric": "104", 175 | "_alpha3": "BUR" 176 | }, 177 | "BV": { 178 | "_numeric": "074", 179 | "_alpha3": "BVT" 180 | }, 181 | "BW": { 182 | "_numeric": "072", 183 | "_alpha3": "BWA", 184 | "_fips10": "BC" 185 | }, 186 | "BY": { 187 | "_numeric": "112", 188 | "_alpha3": "BLR", 189 | "_fips10": "BO" 190 | }, 191 | "BZ": { 192 | "_numeric": "084", 193 | "_alpha3": "BLZ", 194 | "_fips10": "BH" 195 | }, 196 | "CA": { 197 | "_numeric": "124", 198 | "_alpha3": "CAN" 199 | }, 200 | "CC": { 201 | "_numeric": "166", 202 | "_alpha3": "CCK", 203 | "_fips10": "CK" 204 | }, 205 | "CD": { 206 | "_numeric": "180", 207 | "_alpha3": "COD", 208 | "_fips10": "CG" 209 | }, 210 | "CF": { 211 | "_numeric": "140", 212 | "_alpha3": "CAF", 213 | "_fips10": "CT" 214 | }, 215 | "CG": { 216 | "_numeric": "178", 217 | "_alpha3": "COG", 218 | "_fips10": "CF" 219 | }, 220 | "CH": { 221 | "_numeric": "756", 222 | "_alpha3": "CHE", 223 | "_fips10": "SZ" 224 | }, 225 | "CI": { 226 | "_numeric": "384", 227 | "_alpha3": "CIV", 228 | "_fips10": "IV" 229 | }, 230 | "CK": { 231 | "_numeric": "184", 232 | "_alpha3": "COK", 233 | "_fips10": "CW" 234 | }, 235 | "CL": { 236 | "_numeric": "152", 237 | "_alpha3": "CHL", 238 | "_fips10": "CI" 239 | }, 240 | "CM": { 241 | "_numeric": "120", 242 | "_alpha3": "CMR" 243 | }, 244 | "CN": { 245 | "_numeric": "156", 246 | "_alpha3": "CHN", 247 | "_fips10": "CH" 248 | }, 249 | "CO": { 250 | "_numeric": "170", 251 | "_alpha3": "COL" 252 | }, 253 | "CP": { 254 | "_alpha3": "CPT" 255 | }, 256 | "CR": { 257 | "_numeric": "188", 258 | "_alpha3": "CRI", 259 | "_fips10": "CS" 260 | }, 261 | "CS": { 262 | "_numeric": "891", 263 | "_alpha3": "SCG", 264 | "_fips10": "YI" 265 | }, 266 | "CU": { 267 | "_numeric": "192", 268 | "_alpha3": "CUB" 269 | }, 270 | "CV": { 271 | "_numeric": "132", 272 | "_alpha3": "CPV" 273 | }, 274 | "CW": { 275 | "_numeric": "531", 276 | "_alpha3": "CUW" 277 | }, 278 | "CX": { 279 | "_numeric": "162", 280 | "_alpha3": "CXR", 281 | "_fips10": "KT" 282 | }, 283 | "CY": { 284 | "_numeric": "196", 285 | "_alpha3": "CYP" 286 | }, 287 | "CZ": { 288 | "_numeric": "203", 289 | "_alpha3": "CZE", 290 | "_fips10": "EZ" 291 | }, 292 | "DD": { 293 | "_numeric": "278", 294 | "_alpha3": "DDR" 295 | }, 296 | "DE": { 297 | "_numeric": "276", 298 | "_alpha3": "DEU", 299 | "_fips10": "GM" 300 | }, 301 | "DG": { 302 | "_alpha3": "DGA" 303 | }, 304 | "DJ": { 305 | "_numeric": "262", 306 | "_alpha3": "DJI" 307 | }, 308 | "DK": { 309 | "_numeric": "208", 310 | "_alpha3": "DNK", 311 | "_fips10": "DA" 312 | }, 313 | "DM": { 314 | "_numeric": "212", 315 | "_alpha3": "DMA", 316 | "_fips10": "DO" 317 | }, 318 | "DO": { 319 | "_numeric": "214", 320 | "_alpha3": "DOM", 321 | "_fips10": "DR" 322 | }, 323 | "DZ": { 324 | "_numeric": "012", 325 | "_alpha3": "DZA", 326 | "_fips10": "AG" 327 | }, 328 | "EA": {}, 329 | "EC": { 330 | "_numeric": "218", 331 | "_alpha3": "ECU" 332 | }, 333 | "EE": { 334 | "_numeric": "233", 335 | "_alpha3": "EST", 336 | "_fips10": "EN" 337 | }, 338 | "EG": { 339 | "_numeric": "818", 340 | "_alpha3": "EGY" 341 | }, 342 | "EH": { 343 | "_numeric": "732", 344 | "_alpha3": "ESH", 345 | "_fips10": "WI" 346 | }, 347 | "ER": { 348 | "_numeric": "232", 349 | "_alpha3": "ERI" 350 | }, 351 | "ES": { 352 | "_numeric": "724", 353 | "_alpha3": "ESP", 354 | "_fips10": "SP" 355 | }, 356 | "ET": { 357 | "_numeric": "231", 358 | "_alpha3": "ETH" 359 | }, 360 | "EU": { 361 | "_numeric": "967", 362 | "_alpha3": "QUU" 363 | }, 364 | "FI": { 365 | "_numeric": "246", 366 | "_alpha3": "FIN" 367 | }, 368 | "FJ": { 369 | "_numeric": "242", 370 | "_alpha3": "FJI" 371 | }, 372 | "FK": { 373 | "_numeric": "238", 374 | "_alpha3": "FLK" 375 | }, 376 | "FM": { 377 | "_numeric": "583", 378 | "_alpha3": "FSM" 379 | }, 380 | "FO": { 381 | "_numeric": "234", 382 | "_alpha3": "FRO" 383 | }, 384 | "FR": { 385 | "_numeric": "250", 386 | "_alpha3": "FRA" 387 | }, 388 | "FX": { 389 | "_numeric": "249", 390 | "_alpha3": "FXX" 391 | }, 392 | "GA": { 393 | "_numeric": "266", 394 | "_alpha3": "GAB", 395 | "_fips10": "GB" 396 | }, 397 | "GB": { 398 | "_numeric": "826", 399 | "_alpha3": "GBR", 400 | "_fips10": "UK" 401 | }, 402 | "GD": { 403 | "_numeric": "308", 404 | "_alpha3": "GRD", 405 | "_fips10": "GJ" 406 | }, 407 | "GE": { 408 | "_numeric": "268", 409 | "_alpha3": "GEO", 410 | "_fips10": "GG" 411 | }, 412 | "GF": { 413 | "_numeric": "254", 414 | "_alpha3": "GUF", 415 | "_fips10": "FG" 416 | }, 417 | "GG": { 418 | "_numeric": "831", 419 | "_alpha3": "GGY", 420 | "_fips10": "GK" 421 | }, 422 | "GH": { 423 | "_numeric": "288", 424 | "_alpha3": "GHA" 425 | }, 426 | "GI": { 427 | "_numeric": "292", 428 | "_alpha3": "GIB" 429 | }, 430 | "GL": { 431 | "_numeric": "304", 432 | "_alpha3": "GRL" 433 | }, 434 | "GM": { 435 | "_numeric": "270", 436 | "_alpha3": "GMB", 437 | "_fips10": "GA" 438 | }, 439 | "GN": { 440 | "_numeric": "324", 441 | "_alpha3": "GIN", 442 | "_fips10": "GV" 443 | }, 444 | "GP": { 445 | "_numeric": "312", 446 | "_alpha3": "GLP" 447 | }, 448 | "GQ": { 449 | "_numeric": "226", 450 | "_alpha3": "GNQ", 451 | "_fips10": "EK" 452 | }, 453 | "GR": { 454 | "_numeric": "300", 455 | "_alpha3": "GRC" 456 | }, 457 | "GS": { 458 | "_numeric": "239", 459 | "_alpha3": "SGS", 460 | "_fips10": "SX" 461 | }, 462 | "GT": { 463 | "_numeric": "320", 464 | "_alpha3": "GTM" 465 | }, 466 | "GU": { 467 | "_numeric": "316", 468 | "_alpha3": "GUM", 469 | "_fips10": "GQ" 470 | }, 471 | "GW": { 472 | "_numeric": "624", 473 | "_alpha3": "GNB", 474 | "_fips10": "PU" 475 | }, 476 | "GY": { 477 | "_numeric": "328", 478 | "_alpha3": "GUY" 479 | }, 480 | "HK": { 481 | "_numeric": "344", 482 | "_alpha3": "HKG" 483 | }, 484 | "HM": { 485 | "_numeric": "334", 486 | "_alpha3": "HMD" 487 | }, 488 | "HN": { 489 | "_numeric": "340", 490 | "_alpha3": "HND", 491 | "_fips10": "HO" 492 | }, 493 | "HR": { 494 | "_numeric": "191", 495 | "_alpha3": "HRV" 496 | }, 497 | "HT": { 498 | "_numeric": "332", 499 | "_alpha3": "HTI", 500 | "_fips10": "HA" 501 | }, 502 | "HU": { 503 | "_numeric": "348", 504 | "_alpha3": "HUN" 505 | }, 506 | "IC": {}, 507 | "ID": { 508 | "_numeric": "360", 509 | "_alpha3": "IDN" 510 | }, 511 | "IE": { 512 | "_numeric": "372", 513 | "_alpha3": "IRL", 514 | "_fips10": "EI" 515 | }, 516 | "IL": { 517 | "_numeric": "376", 518 | "_alpha3": "ISR", 519 | "_fips10": "IS" 520 | }, 521 | "IM": { 522 | "_numeric": "833", 523 | "_alpha3": "IMN" 524 | }, 525 | "IN": { 526 | "_numeric": "356", 527 | "_alpha3": "IND" 528 | }, 529 | "IO": { 530 | "_numeric": "086", 531 | "_alpha3": "IOT" 532 | }, 533 | "IQ": { 534 | "_numeric": "368", 535 | "_alpha3": "IRQ", 536 | "_fips10": "IZ" 537 | }, 538 | "IR": { 539 | "_numeric": "364", 540 | "_alpha3": "IRN" 541 | }, 542 | "IS": { 543 | "_numeric": "352", 544 | "_alpha3": "ISL", 545 | "_fips10": "IC" 546 | }, 547 | "IT": { 548 | "_numeric": "380", 549 | "_alpha3": "ITA" 550 | }, 551 | "JE": { 552 | "_numeric": "832", 553 | "_alpha3": "JEY" 554 | }, 555 | "JM": { 556 | "_numeric": "388", 557 | "_alpha3": "JAM" 558 | }, 559 | "JO": { 560 | "_numeric": "400", 561 | "_alpha3": "JOR" 562 | }, 563 | "JP": { 564 | "_numeric": "392", 565 | "_alpha3": "JPN", 566 | "_fips10": "JA" 567 | }, 568 | "KE": { 569 | "_numeric": "404", 570 | "_alpha3": "KEN" 571 | }, 572 | "KG": { 573 | "_numeric": "417", 574 | "_alpha3": "KGZ" 575 | }, 576 | "KH": { 577 | "_numeric": "116", 578 | "_alpha3": "KHM", 579 | "_fips10": "CB" 580 | }, 581 | "KI": { 582 | "_numeric": "296", 583 | "_alpha3": "KIR", 584 | "_fips10": "KR" 585 | }, 586 | "KM": { 587 | "_numeric": "174", 588 | "_alpha3": "COM", 589 | "_fips10": "CN" 590 | }, 591 | "KN": { 592 | "_numeric": "659", 593 | "_alpha3": "KNA", 594 | "_fips10": "SC" 595 | }, 596 | "KP": { 597 | "_numeric": "408", 598 | "_alpha3": "PRK", 599 | "_fips10": "KN" 600 | }, 601 | "KR": { 602 | "_numeric": "410", 603 | "_alpha3": "KOR", 604 | "_fips10": "KS" 605 | }, 606 | "KW": { 607 | "_numeric": "414", 608 | "_alpha3": "KWT", 609 | "_fips10": "KU" 610 | }, 611 | "KY": { 612 | "_numeric": "136", 613 | "_alpha3": "CYM", 614 | "_fips10": "CJ" 615 | }, 616 | "KZ": { 617 | "_numeric": "398", 618 | "_alpha3": "KAZ" 619 | }, 620 | "LA": { 621 | "_numeric": "418", 622 | "_alpha3": "LAO" 623 | }, 624 | "LB": { 625 | "_numeric": "422", 626 | "_alpha3": "LBN", 627 | "_fips10": "LE" 628 | }, 629 | "LC": { 630 | "_numeric": "662", 631 | "_alpha3": "LCA", 632 | "_fips10": "ST" 633 | }, 634 | "LI": { 635 | "_numeric": "438", 636 | "_alpha3": "LIE", 637 | "_fips10": "LS" 638 | }, 639 | "LK": { 640 | "_numeric": "144", 641 | "_alpha3": "LKA", 642 | "_fips10": "CE" 643 | }, 644 | "LR": { 645 | "_numeric": "430", 646 | "_alpha3": "LBR", 647 | "_fips10": "LI" 648 | }, 649 | "LS": { 650 | "_numeric": "426", 651 | "_alpha3": "LSO", 652 | "_fips10": "LT" 653 | }, 654 | "LT": { 655 | "_numeric": "440", 656 | "_alpha3": "LTU", 657 | "_fips10": "LH" 658 | }, 659 | "LU": { 660 | "_numeric": "442", 661 | "_alpha3": "LUX" 662 | }, 663 | "LV": { 664 | "_numeric": "428", 665 | "_alpha3": "LVA", 666 | "_fips10": "LG" 667 | }, 668 | "LY": { 669 | "_numeric": "434", 670 | "_alpha3": "LBY" 671 | }, 672 | "MA": { 673 | "_numeric": "504", 674 | "_alpha3": "MAR", 675 | "_fips10": "MO" 676 | }, 677 | "MC": { 678 | "_numeric": "492", 679 | "_alpha3": "MCO", 680 | "_fips10": "MN" 681 | }, 682 | "MD": { 683 | "_numeric": "498", 684 | "_alpha3": "MDA" 685 | }, 686 | "ME": { 687 | "_numeric": "499", 688 | "_alpha3": "MNE", 689 | "_fips10": "MJ" 690 | }, 691 | "MF": { 692 | "_numeric": "663", 693 | "_alpha3": "MAF", 694 | "_fips10": "RN" 695 | }, 696 | "MG": { 697 | "_numeric": "450", 698 | "_alpha3": "MDG", 699 | "_fips10": "MA" 700 | }, 701 | "MH": { 702 | "_numeric": "584", 703 | "_alpha3": "MHL", 704 | "_fips10": "RM" 705 | }, 706 | "MK": { 707 | "_numeric": "807", 708 | "_alpha3": "MKD" 709 | }, 710 | "ML": { 711 | "_numeric": "466", 712 | "_alpha3": "MLI" 713 | }, 714 | "MM": { 715 | "_numeric": "104", 716 | "_alpha3": "MMR", 717 | "_fips10": "BM" 718 | }, 719 | "MN": { 720 | "_numeric": "496", 721 | "_alpha3": "MNG", 722 | "_fips10": "MG" 723 | }, 724 | "MO": { 725 | "_numeric": "446", 726 | "_alpha3": "MAC", 727 | "_fips10": "MC" 728 | }, 729 | "MP": { 730 | "_numeric": "580", 731 | "_alpha3": "MNP", 732 | "_fips10": "CQ" 733 | }, 734 | "MQ": { 735 | "_numeric": "474", 736 | "_alpha3": "MTQ", 737 | "_fips10": "MB" 738 | }, 739 | "MR": { 740 | "_numeric": "478", 741 | "_alpha3": "MRT" 742 | }, 743 | "MS": { 744 | "_numeric": "500", 745 | "_alpha3": "MSR", 746 | "_fips10": "MH" 747 | }, 748 | "MT": { 749 | "_numeric": "470", 750 | "_alpha3": "MLT" 751 | }, 752 | "MU": { 753 | "_numeric": "480", 754 | "_alpha3": "MUS", 755 | "_fips10": "MP" 756 | }, 757 | "MV": { 758 | "_numeric": "462", 759 | "_alpha3": "MDV" 760 | }, 761 | "MW": { 762 | "_numeric": "454", 763 | "_alpha3": "MWI", 764 | "_fips10": "MI" 765 | }, 766 | "MX": { 767 | "_numeric": "484", 768 | "_alpha3": "MEX" 769 | }, 770 | "MY": { 771 | "_numeric": "458", 772 | "_alpha3": "MYS" 773 | }, 774 | "MZ": { 775 | "_numeric": "508", 776 | "_alpha3": "MOZ" 777 | }, 778 | "NA": { 779 | "_numeric": "516", 780 | "_alpha3": "NAM", 781 | "_fips10": "WA" 782 | }, 783 | "NC": { 784 | "_numeric": "540", 785 | "_alpha3": "NCL" 786 | }, 787 | "NE": { 788 | "_numeric": "562", 789 | "_alpha3": "NER", 790 | "_fips10": "NG" 791 | }, 792 | "NF": { 793 | "_numeric": "574", 794 | "_alpha3": "NFK" 795 | }, 796 | "NG": { 797 | "_numeric": "566", 798 | "_alpha3": "NGA", 799 | "_fips10": "NI" 800 | }, 801 | "NI": { 802 | "_numeric": "558", 803 | "_alpha3": "NIC", 804 | "_fips10": "NU" 805 | }, 806 | "NL": { 807 | "_numeric": "528", 808 | "_alpha3": "NLD" 809 | }, 810 | "NO": { 811 | "_numeric": "578", 812 | "_alpha3": "NOR" 813 | }, 814 | "NP": { 815 | "_numeric": "524", 816 | "_alpha3": "NPL" 817 | }, 818 | "NR": { 819 | "_numeric": "520", 820 | "_alpha3": "NRU" 821 | }, 822 | "NT": { 823 | "_numeric": "536", 824 | "_alpha3": "NTZ" 825 | }, 826 | "NU": { 827 | "_numeric": "570", 828 | "_alpha3": "NIU", 829 | "_fips10": "NE" 830 | }, 831 | "NZ": { 832 | "_numeric": "554", 833 | "_alpha3": "NZL" 834 | }, 835 | "OM": { 836 | "_numeric": "512", 837 | "_alpha3": "OMN", 838 | "_fips10": "MU" 839 | }, 840 | "PA": { 841 | "_numeric": "591", 842 | "_alpha3": "PAN", 843 | "_fips10": "PM" 844 | }, 845 | "PE": { 846 | "_numeric": "604", 847 | "_alpha3": "PER" 848 | }, 849 | "PF": { 850 | "_numeric": "258", 851 | "_alpha3": "PYF", 852 | "_fips10": "FP" 853 | }, 854 | "PG": { 855 | "_numeric": "598", 856 | "_alpha3": "PNG", 857 | "_fips10": "PP" 858 | }, 859 | "PH": { 860 | "_numeric": "608", 861 | "_alpha3": "PHL", 862 | "_fips10": "RP" 863 | }, 864 | "PK": { 865 | "_numeric": "586", 866 | "_alpha3": "PAK" 867 | }, 868 | "PL": { 869 | "_numeric": "616", 870 | "_alpha3": "POL" 871 | }, 872 | "PM": { 873 | "_numeric": "666", 874 | "_alpha3": "SPM", 875 | "_fips10": "SB" 876 | }, 877 | "PN": { 878 | "_numeric": "612", 879 | "_alpha3": "PCN", 880 | "_fips10": "PC" 881 | }, 882 | "PR": { 883 | "_numeric": "630", 884 | "_alpha3": "PRI", 885 | "_fips10": "RQ" 886 | }, 887 | "PS": { 888 | "_numeric": "275", 889 | "_alpha3": "PSE", 890 | "_fips10": "GZ" 891 | }, 892 | "PT": { 893 | "_numeric": "620", 894 | "_alpha3": "PRT", 895 | "_fips10": "PO" 896 | }, 897 | "PW": { 898 | "_numeric": "585", 899 | "_alpha3": "PLW", 900 | "_fips10": "PS" 901 | }, 902 | "PY": { 903 | "_numeric": "600", 904 | "_alpha3": "PRY", 905 | "_fips10": "PA" 906 | }, 907 | "QA": { 908 | "_numeric": "634", 909 | "_alpha3": "QAT" 910 | }, 911 | "QM": { 912 | "_numeric": "959", 913 | "_alpha3": "QMM" 914 | }, 915 | "QN": { 916 | "_numeric": "960", 917 | "_alpha3": "QNN" 918 | }, 919 | "QO": { 920 | "_numeric": "961", 921 | "_alpha3": "QOO" 922 | }, 923 | "QP": { 924 | "_numeric": "962", 925 | "_alpha3": "QPP" 926 | }, 927 | "QQ": { 928 | "_numeric": "963", 929 | "_alpha3": "QQQ" 930 | }, 931 | "QR": { 932 | "_numeric": "964", 933 | "_alpha3": "QRR" 934 | }, 935 | "QS": { 936 | "_numeric": "965", 937 | "_alpha3": "QSS" 938 | }, 939 | "QT": { 940 | "_numeric": "966", 941 | "_alpha3": "QTT" 942 | }, 943 | "QU": { 944 | "_numeric": "967", 945 | "_alpha3": "QUU" 946 | }, 947 | "QV": { 948 | "_numeric": "968", 949 | "_alpha3": "QVV" 950 | }, 951 | "QW": { 952 | "_numeric": "969", 953 | "_alpha3": "QWW" 954 | }, 955 | "QX": { 956 | "_numeric": "970", 957 | "_alpha3": "QXX" 958 | }, 959 | "QY": { 960 | "_numeric": "971", 961 | "_alpha3": "QYY" 962 | }, 963 | "QZ": { 964 | "_numeric": "972", 965 | "_alpha3": "QZZ" 966 | }, 967 | "RE": { 968 | "_numeric": "638", 969 | "_alpha3": "REU" 970 | }, 971 | "RO": { 972 | "_numeric": "642", 973 | "_alpha3": "ROU" 974 | }, 975 | "RS": { 976 | "_numeric": "688", 977 | "_alpha3": "SRB", 978 | "_fips10": "RB" 979 | }, 980 | "RU": { 981 | "_numeric": "643", 982 | "_alpha3": "RUS", 983 | "_fips10": "RS" 984 | }, 985 | "RW": { 986 | "_numeric": "646", 987 | "_alpha3": "RWA" 988 | }, 989 | "SA": { 990 | "_numeric": "682", 991 | "_alpha3": "SAU" 992 | }, 993 | "SB": { 994 | "_numeric": "090", 995 | "_alpha3": "SLB", 996 | "_fips10": "BP" 997 | }, 998 | "SC": { 999 | "_numeric": "690", 1000 | "_alpha3": "SYC", 1001 | "_fips10": "SE" 1002 | }, 1003 | "SD": { 1004 | "_numeric": "729", 1005 | "_alpha3": "SDN", 1006 | "_fips10": "SU" 1007 | }, 1008 | "SE": { 1009 | "_numeric": "752", 1010 | "_alpha3": "SWE", 1011 | "_fips10": "SW" 1012 | }, 1013 | "SG": { 1014 | "_numeric": "702", 1015 | "_alpha3": "SGP", 1016 | "_fips10": "SN" 1017 | }, 1018 | "SH": { 1019 | "_numeric": "654", 1020 | "_alpha3": "SHN" 1021 | }, 1022 | "SI": { 1023 | "_numeric": "705", 1024 | "_alpha3": "SVN" 1025 | }, 1026 | "SJ": { 1027 | "_numeric": "744", 1028 | "_alpha3": "SJM", 1029 | "_fips10": "SV" 1030 | }, 1031 | "SK": { 1032 | "_numeric": "703", 1033 | "_alpha3": "SVK", 1034 | "_fips10": "LO" 1035 | }, 1036 | "SL": { 1037 | "_numeric": "694", 1038 | "_alpha3": "SLE" 1039 | }, 1040 | "SM": { 1041 | "_numeric": "674", 1042 | "_alpha3": "SMR" 1043 | }, 1044 | "SN": { 1045 | "_numeric": "686", 1046 | "_alpha3": "SEN", 1047 | "_fips10": "SG" 1048 | }, 1049 | "SO": { 1050 | "_numeric": "706", 1051 | "_alpha3": "SOM" 1052 | }, 1053 | "SR": { 1054 | "_numeric": "740", 1055 | "_alpha3": "SUR", 1056 | "_fips10": "NS" 1057 | }, 1058 | "SS": { 1059 | "_numeric": "728", 1060 | "_alpha3": "SSD" 1061 | }, 1062 | "ST": { 1063 | "_numeric": "678", 1064 | "_alpha3": "STP", 1065 | "_fips10": "TP" 1066 | }, 1067 | "SU": { 1068 | "_numeric": "810", 1069 | "_alpha3": "SUN" 1070 | }, 1071 | "SV": { 1072 | "_numeric": "222", 1073 | "_alpha3": "SLV", 1074 | "_fips10": "ES" 1075 | }, 1076 | "SX": { 1077 | "_numeric": "534", 1078 | "_alpha3": "SXM" 1079 | }, 1080 | "SY": { 1081 | "_numeric": "760", 1082 | "_alpha3": "SYR" 1083 | }, 1084 | "SZ": { 1085 | "_numeric": "748", 1086 | "_alpha3": "SWZ", 1087 | "_fips10": "WZ" 1088 | }, 1089 | "TA": { 1090 | "_alpha3": "TAA" 1091 | }, 1092 | "TC": { 1093 | "_numeric": "796", 1094 | "_alpha3": "TCA", 1095 | "_fips10": "TK" 1096 | }, 1097 | "TD": { 1098 | "_numeric": "148", 1099 | "_alpha3": "TCD", 1100 | "_fips10": "CD" 1101 | }, 1102 | "TF": { 1103 | "_numeric": "260", 1104 | "_alpha3": "ATF", 1105 | "_fips10": "FS" 1106 | }, 1107 | "TG": { 1108 | "_numeric": "768", 1109 | "_alpha3": "TGO", 1110 | "_fips10": "TO" 1111 | }, 1112 | "TH": { 1113 | "_numeric": "764", 1114 | "_alpha3": "THA" 1115 | }, 1116 | "TJ": { 1117 | "_numeric": "762", 1118 | "_alpha3": "TJK", 1119 | "_fips10": "TI" 1120 | }, 1121 | "TK": { 1122 | "_numeric": "772", 1123 | "_alpha3": "TKL", 1124 | "_fips10": "TL" 1125 | }, 1126 | "TL": { 1127 | "_numeric": "626", 1128 | "_alpha3": "TLS", 1129 | "_fips10": "TT" 1130 | }, 1131 | "TM": { 1132 | "_numeric": "795", 1133 | "_alpha3": "TKM", 1134 | "_fips10": "TX" 1135 | }, 1136 | "TN": { 1137 | "_numeric": "788", 1138 | "_alpha3": "TUN", 1139 | "_fips10": "TS" 1140 | }, 1141 | "TO": { 1142 | "_numeric": "776", 1143 | "_alpha3": "TON", 1144 | "_fips10": "TN" 1145 | }, 1146 | "TP": { 1147 | "_numeric": "626", 1148 | "_alpha3": "TMP" 1149 | }, 1150 | "TR": { 1151 | "_numeric": "792", 1152 | "_alpha3": "TUR", 1153 | "_fips10": "TU" 1154 | }, 1155 | "TT": { 1156 | "_numeric": "780", 1157 | "_alpha3": "TTO", 1158 | "_fips10": "TD" 1159 | }, 1160 | "TV": { 1161 | "_numeric": "798", 1162 | "_alpha3": "TUV" 1163 | }, 1164 | "TW": { 1165 | "_numeric": "158", 1166 | "_alpha3": "TWN" 1167 | }, 1168 | "TZ": { 1169 | "_numeric": "834", 1170 | "_alpha3": "TZA" 1171 | }, 1172 | "UA": { 1173 | "_numeric": "804", 1174 | "_alpha3": "UKR", 1175 | "_fips10": "UP" 1176 | }, 1177 | "UG": { 1178 | "_numeric": "800", 1179 | "_alpha3": "UGA" 1180 | }, 1181 | "UM": { 1182 | "_numeric": "581", 1183 | "_alpha3": "UMI" 1184 | }, 1185 | "US": { 1186 | "_numeric": "840", 1187 | "_alpha3": "USA" 1188 | }, 1189 | "UY": { 1190 | "_numeric": "858", 1191 | "_alpha3": "URY" 1192 | }, 1193 | "UZ": { 1194 | "_numeric": "860", 1195 | "_alpha3": "UZB" 1196 | }, 1197 | "VA": { 1198 | "_numeric": "336", 1199 | "_alpha3": "VAT", 1200 | "_fips10": "VT" 1201 | }, 1202 | "VC": { 1203 | "_numeric": "670", 1204 | "_alpha3": "VCT" 1205 | }, 1206 | "VE": { 1207 | "_numeric": "862", 1208 | "_alpha3": "VEN" 1209 | }, 1210 | "VG": { 1211 | "_numeric": "092", 1212 | "_alpha3": "VGB", 1213 | "_fips10": "VI" 1214 | }, 1215 | "VI": { 1216 | "_numeric": "850", 1217 | "_alpha3": "VIR", 1218 | "_fips10": "VQ" 1219 | }, 1220 | "VN": { 1221 | "_numeric": "704", 1222 | "_alpha3": "VNM", 1223 | "_fips10": "VM" 1224 | }, 1225 | "VU": { 1226 | "_numeric": "548", 1227 | "_alpha3": "VUT", 1228 | "_fips10": "NH" 1229 | }, 1230 | "WF": { 1231 | "_numeric": "876", 1232 | "_alpha3": "WLF" 1233 | }, 1234 | "WS": { 1235 | "_numeric": "882", 1236 | "_alpha3": "WSM" 1237 | }, 1238 | "XA": { 1239 | "_numeric": "973", 1240 | "_alpha3": "XAA" 1241 | }, 1242 | "XB": { 1243 | "_numeric": "974", 1244 | "_alpha3": "XBB" 1245 | }, 1246 | "XC": { 1247 | "_numeric": "975", 1248 | "_alpha3": "XCC" 1249 | }, 1250 | "XD": { 1251 | "_numeric": "976", 1252 | "_alpha3": "XDD" 1253 | }, 1254 | "XE": { 1255 | "_numeric": "977", 1256 | "_alpha3": "XEE" 1257 | }, 1258 | "XF": { 1259 | "_numeric": "978", 1260 | "_alpha3": "XFF" 1261 | }, 1262 | "XG": { 1263 | "_numeric": "979", 1264 | "_alpha3": "XGG" 1265 | }, 1266 | "XH": { 1267 | "_numeric": "980", 1268 | "_alpha3": "XHH" 1269 | }, 1270 | "XI": { 1271 | "_numeric": "981", 1272 | "_alpha3": "XII" 1273 | }, 1274 | "XJ": { 1275 | "_numeric": "982", 1276 | "_alpha3": "XJJ" 1277 | }, 1278 | "XK": { 1279 | "_numeric": "983", 1280 | "_alpha3": "XKK" 1281 | }, 1282 | "XL": { 1283 | "_numeric": "984", 1284 | "_alpha3": "XLL" 1285 | }, 1286 | "XM": { 1287 | "_numeric": "985", 1288 | "_alpha3": "XMM" 1289 | }, 1290 | "XN": { 1291 | "_numeric": "986", 1292 | "_alpha3": "XNN" 1293 | }, 1294 | "XO": { 1295 | "_numeric": "987", 1296 | "_alpha3": "XOO" 1297 | }, 1298 | "XP": { 1299 | "_numeric": "988", 1300 | "_alpha3": "XPP" 1301 | }, 1302 | "XQ": { 1303 | "_numeric": "989", 1304 | "_alpha3": "XQQ" 1305 | }, 1306 | "XR": { 1307 | "_numeric": "990", 1308 | "_alpha3": "XRR" 1309 | }, 1310 | "XS": { 1311 | "_numeric": "991", 1312 | "_alpha3": "XSS" 1313 | }, 1314 | "XT": { 1315 | "_numeric": "992", 1316 | "_alpha3": "XTT" 1317 | }, 1318 | "XU": { 1319 | "_numeric": "993", 1320 | "_alpha3": "XUU" 1321 | }, 1322 | "XV": { 1323 | "_numeric": "994", 1324 | "_alpha3": "XVV" 1325 | }, 1326 | "XW": { 1327 | "_numeric": "995", 1328 | "_alpha3": "XWW" 1329 | }, 1330 | "XX": { 1331 | "_numeric": "996", 1332 | "_alpha3": "XXX" 1333 | }, 1334 | "XY": { 1335 | "_numeric": "997", 1336 | "_alpha3": "XYY" 1337 | }, 1338 | "XZ": { 1339 | "_numeric": "998", 1340 | "_alpha3": "XZZ" 1341 | }, 1342 | "YD": { 1343 | "_numeric": "720", 1344 | "_alpha3": "YMD" 1345 | }, 1346 | "YE": { 1347 | "_numeric": "887", 1348 | "_alpha3": "YEM", 1349 | "_fips10": "YM" 1350 | }, 1351 | "YT": { 1352 | "_numeric": "175", 1353 | "_alpha3": "MYT", 1354 | "_fips10": "MF" 1355 | }, 1356 | "YU": { 1357 | "_numeric": "891", 1358 | "_alpha3": "YUG" 1359 | }, 1360 | "ZA": { 1361 | "_numeric": "710", 1362 | "_alpha3": "ZAF", 1363 | "_fips10": "SF" 1364 | }, 1365 | "ZM": { 1366 | "_numeric": "894", 1367 | "_alpha3": "ZMB", 1368 | "_fips10": "ZA" 1369 | }, 1370 | "ZR": { 1371 | "_numeric": "180", 1372 | "_alpha3": "ZAR" 1373 | }, 1374 | "ZW": { 1375 | "_numeric": "716", 1376 | "_alpha3": "ZWE", 1377 | "_fips10": "ZI" 1378 | }, 1379 | "ZZ": { 1380 | "_numeric": "999", 1381 | "_alpha3": "ZZZ" 1382 | }, 1383 | "AED": { 1384 | "_numeric": "784" 1385 | }, 1386 | "AFN": { 1387 | "_numeric": "971" 1388 | }, 1389 | "ALL": { 1390 | "_numeric": "8" 1391 | }, 1392 | "AMD": { 1393 | "_numeric": "51" 1394 | }, 1395 | "ANG": { 1396 | "_numeric": "532" 1397 | }, 1398 | "AOA": { 1399 | "_numeric": "973" 1400 | }, 1401 | "ARS": { 1402 | "_numeric": "32" 1403 | }, 1404 | "AUD": { 1405 | "_numeric": "36" 1406 | }, 1407 | "AWG": { 1408 | "_numeric": "533" 1409 | }, 1410 | "AZN": { 1411 | "_numeric": "944" 1412 | }, 1413 | "BAM": { 1414 | "_numeric": "977" 1415 | }, 1416 | "BBD": { 1417 | "_numeric": "52" 1418 | }, 1419 | "BDT": { 1420 | "_numeric": "50" 1421 | }, 1422 | "BGN": { 1423 | "_numeric": "975" 1424 | }, 1425 | "BHD": { 1426 | "_numeric": "48" 1427 | }, 1428 | "BIF": { 1429 | "_numeric": "108" 1430 | }, 1431 | "BMD": { 1432 | "_numeric": "60" 1433 | }, 1434 | "BND": { 1435 | "_numeric": "96" 1436 | }, 1437 | "BOB": { 1438 | "_numeric": "68" 1439 | }, 1440 | "BOV": { 1441 | "_numeric": "984" 1442 | }, 1443 | "BRL": { 1444 | "_numeric": "986" 1445 | }, 1446 | "BSD": { 1447 | "_numeric": "44" 1448 | }, 1449 | "BTN": { 1450 | "_numeric": "64" 1451 | }, 1452 | "BWP": { 1453 | "_numeric": "72" 1454 | }, 1455 | "BYR": { 1456 | "_numeric": "974" 1457 | }, 1458 | "BZD": { 1459 | "_numeric": "84" 1460 | }, 1461 | "CAD": { 1462 | "_numeric": "124" 1463 | }, 1464 | "CDF": { 1465 | "_numeric": "976" 1466 | }, 1467 | "CHE": { 1468 | "_numeric": "947" 1469 | }, 1470 | "CHF": { 1471 | "_numeric": "756" 1472 | }, 1473 | "CHW": { 1474 | "_numeric": "948" 1475 | }, 1476 | "CLF": { 1477 | "_numeric": "990" 1478 | }, 1479 | "CLP": { 1480 | "_numeric": "152" 1481 | }, 1482 | "CNH": { 1483 | "_numeric": "156" 1484 | }, 1485 | "CNY": { 1486 | "_numeric": "156" 1487 | }, 1488 | "COP": { 1489 | "_numeric": "170" 1490 | }, 1491 | "COU": { 1492 | "_numeric": "970" 1493 | }, 1494 | "CRC": { 1495 | "_numeric": "188" 1496 | }, 1497 | "CUC": { 1498 | "_numeric": "931" 1499 | }, 1500 | "CUP": { 1501 | "_numeric": "192" 1502 | }, 1503 | "CVE": { 1504 | "_numeric": "132" 1505 | }, 1506 | "CZK": { 1507 | "_numeric": "203" 1508 | }, 1509 | "DJF": { 1510 | "_numeric": "262" 1511 | }, 1512 | "DKK": { 1513 | "_numeric": "208" 1514 | }, 1515 | "DOP": { 1516 | "_numeric": "214" 1517 | }, 1518 | "DZD": { 1519 | "_numeric": "12" 1520 | }, 1521 | "EGP": { 1522 | "_numeric": "818" 1523 | }, 1524 | "ERN": { 1525 | "_numeric": "232" 1526 | }, 1527 | "ETB": { 1528 | "_numeric": "230" 1529 | }, 1530 | "EUR": { 1531 | "_numeric": "978" 1532 | }, 1533 | "FJD": { 1534 | "_numeric": "242" 1535 | }, 1536 | "FKP": { 1537 | "_numeric": "238" 1538 | }, 1539 | "GBP": { 1540 | "_numeric": "826" 1541 | }, 1542 | "GEL": { 1543 | "_numeric": "981" 1544 | }, 1545 | "GHS": { 1546 | "_numeric": "936" 1547 | }, 1548 | "GIP": { 1549 | "_numeric": "292" 1550 | }, 1551 | "GMD": { 1552 | "_numeric": "270" 1553 | }, 1554 | "GNF": { 1555 | "_numeric": "324" 1556 | }, 1557 | "GTQ": { 1558 | "_numeric": "320" 1559 | }, 1560 | "GYD": { 1561 | "_numeric": "328" 1562 | }, 1563 | "HKD": { 1564 | "_numeric": "344" 1565 | }, 1566 | "HNL": { 1567 | "_numeric": "340" 1568 | }, 1569 | "HRK": { 1570 | "_numeric": "191" 1571 | }, 1572 | "HTG": { 1573 | "_numeric": "332" 1574 | }, 1575 | "HUF": { 1576 | "_numeric": "348" 1577 | }, 1578 | "IDR": { 1579 | "_numeric": "360" 1580 | }, 1581 | "ILS": { 1582 | "_numeric": "376" 1583 | }, 1584 | "INR": { 1585 | "_numeric": "356" 1586 | }, 1587 | "IQD": { 1588 | "_numeric": "368" 1589 | }, 1590 | "IRR": { 1591 | "_numeric": "364" 1592 | }, 1593 | "ISK": { 1594 | "_numeric": "352" 1595 | }, 1596 | "JMD": { 1597 | "_numeric": "388" 1598 | }, 1599 | "JOD": { 1600 | "_numeric": "400" 1601 | }, 1602 | "JPY": { 1603 | "_numeric": "392" 1604 | }, 1605 | "KES": { 1606 | "_numeric": "404" 1607 | }, 1608 | "KGS": { 1609 | "_numeric": "417" 1610 | }, 1611 | "KHR": { 1612 | "_numeric": "116" 1613 | }, 1614 | "KMF": { 1615 | "_numeric": "174" 1616 | }, 1617 | "KPW": { 1618 | "_numeric": "408" 1619 | }, 1620 | "KRW": { 1621 | "_numeric": "410" 1622 | }, 1623 | "KWD": { 1624 | "_numeric": "414" 1625 | }, 1626 | "KYD": { 1627 | "_numeric": "136" 1628 | }, 1629 | "KZT": { 1630 | "_numeric": "398" 1631 | }, 1632 | "LAK": { 1633 | "_numeric": "418" 1634 | }, 1635 | "LBP": { 1636 | "_numeric": "422" 1637 | }, 1638 | "LKR": { 1639 | "_numeric": "144" 1640 | }, 1641 | "LRD": { 1642 | "_numeric": "430" 1643 | }, 1644 | "LSL": { 1645 | "_numeric": "426" 1646 | }, 1647 | "LTL": { 1648 | "_numeric": "440" 1649 | }, 1650 | "LYD": { 1651 | "_numeric": "434" 1652 | }, 1653 | "MAD": { 1654 | "_numeric": "504" 1655 | }, 1656 | "MDL": { 1657 | "_numeric": "498" 1658 | }, 1659 | "MGA": { 1660 | "_numeric": "969" 1661 | }, 1662 | "MKD": { 1663 | "_numeric": "807" 1664 | }, 1665 | "MMK": { 1666 | "_numeric": "104" 1667 | }, 1668 | "MNT": { 1669 | "_numeric": "496" 1670 | }, 1671 | "MOP": { 1672 | "_numeric": "446" 1673 | }, 1674 | "MRO": { 1675 | "_numeric": "478" 1676 | }, 1677 | "MRU": { 1678 | "_numeric": "929" 1679 | }, 1680 | "MUR": { 1681 | "_numeric": "480" 1682 | }, 1683 | "MVR": { 1684 | "_numeric": "462" 1685 | }, 1686 | "MWK": { 1687 | "_numeric": "454" 1688 | }, 1689 | "MXN": { 1690 | "_numeric": "484" 1691 | }, 1692 | "MXV": { 1693 | "_numeric": "979" 1694 | }, 1695 | "MYR": { 1696 | "_numeric": "458" 1697 | }, 1698 | "MZN": { 1699 | "_numeric": "943" 1700 | }, 1701 | "NAD": { 1702 | "_numeric": "516" 1703 | }, 1704 | "NGN": { 1705 | "_numeric": "566" 1706 | }, 1707 | "NIO": { 1708 | "_numeric": "558" 1709 | }, 1710 | "NOK": { 1711 | "_numeric": "578" 1712 | }, 1713 | "NPR": { 1714 | "_numeric": "524" 1715 | }, 1716 | "NZD": { 1717 | "_numeric": "554" 1718 | }, 1719 | "OMR": { 1720 | "_numeric": "512" 1721 | }, 1722 | "PAB": { 1723 | "_numeric": "590" 1724 | }, 1725 | "PEN": { 1726 | "_numeric": "604" 1727 | }, 1728 | "PGK": { 1729 | "_numeric": "598" 1730 | }, 1731 | "PHP": { 1732 | "_numeric": "608" 1733 | }, 1734 | "PKR": { 1735 | "_numeric": "586" 1736 | }, 1737 | "PLN": { 1738 | "_numeric": "985" 1739 | }, 1740 | "PYG": { 1741 | "_numeric": "600" 1742 | }, 1743 | "QAR": { 1744 | "_numeric": "634" 1745 | }, 1746 | "RON": { 1747 | "_numeric": "946" 1748 | }, 1749 | "RSD": { 1750 | "_numeric": "941" 1751 | }, 1752 | "RUB": { 1753 | "_numeric": "643" 1754 | }, 1755 | "RWF": { 1756 | "_numeric": "646" 1757 | }, 1758 | "SAR": { 1759 | "_numeric": "682" 1760 | }, 1761 | "SBD": { 1762 | "_numeric": "90" 1763 | }, 1764 | "SCR": { 1765 | "_numeric": "690" 1766 | }, 1767 | "SDG": { 1768 | "_numeric": "938" 1769 | }, 1770 | "SEK": { 1771 | "_numeric": "752" 1772 | }, 1773 | "SGD": { 1774 | "_numeric": "702" 1775 | }, 1776 | "SHP": { 1777 | "_numeric": "654" 1778 | }, 1779 | "SLL": { 1780 | "_numeric": "694" 1781 | }, 1782 | "SOS": { 1783 | "_numeric": "706" 1784 | }, 1785 | "SRD": { 1786 | "_numeric": "968" 1787 | }, 1788 | "SSP": { 1789 | "_numeric": "728" 1790 | }, 1791 | "STD": { 1792 | "_numeric": "678" 1793 | }, 1794 | "STN": { 1795 | "_numeric": "930" 1796 | }, 1797 | "SYP": { 1798 | "_numeric": "760" 1799 | }, 1800 | "SZL": { 1801 | "_numeric": "748" 1802 | }, 1803 | "THB": { 1804 | "_numeric": "764" 1805 | }, 1806 | "TJS": { 1807 | "_numeric": "972" 1808 | }, 1809 | "TMT": { 1810 | "_numeric": "934" 1811 | }, 1812 | "TND": { 1813 | "_numeric": "788" 1814 | }, 1815 | "TOP": { 1816 | "_numeric": "776" 1817 | }, 1818 | "TRY": { 1819 | "_numeric": "949" 1820 | }, 1821 | "TTD": { 1822 | "_numeric": "780" 1823 | }, 1824 | "TWD": { 1825 | "_numeric": "901" 1826 | }, 1827 | "TZS": { 1828 | "_numeric": "834" 1829 | }, 1830 | "UAH": { 1831 | "_numeric": "980" 1832 | }, 1833 | "UGX": { 1834 | "_numeric": "800" 1835 | }, 1836 | "USD": { 1837 | "_numeric": "840" 1838 | }, 1839 | "USN": { 1840 | "_numeric": "997" 1841 | }, 1842 | "UYI": { 1843 | "_numeric": "940" 1844 | }, 1845 | "UYU": { 1846 | "_numeric": "858" 1847 | }, 1848 | "UYW": { 1849 | "_numeric": "927" 1850 | }, 1851 | "UZS": { 1852 | "_numeric": "860" 1853 | }, 1854 | "VEF": { 1855 | "_numeric": "937" 1856 | }, 1857 | "VES": { 1858 | "_numeric": "928" 1859 | }, 1860 | "VND": { 1861 | "_numeric": "704" 1862 | }, 1863 | "VUV": { 1864 | "_numeric": "548" 1865 | }, 1866 | "WST": { 1867 | "_numeric": "882" 1868 | }, 1869 | "XAF": { 1870 | "_numeric": "950" 1871 | }, 1872 | "XAG": { 1873 | "_numeric": "961" 1874 | }, 1875 | "XAU": { 1876 | "_numeric": "959" 1877 | }, 1878 | "XBA": { 1879 | "_numeric": "955" 1880 | }, 1881 | "XBB": { 1882 | "_numeric": "956" 1883 | }, 1884 | "XBC": { 1885 | "_numeric": "957" 1886 | }, 1887 | "XBD": { 1888 | "_numeric": "958" 1889 | }, 1890 | "XCD": { 1891 | "_numeric": "951" 1892 | }, 1893 | "XDR": { 1894 | "_numeric": "960" 1895 | }, 1896 | "XOF": { 1897 | "_numeric": "952" 1898 | }, 1899 | "XPD": { 1900 | "_numeric": "964" 1901 | }, 1902 | "XPF": { 1903 | "_numeric": "953" 1904 | }, 1905 | "XPT": { 1906 | "_numeric": "962" 1907 | }, 1908 | "XSU": { 1909 | "_numeric": "994" 1910 | }, 1911 | "XTS": { 1912 | "_numeric": "963" 1913 | }, 1914 | "XUA": { 1915 | "_numeric": "965" 1916 | }, 1917 | "XXX": { 1918 | "_numeric": "999" 1919 | }, 1920 | "YER": { 1921 | "_numeric": "886" 1922 | }, 1923 | "ZAR": { 1924 | "_numeric": "710" 1925 | }, 1926 | "ZMW": { 1927 | "_numeric": "967" 1928 | } 1929 | } 1930 | } 1931 | } 1932 | --------------------------------------------------------------------------------