Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

291 linhas
22 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Infrastructure
  7. {
  8. public class CountryPhoneCode
  9. {
  10. public CountryPhoneCode(string name, string alpha2, string alpha3, int numericCode, string[] dialCodes = null)
  11. {
  12. Name = name;
  13. Alpha2 = alpha2;
  14. Alpha3 = alpha3;
  15. NumericCode = numericCode;
  16. DialCodes = dialCodes;
  17. }
  18. public string Name { get; private set; }
  19. public string Alpha2 { get; private set; }
  20. public string Alpha3 { get; private set; }
  21. public int NumericCode { get; private set; }
  22. public string[] DialCodes { get; private set; }
  23. public override string ToString()
  24. {
  25. return DialCodes!=null && DialCodes.Any() ? $"{Name} {DialCodes[0]}":"";
  26. }
  27. public static IEnumerable<CountryPhoneCode> GetCollection()
  28. {
  29. // This collection built from Wikipedia entry on ISO3166-1 on 9th Feb 2016
  30. return new[] {
  31. new CountryPhoneCode("Afghanistan", "AF", "AFG", 4, new[] { "93" }),
  32. new CountryPhoneCode("Åland Islands", "AX", "ALA", 248, new[] { "358" }),
  33. new CountryPhoneCode("Albania", "AL", "ALB", 8, new[] { "355" }),
  34. new CountryPhoneCode("Algeria", "DZ", "DZA", 12, new[] { "213" }),
  35. new CountryPhoneCode("American Samoa", "AS", "ASM", 16, new[] { "1 684" }),
  36. new CountryPhoneCode("Andorra", "AD", "AND", 20, new[] { "376" }),
  37. new CountryPhoneCode("Angola", "AO", "AGO", 24, new[] { "244" }),
  38. new CountryPhoneCode("Anguilla", "AI", "AIA", 660, new[] { "1 264" }),
  39. new CountryPhoneCode("Antarctica", "AQ", "ATA", 10, new[] { "672" }),
  40. new CountryPhoneCode("Antigua and Barbuda", "AG", "ATG", 28, new[] { "1 268" }),
  41. new CountryPhoneCode("Argentina", "AR", "ARG", 32, new[] { "54" }),
  42. new CountryPhoneCode("Armenia", "AM", "ARM", 51, new[] { "374" }),
  43. new CountryPhoneCode("Aruba", "AW", "ABW", 533, new[] { "297" }),
  44. new CountryPhoneCode("Australia", "AU", "AUS", 36, new[] { "61" }),
  45. new CountryPhoneCode("Austria", "AT", "AUT", 40, new[] { "43" }),
  46. new CountryPhoneCode("Azerbaijan", "AZ", "AZE", 31, new[] { "994" }),
  47. new CountryPhoneCode("Bahamas", "BS", "BHS", 44, new[] { "1 242" }),
  48. new CountryPhoneCode("Bahrain", "BH", "BHR", 48, new[] { "973" }),
  49. new CountryPhoneCode("Bangladesh", "BD", "BGD", 50, new[] { "880" }),
  50. new CountryPhoneCode("Barbados", "BB", "BRB", 52, new[] { "1 246" }),
  51. new CountryPhoneCode("Belarus", "BY", "BLR", 112, new[] { "375" }),
  52. new CountryPhoneCode("Belgium", "BE", "BEL", 56, new[] { "32" }),
  53. new CountryPhoneCode("Belize", "BZ", "BLZ", 84, new[] { "501" }),
  54. new CountryPhoneCode("Benin", "BJ", "BEN", 204, new[] { "229" }),
  55. new CountryPhoneCode("Bermuda", "BM", "BMU", 60, new[] { "1 441" }),
  56. new CountryPhoneCode("Bhutan", "BT", "BTN", 64, new[] { "975" }),
  57. new CountryPhoneCode("Bolivia (Plurinational State of)", "BO", "BOL", 68, new[] { "591" }),
  58. new CountryPhoneCode("Bonaire, Sint Eustatius and Saba", "BQ", "BES", 535, new[] { "599" }),
  59. new CountryPhoneCode("Bosnia and Herzegovina", "BA", "BIH", 70, new[] { "387" }),
  60. new CountryPhoneCode("Botswana", "BW", "BWA", 72, new[] { "267" }),
  61. new CountryPhoneCode("Bouvet Island", "BV", "BVT", 74),
  62. new CountryPhoneCode("Brazil", "BR", "BRA", 76, new[] { "55" }),
  63. new CountryPhoneCode("British Indian Ocean Territory", "IO", "IOT", 86, new[] { "246" }),
  64. new CountryPhoneCode("Brunei Darussalam", "BN", "BRN", 96, new[] { "673" }),
  65. new CountryPhoneCode("Bulgaria", "BG", "BGR", 100, new[] { "359" }),
  66. new CountryPhoneCode("Burkina Faso", "BF", "BFA", 854, new[] { "226" }),
  67. new CountryPhoneCode("Burundi", "BI", "BDI", 108, new[] { "257" }),
  68. new CountryPhoneCode("Cabo Verde", "CV", "CPV", 132, new[] { "238" }),
  69. new CountryPhoneCode("Cambodia", "KH", "KHM", 116, new[] { "855" }),
  70. new CountryPhoneCode("Cameroon", "CM", "CMR", 120, new[] { "237" }),
  71. new CountryPhoneCode("Canada", "CA", "CAN", 124, new[] { "1" }),
  72. new CountryPhoneCode("Cayman Islands", "KY", "CYM", 136, new[] { "1 345" }),
  73. new CountryPhoneCode("Central African Republic", "CF", "CAF", 140, new[] { "236" }),
  74. new CountryPhoneCode("Chad", "TD", "TCD", 148, new[] { "235" }),
  75. new CountryPhoneCode("Chile", "CL", "CHL", 152, new[] { "56" }),
  76. new CountryPhoneCode("China", "CN", "CHN", 156, new[] { "86" }),
  77. new CountryPhoneCode("Christmas Island", "CX", "CXR", 162, new[] { "61" }),
  78. new CountryPhoneCode("Cocos (Keeling) Islands", "CC", "CCK", 166, new[] { "61" }),
  79. new CountryPhoneCode("Colombia", "CO", "COL", 170, new[] { "57" }),
  80. new CountryPhoneCode("Comoros", "KM", "COM", 174, new[] { "269" }),
  81. new CountryPhoneCode("Congo", "CG", "COG", 178, new[] { "242" }),
  82. new CountryPhoneCode("Congo (Democratic Republic of the)", "CD", "COD", 180, new[] { "243" }),
  83. new CountryPhoneCode("Cook Islands", "CK", "COK", 184, new[] { "682" }),
  84. new CountryPhoneCode("Costa Rica", "CR", "CRI", 188, new[] { "506" }),
  85. new CountryPhoneCode("Côte d'Ivoire", "CI", "CIV", 384, new[] { "225" }),
  86. new CountryPhoneCode("Croatia", "HR", "HRV", 191, new[] { "385" }),
  87. new CountryPhoneCode("Cuba", "CU", "CUB", 192, new[] { "53" }),
  88. new CountryPhoneCode("Curaçao", "CW", "CUW", 531, new[] { "599" }),
  89. new CountryPhoneCode("Cyprus", "CY", "CYP", 196, new[] { "357" }),
  90. new CountryPhoneCode("Czech Republic", "CZ", "CZE", 203, new[] { "420" }),
  91. new CountryPhoneCode("Denmark", "DK", "DNK", 208, new[] { "45" }),
  92. new CountryPhoneCode("Djibouti", "DJ", "DJI", 262, new[] { "253" }),
  93. new CountryPhoneCode("Dominica", "DM", "DMA", 212, new[] { "1 767" }),
  94. new CountryPhoneCode("Dominican Republic", "DO", "DOM", 214, new[] { "1 809", "1 829", "1 849" }),
  95. new CountryPhoneCode("Ecuador", "EC", "ECU", 218, new[] { "593" }),
  96. new CountryPhoneCode("Egypt", "EG", "EGY", 818, new[] { "20" }),
  97. new CountryPhoneCode("El Salvador", "SV", "SLV", 222, new[] { "503" }),
  98. new CountryPhoneCode("Equatorial Guinea", "GQ", "GNQ", 226, new[] { "240" }),
  99. new CountryPhoneCode("Eritrea", "ER", "ERI", 232, new[] { "291" }),
  100. new CountryPhoneCode("Estonia", "EE", "EST", 233, new[] { "372" }),
  101. new CountryPhoneCode("Ethiopia", "ET", "ETH", 231, new[] { "251" }),
  102. new CountryPhoneCode("Falkland Islands (Malvinas)", "FK", "FLK", 238, new[] { "500" }),
  103. new CountryPhoneCode("Faroe Islands", "FO", "FRO", 234, new[] { "298" }),
  104. new CountryPhoneCode("Fiji", "FJ", "FJI", 242, new[] { "679" }),
  105. new CountryPhoneCode("Finland", "FI", "FIN", 246, new[] { "358" }),
  106. new CountryPhoneCode("France", "FR", "FRA", 250, new[] { "33" }),
  107. new CountryPhoneCode("French Guiana", "GF", "GUF", 254, new[] { "594" }),
  108. new CountryPhoneCode("French Polynesia", "PF", "PYF", 258, new[] { "689" }),
  109. new CountryPhoneCode("French Southern Territories", "TF", "ATF", 260, new[] { "262" }),
  110. new CountryPhoneCode("Gabon", "GA", "GAB", 266, new[] { "241" }),
  111. new CountryPhoneCode("Gambia", "GM", "GMB", 270, new[] { "220" }),
  112. new CountryPhoneCode("Georgia", "GE", "GEO", 268, new[] { "995" }),
  113. new CountryPhoneCode("Germany", "DE", "DEU", 276, new[] { "49" }),
  114. new CountryPhoneCode("Ghana", "GH", "GHA", 288, new[] { "233" }),
  115. new CountryPhoneCode("Gibraltar", "GI", "GIB", 292, new[] { "350" }),
  116. new CountryPhoneCode("Greece", "GR", "GRC", 300, new[] { "30" }),
  117. new CountryPhoneCode("Greenland", "GL", "GRL", 304, new[] { "299" }),
  118. new CountryPhoneCode("Grenada", "GD", "GRD", 308, new[] { "1 473" }),
  119. new CountryPhoneCode("Guadeloupe", "GP", "GLP", 312, new[] { "590" }),
  120. new CountryPhoneCode("Guam", "GU", "GUM", 316, new[] { "1 671" }),
  121. new CountryPhoneCode("Guatemala", "GT", "GTM", 320, new[] { "502" }),
  122. new CountryPhoneCode("Guernsey", "GG", "GGY", 831, new[] { "44 1481" }),
  123. new CountryPhoneCode("Guinea", "GN", "GIN", 324, new[] { "224" }),
  124. new CountryPhoneCode("Guinea-Bissau", "GW", "GNB", 624, new[] { "245" }),
  125. new CountryPhoneCode("Guyana", "GY", "GUY", 328, new[] { "592" }),
  126. new CountryPhoneCode("Haiti", "HT", "HTI", 332, new[] { "509" }),
  127. new CountryPhoneCode("Heard Island and McDonald Islands", "HM", "HMD", 334),
  128. new CountryPhoneCode("Holy See", "VA", "VAT", 336, new[] { "379" }),
  129. new CountryPhoneCode("Honduras", "HN", "HND", 340, new[] { "504" }),
  130. new CountryPhoneCode("Hong Kong", "HK", "HKG", 344, new[] { "852" }),
  131. new CountryPhoneCode("Hungary", "HU", "HUN", 348, new[] { "36" }),
  132. new CountryPhoneCode("Iceland", "IS", "ISL", 352, new[] { "354" }),
  133. new CountryPhoneCode("India", "IN", "IND", 356, new[] { "91" }),
  134. new CountryPhoneCode("Indonesia", "ID", "IDN", 360, new[] { "62" }),
  135. new CountryPhoneCode("Iran", "IR", "IRN", 364, new[] { "98" }),
  136. new CountryPhoneCode("Iraq", "IQ", "IRQ", 368, new[] { "964" }),
  137. new CountryPhoneCode("Ireland", "IE", "IRL", 372, new[] { "353" }),
  138. new CountryPhoneCode("Isle of Man", "IM", "IMN", 833, new[] { "44 1624" }),
  139. new CountryPhoneCode("Israel", "IL", "ISR", 376, new[] { "972" }),
  140. new CountryPhoneCode("Italy", "IT", "ITA", 380, new[] { "39" }),
  141. new CountryPhoneCode("Jamaica", "JM", "JAM", 388, new[] { "1 876" }),
  142. new CountryPhoneCode("Japan", "JP", "JPN", 392, new[] { "81" }),
  143. new CountryPhoneCode("Jersey", "JE", "JEY", 832, new[] { "44 1534" }),
  144. new CountryPhoneCode("Jordan", "JO", "JOR", 400, new[] { "962" }),
  145. new CountryPhoneCode("Kazakhstan", "KZ", "KAZ", 398, new[] { "7" }),
  146. new CountryPhoneCode("Kenya", "KE", "KEN", 404, new[] { "254" }),
  147. new CountryPhoneCode("Kiribati", "KI", "KIR", 296, new[] { "686" }),
  148. new CountryPhoneCode("Korea (Democratic People's Republic of)", "KP", "PRK", 408, new[] { "850" }),
  149. new CountryPhoneCode("Korea (Republic of)", "KR", "KOR", 410, new[] { "82" }),
  150. new CountryPhoneCode("Kuwait", "KW", "KWT", 414, new[] { "965" }),
  151. new CountryPhoneCode("Kyrgyzstan", "KG", "KGZ", 417, new[] { "996" }),
  152. new CountryPhoneCode("Lao People's Democratic Republic", "LA", "LAO", 418, new[] { "856" }),
  153. new CountryPhoneCode("Latvia", "LV", "LVA", 428, new[] { "371" }),
  154. new CountryPhoneCode("Lebanon", "LB", "LBN", 422, new[] { "961" }),
  155. new CountryPhoneCode("Lesotho", "LS", "LSO", 426, new[] { "266" }),
  156. new CountryPhoneCode("Liberia", "LR", "LBR", 430, new[] { "231" }),
  157. new CountryPhoneCode("Libya", "LY", "LBY", 434, new[] { "218" }),
  158. new CountryPhoneCode("Liechtenstein", "LI", "LIE", 438, new[] { "423" }),
  159. new CountryPhoneCode("Lithuania", "LT", "LTU", 440, new[] { "370" }),
  160. new CountryPhoneCode("Luxembourg", "LU", "LUX", 442, new[] { "352" }),
  161. new CountryPhoneCode("Macao", "MO", "MAC", 446, new[] { "853" }),
  162. new CountryPhoneCode("Macedonia (the former Yugoslav Republic of)", "MK", "MKD", 807, new[] { "389" }),
  163. new CountryPhoneCode("Madagascar", "MG", "MDG", 450, new[] { "261" }),
  164. new CountryPhoneCode("Malawi", "MW", "MWI", 454, new[] { "265" }),
  165. new CountryPhoneCode("Malaysia", "MY", "MYS", 458, new[] { "60" }),
  166. new CountryPhoneCode("Maldives", "MV", "MDV", 462, new[] { "960" }),
  167. new CountryPhoneCode("Mali", "ML", "MLI", 466, new[] { "223" }),
  168. new CountryPhoneCode("Malta", "MT", "MLT", 470, new[] { "356" }),
  169. new CountryPhoneCode("Marshall Islands", "MH", "MHL", 584, new[] { "692" }),
  170. new CountryPhoneCode("Martinique", "MQ", "MTQ", 474, new[] { "596" }),
  171. new CountryPhoneCode("Mauritania", "MR", "MRT", 478, new[] { "222" }),
  172. new CountryPhoneCode("Mauritius", "MU", "MUS", 480, new[] { "230" }),
  173. new CountryPhoneCode("Mayotte", "YT", "MYT", 175, new[] { "262" }),
  174. new CountryPhoneCode("Mexico", "MX", "MEX", 484, new[] { "52" }),
  175. new CountryPhoneCode("Micronesia (Federated States of)", "FM", "FSM", 583, new[] { "691" }),
  176. new CountryPhoneCode("Moldova (Republic of)", "MD", "MDA", 498, new[] { "373" }),
  177. new CountryPhoneCode("Monaco", "MC", "MCO", 492, new[] { "377" }),
  178. new CountryPhoneCode("Mongolia", "MN", "MNG", 496, new[] { "976" }),
  179. new CountryPhoneCode("Montenegro", "ME", "MNE", 499, new[] { "382" }),
  180. new CountryPhoneCode("Montserrat", "MS", "MSR", 500, new[] { "1 664" }),
  181. new CountryPhoneCode("Morocco", "MA", "MAR", 504, new[] { "212" }),
  182. new CountryPhoneCode("Mozambique", "MZ", "MOZ", 508, new[] { "258" }),
  183. new CountryPhoneCode("Myanmar", "MM", "MMR", 104, new[] { "95" }),
  184. new CountryPhoneCode("Namibia", "NA", "NAM", 516, new[] { "264" }),
  185. new CountryPhoneCode("Nauru", "NR", "NRU", 520, new[] { "674" }),
  186. new CountryPhoneCode("Nepal", "NP", "NPL", 524, new[] { "977" }),
  187. new CountryPhoneCode("Netherlands", "NL", "NLD", 528, new[] { "31" }),
  188. new CountryPhoneCode("New Caledonia", "NC", "NCL", 540, new[] { "687" }),
  189. new CountryPhoneCode("New Zealand", "NZ", "NZL", 554, new[] { "64" }),
  190. new CountryPhoneCode("Nicaragua", "NI", "NIC", 558, new[] { "505" }),
  191. new CountryPhoneCode("Niger", "NE", "NER", 562, new[] { "227" }),
  192. new CountryPhoneCode("Nigeria", "NG", "NGA", 566, new[] { "234" }),
  193. new CountryPhoneCode("Niue", "NU", "NIU", 570, new[] { "683" }),
  194. new CountryPhoneCode("Norfolk Island", "NF", "NFK", 574, new[] { "672" }),
  195. new CountryPhoneCode("Northern Mariana Islands", "MP", "MNP", 580, new[] { "1 670" }),
  196. new CountryPhoneCode("Norway", "NO", "NOR", 578, new[] { "47" }),
  197. new CountryPhoneCode("Oman", "OM", "OMN", 512, new[] { "968" }),
  198. new CountryPhoneCode("Pakistan", "PK", "PAK", 586, new[] { "92" }),
  199. new CountryPhoneCode("Palau", "PW", "PLW", 585, new[] { "680" }),
  200. new CountryPhoneCode("Palestine, State of", "PS", "PSE", 275, new[] { "970" }),
  201. new CountryPhoneCode("Panama", "PA", "PAN", 591, new[] { "507" }),
  202. new CountryPhoneCode("Papua New Guinea", "PG", "PNG", 598, new[] { "675" }),
  203. new CountryPhoneCode("Paraguay", "PY", "PRY", 600, new[] { "595" }),
  204. new CountryPhoneCode("Peru", "PE", "PER", 604, new[] { "51" }),
  205. new CountryPhoneCode("Philippines", "PH", "PHL", 608, new[] { "63" }),
  206. new CountryPhoneCode("Pitcairn", "PN", "PCN", 612, new[] { "64" }),
  207. new CountryPhoneCode("Poland", "PL", "POL", 616, new[] { "48" }),
  208. new CountryPhoneCode("Portugal", "PT", "PRT", 620, new[] { "351" }),
  209. new CountryPhoneCode("Puerto Rico", "PR", "PRI", 630, new[] { "1 787", "1 939" }),
  210. new CountryPhoneCode("Qatar", "QA", "QAT", 634, new[] { "974" }),
  211. new CountryPhoneCode("Réunion", "RE", "REU", 638, new[] { "262" }),
  212. new CountryPhoneCode("Romania", "RO", "ROU", 642, new[] { "40" }),
  213. new CountryPhoneCode("Russian Federation", "RU", "RUS", 643, new[] { "7" }),
  214. new CountryPhoneCode("Rwanda", "RW", "RWA", 646, new[] { "250" }),
  215. new CountryPhoneCode("Saint Barthélemy", "BL", "BLM", 652, new[] { "590" }),
  216. new CountryPhoneCode("Saint Helena, Ascension and Tristan da Cunha", "SH", "SHN", 654, new[] { "290" }),
  217. new CountryPhoneCode("Saint Kitts and Nevis", "KN", "KNA", 659, new[] { "1 869" }),
  218. new CountryPhoneCode("Saint Lucia", "LC", "LCA", 662, new[] { "1 758" }),
  219. new CountryPhoneCode("Saint Martin (French part)", "MF", "MAF", 663, new[] { "590" }),
  220. new CountryPhoneCode("Saint Pierre and Miquelon", "PM", "SPM", 666, new[] { "508" }),
  221. new CountryPhoneCode("Saint Vincent and the Grenadines", "VC", "VCT", 670, new[] { "1 784" }),
  222. new CountryPhoneCode("Samoa", "WS", "WSM", 882, new[] { "685" }),
  223. new CountryPhoneCode("San Marino", "SP", "SMR", 674),
  224. new CountryPhoneCode("Sao Tome and Principe", "ST", "STP", 678, new[] { "239" }),
  225. new CountryPhoneCode("Saudi Arabia", "SA", "SAU", 682, new[] { "966" }),
  226. new CountryPhoneCode("Senegal", "SN", "SEN", 686, new[] { "221" }),
  227. new CountryPhoneCode("Serbia", "RS", "SRB", 688, new[] { "381" }),
  228. new CountryPhoneCode("Seychelles", "SC", "SYC", 690, new[] { "248" }),
  229. new CountryPhoneCode("Sierra Leone", "SL", "SLE", 694, new[] { "232" }),
  230. new CountryPhoneCode("Singapore", "SG", "SGP", 702, new[] { "65" }),
  231. new CountryPhoneCode("Sint Maarten (Dutch part)", "SX", "SXM", 534, new[] { "1 721" }),
  232. new CountryPhoneCode("Slovakia", "SK", "SVK", 703, new[] { "421" }),
  233. new CountryPhoneCode("Slovenia", "SI", "SVN", 705, new[] { "386" }),
  234. new CountryPhoneCode("Solomon Islands", "SB", "SLB", 90, new[] { "677" }),
  235. new CountryPhoneCode("Somalia", "SO", "SOM", 706, new[] { "252" }),
  236. new CountryPhoneCode("South Africa", "ZA", "ZAF", 710, new[] { "27" }),
  237. new CountryPhoneCode("South Georgia and the South Sandwich Islands", "GS", "SGS", 239, new[] { "500" }),
  238. new CountryPhoneCode("South Sudan", "SS", "SSD", 728, new[] { "211" }),
  239. new CountryPhoneCode("Spain", "ES", "ESP", 724, new[] { "34" }),
  240. new CountryPhoneCode("Sri Lanka", "LK", "LKA", 144, new[] { "94" }),
  241. new CountryPhoneCode("Sudan", "SD", "SDN", 729, new[] { "249" }),
  242. new CountryPhoneCode("Suriname", "SR", "SUR", 740, new[] { "597" }),
  243. new CountryPhoneCode("Svalbard and Jan Mayen", "SJ", "SJM", 744, new[] { "47" }),
  244. new CountryPhoneCode("Swaziland", "SZ", "SWZ", 748, new[] { "268" }),
  245. new CountryPhoneCode("Sweden", "SE", "SWE", 752, new[] { "46" }),
  246. new CountryPhoneCode("Switzerland", "CH", "CHE", 756, new[] { "41" }),
  247. new CountryPhoneCode("Syrian Arab Republic", "SY", "SYR", 760, new[] { "963" }),
  248. new CountryPhoneCode("Taiwan, Province of China[a]", "TW", "TWN", 158, new[] { "886" }),
  249. new CountryPhoneCode("Tajikistan", "TJ", "TJK", 762, new[] { "992" }),
  250. new CountryPhoneCode("Tanzania, United Republic of", "TZ", "TZA", 834, new[] { "255" }),
  251. new CountryPhoneCode("Thailand", "TH", "THA", 764, new[] { "66" }),
  252. new CountryPhoneCode("Timor-Leste", "TL", "TLS", 626, new[] { "670" }),
  253. new CountryPhoneCode("Togo", "TG", "TGO", 768, new[] { "228" }),
  254. new CountryPhoneCode("Tokelau", "TK", "TKL", 772, new[] { "690" }),
  255. new CountryPhoneCode("Tonga", "TO", "TON", 776, new[] { "676" }),
  256. new CountryPhoneCode("Trinidad and Tobago", "TT", "TTO", 780, new[] { "1 868" }),
  257. new CountryPhoneCode("Tunisia", "TN", "TUN", 788, new[] { "216" }),
  258. new CountryPhoneCode("Turkey", "TR", "TUR", 792, new[] { "90" }),
  259. new CountryPhoneCode("Turkmenistan", "TM", "TKM", 795, new[] { "993" }),
  260. new CountryPhoneCode("Turks and Caicos Islands", "TC", "TCA", 796, new[] { "1 649" }),
  261. new CountryPhoneCode("Tuvalu", "TV", "TUV", 798, new[] { "688" }),
  262. new CountryPhoneCode("Uganda", "UG", "UGA", 800, new[] { "256" }),
  263. new CountryPhoneCode("Ukraine", "UA", "UKR", 804, new[] { "380" }),
  264. new CountryPhoneCode("United Arab Emirates", "AE", "ARE", 784, new[] { "971" }),
  265. new CountryPhoneCode("United Kingdom of Great Britain and Northern Ireland", "GB", "GBR", 826, new[] { "44" }),
  266. new CountryPhoneCode("United States of America", "US", "USA", 840, new[] { "1" }),
  267. new CountryPhoneCode("United States Minor Outlying Islands", "UM", "UMI", 581),
  268. new CountryPhoneCode("Uruguay", "UY", "URY", 858, new[] { "598" }),
  269. new CountryPhoneCode("Uzbekistan", "UZ", "UZB", 860, new[] { "998" }),
  270. new CountryPhoneCode("Vanuatu", "VU", "VUT", 548, new[] { "678" }),
  271. new CountryPhoneCode("Venezuela (Bolivarian Republic of)", "VE", "VEN", 862, new[] { "58" }),
  272. new CountryPhoneCode("Viet Nam", "VN", "VNM", 704, new[] { "84" }),
  273. new CountryPhoneCode("Virgin Islands (British)", "VG", "VGB", 92, new[] { "1 284" }),
  274. new CountryPhoneCode("Virgin Islands (U.S.)", "VI", "VIR", 850, new[] { "1 340" }),
  275. new CountryPhoneCode("Wallis and Futuna", "WF", "WLF", 876, new[] { "681" }),
  276. new CountryPhoneCode("Western Sahara", "EH", "ESH", 732, new[] { "212" }),
  277. new CountryPhoneCode("Yemen", "YE", "YEM", 887, new[] { "967" }),
  278. new CountryPhoneCode("Zambia", "ZM", "ZMB", 894, new[] { "260" }),
  279. new CountryPhoneCode("Zimbabwe", "ZW", "ZWE", 716, new[] { "263" })
  280. };
  281. }
  282. }
  283. }