fil.xml 151 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
  3. <!-- Copyright © 1991-2013 Unicode, Inc.
  4. CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
  5. For terms of use, see http://www.unicode.org/copyright.html
  6. -->
  7. <ldml>
  8. <identity>
  9. <version number="$Revision: 9791 $"/>
  10. <generation date="$Date: 2014-02-25 15:16:49 -0600 (Tue, 25 Feb 2014) $"/>
  11. <language type="fil"/>
  12. </identity>
  13. <localeDisplayNames>
  14. <localeDisplayPattern>
  15. <localePattern>{0} ({1})</localePattern>
  16. <localeSeparator>{0}, {1}</localeSeparator>
  17. <localeKeyTypePattern>{0}: {1}</localeKeyTypePattern>
  18. </localeDisplayPattern>
  19. <languages>
  20. <language type="ab">Abkhazian</language>
  21. <language type="ach">Acoli</language>
  22. <language type="af">Afrikaans</language>
  23. <language type="ak">Akan</language>
  24. <language type="am">Amharic</language>
  25. <language type="ar">Arabic</language>
  26. <language type="ar_001">Modern Standard Arabic</language>
  27. <language type="as">Assamese</language>
  28. <language type="ay">Aymara</language>
  29. <language type="az">Azerbaijani</language>
  30. <language type="az" alt="short">Azeri</language>
  31. <language type="be">Belarusian</language>
  32. <language type="bem">Bemba</language>
  33. <language type="bg">Bulgarian</language>
  34. <language type="bn">Bengali</language>
  35. <language type="bo">Tibetan</language>
  36. <language type="br">Breton</language>
  37. <language type="bs">Bosnian</language>
  38. <language type="ca">Catalan</language>
  39. <language type="chr">Cherokee</language>
  40. <language type="ckb">Sorani Kurdish</language>
  41. <language type="co">Corsican</language>
  42. <language type="cs">Czech</language>
  43. <language type="cy">Welsh</language>
  44. <language type="da">Danish</language>
  45. <language type="de">German</language>
  46. <language type="de_AT">Austrian German</language>
  47. <language type="de_CH">Swiss High German</language>
  48. <language type="dv">Divehi</language>
  49. <language type="dz">Dzongkha</language>
  50. <language type="ee">Ewe</language>
  51. <language type="efi">Efik</language>
  52. <language type="el">Greek</language>
  53. <language type="en">Ingles</language>
  54. <language type="en_AU">Ingles sa Australia</language>
  55. <language type="en_CA">Ingles sa Canada</language>
  56. <language type="en_GB">Ingles (UK)</language>
  57. <language type="en_GB" alt="short">Ingles (U.K.)</language>
  58. <language type="en_US">Ingles (US)</language>
  59. <language type="en_US" alt="short">Ingles (U.S.)</language>
  60. <language type="eo">Esperanto</language>
  61. <language type="es">Spanish</language>
  62. <language type="es_419">Latin American Spanish</language>
  63. <language type="es_ES">European Spanish</language>
  64. <language type="es_MX">Mexican Spanish</language>
  65. <language type="et">Estonian</language>
  66. <language type="eu">Basque</language>
  67. <language type="fa">Persian</language>
  68. <language type="fi">Finnish</language>
  69. <language type="fil">Filipino</language>
  70. <language type="fj">Fijian</language>
  71. <language type="fo">Faroese</language>
  72. <language type="fr">French</language>
  73. <language type="fr_CA">Canadian French</language>
  74. <language type="fr_CH">Swiss French</language>
  75. <language type="fy">Western Frisian</language>
  76. <language type="ga">Irish</language>
  77. <language type="gaa">Ga</language>
  78. <language type="gd" draft="contributed">Scots Gaelic</language>
  79. <language type="gl">Galician</language>
  80. <language type="gn">Guarani</language>
  81. <language type="gsw">Swiss German</language>
  82. <language type="gu">Gujarati</language>
  83. <language type="ha">Hausa</language>
  84. <language type="haw">Hawaiian</language>
  85. <language type="he">Hebrew</language>
  86. <language type="hi">Hindi</language>
  87. <language type="hr">Croatian</language>
  88. <language type="ht">Haitian</language>
  89. <language type="hu">Hungarian</language>
  90. <language type="hy">Armenian</language>
  91. <language type="ia">Interlingua</language>
  92. <language type="id">Indonesian</language>
  93. <language type="ie" draft="contributed">Interlingue</language>
  94. <language type="ig">Igbo</language>
  95. <language type="is">Icelandic</language>
  96. <language type="it">Italian</language>
  97. <language type="ja">Japanese</language>
  98. <language type="jv">Javanese</language>
  99. <language type="ka">Georgian</language>
  100. <language type="kg">Kongo</language>
  101. <language type="kk">Kazakh</language>
  102. <language type="km">Khmer</language>
  103. <language type="kn">Kannada</language>
  104. <language type="ko">Korean</language>
  105. <language type="ks">Kashmiri</language>
  106. <language type="ku">Kurdish</language>
  107. <language type="ky">Kirghiz</language>
  108. <language type="la">Latin</language>
  109. <language type="lb">Luxembourgish</language>
  110. <language type="lg">Ganda</language>
  111. <language type="ln" draft="contributed">Lingala</language>
  112. <language type="lo">Lao</language>
  113. <language type="loz">Lozi</language>
  114. <language type="lt">Lithuanian</language>
  115. <language type="lua">Luba-Lulua</language>
  116. <language type="lv">Latvian</language>
  117. <language type="mfe">Morisyen</language>
  118. <language type="mg">Malagasy</language>
  119. <language type="mi">Maori</language>
  120. <language type="mk">Macedonian</language>
  121. <language type="ml">Malayalam</language>
  122. <language type="mn" draft="contributed">Mongolian</language>
  123. <language type="mr">Marathi</language>
  124. <language type="ms">Malay</language>
  125. <language type="mt">Maltese</language>
  126. <language type="my">Burmese</language>
  127. <language type="nb">Norwegian Bokmal</language>
  128. <language type="nd">North Ndebele</language>
  129. <language type="ne">Nepali</language>
  130. <language type="nl">Dutch</language>
  131. <language type="nl_BE">Flemish</language>
  132. <language type="nn">Norwegian Nynorsk</language>
  133. <language type="no" draft="contributed">Norwegian</language>
  134. <language type="nso">Northern Sotho</language>
  135. <language type="ny">Nyanja</language>
  136. <language type="nyn">Nyankole</language>
  137. <language type="oc">Occitan</language>
  138. <language type="om">Oromo</language>
  139. <language type="or">Oriya</language>
  140. <language type="os">Ossetic</language>
  141. <language type="pa">Punjabi</language>
  142. <language type="pl">Polish</language>
  143. <language type="ps">Pashto</language>
  144. <language type="ps" alt="variant">Pushto</language>
  145. <language type="pt">Portuguese</language>
  146. <language type="pt_BR">Brazilian Portuguese</language>
  147. <language type="pt_PT">European Portuguese</language>
  148. <language type="qu">Quechua</language>
  149. <language type="rm">Romansh</language>
  150. <language type="rn">Rundi</language>
  151. <language type="ro">Romanian</language>
  152. <language type="ru">Russian</language>
  153. <language type="rw">Kinyarwanda</language>
  154. <language type="sa">Sanskrit</language>
  155. <language type="sd">Sindhi</language>
  156. <language type="se">Northern Sami</language>
  157. <language type="sg">Sango</language>
  158. <language type="sh" draft="contributed">Serbo-Croatian</language>
  159. <language type="si">Sinhala</language>
  160. <language type="sk">Slovak</language>
  161. <language type="sl">Slovenian</language>
  162. <language type="sm">Samoan</language>
  163. <language type="sn">Shona</language>
  164. <language type="so">Somali</language>
  165. <language type="sq">Albanian</language>
  166. <language type="sr">Serbian</language>
  167. <language type="ss">Swati</language>
  168. <language type="st">Southern Sotho</language>
  169. <language type="su">Sundanese</language>
  170. <language type="sv">Swedish</language>
  171. <language type="sw">Swahili</language>
  172. <language type="swb">Comorian</language>
  173. <language type="ta">Tamil</language>
  174. <language type="te">Telugu</language>
  175. <language type="tet">Tetum</language>
  176. <language type="tg">Tajik</language>
  177. <language type="th">Thai</language>
  178. <language type="ti">Tigrinya</language>
  179. <language type="tk">Turkmen</language>
  180. <language type="tl" draft="provisional">Tagalog</language>
  181. <language type="tlh">Klingon</language>
  182. <language type="tn">Tswana</language>
  183. <language type="to">Tongan</language>
  184. <language type="tpi">Tok Pisin</language>
  185. <language type="tr">Turkish</language>
  186. <language type="ts">Tsonga</language>
  187. <language type="tt">Tatar</language>
  188. <language type="tum">Tumbuka</language>
  189. <language type="tw" draft="provisional">Twi</language>
  190. <language type="ty">Tahitian</language>
  191. <language type="ug">Uyghur</language>
  192. <language type="ug" alt="variant">Uighur</language>
  193. <language type="uk">Ukranian</language>
  194. <language type="und">Hindi Kilalang Wika</language>
  195. <language type="ur">Urdu</language>
  196. <language type="uz">Uzbek</language>
  197. <language type="ve">Venda</language>
  198. <language type="vi">Vietnamese</language>
  199. <language type="wo">Wolof</language>
  200. <language type="xh">Xhosa</language>
  201. <language type="yi">Yiddish</language>
  202. <language type="yo">Yoruba</language>
  203. <language type="yue">Cantonese</language>
  204. <language type="zgh">Standard Moroccan Tamazight</language>
  205. <language type="zh">Chinese</language>
  206. <language type="zh_Hans">Simplified Chinese</language>
  207. <language type="zh_Hant">Traditional Chinese</language>
  208. <language type="zu">Zulu</language>
  209. <language type="zxx">Walang nilalamang linguistic</language>
  210. </languages>
  211. <scripts>
  212. <script type="Arab">Arabic</script>
  213. <script type="Arab" alt="variant">Perso-Arabic</script>
  214. <script type="Armn">Armenian</script>
  215. <script type="Beng">Bengali</script>
  216. <script type="Bopo">Bopomofo</script>
  217. <script type="Brai">Braille</script>
  218. <script type="Cyrl">Cyrillic</script>
  219. <script type="Deva">Devanagari</script>
  220. <script type="Ethi">Ethiopic</script>
  221. <script type="Geor">Georgian</script>
  222. <script type="Grek">Greek</script>
  223. <script type="Gujr">Gujarati</script>
  224. <script type="Guru">Gurmukhi</script>
  225. <script type="Hang">Hangul</script>
  226. <script type="Hani">Han</script>
  227. <script type="Hans">Simplified</script>
  228. <script type="Hans" alt="stand-alone">Simplified Han</script>
  229. <script type="Hant">Traditional</script>
  230. <script type="Hant" alt="stand-alone">Traditional Han</script>
  231. <script type="Hebr">Hebrew</script>
  232. <script type="Hira">Hiragana</script>
  233. <script type="Jpan">Japanese</script>
  234. <script type="Kana">Katakana</script>
  235. <script type="Khmr">Khmer</script>
  236. <script type="Knda">Kannada</script>
  237. <script type="Kore">Korean</script>
  238. <script type="Laoo">Lao</script>
  239. <script type="Latn">Latin</script>
  240. <script type="Mlym">Malayalam</script>
  241. <script type="Mong">Mongolian</script>
  242. <script type="Mymr">Myanmar</script>
  243. <script type="Orya">Oriya</script>
  244. <script type="Sinh">Sinhala</script>
  245. <script type="Taml">Tamil</script>
  246. <script type="Telu">Telugu</script>
  247. <script type="Thaa">Thaana</script>
  248. <script type="Thai">Thai</script>
  249. <script type="Tibt">Tibetan</script>
  250. <script type="Zsym">Mga Simbolo</script>
  251. <script type="Zxxx">Unwritten</script>
  252. <script type="Zyyy">Common</script>
  253. <script type="Zzzz">Hindi Kilalang Script</script>
  254. </scripts>
  255. <territories>
  256. <territory type="001">Mundo</territory>
  257. <territory type="002">Africa</territory>
  258. <territory type="003">North America</territory>
  259. <territory type="005">South America</territory>
  260. <territory type="009">Oceania</territory>
  261. <territory type="011">Western Africa</territory>
  262. <territory type="013">Central America</territory>
  263. <territory type="014">Eastern Africa</territory>
  264. <territory type="015">Northern Africa</territory>
  265. <territory type="017">Middle Africa</territory>
  266. <territory type="018">Southern Africa</territory>
  267. <territory type="019">Americas</territory>
  268. <territory type="021">Northern America</territory>
  269. <territory type="029">Carribbean</territory>
  270. <territory type="030">Eastern Asia</territory>
  271. <territory type="034">Southern Asia</territory>
  272. <territory type="035">South-Eastern Asia</territory>
  273. <territory type="039">Southern Europe</territory>
  274. <territory type="053">Australasia</territory>
  275. <territory type="054">Melanesia</territory>
  276. <territory type="057">Micronesian Region</territory>
  277. <territory type="061">Polynesia</territory>
  278. <territory type="142">Asia</territory>
  279. <territory type="143">Central Asia</territory>
  280. <territory type="145">Western Asia</territory>
  281. <territory type="150">Europe</territory>
  282. <territory type="151">Eastern Europe</territory>
  283. <territory type="154">Northern Europe</territory>
  284. <territory type="155">Western Europe</territory>
  285. <territory type="419">Latin America</territory>
  286. <territory type="AC">Acsencion island</territory>
  287. <territory type="AD">Andorra</territory>
  288. <territory type="AE">United Arab Emirates</territory>
  289. <territory type="AF">Afghanistan</territory>
  290. <territory type="AG">Antigua and Barbuda</territory>
  291. <territory type="AI">Anguilla</territory>
  292. <territory type="AL">Albania</territory>
  293. <territory type="AM">Armenia</territory>
  294. <territory type="AN">Netherlands Antilles</territory>
  295. <territory type="AO">Angola</territory>
  296. <territory type="AQ">Antarctica</territory>
  297. <territory type="AR">Argentina</territory>
  298. <territory type="AS">American Samoa</territory>
  299. <territory type="AT">Austria</territory>
  300. <territory type="AU">Australia</territory>
  301. <territory type="AW">Aruba</territory>
  302. <territory type="AX">Åland Islands</territory>
  303. <territory type="AZ">Azerbaijan</territory>
  304. <territory type="BA">Bosnia and Herzegovina</territory>
  305. <territory type="BB">Barbados</territory>
  306. <territory type="BD">Bangladesh</territory>
  307. <territory type="BE">Belgium</territory>
  308. <territory type="BF">Burkina Faso</territory>
  309. <territory type="BG">Bulgaria</territory>
  310. <territory type="BH">Bahrain</territory>
  311. <territory type="BI">Burundi</territory>
  312. <territory type="BJ">Benin</territory>
  313. <territory type="BL">Saint Barthélemy</territory>
  314. <territory type="BM">Bermuda</territory>
  315. <territory type="BN">Brunei</territory>
  316. <territory type="BO">Bolivia</territory>
  317. <territory type="BQ">Caribbean Netherlands</territory>
  318. <territory type="BR">Brazil</territory>
  319. <territory type="BS">Bahamas</territory>
  320. <territory type="BT">Bhutan</territory>
  321. <territory type="BV">Bouvet Island</territory>
  322. <territory type="BW">Botswana</territory>
  323. <territory type="BY">Belarus</territory>
  324. <territory type="BZ">Belize</territory>
  325. <territory type="CA">Canada</territory>
  326. <territory type="CC">Cocos (Keeling) Islands</territory>
  327. <territory type="CD">Congo - Kinshasa</territory>
  328. <territory type="CD" alt="variant">Congo (DRC)</territory>
  329. <territory type="CF">Central African Republic</territory>
  330. <territory type="CG">Congo - Brazzaville</territory>
  331. <territory type="CG" alt="variant">Congo (Republic)</territory>
  332. <territory type="CH">Switzerland</territory>
  333. <territory type="CI">Côte d'Ivoire</territory>
  334. <territory type="CI" alt="variant">Ivory Coast</territory>
  335. <territory type="CK">Cook Islands</territory>
  336. <territory type="CL">Chile</territory>
  337. <territory type="CM">Cameroon</territory>
  338. <territory type="CN">China</territory>
  339. <territory type="CO">Colombia</territory>
  340. <territory type="CP">Clipperton Island</territory>
  341. <territory type="CR">Costa Rica</territory>
  342. <territory type="CU">Cuba</territory>
  343. <territory type="CV">Cape Verde</territory>
  344. <territory type="CW">Curaçao</territory>
  345. <territory type="CX">Christmas Island</territory>
  346. <territory type="CY">Cyprus</territory>
  347. <territory type="CZ">Czech Republic</territory>
  348. <territory type="DE">Germany</territory>
  349. <territory type="DG">Diego Garcia</territory>
  350. <territory type="DJ">Djibouti</territory>
  351. <territory type="DK">Denmark</territory>
  352. <territory type="DM">Dominica</territory>
  353. <territory type="DO">Dominican Republic</territory>
  354. <territory type="DZ">Algeria</territory>
  355. <territory type="EA">Ceuta and Melilla</territory>
  356. <territory type="EC">Ecuador</territory>
  357. <territory type="EE">Estonia</territory>
  358. <territory type="EG">Egypt</territory>
  359. <territory type="EH">Western Sahara</territory>
  360. <territory type="ER">Eritrea</territory>
  361. <territory type="ES">Spain</territory>
  362. <territory type="ET">Ethiopia</territory>
  363. <territory type="EU">European Union</territory>
  364. <territory type="FI">Finland</territory>
  365. <territory type="FJ">Fiji</territory>
  366. <territory type="FK">Falkland Islands</territory>
  367. <territory type="FK" alt="variant">Falkland Islands (Islas Malvinas)</territory>
  368. <territory type="FM">Micronesia</territory>
  369. <territory type="FO">Faroe Islands</territory>
  370. <territory type="FR">France</territory>
  371. <territory type="GA">Gabon</territory>
  372. <territory type="GB">United Kingdom</territory>
  373. <territory type="GB" alt="short">U.K.</territory>
  374. <territory type="GD">Grenada</territory>
  375. <territory type="GE">Georgia</territory>
  376. <territory type="GF">French Guiana</territory>
  377. <territory type="GG">Guernsey</territory>
  378. <territory type="GH">Ghana</territory>
  379. <territory type="GI">Gibraltar</territory>
  380. <territory type="GL">Greenland</territory>
  381. <territory type="GM">Gambia</territory>
  382. <territory type="GN">Guinea</territory>
  383. <territory type="GP">Guadeloupe</territory>
  384. <territory type="GQ">Equatorial Guinea</territory>
  385. <territory type="GR">Greece</territory>
  386. <territory type="GS">South Georgia and the South Sandwich Islands</territory>
  387. <territory type="GT">Guatemala</territory>
  388. <territory type="GU">Guam</territory>
  389. <territory type="GW">Guinea-Bissau</territory>
  390. <territory type="GY">Guyana</territory>
  391. <territory type="HK">Hong Kong SAR China</territory>
  392. <territory type="HK" alt="short">Hong Kong</territory>
  393. <territory type="HM">Heard Island and McDonald Islands</territory>
  394. <territory type="HN">Honduras</territory>
  395. <territory type="HR">Croatia</territory>
  396. <territory type="HT">Haiti</territory>
  397. <territory type="HU">Hungary</territory>
  398. <territory type="IC">Canary Island</territory>
  399. <territory type="ID">Indonesia</territory>
  400. <territory type="IE">Ireland</territory>
  401. <territory type="IL">Israel</territory>
  402. <territory type="IM">Isle of Man</territory>
  403. <territory type="IN">India</territory>
  404. <territory type="IO">British Indian Ocean Territory</territory>
  405. <territory type="IQ">Iraq</territory>
  406. <territory type="IR">Iran</territory>
  407. <territory type="IS">Iceland</territory>
  408. <territory type="IT">Italy</territory>
  409. <territory type="JE">Jersey</territory>
  410. <territory type="JM">Jamaica</territory>
  411. <territory type="JO">Jordan</territory>
  412. <territory type="JP">Japan</territory>
  413. <territory type="KE">Kenya</territory>
  414. <territory type="KG">Kyrgyzstan</territory>
  415. <territory type="KH">Cambodia</territory>
  416. <territory type="KI">Kiribati</territory>
  417. <territory type="KM">Comoros</territory>
  418. <territory type="KN">Saint Kitts and Nevis</territory>
  419. <territory type="KP">North Korea</territory>
  420. <territory type="KR">South Korea</territory>
  421. <territory type="KW">Kuwait</territory>
  422. <territory type="KY">Cayman Islands</territory>
  423. <territory type="KZ">Kazakhstan</territory>
  424. <territory type="LA">Laos</territory>
  425. <territory type="LB">Lebanon</territory>
  426. <territory type="LC">Saint Lucia</territory>
  427. <territory type="LI">Liechtenstein</territory>
  428. <territory type="LK">Sri Lanka</territory>
  429. <territory type="LR">Liberia</territory>
  430. <territory type="LS">Lesotho</territory>
  431. <territory type="LT">Lithuania</territory>
  432. <territory type="LU">Luxembourg</territory>
  433. <territory type="LV">Latvia</territory>
  434. <territory type="LY">Libya</territory>
  435. <territory type="MA">Morocco</territory>
  436. <territory type="MC">Monaco</territory>
  437. <territory type="MD">Moldova</territory>
  438. <territory type="ME">Montenegro</territory>
  439. <territory type="MF">Saint Martin</territory>
  440. <territory type="MG">Madagascar</territory>
  441. <territory type="MH">Marshall Islands</territory>
  442. <territory type="MK">Macedonia</territory>
  443. <territory type="MK" alt="variant">Macedonia (FYROM)</territory>
  444. <territory type="ML">Mali</territory>
  445. <territory type="MM">Myanmar (Burma)</territory>
  446. <territory type="MN">Mongolia</territory>
  447. <territory type="MO">Macau SAR China</territory>
  448. <territory type="MO" alt="short">Macau</territory>
  449. <territory type="MP">Northern Mariana Islands</territory>
  450. <territory type="MQ">Martinique</territory>
  451. <territory type="MR">Mauritania</territory>
  452. <territory type="MS">Montserrat</territory>
  453. <territory type="MT">Malta</territory>
  454. <territory type="MU">Mauritius</territory>
  455. <territory type="MV">Maldives</territory>
  456. <territory type="MW">Malawi</territory>
  457. <territory type="MX">Mexico</territory>
  458. <territory type="MY">Malaysia</territory>
  459. <territory type="MZ">Mozambique</territory>
  460. <territory type="NA">Namibia</territory>
  461. <territory type="NC">New Caledonia</territory>
  462. <territory type="NE">Niger</territory>
  463. <territory type="NF">Norfolk Island</territory>
  464. <territory type="NG">Nigeria</territory>
  465. <territory type="NI">Nicaragua</territory>
  466. <territory type="NL">Netherlands</territory>
  467. <territory type="NO">Norway</territory>
  468. <territory type="NP">Nepal</territory>
  469. <territory type="NR">Nauru</territory>
  470. <territory type="NU">Niue</territory>
  471. <territory type="NZ">New Zealand</territory>
  472. <territory type="OM">Oman</territory>
  473. <territory type="PA">Panama</territory>
  474. <territory type="PE">Peru</territory>
  475. <territory type="PF">French Polynesia</territory>
  476. <territory type="PG">Papua New Guinea</territory>
  477. <territory type="PH">Pilipinas</territory>
  478. <territory type="PK">Pakistan</territory>
  479. <territory type="PL">Poland</territory>
  480. <territory type="PM">Saint Pierre and Miquelon</territory>
  481. <territory type="PN">Pitcairn Islands</territory>
  482. <territory type="PR">Puerto Rico</territory>
  483. <territory type="PS">Palestinian Territories</territory>
  484. <territory type="PS" alt="short">Palestine</territory>
  485. <territory type="PT">Portugal</territory>
  486. <territory type="PW">Palau</territory>
  487. <territory type="PY">Paraguay</territory>
  488. <territory type="QA">Qatar</territory>
  489. <territory type="QO">Outlying Oceania</territory>
  490. <territory type="RE">Réunion</territory>
  491. <territory type="RO">Romania</territory>
  492. <territory type="RS">Serbia</territory>
  493. <territory type="RU">Russia</territory>
  494. <territory type="RW">Rwanda</territory>
  495. <territory type="SA">Saudi Arabia</territory>
  496. <territory type="SB">Solomon Islands</territory>
  497. <territory type="SC">Seychelles</territory>
  498. <territory type="SD">Sudan</territory>
  499. <territory type="SE">Sweden</territory>
  500. <territory type="SG">Singapore</territory>
  501. <territory type="SH">Saint Helena</territory>
  502. <territory type="SI">Slovenia</territory>
  503. <territory type="SJ">Svalbard and Jan Mayen</territory>
  504. <territory type="SK">Slovakia</territory>
  505. <territory type="SL">Sierra Leone</territory>
  506. <territory type="SM">San Marino</territory>
  507. <territory type="SN">Senegal</territory>
  508. <territory type="SO">Somalia</territory>
  509. <territory type="SR">Suriname</territory>
  510. <territory type="SS">South Sudan</territory>
  511. <territory type="ST">São Tomé and Príncipe</territory>
  512. <territory type="SV">El Salvador</territory>
  513. <territory type="SX">Sint Maarten</territory>
  514. <territory type="SY">Syria</territory>
  515. <territory type="SZ">Swaziland</territory>
  516. <territory type="TA">Tristan de Cunha</territory>
  517. <territory type="TC">Turks and Caicos Islands</territory>
  518. <territory type="TD">Chad</territory>
  519. <territory type="TF">French Southern Territories</territory>
  520. <territory type="TG">Togo</territory>
  521. <territory type="TH">Thailand</territory>
  522. <territory type="TJ">Tajikistan</territory>
  523. <territory type="TK">Tokelau</territory>
  524. <territory type="TL">Timor-Leste</territory>
  525. <territory type="TL" alt="variant">East Timor</territory>
  526. <territory type="TM">Turkmenistan</territory>
  527. <territory type="TN">Tunisia</territory>
  528. <territory type="TO">Tonga</territory>
  529. <territory type="TR">Turkey</territory>
  530. <territory type="TT">Trinidad and Tobago</territory>
  531. <territory type="TV">Tuvalu</territory>
  532. <territory type="TW">Taiwan</territory>
  533. <territory type="TZ">Tanzania</territory>
  534. <territory type="UA">Ukraine</territory>
  535. <territory type="UG">Uganda</territory>
  536. <territory type="UM">U.S. Outlying Islands</territory>
  537. <territory type="US">Estados Unidos</territory>
  538. <territory type="US" alt="short">U.S.</territory>
  539. <territory type="UY">Uruguay</territory>
  540. <territory type="UZ">Uzbekistan</territory>
  541. <territory type="VA">Vatican City</territory>
  542. <territory type="VC">Saint Vincent and the Grenadines</territory>
  543. <territory type="VE">Venezuela</territory>
  544. <territory type="VG">British Virgin Islands</territory>
  545. <territory type="VI">U.S. Virgin Islands</territory>
  546. <territory type="VN">Vietnam</territory>
  547. <territory type="VU">Vanuatu</territory>
  548. <territory type="WF">Wallis and Futuna</territory>
  549. <territory type="WS">Samoa</territory>
  550. <territory type="XK">Kosovo</territory>
  551. <territory type="YE">Yemen</territory>
  552. <territory type="YT">Mayotte</territory>
  553. <territory type="ZA">South Africa</territory>
  554. <territory type="ZM">Zambia</territory>
  555. <territory type="ZW">Zimbabwe</territory>
  556. <territory type="ZZ">Hindi Kilalang Rehiyon</territory>
  557. </territories>
  558. <variants>
  559. <variant type="PINYIN">Pinyin Romanization</variant>
  560. <variant type="WADEGILE">Wade-Giles Romanization</variant>
  561. </variants>
  562. <keys>
  563. <key type="calendar">Kalendaryo</key>
  564. <key type="colAlternate">Pag-uuri-uri ng Mga Ignore Symbol</key>
  565. <key type="colBackwards">Pag-uuri-uri ng Baliktad na Accent</key>
  566. <key type="colCaseFirst">Uppercase/Lowercase na Pagsusunud-sunod</key>
  567. <key type="colCaseLevel">Case Sensitive na Pag-uuri-uri</key>
  568. <key type="colHiraganaQuaternary">Pag-uuri-uri ng Kana</key>
  569. <key type="collation">Ayos ng Pag-uuri-uri</key>
  570. <key type="colNormalization">Normalized na Pag-uuri-uri</key>
  571. <key type="colNumeric">Numeric na Pag-uuri-uri</key>
  572. <key type="colStrength">Lakas ng Pag-uuri-uri</key>
  573. <key type="currency">Pera</key>
  574. <key type="numbers">Mga Numero</key>
  575. <key type="timezone">Time Zone</key>
  576. <key type="va">Lokal na Variant</key>
  577. <key type="variableTop">Pag-uri-uriin Bilang Mga Simbolo</key>
  578. <key type="x">Pribadong Paggamit</key>
  579. </keys>
  580. <types>
  581. <type type="arab" key="numbers">Arabic-Indic Digits</type>
  582. <type type="arabext" key="numbers">Extended Arabic-Indic Digits</type>
  583. <type type="armn" key="numbers">Armenian Numerals</type>
  584. <type type="armnlow" key="numbers">Armenian Lowercase Numerals</type>
  585. <type type="beng" key="numbers">Bengali Digits</type>
  586. <type type="big5han" key="collation">Pagkakasunod-sunod ng Pag-uuri ng Tradisyunal na Chinese - Big5</type>
  587. <type type="buddhist" key="calendar">Kalendaryo ng Buddhist</type>
  588. <type type="chinese" key="calendar">Kalendaryong Chinese</type>
  589. <type type="coptic" key="calendar">Coptic Calendar</type>
  590. <type type="deva" key="numbers">Devanagari Digits</type>
  591. <type type="dictionary" key="collation">Pagkakasunud-sunod ng Pag-uuri ng Diksyunaryo</type>
  592. <type type="ducet" key="collation">Default na Ayos ng Pag-uuri ng Unicode</type>
  593. <type type="ethi" key="numbers">Ethiopic Numerals</type>
  594. <type type="ethiopic" key="calendar">Kalendaryong Ethiopic</type>
  595. <type type="ethiopic-amete-alem" key="calendar">Kalendaryong Ethiopic Amete Alem</type>
  596. <type type="finance" key="numbers">Mga Pampinansyang Numeral</type>
  597. <type type="fullwide" key="numbers">Full Width Digits</type>
  598. <type type="gb2312han" key="collation">Pagkakasunud-sunod ng Pag-uuri ng Pinasimpleng Chinese - GB2312</type>
  599. <type type="geor" key="numbers">Georgian Numerals</type>
  600. <type type="gregorian" key="calendar">Kalendaryong Gregorian</type>
  601. <type type="grek" key="numbers">Greek Numerals</type>
  602. <type type="greklow" key="numbers">Greek Lowercase Numerals</type>
  603. <type type="gujr" key="numbers">Gujarati Digits</type>
  604. <type type="guru" key="numbers">Gurmukhi Digits</type>
  605. <type type="hanidec" key="numbers">Chinese Decimal Numerals</type>
  606. <type type="hans" key="numbers">Simplified Chinese Numerals</type>
  607. <type type="hansfin" key="numbers">Simplified Chinese Financial Numerals</type>
  608. <type type="hant" key="numbers">Traditional Chinese Numerals</type>
  609. <type type="hantfin" key="numbers">Traditional Chinese Financial Numerals</type>
  610. <type type="hebr" key="numbers">Hebrew Numerals</type>
  611. <type type="hebrew" key="calendar">Hebrew Calendar</type>
  612. <type type="identical" key="colStrength">Pag-uri-uriin Lahat</type>
  613. <type type="indian" key="calendar">Pambansang Kalendaryong Indian</type>
  614. <type type="islamic" key="calendar">Kalendaryong Islamic</type>
  615. <type type="islamic-civil" key="calendar">Kalendaryong Islamic-Civil</type>
  616. <type type="japanese" key="calendar">Kalendaryong Japanese</type>
  617. <type type="jpan" key="numbers">Japanese Numerals</type>
  618. <type type="jpanfin" key="numbers">Japanese Financial Numerals</type>
  619. <type type="khmr" key="numbers">Khmer Digits</type>
  620. <type type="knda" key="numbers">Kannada Digits</type>
  621. <type type="laoo" key="numbers">Lao Digits</type>
  622. <type type="latn" key="numbers">Western Digits</type>
  623. <type type="lower" key="colCaseFirst">Lowercase Muna ang Pag-uri-uriin</type>
  624. <type type="mlym" key="numbers">Malayalam Digits</type>
  625. <type type="mong" key="numbers">Mongolian Digits</type>
  626. <type type="mymr" key="numbers">Myanmar Digits</type>
  627. <type type="native" key="numbers">Mga Native na Digit</type>
  628. <type type="no" key="colBackwards">Pag-uri-uriin ang Mga Accent nang Normal</type>
  629. <type type="no" key="colCaseFirst">Pag-uri-uriin ang Ayos ng Normal na Case</type>
  630. <type type="no" key="colCaseLevel">Pag-uri-uriin ang Hindi Case Sensitive</type>
  631. <type type="no" key="colHiraganaQuaternary">Pag-uri-uriin ang Kana nang Hiwalay</type>
  632. <type type="no" key="colNormalization">Pag-uri-uriin nang Walang Pag-normalize</type>
  633. <type type="no" key="colNumeric">Pag-uri-uriin ang Mga Digit nang Indibidwal</type>
  634. <type type="non-ignorable" key="colAlternate">Pag-uri-uriin ang Mga Simbolo</type>
  635. <type type="orya" key="numbers">Oriya Digits</type>
  636. <type type="persian" key="calendar">Kalendaryong Persian</type>
  637. <type type="phonebook" key="collation">Pagkakasunud-sunod ng Pag-uuri ng Phonebook</type>
  638. <type type="phonetic" key="collation">Phonetic na Ayos ng Pag-uuri-uri</type>
  639. <type type="pinyin" key="collation">Pagkakasunud-sunod ng Pag-uuri ng Pinyin</type>
  640. <type type="primary" key="colStrength">Mga Base na Titik Lang ang Pag-uri-uriin</type>
  641. <type type="quaternary" key="colStrength">Pag-uri-uriin ang Mga Accent/Case/Lapad/Kana</type>
  642. <type type="reformed" key="collation">Pagkakasunud-sunod ng Pag-uuri ng Na-reform</type>
  643. <type type="roc" key="calendar">Kalendaryong Minguo</type>
  644. <type type="roman" key="numbers">Roman Numerals</type>
  645. <type type="romanlow" key="numbers">Roman Lowercase Numerals</type>
  646. <type type="search" key="collation">Paghahanap na May Layuning Pangkalahatan</type>
  647. <type type="searchjl" key="collation">Maghanap Ayon sa Unang Katinig ng Hangul</type>
  648. <type type="secondary" key="colStrength">Pag-uri-uriin ang Mga Accent</type>
  649. <type type="shifted" key="colAlternate">Pag-uri-uriin ang Mga Ignoring Symbol</type>
  650. <type type="standard" key="collation">Karaniwang Ayos ng Pag-uuri-uri</type>
  651. <type type="stroke" key="collation">Pagkakasunud-sunod ng Pag-uuri ng Stroke</type>
  652. <type type="taml" key="numbers">Tamil Numerals</type>
  653. <type type="tamldec" key="numbers">Tamil Digits</type>
  654. <type type="telu" key="numbers">Telugu Digits</type>
  655. <type type="tertiary" key="colStrength">Pag-uri-uriin ang Mga Accent/Case/Lapad</type>
  656. <type type="thai" key="numbers">Thai Digits</type>
  657. <type type="tibt" key="numbers">Tibetan Digits</type>
  658. <type type="traditional" key="collation">Tradisyunal na Pagkakasunud-sunod ng Pag-uuri</type>
  659. <type type="traditional" key="numbers">Mga Tradisyunal na Numeral</type>
  660. <type type="unihan" key="collation">Pagkakasunud-sunod ng Pag-uuri ng Radical-Stroke</type>
  661. <type type="upper" key="colCaseFirst">Uppercase Muna ang Pag-uri-uriin</type>
  662. <type type="vaii" key="numbers">Mga Vai na Digit</type>
  663. <type type="yes" key="colBackwards">Pag-uri-uriin ang Mga Accent nang Baliktad</type>
  664. <type type="yes" key="colCaseLevel">Pag-uri-uriin ang Case Sensitive</type>
  665. <type type="yes" key="colHiraganaQuaternary">Pag-uri-uriin ang Kana nang Naiiba</type>
  666. <type type="yes" key="colNormalization">Pag-uri-uriin ang Unicode nang Normalized</type>
  667. <type type="yes" key="colNumeric">Pag-uri-uriin ang Mga Digit nang Numerical</type>
  668. </types>
  669. <transformNames>
  670. <transformName type="BGN">BGN</transformName>
  671. <transformName type="Numeric">Numeric</transformName>
  672. <transformName type="Tone">Tono</transformName>
  673. <transformName type="UNGEGN">UNGEGN</transformName>
  674. <transformName type="x-Accents">Accents</transformName>
  675. <transformName type="x-Fullwidth">Fullwidth</transformName>
  676. <transformName type="x-Halfwidth">Halfwidth</transformName>
  677. <transformName type="x-Jamo">Jamo</transformName>
  678. <transformName type="x-Pinyin">Pinyin</transformName>
  679. <transformName type="x-Publishing">Publishing</transformName>
  680. </transformNames>
  681. <measurementSystemNames>
  682. <measurementSystemName type="metric">Metric</measurementSystemName>
  683. <measurementSystemName type="UK">UK</measurementSystemName>
  684. <measurementSystemName type="US">US</measurementSystemName>
  685. </measurementSystemNames>
  686. <codePatterns>
  687. <codePattern type="language">Wika: {0}</codePattern>
  688. <codePattern type="script">Script: {0}</codePattern>
  689. <codePattern type="territory">Rehiyon: {0}</codePattern>
  690. </codePatterns>
  691. </localeDisplayNames>
  692. <characters>
  693. <exemplarCharacters>[a b c d e f g h i j k l m n ñ {ng} o p q r s t u v w x y z]</exemplarCharacters>
  694. <exemplarCharacters type="auxiliary">[á à â é è ê í ì î ó ò ô ú ù û]</exemplarCharacters>
  695. <exemplarCharacters type="index">[A B C D E F G H I J K L M N O P Q R S T U V W X Y Z]</exemplarCharacters>
  696. <ellipsis type="final">{0}…</ellipsis>
  697. <ellipsis type="initial">…{0}</ellipsis>
  698. <ellipsis type="medial">{0}…{1}</ellipsis>
  699. <ellipsis type="word-final">{0} …</ellipsis>
  700. <ellipsis type="word-initial">… {0}</ellipsis>
  701. <ellipsis type="word-medial">{0} … {1}</ellipsis>
  702. <moreInformation>?</moreInformation>
  703. </characters>
  704. <delimiters>
  705. <quotationStart>“</quotationStart>
  706. <quotationEnd>”</quotationEnd>
  707. <alternateQuotationStart>‘</alternateQuotationStart>
  708. <alternateQuotationEnd>’</alternateQuotationEnd>
  709. </delimiters>
  710. <dates>
  711. <calendars>
  712. <calendar type="generic">
  713. <dateFormats>
  714. <dateFormatLength type="full">
  715. <dateFormat>
  716. <pattern>EEEE, MMMM d, y G</pattern>
  717. </dateFormat>
  718. </dateFormatLength>
  719. <dateFormatLength type="long">
  720. <dateFormat>
  721. <pattern>MMMM d, y G</pattern>
  722. </dateFormat>
  723. </dateFormatLength>
  724. <dateFormatLength type="medium">
  725. <dateFormat>
  726. <pattern>MMM d, y G</pattern>
  727. </dateFormat>
  728. </dateFormatLength>
  729. <dateFormatLength type="short">
  730. <dateFormat>
  731. <pattern>M/d/y GGGGG</pattern>
  732. </dateFormat>
  733. </dateFormatLength>
  734. </dateFormats>
  735. <dateTimeFormats>
  736. <dateTimeFormatLength type="full">
  737. <dateTimeFormat>
  738. <pattern>{1} 'ng' {0}</pattern>
  739. </dateTimeFormat>
  740. </dateTimeFormatLength>
  741. <dateTimeFormatLength type="long">
  742. <dateTimeFormat>
  743. <pattern>{1} 'ng' {0}</pattern>
  744. </dateTimeFormat>
  745. </dateTimeFormatLength>
  746. <dateTimeFormatLength type="medium">
  747. <dateTimeFormat>
  748. <pattern>{1}, {0}</pattern>
  749. </dateTimeFormat>
  750. </dateTimeFormatLength>
  751. <dateTimeFormatLength type="short">
  752. <dateTimeFormat>
  753. <pattern>{1}, {0}</pattern>
  754. </dateTimeFormat>
  755. </dateTimeFormatLength>
  756. <availableFormats>
  757. <dateFormatItem id="d">d</dateFormatItem>
  758. <dateFormatItem id="Ed">d E</dateFormatItem>
  759. <dateFormatItem id="Gy">y G</dateFormatItem>
  760. <dateFormatItem id="GyMMM">MMM y G</dateFormatItem>
  761. <dateFormatItem id="GyMMMd">MMM d, y G</dateFormatItem>
  762. <dateFormatItem id="GyMMMEd">E, MMM d, y G</dateFormatItem>
  763. <dateFormatItem id="h">h a</dateFormatItem>
  764. <dateFormatItem id="H">HH</dateFormatItem>
  765. <dateFormatItem id="hm">h:mm a</dateFormatItem>
  766. <dateFormatItem id="Hm">HH:mm</dateFormatItem>
  767. <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
  768. <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
  769. <dateFormatItem id="M">L</dateFormatItem>
  770. <dateFormatItem id="Md">M/d</dateFormatItem>
  771. <dateFormatItem id="MEd">E, M/d</dateFormatItem>
  772. <dateFormatItem id="MMM">LLL</dateFormatItem>
  773. <dateFormatItem id="MMMd">MMM d</dateFormatItem>
  774. <dateFormatItem id="MMMEd">E, MMM d</dateFormatItem>
  775. <dateFormatItem id="MMMMd">MMMM d</dateFormatItem>
  776. <dateFormatItem id="MMMMEd">E, MMMM d</dateFormatItem>
  777. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  778. <dateFormatItem id="y">y G</dateFormatItem>
  779. <dateFormatItem id="yyyy">y G</dateFormatItem>
  780. <dateFormatItem id="yyyyM">M/y GGGGG</dateFormatItem>
  781. <dateFormatItem id="yyyyMd">M/d/y GGGGG</dateFormatItem>
  782. <dateFormatItem id="yyyyMEd">E, M/d/y GGGGG</dateFormatItem>
  783. <dateFormatItem id="yyyyMM">MM-y G</dateFormatItem>
  784. <dateFormatItem id="yyyyMMM">MMM y G</dateFormatItem>
  785. <dateFormatItem id="yyyyMMMd">MMM d, y G</dateFormatItem>
  786. <dateFormatItem id="yyyyMMMEd">E, MMM d, y G</dateFormatItem>
  787. <dateFormatItem id="yyyyMMMM">MMMM y G</dateFormatItem>
  788. <dateFormatItem id="yyyyQQQ">QQQ y G</dateFormatItem>
  789. <dateFormatItem id="yyyyQQQQ">QQQQ y G</dateFormatItem>
  790. </availableFormats>
  791. <intervalFormats>
  792. <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
  793. <intervalFormatItem id="d">
  794. <greatestDifference id="d">d–d</greatestDifference>
  795. </intervalFormatItem>
  796. <intervalFormatItem id="h">
  797. <greatestDifference id="a">h a – h a</greatestDifference>
  798. <greatestDifference id="h">h–h a</greatestDifference>
  799. </intervalFormatItem>
  800. <intervalFormatItem id="H">
  801. <greatestDifference id="H">HH–HH</greatestDifference>
  802. </intervalFormatItem>
  803. <intervalFormatItem id="hm">
  804. <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
  805. <greatestDifference id="h">h:mm–h:mm a</greatestDifference>
  806. <greatestDifference id="m">h:mm–h:mm a</greatestDifference>
  807. </intervalFormatItem>
  808. <intervalFormatItem id="Hm">
  809. <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
  810. <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
  811. </intervalFormatItem>
  812. <intervalFormatItem id="hmv">
  813. <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
  814. <greatestDifference id="h">h:mm–h:mm a v</greatestDifference>
  815. <greatestDifference id="m">h:mm–h:mm a v</greatestDifference>
  816. </intervalFormatItem>
  817. <intervalFormatItem id="Hmv">
  818. <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
  819. <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
  820. </intervalFormatItem>
  821. <intervalFormatItem id="hv">
  822. <greatestDifference id="a">h a – h a v</greatestDifference>
  823. <greatestDifference id="h">h–h a v</greatestDifference>
  824. </intervalFormatItem>
  825. <intervalFormatItem id="Hv">
  826. <greatestDifference id="H">HH–HH v</greatestDifference>
  827. </intervalFormatItem>
  828. <intervalFormatItem id="M">
  829. <greatestDifference id="M">M–M</greatestDifference>
  830. </intervalFormatItem>
  831. <intervalFormatItem id="Md">
  832. <greatestDifference id="d">M/d – M/d</greatestDifference>
  833. <greatestDifference id="M">M/d – M/d</greatestDifference>
  834. </intervalFormatItem>
  835. <intervalFormatItem id="MEd">
  836. <greatestDifference id="d">E, M/d – E, M/d</greatestDifference>
  837. <greatestDifference id="M">E, M/d – E, M/d</greatestDifference>
  838. </intervalFormatItem>
  839. <intervalFormatItem id="MMM">
  840. <greatestDifference id="M">MMM–MMM</greatestDifference>
  841. </intervalFormatItem>
  842. <intervalFormatItem id="MMMd">
  843. <greatestDifference id="d">MMM d–d</greatestDifference>
  844. <greatestDifference id="M">MMM d – MMM d</greatestDifference>
  845. </intervalFormatItem>
  846. <intervalFormatItem id="MMMEd">
  847. <greatestDifference id="d">E, MMM d – E, MMM d</greatestDifference>
  848. <greatestDifference id="M">E, MMM d – E, MMM d</greatestDifference>
  849. </intervalFormatItem>
  850. <intervalFormatItem id="y">
  851. <greatestDifference id="y">y–y G</greatestDifference>
  852. </intervalFormatItem>
  853. <intervalFormatItem id="yM">
  854. <greatestDifference id="M">M/y – M/y GGGGG</greatestDifference>
  855. <greatestDifference id="y">M/y – M/y GGGGG</greatestDifference>
  856. </intervalFormatItem>
  857. <intervalFormatItem id="yMd">
  858. <greatestDifference id="d">M/d/y – M/d/y GGGGG</greatestDifference>
  859. <greatestDifference id="M">M/d/y – M/d/y GGGGG</greatestDifference>
  860. <greatestDifference id="y">M/d/y – M/d/y GGGGG</greatestDifference>
  861. </intervalFormatItem>
  862. <intervalFormatItem id="yMEd">
  863. <greatestDifference id="d">E, M/d/y – E, M/d/y GGGGG</greatestDifference>
  864. <greatestDifference id="M">E, M/d/y – E, M/d/y GGGGG</greatestDifference>
  865. <greatestDifference id="y">E, M/d/y – E, M/d/y GGGGG</greatestDifference>
  866. </intervalFormatItem>
  867. <intervalFormatItem id="yMMM">
  868. <greatestDifference id="M">MMM–MMM y G</greatestDifference>
  869. <greatestDifference id="y">MMM y – MMM y G</greatestDifference>
  870. </intervalFormatItem>
  871. <intervalFormatItem id="yMMMd">
  872. <greatestDifference id="d">MMM d–d, y G</greatestDifference>
  873. <greatestDifference id="M">MMM d – MMM d, y G</greatestDifference>
  874. <greatestDifference id="y">MMM d, y – MMM d, y G</greatestDifference>
  875. </intervalFormatItem>
  876. <intervalFormatItem id="yMMMEd">
  877. <greatestDifference id="d">E, MMM d – E, MMM d, y G</greatestDifference>
  878. <greatestDifference id="M">E, MMM d – E, MMM d, y G</greatestDifference>
  879. <greatestDifference id="y">E, MMM d, y – E, MMM d, y G</greatestDifference>
  880. </intervalFormatItem>
  881. <intervalFormatItem id="yMMMM">
  882. <greatestDifference id="M">MMMM–MMMM y G</greatestDifference>
  883. <greatestDifference id="y">MMMM y – MMMM y G</greatestDifference>
  884. </intervalFormatItem>
  885. </intervalFormats>
  886. </dateTimeFormats>
  887. </calendar>
  888. <calendar type="gregorian">
  889. <months>
  890. <monthContext type="format">
  891. <monthWidth type="abbreviated">
  892. <month type="1">Ene</month>
  893. <month type="2">Peb</month>
  894. <month type="3">Mar</month>
  895. <month type="4">Abr</month>
  896. <month type="5">May</month>
  897. <month type="6">Hun</month>
  898. <month type="7">Hul</month>
  899. <month type="8">Ago</month>
  900. <month type="9">Set</month>
  901. <month type="10">Okt</month>
  902. <month type="11">Nob</month>
  903. <month type="12">Dis</month>
  904. </monthWidth>
  905. <monthWidth type="narrow">
  906. <month type="1">E</month>
  907. <month type="2">P</month>
  908. <month type="3">M</month>
  909. <month type="4">A</month>
  910. <month type="5">M</month>
  911. <month type="6">H</month>
  912. <month type="7">H</month>
  913. <month type="8">A</month>
  914. <month type="9">S</month>
  915. <month type="10">O</month>
  916. <month type="11">N</month>
  917. <month type="12">D</month>
  918. </monthWidth>
  919. <monthWidth type="wide">
  920. <month type="1">Enero</month>
  921. <month type="2">Pebrero</month>
  922. <month type="3">Marso</month>
  923. <month type="4">Abril</month>
  924. <month type="5">Mayo</month>
  925. <month type="6">Hunyo</month>
  926. <month type="7">Hulyo</month>
  927. <month type="8">Agosto</month>
  928. <month type="9">Setyembre</month>
  929. <month type="10">Oktubre</month>
  930. <month type="11">Nobyembre</month>
  931. <month type="12">Disyembre</month>
  932. </monthWidth>
  933. </monthContext>
  934. <monthContext type="stand-alone">
  935. <monthWidth type="abbreviated">
  936. <month type="1">Ene</month>
  937. <month type="2">Peb</month>
  938. <month type="3">Mar</month>
  939. <month type="4">Abr</month>
  940. <month type="5">May</month>
  941. <month type="6">Hun</month>
  942. <month type="7">Hul</month>
  943. <month type="8">Ago</month>
  944. <month type="9">Set</month>
  945. <month type="10">Okt</month>
  946. <month type="11">Nob</month>
  947. <month type="12">Dis</month>
  948. </monthWidth>
  949. <monthWidth type="narrow">
  950. <month type="1">E</month>
  951. <month type="2">P</month>
  952. <month type="3">M</month>
  953. <month type="4">A</month>
  954. <month type="5">M</month>
  955. <month type="6">H</month>
  956. <month type="7">H</month>
  957. <month type="8">A</month>
  958. <month type="9">S</month>
  959. <month type="10">O</month>
  960. <month type="11">N</month>
  961. <month type="12">D</month>
  962. </monthWidth>
  963. <monthWidth type="wide">
  964. <month type="1">Enero</month>
  965. <month type="2">Pebrero</month>
  966. <month type="3">Marso</month>
  967. <month type="4">Abril</month>
  968. <month type="5">Mayo</month>
  969. <month type="6">Hunyo</month>
  970. <month type="7">Hulyo</month>
  971. <month type="8">Agosto</month>
  972. <month type="9">Setyembre</month>
  973. <month type="10">Oktubre</month>
  974. <month type="11">Nobyembre</month>
  975. <month type="12">Disyembre</month>
  976. </monthWidth>
  977. </monthContext>
  978. </months>
  979. <days>
  980. <dayContext type="format">
  981. <dayWidth type="abbreviated">
  982. <day type="sun">Lin</day>
  983. <day type="mon">Lun</day>
  984. <day type="tue">Mar</day>
  985. <day type="wed">Miy</day>
  986. <day type="thu">Huw</day>
  987. <day type="fri">Biy</day>
  988. <day type="sat">Sab</day>
  989. </dayWidth>
  990. <dayWidth type="narrow">
  991. <day type="sun">L</day>
  992. <day type="mon">L</day>
  993. <day type="tue">M</day>
  994. <day type="wed">M</day>
  995. <day type="thu">H</day>
  996. <day type="fri">B</day>
  997. <day type="sat">S</day>
  998. </dayWidth>
  999. <dayWidth type="short">
  1000. <day type="sun">Li</day>
  1001. <day type="mon">Lu</day>
  1002. <day type="tue">Ma</day>
  1003. <day type="wed">Mi</day>
  1004. <day type="thu">Hu</day>
  1005. <day type="fri">Bi</day>
  1006. <day type="sat">Sa</day>
  1007. </dayWidth>
  1008. <dayWidth type="wide">
  1009. <day type="sun">Linggo</day>
  1010. <day type="mon">Lunes</day>
  1011. <day type="tue">Martes</day>
  1012. <day type="wed">Miyerkules</day>
  1013. <day type="thu">Huwebes</day>
  1014. <day type="fri">Biyernes</day>
  1015. <day type="sat">Sabado</day>
  1016. </dayWidth>
  1017. </dayContext>
  1018. <dayContext type="stand-alone">
  1019. <dayWidth type="abbreviated">
  1020. <day type="sun">Lin</day>
  1021. <day type="mon">Lun</day>
  1022. <day type="tue">Mar</day>
  1023. <day type="wed">Miy</day>
  1024. <day type="thu">Huw</day>
  1025. <day type="fri">Biy</day>
  1026. <day type="sat">Sab</day>
  1027. </dayWidth>
  1028. <dayWidth type="narrow">
  1029. <day type="sun">L</day>
  1030. <day type="mon">L</day>
  1031. <day type="tue">M</day>
  1032. <day type="wed">M</day>
  1033. <day type="thu">H</day>
  1034. <day type="fri">B</day>
  1035. <day type="sat">S</day>
  1036. </dayWidth>
  1037. <dayWidth type="short">
  1038. <day type="sun">Li</day>
  1039. <day type="mon">Lu</day>
  1040. <day type="tue">Ma</day>
  1041. <day type="wed">Mi</day>
  1042. <day type="thu">Hu</day>
  1043. <day type="fri">Bi</day>
  1044. <day type="sat">Sa</day>
  1045. </dayWidth>
  1046. <dayWidth type="wide">
  1047. <day type="sun">Linggo</day>
  1048. <day type="mon">Lunes</day>
  1049. <day type="tue">Martes</day>
  1050. <day type="wed">Miyerkules</day>
  1051. <day type="thu">Huwebes</day>
  1052. <day type="fri">Biyernes</day>
  1053. <day type="sat">Sabado</day>
  1054. </dayWidth>
  1055. </dayContext>
  1056. </days>
  1057. <quarters>
  1058. <quarterContext type="format">
  1059. <quarterWidth type="abbreviated">
  1060. <quarter type="1">Q1</quarter>
  1061. <quarter type="2">Q2</quarter>
  1062. <quarter type="3">Q3</quarter>
  1063. <quarter type="4">Q4</quarter>
  1064. </quarterWidth>
  1065. <quarterWidth type="narrow">
  1066. <quarter type="1">1</quarter>
  1067. <quarter type="2">2</quarter>
  1068. <quarter type="3">3</quarter>
  1069. <quarter type="4">4</quarter>
  1070. </quarterWidth>
  1071. <quarterWidth type="wide">
  1072. <quarter type="1">ika-1 quarter</quarter>
  1073. <quarter type="2">ika-2 quarter</quarter>
  1074. <quarter type="3">ika-3 quarter</quarter>
  1075. <quarter type="4">ika-4 na quarter</quarter>
  1076. </quarterWidth>
  1077. </quarterContext>
  1078. <quarterContext type="stand-alone">
  1079. <quarterWidth type="abbreviated">
  1080. <quarter type="1">Q1</quarter>
  1081. <quarter type="2">Q2</quarter>
  1082. <quarter type="3">Q3</quarter>
  1083. <quarter type="4">Q4</quarter>
  1084. </quarterWidth>
  1085. <quarterWidth type="narrow">
  1086. <quarter type="1">1</quarter>
  1087. <quarter type="2">2</quarter>
  1088. <quarter type="3">3</quarter>
  1089. <quarter type="4">4</quarter>
  1090. </quarterWidth>
  1091. <quarterWidth type="wide">
  1092. <quarter type="1">ika-1 quarter</quarter>
  1093. <quarter type="2">ika-2 quarter</quarter>
  1094. <quarter type="3">ika-3 quarter</quarter>
  1095. <quarter type="4">ika-4 na quarter</quarter>
  1096. </quarterWidth>
  1097. </quarterContext>
  1098. </quarters>
  1099. <dayPeriods>
  1100. <dayPeriodContext type="format">
  1101. <dayPeriodWidth type="abbreviated">
  1102. <dayPeriod type="am">AM</dayPeriod>
  1103. <dayPeriod type="pm">PM</dayPeriod>
  1104. </dayPeriodWidth>
  1105. <dayPeriodWidth type="narrow">
  1106. <dayPeriod type="am">a</dayPeriod>
  1107. <dayPeriod type="pm">p</dayPeriod>
  1108. </dayPeriodWidth>
  1109. <dayPeriodWidth type="wide">
  1110. <dayPeriod type="am">AM</dayPeriod>
  1111. <dayPeriod type="pm">PM</dayPeriod>
  1112. </dayPeriodWidth>
  1113. </dayPeriodContext>
  1114. </dayPeriods>
  1115. <eras>
  1116. <eraAbbr>
  1117. <era type="0">BC</era>
  1118. <era type="0" alt="variant">BCE</era>
  1119. <era type="1">AD</era>
  1120. <era type="1" alt="variant">CE</era>
  1121. </eraAbbr>
  1122. </eras>
  1123. <dateFormats>
  1124. <dateFormatLength type="full">
  1125. <dateFormat>
  1126. <pattern>EEEE, MMMM d, y</pattern>
  1127. </dateFormat>
  1128. </dateFormatLength>
  1129. <dateFormatLength type="long">
  1130. <dateFormat>
  1131. <pattern>MMMM d, y</pattern>
  1132. </dateFormat>
  1133. </dateFormatLength>
  1134. <dateFormatLength type="medium">
  1135. <dateFormat>
  1136. <pattern>MMM d, y</pattern>
  1137. </dateFormat>
  1138. </dateFormatLength>
  1139. <dateFormatLength type="short">
  1140. <dateFormat>
  1141. <pattern>M/d/yy</pattern>
  1142. </dateFormat>
  1143. </dateFormatLength>
  1144. </dateFormats>
  1145. <timeFormats>
  1146. <timeFormatLength type="full">
  1147. <timeFormat>
  1148. <pattern>h:mm:ss a zzzz</pattern>
  1149. </timeFormat>
  1150. </timeFormatLength>
  1151. <timeFormatLength type="long">
  1152. <timeFormat>
  1153. <pattern>h:mm:ss a z</pattern>
  1154. </timeFormat>
  1155. </timeFormatLength>
  1156. <timeFormatLength type="medium">
  1157. <timeFormat>
  1158. <pattern>h:mm:ss a</pattern>
  1159. </timeFormat>
  1160. </timeFormatLength>
  1161. <timeFormatLength type="short">
  1162. <timeFormat>
  1163. <pattern>h:mm a</pattern>
  1164. </timeFormat>
  1165. </timeFormatLength>
  1166. </timeFormats>
  1167. <dateTimeFormats>
  1168. <dateTimeFormatLength type="full">
  1169. <dateTimeFormat>
  1170. <pattern>{1} 'ng' {0}</pattern>
  1171. </dateTimeFormat>
  1172. </dateTimeFormatLength>
  1173. <dateTimeFormatLength type="long">
  1174. <dateTimeFormat>
  1175. <pattern>{1} 'ng' {0}</pattern>
  1176. </dateTimeFormat>
  1177. </dateTimeFormatLength>
  1178. <dateTimeFormatLength type="medium">
  1179. <dateTimeFormat>
  1180. <pattern>{1}, {0}</pattern>
  1181. </dateTimeFormat>
  1182. </dateTimeFormatLength>
  1183. <dateTimeFormatLength type="short">
  1184. <dateTimeFormat>
  1185. <pattern>{1}, {0}</pattern>
  1186. </dateTimeFormat>
  1187. </dateTimeFormatLength>
  1188. <availableFormats>
  1189. <dateFormatItem id="d">d</dateFormatItem>
  1190. <dateFormatItem id="Ed">d E</dateFormatItem>
  1191. <dateFormatItem id="Ehm">E h:mm a</dateFormatItem>
  1192. <dateFormatItem id="EHm">E HH:mm</dateFormatItem>
  1193. <dateFormatItem id="Ehms">E h:mm:ss a</dateFormatItem>
  1194. <dateFormatItem id="EHms">E HH:mm:ss</dateFormatItem>
  1195. <dateFormatItem id="Gy">y G</dateFormatItem>
  1196. <dateFormatItem id="GyMMM">MMM y G</dateFormatItem>
  1197. <dateFormatItem id="GyMMMd">MMM d, y G</dateFormatItem>
  1198. <dateFormatItem id="GyMMMEd">E, MMM d, y G</dateFormatItem>
  1199. <dateFormatItem id="h">h a</dateFormatItem>
  1200. <dateFormatItem id="H">HH</dateFormatItem>
  1201. <dateFormatItem id="hm">h:mm a</dateFormatItem>
  1202. <dateFormatItem id="Hm">HH:mm</dateFormatItem>
  1203. <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
  1204. <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
  1205. <dateFormatItem id="M">L</dateFormatItem>
  1206. <dateFormatItem id="Md">M/d</dateFormatItem>
  1207. <dateFormatItem id="MEd">E, M/d</dateFormatItem>
  1208. <dateFormatItem id="MMM">LLL</dateFormatItem>
  1209. <dateFormatItem id="MMMd">MMM d</dateFormatItem>
  1210. <dateFormatItem id="MMMEd">E, MMM d</dateFormatItem>
  1211. <dateFormatItem id="MMMMd">MMMM d</dateFormatItem>
  1212. <dateFormatItem id="MMMMEd">E, MMMM d</dateFormatItem>
  1213. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  1214. <dateFormatItem id="y">y</dateFormatItem>
  1215. <dateFormatItem id="yM">M/y</dateFormatItem>
  1216. <dateFormatItem id="yMd">M/d/y</dateFormatItem>
  1217. <dateFormatItem id="yMEd">E, M/d/y</dateFormatItem>
  1218. <dateFormatItem id="yMM">MM/y</dateFormatItem>
  1219. <dateFormatItem id="yMMM">MMM y</dateFormatItem>
  1220. <dateFormatItem id="yMMMd">MMM d, y</dateFormatItem>
  1221. <dateFormatItem id="yMMMEd">E, MMM d, y</dateFormatItem>
  1222. <dateFormatItem id="yMMMM">MMMM y</dateFormatItem>
  1223. <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
  1224. <dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
  1225. </availableFormats>
  1226. <appendItems>
  1227. <appendItem request="Timezone">{0} {1}</appendItem>
  1228. </appendItems>
  1229. <intervalFormats>
  1230. <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
  1231. <intervalFormatItem id="d">
  1232. <greatestDifference id="d">d–d</greatestDifference>
  1233. </intervalFormatItem>
  1234. <intervalFormatItem id="h">
  1235. <greatestDifference id="a">h a – h a</greatestDifference>
  1236. <greatestDifference id="h">h–h a</greatestDifference>
  1237. </intervalFormatItem>
  1238. <intervalFormatItem id="H">
  1239. <greatestDifference id="H">HH–HH</greatestDifference>
  1240. </intervalFormatItem>
  1241. <intervalFormatItem id="hm">
  1242. <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
  1243. <greatestDifference id="h">h:mm–h:mm a</greatestDifference>
  1244. <greatestDifference id="m">h:mm–h:mm a</greatestDifference>
  1245. </intervalFormatItem>
  1246. <intervalFormatItem id="Hm">
  1247. <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
  1248. <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
  1249. </intervalFormatItem>
  1250. <intervalFormatItem id="hmv">
  1251. <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
  1252. <greatestDifference id="h">h:mm–h:mm a v</greatestDifference>
  1253. <greatestDifference id="m">h:mm–h:mm a v</greatestDifference>
  1254. </intervalFormatItem>
  1255. <intervalFormatItem id="Hmv">
  1256. <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
  1257. <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
  1258. </intervalFormatItem>
  1259. <intervalFormatItem id="hv">
  1260. <greatestDifference id="a">h a – h a v</greatestDifference>
  1261. <greatestDifference id="h">h–h a v</greatestDifference>
  1262. </intervalFormatItem>
  1263. <intervalFormatItem id="Hv">
  1264. <greatestDifference id="H">HH–HH v</greatestDifference>
  1265. </intervalFormatItem>
  1266. <intervalFormatItem id="M">
  1267. <greatestDifference id="M">M–M</greatestDifference>
  1268. </intervalFormatItem>
  1269. <intervalFormatItem id="Md">
  1270. <greatestDifference id="d">M/d – M/d</greatestDifference>
  1271. <greatestDifference id="M">M/d – M/d</greatestDifference>
  1272. </intervalFormatItem>
  1273. <intervalFormatItem id="MEd">
  1274. <greatestDifference id="d">E, M/d – E, M/d</greatestDifference>
  1275. <greatestDifference id="M">E, M/d – E, M/d</greatestDifference>
  1276. </intervalFormatItem>
  1277. <intervalFormatItem id="MMM">
  1278. <greatestDifference id="M">MMM–MMM</greatestDifference>
  1279. </intervalFormatItem>
  1280. <intervalFormatItem id="MMMd">
  1281. <greatestDifference id="d">MMM d–d</greatestDifference>
  1282. <greatestDifference id="M">MMM d – MMM d</greatestDifference>
  1283. </intervalFormatItem>
  1284. <intervalFormatItem id="MMMEd">
  1285. <greatestDifference id="d">E, MMM d – E, MMM d</greatestDifference>
  1286. <greatestDifference id="M">E, MMM d – E, MMM d</greatestDifference>
  1287. </intervalFormatItem>
  1288. <intervalFormatItem id="y">
  1289. <greatestDifference id="y">y–y</greatestDifference>
  1290. </intervalFormatItem>
  1291. <intervalFormatItem id="yM">
  1292. <greatestDifference id="M">M/y – M/y</greatestDifference>
  1293. <greatestDifference id="y">M/y – M/y</greatestDifference>
  1294. </intervalFormatItem>
  1295. <intervalFormatItem id="yMd">
  1296. <greatestDifference id="d">M/d/y – M/d/y</greatestDifference>
  1297. <greatestDifference id="M">M/d/y – M/d/y</greatestDifference>
  1298. <greatestDifference id="y">M/d/y – M/d/y</greatestDifference>
  1299. </intervalFormatItem>
  1300. <intervalFormatItem id="yMEd">
  1301. <greatestDifference id="d">E, M/d/y – E, M/d/y</greatestDifference>
  1302. <greatestDifference id="M">E, M/d/y – E, M/d/y</greatestDifference>
  1303. <greatestDifference id="y">E, M/d/y – E, M/d/y</greatestDifference>
  1304. </intervalFormatItem>
  1305. <intervalFormatItem id="yMMM">
  1306. <greatestDifference id="M">MMM–MMM y</greatestDifference>
  1307. <greatestDifference id="y">MMM y – MMM y</greatestDifference>
  1308. </intervalFormatItem>
  1309. <intervalFormatItem id="yMMMd">
  1310. <greatestDifference id="d">MMM d–d, y</greatestDifference>
  1311. <greatestDifference id="M">MMM d – MMM d, y</greatestDifference>
  1312. <greatestDifference id="y">MMM d, y – MMM d, y</greatestDifference>
  1313. </intervalFormatItem>
  1314. <intervalFormatItem id="yMMMEd">
  1315. <greatestDifference id="d">E, MMM d – E, MMM d, y</greatestDifference>
  1316. <greatestDifference id="M">E, MMM d – E, MMM d, y</greatestDifference>
  1317. <greatestDifference id="y">E, MMM d, y – E, MMM d, y</greatestDifference>
  1318. </intervalFormatItem>
  1319. <intervalFormatItem id="yMMMM">
  1320. <greatestDifference id="M">MMMM–MMMM y</greatestDifference>
  1321. <greatestDifference id="y">MMMM y – MMMM y</greatestDifference>
  1322. </intervalFormatItem>
  1323. </intervalFormats>
  1324. </dateTimeFormats>
  1325. </calendar>
  1326. </calendars>
  1327. <fields>
  1328. <field type="era">
  1329. <displayName>Era</displayName>
  1330. </field>
  1331. <field type="year">
  1332. <displayName>Taon</displayName>
  1333. <relative type="-1">nakaraang taon</relative>
  1334. <relative type="0">ngayong taon</relative>
  1335. <relative type="1">susunod na taon</relative>
  1336. <relativeTime type="future">
  1337. <relativeTimePattern count="one">Sa loob ng {0} taon</relativeTimePattern>
  1338. <relativeTimePattern count="other">Sa loob ng {0} taon</relativeTimePattern>
  1339. </relativeTime>
  1340. <relativeTime type="past">
  1341. <relativeTimePattern count="one">{0} taon ang nakalipas</relativeTimePattern>
  1342. <relativeTimePattern count="other">{0} taon ang nakalipas</relativeTimePattern>
  1343. </relativeTime>
  1344. </field>
  1345. <field type="month">
  1346. <displayName>Buwan</displayName>
  1347. <relative type="-1">nakaraang buwan</relative>
  1348. <relative type="0">ngayong buwan</relative>
  1349. <relative type="1">susunod na buwan</relative>
  1350. <relativeTime type="future">
  1351. <relativeTimePattern count="one">Sa loob ng {0} buwan</relativeTimePattern>
  1352. <relativeTimePattern count="other">Sa loob ng {0} buwan</relativeTimePattern>
  1353. </relativeTime>
  1354. <relativeTime type="past">
  1355. <relativeTimePattern count="one">{0} buwan ang nakalipas</relativeTimePattern>
  1356. <relativeTimePattern count="other">{0} buwan ang nakalipas</relativeTimePattern>
  1357. </relativeTime>
  1358. </field>
  1359. <field type="week">
  1360. <displayName>Linggo</displayName>
  1361. <relative type="-1">nakaraang linggo</relative>
  1362. <relative type="0">ngayong linggo</relative>
  1363. <relative type="1">susunod na linggo</relative>
  1364. <relativeTime type="future">
  1365. <relativeTimePattern count="one">Sa loob ng {0} linggo</relativeTimePattern>
  1366. <relativeTimePattern count="other">Sa loob ng {0} linggo</relativeTimePattern>
  1367. </relativeTime>
  1368. <relativeTime type="past">
  1369. <relativeTimePattern count="one">{0} na linggo ang nakalipas</relativeTimePattern>
  1370. <relativeTimePattern count="other">{0} linggo ang nakalipas</relativeTimePattern>
  1371. </relativeTime>
  1372. </field>
  1373. <field type="day">
  1374. <displayName>Araw</displayName>
  1375. <relative type="-2">Araw bago ang kahapon</relative>
  1376. <relative type="-1">Kahapon</relative>
  1377. <relative type="0">Ngayon</relative>
  1378. <relative type="1">Bukas</relative>
  1379. <relative type="2">Samakalawa</relative>
  1380. <relativeTime type="future">
  1381. <relativeTimePattern count="one">Sa loob ng {0} araw</relativeTimePattern>
  1382. <relativeTimePattern count="other">Sa loob ng {0} araw</relativeTimePattern>
  1383. </relativeTime>
  1384. <relativeTime type="past">
  1385. <relativeTimePattern count="one">{0} araw ang nakalipas</relativeTimePattern>
  1386. <relativeTimePattern count="other">{0} araw ang nakalipas</relativeTimePattern>
  1387. </relativeTime>
  1388. </field>
  1389. <field type="weekday">
  1390. <displayName>Araw ng Linggo</displayName>
  1391. </field>
  1392. <field type="sun">
  1393. <relative type="-1">nakaraang Linggo</relative>
  1394. <relative type="0">ngayong Linggo</relative>
  1395. <relative type="1">susunod na Linggo</relative>
  1396. </field>
  1397. <field type="mon">
  1398. <relative type="-1">nakaraang Lunes</relative>
  1399. <relative type="0">ngayong Lunes</relative>
  1400. <relative type="1">susunod na Lunes</relative>
  1401. </field>
  1402. <field type="tue">
  1403. <relative type="-1">nakaraang Martes</relative>
  1404. <relative type="0">ngayong Martes</relative>
  1405. <relative type="1">susunod na Martes</relative>
  1406. </field>
  1407. <field type="wed">
  1408. <relative type="-1">nakaraang Miyerkules</relative>
  1409. <relative type="0">ngayong Miyerkules</relative>
  1410. <relative type="1">susunod na Miyerkules</relative>
  1411. </field>
  1412. <field type="thu">
  1413. <relative type="-1">nakaraan Huwebes</relative>
  1414. <relative type="0">ngayong Huwebes</relative>
  1415. <relative type="1">susunod na Huwebes</relative>
  1416. </field>
  1417. <field type="fri">
  1418. <relative type="-1">nakaraang Biyernes</relative>
  1419. <relative type="0">ngayong Biyernes</relative>
  1420. <relative type="1">susunod na Biyernes</relative>
  1421. </field>
  1422. <field type="sat">
  1423. <relative type="-1">nakaraang Sabado</relative>
  1424. <relative type="0">ngayong Sabado</relative>
  1425. <relative type="1">susunod na Sabado</relative>
  1426. </field>
  1427. <field type="dayperiod">
  1428. <displayName>AM/PM</displayName>
  1429. </field>
  1430. <field type="hour">
  1431. <displayName>Oras</displayName>
  1432. <relativeTime type="future">
  1433. <relativeTimePattern count="one">Sa loob ng {0} oras</relativeTimePattern>
  1434. <relativeTimePattern count="other">Sa loob ng {0} oras</relativeTimePattern>
  1435. </relativeTime>
  1436. <relativeTime type="past">
  1437. <relativeTimePattern count="one">{0} oras ang nakalipas</relativeTimePattern>
  1438. <relativeTimePattern count="other">{0} oras ang nakalipas</relativeTimePattern>
  1439. </relativeTime>
  1440. </field>
  1441. <field type="minute">
  1442. <displayName>Minuto</displayName>
  1443. <relativeTime type="future">
  1444. <relativeTimePattern count="one">Sa loob ng {0} minuto</relativeTimePattern>
  1445. <relativeTimePattern count="other">Sa loob ng {0} minuto</relativeTimePattern>
  1446. </relativeTime>
  1447. <relativeTime type="past">
  1448. <relativeTimePattern count="one">{0} minuto ang nakalipas</relativeTimePattern>
  1449. <relativeTimePattern count="other">{0} minuto ang nakalipas</relativeTimePattern>
  1450. </relativeTime>
  1451. </field>
  1452. <field type="second">
  1453. <displayName>Segundo</displayName>
  1454. <relative type="0">ngayon</relative>
  1455. <relativeTime type="future">
  1456. <relativeTimePattern count="one">Sa loob ng {0} segundo</relativeTimePattern>
  1457. <relativeTimePattern count="other">Sa loob ng {0} segundo</relativeTimePattern>
  1458. </relativeTime>
  1459. <relativeTime type="past">
  1460. <relativeTimePattern count="one">{0} segundo ang nakalipas</relativeTimePattern>
  1461. <relativeTimePattern count="other">{0} segundo ang nakalipas</relativeTimePattern>
  1462. </relativeTime>
  1463. </field>
  1464. <field type="zone">
  1465. <displayName>Time Zone</displayName>
  1466. </field>
  1467. </fields>
  1468. <timeZoneNames>
  1469. <hourFormat>+HH:mm;-HH:mm</hourFormat>
  1470. <gmtFormat>GMT{0}</gmtFormat>
  1471. <gmtZeroFormat>GMT</gmtZeroFormat>
  1472. <regionFormat>Oras sa {0}</regionFormat>
  1473. <regionFormat type="daylight">{0} Daylight Time</regionFormat>
  1474. <regionFormat type="standard">{0} Standard Time</regionFormat>
  1475. <fallbackFormat>{1} ({0})</fallbackFormat>
  1476. <zone type="Etc/Unknown">
  1477. <exemplarCity>Di-tiyak na Lungsod</exemplarCity>
  1478. </zone>
  1479. <zone type="Antarctica/DumontDUrville">
  1480. <exemplarCity>Dumont d’Urville</exemplarCity>
  1481. </zone>
  1482. <zone type="America/St_Barthelemy">
  1483. <exemplarCity>Saint Barthélemy</exemplarCity>
  1484. </zone>
  1485. <zone type="America/Coral_Harbour">
  1486. <exemplarCity>Atikokan</exemplarCity>
  1487. </zone>
  1488. <zone type="America/St_Johns">
  1489. <exemplarCity>St. John’s</exemplarCity>
  1490. </zone>
  1491. <zone type="Africa/Asmera">
  1492. <exemplarCity>Asmara</exemplarCity>
  1493. </zone>
  1494. <zone type="Pacific/Truk">
  1495. <exemplarCity>Chuuk</exemplarCity>
  1496. </zone>
  1497. <zone type="Pacific/Ponape">
  1498. <exemplarCity>Pohnpei</exemplarCity>
  1499. </zone>
  1500. <zone type="Atlantic/Faeroe">
  1501. <exemplarCity>Faroe</exemplarCity>
  1502. </zone>
  1503. <zone type="Europe/London">
  1504. <long>
  1505. <daylight>British Summer Time</daylight>
  1506. </long>
  1507. </zone>
  1508. <zone type="America/Godthab">
  1509. <exemplarCity>Nuuk</exemplarCity>
  1510. </zone>
  1511. <zone type="America/Scoresbysund">
  1512. <exemplarCity>Ittoqqortoormiit</exemplarCity>
  1513. </zone>
  1514. <zone type="Europe/Dublin">
  1515. <long>
  1516. <daylight>Irish Summer Time</daylight>
  1517. </long>
  1518. </zone>
  1519. <zone type="Asia/Calcutta">
  1520. <exemplarCity>Kolkata</exemplarCity>
  1521. </zone>
  1522. <zone type="America/St_Kitts">
  1523. <exemplarCity>St. Kitts</exemplarCity>
  1524. </zone>
  1525. <zone type="America/St_Lucia">
  1526. <exemplarCity>St. Lucia</exemplarCity>
  1527. </zone>
  1528. <zone type="Asia/Katmandu">
  1529. <exemplarCity>Kathmandu</exemplarCity>
  1530. </zone>
  1531. <zone type="America/Asuncion">
  1532. <exemplarCity>Asunción</exemplarCity>
  1533. </zone>
  1534. <zone type="Indian/Reunion">
  1535. <exemplarCity>Réunion</exemplarCity>
  1536. </zone>
  1537. <zone type="Atlantic/St_Helena">
  1538. <exemplarCity>St. Helena</exemplarCity>
  1539. </zone>
  1540. <zone type="America/Lower_Princes">
  1541. <exemplarCity>Lower Prince's Quarter</exemplarCity>
  1542. </zone>
  1543. <zone type="America/North_Dakota/Beulah">
  1544. <exemplarCity>Beulah, North Dakota</exemplarCity>
  1545. </zone>
  1546. <zone type="America/North_Dakota/New_Salem">
  1547. <exemplarCity>New Salem, North Dakota</exemplarCity>
  1548. </zone>
  1549. <zone type="America/North_Dakota/Center">
  1550. <exemplarCity>Center, North Dakota</exemplarCity>
  1551. </zone>
  1552. <zone type="America/Indiana/Vincennes">
  1553. <exemplarCity>Vincennes, Indiana</exemplarCity>
  1554. </zone>
  1555. <zone type="America/Indiana/Petersburg">
  1556. <exemplarCity>Petersburg, Indiana</exemplarCity>
  1557. </zone>
  1558. <zone type="America/Indiana/Tell_City">
  1559. <exemplarCity>Tell City, Indiana</exemplarCity>
  1560. </zone>
  1561. <zone type="America/Indiana/Knox">
  1562. <exemplarCity>Knox, Indiana</exemplarCity>
  1563. </zone>
  1564. <zone type="America/Indiana/Winamac">
  1565. <exemplarCity>Winamac, Indiana</exemplarCity>
  1566. </zone>
  1567. <zone type="America/Indiana/Marengo">
  1568. <exemplarCity>Marengo, Indiana</exemplarCity>
  1569. </zone>
  1570. <zone type="America/Indiana/Vevay">
  1571. <exemplarCity>Vevay, Indiana</exemplarCity>
  1572. </zone>
  1573. <zone type="America/Kentucky/Monticello">
  1574. <exemplarCity>Monticello, Kentucky</exemplarCity>
  1575. </zone>
  1576. <zone type="America/St_Vincent">
  1577. <exemplarCity>St. Vincent</exemplarCity>
  1578. </zone>
  1579. <zone type="America/St_Thomas">
  1580. <exemplarCity>St. Thomas</exemplarCity>
  1581. </zone>
  1582. <zone type="Asia/Saigon">
  1583. <exemplarCity>Ho Chi Minh City</exemplarCity>
  1584. </zone>
  1585. <metazone type="Afghanistan">
  1586. <long>
  1587. <standard>Afghanistan Time</standard>
  1588. </long>
  1589. </metazone>
  1590. <metazone type="Africa_Central">
  1591. <long>
  1592. <standard>Central Africa Time</standard>
  1593. </long>
  1594. </metazone>
  1595. <metazone type="Africa_Eastern">
  1596. <long>
  1597. <standard>East Africa Time</standard>
  1598. </long>
  1599. </metazone>
  1600. <metazone type="Africa_Southern">
  1601. <long>
  1602. <standard>South Africa Time</standard>
  1603. </long>
  1604. </metazone>
  1605. <metazone type="Africa_Western">
  1606. <long>
  1607. <generic>West Africa Time</generic>
  1608. <standard>West Africa Standard Time</standard>
  1609. <daylight>West Africa Summer Time</daylight>
  1610. </long>
  1611. </metazone>
  1612. <metazone type="Alaska">
  1613. <long>
  1614. <generic>Alaska Time</generic>
  1615. <standard>Alaska Standard Time</standard>
  1616. <daylight>Alaska Daylight Time</daylight>
  1617. </long>
  1618. </metazone>
  1619. <metazone type="Amazon">
  1620. <long>
  1621. <generic>Amazon Time</generic>
  1622. <standard>Amazon Standard Time</standard>
  1623. <daylight>Amazon Summer Time</daylight>
  1624. </long>
  1625. </metazone>
  1626. <metazone type="America_Central">
  1627. <long>
  1628. <generic>North American Central Time</generic>
  1629. <standard>North American Central Standard Time</standard>
  1630. <daylight>North American Central Daylight Time</daylight>
  1631. </long>
  1632. </metazone>
  1633. <metazone type="America_Eastern">
  1634. <long>
  1635. <generic>North American Eastern Time</generic>
  1636. <standard>North American Eastern Standard Time</standard>
  1637. <daylight>North American Eastern Daylight Time</daylight>
  1638. </long>
  1639. </metazone>
  1640. <metazone type="America_Mountain">
  1641. <long>
  1642. <generic>North American Mountain Time</generic>
  1643. <standard>North American Mountain Standard Time</standard>
  1644. <daylight>North American Mountain Daylight Time</daylight>
  1645. </long>
  1646. </metazone>
  1647. <metazone type="America_Pacific">
  1648. <long>
  1649. <generic>North American Pacific Time</generic>
  1650. <standard>North American Pacific Standard Time</standard>
  1651. <daylight>North American Pacific Daylight Time</daylight>
  1652. </long>
  1653. </metazone>
  1654. <metazone type="Anadyr">
  1655. <long>
  1656. <generic>Oras sa Anadyr</generic>
  1657. <standard>Standard Time sa Anadyr</standard>
  1658. <daylight>Summer Time sa Anadyr</daylight>
  1659. </long>
  1660. </metazone>
  1661. <metazone type="Arabian">
  1662. <long>
  1663. <generic>Arabian Time</generic>
  1664. <standard>Arabian Standard Time</standard>
  1665. <daylight>Arabian Daylight Time</daylight>
  1666. </long>
  1667. </metazone>
  1668. <metazone type="Argentina">
  1669. <long>
  1670. <generic>Argentina Time</generic>
  1671. <standard>Argentina Standard Time</standard>
  1672. <daylight>Argentina Summer Time</daylight>
  1673. </long>
  1674. </metazone>
  1675. <metazone type="Argentina_Western">
  1676. <long>
  1677. <generic>Western Argentina Time</generic>
  1678. <standard>Western Argentina Standard Time</standard>
  1679. <daylight>Western Argentina Summer Time</daylight>
  1680. </long>
  1681. </metazone>
  1682. <metazone type="Armenia">
  1683. <long>
  1684. <generic>Armenia Time</generic>
  1685. <standard>Armenia Standard Time</standard>
  1686. <daylight>Armenia Summer Time</daylight>
  1687. </long>
  1688. </metazone>
  1689. <metazone type="Atlantic">
  1690. <long>
  1691. <generic>Atlantic Time</generic>
  1692. <standard>Atlantic Standard Time</standard>
  1693. <daylight>Atlantic Daylight Time</daylight>
  1694. </long>
  1695. </metazone>
  1696. <metazone type="Australia_Central">
  1697. <long>
  1698. <generic>Central Australia Time</generic>
  1699. <standard>Australian Central Standard Time</standard>
  1700. <daylight>Australian Central Daylight Time</daylight>
  1701. </long>
  1702. </metazone>
  1703. <metazone type="Australia_CentralWestern">
  1704. <long>
  1705. <generic>Australian Central Western Time</generic>
  1706. <standard>Australian Central Western Standard Time</standard>
  1707. <daylight>Australian Central Western Daylight Time</daylight>
  1708. </long>
  1709. </metazone>
  1710. <metazone type="Australia_Eastern">
  1711. <long>
  1712. <generic>Eastern Australia Time</generic>
  1713. <standard>Australian Eastern Standard Time</standard>
  1714. <daylight>Australian Eastern Daylight Time</daylight>
  1715. </long>
  1716. </metazone>
  1717. <metazone type="Australia_Western">
  1718. <long>
  1719. <generic>Western Australia Time</generic>
  1720. <standard>Australian Western Standard Time</standard>
  1721. <daylight>Australian Western Daylight Time</daylight>
  1722. </long>
  1723. </metazone>
  1724. <metazone type="Azerbaijan">
  1725. <long>
  1726. <generic>Azerbaijan Time</generic>
  1727. <standard>Azerbaijan Standard Time</standard>
  1728. <daylight>Azerbaijan Summer Time</daylight>
  1729. </long>
  1730. </metazone>
  1731. <metazone type="Azores">
  1732. <long>
  1733. <generic>Azores Time</generic>
  1734. <standard>Azores Standard Time</standard>
  1735. <daylight>Azores Summer Time</daylight>
  1736. </long>
  1737. </metazone>
  1738. <metazone type="Bangladesh">
  1739. <long>
  1740. <generic>Bangladesh Time</generic>
  1741. <standard>Bangladesh Standard Time</standard>
  1742. <daylight>Bangladesh Summer Time</daylight>
  1743. </long>
  1744. </metazone>
  1745. <metazone type="Bhutan">
  1746. <long>
  1747. <standard>Bhutan Time</standard>
  1748. </long>
  1749. </metazone>
  1750. <metazone type="Bolivia">
  1751. <long>
  1752. <standard>Bolivia Time</standard>
  1753. </long>
  1754. </metazone>
  1755. <metazone type="Brasilia">
  1756. <long>
  1757. <generic>Brasilia Time</generic>
  1758. <standard>Brasilia Standard Time</standard>
  1759. <daylight>Brasilia Summer Time</daylight>
  1760. </long>
  1761. </metazone>
  1762. <metazone type="Brunei">
  1763. <long>
  1764. <standard>Brunei Darussalam Time</standard>
  1765. </long>
  1766. </metazone>
  1767. <metazone type="Cape_Verde">
  1768. <long>
  1769. <generic>Cape Verde Time</generic>
  1770. <standard>Cape Verde Standard Time</standard>
  1771. <daylight>Cape Verde Summer Time</daylight>
  1772. </long>
  1773. </metazone>
  1774. <metazone type="Chamorro">
  1775. <long>
  1776. <standard>Chamorro Time</standard>
  1777. </long>
  1778. </metazone>
  1779. <metazone type="Chatham">
  1780. <long>
  1781. <generic>Chatham Time</generic>
  1782. <standard>Chatham Standard Time</standard>
  1783. <daylight>Chatham Daylight Time</daylight>
  1784. </long>
  1785. </metazone>
  1786. <metazone type="Chile">
  1787. <long>
  1788. <generic>Chile Time</generic>
  1789. <standard>Chile Standard Time</standard>
  1790. <daylight>Chile Summer Time</daylight>
  1791. </long>
  1792. </metazone>
  1793. <metazone type="China">
  1794. <long>
  1795. <generic>China Time</generic>
  1796. <standard>China Standard Time</standard>
  1797. <daylight>China Daylight Time</daylight>
  1798. </long>
  1799. </metazone>
  1800. <metazone type="Choibalsan">
  1801. <long>
  1802. <generic>Choibalsan Time</generic>
  1803. <standard>Choibalsan Standard Time</standard>
  1804. <daylight>Choibalsan Summer Time</daylight>
  1805. </long>
  1806. </metazone>
  1807. <metazone type="Christmas">
  1808. <long>
  1809. <standard>Christmas Island Time</standard>
  1810. </long>
  1811. </metazone>
  1812. <metazone type="Cocos">
  1813. <long>
  1814. <standard>Cocos Islands Time</standard>
  1815. </long>
  1816. </metazone>
  1817. <metazone type="Colombia">
  1818. <long>
  1819. <generic>Colombia Time</generic>
  1820. <standard>Colombia Standard Time</standard>
  1821. <daylight>Colombia Summer Time</daylight>
  1822. </long>
  1823. </metazone>
  1824. <metazone type="Cook">
  1825. <long>
  1826. <generic>Cook Islands Time</generic>
  1827. <standard>Cook Islands Standard Time</standard>
  1828. <daylight>Cook Islands Half Summer Time</daylight>
  1829. </long>
  1830. </metazone>
  1831. <metazone type="Cuba">
  1832. <long>
  1833. <generic>Cuba Time</generic>
  1834. <standard>Cuba Standard Time</standard>
  1835. <daylight>Cuba Daylight Time</daylight>
  1836. </long>
  1837. </metazone>
  1838. <metazone type="Davis">
  1839. <long>
  1840. <standard>Davis Time</standard>
  1841. </long>
  1842. </metazone>
  1843. <metazone type="DumontDUrville">
  1844. <long>
  1845. <standard>Dumont-d’Urville Time</standard>
  1846. </long>
  1847. </metazone>
  1848. <metazone type="East_Timor">
  1849. <long>
  1850. <standard>East Timor Time</standard>
  1851. </long>
  1852. </metazone>
  1853. <metazone type="Easter">
  1854. <long>
  1855. <generic>Easter Island Time</generic>
  1856. <standard>Easter Island Standard Time</standard>
  1857. <daylight>Easter Island Summer Time</daylight>
  1858. </long>
  1859. </metazone>
  1860. <metazone type="Ecuador">
  1861. <long>
  1862. <standard>Ecuador Time</standard>
  1863. </long>
  1864. </metazone>
  1865. <metazone type="Europe_Central">
  1866. <long>
  1867. <generic>Central European Time</generic>
  1868. <standard>Central European Standard Time</standard>
  1869. <daylight>Central European Summer Time</daylight>
  1870. </long>
  1871. </metazone>
  1872. <metazone type="Europe_Eastern">
  1873. <long>
  1874. <generic>Eastern European Time</generic>
  1875. <standard>Eastern European Standard Time</standard>
  1876. <daylight>Eastern European Summer Time</daylight>
  1877. </long>
  1878. </metazone>
  1879. <metazone type="Europe_Western">
  1880. <long>
  1881. <generic>Western European Time</generic>
  1882. <standard>Western European Standard Time</standard>
  1883. <daylight>Western European Summer Time</daylight>
  1884. </long>
  1885. </metazone>
  1886. <metazone type="Falkland">
  1887. <long>
  1888. <generic>Falkland Islands Time</generic>
  1889. <standard>Falkland Islands Standard Time</standard>
  1890. <daylight>Falkland Islands Summer Time</daylight>
  1891. </long>
  1892. </metazone>
  1893. <metazone type="Fiji">
  1894. <long>
  1895. <generic>Fiji Time</generic>
  1896. <standard>Fiji Standard Time</standard>
  1897. <daylight>Fiji Summer Time</daylight>
  1898. </long>
  1899. </metazone>
  1900. <metazone type="French_Guiana">
  1901. <long>
  1902. <standard>French Guiana Time</standard>
  1903. </long>
  1904. </metazone>
  1905. <metazone type="French_Southern">
  1906. <long>
  1907. <standard>French Southern and Antarctic Time</standard>
  1908. </long>
  1909. </metazone>
  1910. <metazone type="Galapagos">
  1911. <long>
  1912. <standard>Galapagos Time</standard>
  1913. </long>
  1914. </metazone>
  1915. <metazone type="Gambier">
  1916. <long>
  1917. <standard>Gambier Time</standard>
  1918. </long>
  1919. </metazone>
  1920. <metazone type="Georgia">
  1921. <long>
  1922. <generic>Georgia Time</generic>
  1923. <standard>Georgia Standard Time</standard>
  1924. <daylight>Georgia Summer Time</daylight>
  1925. </long>
  1926. </metazone>
  1927. <metazone type="Gilbert_Islands">
  1928. <long>
  1929. <standard>Gilbert Islands Time</standard>
  1930. </long>
  1931. </metazone>
  1932. <metazone type="GMT">
  1933. <long>
  1934. <standard>Greenwich Mean Time</standard>
  1935. </long>
  1936. </metazone>
  1937. <metazone type="Greenland_Eastern">
  1938. <long>
  1939. <generic>East Greenland Time</generic>
  1940. <standard>East Greenland Standard Time</standard>
  1941. <daylight>East Greenland Summer Time</daylight>
  1942. </long>
  1943. </metazone>
  1944. <metazone type="Greenland_Western">
  1945. <long>
  1946. <generic>West Greenland Time</generic>
  1947. <standard>West Greenland Standard Time</standard>
  1948. <daylight>West Greenland Summer Time</daylight>
  1949. </long>
  1950. </metazone>
  1951. <metazone type="Gulf">
  1952. <long>
  1953. <standard>Gulf Time</standard>
  1954. </long>
  1955. </metazone>
  1956. <metazone type="Guyana">
  1957. <long>
  1958. <standard>Guyana Time</standard>
  1959. </long>
  1960. </metazone>
  1961. <metazone type="Hawaii_Aleutian">
  1962. <long>
  1963. <generic>Hawaii-Aleutian Time</generic>
  1964. <standard>Hawaii-Aleutian Standard Time</standard>
  1965. <daylight>Hawaii-Aleutian Daylight Time</daylight>
  1966. </long>
  1967. </metazone>
  1968. <metazone type="Hong_Kong">
  1969. <long>
  1970. <generic>Hong Kong Time</generic>
  1971. <standard>Hong Kong Standard Time</standard>
  1972. <daylight>Hong Kong Summer Time</daylight>
  1973. </long>
  1974. </metazone>
  1975. <metazone type="Hovd">
  1976. <long>
  1977. <generic>Hovd Time</generic>
  1978. <standard>Hovd Standard Time</standard>
  1979. <daylight>Hovd Summer Time</daylight>
  1980. </long>
  1981. </metazone>
  1982. <metazone type="India">
  1983. <long>
  1984. <standard>India Time</standard>
  1985. </long>
  1986. </metazone>
  1987. <metazone type="Indian_Ocean">
  1988. <long>
  1989. <standard>Indian Ocean Time</standard>
  1990. </long>
  1991. </metazone>
  1992. <metazone type="Indochina">
  1993. <long>
  1994. <standard>Indochina Time</standard>
  1995. </long>
  1996. </metazone>
  1997. <metazone type="Indonesia_Central">
  1998. <long>
  1999. <standard>Central Indonesia Time</standard>
  2000. </long>
  2001. </metazone>
  2002. <metazone type="Indonesia_Eastern">
  2003. <long>
  2004. <standard>Eastern Indonesia Time</standard>
  2005. </long>
  2006. </metazone>
  2007. <metazone type="Indonesia_Western">
  2008. <long>
  2009. <standard>Western Indonesia Time</standard>
  2010. </long>
  2011. </metazone>
  2012. <metazone type="Iran">
  2013. <long>
  2014. <generic>Iran Time</generic>
  2015. <standard>Iran Standard Time</standard>
  2016. <daylight>Iran Daylight Time</daylight>
  2017. </long>
  2018. </metazone>
  2019. <metazone type="Irkutsk">
  2020. <long>
  2021. <generic>Irkutsk Time</generic>
  2022. <standard>Irkutsk Standard Time</standard>
  2023. <daylight>Irkutsk Summer Time</daylight>
  2024. </long>
  2025. </metazone>
  2026. <metazone type="Israel">
  2027. <long>
  2028. <generic>Israel Time</generic>
  2029. <standard>Israel Standard Time</standard>
  2030. <daylight>Israel Daylight Time</daylight>
  2031. </long>
  2032. </metazone>
  2033. <metazone type="Japan">
  2034. <long>
  2035. <generic>Japan Time</generic>
  2036. <standard>Japan Standard Time</standard>
  2037. <daylight>Japan Daylight Time</daylight>
  2038. </long>
  2039. </metazone>
  2040. <metazone type="Kamchatka">
  2041. <long>
  2042. <generic>Oras sa Petropavlovsk-Kamchatski</generic>
  2043. <standard>Standard Time sa Petropavlovsk-Kamchatski</standard>
  2044. <daylight>Summer Time sa Petropavlovsk-Kamchatski</daylight>
  2045. </long>
  2046. </metazone>
  2047. <metazone type="Kazakhstan_Eastern">
  2048. <long>
  2049. <standard>East Kazakhstan Time</standard>
  2050. </long>
  2051. </metazone>
  2052. <metazone type="Kazakhstan_Western">
  2053. <long>
  2054. <standard>West Kazakhstan Time</standard>
  2055. </long>
  2056. </metazone>
  2057. <metazone type="Korea">
  2058. <long>
  2059. <generic>Korean Time</generic>
  2060. <standard>Korean Standard Time</standard>
  2061. <daylight>Korean Daylight Time</daylight>
  2062. </long>
  2063. </metazone>
  2064. <metazone type="Kosrae">
  2065. <long>
  2066. <standard>Kosrae Time</standard>
  2067. </long>
  2068. </metazone>
  2069. <metazone type="Krasnoyarsk">
  2070. <long>
  2071. <generic>Krasnoyarsk Time</generic>
  2072. <standard>Krasnoyarsk Standard Time</standard>
  2073. <daylight>Krasnoyarsk Summer Time</daylight>
  2074. </long>
  2075. </metazone>
  2076. <metazone type="Kyrgystan">
  2077. <long>
  2078. <standard>Kyrgystan Time</standard>
  2079. </long>
  2080. </metazone>
  2081. <metazone type="Line_Islands">
  2082. <long>
  2083. <standard>Line Islands Time</standard>
  2084. </long>
  2085. </metazone>
  2086. <metazone type="Lord_Howe">
  2087. <long>
  2088. <generic>Lord Howe Time</generic>
  2089. <standard>Lord Howe Standard Time</standard>
  2090. <daylight>Lord Howe Daylight Time</daylight>
  2091. </long>
  2092. </metazone>
  2093. <metazone type="Macquarie">
  2094. <long>
  2095. <standard>Macquarie Island Time</standard>
  2096. </long>
  2097. </metazone>
  2098. <metazone type="Magadan">
  2099. <long>
  2100. <generic>Magadan Time</generic>
  2101. <standard>Magadan Standard Time</standard>
  2102. <daylight>Magadan Summer Time</daylight>
  2103. </long>
  2104. </metazone>
  2105. <metazone type="Malaysia">
  2106. <long>
  2107. <standard>Malaysia Time</standard>
  2108. </long>
  2109. </metazone>
  2110. <metazone type="Maldives">
  2111. <long>
  2112. <standard>Maldives Time</standard>
  2113. </long>
  2114. </metazone>
  2115. <metazone type="Marquesas">
  2116. <long>
  2117. <standard>Marquesas Time</standard>
  2118. </long>
  2119. </metazone>
  2120. <metazone type="Marshall_Islands">
  2121. <long>
  2122. <standard>Marshall Islands Time</standard>
  2123. </long>
  2124. </metazone>
  2125. <metazone type="Mauritius">
  2126. <long>
  2127. <generic>Mauritius Time</generic>
  2128. <standard>Mauritius Standard Time</standard>
  2129. <daylight>Mauritius Summer Time</daylight>
  2130. </long>
  2131. </metazone>
  2132. <metazone type="Mawson">
  2133. <long>
  2134. <standard>Mawson Time</standard>
  2135. </long>
  2136. </metazone>
  2137. <metazone type="Mongolia">
  2138. <long>
  2139. <generic>Ulan Bator Time</generic>
  2140. <standard>Ulan Bator Standard Time</standard>
  2141. <daylight>Ulan Bator Summer Time</daylight>
  2142. </long>
  2143. </metazone>
  2144. <metazone type="Moscow">
  2145. <long>
  2146. <generic>Moscow Time</generic>
  2147. <standard>Moscow Standard Time</standard>
  2148. <daylight>Moscow Summer Time</daylight>
  2149. </long>
  2150. </metazone>
  2151. <metazone type="Myanmar">
  2152. <long>
  2153. <standard>Myanmar Time</standard>
  2154. </long>
  2155. </metazone>
  2156. <metazone type="Nauru">
  2157. <long>
  2158. <standard>Nauru Time</standard>
  2159. </long>
  2160. </metazone>
  2161. <metazone type="Nepal">
  2162. <long>
  2163. <standard>Nepal Time</standard>
  2164. </long>
  2165. </metazone>
  2166. <metazone type="New_Caledonia">
  2167. <long>
  2168. <generic>New Caledonia Time</generic>
  2169. <standard>New Caledonia Standard Time</standard>
  2170. <daylight>New Caledonia Summer Time</daylight>
  2171. </long>
  2172. </metazone>
  2173. <metazone type="New_Zealand">
  2174. <long>
  2175. <generic>New Zealand Time</generic>
  2176. <standard>New Zealand Standard Time</standard>
  2177. <daylight>New Zealand Daylight Time</daylight>
  2178. </long>
  2179. </metazone>
  2180. <metazone type="Newfoundland">
  2181. <long>
  2182. <generic>Newfoundland Time</generic>
  2183. <standard>Newfoundland Standard Time</standard>
  2184. <daylight>Newfoundland Daylight Time</daylight>
  2185. </long>
  2186. </metazone>
  2187. <metazone type="Niue">
  2188. <long>
  2189. <standard>Niue Time</standard>
  2190. </long>
  2191. </metazone>
  2192. <metazone type="Norfolk">
  2193. <long>
  2194. <standard>Norfolk Island Time</standard>
  2195. </long>
  2196. </metazone>
  2197. <metazone type="Noronha">
  2198. <long>
  2199. <generic>Fernando de Noronha Time</generic>
  2200. <standard>Fernando de Noronha Standard Time</standard>
  2201. <daylight>Fernando de Noronha Summer Time</daylight>
  2202. </long>
  2203. </metazone>
  2204. <metazone type="Novosibirsk">
  2205. <long>
  2206. <generic>Novosibirsk Time</generic>
  2207. <standard>Novosibirsk Standard Time</standard>
  2208. <daylight>Novosibirsk Summer Time</daylight>
  2209. </long>
  2210. </metazone>
  2211. <metazone type="Omsk">
  2212. <long>
  2213. <generic>Omsk Time</generic>
  2214. <standard>Omsk Standard Time</standard>
  2215. <daylight>Omsk Summer Time</daylight>
  2216. </long>
  2217. </metazone>
  2218. <metazone type="Pakistan">
  2219. <long>
  2220. <generic>Pakistan Time</generic>
  2221. <standard>Pakistan Standard Time</standard>
  2222. <daylight>Pakistan Summer Time</daylight>
  2223. </long>
  2224. </metazone>
  2225. <metazone type="Palau">
  2226. <long>
  2227. <standard>Palau Time</standard>
  2228. </long>
  2229. </metazone>
  2230. <metazone type="Papua_New_Guinea">
  2231. <long>
  2232. <standard>Papua New Guinea Time</standard>
  2233. </long>
  2234. </metazone>
  2235. <metazone type="Paraguay">
  2236. <long>
  2237. <generic>Paraguay Time</generic>
  2238. <standard>Paraguay Standard Time</standard>
  2239. <daylight>Paraguay Summer Time</daylight>
  2240. </long>
  2241. </metazone>
  2242. <metazone type="Peru">
  2243. <long>
  2244. <generic>Peru Time</generic>
  2245. <standard>Peru Standard Time</standard>
  2246. <daylight>Peru Summer Time</daylight>
  2247. </long>
  2248. </metazone>
  2249. <metazone type="Philippines">
  2250. <long>
  2251. <generic>Philippine Time</generic>
  2252. <standard>Philippine Standard Time</standard>
  2253. <daylight>Philippine Summer Time</daylight>
  2254. </long>
  2255. </metazone>
  2256. <metazone type="Phoenix_Islands">
  2257. <long>
  2258. <standard>Phoenix Islands Time</standard>
  2259. </long>
  2260. </metazone>
  2261. <metazone type="Pierre_Miquelon">
  2262. <long>
  2263. <generic>Saint Pierre and Miquelon Time</generic>
  2264. <standard>Saint Pierre and Miquelon Standard Time</standard>
  2265. <daylight>Saint Pierre and Miquelon Daylight Time</daylight>
  2266. </long>
  2267. </metazone>
  2268. <metazone type="Pitcairn">
  2269. <long>
  2270. <standard>Pitcairn Time</standard>
  2271. </long>
  2272. </metazone>
  2273. <metazone type="Ponape">
  2274. <long>
  2275. <standard>Ponape Time</standard>
  2276. </long>
  2277. </metazone>
  2278. <metazone type="Reunion">
  2279. <long>
  2280. <standard>Reunion Time</standard>
  2281. </long>
  2282. </metazone>
  2283. <metazone type="Rothera">
  2284. <long>
  2285. <standard>Rothera Time</standard>
  2286. </long>
  2287. </metazone>
  2288. <metazone type="Sakhalin">
  2289. <long>
  2290. <generic>Sakhalin Time</generic>
  2291. <standard>Sakhalin Standard Time</standard>
  2292. <daylight>Sakhalin Summer Time</daylight>
  2293. </long>
  2294. </metazone>
  2295. <metazone type="Samara">
  2296. <long>
  2297. <generic>Oras sa Samara</generic>
  2298. <standard>Standard Time sa Samara</standard>
  2299. <daylight>Samara Daylight</daylight>
  2300. </long>
  2301. </metazone>
  2302. <metazone type="Samoa">
  2303. <long>
  2304. <generic>Samoa Time</generic>
  2305. <standard>Samoa Standard Time</standard>
  2306. <daylight>Samoa Daylight Time</daylight>
  2307. </long>
  2308. </metazone>
  2309. <metazone type="Seychelles">
  2310. <long>
  2311. <standard>Seychelles Time</standard>
  2312. </long>
  2313. </metazone>
  2314. <metazone type="Singapore">
  2315. <long>
  2316. <standard>Singapore Time</standard>
  2317. </long>
  2318. </metazone>
  2319. <metazone type="Solomon">
  2320. <long>
  2321. <standard>Solomon Islands Time</standard>
  2322. </long>
  2323. </metazone>
  2324. <metazone type="South_Georgia">
  2325. <long>
  2326. <standard>South Georgia Time</standard>
  2327. </long>
  2328. </metazone>
  2329. <metazone type="Suriname">
  2330. <long>
  2331. <standard>Suriname Time</standard>
  2332. </long>
  2333. </metazone>
  2334. <metazone type="Syowa">
  2335. <long>
  2336. <standard>Syowa Time</standard>
  2337. </long>
  2338. </metazone>
  2339. <metazone type="Tahiti">
  2340. <long>
  2341. <standard>Tahiti Time</standard>
  2342. </long>
  2343. </metazone>
  2344. <metazone type="Taipei">
  2345. <long>
  2346. <generic>Taipei Time</generic>
  2347. <standard>Taipei Standard Time</standard>
  2348. <daylight>Taipei Daylight Time</daylight>
  2349. </long>
  2350. </metazone>
  2351. <metazone type="Tajikistan">
  2352. <long>
  2353. <standard>Tajikistan Time</standard>
  2354. </long>
  2355. </metazone>
  2356. <metazone type="Tokelau">
  2357. <long>
  2358. <standard>Tokelau Time</standard>
  2359. </long>
  2360. </metazone>
  2361. <metazone type="Tonga">
  2362. <long>
  2363. <generic>Tonga Time</generic>
  2364. <standard>Tonga Standard Time</standard>
  2365. <daylight>Tonga Summer Time</daylight>
  2366. </long>
  2367. </metazone>
  2368. <metazone type="Truk">
  2369. <long>
  2370. <standard>Chuuk Time</standard>
  2371. </long>
  2372. </metazone>
  2373. <metazone type="Turkmenistan">
  2374. <long>
  2375. <generic>Turkmenistan Time</generic>
  2376. <standard>Turkmenistan Standard Time</standard>
  2377. <daylight>Turkmenistan Summer Time</daylight>
  2378. </long>
  2379. </metazone>
  2380. <metazone type="Tuvalu">
  2381. <long>
  2382. <standard>Tuvalu Time</standard>
  2383. </long>
  2384. </metazone>
  2385. <metazone type="Uruguay">
  2386. <long>
  2387. <generic>Uruguay Time</generic>
  2388. <standard>Uruguay Standard Time</standard>
  2389. <daylight>Uruguay Summer Time</daylight>
  2390. </long>
  2391. </metazone>
  2392. <metazone type="Uzbekistan">
  2393. <long>
  2394. <generic>Uzbekistan Time</generic>
  2395. <standard>Uzbekistan Standard Time</standard>
  2396. <daylight>Uzbekistan Summer Time</daylight>
  2397. </long>
  2398. </metazone>
  2399. <metazone type="Vanuatu">
  2400. <long>
  2401. <generic>Vanuatu Time</generic>
  2402. <standard>Vanuatu Standard Time</standard>
  2403. <daylight>Vanuatu Summer Time</daylight>
  2404. </long>
  2405. </metazone>
  2406. <metazone type="Venezuela">
  2407. <long>
  2408. <standard>Venezuela Time</standard>
  2409. </long>
  2410. </metazone>
  2411. <metazone type="Vladivostok">
  2412. <long>
  2413. <generic>Vladivostok Time</generic>
  2414. <standard>Vladivostok Standard Time</standard>
  2415. <daylight>Vladivostok Summer Time</daylight>
  2416. </long>
  2417. </metazone>
  2418. <metazone type="Volgograd">
  2419. <long>
  2420. <generic>Volgograd Time</generic>
  2421. <standard>Volgograd Standard Time</standard>
  2422. <daylight>Volgograd Summer Time</daylight>
  2423. </long>
  2424. </metazone>
  2425. <metazone type="Vostok">
  2426. <long>
  2427. <standard>Vostok Time</standard>
  2428. </long>
  2429. </metazone>
  2430. <metazone type="Wake">
  2431. <long>
  2432. <standard>Wake Island Time</standard>
  2433. </long>
  2434. </metazone>
  2435. <metazone type="Wallis">
  2436. <long>
  2437. <standard>Wallis and Futuna Time</standard>
  2438. </long>
  2439. </metazone>
  2440. <metazone type="Yakutsk">
  2441. <long>
  2442. <generic>Yakutsk Time</generic>
  2443. <standard>Yakutsk Standard Time</standard>
  2444. <daylight>Yakutsk Summer Time</daylight>
  2445. </long>
  2446. </metazone>
  2447. <metazone type="Yekaterinburg">
  2448. <long>
  2449. <generic>Yekaterinburg Time</generic>
  2450. <standard>Yekaterinburg Standard Time</standard>
  2451. <daylight>Yekaterinburg Summer Time</daylight>
  2452. </long>
  2453. </metazone>
  2454. </timeZoneNames>
  2455. </dates>
  2456. <numbers>
  2457. <symbols numberSystem="latn">
  2458. <decimal>.</decimal>
  2459. <group>,</group>
  2460. <list>;</list>
  2461. <percentSign>%</percentSign>
  2462. <plusSign>+</plusSign>
  2463. <minusSign>-</minusSign>
  2464. <exponential>E</exponential>
  2465. <superscriptingExponent>×</superscriptingExponent>
  2466. <perMille>‰</perMille>
  2467. <infinity>∞</infinity>
  2468. <nan>NaN</nan>
  2469. </symbols>
  2470. <decimalFormats numberSystem="latn">
  2471. <decimalFormatLength>
  2472. <decimalFormat>
  2473. <pattern>#,##0.###</pattern>
  2474. </decimalFormat>
  2475. </decimalFormatLength>
  2476. <decimalFormatLength type="long">
  2477. <decimalFormat>
  2478. <pattern type="1000" count="one">0 libo</pattern>
  2479. <pattern type="1000" count="other">0 libo</pattern>
  2480. <pattern type="10000" count="one">00 libo</pattern>
  2481. <pattern type="10000" count="other">00 libo</pattern>
  2482. <pattern type="100000" count="one">000 libo</pattern>
  2483. <pattern type="100000" count="other">000 libo</pattern>
  2484. <pattern type="1000000" count="one">0 milyon</pattern>
  2485. <pattern type="1000000" count="other">0 milyon</pattern>
  2486. <pattern type="10000000" count="one">00 milyon</pattern>
  2487. <pattern type="10000000" count="other">00 milyon</pattern>
  2488. <pattern type="100000000" count="one">000 milyon</pattern>
  2489. <pattern type="100000000" count="other">000 milyon</pattern>
  2490. <pattern type="1000000000" count="one">0 bilyon</pattern>
  2491. <pattern type="1000000000" count="other">0 bilyon</pattern>
  2492. <pattern type="10000000000" count="one">00 bilyon</pattern>
  2493. <pattern type="10000000000" count="other">00 bilyon</pattern>
  2494. <pattern type="100000000000" count="one">000 bilyon</pattern>
  2495. <pattern type="100000000000" count="other">000 bilyon</pattern>
  2496. <pattern type="1000000000000" count="one">0 trilyon</pattern>
  2497. <pattern type="1000000000000" count="other">0 trilyon</pattern>
  2498. <pattern type="10000000000000" count="one">00 trilyon</pattern>
  2499. <pattern type="10000000000000" count="other">00 trilyon</pattern>
  2500. <pattern type="100000000000000" count="one">000 trilyon</pattern>
  2501. <pattern type="100000000000000" count="other">000 trilyon</pattern>
  2502. </decimalFormat>
  2503. </decimalFormatLength>
  2504. <decimalFormatLength type="short">
  2505. <decimalFormat>
  2506. <pattern type="1000" count="one">0K</pattern>
  2507. <pattern type="1000" count="other">0K</pattern>
  2508. <pattern type="10000" count="one">00K</pattern>
  2509. <pattern type="10000" count="other">00K</pattern>
  2510. <pattern type="100000" count="one">000K</pattern>
  2511. <pattern type="100000" count="other">000K</pattern>
  2512. <pattern type="1000000" count="one">0M</pattern>
  2513. <pattern type="1000000" count="other">0M</pattern>
  2514. <pattern type="10000000" count="one">00M</pattern>
  2515. <pattern type="10000000" count="other">00M</pattern>
  2516. <pattern type="100000000" count="one">000M</pattern>
  2517. <pattern type="100000000" count="other">000M</pattern>
  2518. <pattern type="1000000000" count="one">0B</pattern>
  2519. <pattern type="1000000000" count="other">0B</pattern>
  2520. <pattern type="10000000000" count="one">00B</pattern>
  2521. <pattern type="10000000000" count="other">00B</pattern>
  2522. <pattern type="100000000000" count="one">000B</pattern>
  2523. <pattern type="100000000000" count="other">000B</pattern>
  2524. <pattern type="1000000000000" count="one">0T</pattern>
  2525. <pattern type="1000000000000" count="other">0T</pattern>
  2526. <pattern type="10000000000000" count="one">00T</pattern>
  2527. <pattern type="10000000000000" count="other">00T</pattern>
  2528. <pattern type="100000000000000" count="one">000T</pattern>
  2529. <pattern type="100000000000000" count="other">000T</pattern>
  2530. </decimalFormat>
  2531. </decimalFormatLength>
  2532. </decimalFormats>
  2533. <scientificFormats numberSystem="latn">
  2534. <scientificFormatLength>
  2535. <scientificFormat>
  2536. <pattern>#E0</pattern>
  2537. </scientificFormat>
  2538. </scientificFormatLength>
  2539. </scientificFormats>
  2540. <percentFormats numberSystem="latn">
  2541. <percentFormatLength>
  2542. <percentFormat>
  2543. <pattern>#,##0%</pattern>
  2544. </percentFormat>
  2545. </percentFormatLength>
  2546. </percentFormats>
  2547. <currencyFormats numberSystem="latn">
  2548. <currencyFormatLength>
  2549. <currencyFormat type="standard">
  2550. <pattern>¤#,##0.00</pattern>
  2551. </currencyFormat>
  2552. <currencyFormat type="accounting">
  2553. <pattern>¤#,##0.00;(¤#,##0.00)</pattern>
  2554. </currencyFormat>
  2555. </currencyFormatLength>
  2556. <unitPattern count="one">{0} {1}</unitPattern>
  2557. <unitPattern count="other">{0} {1}</unitPattern>
  2558. </currencyFormats>
  2559. <currencies>
  2560. <currency type="AED">
  2561. <displayName>United Arab Emirates Dirham</displayName>
  2562. <displayName count="one">UAE dirham</displayName>
  2563. <displayName count="other">UAE dirhams</displayName>
  2564. </currency>
  2565. <currency type="AFN">
  2566. <displayName>Afghan Afghani</displayName>
  2567. <displayName count="one">Afghan Afghani</displayName>
  2568. <displayName count="other">Afghan Afghanis</displayName>
  2569. </currency>
  2570. <currency type="ALL">
  2571. <displayName>Albanian Lek</displayName>
  2572. <displayName count="one">Albanian lek</displayName>
  2573. <displayName count="other">Albanian leke</displayName>
  2574. </currency>
  2575. <currency type="AMD">
  2576. <displayName>Armenian Dram</displayName>
  2577. <displayName count="one">Armenian dram</displayName>
  2578. <displayName count="other">Armenian drams</displayName>
  2579. </currency>
  2580. <currency type="ANG">
  2581. <displayName>Netherlands Antillean Guilder</displayName>
  2582. <displayName count="one">Netherlands Antillean guilder</displayName>
  2583. <displayName count="other">Netherlands Antillean guilders</displayName>
  2584. </currency>
  2585. <currency type="AOA">
  2586. <displayName>Angolan Kwanza</displayName>
  2587. <displayName count="one">Angolan kwanza</displayName>
  2588. <displayName count="other">Angolan kwanzas</displayName>
  2589. </currency>
  2590. <currency type="ARS">
  2591. <displayName>Argentine Peso</displayName>
  2592. <displayName count="one">Argentine peso</displayName>
  2593. <displayName count="other">Argentine pesos</displayName>
  2594. </currency>
  2595. <currency type="AUD">
  2596. <displayName>Australian Dollar</displayName>
  2597. <displayName count="one">Australian dollar</displayName>
  2598. <displayName count="other">Australian dollars</displayName>
  2599. <symbol>A$</symbol>
  2600. </currency>
  2601. <currency type="AWG">
  2602. <displayName>Aruban Florin</displayName>
  2603. <displayName count="one">Aruban florin</displayName>
  2604. <displayName count="other">Aruban florin</displayName>
  2605. </currency>
  2606. <currency type="AZN">
  2607. <displayName>Azerbaijani Manat</displayName>
  2608. <displayName count="one">Azerbaijani manat</displayName>
  2609. <displayName count="other">Azerbaijani manats</displayName>
  2610. </currency>
  2611. <currency type="BAM">
  2612. <displayName>Bosnia-Herzegovina Convertible Mark</displayName>
  2613. <displayName count="one">Bosnia-Herzegovina convertible mark</displayName>
  2614. <displayName count="other">Bosnia-Herzegovina convertible marks</displayName>
  2615. </currency>
  2616. <currency type="BBD">
  2617. <displayName>Barbadian Dollar</displayName>
  2618. <displayName count="one">Barbadian dollar</displayName>
  2619. <displayName count="other">Barbadian dollars</displayName>
  2620. </currency>
  2621. <currency type="BDT">
  2622. <displayName>Bangladeshi Taka</displayName>
  2623. <displayName count="one">Bangladeshi taka</displayName>
  2624. <displayName count="other">Bangladeshi takas</displayName>
  2625. </currency>
  2626. <currency type="BGN">
  2627. <displayName>Bulgarian Lev</displayName>
  2628. <displayName count="one">Bulgarian lev</displayName>
  2629. <displayName count="other">Bulgarian leva</displayName>
  2630. </currency>
  2631. <currency type="BHD">
  2632. <displayName>Bahraini Dinar</displayName>
  2633. <displayName count="one">Bahraini dinar</displayName>
  2634. <displayName count="other">Bahraini dinars</displayName>
  2635. </currency>
  2636. <currency type="BIF">
  2637. <displayName>Burundian Franc</displayName>
  2638. <displayName count="one">Burundian franc</displayName>
  2639. <displayName count="other">Burundian francs</displayName>
  2640. </currency>
  2641. <currency type="BMD">
  2642. <displayName>Bermudan Dollar</displayName>
  2643. <displayName count="one">Bermudan dollar</displayName>
  2644. <displayName count="other">Bermudan dollars</displayName>
  2645. </currency>
  2646. <currency type="BND">
  2647. <displayName>Brunei Dollar</displayName>
  2648. <displayName count="one">Brunei dollar</displayName>
  2649. <displayName count="other">Brunei dollars</displayName>
  2650. </currency>
  2651. <currency type="BOB">
  2652. <displayName>Bolivian Boliviano</displayName>
  2653. <displayName count="one">Bolivian boliviano</displayName>
  2654. <displayName count="other">Bolivian bolivianos</displayName>
  2655. </currency>
  2656. <currency type="BRL">
  2657. <displayName>Brazilian Real</displayName>
  2658. <displayName count="one">Brazilian real</displayName>
  2659. <displayName count="other">Brazilian reals</displayName>
  2660. <symbol>R$</symbol>
  2661. </currency>
  2662. <currency type="BSD">
  2663. <displayName>Bahamian Dollar</displayName>
  2664. <displayName count="one">Bahamian dollar</displayName>
  2665. <displayName count="other">Bahamian dollars</displayName>
  2666. </currency>
  2667. <currency type="BTN">
  2668. <displayName>Bhutanese Ngultrum</displayName>
  2669. <displayName count="one">Bhutanese ngultrum</displayName>
  2670. <displayName count="other">Bhutanese ngultrums</displayName>
  2671. </currency>
  2672. <currency type="BWP">
  2673. <displayName>Botswanan Pula</displayName>
  2674. <displayName count="one">Botswanan pula</displayName>
  2675. <displayName count="other">Botswanan pulas</displayName>
  2676. </currency>
  2677. <currency type="BYR">
  2678. <displayName>Belarusian Ruble</displayName>
  2679. <displayName count="one">Belarusian ruble</displayName>
  2680. <displayName count="other">Belarusian rubles</displayName>
  2681. </currency>
  2682. <currency type="BZD">
  2683. <displayName>Belize Dollar</displayName>
  2684. <displayName count="one">Belize dollar</displayName>
  2685. <displayName count="other">Belize dollars</displayName>
  2686. </currency>
  2687. <currency type="CAD">
  2688. <displayName>Canadian Dollar</displayName>
  2689. <displayName count="one">Canadian dollar</displayName>
  2690. <displayName count="other">Canadian dollars</displayName>
  2691. <symbol>CA$</symbol>
  2692. </currency>
  2693. <currency type="CDF">
  2694. <displayName>Congolese Franc</displayName>
  2695. <displayName count="one">Congolese franc</displayName>
  2696. <displayName count="other">Congolese francs</displayName>
  2697. </currency>
  2698. <currency type="CHF">
  2699. <displayName>Swiss Franc</displayName>
  2700. <displayName count="one">Swiss franc</displayName>
  2701. <displayName count="other">Swiss francs</displayName>
  2702. </currency>
  2703. <currency type="CLP">
  2704. <displayName>Chilean Peso</displayName>
  2705. <displayName count="one">Chilean peso</displayName>
  2706. <displayName count="other">Chilean pesos</displayName>
  2707. </currency>
  2708. <currency type="CNY">
  2709. <displayName>Chinese Yuan</displayName>
  2710. <displayName count="one">Chinese yuan</displayName>
  2711. <displayName count="other">Chinese yuan</displayName>
  2712. <symbol>CN¥</symbol>
  2713. </currency>
  2714. <currency type="COP">
  2715. <displayName>Colombian Peso</displayName>
  2716. <displayName count="one">Colombian peso</displayName>
  2717. <displayName count="other">Colombian pesos</displayName>
  2718. </currency>
  2719. <currency type="CRC">
  2720. <displayName>Costa Rican Colón</displayName>
  2721. <displayName count="one">Costa Rican colón</displayName>
  2722. <displayName count="other">Costa Rican colóns</displayName>
  2723. </currency>
  2724. <currency type="CUC">
  2725. <displayName>Cuban Convertible Peso</displayName>
  2726. <displayName count="one">Cuban convertible peso</displayName>
  2727. <displayName count="other">Cuban convertible pesos</displayName>
  2728. </currency>
  2729. <currency type="CUP">
  2730. <displayName>Cuban Peso</displayName>
  2731. <displayName count="one">Cuban peso</displayName>
  2732. <displayName count="other">Cuban pesos</displayName>
  2733. </currency>
  2734. <currency type="CVE">
  2735. <displayName>Cape Verdean Escudo</displayName>
  2736. <displayName count="one">Cape Verdean escudo</displayName>
  2737. <displayName count="other">Cape Verdean escudos</displayName>
  2738. </currency>
  2739. <currency type="CZK">
  2740. <displayName>Czech Republic Koruna</displayName>
  2741. <displayName count="one">Czech Republic koruna</displayName>
  2742. <displayName count="other">Czech Republic korunas</displayName>
  2743. </currency>
  2744. <currency type="DEM">
  2745. <displayName draft="contributed">Deutsche Marks</displayName>
  2746. </currency>
  2747. <currency type="DJF">
  2748. <displayName>Djiboutian Franc</displayName>
  2749. <displayName count="one">Djiboutian franc</displayName>
  2750. <displayName count="other">Djiboutian francs</displayName>
  2751. </currency>
  2752. <currency type="DKK">
  2753. <displayName>Denmark Krone</displayName>
  2754. <displayName count="one">Danish krone</displayName>
  2755. <displayName count="other">Danish kroner</displayName>
  2756. </currency>
  2757. <currency type="DOP">
  2758. <displayName>Dominican Peso</displayName>
  2759. <displayName count="one">Dominican peso</displayName>
  2760. <displayName count="other">Dominican pesos</displayName>
  2761. </currency>
  2762. <currency type="DZD">
  2763. <displayName>Algerian Dinar</displayName>
  2764. <displayName count="one">Algerian dinar</displayName>
  2765. <displayName count="other">Algerian dinars</displayName>
  2766. </currency>
  2767. <currency type="EEK">
  2768. <displayName draft="contributed">Estonian Kroon</displayName>
  2769. </currency>
  2770. <currency type="EGP">
  2771. <displayName>Egyptian Pound</displayName>
  2772. <displayName count="one">Egyptian pound</displayName>
  2773. <displayName count="other">Egyptian pounds</displayName>
  2774. </currency>
  2775. <currency type="ERN">
  2776. <displayName>Eritrean Nakfa</displayName>
  2777. <displayName count="one">Eritrean nakfa</displayName>
  2778. <displayName count="other">Eritrean nakfas</displayName>
  2779. </currency>
  2780. <currency type="ETB">
  2781. <displayName>Ethiopian Birr</displayName>
  2782. <displayName count="one">Ethiopian birr</displayName>
  2783. <displayName count="other">Ethiopian birrs</displayName>
  2784. </currency>
  2785. <currency type="EUR">
  2786. <displayName>Euro</displayName>
  2787. <displayName count="one">euro</displayName>
  2788. <displayName count="other">euros</displayName>
  2789. <symbol>€</symbol>
  2790. </currency>
  2791. <currency type="FJD">
  2792. <displayName>Fijian Dollar</displayName>
  2793. <displayName count="one">Fijian dollar</displayName>
  2794. <displayName count="other">Fijian dollars</displayName>
  2795. </currency>
  2796. <currency type="FKP">
  2797. <displayName>Falkland Islands Pound</displayName>
  2798. <displayName count="one">Falkland Islands pound</displayName>
  2799. <displayName count="other">Falkland Islands pounds</displayName>
  2800. </currency>
  2801. <currency type="FRF">
  2802. <displayName draft="contributed">French Franc</displayName>
  2803. </currency>
  2804. <currency type="GBP">
  2805. <displayName>British Pound Sterling</displayName>
  2806. <displayName count="one">British pound sterling</displayName>
  2807. <displayName count="other">British pounds sterling</displayName>
  2808. <symbol>£</symbol>
  2809. </currency>
  2810. <currency type="GEL">
  2811. <displayName>Georgian Lari</displayName>
  2812. <displayName count="one">Georgian lari</displayName>
  2813. <displayName count="other">Georgian laris</displayName>
  2814. </currency>
  2815. <currency type="GHS">
  2816. <displayName>Ghanaian Cedi</displayName>
  2817. <displayName count="one">Ghanaian cedi</displayName>
  2818. <displayName count="other">Ghanaian CediGhanaian cedis</displayName>
  2819. </currency>
  2820. <currency type="GIP">
  2821. <displayName>Gibraltar Pound</displayName>
  2822. <displayName count="one">Gibraltar pound</displayName>
  2823. <displayName count="other">Gibraltar pounds</displayName>
  2824. </currency>
  2825. <currency type="GMD">
  2826. <displayName>Gambian Dalasi</displayName>
  2827. <displayName count="one">Gambian dalasi</displayName>
  2828. <displayName count="other">Gambian dalasis</displayName>
  2829. </currency>
  2830. <currency type="GNF">
  2831. <displayName>Guinean Franc</displayName>
  2832. <displayName count="one">Guinean franc</displayName>
  2833. <displayName count="other">Guinean francs</displayName>
  2834. </currency>
  2835. <currency type="GTQ">
  2836. <displayName>Guatemalan Quetzal</displayName>
  2837. <displayName count="one">Guatemalan quetzal</displayName>
  2838. <displayName count="other">Guatemalan quetzals</displayName>
  2839. </currency>
  2840. <currency type="GYD">
  2841. <displayName>Guyanaese Dollar</displayName>
  2842. <displayName count="one">Guyanaese dollar</displayName>
  2843. <displayName count="other">Guyanaese dollars</displayName>
  2844. </currency>
  2845. <currency type="HKD">
  2846. <displayName>Hong Kong Dollar</displayName>
  2847. <displayName count="one">Hong Kong dollar</displayName>
  2848. <displayName count="other">Hong Kong dollars</displayName>
  2849. <symbol>HK$</symbol>
  2850. </currency>
  2851. <currency type="HNL">
  2852. <displayName>Honduran Lempira</displayName>
  2853. <displayName count="one">Honduran lempira</displayName>
  2854. <displayName count="other">Honduran lempiras</displayName>
  2855. </currency>
  2856. <currency type="HRK">
  2857. <displayName>Croatian Kuna</displayName>
  2858. <displayName count="one">Croatian kuna</displayName>
  2859. <displayName count="other">Croatian kunas</displayName>
  2860. </currency>
  2861. <currency type="HTG">
  2862. <displayName>Haitian Gourde</displayName>
  2863. <displayName count="one">Haitian gourde</displayName>
  2864. <displayName count="other">Haitian gourdes</displayName>
  2865. </currency>
  2866. <currency type="HUF">
  2867. <displayName>Hungarian Forint</displayName>
  2868. <displayName count="one">Hungarian forint</displayName>
  2869. <displayName count="other">Hungarian forints</displayName>
  2870. </currency>
  2871. <currency type="IDR">
  2872. <displayName>Indonesian Rupiah</displayName>
  2873. <displayName count="one">Indonesian rupiah</displayName>
  2874. <displayName count="other">Indonesian rupiahs</displayName>
  2875. </currency>
  2876. <currency type="ILS">
  2877. <displayName>Israeli New Sheqel</displayName>
  2878. <displayName count="one">Israeli new sheqel</displayName>
  2879. <displayName count="other">Israeli new sheqels</displayName>
  2880. <symbol>₪</symbol>
  2881. </currency>
  2882. <currency type="INR">
  2883. <displayName>Indian Rupee</displayName>
  2884. <displayName count="one">Indian rupee</displayName>
  2885. <displayName count="other">Indian rupees</displayName>
  2886. <symbol>₹</symbol>
  2887. </currency>
  2888. <currency type="IQD">
  2889. <displayName>Iraqi Dinar</displayName>
  2890. <displayName count="one">Iraqi dinar</displayName>
  2891. <displayName count="other">Iraqi dinars</displayName>
  2892. </currency>
  2893. <currency type="IRR">
  2894. <displayName>Iranian Rial</displayName>
  2895. <displayName count="one">Iranian rial</displayName>
  2896. <displayName count="other">Iranian rials</displayName>
  2897. </currency>
  2898. <currency type="ISK">
  2899. <displayName>Icelandic Króna</displayName>
  2900. <displayName count="one">Icelandic króna</displayName>
  2901. <displayName count="other">Icelandic krónur</displayName>
  2902. </currency>
  2903. <currency type="JMD">
  2904. <displayName>Jamaican Dollar</displayName>
  2905. <displayName count="one">Jamaican dollar</displayName>
  2906. <displayName count="other">Jamaican dollars</displayName>
  2907. </currency>
  2908. <currency type="JOD">
  2909. <displayName>Jordanian Dinar</displayName>
  2910. <displayName count="one">Jordanian dinar</displayName>
  2911. <displayName count="other">Jordanian dinars</displayName>
  2912. </currency>
  2913. <currency type="JPY">
  2914. <displayName>Japanese Yen</displayName>
  2915. <displayName count="one">Japanese yen</displayName>
  2916. <displayName count="other">Japanese yen</displayName>
  2917. <symbol>¥</symbol>
  2918. </currency>
  2919. <currency type="KES">
  2920. <displayName>Kenyan Shilling</displayName>
  2921. <displayName count="one">Kenyan shilling</displayName>
  2922. <displayName count="other">Kenyan shillings</displayName>
  2923. </currency>
  2924. <currency type="KGS">
  2925. <displayName>Kyrgystani Som</displayName>
  2926. <displayName count="one">Kyrgystani som</displayName>
  2927. <displayName count="other">Kyrgystani soms</displayName>
  2928. </currency>
  2929. <currency type="KHR">
  2930. <displayName>Cambodian Riel</displayName>
  2931. <displayName count="one">Cambodian riel</displayName>
  2932. <displayName count="other">Cambodian riels</displayName>
  2933. </currency>
  2934. <currency type="KMF">
  2935. <displayName>Comorian Franc</displayName>
  2936. <displayName count="one">Comorian franc</displayName>
  2937. <displayName count="other">Comorian francs</displayName>
  2938. </currency>
  2939. <currency type="KPW">
  2940. <displayName>North Korean Won</displayName>
  2941. <displayName count="one">North Korean won</displayName>
  2942. <displayName count="other">North Korean won</displayName>
  2943. </currency>
  2944. <currency type="KRW">
  2945. <displayName>South Korean Won</displayName>
  2946. <displayName count="one">South Korean won</displayName>
  2947. <displayName count="other">South Korean won</displayName>
  2948. <symbol>₩</symbol>
  2949. </currency>
  2950. <currency type="KWD">
  2951. <displayName>Kuwaiti Dinar</displayName>
  2952. <displayName count="one">Kuwaiti dinar</displayName>
  2953. <displayName count="other">Kuwaiti dinars</displayName>
  2954. </currency>
  2955. <currency type="KYD">
  2956. <displayName>Cayman Islands Dollar</displayName>
  2957. <displayName count="one">Cayman Islands dollar</displayName>
  2958. <displayName count="other">Cayman Islands dollars</displayName>
  2959. </currency>
  2960. <currency type="KZT">
  2961. <displayName>Kazakhstani Tenge</displayName>
  2962. <displayName count="one">Kazakhstani tenge</displayName>
  2963. <displayName count="other">Kazakhstani tenges</displayName>
  2964. </currency>
  2965. <currency type="LAK">
  2966. <displayName>Laotian Kip</displayName>
  2967. <displayName count="one">Laotian kip</displayName>
  2968. <displayName count="other">Laotian kips</displayName>
  2969. </currency>
  2970. <currency type="LBP">
  2971. <displayName>Lebanese Pound</displayName>
  2972. <displayName count="one">Lebanese pound</displayName>
  2973. <displayName count="other">Lebanese pounds</displayName>
  2974. </currency>
  2975. <currency type="LKR">
  2976. <displayName>Sri Lankan Rupee</displayName>
  2977. <displayName count="one">Sri Lankan rupee</displayName>
  2978. <displayName count="other">Sri Lankan rupees</displayName>
  2979. </currency>
  2980. <currency type="LRD">
  2981. <displayName>Liberian Dollar</displayName>
  2982. <displayName count="one">Liberian dollar</displayName>
  2983. <displayName count="other">Liberian dollars</displayName>
  2984. </currency>
  2985. <currency type="LSL">
  2986. <displayName>Lesotho Loti</displayName>
  2987. </currency>
  2988. <currency type="LTL">
  2989. <displayName>Lithuanian Litas</displayName>
  2990. <displayName count="one">Lithuanian litas</displayName>
  2991. <displayName count="other">Lithuanian litai</displayName>
  2992. </currency>
  2993. <currency type="LVL">
  2994. <displayName>Latvian Lats</displayName>
  2995. <displayName count="one">Latvian lats</displayName>
  2996. <displayName count="other">Latvian lati</displayName>
  2997. </currency>
  2998. <currency type="LYD">
  2999. <displayName>Libyan Dinar</displayName>
  3000. <displayName count="one">Libyan dinar</displayName>
  3001. <displayName count="other">Libyan dinars</displayName>
  3002. </currency>
  3003. <currency type="MAD">
  3004. <displayName>Moroccan Dirham</displayName>
  3005. <displayName count="one">Moroccan dirham</displayName>
  3006. <displayName count="other">Moroccan dirhams</displayName>
  3007. </currency>
  3008. <currency type="MDL">
  3009. <displayName>Moldovan Leu</displayName>
  3010. <displayName count="one">Moldovan leu</displayName>
  3011. <displayName count="other">Moldovan lei</displayName>
  3012. </currency>
  3013. <currency type="MGA">
  3014. <displayName>Malagasy Ariary</displayName>
  3015. <displayName count="one">Malagasy Ariary</displayName>
  3016. <displayName count="other">Malagasy Ariaries</displayName>
  3017. </currency>
  3018. <currency type="MKD">
  3019. <displayName>Macedonian Denar</displayName>
  3020. <displayName count="one">Macedonian denar</displayName>
  3021. <displayName count="other">Macedonian denari</displayName>
  3022. </currency>
  3023. <currency type="MMK">
  3024. <displayName>Myanmar Kyat</displayName>
  3025. <displayName count="one">Myanmar kyat</displayName>
  3026. <displayName count="other">Myanmar kyats</displayName>
  3027. </currency>
  3028. <currency type="MNT">
  3029. <displayName>Mongolian Tugrik</displayName>
  3030. <displayName count="one">Mongolian tugrik</displayName>
  3031. <displayName count="other">Mongolian tugriks</displayName>
  3032. </currency>
  3033. <currency type="MOP">
  3034. <displayName>Macanese Pataca</displayName>
  3035. <displayName count="one">Macanese pataca</displayName>
  3036. <displayName count="other">Macanese patacas</displayName>
  3037. </currency>
  3038. <currency type="MRO">
  3039. <displayName>Mauritanian Ouguiya</displayName>
  3040. <displayName count="one">Mauritanian ouguiya</displayName>
  3041. <displayName count="other">Mauritanian ouguiyas</displayName>
  3042. </currency>
  3043. <currency type="MUR">
  3044. <displayName>Mauritian Rupee</displayName>
  3045. <displayName count="one">Mauritian rupee</displayName>
  3046. <displayName count="other">Mauritian rupees</displayName>
  3047. </currency>
  3048. <currency type="MVR">
  3049. <displayName>Maldivian Rufiyaa</displayName>
  3050. <displayName count="one">Maldivian rufiyaa</displayName>
  3051. <displayName count="other">Maldivian rufiyaas</displayName>
  3052. </currency>
  3053. <currency type="MWK">
  3054. <displayName>Malawian Kwacha</displayName>
  3055. <displayName count="one">Malawian Kwacha</displayName>
  3056. <displayName count="other">Malawian Kwachas</displayName>
  3057. </currency>
  3058. <currency type="MXN">
  3059. <displayName>Mexican Peso</displayName>
  3060. <displayName count="one">Mexican peso</displayName>
  3061. <displayName count="other">Mexican pesos</displayName>
  3062. <symbol>MX$</symbol>
  3063. </currency>
  3064. <currency type="MYR">
  3065. <displayName>Malaysian Ringgit</displayName>
  3066. <displayName count="one">Malaysian ringgit</displayName>
  3067. <displayName count="other">Malaysian ringgits</displayName>
  3068. </currency>
  3069. <currency type="MZN">
  3070. <displayName>Mozambican Metical</displayName>
  3071. <displayName count="one">Mozambican metical</displayName>
  3072. <displayName count="other">Mozambican meticals</displayName>
  3073. </currency>
  3074. <currency type="NAD">
  3075. <displayName>Namibian Dollar</displayName>
  3076. <displayName count="one">Namibian dollar</displayName>
  3077. <displayName count="other">Namibian dollars</displayName>
  3078. </currency>
  3079. <currency type="NGN">
  3080. <displayName>Nigerian Naira</displayName>
  3081. <displayName count="one">Nigerian naira</displayName>
  3082. <displayName count="other">Nigerian nairas</displayName>
  3083. </currency>
  3084. <currency type="NIO">
  3085. <displayName>Nicaraguan Córdoba</displayName>
  3086. <displayName count="one">Nicaraguan córdoba</displayName>
  3087. <displayName count="other">Nicaraguan córdobas</displayName>
  3088. </currency>
  3089. <currency type="NOK">
  3090. <displayName>Norwegian Krone</displayName>
  3091. <displayName count="one">Norwegian krone</displayName>
  3092. <displayName count="other">Norwegian kroner</displayName>
  3093. </currency>
  3094. <currency type="NPR">
  3095. <displayName>Nepalese Rupee</displayName>
  3096. <displayName count="one">Nepalese rupee</displayName>
  3097. <displayName count="other">Nepalese rupees</displayName>
  3098. </currency>
  3099. <currency type="NZD">
  3100. <displayName>New Zealand Dollar</displayName>
  3101. <displayName count="one">New Zealand dollar</displayName>
  3102. <displayName count="other">New Zealand dollars</displayName>
  3103. <symbol>NZ$</symbol>
  3104. </currency>
  3105. <currency type="OMR">
  3106. <displayName>Omani Rial</displayName>
  3107. <displayName count="one">Omani rial</displayName>
  3108. <displayName count="other">Omani rials</displayName>
  3109. </currency>
  3110. <currency type="PAB">
  3111. <displayName>Panamanian Balboa</displayName>
  3112. <displayName count="one">Panamanian balboa</displayName>
  3113. <displayName count="other">Panamanian balboas</displayName>
  3114. </currency>
  3115. <currency type="PEN">
  3116. <displayName>Peruvian Nuevo Sol</displayName>
  3117. <displayName count="one">Peruvian nuevo sol</displayName>
  3118. <displayName count="other">Peruvian nuevos soles</displayName>
  3119. </currency>
  3120. <currency type="PGK">
  3121. <displayName>Papua New Guinean Kina</displayName>
  3122. <displayName count="one">Papua New Guinean kina</displayName>
  3123. <displayName count="other">Papua New Guinean kina</displayName>
  3124. </currency>
  3125. <currency type="PHP">
  3126. <displayName>Philippine Peso</displayName>
  3127. <displayName count="one">Philippine peso</displayName>
  3128. <displayName count="other">Philippine pesos</displayName>
  3129. <symbol>₱</symbol>
  3130. </currency>
  3131. <currency type="PKR">
  3132. <displayName>Pakistani Rupee</displayName>
  3133. <displayName count="one">Pakistani rupee</displayName>
  3134. <displayName count="other">Pakistani rupees</displayName>
  3135. </currency>
  3136. <currency type="PLN">
  3137. <displayName>Polish Zloty</displayName>
  3138. <displayName count="one">Polish zloty</displayName>
  3139. <displayName count="other">Polish zlotys</displayName>
  3140. </currency>
  3141. <currency type="PYG">
  3142. <displayName>Paraguayan Guarani</displayName>
  3143. <displayName count="one">Paraguayan guarani</displayName>
  3144. <displayName count="other">Paraguayan guaranis</displayName>
  3145. </currency>
  3146. <currency type="QAR">
  3147. <displayName>Qatari Rial</displayName>
  3148. <displayName count="one">Qatari rial</displayName>
  3149. <displayName count="other">Qatari rials</displayName>
  3150. </currency>
  3151. <currency type="RON">
  3152. <displayName>Romanian Leu</displayName>
  3153. <displayName count="one">Romanian leu</displayName>
  3154. <displayName count="other">Romanian lei</displayName>
  3155. </currency>
  3156. <currency type="RSD">
  3157. <displayName>Serbian Dinar</displayName>
  3158. <displayName count="one">Serbian dinar</displayName>
  3159. <displayName count="other">Serbian dinars</displayName>
  3160. </currency>
  3161. <currency type="RUB">
  3162. <displayName>Russian Ruble</displayName>
  3163. <displayName count="one">Russian ruble</displayName>
  3164. <displayName count="other">Russian rubles</displayName>
  3165. </currency>
  3166. <currency type="RWF">
  3167. <displayName>Rwandan Franc</displayName>
  3168. <displayName count="one">Rwandan franc</displayName>
  3169. <displayName count="other">Rwandan francs</displayName>
  3170. </currency>
  3171. <currency type="SAR">
  3172. <displayName>Saudi Riyal</displayName>
  3173. <displayName count="one">Saudi riyal</displayName>
  3174. <displayName count="other">Saudi riyals</displayName>
  3175. </currency>
  3176. <currency type="SBD">
  3177. <displayName>Solomon Islands Dollar</displayName>
  3178. <displayName count="one">Solomon Islands dollar</displayName>
  3179. <displayName count="other">Solomon Islands dollars</displayName>
  3180. </currency>
  3181. <currency type="SCR">
  3182. <displayName>Seychellois Rupee</displayName>
  3183. <displayName count="one">Seychellois rupee</displayName>
  3184. <displayName count="other">Seychellois rupees</displayName>
  3185. </currency>
  3186. <currency type="SDG">
  3187. <displayName>Sudanese Pound</displayName>
  3188. <displayName count="one">Sudanese pound</displayName>
  3189. <displayName count="other">Sudanese pounds</displayName>
  3190. </currency>
  3191. <currency type="SEK">
  3192. <displayName>Swedish Krona</displayName>
  3193. <displayName count="one">Swedish krona</displayName>
  3194. <displayName count="other">Swedish kronor</displayName>
  3195. </currency>
  3196. <currency type="SGD">
  3197. <displayName>Singapore Dollar</displayName>
  3198. <displayName count="one">Singapore dollar</displayName>
  3199. <displayName count="other">Singapore dollars</displayName>
  3200. </currency>
  3201. <currency type="SHP">
  3202. <displayName>Saint Helena Pound</displayName>
  3203. <displayName count="one">Saint Helena pound</displayName>
  3204. <displayName count="other">Saint Helena pounds</displayName>
  3205. </currency>
  3206. <currency type="SIT">
  3207. <displayName draft="contributed">Slovenian Tolar</displayName>
  3208. </currency>
  3209. <currency type="SKK">
  3210. <displayName draft="contributed">Slovak Koruna</displayName>
  3211. </currency>
  3212. <currency type="SLL">
  3213. <displayName>Sierra Leonean Leone</displayName>
  3214. <displayName count="one">Sierra Leonean leone</displayName>
  3215. <displayName count="other">Sierra Leonean leones</displayName>
  3216. </currency>
  3217. <currency type="SOS">
  3218. <displayName>Somali Shilling</displayName>
  3219. <displayName count="one">Somali shilling</displayName>
  3220. <displayName count="other">Somali shillings</displayName>
  3221. </currency>
  3222. <currency type="SRD">
  3223. <displayName>Surinamese Dollar</displayName>
  3224. <displayName count="one">Surinamese dollar</displayName>
  3225. <displayName count="other">Surinamese dollars</displayName>
  3226. </currency>
  3227. <currency type="SSP">
  3228. <displayName>South Sudanese Pound</displayName>
  3229. <displayName count="one">South Sudanese pound</displayName>
  3230. <displayName count="other">South Sudanese pounds</displayName>
  3231. </currency>
  3232. <currency type="STD">
  3233. <displayName>Sao Tome and Principe Dobra</displayName>
  3234. <displayName count="one">Sao Tome and Principe dobra</displayName>
  3235. <displayName count="other">Sao Tome and Principe dobras</displayName>
  3236. </currency>
  3237. <currency type="SYP">
  3238. <displayName>Syrian Pound</displayName>
  3239. <displayName count="one">Syrian pound</displayName>
  3240. <displayName count="other">Syrian pounds</displayName>
  3241. </currency>
  3242. <currency type="SZL">
  3243. <displayName>Swazi Lilangeni</displayName>
  3244. <displayName count="one">Swazi lilangeni</displayName>
  3245. <displayName count="other">Swazi emalangeni</displayName>
  3246. </currency>
  3247. <currency type="THB">
  3248. <displayName>Thai Baht</displayName>
  3249. <displayName count="one">Thai baht</displayName>
  3250. <displayName count="other">Thai baht</displayName>
  3251. <symbol>฿</symbol>
  3252. </currency>
  3253. <currency type="TJS">
  3254. <displayName>Tajikistani Somoni</displayName>
  3255. <displayName count="one">Tajikistani somoni</displayName>
  3256. <displayName count="other">Tajikistani somonis</displayName>
  3257. </currency>
  3258. <currency type="TMT">
  3259. <displayName>Turkmenistani Manat</displayName>
  3260. <displayName count="one">Turkmenistani manat</displayName>
  3261. <displayName count="other">Turkmenistani manat</displayName>
  3262. </currency>
  3263. <currency type="TND">
  3264. <displayName>Tunisian Dinar</displayName>
  3265. <displayName count="one">Tunisian dinar</displayName>
  3266. <displayName count="other">Tunisian dinars</displayName>
  3267. </currency>
  3268. <currency type="TOP">
  3269. <displayName>Tongan Paʻanga</displayName>
  3270. <displayName count="one">Tongan paʻanga</displayName>
  3271. <displayName count="other">Tongan paʻanga</displayName>
  3272. </currency>
  3273. <currency type="TRY">
  3274. <displayName>Turkish Lira</displayName>
  3275. <displayName count="one">Turkish lira</displayName>
  3276. <displayName count="other">Turkish Lira</displayName>
  3277. </currency>
  3278. <currency type="TTD">
  3279. <displayName>Trinidad and Tobago Dollar</displayName>
  3280. <displayName count="one">Trinidad and Tobago dollar</displayName>
  3281. <displayName count="other">Trinidad and Tobago dollars</displayName>
  3282. </currency>
  3283. <currency type="TWD">
  3284. <displayName>New Taiwan Dollar</displayName>
  3285. <displayName count="one">New Taiwan dollar</displayName>
  3286. <displayName count="other">New Taiwan dollars</displayName>
  3287. <symbol>NT$</symbol>
  3288. </currency>
  3289. <currency type="TZS">
  3290. <displayName>Tanzanian Shilling</displayName>
  3291. <displayName count="one">Tanzanian shilling</displayName>
  3292. <displayName count="other">Tanzanian shillings</displayName>
  3293. </currency>
  3294. <currency type="UAH">
  3295. <displayName>Ukrainian Hryvnia</displayName>
  3296. <displayName count="one">Ukrainian hryvnia</displayName>
  3297. <displayName count="other">Ukrainian hryvnias</displayName>
  3298. </currency>
  3299. <currency type="UGX">
  3300. <displayName>Ugandan Shilling</displayName>
  3301. <displayName count="one">Ugandan shilling</displayName>
  3302. <displayName count="other">Ugandan shillings</displayName>
  3303. </currency>
  3304. <currency type="USD">
  3305. <displayName>US Dollar</displayName>
  3306. <displayName count="one">US dollar</displayName>
  3307. <displayName count="other">US dollars</displayName>
  3308. <symbol>$</symbol>
  3309. </currency>
  3310. <currency type="UYU">
  3311. <displayName>Uruguayan Peso</displayName>
  3312. <displayName count="one">Uruguayan peso</displayName>
  3313. <displayName count="other">Uruguayan pesos</displayName>
  3314. </currency>
  3315. <currency type="UZS">
  3316. <displayName>Uzbekistan Som</displayName>
  3317. <displayName count="one">Uzbekistan som</displayName>
  3318. <displayName count="other">Uzbekistan som</displayName>
  3319. </currency>
  3320. <currency type="VEB">
  3321. <displayName>Venezuelan Bolívar (1871–2008)</displayName>
  3322. </currency>
  3323. <currency type="VEF">
  3324. <displayName>Venezuelan Bolívar</displayName>
  3325. <displayName count="one">Venezuelan bolívar</displayName>
  3326. <displayName count="other">Venezuelan bolívars</displayName>
  3327. </currency>
  3328. <currency type="VND">
  3329. <displayName>Vietnamese Dong</displayName>
  3330. <displayName count="one">Vietnamese dong</displayName>
  3331. <displayName count="other">Vietnamese dong</displayName>
  3332. <symbol>₫</symbol>
  3333. </currency>
  3334. <currency type="VUV">
  3335. <displayName>Vanuatu Vatu</displayName>
  3336. <displayName count="one">Vanuatu vatu</displayName>
  3337. <displayName count="other">Vanuatu vatus</displayName>
  3338. </currency>
  3339. <currency type="WST">
  3340. <displayName>Samoan Tala</displayName>
  3341. <displayName count="one">Samoan tala</displayName>
  3342. <displayName count="other">Samoan tala</displayName>
  3343. </currency>
  3344. <currency type="XAF">
  3345. <displayName>CFA Franc BEAC</displayName>
  3346. <displayName count="one">CFA franc BEAC</displayName>
  3347. <displayName count="other">CFA francs BEAC</displayName>
  3348. <symbol>FCFA</symbol>
  3349. </currency>
  3350. <currency type="XCD">
  3351. <displayName>East Caribbean Dollar</displayName>
  3352. <displayName count="one">East Caribbean dollar</displayName>
  3353. <displayName count="other">East Caribbean dollars</displayName>
  3354. <symbol>EC$</symbol>
  3355. </currency>
  3356. <currency type="XOF">
  3357. <displayName>CFA Franc BCEAO</displayName>
  3358. <displayName count="one">CFA franc BCEAO</displayName>
  3359. <displayName count="other">CFA francs BCEAO</displayName>
  3360. <symbol>CFA</symbol>
  3361. </currency>
  3362. <currency type="XPF">
  3363. <displayName>CFP Franc</displayName>
  3364. <displayName count="one">CFP franc</displayName>
  3365. <displayName count="other">CFP francs</displayName>
  3366. <symbol>CFPF</symbol>
  3367. </currency>
  3368. <currency type="XXX">
  3369. <displayName>Hindi Kilalang Pera</displayName>
  3370. <displayName count="one">(hindi kilalang uri ng pera)</displayName>
  3371. <displayName count="other">(hindi kilalang pera)</displayName>
  3372. </currency>
  3373. <currency type="YER">
  3374. <displayName>Yemeni Rial</displayName>
  3375. <displayName count="one">Yemeni rial</displayName>
  3376. <displayName count="other">Yemeni rials</displayName>
  3377. </currency>
  3378. <currency type="ZAR">
  3379. <displayName>South African Rand</displayName>
  3380. <displayName count="one">South African rand</displayName>
  3381. <displayName count="other">South African rand</displayName>
  3382. </currency>
  3383. <currency type="ZMK">
  3384. <displayName>Zambian Kwacha (1968–2012)</displayName>
  3385. </currency>
  3386. <currency type="ZMW">
  3387. <displayName>Zambian Kwacha</displayName>
  3388. <displayName count="one">Zambian kwacha</displayName>
  3389. <displayName count="other">Zambian kwachas</displayName>
  3390. </currency>
  3391. </currencies>
  3392. <miscPatterns numberSystem="latn">
  3393. <pattern type="atLeast">{0}+</pattern>
  3394. <pattern type="range">{0}-{1}</pattern>
  3395. </miscPatterns>
  3396. </numbers>
  3397. <units>
  3398. <unitLength type="long">
  3399. <compoundUnit type="per">
  3400. <compoundUnitPattern>{0} bawat {1}</compoundUnitPattern>
  3401. </compoundUnit>
  3402. <unit type="acceleration-g-force">
  3403. <unitPattern count="one">{0} g-force</unitPattern>
  3404. <unitPattern count="other">{0} g-force</unitPattern>
  3405. </unit>
  3406. <unit type="angle-arc-minute">
  3407. <unitPattern count="one">{0} minute</unitPattern>
  3408. <unitPattern count="other">{0} minutes</unitPattern>
  3409. </unit>
  3410. <unit type="angle-arc-second">
  3411. <unitPattern count="one">{0} second</unitPattern>
  3412. <unitPattern count="other">{0} seconds</unitPattern>
  3413. </unit>
  3414. <unit type="angle-degree">
  3415. <unitPattern count="one">{0} degree</unitPattern>
  3416. <unitPattern count="other">{0} degrees</unitPattern>
  3417. </unit>
  3418. <unit type="area-acre">
  3419. <unitPattern count="one">{0} acre</unitPattern>
  3420. <unitPattern count="other">{0} acres</unitPattern>
  3421. </unit>
  3422. <unit type="area-hectare">
  3423. <unitPattern count="one">{0} ektarya</unitPattern>
  3424. <unitPattern count="other">{0} ektarya</unitPattern>
  3425. </unit>
  3426. <unit type="area-square-foot">
  3427. <unitPattern count="one">{0} square foot</unitPattern>
  3428. <unitPattern count="other">{0} square feet</unitPattern>
  3429. </unit>
  3430. <unit type="area-square-kilometer">
  3431. <unitPattern count="one">{0} square kilometer</unitPattern>
  3432. <unitPattern count="other">{0} square kilometer</unitPattern>
  3433. </unit>
  3434. <unit type="area-square-meter">
  3435. <unitPattern count="one">{0} square meter</unitPattern>
  3436. <unitPattern count="other">{0} square meter</unitPattern>
  3437. </unit>
  3438. <unit type="area-square-mile">
  3439. <unitPattern count="one">{0} square mile</unitPattern>
  3440. <unitPattern count="other">{0} square miles</unitPattern>
  3441. </unit>
  3442. <unit type="duration-day">
  3443. <unitPattern count="one">{0} araw</unitPattern>
  3444. <unitPattern count="other">{0} araw</unitPattern>
  3445. </unit>
  3446. <unit type="duration-hour">
  3447. <unitPattern count="one">{0} oras</unitPattern>
  3448. <unitPattern count="other">{0} oras</unitPattern>
  3449. </unit>
  3450. <unit type="duration-millisecond">
  3451. <unitPattern count="one">{0} millisecond</unitPattern>
  3452. <unitPattern count="other">{0} millisecond</unitPattern>
  3453. </unit>
  3454. <unit type="duration-minute">
  3455. <unitPattern count="one">{0} minuto</unitPattern>
  3456. <unitPattern count="other">{0} minuto</unitPattern>
  3457. </unit>
  3458. <unit type="duration-month">
  3459. <unitPattern count="one">{0} buwan</unitPattern>
  3460. <unitPattern count="other">{0} buwan</unitPattern>
  3461. </unit>
  3462. <unit type="duration-second">
  3463. <unitPattern count="one">{0} segundo</unitPattern>
  3464. <unitPattern count="other">{0} segundo</unitPattern>
  3465. </unit>
  3466. <unit type="duration-week">
  3467. <unitPattern count="one">{0} linggo</unitPattern>
  3468. <unitPattern count="other">{0} linggo</unitPattern>
  3469. </unit>
  3470. <unit type="duration-year">
  3471. <unitPattern count="one">{0} taon</unitPattern>
  3472. <unitPattern count="other">{0} taon</unitPattern>
  3473. </unit>
  3474. <unit type="length-centimeter">
  3475. <unitPattern count="one">{0} sentimetro</unitPattern>
  3476. <unitPattern count="other">{0} sentimetro</unitPattern>
  3477. </unit>
  3478. <unit type="length-foot">
  3479. <unitPattern count="one">{0} talampakan</unitPattern>
  3480. <unitPattern count="other">{0} talampakan</unitPattern>
  3481. </unit>
  3482. <unit type="length-inch">
  3483. <unitPattern count="one">{0} pulgada</unitPattern>
  3484. <unitPattern count="other">{0} pulgada</unitPattern>
  3485. </unit>
  3486. <unit type="length-kilometer">
  3487. <unitPattern count="one">{0} kilometro</unitPattern>
  3488. <unitPattern count="other">{0} kilometro</unitPattern>
  3489. </unit>
  3490. <unit type="length-light-year">
  3491. <unitPattern count="one">{0} light year</unitPattern>
  3492. <unitPattern count="other">{0} light year</unitPattern>
  3493. </unit>
  3494. <unit type="length-meter">
  3495. <unitPattern count="one">{0} metro</unitPattern>
  3496. <unitPattern count="other">{0} metro</unitPattern>
  3497. </unit>
  3498. <unit type="length-mile">
  3499. <unitPattern count="one">{0} milya</unitPattern>
  3500. <unitPattern count="other">{0} milya</unitPattern>
  3501. </unit>
  3502. <unit type="length-millimeter">
  3503. <unitPattern count="one">{0} milimetro</unitPattern>
  3504. <unitPattern count="other">{0} milimetro</unitPattern>
  3505. </unit>
  3506. <unit type="length-picometer">
  3507. <unitPattern count="one">{0} picometer</unitPattern>
  3508. <unitPattern count="other">{0} picometer</unitPattern>
  3509. </unit>
  3510. <unit type="length-yard">
  3511. <unitPattern count="one">{0} yarda</unitPattern>
  3512. <unitPattern count="other">{0} yarda</unitPattern>
  3513. </unit>
  3514. <unit type="mass-gram">
  3515. <unitPattern count="one">{0} gramo</unitPattern>
  3516. <unitPattern count="other">{0} gramo</unitPattern>
  3517. </unit>
  3518. <unit type="mass-kilogram">
  3519. <unitPattern count="one">{0} kilo</unitPattern>
  3520. <unitPattern count="other">{0} kilo</unitPattern>
  3521. </unit>
  3522. <unit type="mass-ounce">
  3523. <unitPattern count="one">{0} ounce</unitPattern>
  3524. <unitPattern count="other">{0} ounce</unitPattern>
  3525. </unit>
  3526. <unit type="mass-pound">
  3527. <unitPattern count="one">{0} pound</unitPattern>
  3528. <unitPattern count="other">{0} pound</unitPattern>
  3529. </unit>
  3530. <unit type="power-horsepower">
  3531. <unitPattern count="one">{0} horsepower</unitPattern>
  3532. <unitPattern count="other">{0} horsepower</unitPattern>
  3533. </unit>
  3534. <unit type="power-kilowatt">
  3535. <unitPattern count="one">{0} kilowatt</unitPattern>
  3536. <unitPattern count="other">{0} kilowatts</unitPattern>
  3537. </unit>
  3538. <unit type="power-watt">
  3539. <unitPattern count="one">{0} watt</unitPattern>
  3540. <unitPattern count="other">{0} watts</unitPattern>
  3541. </unit>
  3542. <unit type="pressure-hectopascal">
  3543. <unitPattern count="one">{0} hectopascal</unitPattern>
  3544. <unitPattern count="other">{0} hectopascal</unitPattern>
  3545. </unit>
  3546. <unit type="pressure-inch-hg">
  3547. <unitPattern count="one">{0} inch of mercury</unitPattern>
  3548. <unitPattern count="other">{0} inch of mercury</unitPattern>
  3549. </unit>
  3550. <unit type="pressure-millibar">
  3551. <unitPattern count="one">{0} millibar</unitPattern>
  3552. <unitPattern count="other">{0} millibar</unitPattern>
  3553. </unit>
  3554. <unit type="speed-kilometer-per-hour">
  3555. <unitPattern count="one">{0} kilometer per hour</unitPattern>
  3556. <unitPattern count="other">{0} kilometers per hour</unitPattern>
  3557. </unit>
  3558. <unit type="speed-meter-per-second">
  3559. <unitPattern count="one">{0} meter per second</unitPattern>
  3560. <unitPattern count="other">{0} meters per second</unitPattern>
  3561. </unit>
  3562. <unit type="speed-mile-per-hour">
  3563. <unitPattern count="one">{0} mile per hour</unitPattern>
  3564. <unitPattern count="other">{0} miles per hour</unitPattern>
  3565. </unit>
  3566. <unit type="temperature-celsius">
  3567. <unitPattern count="one">{0} degree Celsius</unitPattern>
  3568. <unitPattern count="other">{0} degrees Celsius</unitPattern>
  3569. </unit>
  3570. <unit type="temperature-fahrenheit">
  3571. <unitPattern count="one">{0} degree Fahrenheit</unitPattern>
  3572. <unitPattern count="other">{0} degrees Fahrenheit</unitPattern>
  3573. </unit>
  3574. <unit type="volume-cubic-kilometer">
  3575. <unitPattern count="one">{0} cubic kilometer</unitPattern>
  3576. <unitPattern count="other">{0} cubic kilometers</unitPattern>
  3577. </unit>
  3578. <unit type="volume-cubic-mile">
  3579. <unitPattern count="one">{0} cubic mile</unitPattern>
  3580. <unitPattern count="other">{0} cubic miles</unitPattern>
  3581. </unit>
  3582. <unit type="volume-liter">
  3583. <unitPattern count="one">{0} litro</unitPattern>
  3584. <unitPattern count="other">{0} litro</unitPattern>
  3585. </unit>
  3586. </unitLength>
  3587. <unitLength type="short">
  3588. <compoundUnit type="per">
  3589. <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
  3590. </compoundUnit>
  3591. <unit type="acceleration-g-force">
  3592. <unitPattern count="one">{0} G</unitPattern>
  3593. <unitPattern count="other">{0} G</unitPattern>
  3594. </unit>
  3595. <unit type="angle-arc-minute">
  3596. <unitPattern count="one">{0} min</unitPattern>
  3597. <unitPattern count="other">{0} min</unitPattern>
  3598. </unit>
  3599. <unit type="angle-arc-second">
  3600. <unitPattern count="one">{0} sec</unitPattern>
  3601. <unitPattern count="other">{0} secs</unitPattern>
  3602. </unit>
  3603. <unit type="angle-degree">
  3604. <unitPattern count="one">{0} deg</unitPattern>
  3605. <unitPattern count="other">{0} deg</unitPattern>
  3606. </unit>
  3607. <unit type="area-acre">
  3608. <unitPattern count="one">{0} ac</unitPattern>
  3609. <unitPattern count="other">{0} ac</unitPattern>
  3610. </unit>
  3611. <unit type="area-hectare">
  3612. <unitPattern count="one">{0} ha</unitPattern>
  3613. <unitPattern count="other">{0} ha</unitPattern>
  3614. </unit>
  3615. <unit type="area-square-foot">
  3616. <unitPattern count="one">{0} sq ft</unitPattern>
  3617. <unitPattern count="other">{0} sq ft</unitPattern>
  3618. </unit>
  3619. <unit type="area-square-kilometer">
  3620. <unitPattern count="one">{0} km²</unitPattern>
  3621. <unitPattern count="other">{0} km²</unitPattern>
  3622. </unit>
  3623. <unit type="area-square-meter">
  3624. <unitPattern count="one">{0} m²</unitPattern>
  3625. <unitPattern count="other">{0} m²</unitPattern>
  3626. </unit>
  3627. <unit type="area-square-mile">
  3628. <unitPattern count="one">{0} sq mi</unitPattern>
  3629. <unitPattern count="other">{0} sq mi</unitPattern>
  3630. </unit>
  3631. <unit type="duration-day">
  3632. <unitPattern count="one">{0} araw</unitPattern>
  3633. <unitPattern count="other">{0} araw</unitPattern>
  3634. </unit>
  3635. <unit type="duration-hour">
  3636. <unitPattern count="one">{0} hr</unitPattern>
  3637. <unitPattern count="other">{0} hrs</unitPattern>
  3638. </unit>
  3639. <unit type="duration-millisecond">
  3640. <unitPattern count="one">{0} ms</unitPattern>
  3641. <unitPattern count="other">{0} ms</unitPattern>
  3642. </unit>
  3643. <unit type="duration-minute">
  3644. <unitPattern count="one">{0} min</unitPattern>
  3645. <unitPattern count="other">{0} mins</unitPattern>
  3646. </unit>
  3647. <unit type="duration-month">
  3648. <unitPattern count="one">{0} mth</unitPattern>
  3649. <unitPattern count="other">{0} mths</unitPattern>
  3650. </unit>
  3651. <unit type="duration-second">
  3652. <unitPattern count="one">{0} sec</unitPattern>
  3653. <unitPattern count="other">{0} secs</unitPattern>
  3654. </unit>
  3655. <unit type="duration-week">
  3656. <unitPattern count="one">{0} wk</unitPattern>
  3657. <unitPattern count="other">{0} wks</unitPattern>
  3658. </unit>
  3659. <unit type="duration-year">
  3660. <unitPattern count="one">{0} yr</unitPattern>
  3661. <unitPattern count="other">{0} yrs</unitPattern>
  3662. </unit>
  3663. <unit type="length-centimeter">
  3664. <unitPattern count="one">{0} cm</unitPattern>
  3665. <unitPattern count="other">{0} cm</unitPattern>
  3666. </unit>
  3667. <unit type="length-foot">
  3668. <unitPattern count="one">{0} ft</unitPattern>
  3669. <unitPattern count="other">{0} ft</unitPattern>
  3670. </unit>
  3671. <unit type="length-inch">
  3672. <unitPattern count="one">{0} in</unitPattern>
  3673. <unitPattern count="other">{0} in</unitPattern>
  3674. </unit>
  3675. <unit type="length-kilometer">
  3676. <unitPattern count="one">{0} km</unitPattern>
  3677. <unitPattern count="other">{0} km</unitPattern>
  3678. </unit>
  3679. <unit type="length-light-year">
  3680. <unitPattern count="one">{0} ly</unitPattern>
  3681. <unitPattern count="other">{0} ly</unitPattern>
  3682. </unit>
  3683. <unit type="length-meter">
  3684. <unitPattern count="one">{0} m</unitPattern>
  3685. <unitPattern count="other">{0} m</unitPattern>
  3686. </unit>
  3687. <unit type="length-mile">
  3688. <unitPattern count="one">{0} mi</unitPattern>
  3689. <unitPattern count="other">{0} mi</unitPattern>
  3690. </unit>
  3691. <unit type="length-millimeter">
  3692. <unitPattern count="one">{0} mm</unitPattern>
  3693. <unitPattern count="other">{0} mm</unitPattern>
  3694. </unit>
  3695. <unit type="length-picometer">
  3696. <unitPattern count="one">{0} pm</unitPattern>
  3697. <unitPattern count="other">{0} pm</unitPattern>
  3698. </unit>
  3699. <unit type="length-yard">
  3700. <unitPattern count="one">{0} yd</unitPattern>
  3701. <unitPattern count="other">{0} yd</unitPattern>
  3702. </unit>
  3703. <unit type="mass-gram">
  3704. <unitPattern count="one">{0} g</unitPattern>
  3705. <unitPattern count="other">{0} g</unitPattern>
  3706. </unit>
  3707. <unit type="mass-kilogram">
  3708. <unitPattern count="one">{0} kg</unitPattern>
  3709. <unitPattern count="other">{0} kg</unitPattern>
  3710. </unit>
  3711. <unit type="mass-ounce">
  3712. <unitPattern count="one">{0} oz</unitPattern>
  3713. <unitPattern count="other">{0} oz</unitPattern>
  3714. </unit>
  3715. <unit type="mass-pound">
  3716. <unitPattern count="one">{0} lb</unitPattern>
  3717. <unitPattern count="other">{0} lb</unitPattern>
  3718. </unit>
  3719. <unit type="power-horsepower">
  3720. <unitPattern count="one">{0} hp</unitPattern>
  3721. <unitPattern count="other">{0} hp</unitPattern>
  3722. </unit>
  3723. <unit type="power-kilowatt">
  3724. <unitPattern count="one">{0} kW</unitPattern>
  3725. <unitPattern count="other">{0} kW</unitPattern>
  3726. </unit>
  3727. <unit type="power-watt">
  3728. <unitPattern count="one">{0} W</unitPattern>
  3729. <unitPattern count="other">{0} W</unitPattern>
  3730. </unit>
  3731. <unit type="pressure-hectopascal">
  3732. <unitPattern count="one">{0} hPa</unitPattern>
  3733. <unitPattern count="other">{0} hPa</unitPattern>
  3734. </unit>
  3735. <unit type="pressure-inch-hg">
  3736. <unitPattern count="one">{0} inHg</unitPattern>
  3737. <unitPattern count="other">{0} inHg</unitPattern>
  3738. </unit>
  3739. <unit type="pressure-millibar">
  3740. <unitPattern count="one">{0} mb</unitPattern>
  3741. <unitPattern count="other">{0} mb</unitPattern>
  3742. </unit>
  3743. <unit type="speed-kilometer-per-hour">
  3744. <unitPattern count="one">{0} kph</unitPattern>
  3745. <unitPattern count="other">{0} kph</unitPattern>
  3746. </unit>
  3747. <unit type="speed-meter-per-second">
  3748. <unitPattern count="one">{0} m/s</unitPattern>
  3749. <unitPattern count="other">{0} m/s</unitPattern>
  3750. </unit>
  3751. <unit type="speed-mile-per-hour">
  3752. <unitPattern count="one">{0} mph</unitPattern>
  3753. <unitPattern count="other">{0} mph</unitPattern>
  3754. </unit>
  3755. <unit type="temperature-celsius">
  3756. <unitPattern count="one">{0}°C</unitPattern>
  3757. <unitPattern count="other">{0}°C</unitPattern>
  3758. </unit>
  3759. <unit type="temperature-fahrenheit">
  3760. <unitPattern count="one">{0}°F</unitPattern>
  3761. <unitPattern count="other">{0}°F</unitPattern>
  3762. </unit>
  3763. <unit type="volume-cubic-kilometer">
  3764. <unitPattern count="one">{0} km³</unitPattern>
  3765. <unitPattern count="other">{0} km³</unitPattern>
  3766. </unit>
  3767. <unit type="volume-cubic-mile">
  3768. <unitPattern count="one">{0} mi³</unitPattern>
  3769. <unitPattern count="other">{0} mi³</unitPattern>
  3770. </unit>
  3771. <unit type="volume-liter">
  3772. <unitPattern count="one">{0} l</unitPattern>
  3773. <unitPattern count="other">{0} l</unitPattern>
  3774. </unit>
  3775. </unitLength>
  3776. <unitLength type="narrow">
  3777. <compoundUnit type="per">
  3778. <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
  3779. </compoundUnit>
  3780. <unit type="acceleration-g-force">
  3781. <unitPattern count="one">{0}G</unitPattern>
  3782. <unitPattern count="other">{0}G</unitPattern>
  3783. </unit>
  3784. <unit type="angle-arc-minute">
  3785. <unitPattern count="one">{0}′</unitPattern>
  3786. <unitPattern count="other">{0}′</unitPattern>
  3787. </unit>
  3788. <unit type="angle-arc-second">
  3789. <unitPattern count="one">{0}″</unitPattern>
  3790. <unitPattern count="other">{0}″</unitPattern>
  3791. </unit>
  3792. <unit type="angle-degree">
  3793. <unitPattern count="one">{0}°</unitPattern>
  3794. <unitPattern count="other">{0}°</unitPattern>
  3795. </unit>
  3796. <unit type="area-acre">
  3797. <unitPattern count="one">{0}ac</unitPattern>
  3798. <unitPattern count="other">{0}ac</unitPattern>
  3799. </unit>
  3800. <unit type="area-hectare">
  3801. <unitPattern count="one">{0}ha</unitPattern>
  3802. <unitPattern count="other">{0}ha</unitPattern>
  3803. </unit>
  3804. <unit type="area-square-foot">
  3805. <unitPattern count="one">{0}ft²</unitPattern>
  3806. <unitPattern count="other">{0}ft²</unitPattern>
  3807. </unit>
  3808. <unit type="area-square-kilometer">
  3809. <unitPattern count="one">{0}km²</unitPattern>
  3810. <unitPattern count="other">{0}km²</unitPattern>
  3811. </unit>
  3812. <unit type="area-square-meter">
  3813. <unitPattern count="one">{0} m²</unitPattern>
  3814. <unitPattern count="other">{0} m²</unitPattern>
  3815. </unit>
  3816. <unit type="area-square-mile">
  3817. <unitPattern count="one">{0}mi²</unitPattern>
  3818. <unitPattern count="other">{0}mi²</unitPattern>
  3819. </unit>
  3820. <unit type="duration-day">
  3821. <unitPattern count="one">{0}d</unitPattern>
  3822. <unitPattern count="other">{0}d</unitPattern>
  3823. </unit>
  3824. <unit type="duration-hour">
  3825. <unitPattern count="one">{0}h</unitPattern>
  3826. <unitPattern count="other">{0}h</unitPattern>
  3827. </unit>
  3828. <unit type="duration-millisecond">
  3829. <unitPattern count="one">{0}ms</unitPattern>
  3830. <unitPattern count="other">{0}ms</unitPattern>
  3831. </unit>
  3832. <unit type="duration-minute">
  3833. <unitPattern count="one">{0}m</unitPattern>
  3834. <unitPattern count="other">{0}m</unitPattern>
  3835. </unit>
  3836. <unit type="duration-month">
  3837. <unitPattern count="one">{0}m</unitPattern>
  3838. <unitPattern count="other">{0}m</unitPattern>
  3839. </unit>
  3840. <unit type="duration-second">
  3841. <unitPattern count="one">{0}s</unitPattern>
  3842. <unitPattern count="other">{0}s</unitPattern>
  3843. </unit>
  3844. <unit type="duration-week">
  3845. <unitPattern count="one">{0}w</unitPattern>
  3846. <unitPattern count="other">{0}w</unitPattern>
  3847. </unit>
  3848. <unit type="duration-year">
  3849. <unitPattern count="one">{0}y</unitPattern>
  3850. <unitPattern count="other">{0}y</unitPattern>
  3851. </unit>
  3852. <unit type="length-centimeter">
  3853. <unitPattern count="one">{0}cm</unitPattern>
  3854. <unitPattern count="other">{0}cm</unitPattern>
  3855. </unit>
  3856. <unit type="length-foot">
  3857. <unitPattern count="one">{0}′</unitPattern>
  3858. <unitPattern count="other">{0}′</unitPattern>
  3859. </unit>
  3860. <unit type="length-inch">
  3861. <unitPattern count="one">{0}″</unitPattern>
  3862. <unitPattern count="other">{0}″</unitPattern>
  3863. </unit>
  3864. <unit type="length-kilometer">
  3865. <unitPattern count="one">{0}km</unitPattern>
  3866. <unitPattern count="other">{0}km</unitPattern>
  3867. </unit>
  3868. <unit type="length-light-year">
  3869. <unitPattern count="one">{0}ly</unitPattern>
  3870. <unitPattern count="other">{0}ly</unitPattern>
  3871. </unit>
  3872. <unit type="length-meter">
  3873. <unitPattern count="one">{0}m</unitPattern>
  3874. <unitPattern count="other">{0}m</unitPattern>
  3875. </unit>
  3876. <unit type="length-mile">
  3877. <unitPattern count="one">{0}mi</unitPattern>
  3878. <unitPattern count="other">{0}mi</unitPattern>
  3879. </unit>
  3880. <unit type="length-millimeter">
  3881. <unitPattern count="one">{0}mm</unitPattern>
  3882. <unitPattern count="other">{0}mm</unitPattern>
  3883. </unit>
  3884. <unit type="length-picometer">
  3885. <unitPattern count="one">{0}pm</unitPattern>
  3886. <unitPattern count="other">{0}pm</unitPattern>
  3887. </unit>
  3888. <unit type="length-yard">
  3889. <unitPattern count="one">{0}yd</unitPattern>
  3890. <unitPattern count="other">{0}yd</unitPattern>
  3891. </unit>
  3892. <unit type="mass-gram">
  3893. <unitPattern count="one">{0}g</unitPattern>
  3894. <unitPattern count="other">{0}g</unitPattern>
  3895. </unit>
  3896. <unit type="mass-kilogram">
  3897. <unitPattern count="one">{0}kg</unitPattern>
  3898. <unitPattern count="other">{0}kg</unitPattern>
  3899. </unit>
  3900. <unit type="mass-ounce">
  3901. <unitPattern count="one">{0}oz</unitPattern>
  3902. <unitPattern count="other">{0}oz</unitPattern>
  3903. </unit>
  3904. <unit type="mass-pound">
  3905. <unitPattern count="one">{0}#</unitPattern>
  3906. <unitPattern count="other">{0}#</unitPattern>
  3907. </unit>
  3908. <unit type="power-horsepower">
  3909. <unitPattern count="one">{0}hp</unitPattern>
  3910. <unitPattern count="other">{0}hp</unitPattern>
  3911. </unit>
  3912. <unit type="power-kilowatt">
  3913. <unitPattern count="one">{0}kW</unitPattern>
  3914. <unitPattern count="other">{0}kW</unitPattern>
  3915. </unit>
  3916. <unit type="power-watt">
  3917. <unitPattern count="one">{0}W</unitPattern>
  3918. <unitPattern count="other">{0}W</unitPattern>
  3919. </unit>
  3920. <unit type="pressure-hectopascal">
  3921. <unitPattern count="one">{0}hPa</unitPattern>
  3922. <unitPattern count="other">{0}hPa</unitPattern>
  3923. </unit>
  3924. <unit type="pressure-inch-hg">
  3925. <unitPattern count="one">{0}&quot; Hg</unitPattern>
  3926. <unitPattern count="other">{0}&quot; Hg</unitPattern>
  3927. </unit>
  3928. <unit type="pressure-millibar">
  3929. <unitPattern count="one">{0}mb</unitPattern>
  3930. <unitPattern count="other">{0}mb</unitPattern>
  3931. </unit>
  3932. <unit type="speed-kilometer-per-hour">
  3933. <unitPattern count="one">{0}kph</unitPattern>
  3934. <unitPattern count="other">{0}kph</unitPattern>
  3935. </unit>
  3936. <unit type="speed-meter-per-second">
  3937. <unitPattern count="one">{0}m/s</unitPattern>
  3938. <unitPattern count="other">{0}m/s</unitPattern>
  3939. </unit>
  3940. <unit type="speed-mile-per-hour">
  3941. <unitPattern count="one">{0}mph</unitPattern>
  3942. <unitPattern count="other">{0}mph</unitPattern>
  3943. </unit>
  3944. <unit type="temperature-celsius">
  3945. <unitPattern count="one">{0}°</unitPattern>
  3946. <unitPattern count="other">{0}°</unitPattern>
  3947. </unit>
  3948. <unit type="temperature-fahrenheit">
  3949. <unitPattern count="one">{0}°F</unitPattern>
  3950. <unitPattern count="other">{0}°F</unitPattern>
  3951. </unit>
  3952. <unit type="volume-cubic-kilometer">
  3953. <unitPattern count="one">{0}km³</unitPattern>
  3954. <unitPattern count="other">{0}km³</unitPattern>
  3955. </unit>
  3956. <unit type="volume-cubic-mile">
  3957. <unitPattern count="one">{0}mi³</unitPattern>
  3958. <unitPattern count="other">{0}mi³</unitPattern>
  3959. </unit>
  3960. <unit type="volume-liter">
  3961. <unitPattern count="one">{0}l</unitPattern>
  3962. <unitPattern count="other">{0}l</unitPattern>
  3963. </unit>
  3964. </unitLength>
  3965. <durationUnit type="hm">
  3966. <durationUnitPattern>h:mm</durationUnitPattern>
  3967. </durationUnit>
  3968. <durationUnit type="hms">
  3969. <durationUnitPattern>h:mm:ss</durationUnitPattern>
  3970. </durationUnit>
  3971. <durationUnit type="ms">
  3972. <durationUnitPattern>m:ss</durationUnitPattern>
  3973. </durationUnit>
  3974. </units>
  3975. <listPatterns>
  3976. <listPattern>
  3977. <listPatternPart type="start">{0}, {1}</listPatternPart>
  3978. <listPatternPart type="middle">{0}, {1}</listPatternPart>
  3979. <listPatternPart type="end">{0}, and {1}</listPatternPart>
  3980. <listPatternPart type="2">{0} at {1}</listPatternPart>
  3981. </listPattern>
  3982. <listPattern type="unit">
  3983. <listPatternPart type="start">{0}, {1}</listPatternPart>
  3984. <listPatternPart type="middle">{0}, {1}</listPatternPart>
  3985. <listPatternPart type="end">{0}, and {1}</listPatternPart>
  3986. <listPatternPart type="2">{0} at {1}</listPatternPart>
  3987. </listPattern>
  3988. <listPattern type="unit-short">
  3989. <listPatternPart type="start">{0}, {1}</listPatternPart>
  3990. <listPatternPart type="middle">{0}, {1}</listPatternPart>
  3991. <listPatternPart type="end">{0}, {1}</listPatternPart>
  3992. <listPatternPart type="2">{0}, {1}</listPatternPart>
  3993. </listPattern>
  3994. </listPatterns>
  3995. <posix>
  3996. <messages>
  3997. <yesstr>oo:o</yesstr>
  3998. <nostr>hindi:h</nostr>
  3999. </messages>
  4000. </posix>
  4001. </ldml>