ur.xml 183 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857
  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: 9852 $"/>
  10. <generation date="$Date: 2014-02-28 23:57:43 -0600 (Fri, 28 Feb 2014) $"/>
  11. <language type="ur"/>
  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">ابقازیان</language>
  21. <language type="ach">اکولی</language>
  22. <language type="af">ایفریکانز</language>
  23. <language type="ak">اکان</language>
  24. <language type="am">امہاری</language>
  25. <language type="ar">عربی</language>
  26. <language type="ar_001">ماڈرن اسٹینڈرڈ عربی</language>
  27. <language type="as">آسامی</language>
  28. <language type="ay">ایمارا</language>
  29. <language type="az">آزربائیجانی</language>
  30. <language type="az" alt="short">ازیری</language>
  31. <language type="be">بیلاروسی</language>
  32. <language type="bem">بیمبا</language>
  33. <language type="bg">بلغاری</language>
  34. <language type="bn">بنگالی</language>
  35. <language type="bo">تبتی</language>
  36. <language type="br">بریٹن</language>
  37. <language type="bs">بوسنی</language>
  38. <language type="ca">کاٹالانین</language>
  39. <language type="chr">چیروکی</language>
  40. <language type="ckb">سورانی کردش</language>
  41. <language type="co">کوراسیکن</language>
  42. <language type="cs">چیک</language>
  43. <language type="cy">ویلش</language>
  44. <language type="da">ڈینش</language>
  45. <language type="de">جرمن</language>
  46. <language type="de_AT">آسٹریائی جرمن</language>
  47. <language type="de_CH">سوئس ہائی جرمن</language>
  48. <language type="dv">ڈیویہی</language>
  49. <language type="dz">ژونگکھا</language>
  50. <language type="ee">ایو</language>
  51. <language type="efi">ایفِک</language>
  52. <language type="el">یونانی</language>
  53. <language type="en">انگریزی</language>
  54. <language type="en_AU">آسٹریلیائی انگریزی</language>
  55. <language type="en_CA">کینیڈین انگریزی</language>
  56. <language type="en_GB">برطانوی انگریزی</language>
  57. <language type="en_GB" alt="short">برطانوی انگلش</language>
  58. <language type="en_US">امریکی انگریزی</language>
  59. <language type="en_US" alt="short">امریکی انگلش</language>
  60. <language type="eo">ایسپرانٹو</language>
  61. <language type="es">ہسپانوی</language>
  62. <language type="es_419">لاطینی امریکی ہسپانوی</language>
  63. <language type="es_ES">یورپی ہسپانوی</language>
  64. <language type="es_MX">میکسیکن ہسپانوی</language>
  65. <language type="et">اسٹونین</language>
  66. <language type="eu">باسکی</language>
  67. <language type="fa">فارسی</language>
  68. <language type="fi">فینیش</language>
  69. <language type="fil">فلیپینو</language>
  70. <language type="fj">فجی کا باشندہ</language>
  71. <language type="fo">فیروئیز</language>
  72. <language type="fr">فرانسیسی</language>
  73. <language type="fr_CA">کینیڈین فرانسیسی</language>
  74. <language type="fr_CH">سوئس فرینچ</language>
  75. <language type="fy">مغربی فریسیئن</language>
  76. <language type="ga">آئیرِش</language>
  77. <language type="gaa">گا</language>
  78. <language type="gd" draft="contributed">سکاٹ گیلِک</language>
  79. <language type="gl">گالیشیائی</language>
  80. <language type="gn">گُارانی</language>
  81. <language type="gsw">سوئس جرمن</language>
  82. <language type="gu">گجراتی</language>
  83. <language type="ha">ہؤسا</language>
  84. <language type="haw">ہوائی کا باشندہ</language>
  85. <language type="he">عبرانی</language>
  86. <language type="hi">ہندی</language>
  87. <language type="hr">کراتی</language>
  88. <language type="ht">ہیتی</language>
  89. <language type="hu">ہنگیرین</language>
  90. <language type="hy">ارمینی</language>
  91. <language type="ia">بین لسانیات</language>
  92. <language type="id">انڈونیثیائی</language>
  93. <language type="ig">اِگبو</language>
  94. <language type="is">آئس لینڈ کا باشندہ</language>
  95. <language type="it">اطالوی</language>
  96. <language type="ja">جاپانی</language>
  97. <language type="jv">جاوی</language>
  98. <language type="ka">جارجی</language>
  99. <language type="kg">کانگو</language>
  100. <language type="kk">قزاخ</language>
  101. <language type="km">خمیر</language>
  102. <language type="kn">کنّاڈا</language>
  103. <language type="ko">کورین</language>
  104. <language type="ks">کشمیری</language>
  105. <language type="ku">کردش</language>
  106. <language type="ky">کرغیزی</language>
  107. <language type="la">لاطینی</language>
  108. <language type="lb">لگژمبرگ کا باشندہ</language>
  109. <language type="lg">گینڈا</language>
  110. <language type="ln" draft="contributed">لِنگَلا</language>
  111. <language type="lo">لاؤ</language>
  112. <language type="loz">لوزی</language>
  113. <language type="lt">لتھُواینین</language>
  114. <language type="lua">لیوبا لولوآ</language>
  115. <language type="lv">لیٹوین</language>
  116. <language type="mfe">موریسیین</language>
  117. <language type="mg">ملاگاسی</language>
  118. <language type="mi">ماؤری</language>
  119. <language type="mk">مقدونیائی</language>
  120. <language type="ml">مالایالم</language>
  121. <language type="mn" draft="contributed">منگؤلی</language>
  122. <language type="mr">مراٹهی</language>
  123. <language type="ms">مالائی</language>
  124. <language type="mt">مالٹی</language>
  125. <language type="my">برمی</language>
  126. <language type="nb">نارویجین بوکمل</language>
  127. <language type="nd">شمالی دبیل</language>
  128. <language type="ne">نیپالی</language>
  129. <language type="nl">ڈچ</language>
  130. <language type="nl_BE">فلیمِش</language>
  131. <language type="nn">نورویجینی نینورسک</language>
  132. <language type="no" draft="contributed">نارویجین</language>
  133. <language type="nso">شمالی سوتھو</language>
  134. <language type="ny">نیانجا</language>
  135. <language type="nyn">نینکول</language>
  136. <language type="oc">آکسیٹان</language>
  137. <language type="om">اورومو</language>
  138. <language type="or">اورِیا</language>
  139. <language type="os">اوسیٹک</language>
  140. <language type="pa">پنجابی</language>
  141. <language type="pl">پولستانی</language>
  142. <language type="ps">پشتو</language>
  143. <language type="pt">پُرتگالی</language>
  144. <language type="pt_BR">برازیلی پرتگالی</language>
  145. <language type="pt_PT">یورپی پرتگالی</language>
  146. <language type="qu">کویچوآ</language>
  147. <language type="rm">رومانش</language>
  148. <language type="rn">رونڈی</language>
  149. <language type="ro">رومنی</language>
  150. <language type="ru">روسی</language>
  151. <language type="rw">کینیاروانڈا</language>
  152. <language type="sa">سَنسکرِت</language>
  153. <language type="sd">سندھی</language>
  154. <language type="se">شمالی سامی</language>
  155. <language type="sg">سانگو</language>
  156. <language type="sh" draft="contributed">سربو-کروئیشین</language>
  157. <language type="si">سنہالا</language>
  158. <language type="sk">سلوواک</language>
  159. <language type="sl">سلووینیائی</language>
  160. <language type="sm">ساموآن</language>
  161. <language type="sn">شونا</language>
  162. <language type="so">صومالی</language>
  163. <language type="sq">البانی</language>
  164. <language type="sr">صربی</language>
  165. <language type="ss">سواتی</language>
  166. <language type="st">جنوبی سوتھو</language>
  167. <language type="su">سنڈانیز</language>
  168. <language type="sv">سویڈش</language>
  169. <language type="sw">سواحلی</language>
  170. <language type="ta">تمل</language>
  171. <language type="te">تیلگو</language>
  172. <language type="tet">ٹیٹم</language>
  173. <language type="tg">تاجک</language>
  174. <language type="th">تھائی</language>
  175. <language type="ti">ٹگرینیا</language>
  176. <language type="tk">ترکمان</language>
  177. <language type="tl" draft="unconfirmed">ٹیگا لوگ</language>
  178. <language type="tlh">کلنگن</language>
  179. <language type="tn">سوانا</language>
  180. <language type="to">ٹونگن</language>
  181. <language type="tpi">ٹوک پِسِن</language>
  182. <language type="tr">ترکی</language>
  183. <language type="ts">زونگا</language>
  184. <language type="tt">تاتار</language>
  185. <language type="tum">ٹمبوکا</language>
  186. <language type="tw" draft="unconfirmed">توی</language>
  187. <language type="ty">تاہیتی</language>
  188. <language type="ug">یوئگہر</language>
  189. <language type="uk">یوکرینیائی</language>
  190. <language type="und">نامعلوم زبان</language>
  191. <language type="ur">اردو</language>
  192. <language type="uz">ازبیک</language>
  193. <language type="ve">وینڈا</language>
  194. <language type="vi">ویتنامی</language>
  195. <language type="wo">وولوف</language>
  196. <language type="xh">ژوسا</language>
  197. <language type="yi">یدش</language>
  198. <language type="yo">یوروبا</language>
  199. <language type="zgh">اسٹینڈرڈ مغربی امازیقی</language>
  200. <language type="zh">چینی</language>
  201. <language type="zh_Hans">چینی (آسان کردہ)</language>
  202. <language type="zh_Hant">روایتی چینی</language>
  203. <language type="zu">زولو</language>
  204. <language type="zxx">کوئی لسانی مواد نہیں</language>
  205. </languages>
  206. <scripts>
  207. <script type="Arab">عربی</script>
  208. <script type="Arab" alt="variant">فارسی عربی</script>
  209. <script type="Armn">آرمینیائی</script>
  210. <script type="Beng">بنگالی</script>
  211. <script type="Bopo">بوپوموفو</script>
  212. <script type="Brai">بریل</script>
  213. <script type="Cyrl">کریلِک</script>
  214. <script type="Deva">دیوناگری</script>
  215. <script type="Ethi">ایتھوپیا کا باشندہ</script>
  216. <script type="Geor">جارجیا کا باشندہ</script>
  217. <script type="Grek">یونانی</script>
  218. <script type="Gujr">گجراتی</script>
  219. <script type="Guru">گرمکھی</script>
  220. <script type="Hang">ہنگول</script>
  221. <script type="Hani">ہان</script>
  222. <script type="Hans">آسان</script>
  223. <script type="Hans" alt="stand-alone">آسان ہان</script>
  224. <script type="Hant">روایتی</script>
  225. <script type="Hant" alt="stand-alone">روایتی ہان</script>
  226. <script type="Hebr">عبرانی</script>
  227. <script type="Hira">ہیراگینا</script>
  228. <script type="Jpan">جاپانی</script>
  229. <script type="Kana">کٹاکانا</script>
  230. <script type="Khmr">خمیر</script>
  231. <script type="Knda">کنڑ</script>
  232. <script type="Kore">کوریائی</script>
  233. <script type="Laoo">لاؤ</script>
  234. <script type="Latn">لاطینی</script>
  235. <script type="Mlym">ملیالم</script>
  236. <script type="Mong">منگولیائی</script>
  237. <script type="Mymr">میانمار</script>
  238. <script type="Orya">اڑیہ</script>
  239. <script type="Sinh">سنہالا</script>
  240. <script type="Taml">تمل</script>
  241. <script type="Telu">تیلگو</script>
  242. <script type="Thaa">تھانا</script>
  243. <script type="Thai">تھائی</script>
  244. <script type="Tibt">تبتی</script>
  245. <script type="Zsym">علامات</script>
  246. <script type="Zxxx">غیر تحریر شدہ</script>
  247. <script type="Zyyy">عام</script>
  248. <script type="Zzzz">نامعلوم رسم الخط</script>
  249. </scripts>
  250. <territories>
  251. <territory type="001">دنیا</territory>
  252. <territory type="002">افریقہ</territory>
  253. <territory type="003">شمالی امریکہ</territory>
  254. <territory type="005">جنوبی امریکہ</territory>
  255. <territory type="009">اوشیانیا</territory>
  256. <territory type="011">مغربی افریقہ</territory>
  257. <territory type="013">وسطی امریکہ</territory>
  258. <territory type="014">مشرقی افریقہ</territory>
  259. <territory type="015">شمالی افریقہ</territory>
  260. <territory type="017">وسطی افریقہ</territory>
  261. <territory type="018">جنوبی افریقہ کے علاقہ</territory>
  262. <territory type="019">امیریکاز</territory>
  263. <territory type="021">شمالی امریکہ کا علاقہ</territory>
  264. <territory type="029">کریبیائی</territory>
  265. <territory type="030">مشرقی ایشیا</territory>
  266. <territory type="034">جنوبی ایشیا</territory>
  267. <territory type="035">جنوب مشرقی ایشیا</territory>
  268. <territory type="039">جنوبی یورپ</territory>
  269. <territory type="053">آسٹریلیشیا</territory>
  270. <territory type="054">مالینیشیا</territory>
  271. <territory type="057">مائکرونیشیائی علاقہ</territory>
  272. <territory type="061">پولینیشیا</territory>
  273. <territory type="142">ایشیا</territory>
  274. <territory type="143">وسطی ایشیا</territory>
  275. <territory type="145">مغربی ایشیا</territory>
  276. <territory type="150">یوروپ</territory>
  277. <territory type="151">مشرقی یورپ</territory>
  278. <territory type="154">شمالی یورپ</territory>
  279. <territory type="155">مغربی یورپ</territory>
  280. <territory type="419">لاطینی امریکہ</territory>
  281. <territory type="AC">اسکینسیئن آئلینڈ</territory>
  282. <territory type="AD">انڈورا</territory>
  283. <territory type="AE">متحدہ عرب امارات</territory>
  284. <territory type="AF">افغانستان</territory>
  285. <territory type="AG">انٹیگوا اور باربودا</territory>
  286. <territory type="AI">انگوئیلا</territory>
  287. <territory type="AL">البانیہ</territory>
  288. <territory type="AM">آرمینیا</territory>
  289. <territory type="AN">نیدرلینڈز انٹیلیز</territory>
  290. <territory type="AO">انگولا</territory>
  291. <territory type="AQ">انٹارکٹیکا</territory>
  292. <territory type="AR">ارجنٹینا</territory>
  293. <territory type="AS">امریکی ساموآ</territory>
  294. <territory type="AT">آسٹریا</territory>
  295. <territory type="AU">آسٹریلیا</territory>
  296. <territory type="AW">اروبا</territory>
  297. <territory type="AX">آلینڈ آئلینڈز</territory>
  298. <territory type="AZ">آذربائجان</territory>
  299. <territory type="BA">بوسنیا اور ہرزیگووینا</territory>
  300. <territory type="BB">باربادوس</territory>
  301. <territory type="BD">بنگلہ دیش</territory>
  302. <territory type="BE">بیلجیم</territory>
  303. <territory type="BF">برکینا فاسو</territory>
  304. <territory type="BG">بلغاریہ</territory>
  305. <territory type="BH">بحرین</territory>
  306. <territory type="BI">برونڈی</territory>
  307. <territory type="BJ">بینن</territory>
  308. <territory type="BL">سینٹ برتھلیمی</territory>
  309. <territory type="BM">برمودا</territory>
  310. <territory type="BN">برونئی</territory>
  311. <territory type="BO">بولیویا</territory>
  312. <territory type="BQ">کریبیائی نیدرلینڈز</territory>
  313. <territory type="BR">برازیلی</territory>
  314. <territory type="BS">بہاماس</territory>
  315. <territory type="BT">بھوٹان</territory>
  316. <territory type="BV">بؤویٹ آئلینڈ</territory>
  317. <territory type="BW">بوتسوانا</territory>
  318. <territory type="BY">بیلاروس</territory>
  319. <territory type="BZ">بیلائز</territory>
  320. <territory type="CA">کینیڈا</territory>
  321. <territory type="CC">کوکوس (کیلنگ) جزائر</territory>
  322. <territory type="CD">کانگو - کنشاسا</territory>
  323. <territory type="CD" alt="variant">کانگو (DRC)</territory>
  324. <territory type="CF">وسط افریقی جمہوریہ</territory>
  325. <territory type="CG">کانگو - برازاویلے</territory>
  326. <territory type="CG" alt="variant">کانگو (جمہوریہ)</territory>
  327. <territory type="CH">سوئٹزر لینڈ</territory>
  328. <territory type="CI">کوٹ ڈی آئیوری</territory>
  329. <territory type="CI" alt="variant">آئیوری کوسٹ</territory>
  330. <territory type="CK">کک آئلینڈز</territory>
  331. <territory type="CL">چلی</territory>
  332. <territory type="CM">کیمرون</territory>
  333. <territory type="CN">چین</territory>
  334. <territory type="CO">کولمبیا</territory>
  335. <territory type="CP">کلپّرٹن آئلینڈ</territory>
  336. <territory type="CR">کوسٹا ریکا</territory>
  337. <territory type="CU">کیوبا</territory>
  338. <territory type="CV">کیپ ورڈی</territory>
  339. <territory type="CW">کیوراکاؤ</territory>
  340. <territory type="CX">کرسمس آئلینڈ</territory>
  341. <territory type="CY">قبرص</territory>
  342. <territory type="CZ">چیک جمہوریہ</territory>
  343. <territory type="DE">جرمنی</territory>
  344. <territory type="DG">ڈائجو گارسیا</territory>
  345. <territory type="DJ">جبوتی</territory>
  346. <territory type="DK">ڈنمارک</territory>
  347. <territory type="DM">ڈومنیکا</territory>
  348. <territory type="DO">ڈومنیکن جمہوریہ</territory>
  349. <territory type="DZ">الجیریا</territory>
  350. <territory type="EA">سیئوٹا اور میلیلا</territory>
  351. <territory type="EC">ایکواڈور</territory>
  352. <territory type="EE">اسٹونیا</territory>
  353. <territory type="EG">مصر</territory>
  354. <territory type="EH">مغربی صحارا</territory>
  355. <territory type="ER">اریٹیریا</territory>
  356. <territory type="ES">ہسپانیہ</territory>
  357. <territory type="ET">ایتھوپیا</territory>
  358. <territory type="EU">یوروپی یونین</territory>
  359. <territory type="FI">فن لینڈ</territory>
  360. <territory type="FJ">فجی</territory>
  361. <territory type="FK">فاکلینڈ جزائر</territory>
  362. <territory type="FK" alt="variant">فاکلینڈ جزائر (مالویناس)</territory>
  363. <territory type="FM">مائکرونیشیا</territory>
  364. <territory type="FO">فروئی آئلینڈز</territory>
  365. <territory type="FR">فرانس</territory>
  366. <territory type="GA">گیبون</territory>
  367. <territory type="GB">سلطنت متحدہ</territory>
  368. <territory type="GB" alt="short">یو کے</territory>
  369. <territory type="GD">غرناطہ</territory>
  370. <territory type="GE">جارجیا</territory>
  371. <territory type="GF">فرینچ گیانا</territory>
  372. <territory type="GG">گوئرنسی</territory>
  373. <territory type="GH">گھانا</territory>
  374. <territory type="GI">جبل الطارق</territory>
  375. <territory type="GL">گرین لینڈ</territory>
  376. <territory type="GM">گامبیا</territory>
  377. <territory type="GN">گنی</territory>
  378. <territory type="GP">گواڈیلوپ</territory>
  379. <territory type="GQ">استوائی گیانا</territory>
  380. <territory type="GR">یونان</territory>
  381. <territory type="GS">جنوبی جارجیا اور جنوبی سینڈوچ جزائر</territory>
  382. <territory type="GT">گواٹے مالا</territory>
  383. <territory type="GU">گوآم</territory>
  384. <territory type="GW">گنی بساؤ</territory>
  385. <territory type="GY">گیانا</territory>
  386. <territory type="HK">ہانگ کانگ SAR چین</territory>
  387. <territory type="HK" alt="short">ہانگ کانگ</territory>
  388. <territory type="HM">ہیئرڈ آئلینڈ اور میکڈونالڈ آئلینڈز</territory>
  389. <territory type="HN">ہونڈاروس</territory>
  390. <territory type="HR">کروشیا</territory>
  391. <territory type="HT">ہیتی</territory>
  392. <territory type="HU">ہنگری</territory>
  393. <territory type="IC">کینری آئلینڈز</territory>
  394. <territory type="ID">انڈونیشیا</territory>
  395. <territory type="IE">آئرلینڈ</territory>
  396. <territory type="IL">اسرائیل</territory>
  397. <territory type="IM">آئل آف مین</territory>
  398. <territory type="IN">بھارت</territory>
  399. <territory type="IO">برطانوی ہندوستانی سمندری خطہ</territory>
  400. <territory type="IQ">عراق</territory>
  401. <territory type="IR">ایران</territory>
  402. <territory type="IS">آئس لینڈ</territory>
  403. <territory type="IT">اٹلی</territory>
  404. <territory type="JE">جرسی</territory>
  405. <territory type="JM">جمائیکا</territory>
  406. <territory type="JO">اردن</territory>
  407. <territory type="JP">جاپان</territory>
  408. <territory type="KE">کینیا</territory>
  409. <territory type="KG">کرغزستان</territory>
  410. <territory type="KH">کمبوڈیا</territory>
  411. <territory type="KI">کریباتی</territory>
  412. <territory type="KM">کوموروس</territory>
  413. <territory type="KN">سینٹ کٹس اور نیویس</territory>
  414. <territory type="KP">شمالی کوریا</territory>
  415. <territory type="KR">جنوبی کوریا</territory>
  416. <territory type="KW">کویت</territory>
  417. <territory type="KY">کیمین آئلینڈز</territory>
  418. <territory type="KZ">قزاخستان</territory>
  419. <territory type="LA">لاؤس</territory>
  420. <territory type="LB">لبنان</territory>
  421. <territory type="LC">سینٹ لوسیا</territory>
  422. <territory type="LI">لیشٹنسٹائن</territory>
  423. <territory type="LK">سری لنکا</territory>
  424. <territory type="LR">لائبیریا</territory>
  425. <territory type="LS">لیسوتھو</territory>
  426. <territory type="LT">لتھوانیا</territory>
  427. <territory type="LU">لگژمبرگ</territory>
  428. <territory type="LV">لٹویا</territory>
  429. <territory type="LY">لیبیا</territory>
  430. <territory type="MA">مراقش</territory>
  431. <territory type="MC">موناکو</territory>
  432. <territory type="MD">مالدووا</territory>
  433. <territory type="ME">مونٹے نیگرو</territory>
  434. <territory type="MF">سینٹ مارٹن</territory>
  435. <territory type="MG">مڈغاسکر</territory>
  436. <territory type="MH">مارشل آئلینڈز</territory>
  437. <territory type="MK">مقدونیہ</territory>
  438. <territory type="MK" alt="variant">مقدونیہ (FYROM)</territory>
  439. <territory type="ML">مالی</territory>
  440. <territory type="MM">میانمار (برما)</territory>
  441. <territory type="MN">منگولیا</territory>
  442. <territory type="MO">مکاؤ SAR چین</territory>
  443. <territory type="MO" alt="short">مکاؤ</territory>
  444. <territory type="MP">شمالی ماریانا آئلینڈز</territory>
  445. <territory type="MQ">مارٹینک</territory>
  446. <territory type="MR">موریطانیہ</territory>
  447. <territory type="MS">مونٹسیراٹ</territory>
  448. <territory type="MT">مالٹا</territory>
  449. <territory type="MU">ماریشس</territory>
  450. <territory type="MV">مالدیو</territory>
  451. <territory type="MW">ملاوی</territory>
  452. <territory type="MX">میکسیکو</territory>
  453. <territory type="MY">ملیشیا</territory>
  454. <territory type="MZ">موزمبیق</territory>
  455. <territory type="NA">نامیبیا</territory>
  456. <territory type="NC">نیو کلیڈونیا</territory>
  457. <territory type="NE">نائجر</territory>
  458. <territory type="NF">نار فاک آئلینڈ</territory>
  459. <territory type="NG">نائجیریا</territory>
  460. <territory type="NI">نکاراگووا</territory>
  461. <territory type="NL">نیدر لینڈز</territory>
  462. <territory type="NO">ناروے</territory>
  463. <territory type="NP">نیپال</territory>
  464. <territory type="NR">نؤرو</territory>
  465. <territory type="NU">نیئو</territory>
  466. <territory type="NZ">نیوزی ینڈ</territory>
  467. <territory type="OM">عمان</territory>
  468. <territory type="PA">پنامہ</territory>
  469. <territory type="PE">پیرو</territory>
  470. <territory type="PF">فرانسیسی پولینیشیا</territory>
  471. <territory type="PG">پاپوآ نیو گنی</territory>
  472. <territory type="PH">فلپائنی</territory>
  473. <territory type="PK">پاکستان</territory>
  474. <territory type="PL">پولینڈ</territory>
  475. <territory type="PM">سینٹ پیئر اور میکلیئون</territory>
  476. <territory type="PN">پٹکائرن جزائر</territory>
  477. <territory type="PR">پیورٹو ریکو</territory>
  478. <territory type="PS">فلسطینی خطے</territory>
  479. <territory type="PS" alt="short">فلسطین</territory>
  480. <territory type="PT">پرتگال</territory>
  481. <territory type="PW">پلاؤ</territory>
  482. <territory type="PY">پیراگوئے</territory>
  483. <territory type="QA">قطر</territory>
  484. <territory type="QO">بیرونی اوشیانیا</territory>
  485. <territory type="RE">ری یونین</territory>
  486. <territory type="RO">رومانیا</territory>
  487. <territory type="RS">سربیا</territory>
  488. <territory type="RU">روسی</territory>
  489. <territory type="RW">روانڈا</territory>
  490. <territory type="SA">سعودی عرب</territory>
  491. <territory type="SB">سولومن آئلینڈز</territory>
  492. <territory type="SC">سشلیز</territory>
  493. <territory type="SD">سوڈان</territory>
  494. <territory type="SE">سویڈن</territory>
  495. <territory type="SG">سنگاپور</territory>
  496. <territory type="SH">سینٹ ہیلینا</territory>
  497. <territory type="SI">سلووینیا</territory>
  498. <territory type="SJ">سوالبرڈ اور جان ماین</territory>
  499. <territory type="SK">سلوواکیہ</territory>
  500. <territory type="SL">سیئر لیون</territory>
  501. <territory type="SM">سان مارینو</territory>
  502. <territory type="SN">سینیگل</territory>
  503. <territory type="SO">صومالیہ</territory>
  504. <territory type="SR">سورینام</territory>
  505. <territory type="SS">جنوبی سوڈان</territory>
  506. <territory type="ST">ساؤ ٹوم اور پرنسپے</territory>
  507. <territory type="SV">ال سلواڈور</territory>
  508. <territory type="SX">سنٹ مارٹن</territory>
  509. <territory type="SY">شام</territory>
  510. <territory type="SZ">سوازی لینڈ</territory>
  511. <territory type="TA">ٹرسٹن ڈا کیونہا</territory>
  512. <territory type="TC">ترکس اور کیکاؤس جزائر</territory>
  513. <territory type="TD">چاڈ</territory>
  514. <territory type="TF">فرانسیسی جنوبی خطے</territory>
  515. <territory type="TG">ٹوگو</territory>
  516. <territory type="TH">تھائی لینڈ</territory>
  517. <territory type="TJ">تاجکستان</territory>
  518. <territory type="TK">ٹوکیلاؤ</territory>
  519. <territory type="TL">تیمور لیسٹ</territory>
  520. <territory type="TL" alt="variant">مشرقی تیمور</territory>
  521. <territory type="TM">ترکمانستان</territory>
  522. <territory type="TN">تیونیسیا</territory>
  523. <territory type="TO">ٹونگا</territory>
  524. <territory type="TR">ترکی</territory>
  525. <territory type="TT">ترینیداد اور ٹوباگو</territory>
  526. <territory type="TV">ٹووالو</territory>
  527. <territory type="TW">تائیوان</territory>
  528. <territory type="TZ">تنزانیہ</territory>
  529. <territory type="UA">یوکرین</territory>
  530. <territory type="UG">یوگانڈا</territory>
  531. <territory type="UM">امریکہ سے باہر کے چھوٹے جزائز</territory>
  532. <territory type="US">ریاستہائے متحدہ</territory>
  533. <territory type="US" alt="short">امریکا</territory>
  534. <territory type="UY">یوروگوئے</territory>
  535. <territory type="UZ">ازبکستان</territory>
  536. <territory type="VA">واٹیکن سٹی</territory>
  537. <territory type="VC">سینٹ ونسنٹ اور گرینیڈائنز</territory>
  538. <territory type="VE">وینزوئیلا</territory>
  539. <territory type="VG">برٹش ورجن آئلینڈز</territory>
  540. <territory type="VI">امریکی ورجن آئلینڈز</territory>
  541. <territory type="VN">ویتنام</territory>
  542. <territory type="VU">وینوآٹو</territory>
  543. <territory type="WF">ویلیز اور فیوٹیونا</territory>
  544. <territory type="WS">ساموآ</territory>
  545. <territory type="XK">کوسووو</territory>
  546. <territory type="YE">یمن</territory>
  547. <territory type="YT">مایوٹ</territory>
  548. <territory type="ZA">جنوبی افریقہ</territory>
  549. <territory type="ZM">زامبیا</territory>
  550. <territory type="ZW">زمبابوے</territory>
  551. <territory type="ZZ">نامعلوم علاقہ</territory>
  552. </territories>
  553. <keys>
  554. <key type="calendar">کیلنڈر</key>
  555. <key type="colAlternate">علامات کی چھٹائی نظرانداز کریں</key>
  556. <key type="colBackwards">معکوس تلفظ کی چھٹائی</key>
  557. <key type="colCaseFirst">بڑے حروف/ چھوٹے حروف کی ترتیب بندی</key>
  558. <key type="colCaseLevel">حروف کے تئیں حساس چھٹائی</key>
  559. <key type="colHiraganaQuaternary">Kena چھٹائی</key>
  560. <key type="collation">چھٹائی کی ترتیب</key>
  561. <key type="colNormalization">معمول کی چھٹائی</key>
  562. <key type="colNumeric">عددی چھٹائی</key>
  563. <key type="colStrength">چھٹائی کی قوت</key>
  564. <key type="currency">کرنسی</key>
  565. <key type="numbers">اعداد</key>
  566. <key type="timezone">منطقۂ وقت</key>
  567. <key type="va">مقام کا متغیرہ</key>
  568. <key type="variableTop">بطور علامات چھٹائی کریں</key>
  569. <key type="x">نجی-استعمال</key>
  570. </keys>
  571. <types>
  572. <type type="arab" key="numbers">عربی ہندی ہندسے</type>
  573. <type type="arabext" key="numbers">توسیع شدہ عربی ہندی ہندسے</type>
  574. <type type="armn" key="numbers">آرمینیائی اعداد</type>
  575. <type type="armnlow" key="numbers">آرمینیائی زیریں اعداد</type>
  576. <type type="beng" key="numbers">ہنگالی ہندسے</type>
  577. <type type="big5han" key="collation">روایتی چینی کی چھٹائی کی ترتیب - Big5</type>
  578. <type type="buddhist" key="calendar">بودھ کلینڈر</type>
  579. <type type="chinese" key="calendar">چینی کیلنڈر</type>
  580. <type type="coptic" key="calendar">کاپٹک کیلنڈر</type>
  581. <type type="deva" key="numbers">دیوناگری ہندسے</type>
  582. <type type="dictionary" key="collation">لغت کی چھٹنی کی ترتیب</type>
  583. <type type="ducet" key="collation">ڈیفالٹ یونیکوڈ کی چھٹنی کی ترتیب</type>
  584. <type type="ethi" key="numbers">ایتھوپیائی اعداد</type>
  585. <type type="ethiopic" key="calendar">ایتھوپیائی کیلنڈر</type>
  586. <type type="ethiopic-amete-alem" key="calendar">ایتھوپک امیٹ الیم کیلنڈر</type>
  587. <type type="finance" key="numbers">مالیاتی ہندسے</type>
  588. <type type="fullwide" key="numbers">پورے عرض والے ہندسے</type>
  589. <type type="gb2312han" key="collation">آسان چینی کی چھٹائی کی ترتیب - GB2312</type>
  590. <type type="geor" key="numbers">جارجیائی اعداد</type>
  591. <type type="gregorian" key="calendar">جارجیائی کیلنڈر</type>
  592. <type type="grek" key="numbers">یونانی اعداد</type>
  593. <type type="greklow" key="numbers">یونانی زیریں اعداد</type>
  594. <type type="gujr" key="numbers">گجراتی ہندسے</type>
  595. <type type="guru" key="numbers">گرمکھی ہندسے</type>
  596. <type type="hanidec" key="numbers">چینی اعشاری اعداد</type>
  597. <type type="hans" key="numbers">آسان چینی اعداد</type>
  598. <type type="hansfin" key="numbers">آسان چینی مالی اعداد</type>
  599. <type type="hant" key="numbers">روایتی چینی اعداد</type>
  600. <type type="hantfin" key="numbers">روایتی چینی مالی اعداد</type>
  601. <type type="hebr" key="numbers">عبرانی اعداد</type>
  602. <type type="hebrew" key="calendar">عبرانی کیلنڈر</type>
  603. <type type="identical" key="colStrength">سبھی کی چھٹائی کریں</type>
  604. <type type="indian" key="calendar">ہندوستانی قومی کیلنڈر</type>
  605. <type type="islamic" key="calendar">اسلامی کیلنڈر</type>
  606. <type type="islamic-civil" key="calendar">اسلامی شہری کیلنڈر</type>
  607. <type type="japanese" key="calendar">جاپانی کیلنڈر</type>
  608. <type type="jpan" key="numbers">جاپانی اعداد</type>
  609. <type type="jpanfin" key="numbers">جاپانی مالی اعداد</type>
  610. <type type="khmr" key="numbers">خمیر ہندسے</type>
  611. <type type="knda" key="numbers">کنڑ ہندسے</type>
  612. <type type="laoo" key="numbers">لاؤ ہندسے</type>
  613. <type type="latn" key="numbers">مغربی ہندسے</type>
  614. <type type="lower" key="colCaseFirst">پہلے چھوٹے حروف کی چھٹائی کریں</type>
  615. <type type="mlym" key="numbers">ملیالم ہندسے</type>
  616. <type type="mong" key="numbers">منگولیائی ہندسے</type>
  617. <type type="mymr" key="numbers">میانمار کے ہندسے</type>
  618. <type type="native" key="numbers">اصل ہندسے</type>
  619. <type type="no" key="colBackwards">لہجوں کی چھٹائی معمول کے انداز میں کریں</type>
  620. <type type="no" key="colCaseFirst">معمول کے حروف کی ترتیب کی چھٹائی کریں</type>
  621. <type type="no" key="colCaseLevel">حروف کی عدم حساسیت کی چھٹائی کریں</type>
  622. <type type="no" key="colHiraganaQuaternary">Kana کی چھٹائی الگ الگ کریں</type>
  623. <type type="no" key="colNormalization">حسب معمول بنائے بغیر چھٹائی کریں</type>
  624. <type type="no" key="colNumeric">انفرادی طور پر ہندسوں کی چھٹائی کریں</type>
  625. <type type="non-ignorable" key="colAlternate">علامات کی چھٹائی کریں</type>
  626. <type type="orya" key="numbers">اڑیہ ہندسے</type>
  627. <type type="persian" key="calendar">فارسی کیلنڈر</type>
  628. <type type="phonebook" key="collation">فون بک کی چھٹنی کی ترتیب</type>
  629. <type type="phonetic" key="collation">صوتی چھٹائی کی ترتیب</type>
  630. <type type="pinyin" key="collation">پن ین کی چھٹنی کی ترتیب</type>
  631. <type type="primary" key="colStrength">صرف اساسی حروف کی چھٹائی کریں</type>
  632. <type type="quaternary" key="colStrength">لہجہ/ بڑے چھوٹے حروف/چوڑائی/Kana کی چھٹائی کریں</type>
  633. <type type="reformed" key="collation">دوبارہ تشکیل شدہ چھٹنی کی ترتیب</type>
  634. <type type="roc" key="calendar">منگوو کیلنڈر</type>
  635. <type type="roman" key="numbers">رومن اعداد</type>
  636. <type type="romanlow" key="numbers">رومن زیریں اعداد</type>
  637. <type type="search" key="collation">عام-مقصد کی تلاش</type>
  638. <type type="searchjl" key="collation">Hangul Initial Consonant کے لحاظ سے تلاش کریں</type>
  639. <type type="secondary" key="colStrength">لہجوں کی چھٹائی کریں</type>
  640. <type type="shifted" key="colAlternate">علامات کو نظرانداز کرکے چھٹائی کریں</type>
  641. <type type="standard" key="collation">معیاری چھنٹائی کی ترتیب</type>
  642. <type type="stroke" key="collation">سٹروک کی چھٹنی کی ترتیب</type>
  643. <type type="taml" key="numbers">تمل اعداد</type>
  644. <type type="tamldec" key="numbers">تمل اعداد</type>
  645. <type type="telu" key="numbers">تیلگو ہندسے</type>
  646. <type type="tertiary" key="colStrength">لہجوں/حروف/چوڑائی کی چھٹائی کریں</type>
  647. <type type="thai" key="numbers">تھائی ہندسے</type>
  648. <type type="tibt" key="numbers">تبتی اعداد</type>
  649. <type type="traditional" key="collation">روایتی چھٹنی کی ترتیب</type>
  650. <type type="traditional" key="numbers">روایتی اعداد</type>
  651. <type type="unihan" key="collation">اساسی-سٹروک کی چھٹنی کی ترتیب</type>
  652. <type type="upper" key="colCaseFirst">پہلے بالائی حروف کی چھٹائی کریں</type>
  653. <type type="vaii" key="numbers">وائی ہندسے</type>
  654. <type type="yes" key="colBackwards">لہجوں کی معکوس چھٹائی کریں</type>
  655. <type type="yes" key="colCaseLevel">حروف کے تئیں حساس کی چھٹائی کریں</type>
  656. <type type="yes" key="colHiraganaQuaternary">Kana کی مختلف طریقے سے چھٹائی کریں</type>
  657. <type type="yes" key="colNormalization">معمول کے یونیکوڈ کی چھٹائی کریں</type>
  658. <type type="yes" key="colNumeric">اعداد کے لحاظ سے ہندسوں کی چھٹائی کریں</type>
  659. </types>
  660. <transformNames>
  661. <transformName type="BGN">BGN</transformName>
  662. <transformName type="Numeric">عددی</transformName>
  663. <transformName type="Tone">ٹون</transformName>
  664. <transformName type="UNGEGN">UNGEGN</transformName>
  665. <transformName type="x-Accents">لہجے</transformName>
  666. <transformName type="x-Fullwidth">پورا عرض</transformName>
  667. <transformName type="x-Halfwidth">نصف عرض</transformName>
  668. <transformName type="x-Jamo">جامو</transformName>
  669. <transformName type="x-Pinyin">پن یِن</transformName>
  670. <transformName type="x-Publishing">اشاعت</transformName>
  671. </transformNames>
  672. <measurementSystemNames>
  673. <measurementSystemName type="metric">پیمانہ</measurementSystemName>
  674. <measurementSystemName type="UK">سلطنت متحدہ</measurementSystemName>
  675. <measurementSystemName type="US">ریاستہائے متحدہ</measurementSystemName>
  676. </measurementSystemNames>
  677. <codePatterns>
  678. <codePattern type="language">زبان:{0}</codePattern>
  679. <codePattern type="script">رسم الخط:{0}</codePattern>
  680. <codePattern type="territory">خطہ:{0}</codePattern>
  681. </codePatterns>
  682. </localeDisplayNames>
  683. <layout>
  684. <orientation>
  685. <characterOrder>right-to-left</characterOrder>
  686. </orientation>
  687. </layout>
  688. <characters>
  689. <exemplarCharacters>[ا أ آ ب پ ت ٹ ث ج چ ح خ د ڈ ذ ر ڑ ز ژ س ش ص ض ط ظ ع غ ف ق ک گ ل م ن ں و ؤ ہ ۂ ھ ء ی ئ ے ة ه]</exemplarCharacters>
  690. <exemplarCharacters type="auxiliary">[؀؁؂؃\u200C\u200D\u200E\u200F \u064B \u064C \u064D \u064E \u064F \u0650 \u0651 \u0652 \u0654 \u0656 \u0657 \u0658 \u0670 ۃ ٻ ٺ ټ ٽ ي]</exemplarCharacters>
  691. <exemplarCharacters type="index">[ا ب پ ت ٹ ث ج چ ح خ د ڈ ذ ر ڑ ز ژ س ش ص ض ط ظ ع غ ف ق ک گ ل م ن و ہ ھ ء ی ے]</exemplarCharacters>
  692. <exemplarCharacters type="punctuation">[، ؍ ٫ ٬ ؛ \: ؟ . ۔ ( ) \[ \]]</exemplarCharacters>
  693. <ellipsis type="final">{0}…</ellipsis>
  694. <ellipsis type="initial">…{0}</ellipsis>
  695. <ellipsis type="medial">{0}…{1}</ellipsis>
  696. <moreInformation>؟</moreInformation>
  697. </characters>
  698. <delimiters>
  699. <quotationStart>”</quotationStart>
  700. <quotationEnd>“</quotationEnd>
  701. <alternateQuotationStart>’</alternateQuotationStart>
  702. <alternateQuotationEnd>‘</alternateQuotationEnd>
  703. </delimiters>
  704. <dates>
  705. <calendars>
  706. <calendar type="generic">
  707. <dateFormats>
  708. <dateFormatLength type="full">
  709. <dateFormat>
  710. <pattern>EEEE، d MMMM، y G</pattern>
  711. </dateFormat>
  712. </dateFormatLength>
  713. <dateFormatLength type="long">
  714. <dateFormat>
  715. <pattern>d MMMM، y G</pattern>
  716. </dateFormat>
  717. </dateFormatLength>
  718. <dateFormatLength type="medium">
  719. <dateFormat>
  720. <pattern>d MMM، y G</pattern>
  721. </dateFormat>
  722. </dateFormatLength>
  723. <dateFormatLength type="short">
  724. <dateFormat>
  725. <pattern>d/M/y GGGGG</pattern>
  726. </dateFormat>
  727. </dateFormatLength>
  728. </dateFormats>
  729. <dateTimeFormats>
  730. <dateTimeFormatLength type="full">
  731. <dateTimeFormat>
  732. <pattern>{1} {0}</pattern>
  733. </dateTimeFormat>
  734. </dateTimeFormatLength>
  735. <dateTimeFormatLength type="long">
  736. <dateTimeFormat>
  737. <pattern>{1} {0}</pattern>
  738. </dateTimeFormat>
  739. </dateTimeFormatLength>
  740. <dateTimeFormatLength type="medium">
  741. <dateTimeFormat>
  742. <pattern>{1} {0}</pattern>
  743. </dateTimeFormat>
  744. </dateTimeFormatLength>
  745. <dateTimeFormatLength type="short">
  746. <dateTimeFormat>
  747. <pattern>{1} {0}</pattern>
  748. </dateTimeFormat>
  749. </dateTimeFormatLength>
  750. <availableFormats>
  751. <dateFormatItem id="d">d</dateFormatItem>
  752. <dateFormatItem id="Ed">d E</dateFormatItem>
  753. <dateFormatItem id="Gy">y G</dateFormatItem>
  754. <dateFormatItem id="GyMMM">MMM y G</dateFormatItem>
  755. <dateFormatItem id="GyMMMd">d MMM، y G</dateFormatItem>
  756. <dateFormatItem id="GyMMMEd">E، d MMM، y G</dateFormatItem>
  757. <dateFormatItem id="h">h a</dateFormatItem>
  758. <dateFormatItem id="H">HH</dateFormatItem>
  759. <dateFormatItem id="hm">h:mm a</dateFormatItem>
  760. <dateFormatItem id="Hm">HH:mm</dateFormatItem>
  761. <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
  762. <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
  763. <dateFormatItem id="M">L</dateFormatItem>
  764. <dateFormatItem id="Md">d/M</dateFormatItem>
  765. <dateFormatItem id="MEd">E، d/M</dateFormatItem>
  766. <dateFormatItem id="MMM">LLL</dateFormatItem>
  767. <dateFormatItem id="MMMd">d MMM</dateFormatItem>
  768. <dateFormatItem id="MMMEd">E، d MMM</dateFormatItem>
  769. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  770. <dateFormatItem id="y">y G</dateFormatItem>
  771. <dateFormatItem id="yyyy">y G</dateFormatItem>
  772. <dateFormatItem id="yyyyM">M/y G</dateFormatItem>
  773. <dateFormatItem id="yyyyMd">d/M/y G</dateFormatItem>
  774. <dateFormatItem id="yyyyMEd">E، d/M/y G</dateFormatItem>
  775. <dateFormatItem id="yyyyMMM">MMM y G</dateFormatItem>
  776. <dateFormatItem id="yyyyMMMd">d MMM، y G</dateFormatItem>
  777. <dateFormatItem id="yyyyMMMEd">E، d MMM، y G</dateFormatItem>
  778. <dateFormatItem id="yyyyQQQ">QQQ y G</dateFormatItem>
  779. <dateFormatItem id="yyyyQQQQ">QQQQ y G</dateFormatItem>
  780. </availableFormats>
  781. <intervalFormats>
  782. <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
  783. <intervalFormatItem id="d">
  784. <greatestDifference id="d">d–d</greatestDifference>
  785. </intervalFormatItem>
  786. <intervalFormatItem id="h">
  787. <greatestDifference id="a">h a – h a</greatestDifference>
  788. <greatestDifference id="h">h–h a</greatestDifference>
  789. </intervalFormatItem>
  790. <intervalFormatItem id="H">
  791. <greatestDifference id="H">HH–HH</greatestDifference>
  792. </intervalFormatItem>
  793. <intervalFormatItem id="hm">
  794. <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
  795. <greatestDifference id="h">h:mm–h:mm a</greatestDifference>
  796. <greatestDifference id="m">h:mm–h:mm a</greatestDifference>
  797. </intervalFormatItem>
  798. <intervalFormatItem id="Hm">
  799. <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
  800. <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
  801. </intervalFormatItem>
  802. <intervalFormatItem id="hmv">
  803. <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
  804. <greatestDifference id="h">h:mm–h:mm a v</greatestDifference>
  805. <greatestDifference id="m">h:mm–h:mm a v</greatestDifference>
  806. </intervalFormatItem>
  807. <intervalFormatItem id="Hmv">
  808. <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
  809. <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
  810. </intervalFormatItem>
  811. <intervalFormatItem id="hv">
  812. <greatestDifference id="a">h a – h a v</greatestDifference>
  813. <greatestDifference id="h">h–h a v</greatestDifference>
  814. </intervalFormatItem>
  815. <intervalFormatItem id="Hv">
  816. <greatestDifference id="H">HH–HH v</greatestDifference>
  817. </intervalFormatItem>
  818. <intervalFormatItem id="M">
  819. <greatestDifference id="M">M–M</greatestDifference>
  820. </intervalFormatItem>
  821. <intervalFormatItem id="Md">
  822. <greatestDifference id="d">d/M – d/M</greatestDifference>
  823. <greatestDifference id="M">d/M – d/M</greatestDifference>
  824. </intervalFormatItem>
  825. <intervalFormatItem id="MEd">
  826. <greatestDifference id="d">E، d/M – E، d/M</greatestDifference>
  827. <greatestDifference id="M">E، d/M – E، d/M</greatestDifference>
  828. </intervalFormatItem>
  829. <intervalFormatItem id="MMM">
  830. <greatestDifference id="M">MMM–MMM</greatestDifference>
  831. </intervalFormatItem>
  832. <intervalFormatItem id="MMMd">
  833. <greatestDifference id="d">d–d MMM</greatestDifference>
  834. <greatestDifference id="M">d MMM – d MMM</greatestDifference>
  835. </intervalFormatItem>
  836. <intervalFormatItem id="MMMEd">
  837. <greatestDifference id="d">E، d MMM – E، d MMM</greatestDifference>
  838. <greatestDifference id="M">E، d MMM – E، d MMM</greatestDifference>
  839. </intervalFormatItem>
  840. <intervalFormatItem id="y">
  841. <greatestDifference id="y">y–y G</greatestDifference>
  842. </intervalFormatItem>
  843. <intervalFormatItem id="yM">
  844. <greatestDifference id="M">M/y – M/y G</greatestDifference>
  845. <greatestDifference id="y">M/y – M/y G</greatestDifference>
  846. </intervalFormatItem>
  847. <intervalFormatItem id="yMd">
  848. <greatestDifference id="d">d/M/y - d/M/y G</greatestDifference>
  849. <greatestDifference id="M">d/M/y – d/M/y G</greatestDifference>
  850. <greatestDifference id="y">d/M/y – d/M/y G</greatestDifference>
  851. </intervalFormatItem>
  852. <intervalFormatItem id="yMEd">
  853. <greatestDifference id="d">E، d/M/y – E، d/M/y G</greatestDifference>
  854. <greatestDifference id="M">E، d/M/y – E، d/M/y G</greatestDifference>
  855. <greatestDifference id="y">E، d/M/y – E، d/M/y G</greatestDifference>
  856. </intervalFormatItem>
  857. <intervalFormatItem id="yMMM">
  858. <greatestDifference id="M">MMM–MMM y G</greatestDifference>
  859. <greatestDifference id="y">MMM y – MMM y G</greatestDifference>
  860. </intervalFormatItem>
  861. <intervalFormatItem id="yMMMd">
  862. <greatestDifference id="d">d-d MMM، y G</greatestDifference>
  863. <greatestDifference id="M">d MMM – d MMM، y G</greatestDifference>
  864. <greatestDifference id="y">d MMM، y – d MMM، y G</greatestDifference>
  865. </intervalFormatItem>
  866. <intervalFormatItem id="yMMMEd">
  867. <greatestDifference id="d">E، d MMM – E، d MMM، y G</greatestDifference>
  868. <greatestDifference id="M">E، d MMM – E، d MMM، y G</greatestDifference>
  869. <greatestDifference id="y">E، d MMM، y – E، d MMM، y G</greatestDifference>
  870. </intervalFormatItem>
  871. <intervalFormatItem id="yMMMM">
  872. <greatestDifference id="M">MMMM–MMMM y G</greatestDifference>
  873. <greatestDifference id="y">MMMM y – MMMM y G</greatestDifference>
  874. </intervalFormatItem>
  875. </intervalFormats>
  876. </dateTimeFormats>
  877. </calendar>
  878. <calendar type="gregorian">
  879. <months>
  880. <monthContext type="format">
  881. <monthWidth type="abbreviated">
  882. <month type="1">جنوری</month>
  883. <month type="2">فروری</month>
  884. <month type="3">مارچ</month>
  885. <month type="4">اپریل</month>
  886. <month type="5">مئی</month>
  887. <month type="6">جون</month>
  888. <month type="7">جولائی</month>
  889. <month type="8">اگست</month>
  890. <month type="9">ستمبر</month>
  891. <month type="10">اکتوبر</month>
  892. <month type="11">نومبر</month>
  893. <month type="12">دسمبر</month>
  894. </monthWidth>
  895. <monthWidth type="narrow">
  896. <month type="1">J</month>
  897. <month type="2">F</month>
  898. <month type="3">M</month>
  899. <month type="4">A</month>
  900. <month type="5">M</month>
  901. <month type="6">J</month>
  902. <month type="7">J</month>
  903. <month type="8">A</month>
  904. <month type="9">S</month>
  905. <month type="10">O</month>
  906. <month type="11">N</month>
  907. <month type="12">D</month>
  908. </monthWidth>
  909. <monthWidth type="wide">
  910. <month type="1">جنوری</month>
  911. <month type="2">فروری</month>
  912. <month type="3">مارچ</month>
  913. <month type="4">اپریل</month>
  914. <month type="5">مئی</month>
  915. <month type="6">جون</month>
  916. <month type="7">جولائی</month>
  917. <month type="8">اگست</month>
  918. <month type="9">ستمبر</month>
  919. <month type="10">اکتوبر</month>
  920. <month type="11">نومبر</month>
  921. <month type="12">دسمبر</month>
  922. </monthWidth>
  923. </monthContext>
  924. <monthContext type="stand-alone">
  925. <monthWidth type="abbreviated">
  926. <month type="1">جنوری</month>
  927. <month type="2">فروری</month>
  928. <month type="3">مارچ</month>
  929. <month type="4">اپریل</month>
  930. <month type="5">مئی</month>
  931. <month type="6">جون</month>
  932. <month type="7">جولائی</month>
  933. <month type="8">اگست</month>
  934. <month type="9">ستمبر</month>
  935. <month type="10">اکتوبر</month>
  936. <month type="11">نومبر</month>
  937. <month type="12">دسمبر</month>
  938. </monthWidth>
  939. <monthWidth type="narrow">
  940. <month type="1">J</month>
  941. <month type="2">F</month>
  942. <month type="3">M</month>
  943. <month type="4">A</month>
  944. <month type="5">M</month>
  945. <month type="6">J</month>
  946. <month type="7">J</month>
  947. <month type="8">A</month>
  948. <month type="9">S</month>
  949. <month type="10">O</month>
  950. <month type="11">N</month>
  951. <month type="12">D</month>
  952. </monthWidth>
  953. <monthWidth type="wide">
  954. <month type="1">جنوری</month>
  955. <month type="2">فروری</month>
  956. <month type="3">مارچ</month>
  957. <month type="4">اپریل</month>
  958. <month type="5">مئی</month>
  959. <month type="6">جون</month>
  960. <month type="7">جولائی</month>
  961. <month type="8">اگست</month>
  962. <month type="9">ستمبر</month>
  963. <month type="10">اکتوبر</month>
  964. <month type="11">نومبر</month>
  965. <month type="12">دسمبر</month>
  966. </monthWidth>
  967. </monthContext>
  968. </months>
  969. <days>
  970. <dayContext type="format">
  971. <dayWidth type="abbreviated">
  972. <day type="sun">اتوار</day>
  973. <day type="mon">سوموار</day>
  974. <day type="tue">منگل</day>
  975. <day type="wed">بدھ</day>
  976. <day type="thu">جمعرات</day>
  977. <day type="fri">جمعہ</day>
  978. <day type="sat">ہفتہ</day>
  979. </dayWidth>
  980. <dayWidth type="narrow">
  981. <day type="sun">S</day>
  982. <day type="mon">M</day>
  983. <day type="tue">T</day>
  984. <day type="wed">W</day>
  985. <day type="thu">T</day>
  986. <day type="fri">F</day>
  987. <day type="sat">S</day>
  988. </dayWidth>
  989. <dayWidth type="short">
  990. <day type="sun">اتوار</day>
  991. <day type="mon">سوموار</day>
  992. <day type="tue">منگل</day>
  993. <day type="wed">بدھ</day>
  994. <day type="thu">جمعرات</day>
  995. <day type="fri">جمعہ</day>
  996. <day type="sat">ہفتہ</day>
  997. </dayWidth>
  998. <dayWidth type="wide">
  999. <day type="sun">اتوار</day>
  1000. <day type="mon">سوموار</day>
  1001. <day type="tue">منگل</day>
  1002. <day type="wed">بدھ</day>
  1003. <day type="thu">جمعرات</day>
  1004. <day type="fri">جمعہ</day>
  1005. <day type="sat">ہفتہ</day>
  1006. </dayWidth>
  1007. </dayContext>
  1008. <dayContext type="stand-alone">
  1009. <dayWidth type="abbreviated">
  1010. <day type="sun">اتوار</day>
  1011. <day type="mon">سوموار</day>
  1012. <day type="tue">منگل</day>
  1013. <day type="wed">بدھ</day>
  1014. <day type="thu">جمعرات</day>
  1015. <day type="fri">جمعہ</day>
  1016. <day type="sat">ہفتہ</day>
  1017. </dayWidth>
  1018. <dayWidth type="narrow">
  1019. <day type="sun">S</day>
  1020. <day type="mon">M</day>
  1021. <day type="tue">T</day>
  1022. <day type="wed">W</day>
  1023. <day type="thu">T</day>
  1024. <day type="fri">F</day>
  1025. <day type="sat">S</day>
  1026. </dayWidth>
  1027. <dayWidth type="short">
  1028. <day type="sun">اتوار</day>
  1029. <day type="mon">سوموار</day>
  1030. <day type="tue">منگل</day>
  1031. <day type="wed">بدھ</day>
  1032. <day type="thu">جمعرات</day>
  1033. <day type="fri">جمعہ</day>
  1034. <day type="sat">ہفتہ</day>
  1035. </dayWidth>
  1036. <dayWidth type="wide">
  1037. <day type="sun">اتوار</day>
  1038. <day type="mon">سوموار</day>
  1039. <day type="tue">منگل</day>
  1040. <day type="wed">بدھ</day>
  1041. <day type="thu">جمعرات</day>
  1042. <day type="fri">جمعہ</day>
  1043. <day type="sat">ہفتہ</day>
  1044. </dayWidth>
  1045. </dayContext>
  1046. </days>
  1047. <quarters>
  1048. <quarterContext type="format">
  1049. <quarterWidth type="narrow">
  1050. <quarter type="1">1</quarter>
  1051. <quarter type="2">2</quarter>
  1052. <quarter type="3">3</quarter>
  1053. <quarter type="4">4</quarter>
  1054. </quarterWidth>
  1055. <quarterWidth type="wide">
  1056. <quarter type="1">پہلی سہ ماہی</quarter>
  1057. <quarter type="2">دوسری سہ ماہی</quarter>
  1058. <quarter type="3">تیسری سہ ماہی</quarter>
  1059. <quarter type="4">چوتهی سہ ماہی</quarter>
  1060. </quarterWidth>
  1061. </quarterContext>
  1062. <quarterContext type="stand-alone">
  1063. <quarterWidth type="narrow">
  1064. <quarter type="1">1</quarter>
  1065. <quarter type="2">2</quarter>
  1066. <quarter type="3">3</quarter>
  1067. <quarter type="4">4</quarter>
  1068. </quarterWidth>
  1069. </quarterContext>
  1070. </quarters>
  1071. <dayPeriods>
  1072. <dayPeriodContext type="format">
  1073. <dayPeriodWidth type="abbreviated">
  1074. <dayPeriod type="am">قبل دوپہر</dayPeriod>
  1075. <dayPeriod type="pm">بعد دوپہر</dayPeriod>
  1076. </dayPeriodWidth>
  1077. <dayPeriodWidth type="wide">
  1078. <dayPeriod type="am">قبل دوپہر</dayPeriod>
  1079. <dayPeriod type="pm">بعد دوپہر</dayPeriod>
  1080. </dayPeriodWidth>
  1081. </dayPeriodContext>
  1082. </dayPeriods>
  1083. <eras>
  1084. <eraNames>
  1085. <era type="0">قبل مسیح</era>
  1086. <era type="1">عیسوی سن</era>
  1087. </eraNames>
  1088. <eraAbbr>
  1089. <era type="0">ق م</era>
  1090. <era type="0" alt="variant">BCE</era>
  1091. <era type="1">عیسوی سن</era>
  1092. <era type="1" alt="variant">CE</era>
  1093. </eraAbbr>
  1094. </eras>
  1095. <dateFormats>
  1096. <dateFormatLength type="full">
  1097. <dateFormat>
  1098. <pattern>EEEE، d MMMM، y</pattern>
  1099. </dateFormat>
  1100. </dateFormatLength>
  1101. <dateFormatLength type="long">
  1102. <dateFormat>
  1103. <pattern>d MMMM، y</pattern>
  1104. </dateFormat>
  1105. </dateFormatLength>
  1106. <dateFormatLength type="medium">
  1107. <dateFormat>
  1108. <pattern>d MMM، y</pattern>
  1109. </dateFormat>
  1110. </dateFormatLength>
  1111. <dateFormatLength type="short">
  1112. <dateFormat>
  1113. <pattern>d/M/yy</pattern>
  1114. </dateFormat>
  1115. </dateFormatLength>
  1116. </dateFormats>
  1117. <timeFormats>
  1118. <timeFormatLength type="full">
  1119. <timeFormat>
  1120. <pattern>h:mm:ss a zzzz</pattern>
  1121. </timeFormat>
  1122. </timeFormatLength>
  1123. <timeFormatLength type="long">
  1124. <timeFormat>
  1125. <pattern>h:mm:ss a z</pattern>
  1126. </timeFormat>
  1127. </timeFormatLength>
  1128. <timeFormatLength type="medium">
  1129. <timeFormat>
  1130. <pattern>h:mm:ss a</pattern>
  1131. </timeFormat>
  1132. </timeFormatLength>
  1133. <timeFormatLength type="short">
  1134. <timeFormat>
  1135. <pattern>h:mm a</pattern>
  1136. </timeFormat>
  1137. </timeFormatLength>
  1138. </timeFormats>
  1139. <dateTimeFormats>
  1140. <dateTimeFormatLength type="full">
  1141. <dateTimeFormat>
  1142. <pattern>{1} {0}</pattern>
  1143. </dateTimeFormat>
  1144. </dateTimeFormatLength>
  1145. <dateTimeFormatLength type="long">
  1146. <dateTimeFormat>
  1147. <pattern>{1} {0}</pattern>
  1148. </dateTimeFormat>
  1149. </dateTimeFormatLength>
  1150. <dateTimeFormatLength type="medium">
  1151. <dateTimeFormat>
  1152. <pattern>{1} {0}</pattern>
  1153. </dateTimeFormat>
  1154. </dateTimeFormatLength>
  1155. <dateTimeFormatLength type="short">
  1156. <dateTimeFormat>
  1157. <pattern>{1} {0}</pattern>
  1158. </dateTimeFormat>
  1159. </dateTimeFormatLength>
  1160. <availableFormats>
  1161. <dateFormatItem id="d">d</dateFormatItem>
  1162. <dateFormatItem id="Ed">d E</dateFormatItem>
  1163. <dateFormatItem id="Ehm">E h:mm a</dateFormatItem>
  1164. <dateFormatItem id="EHm">E HH:mm</dateFormatItem>
  1165. <dateFormatItem id="Ehms">E h:mm:ss a</dateFormatItem>
  1166. <dateFormatItem id="EHms">E HH:mm:ss</dateFormatItem>
  1167. <dateFormatItem id="Gy">y G</dateFormatItem>
  1168. <dateFormatItem id="GyMMM">MMM y G</dateFormatItem>
  1169. <dateFormatItem id="GyMMMd">d MMM، y G</dateFormatItem>
  1170. <dateFormatItem id="GyMMMEd">E، d MMM، y G</dateFormatItem>
  1171. <dateFormatItem id="h">h a</dateFormatItem>
  1172. <dateFormatItem id="H">HH</dateFormatItem>
  1173. <dateFormatItem id="hm">h:mm a</dateFormatItem>
  1174. <dateFormatItem id="Hm">HH:mm</dateFormatItem>
  1175. <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
  1176. <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
  1177. <dateFormatItem id="M">L</dateFormatItem>
  1178. <dateFormatItem id="Md">d/M</dateFormatItem>
  1179. <dateFormatItem id="MEd">E، d/M</dateFormatItem>
  1180. <dateFormatItem id="MMM">LLL</dateFormatItem>
  1181. <dateFormatItem id="MMMd">d MMM</dateFormatItem>
  1182. <dateFormatItem id="MMMEd">E، d MMM</dateFormatItem>
  1183. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  1184. <dateFormatItem id="y">y</dateFormatItem>
  1185. <dateFormatItem id="yM">M/y</dateFormatItem>
  1186. <dateFormatItem id="yMd">d/M/y</dateFormatItem>
  1187. <dateFormatItem id="yMEd">E، d/M/y</dateFormatItem>
  1188. <dateFormatItem id="yMMM">MMM y</dateFormatItem>
  1189. <dateFormatItem id="yMMMd">d MMM، y</dateFormatItem>
  1190. <dateFormatItem id="yMMMEd">E، d MMM، y</dateFormatItem>
  1191. <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
  1192. <dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
  1193. </availableFormats>
  1194. <appendItems>
  1195. <appendItem request="Timezone">{0} {1}</appendItem>
  1196. </appendItems>
  1197. <intervalFormats>
  1198. <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
  1199. <intervalFormatItem id="d">
  1200. <greatestDifference id="d">d–d</greatestDifference>
  1201. </intervalFormatItem>
  1202. <intervalFormatItem id="h">
  1203. <greatestDifference id="a">h a – h a</greatestDifference>
  1204. <greatestDifference id="h">h–h a</greatestDifference>
  1205. </intervalFormatItem>
  1206. <intervalFormatItem id="H">
  1207. <greatestDifference id="H">HH–HH</greatestDifference>
  1208. </intervalFormatItem>
  1209. <intervalFormatItem id="hm">
  1210. <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
  1211. <greatestDifference id="h">h:mm–h:mm a</greatestDifference>
  1212. <greatestDifference id="m">h:mm–h:mm a</greatestDifference>
  1213. </intervalFormatItem>
  1214. <intervalFormatItem id="Hm">
  1215. <greatestDifference id="H">HH:mm–HH:mm</greatestDifference>
  1216. <greatestDifference id="m">HH:mm–HH:mm</greatestDifference>
  1217. </intervalFormatItem>
  1218. <intervalFormatItem id="hmv">
  1219. <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
  1220. <greatestDifference id="h">h:mm–h:mm a v</greatestDifference>
  1221. <greatestDifference id="m">h:mm–h:mm a v</greatestDifference>
  1222. </intervalFormatItem>
  1223. <intervalFormatItem id="Hmv">
  1224. <greatestDifference id="H">HH:mm–HH:mm v</greatestDifference>
  1225. <greatestDifference id="m">HH:mm–HH:mm v</greatestDifference>
  1226. </intervalFormatItem>
  1227. <intervalFormatItem id="hv">
  1228. <greatestDifference id="a">h a – h a v</greatestDifference>
  1229. <greatestDifference id="h">h–h a v</greatestDifference>
  1230. </intervalFormatItem>
  1231. <intervalFormatItem id="Hv">
  1232. <greatestDifference id="H">HH–HH v</greatestDifference>
  1233. </intervalFormatItem>
  1234. <intervalFormatItem id="M">
  1235. <greatestDifference id="M">M–M</greatestDifference>
  1236. </intervalFormatItem>
  1237. <intervalFormatItem id="Md">
  1238. <greatestDifference id="d">d/M – d/M</greatestDifference>
  1239. <greatestDifference id="M">d/M – d/M</greatestDifference>
  1240. </intervalFormatItem>
  1241. <intervalFormatItem id="MEd">
  1242. <greatestDifference id="d">E، d/M – E، d/M</greatestDifference>
  1243. <greatestDifference id="M">E، d/M – E، d/M</greatestDifference>
  1244. </intervalFormatItem>
  1245. <intervalFormatItem id="MMM">
  1246. <greatestDifference id="M">MMM–MMM</greatestDifference>
  1247. </intervalFormatItem>
  1248. <intervalFormatItem id="MMMd">
  1249. <greatestDifference id="d">d–d MMM</greatestDifference>
  1250. <greatestDifference id="M">d MMM – d MMM</greatestDifference>
  1251. </intervalFormatItem>
  1252. <intervalFormatItem id="MMMEd">
  1253. <greatestDifference id="d">E، d MMM – E، d MMM</greatestDifference>
  1254. <greatestDifference id="M">E، d MMM – E، d MMM</greatestDifference>
  1255. </intervalFormatItem>
  1256. <intervalFormatItem id="y">
  1257. <greatestDifference id="y">y–y</greatestDifference>
  1258. </intervalFormatItem>
  1259. <intervalFormatItem id="yM">
  1260. <greatestDifference id="M">M/y – M/y</greatestDifference>
  1261. <greatestDifference id="y">M/y – M/y</greatestDifference>
  1262. </intervalFormatItem>
  1263. <intervalFormatItem id="yMd">
  1264. <greatestDifference id="d">d/M/y - d/M/y</greatestDifference>
  1265. <greatestDifference id="M">d/M/y – d/M/y</greatestDifference>
  1266. <greatestDifference id="y">d/M/y – d/M/y</greatestDifference>
  1267. </intervalFormatItem>
  1268. <intervalFormatItem id="yMEd">
  1269. <greatestDifference id="d">E، d/M/y – E، d/M/y</greatestDifference>
  1270. <greatestDifference id="M">E، d/M/y – E، d/M/y</greatestDifference>
  1271. <greatestDifference id="y">E، d/M/y – E، d/M/y</greatestDifference>
  1272. </intervalFormatItem>
  1273. <intervalFormatItem id="yMMM">
  1274. <greatestDifference id="M">MMM–MMM y</greatestDifference>
  1275. <greatestDifference id="y">MMM y – MMM y</greatestDifference>
  1276. </intervalFormatItem>
  1277. <intervalFormatItem id="yMMMd">
  1278. <greatestDifference id="d">d-d MMM، y</greatestDifference>
  1279. <greatestDifference id="M">d MMM – d MMM، y</greatestDifference>
  1280. <greatestDifference id="y">d MMM، y – d MMM، y</greatestDifference>
  1281. </intervalFormatItem>
  1282. <intervalFormatItem id="yMMMEd">
  1283. <greatestDifference id="d">E، d MMM – E، d MMM، y</greatestDifference>
  1284. <greatestDifference id="M">E، d MMM – E، d MMM، y</greatestDifference>
  1285. <greatestDifference id="y">E، d MMM، y – E، d MMM، y</greatestDifference>
  1286. </intervalFormatItem>
  1287. <intervalFormatItem id="yMMMM">
  1288. <greatestDifference id="M">MMMM–MMMM y</greatestDifference>
  1289. <greatestDifference id="y">MMMM y – MMMM y</greatestDifference>
  1290. </intervalFormatItem>
  1291. </intervalFormats>
  1292. </dateTimeFormats>
  1293. </calendar>
  1294. <calendar type="islamic">
  1295. <months>
  1296. <monthContext type="format">
  1297. <monthWidth type="wide">
  1298. <month type="1" draft="contributed">محرم</month>
  1299. <month type="2" draft="contributed">صفر</month>
  1300. <month type="3" draft="contributed">ر بیع الاول</month>
  1301. <month type="4" draft="contributed">ر بیع الثانی</month>
  1302. <month type="5" draft="contributed">جمادی الاول</month>
  1303. <month type="6" draft="contributed">جمادی الثانی</month>
  1304. <month type="7" draft="contributed">رجب</month>
  1305. <month type="8" draft="contributed">شعبان</month>
  1306. <month type="9" draft="contributed">رمضان</month>
  1307. <month type="10" draft="contributed">شوال</month>
  1308. <month type="11" draft="contributed">ذوالقعدۃ</month>
  1309. <month type="12" draft="contributed">ذوالحجۃ</month>
  1310. </monthWidth>
  1311. </monthContext>
  1312. </months>
  1313. <eras>
  1314. <eraAbbr>
  1315. <era type="0" draft="unconfirmed">ق م</era>
  1316. <era type="1" draft="unconfirmed">عیسوی سن</era>
  1317. </eraAbbr>
  1318. </eras>
  1319. </calendar>
  1320. </calendars>
  1321. <fields>
  1322. <field type="era">
  1323. <displayName>عہد</displayName>
  1324. </field>
  1325. <field type="year">
  1326. <displayName>سال</displayName>
  1327. <relative type="-1">پچھلے سال</relative>
  1328. <relative type="0">اس سال</relative>
  1329. <relative type="1">اگلے سال</relative>
  1330. <relativeTime type="future">
  1331. <relativeTimePattern count="one">{0} سال میں</relativeTimePattern>
  1332. <relativeTimePattern count="other">{0} سال میں</relativeTimePattern>
  1333. </relativeTime>
  1334. <relativeTime type="past">
  1335. <relativeTimePattern count="one">{0} سال پہلے</relativeTimePattern>
  1336. <relativeTimePattern count="other">{0} سال پہلے</relativeTimePattern>
  1337. </relativeTime>
  1338. </field>
  1339. <field type="month">
  1340. <displayName>مہینہ</displayName>
  1341. <relative type="-1">پچھلے مہینہ</relative>
  1342. <relative type="0">اس مہینہ</relative>
  1343. <relative type="1">اگلے مہینہ</relative>
  1344. <relativeTime type="future">
  1345. <relativeTimePattern count="one">{0} مہینہ میں</relativeTimePattern>
  1346. <relativeTimePattern count="other">{0} مہینے میں</relativeTimePattern>
  1347. </relativeTime>
  1348. <relativeTime type="past">
  1349. <relativeTimePattern count="one">{0} مہینہ پہلے</relativeTimePattern>
  1350. <relativeTimePattern count="other">{0} مہینے پہلے</relativeTimePattern>
  1351. </relativeTime>
  1352. </field>
  1353. <field type="week">
  1354. <displayName>ہفتہ</displayName>
  1355. <relative type="-1">پچھلے ہفتہ</relative>
  1356. <relative type="0">اس ہفتہ</relative>
  1357. <relative type="1">اگلے ہفتہ</relative>
  1358. <relativeTime type="future">
  1359. <relativeTimePattern count="one">{0} ہفتہ میں</relativeTimePattern>
  1360. <relativeTimePattern count="other">{0} ہفتے میں</relativeTimePattern>
  1361. </relativeTime>
  1362. <relativeTime type="past">
  1363. <relativeTimePattern count="one">{0} ہفتہ پہلے</relativeTimePattern>
  1364. <relativeTimePattern count="other">{0} ہفتے پہلے</relativeTimePattern>
  1365. </relativeTime>
  1366. </field>
  1367. <field type="day">
  1368. <displayName>دن</displayName>
  1369. <relative type="-2">گزشتہ پرسوں</relative>
  1370. <relative type="-1">گزشتہ کل</relative>
  1371. <relative type="0">آج</relative>
  1372. <relative type="1">آئندہ کل</relative>
  1373. <relative type="2">آنے والا پرسوں</relative>
  1374. <relativeTime type="future">
  1375. <relativeTimePattern count="one">{0} دن میں</relativeTimePattern>
  1376. <relativeTimePattern count="other">{0} دن میں</relativeTimePattern>
  1377. </relativeTime>
  1378. <relativeTime type="past">
  1379. <relativeTimePattern count="one">{0} دن پہلے</relativeTimePattern>
  1380. <relativeTimePattern count="other">{0} دن پہلے</relativeTimePattern>
  1381. </relativeTime>
  1382. </field>
  1383. <field type="weekday">
  1384. <displayName>ہفتے کا دن</displayName>
  1385. </field>
  1386. <field type="sun">
  1387. <relative type="-1">گزشتہ اتوار</relative>
  1388. <relative type="0">یہ اتوار</relative>
  1389. <relative type="1">اگلے اتوار</relative>
  1390. </field>
  1391. <field type="mon">
  1392. <relative type="-1">گزشتہ پیر</relative>
  1393. <relative type="0">یہ پیر</relative>
  1394. <relative type="1">اگلے پیر</relative>
  1395. </field>
  1396. <field type="tue">
  1397. <relative type="-1">گزشتہ منگل</relative>
  1398. <relative type="0">یہ منگل</relative>
  1399. <relative type="1">اگلے منگل</relative>
  1400. </field>
  1401. <field type="wed">
  1402. <relative type="-1">گزشتہ بدھ</relative>
  1403. <relative type="0">یہ بدھ</relative>
  1404. <relative type="1">اگلے بدھ</relative>
  1405. </field>
  1406. <field type="thu">
  1407. <relative type="-1">گزشتہ جمعرات</relative>
  1408. <relative type="0">یہ جمعرات</relative>
  1409. <relative type="1">اگلے جمعرات</relative>
  1410. </field>
  1411. <field type="fri">
  1412. <relative type="-1">گزشتہ جمعہ</relative>
  1413. <relative type="0">یہ جمعہ</relative>
  1414. <relative type="1">اگلے جمعہ</relative>
  1415. </field>
  1416. <field type="sat">
  1417. <relative type="-1">گزشتہ ہفتہ</relative>
  1418. <relative type="0">یہ ہفتہ</relative>
  1419. <relative type="1">اگلے ہفتہ</relative>
  1420. </field>
  1421. <field type="dayperiod">
  1422. <displayName>AM/PM</displayName>
  1423. </field>
  1424. <field type="hour">
  1425. <displayName>گھنٹہ</displayName>
  1426. <relativeTime type="future">
  1427. <relativeTimePattern count="one">{0} گھنٹہ میں</relativeTimePattern>
  1428. <relativeTimePattern count="other">{0} گھنٹے میں</relativeTimePattern>
  1429. </relativeTime>
  1430. <relativeTime type="past">
  1431. <relativeTimePattern count="one">{0} گھنٹہ پہلے</relativeTimePattern>
  1432. <relativeTimePattern count="other">{0} گھنٹے پہلے</relativeTimePattern>
  1433. </relativeTime>
  1434. </field>
  1435. <field type="minute">
  1436. <displayName>منٹ</displayName>
  1437. <relativeTime type="future">
  1438. <relativeTimePattern count="one">{0} منٹ میں</relativeTimePattern>
  1439. <relativeTimePattern count="other">{0} منٹ میں</relativeTimePattern>
  1440. </relativeTime>
  1441. <relativeTime type="past">
  1442. <relativeTimePattern count="one">{0} منٹ پہلے</relativeTimePattern>
  1443. <relativeTimePattern count="other">{0} منٹ پہلے</relativeTimePattern>
  1444. </relativeTime>
  1445. </field>
  1446. <field type="second">
  1447. <displayName>سیکنڈ</displayName>
  1448. <relative type="0">اب</relative>
  1449. <relativeTime type="future">
  1450. <relativeTimePattern count="one">{0} سیکنڈ میں</relativeTimePattern>
  1451. <relativeTimePattern count="other">{0} سیکنڈ میں</relativeTimePattern>
  1452. </relativeTime>
  1453. <relativeTime type="past">
  1454. <relativeTimePattern count="one">{0} سیکنڈ پہلے</relativeTimePattern>
  1455. <relativeTimePattern count="other">{0} سیکنڈ پہلے</relativeTimePattern>
  1456. </relativeTime>
  1457. </field>
  1458. <field type="zone">
  1459. <displayName>منطقہ وقت</displayName>
  1460. </field>
  1461. </fields>
  1462. <timeZoneNames>
  1463. <hourFormat>+HH:mm;-HH:mm</hourFormat>
  1464. <gmtFormat>GMT {0}</gmtFormat>
  1465. <gmtZeroFormat>GMT</gmtZeroFormat>
  1466. <regionFormat>{0} وقت</regionFormat>
  1467. <regionFormat type="daylight">{0} (+1)</regionFormat>
  1468. <regionFormat type="standard">{0} (+0)</regionFormat>
  1469. <fallbackFormat>{1} ({0})</fallbackFormat>
  1470. <zone type="Etc/Unknown">
  1471. <exemplarCity>نامعلوم شہر</exemplarCity>
  1472. </zone>
  1473. <zone type="Europe/Andorra">
  1474. <exemplarCity>انڈورا</exemplarCity>
  1475. </zone>
  1476. <zone type="Asia/Dubai">
  1477. <exemplarCity>دوبئی</exemplarCity>
  1478. </zone>
  1479. <zone type="Asia/Kabul">
  1480. <exemplarCity>کابل</exemplarCity>
  1481. </zone>
  1482. <zone type="America/Antigua">
  1483. <exemplarCity>انٹیگوا</exemplarCity>
  1484. </zone>
  1485. <zone type="America/Anguilla">
  1486. <exemplarCity>انگویلا</exemplarCity>
  1487. </zone>
  1488. <zone type="Europe/Tirane">
  1489. <exemplarCity>ٹیرانی</exemplarCity>
  1490. </zone>
  1491. <zone type="Asia/Yerevan">
  1492. <exemplarCity>یریوان</exemplarCity>
  1493. </zone>
  1494. <zone type="Africa/Luanda">
  1495. <exemplarCity>لوانڈا</exemplarCity>
  1496. </zone>
  1497. <zone type="Antarctica/Rothera">
  1498. <exemplarCity>روتھیرا</exemplarCity>
  1499. </zone>
  1500. <zone type="Antarctica/Palmer">
  1501. <exemplarCity>پلمیر</exemplarCity>
  1502. </zone>
  1503. <zone type="Antarctica/Syowa">
  1504. <exemplarCity>سیووا</exemplarCity>
  1505. </zone>
  1506. <zone type="Antarctica/Mawson">
  1507. <exemplarCity>ماؤسن</exemplarCity>
  1508. </zone>
  1509. <zone type="Antarctica/Davis">
  1510. <exemplarCity>ڈیوس</exemplarCity>
  1511. </zone>
  1512. <zone type="Antarctica/Vostok">
  1513. <exemplarCity>ووستوک</exemplarCity>
  1514. </zone>
  1515. <zone type="Antarctica/Casey">
  1516. <exemplarCity>کیسی</exemplarCity>
  1517. </zone>
  1518. <zone type="Antarctica/DumontDUrville">
  1519. <exemplarCity>ڈومونٹ ڈی ارویلے</exemplarCity>
  1520. </zone>
  1521. <zone type="Antarctica/McMurdo">
  1522. <exemplarCity>میک مرڈو</exemplarCity>
  1523. </zone>
  1524. <zone type="America/Argentina/Rio_Gallegos">
  1525. <exemplarCity>ریو گالیگوس</exemplarCity>
  1526. </zone>
  1527. <zone type="America/Mendoza">
  1528. <exemplarCity>مینڈوزا</exemplarCity>
  1529. </zone>
  1530. <zone type="America/Argentina/San_Juan">
  1531. <exemplarCity>سان جوآن</exemplarCity>
  1532. </zone>
  1533. <zone type="America/Argentina/Ushuaia">
  1534. <exemplarCity>اوشوآئیا</exemplarCity>
  1535. </zone>
  1536. <zone type="America/Argentina/La_Rioja">
  1537. <exemplarCity>لا ریئوجا</exemplarCity>
  1538. </zone>
  1539. <zone type="America/Argentina/San_Luis">
  1540. <exemplarCity>سان لوئس</exemplarCity>
  1541. </zone>
  1542. <zone type="America/Catamarca">
  1543. <exemplarCity>کیٹامارکا</exemplarCity>
  1544. </zone>
  1545. <zone type="America/Argentina/Salta">
  1546. <exemplarCity>سالٹا</exemplarCity>
  1547. </zone>
  1548. <zone type="America/Jujuy">
  1549. <exemplarCity>جوجوئی</exemplarCity>
  1550. </zone>
  1551. <zone type="America/Argentina/Tucuman">
  1552. <exemplarCity>ٹوکومین</exemplarCity>
  1553. </zone>
  1554. <zone type="America/Cordoba">
  1555. <exemplarCity>کورڈوبا</exemplarCity>
  1556. </zone>
  1557. <zone type="America/Buenos_Aires">
  1558. <exemplarCity>بیونس آئرس</exemplarCity>
  1559. </zone>
  1560. <zone type="Pacific/Pago_Pago">
  1561. <exemplarCity>پاگو پاگو</exemplarCity>
  1562. </zone>
  1563. <zone type="Europe/Vienna">
  1564. <exemplarCity>ویانا</exemplarCity>
  1565. </zone>
  1566. <zone type="Australia/Perth">
  1567. <exemplarCity>پرتھ</exemplarCity>
  1568. </zone>
  1569. <zone type="Australia/Eucla">
  1570. <exemplarCity>ایوکلا</exemplarCity>
  1571. </zone>
  1572. <zone type="Australia/Darwin">
  1573. <exemplarCity>ڈارون</exemplarCity>
  1574. </zone>
  1575. <zone type="Australia/Adelaide">
  1576. <exemplarCity>اڈیلائڈ</exemplarCity>
  1577. </zone>
  1578. <zone type="Australia/Broken_Hill">
  1579. <exemplarCity>بروکن ہِل</exemplarCity>
  1580. </zone>
  1581. <zone type="Australia/Currie">
  1582. <exemplarCity>کیوری</exemplarCity>
  1583. </zone>
  1584. <zone type="Australia/Melbourne">
  1585. <exemplarCity>ملبورن</exemplarCity>
  1586. </zone>
  1587. <zone type="Australia/Hobart">
  1588. <exemplarCity>ہوبارٹ</exemplarCity>
  1589. </zone>
  1590. <zone type="Australia/Lindeman">
  1591. <exemplarCity>لِنڈمین</exemplarCity>
  1592. </zone>
  1593. <zone type="Australia/Sydney">
  1594. <exemplarCity>سڈنی</exemplarCity>
  1595. </zone>
  1596. <zone type="Australia/Brisbane">
  1597. <exemplarCity>برسبین</exemplarCity>
  1598. </zone>
  1599. <zone type="Antarctica/Macquarie">
  1600. <exemplarCity>میکواری</exemplarCity>
  1601. </zone>
  1602. <zone type="Australia/Lord_Howe">
  1603. <exemplarCity>لارڈ ہووے</exemplarCity>
  1604. </zone>
  1605. <zone type="America/Aruba">
  1606. <exemplarCity>اروبا</exemplarCity>
  1607. </zone>
  1608. <zone type="Europe/Mariehamn">
  1609. <exemplarCity>میریہام</exemplarCity>
  1610. </zone>
  1611. <zone type="Asia/Baku">
  1612. <exemplarCity>باکو</exemplarCity>
  1613. </zone>
  1614. <zone type="Europe/Sarajevo">
  1615. <exemplarCity>سراجیوو</exemplarCity>
  1616. </zone>
  1617. <zone type="America/Barbados">
  1618. <exemplarCity>باربادوس</exemplarCity>
  1619. </zone>
  1620. <zone type="Asia/Dhaka">
  1621. <exemplarCity>ڈھاکہ</exemplarCity>
  1622. </zone>
  1623. <zone type="Europe/Brussels">
  1624. <exemplarCity>برسلز</exemplarCity>
  1625. </zone>
  1626. <zone type="Africa/Ouagadougou">
  1627. <exemplarCity>اؤگاڈؤگوو</exemplarCity>
  1628. </zone>
  1629. <zone type="Europe/Sofia">
  1630. <exemplarCity>صوفیہ</exemplarCity>
  1631. </zone>
  1632. <zone type="Asia/Bahrain">
  1633. <exemplarCity>بحرین</exemplarCity>
  1634. </zone>
  1635. <zone type="Africa/Bujumbura">
  1636. <exemplarCity>بجمبرا</exemplarCity>
  1637. </zone>
  1638. <zone type="Africa/Porto-Novo">
  1639. <exemplarCity>پورٹو نووا</exemplarCity>
  1640. </zone>
  1641. <zone type="America/St_Barthelemy">
  1642. <exemplarCity>سینٹ برتھیلمی</exemplarCity>
  1643. </zone>
  1644. <zone type="Atlantic/Bermuda">
  1645. <exemplarCity>برمودا</exemplarCity>
  1646. </zone>
  1647. <zone type="Asia/Brunei">
  1648. <exemplarCity>برونئی</exemplarCity>
  1649. </zone>
  1650. <zone type="America/La_Paz">
  1651. <exemplarCity>لا پاز</exemplarCity>
  1652. </zone>
  1653. <zone type="America/Kralendijk">
  1654. <exemplarCity>کرالینڈیجک</exemplarCity>
  1655. </zone>
  1656. <zone type="America/Eirunepe">
  1657. <exemplarCity>ایرونیپ</exemplarCity>
  1658. </zone>
  1659. <zone type="America/Rio_Branco">
  1660. <exemplarCity>ریئو برینکو</exemplarCity>
  1661. </zone>
  1662. <zone type="America/Porto_Velho">
  1663. <exemplarCity>پورٹو ویلہو</exemplarCity>
  1664. </zone>
  1665. <zone type="America/Boa_Vista">
  1666. <exemplarCity>بوآ وسٹا</exemplarCity>
  1667. </zone>
  1668. <zone type="America/Manaus">
  1669. <exemplarCity>مناؤس</exemplarCity>
  1670. </zone>
  1671. <zone type="America/Cuiaba">
  1672. <exemplarCity>کوئیابا</exemplarCity>
  1673. </zone>
  1674. <zone type="America/Santarem">
  1675. <exemplarCity>سنٹارین</exemplarCity>
  1676. </zone>
  1677. <zone type="America/Campo_Grande">
  1678. <exemplarCity>کیمپو گرینڈ</exemplarCity>
  1679. </zone>
  1680. <zone type="America/Belem">
  1681. <exemplarCity>بیلیم</exemplarCity>
  1682. </zone>
  1683. <zone type="America/Araguaina">
  1684. <exemplarCity>اراگویانا</exemplarCity>
  1685. </zone>
  1686. <zone type="America/Sao_Paulo">
  1687. <exemplarCity>ساؤ پالو</exemplarCity>
  1688. </zone>
  1689. <zone type="America/Bahia">
  1690. <exemplarCity>باہیا</exemplarCity>
  1691. </zone>
  1692. <zone type="America/Fortaleza">
  1693. <exemplarCity>فورٹالیزا</exemplarCity>
  1694. </zone>
  1695. <zone type="America/Maceio">
  1696. <exemplarCity>میسیئو</exemplarCity>
  1697. </zone>
  1698. <zone type="America/Recife">
  1699. <exemplarCity>ریسائف</exemplarCity>
  1700. </zone>
  1701. <zone type="America/Noronha">
  1702. <exemplarCity>نورونہا</exemplarCity>
  1703. </zone>
  1704. <zone type="America/Nassau">
  1705. <exemplarCity>نساؤ</exemplarCity>
  1706. </zone>
  1707. <zone type="Asia/Thimphu">
  1708. <exemplarCity>تھمپو</exemplarCity>
  1709. </zone>
  1710. <zone type="Africa/Gaborone">
  1711. <exemplarCity>جیبورون</exemplarCity>
  1712. </zone>
  1713. <zone type="Europe/Minsk">
  1714. <exemplarCity>مِنسک</exemplarCity>
  1715. </zone>
  1716. <zone type="America/Belize">
  1717. <exemplarCity>بیلائز</exemplarCity>
  1718. </zone>
  1719. <zone type="America/Dawson">
  1720. <exemplarCity>ڈاؤسن</exemplarCity>
  1721. </zone>
  1722. <zone type="America/Whitehorse">
  1723. <exemplarCity>وہائٹ ہارس</exemplarCity>
  1724. </zone>
  1725. <zone type="America/Inuvik">
  1726. <exemplarCity>انووِک</exemplarCity>
  1727. </zone>
  1728. <zone type="America/Vancouver">
  1729. <exemplarCity>وینکوور</exemplarCity>
  1730. </zone>
  1731. <zone type="America/Dawson_Creek">
  1732. <exemplarCity>ڈاؤسن کریک</exemplarCity>
  1733. </zone>
  1734. <zone type="America/Creston">
  1735. <exemplarCity>کریسٹون</exemplarCity>
  1736. </zone>
  1737. <zone type="America/Yellowknife">
  1738. <exemplarCity>ایلو نائف</exemplarCity>
  1739. </zone>
  1740. <zone type="America/Edmonton">
  1741. <exemplarCity>ایڈمونٹن</exemplarCity>
  1742. </zone>
  1743. <zone type="America/Swift_Current">
  1744. <exemplarCity>سوِفٹ کرنٹ</exemplarCity>
  1745. </zone>
  1746. <zone type="America/Cambridge_Bay">
  1747. <exemplarCity>کیمبرج کی کھاڑی</exemplarCity>
  1748. </zone>
  1749. <zone type="America/Regina">
  1750. <exemplarCity>ریجینا</exemplarCity>
  1751. </zone>
  1752. <zone type="America/Winnipeg">
  1753. <exemplarCity>ونّیپیگ</exemplarCity>
  1754. </zone>
  1755. <zone type="America/Resolute">
  1756. <exemplarCity>ریزولیوٹ</exemplarCity>
  1757. </zone>
  1758. <zone type="America/Rainy_River">
  1759. <exemplarCity>برساتی ندی</exemplarCity>
  1760. </zone>
  1761. <zone type="America/Rankin_Inlet">
  1762. <exemplarCity>رینکن انلیٹ</exemplarCity>
  1763. </zone>
  1764. <zone type="America/Coral_Harbour">
  1765. <exemplarCity>اٹیکوکن</exemplarCity>
  1766. </zone>
  1767. <zone type="America/Thunder_Bay">
  1768. <exemplarCity>تھنڈر بے</exemplarCity>
  1769. </zone>
  1770. <zone type="America/Nipigon">
  1771. <exemplarCity>نپیگون</exemplarCity>
  1772. </zone>
  1773. <zone type="America/Toronto">
  1774. <exemplarCity>ٹورنٹو</exemplarCity>
  1775. </zone>
  1776. <zone type="America/Iqaluit">
  1777. <exemplarCity>ایکالوئٹ</exemplarCity>
  1778. </zone>
  1779. <zone type="America/Pangnirtung">
  1780. <exemplarCity>پینگنِرٹنگ</exemplarCity>
  1781. </zone>
  1782. <zone type="America/Moncton">
  1783. <exemplarCity>مونکٹن</exemplarCity>
  1784. </zone>
  1785. <zone type="America/Halifax">
  1786. <exemplarCity>ہیلیفیکس</exemplarCity>
  1787. </zone>
  1788. <zone type="America/Goose_Bay">
  1789. <exemplarCity>گوس کی کھاڑی</exemplarCity>
  1790. </zone>
  1791. <zone type="America/Glace_Bay">
  1792. <exemplarCity>گلیس کی کھاڑی</exemplarCity>
  1793. </zone>
  1794. <zone type="America/Blanc-Sablon">
  1795. <exemplarCity>بلانک سبلون</exemplarCity>
  1796. </zone>
  1797. <zone type="America/St_Johns">
  1798. <exemplarCity>سینٹ جانز</exemplarCity>
  1799. </zone>
  1800. <zone type="Indian/Cocos">
  1801. <exemplarCity>کوکوس</exemplarCity>
  1802. </zone>
  1803. <zone type="Africa/Kinshasa">
  1804. <exemplarCity>کنشاسا</exemplarCity>
  1805. </zone>
  1806. <zone type="Africa/Lubumbashi">
  1807. <exemplarCity>لوبمباشی</exemplarCity>
  1808. </zone>
  1809. <zone type="Africa/Bangui">
  1810. <exemplarCity>بنگوئی</exemplarCity>
  1811. </zone>
  1812. <zone type="Africa/Brazzaville">
  1813. <exemplarCity>برازاویلے</exemplarCity>
  1814. </zone>
  1815. <zone type="Europe/Zurich">
  1816. <exemplarCity>زیورخ</exemplarCity>
  1817. </zone>
  1818. <zone type="Africa/Abidjan">
  1819. <exemplarCity>عابدجان</exemplarCity>
  1820. </zone>
  1821. <zone type="Pacific/Rarotonga">
  1822. <exemplarCity>راروٹونگا</exemplarCity>
  1823. </zone>
  1824. <zone type="Pacific/Easter">
  1825. <exemplarCity>ایسٹر</exemplarCity>
  1826. </zone>
  1827. <zone type="America/Santiago">
  1828. <exemplarCity>سنٹیاگو</exemplarCity>
  1829. </zone>
  1830. <zone type="Africa/Douala">
  1831. <exemplarCity>ڈوآلا</exemplarCity>
  1832. </zone>
  1833. <zone type="Asia/Kashgar">
  1834. <exemplarCity>کاشغر</exemplarCity>
  1835. </zone>
  1836. <zone type="Asia/Urumqi">
  1837. <exemplarCity>یورومکی</exemplarCity>
  1838. </zone>
  1839. <zone type="Asia/Chongqing">
  1840. <exemplarCity>چانگ کنگ</exemplarCity>
  1841. </zone>
  1842. <zone type="Asia/Shanghai">
  1843. <exemplarCity>شنگھائی</exemplarCity>
  1844. </zone>
  1845. <zone type="Asia/Harbin">
  1846. <exemplarCity>ہربِن</exemplarCity>
  1847. </zone>
  1848. <zone type="America/Bogota">
  1849. <exemplarCity>بگوٹا</exemplarCity>
  1850. </zone>
  1851. <zone type="America/Costa_Rica">
  1852. <exemplarCity>کوسٹا ریکا</exemplarCity>
  1853. </zone>
  1854. <zone type="America/Havana">
  1855. <exemplarCity>ہوانا</exemplarCity>
  1856. </zone>
  1857. <zone type="Atlantic/Cape_Verde">
  1858. <exemplarCity>کیپ ورڈی</exemplarCity>
  1859. </zone>
  1860. <zone type="America/Curacao">
  1861. <exemplarCity>کیوراکاؤ</exemplarCity>
  1862. </zone>
  1863. <zone type="Indian/Christmas">
  1864. <exemplarCity>کرسمس</exemplarCity>
  1865. </zone>
  1866. <zone type="Asia/Nicosia">
  1867. <exemplarCity>نکوسیا</exemplarCity>
  1868. </zone>
  1869. <zone type="Europe/Prague">
  1870. <exemplarCity>پراگ</exemplarCity>
  1871. </zone>
  1872. <zone type="Europe/Busingen">
  1873. <exemplarCity>بزنجن</exemplarCity>
  1874. </zone>
  1875. <zone type="Europe/Berlin">
  1876. <exemplarCity>برلن</exemplarCity>
  1877. </zone>
  1878. <zone type="Africa/Djibouti">
  1879. <exemplarCity>جبوتی</exemplarCity>
  1880. </zone>
  1881. <zone type="Europe/Copenhagen">
  1882. <exemplarCity>کوپن ہیگن</exemplarCity>
  1883. </zone>
  1884. <zone type="America/Dominica">
  1885. <exemplarCity>ڈومنیکا</exemplarCity>
  1886. </zone>
  1887. <zone type="America/Santo_Domingo">
  1888. <exemplarCity>سانتو ڈومنگو</exemplarCity>
  1889. </zone>
  1890. <zone type="Africa/Algiers">
  1891. <exemplarCity>الجیئرس</exemplarCity>
  1892. </zone>
  1893. <zone type="Pacific/Galapagos">
  1894. <exemplarCity>گیلاپیگوس</exemplarCity>
  1895. </zone>
  1896. <zone type="America/Guayaquil">
  1897. <exemplarCity>گوآیاکوئل</exemplarCity>
  1898. </zone>
  1899. <zone type="Europe/Tallinn">
  1900. <exemplarCity>تالِّن</exemplarCity>
  1901. </zone>
  1902. <zone type="Africa/Cairo">
  1903. <exemplarCity>قاہرہ</exemplarCity>
  1904. </zone>
  1905. <zone type="Africa/El_Aaiun">
  1906. <exemplarCity>العیون</exemplarCity>
  1907. </zone>
  1908. <zone type="Africa/Asmera">
  1909. <exemplarCity>اسمارا</exemplarCity>
  1910. </zone>
  1911. <zone type="Atlantic/Canary">
  1912. <exemplarCity>کینری</exemplarCity>
  1913. </zone>
  1914. <zone type="Africa/Ceuta">
  1915. <exemplarCity>سیوٹا</exemplarCity>
  1916. </zone>
  1917. <zone type="Europe/Madrid">
  1918. <exemplarCity>میڈرڈ</exemplarCity>
  1919. </zone>
  1920. <zone type="Africa/Addis_Ababa">
  1921. <exemplarCity>عدیس ابابا</exemplarCity>
  1922. </zone>
  1923. <zone type="Europe/Helsinki">
  1924. <exemplarCity>ہیلسنکی</exemplarCity>
  1925. </zone>
  1926. <zone type="Pacific/Fiji">
  1927. <exemplarCity>فجی</exemplarCity>
  1928. </zone>
  1929. <zone type="Atlantic/Stanley">
  1930. <exemplarCity>اسٹینلے</exemplarCity>
  1931. </zone>
  1932. <zone type="Pacific/Truk">
  1933. <exemplarCity>چیوک</exemplarCity>
  1934. </zone>
  1935. <zone type="Pacific/Ponape">
  1936. <exemplarCity>پونپیئی</exemplarCity>
  1937. </zone>
  1938. <zone type="Pacific/Kosrae">
  1939. <exemplarCity>کوسرائی</exemplarCity>
  1940. </zone>
  1941. <zone type="Atlantic/Faeroe">
  1942. <exemplarCity>فروئی</exemplarCity>
  1943. </zone>
  1944. <zone type="Europe/Paris">
  1945. <exemplarCity>پیرس</exemplarCity>
  1946. </zone>
  1947. <zone type="Africa/Libreville">
  1948. <exemplarCity>لبرے ویلے</exemplarCity>
  1949. </zone>
  1950. <zone type="Europe/London">
  1951. <long>
  1952. <daylight>برطانوی کا گرما کے وقت</daylight>
  1953. </long>
  1954. <exemplarCity>لندن</exemplarCity>
  1955. </zone>
  1956. <zone type="America/Grenada">
  1957. <exemplarCity>غرناطہ</exemplarCity>
  1958. </zone>
  1959. <zone type="Asia/Tbilisi">
  1960. <exemplarCity>طبلیسی</exemplarCity>
  1961. </zone>
  1962. <zone type="America/Cayenne">
  1963. <exemplarCity>کیینّی</exemplarCity>
  1964. </zone>
  1965. <zone type="Europe/Guernsey">
  1966. <exemplarCity>گوئرنسی</exemplarCity>
  1967. </zone>
  1968. <zone type="Africa/Accra">
  1969. <exemplarCity>اکّرا</exemplarCity>
  1970. </zone>
  1971. <zone type="Europe/Gibraltar">
  1972. <exemplarCity>جبل الطارق</exemplarCity>
  1973. </zone>
  1974. <zone type="America/Thule">
  1975. <exemplarCity>تھولو</exemplarCity>
  1976. </zone>
  1977. <zone type="America/Godthab">
  1978. <exemplarCity>گاڈتھیب</exemplarCity>
  1979. </zone>
  1980. <zone type="America/Scoresbysund">
  1981. <exemplarCity>اسکورز بائی سنڈ</exemplarCity>
  1982. </zone>
  1983. <zone type="America/Danmarkshavn">
  1984. <exemplarCity>ڈنمارک شاون</exemplarCity>
  1985. </zone>
  1986. <zone type="Africa/Banjul">
  1987. <exemplarCity>بنجول</exemplarCity>
  1988. </zone>
  1989. <zone type="Africa/Conakry">
  1990. <exemplarCity>کونکری</exemplarCity>
  1991. </zone>
  1992. <zone type="America/Guadeloupe">
  1993. <exemplarCity>گواڈیلوپ</exemplarCity>
  1994. </zone>
  1995. <zone type="Africa/Malabo">
  1996. <exemplarCity>ملابو</exemplarCity>
  1997. </zone>
  1998. <zone type="Europe/Athens">
  1999. <exemplarCity>ایتھنز</exemplarCity>
  2000. </zone>
  2001. <zone type="Atlantic/South_Georgia">
  2002. <exemplarCity>جنوبی جارجیا</exemplarCity>
  2003. </zone>
  2004. <zone type="America/Guatemala">
  2005. <exemplarCity>گواٹے مالا</exemplarCity>
  2006. </zone>
  2007. <zone type="Pacific/Guam">
  2008. <exemplarCity>گوآم</exemplarCity>
  2009. </zone>
  2010. <zone type="Africa/Bissau">
  2011. <exemplarCity>بِساؤ</exemplarCity>
  2012. </zone>
  2013. <zone type="America/Guyana">
  2014. <exemplarCity>گیانا</exemplarCity>
  2015. </zone>
  2016. <zone type="Asia/Hong_Kong">
  2017. <exemplarCity>ہانگ کانگ</exemplarCity>
  2018. </zone>
  2019. <zone type="America/Tegucigalpa">
  2020. <exemplarCity>ٹیگوسیگالپے</exemplarCity>
  2021. </zone>
  2022. <zone type="Europe/Zagreb">
  2023. <exemplarCity>زیگریب</exemplarCity>
  2024. </zone>
  2025. <zone type="America/Port-au-Prince">
  2026. <exemplarCity>پورٹ او پرنس</exemplarCity>
  2027. </zone>
  2028. <zone type="Europe/Budapest">
  2029. <exemplarCity>بدھاپیسٹ</exemplarCity>
  2030. </zone>
  2031. <zone type="Asia/Jakarta">
  2032. <exemplarCity>جکارتہ</exemplarCity>
  2033. </zone>
  2034. <zone type="Asia/Pontianak">
  2035. <exemplarCity>پونٹیانک</exemplarCity>
  2036. </zone>
  2037. <zone type="Asia/Makassar">
  2038. <exemplarCity>مکاسر</exemplarCity>
  2039. </zone>
  2040. <zone type="Asia/Jayapura">
  2041. <exemplarCity>جے پورہ</exemplarCity>
  2042. </zone>
  2043. <zone type="Europe/Dublin">
  2044. <long>
  2045. <daylight>آئرش کا گرما کے وقت</daylight>
  2046. </long>
  2047. <exemplarCity>ڈبلن</exemplarCity>
  2048. </zone>
  2049. <zone type="Asia/Jerusalem">
  2050. <exemplarCity>یروشلم</exemplarCity>
  2051. </zone>
  2052. <zone type="Europe/Isle_of_Man">
  2053. <exemplarCity>آئل آف مین</exemplarCity>
  2054. </zone>
  2055. <zone type="Asia/Calcutta">
  2056. <exemplarCity>کولکاتا</exemplarCity>
  2057. </zone>
  2058. <zone type="Indian/Chagos">
  2059. <exemplarCity>چاگوس</exemplarCity>
  2060. </zone>
  2061. <zone type="Asia/Baghdad">
  2062. <exemplarCity>بغداد</exemplarCity>
  2063. </zone>
  2064. <zone type="Asia/Tehran">
  2065. <exemplarCity>تہران</exemplarCity>
  2066. </zone>
  2067. <zone type="Atlantic/Reykjavik">
  2068. <exemplarCity>ریکجاوک</exemplarCity>
  2069. </zone>
  2070. <zone type="Europe/Rome">
  2071. <exemplarCity>روم</exemplarCity>
  2072. </zone>
  2073. <zone type="Europe/Jersey">
  2074. <exemplarCity>جرسی</exemplarCity>
  2075. </zone>
  2076. <zone type="America/Jamaica">
  2077. <exemplarCity>جمائیکا</exemplarCity>
  2078. </zone>
  2079. <zone type="Asia/Amman">
  2080. <exemplarCity>امّان</exemplarCity>
  2081. </zone>
  2082. <zone type="Asia/Tokyo">
  2083. <exemplarCity>ٹوکیو</exemplarCity>
  2084. </zone>
  2085. <zone type="Africa/Nairobi">
  2086. <exemplarCity>نیروبی</exemplarCity>
  2087. </zone>
  2088. <zone type="Asia/Bishkek">
  2089. <exemplarCity>بشکیک</exemplarCity>
  2090. </zone>
  2091. <zone type="Asia/Phnom_Penh">
  2092. <exemplarCity>نام پنہ</exemplarCity>
  2093. </zone>
  2094. <zone type="Pacific/Enderbury">
  2095. <exemplarCity>اینڈربری</exemplarCity>
  2096. </zone>
  2097. <zone type="Pacific/Kiritimati">
  2098. <exemplarCity>کریتیماٹی</exemplarCity>
  2099. </zone>
  2100. <zone type="Pacific/Tarawa">
  2101. <exemplarCity>ٹراوا</exemplarCity>
  2102. </zone>
  2103. <zone type="Indian/Comoro">
  2104. <exemplarCity>کومورو</exemplarCity>
  2105. </zone>
  2106. <zone type="America/St_Kitts">
  2107. <exemplarCity>سینٹ کٹس</exemplarCity>
  2108. </zone>
  2109. <zone type="Asia/Pyongyang">
  2110. <exemplarCity>پیونگ یانگ</exemplarCity>
  2111. </zone>
  2112. <zone type="Asia/Seoul">
  2113. <exemplarCity>سیئول</exemplarCity>
  2114. </zone>
  2115. <zone type="Asia/Kuwait">
  2116. <exemplarCity>کویت</exemplarCity>
  2117. </zone>
  2118. <zone type="America/Cayman">
  2119. <exemplarCity>کیمین</exemplarCity>
  2120. </zone>
  2121. <zone type="Asia/Aqtau">
  2122. <exemplarCity>اکتاؤ</exemplarCity>
  2123. </zone>
  2124. <zone type="Asia/Oral">
  2125. <exemplarCity>زبانی</exemplarCity>
  2126. </zone>
  2127. <zone type="Asia/Aqtobe">
  2128. <exemplarCity>اکٹوب</exemplarCity>
  2129. </zone>
  2130. <zone type="Asia/Qyzylorda">
  2131. <exemplarCity>کیزیلورڈا</exemplarCity>
  2132. </zone>
  2133. <zone type="Asia/Almaty">
  2134. <exemplarCity>الماٹی</exemplarCity>
  2135. </zone>
  2136. <zone type="Asia/Vientiane">
  2137. <exemplarCity>وینٹیانا</exemplarCity>
  2138. </zone>
  2139. <zone type="Asia/Beirut">
  2140. <exemplarCity>بیروت</exemplarCity>
  2141. </zone>
  2142. <zone type="America/St_Lucia">
  2143. <exemplarCity>سینٹ لوسیا</exemplarCity>
  2144. </zone>
  2145. <zone type="Europe/Vaduz">
  2146. <exemplarCity>ویڈوز</exemplarCity>
  2147. </zone>
  2148. <zone type="Asia/Colombo">
  2149. <exemplarCity>کولمبو</exemplarCity>
  2150. </zone>
  2151. <zone type="Africa/Monrovia">
  2152. <exemplarCity>مونروویا</exemplarCity>
  2153. </zone>
  2154. <zone type="Africa/Maseru">
  2155. <exemplarCity>مسیرو</exemplarCity>
  2156. </zone>
  2157. <zone type="Europe/Vilnius">
  2158. <exemplarCity>وِلنیئس</exemplarCity>
  2159. </zone>
  2160. <zone type="Europe/Luxembourg">
  2161. <exemplarCity>لگژمبرگ</exemplarCity>
  2162. </zone>
  2163. <zone type="Europe/Riga">
  2164. <exemplarCity>ریگا</exemplarCity>
  2165. </zone>
  2166. <zone type="Africa/Tripoli">
  2167. <exemplarCity>ٹریپولی</exemplarCity>
  2168. </zone>
  2169. <zone type="Africa/Casablanca">
  2170. <exemplarCity>کیسا بلانکا</exemplarCity>
  2171. </zone>
  2172. <zone type="Europe/Monaco">
  2173. <exemplarCity>موناکو</exemplarCity>
  2174. </zone>
  2175. <zone type="Europe/Chisinau">
  2176. <exemplarCity>چیسیناؤ</exemplarCity>
  2177. </zone>
  2178. <zone type="Europe/Podgorica">
  2179. <exemplarCity>پوڈگورسیا</exemplarCity>
  2180. </zone>
  2181. <zone type="America/Marigot">
  2182. <exemplarCity>میریگوٹ</exemplarCity>
  2183. </zone>
  2184. <zone type="Indian/Antananarivo">
  2185. <exemplarCity>انٹاناناریوو</exemplarCity>
  2186. </zone>
  2187. <zone type="Pacific/Kwajalein">
  2188. <exemplarCity>کواجیلین</exemplarCity>
  2189. </zone>
  2190. <zone type="Pacific/Majuro">
  2191. <exemplarCity>مجورو</exemplarCity>
  2192. </zone>
  2193. <zone type="Europe/Skopje">
  2194. <exemplarCity>اسکوپجے</exemplarCity>
  2195. </zone>
  2196. <zone type="Africa/Bamako">
  2197. <exemplarCity>بماکو</exemplarCity>
  2198. </zone>
  2199. <zone type="Asia/Rangoon">
  2200. <exemplarCity>رنگون</exemplarCity>
  2201. </zone>
  2202. <zone type="Asia/Hovd">
  2203. <exemplarCity>ہووارڈ</exemplarCity>
  2204. </zone>
  2205. <zone type="Asia/Ulaanbaatar">
  2206. <exemplarCity>اولان باتار</exemplarCity>
  2207. </zone>
  2208. <zone type="Asia/Choibalsan">
  2209. <exemplarCity>کوائبلسان</exemplarCity>
  2210. </zone>
  2211. <zone type="Asia/Macau">
  2212. <exemplarCity>مکاؤ</exemplarCity>
  2213. </zone>
  2214. <zone type="Pacific/Saipan">
  2215. <exemplarCity>سائپین</exemplarCity>
  2216. </zone>
  2217. <zone type="America/Martinique">
  2218. <exemplarCity>مارٹینک</exemplarCity>
  2219. </zone>
  2220. <zone type="Africa/Nouakchott">
  2221. <exemplarCity>نؤآک چاٹ</exemplarCity>
  2222. </zone>
  2223. <zone type="America/Montserrat">
  2224. <exemplarCity>مونٹسیراٹ</exemplarCity>
  2225. </zone>
  2226. <zone type="Europe/Malta">
  2227. <exemplarCity>مالٹا</exemplarCity>
  2228. </zone>
  2229. <zone type="Indian/Mauritius">
  2230. <exemplarCity>ماریشس</exemplarCity>
  2231. </zone>
  2232. <zone type="Indian/Maldives">
  2233. <exemplarCity>مالدیپ</exemplarCity>
  2234. </zone>
  2235. <zone type="Africa/Blantyre">
  2236. <exemplarCity>بلینٹائر</exemplarCity>
  2237. </zone>
  2238. <zone type="America/Tijuana">
  2239. <exemplarCity>تیجوآنا</exemplarCity>
  2240. </zone>
  2241. <zone type="America/Santa_Isabel">
  2242. <exemplarCity>سانتا ایزابیل</exemplarCity>
  2243. </zone>
  2244. <zone type="America/Hermosillo">
  2245. <exemplarCity>ہرموسیلو</exemplarCity>
  2246. </zone>
  2247. <zone type="America/Mazatlan">
  2248. <exemplarCity>میزٹلان</exemplarCity>
  2249. </zone>
  2250. <zone type="America/Chihuahua">
  2251. <exemplarCity>چیہوآہوآ</exemplarCity>
  2252. </zone>
  2253. <zone type="America/Bahia_Banderas">
  2254. <exemplarCity>بہیا بندراز</exemplarCity>
  2255. </zone>
  2256. <zone type="America/Ojinaga">
  2257. <exemplarCity>اوجیناگا</exemplarCity>
  2258. </zone>
  2259. <zone type="America/Monterrey">
  2260. <exemplarCity>مونٹیری</exemplarCity>
  2261. </zone>
  2262. <zone type="America/Mexico_City">
  2263. <exemplarCity>میکسیکو سٹی</exemplarCity>
  2264. </zone>
  2265. <zone type="America/Matamoros">
  2266. <exemplarCity>میٹاموروس</exemplarCity>
  2267. </zone>
  2268. <zone type="America/Merida">
  2269. <exemplarCity>میریڈا</exemplarCity>
  2270. </zone>
  2271. <zone type="America/Cancun">
  2272. <exemplarCity>کنکیون</exemplarCity>
  2273. </zone>
  2274. <zone type="Asia/Kuala_Lumpur">
  2275. <exemplarCity>کوالا لمپور</exemplarCity>
  2276. </zone>
  2277. <zone type="Asia/Kuching">
  2278. <exemplarCity>کیوچنگ</exemplarCity>
  2279. </zone>
  2280. <zone type="Africa/Maputo">
  2281. <exemplarCity>مپوٹو</exemplarCity>
  2282. </zone>
  2283. <zone type="Africa/Windhoek">
  2284. <exemplarCity>ونڈہوک</exemplarCity>
  2285. </zone>
  2286. <zone type="Pacific/Noumea">
  2287. <exemplarCity>نؤمیا</exemplarCity>
  2288. </zone>
  2289. <zone type="Africa/Niamey">
  2290. <exemplarCity>نیامی</exemplarCity>
  2291. </zone>
  2292. <zone type="Pacific/Norfolk">
  2293. <exemplarCity>نورفوک</exemplarCity>
  2294. </zone>
  2295. <zone type="Africa/Lagos">
  2296. <exemplarCity>لاگوس</exemplarCity>
  2297. </zone>
  2298. <zone type="America/Managua">
  2299. <exemplarCity>مناگوآ</exemplarCity>
  2300. </zone>
  2301. <zone type="Europe/Amsterdam">
  2302. <exemplarCity>ایمسٹرڈم</exemplarCity>
  2303. </zone>
  2304. <zone type="Europe/Oslo">
  2305. <exemplarCity>اوسلو</exemplarCity>
  2306. </zone>
  2307. <zone type="Asia/Katmandu">
  2308. <exemplarCity>کاٹھمنڈو</exemplarCity>
  2309. </zone>
  2310. <zone type="Pacific/Nauru">
  2311. <exemplarCity>ناؤرو</exemplarCity>
  2312. </zone>
  2313. <zone type="Pacific/Niue">
  2314. <exemplarCity>نیئو</exemplarCity>
  2315. </zone>
  2316. <zone type="Pacific/Chatham">
  2317. <exemplarCity>چیتھم</exemplarCity>
  2318. </zone>
  2319. <zone type="Pacific/Auckland">
  2320. <exemplarCity>آکلینڈ</exemplarCity>
  2321. </zone>
  2322. <zone type="Asia/Muscat">
  2323. <exemplarCity>مسقط</exemplarCity>
  2324. </zone>
  2325. <zone type="America/Panama">
  2326. <exemplarCity>پنامہ</exemplarCity>
  2327. </zone>
  2328. <zone type="America/Lima">
  2329. <exemplarCity>لیما</exemplarCity>
  2330. </zone>
  2331. <zone type="Pacific/Tahiti">
  2332. <exemplarCity>تاہیتی</exemplarCity>
  2333. </zone>
  2334. <zone type="Pacific/Marquesas">
  2335. <exemplarCity>مارکیساس</exemplarCity>
  2336. </zone>
  2337. <zone type="Pacific/Gambier">
  2338. <exemplarCity>گامبیئر</exemplarCity>
  2339. </zone>
  2340. <zone type="Pacific/Port_Moresby">
  2341. <exemplarCity>پورٹ موریسبی</exemplarCity>
  2342. </zone>
  2343. <zone type="Asia/Manila">
  2344. <exemplarCity>منیلا</exemplarCity>
  2345. </zone>
  2346. <zone type="Asia/Karachi">
  2347. <exemplarCity>کراچی</exemplarCity>
  2348. </zone>
  2349. <zone type="Europe/Warsaw">
  2350. <exemplarCity>وارسا</exemplarCity>
  2351. </zone>
  2352. <zone type="America/Miquelon">
  2353. <exemplarCity>میکلیئون</exemplarCity>
  2354. </zone>
  2355. <zone type="Pacific/Pitcairn">
  2356. <exemplarCity>پٹکائرن</exemplarCity>
  2357. </zone>
  2358. <zone type="America/Puerto_Rico">
  2359. <exemplarCity>پیورٹو ریکو</exemplarCity>
  2360. </zone>
  2361. <zone type="Asia/Gaza">
  2362. <exemplarCity>غزہ</exemplarCity>
  2363. </zone>
  2364. <zone type="Asia/Hebron">
  2365. <exemplarCity>ہیبرون</exemplarCity>
  2366. </zone>
  2367. <zone type="Atlantic/Azores">
  2368. <exemplarCity>ازوریس</exemplarCity>
  2369. </zone>
  2370. <zone type="Atlantic/Madeira">
  2371. <exemplarCity>مڈیئرا</exemplarCity>
  2372. </zone>
  2373. <zone type="Europe/Lisbon">
  2374. <exemplarCity>لسبن</exemplarCity>
  2375. </zone>
  2376. <zone type="Pacific/Palau">
  2377. <exemplarCity>پلاؤ</exemplarCity>
  2378. </zone>
  2379. <zone type="America/Asuncion">
  2380. <exemplarCity>اسنسیئن</exemplarCity>
  2381. </zone>
  2382. <zone type="Asia/Qatar">
  2383. <exemplarCity>قطر</exemplarCity>
  2384. </zone>
  2385. <zone type="Indian/Reunion">
  2386. <exemplarCity>ری یونین</exemplarCity>
  2387. </zone>
  2388. <zone type="Europe/Bucharest">
  2389. <exemplarCity>بخارسٹ</exemplarCity>
  2390. </zone>
  2391. <zone type="Europe/Belgrade">
  2392. <exemplarCity>بلغراد</exemplarCity>
  2393. </zone>
  2394. <zone type="Europe/Kaliningrad">
  2395. <exemplarCity>لینن گراد</exemplarCity>
  2396. </zone>
  2397. <zone type="Europe/Moscow">
  2398. <exemplarCity>ماسکو</exemplarCity>
  2399. </zone>
  2400. <zone type="Europe/Volgograd">
  2401. <exemplarCity>وولگوگراد</exemplarCity>
  2402. </zone>
  2403. <zone type="Europe/Samara">
  2404. <exemplarCity>سمارا</exemplarCity>
  2405. </zone>
  2406. <zone type="Asia/Yekaterinburg">
  2407. <exemplarCity>یکاٹیرِنبرگ</exemplarCity>
  2408. </zone>
  2409. <zone type="Asia/Omsk">
  2410. <exemplarCity>اومسک</exemplarCity>
  2411. </zone>
  2412. <zone type="Asia/Novosibirsk">
  2413. <exemplarCity>نوووسِبِرسک</exemplarCity>
  2414. </zone>
  2415. <zone type="Asia/Novokuznetsk">
  2416. <exemplarCity>نوووکوزنیتسک</exemplarCity>
  2417. </zone>
  2418. <zone type="Asia/Krasnoyarsk">
  2419. <exemplarCity>کریسنویارسک</exemplarCity>
  2420. </zone>
  2421. <zone type="Asia/Irkutsk">
  2422. <exemplarCity>ارکتسک</exemplarCity>
  2423. </zone>
  2424. <zone type="Asia/Yakutsk">
  2425. <exemplarCity>یکوتسک</exemplarCity>
  2426. </zone>
  2427. <zone type="Asia/Vladivostok">
  2428. <exemplarCity>ولادی ووستک</exemplarCity>
  2429. </zone>
  2430. <zone type="Asia/Khandyga">
  2431. <exemplarCity>خندیگا</exemplarCity>
  2432. </zone>
  2433. <zone type="Asia/Sakhalin">
  2434. <exemplarCity>سخالین</exemplarCity>
  2435. </zone>
  2436. <zone type="Asia/Ust-Nera">
  2437. <exemplarCity>اوسٹ-نیرا</exemplarCity>
  2438. </zone>
  2439. <zone type="Asia/Magadan">
  2440. <exemplarCity>میگیدن</exemplarCity>
  2441. </zone>
  2442. <zone type="Asia/Kamchatka">
  2443. <exemplarCity>کیمچٹکا</exemplarCity>
  2444. </zone>
  2445. <zone type="Asia/Anadyr">
  2446. <exemplarCity>انیدر</exemplarCity>
  2447. </zone>
  2448. <zone type="Africa/Kigali">
  2449. <exemplarCity>کگالی</exemplarCity>
  2450. </zone>
  2451. <zone type="Asia/Riyadh">
  2452. <exemplarCity>ریاض</exemplarCity>
  2453. </zone>
  2454. <zone type="Pacific/Guadalcanal">
  2455. <exemplarCity>گواڈل کینال</exemplarCity>
  2456. </zone>
  2457. <zone type="Indian/Mahe">
  2458. <exemplarCity>ماہی</exemplarCity>
  2459. </zone>
  2460. <zone type="Africa/Khartoum">
  2461. <exemplarCity>خرطوم</exemplarCity>
  2462. </zone>
  2463. <zone type="Europe/Stockholm">
  2464. <exemplarCity>اسٹاک ہوم</exemplarCity>
  2465. </zone>
  2466. <zone type="Asia/Singapore">
  2467. <exemplarCity>سنگاپور</exemplarCity>
  2468. </zone>
  2469. <zone type="Atlantic/St_Helena">
  2470. <exemplarCity>سینٹ ہیلینا</exemplarCity>
  2471. </zone>
  2472. <zone type="Europe/Ljubljana">
  2473. <exemplarCity>جبجانا</exemplarCity>
  2474. </zone>
  2475. <zone type="Arctic/Longyearbyen">
  2476. <exemplarCity>لانگ ایئر بین</exemplarCity>
  2477. </zone>
  2478. <zone type="Europe/Bratislava">
  2479. <exemplarCity>بریٹِسلاوا</exemplarCity>
  2480. </zone>
  2481. <zone type="Africa/Freetown">
  2482. <exemplarCity>فری ٹاؤن</exemplarCity>
  2483. </zone>
  2484. <zone type="Europe/San_Marino">
  2485. <exemplarCity>سان ماریانو</exemplarCity>
  2486. </zone>
  2487. <zone type="Africa/Dakar">
  2488. <exemplarCity>ڈکار</exemplarCity>
  2489. </zone>
  2490. <zone type="Africa/Mogadishu">
  2491. <exemplarCity>موگادیشو</exemplarCity>
  2492. </zone>
  2493. <zone type="America/Paramaribo">
  2494. <exemplarCity>پراماریبو</exemplarCity>
  2495. </zone>
  2496. <zone type="Africa/Juba">
  2497. <exemplarCity>جوبا</exemplarCity>
  2498. </zone>
  2499. <zone type="Africa/Sao_Tome">
  2500. <exemplarCity>ساؤ ٹوم</exemplarCity>
  2501. </zone>
  2502. <zone type="America/El_Salvador">
  2503. <exemplarCity>ال سلواڈور</exemplarCity>
  2504. </zone>
  2505. <zone type="America/Lower_Princes">
  2506. <exemplarCity>لوور پرنسس کوارٹر</exemplarCity>
  2507. </zone>
  2508. <zone type="Asia/Damascus">
  2509. <exemplarCity>دمشق</exemplarCity>
  2510. </zone>
  2511. <zone type="Africa/Mbabane">
  2512. <exemplarCity>مبابین</exemplarCity>
  2513. </zone>
  2514. <zone type="America/Grand_Turk">
  2515. <exemplarCity>عظیم ترک</exemplarCity>
  2516. </zone>
  2517. <zone type="Africa/Ndjamena">
  2518. <exemplarCity>ڈجامینا</exemplarCity>
  2519. </zone>
  2520. <zone type="Indian/Kerguelen">
  2521. <exemplarCity>کرگیولین</exemplarCity>
  2522. </zone>
  2523. <zone type="Africa/Lome">
  2524. <exemplarCity>لوم</exemplarCity>
  2525. </zone>
  2526. <zone type="Asia/Bangkok">
  2527. <exemplarCity>بنکاک</exemplarCity>
  2528. </zone>
  2529. <zone type="Asia/Dushanbe">
  2530. <exemplarCity>دوشانبے</exemplarCity>
  2531. </zone>
  2532. <zone type="Pacific/Fakaofo">
  2533. <exemplarCity>فکاؤفو</exemplarCity>
  2534. </zone>
  2535. <zone type="Asia/Dili">
  2536. <exemplarCity>ڈلی</exemplarCity>
  2537. </zone>
  2538. <zone type="Asia/Ashgabat">
  2539. <exemplarCity>اشغبت</exemplarCity>
  2540. </zone>
  2541. <zone type="Africa/Tunis">
  2542. <exemplarCity>تیونس</exemplarCity>
  2543. </zone>
  2544. <zone type="Pacific/Tongatapu">
  2545. <exemplarCity>ٹونگاٹاپو</exemplarCity>
  2546. </zone>
  2547. <zone type="Europe/Istanbul">
  2548. <exemplarCity>استنبول</exemplarCity>
  2549. </zone>
  2550. <zone type="America/Port_of_Spain">
  2551. <exemplarCity>پورٹ آف اسپین</exemplarCity>
  2552. </zone>
  2553. <zone type="Pacific/Funafuti">
  2554. <exemplarCity>فیونافیوٹی</exemplarCity>
  2555. </zone>
  2556. <zone type="Asia/Taipei">
  2557. <exemplarCity>تائپے</exemplarCity>
  2558. </zone>
  2559. <zone type="Africa/Dar_es_Salaam">
  2560. <exemplarCity>دار السلام</exemplarCity>
  2561. </zone>
  2562. <zone type="Europe/Uzhgorod">
  2563. <exemplarCity>ازگوروڈ</exemplarCity>
  2564. </zone>
  2565. <zone type="Europe/Kiev">
  2566. <exemplarCity>کیوو</exemplarCity>
  2567. </zone>
  2568. <zone type="Europe/Simferopol">
  2569. <exemplarCity>سمفروپول</exemplarCity>
  2570. </zone>
  2571. <zone type="Europe/Zaporozhye">
  2572. <exemplarCity>زیپوروزائی</exemplarCity>
  2573. </zone>
  2574. <zone type="Africa/Kampala">
  2575. <exemplarCity>کیمپالا</exemplarCity>
  2576. </zone>
  2577. <zone type="Pacific/Midway">
  2578. <exemplarCity>وسط دن</exemplarCity>
  2579. </zone>
  2580. <zone type="Pacific/Johnston">
  2581. <exemplarCity>جانسٹن</exemplarCity>
  2582. </zone>
  2583. <zone type="Pacific/Wake">
  2584. <exemplarCity>بیدار</exemplarCity>
  2585. </zone>
  2586. <zone type="America/Adak">
  2587. <exemplarCity>اداک</exemplarCity>
  2588. </zone>
  2589. <zone type="America/Nome">
  2590. <exemplarCity>نوم</exemplarCity>
  2591. </zone>
  2592. <zone type="Pacific/Honolulu">
  2593. <exemplarCity>ہونولولو</exemplarCity>
  2594. </zone>
  2595. <zone type="America/Anchorage">
  2596. <exemplarCity>اینکریج</exemplarCity>
  2597. </zone>
  2598. <zone type="America/Yakutat">
  2599. <exemplarCity>یکوٹیٹ</exemplarCity>
  2600. </zone>
  2601. <zone type="America/Sitka">
  2602. <exemplarCity>سیٹکا</exemplarCity>
  2603. </zone>
  2604. <zone type="America/Juneau">
  2605. <exemplarCity>جونیئو</exemplarCity>
  2606. </zone>
  2607. <zone type="America/Metlakatla">
  2608. <exemplarCity>میٹلا کاٹلا</exemplarCity>
  2609. </zone>
  2610. <zone type="America/Los_Angeles">
  2611. <exemplarCity>لاس اینجلس</exemplarCity>
  2612. </zone>
  2613. <zone type="America/Boise">
  2614. <exemplarCity>بوائس</exemplarCity>
  2615. </zone>
  2616. <zone type="America/Phoenix">
  2617. <exemplarCity>فینکس</exemplarCity>
  2618. </zone>
  2619. <zone type="America/Denver">
  2620. <exemplarCity>ڈینور</exemplarCity>
  2621. </zone>
  2622. <zone type="America/North_Dakota/Beulah">
  2623. <exemplarCity>بیولاہ، شمالی ڈکوٹا</exemplarCity>
  2624. </zone>
  2625. <zone type="America/North_Dakota/New_Salem">
  2626. <exemplarCity>نیو سلیم، شمالی ڈکوٹا</exemplarCity>
  2627. </zone>
  2628. <zone type="America/North_Dakota/Center">
  2629. <exemplarCity>وسط، شمالی ڈکوٹا</exemplarCity>
  2630. </zone>
  2631. <zone type="America/Chicago">
  2632. <exemplarCity>شکاگو</exemplarCity>
  2633. </zone>
  2634. <zone type="America/Menominee">
  2635. <exemplarCity>مینومینی</exemplarCity>
  2636. </zone>
  2637. <zone type="America/Indiana/Vincennes">
  2638. <exemplarCity>ونسینیز، انڈیانا</exemplarCity>
  2639. </zone>
  2640. <zone type="America/Indiana/Petersburg">
  2641. <exemplarCity>پیٹرزبرگ، انڈیانا</exemplarCity>
  2642. </zone>
  2643. <zone type="America/Indiana/Tell_City">
  2644. <exemplarCity>ٹیل سٹی، انڈیانا</exemplarCity>
  2645. </zone>
  2646. <zone type="America/Indiana/Knox">
  2647. <exemplarCity>کنوکس، انڈیانا</exemplarCity>
  2648. </zone>
  2649. <zone type="America/Indiana/Winamac">
  2650. <exemplarCity>وینامیک، انڈیانا</exemplarCity>
  2651. </zone>
  2652. <zone type="America/Indiana/Marengo">
  2653. <exemplarCity>مرینگو، انڈیانا</exemplarCity>
  2654. </zone>
  2655. <zone type="America/Indianapolis">
  2656. <exemplarCity>انڈیاناپولس</exemplarCity>
  2657. </zone>
  2658. <zone type="America/Louisville">
  2659. <exemplarCity>لوئس ویلے</exemplarCity>
  2660. </zone>
  2661. <zone type="America/Indiana/Vevay">
  2662. <exemplarCity>ویوے، انڈیانا</exemplarCity>
  2663. </zone>
  2664. <zone type="America/Kentucky/Monticello">
  2665. <exemplarCity>مونٹیسیلو، کینٹوکی</exemplarCity>
  2666. </zone>
  2667. <zone type="America/Detroit">
  2668. <exemplarCity>ڈیٹرائٹ</exemplarCity>
  2669. </zone>
  2670. <zone type="America/New_York">
  2671. <exemplarCity>نیو یارک</exemplarCity>
  2672. </zone>
  2673. <zone type="America/Montevideo">
  2674. <exemplarCity>مونٹی ویڈیو</exemplarCity>
  2675. </zone>
  2676. <zone type="Asia/Samarkand">
  2677. <exemplarCity>سمرقند</exemplarCity>
  2678. </zone>
  2679. <zone type="Asia/Tashkent">
  2680. <exemplarCity>تاشقند</exemplarCity>
  2681. </zone>
  2682. <zone type="Europe/Vatican">
  2683. <exemplarCity>واٹیکن</exemplarCity>
  2684. </zone>
  2685. <zone type="America/St_Vincent">
  2686. <exemplarCity>سینٹ ونسنٹ</exemplarCity>
  2687. </zone>
  2688. <zone type="America/Caracas">
  2689. <exemplarCity>کراکاس</exemplarCity>
  2690. </zone>
  2691. <zone type="America/Tortola">
  2692. <exemplarCity>ٹورٹولا</exemplarCity>
  2693. </zone>
  2694. <zone type="America/St_Thomas">
  2695. <exemplarCity>سینٹ تھامس</exemplarCity>
  2696. </zone>
  2697. <zone type="Asia/Saigon">
  2698. <exemplarCity>ہو چی منہ سٹی</exemplarCity>
  2699. </zone>
  2700. <zone type="Pacific/Efate">
  2701. <exemplarCity>ایفیٹ</exemplarCity>
  2702. </zone>
  2703. <zone type="Pacific/Wallis">
  2704. <exemplarCity>ولّیس</exemplarCity>
  2705. </zone>
  2706. <zone type="Pacific/Apia">
  2707. <exemplarCity>اپیا</exemplarCity>
  2708. </zone>
  2709. <zone type="Asia/Aden">
  2710. <exemplarCity>عدن</exemplarCity>
  2711. </zone>
  2712. <zone type="Indian/Mayotte">
  2713. <exemplarCity>مایوٹ</exemplarCity>
  2714. </zone>
  2715. <zone type="Africa/Johannesburg">
  2716. <exemplarCity>جوہانسبرگ</exemplarCity>
  2717. </zone>
  2718. <zone type="Africa/Lusaka">
  2719. <exemplarCity>لیوساکا</exemplarCity>
  2720. </zone>
  2721. <zone type="Africa/Harare">
  2722. <exemplarCity>ہرارے</exemplarCity>
  2723. </zone>
  2724. <metazone type="Afghanistan">
  2725. <long>
  2726. <standard>افغانستان کا وقت</standard>
  2727. </long>
  2728. </metazone>
  2729. <metazone type="Africa_Central">
  2730. <long>
  2731. <standard>وسطی افریقہ کا وقت</standard>
  2732. </long>
  2733. </metazone>
  2734. <metazone type="Africa_Eastern">
  2735. <long>
  2736. <standard>مشرقی افریقہ کا وقت</standard>
  2737. </long>
  2738. </metazone>
  2739. <metazone type="Africa_Southern">
  2740. <long>
  2741. <standard>جنوبی افریقہ کا معیاری وقت</standard>
  2742. </long>
  2743. </metazone>
  2744. <metazone type="Africa_Western">
  2745. <long>
  2746. <generic>مغربی افریقہ کا وقت</generic>
  2747. <standard>مغربی افریقہ کا معیاری وقت</standard>
  2748. <daylight>مغربی افریقہ کا موسم گرما کا وقت</daylight>
  2749. </long>
  2750. </metazone>
  2751. <metazone type="Alaska">
  2752. <long>
  2753. <generic>الاسکا ٹائم</generic>
  2754. <standard>الاسکا اسٹینڈرڈ ٹائم</standard>
  2755. <daylight>الاسکا ڈے لائٹ ٹائم</daylight>
  2756. </long>
  2757. </metazone>
  2758. <metazone type="Amazon">
  2759. <long>
  2760. <generic>امیزون ٹائم</generic>
  2761. <standard>امیزن اسٹینڈرڈ ٹائم</standard>
  2762. <daylight>امیزون کا موسم گرما کا وقت</daylight>
  2763. </long>
  2764. </metazone>
  2765. <metazone type="America_Central">
  2766. <long>
  2767. <generic>سنٹرل ٹائم</generic>
  2768. <standard>سنٹرل اسٹینڈرڈ ٹائم</standard>
  2769. <daylight>سنٹرل ڈے لائٹ ٹائم</daylight>
  2770. </long>
  2771. </metazone>
  2772. <metazone type="America_Eastern">
  2773. <long>
  2774. <generic>ایسٹرن ٹائم</generic>
  2775. <standard>ایسٹرن اسٹینڈرڈ ٹائم</standard>
  2776. <daylight>ایسٹرن ڈے لائٹ ٹائم</daylight>
  2777. </long>
  2778. </metazone>
  2779. <metazone type="America_Mountain">
  2780. <long>
  2781. <generic>ماؤنٹین ٹائم</generic>
  2782. <standard>ماؤنٹین اسٹینڈرڈ ٹائم</standard>
  2783. <daylight>ماؤنٹین ڈے لائٹ ٹائم</daylight>
  2784. </long>
  2785. </metazone>
  2786. <metazone type="America_Pacific">
  2787. <long>
  2788. <generic>پیسفک ٹائم</generic>
  2789. <standard>پیسفک اسٹینڈرڈ ٹائم</standard>
  2790. <daylight>پیسفک ڈے لائٹ ٹائم</daylight>
  2791. </long>
  2792. </metazone>
  2793. <metazone type="Anadyr">
  2794. <long>
  2795. <generic>انیدر ٹائم</generic>
  2796. <standard>انیدر اسٹینڈرڈ ٹائم</standard>
  2797. <daylight>انیدر سمر ٹائم</daylight>
  2798. </long>
  2799. </metazone>
  2800. <metazone type="Arabian">
  2801. <long>
  2802. <generic>عرب کا وقت</generic>
  2803. <standard>عرب کا معیاری وقت</standard>
  2804. <daylight>عرب کا دن کا وقت</daylight>
  2805. </long>
  2806. </metazone>
  2807. <metazone type="Argentina">
  2808. <long>
  2809. <generic>ارجنٹینا ٹائم</generic>
  2810. <standard>ارجنٹینا کا معیاری وقت</standard>
  2811. <daylight>ارجنٹینا سمر ٹائم</daylight>
  2812. </long>
  2813. </metazone>
  2814. <metazone type="Argentina_Western">
  2815. <long>
  2816. <generic>مغربی ارجنٹینا کا وقت</generic>
  2817. <standard>مغربی ارجنٹینا کا معیاری وقت</standard>
  2818. <daylight>مغربی ارجنٹینا کا موسم گرما کا وقت</daylight>
  2819. </long>
  2820. </metazone>
  2821. <metazone type="Armenia">
  2822. <long>
  2823. <generic>آرمینیا کا وقت</generic>
  2824. <standard>آرمینیا کا معیاری وقت</standard>
  2825. <daylight>آرمینیا کا موسم گرما کا وقت</daylight>
  2826. </long>
  2827. </metazone>
  2828. <metazone type="Atlantic">
  2829. <long>
  2830. <generic>اٹلانٹک ٹائم</generic>
  2831. <standard>اٹلانٹک اسٹینڈرڈ ٹائم</standard>
  2832. <daylight>اٹلانٹک ڈے لائٹ ٹائم</daylight>
  2833. </long>
  2834. </metazone>
  2835. <metazone type="Australia_Central">
  2836. <long>
  2837. <generic>سنٹرل آسٹریلیا ٹائم</generic>
  2838. <standard>آسٹریلین سنٹرل اسٹینڈرڈ ٹائم</standard>
  2839. <daylight>آسٹریلین سنٹرل ڈے لائٹ ٹائم</daylight>
  2840. </long>
  2841. </metazone>
  2842. <metazone type="Australia_CentralWestern">
  2843. <long>
  2844. <generic>آسٹریلین سنٹرل ویسٹرن ٹائم</generic>
  2845. <standard>آسٹریلین سنٹرل ویسٹرن اسٹینڈرڈ ٹائم</standard>
  2846. <daylight>آسٹریلین سنٹرل ویسٹرن ڈے لائٹ ٹائم</daylight>
  2847. </long>
  2848. </metazone>
  2849. <metazone type="Australia_Eastern">
  2850. <long>
  2851. <generic>ایسٹرن آسٹریلیا ٹائم</generic>
  2852. <standard>آسٹریلین ایسٹرن اسٹنڈرڈ ٹائم</standard>
  2853. <daylight>آسٹریلین ایسٹرن ڈے لائٹ ٹائم</daylight>
  2854. </long>
  2855. </metazone>
  2856. <metazone type="Australia_Western">
  2857. <long>
  2858. <generic>ویسٹرن آسٹریلیا ٹائم</generic>
  2859. <standard>آسٹریلیا ویسٹرن اسٹینڈرڈ ٹائم</standard>
  2860. <daylight>آسٹریلین ویسٹرن ڈے لائٹ ٹائم</daylight>
  2861. </long>
  2862. </metazone>
  2863. <metazone type="Azerbaijan">
  2864. <long>
  2865. <generic>آذربائیجان کا وقت</generic>
  2866. <standard>آذربائیجان کا معیاری وقت</standard>
  2867. <daylight>آذربائیجان کا موسم گرما کا وقت</daylight>
  2868. </long>
  2869. </metazone>
  2870. <metazone type="Azores">
  2871. <long>
  2872. <generic>ازوریس کا وقت</generic>
  2873. <standard>ازوریس کا معیاری وقت</standard>
  2874. <daylight>ازوریس کا موسم گرما کا وقت</daylight>
  2875. </long>
  2876. </metazone>
  2877. <metazone type="Bangladesh">
  2878. <long>
  2879. <generic>بنگلہ دیش کا وقت</generic>
  2880. <standard>بنگلہ دیش کا معیاری وقت</standard>
  2881. <daylight>بنگلہ دیش کا موسم گرما کا وقت</daylight>
  2882. </long>
  2883. </metazone>
  2884. <metazone type="Bhutan">
  2885. <long>
  2886. <standard>بھوٹان کا وقت</standard>
  2887. </long>
  2888. </metazone>
  2889. <metazone type="Bolivia">
  2890. <long>
  2891. <standard>بولیویا کا وقت</standard>
  2892. </long>
  2893. </metazone>
  2894. <metazone type="Brasilia">
  2895. <long>
  2896. <generic>برازیلیا ٹائم</generic>
  2897. <standard>برازیلیا اسٹینڈرڈ ٹائم</standard>
  2898. <daylight>برازیلیا سمر ٹائم</daylight>
  2899. </long>
  2900. </metazone>
  2901. <metazone type="Brunei">
  2902. <long>
  2903. <standard>برونئی دارالسلام کا وقت</standard>
  2904. </long>
  2905. </metazone>
  2906. <metazone type="Cape_Verde">
  2907. <long>
  2908. <generic>کیپ ورڈی کا وقت</generic>
  2909. <standard>کیپ ورڈی کا معیاری وقت</standard>
  2910. <daylight>کیپ ورڈی کا موسم گرما کا وقت</daylight>
  2911. </long>
  2912. </metazone>
  2913. <metazone type="Chamorro">
  2914. <long>
  2915. <standard>شمورو کا معیاری وقت</standard>
  2916. </long>
  2917. </metazone>
  2918. <metazone type="Chatham">
  2919. <long>
  2920. <generic>چیتھم کا وقت</generic>
  2921. <standard>چیتھم کا موسم گرما کا وقت</standard>
  2922. <daylight>چیتھم کا دن کا وقت</daylight>
  2923. </long>
  2924. </metazone>
  2925. <metazone type="Chile">
  2926. <long>
  2927. <generic>چلی کا وقت</generic>
  2928. <standard>چلی کا معیاری وقت</standard>
  2929. <daylight>چلی کا موسم گرما کا وقت</daylight>
  2930. </long>
  2931. </metazone>
  2932. <metazone type="China">
  2933. <long>
  2934. <generic>چین کا وقت</generic>
  2935. <standard>چین کا معیاری وقت</standard>
  2936. <daylight>چین کا دن کا وقت</daylight>
  2937. </long>
  2938. </metazone>
  2939. <metazone type="Choibalsan">
  2940. <long>
  2941. <generic>کوئبلسان ٹائم</generic>
  2942. <standard>کوئبلسان کا معیاری وقت</standard>
  2943. <daylight>کوائبلسان سمر ٹائم</daylight>
  2944. </long>
  2945. </metazone>
  2946. <metazone type="Christmas">
  2947. <long>
  2948. <standard>کرسمس آئلینڈ کا وقت</standard>
  2949. </long>
  2950. </metazone>
  2951. <metazone type="Cocos">
  2952. <long>
  2953. <standard>کوکوس آئلینڈز کا وقت</standard>
  2954. </long>
  2955. </metazone>
  2956. <metazone type="Colombia">
  2957. <long>
  2958. <generic>کولمبیا کا وقت</generic>
  2959. <standard>کولمبیا کا معیاری وقت</standard>
  2960. <daylight>کولمبیا کا موسم گرما کا وقت</daylight>
  2961. </long>
  2962. </metazone>
  2963. <metazone type="Cook">
  2964. <long>
  2965. <generic>کک آئلینڈز کا وقت</generic>
  2966. <standard>کک آئلینڈز کا معیاری وقت</standard>
  2967. <daylight>کک آئلینڈز کا نصف موسم گرما کا وقت</daylight>
  2968. </long>
  2969. </metazone>
  2970. <metazone type="Cuba">
  2971. <long>
  2972. <generic>کیوبا کا وقت</generic>
  2973. <standard>کیوبا کا معیاری وقت</standard>
  2974. <daylight>کیوبا کا دن کا وقت</daylight>
  2975. </long>
  2976. </metazone>
  2977. <metazone type="Davis">
  2978. <long>
  2979. <standard>ڈیوس کا وقت</standard>
  2980. </long>
  2981. </metazone>
  2982. <metazone type="DumontDUrville">
  2983. <long>
  2984. <standard>ڈومونٹ-ڈی'ارویلے کا وقت</standard>
  2985. </long>
  2986. </metazone>
  2987. <metazone type="East_Timor">
  2988. <long>
  2989. <standard>مشرقی تیمور کا وقت</standard>
  2990. </long>
  2991. </metazone>
  2992. <metazone type="Easter">
  2993. <long>
  2994. <generic>ایسٹر آئلینڈ کا وقت</generic>
  2995. <standard>ایسٹر آئلینڈ کا معیاری وقت</standard>
  2996. <daylight>ایسٹر آئلینڈ کا موسم گرما کا وقت</daylight>
  2997. </long>
  2998. </metazone>
  2999. <metazone type="Ecuador">
  3000. <long>
  3001. <standard>ایکواڈور کا وقت</standard>
  3002. </long>
  3003. </metazone>
  3004. <metazone type="Europe_Central">
  3005. <long>
  3006. <generic>وسط یورپ کا وقت</generic>
  3007. <standard>وسطی یورپ کا معیاری وقت</standard>
  3008. <daylight>وسطی یورپ کا موسم گرما کا وقت</daylight>
  3009. </long>
  3010. </metazone>
  3011. <metazone type="Europe_Eastern">
  3012. <long>
  3013. <generic>مشرقی یورپ کا وقت</generic>
  3014. <standard>مشرقی یورپ کا معیاری وقت</standard>
  3015. <daylight>مشرقی یورپ کا موسم گرما کا وقت</daylight>
  3016. </long>
  3017. </metazone>
  3018. <metazone type="Europe_Western">
  3019. <long>
  3020. <generic>مغربی یورپ کا وقت</generic>
  3021. <standard>مغربی یورپ کا معیاری وقت</standard>
  3022. <daylight>مغربی یورپ کا موسم گرما کا وقت</daylight>
  3023. </long>
  3024. </metazone>
  3025. <metazone type="Falkland">
  3026. <long>
  3027. <generic>فاک لینڈ آئلینڈز کا وقت</generic>
  3028. <standard>فاک لینڈ آئلینڈز کا معیاری وقت</standard>
  3029. <daylight>فاک لینڈ آئلینڈز کا موسم گرما کا وقت</daylight>
  3030. </long>
  3031. </metazone>
  3032. <metazone type="Fiji">
  3033. <long>
  3034. <generic>فجی کا وقت</generic>
  3035. <standard>فجی کا معیاری وقت</standard>
  3036. <daylight>فجی کا موسم گرما کا وقت</daylight>
  3037. </long>
  3038. </metazone>
  3039. <metazone type="French_Guiana">
  3040. <long>
  3041. <standard>فرینچ گیانا کا وقت</standard>
  3042. </long>
  3043. </metazone>
  3044. <metazone type="French_Southern">
  3045. <long>
  3046. <standard>فرینچ سدرن اور انٹارکٹک کا وقت</standard>
  3047. </long>
  3048. </metazone>
  3049. <metazone type="Galapagos">
  3050. <long>
  3051. <standard>گالاپاگوز کا وقت</standard>
  3052. </long>
  3053. </metazone>
  3054. <metazone type="Gambier">
  3055. <long>
  3056. <standard>گیمبیئر کا وقت</standard>
  3057. </long>
  3058. </metazone>
  3059. <metazone type="Georgia">
  3060. <long>
  3061. <generic>جارجیا کا وقت</generic>
  3062. <standard>جارجیا کا معیاری وقت</standard>
  3063. <daylight>جارجیا کا موسم گرما کا وقت</daylight>
  3064. </long>
  3065. </metazone>
  3066. <metazone type="Gilbert_Islands">
  3067. <long>
  3068. <standard>جلبرٹ آئلینڈز کا وقت</standard>
  3069. </long>
  3070. </metazone>
  3071. <metazone type="GMT">
  3072. <long>
  3073. <standard>گرین وچ کا اصل وقت</standard>
  3074. </long>
  3075. </metazone>
  3076. <metazone type="Greenland_Eastern">
  3077. <long>
  3078. <generic>مشرقی گرین لینڈ کا وقت</generic>
  3079. <standard>مشرقی گرین لینڈ کا معیاری وقت</standard>
  3080. <daylight>مشرقی گرین لینڈ کا موسم گرما کا وقت</daylight>
  3081. </long>
  3082. </metazone>
  3083. <metazone type="Greenland_Western">
  3084. <long>
  3085. <generic>مغربی گرین لینڈ کا وقت</generic>
  3086. <standard>مغربی گرین لینڈ کا معیاری وقت</standard>
  3087. <daylight>مغربی گرین لینڈ کا موسم گرما کا وقت</daylight>
  3088. </long>
  3089. </metazone>
  3090. <metazone type="Gulf">
  3091. <long>
  3092. <standard>خلیج کا معیاری وقت</standard>
  3093. </long>
  3094. </metazone>
  3095. <metazone type="Guyana">
  3096. <long>
  3097. <standard>گیانا کا وقت</standard>
  3098. </long>
  3099. </metazone>
  3100. <metazone type="Hawaii_Aleutian">
  3101. <long>
  3102. <generic>ہوائی الیوٹیئن ٹائم</generic>
  3103. <standard>ہوائی الیوٹیئن اسٹینڈرڈ ٹائم</standard>
  3104. <daylight>ہوائی الیوٹیئن ڈے لائٹ ٹائم</daylight>
  3105. </long>
  3106. </metazone>
  3107. <metazone type="Hong_Kong">
  3108. <long>
  3109. <generic>ہانگ کانگ کا وقت</generic>
  3110. <standard>ہانگ کانگ کا معیاری وقت</standard>
  3111. <daylight>ہانگ کانگ کا موسم گرما کا وقت</daylight>
  3112. </long>
  3113. </metazone>
  3114. <metazone type="Hovd">
  3115. <long>
  3116. <generic>ہووارڈ ٹائم</generic>
  3117. <standard>ہاورڈ کا معیاری وقت</standard>
  3118. <daylight>ہووارڈ سمر ٹائم</daylight>
  3119. </long>
  3120. </metazone>
  3121. <metazone type="India">
  3122. <long>
  3123. <standard>ہندوستان کا معیاری وقت</standard>
  3124. </long>
  3125. </metazone>
  3126. <metazone type="Indian_Ocean">
  3127. <long>
  3128. <standard>بحر ہند کا وقت</standard>
  3129. </long>
  3130. </metazone>
  3131. <metazone type="Indochina">
  3132. <long>
  3133. <standard>ہند چین کا وقت</standard>
  3134. </long>
  3135. </metazone>
  3136. <metazone type="Indonesia_Central">
  3137. <long>
  3138. <standard>وسطی انڈونیشیا کا وقت</standard>
  3139. </long>
  3140. </metazone>
  3141. <metazone type="Indonesia_Eastern">
  3142. <long>
  3143. <standard>مشرقی انڈونیشیا کا وقت</standard>
  3144. </long>
  3145. </metazone>
  3146. <metazone type="Indonesia_Western">
  3147. <long>
  3148. <standard>مغربی انڈونیشیا کا وقت</standard>
  3149. </long>
  3150. </metazone>
  3151. <metazone type="Iran">
  3152. <long>
  3153. <generic>ایران کا وقت</generic>
  3154. <standard>ایران کا معیاری وقت</standard>
  3155. <daylight>ایران کا دن کا وقت</daylight>
  3156. </long>
  3157. </metazone>
  3158. <metazone type="Irkutsk">
  3159. <long>
  3160. <generic>ارکتسک ٹائم</generic>
  3161. <standard>ارکتسک کا معیاری وقت</standard>
  3162. <daylight>ارکتسک سمر ٹائم</daylight>
  3163. </long>
  3164. </metazone>
  3165. <metazone type="Israel">
  3166. <long>
  3167. <generic>اسرائیل کا وقت</generic>
  3168. <standard>اسرائیل کا معیاری وقت</standard>
  3169. <daylight>اسرائیل کا دن کا وقت</daylight>
  3170. </long>
  3171. </metazone>
  3172. <metazone type="Japan">
  3173. <long>
  3174. <generic>جاپان کا وقت</generic>
  3175. <standard>جاپان کا معیاری وقت</standard>
  3176. <daylight>جاپان کا دن کا وقت</daylight>
  3177. </long>
  3178. </metazone>
  3179. <metazone type="Kamchatka">
  3180. <long>
  3181. <generic>پیٹروپاؤلووسک-کیمچسکی ٹائم</generic>
  3182. <standard>پیٹروپاؤلووسک-کیمچسکی اسٹینڈرڈ ٹائم</standard>
  3183. <daylight>پیٹروپاؤلووسک-کیمچسکی سمر ٹائم</daylight>
  3184. </long>
  3185. </metazone>
  3186. <metazone type="Kazakhstan_Eastern">
  3187. <long>
  3188. <standard>مشرقی قزاخستان کا وقت</standard>
  3189. </long>
  3190. </metazone>
  3191. <metazone type="Kazakhstan_Western">
  3192. <long>
  3193. <standard>مغربی قزاخستان کا وقت</standard>
  3194. </long>
  3195. </metazone>
  3196. <metazone type="Korea">
  3197. <long>
  3198. <generic>کوریا کا وقت</generic>
  3199. <standard>کوریا کا معیاری وقت</standard>
  3200. <daylight>کوریا کا دن کا وقت</daylight>
  3201. </long>
  3202. </metazone>
  3203. <metazone type="Kosrae">
  3204. <long>
  3205. <standard>کوسرے کا وقت</standard>
  3206. </long>
  3207. </metazone>
  3208. <metazone type="Krasnoyarsk">
  3209. <long>
  3210. <generic>کریسنویارسک ٹائم</generic>
  3211. <standard>کرسنویارسک کا معیاری وقت</standard>
  3212. <daylight>کریسنویارسک سمر ٹائم</daylight>
  3213. </long>
  3214. </metazone>
  3215. <metazone type="Kyrgystan">
  3216. <long>
  3217. <standard>کرغستان کا وقت</standard>
  3218. </long>
  3219. </metazone>
  3220. <metazone type="Line_Islands">
  3221. <long>
  3222. <standard>لائن آئلینڈز کا وقت</standard>
  3223. </long>
  3224. </metazone>
  3225. <metazone type="Lord_Howe">
  3226. <long>
  3227. <generic>لارڈ ہووے ٹائم</generic>
  3228. <standard>لارڈ ہووے اسٹینڈرڈ ٹائم</standard>
  3229. <daylight>لارڈ ہووے ڈے لائٹ ٹائم</daylight>
  3230. </long>
  3231. </metazone>
  3232. <metazone type="Macquarie">
  3233. <long>
  3234. <standard>مکوآری آئلینڈ کا وقت</standard>
  3235. </long>
  3236. </metazone>
  3237. <metazone type="Magadan">
  3238. <long>
  3239. <generic>میگیدن ٹائم</generic>
  3240. <standard>میگدان کا معیاری وقت</standard>
  3241. <daylight>میگیدن سمر ٹائم</daylight>
  3242. </long>
  3243. </metazone>
  3244. <metazone type="Malaysia">
  3245. <long>
  3246. <standard>ملیشیا کا وقت</standard>
  3247. </long>
  3248. </metazone>
  3249. <metazone type="Maldives">
  3250. <long>
  3251. <standard>مالدیپ کا وقت</standard>
  3252. </long>
  3253. </metazone>
  3254. <metazone type="Marquesas">
  3255. <long>
  3256. <standard>مارکیسس کا وقت</standard>
  3257. </long>
  3258. </metazone>
  3259. <metazone type="Marshall_Islands">
  3260. <long>
  3261. <standard>مارشل آئلینڈز کا وقت</standard>
  3262. </long>
  3263. </metazone>
  3264. <metazone type="Mauritius">
  3265. <long>
  3266. <generic>ماریشس کا وقت</generic>
  3267. <standard>ماریشس کا معیاری وقت</standard>
  3268. <daylight>ماریشس کا موسم گرما کا وقت</daylight>
  3269. </long>
  3270. </metazone>
  3271. <metazone type="Mawson">
  3272. <long>
  3273. <standard>ماؤسن کا وقت</standard>
  3274. </long>
  3275. </metazone>
  3276. <metazone type="Mongolia">
  3277. <long>
  3278. <generic>یولان بیتور کا وقت</generic>
  3279. <standard>یولان بیتور کا معیاری وقت</standard>
  3280. <daylight>یولان بیٹور سمر ٹائم</daylight>
  3281. </long>
  3282. </metazone>
  3283. <metazone type="Moscow">
  3284. <long>
  3285. <generic>ماسکو ٹائم</generic>
  3286. <standard>ماسکو اسٹینڈرڈ ٹائم</standard>
  3287. <daylight>ماسکو سمر ٹائم</daylight>
  3288. </long>
  3289. </metazone>
  3290. <metazone type="Myanmar">
  3291. <long>
  3292. <standard>میانمار کا وقت</standard>
  3293. </long>
  3294. </metazone>
  3295. <metazone type="Nauru">
  3296. <long>
  3297. <standard>ناؤرو کا وقت</standard>
  3298. </long>
  3299. </metazone>
  3300. <metazone type="Nepal">
  3301. <long>
  3302. <standard>نیپال کا وقت</standard>
  3303. </long>
  3304. </metazone>
  3305. <metazone type="New_Caledonia">
  3306. <long>
  3307. <generic>نیو کیلیڈونیا کا وقت</generic>
  3308. <standard>نیو کیلیڈونیا کا معیاری وقت</standard>
  3309. <daylight>نیو کیلیڈونیا کا موسم گرما کا وقت</daylight>
  3310. </long>
  3311. </metazone>
  3312. <metazone type="New_Zealand">
  3313. <long>
  3314. <generic>نیوزی لینڈ کا وقت</generic>
  3315. <standard>نیوزی لینڈ کا معیاری وقت</standard>
  3316. <daylight>نیوزی لینڈ کا دن کا وقت</daylight>
  3317. </long>
  3318. </metazone>
  3319. <metazone type="Newfoundland">
  3320. <long>
  3321. <generic>نیو فاؤنڈ لینڈ ٹائم</generic>
  3322. <standard>نیو فاؤنڈ لینڈ اسٹینڈرڈ ٹائم</standard>
  3323. <daylight>نیو فاؤنڈ لینڈ ڈے لائٹ ٹائم</daylight>
  3324. </long>
  3325. </metazone>
  3326. <metazone type="Niue">
  3327. <long>
  3328. <standard>نیئو کا وقت</standard>
  3329. </long>
  3330. </metazone>
  3331. <metazone type="Norfolk">
  3332. <long>
  3333. <standard>نارفوک آئلینڈز کا وقت</standard>
  3334. </long>
  3335. </metazone>
  3336. <metazone type="Noronha">
  3337. <long>
  3338. <generic>فرنانڈو ڈی نورنہا کا وقت</generic>
  3339. <standard>فرنانڈو ڈی نورنہا کا معیاری وقت</standard>
  3340. <daylight>فرنانڈو ڈی نورونہا سمر ٹائم</daylight>
  3341. </long>
  3342. </metazone>
  3343. <metazone type="Novosibirsk">
  3344. <long>
  3345. <generic>نوووسیبرسک ٹائم</generic>
  3346. <standard>نوووسیبرسک کا معیاری وقت</standard>
  3347. <daylight>نوووسِبِرسک سمر ٹائم</daylight>
  3348. </long>
  3349. </metazone>
  3350. <metazone type="Omsk">
  3351. <long>
  3352. <generic>اومسک ٹائم</generic>
  3353. <standard>اومسک کا معیاری وقت</standard>
  3354. <daylight>اومسک سمر ٹائم</daylight>
  3355. </long>
  3356. </metazone>
  3357. <metazone type="Pakistan">
  3358. <long>
  3359. <generic>پاکستان کا وقت</generic>
  3360. <standard>پاکستان کا معیاری وقت</standard>
  3361. <daylight>پاکستان کا موسم گرما کا وقت</daylight>
  3362. </long>
  3363. </metazone>
  3364. <metazone type="Palau">
  3365. <long>
  3366. <standard>پلاؤ کا وقت</standard>
  3367. </long>
  3368. </metazone>
  3369. <metazone type="Papua_New_Guinea">
  3370. <long>
  3371. <standard>پاپوآ نیو گنی کا وقت</standard>
  3372. </long>
  3373. </metazone>
  3374. <metazone type="Paraguay">
  3375. <long>
  3376. <generic>پیراگوئے کا وقت</generic>
  3377. <standard>پیراگوئے کا معیاری وقت</standard>
  3378. <daylight>پیراگوئے کا موسم گرما کا وقت</daylight>
  3379. </long>
  3380. </metazone>
  3381. <metazone type="Peru">
  3382. <long>
  3383. <generic>پیرو کا وقت</generic>
  3384. <standard>پیرو کا معیاری وقت</standard>
  3385. <daylight>پیرو کا موسم گرما کا وقت</daylight>
  3386. </long>
  3387. </metazone>
  3388. <metazone type="Philippines">
  3389. <long>
  3390. <generic>فلپائن کا وقت</generic>
  3391. <standard>فلپائن کا معیاری وقت</standard>
  3392. <daylight>فلپائن کا موسم گرما کا وقت</daylight>
  3393. </long>
  3394. </metazone>
  3395. <metazone type="Phoenix_Islands">
  3396. <long>
  3397. <standard>فینکس آئلینڈز کا وقت</standard>
  3398. </long>
  3399. </metazone>
  3400. <metazone type="Pierre_Miquelon">
  3401. <long>
  3402. <generic>سینٹ پیئر اور مکلیئون کا وقت</generic>
  3403. <standard>سینٹ پیئر اور مکلیئون کا معیاری وقت</standard>
  3404. <daylight>سینٹ پیئر اور مکلیئون کا دن کا وقت</daylight>
  3405. </long>
  3406. </metazone>
  3407. <metazone type="Pitcairn">
  3408. <long>
  3409. <standard>پٹکائرن کا وقت</standard>
  3410. </long>
  3411. </metazone>
  3412. <metazone type="Ponape">
  3413. <long>
  3414. <standard>پوناپے کا وقت</standard>
  3415. </long>
  3416. </metazone>
  3417. <metazone type="Reunion">
  3418. <long>
  3419. <standard>ری یونین کا وقت</standard>
  3420. </long>
  3421. </metazone>
  3422. <metazone type="Rothera">
  3423. <long>
  3424. <standard>روتھیرا کا وقت</standard>
  3425. </long>
  3426. </metazone>
  3427. <metazone type="Sakhalin">
  3428. <long>
  3429. <generic>سخالین ٹائم</generic>
  3430. <standard>سخالین کا معیاری وقت</standard>
  3431. <daylight>سخالین سمر ٹائم</daylight>
  3432. </long>
  3433. </metazone>
  3434. <metazone type="Samara">
  3435. <long>
  3436. <generic>سمارا ٹائم</generic>
  3437. <standard>سمارا اسٹینڈرڈ ٹائم</standard>
  3438. <daylight>سمارا سمر ٹائم</daylight>
  3439. </long>
  3440. </metazone>
  3441. <metazone type="Samoa">
  3442. <long>
  3443. <generic>ساموآ وقت</generic>
  3444. <standard>ساموآ کا معیاری وقت</standard>
  3445. <daylight>ساموآ سمر وقت</daylight>
  3446. </long>
  3447. </metazone>
  3448. <metazone type="Seychelles">
  3449. <long>
  3450. <standard>سیشلیز کا وقت</standard>
  3451. </long>
  3452. </metazone>
  3453. <metazone type="Singapore">
  3454. <long>
  3455. <standard>سنگاپور کا معیاری وقت</standard>
  3456. </long>
  3457. </metazone>
  3458. <metazone type="Solomon">
  3459. <long>
  3460. <standard>سولمن آئلینڈز کا وقت</standard>
  3461. </long>
  3462. </metazone>
  3463. <metazone type="South_Georgia">
  3464. <long>
  3465. <standard>جنوبی جارجیا کا وقت</standard>
  3466. </long>
  3467. </metazone>
  3468. <metazone type="Suriname">
  3469. <long>
  3470. <standard>سورینام کا وقت</standard>
  3471. </long>
  3472. </metazone>
  3473. <metazone type="Syowa">
  3474. <long>
  3475. <standard>سیووا کا وقت</standard>
  3476. </long>
  3477. </metazone>
  3478. <metazone type="Tahiti">
  3479. <long>
  3480. <standard>تاہیتی کا وقت</standard>
  3481. </long>
  3482. </metazone>
  3483. <metazone type="Taipei">
  3484. <long>
  3485. <generic>تائیپے کا وقت</generic>
  3486. <standard>تائیپے کا معیاری وقت</standard>
  3487. <daylight>تائیپے کا دن کا وقت</daylight>
  3488. </long>
  3489. </metazone>
  3490. <metazone type="Tajikistan">
  3491. <long>
  3492. <standard>تاجکستان کا وقت</standard>
  3493. </long>
  3494. </metazone>
  3495. <metazone type="Tokelau">
  3496. <long>
  3497. <standard>ٹوکیلاؤ کا وقت</standard>
  3498. </long>
  3499. </metazone>
  3500. <metazone type="Tonga">
  3501. <long>
  3502. <generic>ٹونگا کا وقت</generic>
  3503. <standard>ٹونگا کا معیاری وقت</standard>
  3504. <daylight>ٹونگا کا موسم گرما کا وقت</daylight>
  3505. </long>
  3506. </metazone>
  3507. <metazone type="Truk">
  3508. <long>
  3509. <standard>چوک کا وقت</standard>
  3510. </long>
  3511. </metazone>
  3512. <metazone type="Turkmenistan">
  3513. <long>
  3514. <generic>ترکمانستان کا وقت</generic>
  3515. <standard>ترکمانستان کا معیاری وقت</standard>
  3516. <daylight>ترکمانستان کا موسم گرما کا وقت</daylight>
  3517. </long>
  3518. </metazone>
  3519. <metazone type="Tuvalu">
  3520. <long>
  3521. <standard>ٹوالو کا وقت</standard>
  3522. </long>
  3523. </metazone>
  3524. <metazone type="Uruguay">
  3525. <long>
  3526. <generic>یوروگوئے کا وقت</generic>
  3527. <standard>یوروگوئے کا معیاری وقت</standard>
  3528. <daylight>یوروگوئے کا موسم گرما کا وقت</daylight>
  3529. </long>
  3530. </metazone>
  3531. <metazone type="Uzbekistan">
  3532. <long>
  3533. <generic>ازبکستان کا وقت</generic>
  3534. <standard>ازبکستان کا معیاری وقت</standard>
  3535. <daylight>ازبکستان کا موسم گرما کا وقت</daylight>
  3536. </long>
  3537. </metazone>
  3538. <metazone type="Vanuatu">
  3539. <long>
  3540. <generic>وانوآٹو کا وقت</generic>
  3541. <standard>وانوآٹو کا معیاری وقت</standard>
  3542. <daylight>وانوآٹو کا موسم گرما کا وقت</daylight>
  3543. </long>
  3544. </metazone>
  3545. <metazone type="Venezuela">
  3546. <long>
  3547. <standard>وینزوئیلا کا وقت</standard>
  3548. </long>
  3549. </metazone>
  3550. <metazone type="Vladivostok">
  3551. <long>
  3552. <generic>ولادی ووستک ٹائم</generic>
  3553. <standard>ولادی ووستک کا معیاری وقت</standard>
  3554. <daylight>ولادی ووستک سمر ٹائم</daylight>
  3555. </long>
  3556. </metazone>
  3557. <metazone type="Volgograd">
  3558. <long>
  3559. <generic>وولگوگراد ٹائم</generic>
  3560. <standard>بلغراد کا معیاری وقت</standard>
  3561. <daylight>وولگوگراد سمر ٹائم</daylight>
  3562. </long>
  3563. </metazone>
  3564. <metazone type="Vostok">
  3565. <long>
  3566. <standard>ووسٹاک کا وقت</standard>
  3567. </long>
  3568. </metazone>
  3569. <metazone type="Wake">
  3570. <long>
  3571. <standard>ویک آئلینڈ کا وقت</standard>
  3572. </long>
  3573. </metazone>
  3574. <metazone type="Wallis">
  3575. <long>
  3576. <standard>والیز اور فٹونا کا وقت</standard>
  3577. </long>
  3578. </metazone>
  3579. <metazone type="Yakutsk">
  3580. <long>
  3581. <generic>یکوتسک ٹائم</generic>
  3582. <standard>یاکتسک کا معیاری وقت</standard>
  3583. <daylight>یکوتسک سمر ٹائم</daylight>
  3584. </long>
  3585. </metazone>
  3586. <metazone type="Yekaterinburg">
  3587. <long>
  3588. <generic>یکاٹیرِنبرگ ٹائم</generic>
  3589. <standard>یکیترنگبرگ کا معیاری وقت</standard>
  3590. <daylight>یکاٹیرِنبرگ سمر ٹائم</daylight>
  3591. </long>
  3592. </metazone>
  3593. </timeZoneNames>
  3594. </dates>
  3595. <numbers>
  3596. <defaultNumberingSystem>latn</defaultNumberingSystem>
  3597. <otherNumberingSystems>
  3598. <native>arabext</native>
  3599. </otherNumberingSystems>
  3600. <symbols numberSystem="arabext">
  3601. <decimal>.</decimal>
  3602. <group>,</group>
  3603. <list>;</list>
  3604. <percentSign>%</percentSign>
  3605. <plusSign>‎+‎</plusSign> <!-- includes LRM before and after sign -->
  3606. <minusSign>‎-‎</minusSign> <!-- includes LRM before and after sign (002D) -->
  3607. <exponential draft="unconfirmed">ق</exponential>
  3608. <perMille>‰</perMille>
  3609. <infinity>∞</infinity>
  3610. <nan draft="unconfirmed">یہ عدد نہیں</nan>
  3611. </symbols>
  3612. <symbols numberSystem="latn">
  3613. <decimal>.</decimal>
  3614. <group>,</group>
  3615. <list>;</list>
  3616. <percentSign>%</percentSign>
  3617. <plusSign>‎+</plusSign> <!-- includes LRM before sign -->
  3618. <minusSign>‎-</minusSign> <!-- includes LRM before sign (002D) -->
  3619. <exponential>E</exponential>
  3620. <superscriptingExponent>×</superscriptingExponent>
  3621. <perMille>‰</perMille>
  3622. <infinity>∞</infinity>
  3623. <nan>NaN</nan>
  3624. </symbols>
  3625. <decimalFormats numberSystem="latn">
  3626. <decimalFormatLength>
  3627. <decimalFormat>
  3628. <pattern>#,##0.###</pattern>
  3629. </decimalFormat>
  3630. </decimalFormatLength>
  3631. <decimalFormatLength type="short">
  3632. <decimalFormat>
  3633. <pattern type="1000" count="one">0 ہزار</pattern>
  3634. <pattern type="1000" count="other">0 ہزار</pattern>
  3635. <pattern type="10000" count="one">00 ہزار</pattern>
  3636. <pattern type="10000" count="other">00 ہزار</pattern>
  3637. <pattern type="100000" count="one">0 لاکھ</pattern>
  3638. <pattern type="100000" count="other">0 لاکھ</pattern>
  3639. <pattern type="1000000" count="one">00 لاکھ</pattern>
  3640. <pattern type="1000000" count="other">00 لاکھ</pattern>
  3641. <pattern type="10000000" count="one">0 کروڑ</pattern>
  3642. <pattern type="10000000" count="other">0 کروڑ</pattern>
  3643. <pattern type="100000000" count="one">00 کروڑ</pattern>
  3644. <pattern type="100000000" count="other">00 کروڑ</pattern>
  3645. <pattern type="1000000000" count="one">0 ارب</pattern>
  3646. <pattern type="1000000000" count="other">0 ارب</pattern>
  3647. <pattern type="10000000000" count="one">00 ارب</pattern>
  3648. <pattern type="10000000000" count="other">00 ارب</pattern>
  3649. <pattern type="100000000000" count="one">0 کھرب</pattern>
  3650. <pattern type="100000000000" count="other">0 کھرب</pattern>
  3651. <pattern type="1000000000000" count="one">00 کھرب</pattern>
  3652. <pattern type="1000000000000" count="other">00 کھرب</pattern>
  3653. <pattern type="10000000000000" count="one">00T</pattern>
  3654. <pattern type="10000000000000" count="other">00T</pattern>
  3655. <pattern type="100000000000000" count="one">000T</pattern>
  3656. <pattern type="100000000000000" count="other">000T</pattern>
  3657. </decimalFormat>
  3658. </decimalFormatLength>
  3659. </decimalFormats>
  3660. <scientificFormats numberSystem="latn">
  3661. <scientificFormatLength>
  3662. <scientificFormat>
  3663. <pattern>#E0</pattern>
  3664. </scientificFormat>
  3665. </scientificFormatLength>
  3666. </scientificFormats>
  3667. <percentFormats numberSystem="latn">
  3668. <percentFormatLength>
  3669. <percentFormat>
  3670. <pattern>#,##0%</pattern>
  3671. </percentFormat>
  3672. </percentFormatLength>
  3673. </percentFormats>
  3674. <currencyFormats numberSystem="latn">
  3675. <currencyFormatLength>
  3676. <currencyFormat type="standard">
  3677. <pattern>¤#,##0.00‎</pattern>
  3678. </currencyFormat>
  3679. </currencyFormatLength>
  3680. <unitPattern count="one">{0} {1}</unitPattern>
  3681. <unitPattern count="other">{0} {1}</unitPattern>
  3682. </currencyFormats>
  3683. <currencies>
  3684. <currency type="AED">
  3685. <displayName>متحدہ عرب اماراتی درہم</displayName>
  3686. <displayName count="one">متحدہ عرب اماراتی درہم</displayName>
  3687. <displayName count="other">متحدہ عرب اماراتی درہم</displayName>
  3688. </currency>
  3689. <currency type="AFN">
  3690. <displayName>افغان افغانی</displayName>
  3691. </currency>
  3692. <currency type="ALL">
  3693. <displayName>البانیا کا لیک</displayName>
  3694. </currency>
  3695. <currency type="AMD">
  3696. <displayName>آرمینیائی ڈرم</displayName>
  3697. </currency>
  3698. <currency type="ANG">
  3699. <displayName>نیدر لینڈز انٹیلیئن گلڈر</displayName>
  3700. </currency>
  3701. <currency type="AOA">
  3702. <displayName>انگولا کا کوانزا</displayName>
  3703. </currency>
  3704. <currency type="ARS">
  3705. <displayName>ارجنٹائن پیسہ</displayName>
  3706. <displayName count="one">ارجنٹائن پیسہ</displayName>
  3707. <displayName count="other">ارجنٹائن پیسہ</displayName>
  3708. </currency>
  3709. <currency type="AUD">
  3710. <displayName>آسٹریلین ڈالر</displayName>
  3711. <displayName count="one">آسٹریلین ڈالر</displayName>
  3712. <displayName count="other">آسٹریلین ڈالر</displayName>
  3713. <symbol>A$</symbol>
  3714. </currency>
  3715. <currency type="AWG">
  3716. <displayName>اروبن فلورِن</displayName>
  3717. </currency>
  3718. <currency type="AZN">
  3719. <displayName>آذربائجانی منات</displayName>
  3720. </currency>
  3721. <currency type="BAM">
  3722. <displayName>بوسنیا ہرزیگووینا کا قابل منتقلی نشان</displayName>
  3723. </currency>
  3724. <currency type="BBD">
  3725. <displayName>باربیڈین ڈالر</displayName>
  3726. </currency>
  3727. <currency type="BDT">
  3728. <displayName>بنگلہ دیشی ٹکا</displayName>
  3729. </currency>
  3730. <currency type="BGN">
  3731. <displayName>بلغارین لیو</displayName>
  3732. </currency>
  3733. <currency type="BHD">
  3734. <displayName>بحرینی دینار</displayName>
  3735. </currency>
  3736. <currency type="BIF">
  3737. <displayName>برونڈیئن فرینک</displayName>
  3738. </currency>
  3739. <currency type="BMD">
  3740. <displayName>برمودا کا ڈالر</displayName>
  3741. </currency>
  3742. <currency type="BND">
  3743. <displayName>برونئی ڈالر</displayName>
  3744. </currency>
  3745. <currency type="BOB">
  3746. <displayName>بولیوین بولیویانو</displayName>
  3747. </currency>
  3748. <currency type="BRL">
  3749. <displayName>برازیلی ریئل</displayName>
  3750. <displayName count="one">برازیلی ریئل</displayName>
  3751. <displayName count="other">برازیلی ریئل</displayName>
  3752. </currency>
  3753. <currency type="BSD">
  3754. <displayName>بہامانی ڈالر</displayName>
  3755. </currency>
  3756. <currency type="BTN">
  3757. <displayName>بھوٹانی گُلٹرم</displayName>
  3758. </currency>
  3759. <currency type="BWP">
  3760. <displayName>بوتسوانا کا پولا</displayName>
  3761. </currency>
  3762. <currency type="BYR">
  3763. <displayName>بیلاروسی روبل</displayName>
  3764. </currency>
  3765. <currency type="BZD">
  3766. <displayName>بیلائز ڈالر</displayName>
  3767. </currency>
  3768. <currency type="CAD">
  3769. <displayName>کنیڈین ڈالر</displayName>
  3770. <displayName count="one">کنیڈین ڈالر</displayName>
  3771. <displayName count="other">کنیڈین ڈالر</displayName>
  3772. </currency>
  3773. <currency type="CDF">
  3774. <displayName>کانگولیز فرینک</displayName>
  3775. </currency>
  3776. <currency type="CHF">
  3777. <displayName>سوئس فرانکس</displayName>
  3778. <displayName count="one">سوئس فرانکس</displayName>
  3779. <displayName count="other">سوئس فرانکس</displayName>
  3780. </currency>
  3781. <currency type="CLP">
  3782. <displayName>چلّین پیسہ</displayName>
  3783. <displayName count="one">چلّین پیسہ</displayName>
  3784. <displayName count="other">چلّین پیسہ</displayName>
  3785. </currency>
  3786. <currency type="CNY">
  3787. <displayName>چینی یوآن</displayName>
  3788. </currency>
  3789. <currency type="COP">
  3790. <displayName>کولمبین پیسہ</displayName>
  3791. <displayName count="one">کولمبین پیسہ</displayName>
  3792. <displayName count="other">کولمبین پیسہ</displayName>
  3793. </currency>
  3794. <currency type="CRC">
  3795. <displayName>کوسٹا ریکا کا کولن</displayName>
  3796. </currency>
  3797. <currency type="CUC">
  3798. <displayName>کیوبا کا قابل منتقلی پیسو</displayName>
  3799. </currency>
  3800. <currency type="CUP">
  3801. <displayName>کیوبا کا پیسو</displayName>
  3802. </currency>
  3803. <currency type="CVE">
  3804. <displayName>کیپ ورڈی کا اسکیوڈو</displayName>
  3805. </currency>
  3806. <currency type="CZK">
  3807. <displayName>جمہوریہ چیک کرونا</displayName>
  3808. <displayName count="one">جمہوریہ چیک کرونا</displayName>
  3809. <displayName count="other">جمہوریہ چیک کروناز</displayName>
  3810. </currency>
  3811. <currency type="DEM">
  3812. <displayName draft="contributed">ڈچ مارکس</displayName>
  3813. </currency>
  3814. <currency type="DJF">
  3815. <displayName>جبوتی کا فرینک</displayName>
  3816. </currency>
  3817. <currency type="DKK">
  3818. <displayName>ڈنمارک کرونر</displayName>
  3819. <displayName count="one">ڈنمارک کرونر</displayName>
  3820. <displayName count="other">ڈنمارک کرونر</displayName>
  3821. </currency>
  3822. <currency type="DOP">
  3823. <displayName>ڈومنیکن پیسو</displayName>
  3824. </currency>
  3825. <currency type="DZD">
  3826. <displayName>الجیریائی دینار</displayName>
  3827. </currency>
  3828. <currency type="EEK">
  3829. <displayName draft="contributed">ایسٹونین کرون</displayName>
  3830. </currency>
  3831. <currency type="EGP">
  3832. <displayName>مصری پائونڈ</displayName>
  3833. <displayName count="one">مصری پائونڈ</displayName>
  3834. <displayName count="other">مصری پائونڈ</displayName>
  3835. </currency>
  3836. <currency type="ERN">
  3837. <displayName>اریٹیریا کا نافکا</displayName>
  3838. </currency>
  3839. <currency type="ETB">
  3840. <displayName>ایتھوپیائی بِرّ</displayName>
  3841. </currency>
  3842. <currency type="EUR">
  3843. <displayName>یورو</displayName>
  3844. <displayName count="one">یورو</displayName>
  3845. <displayName count="other">یورو</displayName>
  3846. </currency>
  3847. <currency type="FJD">
  3848. <displayName>فجی کا ڈالر</displayName>
  3849. </currency>
  3850. <currency type="FKP">
  3851. <displayName>فاکلینڈ آئلینڈز پونڈ</displayName>
  3852. </currency>
  3853. <currency type="FRF">
  3854. <displayName draft="provisional">فرانسیسی فرانک</displayName>
  3855. </currency>
  3856. <currency type="GBP">
  3857. <displayName draft="contributed">انگلستانی پاونڈ سٹرلنگ</displayName>
  3858. </currency>
  3859. <currency type="GEL">
  3860. <displayName>جارجیائی لاری</displayName>
  3861. </currency>
  3862. <currency type="GHS">
  3863. <displayName>گھانا کا سیڈی</displayName>
  3864. </currency>
  3865. <currency type="GIP">
  3866. <displayName>جبل الطارق پونڈ</displayName>
  3867. </currency>
  3868. <currency type="GMD">
  3869. <displayName>گامبیا کا ڈلاسی</displayName>
  3870. </currency>
  3871. <currency type="GNF">
  3872. <displayName>گنی کا فرینک</displayName>
  3873. </currency>
  3874. <currency type="GTQ">
  3875. <displayName>گواٹے مالا کا کوئٹزل</displayName>
  3876. </currency>
  3877. <currency type="GYD">
  3878. <displayName>گویانیز ڈالر</displayName>
  3879. </currency>
  3880. <currency type="HKD">
  3881. <displayName>ھانگ کانگ ڈالر</displayName>
  3882. <displayName count="one">ھانگ کانگ ڈالر</displayName>
  3883. <displayName count="other">ھانگ کانگ ڈالر</displayName>
  3884. </currency>
  3885. <currency type="HNL">
  3886. <displayName>ہونڈوران لیمپیرا</displayName>
  3887. </currency>
  3888. <currency type="HRK">
  3889. <displayName>کروشین کونا</displayName>
  3890. <displayName count="one">کروشین کونا</displayName>
  3891. <displayName count="other">کروشین کونا</displayName>
  3892. </currency>
  3893. <currency type="HTG">
  3894. <displayName>ہیتی کا گؤرڈی</displayName>
  3895. </currency>
  3896. <currency type="HUF">
  3897. <displayName>ہنگرین فورنٹ</displayName>
  3898. <displayName count="one">ہنگرین فورنٹ</displayName>
  3899. <displayName count="other">ہنگرین فورنٹ</displayName>
  3900. </currency>
  3901. <currency type="IDR">
  3902. <displayName>انڈونیشین روپیہ</displayName>
  3903. <displayName count="one">انڈونیشین روپیہ</displayName>
  3904. <displayName count="other">انڈونیشین روپیہ</displayName>
  3905. </currency>
  3906. <currency type="ILS">
  3907. <displayName>اسرائیلی نیا شیکل</displayName>
  3908. <displayName count="one">اسرائیلی نیا شیکل</displayName>
  3909. <displayName count="other">اسرائیلی نیا شیکلز</displayName>
  3910. </currency>
  3911. <currency type="INR">
  3912. <displayName>انڈین روپیہ</displayName>
  3913. </currency>
  3914. <currency type="IQD">
  3915. <displayName>عراقی دینار</displayName>
  3916. </currency>
  3917. <currency type="IRR">
  3918. <displayName>ایرانی ریال</displayName>
  3919. </currency>
  3920. <currency type="ISK">
  3921. <displayName>آئس لینڈ کا کرونا</displayName>
  3922. </currency>
  3923. <currency type="JMD">
  3924. <displayName>جمائیکن ڈالر</displayName>
  3925. </currency>
  3926. <currency type="JOD">
  3927. <displayName>اردنی دینار</displayName>
  3928. </currency>
  3929. <currency type="JPY">
  3930. <displayName>جاپانی ین</displayName>
  3931. <displayName count="one">جاپانی ین</displayName>
  3932. <displayName count="other">جاپانی ین</displayName>
  3933. </currency>
  3934. <currency type="KES">
  3935. <displayName>کینیائی شلنگ</displayName>
  3936. </currency>
  3937. <currency type="KGS">
  3938. <displayName>کرغستانی سوم</displayName>
  3939. </currency>
  3940. <currency type="KHR">
  3941. <displayName>کمبوڈیائی ریئل</displayName>
  3942. </currency>
  3943. <currency type="KMF">
  3944. <displayName>کوموریئن فرینک</displayName>
  3945. </currency>
  3946. <currency type="KPW">
  3947. <displayName>شمالی کوریائی وون</displayName>
  3948. </currency>
  3949. <currency type="KRW">
  3950. <displayName>جنوبی کوریائی وون</displayName>
  3951. </currency>
  3952. <currency type="KWD">
  3953. <displayName>کویتی دینار</displayName>
  3954. </currency>
  3955. <currency type="KYD">
  3956. <displayName>کیمین آئلینڈز ڈالر</displayName>
  3957. </currency>
  3958. <currency type="KZT">
  3959. <displayName>قزاخستانی ٹینگ</displayName>
  3960. </currency>
  3961. <currency type="LAK">
  3962. <displayName>لاؤشیائی کِپ</displayName>
  3963. </currency>
  3964. <currency type="LBP">
  3965. <displayName>لبانی پونڈ</displayName>
  3966. </currency>
  3967. <currency type="LKR">
  3968. <displayName>سری لنکائی روپیہ</displayName>
  3969. </currency>
  3970. <currency type="LRD">
  3971. <displayName>لائبریائی ڈالر</displayName>
  3972. </currency>
  3973. <currency type="LSL">
  3974. <displayName>لیسوتھو لوٹی</displayName>
  3975. </currency>
  3976. <currency type="LTL">
  3977. <displayName>لیتھوینیائی لیٹاس</displayName>
  3978. </currency>
  3979. <currency type="LVL">
  3980. <displayName>لاتویائی لیٹس</displayName>
  3981. </currency>
  3982. <currency type="LYD">
  3983. <displayName>لیبیائی دینار</displayName>
  3984. </currency>
  3985. <currency type="MAD">
  3986. <displayName>مراکشی درہم</displayName>
  3987. <displayName count="one">مراکشی درہم</displayName>
  3988. <displayName count="other">مراکشی درہم</displayName>
  3989. </currency>
  3990. <currency type="MDL">
  3991. <displayName>مالدیپ کا لیو</displayName>
  3992. </currency>
  3993. <currency type="MGA">
  3994. <displayName>ملاگاسی اریاری</displayName>
  3995. </currency>
  3996. <currency type="MKD">
  3997. <displayName>مقدونیائی دینار</displayName>
  3998. </currency>
  3999. <currency type="MMK">
  4000. <displayName>میانما کیاٹ</displayName>
  4001. </currency>
  4002. <currency type="MNT">
  4003. <displayName>منگولیائی ٹگرِ</displayName>
  4004. </currency>
  4005. <currency type="MOP">
  4006. <displayName>میکانیز پٹاکا</displayName>
  4007. </currency>
  4008. <currency type="MRO">
  4009. <displayName>موریطانیائی اوگوئیا</displayName>
  4010. </currency>
  4011. <currency type="MUR">
  4012. <displayName>ماریشس کا روپیہ</displayName>
  4013. </currency>
  4014. <currency type="MVR">
  4015. <displayName>مالدیپ کا روفیہ</displayName>
  4016. </currency>
  4017. <currency type="MWK">
  4018. <displayName>ملاوی کواچا</displayName>
  4019. </currency>
  4020. <currency type="MXN">
  4021. <displayName>میکسیکی پیسہ</displayName>
  4022. <displayName count="one">میکسیکی پیسہ</displayName>
  4023. <displayName count="other">میکسیکی پیسہ</displayName>
  4024. </currency>
  4025. <currency type="MYR">
  4026. <displayName>ملیشیائی رنگِٹ</displayName>
  4027. </currency>
  4028. <currency type="MZN">
  4029. <displayName>موزامبیقی میٹیکل</displayName>
  4030. <displayName count="one">موزامبیقی میٹیکل</displayName>
  4031. <displayName count="other">موزامبیقی میٹیکلز</displayName>
  4032. </currency>
  4033. <currency type="NAD">
  4034. <displayName>نامیبیائی ڈالر</displayName>
  4035. </currency>
  4036. <currency type="NGN">
  4037. <displayName>نائیجیریائی نائرا</displayName>
  4038. </currency>
  4039. <currency type="NIO">
  4040. <displayName>نکارا گوا کا کورڈوبا</displayName>
  4041. </currency>
  4042. <currency type="NOK">
  4043. <displayName draft="contributed">ناروے کرونر</displayName>
  4044. </currency>
  4045. <currency type="NPR">
  4046. <displayName>نیپالی روپیہ</displayName>
  4047. </currency>
  4048. <currency type="NZD">
  4049. <displayName>نیوزی لینڈ ڈالر</displayName>
  4050. <displayName count="one">نیوزی لینڈ ڈالر</displayName>
  4051. <displayName count="other">نیوزی لینڈ ڈالر</displayName>
  4052. </currency>
  4053. <currency type="OMR">
  4054. <displayName>عمانی ریال</displayName>
  4055. </currency>
  4056. <currency type="PAB">
  4057. <displayName>پنامہ کا بالبوآ</displayName>
  4058. </currency>
  4059. <currency type="PEN">
  4060. <displayName>پیروین نیووسول</displayName>
  4061. </currency>
  4062. <currency type="PGK">
  4063. <displayName>پاپوآ نیو گنی کا کینا</displayName>
  4064. </currency>
  4065. <currency type="PHP">
  4066. <displayName>فلپائینی پیسہ</displayName>
  4067. <displayName count="one">فلپائینی پیسہ</displayName>
  4068. <displayName count="other">فلپائینی پیسہ</displayName>
  4069. </currency>
  4070. <currency type="PKR">
  4071. <displayName>پاکستانی روپیہ</displayName>
  4072. <symbol>Rs</symbol>
  4073. </currency>
  4074. <currency type="PLN">
  4075. <displayName>پولش نیو زلوٹی</displayName>
  4076. <displayName count="one">پولش نیو زلوٹی</displayName>
  4077. <displayName count="other">پولش نیو زلوٹی</displayName>
  4078. </currency>
  4079. <currency type="PYG">
  4080. <displayName>پیراگوئے کا گوآرنی</displayName>
  4081. </currency>
  4082. <currency type="QAR">
  4083. <displayName>قطری ریال</displayName>
  4084. </currency>
  4085. <currency type="RON">
  4086. <displayName>رومانیائی لیو</displayName>
  4087. <displayName count="one">رومانیائی لیو</displayName>
  4088. <displayName count="other">رومانیائی لی</displayName>
  4089. </currency>
  4090. <currency type="RSD">
  4091. <displayName>سربین دینار</displayName>
  4092. <displayName count="one">سربین دینار</displayName>
  4093. <displayName count="other">سربین دینار</displayName>
  4094. </currency>
  4095. <currency type="RUB">
  4096. <displayName>روسی روبل</displayName>
  4097. <displayName count="one">روسی روبل</displayName>
  4098. <displayName count="other">روسی روبل</displayName>
  4099. </currency>
  4100. <currency type="RWF">
  4101. <displayName>روانڈا کا فرینک</displayName>
  4102. </currency>
  4103. <currency type="SAR">
  4104. <displayName>سعودی ریال</displayName>
  4105. <displayName count="one">سعودی ریال</displayName>
  4106. <displayName count="other">سعودی ریال</displayName>
  4107. </currency>
  4108. <currency type="SBD">
  4109. <displayName>سولومن آئلینڈز ڈالر</displayName>
  4110. </currency>
  4111. <currency type="SCR">
  4112. <displayName>سشلی کا روپیہ</displayName>
  4113. </currency>
  4114. <currency type="SDG">
  4115. <displayName>سوڈانی پونڈ</displayName>
  4116. </currency>
  4117. <currency type="SEK">
  4118. <displayName>سویڈن کرونا</displayName>
  4119. <displayName count="one">سویڈن کرونا</displayName>
  4120. <displayName count="other">سویڈن کرونر</displayName>
  4121. </currency>
  4122. <currency type="SGD">
  4123. <displayName>سنگا پور ڈالر</displayName>
  4124. <displayName count="one">سنگا پور ڈالر</displayName>
  4125. <displayName count="other">سنگا پور ڈالر</displayName>
  4126. </currency>
  4127. <currency type="SHP">
  4128. <displayName>سینٹ ہیلینا پونڈ</displayName>
  4129. </currency>
  4130. <currency type="SIT">
  4131. <displayName draft="contributed">سلوانین ٹولر</displayName>
  4132. </currency>
  4133. <currency type="SKK">
  4134. <displayName draft="contributed">سلووک کرونا</displayName>
  4135. </currency>
  4136. <currency type="SLL">
  4137. <displayName>سیئرا لیون لیون</displayName>
  4138. </currency>
  4139. <currency type="SOS">
  4140. <displayName>صومالی شلنگ</displayName>
  4141. </currency>
  4142. <currency type="SRD">
  4143. <displayName>سورینامی ڈالر</displayName>
  4144. </currency>
  4145. <currency type="SSP">
  4146. <displayName>جنوبی سوڈانی پاؤنڈ</displayName>
  4147. <displayName count="one">جنوبی سوڈانی پاؤنڈ</displayName>
  4148. <displayName count="other">جنوبی سوڈانی پاؤنڈز</displayName>
  4149. </currency>
  4150. <currency type="STD">
  4151. <displayName>ساؤ ٹوم اور پرنسپے ڈوبرا</displayName>
  4152. </currency>
  4153. <currency type="SYP">
  4154. <displayName>شامی پونڈ</displayName>
  4155. </currency>
  4156. <currency type="SZL">
  4157. <displayName>سوازی لیلانجینی</displayName>
  4158. </currency>
  4159. <currency type="THB">
  4160. <displayName>تھائی باہت</displayName>
  4161. <displayName count="one">تھائی باہت</displayName>
  4162. <displayName count="other">تھائی باہت</displayName>
  4163. </currency>
  4164. <currency type="TJS">
  4165. <displayName>تاجکستانی سومونی</displayName>
  4166. </currency>
  4167. <currency type="TMT">
  4168. <displayName>ترکمانستانی منات</displayName>
  4169. </currency>
  4170. <currency type="TND">
  4171. <displayName>تیونیسیائی دینار</displayName>
  4172. </currency>
  4173. <currency type="TOP">
  4174. <displayName>ٹونگن پانگا</displayName>
  4175. </currency>
  4176. <currency type="TRY">
  4177. <displayName>ترکی لیرا</displayName>
  4178. </currency>
  4179. <currency type="TTD">
  4180. <displayName>ترینیداد اور ٹوباگو کا ڈالر</displayName>
  4181. </currency>
  4182. <currency type="TWD">
  4183. <displayName>نیو تائیوان ڈالر</displayName>
  4184. </currency>
  4185. <currency type="TZS">
  4186. <displayName>تنزانیائی شلنگ</displayName>
  4187. </currency>
  4188. <currency type="UAH">
  4189. <displayName>یوکرینیائی ہریونیا</displayName>
  4190. </currency>
  4191. <currency type="UGX">
  4192. <displayName>یوگانڈا شلنگ</displayName>
  4193. </currency>
  4194. <currency type="USD">
  4195. <displayName>امریکی ڈالر</displayName>
  4196. <displayName count="one">امریکی ڈالر</displayName>
  4197. <displayName count="other">امریکی ڈالر</displayName>
  4198. <symbol>$</symbol>
  4199. </currency>
  4200. <currency type="UYU">
  4201. <displayName>یوروگویان پیسو</displayName>
  4202. </currency>
  4203. <currency type="UZS">
  4204. <displayName>ازبکستان سوم</displayName>
  4205. </currency>
  4206. <currency type="VEB">
  4207. <displayName>وینزویلا بولیور (1871–2008)</displayName>
  4208. </currency>
  4209. <currency type="VEF">
  4210. <displayName>وینزویلا بولیور</displayName>
  4211. </currency>
  4212. <currency type="VND">
  4213. <displayName>ویتنامی ڈانگ</displayName>
  4214. </currency>
  4215. <currency type="VUV">
  4216. <displayName>وینوواتو واتو</displayName>
  4217. </currency>
  4218. <currency type="WST">
  4219. <displayName>ساموآ کا ٹالا</displayName>
  4220. </currency>
  4221. <currency type="XAF">
  4222. <displayName>CFA فرانک BEAC</displayName>
  4223. <displayName count="one">CFA فرانک BEAC</displayName>
  4224. <displayName count="other">CFA فرانکس BEAC</displayName>
  4225. </currency>
  4226. <currency type="XCD">
  4227. <displayName>مشرقی کریبیا کا ڈالر</displayName>
  4228. </currency>
  4229. <currency type="XOF">
  4230. <displayName>CFA فرانک BCEAO</displayName>
  4231. <displayName count="one">CFA فرانک BCEAO</displayName>
  4232. <displayName count="other">CFA فرانکس BCEAO</displayName>
  4233. <symbol>CFA</symbol>
  4234. </currency>
  4235. <currency type="XPF">
  4236. <displayName>CFP فرانک</displayName>
  4237. <displayName count="one">CFP فرانک</displayName>
  4238. <displayName count="other">CFP فرانکس</displayName>
  4239. </currency>
  4240. <currency type="XXX">
  4241. <displayName>نامعلوم کرنسی</displayName>
  4242. </currency>
  4243. <currency type="YER">
  4244. <displayName>یمنی ریال</displayName>
  4245. </currency>
  4246. <currency type="ZAR">
  4247. <displayName>جنوبی افریقی رانڈ</displayName>
  4248. <displayName count="one">جنوبی افریقی رانڈ</displayName>
  4249. <displayName count="other">جنوبی افریقی رانڈ</displayName>
  4250. </currency>
  4251. <currency type="ZMK">
  4252. <displayName>زامبیائی کواچا (1968–2012)</displayName>
  4253. </currency>
  4254. <currency type="ZMW">
  4255. <displayName>زامبیائی کواچا</displayName>
  4256. </currency>
  4257. </currencies>
  4258. <miscPatterns numberSystem="latn">
  4259. <pattern type="atLeast">⩾{0}</pattern>
  4260. <pattern type="range">{0}–{1}</pattern>
  4261. </miscPatterns>
  4262. </numbers>
  4263. <units>
  4264. <unitLength type="long">
  4265. <compoundUnit type="per">
  4266. <compoundUnitPattern>{0} فی {1}</compoundUnitPattern>
  4267. </compoundUnit>
  4268. <unit type="acceleration-g-force">
  4269. <unitPattern count="one">{0} جی-فورس</unitPattern>
  4270. <unitPattern count="other">{0} جی-فورس</unitPattern>
  4271. </unit>
  4272. <unit type="angle-arc-minute">
  4273. <unitPattern count="one">{0} منٹ</unitPattern>
  4274. <unitPattern count="other">{0} منٹ</unitPattern>
  4275. </unit>
  4276. <unit type="angle-arc-second">
  4277. <unitPattern count="one">{0} سیکنڈ</unitPattern>
  4278. <unitPattern count="other">{0} سیکنڈ</unitPattern>
  4279. </unit>
  4280. <unit type="angle-degree">
  4281. <unitPattern count="one">{0} ڈگری</unitPattern>
  4282. <unitPattern count="other">{0} ڈگری</unitPattern>
  4283. </unit>
  4284. <unit type="area-acre">
  4285. <unitPattern count="one">{0} ایکڑ</unitPattern>
  4286. <unitPattern count="other">{0} ایکڑ</unitPattern>
  4287. </unit>
  4288. <unit type="area-hectare">
  4289. <unitPattern count="one">{0} ہیکٹر</unitPattern>
  4290. <unitPattern count="other">{0} ہیکٹر</unitPattern>
  4291. </unit>
  4292. <unit type="area-square-foot">
  4293. <unitPattern count="one">{0} سکویر فٹ</unitPattern>
  4294. <unitPattern count="other">{0} سکویر فٹ</unitPattern>
  4295. </unit>
  4296. <unit type="area-square-kilometer">
  4297. <unitPattern count="one">{0} سکویر کلو میٹر</unitPattern>
  4298. <unitPattern count="other">{0} سکویر کلو میٹر</unitPattern>
  4299. </unit>
  4300. <unit type="area-square-meter">
  4301. <unitPattern count="one">{0} سکویر میٹر</unitPattern>
  4302. <unitPattern count="other">{0} سکویر میٹر</unitPattern>
  4303. </unit>
  4304. <unit type="area-square-mile">
  4305. <unitPattern count="one">{0} سکویر میل</unitPattern>
  4306. <unitPattern count="other">{0} سکویر میل</unitPattern>
  4307. </unit>
  4308. <unit type="duration-day">
  4309. <unitPattern count="one">{0} دن</unitPattern>
  4310. <unitPattern count="other">{0} دن</unitPattern>
  4311. </unit>
  4312. <unit type="duration-hour">
  4313. <unitPattern count="one">{0} گھنٹہ</unitPattern>
  4314. <unitPattern count="other">{0} گھنٹے</unitPattern>
  4315. </unit>
  4316. <unit type="duration-millisecond">
  4317. <unitPattern count="one">{0} ملی سیکنڈ</unitPattern>
  4318. <unitPattern count="other">{0} میل سیکنڈ</unitPattern>
  4319. </unit>
  4320. <unit type="duration-minute">
  4321. <unitPattern count="one">{0} منٹ</unitPattern>
  4322. <unitPattern count="other">{0} منٹ</unitPattern>
  4323. </unit>
  4324. <unit type="duration-month">
  4325. <unitPattern count="one">{0} مہینہ</unitPattern>
  4326. <unitPattern count="other">{0} مہینے</unitPattern>
  4327. </unit>
  4328. <unit type="duration-second">
  4329. <unitPattern count="one">{0} سیکنڈ</unitPattern>
  4330. <unitPattern count="other">{0} سیکنڈ</unitPattern>
  4331. </unit>
  4332. <unit type="duration-week">
  4333. <unitPattern count="one">{0} ہفتہ</unitPattern>
  4334. <unitPattern count="other">{0} ہفتے</unitPattern>
  4335. </unit>
  4336. <unit type="duration-year">
  4337. <unitPattern count="one">{0} سال</unitPattern>
  4338. <unitPattern count="other">{0} سال</unitPattern>
  4339. </unit>
  4340. <unit type="length-centimeter">
  4341. <unitPattern count="one">{0} سینٹی میٹر</unitPattern>
  4342. <unitPattern count="other">{0} سینٹی میٹر</unitPattern>
  4343. </unit>
  4344. <unit type="length-foot">
  4345. <unitPattern count="one">{0} فیٹ</unitPattern>
  4346. <unitPattern count="other">{0} فیٹ</unitPattern>
  4347. </unit>
  4348. <unit type="length-inch">
  4349. <unitPattern count="one">{0} انچ</unitPattern>
  4350. <unitPattern count="other">{0} انچ</unitPattern>
  4351. </unit>
  4352. <unit type="length-kilometer">
  4353. <unitPattern count="one">{0} کلو میٹر</unitPattern>
  4354. <unitPattern count="other">{0} کلو میٹر</unitPattern>
  4355. </unit>
  4356. <unit type="length-light-year">
  4357. <unitPattern count="one">{0} روشنی سال</unitPattern>
  4358. <unitPattern count="other">{0} روشنی سال</unitPattern>
  4359. </unit>
  4360. <unit type="length-meter">
  4361. <unitPattern count="one">{0} میٹر</unitPattern>
  4362. <unitPattern count="other">{0} میٹر</unitPattern>
  4363. </unit>
  4364. <unit type="length-mile">
  4365. <unitPattern count="one">{0} میل</unitPattern>
  4366. <unitPattern count="other">{0} میل</unitPattern>
  4367. </unit>
  4368. <unit type="length-millimeter">
  4369. <unitPattern count="one">{0} ملیمیٹر</unitPattern>
  4370. <unitPattern count="other">{0} ملیمیٹر</unitPattern>
  4371. </unit>
  4372. <unit type="length-picometer">
  4373. <unitPattern count="one">{0} پیکو میٹر</unitPattern>
  4374. <unitPattern count="other">{0} پیکو میٹر</unitPattern>
  4375. </unit>
  4376. <unit type="length-yard">
  4377. <unitPattern count="one">{0} یارڈ</unitPattern>
  4378. <unitPattern count="other">{0} یارڈ</unitPattern>
  4379. </unit>
  4380. <unit type="mass-gram">
  4381. <unitPattern count="one">{0} گرام</unitPattern>
  4382. <unitPattern count="other">{0} گرام</unitPattern>
  4383. </unit>
  4384. <unit type="mass-kilogram">
  4385. <unitPattern count="one">{0} کلو گرام</unitPattern>
  4386. <unitPattern count="other">{0} کلو گرام</unitPattern>
  4387. </unit>
  4388. <unit type="mass-ounce">
  4389. <unitPattern count="one">{0} ونس</unitPattern>
  4390. <unitPattern count="other">{0} ونس</unitPattern>
  4391. </unit>
  4392. <unit type="mass-pound">
  4393. <unitPattern count="one">{0} پونڈ</unitPattern>
  4394. <unitPattern count="other">{0} پونڈ</unitPattern>
  4395. </unit>
  4396. <unit type="power-horsepower">
  4397. <unitPattern count="one">{0} ہارس پاور</unitPattern>
  4398. <unitPattern count="other">{0} ہارس پاور</unitPattern>
  4399. </unit>
  4400. <unit type="power-kilowatt">
  4401. <unitPattern count="one">{0} کلو واٹ</unitPattern>
  4402. <unitPattern count="other">{0} کلو واٹ</unitPattern>
  4403. </unit>
  4404. <unit type="power-watt">
  4405. <unitPattern count="one">{0} واٹ</unitPattern>
  4406. <unitPattern count="other">{0} واٹ</unitPattern>
  4407. </unit>
  4408. <unit type="pressure-hectopascal">
  4409. <unitPattern count="one">{0} ہیکٹو پاسکل</unitPattern>
  4410. <unitPattern count="other">{0} ہیکٹو پاسکل</unitPattern>
  4411. </unit>
  4412. <unit type="pressure-inch-hg">
  4413. <unitPattern count="one">{0} انچ مرکری</unitPattern>
  4414. <unitPattern count="other">{0} انچ مرکری</unitPattern>
  4415. </unit>
  4416. <unit type="pressure-millibar">
  4417. <unitPattern count="one">{0} ملی بار</unitPattern>
  4418. <unitPattern count="other">{0} ملی بار</unitPattern>
  4419. </unit>
  4420. <unit type="speed-kilometer-per-hour">
  4421. <unitPattern count="one">{0} کلومیٹر فی گھنٹہ</unitPattern>
  4422. <unitPattern count="other">{0} کلومیٹر فی گھنٹہ</unitPattern>
  4423. </unit>
  4424. <unit type="speed-meter-per-second">
  4425. <unitPattern count="one">{0} میٹر فی سیکنڈ</unitPattern>
  4426. <unitPattern count="other">{0} میٹر فی سیکنڈ</unitPattern>
  4427. </unit>
  4428. <unit type="speed-mile-per-hour">
  4429. <unitPattern count="one">{0}میل فی گھنٹہ</unitPattern>
  4430. <unitPattern count="other">{0} میل فی گھنٹہ</unitPattern>
  4431. </unit>
  4432. <unit type="temperature-celsius">
  4433. <unitPattern count="one">{0} ڈگری سیلسیس</unitPattern>
  4434. <unitPattern count="other">{0} ڈگری سیلسیس</unitPattern>
  4435. </unit>
  4436. <unit type="temperature-fahrenheit">
  4437. <unitPattern count="one">{0}ڈگری فارن ہائیٹ</unitPattern>
  4438. <unitPattern count="other">{0} ڈگری فارن ہائیٹ</unitPattern>
  4439. </unit>
  4440. <unit type="volume-cubic-kilometer">
  4441. <unitPattern count="one">{0} کیوبک کلو میٹر</unitPattern>
  4442. <unitPattern count="other">{0} کیوبک کلو میٹر</unitPattern>
  4443. </unit>
  4444. <unit type="volume-cubic-mile">
  4445. <unitPattern count="one">{0} کیوبک میل</unitPattern>
  4446. <unitPattern count="other">{0} کیوبک میل</unitPattern>
  4447. </unit>
  4448. <unit type="volume-liter">
  4449. <unitPattern count="one">{0} لیٹر</unitPattern>
  4450. <unitPattern count="other">{0} لیٹر</unitPattern>
  4451. </unit>
  4452. </unitLength>
  4453. <unitLength type="short">
  4454. <compoundUnit type="per">
  4455. <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
  4456. </compoundUnit>
  4457. <unit type="acceleration-g-force">
  4458. <unitPattern count="one">{0} جی-فورس</unitPattern>
  4459. <unitPattern count="other">{0} جی-فورس</unitPattern>
  4460. </unit>
  4461. <unit type="angle-arc-minute">
  4462. <unitPattern count="one">{0} منٹ</unitPattern>
  4463. <unitPattern count="other">{0} منٹ</unitPattern>
  4464. </unit>
  4465. <unit type="angle-arc-second">
  4466. <unitPattern count="one">{0}سیکنڈ</unitPattern>
  4467. <unitPattern count="other">{0} سیکنڈ</unitPattern>
  4468. </unit>
  4469. <unit type="angle-degree">
  4470. <unitPattern count="one">{0} ڈگری</unitPattern>
  4471. <unitPattern count="other">{0} ڈگری</unitPattern>
  4472. </unit>
  4473. <unit type="area-acre">
  4474. <unitPattern count="one">{0} ایکڑ</unitPattern>
  4475. <unitPattern count="other">{0} ایکڑ</unitPattern>
  4476. </unit>
  4477. <unit type="area-hectare">
  4478. <unitPattern count="one">{0} ہیکٹر</unitPattern>
  4479. <unitPattern count="other">{0} ہیکٹر</unitPattern>
  4480. </unit>
  4481. <unit type="area-square-foot">
  4482. <unitPattern count="one">{0} سکویر فٹ</unitPattern>
  4483. <unitPattern count="other">{0} سکویر فٹ</unitPattern>
  4484. </unit>
  4485. <unit type="area-square-kilometer">
  4486. <unitPattern count="one">{0} km²</unitPattern>
  4487. <unitPattern count="other">{0} km²</unitPattern>
  4488. </unit>
  4489. <unit type="area-square-meter">
  4490. <unitPattern count="one">{0} m²</unitPattern>
  4491. <unitPattern count="other">{0} m²</unitPattern>
  4492. </unit>
  4493. <unit type="area-square-mile">
  4494. <unitPattern count="one">{0} سکویر میل</unitPattern>
  4495. <unitPattern count="other">{0} سکویر میل</unitPattern>
  4496. </unit>
  4497. <unit type="duration-day">
  4498. <unitPattern count="one">{0} دن</unitPattern>
  4499. <unitPattern count="other">{0} دن</unitPattern>
  4500. </unit>
  4501. <unit type="duration-hour">
  4502. <unitPattern count="one">{0} گھنٹہ</unitPattern>
  4503. <unitPattern count="other">{0} گھنٹے</unitPattern>
  4504. </unit>
  4505. <unit type="duration-millisecond">
  4506. <unitPattern count="one">{0} میل سیکنڈ</unitPattern>
  4507. <unitPattern count="other">{0} میل سیکنڈ</unitPattern>
  4508. </unit>
  4509. <unit type="duration-minute">
  4510. <unitPattern count="one">{0} منٹ</unitPattern>
  4511. <unitPattern count="other">{0} منٹ</unitPattern>
  4512. </unit>
  4513. <unit type="duration-month">
  4514. <unitPattern count="one">{0} مہینہ</unitPattern>
  4515. <unitPattern count="other">{0} مہینے</unitPattern>
  4516. </unit>
  4517. <unit type="duration-second">
  4518. <unitPattern count="one">{0} سیکنڈ</unitPattern>
  4519. <unitPattern count="other">{0} سیکنڈ</unitPattern>
  4520. </unit>
  4521. <unit type="duration-week">
  4522. <unitPattern count="one">{0} ہفتہ</unitPattern>
  4523. <unitPattern count="other">{0} ہفتے</unitPattern>
  4524. </unit>
  4525. <unit type="duration-year">
  4526. <unitPattern count="one">{0} سال</unitPattern>
  4527. <unitPattern count="other">{0} سال</unitPattern>
  4528. </unit>
  4529. <unit type="length-centimeter">
  4530. <unitPattern count="one">{0} سینٹی میٹر</unitPattern>
  4531. <unitPattern count="other">{0} سینٹی میٹر</unitPattern>
  4532. </unit>
  4533. <unit type="length-foot">
  4534. <unitPattern count="one">{0} فیٹ</unitPattern>
  4535. <unitPattern count="other">{0} فیٹ</unitPattern>
  4536. </unit>
  4537. <unit type="length-inch">
  4538. <unitPattern count="one">{0} انچ</unitPattern>
  4539. <unitPattern count="other">{0} انچ</unitPattern>
  4540. </unit>
  4541. <unit type="length-kilometer">
  4542. <unitPattern count="one">{0} کلو میٹر</unitPattern>
  4543. <unitPattern count="other">{0} کلو میٹر</unitPattern>
  4544. </unit>
  4545. <unit type="length-light-year">
  4546. <unitPattern count="one">{0} ly</unitPattern>
  4547. <unitPattern count="other">{0} ly</unitPattern>
  4548. </unit>
  4549. <unit type="length-meter">
  4550. <unitPattern count="one">{0} میٹر</unitPattern>
  4551. <unitPattern count="other">{0} میٹر</unitPattern>
  4552. </unit>
  4553. <unit type="length-mile">
  4554. <unitPattern count="one">{0} میل</unitPattern>
  4555. <unitPattern count="other">{0} میل</unitPattern>
  4556. </unit>
  4557. <unit type="length-millimeter">
  4558. <unitPattern count="one">{0} ملیمیٹر</unitPattern>
  4559. <unitPattern count="other">{0} ملیمیٹر</unitPattern>
  4560. </unit>
  4561. <unit type="length-picometer">
  4562. <unitPattern count="one">{0} پیکو میٹر</unitPattern>
  4563. <unitPattern count="other">{0} پیکو میٹر</unitPattern>
  4564. </unit>
  4565. <unit type="length-yard">
  4566. <unitPattern count="one">{0} یارڈ</unitPattern>
  4567. <unitPattern count="other">{0} یارڈ</unitPattern>
  4568. </unit>
  4569. <unit type="mass-gram">
  4570. <unitPattern count="one">{0} گرام</unitPattern>
  4571. <unitPattern count="other">{0} گرام</unitPattern>
  4572. </unit>
  4573. <unit type="mass-kilogram">
  4574. <unitPattern count="one">{0} کلو گرام</unitPattern>
  4575. <unitPattern count="other">{0} کلو گرام</unitPattern>
  4576. </unit>
  4577. <unit type="mass-ounce">
  4578. <unitPattern count="one">{0} ونس</unitPattern>
  4579. <unitPattern count="other">{0} ونس</unitPattern>
  4580. </unit>
  4581. <unit type="mass-pound">
  4582. <unitPattern count="one">{0} پونڈ</unitPattern>
  4583. <unitPattern count="other">{0} پونڈ</unitPattern>
  4584. </unit>
  4585. <unit type="power-horsepower">
  4586. <unitPattern count="one">{0} ہارس پاور</unitPattern>
  4587. <unitPattern count="other">{0} ہارس پاور</unitPattern>
  4588. </unit>
  4589. <unit type="power-kilowatt">
  4590. <unitPattern count="one">{0} کلو واٹ</unitPattern>
  4591. <unitPattern count="other">{0} کلو واٹ</unitPattern>
  4592. </unit>
  4593. <unit type="power-watt">
  4594. <unitPattern count="one">{0} واٹ</unitPattern>
  4595. <unitPattern count="other">{0} واٹ</unitPattern>
  4596. </unit>
  4597. <unit type="pressure-hectopascal">
  4598. <unitPattern count="one">{0} hPa</unitPattern>
  4599. <unitPattern count="other">{0} hPa</unitPattern>
  4600. </unit>
  4601. <unit type="pressure-inch-hg">
  4602. <unitPattern count="one">{0} انچ مرکری</unitPattern>
  4603. <unitPattern count="other">{0} انچ مرکری</unitPattern>
  4604. </unit>
  4605. <unit type="pressure-millibar">
  4606. <unitPattern count="one">{0} ملی بار</unitPattern>
  4607. <unitPattern count="other">{0} ملی بار</unitPattern>
  4608. </unit>
  4609. <unit type="speed-kilometer-per-hour">
  4610. <unitPattern count="one">{0} kph</unitPattern>
  4611. <unitPattern count="other">{0} kph</unitPattern>
  4612. </unit>
  4613. <unit type="speed-meter-per-second">
  4614. <unitPattern count="one">{0} m/s</unitPattern>
  4615. <unitPattern count="other">{0} m/s</unitPattern>
  4616. </unit>
  4617. <unit type="speed-mile-per-hour">
  4618. <unitPattern count="one">{0} mph</unitPattern>
  4619. <unitPattern count="other">{0} mph</unitPattern>
  4620. </unit>
  4621. <unit type="temperature-celsius">
  4622. <unitPattern count="one">{0}‎°C</unitPattern>
  4623. <unitPattern count="other">{0}‎°C</unitPattern>
  4624. </unit>
  4625. <unit type="temperature-fahrenheit">
  4626. <unitPattern count="one">{0}‎°F</unitPattern>
  4627. <unitPattern count="other">{0}‎°F</unitPattern>
  4628. </unit>
  4629. <unit type="volume-cubic-kilometer">
  4630. <unitPattern count="one">{0} km³</unitPattern>
  4631. <unitPattern count="other">{0} km³</unitPattern>
  4632. </unit>
  4633. <unit type="volume-cubic-mile">
  4634. <unitPattern count="one">{0} کیوبک میل</unitPattern>
  4635. <unitPattern count="other">{0} کیوبک میل</unitPattern>
  4636. </unit>
  4637. <unit type="volume-liter">
  4638. <unitPattern count="one">{0} لیٹر</unitPattern>
  4639. <unitPattern count="other">{0} لیٹر</unitPattern>
  4640. </unit>
  4641. </unitLength>
  4642. <unitLength type="narrow">
  4643. <compoundUnit type="per">
  4644. <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
  4645. </compoundUnit>
  4646. <unit type="acceleration-g-force">
  4647. <unitPattern count="one">{0}G</unitPattern>
  4648. <unitPattern count="other">{0}G</unitPattern>
  4649. </unit>
  4650. <unit type="angle-arc-minute">
  4651. <unitPattern count="one">{0} منٹ</unitPattern>
  4652. <unitPattern count="other">{0} منٹ</unitPattern>
  4653. </unit>
  4654. <unit type="angle-arc-second">
  4655. <unitPattern count="one">{0}″</unitPattern>
  4656. <unitPattern count="other">{0}″</unitPattern>
  4657. </unit>
  4658. <unit type="angle-degree">
  4659. <unitPattern count="one">{0} ڈگری</unitPattern>
  4660. <unitPattern count="other">{0} ڈگری</unitPattern>
  4661. </unit>
  4662. <unit type="area-acre">
  4663. <unitPattern count="one">{0} ایکڑ</unitPattern>
  4664. <unitPattern count="other">{0} ایکڑ</unitPattern>
  4665. </unit>
  4666. <unit type="area-hectare">
  4667. <unitPattern count="one">{0} ہیکٹر</unitPattern>
  4668. <unitPattern count="other">{0} ہیکٹر</unitPattern>
  4669. </unit>
  4670. <unit type="area-square-foot">
  4671. <unitPattern count="one">{0}ft²</unitPattern>
  4672. <unitPattern count="other">{0}ft²</unitPattern>
  4673. </unit>
  4674. <unit type="area-square-kilometer">
  4675. <unitPattern count="one">{0} km²</unitPattern>
  4676. <unitPattern count="other">{0} km²</unitPattern>
  4677. </unit>
  4678. <unit type="area-square-meter">
  4679. <unitPattern count="one">{0} m²</unitPattern>
  4680. <unitPattern count="other">{0} m²</unitPattern>
  4681. </unit>
  4682. <unit type="area-square-mile">
  4683. <unitPattern count="one">{0}mi²</unitPattern>
  4684. <unitPattern count="other">{0}mi²</unitPattern>
  4685. </unit>
  4686. <unit type="duration-day">
  4687. <unitPattern count="one">{0} دن</unitPattern>
  4688. <unitPattern count="other">{0} دن</unitPattern>
  4689. </unit>
  4690. <unit type="duration-hour">
  4691. <unitPattern count="one">{0} گھنٹے</unitPattern>
  4692. <unitPattern count="other">{0} گھنٹے</unitPattern>
  4693. </unit>
  4694. <unit type="duration-millisecond">
  4695. <unitPattern count="one">{0} ms</unitPattern>
  4696. <unitPattern count="other">{0} ms</unitPattern>
  4697. </unit>
  4698. <unit type="duration-second">
  4699. <unitPattern count="one">{0}s</unitPattern>
  4700. <unitPattern count="other">{0}s</unitPattern>
  4701. </unit>
  4702. <unit type="duration-week">
  4703. <unitPattern count="one">{0} ہفتے</unitPattern>
  4704. <unitPattern count="other">{0} ہفتے</unitPattern>
  4705. </unit>
  4706. <unit type="duration-year">
  4707. <unitPattern count="one">{0} سال</unitPattern>
  4708. <unitPattern count="other">{0} سال</unitPattern>
  4709. </unit>
  4710. <unit type="length-centimeter">
  4711. <unitPattern count="one">{0}cm</unitPattern>
  4712. <unitPattern count="other">{0}cm</unitPattern>
  4713. </unit>
  4714. <unit type="length-foot">
  4715. <unitPattern count="one">'{0}</unitPattern>
  4716. <unitPattern count="other">{0}′</unitPattern>
  4717. </unit>
  4718. <unit type="length-inch">
  4719. <unitPattern count="one">{0} انچ</unitPattern>
  4720. <unitPattern count="other">{0} انچ</unitPattern>
  4721. </unit>
  4722. <unit type="length-kilometer">
  4723. <unitPattern count="one">{0}km</unitPattern>
  4724. <unitPattern count="other">{0}km</unitPattern>
  4725. </unit>
  4726. <unit type="length-light-year">
  4727. <unitPattern count="one">{0}ly</unitPattern>
  4728. <unitPattern count="other">{0}ly</unitPattern>
  4729. </unit>
  4730. <unit type="length-meter">
  4731. <unitPattern count="one">{0} میٹر</unitPattern>
  4732. <unitPattern count="other">{0} میٹر</unitPattern>
  4733. </unit>
  4734. <unit type="length-mile">
  4735. <unitPattern count="one">{0} میل</unitPattern>
  4736. <unitPattern count="other">{0} میل</unitPattern>
  4737. </unit>
  4738. <unit type="length-millimeter">
  4739. <unitPattern count="one">{0} ملیمیٹر</unitPattern>
  4740. <unitPattern count="other">{0} ملیمیٹر</unitPattern>
  4741. </unit>
  4742. <unit type="length-picometer">
  4743. <unitPattern count="one">{0}pm</unitPattern>
  4744. <unitPattern count="other">{0}pm</unitPattern>
  4745. </unit>
  4746. <unit type="length-yard">
  4747. <unitPattern count="one">{0} یارڈ</unitPattern>
  4748. <unitPattern count="other">{0} یارڈ</unitPattern>
  4749. </unit>
  4750. <unit type="mass-gram">
  4751. <unitPattern count="one">{0} گرام</unitPattern>
  4752. <unitPattern count="other">{0} گرام</unitPattern>
  4753. </unit>
  4754. <unit type="mass-kilogram">
  4755. <unitPattern count="one">{0}kg</unitPattern>
  4756. <unitPattern count="other">{0}kg</unitPattern>
  4757. </unit>
  4758. <unit type="mass-ounce">
  4759. <unitPattern count="one">{0} ونس</unitPattern>
  4760. <unitPattern count="other">{0} ونس</unitPattern>
  4761. </unit>
  4762. <unit type="mass-pound">
  4763. <unitPattern count="one">{0} پونڈ</unitPattern>
  4764. <unitPattern count="other">{0} پونڈ</unitPattern>
  4765. </unit>
  4766. <unit type="power-horsepower">
  4767. <unitPattern count="one">{0}hp</unitPattern>
  4768. <unitPattern count="other">{0}hp</unitPattern>
  4769. </unit>
  4770. <unit type="power-kilowatt">
  4771. <unitPattern count="one">{0}kW</unitPattern>
  4772. <unitPattern count="other">{0}kW</unitPattern>
  4773. </unit>
  4774. <unit type="power-watt">
  4775. <unitPattern count="one">{0} واٹ</unitPattern>
  4776. <unitPattern count="other">{0} واٹ</unitPattern>
  4777. </unit>
  4778. <unit type="pressure-hectopascal">
  4779. <unitPattern count="one">{0}hPa</unitPattern>
  4780. <unitPattern count="other">{0}hPa</unitPattern>
  4781. </unit>
  4782. <unit type="pressure-inch-hg">
  4783. <unitPattern count="one">{0} انچ مرکری</unitPattern>
  4784. <unitPattern count="other">{0} انچ مرکری</unitPattern>
  4785. </unit>
  4786. <unit type="pressure-millibar">
  4787. <unitPattern count="one">{0}mb</unitPattern>
  4788. <unitPattern count="other">{0}mb</unitPattern>
  4789. </unit>
  4790. <unit type="speed-kilometer-per-hour">
  4791. <unitPattern count="one">{0}kph</unitPattern>
  4792. <unitPattern count="other">{0}kph</unitPattern>
  4793. </unit>
  4794. <unit type="speed-meter-per-second">
  4795. <unitPattern count="one">{0}m/s</unitPattern>
  4796. <unitPattern count="other">{0}m/s</unitPattern>
  4797. </unit>
  4798. <unit type="speed-mile-per-hour">
  4799. <unitPattern count="one">{0}mph</unitPattern>
  4800. <unitPattern count="other">{0}mph</unitPattern>
  4801. </unit>
  4802. <unit type="temperature-celsius">
  4803. <unitPattern count="one">{0}‎°</unitPattern>
  4804. <unitPattern count="other">{0}‎°</unitPattern>
  4805. </unit>
  4806. <unit type="temperature-fahrenheit">
  4807. <unitPattern count="one">{0}‎°F</unitPattern>
  4808. <unitPattern count="other">{0}°F</unitPattern>
  4809. </unit>
  4810. <unit type="volume-cubic-kilometer">
  4811. <unitPattern count="one">{0}km³</unitPattern>
  4812. <unitPattern count="other">{0}km³</unitPattern>
  4813. </unit>
  4814. <unit type="volume-cubic-mile">
  4815. <unitPattern count="one">{0}mi³</unitPattern>
  4816. <unitPattern count="other">{0}mi³</unitPattern>
  4817. </unit>
  4818. <unit type="volume-liter">
  4819. <unitPattern count="one">{0} لیٹر</unitPattern>
  4820. <unitPattern count="other">{0} لیٹر</unitPattern>
  4821. </unit>
  4822. </unitLength>
  4823. <durationUnit type="hm">
  4824. <durationUnitPattern>h:mm</durationUnitPattern>
  4825. </durationUnit>
  4826. <durationUnit type="hms">
  4827. <durationUnitPattern>h:mm:ss</durationUnitPattern>
  4828. </durationUnit>
  4829. <durationUnit type="ms">
  4830. <durationUnitPattern>m:ss</durationUnitPattern>
  4831. </durationUnit>
  4832. </units>
  4833. <listPatterns>
  4834. <listPattern>
  4835. <listPatternPart type="start">{0}، {1}</listPatternPart>
  4836. <listPatternPart type="middle">{0}، {1}</listPatternPart>
  4837. <listPatternPart type="end">{0}، اور {1}</listPatternPart>
  4838. <listPatternPart type="2">{0} اور {1}</listPatternPart>
  4839. </listPattern>
  4840. <listPattern type="unit">
  4841. <listPatternPart type="start">{0}, {1}</listPatternPart>
  4842. <listPatternPart type="middle">{0}, {1}</listPatternPart>
  4843. <listPatternPart type="end">{0}، اور {1}</listPatternPart>
  4844. <listPatternPart type="2">{0} اور {1}</listPatternPart>
  4845. </listPattern>
  4846. <listPattern type="unit-short">
  4847. <listPatternPart type="2">{0} اور {1}</listPatternPart>
  4848. </listPattern>
  4849. </listPatterns>
  4850. <posix>
  4851. <messages>
  4852. <yesstr>ہاں:ہاں</yesstr>
  4853. <nostr>نہیں:نہیں</nostr>
  4854. </messages>
  4855. </posix>
  4856. </ldml>