wintz.json 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514
  1. {
  2. "supplementalData": {
  3. "version": {
  4. "_number": "$Revision$"
  5. },
  6. "windowsZones": {
  7. "mapTimezones": {
  8. "mapZone": [{
  9. "_other": "Dateline Standard Time",
  10. "_territory": "001",
  11. "_type": "Etc/GMT+12"
  12. },
  13. {
  14. "_other": "Dateline Standard Time",
  15. "_territory": "ZZ",
  16. "_type": "Etc/GMT+12"
  17. },
  18. {
  19. "_other": "UTC-11",
  20. "_territory": "001",
  21. "_type": "Etc/GMT+11"
  22. },
  23. {
  24. "_other": "UTC-11",
  25. "_territory": "AS",
  26. "_type": "Pacific/Pago_Pago"
  27. },
  28. {
  29. "_other": "UTC-11",
  30. "_territory": "NU",
  31. "_type": "Pacific/Niue"
  32. },
  33. {
  34. "_other": "UTC-11",
  35. "_territory": "UM",
  36. "_type": "Pacific/Midway"
  37. },
  38. {
  39. "_other": "UTC-11",
  40. "_territory": "ZZ",
  41. "_type": "Etc/GMT+11"
  42. },
  43. {
  44. "_other": "Aleutian Standard Time",
  45. "_territory": "001",
  46. "_type": "America/Adak"
  47. },
  48. {
  49. "_other": "Aleutian Standard Time",
  50. "_territory": "US",
  51. "_type": "America/Adak"
  52. },
  53. {
  54. "_other": "Hawaiian Standard Time",
  55. "_territory": "001",
  56. "_type": "Pacific/Honolulu"
  57. },
  58. {
  59. "_other": "Hawaiian Standard Time",
  60. "_territory": "CK",
  61. "_type": "Pacific/Rarotonga"
  62. },
  63. {
  64. "_other": "Hawaiian Standard Time",
  65. "_territory": "PF",
  66. "_type": "Pacific/Tahiti"
  67. },
  68. {
  69. "_other": "Hawaiian Standard Time",
  70. "_territory": "UM",
  71. "_type": "Pacific/Johnston"
  72. },
  73. {
  74. "_other": "Hawaiian Standard Time",
  75. "_territory": "US",
  76. "_type": "Pacific/Honolulu"
  77. },
  78. {
  79. "_other": "Hawaiian Standard Time",
  80. "_territory": "ZZ",
  81. "_type": "Etc/GMT+10"
  82. },
  83. {
  84. "_other": "Marquesas Standard Time",
  85. "_territory": "001",
  86. "_type": "Pacific/Marquesas"
  87. },
  88. {
  89. "_other": "Marquesas Standard Time",
  90. "_territory": "PF",
  91. "_type": "Pacific/Marquesas"
  92. },
  93. {
  94. "_other": "Alaskan Standard Time",
  95. "_territory": "001",
  96. "_type": "America/Anchorage"
  97. },
  98. {
  99. "_other": "Alaskan Standard Time",
  100. "_territory": "US",
  101. "_type": "America/Anchorage America/Juneau America/Metlakatla America/Nome America/Sitka America/Yakutat"
  102. },
  103. {
  104. "_other": "UTC-09",
  105. "_territory": "001",
  106. "_type": "Etc/GMT+9"
  107. },
  108. {
  109. "_other": "UTC-09",
  110. "_territory": "PF",
  111. "_type": "Pacific/Gambier"
  112. },
  113. {
  114. "_other": "UTC-09",
  115. "_territory": "ZZ",
  116. "_type": "Etc/GMT+9"
  117. },
  118. {
  119. "_other": "Pacific Standard Time (Mexico)",
  120. "_territory": "001",
  121. "_type": "America/Tijuana"
  122. },
  123. {
  124. "_other": "Pacific Standard Time (Mexico)",
  125. "_territory": "MX",
  126. "_type": "America/Tijuana America/Santa_Isabel"
  127. },
  128. {
  129. "_other": "UTC-08",
  130. "_territory": "001",
  131. "_type": "Etc/GMT+8"
  132. },
  133. {
  134. "_other": "UTC-08",
  135. "_territory": "PN",
  136. "_type": "Pacific/Pitcairn"
  137. },
  138. {
  139. "_other": "UTC-08",
  140. "_territory": "ZZ",
  141. "_type": "Etc/GMT+8"
  142. },
  143. {
  144. "_other": "Pacific Standard Time",
  145. "_territory": "001",
  146. "_type": "America/Los_Angeles"
  147. },
  148. {
  149. "_other": "Pacific Standard Time",
  150. "_territory": "CA",
  151. "_type": "America/Vancouver America/Dawson America/Whitehorse"
  152. },
  153. {
  154. "_other": "Pacific Standard Time",
  155. "_territory": "US",
  156. "_type": "America/Los_Angeles"
  157. },
  158. {
  159. "_other": "Pacific Standard Time",
  160. "_territory": "ZZ",
  161. "_type": "PST8PDT"
  162. },
  163. {
  164. "_other": "US Mountain Standard Time",
  165. "_territory": "001",
  166. "_type": "America/Phoenix"
  167. },
  168. {
  169. "_other": "US Mountain Standard Time",
  170. "_territory": "CA",
  171. "_type": "America/Dawson_Creek America/Creston America/Fort_Nelson"
  172. },
  173. {
  174. "_other": "US Mountain Standard Time",
  175. "_territory": "MX",
  176. "_type": "America/Hermosillo"
  177. },
  178. {
  179. "_other": "US Mountain Standard Time",
  180. "_territory": "US",
  181. "_type": "America/Phoenix"
  182. },
  183. {
  184. "_other": "US Mountain Standard Time",
  185. "_territory": "ZZ",
  186. "_type": "Etc/GMT+7"
  187. },
  188. {
  189. "_other": "Mountain Standard Time (Mexico)",
  190. "_territory": "001",
  191. "_type": "America/Chihuahua"
  192. },
  193. {
  194. "_other": "Mountain Standard Time (Mexico)",
  195. "_territory": "MX",
  196. "_type": "America/Chihuahua America/Mazatlan"
  197. },
  198. {
  199. "_other": "Mountain Standard Time",
  200. "_territory": "001",
  201. "_type": "America/Denver"
  202. },
  203. {
  204. "_other": "Mountain Standard Time",
  205. "_territory": "CA",
  206. "_type": "America/Edmonton America/Cambridge_Bay America/Inuvik America/Yellowknife"
  207. },
  208. {
  209. "_other": "Mountain Standard Time",
  210. "_territory": "MX",
  211. "_type": "America/Ojinaga"
  212. },
  213. {
  214. "_other": "Mountain Standard Time",
  215. "_territory": "US",
  216. "_type": "America/Denver America/Boise"
  217. },
  218. {
  219. "_other": "Mountain Standard Time",
  220. "_territory": "ZZ",
  221. "_type": "MST7MDT"
  222. },
  223. {
  224. "_other": "Central America Standard Time",
  225. "_territory": "001",
  226. "_type": "America/Guatemala"
  227. },
  228. {
  229. "_other": "Central America Standard Time",
  230. "_territory": "BZ",
  231. "_type": "America/Belize"
  232. },
  233. {
  234. "_other": "Central America Standard Time",
  235. "_territory": "CR",
  236. "_type": "America/Costa_Rica"
  237. },
  238. {
  239. "_other": "Central America Standard Time",
  240. "_territory": "EC",
  241. "_type": "Pacific/Galapagos"
  242. },
  243. {
  244. "_other": "Central America Standard Time",
  245. "_territory": "GT",
  246. "_type": "America/Guatemala"
  247. },
  248. {
  249. "_other": "Central America Standard Time",
  250. "_territory": "HN",
  251. "_type": "America/Tegucigalpa"
  252. },
  253. {
  254. "_other": "Central America Standard Time",
  255. "_territory": "NI",
  256. "_type": "America/Managua"
  257. },
  258. {
  259. "_other": "Central America Standard Time",
  260. "_territory": "SV",
  261. "_type": "America/El_Salvador"
  262. },
  263. {
  264. "_other": "Central America Standard Time",
  265. "_territory": "ZZ",
  266. "_type": "Etc/GMT+6"
  267. },
  268. {
  269. "_other": "Central Standard Time",
  270. "_territory": "001",
  271. "_type": "America/Chicago"
  272. },
  273. {
  274. "_other": "Central Standard Time",
  275. "_territory": "CA",
  276. "_type": "America/Winnipeg America/Rainy_River America/Rankin_Inlet America/Resolute"
  277. },
  278. {
  279. "_other": "Central Standard Time",
  280. "_territory": "MX",
  281. "_type": "America/Matamoros"
  282. },
  283. {
  284. "_other": "Central Standard Time",
  285. "_territory": "US",
  286. "_type": "America/Chicago America/Indiana/Knox America/Indiana/Tell_City America/Menominee America/North_Dakota/Beulah America/North_Dakota/Center America/North_Dakota/New_Salem"
  287. },
  288. {
  289. "_other": "Central Standard Time",
  290. "_territory": "ZZ",
  291. "_type": "CST6CDT"
  292. },
  293. {
  294. "_other": "Easter Island Standard Time",
  295. "_territory": "001",
  296. "_type": "Pacific/Easter"
  297. },
  298. {
  299. "_other": "Easter Island Standard Time",
  300. "_territory": "CL",
  301. "_type": "Pacific/Easter"
  302. },
  303. {
  304. "_other": "Central Standard Time (Mexico)",
  305. "_territory": "001",
  306. "_type": "America/Mexico_City"
  307. },
  308. {
  309. "_other": "Central Standard Time (Mexico)",
  310. "_territory": "MX",
  311. "_type": "America/Mexico_City America/Bahia_Banderas America/Merida America/Monterrey"
  312. },
  313. {
  314. "_other": "Canada Central Standard Time",
  315. "_territory": "001",
  316. "_type": "America/Regina"
  317. },
  318. {
  319. "_other": "Canada Central Standard Time",
  320. "_territory": "CA",
  321. "_type": "America/Regina America/Swift_Current"
  322. },
  323. {
  324. "_other": "SA Pacific Standard Time",
  325. "_territory": "001",
  326. "_type": "America/Bogota"
  327. },
  328. {
  329. "_other": "SA Pacific Standard Time",
  330. "_territory": "BR",
  331. "_type": "America/Rio_Branco America/Eirunepe"
  332. },
  333. {
  334. "_other": "SA Pacific Standard Time",
  335. "_territory": "CA",
  336. "_type": "America/Coral_Harbour"
  337. },
  338. {
  339. "_other": "SA Pacific Standard Time",
  340. "_territory": "CO",
  341. "_type": "America/Bogota"
  342. },
  343. {
  344. "_other": "SA Pacific Standard Time",
  345. "_territory": "EC",
  346. "_type": "America/Guayaquil"
  347. },
  348. {
  349. "_other": "SA Pacific Standard Time",
  350. "_territory": "JM",
  351. "_type": "America/Jamaica"
  352. },
  353. {
  354. "_other": "SA Pacific Standard Time",
  355. "_territory": "KY",
  356. "_type": "America/Cayman"
  357. },
  358. {
  359. "_other": "SA Pacific Standard Time",
  360. "_territory": "PA",
  361. "_type": "America/Panama"
  362. },
  363. {
  364. "_other": "SA Pacific Standard Time",
  365. "_territory": "PE",
  366. "_type": "America/Lima"
  367. },
  368. {
  369. "_other": "SA Pacific Standard Time",
  370. "_territory": "ZZ",
  371. "_type": "Etc/GMT+5"
  372. },
  373. {
  374. "_other": "Eastern Standard Time (Mexico)",
  375. "_territory": "001",
  376. "_type": "America/Cancun"
  377. },
  378. {
  379. "_other": "Eastern Standard Time (Mexico)",
  380. "_territory": "MX",
  381. "_type": "America/Cancun"
  382. },
  383. {
  384. "_other": "Eastern Standard Time",
  385. "_territory": "001",
  386. "_type": "America/New_York"
  387. },
  388. {
  389. "_other": "Eastern Standard Time",
  390. "_territory": "BS",
  391. "_type": "America/Nassau"
  392. },
  393. {
  394. "_other": "Eastern Standard Time",
  395. "_territory": "CA",
  396. "_type": "America/Toronto America/Iqaluit America/Montreal America/Nipigon America/Pangnirtung America/Thunder_Bay"
  397. },
  398. {
  399. "_other": "Eastern Standard Time",
  400. "_territory": "US",
  401. "_type": "America/New_York America/Detroit America/Indiana/Petersburg America/Indiana/Vincennes America/Indiana/Winamac America/Kentucky/Monticello America/Louisville"
  402. },
  403. {
  404. "_other": "Eastern Standard Time",
  405. "_territory": "ZZ",
  406. "_type": "EST5EDT"
  407. },
  408. {
  409. "_other": "Haiti Standard Time",
  410. "_territory": "001",
  411. "_type": "America/Port-au-Prince"
  412. },
  413. {
  414. "_other": "Haiti Standard Time",
  415. "_territory": "HT",
  416. "_type": "America/Port-au-Prince"
  417. },
  418. {
  419. "_other": "Cuba Standard Time",
  420. "_territory": "001",
  421. "_type": "America/Havana"
  422. },
  423. {
  424. "_other": "Cuba Standard Time",
  425. "_territory": "CU",
  426. "_type": "America/Havana"
  427. },
  428. {
  429. "_other": "US Eastern Standard Time",
  430. "_territory": "001",
  431. "_type": "America/Indianapolis"
  432. },
  433. {
  434. "_other": "US Eastern Standard Time",
  435. "_territory": "US",
  436. "_type": "America/Indianapolis America/Indiana/Marengo America/Indiana/Vevay"
  437. },
  438. {
  439. "_other": "Paraguay Standard Time",
  440. "_territory": "001",
  441. "_type": "America/Asuncion"
  442. },
  443. {
  444. "_other": "Paraguay Standard Time",
  445. "_territory": "PY",
  446. "_type": "America/Asuncion"
  447. },
  448. {
  449. "_other": "Atlantic Standard Time",
  450. "_territory": "001",
  451. "_type": "America/Halifax"
  452. },
  453. {
  454. "_other": "Atlantic Standard Time",
  455. "_territory": "BM",
  456. "_type": "Atlantic/Bermuda"
  457. },
  458. {
  459. "_other": "Atlantic Standard Time",
  460. "_territory": "CA",
  461. "_type": "America/Halifax America/Glace_Bay America/Goose_Bay America/Moncton"
  462. },
  463. {
  464. "_other": "Atlantic Standard Time",
  465. "_territory": "GL",
  466. "_type": "America/Thule"
  467. },
  468. {
  469. "_other": "Venezuela Standard Time",
  470. "_territory": "001",
  471. "_type": "America/Caracas"
  472. },
  473. {
  474. "_other": "Venezuela Standard Time",
  475. "_territory": "VE",
  476. "_type": "America/Caracas"
  477. },
  478. {
  479. "_other": "Central Brazilian Standard Time",
  480. "_territory": "001",
  481. "_type": "America/Cuiaba"
  482. },
  483. {
  484. "_other": "Central Brazilian Standard Time",
  485. "_territory": "BR",
  486. "_type": "America/Cuiaba America/Campo_Grande"
  487. },
  488. {
  489. "_other": "SA Western Standard Time",
  490. "_territory": "001",
  491. "_type": "America/La_Paz"
  492. },
  493. {
  494. "_other": "SA Western Standard Time",
  495. "_territory": "AG",
  496. "_type": "America/Antigua"
  497. },
  498. {
  499. "_other": "SA Western Standard Time",
  500. "_territory": "AI",
  501. "_type": "America/Anguilla"
  502. },
  503. {
  504. "_other": "SA Western Standard Time",
  505. "_territory": "AW",
  506. "_type": "America/Aruba"
  507. },
  508. {
  509. "_other": "SA Western Standard Time",
  510. "_territory": "BB",
  511. "_type": "America/Barbados"
  512. },
  513. {
  514. "_other": "SA Western Standard Time",
  515. "_territory": "BL",
  516. "_type": "America/St_Barthelemy"
  517. },
  518. {
  519. "_other": "SA Western Standard Time",
  520. "_territory": "BO",
  521. "_type": "America/La_Paz"
  522. },
  523. {
  524. "_other": "SA Western Standard Time",
  525. "_territory": "BQ",
  526. "_type": "America/Kralendijk"
  527. },
  528. {
  529. "_other": "SA Western Standard Time",
  530. "_territory": "BR",
  531. "_type": "America/Manaus America/Boa_Vista America/Porto_Velho"
  532. },
  533. {
  534. "_other": "SA Western Standard Time",
  535. "_territory": "CA",
  536. "_type": "America/Blanc-Sablon"
  537. },
  538. {
  539. "_other": "SA Western Standard Time",
  540. "_territory": "CW",
  541. "_type": "America/Curacao"
  542. },
  543. {
  544. "_other": "SA Western Standard Time",
  545. "_territory": "DM",
  546. "_type": "America/Dominica"
  547. },
  548. {
  549. "_other": "SA Western Standard Time",
  550. "_territory": "DO",
  551. "_type": "America/Santo_Domingo"
  552. },
  553. {
  554. "_other": "SA Western Standard Time",
  555. "_territory": "GD",
  556. "_type": "America/Grenada"
  557. },
  558. {
  559. "_other": "SA Western Standard Time",
  560. "_territory": "GP",
  561. "_type": "America/Guadeloupe"
  562. },
  563. {
  564. "_other": "SA Western Standard Time",
  565. "_territory": "GY",
  566. "_type": "America/Guyana"
  567. },
  568. {
  569. "_other": "SA Western Standard Time",
  570. "_territory": "KN",
  571. "_type": "America/St_Kitts"
  572. },
  573. {
  574. "_other": "SA Western Standard Time",
  575. "_territory": "LC",
  576. "_type": "America/St_Lucia"
  577. },
  578. {
  579. "_other": "SA Western Standard Time",
  580. "_territory": "MF",
  581. "_type": "America/Marigot"
  582. },
  583. {
  584. "_other": "SA Western Standard Time",
  585. "_territory": "MQ",
  586. "_type": "America/Martinique"
  587. },
  588. {
  589. "_other": "SA Western Standard Time",
  590. "_territory": "MS",
  591. "_type": "America/Montserrat"
  592. },
  593. {
  594. "_other": "SA Western Standard Time",
  595. "_territory": "PR",
  596. "_type": "America/Puerto_Rico"
  597. },
  598. {
  599. "_other": "SA Western Standard Time",
  600. "_territory": "SX",
  601. "_type": "America/Lower_Princes"
  602. },
  603. {
  604. "_other": "SA Western Standard Time",
  605. "_territory": "TT",
  606. "_type": "America/Port_of_Spain"
  607. },
  608. {
  609. "_other": "SA Western Standard Time",
  610. "_territory": "VC",
  611. "_type": "America/St_Vincent"
  612. },
  613. {
  614. "_other": "SA Western Standard Time",
  615. "_territory": "VG",
  616. "_type": "America/Tortola"
  617. },
  618. {
  619. "_other": "SA Western Standard Time",
  620. "_territory": "VI",
  621. "_type": "America/St_Thomas"
  622. },
  623. {
  624. "_other": "SA Western Standard Time",
  625. "_territory": "ZZ",
  626. "_type": "Etc/GMT+4"
  627. },
  628. {
  629. "_other": "Pacific SA Standard Time",
  630. "_territory": "001",
  631. "_type": "America/Santiago"
  632. },
  633. {
  634. "_other": "Pacific SA Standard Time",
  635. "_territory": "CL",
  636. "_type": "America/Santiago"
  637. },
  638. {
  639. "_other": "Turks And Caicos Standard Time",
  640. "_territory": "001",
  641. "_type": "America/Grand_Turk"
  642. },
  643. {
  644. "_other": "Turks And Caicos Standard Time",
  645. "_territory": "TC",
  646. "_type": "America/Grand_Turk"
  647. },
  648. {
  649. "_other": "Newfoundland Standard Time",
  650. "_territory": "001",
  651. "_type": "America/St_Johns"
  652. },
  653. {
  654. "_other": "Newfoundland Standard Time",
  655. "_territory": "CA",
  656. "_type": "America/St_Johns"
  657. },
  658. {
  659. "_other": "Tocantins Standard Time",
  660. "_territory": "001",
  661. "_type": "America/Araguaina"
  662. },
  663. {
  664. "_other": "Tocantins Standard Time",
  665. "_territory": "BR",
  666. "_type": "America/Araguaina"
  667. },
  668. {
  669. "_other": "E. South America Standard Time",
  670. "_territory": "001",
  671. "_type": "America/Sao_Paulo"
  672. },
  673. {
  674. "_other": "E. South America Standard Time",
  675. "_territory": "BR",
  676. "_type": "America/Sao_Paulo"
  677. },
  678. {
  679. "_other": "SA Eastern Standard Time",
  680. "_territory": "001",
  681. "_type": "America/Cayenne"
  682. },
  683. {
  684. "_other": "SA Eastern Standard Time",
  685. "_territory": "AQ",
  686. "_type": "Antarctica/Rothera"
  687. },
  688. {
  689. "_other": "SA Eastern Standard Time",
  690. "_territory": "BR",
  691. "_type": "America/Fortaleza America/Belem America/Maceio America/Recife America/Santarem"
  692. },
  693. {
  694. "_other": "SA Eastern Standard Time",
  695. "_territory": "FK",
  696. "_type": "Atlantic/Stanley"
  697. },
  698. {
  699. "_other": "SA Eastern Standard Time",
  700. "_territory": "GF",
  701. "_type": "America/Cayenne"
  702. },
  703. {
  704. "_other": "SA Eastern Standard Time",
  705. "_territory": "SR",
  706. "_type": "America/Paramaribo"
  707. },
  708. {
  709. "_other": "SA Eastern Standard Time",
  710. "_territory": "ZZ",
  711. "_type": "Etc/GMT+3"
  712. },
  713. {
  714. "_other": "Argentina Standard Time",
  715. "_territory": "001",
  716. "_type": "America/Buenos_Aires"
  717. },
  718. {
  719. "_other": "Argentina Standard Time",
  720. "_territory": "AR",
  721. "_type": "America/Buenos_Aires America/Argentina/La_Rioja America/Argentina/Rio_Gallegos America/Argentina/Salta America/Argentina/San_Juan America/Argentina/San_Luis America/Argentina/Tucuman America/Argentina/Ushuaia America/Catamarca America/Cordoba America/Jujuy America/Mendoza"
  722. },
  723. {
  724. "_other": "Greenland Standard Time",
  725. "_territory": "001",
  726. "_type": "America/Godthab"
  727. },
  728. {
  729. "_other": "Greenland Standard Time",
  730. "_territory": "GL",
  731. "_type": "America/Godthab"
  732. },
  733. {
  734. "_other": "Montevideo Standard Time",
  735. "_territory": "001",
  736. "_type": "America/Montevideo"
  737. },
  738. {
  739. "_other": "Montevideo Standard Time",
  740. "_territory": "UY",
  741. "_type": "America/Montevideo"
  742. },
  743. {
  744. "_other": "Magallanes Standard Time",
  745. "_territory": "001",
  746. "_type": "America/Punta_Arenas"
  747. },
  748. {
  749. "_other": "Magallanes Standard Time",
  750. "_territory": "AQ",
  751. "_type": "Antarctica/Palmer"
  752. },
  753. {
  754. "_other": "Magallanes Standard Time",
  755. "_territory": "CL",
  756. "_type": "America/Punta_Arenas"
  757. },
  758. {
  759. "_other": "Saint Pierre Standard Time",
  760. "_territory": "001",
  761. "_type": "America/Miquelon"
  762. },
  763. {
  764. "_other": "Saint Pierre Standard Time",
  765. "_territory": "PM",
  766. "_type": "America/Miquelon"
  767. },
  768. {
  769. "_other": "Bahia Standard Time",
  770. "_territory": "001",
  771. "_type": "America/Bahia"
  772. },
  773. {
  774. "_other": "Bahia Standard Time",
  775. "_territory": "BR",
  776. "_type": "America/Bahia"
  777. },
  778. {
  779. "_other": "UTC-02",
  780. "_territory": "001",
  781. "_type": "Etc/GMT+2"
  782. },
  783. {
  784. "_other": "UTC-02",
  785. "_territory": "BR",
  786. "_type": "America/Noronha"
  787. },
  788. {
  789. "_other": "UTC-02",
  790. "_territory": "GS",
  791. "_type": "Atlantic/South_Georgia"
  792. },
  793. {
  794. "_other": "UTC-02",
  795. "_territory": "ZZ",
  796. "_type": "Etc/GMT+2"
  797. },
  798. {
  799. "_other": "Azores Standard Time",
  800. "_territory": "001",
  801. "_type": "Atlantic/Azores"
  802. },
  803. {
  804. "_other": "Azores Standard Time",
  805. "_territory": "GL",
  806. "_type": "America/Scoresbysund"
  807. },
  808. {
  809. "_other": "Azores Standard Time",
  810. "_territory": "PT",
  811. "_type": "Atlantic/Azores"
  812. },
  813. {
  814. "_other": "Cape Verde Standard Time",
  815. "_territory": "001",
  816. "_type": "Atlantic/Cape_Verde"
  817. },
  818. {
  819. "_other": "Cape Verde Standard Time",
  820. "_territory": "CV",
  821. "_type": "Atlantic/Cape_Verde"
  822. },
  823. {
  824. "_other": "Cape Verde Standard Time",
  825. "_territory": "ZZ",
  826. "_type": "Etc/GMT+1"
  827. },
  828. {
  829. "_other": "UTC",
  830. "_territory": "001",
  831. "_type": "Etc/GMT"
  832. },
  833. {
  834. "_other": "UTC",
  835. "_territory": "GL",
  836. "_type": "America/Danmarkshavn"
  837. },
  838. {
  839. "_other": "UTC",
  840. "_territory": "ZZ",
  841. "_type": "Etc/GMT Etc/UTC"
  842. },
  843. {
  844. "_other": "Morocco Standard Time",
  845. "_territory": "001",
  846. "_type": "Africa/Casablanca"
  847. },
  848. {
  849. "_other": "Morocco Standard Time",
  850. "_territory": "EH",
  851. "_type": "Africa/El_Aaiun"
  852. },
  853. {
  854. "_other": "Morocco Standard Time",
  855. "_territory": "MA",
  856. "_type": "Africa/Casablanca"
  857. },
  858. {
  859. "_other": "GMT Standard Time",
  860. "_territory": "001",
  861. "_type": "Europe/London"
  862. },
  863. {
  864. "_other": "GMT Standard Time",
  865. "_territory": "ES",
  866. "_type": "Atlantic/Canary"
  867. },
  868. {
  869. "_other": "GMT Standard Time",
  870. "_territory": "FO",
  871. "_type": "Atlantic/Faeroe"
  872. },
  873. {
  874. "_other": "GMT Standard Time",
  875. "_territory": "GB",
  876. "_type": "Europe/London"
  877. },
  878. {
  879. "_other": "GMT Standard Time",
  880. "_territory": "GG",
  881. "_type": "Europe/Guernsey"
  882. },
  883. {
  884. "_other": "GMT Standard Time",
  885. "_territory": "IE",
  886. "_type": "Europe/Dublin"
  887. },
  888. {
  889. "_other": "GMT Standard Time",
  890. "_territory": "IM",
  891. "_type": "Europe/Isle_of_Man"
  892. },
  893. {
  894. "_other": "GMT Standard Time",
  895. "_territory": "JE",
  896. "_type": "Europe/Jersey"
  897. },
  898. {
  899. "_other": "GMT Standard Time",
  900. "_territory": "PT",
  901. "_type": "Europe/Lisbon Atlantic/Madeira"
  902. },
  903. {
  904. "_other": "Greenwich Standard Time",
  905. "_territory": "001",
  906. "_type": "Atlantic/Reykjavik"
  907. },
  908. {
  909. "_other": "Greenwich Standard Time",
  910. "_territory": "BF",
  911. "_type": "Africa/Ouagadougou"
  912. },
  913. {
  914. "_other": "Greenwich Standard Time",
  915. "_territory": "CI",
  916. "_type": "Africa/Abidjan"
  917. },
  918. {
  919. "_other": "Greenwich Standard Time",
  920. "_territory": "GH",
  921. "_type": "Africa/Accra"
  922. },
  923. {
  924. "_other": "Greenwich Standard Time",
  925. "_territory": "GM",
  926. "_type": "Africa/Banjul"
  927. },
  928. {
  929. "_other": "Greenwich Standard Time",
  930. "_territory": "GN",
  931. "_type": "Africa/Conakry"
  932. },
  933. {
  934. "_other": "Greenwich Standard Time",
  935. "_territory": "GW",
  936. "_type": "Africa/Bissau"
  937. },
  938. {
  939. "_other": "Greenwich Standard Time",
  940. "_territory": "IS",
  941. "_type": "Atlantic/Reykjavik"
  942. },
  943. {
  944. "_other": "Greenwich Standard Time",
  945. "_territory": "LR",
  946. "_type": "Africa/Monrovia"
  947. },
  948. {
  949. "_other": "Greenwich Standard Time",
  950. "_territory": "ML",
  951. "_type": "Africa/Bamako"
  952. },
  953. {
  954. "_other": "Greenwich Standard Time",
  955. "_territory": "MR",
  956. "_type": "Africa/Nouakchott"
  957. },
  958. {
  959. "_other": "Greenwich Standard Time",
  960. "_territory": "SH",
  961. "_type": "Atlantic/St_Helena"
  962. },
  963. {
  964. "_other": "Greenwich Standard Time",
  965. "_territory": "SL",
  966. "_type": "Africa/Freetown"
  967. },
  968. {
  969. "_other": "Greenwich Standard Time",
  970. "_territory": "SN",
  971. "_type": "Africa/Dakar"
  972. },
  973. {
  974. "_other": "Greenwich Standard Time",
  975. "_territory": "TG",
  976. "_type": "Africa/Lome"
  977. },
  978. {
  979. "_other": "W. Europe Standard Time",
  980. "_territory": "001",
  981. "_type": "Europe/Berlin"
  982. },
  983. {
  984. "_other": "W. Europe Standard Time",
  985. "_territory": "AD",
  986. "_type": "Europe/Andorra"
  987. },
  988. {
  989. "_other": "W. Europe Standard Time",
  990. "_territory": "AT",
  991. "_type": "Europe/Vienna"
  992. },
  993. {
  994. "_other": "W. Europe Standard Time",
  995. "_territory": "CH",
  996. "_type": "Europe/Zurich"
  997. },
  998. {
  999. "_other": "W. Europe Standard Time",
  1000. "_territory": "DE",
  1001. "_type": "Europe/Berlin Europe/Busingen"
  1002. },
  1003. {
  1004. "_other": "W. Europe Standard Time",
  1005. "_territory": "GI",
  1006. "_type": "Europe/Gibraltar"
  1007. },
  1008. {
  1009. "_other": "W. Europe Standard Time",
  1010. "_territory": "IT",
  1011. "_type": "Europe/Rome"
  1012. },
  1013. {
  1014. "_other": "W. Europe Standard Time",
  1015. "_territory": "LI",
  1016. "_type": "Europe/Vaduz"
  1017. },
  1018. {
  1019. "_other": "W. Europe Standard Time",
  1020. "_territory": "LU",
  1021. "_type": "Europe/Luxembourg"
  1022. },
  1023. {
  1024. "_other": "W. Europe Standard Time",
  1025. "_territory": "MC",
  1026. "_type": "Europe/Monaco"
  1027. },
  1028. {
  1029. "_other": "W. Europe Standard Time",
  1030. "_territory": "MT",
  1031. "_type": "Europe/Malta"
  1032. },
  1033. {
  1034. "_other": "W. Europe Standard Time",
  1035. "_territory": "NL",
  1036. "_type": "Europe/Amsterdam"
  1037. },
  1038. {
  1039. "_other": "W. Europe Standard Time",
  1040. "_territory": "NO",
  1041. "_type": "Europe/Oslo"
  1042. },
  1043. {
  1044. "_other": "W. Europe Standard Time",
  1045. "_territory": "SE",
  1046. "_type": "Europe/Stockholm"
  1047. },
  1048. {
  1049. "_other": "W. Europe Standard Time",
  1050. "_territory": "SJ",
  1051. "_type": "Arctic/Longyearbyen"
  1052. },
  1053. {
  1054. "_other": "W. Europe Standard Time",
  1055. "_territory": "SM",
  1056. "_type": "Europe/San_Marino"
  1057. },
  1058. {
  1059. "_other": "W. Europe Standard Time",
  1060. "_territory": "VA",
  1061. "_type": "Europe/Vatican"
  1062. },
  1063. {
  1064. "_other": "Central Europe Standard Time",
  1065. "_territory": "001",
  1066. "_type": "Europe/Budapest"
  1067. },
  1068. {
  1069. "_other": "Central Europe Standard Time",
  1070. "_territory": "AL",
  1071. "_type": "Europe/Tirane"
  1072. },
  1073. {
  1074. "_other": "Central Europe Standard Time",
  1075. "_territory": "CZ",
  1076. "_type": "Europe/Prague"
  1077. },
  1078. {
  1079. "_other": "Central Europe Standard Time",
  1080. "_territory": "HU",
  1081. "_type": "Europe/Budapest"
  1082. },
  1083. {
  1084. "_other": "Central Europe Standard Time",
  1085. "_territory": "ME",
  1086. "_type": "Europe/Podgorica"
  1087. },
  1088. {
  1089. "_other": "Central Europe Standard Time",
  1090. "_territory": "RS",
  1091. "_type": "Europe/Belgrade"
  1092. },
  1093. {
  1094. "_other": "Central Europe Standard Time",
  1095. "_territory": "SI",
  1096. "_type": "Europe/Ljubljana"
  1097. },
  1098. {
  1099. "_other": "Central Europe Standard Time",
  1100. "_territory": "SK",
  1101. "_type": "Europe/Bratislava"
  1102. },
  1103. {
  1104. "_other": "Romance Standard Time",
  1105. "_territory": "001",
  1106. "_type": "Europe/Paris"
  1107. },
  1108. {
  1109. "_other": "Romance Standard Time",
  1110. "_territory": "BE",
  1111. "_type": "Europe/Brussels"
  1112. },
  1113. {
  1114. "_other": "Romance Standard Time",
  1115. "_territory": "DK",
  1116. "_type": "Europe/Copenhagen"
  1117. },
  1118. {
  1119. "_other": "Romance Standard Time",
  1120. "_territory": "ES",
  1121. "_type": "Europe/Madrid Africa/Ceuta"
  1122. },
  1123. {
  1124. "_other": "Romance Standard Time",
  1125. "_territory": "FR",
  1126. "_type": "Europe/Paris"
  1127. },
  1128. {
  1129. "_other": "Central European Standard Time",
  1130. "_territory": "001",
  1131. "_type": "Europe/Warsaw"
  1132. },
  1133. {
  1134. "_other": "Central European Standard Time",
  1135. "_territory": "BA",
  1136. "_type": "Europe/Sarajevo"
  1137. },
  1138. {
  1139. "_other": "Central European Standard Time",
  1140. "_territory": "HR",
  1141. "_type": "Europe/Zagreb"
  1142. },
  1143. {
  1144. "_other": "Central European Standard Time",
  1145. "_territory": "MK",
  1146. "_type": "Europe/Skopje"
  1147. },
  1148. {
  1149. "_other": "Central European Standard Time",
  1150. "_territory": "PL",
  1151. "_type": "Europe/Warsaw"
  1152. },
  1153. {
  1154. "_other": "W. Central Africa Standard Time",
  1155. "_territory": "001",
  1156. "_type": "Africa/Lagos"
  1157. },
  1158. {
  1159. "_other": "W. Central Africa Standard Time",
  1160. "_territory": "AO",
  1161. "_type": "Africa/Luanda"
  1162. },
  1163. {
  1164. "_other": "W. Central Africa Standard Time",
  1165. "_territory": "BJ",
  1166. "_type": "Africa/Porto-Novo"
  1167. },
  1168. {
  1169. "_other": "W. Central Africa Standard Time",
  1170. "_territory": "CD",
  1171. "_type": "Africa/Kinshasa"
  1172. },
  1173. {
  1174. "_other": "W. Central Africa Standard Time",
  1175. "_territory": "CF",
  1176. "_type": "Africa/Bangui"
  1177. },
  1178. {
  1179. "_other": "W. Central Africa Standard Time",
  1180. "_territory": "CG",
  1181. "_type": "Africa/Brazzaville"
  1182. },
  1183. {
  1184. "_other": "W. Central Africa Standard Time",
  1185. "_territory": "CM",
  1186. "_type": "Africa/Douala"
  1187. },
  1188. {
  1189. "_other": "W. Central Africa Standard Time",
  1190. "_territory": "DZ",
  1191. "_type": "Africa/Algiers"
  1192. },
  1193. {
  1194. "_other": "W. Central Africa Standard Time",
  1195. "_territory": "GA",
  1196. "_type": "Africa/Libreville"
  1197. },
  1198. {
  1199. "_other": "W. Central Africa Standard Time",
  1200. "_territory": "GQ",
  1201. "_type": "Africa/Malabo"
  1202. },
  1203. {
  1204. "_other": "W. Central Africa Standard Time",
  1205. "_territory": "NE",
  1206. "_type": "Africa/Niamey"
  1207. },
  1208. {
  1209. "_other": "W. Central Africa Standard Time",
  1210. "_territory": "NG",
  1211. "_type": "Africa/Lagos"
  1212. },
  1213. {
  1214. "_other": "W. Central Africa Standard Time",
  1215. "_territory": "ST",
  1216. "_type": "Africa/Sao_Tome"
  1217. },
  1218. {
  1219. "_other": "W. Central Africa Standard Time",
  1220. "_territory": "TD",
  1221. "_type": "Africa/Ndjamena"
  1222. },
  1223. {
  1224. "_other": "W. Central Africa Standard Time",
  1225. "_territory": "TN",
  1226. "_type": "Africa/Tunis"
  1227. },
  1228. {
  1229. "_other": "W. Central Africa Standard Time",
  1230. "_territory": "ZZ",
  1231. "_type": "Etc/GMT-1"
  1232. },
  1233. {
  1234. "_other": "Jordan Standard Time",
  1235. "_territory": "001",
  1236. "_type": "Asia/Amman"
  1237. },
  1238. {
  1239. "_other": "Jordan Standard Time",
  1240. "_territory": "JO",
  1241. "_type": "Asia/Amman"
  1242. },
  1243. {
  1244. "_other": "GTB Standard Time",
  1245. "_territory": "001",
  1246. "_type": "Europe/Bucharest"
  1247. },
  1248. {
  1249. "_other": "GTB Standard Time",
  1250. "_territory": "CY",
  1251. "_type": "Asia/Famagusta Asia/Nicosia"
  1252. },
  1253. {
  1254. "_other": "GTB Standard Time",
  1255. "_territory": "GR",
  1256. "_type": "Europe/Athens"
  1257. },
  1258. {
  1259. "_other": "GTB Standard Time",
  1260. "_territory": "RO",
  1261. "_type": "Europe/Bucharest"
  1262. },
  1263. {
  1264. "_other": "Middle East Standard Time",
  1265. "_territory": "001",
  1266. "_type": "Asia/Beirut"
  1267. },
  1268. {
  1269. "_other": "Middle East Standard Time",
  1270. "_territory": "LB",
  1271. "_type": "Asia/Beirut"
  1272. },
  1273. {
  1274. "_other": "Egypt Standard Time",
  1275. "_territory": "001",
  1276. "_type": "Africa/Cairo"
  1277. },
  1278. {
  1279. "_other": "Egypt Standard Time",
  1280. "_territory": "EG",
  1281. "_type": "Africa/Cairo"
  1282. },
  1283. {
  1284. "_other": "E. Europe Standard Time",
  1285. "_territory": "001",
  1286. "_type": "Europe/Chisinau"
  1287. },
  1288. {
  1289. "_other": "E. Europe Standard Time",
  1290. "_territory": "MD",
  1291. "_type": "Europe/Chisinau"
  1292. },
  1293. {
  1294. "_other": "Syria Standard Time",
  1295. "_territory": "001",
  1296. "_type": "Asia/Damascus"
  1297. },
  1298. {
  1299. "_other": "Syria Standard Time",
  1300. "_territory": "SY",
  1301. "_type": "Asia/Damascus"
  1302. },
  1303. {
  1304. "_other": "West Bank Standard Time",
  1305. "_territory": "001",
  1306. "_type": "Asia/Hebron"
  1307. },
  1308. {
  1309. "_other": "West Bank Standard Time",
  1310. "_territory": "PS",
  1311. "_type": "Asia/Hebron Asia/Gaza"
  1312. },
  1313. {
  1314. "_other": "South Africa Standard Time",
  1315. "_territory": "001",
  1316. "_type": "Africa/Johannesburg"
  1317. },
  1318. {
  1319. "_other": "South Africa Standard Time",
  1320. "_territory": "BI",
  1321. "_type": "Africa/Bujumbura"
  1322. },
  1323. {
  1324. "_other": "South Africa Standard Time",
  1325. "_territory": "BW",
  1326. "_type": "Africa/Gaborone"
  1327. },
  1328. {
  1329. "_other": "South Africa Standard Time",
  1330. "_territory": "CD",
  1331. "_type": "Africa/Lubumbashi"
  1332. },
  1333. {
  1334. "_other": "South Africa Standard Time",
  1335. "_territory": "LS",
  1336. "_type": "Africa/Maseru"
  1337. },
  1338. {
  1339. "_other": "South Africa Standard Time",
  1340. "_territory": "MW",
  1341. "_type": "Africa/Blantyre"
  1342. },
  1343. {
  1344. "_other": "South Africa Standard Time",
  1345. "_territory": "MZ",
  1346. "_type": "Africa/Maputo"
  1347. },
  1348. {
  1349. "_other": "South Africa Standard Time",
  1350. "_territory": "RW",
  1351. "_type": "Africa/Kigali"
  1352. },
  1353. {
  1354. "_other": "South Africa Standard Time",
  1355. "_territory": "SZ",
  1356. "_type": "Africa/Mbabane"
  1357. },
  1358. {
  1359. "_other": "South Africa Standard Time",
  1360. "_territory": "ZA",
  1361. "_type": "Africa/Johannesburg"
  1362. },
  1363. {
  1364. "_other": "South Africa Standard Time",
  1365. "_territory": "ZM",
  1366. "_type": "Africa/Lusaka"
  1367. },
  1368. {
  1369. "_other": "South Africa Standard Time",
  1370. "_territory": "ZW",
  1371. "_type": "Africa/Harare"
  1372. },
  1373. {
  1374. "_other": "South Africa Standard Time",
  1375. "_territory": "ZZ",
  1376. "_type": "Etc/GMT-2"
  1377. },
  1378. {
  1379. "_other": "FLE Standard Time",
  1380. "_territory": "001",
  1381. "_type": "Europe/Kiev"
  1382. },
  1383. {
  1384. "_other": "FLE Standard Time",
  1385. "_territory": "AX",
  1386. "_type": "Europe/Mariehamn"
  1387. },
  1388. {
  1389. "_other": "FLE Standard Time",
  1390. "_territory": "BG",
  1391. "_type": "Europe/Sofia"
  1392. },
  1393. {
  1394. "_other": "FLE Standard Time",
  1395. "_territory": "EE",
  1396. "_type": "Europe/Tallinn"
  1397. },
  1398. {
  1399. "_other": "FLE Standard Time",
  1400. "_territory": "FI",
  1401. "_type": "Europe/Helsinki"
  1402. },
  1403. {
  1404. "_other": "FLE Standard Time",
  1405. "_territory": "LT",
  1406. "_type": "Europe/Vilnius"
  1407. },
  1408. {
  1409. "_other": "FLE Standard Time",
  1410. "_territory": "LV",
  1411. "_type": "Europe/Riga"
  1412. },
  1413. {
  1414. "_other": "FLE Standard Time",
  1415. "_territory": "UA",
  1416. "_type": "Europe/Kiev Europe/Uzhgorod Europe/Zaporozhye"
  1417. },
  1418. {
  1419. "_other": "Israel Standard Time",
  1420. "_territory": "001",
  1421. "_type": "Asia/Jerusalem"
  1422. },
  1423. {
  1424. "_other": "Israel Standard Time",
  1425. "_territory": "IL",
  1426. "_type": "Asia/Jerusalem"
  1427. },
  1428. {
  1429. "_other": "Kaliningrad Standard Time",
  1430. "_territory": "001",
  1431. "_type": "Europe/Kaliningrad"
  1432. },
  1433. {
  1434. "_other": "Kaliningrad Standard Time",
  1435. "_territory": "RU",
  1436. "_type": "Europe/Kaliningrad"
  1437. },
  1438. {
  1439. "_other": "Sudan Standard Time",
  1440. "_territory": "001",
  1441. "_type": "Africa/Khartoum"
  1442. },
  1443. {
  1444. "_other": "Sudan Standard Time",
  1445. "_territory": "SD",
  1446. "_type": "Africa/Khartoum"
  1447. },
  1448. {
  1449. "_other": "Libya Standard Time",
  1450. "_territory": "001",
  1451. "_type": "Africa/Tripoli"
  1452. },
  1453. {
  1454. "_other": "Libya Standard Time",
  1455. "_territory": "LY",
  1456. "_type": "Africa/Tripoli"
  1457. },
  1458. {
  1459. "_other": "Namibia Standard Time",
  1460. "_territory": "001",
  1461. "_type": "Africa/Windhoek"
  1462. },
  1463. {
  1464. "_other": "Namibia Standard Time",
  1465. "_territory": "NA",
  1466. "_type": "Africa/Windhoek"
  1467. },
  1468. {
  1469. "_other": "Arabic Standard Time",
  1470. "_territory": "001",
  1471. "_type": "Asia/Baghdad"
  1472. },
  1473. {
  1474. "_other": "Arabic Standard Time",
  1475. "_territory": "IQ",
  1476. "_type": "Asia/Baghdad"
  1477. },
  1478. {
  1479. "_other": "Turkey Standard Time",
  1480. "_territory": "001",
  1481. "_type": "Europe/Istanbul"
  1482. },
  1483. {
  1484. "_other": "Turkey Standard Time",
  1485. "_territory": "TR",
  1486. "_type": "Europe/Istanbul"
  1487. },
  1488. {
  1489. "_other": "Arab Standard Time",
  1490. "_territory": "001",
  1491. "_type": "Asia/Riyadh"
  1492. },
  1493. {
  1494. "_other": "Arab Standard Time",
  1495. "_territory": "BH",
  1496. "_type": "Asia/Bahrain"
  1497. },
  1498. {
  1499. "_other": "Arab Standard Time",
  1500. "_territory": "KW",
  1501. "_type": "Asia/Kuwait"
  1502. },
  1503. {
  1504. "_other": "Arab Standard Time",
  1505. "_territory": "QA",
  1506. "_type": "Asia/Qatar"
  1507. },
  1508. {
  1509. "_other": "Arab Standard Time",
  1510. "_territory": "SA",
  1511. "_type": "Asia/Riyadh"
  1512. },
  1513. {
  1514. "_other": "Arab Standard Time",
  1515. "_territory": "YE",
  1516. "_type": "Asia/Aden"
  1517. },
  1518. {
  1519. "_other": "Belarus Standard Time",
  1520. "_territory": "001",
  1521. "_type": "Europe/Minsk"
  1522. },
  1523. {
  1524. "_other": "Belarus Standard Time",
  1525. "_territory": "BY",
  1526. "_type": "Europe/Minsk"
  1527. },
  1528. {
  1529. "_other": "Russian Standard Time",
  1530. "_territory": "001",
  1531. "_type": "Europe/Moscow"
  1532. },
  1533. {
  1534. "_other": "Russian Standard Time",
  1535. "_territory": "RU",
  1536. "_type": "Europe/Moscow Europe/Kirov Europe/Volgograd"
  1537. },
  1538. {
  1539. "_other": "Russian Standard Time",
  1540. "_territory": "UA",
  1541. "_type": "Europe/Simferopol"
  1542. },
  1543. {
  1544. "_other": "E. Africa Standard Time",
  1545. "_territory": "001",
  1546. "_type": "Africa/Nairobi"
  1547. },
  1548. {
  1549. "_other": "E. Africa Standard Time",
  1550. "_territory": "AQ",
  1551. "_type": "Antarctica/Syowa"
  1552. },
  1553. {
  1554. "_other": "E. Africa Standard Time",
  1555. "_territory": "DJ",
  1556. "_type": "Africa/Djibouti"
  1557. },
  1558. {
  1559. "_other": "E. Africa Standard Time",
  1560. "_territory": "ER",
  1561. "_type": "Africa/Asmera"
  1562. },
  1563. {
  1564. "_other": "E. Africa Standard Time",
  1565. "_territory": "ET",
  1566. "_type": "Africa/Addis_Ababa"
  1567. },
  1568. {
  1569. "_other": "E. Africa Standard Time",
  1570. "_territory": "KE",
  1571. "_type": "Africa/Nairobi"
  1572. },
  1573. {
  1574. "_other": "E. Africa Standard Time",
  1575. "_territory": "KM",
  1576. "_type": "Indian/Comoro"
  1577. },
  1578. {
  1579. "_other": "E. Africa Standard Time",
  1580. "_territory": "MG",
  1581. "_type": "Indian/Antananarivo"
  1582. },
  1583. {
  1584. "_other": "E. Africa Standard Time",
  1585. "_territory": "SO",
  1586. "_type": "Africa/Mogadishu"
  1587. },
  1588. {
  1589. "_other": "E. Africa Standard Time",
  1590. "_territory": "SS",
  1591. "_type": "Africa/Juba"
  1592. },
  1593. {
  1594. "_other": "E. Africa Standard Time",
  1595. "_territory": "TZ",
  1596. "_type": "Africa/Dar_es_Salaam"
  1597. },
  1598. {
  1599. "_other": "E. Africa Standard Time",
  1600. "_territory": "UG",
  1601. "_type": "Africa/Kampala"
  1602. },
  1603. {
  1604. "_other": "E. Africa Standard Time",
  1605. "_territory": "YT",
  1606. "_type": "Indian/Mayotte"
  1607. },
  1608. {
  1609. "_other": "E. Africa Standard Time",
  1610. "_territory": "ZZ",
  1611. "_type": "Etc/GMT-3"
  1612. },
  1613. {
  1614. "_other": "Iran Standard Time",
  1615. "_territory": "001",
  1616. "_type": "Asia/Tehran"
  1617. },
  1618. {
  1619. "_other": "Iran Standard Time",
  1620. "_territory": "IR",
  1621. "_type": "Asia/Tehran"
  1622. },
  1623. {
  1624. "_other": "Arabian Standard Time",
  1625. "_territory": "001",
  1626. "_type": "Asia/Dubai"
  1627. },
  1628. {
  1629. "_other": "Arabian Standard Time",
  1630. "_territory": "AE",
  1631. "_type": "Asia/Dubai"
  1632. },
  1633. {
  1634. "_other": "Arabian Standard Time",
  1635. "_territory": "OM",
  1636. "_type": "Asia/Muscat"
  1637. },
  1638. {
  1639. "_other": "Arabian Standard Time",
  1640. "_territory": "ZZ",
  1641. "_type": "Etc/GMT-4"
  1642. },
  1643. {
  1644. "_other": "Astrakhan Standard Time",
  1645. "_territory": "001",
  1646. "_type": "Europe/Astrakhan"
  1647. },
  1648. {
  1649. "_other": "Astrakhan Standard Time",
  1650. "_territory": "RU",
  1651. "_type": "Europe/Astrakhan Europe/Ulyanovsk"
  1652. },
  1653. {
  1654. "_other": "Azerbaijan Standard Time",
  1655. "_territory": "001",
  1656. "_type": "Asia/Baku"
  1657. },
  1658. {
  1659. "_other": "Azerbaijan Standard Time",
  1660. "_territory": "AZ",
  1661. "_type": "Asia/Baku"
  1662. },
  1663. {
  1664. "_other": "Russia Time Zone 3",
  1665. "_territory": "001",
  1666. "_type": "Europe/Samara"
  1667. },
  1668. {
  1669. "_other": "Russia Time Zone 3",
  1670. "_territory": "RU",
  1671. "_type": "Europe/Samara"
  1672. },
  1673. {
  1674. "_other": "Mauritius Standard Time",
  1675. "_territory": "001",
  1676. "_type": "Indian/Mauritius"
  1677. },
  1678. {
  1679. "_other": "Mauritius Standard Time",
  1680. "_territory": "MU",
  1681. "_type": "Indian/Mauritius"
  1682. },
  1683. {
  1684. "_other": "Mauritius Standard Time",
  1685. "_territory": "RE",
  1686. "_type": "Indian/Reunion"
  1687. },
  1688. {
  1689. "_other": "Mauritius Standard Time",
  1690. "_territory": "SC",
  1691. "_type": "Indian/Mahe"
  1692. },
  1693. {
  1694. "_other": "Saratov Standard Time",
  1695. "_territory": "001",
  1696. "_type": "Europe/Saratov"
  1697. },
  1698. {
  1699. "_other": "Saratov Standard Time",
  1700. "_territory": "RU",
  1701. "_type": "Europe/Saratov"
  1702. },
  1703. {
  1704. "_other": "Georgian Standard Time",
  1705. "_territory": "001",
  1706. "_type": "Asia/Tbilisi"
  1707. },
  1708. {
  1709. "_other": "Georgian Standard Time",
  1710. "_territory": "GE",
  1711. "_type": "Asia/Tbilisi"
  1712. },
  1713. {
  1714. "_other": "Caucasus Standard Time",
  1715. "_territory": "001",
  1716. "_type": "Asia/Yerevan"
  1717. },
  1718. {
  1719. "_other": "Caucasus Standard Time",
  1720. "_territory": "AM",
  1721. "_type": "Asia/Yerevan"
  1722. },
  1723. {
  1724. "_other": "Afghanistan Standard Time",
  1725. "_territory": "001",
  1726. "_type": "Asia/Kabul"
  1727. },
  1728. {
  1729. "_other": "Afghanistan Standard Time",
  1730. "_territory": "AF",
  1731. "_type": "Asia/Kabul"
  1732. },
  1733. {
  1734. "_other": "West Asia Standard Time",
  1735. "_territory": "001",
  1736. "_type": "Asia/Tashkent"
  1737. },
  1738. {
  1739. "_other": "West Asia Standard Time",
  1740. "_territory": "AQ",
  1741. "_type": "Antarctica/Mawson"
  1742. },
  1743. {
  1744. "_other": "West Asia Standard Time",
  1745. "_territory": "KZ",
  1746. "_type": "Asia/Oral Asia/Aqtau Asia/Aqtobe Asia/Atyrau"
  1747. },
  1748. {
  1749. "_other": "West Asia Standard Time",
  1750. "_territory": "MV",
  1751. "_type": "Indian/Maldives"
  1752. },
  1753. {
  1754. "_other": "West Asia Standard Time",
  1755. "_territory": "TF",
  1756. "_type": "Indian/Kerguelen"
  1757. },
  1758. {
  1759. "_other": "West Asia Standard Time",
  1760. "_territory": "TJ",
  1761. "_type": "Asia/Dushanbe"
  1762. },
  1763. {
  1764. "_other": "West Asia Standard Time",
  1765. "_territory": "TM",
  1766. "_type": "Asia/Ashgabat"
  1767. },
  1768. {
  1769. "_other": "West Asia Standard Time",
  1770. "_territory": "UZ",
  1771. "_type": "Asia/Tashkent Asia/Samarkand"
  1772. },
  1773. {
  1774. "_other": "West Asia Standard Time",
  1775. "_territory": "ZZ",
  1776. "_type": "Etc/GMT-5"
  1777. },
  1778. {
  1779. "_other": "Ekaterinburg Standard Time",
  1780. "_territory": "001",
  1781. "_type": "Asia/Yekaterinburg"
  1782. },
  1783. {
  1784. "_other": "Ekaterinburg Standard Time",
  1785. "_territory": "RU",
  1786. "_type": "Asia/Yekaterinburg"
  1787. },
  1788. {
  1789. "_other": "Pakistan Standard Time",
  1790. "_territory": "001",
  1791. "_type": "Asia/Karachi"
  1792. },
  1793. {
  1794. "_other": "Pakistan Standard Time",
  1795. "_territory": "PK",
  1796. "_type": "Asia/Karachi"
  1797. },
  1798. {
  1799. "_other": "India Standard Time",
  1800. "_territory": "001",
  1801. "_type": "Asia/Calcutta"
  1802. },
  1803. {
  1804. "_other": "India Standard Time",
  1805. "_territory": "IN",
  1806. "_type": "Asia/Calcutta"
  1807. },
  1808. {
  1809. "_other": "Sri Lanka Standard Time",
  1810. "_territory": "001",
  1811. "_type": "Asia/Colombo"
  1812. },
  1813. {
  1814. "_other": "Sri Lanka Standard Time",
  1815. "_territory": "LK",
  1816. "_type": "Asia/Colombo"
  1817. },
  1818. {
  1819. "_other": "Nepal Standard Time",
  1820. "_territory": "001",
  1821. "_type": "Asia/Katmandu"
  1822. },
  1823. {
  1824. "_other": "Nepal Standard Time",
  1825. "_territory": "NP",
  1826. "_type": "Asia/Katmandu"
  1827. },
  1828. {
  1829. "_other": "Central Asia Standard Time",
  1830. "_territory": "001",
  1831. "_type": "Asia/Almaty"
  1832. },
  1833. {
  1834. "_other": "Central Asia Standard Time",
  1835. "_territory": "AQ",
  1836. "_type": "Antarctica/Vostok"
  1837. },
  1838. {
  1839. "_other": "Central Asia Standard Time",
  1840. "_territory": "CN",
  1841. "_type": "Asia/Urumqi"
  1842. },
  1843. {
  1844. "_other": "Central Asia Standard Time",
  1845. "_territory": "IO",
  1846. "_type": "Indian/Chagos"
  1847. },
  1848. {
  1849. "_other": "Central Asia Standard Time",
  1850. "_territory": "KG",
  1851. "_type": "Asia/Bishkek"
  1852. },
  1853. {
  1854. "_other": "Central Asia Standard Time",
  1855. "_territory": "KZ",
  1856. "_type": "Asia/Almaty Asia/Qyzylorda"
  1857. },
  1858. {
  1859. "_other": "Central Asia Standard Time",
  1860. "_territory": "ZZ",
  1861. "_type": "Etc/GMT-6"
  1862. },
  1863. {
  1864. "_other": "Bangladesh Standard Time",
  1865. "_territory": "001",
  1866. "_type": "Asia/Dhaka"
  1867. },
  1868. {
  1869. "_other": "Bangladesh Standard Time",
  1870. "_territory": "BD",
  1871. "_type": "Asia/Dhaka"
  1872. },
  1873. {
  1874. "_other": "Bangladesh Standard Time",
  1875. "_territory": "BT",
  1876. "_type": "Asia/Thimphu"
  1877. },
  1878. {
  1879. "_other": "Omsk Standard Time",
  1880. "_territory": "001",
  1881. "_type": "Asia/Omsk"
  1882. },
  1883. {
  1884. "_other": "Omsk Standard Time",
  1885. "_territory": "RU",
  1886. "_type": "Asia/Omsk"
  1887. },
  1888. {
  1889. "_other": "Myanmar Standard Time",
  1890. "_territory": "001",
  1891. "_type": "Asia/Rangoon"
  1892. },
  1893. {
  1894. "_other": "Myanmar Standard Time",
  1895. "_territory": "CC",
  1896. "_type": "Indian/Cocos"
  1897. },
  1898. {
  1899. "_other": "Myanmar Standard Time",
  1900. "_territory": "MM",
  1901. "_type": "Asia/Rangoon"
  1902. },
  1903. {
  1904. "_other": "SE Asia Standard Time",
  1905. "_territory": "001",
  1906. "_type": "Asia/Bangkok"
  1907. },
  1908. {
  1909. "_other": "SE Asia Standard Time",
  1910. "_territory": "AQ",
  1911. "_type": "Antarctica/Davis"
  1912. },
  1913. {
  1914. "_other": "SE Asia Standard Time",
  1915. "_territory": "CX",
  1916. "_type": "Indian/Christmas"
  1917. },
  1918. {
  1919. "_other": "SE Asia Standard Time",
  1920. "_territory": "ID",
  1921. "_type": "Asia/Jakarta Asia/Pontianak"
  1922. },
  1923. {
  1924. "_other": "SE Asia Standard Time",
  1925. "_territory": "KH",
  1926. "_type": "Asia/Phnom_Penh"
  1927. },
  1928. {
  1929. "_other": "SE Asia Standard Time",
  1930. "_territory": "LA",
  1931. "_type": "Asia/Vientiane"
  1932. },
  1933. {
  1934. "_other": "SE Asia Standard Time",
  1935. "_territory": "TH",
  1936. "_type": "Asia/Bangkok"
  1937. },
  1938. {
  1939. "_other": "SE Asia Standard Time",
  1940. "_territory": "VN",
  1941. "_type": "Asia/Saigon"
  1942. },
  1943. {
  1944. "_other": "SE Asia Standard Time",
  1945. "_territory": "ZZ",
  1946. "_type": "Etc/GMT-7"
  1947. },
  1948. {
  1949. "_other": "Altai Standard Time",
  1950. "_territory": "001",
  1951. "_type": "Asia/Barnaul"
  1952. },
  1953. {
  1954. "_other": "Altai Standard Time",
  1955. "_territory": "RU",
  1956. "_type": "Asia/Barnaul"
  1957. },
  1958. {
  1959. "_other": "W. Mongolia Standard Time",
  1960. "_territory": "001",
  1961. "_type": "Asia/Hovd"
  1962. },
  1963. {
  1964. "_other": "W. Mongolia Standard Time",
  1965. "_territory": "MN",
  1966. "_type": "Asia/Hovd"
  1967. },
  1968. {
  1969. "_other": "North Asia Standard Time",
  1970. "_territory": "001",
  1971. "_type": "Asia/Krasnoyarsk"
  1972. },
  1973. {
  1974. "_other": "North Asia Standard Time",
  1975. "_territory": "RU",
  1976. "_type": "Asia/Krasnoyarsk Asia/Novokuznetsk"
  1977. },
  1978. {
  1979. "_other": "N. Central Asia Standard Time",
  1980. "_territory": "001",
  1981. "_type": "Asia/Novosibirsk"
  1982. },
  1983. {
  1984. "_other": "N. Central Asia Standard Time",
  1985. "_territory": "RU",
  1986. "_type": "Asia/Novosibirsk"
  1987. },
  1988. {
  1989. "_other": "Tomsk Standard Time",
  1990. "_territory": "001",
  1991. "_type": "Asia/Tomsk"
  1992. },
  1993. {
  1994. "_other": "Tomsk Standard Time",
  1995. "_territory": "RU",
  1996. "_type": "Asia/Tomsk"
  1997. },
  1998. {
  1999. "_other": "China Standard Time",
  2000. "_territory": "001",
  2001. "_type": "Asia/Shanghai"
  2002. },
  2003. {
  2004. "_other": "China Standard Time",
  2005. "_territory": "CN",
  2006. "_type": "Asia/Shanghai"
  2007. },
  2008. {
  2009. "_other": "China Standard Time",
  2010. "_territory": "HK",
  2011. "_type": "Asia/Hong_Kong"
  2012. },
  2013. {
  2014. "_other": "China Standard Time",
  2015. "_territory": "MO",
  2016. "_type": "Asia/Macau"
  2017. },
  2018. {
  2019. "_other": "North Asia East Standard Time",
  2020. "_territory": "001",
  2021. "_type": "Asia/Irkutsk"
  2022. },
  2023. {
  2024. "_other": "North Asia East Standard Time",
  2025. "_territory": "RU",
  2026. "_type": "Asia/Irkutsk"
  2027. },
  2028. {
  2029. "_other": "Singapore Standard Time",
  2030. "_territory": "001",
  2031. "_type": "Asia/Singapore"
  2032. },
  2033. {
  2034. "_other": "Singapore Standard Time",
  2035. "_territory": "BN",
  2036. "_type": "Asia/Brunei"
  2037. },
  2038. {
  2039. "_other": "Singapore Standard Time",
  2040. "_territory": "ID",
  2041. "_type": "Asia/Makassar"
  2042. },
  2043. {
  2044. "_other": "Singapore Standard Time",
  2045. "_territory": "MY",
  2046. "_type": "Asia/Kuala_Lumpur Asia/Kuching"
  2047. },
  2048. {
  2049. "_other": "Singapore Standard Time",
  2050. "_territory": "PH",
  2051. "_type": "Asia/Manila"
  2052. },
  2053. {
  2054. "_other": "Singapore Standard Time",
  2055. "_territory": "SG",
  2056. "_type": "Asia/Singapore"
  2057. },
  2058. {
  2059. "_other": "Singapore Standard Time",
  2060. "_territory": "ZZ",
  2061. "_type": "Etc/GMT-8"
  2062. },
  2063. {
  2064. "_other": "W. Australia Standard Time",
  2065. "_territory": "001",
  2066. "_type": "Australia/Perth"
  2067. },
  2068. {
  2069. "_other": "W. Australia Standard Time",
  2070. "_territory": "AQ",
  2071. "_type": "Antarctica/Casey"
  2072. },
  2073. {
  2074. "_other": "W. Australia Standard Time",
  2075. "_territory": "AU",
  2076. "_type": "Australia/Perth"
  2077. },
  2078. {
  2079. "_other": "Taipei Standard Time",
  2080. "_territory": "001",
  2081. "_type": "Asia/Taipei"
  2082. },
  2083. {
  2084. "_other": "Taipei Standard Time",
  2085. "_territory": "TW",
  2086. "_type": "Asia/Taipei"
  2087. },
  2088. {
  2089. "_other": "Ulaanbaatar Standard Time",
  2090. "_territory": "001",
  2091. "_type": "Asia/Ulaanbaatar"
  2092. },
  2093. {
  2094. "_other": "Ulaanbaatar Standard Time",
  2095. "_territory": "MN",
  2096. "_type": "Asia/Ulaanbaatar Asia/Choibalsan"
  2097. },
  2098. {
  2099. "_other": "Aus Central W. Standard Time",
  2100. "_territory": "001",
  2101. "_type": "Australia/Eucla"
  2102. },
  2103. {
  2104. "_other": "Aus Central W. Standard Time",
  2105. "_territory": "AU",
  2106. "_type": "Australia/Eucla"
  2107. },
  2108. {
  2109. "_other": "Transbaikal Standard Time",
  2110. "_territory": "001",
  2111. "_type": "Asia/Chita"
  2112. },
  2113. {
  2114. "_other": "Transbaikal Standard Time",
  2115. "_territory": "RU",
  2116. "_type": "Asia/Chita"
  2117. },
  2118. {
  2119. "_other": "Tokyo Standard Time",
  2120. "_territory": "001",
  2121. "_type": "Asia/Tokyo"
  2122. },
  2123. {
  2124. "_other": "Tokyo Standard Time",
  2125. "_territory": "ID",
  2126. "_type": "Asia/Jayapura"
  2127. },
  2128. {
  2129. "_other": "Tokyo Standard Time",
  2130. "_territory": "JP",
  2131. "_type": "Asia/Tokyo"
  2132. },
  2133. {
  2134. "_other": "Tokyo Standard Time",
  2135. "_territory": "PW",
  2136. "_type": "Pacific/Palau"
  2137. },
  2138. {
  2139. "_other": "Tokyo Standard Time",
  2140. "_territory": "TL",
  2141. "_type": "Asia/Dili"
  2142. },
  2143. {
  2144. "_other": "Tokyo Standard Time",
  2145. "_territory": "ZZ",
  2146. "_type": "Etc/GMT-9"
  2147. },
  2148. {
  2149. "_other": "North Korea Standard Time",
  2150. "_territory": "001",
  2151. "_type": "Asia/Pyongyang"
  2152. },
  2153. {
  2154. "_other": "North Korea Standard Time",
  2155. "_territory": "KP",
  2156. "_type": "Asia/Pyongyang"
  2157. },
  2158. {
  2159. "_other": "Korea Standard Time",
  2160. "_territory": "001",
  2161. "_type": "Asia/Seoul"
  2162. },
  2163. {
  2164. "_other": "Korea Standard Time",
  2165. "_territory": "KR",
  2166. "_type": "Asia/Seoul"
  2167. },
  2168. {
  2169. "_other": "Yakutsk Standard Time",
  2170. "_territory": "001",
  2171. "_type": "Asia/Yakutsk"
  2172. },
  2173. {
  2174. "_other": "Yakutsk Standard Time",
  2175. "_territory": "RU",
  2176. "_type": "Asia/Yakutsk Asia/Khandyga"
  2177. },
  2178. {
  2179. "_other": "Cen. Australia Standard Time",
  2180. "_territory": "001",
  2181. "_type": "Australia/Adelaide"
  2182. },
  2183. {
  2184. "_other": "Cen. Australia Standard Time",
  2185. "_territory": "AU",
  2186. "_type": "Australia/Adelaide Australia/Broken_Hill"
  2187. },
  2188. {
  2189. "_other": "AUS Central Standard Time",
  2190. "_territory": "001",
  2191. "_type": "Australia/Darwin"
  2192. },
  2193. {
  2194. "_other": "AUS Central Standard Time",
  2195. "_territory": "AU",
  2196. "_type": "Australia/Darwin"
  2197. },
  2198. {
  2199. "_other": "E. Australia Standard Time",
  2200. "_territory": "001",
  2201. "_type": "Australia/Brisbane"
  2202. },
  2203. {
  2204. "_other": "E. Australia Standard Time",
  2205. "_territory": "AU",
  2206. "_type": "Australia/Brisbane Australia/Lindeman"
  2207. },
  2208. {
  2209. "_other": "AUS Eastern Standard Time",
  2210. "_territory": "001",
  2211. "_type": "Australia/Sydney"
  2212. },
  2213. {
  2214. "_other": "AUS Eastern Standard Time",
  2215. "_territory": "AU",
  2216. "_type": "Australia/Sydney Australia/Melbourne"
  2217. },
  2218. {
  2219. "_other": "West Pacific Standard Time",
  2220. "_territory": "001",
  2221. "_type": "Pacific/Port_Moresby"
  2222. },
  2223. {
  2224. "_other": "West Pacific Standard Time",
  2225. "_territory": "AQ",
  2226. "_type": "Antarctica/DumontDUrville"
  2227. },
  2228. {
  2229. "_other": "West Pacific Standard Time",
  2230. "_territory": "FM",
  2231. "_type": "Pacific/Truk"
  2232. },
  2233. {
  2234. "_other": "West Pacific Standard Time",
  2235. "_territory": "GU",
  2236. "_type": "Pacific/Guam"
  2237. },
  2238. {
  2239. "_other": "West Pacific Standard Time",
  2240. "_territory": "MP",
  2241. "_type": "Pacific/Saipan"
  2242. },
  2243. {
  2244. "_other": "West Pacific Standard Time",
  2245. "_territory": "PG",
  2246. "_type": "Pacific/Port_Moresby"
  2247. },
  2248. {
  2249. "_other": "West Pacific Standard Time",
  2250. "_territory": "ZZ",
  2251. "_type": "Etc/GMT-10"
  2252. },
  2253. {
  2254. "_other": "Tasmania Standard Time",
  2255. "_territory": "001",
  2256. "_type": "Australia/Hobart"
  2257. },
  2258. {
  2259. "_other": "Tasmania Standard Time",
  2260. "_territory": "AU",
  2261. "_type": "Australia/Hobart Australia/Currie"
  2262. },
  2263. {
  2264. "_other": "Vladivostok Standard Time",
  2265. "_territory": "001",
  2266. "_type": "Asia/Vladivostok"
  2267. },
  2268. {
  2269. "_other": "Vladivostok Standard Time",
  2270. "_territory": "RU",
  2271. "_type": "Asia/Vladivostok Asia/Ust-Nera"
  2272. },
  2273. {
  2274. "_other": "Lord Howe Standard Time",
  2275. "_territory": "001",
  2276. "_type": "Australia/Lord_Howe"
  2277. },
  2278. {
  2279. "_other": "Lord Howe Standard Time",
  2280. "_territory": "AU",
  2281. "_type": "Australia/Lord_Howe"
  2282. },
  2283. {
  2284. "_other": "Bougainville Standard Time",
  2285. "_territory": "001",
  2286. "_type": "Pacific/Bougainville"
  2287. },
  2288. {
  2289. "_other": "Bougainville Standard Time",
  2290. "_territory": "PG",
  2291. "_type": "Pacific/Bougainville"
  2292. },
  2293. {
  2294. "_other": "Russia Time Zone 10",
  2295. "_territory": "001",
  2296. "_type": "Asia/Srednekolymsk"
  2297. },
  2298. {
  2299. "_other": "Russia Time Zone 10",
  2300. "_territory": "RU",
  2301. "_type": "Asia/Srednekolymsk"
  2302. },
  2303. {
  2304. "_other": "Magadan Standard Time",
  2305. "_territory": "001",
  2306. "_type": "Asia/Magadan"
  2307. },
  2308. {
  2309. "_other": "Magadan Standard Time",
  2310. "_territory": "RU",
  2311. "_type": "Asia/Magadan"
  2312. },
  2313. {
  2314. "_other": "Norfolk Standard Time",
  2315. "_territory": "001",
  2316. "_type": "Pacific/Norfolk"
  2317. },
  2318. {
  2319. "_other": "Norfolk Standard Time",
  2320. "_territory": "NF",
  2321. "_type": "Pacific/Norfolk"
  2322. },
  2323. {
  2324. "_other": "Sakhalin Standard Time",
  2325. "_territory": "001",
  2326. "_type": "Asia/Sakhalin"
  2327. },
  2328. {
  2329. "_other": "Sakhalin Standard Time",
  2330. "_territory": "RU",
  2331. "_type": "Asia/Sakhalin"
  2332. },
  2333. {
  2334. "_other": "Central Pacific Standard Time",
  2335. "_territory": "001",
  2336. "_type": "Pacific/Guadalcanal"
  2337. },
  2338. {
  2339. "_other": "Central Pacific Standard Time",
  2340. "_territory": "AU",
  2341. "_type": "Antarctica/Macquarie"
  2342. },
  2343. {
  2344. "_other": "Central Pacific Standard Time",
  2345. "_territory": "FM",
  2346. "_type": "Pacific/Ponape Pacific/Kosrae"
  2347. },
  2348. {
  2349. "_other": "Central Pacific Standard Time",
  2350. "_territory": "NC",
  2351. "_type": "Pacific/Noumea"
  2352. },
  2353. {
  2354. "_other": "Central Pacific Standard Time",
  2355. "_territory": "SB",
  2356. "_type": "Pacific/Guadalcanal"
  2357. },
  2358. {
  2359. "_other": "Central Pacific Standard Time",
  2360. "_territory": "VU",
  2361. "_type": "Pacific/Efate"
  2362. },
  2363. {
  2364. "_other": "Central Pacific Standard Time",
  2365. "_territory": "ZZ",
  2366. "_type": "Etc/GMT-11"
  2367. },
  2368. {
  2369. "_other": "Russia Time Zone 11",
  2370. "_territory": "001",
  2371. "_type": "Asia/Kamchatka"
  2372. },
  2373. {
  2374. "_other": "Russia Time Zone 11",
  2375. "_territory": "RU",
  2376. "_type": "Asia/Kamchatka Asia/Anadyr"
  2377. },
  2378. {
  2379. "_other": "New Zealand Standard Time",
  2380. "_territory": "001",
  2381. "_type": "Pacific/Auckland"
  2382. },
  2383. {
  2384. "_other": "New Zealand Standard Time",
  2385. "_territory": "AQ",
  2386. "_type": "Antarctica/McMurdo"
  2387. },
  2388. {
  2389. "_other": "New Zealand Standard Time",
  2390. "_territory": "NZ",
  2391. "_type": "Pacific/Auckland"
  2392. },
  2393. {
  2394. "_other": "UTC+12",
  2395. "_territory": "001",
  2396. "_type": "Etc/GMT-12"
  2397. },
  2398. {
  2399. "_other": "UTC+12",
  2400. "_territory": "KI",
  2401. "_type": "Pacific/Tarawa"
  2402. },
  2403. {
  2404. "_other": "UTC+12",
  2405. "_territory": "MH",
  2406. "_type": "Pacific/Majuro Pacific/Kwajalein"
  2407. },
  2408. {
  2409. "_other": "UTC+12",
  2410. "_territory": "NR",
  2411. "_type": "Pacific/Nauru"
  2412. },
  2413. {
  2414. "_other": "UTC+12",
  2415. "_territory": "TV",
  2416. "_type": "Pacific/Funafuti"
  2417. },
  2418. {
  2419. "_other": "UTC+12",
  2420. "_territory": "UM",
  2421. "_type": "Pacific/Wake"
  2422. },
  2423. {
  2424. "_other": "UTC+12",
  2425. "_territory": "WF",
  2426. "_type": "Pacific/Wallis"
  2427. },
  2428. {
  2429. "_other": "UTC+12",
  2430. "_territory": "ZZ",
  2431. "_type": "Etc/GMT-12"
  2432. },
  2433. {
  2434. "_other": "Fiji Standard Time",
  2435. "_territory": "001",
  2436. "_type": "Pacific/Fiji"
  2437. },
  2438. {
  2439. "_other": "Fiji Standard Time",
  2440. "_territory": "FJ",
  2441. "_type": "Pacific/Fiji"
  2442. },
  2443. {
  2444. "_other": "Chatham Islands Standard Time",
  2445. "_territory": "001",
  2446. "_type": "Pacific/Chatham"
  2447. },
  2448. {
  2449. "_other": "Chatham Islands Standard Time",
  2450. "_territory": "NZ",
  2451. "_type": "Pacific/Chatham"
  2452. },
  2453. {
  2454. "_other": "UTC+13",
  2455. "_territory": "001",
  2456. "_type": "Etc/GMT-13"
  2457. },
  2458. {
  2459. "_other": "UTC+13",
  2460. "_territory": "KI",
  2461. "_type": "Pacific/Enderbury"
  2462. },
  2463. {
  2464. "_other": "UTC+13",
  2465. "_territory": "TK",
  2466. "_type": "Pacific/Fakaofo"
  2467. },
  2468. {
  2469. "_other": "UTC+13",
  2470. "_territory": "ZZ",
  2471. "_type": "Etc/GMT-13"
  2472. },
  2473. {
  2474. "_other": "Tonga Standard Time",
  2475. "_territory": "001",
  2476. "_type": "Pacific/Tongatapu"
  2477. },
  2478. {
  2479. "_other": "Tonga Standard Time",
  2480. "_territory": "TO",
  2481. "_type": "Pacific/Tongatapu"
  2482. },
  2483. {
  2484. "_other": "Samoa Standard Time",
  2485. "_territory": "001",
  2486. "_type": "Pacific/Apia"
  2487. },
  2488. {
  2489. "_other": "Samoa Standard Time",
  2490. "_territory": "WS",
  2491. "_type": "Pacific/Apia"
  2492. },
  2493. {
  2494. "_other": "Line Islands Standard Time",
  2495. "_territory": "001",
  2496. "_type": "Pacific/Kiritimati"
  2497. },
  2498. {
  2499. "_other": "Line Islands Standard Time",
  2500. "_territory": "KI",
  2501. "_type": "Pacific/Kiritimati"
  2502. },
  2503. {
  2504. "_other": "Line Islands Standard Time",
  2505. "_territory": "ZZ",
  2506. "_type": "Etc/GMT-14"
  2507. }
  2508. ],
  2509. "_otherVersion": "7e10900",
  2510. "_typeVersion": "2018e"
  2511. }
  2512. }
  2513. }
  2514. }