@evershop/evershop 1.0.0-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (976) hide show
  1. package/README.md +132 -0
  2. package/bin/build/client/index.js +22 -0
  3. package/bin/build/complie.js +24 -0
  4. package/bin/build/index.js +54 -0
  5. package/bin/build/server/index.js +21 -0
  6. package/bin/build/server/useDDL.js +206 -0
  7. package/bin/build/server/useVendorChunk.js +84 -0
  8. package/bin/dev/index.js +15 -0
  9. package/bin/evershop +35 -0
  10. package/bin/extension/index.js +34 -0
  11. package/bin/install/createMigrationTable.js +15 -0
  12. package/bin/install/index.js +194 -0
  13. package/bin/install/migrate.js +67 -0
  14. package/bin/install/templates/config.json +93 -0
  15. package/bin/lib/addDefaultMiddlewareFuncs.js +177 -0
  16. package/bin/lib/app.js +63 -0
  17. package/bin/lib/bootstrap/bootstrap.js +11 -0
  18. package/bin/lib/bootstrap/migrate.js +46 -0
  19. package/bin/lib/buildEntry.js +87 -0
  20. package/bin/lib/buildTailWind.js +83 -0
  21. package/bin/lib/createComponents.js +64 -0
  22. package/bin/lib/loadModuleRoutes.js +62 -0
  23. package/bin/lib/loadModules.js +18 -0
  24. package/bin/lib/normalizePort.js +19 -0
  25. package/bin/lib/onError.js +32 -0
  26. package/bin/lib/onListening.js +19 -0
  27. package/bin/lib/prepare.js +68 -0
  28. package/bin/lib/startUp.js +76 -0
  29. package/bin/lib/watch/broadcash.js +17 -0
  30. package/bin/lib/watch/refreshable.js +20 -0
  31. package/bin/lib/watch/watch.js +31 -0
  32. package/bin/lib/watch/watchComponents.js +25 -0
  33. package/bin/lib/watch/watchMF.js +39 -0
  34. package/bin/lib/watch/watchMR.js +90 -0
  35. package/bin/lib/watch/watchPage.js +10 -0
  36. package/bin/lib/watch/watchSchema.js +20 -0
  37. package/bin/start/index.js +5 -0
  38. package/package.json +113 -0
  39. package/src/lib/babel/config.js +13 -0
  40. package/src/lib/babel/index.js +2 -0
  41. package/src/lib/bundlee.js +175 -0
  42. package/src/lib/componee/Componee.js +154 -0
  43. package/src/lib/componee/getComponentsByRoute.js +69 -0
  44. package/src/lib/componee/scanForComponents.js +14 -0
  45. package/src/lib/components/Area.js +82 -0
  46. package/src/lib/components/Badge.js +22 -0
  47. package/src/lib/components/Badge.scss +111 -0
  48. package/src/lib/components/Body.js +10 -0
  49. package/src/lib/components/BundleCss.js +13 -0
  50. package/src/lib/components/BundleJs.js +9 -0
  51. package/src/lib/components/Circle.js +16 -0
  52. package/src/lib/components/Circle.scss +90 -0
  53. package/src/lib/components/Dot.js +17 -0
  54. package/src/lib/components/Dot.scss +32 -0
  55. package/src/lib/components/Link.js +21 -0
  56. package/src/lib/components/Meta.js +15 -0
  57. package/src/lib/components/Notification.js +37 -0
  58. package/src/lib/components/Notification.scss +527 -0
  59. package/src/lib/components/Off.js +6 -0
  60. package/src/lib/components/Off.scss +26 -0
  61. package/src/lib/components/On.js +6 -0
  62. package/src/lib/components/On.scss +26 -0
  63. package/src/lib/components/Script.js +15 -0
  64. package/src/lib/components/Title.js +10 -0
  65. package/src/lib/components/form/Button.js +56 -0
  66. package/src/lib/components/form/Button.scss +67 -0
  67. package/src/lib/components/form/Field.js +118 -0
  68. package/src/lib/components/form/Field.scss +196 -0
  69. package/src/lib/components/form/Form.js +197 -0
  70. package/src/lib/components/form/fields/Checkbox.js +75 -0
  71. package/src/lib/components/form/fields/Checkbox.scss +1 -0
  72. package/src/lib/components/form/fields/Ckeditor.js +375 -0
  73. package/src/lib/components/form/fields/Ckeditor.scss +53 -0
  74. package/src/lib/components/form/fields/Date.js +69 -0
  75. package/src/lib/components/form/fields/Date.scss +1 -0
  76. package/src/lib/components/form/fields/DateTime.js +69 -0
  77. package/src/lib/components/form/fields/DateTime.scss +1 -0
  78. package/src/lib/components/form/fields/Error.js +22 -0
  79. package/src/lib/components/form/fields/Flatpickr.js +4 -0
  80. package/src/lib/components/form/fields/Flatpickr.scss +780 -0
  81. package/src/lib/components/form/fields/Hidden.js +24 -0
  82. package/src/lib/components/form/fields/Input.js +80 -0
  83. package/src/lib/components/form/fields/Input.scss +1 -0
  84. package/src/lib/components/form/fields/MultiSelect.js +67 -0
  85. package/src/lib/components/form/fields/MultiSelect.scss +1 -0
  86. package/src/lib/components/form/fields/Password.js +79 -0
  87. package/src/lib/components/form/fields/Radio.js +79 -0
  88. package/src/lib/components/form/fields/Radio.scss +1 -0
  89. package/src/lib/components/form/fields/Select.js +79 -0
  90. package/src/lib/components/form/fields/Select.scss +1 -0
  91. package/src/lib/components/form/fields/Textarea.js +59 -0
  92. package/src/lib/components/form/fields/Textarea.scss +1 -0
  93. package/src/lib/components/form/fields/Toggle.js +70 -0
  94. package/src/lib/components/form/fields/Toggle.scss +26 -0
  95. package/src/lib/components/form/validator.js +55 -0
  96. package/src/lib/components/grid/Pagination.js +123 -0
  97. package/src/lib/components/grid/Pagination.scss +16 -0
  98. package/src/lib/components/grid/headers/Action.js +28 -0
  99. package/src/lib/components/grid/headers/Basic.js +41 -0
  100. package/src/lib/components/grid/headers/Dropdown.js +44 -0
  101. package/src/lib/components/grid/headers/Dummy.js +16 -0
  102. package/src/lib/components/grid/headers/FromTo.js +56 -0
  103. package/src/lib/components/grid/headers/Status.js +43 -0
  104. package/src/lib/components/grid/rows/ActionRow.js +38 -0
  105. package/src/lib/components/grid/rows/BasicRow.js +15 -0
  106. package/src/lib/components/grid/rows/DateRow.js +33 -0
  107. package/src/lib/components/grid/rows/PriceRow.js +23 -0
  108. package/src/lib/components/grid/rows/StatusRow.js +26 -0
  109. package/src/lib/components/grid/rows/ThumbnailRow.js +26 -0
  110. package/src/lib/components/grid/rows/YesNoRow.js +22 -0
  111. package/src/lib/components/locale/CountryOption.js +278 -0
  112. package/src/lib/components/locale/CurrencyOption.js +197 -0
  113. package/src/lib/components/locale/LanguageOption.js +213 -0
  114. package/src/lib/components/locale/ProvinceOption.js +3550 -0
  115. package/src/lib/components/locale/TimezoneOption.js +457 -0
  116. package/src/lib/components/modal/Alert.js +103 -0
  117. package/src/lib/components/modal/Alert.scss +73 -0
  118. package/src/lib/components/modal/useModal.js +26 -0
  119. package/src/lib/components/react/Head.js +10 -0
  120. package/src/lib/components/react/client/Client.js +20 -0
  121. package/src/lib/components/react/client/HotReload.js +38 -0
  122. package/src/lib/components/react/client/Hydrate.js +19 -0
  123. package/src/lib/components/react/client/Index.js +11 -0
  124. package/src/lib/components/react/getComponents.js +15 -0
  125. package/src/lib/components/react/server/Server.js +38 -0
  126. package/src/lib/components/react/server/render.js +19 -0
  127. package/src/lib/components/redux/eventTypes.js +18 -0
  128. package/src/lib/components/redux/pageDataSlice.js +20 -0
  129. package/src/lib/components/redux/pageDataSliceSSR.js +11 -0
  130. package/src/lib/components/redux/reducerRegistry.js +62 -0
  131. package/src/lib/components/redux/store.js +8 -0
  132. package/src/lib/components/redux/storeSSR.js +8 -0
  133. package/src/lib/context/app.js +32 -0
  134. package/src/lib/context/cart.js +33 -0
  135. package/src/lib/context/checkout.js +74 -0
  136. package/src/lib/context/checkoutSteps.js +75 -0
  137. package/src/lib/helpers.js +17 -0
  138. package/src/lib/hooks/useWindowSize.js +22 -0
  139. package/src/lib/locale/countries.js +248 -0
  140. package/src/lib/locale/currencies.js +170 -0
  141. package/src/lib/locale/provinces.js +3523 -0
  142. package/src/lib/locale/timezones.js +434 -0
  143. package/src/lib/log/logger.js +24 -0
  144. package/src/lib/middleware/Handler.js +123 -0
  145. package/src/lib/middleware/addMiddleware.js +10 -0
  146. package/src/lib/middleware/async.js +25 -0
  147. package/src/lib/middleware/buildMiddlewareFunction.js +65 -0
  148. package/src/lib/middleware/delegate.js +22 -0
  149. package/src/lib/middleware/eNext.js +15 -0
  150. package/src/lib/middleware/findDublicatedMiddleware.js +20 -0
  151. package/src/lib/middleware/getRouteFromPath.js +30 -0
  152. package/src/lib/middleware/index.js +99 -0
  153. package/src/lib/middleware/isErrorHandlerTriggered.js +7 -0
  154. package/src/lib/middleware/isNextRequired.js +8 -0
  155. package/src/lib/middleware/noDuplicateId.js +22 -0
  156. package/src/lib/middleware/parseFromFile.js +80 -0
  157. package/src/lib/middleware/scanForMiddlewareFunctions.js +31 -0
  158. package/src/lib/middleware/sort.js +53 -0
  159. package/src/lib/middleware/sync.js +25 -0
  160. package/src/lib/middleware/tests/app/app.js +93 -0
  161. package/src/lib/middleware/tests/app/modules/404page/pages/frontStore/product/[loadProduct]loadCategory.js +3 -0
  162. package/src/lib/middleware/tests/app/modules/404page/pages/frontStore/product/[loadProduct]loadProductImage.js +4 -0
  163. package/src/lib/middleware/tests/app/modules/404page/pages/frontStore/product/loadProduct.js +9 -0
  164. package/src/lib/middleware/tests/app/modules/404page/pages/frontStore/product/route +2 -0
  165. package/src/lib/middleware/tests/app/modules/authcopy/pages/global/[context]auth.js +3 -0
  166. package/src/lib/middleware/tests/app/modules/basecopy/pages/admin/adminStaticAsset/route +2 -0
  167. package/src/lib/middleware/tests/app/modules/basecopy/pages/admin/adminStaticAsset/staticAssets.js +3 -0
  168. package/src/lib/middleware/tests/app/modules/basecopy/pages/admin/all/adminTitle.js +3 -0
  169. package/src/lib/middleware/tests/app/modules/basecopy/pages/frontStore/all/title.js +3 -0
  170. package/src/lib/middleware/tests/app/modules/basecopy/pages/frontStore/notFound/route +2 -0
  171. package/src/lib/middleware/tests/app/modules/basecopy/pages/frontStore/staticAsset/[context]staticAssets[auth].js +3 -0
  172. package/src/lib/middleware/tests/app/modules/basecopy/pages/frontStore/staticAsset/route +2 -0
  173. package/src/lib/middleware/tests/app/modules/basecopy/pages/global/[auth]notification[response].js +3 -0
  174. package/src/lib/middleware/tests/app/modules/basecopy/pages/global/[notFound]dummy[response].js +3 -0
  175. package/src/lib/middleware/tests/app/modules/basecopy/pages/global/[notification]notFound[response].js +4 -0
  176. package/src/lib/middleware/tests/app/modules/basecopy/pages/global/[response]errorHandler.js +4 -0
  177. package/src/lib/middleware/tests/app/modules/basecopy/pages/global/context.js +28 -0
  178. package/src/lib/middleware/tests/app/modules/basecopy/pages/global/response[errorHandler].js +4 -0
  179. package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/asyncWithNext[collection].js +6 -0
  180. package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/async[collection].js +5 -0
  181. package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/collection.js +11 -0
  182. package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/returnOne[returnTwo].js +4 -0
  183. package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/returnThree[collection].js +4 -0
  184. package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/returnTwo[returnThree].js +4 -0
  185. package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/route +2 -0
  186. package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/syncWithNext[collection].js +4 -0
  187. package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/sync[collection].js +4 -0
  188. package/src/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInAsync.js +6 -0
  189. package/src/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInAsyncWithNext.js +12 -0
  190. package/src/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInSync.js +4 -0
  191. package/src/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInSyncWithNext.js +4 -0
  192. package/src/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/route +2 -0
  193. package/src/lib/middleware/tests/app/modules/graphqlcopy/pages/global/[bodyParser]buildQuery[graphql].js +3 -0
  194. package/src/lib/middleware/tests/app/modules/graphqlcopy/pages/global/[buildQuery]graphql[notification].js +3 -0
  195. package/src/lib/middleware/tests/app/modules/graphqlcopy/pages/global/bodyParser[buildQuery].js +7 -0
  196. package/src/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/[loadProduct]loadCategory.js +3 -0
  197. package/src/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/[loadProduct]loadProductImage.js +4 -0
  198. package/src/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/loadProduct.js +9 -0
  199. package/src/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/route +2 -0
  200. package/src/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadAttribute]loadOptions.js +4 -0
  201. package/src/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadProductImage]loadAttribute.js +4 -0
  202. package/src/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadProduct]loadCategory.js +3 -0
  203. package/src/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadProduct]loadProductImage.js +4 -0
  204. package/src/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/loadProduct.js +4 -0
  205. package/src/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/route +2 -0
  206. package/src/lib/middleware/tests/unit/404page.handling.test.js +56 -0
  207. package/src/lib/middleware/tests/unit/500error.handling.test.js +34 -0
  208. package/src/lib/middleware/tests/unit/delegate.test.js +52 -0
  209. package/src/lib/middleware/tests/unit/handler.getMiddlewaresByRoute.test.js +39 -0
  210. package/src/lib/middleware/tests/unit/handler.middleware.test.js +39 -0
  211. package/src/lib/middleware/tests/unit/middleware.buildMiddlewareFunction.test.js +78 -0
  212. package/src/lib/middleware/tests/unit/middleware.getRouteFromPath.test.js +140 -0
  213. package/src/lib/middleware/tests/unit/middleware.noDublicateId.test.js +123 -0
  214. package/src/lib/middleware/tests/unit/middleware.scanForMiddlewareFunctions.test.js +94 -0
  215. package/src/lib/middlewares/bodyJson.js +5 -0
  216. package/src/lib/middlewares/multerNone.js +7 -0
  217. package/src/lib/middlewares/publicStatic.js +23 -0
  218. package/src/lib/middlewares/static.js +33 -0
  219. package/src/lib/mysql/connection.js +21 -0
  220. package/src/lib/pathToRegexp.js +139 -0
  221. package/src/lib/response/render.js +82 -0
  222. package/src/lib/router/Router.js +39 -0
  223. package/src/lib/router/buildUrl.js +21 -0
  224. package/src/lib/router/registerAdminRoute.js +27 -0
  225. package/src/lib/router/registerFrontStoreRoute.js +26 -0
  226. package/src/lib/router/scanForRoutes.js +63 -0
  227. package/src/lib/router/tests/unit/a/invalidMethod/routeOne/route +2 -0
  228. package/src/lib/router/tests/unit/a/invalidPath/routeTwo/route +2 -0
  229. package/src/lib/router/tests/unit/b/routeOne/route +2 -0
  230. package/src/lib/router/tests/unit/b/routeThree/route +2 -0
  231. package/src/lib/router/tests/unit/b/routeTwo/route +2 -0
  232. package/src/lib/router/tests/unit/unit.scanForRoutes.test.js +18 -0
  233. package/src/lib/router/tests/unit/unit.validateRoute.test.js +29 -0
  234. package/src/lib/router/validateRoute.js +26 -0
  235. package/src/lib/util/assign.js +29 -0
  236. package/src/lib/util/buildFilterFromUrl.js +70 -0
  237. package/src/lib/util/camelCase.js +18 -0
  238. package/src/lib/util/events.js +3 -0
  239. package/src/lib/util/formData.js +30 -0
  240. package/src/lib/util/formToJson.js +48 -0
  241. package/src/lib/util/get.js +23 -0
  242. package/src/lib/util/getConfig.js +17 -0
  243. package/src/lib/util/isAjax.js +13 -0
  244. package/src/lib/util/isDevelopmentMode.js +3 -0
  245. package/src/lib/util/isProductionMode.js +3 -0
  246. package/src/lib/util/merge.js +25 -0
  247. package/src/lib/util/tests/unit/util.assign.test.js +41 -0
  248. package/src/lib/util/tests/unit/util.get.test.js +24 -0
  249. package/src/lib/util/tests/unit/util.getConfig.test.js +8 -0
  250. package/src/lib/util/tests/unit/util.merge.test.js +37 -0
  251. package/src/lib/webpack/createBaseConfig.js +132 -0
  252. package/src/lib/webpack/dev/createConfigClient.js +87 -0
  253. package/src/lib/webpack/getRouteBuildPath.js +8 -0
  254. package/src/lib/webpack/getRouteBuildSubPath.js +4 -0
  255. package/src/lib/webpack/isBuildRequired.js +7 -0
  256. package/src/lib/webpack/loaders/AreaLoader.js +43 -0
  257. package/src/lib/webpack/loaders/GraphqlLoader.js +11 -0
  258. package/src/lib/webpack/loaders/LayoutLoader.js +8 -0
  259. package/src/lib/webpack/loaders/TailwindLoader.js +84 -0
  260. package/src/lib/webpack/loaders/styleLoader.js +5 -0
  261. package/src/lib/webpack/plugins/FileListPlugin.js +39 -0
  262. package/src/lib/webpack/plugins/GraphqlPlugin.js +24 -0
  263. package/src/lib/webpack/plugins/Tailwindcss.js +85 -0
  264. package/src/lib/webpack/prod/createConfigClient.js +85 -0
  265. package/src/lib/webpack/prod/createConfigServer.js +38 -0
  266. package/src/lib/webpack/util/parseGraphql.js +71 -0
  267. package/src/lib/webpack/util/parseGraphqlByFile.js +191 -0
  268. package/src/lib/webpack/webpack.js +9 -0
  269. package/src/modules/auth/api/admin/adminAuth/[bodyParser]authenticate.js +57 -0
  270. package/src/modules/auth/api/admin/adminAuth/bodyParser.js +7 -0
  271. package/src/modules/auth/api/admin/adminAuth/route +2 -0
  272. package/src/modules/auth/api/admin/adminLogout/logout.js +41 -0
  273. package/src/modules/auth/api/admin/adminLogout/route +2 -0
  274. package/src/modules/auth/api/admin/all/[tokenVerify]auth.js +23 -0
  275. package/src/modules/auth/api/global/[context]tokenVerify.js +56 -0
  276. package/src/modules/auth/components/AuthContext.js +34 -0
  277. package/src/modules/auth/graphql/types/AdminUser/AdminUser.graphql +19 -0
  278. package/src/modules/auth/graphql/types/AdminUser/AdminUser.resolvers.js +91 -0
  279. package/src/modules/auth/migration/Version-1.0.0.js +31 -0
  280. package/src/modules/auth/pages/admin/adminLogin/LoginForm.js +58 -0
  281. package/src/modules/auth/pages/admin/adminLogin/LoginForm.scss +53 -0
  282. package/src/modules/auth/pages/admin/adminLogin/index.js +16 -0
  283. package/src/modules/auth/pages/admin/adminLogin/route +2 -0
  284. package/src/modules/auth/pages/admin/all/AdminUser.js +49 -0
  285. package/src/modules/auth/pages/admin/all/AdminUser.scss +20 -0
  286. package/src/modules/auth/pages/admin/all/[tokenVerify]auth.js +20 -0
  287. package/src/modules/auth/pages/global/[context]tokenVerify.js +60 -0
  288. package/src/modules/auth/services/TokenGenerator.js +27 -0
  289. package/src/modules/auth/services/generateToken.js +13 -0
  290. package/src/modules/auth/services/getAdminTokenCookieId.js +5 -0
  291. package/src/modules/auth/services/getTokenCookieId.js +5 -0
  292. package/src/modules/auth/services/getTokenLifeTime.js +5 -0
  293. package/src/modules/auth/services/getTokenSecret.js +5 -0
  294. package/src/modules/auth/services/refreshToken.js +34 -0
  295. package/src/modules/base/api/admin/all/[context]isAdmin[auth].js +4 -0
  296. package/src/modules/base/api/global/[apiResponse]apiErrorHandler.js +25 -0
  297. package/src/modules/base/api/global/[auth]apiResponse[apiErrorHandler].js +33 -0
  298. package/src/modules/base/api/global/context.js +31 -0
  299. package/src/modules/base/graphql/types/Country/Country.graphql +8 -0
  300. package/src/modules/base/graphql/types/Country/Country.resolvers.js +31 -0
  301. package/src/modules/base/graphql/types/Currency/Currency.graphql +8 -0
  302. package/src/modules/base/graphql/types/Currency/Currency.resolvers.js +9 -0
  303. package/src/modules/base/graphql/types/DateTime/DateTime.graphql +5 -0
  304. package/src/modules/base/graphql/types/DateTime/DateTime.resolvers.js +18 -0
  305. package/src/modules/base/graphql/types/Province/Province.graphql +9 -0
  306. package/src/modules/base/graphql/types/Province/Province.resolvers.js +38 -0
  307. package/src/modules/base/graphql/types/Timezone/Timezone.graphql +8 -0
  308. package/src/modules/base/graphql/types/Timezone/Timezone.resolvers.js +9 -0
  309. package/src/modules/base/graphql/types/Url/Url.graphql +8 -0
  310. package/src/modules/base/graphql/types/Url/Url.resolvers.js +18 -0
  311. package/src/modules/base/pages/admin/all/[context]isAdmin[auth].js +4 -0
  312. package/src/modules/base/pages/global/[auth]notification[response].js +6 -0
  313. package/src/modules/base/pages/global/[notification]notFound[response].js +10 -0
  314. package/src/modules/base/pages/global/[response]errorHandler.js +29 -0
  315. package/src/modules/base/pages/global/context.js +33 -0
  316. package/src/modules/base/pages/global/response[errorHandler].js +68 -0
  317. package/src/modules/catalog/api/admin/attributeBulkDelete/[context]multerNone[auth].js +7 -0
  318. package/src/modules/catalog/api/admin/attributeBulkDelete/deleteAttributes.js +22 -0
  319. package/src/modules/catalog/api/admin/attributeBulkDelete/route +2 -0
  320. package/src/modules/catalog/api/admin/attributeGroupSavePost/[bodyParser]saveGroup.js +36 -0
  321. package/src/modules/catalog/api/admin/attributeGroupSavePost/bodyParser.js +7 -0
  322. package/src/modules/catalog/api/admin/attributeGroupSavePost/route +2 -0
  323. package/src/modules/catalog/api/admin/attributeSavePost/[context]multerNone[auth].js +7 -0
  324. package/src/modules/catalog/api/admin/attributeSavePost/[createAttribute,updateAttribute]saveGroups[finish].js +40 -0
  325. package/src/modules/catalog/api/admin/attributeSavePost/[createAttribute,updateAttribute]saveOptions[finish].js +59 -0
  326. package/src/modules/catalog/api/admin/attributeSavePost/[getConnection]createAttribute[finish].js +9 -0
  327. package/src/modules/catalog/api/admin/attributeSavePost/[getConnection]updateAttribute[finish].js +12 -0
  328. package/src/modules/catalog/api/admin/attributeSavePost/finish[apiResponse].js +25 -0
  329. package/src/modules/catalog/api/admin/attributeSavePost/getConnection[finish].js +10 -0
  330. package/src/modules/catalog/api/admin/attributeSavePost/route +2 -0
  331. package/src/modules/catalog/api/admin/categoryBulkDelete/[context]multerNone[auth].js +7 -0
  332. package/src/modules/catalog/api/admin/categoryBulkDelete/deleteCategories.js +23 -0
  333. package/src/modules/catalog/api/admin/categoryBulkDelete/route +2 -0
  334. package/src/modules/catalog/api/admin/categorySavePost/[context]multerNone[auth].js +7 -0
  335. package/src/modules/catalog/api/admin/categorySavePost/[getConnection]createCategory[finish].js +14 -0
  336. package/src/modules/catalog/api/admin/categorySavePost/[getConnection]updateCategory[finish].js +15 -0
  337. package/src/modules/catalog/api/admin/categorySavePost/finish[apiResponse].js +26 -0
  338. package/src/modules/catalog/api/admin/categorySavePost/getConnection[finish].js +10 -0
  339. package/src/modules/catalog/api/admin/categorySavePost/route +2 -0
  340. package/src/modules/catalog/api/admin/productBulkDelete/[context]multerNone[auth].js +7 -0
  341. package/src/modules/catalog/api/admin/productBulkDelete/deleteProducts.js +23 -0
  342. package/src/modules/catalog/api/admin/productBulkDelete/route +2 -0
  343. package/src/modules/catalog/api/admin/productBulkDisable/[context]multerNone[auth].js +7 -0
  344. package/src/modules/catalog/api/admin/productBulkDisable/disableProducts.js +24 -0
  345. package/src/modules/catalog/api/admin/productBulkDisable/route +2 -0
  346. package/src/modules/catalog/api/admin/productBulkEnable/[context]multerNone[auth].js +7 -0
  347. package/src/modules/catalog/api/admin/productBulkEnable/enableProducts.js +24 -0
  348. package/src/modules/catalog/api/admin/productBulkEnable/route +2 -0
  349. package/src/modules/catalog/api/admin/productSavePost/[context]multerNone[auth].js +7 -0
  350. package/src/modules/catalog/api/admin/productSavePost/[createProduct,updateProduct]saveAttributes[finish].js +79 -0
  351. package/src/modules/catalog/api/admin/productSavePost/[createProduct,updateProduct]saveCategories[finish].js +32 -0
  352. package/src/modules/catalog/api/admin/productSavePost/[createProduct,updateProduct]saveImages[finish].js +126 -0
  353. package/src/modules/catalog/api/admin/productSavePost/[createProduct,updateProduct]saveOptions[finish].js +94 -0
  354. package/src/modules/catalog/api/admin/productSavePost/[createProduct,updateProduct]saveVariants[finish].js +273 -0
  355. package/src/modules/catalog/api/admin/productSavePost/[getConnection]createProduct[finish].js +13 -0
  356. package/src/modules/catalog/api/admin/productSavePost/[getConnection]updateProduct[finish].js +15 -0
  357. package/src/modules/catalog/api/admin/productSavePost/finish[apiResponse].js +26 -0
  358. package/src/modules/catalog/api/admin/productSavePost/getConnection[finish].js +10 -0
  359. package/src/modules/catalog/api/admin/productSavePost/route +2 -0
  360. package/src/modules/catalog/api/admin/productSavePost/validateProduct[getConnection].js +29 -0
  361. package/src/modules/catalog/api/admin/search/searchProducts[searchResponse].js +28 -0
  362. package/src/modules/catalog/api/admin/unlinkVariant/[context]multerNone[auth].js +7 -0
  363. package/src/modules/catalog/api/admin/unlinkVariant/route +2 -0
  364. package/src/modules/catalog/api/admin/unlinkVariant/unlinkVariants.js +23 -0
  365. package/src/modules/catalog/api/admin/variantSearch/loadVariants.js +71 -0
  366. package/src/modules/catalog/api/admin/variantSearch/route +2 -0
  367. package/src/modules/catalog/components/product/list/List.js +73 -0
  368. package/src/modules/catalog/components/product/list/Pagination.js +90 -0
  369. package/src/modules/catalog/components/product/list/Pagination.scss +21 -0
  370. package/src/modules/catalog/components/product/list/Sorting.js +87 -0
  371. package/src/modules/catalog/components/product/list/item/Name.js +22 -0
  372. package/src/modules/catalog/components/product/list/item/Name.scss +3 -0
  373. package/src/modules/catalog/components/product/list/item/Price.js +34 -0
  374. package/src/modules/catalog/components/product/list/item/Thumbnail.js +28 -0
  375. package/src/modules/catalog/components/product/list/item/Thumbnail.scss +9 -0
  376. package/src/modules/catalog/graphql/types/Attribute/Attribute.graphql +37 -0
  377. package/src/modules/catalog/graphql/types/Attribute/Attribute.resolvers.js +171 -0
  378. package/src/modules/catalog/graphql/types/Category/Category.graphql +65 -0
  379. package/src/modules/catalog/graphql/types/Category/Category.resolvers.js +328 -0
  380. package/src/modules/catalog/graphql/types/FeaturedCategory/FeaturedCategory.graphql +3 -0
  381. package/src/modules/catalog/graphql/types/FeaturedCategory/FeaturedCategory.resolvers.js +28 -0
  382. package/src/modules/catalog/graphql/types/FeaturedProduct/FeaturedProduct.graphql +3 -0
  383. package/src/modules/catalog/graphql/types/FeaturedProduct/FeaturedProduct.resolvers.js +28 -0
  384. package/src/modules/catalog/graphql/types/Product/Attribute/ProductAttribute.graphql +10 -0
  385. package/src/modules/catalog/graphql/types/Product/Attribute/ProductAttribute.resolvers.js +24 -0
  386. package/src/modules/catalog/graphql/types/Product/CustomOption/CustomOption.graphql +17 -0
  387. package/src/modules/catalog/graphql/types/Product/CustomOption/CustomOption.resolvers.js +7 -0
  388. package/src/modules/catalog/graphql/types/Product/Image/ProductImage.graphql +15 -0
  389. package/src/modules/catalog/graphql/types/Product/Image/ProductImage.resolvers.js +53 -0
  390. package/src/modules/catalog/graphql/types/Product/Inventory/Inventory.graphql +10 -0
  391. package/src/modules/catalog/graphql/types/Product/Inventory/Inventory.resolvers.js +15 -0
  392. package/src/modules/catalog/graphql/types/Product/Price/ProductPrice.graphql +9 -0
  393. package/src/modules/catalog/graphql/types/Product/Price/ProductPrice.resolvers.js +13 -0
  394. package/src/modules/catalog/graphql/types/Product/Product.graphql +23 -0
  395. package/src/modules/catalog/graphql/types/Product/Product.resolvers.js +45 -0
  396. package/src/modules/catalog/graphql/types/Product/Variant/Variant.graphql +34 -0
  397. package/src/modules/catalog/graphql/types/Product/Variant/Variant.resolvers.js +131 -0
  398. package/src/modules/catalog/migration/Version-1.0.0.js +324 -0
  399. package/src/modules/catalog/pages/admin/all/CatalogMenuGroup.js +42 -0
  400. package/src/modules/catalog/pages/admin/all/NewProductQuickLink.js +22 -0
  401. package/src/modules/catalog/pages/admin/attributeEdit/index.js +26 -0
  402. package/src/modules/catalog/pages/admin/attributeEdit/route +2 -0
  403. package/src/modules/catalog/pages/admin/attributeEdit+attributeNew/AttributeEditForm.js +62 -0
  404. package/src/modules/catalog/pages/admin/attributeEdit+attributeNew/AttributeEditForm.scss +7 -0
  405. package/src/modules/catalog/pages/admin/attributeEdit+attributeNew/Avaibility.js +79 -0
  406. package/src/modules/catalog/pages/admin/attributeEdit+attributeNew/General.js +237 -0
  407. package/src/modules/catalog/pages/admin/attributeEdit+attributeNew/PageHeading.js +20 -0
  408. package/src/modules/catalog/pages/admin/attributeGrid/Grid.js +235 -0
  409. package/src/modules/catalog/pages/admin/attributeGrid/Heading.js +11 -0
  410. package/src/modules/catalog/pages/admin/attributeGrid/NewAttributeButton.js +17 -0
  411. package/src/modules/catalog/pages/admin/attributeGrid/TypeRow.js +21 -0
  412. package/src/modules/catalog/pages/admin/attributeGrid/headers/GroupHeader.js +62 -0
  413. package/src/modules/catalog/pages/admin/attributeGrid/index.js +10 -0
  414. package/src/modules/catalog/pages/admin/attributeGrid/route +2 -0
  415. package/src/modules/catalog/pages/admin/attributeGrid/rows/AttributeName.js +18 -0
  416. package/src/modules/catalog/pages/admin/attributeGrid/rows/GroupRow.js +85 -0
  417. package/src/modules/catalog/pages/admin/attributeNew/index.js +8 -0
  418. package/src/modules/catalog/pages/admin/attributeNew/route +2 -0
  419. package/src/modules/catalog/pages/admin/categoryEdit/index.js +27 -0
  420. package/src/modules/catalog/pages/admin/categoryEdit/route +2 -0
  421. package/src/modules/catalog/pages/admin/categoryEdit+categoryNew/CategoryEditForm.js +73 -0
  422. package/src/modules/catalog/pages/admin/categoryEdit+categoryNew/CategoryEditForm.scss +7 -0
  423. package/src/modules/catalog/pages/admin/categoryEdit+categoryNew/General.js +89 -0
  424. package/src/modules/catalog/pages/admin/categoryEdit+categoryNew/Image.js +110 -0
  425. package/src/modules/catalog/pages/admin/categoryEdit+categoryNew/Image.scss +39 -0
  426. package/src/modules/catalog/pages/admin/categoryEdit+categoryNew/PageHeading.js +20 -0
  427. package/src/modules/catalog/pages/admin/categoryEdit+categoryNew/Seo.js +80 -0
  428. package/src/modules/catalog/pages/admin/categoryEdit+categoryNew/Status.js +51 -0
  429. package/src/modules/catalog/pages/admin/categoryGrid/Grid.js +182 -0
  430. package/src/modules/catalog/pages/admin/categoryGrid/Heading.js +11 -0
  431. package/src/modules/catalog/pages/admin/categoryGrid/NameRow.js +23 -0
  432. package/src/modules/catalog/pages/admin/categoryGrid/NewCategoryButton.js +17 -0
  433. package/src/modules/catalog/pages/admin/categoryGrid/index.js +10 -0
  434. package/src/modules/catalog/pages/admin/categoryGrid/route +2 -0
  435. package/src/modules/catalog/pages/admin/categoryGrid/rows/CategoryName.js +18 -0
  436. package/src/modules/catalog/pages/admin/categoryNew/index.js +8 -0
  437. package/src/modules/catalog/pages/admin/categoryNew/route +2 -0
  438. package/src/modules/catalog/pages/admin/productEdit/index.js +27 -0
  439. package/src/modules/catalog/pages/admin/productEdit/route +2 -0
  440. package/src/modules/catalog/pages/admin/productEdit+productNew/Attributes.js +199 -0
  441. package/src/modules/catalog/pages/admin/productEdit+productNew/CustomOptions.jsss +164 -0
  442. package/src/modules/catalog/pages/admin/productEdit+productNew/General.js +170 -0
  443. package/src/modules/catalog/pages/admin/productEdit+productNew/Inventory.js +62 -0
  444. package/src/modules/catalog/pages/admin/productEdit+productNew/Media.js +44 -0
  445. package/src/modules/catalog/pages/admin/productEdit+productNew/PageHeading.js +20 -0
  446. package/src/modules/catalog/pages/admin/productEdit+productNew/ProductEditForm.js +73 -0
  447. package/src/modules/catalog/pages/admin/productEdit+productNew/ProductEditForm.scss +7 -0
  448. package/src/modules/catalog/pages/admin/productEdit+productNew/Seo.js +75 -0
  449. package/src/modules/catalog/pages/admin/productEdit+productNew/Status.js +93 -0
  450. package/src/modules/catalog/pages/admin/productEdit+productNew/VariantGroup.js +84 -0
  451. package/src/modules/catalog/pages/admin/productEdit+productNew/Variants.scss +24 -0
  452. package/src/modules/catalog/pages/admin/productEdit+productNew/media/ProductMediaManager.js +190 -0
  453. package/src/modules/catalog/pages/admin/productEdit+productNew/media/ProductMediaManager.scss +76 -0
  454. package/src/modules/catalog/pages/admin/productEdit+productNew/variants/CreateVariantGroup.js +99 -0
  455. package/src/modules/catalog/pages/admin/productEdit+productNew/variants/Edit.js +11 -0
  456. package/src/modules/catalog/pages/admin/productEdit+productNew/variants/New.js +33 -0
  457. package/src/modules/catalog/pages/admin/productEdit+productNew/variants/Search.js +52 -0
  458. package/src/modules/catalog/pages/admin/productEdit+productNew/variants/SearchModal.js +135 -0
  459. package/src/modules/catalog/pages/admin/productEdit+productNew/variants/Variant.js +153 -0
  460. package/src/modules/catalog/pages/admin/productEdit+productNew/variants/VariantType.js +20 -0
  461. package/src/modules/catalog/pages/admin/productEdit+productNew/variants/Variants.js +155 -0
  462. package/src/modules/catalog/pages/admin/productGrid/Grid.js +293 -0
  463. package/src/modules/catalog/pages/admin/productGrid/Heading.js +11 -0
  464. package/src/modules/catalog/pages/admin/productGrid/NewProductButton.js +18 -0
  465. package/src/modules/catalog/pages/admin/productGrid/index.js +11 -0
  466. package/src/modules/catalog/pages/admin/productGrid/route +2 -0
  467. package/src/modules/catalog/pages/admin/productGrid/rows/PriceRow.js +22 -0
  468. package/src/modules/catalog/pages/admin/productGrid/rows/ProductName.js +18 -0
  469. package/src/modules/catalog/pages/admin/productGrid/rows/QtyRow.js +16 -0
  470. package/src/modules/catalog/pages/admin/productGrid/rows/ThumbnailRow.js +22 -0
  471. package/src/modules/catalog/pages/admin/productNew/index.js +8 -0
  472. package/src/modules/catalog/pages/admin/productNew/route +2 -0
  473. package/src/modules/catalog/pages/frontStore/categoryView/Filter.js +269 -0
  474. package/src/modules/catalog/pages/frontStore/categoryView/Filter.scss +99 -0
  475. package/src/modules/catalog/pages/frontStore/categoryView/General.js +60 -0
  476. package/src/modules/catalog/pages/frontStore/categoryView/Pagination.js +29 -0
  477. package/src/modules/catalog/pages/frontStore/categoryView/Products.js +52 -0
  478. package/src/modules/catalog/pages/frontStore/categoryView/[index]filters.js +92 -0
  479. package/src/modules/catalog/pages/frontStore/categoryView/index.js +29 -0
  480. package/src/modules/catalog/pages/frontStore/categoryView/route +2 -0
  481. package/src/modules/catalog/pages/frontStore/homepage/FeaturedCategories.js +61 -0
  482. package/src/modules/catalog/pages/frontStore/homepage/FeaturedProducts.js +65 -0
  483. package/src/modules/catalog/pages/frontStore/productView/Attributes.js +40 -0
  484. package/src/modules/catalog/pages/frontStore/productView/Description.js +10 -0
  485. package/src/modules/catalog/pages/frontStore/productView/Form.js +185 -0
  486. package/src/modules/catalog/pages/frontStore/productView/Form.scss +70 -0
  487. package/src/modules/catalog/pages/frontStore/productView/GeneralInfo.js +115 -0
  488. package/src/modules/catalog/pages/frontStore/productView/GeneralInfo.scss +3 -0
  489. package/src/modules/catalog/pages/frontStore/productView/Images.js +73 -0
  490. package/src/modules/catalog/pages/frontStore/productView/Layout.js +32 -0
  491. package/src/modules/catalog/pages/frontStore/productView/Options.js +96 -0
  492. package/src/modules/catalog/pages/frontStore/productView/Variants.js +143 -0
  493. package/src/modules/catalog/pages/frontStore/productView/Variants.scss +22 -0
  494. package/src/modules/catalog/pages/frontStore/productView/index.js +100 -0
  495. package/src/modules/catalog/pages/frontStore/productView/route +2 -0
  496. package/src/modules/catalog/services/getFilterableAttributes.js +64 -0
  497. package/src/modules/catalog/services/getPriceRange.js +20 -0
  498. package/src/modules/catalog/services/getProductsBaseQuery.js +20 -0
  499. package/src/modules/catalog/services/getProductsQuery.js +46 -0
  500. package/src/modules/catalog/services/productsFilter.js +16 -0
  501. package/src/modules/catalog/tests/intergration/productView.test.js +23 -0
  502. package/src/modules/checkout/api/admin/bestsellers/loadData.js +30 -0
  503. package/src/modules/checkout/api/admin/bestsellers/route +2 -0
  504. package/src/modules/checkout/api/admin/createShipment/[context]borderParser[auth].js +5 -0
  505. package/src/modules/checkout/api/admin/createShipment/createShipment.js +68 -0
  506. package/src/modules/checkout/api/admin/createShipment/route +2 -0
  507. package/src/modules/checkout/api/admin/lifetimesales/loadData.js +31 -0
  508. package/src/modules/checkout/api/admin/lifetimesales/route +2 -0
  509. package/src/modules/checkout/api/admin/orderBulkFullFill/[bodyParser]fullfill.js +68 -0
  510. package/src/modules/checkout/api/admin/orderBulkFullFill/bodyParser.js +7 -0
  511. package/src/modules/checkout/api/admin/orderBulkFullFill/route +2 -0
  512. package/src/modules/checkout/api/admin/salestatistic/loadData.js +47 -0
  513. package/src/modules/checkout/api/admin/salestatistic/route +2 -0
  514. package/src/modules/checkout/api/admin/updateShipment/[context]bodyParser[auth].js +5 -0
  515. package/src/modules/checkout/api/admin/updateShipment/route +2 -0
  516. package/src/modules/checkout/api/admin/updateShipment/updateShipment.js +59 -0
  517. package/src/modules/checkout/api/frontStore/addToCart/[context]bodyParser[auth].js +5 -0
  518. package/src/modules/checkout/api/frontStore/addToCart/addToCart.js +53 -0
  519. package/src/modules/checkout/api/frontStore/addToCart/route +2 -0
  520. package/src/modules/checkout/api/frontStore/checkoutGetShippingMethods/[context]multerNone[auth].js +7 -0
  521. package/src/modules/checkout/api/frontStore/checkoutGetShippingMethods/route +2 -0
  522. package/src/modules/checkout/api/frontStore/checkoutGetShippingMethods/sendMethods.js +28 -0
  523. package/src/modules/checkout/api/frontStore/checkoutPlaceOrder/[context]bodyParser[auth].js +5 -0
  524. package/src/modules/checkout/api/frontStore/checkoutPlaceOrder/placeOrder.js +37 -0
  525. package/src/modules/checkout/api/frontStore/checkoutPlaceOrder/route +2 -0
  526. package/src/modules/checkout/api/frontStore/checkoutSetBillingAddressInfo/[context]bodyParser[auth].js +5 -0
  527. package/src/modules/checkout/api/frontStore/checkoutSetBillingAddressInfo/[context]multerNone[auth].js +7 -0
  528. package/src/modules/checkout/api/frontStore/checkoutSetBillingAddressInfo/route +2 -0
  529. package/src/modules/checkout/api/frontStore/checkoutSetBillingAddressInfo/saveBillingAddress.js +51 -0
  530. package/src/modules/checkout/api/frontStore/checkoutSetContactInfo/[context]bodyParser[auth].js +5 -0
  531. package/src/modules/checkout/api/frontStore/checkoutSetContactInfo/[context]multerNone[auth].js +7 -0
  532. package/src/modules/checkout/api/frontStore/checkoutSetContactInfo/route +2 -0
  533. package/src/modules/checkout/api/frontStore/checkoutSetContactInfo/saveContactInfo.js +40 -0
  534. package/src/modules/checkout/api/frontStore/checkoutSetContactInfo/validateEmail[saveContactInfo].js +12 -0
  535. package/src/modules/checkout/api/frontStore/checkoutSetPaymentInfo/[context]bodyParser[auth].js +5 -0
  536. package/src/modules/checkout/api/frontStore/checkoutSetPaymentInfo/[context]multerNone[auth].js +7 -0
  537. package/src/modules/checkout/api/frontStore/checkoutSetPaymentInfo/route +2 -0
  538. package/src/modules/checkout/api/frontStore/checkoutSetPaymentInfo/savePaymentInfo.js +35 -0
  539. package/src/modules/checkout/api/frontStore/checkoutSetShipmentInfo/[context]bodyParser[auth].js +5 -0
  540. package/src/modules/checkout/api/frontStore/checkoutSetShipmentInfo/[context]multerNone[auth].js +7 -0
  541. package/src/modules/checkout/api/frontStore/checkoutSetShipmentInfo/route +2 -0
  542. package/src/modules/checkout/api/frontStore/checkoutSetShipmentInfo/saveShipmentInfo.js +49 -0
  543. package/src/modules/checkout/api/frontStore/paymentMethods/[validateCart]sendMethods.js +40 -0
  544. package/src/modules/checkout/api/frontStore/paymentMethods/route +2 -0
  545. package/src/modules/checkout/api/frontStore/paymentMethods/validateCart.js +23 -0
  546. package/src/modules/checkout/api/frontStore/removeCartItem/[context]bodyParser[auth].js +5 -0
  547. package/src/modules/checkout/api/frontStore/removeCartItem/removeItem.js +33 -0
  548. package/src/modules/checkout/api/frontStore/removeCartItem/route +2 -0
  549. package/src/modules/checkout/bootstrap.js +29 -0
  550. package/src/modules/checkout/components/admin/orderEdit/Shipment.js +222 -0
  551. package/src/modules/checkout/components/frontStore/checkout/CheckoutButton.js +26 -0
  552. package/src/modules/checkout/components/frontStore/checkout/StepTitle.js +30 -0
  553. package/src/modules/checkout/components/frontStore/checkout/address/AddressBook.js +82 -0
  554. package/src/modules/checkout/components/frontStore/checkout/address/NewBillingAddressForm.js +36 -0
  555. package/src/modules/checkout/components/frontStore/checkout/address/NewShippingAddressForm.js +38 -0
  556. package/src/modules/checkout/components/frontStore/checkout/address/UseShippingAddress.js +64 -0
  557. package/src/modules/checkout/components/frontStore/checkout/payment/paymentMethods/Methods.js +17 -0
  558. package/src/modules/checkout/components/frontStore/checkout/payment/paymentStep/BillingAddress.js +29 -0
  559. package/src/modules/checkout/components/frontStore/checkout/payment/paymentStep/StepContent.js +152 -0
  560. package/src/modules/checkout/components/frontStore/checkout/shipment/StepContent.js +93 -0
  561. package/src/modules/checkout/components/frontStore/checkout/summary/Cart.js +20 -0
  562. package/src/modules/checkout/components/frontStore/checkout/summary/Items.js +106 -0
  563. package/src/modules/checkout/components/frontStore/checkout/summary/Items.scss +53 -0
  564. package/src/modules/checkout/components/frontStore/checkout/summary/cart/Discount.js +26 -0
  565. package/src/modules/checkout/components/frontStore/checkout/summary/cart/Shipping.js +26 -0
  566. package/src/modules/checkout/components/frontStore/checkout/summary/cart/Subtotal.js +23 -0
  567. package/src/modules/checkout/components/frontStore/checkout/summary/cart/Tax.js +24 -0
  568. package/src/modules/checkout/components/frontStore/checkout/summary/cart/Total.js +18 -0
  569. package/src/modules/checkout/graphql/types/BestSeller/BestSeller.graphql +3 -0
  570. package/src/modules/checkout/graphql/types/BestSeller/BestSeller.resolvers.js +22 -0
  571. package/src/modules/checkout/graphql/types/Cart/Cart.graphql +130 -0
  572. package/src/modules/checkout/graphql/types/Cart/Cart.resolvers.js +30 -0
  573. package/src/modules/checkout/graphql/types/Checkout/Checkout.graphql +7 -0
  574. package/src/modules/checkout/graphql/types/Checkout/Checkout.resolvers.js +9 -0
  575. package/src/modules/checkout/graphql/types/Date/Date.graphql +4 -0
  576. package/src/modules/checkout/graphql/types/Date/Date.resolvers.js +12 -0
  577. package/src/modules/checkout/graphql/types/Order/Order.graphql +104 -0
  578. package/src/modules/checkout/graphql/types/Order/Order.resolvers.js +176 -0
  579. package/src/modules/checkout/graphql/types/PaymentTransaction/PaymentTransaction.graphql +15 -0
  580. package/src/modules/checkout/graphql/types/PaymentTransaction/PaymentTransaction.resolvers.js +14 -0
  581. package/src/modules/checkout/graphql/types/Price/Price.graphql +5 -0
  582. package/src/modules/checkout/graphql/types/Price/Price.resolvers.js +18 -0
  583. package/src/modules/checkout/graphql/types/Status/Status.graphql +18 -0
  584. package/src/modules/checkout/graphql/types/Status/Status.resolvers.js +50 -0
  585. package/src/modules/checkout/graphql/types/Weight/Weight.graphql +5 -0
  586. package/src/modules/checkout/graphql/types/Weight/Weight.resolvers.js +19 -0
  587. package/src/modules/checkout/migration/Version-1.0.0.js +199 -0
  588. package/src/modules/checkout/migration/Version-1.0.1.js +10 -0
  589. package/src/modules/checkout/migration/Version-1.0.2.js +14 -0
  590. package/src/modules/checkout/pages/admin/all/CheckoutMenuGroup.js +28 -0
  591. package/src/modules/checkout/pages/admin/dashboard/Bestcustomers.js +46 -0
  592. package/src/modules/checkout/pages/admin/dashboard/Bestsellers.js +99 -0
  593. package/src/modules/checkout/pages/admin/dashboard/Bestsellers.scss +51 -0
  594. package/src/modules/checkout/pages/admin/dashboard/Lifetimesales.js +134 -0
  595. package/src/modules/checkout/pages/admin/dashboard/Lifetimesales.scss +33 -0
  596. package/src/modules/checkout/pages/admin/dashboard/Statistic.js +100 -0
  597. package/src/modules/checkout/pages/admin/dashboard/Statistic.scss +22 -0
  598. package/src/modules/checkout/pages/admin/orderEdit/Activities.js +91 -0
  599. package/src/modules/checkout/pages/admin/orderEdit/Activities.scss +59 -0
  600. package/src/modules/checkout/pages/admin/orderEdit/Customer.js +90 -0
  601. package/src/modules/checkout/pages/admin/orderEdit/CustomerNotes.js +41 -0
  602. package/src/modules/checkout/pages/admin/orderEdit/Items.js +415 -0
  603. package/src/modules/checkout/pages/admin/orderEdit/Items.scss +53 -0
  604. package/src/modules/checkout/pages/admin/orderEdit/Layout.js +21 -0
  605. package/src/modules/checkout/pages/admin/orderEdit/Layout.scss +7 -0
  606. package/src/modules/checkout/pages/admin/orderEdit/PageHeading.js +20 -0
  607. package/src/modules/checkout/pages/admin/orderEdit/Payment.js +130 -0
  608. package/src/modules/checkout/pages/admin/orderEdit/Payment.scss +14 -0
  609. package/src/modules/checkout/pages/admin/orderEdit/PaymentStatus.js +28 -0
  610. package/src/modules/checkout/pages/admin/orderEdit/ShipmentStatus.js +28 -0
  611. package/src/modules/checkout/pages/admin/orderEdit/index.js +28 -0
  612. package/src/modules/checkout/pages/admin/orderEdit/payment/Discount.js +24 -0
  613. package/src/modules/checkout/pages/admin/orderEdit/payment/Shipping.js +20 -0
  614. package/src/modules/checkout/pages/admin/orderEdit/payment/SubTotal.js +23 -0
  615. package/src/modules/checkout/pages/admin/orderEdit/payment/Tax.js +19 -0
  616. package/src/modules/checkout/pages/admin/orderEdit/payment/Total.js +17 -0
  617. package/src/modules/checkout/pages/admin/orderEdit/payment/Transactions.js +38 -0
  618. package/src/modules/checkout/pages/admin/orderEdit/route +2 -0
  619. package/src/modules/checkout/pages/admin/orderGrid/Grid.js +245 -0
  620. package/src/modules/checkout/pages/admin/orderGrid/Heading.js +11 -0
  621. package/src/modules/checkout/pages/admin/orderGrid/headers/OrderDateColumnHeader.js +66 -0
  622. package/src/modules/checkout/pages/admin/orderGrid/headers/PaymentStatusColumnHeader.js +38 -0
  623. package/src/modules/checkout/pages/admin/orderGrid/headers/ShipmentStatusColumnHeader.js +38 -0
  624. package/src/modules/checkout/pages/admin/orderGrid/index.js +11 -0
  625. package/src/modules/checkout/pages/admin/orderGrid/route +2 -0
  626. package/src/modules/checkout/pages/admin/orderGrid/rows/OrderNumberRow.js +20 -0
  627. package/src/modules/checkout/pages/admin/orderGrid/rows/PaymentStatus.js +14 -0
  628. package/src/modules/checkout/pages/admin/orderGrid/rows/ShipmentStatus.js +14 -0
  629. package/src/modules/checkout/pages/admin/orderGrid/rows/TotalRow.js +10 -0
  630. package/src/modules/checkout/pages/frontStore/all/MiniCart.js +37 -0
  631. package/src/modules/checkout/pages/frontStore/all/MiniCart.scss +21 -0
  632. package/src/modules/checkout/pages/frontStore/all/[tokenVerify]detectCurrentCart[auth].js +36 -0
  633. package/src/modules/checkout/pages/frontStore/cart/Empty.js +32 -0
  634. package/src/modules/checkout/pages/frontStore/cart/ShoppingCart.js +103 -0
  635. package/src/modules/checkout/pages/frontStore/cart/Summary.js +109 -0
  636. package/src/modules/checkout/pages/frontStore/cart/Summary.scss +8 -0
  637. package/src/modules/checkout/pages/frontStore/cart/index.js +8 -0
  638. package/src/modules/checkout/pages/frontStore/cart/items/ItemOptions.js +57 -0
  639. package/src/modules/checkout/pages/frontStore/cart/items/ItemVariantOptions.js +35 -0
  640. package/src/modules/checkout/pages/frontStore/cart/items/Items.js +99 -0
  641. package/src/modules/checkout/pages/frontStore/cart/items/Items.scss +45 -0
  642. package/src/modules/checkout/pages/frontStore/cart/route +2 -0
  643. package/src/modules/checkout/pages/frontStore/checkout/Checkout.js +114 -0
  644. package/src/modules/checkout/pages/frontStore/checkout/Checkout.scss +40 -0
  645. package/src/modules/checkout/pages/frontStore/checkout/PaymentMethods.js +38 -0
  646. package/src/modules/checkout/pages/frontStore/checkout/PaymentStep.js +48 -0
  647. package/src/modules/checkout/pages/frontStore/checkout/ShipmentStep.js +87 -0
  648. package/src/modules/checkout/pages/frontStore/checkout/ShippingMethods.js +74 -0
  649. package/src/modules/checkout/pages/frontStore/checkout/Summary.js +74 -0
  650. package/src/modules/checkout/pages/frontStore/checkout/Summary.scss +51 -0
  651. package/src/modules/checkout/pages/frontStore/checkout/index.js +19 -0
  652. package/src/modules/checkout/pages/frontStore/checkout/route +2 -0
  653. package/src/modules/checkout/pages/frontStore/checkoutSuccess/CheckoutSuccess.js +18 -0
  654. package/src/modules/checkout/pages/frontStore/checkoutSuccess/CheckoutSuccess.scss +45 -0
  655. package/src/modules/checkout/pages/frontStore/checkoutSuccess/CustomerInfo.js +103 -0
  656. package/src/modules/checkout/pages/frontStore/checkoutSuccess/Summary.js +74 -0
  657. package/src/modules/checkout/pages/frontStore/checkoutSuccess/Summary.scss +51 -0
  658. package/src/modules/checkout/pages/frontStore/checkoutSuccess/index.js +22 -0
  659. package/src/modules/checkout/pages/frontStore/checkoutSuccess/route +2 -0
  660. package/src/modules/checkout/pages/frontStore/checkoutSuccess/summary/items/ItemOptions.js +57 -0
  661. package/src/modules/checkout/pages/frontStore/checkoutSuccess/summary/items/ItemVariantOptions.js +35 -0
  662. package/src/modules/checkout/pages/frontStore/checkoutSuccess/summary/items/Items.js +43 -0
  663. package/src/modules/checkout/pages/frontStore/checkoutSuccess/summary/items/Items.scss +53 -0
  664. package/src/modules/checkout/pages/frontStore/checkoutSuccess/summary/order/Discount.js +26 -0
  665. package/src/modules/checkout/pages/frontStore/checkoutSuccess/summary/order/OrderSummary.js +20 -0
  666. package/src/modules/checkout/pages/frontStore/checkoutSuccess/summary/order/Shipping.js +26 -0
  667. package/src/modules/checkout/pages/frontStore/checkoutSuccess/summary/order/Subtotal.js +23 -0
  668. package/src/modules/checkout/pages/frontStore/checkoutSuccess/summary/order/Tax.js +24 -0
  669. package/src/modules/checkout/pages/frontStore/checkoutSuccess/summary/order/Total.js +18 -0
  670. package/src/modules/checkout/services/addressValidator.js +4 -0
  671. package/src/modules/checkout/services/cart/Cart.js +360 -0
  672. package/src/modules/checkout/services/cart/CartFactory.js +45 -0
  673. package/src/modules/checkout/services/cart/DataObject.js +142 -0
  674. package/src/modules/checkout/services/cart/Item.js +223 -0
  675. package/src/modules/checkout/services/createNewCart.js +24 -0
  676. package/src/modules/checkout/services/getCartById.js +25 -0
  677. package/src/modules/checkout/services/getCartByUUID.js +24 -0
  678. package/src/modules/checkout/services/getCustomerCart.js +53 -0
  679. package/src/modules/checkout/services/orderCreator.js +171 -0
  680. package/src/modules/checkout/services/saveCart.js +76 -0
  681. package/src/modules/checkout/services/toPrice.js +29 -0
  682. package/src/modules/cms/api/admin/cmsPageBulkDelete/[context]multerNone[auth].js +7 -0
  683. package/src/modules/cms/api/admin/cmsPageBulkDelete/deletePages.js +23 -0
  684. package/src/modules/cms/api/admin/cmsPageBulkDelete/route +2 -0
  685. package/src/modules/cms/api/admin/cmsPageSavePost/[context]multerNone[auth].js +7 -0
  686. package/src/modules/cms/api/admin/cmsPageSavePost/[getConnection]createPage[finish].js +13 -0
  687. package/src/modules/cms/api/admin/cmsPageSavePost/[getConnection]updatePage[finish].js +15 -0
  688. package/src/modules/cms/api/admin/cmsPageSavePost/finish[apiResponse].js +30 -0
  689. package/src/modules/cms/api/admin/cmsPageSavePost/getConnection.js +10 -0
  690. package/src/modules/cms/api/admin/cmsPageSavePost/route +2 -0
  691. package/src/modules/cms/api/admin/fileBrowser/browser.js +30 -0
  692. package/src/modules/cms/api/admin/fileBrowser/route +2 -0
  693. package/src/modules/cms/api/admin/fileDelete/delete.js +24 -0
  694. package/src/modules/cms/api/admin/fileDelete/route +2 -0
  695. package/src/modules/cms/api/admin/folderCreate/create.js +24 -0
  696. package/src/modules/cms/api/admin/folderCreate/route +2 -0
  697. package/src/modules/cms/api/admin/imageUpload/[context]multerFile[auth].js +36 -0
  698. package/src/modules/cms/api/admin/imageUpload/[multerFile]upload.js +29 -0
  699. package/src/modules/cms/api/admin/imageUpload/route +2 -0
  700. package/src/modules/cms/api/admin/search/route +2 -0
  701. package/src/modules/cms/api/admin/search/searchResponse.js +26 -0
  702. package/src/modules/cms/components/admin/Card.js +122 -0
  703. package/src/modules/cms/components/admin/Card.scss +38 -0
  704. package/src/modules/cms/components/admin/Dot.js +17 -0
  705. package/src/modules/cms/components/admin/NavigationItem.js +38 -0
  706. package/src/modules/cms/components/admin/NavigationItem.scss +10 -0
  707. package/src/modules/cms/components/admin/NavigationItemGroup.js +37 -0
  708. package/src/modules/cms/components/admin/NavigationItemGroup.scss +34 -0
  709. package/src/modules/cms/components/admin/PageHeading.js +79 -0
  710. package/src/modules/cms/components/admin/PageHeading.scss +19 -0
  711. package/src/modules/cms/components/admin/Title.js +10 -0
  712. package/src/modules/cms/components/admin/navigation/DashboardMenuItem.js +12 -0
  713. package/src/modules/cms/components/admin/navigation/PagesMenuItem.js +12 -0
  714. package/src/modules/cms/components/frontStore/Button.js +4 -0
  715. package/src/modules/cms/components/frontStore/Button.scss +67 -0
  716. package/src/modules/cms/components/frontStore/MetaDescription.js +10 -0
  717. package/src/modules/cms/components/frontStore/MetaTitle.js +10 -0
  718. package/src/modules/cms/graphql/types/CmsPage/CmsPage.graphql +25 -0
  719. package/src/modules/cms/graphql/types/CmsPage/CmsPage.resolvers.js +95 -0
  720. package/src/modules/cms/graphql/types/Menu/Menu.graphql +13 -0
  721. package/src/modules/cms/graphql/types/Menu/Menu.resolvers.js +22 -0
  722. package/src/modules/cms/graphql/types/PageInfo/PageInfo.graphql +9 -0
  723. package/src/modules/cms/graphql/types/PageInfo/PageInfo.resolvers.js +14 -0
  724. package/src/modules/cms/migration/Version-1.0.0.js +30 -0
  725. package/src/modules/cms/pages/admin/adminNotFound/Meta.js +22 -0
  726. package/src/modules/cms/pages/admin/adminNotFound/NotFound.js +64 -0
  727. package/src/modules/cms/pages/admin/adminNotFound/route +2 -0
  728. package/src/modules/cms/pages/admin/adminStaticAsset/route +2 -0
  729. package/src/modules/cms/pages/admin/adminStaticAsset/staticAssets.js +5 -0
  730. package/src/modules/cms/pages/admin/all/CmsMenuGroup.js +28 -0
  731. package/src/modules/cms/pages/admin/all/Layout.js +31 -0
  732. package/src/modules/cms/pages/admin/all/Layout.scss +90 -0
  733. package/src/modules/cms/pages/admin/all/Logo.js +32 -0
  734. package/src/modules/cms/pages/admin/all/Logo.scss +13 -0
  735. package/src/modules/cms/pages/admin/all/Meta.js +30 -0
  736. package/src/modules/cms/pages/admin/all/Navigation.js +20 -0
  737. package/src/modules/cms/pages/admin/all/Navigation.scss +84 -0
  738. package/src/modules/cms/pages/admin/all/Notification.js +42 -0
  739. package/src/modules/cms/pages/admin/all/Notification.scss +522 -0
  740. package/src/modules/cms/pages/admin/all/QuickLinks.js +28 -0
  741. package/src/modules/cms/pages/admin/all/SearchBox.js +149 -0
  742. package/src/modules/cms/pages/admin/all/SearchBox.scss +65 -0
  743. package/src/modules/cms/pages/admin/all/search/NoResult.js +38 -0
  744. package/src/modules/cms/pages/admin/all/search/Results.js +45 -0
  745. package/src/modules/cms/pages/admin/all/tailwind.scss +3 -0
  746. package/src/modules/cms/pages/admin/cmsPageEdit/index.js +27 -0
  747. package/src/modules/cms/pages/admin/cmsPageEdit/route +2 -0
  748. package/src/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/General.js +98 -0
  749. package/src/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/PageEditForm.js +64 -0
  750. package/src/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/PageHeading.js +20 -0
  751. package/src/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/Seo.js +81 -0
  752. package/src/modules/cms/pages/admin/cmsPageGrid/Grid.js +180 -0
  753. package/src/modules/cms/pages/admin/cmsPageGrid/Heading.js +11 -0
  754. package/src/modules/cms/pages/admin/cmsPageGrid/NameRow.js +22 -0
  755. package/src/modules/cms/pages/admin/cmsPageGrid/NewPageButton.js +17 -0
  756. package/src/modules/cms/pages/admin/cmsPageGrid/index.js +11 -0
  757. package/src/modules/cms/pages/admin/cmsPageGrid/route +2 -0
  758. package/src/modules/cms/pages/admin/cmsPageGrid/rows/PageName.js +17 -0
  759. package/src/modules/cms/pages/admin/cmsPageNew/index.js +8 -0
  760. package/src/modules/cms/pages/admin/cmsPageNew/route +2 -0
  761. package/src/modules/cms/pages/admin/dashboard/Layout.js +21 -0
  762. package/src/modules/cms/pages/admin/dashboard/Layout.scss +7 -0
  763. package/src/modules/cms/pages/admin/dashboard/PageHeading.js +11 -0
  764. package/src/modules/cms/pages/admin/dashboard/index.js +8 -0
  765. package/src/modules/cms/pages/admin/dashboard/route +2 -0
  766. package/src/modules/cms/pages/frontStore/all/Layout.js +95 -0
  767. package/src/modules/cms/pages/frontStore/all/Layout.scss +248 -0
  768. package/src/modules/cms/pages/frontStore/all/Logo.js +26 -0
  769. package/src/modules/cms/pages/frontStore/all/Logo.scss +10 -0
  770. package/src/modules/cms/pages/frontStore/all/Menu.js +32 -0
  771. package/src/modules/cms/pages/frontStore/all/Menu.scss +7 -0
  772. package/src/modules/cms/pages/frontStore/all/Meta.js +30 -0
  773. package/src/modules/cms/pages/frontStore/all/MobileMenu.js +41 -0
  774. package/src/modules/cms/pages/frontStore/all/MobileMenu.scss +35 -0
  775. package/src/modules/cms/pages/frontStore/all/Notification.js +42 -0
  776. package/src/modules/cms/pages/frontStore/all/Notification.scss +523 -0
  777. package/src/modules/cms/pages/frontStore/all/tailwind.scss +3 -0
  778. package/src/modules/cms/pages/frontStore/cmsPageView/Layout.js +89 -0
  779. package/src/modules/cms/pages/frontStore/cmsPageView/Layout.scss +248 -0
  780. package/src/modules/cms/pages/frontStore/cmsPageView/View.js +11 -0
  781. package/src/modules/cms/pages/frontStore/cmsPageView/route +2 -0
  782. package/src/modules/cms/pages/frontStore/homepage/MainBanner.js +19 -0
  783. package/src/modules/cms/pages/frontStore/homepage/MainBanner.scss +49 -0
  784. package/src/modules/cms/pages/frontStore/homepage/meta.js +13 -0
  785. package/src/modules/cms/pages/frontStore/homepage/route +2 -0
  786. package/src/modules/cms/pages/frontStore/notFound/Meta.js +22 -0
  787. package/src/modules/cms/pages/frontStore/notFound/NotFound.js +64 -0
  788. package/src/modules/cms/pages/frontStore/notFound/route +2 -0
  789. package/src/modules/cms/pages/frontStore/staticAsset/[context]staticAssets[auth].js +5 -0
  790. package/src/modules/cms/pages/frontStore/staticAsset/route +2 -0
  791. package/src/modules/cms/services/tailwind.admin.config.js +116 -0
  792. package/src/modules/cms/services/tailwind.frontStore.config.js +122 -0
  793. package/src/modules/customer/api/admin/customerSavePost/[context]multerNone[auth].js +7 -0
  794. package/src/modules/customer/api/admin/customerSavePost/[getConnection]createCustomer[finish].js +12 -0
  795. package/src/modules/customer/api/admin/customerSavePost/[getConnection]updateCustomer[finish].js +14 -0
  796. package/src/modules/customer/api/admin/customerSavePost/finish[apiResponse].js +30 -0
  797. package/src/modules/customer/api/admin/customerSavePost/getConnection.js +10 -0
  798. package/src/modules/customer/api/admin/customerSavePost/route +2 -0
  799. package/src/modules/customer/api/admin/disableCustomers/[context]bodyParser[auth].js +7 -0
  800. package/src/modules/customer/api/admin/disableCustomers/disableCustomers.js +24 -0
  801. package/src/modules/customer/api/admin/disableCustomers/route +2 -0
  802. package/src/modules/customer/api/admin/enableCustomers/[context]bodyParser[auth].js +7 -0
  803. package/src/modules/customer/api/admin/enableCustomers/disableCustomers.js +24 -0
  804. package/src/modules/customer/api/admin/enableCustomers/route +2 -0
  805. package/src/modules/customer/api/frontStore/all/[tokenVerify]auth.js +3 -0
  806. package/src/modules/customer/api/frontStore/auth/[bodyParser]authenticate.js +60 -0
  807. package/src/modules/customer/api/frontStore/auth/bodyParser.js +7 -0
  808. package/src/modules/customer/api/frontStore/auth/route +2 -0
  809. package/src/modules/customer/api/frontStore/logout/logout.js +41 -0
  810. package/src/modules/customer/api/frontStore/logout/route +2 -0
  811. package/src/modules/customer/api/frontStore/registerPost/[bodyParser]validate.js +30 -0
  812. package/src/modules/customer/api/frontStore/registerPost/[validate]register.js +65 -0
  813. package/src/modules/customer/api/frontStore/registerPost/bodyParser.js +7 -0
  814. package/src/modules/customer/api/frontStore/registerPost/route +2 -0
  815. package/src/modules/customer/bootstrap.js +19 -0
  816. package/src/modules/customer/graphql/types/Customer/Customer.graphql +24 -0
  817. package/src/modules/customer/graphql/types/Customer/Customer.resolvers.js +106 -0
  818. package/src/modules/customer/graphql/types/CustomerGroup/CustomerGroup.graphql +11 -0
  819. package/src/modules/customer/graphql/types/CustomerGroup/CustomerGroup.resolvers.js +38 -0
  820. package/src/modules/customer/migration/Version-1.0.0.js +41 -0
  821. package/src/modules/customer/migration/Version-1.0.1.js +8 -0
  822. package/src/modules/customer/pages/admin/all/CustomerMenuGroup.js +28 -0
  823. package/src/modules/customer/pages/admin/customerEdit/index.js +26 -0
  824. package/src/modules/customer/pages/admin/customerEdit/route +2 -0
  825. package/src/modules/customer/pages/admin/customerEdit+customerNew/CustomerEditForm.js +31 -0
  826. package/src/modules/customer/pages/admin/customerEdit+customerNew/CustomerEditForm.scss +7 -0
  827. package/src/modules/customer/pages/admin/customerEdit+customerNew/General.js +64 -0
  828. package/src/modules/customer/pages/admin/customerEdit+customerNew/OrderHistory.js +67 -0
  829. package/src/modules/customer/pages/admin/customerEdit+customerNew/PageHeading.js +20 -0
  830. package/src/modules/customer/pages/admin/customerGrid/Grid.js +233 -0
  831. package/src/modules/customer/pages/admin/customerGrid/Heading.js +11 -0
  832. package/src/modules/customer/pages/admin/customerGrid/NewCustomertButton.js +17 -0
  833. package/src/modules/customer/pages/admin/customerGrid/index.js +11 -0
  834. package/src/modules/customer/pages/admin/customerGrid/route +2 -0
  835. package/src/modules/customer/pages/admin/customerGrid/rows/CreateAt.js +16 -0
  836. package/src/modules/customer/pages/admin/customerGrid/rows/CustomerName.js +18 -0
  837. package/src/modules/customer/pages/admin/customerNew/index.js +8 -0
  838. package/src/modules/customer/pages/admin/customerNew/route +2 -0
  839. package/src/modules/customer/pages/frontStore/account/AccountDetails.js +35 -0
  840. package/src/modules/customer/pages/frontStore/account/Layout.js +38 -0
  841. package/src/modules/customer/pages/frontStore/account/OrderHistory.js +54 -0
  842. package/src/modules/customer/pages/frontStore/account/components/Order.js +27 -0
  843. package/src/modules/customer/pages/frontStore/account/index.js +17 -0
  844. package/src/modules/customer/pages/frontStore/account/route +2 -0
  845. package/src/modules/customer/pages/frontStore/address/AddressForm.js +238 -0
  846. package/src/modules/customer/pages/frontStore/address/AddressSummary.js +60 -0
  847. package/src/modules/customer/pages/frontStore/all/UserIcon.js +27 -0
  848. package/src/modules/customer/pages/frontStore/all/[tokenVerify]auth.js +12 -0
  849. package/src/modules/customer/pages/frontStore/checkout/CustomerInfoStep.js +141 -0
  850. package/src/modules/customer/pages/frontStore/login/LoginForm.js +58 -0
  851. package/src/modules/customer/pages/frontStore/login/LoginForm.scss +44 -0
  852. package/src/modules/customer/pages/frontStore/login/index.js +17 -0
  853. package/src/modules/customer/pages/frontStore/login/route +2 -0
  854. package/src/modules/customer/pages/frontStore/register/RegisterForm.js +64 -0
  855. package/src/modules/customer/pages/frontStore/register/RegisterForm.scss +44 -0
  856. package/src/modules/customer/pages/frontStore/register/index.js +17 -0
  857. package/src/modules/customer/pages/frontStore/register/route +2 -0
  858. package/src/modules/graphql/api/frontStore/graphql/[bodyParser]graphql.js +48 -0
  859. package/src/modules/graphql/api/frontStore/graphql/bodyParser.js +7 -0
  860. package/src/modules/graphql/api/frontStore/graphql/route +2 -0
  861. package/src/modules/graphql/bootstrap.js +4 -0
  862. package/src/modules/graphql/graphql/types/Query/Query.graphql +3 -0
  863. package/src/modules/graphql/graphql/types/Query/Query.resolvers.js +5 -0
  864. package/src/modules/graphql/pages/global/[bodyParser]buildQuery[graphql].js +92 -0
  865. package/src/modules/graphql/pages/global/[buildQuery]graphql[notification].js +50 -0
  866. package/src/modules/graphql/pages/global/bodyParser[buildQuery].js +7 -0
  867. package/src/modules/graphql/services/buildResolvers.js +17 -0
  868. package/src/modules/graphql/services/buildSchema.js +10 -0
  869. package/src/modules/graphql/services/buildTypes.js +16 -0
  870. package/src/modules/graphql/services/contextHelper.js +33 -0
  871. package/src/modules/graphql/services/createGraphQL.js +14 -0
  872. package/src/modules/promotion/api/admin/couponBulkDelete/[context]multerNone[auth].js +7 -0
  873. package/src/modules/promotion/api/admin/couponBulkDelete/deleteProducts.js +23 -0
  874. package/src/modules/promotion/api/admin/couponBulkDelete/route +2 -0
  875. package/src/modules/promotion/api/admin/couponBulkDisable/[context]multerNone[auth].js +7 -0
  876. package/src/modules/promotion/api/admin/couponBulkDisable/disableProducts.js +24 -0
  877. package/src/modules/promotion/api/admin/couponBulkDisable/route +2 -0
  878. package/src/modules/promotion/api/admin/couponBulkEnable/[context]multerNone[auth].js +7 -0
  879. package/src/modules/promotion/api/admin/couponBulkEnable/enableProducts.js +24 -0
  880. package/src/modules/promotion/api/admin/couponBulkEnable/route +2 -0
  881. package/src/modules/promotion/api/admin/couponCreate/[bodyParser]validateCouponCode[getConnection].js +23 -0
  882. package/src/modules/promotion/api/admin/couponCreate/[getConnection]createCoupon[finish].js +8 -0
  883. package/src/modules/promotion/api/admin/couponCreate/bodyParser.js +7 -0
  884. package/src/modules/promotion/api/admin/couponCreate/finish[apiResponse].js +29 -0
  885. package/src/modules/promotion/api/admin/couponCreate/getConnection[finish].js +10 -0
  886. package/src/modules/promotion/api/admin/couponCreate/route +2 -0
  887. package/src/modules/promotion/api/admin/couponList/getCoupons.js +10 -0
  888. package/src/modules/promotion/api/admin/couponList/route +2 -0
  889. package/src/modules/promotion/api/admin/couponUpdate/[bodyParser]validateCouponCode[getConnection].js +23 -0
  890. package/src/modules/promotion/api/admin/couponUpdate/[getConnection]updateCoupon[finish].js +15 -0
  891. package/src/modules/promotion/api/admin/couponUpdate/bodyParser.js +7 -0
  892. package/src/modules/promotion/api/admin/couponUpdate/finish[apiResponse].js +29 -0
  893. package/src/modules/promotion/api/admin/couponUpdate/getConnection[finish].js +10 -0
  894. package/src/modules/promotion/api/admin/couponUpdate/route +2 -0
  895. package/src/modules/promotion/api/frontStore/couponApply/[context]bodyParser[auth].js +5 -0
  896. package/src/modules/promotion/api/frontStore/couponApply/[validateCouponCode]applyCoupon.js +29 -0
  897. package/src/modules/promotion/api/frontStore/couponApply/route +2 -0
  898. package/src/modules/promotion/api/frontStore/couponApply/validateCouponCode.js +11 -0
  899. package/src/modules/promotion/bootstrap.js +93 -0
  900. package/src/modules/promotion/components/BuyXGetY.js +150 -0
  901. package/src/modules/promotion/components/CouponForm.js +99 -0
  902. package/src/modules/promotion/components/CouponForm.scss +7 -0
  903. package/src/modules/promotion/components/RequireProducts.js +224 -0
  904. package/src/modules/promotion/components/TargetProduct.js +267 -0
  905. package/src/modules/promotion/graphql/types/Coupon/Coupon.graphql +63 -0
  906. package/src/modules/promotion/graphql/types/Coupon/Coupon.resolvers.js +193 -0
  907. package/src/modules/promotion/migration/Version-1.0.0.js +34 -0
  908. package/src/modules/promotion/pages/admin/all/CouponMenuGroup.js +28 -0
  909. package/src/modules/promotion/pages/admin/all/NewCouponQuickLink.js +22 -0
  910. package/src/modules/promotion/pages/admin/couponEdit/CouponEditForm.js +23 -0
  911. package/src/modules/promotion/pages/admin/couponEdit/index.js +25 -0
  912. package/src/modules/promotion/pages/admin/couponEdit/route +2 -0
  913. package/src/modules/promotion/pages/admin/couponEdit+couponNew/CustomerCondition.js +98 -0
  914. package/src/modules/promotion/pages/admin/couponEdit+couponNew/DiscountType.js +95 -0
  915. package/src/modules/promotion/pages/admin/couponEdit+couponNew/General.js +125 -0
  916. package/src/modules/promotion/pages/admin/couponEdit+couponNew/OrderCondition.js +44 -0
  917. package/src/modules/promotion/pages/admin/couponEdit+couponNew/PageHeading.js +20 -0
  918. package/src/modules/promotion/pages/admin/couponEdit+couponNew/route +2 -0
  919. package/src/modules/promotion/pages/admin/couponGrid/Grid.js +269 -0
  920. package/src/modules/promotion/pages/admin/couponGrid/Heading.js +11 -0
  921. package/src/modules/promotion/pages/admin/couponGrid/NewCouponButton.js +17 -0
  922. package/src/modules/promotion/pages/admin/couponGrid/index.js +11 -0
  923. package/src/modules/promotion/pages/admin/couponGrid/route +2 -0
  924. package/src/modules/promotion/pages/admin/couponGrid/rows/CouponName.js +17 -0
  925. package/src/modules/promotion/pages/admin/couponNew/CouponNewForm.js +23 -0
  926. package/src/modules/promotion/pages/admin/couponNew/index.js +8 -0
  927. package/src/modules/promotion/pages/admin/couponNew/route +2 -0
  928. package/src/modules/promotion/pages/admin/navigation/CouponNewMenuItem.js +12 -0
  929. package/src/modules/promotion/pages/admin/navigation/CouponsMenuItem.js +12 -0
  930. package/src/modules/promotion/pages/frontStore/cart/Coupon.js +68 -0
  931. package/src/modules/promotion/services/couponValidator.js +426 -0
  932. package/src/modules/promotion/services/discountCalculator.js +273 -0
  933. package/src/modules/setting/api/admin/saveSetting/[context]multerNone[auth].js +7 -0
  934. package/src/modules/setting/api/admin/saveSetting/route +2 -0
  935. package/src/modules/setting/api/admin/saveSetting/saveSetting.js +46 -0
  936. package/src/modules/setting/components/SettingMenu.js +16 -0
  937. package/src/modules/setting/components/SettingMenu.scss +8 -0
  938. package/src/modules/setting/graphql/types/Setting/Setting.graphql +7 -0
  939. package/src/modules/setting/graphql/types/Setting/Setting.resolvers.js +22 -0
  940. package/src/modules/setting/graphql/types/ShippingSetting/ShippingSetting.graphql +4 -0
  941. package/src/modules/setting/graphql/types/ShippingSetting/ShippingSetting.resolvers.js +20 -0
  942. package/src/modules/setting/graphql/types/StoreSetting/StoreSetting.graphql +14 -0
  943. package/src/modules/setting/graphql/types/StoreSetting/StoreSetting.resolvers.js +100 -0
  944. package/src/modules/setting/migration/Version-1.0.0.js +16 -0
  945. package/src/modules/setting/pages/admin/all/PaymentSettingMenu.js +19 -0
  946. package/src/modules/setting/pages/admin/all/SettingMenuGroup.js +23 -0
  947. package/src/modules/setting/pages/admin/all/ShippingSettingMenu.js +19 -0
  948. package/src/modules/setting/pages/admin/all/StoreSettingMenu.js +19 -0
  949. package/src/modules/setting/pages/admin/paymentSetting/PaymentSetting.js +43 -0
  950. package/src/modules/setting/pages/admin/paymentSetting/index.js +8 -0
  951. package/src/modules/setting/pages/admin/paymentSetting/route +2 -0
  952. package/src/modules/setting/pages/admin/shippingSetting/ShippingSetting.js +101 -0
  953. package/src/modules/setting/pages/admin/shippingSetting/index.js +8 -0
  954. package/src/modules/setting/pages/admin/shippingSetting/route +2 -0
  955. package/src/modules/setting/pages/admin/storeSetting/StoreSetting.js +333 -0
  956. package/src/modules/setting/pages/admin/storeSetting/index.js +8 -0
  957. package/src/modules/setting/pages/admin/storeSetting/route +2 -0
  958. package/src/modules/setting/pages/admin/tax/PaymentSetting.js +24 -0
  959. package/src/modules/setting/pages/admin/tax/route +2 -0
  960. package/src/modules/setting/services/setting.js +24 -0
  961. package/src/modules/stripe/api/frontStore/createPaymentIntent/[context]bodyParser[auth].js +7 -0
  962. package/src/modules/stripe/api/frontStore/createPaymentIntent/createPaymentIntent.js +46 -0
  963. package/src/modules/stripe/api/frontStore/createPaymentIntent/route +2 -0
  964. package/src/modules/stripe/api/frontStore/paymentMethods/[validateCart]registerStripe[sendMethods].js +21 -0
  965. package/src/modules/stripe/api/frontStore/stripeWebHook/[bodyJson]webhook.js +90 -0
  966. package/src/modules/stripe/api/frontStore/stripeWebHook/bodyJson.js +5 -0
  967. package/src/modules/stripe/api/frontStore/stripeWebHook/route +2 -0
  968. package/src/modules/stripe/api/frontStore/updatePaymentStatus/updateOrder.js +24 -0
  969. package/src/modules/stripe/graphql/types/StripeSetting/StripeSetting.graphql +7 -0
  970. package/src/modules/stripe/graphql/types/StripeSetting/StripeSetting.resolvers.js +70 -0
  971. package/src/modules/stripe/index.js +1 -0
  972. package/src/modules/stripe/pages/admin/paymentSetting/StripePayment.js +101 -0
  973. package/src/modules/stripe/pages/frontStore/checkout/CheckoutForm.js +268 -0
  974. package/src/modules/stripe/pages/frontStore/checkout/CheckoutForm.scss +29 -0
  975. package/src/modules/stripe/pages/frontStore/checkout/PaymentFormContext.js +40 -0
  976. package/src/modules/stripe/pages/frontStore/checkout/PaymentFormCustom.js +71 -0
@@ -0,0 +1,3550 @@
1
+ import PropTypes from 'prop-types';
2
+ import React from 'react';
3
+
4
+ function ProvinceOptions(props) {
5
+ const { country, children } = props;
6
+
7
+ const options = [
8
+ { value: 'AD-07', country_code: 'AD', text: 'Andorra la Vella' },
9
+ { value: 'AD-02', country_code: 'AD', text: 'Canillo' },
10
+ { value: 'AD-03', country_code: 'AD', text: 'Encamp' },
11
+ { value: 'AD-08', country_code: 'AD', text: 'Escaldes-Engordany' },
12
+ { value: 'AD-04', country_code: 'AD', text: 'La Massana' },
13
+ { value: 'AD-05', country_code: 'AD', text: 'Ordino' },
14
+ { value: 'AD-06', country_code: 'AD', text: 'Sant Julia de Loria' },
15
+ { value: 'AE-AJ', country_code: 'AE', text: "'Ajman" },
16
+ { value: 'AE-AZ', country_code: 'AE', text: 'Abu Zaby' },
17
+ { value: 'AE-FU', country_code: 'AE', text: 'Al Fujayrah' },
18
+ { value: 'AE-SH', country_code: 'AE', text: 'Ash Shariqah' },
19
+ { value: 'AE-DU', country_code: 'AE', text: 'Dubayy' },
20
+ { value: 'AE-RK', country_code: 'AE', text: "Ra's al Khaymah" },
21
+ { value: 'AE-UQ', country_code: 'AE', text: 'Umm al Qaywayn' },
22
+ { value: 'AF-BDS', country_code: 'AF', text: 'Badakhshan' },
23
+ { value: 'AF-BDG', country_code: 'AF', text: 'Badghis' },
24
+ { value: 'AF-BGL', country_code: 'AF', text: 'Baghlan' },
25
+ { value: 'AF-BAL', country_code: 'AF', text: 'Balkh' },
26
+ { value: 'AF-BAM', country_code: 'AF', text: 'Bamyan' },
27
+ { value: 'AF-DAY', country_code: 'AF', text: 'Daykundi' },
28
+ { value: 'AF-FRA', country_code: 'AF', text: 'Farah' },
29
+ { value: 'AF-FYB', country_code: 'AF', text: 'Faryab' },
30
+ { value: 'AF-GHA', country_code: 'AF', text: 'Ghazni' },
31
+ { value: 'AF-GHO', country_code: 'AF', text: 'Ghor' },
32
+ { value: 'AF-HEL', country_code: 'AF', text: 'Helmand' },
33
+ { value: 'AF-HER', country_code: 'AF', text: 'Herat' },
34
+ { value: 'AF-JOW', country_code: 'AF', text: 'Jowzjan' },
35
+ { value: 'AF-KAB', country_code: 'AF', text: 'Kabul' },
36
+ { value: 'AF-KAN', country_code: 'AF', text: 'Kandahar' },
37
+ { value: 'AF-KAP', country_code: 'AF', text: 'Kapisa' },
38
+ { value: 'AF-KHO', country_code: 'AF', text: 'Khost' },
39
+ { value: 'AF-KNR', country_code: 'AF', text: 'Kunar' },
40
+ { value: 'AF-KDZ', country_code: 'AF', text: 'Kunduz' },
41
+ { value: 'AF-LAG', country_code: 'AF', text: 'Laghman' },
42
+ { value: 'AF-LOG', country_code: 'AF', text: 'Logar' },
43
+ { value: 'AF-NAN', country_code: 'AF', text: 'Nangarhar' },
44
+ { value: 'AF-NIM', country_code: 'AF', text: 'Nimroz' },
45
+ { value: 'AF-NUR', country_code: 'AF', text: 'Nuristan' },
46
+ { value: 'AF-PKA', country_code: 'AF', text: 'Paktika' },
47
+ { value: 'AF-PIA', country_code: 'AF', text: 'Paktiya' },
48
+ { value: 'AF-PAN', country_code: 'AF', text: 'Panjshayr' },
49
+ { value: 'AF-PAR', country_code: 'AF', text: 'Parwan' },
50
+ { value: 'AF-SAM', country_code: 'AF', text: 'Samangan' },
51
+ { value: 'AF-SAR', country_code: 'AF', text: 'Sar-e Pul' },
52
+ { value: 'AF-TAK', country_code: 'AF', text: 'Takhar' },
53
+ { value: 'AF-URU', country_code: 'AF', text: 'Uruzgan' },
54
+ { value: 'AF-WAR', country_code: 'AF', text: 'Wardak' },
55
+ { value: 'AF-ZAB', country_code: 'AF', text: 'Zabul' },
56
+ { value: 'AG-04', country_code: 'AG', text: 'Saint John' },
57
+ { value: 'AG-05', country_code: 'AG', text: 'Saint Mary' },
58
+ { value: 'AG-06', country_code: 'AG', text: 'Saint Paul' },
59
+ { value: 'AL-01', country_code: 'AL', text: 'Berat' },
60
+ { value: 'AL-09', country_code: 'AL', text: 'Diber' },
61
+ { value: 'AL-02', country_code: 'AL', text: 'Durres' },
62
+ { value: 'AL-03', country_code: 'AL', text: 'Elbasan' },
63
+ { value: 'AL-04', country_code: 'AL', text: 'Fier' },
64
+ { value: 'AL-05', country_code: 'AL', text: 'Gjirokaster' },
65
+ { value: 'AL-06', country_code: 'AL', text: 'Korce' },
66
+ { value: 'AL-07', country_code: 'AL', text: 'Kukes' },
67
+ { value: 'AL-08', country_code: 'AL', text: 'Lezhe' },
68
+ { value: 'AL-10', country_code: 'AL', text: 'Shkoder' },
69
+ { value: 'AL-11', country_code: 'AL', text: 'Tirane' },
70
+ { value: 'AL-12', country_code: 'AL', text: 'Vlore' },
71
+ { value: 'AM-AG', country_code: 'AM', text: 'Aragacotn' },
72
+ { value: 'AM-AR', country_code: 'AM', text: 'Ararat' },
73
+ { value: 'AM-AV', country_code: 'AM', text: 'Armavir' },
74
+ { value: 'AM-ER', country_code: 'AM', text: 'Erevan' },
75
+ { value: 'AM-GR', country_code: 'AM', text: "Gegark'unik'" },
76
+ { value: 'AM-KT', country_code: 'AM', text: "Kotayk'" },
77
+ { value: 'AM-LO', country_code: 'AM', text: 'Lori' },
78
+ { value: 'AM-SH', country_code: 'AM', text: 'Sirak' },
79
+ { value: 'AM-SU', country_code: 'AM', text: "Syunik'" },
80
+ { value: 'AM-TV', country_code: 'AM', text: 'Tavus' },
81
+ { value: 'AM-VD', country_code: 'AM', text: 'Vayoc Jor' },
82
+ { value: 'AO-BGO', country_code: 'AO', text: 'Bengo' },
83
+ { value: 'AO-BGU', country_code: 'AO', text: 'Benguela' },
84
+ { value: 'AO-BIE', country_code: 'AO', text: 'Bie' },
85
+ { value: 'AO-CAB', country_code: 'AO', text: 'Cabinda' },
86
+ { value: 'AO-CNN', country_code: 'AO', text: 'Cunene' },
87
+ { value: 'AO-HUA', country_code: 'AO', text: 'Huambo' },
88
+ { value: 'AO-HUI', country_code: 'AO', text: 'Huila' },
89
+ { value: 'AO-CCU', country_code: 'AO', text: 'Kuando Kubango' },
90
+ { value: 'AO-CNO', country_code: 'AO', text: 'Kwanza Norte' },
91
+ { value: 'AO-CUS', country_code: 'AO', text: 'Kwanza Sul' },
92
+ { value: 'AO-LUA', country_code: 'AO', text: 'Luanda' },
93
+ { value: 'AO-LNO', country_code: 'AO', text: 'Lunda Norte' },
94
+ { value: 'AO-LSU', country_code: 'AO', text: 'Lunda Sul' },
95
+ { value: 'AO-MAL', country_code: 'AO', text: 'Malange' },
96
+ { value: 'AO-MOX', country_code: 'AO', text: 'Moxico' },
97
+ { value: 'AO-NAM', country_code: 'AO', text: 'Namibe' },
98
+ { value: 'AO-UIG', country_code: 'AO', text: 'Uige' },
99
+ { value: 'AO-ZAI', country_code: 'AO', text: 'Zaire' },
100
+ { value: 'AR-B', country_code: 'AR', text: 'Buenos Aires' },
101
+ { value: 'AR-K', country_code: 'AR', text: 'Catamarca' },
102
+ { value: 'AR-H', country_code: 'AR', text: 'Chaco' },
103
+ { value: 'AR-U', country_code: 'AR', text: 'Chubut' },
104
+ { value: 'AR-C', country_code: 'AR', text: 'Ciudad Autonoma de Buenos Aires' },
105
+ { value: 'AR-X', country_code: 'AR', text: 'Cordoba' },
106
+ { value: 'AR-W', country_code: 'AR', text: 'Corrientes' },
107
+ { value: 'AR-E', country_code: 'AR', text: 'Entre Rios' },
108
+ { value: 'AR-P', country_code: 'AR', text: 'Formosa' },
109
+ { value: 'AR-Y', country_code: 'AR', text: 'Jujuy' },
110
+ { value: 'AR-L', country_code: 'AR', text: 'La Pampa' },
111
+ { value: 'AR-F', country_code: 'AR', text: 'La Rioja' },
112
+ { value: 'AR-M', country_code: 'AR', text: 'Mendoza' },
113
+ { value: 'AR-N', country_code: 'AR', text: 'Misiones' },
114
+ { value: 'AR-Q', country_code: 'AR', text: 'Neuquen' },
115
+ { value: 'AR-R', country_code: 'AR', text: 'Rio Negro' },
116
+ { value: 'AR-A', country_code: 'AR', text: 'Salta' },
117
+ { value: 'AR-J', country_code: 'AR', text: 'San Juan' },
118
+ { value: 'AR-D', country_code: 'AR', text: 'San Luis' },
119
+ { value: 'AR-Z', country_code: 'AR', text: 'Santa Cruz' },
120
+ { value: 'AR-S', country_code: 'AR', text: 'Santa Fe' },
121
+ { value: 'AR-G', country_code: 'AR', text: 'Santiago del Estero' },
122
+ { value: 'AR-V', country_code: 'AR', text: 'Tierra del Fuego' },
123
+ { value: 'AR-T', country_code: 'AR', text: 'Tucuman' },
124
+ { value: 'AT-1', country_code: 'AT', text: 'Burgenland' },
125
+ { value: 'AT-2', country_code: 'AT', text: 'Karnten' },
126
+ { value: 'AT-3', country_code: 'AT', text: 'Niederosterreich' },
127
+ { value: 'AT-4', country_code: 'AT', text: 'Oberosterreich' },
128
+ { value: 'AT-5', country_code: 'AT', text: 'Salzburg' },
129
+ { value: 'AT-6', country_code: 'AT', text: 'Steiermark' },
130
+ { value: 'AT-7', country_code: 'AT', text: 'Tirol' },
131
+ { value: 'AT-8', country_code: 'AT', text: 'Vorarlberg' },
132
+ { value: 'AT-9', country_code: 'AT', text: 'Wien' },
133
+ { value: 'AU-ACT', country_code: 'AU', text: 'Australian Capital Territory' },
134
+ { value: 'AU-NSW', country_code: 'AU', text: 'New South Wales' },
135
+ { value: 'AU-NT', country_code: 'AU', text: 'Northern Territory' },
136
+ { value: 'AU-QLD', country_code: 'AU', text: 'Queensland' },
137
+ { value: 'AU-SA', country_code: 'AU', text: 'South Australia' },
138
+ { value: 'AU-TAS', country_code: 'AU', text: 'Tasmania' },
139
+ { value: 'AU-VIC', country_code: 'AU', text: 'Victoria' },
140
+ { value: 'AU-WA', country_code: 'AU', text: 'Western Australia' },
141
+ { value: 'AZ-ABS', country_code: 'AZ', text: 'Abseron' },
142
+ { value: 'AZ-AGC', country_code: 'AZ', text: 'Agcabadi' },
143
+ { value: 'AZ-AGM', country_code: 'AZ', text: 'Agdam' },
144
+ { value: 'AZ-AGS', country_code: 'AZ', text: 'Agdas' },
145
+ { value: 'AZ-AGA', country_code: 'AZ', text: 'Agstafa' },
146
+ { value: 'AZ-AGU', country_code: 'AZ', text: 'Agsu' },
147
+ { value: 'AZ-AST', country_code: 'AZ', text: 'Astara' },
148
+ { value: 'AZ-BA', country_code: 'AZ', text: 'Baki' },
149
+ { value: 'AZ-BAL', country_code: 'AZ', text: 'Balakan' },
150
+ { value: 'AZ-BAR', country_code: 'AZ', text: 'Barda' },
151
+ { value: 'AZ-BEY', country_code: 'AZ', text: 'Beylaqan' },
152
+ { value: 'AZ-BIL', country_code: 'AZ', text: 'Bilasuvar' },
153
+ { value: 'AZ-CAB', country_code: 'AZ', text: 'Cabrayil' },
154
+ { value: 'AZ-CAL', country_code: 'AZ', text: 'Calilabad' },
155
+ { value: 'AZ-DAS', country_code: 'AZ', text: 'Daskasan' },
156
+ { value: 'AZ-FUZ', country_code: 'AZ', text: 'Fuzuli' },
157
+ { value: 'AZ-GAD', country_code: 'AZ', text: 'Gadabay' },
158
+ { value: 'AZ-GA', country_code: 'AZ', text: 'Ganca' },
159
+ { value: 'AZ-GOR', country_code: 'AZ', text: 'Goranboy' },
160
+ { value: 'AZ-GOY', country_code: 'AZ', text: 'Goycay' },
161
+ { value: 'AZ-GYG', country_code: 'AZ', text: 'Goygol' },
162
+ { value: 'AZ-HAC', country_code: 'AZ', text: 'Haciqabul' },
163
+ { value: 'AZ-IMI', country_code: 'AZ', text: 'Imisli' },
164
+ { value: 'AZ-ISM', country_code: 'AZ', text: 'Ismayilli' },
165
+ { value: 'AZ-KAL', country_code: 'AZ', text: 'Kalbacar' },
166
+ { value: 'AZ-LAC', country_code: 'AZ', text: 'Lacin' },
167
+ { value: 'AZ-LA', country_code: 'AZ', text: 'Lankaran' },
168
+ { value: 'AZ-LER', country_code: 'AZ', text: 'Lerik' },
169
+ { value: 'AZ-MAS', country_code: 'AZ', text: 'Masalli' },
170
+ { value: 'AZ-MI', country_code: 'AZ', text: 'Mingacevir' },
171
+ { value: 'AZ-NA', country_code: 'AZ', text: 'Naftalan' },
172
+ { value: 'AZ-NX', country_code: 'AZ', text: 'Naxcivan' },
173
+ { value: 'AZ-NEF', country_code: 'AZ', text: 'Neftcala' },
174
+ { value: 'AZ-OGU', country_code: 'AZ', text: 'Oguz' },
175
+ { value: 'AZ-QAB', country_code: 'AZ', text: 'Qabala' },
176
+ { value: 'AZ-QAX', country_code: 'AZ', text: 'Qax' },
177
+ { value: 'AZ-QAZ', country_code: 'AZ', text: 'Qazax' },
178
+ { value: 'AZ-QOB', country_code: 'AZ', text: 'Qobustan' },
179
+ { value: 'AZ-QBA', country_code: 'AZ', text: 'Quba' },
180
+ { value: 'AZ-QBI', country_code: 'AZ', text: 'Qubadli' },
181
+ { value: 'AZ-QUS', country_code: 'AZ', text: 'Qusar' },
182
+ { value: 'AZ-SAT', country_code: 'AZ', text: 'Saatli' },
183
+ { value: 'AZ-SAB', country_code: 'AZ', text: 'Sabirabad' },
184
+ { value: 'AZ-SA', country_code: 'AZ', text: 'Saki' },
185
+ { value: 'AZ-SAL', country_code: 'AZ', text: 'Salyan' },
186
+ { value: 'AZ-SMI', country_code: 'AZ', text: 'Samaxi' },
187
+ { value: 'AZ-SKR', country_code: 'AZ', text: 'Samkir' },
188
+ { value: 'AZ-SMX', country_code: 'AZ', text: 'Samux' },
189
+ { value: 'AZ-SR', country_code: 'AZ', text: 'Sirvan' },
190
+ { value: 'AZ-SM', country_code: 'AZ', text: 'Sumqayit' },
191
+ { value: 'AZ-SUS', country_code: 'AZ', text: 'Susa' },
192
+ { value: 'AZ-TAR', country_code: 'AZ', text: 'Tartar' },
193
+ { value: 'AZ-TOV', country_code: 'AZ', text: 'Tovuz' },
194
+ { value: 'AZ-UCA', country_code: 'AZ', text: 'Ucar' },
195
+ { value: 'AZ-XAC', country_code: 'AZ', text: 'Xacmaz' },
196
+ { value: 'AZ-XA', country_code: 'AZ', text: 'Xankandi' },
197
+ { value: 'AZ-XIZ', country_code: 'AZ', text: 'Xizi' },
198
+ { value: 'AZ-XCI', country_code: 'AZ', text: 'Xocali' },
199
+ { value: 'AZ-XVD', country_code: 'AZ', text: 'Xocavand' },
200
+ { value: 'AZ-YAR', country_code: 'AZ', text: 'Yardimli' },
201
+ { value: 'AZ-YE', country_code: 'AZ', text: 'Yevlax' },
202
+ { value: 'AZ-ZAN', country_code: 'AZ', text: 'Zangilan' },
203
+ { value: 'AZ-ZAQ', country_code: 'AZ', text: 'Zaqatala' },
204
+ { value: 'AZ-ZAR', country_code: 'AZ', text: 'Zardab' },
205
+ { value: 'BA-BIH', country_code: 'BA', text: 'Federacija Bosne i Hercegovine' },
206
+ { value: 'BA-SRP', country_code: 'BA', text: 'Republika Srpska' },
207
+ { value: 'BB-01', country_code: 'BB', text: 'Christ Church' },
208
+ { value: 'BB-04', country_code: 'BB', text: 'Saint James' },
209
+ { value: 'BB-06', country_code: 'BB', text: 'Saint Joseph' },
210
+ { value: 'BB-08', country_code: 'BB', text: 'Saint Michael' },
211
+ { value: 'BB-09', country_code: 'BB', text: 'Saint Peter' },
212
+ { value: 'BD-06', country_code: 'BD', text: 'Barisal' },
213
+ { value: 'BD-10', country_code: 'BD', text: 'Chittagong' },
214
+ { value: 'BD-13', country_code: 'BD', text: 'Dhaka' },
215
+ { value: 'BD-27', country_code: 'BD', text: 'Khulna' },
216
+ { value: 'BD-54', country_code: 'BD', text: 'Rajshahi' },
217
+ { value: 'BD-55', country_code: 'BD', text: 'Rangpur' },
218
+ { value: 'BD-60', country_code: 'BD', text: 'Sylhet' },
219
+ { value: 'BE-VAN', country_code: 'BE', text: 'Antwerpen' },
220
+ { value: 'BE-WBR', country_code: 'BE', text: 'Brabant wallon' },
221
+ { value: 'BE-BRU', country_code: 'BE', text: 'Brussels Hoofdstedelijk Gewest' },
222
+ { value: 'BE-WHT', country_code: 'BE', text: 'Hainaut' },
223
+ { value: 'BE-WLG', country_code: 'BE', text: 'Liege' },
224
+ { value: 'BE-VLI', country_code: 'BE', text: 'Limburg' },
225
+ { value: 'BE-WLX', country_code: 'BE', text: 'Luxembourg' },
226
+ { value: 'BE-WNA', country_code: 'BE', text: 'Namur' },
227
+ { value: 'BE-VOV', country_code: 'BE', text: 'Oost-Vlaanderen' },
228
+ { value: 'BE-VBR', country_code: 'BE', text: 'Vlaams-Brabant' },
229
+ { value: 'BE-VWV', country_code: 'BE', text: 'West-Vlaanderen' },
230
+ { value: 'BF-BAL', country_code: 'BF', text: 'Bale' },
231
+ { value: 'BF-BAM', country_code: 'BF', text: 'Bam' },
232
+ { value: 'BF-BAN', country_code: 'BF', text: 'Banwa' },
233
+ { value: 'BF-BAZ', country_code: 'BF', text: 'Bazega' },
234
+ { value: 'BF-BGR', country_code: 'BF', text: 'Bougouriba' },
235
+ { value: 'BF-BLG', country_code: 'BF', text: 'Boulgou' },
236
+ { value: 'BF-BLK', country_code: 'BF', text: 'Boulkiemde' },
237
+ { value: 'BF-COM', country_code: 'BF', text: 'Comoe' },
238
+ { value: 'BF-GAN', country_code: 'BF', text: 'Ganzourgou' },
239
+ { value: 'BF-GNA', country_code: 'BF', text: 'Gnagna' },
240
+ { value: 'BF-GOU', country_code: 'BF', text: 'Gourma' },
241
+ { value: 'BF-HOU', country_code: 'BF', text: 'Houet' },
242
+ { value: 'BF-IOB', country_code: 'BF', text: 'Ioba' },
243
+ { value: 'BF-KAD', country_code: 'BF', text: 'Kadiogo' },
244
+ { value: 'BF-KEN', country_code: 'BF', text: 'Kenedougou' },
245
+ { value: 'BF-KMD', country_code: 'BF', text: 'Komondjari' },
246
+ { value: 'BF-KMP', country_code: 'BF', text: 'Kompienga' },
247
+ { value: 'BF-KOS', country_code: 'BF', text: 'Kossi' },
248
+ { value: 'BF-KOP', country_code: 'BF', text: 'Koulpelogo' },
249
+ { value: 'BF-KOT', country_code: 'BF', text: 'Kouritenga' },
250
+ { value: 'BF-KOW', country_code: 'BF', text: 'Kourweogo' },
251
+ { value: 'BF-LER', country_code: 'BF', text: 'Leraba' },
252
+ { value: 'BF-LOR', country_code: 'BF', text: 'Loroum' },
253
+ { value: 'BF-MOU', country_code: 'BF', text: 'Mouhoun' },
254
+ { value: 'BF-NAO', country_code: 'BF', text: 'Nahouri' },
255
+ { value: 'BF-NAM', country_code: 'BF', text: 'Namentenga' },
256
+ { value: 'BF-NAY', country_code: 'BF', text: 'Nayala' },
257
+ { value: 'BF-NOU', country_code: 'BF', text: 'Noumbiel' },
258
+ { value: 'BF-OUB', country_code: 'BF', text: 'Oubritenga' },
259
+ { value: 'BF-OUD', country_code: 'BF', text: 'Oudalan' },
260
+ { value: 'BF-PAS', country_code: 'BF', text: 'Passore' },
261
+ { value: 'BF-PON', country_code: 'BF', text: 'Poni' },
262
+ { value: 'BF-SNG', country_code: 'BF', text: 'Sanguie' },
263
+ { value: 'BF-SMT', country_code: 'BF', text: 'Sanmatenga' },
264
+ { value: 'BF-SEN', country_code: 'BF', text: 'Seno' },
265
+ { value: 'BF-SIS', country_code: 'BF', text: 'Sissili' },
266
+ { value: 'BF-SOM', country_code: 'BF', text: 'Soum' },
267
+ { value: 'BF-SOR', country_code: 'BF', text: 'Sourou' },
268
+ { value: 'BF-TAP', country_code: 'BF', text: 'Tapoa' },
269
+ { value: 'BF-TUI', country_code: 'BF', text: 'Tuy' },
270
+ { value: 'BF-YAG', country_code: 'BF', text: 'Yagha' },
271
+ { value: 'BF-YAT', country_code: 'BF', text: 'Yatenga' },
272
+ { value: 'BF-ZIR', country_code: 'BF', text: 'Ziro' },
273
+ { value: 'BF-ZON', country_code: 'BF', text: 'Zondoma' },
274
+ { value: 'BF-ZOU', country_code: 'BF', text: 'Zoundweogo' },
275
+ { value: 'BG-01', country_code: 'BG', text: 'Blagoevgrad' },
276
+ { value: 'BG-02', country_code: 'BG', text: 'Burgas' },
277
+ { value: 'BG-08', country_code: 'BG', text: 'Dobrich' },
278
+ { value: 'BG-07', country_code: 'BG', text: 'Gabrovo' },
279
+ { value: 'BG-26', country_code: 'BG', text: 'Haskovo' },
280
+ { value: 'BG-09', country_code: 'BG', text: 'Kardzhali' },
281
+ { value: 'BG-10', country_code: 'BG', text: 'Kyustendil' },
282
+ { value: 'BG-11', country_code: 'BG', text: 'Lovech' },
283
+ { value: 'BG-12', country_code: 'BG', text: 'Montana' },
284
+ { value: 'BG-13', country_code: 'BG', text: 'Pazardzhik' },
285
+ { value: 'BG-14', country_code: 'BG', text: 'Pernik' },
286
+ { value: 'BG-15', country_code: 'BG', text: 'Pleven' },
287
+ { value: 'BG-16', country_code: 'BG', text: 'Plovdiv' },
288
+ { value: 'BG-17', country_code: 'BG', text: 'Razgrad' },
289
+ { value: 'BG-18', country_code: 'BG', text: 'Ruse' },
290
+ { value: 'BG-27', country_code: 'BG', text: 'Shumen' },
291
+ { value: 'BG-19', country_code: 'BG', text: 'Silistra' },
292
+ { value: 'BG-20', country_code: 'BG', text: 'Sliven' },
293
+ { value: 'BG-21', country_code: 'BG', text: 'Smolyan' },
294
+ { value: 'BG-23', country_code: 'BG', text: 'Sofia' },
295
+ { value: 'BG-22', country_code: 'BG', text: 'Sofia (stolitsa)' },
296
+ { value: 'BG-24', country_code: 'BG', text: 'Stara Zagora' },
297
+ { value: 'BG-25', country_code: 'BG', text: 'Targovishte' },
298
+ { value: 'BG-03', country_code: 'BG', text: 'Varna' },
299
+ { value: 'BG-04', country_code: 'BG', text: 'Veliko Tarnovo' },
300
+ { value: 'BG-05', country_code: 'BG', text: 'Vidin' },
301
+ { value: 'BG-06', country_code: 'BG', text: 'Vratsa' },
302
+ { value: 'BG-28', country_code: 'BG', text: 'Yambol' },
303
+ { value: 'BH-13', country_code: 'BH', text: "Al 'Asimah" },
304
+ { value: 'BH-15', country_code: 'BH', text: 'Al Muharraq' },
305
+ { value: 'BH-17', country_code: 'BH', text: 'Ash Shamaliyah' },
306
+ { value: 'BI-BB', country_code: 'BI', text: 'Bubanza' },
307
+ { value: 'BI-BM', country_code: 'BI', text: 'Bujumbura Mairie' },
308
+ { value: 'BI-BR', country_code: 'BI', text: 'Bururi' },
309
+ { value: 'BI-CA', country_code: 'BI', text: 'Cankuzo' },
310
+ { value: 'BI-CI', country_code: 'BI', text: 'Cibitoke' },
311
+ { value: 'BI-GI', country_code: 'BI', text: 'Gitega' },
312
+ { value: 'BI-KR', country_code: 'BI', text: 'Karuzi' },
313
+ { value: 'BI-KY', country_code: 'BI', text: 'Kayanza' },
314
+ { value: 'BI-KI', country_code: 'BI', text: 'Kirundo' },
315
+ { value: 'BI-MA', country_code: 'BI', text: 'Makamba' },
316
+ { value: 'BI-MU', country_code: 'BI', text: 'Muramvya' },
317
+ { value: 'BI-MY', country_code: 'BI', text: 'Muyinga' },
318
+ { value: 'BI-MW', country_code: 'BI', text: 'Mwaro' },
319
+ { value: 'BI-NG', country_code: 'BI', text: 'Ngozi' },
320
+ { value: 'BI-RT', country_code: 'BI', text: 'Rutana' },
321
+ { value: 'BI-RY', country_code: 'BI', text: 'Ruyigi' },
322
+ { value: 'BJ-AL', country_code: 'BJ', text: 'Alibori' },
323
+ { value: 'BJ-AK', country_code: 'BJ', text: 'Atacora' },
324
+ { value: 'BJ-AQ', country_code: 'BJ', text: 'Atlantique' },
325
+ { value: 'BJ-BO', country_code: 'BJ', text: 'Borgou' },
326
+ { value: 'BJ-CO', country_code: 'BJ', text: 'Collines' },
327
+ { value: 'BJ-KO', country_code: 'BJ', text: 'Couffo' },
328
+ { value: 'BJ-DO', country_code: 'BJ', text: 'Donga' },
329
+ { value: 'BJ-LI', country_code: 'BJ', text: 'Littoral' },
330
+ { value: 'BJ-MO', country_code: 'BJ', text: 'Mono' },
331
+ { value: 'BJ-OU', country_code: 'BJ', text: 'Oueme' },
332
+ { value: 'BJ-PL', country_code: 'BJ', text: 'Plateau' },
333
+ { value: 'BJ-ZO', country_code: 'BJ', text: 'Zou' },
334
+ { value: 'BN-BE', country_code: 'BN', text: 'Belait' },
335
+ { value: 'BN-BM', country_code: 'BN', text: 'Brunei-Muara' },
336
+ { value: 'BN-TE', country_code: 'BN', text: 'Temburong' },
337
+ { value: 'BN-TU', country_code: 'BN', text: 'Tutong' },
338
+ { value: 'BO-H', country_code: 'BO', text: 'Chuquisaca' },
339
+ { value: 'BO-C', country_code: 'BO', text: 'Cochabamba' },
340
+ { value: 'BO-B', country_code: 'BO', text: 'El Beni' },
341
+ { value: 'BO-L', country_code: 'BO', text: 'La Paz' },
342
+ { value: 'BO-O', country_code: 'BO', text: 'Oruro' },
343
+ { value: 'BO-N', country_code: 'BO', text: 'Pando' },
344
+ { value: 'BO-P', country_code: 'BO', text: 'Potosi' },
345
+ { value: 'BO-S', country_code: 'BO', text: 'Santa Cruz' },
346
+ { value: 'BO-T', country_code: 'BO', text: 'Tarija' },
347
+ { value: 'BQ-BO', country_code: 'BQ', text: 'Bonaire' },
348
+ { value: 'BQ-SA', country_code: 'BQ', text: 'Saba' },
349
+ { value: 'BQ-SE', country_code: 'BQ', text: 'Sint Eustatius' },
350
+ { value: 'BR-AC', country_code: 'BR', text: 'Acre' },
351
+ { value: 'BR-AL', country_code: 'BR', text: 'Alagoas' },
352
+ { value: 'BR-AP', country_code: 'BR', text: 'Amapa' },
353
+ { value: 'BR-AM', country_code: 'BR', text: 'Amazonas' },
354
+ { value: 'BR-BA', country_code: 'BR', text: 'Bahia' },
355
+ { value: 'BR-CE', country_code: 'BR', text: 'Ceara' },
356
+ { value: 'BR-DF', country_code: 'BR', text: 'Distrito Federal' },
357
+ { value: 'BR-ES', country_code: 'BR', text: 'Espirito Santo' },
358
+ { value: 'BR-GO', country_code: 'BR', text: 'Goias' },
359
+ { value: 'BR-MA', country_code: 'BR', text: 'Maranhao' },
360
+ { value: 'BR-MT', country_code: 'BR', text: 'Mato Grosso' },
361
+ { value: 'BR-MS', country_code: 'BR', text: 'Mato Grosso do Sul' },
362
+ { value: 'BR-MG', country_code: 'BR', text: 'Minas Gerais' },
363
+ { value: 'BR-PA', country_code: 'BR', text: 'Para' },
364
+ { value: 'BR-PB', country_code: 'BR', text: 'Paraiba' },
365
+ { value: 'BR-PR', country_code: 'BR', text: 'Parana' },
366
+ { value: 'BR-PE', country_code: 'BR', text: 'Pernambuco' },
367
+ { value: 'BR-PI', country_code: 'BR', text: 'Piaui' },
368
+ { value: 'BR-RJ', country_code: 'BR', text: 'Rio de Janeiro' },
369
+ { value: 'BR-RN', country_code: 'BR', text: 'Rio Grande do Norte' },
370
+ { value: 'BR-RS', country_code: 'BR', text: 'Rio Grande do Sul' },
371
+ { value: 'BR-RO', country_code: 'BR', text: 'Rondonia' },
372
+ { value: 'BR-RR', country_code: 'BR', text: 'Roraima' },
373
+ { value: 'BR-SC', country_code: 'BR', text: 'Santa Catarina' },
374
+ { value: 'BR-SP', country_code: 'BR', text: 'Sao Paulo' },
375
+ { value: 'BR-SE', country_code: 'BR', text: 'Sergipe' },
376
+ { value: 'BR-TO', country_code: 'BR', text: 'Tocantins' },
377
+ { value: 'BS-CS', country_code: 'BS', text: 'Central Andros' },
378
+ { value: 'BS-FP', country_code: 'BS', text: 'City of Freeport' },
379
+ { value: 'BS-EG', country_code: 'BS', text: 'East Grand Bahama' },
380
+ { value: 'BS-HI', country_code: 'BS', text: 'Harbour Island' },
381
+ { value: 'BS-HT', country_code: 'BS', text: 'Hope Town' },
382
+ { value: 'BS-LI', country_code: 'BS', text: 'Long Island' },
383
+ { value: 'BS-SE', country_code: 'BS', text: 'South Eleuthera' },
384
+ { value: 'BT-12', country_code: 'BT', text: 'Chhukha' },
385
+ { value: 'BT-22', country_code: 'BT', text: 'Dagana' },
386
+ { value: 'BT-GA', country_code: 'BT', text: 'Gasa' },
387
+ { value: 'BT-13', country_code: 'BT', text: 'Haa' },
388
+ { value: 'BT-42', country_code: 'BT', text: 'Monggar' },
389
+ { value: 'BT-11', country_code: 'BT', text: 'Paro' },
390
+ { value: 'BT-23', country_code: 'BT', text: 'Punakha' },
391
+ { value: 'BT-15', country_code: 'BT', text: 'Thimphu' },
392
+ { value: 'BT-TY', country_code: 'BT', text: 'Trashi Yangtse' },
393
+ { value: 'BT-32', country_code: 'BT', text: 'Trongsa' },
394
+ { value: 'BT-34', country_code: 'BT', text: 'Zhemgang' },
395
+ { value: 'BW-CE', country_code: 'BW', text: 'Central' },
396
+ { value: 'BW-GH', country_code: 'BW', text: 'Ghanzi' },
397
+ { value: 'BW-KG', country_code: 'BW', text: 'Kgalagadi' },
398
+ { value: 'BW-KL', country_code: 'BW', text: 'Kgatleng' },
399
+ { value: 'BW-KW', country_code: 'BW', text: 'Kweneng' },
400
+ { value: 'BW-NE', country_code: 'BW', text: 'North East' },
401
+ { value: 'BW-NW', country_code: 'BW', text: 'North West' },
402
+ { value: 'BW-SE', country_code: 'BW', text: 'South East' },
403
+ { value: 'BW-SO', country_code: 'BW', text: 'Southern' },
404
+ { value: 'BY-BR', country_code: 'BY', text: "Brestskaya voblasts'" },
405
+ { value: 'BY-HO', country_code: 'BY', text: "Homyel'skaya voblasts'" },
406
+ { value: 'BY-HR', country_code: 'BY', text: "Hrodzenskaya voblasts'" },
407
+ { value: 'BY-MA', country_code: 'BY', text: "Mahilyowskaya voblasts'" },
408
+ { value: 'BY-MI', country_code: 'BY', text: "Minskaya voblasts'" },
409
+ { value: 'BY-VI', country_code: 'BY', text: "Vitsyebskaya voblasts'" },
410
+ { value: 'BZ-BZ', country_code: 'BZ', text: 'Belize' },
411
+ { value: 'BZ-CY', country_code: 'BZ', text: 'Cayo' },
412
+ { value: 'BZ-CZL', country_code: 'BZ', text: 'Corozal' },
413
+ { value: 'BZ-OW', country_code: 'BZ', text: 'Orange Walk' },
414
+ { value: 'BZ-SC', country_code: 'BZ', text: 'Stann Creek' },
415
+ { value: 'BZ-TOL', country_code: 'BZ', text: 'Toledo' },
416
+ { value: 'CA-AB', country_code: 'CA', text: 'Alberta' },
417
+ { value: 'CA-BC', country_code: 'CA', text: 'British Columbia' },
418
+ { value: 'CA-MB', country_code: 'CA', text: 'Manitoba' },
419
+ { value: 'CA-NB', country_code: 'CA', text: 'New Brunswick' },
420
+ { value: 'CA-NL', country_code: 'CA', text: 'Newfoundland and Labrador' },
421
+ { value: 'CA-NT', country_code: 'CA', text: 'Northwest Territories' },
422
+ { value: 'CA-NS', country_code: 'CA', text: 'Nova Scotia' },
423
+ { value: 'CA-NU', country_code: 'CA', text: 'Nunavut' },
424
+ { value: 'CA-ON', country_code: 'CA', text: 'Ontario' },
425
+ { value: 'CA-PE', country_code: 'CA', text: 'Prince Edward Island' },
426
+ { value: 'CA-QC', country_code: 'CA', text: 'Quebec' },
427
+ { value: 'CA-SK', country_code: 'CA', text: 'Saskatchewan' },
428
+ { value: 'CA-YT', country_code: 'CA', text: 'Yukon' },
429
+ { value: 'CD-BU', country_code: 'CD', text: 'Bas-Uele' },
430
+ { value: 'CD-EQ', country_code: 'CD', text: 'Equateur' },
431
+ { value: 'CD-HK', country_code: 'CD', text: 'Haut-Katanga' },
432
+ { value: 'CD-HL', country_code: 'CD', text: 'Haut-Lomani' },
433
+ { value: 'CD-HU', country_code: 'CD', text: 'Haut-Uele' },
434
+ { value: 'CD-IT', country_code: 'CD', text: 'Ituri' },
435
+ { value: 'CD-KS', country_code: 'CD', text: 'Kasai' },
436
+ { value: 'CD-KC', country_code: 'CD', text: 'Kasai Central' },
437
+ { value: 'CD-KE', country_code: 'CD', text: 'Kasai Oriental' },
438
+ { value: 'CD-KN', country_code: 'CD', text: 'Kinshasa' },
439
+ { value: 'CD-BC', country_code: 'CD', text: 'Kongo Central' },
440
+ { value: 'CD-KG', country_code: 'CD', text: 'Kwango' },
441
+ { value: 'CD-KL', country_code: 'CD', text: 'Kwilu' },
442
+ { value: 'CD-LO', country_code: 'CD', text: 'Lomami' },
443
+ { value: 'CD-LU', country_code: 'CD', text: 'Lualaba' },
444
+ { value: 'CD-MN', country_code: 'CD', text: 'Mai-Ndombe' },
445
+ { value: 'CD-MA', country_code: 'CD', text: 'Maniema' },
446
+ { value: 'CD-MO', country_code: 'CD', text: 'Mongala' },
447
+ { value: 'CD-NK', country_code: 'CD', text: 'Nord-Kivu' },
448
+ { value: 'CD-NU', country_code: 'CD', text: 'Nord-Ubangi' },
449
+ { value: 'CD-SA', country_code: 'CD', text: 'Sankuru' },
450
+ { value: 'CD-SK', country_code: 'CD', text: 'Sud-Kivu' },
451
+ { value: 'CD-SU', country_code: 'CD', text: 'Sud-Ubangi' },
452
+ { value: 'CD-TA', country_code: 'CD', text: 'Tanganyika' },
453
+ { value: 'CD-TO', country_code: 'CD', text: 'Tshopo' },
454
+ { value: 'CD-TU', country_code: 'CD', text: 'Tshuapa' },
455
+ { value: 'CF-BB', country_code: 'CF', text: 'Bamingui-Bangoran' },
456
+ { value: 'CF-BGF', country_code: 'CF', text: 'Bangui' },
457
+ { value: 'CF-BK', country_code: 'CF', text: 'Basse-Kotto' },
458
+ { value: 'CF-KB', country_code: 'CF', text: 'Gribingui' },
459
+ { value: 'CF-HM', country_code: 'CF', text: 'Haut-Mbomou' },
460
+ { value: 'CF-HK', country_code: 'CF', text: 'Haute-Kotto' },
461
+ { value: 'CF-KG', country_code: 'CF', text: 'Kemo-Gribingui' },
462
+ { value: 'CF-LB', country_code: 'CF', text: 'Lobaye' },
463
+ { value: 'CF-HS', country_code: 'CF', text: 'Mambere-Kadei' },
464
+ { value: 'CF-MB', country_code: 'CF', text: 'Mbomou' },
465
+ { value: 'CF-NM', country_code: 'CF', text: 'Nana-Mambere' },
466
+ { value: 'CF-MP', country_code: 'CF', text: 'Ombella-Mpoko' },
467
+ { value: 'CF-UK', country_code: 'CF', text: 'Ouaka' },
468
+ { value: 'CF-AC', country_code: 'CF', text: 'Ouham' },
469
+ { value: 'CF-OP', country_code: 'CF', text: 'Ouham-Pende' },
470
+ { value: 'CF-SE', country_code: 'CF', text: 'Sangha' },
471
+ { value: 'CG-11', country_code: 'CG', text: 'Bouenza' },
472
+ { value: 'CG-BZV', country_code: 'CG', text: 'Brazzaville' },
473
+ { value: 'CG-8', country_code: 'CG', text: 'Cuvette' },
474
+ { value: 'CG-15', country_code: 'CG', text: 'Cuvette-Ouest' },
475
+ { value: 'CG-2', country_code: 'CG', text: 'Lekoumou' },
476
+ { value: 'CG-7', country_code: 'CG', text: 'Likouala' },
477
+ { value: 'CG-9', country_code: 'CG', text: 'Niari' },
478
+ { value: 'CG-14', country_code: 'CG', text: 'Plateaux' },
479
+ { value: 'CG-16', country_code: 'CG', text: 'Pointe-Noire' },
480
+ { value: 'CG-12', country_code: 'CG', text: 'Pool' },
481
+ { value: 'CG-13', country_code: 'CG', text: 'Sangha' },
482
+ { value: 'CH-AG', country_code: 'CH', text: 'Aargau' },
483
+ { value: 'CH-AR', country_code: 'CH', text: 'Appenzell Ausserrhoden' },
484
+ { value: 'CH-AI', country_code: 'CH', text: 'Appenzell Innerrhoden' },
485
+ { value: 'CH-BL', country_code: 'CH', text: 'Basel-Landschaft' },
486
+ { value: 'CH-BS', country_code: 'CH', text: 'Basel-Stadt' },
487
+ { value: 'CH-BE', country_code: 'CH', text: 'Bern' },
488
+ { value: 'CH-FR', country_code: 'CH', text: 'Fribourg' },
489
+ { value: 'CH-GE', country_code: 'CH', text: 'Geneve' },
490
+ { value: 'CH-GL', country_code: 'CH', text: 'Glarus' },
491
+ { value: 'CH-GR', country_code: 'CH', text: 'Graubunden' },
492
+ { value: 'CH-JU', country_code: 'CH', text: 'Jura' },
493
+ { value: 'CH-LU', country_code: 'CH', text: 'Luzern' },
494
+ { value: 'CH-NE', country_code: 'CH', text: 'Neuchatel' },
495
+ { value: 'CH-NW', country_code: 'CH', text: 'Nidwalden' },
496
+ { value: 'CH-OW', country_code: 'CH', text: 'Obwalden' },
497
+ { value: 'CH-SG', country_code: 'CH', text: 'Sankt Gallen' },
498
+ { value: 'CH-SH', country_code: 'CH', text: 'Schaffhausen' },
499
+ { value: 'CH-SZ', country_code: 'CH', text: 'Schwyz' },
500
+ { value: 'CH-SO', country_code: 'CH', text: 'Solothurn' },
501
+ { value: 'CH-TG', country_code: 'CH', text: 'Thurgau' },
502
+ { value: 'CH-TI', country_code: 'CH', text: 'Ticino' },
503
+ { value: 'CH-UR', country_code: 'CH', text: 'Uri' },
504
+ { value: 'CH-VS', country_code: 'CH', text: 'Valais' },
505
+ { value: 'CH-VD', country_code: 'CH', text: 'Vaud' },
506
+ { value: 'CH-ZG', country_code: 'CH', text: 'Zug' },
507
+ { value: 'CH-ZH', country_code: 'CH', text: 'Zurich' },
508
+ { value: 'CI-AB', country_code: 'CI', text: 'Abidjan' },
509
+ { value: 'CI-BS', country_code: 'CI', text: 'Bas-Sassandra' },
510
+ { value: 'CI-CM', country_code: 'CI', text: 'Comoe' },
511
+ { value: 'CI-DN', country_code: 'CI', text: 'Denguele' },
512
+ { value: 'CI-GD', country_code: 'CI', text: 'Goh-Djiboua' },
513
+ { value: 'CI-LC', country_code: 'CI', text: 'Lacs' },
514
+ { value: 'CI-LG', country_code: 'CI', text: 'Lagunes' },
515
+ { value: 'CI-MG', country_code: 'CI', text: 'Montagnes' },
516
+ { value: 'CI-SM', country_code: 'CI', text: 'Sassandra-Marahoue' },
517
+ { value: 'CI-SV', country_code: 'CI', text: 'Savanes' },
518
+ { value: 'CI-VB', country_code: 'CI', text: 'Vallee du Bandama' },
519
+ { value: 'CI-WR', country_code: 'CI', text: 'Woroba' },
520
+ { value: 'CI-ZZ', country_code: 'CI', text: 'Zanzan' },
521
+ { value: 'CL-AI', country_code: 'CL', text: 'Aisen del General Carlos Ibanez del Campo' },
522
+ { value: 'CL-AN', country_code: 'CL', text: 'Antofagasta' },
523
+ { value: 'CL-AP', country_code: 'CL', text: 'Arica y Parinacota' },
524
+ { value: 'CL-AT', country_code: 'CL', text: 'Atacama' },
525
+ { value: 'CL-BI', country_code: 'CL', text: 'Biobio' },
526
+ { value: 'CL-CO', country_code: 'CL', text: 'Coquimbo' },
527
+ { value: 'CL-AR', country_code: 'CL', text: 'La Araucania' },
528
+ { value: 'CL-LI', country_code: 'CL', text: "Libertador General Bernardo O'Higgins" },
529
+ { value: 'CL-LL', country_code: 'CL', text: 'Los Lagos' },
530
+ { value: 'CL-LR', country_code: 'CL', text: 'Los Rios' },
531
+ { value: 'CL-MA', country_code: 'CL', text: 'Magallanes' },
532
+ { value: 'CL-ML', country_code: 'CL', text: 'Maule' },
533
+ { value: 'CL-RM', country_code: 'CL', text: 'Region Metropolitana de Santiago' },
534
+ { value: 'CL-TA', country_code: 'CL', text: 'Tarapaca' },
535
+ { value: 'CL-VS', country_code: 'CL', text: 'Valparaiso' },
536
+ { value: 'CM-AD', country_code: 'CM', text: 'Adamaoua' },
537
+ { value: 'CM-CE', country_code: 'CM', text: 'Centre' },
538
+ { value: 'CM-ES', country_code: 'CM', text: 'Est' },
539
+ { value: 'CM-EN', country_code: 'CM', text: 'Extreme-Nord' },
540
+ { value: 'CM-LT', country_code: 'CM', text: 'Littoral' },
541
+ { value: 'CM-NO', country_code: 'CM', text: 'Nord' },
542
+ { value: 'CM-NW', country_code: 'CM', text: 'Nord-Ouest' },
543
+ { value: 'CM-OU', country_code: 'CM', text: 'Ouest' },
544
+ { value: 'CM-SU', country_code: 'CM', text: 'Sud' },
545
+ { value: 'CM-SW', country_code: 'CM', text: 'Sud-Ouest' },
546
+ { value: 'CN-34', country_code: 'CN', text: 'Anhui' },
547
+ { value: 'CN-11', country_code: 'CN', text: 'Beijing' },
548
+ { value: 'CN-50', country_code: 'CN', text: 'Chongqing' },
549
+ { value: 'CN-35', country_code: 'CN', text: 'Fujian' },
550
+ { value: 'CN-62', country_code: 'CN', text: 'Gansu' },
551
+ { value: 'CN-44', country_code: 'CN', text: 'Guangdong' },
552
+ { value: 'CN-45', country_code: 'CN', text: 'Guangxi' },
553
+ { value: 'CN-52', country_code: 'CN', text: 'Guizhou' },
554
+ { value: 'CN-46', country_code: 'CN', text: 'Hainan' },
555
+ { value: 'CN-13', country_code: 'CN', text: 'Hebei' },
556
+ { value: 'CN-23', country_code: 'CN', text: 'Heilongjiang' },
557
+ { value: 'CN-41', country_code: 'CN', text: 'Henan' },
558
+ { value: 'CN-42', country_code: 'CN', text: 'Hubei' },
559
+ { value: 'CN-43', country_code: 'CN', text: 'Hunan' },
560
+ { value: 'CN-32', country_code: 'CN', text: 'Jiangsu' },
561
+ { value: 'CN-36', country_code: 'CN', text: 'Jiangxi' },
562
+ { value: 'CN-22', country_code: 'CN', text: 'Jilin' },
563
+ { value: 'CN-21', country_code: 'CN', text: 'Liaoning' },
564
+ { value: 'CN-15', country_code: 'CN', text: 'Nei Mongol' },
565
+ { value: 'CN-64', country_code: 'CN', text: 'Ningxia' },
566
+ { value: 'CN-63', country_code: 'CN', text: 'Qinghai' },
567
+ { value: 'CN-61', country_code: 'CN', text: 'Shaanxi' },
568
+ { value: 'CN-37', country_code: 'CN', text: 'Shandong' },
569
+ { value: 'CN-31', country_code: 'CN', text: 'Shanghai' },
570
+ { value: 'CN-14', country_code: 'CN', text: 'Shanxi' },
571
+ { value: 'CN-51', country_code: 'CN', text: 'Sichuan' },
572
+ { value: 'CN-12', country_code: 'CN', text: 'Tianjin' },
573
+ { value: 'CN-65', country_code: 'CN', text: 'Xinjiang' },
574
+ { value: 'CN-54', country_code: 'CN', text: 'Xizang' },
575
+ { value: 'CN-53', country_code: 'CN', text: 'Yunnan' },
576
+ { value: 'CN-33', country_code: 'CN', text: 'Zhejiang' },
577
+ { value: 'CO-AMA', country_code: 'CO', text: 'Amazonas' },
578
+ { value: 'CO-ANT', country_code: 'CO', text: 'Antioquia' },
579
+ { value: 'CO-ARA', country_code: 'CO', text: 'Arauca' },
580
+ { value: 'CO-ATL', country_code: 'CO', text: 'Atlantico' },
581
+ { value: 'CO-BOL', country_code: 'CO', text: 'Bolivar' },
582
+ { value: 'CO-BOY', country_code: 'CO', text: 'Boyaca' },
583
+ { value: 'CO-CAL', country_code: 'CO', text: 'Caldas' },
584
+ { value: 'CO-CAQ', country_code: 'CO', text: 'Caqueta' },
585
+ { value: 'CO-CAS', country_code: 'CO', text: 'Casanare' },
586
+ { value: 'CO-CAU', country_code: 'CO', text: 'Cauca' },
587
+ { value: 'CO-CES', country_code: 'CO', text: 'Cesar' },
588
+ { value: 'CO-CHO', country_code: 'CO', text: 'Choco' },
589
+ { value: 'CO-COR', country_code: 'CO', text: 'Cordoba' },
590
+ { value: 'CO-CUN', country_code: 'CO', text: 'Cundinamarca' },
591
+ { value: 'CO-DC', country_code: 'CO', text: 'Distrito Capital de Bogota' },
592
+ { value: 'CO-GUA', country_code: 'CO', text: 'Guainia' },
593
+ { value: 'CO-GUV', country_code: 'CO', text: 'Guaviare' },
594
+ { value: 'CO-HUI', country_code: 'CO', text: 'Huila' },
595
+ { value: 'CO-LAG', country_code: 'CO', text: 'La Guajira' },
596
+ { value: 'CO-MAG', country_code: 'CO', text: 'Magdalena' },
597
+ { value: 'CO-MET', country_code: 'CO', text: 'Meta' },
598
+ { value: 'CO-NAR', country_code: 'CO', text: 'Narino' },
599
+ { value: 'CO-NSA', country_code: 'CO', text: 'Norte de Santander' },
600
+ { value: 'CO-PUT', country_code: 'CO', text: 'Putumayo' },
601
+ { value: 'CO-QUI', country_code: 'CO', text: 'Quindio' },
602
+ { value: 'CO-RIS', country_code: 'CO', text: 'Risaralda' },
603
+ { value: 'CO-SAP', country_code: 'CO', text: 'San Andres, Providencia y Santa Catalina' },
604
+ { value: 'CO-SAN', country_code: 'CO', text: 'Santander' },
605
+ { value: 'CO-SUC', country_code: 'CO', text: 'Sucre' },
606
+ { value: 'CO-TOL', country_code: 'CO', text: 'Tolima' },
607
+ { value: 'CO-VAC', country_code: 'CO', text: 'Valle del Cauca' },
608
+ { value: 'CO-VAU', country_code: 'CO', text: 'Vaupes' },
609
+ { value: 'CO-VID', country_code: 'CO', text: 'Vichada' },
610
+ { value: 'CR-A', country_code: 'CR', text: 'Alajuela' },
611
+ { value: 'CR-C', country_code: 'CR', text: 'Cartago' },
612
+ { value: 'CR-G', country_code: 'CR', text: 'Guanacaste' },
613
+ { value: 'CR-H', country_code: 'CR', text: 'Heredia' },
614
+ { value: 'CR-L', country_code: 'CR', text: 'Limon' },
615
+ { value: 'CR-P', country_code: 'CR', text: 'Puntarenas' },
616
+ { value: 'CR-SJ', country_code: 'CR', text: 'San Jose' },
617
+ { value: 'CU-15', country_code: 'CU', text: 'Artemisa' },
618
+ { value: 'CU-09', country_code: 'CU', text: 'Camaguey' },
619
+ { value: 'CU-08', country_code: 'CU', text: 'Ciego de Avila' },
620
+ { value: 'CU-06', country_code: 'CU', text: 'Cienfuegos' },
621
+ { value: 'CU-12', country_code: 'CU', text: 'Granma' },
622
+ { value: 'CU-14', country_code: 'CU', text: 'Guantanamo' },
623
+ { value: 'CU-11', country_code: 'CU', text: 'Holguin' },
624
+ { value: 'CU-99', country_code: 'CU', text: 'Isla de la Juventud' },
625
+ { value: 'CU-03', country_code: 'CU', text: 'La Habana' },
626
+ { value: 'CU-10', country_code: 'CU', text: 'Las Tunas' },
627
+ { value: 'CU-04', country_code: 'CU', text: 'Matanzas' },
628
+ { value: 'CU-16', country_code: 'CU', text: 'Mayabeque' },
629
+ { value: 'CU-01', country_code: 'CU', text: 'Pinar del Rio' },
630
+ { value: 'CU-07', country_code: 'CU', text: 'Sancti Spiritus' },
631
+ { value: 'CU-13', country_code: 'CU', text: 'Santiago de Cuba' },
632
+ { value: 'CU-05', country_code: 'CU', text: 'Villa Clara' },
633
+ { value: 'CV-BV', country_code: 'CV', text: 'Boa Vista' },
634
+ { value: 'CV-BR', country_code: 'CV', text: 'Brava' },
635
+ { value: 'CV-MA', country_code: 'CV', text: 'Maio' },
636
+ { value: 'CV-MO', country_code: 'CV', text: 'Mosteiros' },
637
+ { value: 'CV-PA', country_code: 'CV', text: 'Paul' },
638
+ { value: 'CV-PN', country_code: 'CV', text: 'Porto Novo' },
639
+ { value: 'CV-PR', country_code: 'CV', text: 'Praia' },
640
+ { value: 'CV-RB', country_code: 'CV', text: 'Ribeira Brava' },
641
+ { value: 'CV-RG', country_code: 'CV', text: 'Ribeira Grande' },
642
+ { value: 'CV-RS', country_code: 'CV', text: 'Ribeira Grande de Santiago' },
643
+ { value: 'CV-SL', country_code: 'CV', text: 'Sal' },
644
+ { value: 'CV-CA', country_code: 'CV', text: 'Santa Catarina' },
645
+ { value: 'CV-CF', country_code: 'CV', text: 'Santa Catarina do Fogo' },
646
+ { value: 'CV-CR', country_code: 'CV', text: 'Santa Cruz' },
647
+ { value: 'CV-SD', country_code: 'CV', text: 'Sao Domingos' },
648
+ { value: 'CV-SF', country_code: 'CV', text: 'Sao Filipe' },
649
+ { value: 'CV-SM', country_code: 'CV', text: 'Sao Miguel' },
650
+ { value: 'CV-SS', country_code: 'CV', text: 'Sao Salvador do Mundo' },
651
+ { value: 'CV-SV', country_code: 'CV', text: 'Sao Vicente' },
652
+ { value: 'CV-TA', country_code: 'CV', text: 'Tarrafal' },
653
+ { value: 'CV-TS', country_code: 'CV', text: 'Tarrafal de Sao Nicolau' },
654
+ { value: 'CY-04', country_code: 'CY', text: 'Ammochostos' },
655
+ { value: 'CY-06', country_code: 'CY', text: 'Keryneia' },
656
+ { value: 'CY-03', country_code: 'CY', text: 'Larnaka' },
657
+ { value: 'CY-01', country_code: 'CY', text: 'Lefkosia' },
658
+ { value: 'CY-02', country_code: 'CY', text: 'Lemesos' },
659
+ { value: 'CY-05', country_code: 'CY', text: 'Pafos' },
660
+ { value: 'CZ-JC', country_code: 'CZ', text: 'Jihocesky kraj' },
661
+ { value: 'CZ-JM', country_code: 'CZ', text: 'Jihomoravsky kraj' },
662
+ { value: 'CZ-KA', country_code: 'CZ', text: 'Karlovarsky kraj' },
663
+ { value: 'CZ-63', country_code: 'CZ', text: 'Kraj Vysocina' },
664
+ { value: 'CZ-KR', country_code: 'CZ', text: 'Kralovehradecky kraj' },
665
+ { value: 'CZ-LI', country_code: 'CZ', text: 'Liberecky kraj' },
666
+ { value: 'CZ-MO', country_code: 'CZ', text: 'Moravskoslezsky kraj' },
667
+ { value: 'CZ-OL', country_code: 'CZ', text: 'Olomoucky kraj' },
668
+ { value: 'CZ-PA', country_code: 'CZ', text: 'Pardubicky kraj' },
669
+ { value: 'CZ-PL', country_code: 'CZ', text: 'Plzensky kraj' },
670
+ { value: 'CZ-10', country_code: 'CZ', text: 'Praha, Hlavni mesto' },
671
+ { value: 'CZ-ST', country_code: 'CZ', text: 'Stredocesky kraj' },
672
+ { value: 'CZ-US', country_code: 'CZ', text: 'Ustecky kraj' },
673
+ { value: 'CZ-ZL', country_code: 'CZ', text: 'Zlinsky kraj' },
674
+ { value: 'DE-BW', country_code: 'DE', text: 'Baden-Wurttemberg' },
675
+ { value: 'DE-BY', country_code: 'DE', text: 'Bayern' },
676
+ { value: 'DE-BE', country_code: 'DE', text: 'Berlin' },
677
+ { value: 'DE-BB', country_code: 'DE', text: 'Brandenburg' },
678
+ { value: 'DE-HB', country_code: 'DE', text: 'Bremen' },
679
+ { value: 'DE-HH', country_code: 'DE', text: 'Hamburg' },
680
+ { value: 'DE-HE', country_code: 'DE', text: 'Hessen' },
681
+ { value: 'DE-MV', country_code: 'DE', text: 'Mecklenburg-Vorpommern' },
682
+ { value: 'DE-NI', country_code: 'DE', text: 'Niedersachsen' },
683
+ { value: 'DE-NW', country_code: 'DE', text: 'Nordrhein-Westfalen' },
684
+ { value: 'DE-RP', country_code: 'DE', text: 'Rheinland-Pfalz' },
685
+ { value: 'DE-SL', country_code: 'DE', text: 'Saarland' },
686
+ { value: 'DE-SN', country_code: 'DE', text: 'Sachsen' },
687
+ { value: 'DE-ST', country_code: 'DE', text: 'Sachsen-Anhalt' },
688
+ { value: 'DE-SH', country_code: 'DE', text: 'Schleswig-Holstein' },
689
+ { value: 'DE-TH', country_code: 'DE', text: 'Thuringen' },
690
+ { value: 'DJ-AS', country_code: 'DJ', text: 'Ali Sabieh' },
691
+ { value: 'DJ-AR', country_code: 'DJ', text: 'Arta' },
692
+ { value: 'DJ-DI', country_code: 'DJ', text: 'Dikhil' },
693
+ { value: 'DJ-DJ', country_code: 'DJ', text: 'Djibouti' },
694
+ { value: 'DJ-OB', country_code: 'DJ', text: 'Obock' },
695
+ { value: 'DJ-TA', country_code: 'DJ', text: 'Tadjourah' },
696
+ { value: 'DK-84', country_code: 'DK', text: 'Hovedstaden' },
697
+ { value: 'DK-82', country_code: 'DK', text: 'Midtjylland' },
698
+ { value: 'DK-81', country_code: 'DK', text: 'Nordjylland' },
699
+ { value: 'DK-85', country_code: 'DK', text: 'Sjelland' },
700
+ { value: 'DK-83', country_code: 'DK', text: 'Syddanmark' },
701
+ { value: 'DM-02', country_code: 'DM', text: 'Saint Andrew' },
702
+ { value: 'DM-03', country_code: 'DM', text: 'Saint David' },
703
+ { value: 'DM-04', country_code: 'DM', text: 'Saint George' },
704
+ { value: 'DM-05', country_code: 'DM', text: 'Saint John' },
705
+ { value: 'DM-06', country_code: 'DM', text: 'Saint Joseph' },
706
+ { value: 'DM-07', country_code: 'DM', text: 'Saint Luke' },
707
+ { value: 'DM-08', country_code: 'DM', text: 'Saint Mark' },
708
+ { value: 'DM-09', country_code: 'DM', text: 'Saint Patrick' },
709
+ { value: 'DM-10', country_code: 'DM', text: 'Saint Paul' },
710
+ { value: 'DO-02', country_code: 'DO', text: 'Azua' },
711
+ { value: 'DO-03', country_code: 'DO', text: 'Baoruco' },
712
+ { value: 'DO-04', country_code: 'DO', text: 'Barahona' },
713
+ { value: 'DO-05', country_code: 'DO', text: 'Dajabon' },
714
+ { value: 'DO-01', country_code: 'DO', text: 'Distrito Nacional (Santo Domingo)' },
715
+ { value: 'DO-06', country_code: 'DO', text: 'Duarte' },
716
+ { value: 'DO-08', country_code: 'DO', text: 'El Seibo' },
717
+ { value: 'DO-07', country_code: 'DO', text: 'Elias Pina' },
718
+ { value: 'DO-09', country_code: 'DO', text: 'Espaillat' },
719
+ { value: 'DO-30', country_code: 'DO', text: 'Hato Mayor' },
720
+ { value: 'DO-19', country_code: 'DO', text: 'Hermanas Mirabal' },
721
+ { value: 'DO-10', country_code: 'DO', text: 'Independencia' },
722
+ { value: 'DO-11', country_code: 'DO', text: 'La Altagracia' },
723
+ { value: 'DO-12', country_code: 'DO', text: 'La Romana' },
724
+ { value: 'DO-13', country_code: 'DO', text: 'La Vega' },
725
+ { value: 'DO-14', country_code: 'DO', text: 'Maria Trinidad Sanchez' },
726
+ { value: 'DO-28', country_code: 'DO', text: 'Monsenor Nouel' },
727
+ { value: 'DO-15', country_code: 'DO', text: 'Monte Cristi' },
728
+ { value: 'DO-29', country_code: 'DO', text: 'Monte Plata' },
729
+ { value: 'DO-16', country_code: 'DO', text: 'Pedernales' },
730
+ { value: 'DO-17', country_code: 'DO', text: 'Peravia' },
731
+ { value: 'DO-18', country_code: 'DO', text: 'Puerto Plata' },
732
+ { value: 'DO-20', country_code: 'DO', text: 'Samana' },
733
+ { value: 'DO-21', country_code: 'DO', text: 'San Cristobal' },
734
+ { value: 'DO-22', country_code: 'DO', text: 'San Juan' },
735
+ { value: 'DO-23', country_code: 'DO', text: 'San Pedro de Macoris' },
736
+ { value: 'DO-24', country_code: 'DO', text: 'Sanchez Ramirez' },
737
+ { value: 'DO-25', country_code: 'DO', text: 'Santiago' },
738
+ { value: 'DO-26', country_code: 'DO', text: 'Santiago Rodriguez' },
739
+ { value: 'DO-27', country_code: 'DO', text: 'Valverde' },
740
+ { value: 'DZ-01', country_code: 'DZ', text: 'Adrar' },
741
+ { value: 'DZ-44', country_code: 'DZ', text: 'Ain Defla' },
742
+ { value: 'DZ-46', country_code: 'DZ', text: 'Ain Temouchent' },
743
+ { value: 'DZ-16', country_code: 'DZ', text: 'Alger' },
744
+ { value: 'DZ-23', country_code: 'DZ', text: 'Annaba' },
745
+ { value: 'DZ-05', country_code: 'DZ', text: 'Batna' },
746
+ { value: 'DZ-08', country_code: 'DZ', text: 'Bechar' },
747
+ { value: 'DZ-06', country_code: 'DZ', text: 'Bejaia' },
748
+ { value: 'DZ-07', country_code: 'DZ', text: 'Biskra' },
749
+ { value: 'DZ-09', country_code: 'DZ', text: 'Blida' },
750
+ { value: 'DZ-34', country_code: 'DZ', text: 'Bordj Bou Arreridj' },
751
+ { value: 'DZ-10', country_code: 'DZ', text: 'Bouira' },
752
+ { value: 'DZ-35', country_code: 'DZ', text: 'Boumerdes' },
753
+ { value: 'DZ-02', country_code: 'DZ', text: 'Chlef' },
754
+ { value: 'DZ-25', country_code: 'DZ', text: 'Constantine' },
755
+ { value: 'DZ-17', country_code: 'DZ', text: 'Djelfa' },
756
+ { value: 'DZ-32', country_code: 'DZ', text: 'El Bayadh' },
757
+ { value: 'DZ-39', country_code: 'DZ', text: 'El Oued' },
758
+ { value: 'DZ-36', country_code: 'DZ', text: 'El Tarf' },
759
+ { value: 'DZ-47', country_code: 'DZ', text: 'Ghardaia' },
760
+ { value: 'DZ-24', country_code: 'DZ', text: 'Guelma' },
761
+ { value: 'DZ-33', country_code: 'DZ', text: 'Illizi' },
762
+ { value: 'DZ-40', country_code: 'DZ', text: 'Khenchela' },
763
+ { value: 'DZ-03', country_code: 'DZ', text: 'Laghouat' },
764
+ { value: 'DZ-28', country_code: 'DZ', text: "M'sila" },
765
+ { value: 'DZ-29', country_code: 'DZ', text: 'Mascara' },
766
+ { value: 'DZ-26', country_code: 'DZ', text: 'Medea' },
767
+ { value: 'DZ-43', country_code: 'DZ', text: 'Mila' },
768
+ { value: 'DZ-27', country_code: 'DZ', text: 'Mostaganem' },
769
+ { value: 'DZ-45', country_code: 'DZ', text: 'Naama' },
770
+ { value: 'DZ-31', country_code: 'DZ', text: 'Oran' },
771
+ { value: 'DZ-30', country_code: 'DZ', text: 'Ouargla' },
772
+ { value: 'DZ-04', country_code: 'DZ', text: 'Oum el Bouaghi' },
773
+ { value: 'DZ-48', country_code: 'DZ', text: 'Relizane' },
774
+ { value: 'DZ-20', country_code: 'DZ', text: 'Saida' },
775
+ { value: 'DZ-19', country_code: 'DZ', text: 'Setif' },
776
+ { value: 'DZ-22', country_code: 'DZ', text: 'Sidi Bel Abbes' },
777
+ { value: 'DZ-21', country_code: 'DZ', text: 'Skikda' },
778
+ { value: 'DZ-41', country_code: 'DZ', text: 'Souk Ahras' },
779
+ { value: 'DZ-11', country_code: 'DZ', text: 'Tamanrasset' },
780
+ { value: 'DZ-12', country_code: 'DZ', text: 'Tebessa' },
781
+ { value: 'DZ-14', country_code: 'DZ', text: 'Tiaret' },
782
+ { value: 'DZ-37', country_code: 'DZ', text: 'Tindouf' },
783
+ { value: 'DZ-42', country_code: 'DZ', text: 'Tipaza' },
784
+ { value: 'DZ-38', country_code: 'DZ', text: 'Tissemsilt' },
785
+ { value: 'DZ-15', country_code: 'DZ', text: 'Tizi Ouzou' },
786
+ { value: 'DZ-13', country_code: 'DZ', text: 'Tlemcen' },
787
+ { value: 'EC-A', country_code: 'EC', text: 'Azuay' },
788
+ { value: 'EC-B', country_code: 'EC', text: 'Bolivar' },
789
+ { value: 'EC-F', country_code: 'EC', text: 'Canar' },
790
+ { value: 'EC-C', country_code: 'EC', text: 'Carchi' },
791
+ { value: 'EC-H', country_code: 'EC', text: 'Chimborazo' },
792
+ { value: 'EC-X', country_code: 'EC', text: 'Cotopaxi' },
793
+ { value: 'EC-O', country_code: 'EC', text: 'El Oro' },
794
+ { value: 'EC-E', country_code: 'EC', text: 'Esmeraldas' },
795
+ { value: 'EC-W', country_code: 'EC', text: 'Galapagos' },
796
+ { value: 'EC-G', country_code: 'EC', text: 'Guayas' },
797
+ { value: 'EC-I', country_code: 'EC', text: 'Imbabura' },
798
+ { value: 'EC-L', country_code: 'EC', text: 'Loja' },
799
+ { value: 'EC-R', country_code: 'EC', text: 'Los Rios' },
800
+ { value: 'EC-M', country_code: 'EC', text: 'Manabi' },
801
+ { value: 'EC-S', country_code: 'EC', text: 'Morona-Santiago' },
802
+ { value: 'EC-N', country_code: 'EC', text: 'Napo' },
803
+ { value: 'EC-D', country_code: 'EC', text: 'Orellana' },
804
+ { value: 'EC-Y', country_code: 'EC', text: 'Pastaza' },
805
+ { value: 'EC-P', country_code: 'EC', text: 'Pichincha' },
806
+ { value: 'EC-SE', country_code: 'EC', text: 'Santa Elena' },
807
+ { value: 'EC-U', country_code: 'EC', text: 'Sucumbios' },
808
+ { value: 'EC-T', country_code: 'EC', text: 'Tungurahua' },
809
+ { value: 'EC-Z', country_code: 'EC', text: 'Zamora-Chinchipe' },
810
+ { value: 'EE-37', country_code: 'EE', text: 'Harjumaa' },
811
+ { value: 'EE-39', country_code: 'EE', text: 'Hiiumaa' },
812
+ { value: 'EE-44', country_code: 'EE', text: 'Ida-Virumaa' },
813
+ { value: 'EE-51', country_code: 'EE', text: 'Jarvamaa' },
814
+ { value: 'EE-49', country_code: 'EE', text: 'Jogevamaa' },
815
+ { value: 'EE-59', country_code: 'EE', text: 'Laane-Virumaa' },
816
+ { value: 'EE-57', country_code: 'EE', text: 'Laanemaa' },
817
+ { value: 'EE-67', country_code: 'EE', text: 'Parnumaa' },
818
+ { value: 'EE-65', country_code: 'EE', text: 'Polvamaa' },
819
+ { value: 'EE-70', country_code: 'EE', text: 'Raplamaa' },
820
+ { value: 'EE-74', country_code: 'EE', text: 'Saaremaa' },
821
+ { value: 'EE-78', country_code: 'EE', text: 'Tartumaa' },
822
+ { value: 'EE-82', country_code: 'EE', text: 'Valgamaa' },
823
+ { value: 'EE-84', country_code: 'EE', text: 'Viljandimaa' },
824
+ { value: 'EE-86', country_code: 'EE', text: 'Vorumaa' },
825
+ { value: 'EG-DK', country_code: 'EG', text: 'Ad Daqahliyah' },
826
+ { value: 'EG-BA', country_code: 'EG', text: 'Al Bahr al Ahmar' },
827
+ { value: 'EG-BH', country_code: 'EG', text: 'Al Buhayrah' },
828
+ { value: 'EG-FYM', country_code: 'EG', text: 'Al Fayyum' },
829
+ { value: 'EG-GH', country_code: 'EG', text: 'Al Gharbiyah' },
830
+ { value: 'EG-ALX', country_code: 'EG', text: 'Al Iskandariyah' },
831
+ { value: 'EG-IS', country_code: 'EG', text: "Al Isma'iliyah" },
832
+ { value: 'EG-GZ', country_code: 'EG', text: 'Al Jizah' },
833
+ { value: 'EG-MNF', country_code: 'EG', text: 'Al Minufiyah' },
834
+ { value: 'EG-MN', country_code: 'EG', text: 'Al Minya' },
835
+ { value: 'EG-C', country_code: 'EG', text: 'Al Qahirah' },
836
+ { value: 'EG-KB', country_code: 'EG', text: 'Al Qalyubiyah' },
837
+ { value: 'EG-LX', country_code: 'EG', text: 'Al Uqsur' },
838
+ { value: 'EG-WAD', country_code: 'EG', text: 'Al Wadi al Jadid' },
839
+ { value: 'EG-SUZ', country_code: 'EG', text: 'As Suways' },
840
+ { value: 'EG-SHR', country_code: 'EG', text: 'Ash Sharqiyah' },
841
+ { value: 'EG-ASN', country_code: 'EG', text: 'Aswan' },
842
+ { value: 'EG-AST', country_code: 'EG', text: 'Asyut' },
843
+ { value: 'EG-BNS', country_code: 'EG', text: 'Bani Suwayf' },
844
+ { value: 'EG-PTS', country_code: 'EG', text: "Bur Sa'id" },
845
+ { value: 'EG-DT', country_code: 'EG', text: 'Dumyat' },
846
+ { value: 'EG-JS', country_code: 'EG', text: "Janub Sina'" },
847
+ { value: 'EG-KFS', country_code: 'EG', text: 'Kafr ash Shaykh' },
848
+ { value: 'EG-MT', country_code: 'EG', text: 'Matruh' },
849
+ { value: 'EG-KN', country_code: 'EG', text: 'Qina' },
850
+ { value: 'EG-SIN', country_code: 'EG', text: "Shamal Sina'" },
851
+ { value: 'EG-SHG', country_code: 'EG', text: 'Suhaj' },
852
+ { value: 'ER-MA', country_code: 'ER', text: 'Al Awsat' },
853
+ { value: 'ER-DU', country_code: 'ER', text: 'Al Janubi' },
854
+ { value: 'ER-AN', country_code: 'ER', text: 'Ansaba' },
855
+ { value: 'ER-DK', country_code: 'ER', text: 'Janubi al Bahri al Ahmar' },
856
+ { value: 'ER-GB', country_code: 'ER', text: 'Qash-Barkah' },
857
+ { value: 'ER-SK', country_code: 'ER', text: 'Shimali al Bahri al Ahmar' },
858
+ { value: 'ES-AN', country_code: 'ES', text: 'Andalucia' },
859
+ { value: 'ES-AR', country_code: 'ES', text: 'Aragon' },
860
+ { value: 'ES-AS', country_code: 'ES', text: 'Asturias, Principado de' },
861
+ { value: 'ES-CN', country_code: 'ES', text: 'Canarias' },
862
+ { value: 'ES-CB', country_code: 'ES', text: 'Cantabria' },
863
+ { value: 'ES-CL', country_code: 'ES', text: 'Castilla y Leon' },
864
+ { value: 'ES-CM', country_code: 'ES', text: 'Castilla-La Mancha' },
865
+ { value: 'ES-CT', country_code: 'ES', text: 'Catalunya' },
866
+ { value: 'ES-CE', country_code: 'ES', text: 'Ceuta' },
867
+ { value: 'ES-EX', country_code: 'ES', text: 'Extremadura' },
868
+ { value: 'ES-GA', country_code: 'ES', text: 'Galicia' },
869
+ { value: 'ES-IB', country_code: 'ES', text: 'Illes Balears' },
870
+ { value: 'ES-RI', country_code: 'ES', text: 'La Rioja' },
871
+ { value: 'ES-MD', country_code: 'ES', text: 'Madrid, Comunidad de' },
872
+ { value: 'ES-ML', country_code: 'ES', text: 'Melilla' },
873
+ { value: 'ES-MC', country_code: 'ES', text: 'Murcia, Region de' },
874
+ { value: 'ES-NC', country_code: 'ES', text: 'Navarra, Comunidad Foral de' },
875
+ { value: 'ES-PV', country_code: 'ES', text: 'Pais Vasco' },
876
+ { value: 'ES-VC', country_code: 'ES', text: 'Valenciana, Comunidad' },
877
+ { value: 'ET-AA', country_code: 'ET', text: 'Adis Abeba' },
878
+ { value: 'ET-AF', country_code: 'ET', text: 'Afar' },
879
+ { value: 'ET-AM', country_code: 'ET', text: 'Amara' },
880
+ { value: 'ET-BE', country_code: 'ET', text: 'Binshangul Gumuz' },
881
+ { value: 'ET-DD', country_code: 'ET', text: 'Dire Dawa' },
882
+ { value: 'ET-GA', country_code: 'ET', text: 'Gambela Hizboch' },
883
+ { value: 'ET-HA', country_code: 'ET', text: 'Hareri Hizb' },
884
+ { value: 'ET-OR', country_code: 'ET', text: 'Oromiya' },
885
+ { value: 'ET-SO', country_code: 'ET', text: 'Sumale' },
886
+ { value: 'ET-TI', country_code: 'ET', text: 'Tigray' },
887
+ { value: 'ET-SN', country_code: 'ET', text: 'YeDebub Biheroch Bihereseboch na Hizboch' },
888
+ { value: 'FI-02', country_code: 'FI', text: 'Etela-Karjala' },
889
+ { value: 'FI-03', country_code: 'FI', text: 'Etela-Pohjanmaa' },
890
+ { value: 'FI-04', country_code: 'FI', text: 'Etela-Savo' },
891
+ { value: 'FI-05', country_code: 'FI', text: 'Kainuu' },
892
+ { value: 'FI-06', country_code: 'FI', text: 'Kanta-Hame' },
893
+ { value: 'FI-07', country_code: 'FI', text: 'Keski-Pohjanmaa' },
894
+ { value: 'FI-08', country_code: 'FI', text: 'Keski-Suomi' },
895
+ { value: 'FI-09', country_code: 'FI', text: 'Kymenlaakso' },
896
+ { value: 'FI-10', country_code: 'FI', text: 'Lappi' },
897
+ { value: 'FI-16', country_code: 'FI', text: 'Paijat-Hame' },
898
+ { value: 'FI-11', country_code: 'FI', text: 'Pirkanmaa' },
899
+ { value: 'FI-12', country_code: 'FI', text: 'Pohjanmaa' },
900
+ { value: 'FI-13', country_code: 'FI', text: 'Pohjois-Karjala' },
901
+ { value: 'FI-14', country_code: 'FI', text: 'Pohjois-Pohjanmaa' },
902
+ { value: 'FI-15', country_code: 'FI', text: 'Pohjois-Savo' },
903
+ { value: 'FI-17', country_code: 'FI', text: 'Satakunta' },
904
+ { value: 'FI-18', country_code: 'FI', text: 'Uusimaa' },
905
+ { value: 'FI-19', country_code: 'FI', text: 'Varsinais-Suomi' },
906
+ { value: 'FJ-C', country_code: 'FJ', text: 'Central' },
907
+ { value: 'FJ-N', country_code: 'FJ', text: 'Northern' },
908
+ { value: 'FJ-W', country_code: 'FJ', text: 'Western' },
909
+ { value: 'FM-TRK', country_code: 'FM', text: 'Chuuk' },
910
+ { value: 'FM-KSA', country_code: 'FM', text: 'Kosrae' },
911
+ { value: 'FM-PNI', country_code: 'FM', text: 'Pohnpei' },
912
+ { value: 'FM-YAP', country_code: 'FM', text: 'Yap' },
913
+ { value: 'FR-ARA', country_code: 'FR', text: 'Auvergne-Rhone-Alpes' },
914
+ { value: 'FR-BFC', country_code: 'FR', text: 'Bourgogne-Franche-Comte' },
915
+ { value: 'FR-E', country_code: 'FR', text: 'Bretagne' },
916
+ { value: 'FR-CVL', country_code: 'FR', text: 'Centre-Val de Loire' },
917
+ { value: 'FR-H', country_code: 'FR', text: 'Corse' },
918
+ { value: 'FR-GES', country_code: 'FR', text: 'Grand-Est' },
919
+ { value: 'FR-HDF', country_code: 'FR', text: 'Hauts-de-France' },
920
+ { value: 'FR-J', country_code: 'FR', text: 'Ile-de-France' },
921
+ { value: 'FR-NOR', country_code: 'FR', text: 'Normandie' },
922
+ { value: 'FR-NAQ', country_code: 'FR', text: 'Nouvelle-Aquitaine' },
923
+ { value: 'FR-OCC', country_code: 'FR', text: 'Occitanie' },
924
+ { value: 'FR-R', country_code: 'FR', text: 'Pays-de-la-Loire' },
925
+ { value: 'FR-PAC', country_code: 'FR', text: "Provence-Alpes-Cote d'Azur" },
926
+ { value: 'GA-1', country_code: 'GA', text: 'Estuaire' },
927
+ { value: 'GA-2', country_code: 'GA', text: 'Haut-Ogooue' },
928
+ { value: 'GA-3', country_code: 'GA', text: 'Moyen-Ogooue' },
929
+ { value: 'GA-4', country_code: 'GA', text: 'Ngounie' },
930
+ { value: 'GA-5', country_code: 'GA', text: 'Nyanga' },
931
+ { value: 'GA-6', country_code: 'GA', text: 'Ogooue-Ivindo' },
932
+ { value: 'GA-7', country_code: 'GA', text: 'Ogooue-Lolo' },
933
+ { value: 'GA-8', country_code: 'GA', text: 'Ogooue-Maritime' },
934
+ { value: 'GA-9', country_code: 'GA', text: 'Woleu-Ntem' },
935
+ { value: 'GB-ENG', country_code: 'GB', text: 'England' },
936
+ { value: 'GB-NIR', country_code: 'GB', text: 'Northern Ireland' },
937
+ { value: 'GB-SCT', country_code: 'GB', text: 'Scotland' },
938
+ { value: 'GB-WLS', country_code: 'GB', text: 'Wales' },
939
+ { value: 'GD-01', country_code: 'GD', text: 'Saint Andrew' },
940
+ { value: 'GD-02', country_code: 'GD', text: 'Saint David' },
941
+ { value: 'GD-03', country_code: 'GD', text: 'Saint George' },
942
+ { value: 'GD-04', country_code: 'GD', text: 'Saint John' },
943
+ { value: 'GD-05', country_code: 'GD', text: 'Saint Mark' },
944
+ { value: 'GD-06', country_code: 'GD', text: 'Saint Patrick' },
945
+ { value: 'GE-AB', country_code: 'GE', text: 'Abkhazia' },
946
+ { value: 'GE-AJ', country_code: 'GE', text: 'Ajaria' },
947
+ { value: 'GE-GU', country_code: 'GE', text: 'Guria' },
948
+ { value: 'GE-IM', country_code: 'GE', text: 'Imereti' },
949
+ { value: 'GE-KA', country_code: 'GE', text: "K'akheti" },
950
+ { value: 'GE-KK', country_code: 'GE', text: 'Kvemo Kartli' },
951
+ { value: 'GE-MM', country_code: 'GE', text: 'Mtskheta-Mtianeti' },
952
+ { value: 'GE-RL', country_code: 'GE', text: "Rach'a-Lechkhumi-Kvemo Svaneti" },
953
+ { value: 'GE-SZ', country_code: 'GE', text: 'Samegrelo-Zemo Svaneti' },
954
+ { value: 'GE-SJ', country_code: 'GE', text: 'Samtskhe-Javakheti' },
955
+ { value: 'GE-SK', country_code: 'GE', text: 'Shida Kartli' },
956
+ { value: 'GE-TB', country_code: 'GE', text: 'Tbilisi' },
957
+ { value: 'GH-AH', country_code: 'GH', text: 'Ashanti' },
958
+ { value: 'GH-BA', country_code: 'GH', text: 'Brong-Ahafo' },
959
+ { value: 'GH-CP', country_code: 'GH', text: 'Central' },
960
+ { value: 'GH-EP', country_code: 'GH', text: 'Eastern' },
961
+ { value: 'GH-AA', country_code: 'GH', text: 'Greater Accra' },
962
+ { value: 'GH-NP', country_code: 'GH', text: 'Northern' },
963
+ { value: 'GH-UE', country_code: 'GH', text: 'Upper East' },
964
+ { value: 'GH-UW', country_code: 'GH', text: 'Upper West' },
965
+ { value: 'GH-TV', country_code: 'GH', text: 'Volta' },
966
+ { value: 'GH-WP', country_code: 'GH', text: 'Western' },
967
+ { value: 'GL-KU', country_code: 'GL', text: 'Kommune Kujalleq' },
968
+ { value: 'GL-SM', country_code: 'GL', text: 'Kommuneqarfik Sermersooq' },
969
+ { value: 'GL-QA', country_code: 'GL', text: 'Qaasuitsup Kommunia' },
970
+ { value: 'GL-QE', country_code: 'GL', text: 'Qeqqata Kommunia' },
971
+ { value: 'GM-B', country_code: 'GM', text: 'Banjul' },
972
+ { value: 'GM-M', country_code: 'GM', text: 'Central River' },
973
+ { value: 'GM-L', country_code: 'GM', text: 'Lower River' },
974
+ { value: 'GM-N', country_code: 'GM', text: 'North Bank' },
975
+ { value: 'GM-U', country_code: 'GM', text: 'Upper River' },
976
+ { value: 'GM-W', country_code: 'GM', text: 'Western' },
977
+ { value: 'GN-BE', country_code: 'GN', text: 'Beyla' },
978
+ { value: 'GN-BF', country_code: 'GN', text: 'Boffa' },
979
+ { value: 'GN-B', country_code: 'GN', text: 'Boke' },
980
+ { value: 'GN-C', country_code: 'GN', text: 'Conakry' },
981
+ { value: 'GN-CO', country_code: 'GN', text: 'Coyah' },
982
+ { value: 'GN-DB', country_code: 'GN', text: 'Dabola' },
983
+ { value: 'GN-DL', country_code: 'GN', text: 'Dalaba' },
984
+ { value: 'GN-DI', country_code: 'GN', text: 'Dinguiraye' },
985
+ { value: 'GN-DU', country_code: 'GN', text: 'Dubreka' },
986
+ { value: 'GN-F', country_code: 'GN', text: 'Faranah' },
987
+ { value: 'GN-FO', country_code: 'GN', text: 'Forecariah' },
988
+ { value: 'GN-FR', country_code: 'GN', text: 'Fria' },
989
+ { value: 'GN-GA', country_code: 'GN', text: 'Gaoual' },
990
+ { value: 'GN-GU', country_code: 'GN', text: 'Guekedou' },
991
+ { value: 'GN-K', country_code: 'GN', text: 'Kankan' },
992
+ { value: 'GN-KE', country_code: 'GN', text: 'Kerouane' },
993
+ { value: 'GN-D', country_code: 'GN', text: 'Kindia' },
994
+ { value: 'GN-KS', country_code: 'GN', text: 'Kissidougou' },
995
+ { value: 'GN-KB', country_code: 'GN', text: 'Koubia' },
996
+ { value: 'GN-KN', country_code: 'GN', text: 'Koundara' },
997
+ { value: 'GN-KO', country_code: 'GN', text: 'Kouroussa' },
998
+ { value: 'GN-L', country_code: 'GN', text: 'Labe' },
999
+ { value: 'GN-LE', country_code: 'GN', text: 'Lelouma' },
1000
+ { value: 'GN-LO', country_code: 'GN', text: 'Lola' },
1001
+ { value: 'GN-MC', country_code: 'GN', text: 'Macenta' },
1002
+ { value: 'GN-ML', country_code: 'GN', text: 'Mali' },
1003
+ { value: 'GN-M', country_code: 'GN', text: 'Mamou' },
1004
+ { value: 'GN-MD', country_code: 'GN', text: 'Mandiana' },
1005
+ { value: 'GN-N', country_code: 'GN', text: 'Nzerekore' },
1006
+ { value: 'GN-PI', country_code: 'GN', text: 'Pita' },
1007
+ { value: 'GN-SI', country_code: 'GN', text: 'Siguiri' },
1008
+ { value: 'GN-TE', country_code: 'GN', text: 'Telimele' },
1009
+ { value: 'GN-TO', country_code: 'GN', text: 'Tougue' },
1010
+ { value: 'GN-YO', country_code: 'GN', text: 'Yomou' },
1011
+ { value: 'GQ-AN', country_code: 'GQ', text: 'Annobon' },
1012
+ { value: 'GQ-BN', country_code: 'GQ', text: 'Bioko Norte' },
1013
+ { value: 'GQ-BS', country_code: 'GQ', text: 'Bioko Sur' },
1014
+ { value: 'GQ-CS', country_code: 'GQ', text: 'Centro Sur' },
1015
+ { value: 'GQ-KN', country_code: 'GQ', text: 'Kie-Ntem' },
1016
+ { value: 'GQ-LI', country_code: 'GQ', text: 'Litoral' },
1017
+ { value: 'GQ-WN', country_code: 'GQ', text: 'Wele-Nzas' },
1018
+ { value: 'GR-A', country_code: 'GR', text: 'Anatoliki Makedonia kai Thraki' },
1019
+ { value: 'GR-I', country_code: 'GR', text: 'Attiki' },
1020
+ { value: 'GR-G', country_code: 'GR', text: 'Dytiki Ellada' },
1021
+ { value: 'GR-C', country_code: 'GR', text: 'Dytiki Makedonia' },
1022
+ { value: 'GR-F', country_code: 'GR', text: 'Ionia Nisia' },
1023
+ { value: 'GR-D', country_code: 'GR', text: 'Ipeiros' },
1024
+ { value: 'GR-B', country_code: 'GR', text: 'Kentriki Makedonia' },
1025
+ { value: 'GR-M', country_code: 'GR', text: 'Kriti' },
1026
+ { value: 'GR-L', country_code: 'GR', text: 'Notio Aigaio' },
1027
+ { value: 'GR-J', country_code: 'GR', text: 'Peloponnisos' },
1028
+ { value: 'GR-H', country_code: 'GR', text: 'Sterea Ellada' },
1029
+ { value: 'GR-E', country_code: 'GR', text: 'Thessalia' },
1030
+ { value: 'GR-K', country_code: 'GR', text: 'Voreio Aigaio' },
1031
+ { value: 'GT-AV', country_code: 'GT', text: 'Alta Verapaz' },
1032
+ { value: 'GT-BV', country_code: 'GT', text: 'Baja Verapaz' },
1033
+ { value: 'GT-CM', country_code: 'GT', text: 'Chimaltenango' },
1034
+ { value: 'GT-CQ', country_code: 'GT', text: 'Chiquimula' },
1035
+ { value: 'GT-PR', country_code: 'GT', text: 'El Progreso' },
1036
+ { value: 'GT-ES', country_code: 'GT', text: 'Escuintla' },
1037
+ { value: 'GT-GU', country_code: 'GT', text: 'Guatemala' },
1038
+ { value: 'GT-HU', country_code: 'GT', text: 'Huehuetenango' },
1039
+ { value: 'GT-IZ', country_code: 'GT', text: 'Izabal' },
1040
+ { value: 'GT-JA', country_code: 'GT', text: 'Jalapa' },
1041
+ { value: 'GT-JU', country_code: 'GT', text: 'Jutiapa' },
1042
+ { value: 'GT-PE', country_code: 'GT', text: 'Peten' },
1043
+ { value: 'GT-QZ', country_code: 'GT', text: 'Quetzaltenango' },
1044
+ { value: 'GT-QC', country_code: 'GT', text: 'Quiche' },
1045
+ { value: 'GT-RE', country_code: 'GT', text: 'Retalhuleu' },
1046
+ { value: 'GT-SA', country_code: 'GT', text: 'Sacatepequez' },
1047
+ { value: 'GT-SM', country_code: 'GT', text: 'San Marcos' },
1048
+ { value: 'GT-SR', country_code: 'GT', text: 'Santa Rosa' },
1049
+ { value: 'GT-SO', country_code: 'GT', text: 'Solola' },
1050
+ { value: 'GT-SU', country_code: 'GT', text: 'Suchitepequez' },
1051
+ { value: 'GT-TO', country_code: 'GT', text: 'Totonicapan' },
1052
+ { value: 'GT-ZA', country_code: 'GT', text: 'Zacapa' },
1053
+ { value: 'GW-BA', country_code: 'GW', text: 'Bafata' },
1054
+ { value: 'GW-BM', country_code: 'GW', text: 'Biombo' },
1055
+ { value: 'GW-BS', country_code: 'GW', text: 'Bissau' },
1056
+ { value: 'GW-BL', country_code: 'GW', text: 'Bolama' },
1057
+ { value: 'GW-CA', country_code: 'GW', text: 'Cacheu' },
1058
+ { value: 'GW-GA', country_code: 'GW', text: 'Gabu' },
1059
+ { value: 'GW-OI', country_code: 'GW', text: 'Oio' },
1060
+ { value: 'GW-QU', country_code: 'GW', text: 'Quinara' },
1061
+ { value: 'GW-TO', country_code: 'GW', text: 'Tombali' },
1062
+ { value: 'GY-CU', country_code: 'GY', text: 'Cuyuni-Mazaruni' },
1063
+ { value: 'GY-DE', country_code: 'GY', text: 'Demerara-Mahaica' },
1064
+ { value: 'GY-EB', country_code: 'GY', text: 'East Berbice-Corentyne' },
1065
+ { value: 'GY-ES', country_code: 'GY', text: 'Essequibo Islands-West Demerara' },
1066
+ { value: 'GY-MA', country_code: 'GY', text: 'Mahaica-Berbice' },
1067
+ { value: 'GY-PM', country_code: 'GY', text: 'Pomeroon-Supenaam' },
1068
+ { value: 'GY-UD', country_code: 'GY', text: 'Upper Demerara-Berbice' },
1069
+ { value: 'HN-AT', country_code: 'HN', text: 'Atlantida' },
1070
+ { value: 'HN-CH', country_code: 'HN', text: 'Choluteca' },
1071
+ { value: 'HN-CL', country_code: 'HN', text: 'Colon' },
1072
+ { value: 'HN-CM', country_code: 'HN', text: 'Comayagua' },
1073
+ { value: 'HN-CP', country_code: 'HN', text: 'Copan' },
1074
+ { value: 'HN-CR', country_code: 'HN', text: 'Cortes' },
1075
+ { value: 'HN-EP', country_code: 'HN', text: 'El Paraiso' },
1076
+ { value: 'HN-FM', country_code: 'HN', text: 'Francisco Morazan' },
1077
+ { value: 'HN-GD', country_code: 'HN', text: 'Gracias a Dios' },
1078
+ { value: 'HN-IN', country_code: 'HN', text: 'Intibuca' },
1079
+ { value: 'HN-IB', country_code: 'HN', text: 'Islas de la Bahia' },
1080
+ { value: 'HN-LP', country_code: 'HN', text: 'La Paz' },
1081
+ { value: 'HN-LE', country_code: 'HN', text: 'Lempira' },
1082
+ { value: 'HN-OC', country_code: 'HN', text: 'Ocotepeque' },
1083
+ { value: 'HN-OL', country_code: 'HN', text: 'Olancho' },
1084
+ { value: 'HN-SB', country_code: 'HN', text: 'Santa Barbara' },
1085
+ { value: 'HN-VA', country_code: 'HN', text: 'Valle' },
1086
+ { value: 'HN-YO', country_code: 'HN', text: 'Yoro' },
1087
+ { value: 'HR-07', country_code: 'HR', text: 'Bjelovarsko-bilogorska zupanija' },
1088
+ { value: 'HR-12', country_code: 'HR', text: 'Brodsko-posavska zupanija' },
1089
+ { value: 'HR-19', country_code: 'HR', text: 'Dubrovacko-neretvanska zupanija' },
1090
+ { value: 'HR-21', country_code: 'HR', text: 'Grad Zagreb' },
1091
+ { value: 'HR-18', country_code: 'HR', text: 'Istarska zupanija' },
1092
+ { value: 'HR-04', country_code: 'HR', text: 'Karlovacka zupanija' },
1093
+ { value: 'HR-06', country_code: 'HR', text: 'Koprivnicko-krizevacka zupanija' },
1094
+ { value: 'HR-02', country_code: 'HR', text: 'Krapinsko-zagorska zupanija' },
1095
+ { value: 'HR-09', country_code: 'HR', text: 'Licko-senjska zupanija' },
1096
+ { value: 'HR-20', country_code: 'HR', text: 'Medimurska zupanija' },
1097
+ { value: 'HR-14', country_code: 'HR', text: 'Osjecko-baranjska zupanija' },
1098
+ { value: 'HR-11', country_code: 'HR', text: 'Pozesko-slavonska zupanija' },
1099
+ { value: 'HR-08', country_code: 'HR', text: 'Primorsko-goranska zupanija' },
1100
+ { value: 'HR-15', country_code: 'HR', text: 'Sibensko-kninska zupanija' },
1101
+ { value: 'HR-03', country_code: 'HR', text: 'Sisacko-moslavacka zupanija' },
1102
+ { value: 'HR-17', country_code: 'HR', text: 'Splitsko-dalmatinska zupanija' },
1103
+ { value: 'HR-05', country_code: 'HR', text: 'Varazdinska zupanija' },
1104
+ { value: 'HR-10', country_code: 'HR', text: 'Viroviticko-podravska zupanija' },
1105
+ { value: 'HR-16', country_code: 'HR', text: 'Vukovarsko-srijemska zupanija' },
1106
+ { value: 'HR-13', country_code: 'HR', text: 'Zadarska zupanija' },
1107
+ { value: 'HR-01', country_code: 'HR', text: 'Zagrebacka zupanija' },
1108
+ { value: 'HT-AR', country_code: 'HT', text: 'Artibonite' },
1109
+ { value: 'HT-CE', country_code: 'HT', text: 'Centre' },
1110
+ { value: 'HT-GA', country_code: 'HT', text: "Grande'Anse" },
1111
+ { value: 'HT-NI', country_code: 'HT', text: 'Nippes' },
1112
+ { value: 'HT-ND', country_code: 'HT', text: 'Nord' },
1113
+ { value: 'HT-NE', country_code: 'HT', text: 'Nord-Est' },
1114
+ { value: 'HT-NO', country_code: 'HT', text: 'Nord-Ouest' },
1115
+ { value: 'HT-OU', country_code: 'HT', text: 'Ouest' },
1116
+ { value: 'HT-SD', country_code: 'HT', text: 'Sud' },
1117
+ { value: 'HT-SE', country_code: 'HT', text: 'Sud-Est' },
1118
+ { value: 'HU-BK', country_code: 'HU', text: 'Bacs-Kiskun' },
1119
+ { value: 'HU-BA', country_code: 'HU', text: 'Baranya' },
1120
+ { value: 'HU-BE', country_code: 'HU', text: 'Bekes' },
1121
+ { value: 'HU-BZ', country_code: 'HU', text: 'Borsod-Abauj-Zemplen' },
1122
+ { value: 'HU-BU', country_code: 'HU', text: 'Budapest' },
1123
+ { value: 'HU-CS', country_code: 'HU', text: 'Csongrad' },
1124
+ { value: 'HU-FE', country_code: 'HU', text: 'Fejer' },
1125
+ { value: 'HU-GS', country_code: 'HU', text: 'Gyor-Moson-Sopron' },
1126
+ { value: 'HU-HB', country_code: 'HU', text: 'Hajdu-Bihar' },
1127
+ { value: 'HU-HE', country_code: 'HU', text: 'Heves' },
1128
+ { value: 'HU-JN', country_code: 'HU', text: 'Jasz-Nagykun-Szolnok' },
1129
+ { value: 'HU-KE', country_code: 'HU', text: 'Komarom-Esztergom' },
1130
+ { value: 'HU-NO', country_code: 'HU', text: 'Nograd' },
1131
+ { value: 'HU-PE', country_code: 'HU', text: 'Pest' },
1132
+ { value: 'HU-SO', country_code: 'HU', text: 'Somogy' },
1133
+ { value: 'HU-SZ', country_code: 'HU', text: 'Szabolcs-Szatmar-Bereg' },
1134
+ { value: 'HU-TO', country_code: 'HU', text: 'Tolna' },
1135
+ { value: 'HU-VA', country_code: 'HU', text: 'Vas' },
1136
+ { value: 'HU-VM', country_code: 'HU', text: 'Veszprem' },
1137
+ { value: 'HU-ZA', country_code: 'HU', text: 'Zala' },
1138
+ { value: 'ID-AC', country_code: 'ID', text: 'Aceh' },
1139
+ { value: 'ID-BA', country_code: 'ID', text: 'Bali' },
1140
+ { value: 'ID-BT', country_code: 'ID', text: 'Banten' },
1141
+ { value: 'ID-BE', country_code: 'ID', text: 'Bengkulu' },
1142
+ { value: 'ID-GO', country_code: 'ID', text: 'Gorontalo' },
1143
+ { value: 'ID-JK', country_code: 'ID', text: 'Jakarta Raya' },
1144
+ { value: 'ID-JA', country_code: 'ID', text: 'Jambi' },
1145
+ { value: 'ID-JB', country_code: 'ID', text: 'Jawa Barat' },
1146
+ { value: 'ID-JT', country_code: 'ID', text: 'Jawa Tengah' },
1147
+ { value: 'ID-JI', country_code: 'ID', text: 'Jawa Timur' },
1148
+ { value: 'ID-KB', country_code: 'ID', text: 'Kalimantan Barat' },
1149
+ { value: 'ID-KS', country_code: 'ID', text: 'Kalimantan Selatan' },
1150
+ { value: 'ID-KT', country_code: 'ID', text: 'Kalimantan Tengah' },
1151
+ { value: 'ID-KI', country_code: 'ID', text: 'Kalimantan Timur' },
1152
+ { value: 'ID-BB', country_code: 'ID', text: 'Kepulauan Bangka Belitung' },
1153
+ { value: 'ID-KR', country_code: 'ID', text: 'Kepulauan Riau' },
1154
+ { value: 'ID-LA', country_code: 'ID', text: 'Lampung' },
1155
+ { value: 'ID-ML', country_code: 'ID', text: 'Maluku' },
1156
+ { value: 'ID-MU', country_code: 'ID', text: 'Maluku Utara' },
1157
+ { value: 'ID-NB', country_code: 'ID', text: 'Nusa Tenggara Barat' },
1158
+ { value: 'ID-NT', country_code: 'ID', text: 'Nusa Tenggara Timur' },
1159
+ { value: 'ID-PP', country_code: 'ID', text: 'Papua' },
1160
+ { value: 'ID-PB', country_code: 'ID', text: 'Papua Barat' },
1161
+ { value: 'ID-RI', country_code: 'ID', text: 'Riau' },
1162
+ { value: 'ID-SR', country_code: 'ID', text: 'Sulawesi Barat' },
1163
+ { value: 'ID-SN', country_code: 'ID', text: 'Sulawesi Selatan' },
1164
+ { value: 'ID-ST', country_code: 'ID', text: 'Sulawesi Tengah' },
1165
+ { value: 'ID-SG', country_code: 'ID', text: 'Sulawesi Tenggara' },
1166
+ { value: 'ID-SA', country_code: 'ID', text: 'Sulawesi Utara' },
1167
+ { value: 'ID-SB', country_code: 'ID', text: 'Sumatera Barat' },
1168
+ { value: 'ID-SS', country_code: 'ID', text: 'Sumatera Selatan' },
1169
+ { value: 'ID-SU', country_code: 'ID', text: 'Sumatera Utara' },
1170
+ { value: 'ID-YO', country_code: 'ID', text: 'Yogyakarta' },
1171
+ { value: 'IE-CW', country_code: 'IE', text: 'Carlow' },
1172
+ { value: 'IE-CN', country_code: 'IE', text: 'Cavan' },
1173
+ { value: 'IE-CE', country_code: 'IE', text: 'Clare' },
1174
+ { value: 'IE-CO', country_code: 'IE', text: 'Cork' },
1175
+ { value: 'IE-DL', country_code: 'IE', text: 'Donegal' },
1176
+ { value: 'IE-D', country_code: 'IE', text: 'Dublin' },
1177
+ { value: 'IE-G', country_code: 'IE', text: 'Galway' },
1178
+ { value: 'IE-KY', country_code: 'IE', text: 'Kerry' },
1179
+ { value: 'IE-KE', country_code: 'IE', text: 'Kildare' },
1180
+ { value: 'IE-KK', country_code: 'IE', text: 'Kilkenny' },
1181
+ { value: 'IE-LS', country_code: 'IE', text: 'Laois' },
1182
+ { value: 'IE-LM', country_code: 'IE', text: 'Leitrim' },
1183
+ { value: 'IE-LK', country_code: 'IE', text: 'Limerick' },
1184
+ { value: 'IE-LD', country_code: 'IE', text: 'Longford' },
1185
+ { value: 'IE-LH', country_code: 'IE', text: 'Louth' },
1186
+ { value: 'IE-MO', country_code: 'IE', text: 'Mayo' },
1187
+ { value: 'IE-MH', country_code: 'IE', text: 'Meath' },
1188
+ { value: 'IE-MN', country_code: 'IE', text: 'Monaghan' },
1189
+ { value: 'IE-OY', country_code: 'IE', text: 'Offaly' },
1190
+ { value: 'IE-RN', country_code: 'IE', text: 'Roscommon' },
1191
+ { value: 'IE-SO', country_code: 'IE', text: 'Sligo' },
1192
+ { value: 'IE-TA', country_code: 'IE', text: 'Tipperary' },
1193
+ { value: 'IE-WD', country_code: 'IE', text: 'Waterford' },
1194
+ { value: 'IE-WH', country_code: 'IE', text: 'Westmeath' },
1195
+ { value: 'IE-WX', country_code: 'IE', text: 'Wexford' },
1196
+ { value: 'IE-WW', country_code: 'IE', text: 'Wicklow' },
1197
+ { value: 'IL-D', country_code: 'IL', text: 'HaDarom' },
1198
+ { value: 'IL-M', country_code: 'IL', text: 'HaMerkaz' },
1199
+ { value: 'IL-Z', country_code: 'IL', text: 'HaTsafon' },
1200
+ { value: 'IL-HA', country_code: 'IL', text: 'Hefa' },
1201
+ { value: 'IL-TA', country_code: 'IL', text: 'Tel Aviv' },
1202
+ { value: 'IL-JM', country_code: 'IL', text: 'Yerushalayim' },
1203
+ { value: 'IN-AN', country_code: 'IN', text: 'Andaman and Nicobar Islands' },
1204
+ { value: 'IN-AP', country_code: 'IN', text: 'Andhra Pradesh' },
1205
+ { value: 'IN-AR', country_code: 'IN', text: 'Arunachal Pradesh' },
1206
+ { value: 'IN-AS', country_code: 'IN', text: 'Assam' },
1207
+ { value: 'IN-BR', country_code: 'IN', text: 'Bihar' },
1208
+ { value: 'IN-CH', country_code: 'IN', text: 'Chandigarh' },
1209
+ { value: 'IN-CT', country_code: 'IN', text: 'Chhattisgarh' },
1210
+ { value: 'IN-DN', country_code: 'IN', text: 'Dadra and Nagar Haveli' },
1211
+ { value: 'IN-DD', country_code: 'IN', text: 'Daman and Diu' },
1212
+ { value: 'IN-DL', country_code: 'IN', text: 'Delhi' },
1213
+ { value: 'IN-GA', country_code: 'IN', text: 'Goa' },
1214
+ { value: 'IN-GJ', country_code: 'IN', text: 'Gujarat' },
1215
+ { value: 'IN-HR', country_code: 'IN', text: 'Haryana' },
1216
+ { value: 'IN-HP', country_code: 'IN', text: 'Himachal Pradesh' },
1217
+ { value: 'IN-JK', country_code: 'IN', text: 'Jammu and Kashmir' },
1218
+ { value: 'IN-JH', country_code: 'IN', text: 'Jharkhand' },
1219
+ { value: 'IN-KA', country_code: 'IN', text: 'Karnataka' },
1220
+ { value: 'IN-KL', country_code: 'IN', text: 'Kerala' },
1221
+ { value: 'IN-LD', country_code: 'IN', text: 'Lakshadweep' },
1222
+ { value: 'IN-MP', country_code: 'IN', text: 'Madhya Pradesh' },
1223
+ { value: 'IN-MH', country_code: 'IN', text: 'Maharashtra' },
1224
+ { value: 'IN-MN', country_code: 'IN', text: 'Manipur' },
1225
+ { value: 'IN-ML', country_code: 'IN', text: 'Meghalaya' },
1226
+ { value: 'IN-MZ', country_code: 'IN', text: 'Mizoram' },
1227
+ { value: 'IN-NL', country_code: 'IN', text: 'Nagaland' },
1228
+ { value: 'IN-OR', country_code: 'IN', text: 'Odisha' },
1229
+ { value: 'IN-PY', country_code: 'IN', text: 'Puducherry' },
1230
+ { value: 'IN-PB', country_code: 'IN', text: 'Punjab' },
1231
+ { value: 'IN-RJ', country_code: 'IN', text: 'Rajasthan' },
1232
+ { value: 'IN-SK', country_code: 'IN', text: 'Sikkim' },
1233
+ { value: 'IN-TN', country_code: 'IN', text: 'Tamil Nadu' },
1234
+ { value: 'IN-TG', country_code: 'IN', text: 'Telangana' },
1235
+ { value: 'IN-TR', country_code: 'IN', text: 'Tripura' },
1236
+ { value: 'IN-UP', country_code: 'IN', text: 'Uttar Pradesh' },
1237
+ { value: 'IN-UT', country_code: 'IN', text: 'Uttarakhand' },
1238
+ { value: 'IN-WB', country_code: 'IN', text: 'West Bengal' },
1239
+ { value: 'IQ-AN', country_code: 'IQ', text: 'Al Anbar' },
1240
+ { value: 'IQ-BA', country_code: 'IQ', text: 'Al Basrah' },
1241
+ { value: 'IQ-MU', country_code: 'IQ', text: 'Al Muthanna' },
1242
+ { value: 'IQ-QA', country_code: 'IQ', text: 'Al Qadisiyah' },
1243
+ { value: 'IQ-NA', country_code: 'IQ', text: 'An Najaf' },
1244
+ { value: 'IQ-AR', country_code: 'IQ', text: 'Arbil' },
1245
+ { value: 'IQ-SU', country_code: 'IQ', text: 'As Sulaymaniyah' },
1246
+ { value: 'IQ-BB', country_code: 'IQ', text: 'Babil' },
1247
+ { value: 'IQ-BG', country_code: 'IQ', text: 'Baghdad' },
1248
+ { value: 'IQ-DA', country_code: 'IQ', text: 'Dahuk' },
1249
+ { value: 'IQ-DQ', country_code: 'IQ', text: 'Dhi Qar' },
1250
+ { value: 'IQ-DI', country_code: 'IQ', text: 'Diyala' },
1251
+ { value: 'IQ-KA', country_code: 'IQ', text: "Karbala'" },
1252
+ { value: 'IQ-KI', country_code: 'IQ', text: 'Kirkuk' },
1253
+ { value: 'IQ-MA', country_code: 'IQ', text: 'Maysan' },
1254
+ { value: 'IQ-NI', country_code: 'IQ', text: 'Ninawa' },
1255
+ { value: 'IQ-SD', country_code: 'IQ', text: 'Salah ad Din' },
1256
+ { value: 'IQ-WA', country_code: 'IQ', text: 'Wasit' },
1257
+ { value: 'IR-32', country_code: 'IR', text: 'Alborz' },
1258
+ { value: 'IR-03', country_code: 'IR', text: 'Ardabil' },
1259
+ { value: 'IR-02', country_code: 'IR', text: 'Azarbayjan-e Gharbi' },
1260
+ { value: 'IR-01', country_code: 'IR', text: 'Azarbayjan-e Sharqi' },
1261
+ { value: 'IR-06', country_code: 'IR', text: 'Bushehr' },
1262
+ { value: 'IR-08', country_code: 'IR', text: 'Chahar Mahal va Bakhtiari' },
1263
+ { value: 'IR-04', country_code: 'IR', text: 'Esfahan' },
1264
+ { value: 'IR-14', country_code: 'IR', text: 'Fars' },
1265
+ { value: 'IR-19', country_code: 'IR', text: 'Gilan' },
1266
+ { value: 'IR-27', country_code: 'IR', text: 'Golestan' },
1267
+ { value: 'IR-24', country_code: 'IR', text: 'Hamadan' },
1268
+ { value: 'IR-23', country_code: 'IR', text: 'Hormozgan' },
1269
+ { value: 'IR-05', country_code: 'IR', text: 'Ilam' },
1270
+ { value: 'IR-15', country_code: 'IR', text: 'Kerman' },
1271
+ { value: 'IR-17', country_code: 'IR', text: 'Kermanshah' },
1272
+ { value: 'IR-29', country_code: 'IR', text: 'Khorasan-e Jonubi' },
1273
+ { value: 'IR-30', country_code: 'IR', text: 'Khorasan-e Razavi' },
1274
+ { value: 'IR-31', country_code: 'IR', text: 'Khorasan-e Shomali' },
1275
+ { value: 'IR-10', country_code: 'IR', text: 'Khuzestan' },
1276
+ { value: 'IR-18', country_code: 'IR', text: 'Kohgiluyeh va Bowyer Ahmad' },
1277
+ { value: 'IR-16', country_code: 'IR', text: 'Kordestan' },
1278
+ { value: 'IR-20', country_code: 'IR', text: 'Lorestan' },
1279
+ { value: 'IR-22', country_code: 'IR', text: 'Markazi' },
1280
+ { value: 'IR-21', country_code: 'IR', text: 'Mazandaran' },
1281
+ { value: 'IR-28', country_code: 'IR', text: 'Qazvin' },
1282
+ { value: 'IR-26', country_code: 'IR', text: 'Qom' },
1283
+ { value: 'IR-12', country_code: 'IR', text: 'Semnan' },
1284
+ { value: 'IR-13', country_code: 'IR', text: 'Sistan va Baluchestan' },
1285
+ { value: 'IR-07', country_code: 'IR', text: 'Tehran' },
1286
+ { value: 'IR-25', country_code: 'IR', text: 'Yazd' },
1287
+ { value: 'IR-11', country_code: 'IR', text: 'Zanjan' },
1288
+ { value: 'IS-7', country_code: 'IS', text: 'Austurland' },
1289
+ { value: 'IS-1', country_code: 'IS', text: 'Hofudborgarsvaedi utan Reykjavikur' },
1290
+ { value: 'IS-6', country_code: 'IS', text: 'Nordurland eystra' },
1291
+ { value: 'IS-5', country_code: 'IS', text: 'Nordurland vestra' },
1292
+ { value: 'IS-8', country_code: 'IS', text: 'Sudurland' },
1293
+ { value: 'IS-2', country_code: 'IS', text: 'Sudurnes' },
1294
+ { value: 'IS-4', country_code: 'IS', text: 'Vestfirdir' },
1295
+ { value: 'IS-3', country_code: 'IS', text: 'Vesturland' },
1296
+ { value: 'IT-65', country_code: 'IT', text: 'Abruzzo' },
1297
+ { value: 'IT-77', country_code: 'IT', text: 'Basilicata' },
1298
+ { value: 'IT-78', country_code: 'IT', text: 'Calabria' },
1299
+ { value: 'IT-72', country_code: 'IT', text: 'Campania' },
1300
+ { value: 'IT-45', country_code: 'IT', text: 'Emilia-Romagna' },
1301
+ { value: 'IT-36', country_code: 'IT', text: 'Friuli-Venezia Giulia' },
1302
+ { value: 'IT-62', country_code: 'IT', text: 'Lazio' },
1303
+ { value: 'IT-42', country_code: 'IT', text: 'Liguria' },
1304
+ { value: 'IT-25', country_code: 'IT', text: 'Lombardia' },
1305
+ { value: 'IT-57', country_code: 'IT', text: 'Marche' },
1306
+ { value: 'IT-67', country_code: 'IT', text: 'Molise' },
1307
+ { value: 'IT-21', country_code: 'IT', text: 'Piemonte' },
1308
+ { value: 'IT-75', country_code: 'IT', text: 'Puglia' },
1309
+ { value: 'IT-88', country_code: 'IT', text: 'Sardegna' },
1310
+ { value: 'IT-82', country_code: 'IT', text: 'Sicilia' },
1311
+ { value: 'IT-52', country_code: 'IT', text: 'Toscana' },
1312
+ { value: 'IT-32', country_code: 'IT', text: 'Trentino-Alto Adige' },
1313
+ { value: 'IT-55', country_code: 'IT', text: 'Umbria' },
1314
+ { value: 'IT-23', country_code: 'IT', text: "Valle d'Aosta" },
1315
+ { value: 'IT-34', country_code: 'IT', text: 'Veneto' },
1316
+ { value: 'JM-13', country_code: 'JM', text: 'Clarendon' },
1317
+ { value: 'JM-09', country_code: 'JM', text: 'Hanover' },
1318
+ { value: 'JM-01', country_code: 'JM', text: 'Kingston' },
1319
+ { value: 'JM-12', country_code: 'JM', text: 'Manchester' },
1320
+ { value: 'JM-04', country_code: 'JM', text: 'Portland' },
1321
+ { value: 'JM-02', country_code: 'JM', text: 'Saint Andrew' },
1322
+ { value: 'JM-06', country_code: 'JM', text: 'Saint Ann' },
1323
+ { value: 'JM-14', country_code: 'JM', text: 'Saint Catherine' },
1324
+ { value: 'JM-11', country_code: 'JM', text: 'Saint Elizabeth' },
1325
+ { value: 'JM-08', country_code: 'JM', text: 'Saint James' },
1326
+ { value: 'JM-05', country_code: 'JM', text: 'Saint Mary' },
1327
+ { value: 'JM-03', country_code: 'JM', text: 'Saint Thomas' },
1328
+ { value: 'JM-07', country_code: 'JM', text: 'Trelawny' },
1329
+ { value: 'JM-10', country_code: 'JM', text: 'Westmoreland' },
1330
+ { value: 'JO-AQ', country_code: 'JO', text: "Al 'Aqabah" },
1331
+ { value: 'JO-AM', country_code: 'JO', text: "Al 'Asimah" },
1332
+ { value: 'JO-BA', country_code: 'JO', text: "Al Balqa'" },
1333
+ { value: 'JO-KA', country_code: 'JO', text: 'Al Karak' },
1334
+ { value: 'JO-MA', country_code: 'JO', text: 'Al Mafraq' },
1335
+ { value: 'JO-AT', country_code: 'JO', text: 'At Tafilah' },
1336
+ { value: 'JO-AZ', country_code: 'JO', text: "Az Zarqa'" },
1337
+ { value: 'JO-IR', country_code: 'JO', text: 'Irbid' },
1338
+ { value: 'JO-MN', country_code: 'JO', text: "Ma'an" },
1339
+ { value: 'JO-MD', country_code: 'JO', text: 'Madaba' },
1340
+ { value: 'JP-23', country_code: 'JP', text: 'Aichi' },
1341
+ { value: 'JP-05', country_code: 'JP', text: 'Akita' },
1342
+ { value: 'JP-02', country_code: 'JP', text: 'Aomori' },
1343
+ { value: 'JP-12', country_code: 'JP', text: 'Chiba' },
1344
+ { value: 'JP-38', country_code: 'JP', text: 'Ehime' },
1345
+ { value: 'JP-18', country_code: 'JP', text: 'Fukui' },
1346
+ { value: 'JP-40', country_code: 'JP', text: 'Fukuoka' },
1347
+ { value: 'JP-07', country_code: 'JP', text: 'Fukushima' },
1348
+ { value: 'JP-21', country_code: 'JP', text: 'Gifu' },
1349
+ { value: 'JP-10', country_code: 'JP', text: 'Gunma' },
1350
+ { value: 'JP-34', country_code: 'JP', text: 'Hiroshima' },
1351
+ { value: 'JP-01', country_code: 'JP', text: 'Hokkaido' },
1352
+ { value: 'JP-28', country_code: 'JP', text: 'Hyogo' },
1353
+ { value: 'JP-08', country_code: 'JP', text: 'Ibaraki' },
1354
+ { value: 'JP-17', country_code: 'JP', text: 'Ishikawa' },
1355
+ { value: 'JP-03', country_code: 'JP', text: 'Iwate' },
1356
+ { value: 'JP-37', country_code: 'JP', text: 'Kagawa' },
1357
+ { value: 'JP-46', country_code: 'JP', text: 'Kagoshima' },
1358
+ { value: 'JP-14', country_code: 'JP', text: 'Kanagawa' },
1359
+ { value: 'JP-39', country_code: 'JP', text: 'Kochi' },
1360
+ { value: 'JP-43', country_code: 'JP', text: 'Kumamoto' },
1361
+ { value: 'JP-26', country_code: 'JP', text: 'Kyoto' },
1362
+ { value: 'JP-24', country_code: 'JP', text: 'Mie' },
1363
+ { value: 'JP-04', country_code: 'JP', text: 'Miyagi' },
1364
+ { value: 'JP-45', country_code: 'JP', text: 'Miyazaki' },
1365
+ { value: 'JP-20', country_code: 'JP', text: 'Nagano' },
1366
+ { value: 'JP-42', country_code: 'JP', text: 'Nagasaki' },
1367
+ { value: 'JP-29', country_code: 'JP', text: 'Nara' },
1368
+ { value: 'JP-15', country_code: 'JP', text: 'Niigata' },
1369
+ { value: 'JP-44', country_code: 'JP', text: 'Oita' },
1370
+ { value: 'JP-33', country_code: 'JP', text: 'Okayama' },
1371
+ { value: 'JP-47', country_code: 'JP', text: 'Okinawa' },
1372
+ { value: 'JP-27', country_code: 'JP', text: 'Osaka' },
1373
+ { value: 'JP-41', country_code: 'JP', text: 'Saga' },
1374
+ { value: 'JP-11', country_code: 'JP', text: 'Saitama' },
1375
+ { value: 'JP-25', country_code: 'JP', text: 'Shiga' },
1376
+ { value: 'JP-32', country_code: 'JP', text: 'Shimane' },
1377
+ { value: 'JP-22', country_code: 'JP', text: 'Shizuoka' },
1378
+ { value: 'JP-09', country_code: 'JP', text: 'Tochigi' },
1379
+ { value: 'JP-36', country_code: 'JP', text: 'Tokushima' },
1380
+ { value: 'JP-13', country_code: 'JP', text: 'Tokyo' },
1381
+ { value: 'JP-31', country_code: 'JP', text: 'Tottori' },
1382
+ { value: 'JP-16', country_code: 'JP', text: 'Toyama' },
1383
+ { value: 'JP-30', country_code: 'JP', text: 'Wakayama' },
1384
+ { value: 'JP-06', country_code: 'JP', text: 'Yamagata' },
1385
+ { value: 'JP-35', country_code: 'JP', text: 'Yamaguchi' },
1386
+ { value: 'JP-19', country_code: 'JP', text: 'Yamanashi' },
1387
+ { value: 'KE-01', country_code: 'KE', text: 'Baringo' },
1388
+ { value: 'KE-02', country_code: 'KE', text: 'Bomet' },
1389
+ { value: 'KE-03', country_code: 'KE', text: 'Bungoma' },
1390
+ { value: 'KE-04', country_code: 'KE', text: 'Busia' },
1391
+ { value: 'KE-06', country_code: 'KE', text: 'Embu' },
1392
+ { value: 'KE-07', country_code: 'KE', text: 'Garissa' },
1393
+ { value: 'KE-08', country_code: 'KE', text: 'Homa Bay' },
1394
+ { value: 'KE-09', country_code: 'KE', text: 'Isiolo' },
1395
+ { value: 'KE-10', country_code: 'KE', text: 'Kajiado' },
1396
+ { value: 'KE-11', country_code: 'KE', text: 'Kakamega' },
1397
+ { value: 'KE-12', country_code: 'KE', text: 'Kericho' },
1398
+ { value: 'KE-13', country_code: 'KE', text: 'Kiambu' },
1399
+ { value: 'KE-14', country_code: 'KE', text: 'Kilifi' },
1400
+ { value: 'KE-15', country_code: 'KE', text: 'Kirinyaga' },
1401
+ { value: 'KE-16', country_code: 'KE', text: 'Kisii' },
1402
+ { value: 'KE-17', country_code: 'KE', text: 'Kisumu' },
1403
+ { value: 'KE-18', country_code: 'KE', text: 'Kitui' },
1404
+ { value: 'KE-19', country_code: 'KE', text: 'Kwale' },
1405
+ { value: 'KE-20', country_code: 'KE', text: 'Laikipia' },
1406
+ { value: 'KE-21', country_code: 'KE', text: 'Lamu' },
1407
+ { value: 'KE-22', country_code: 'KE', text: 'Machakos' },
1408
+ { value: 'KE-23', country_code: 'KE', text: 'Makueni' },
1409
+ { value: 'KE-24', country_code: 'KE', text: 'Mandera' },
1410
+ { value: 'KE-25', country_code: 'KE', text: 'Marsabit' },
1411
+ { value: 'KE-26', country_code: 'KE', text: 'Meru' },
1412
+ { value: 'KE-27', country_code: 'KE', text: 'Migori' },
1413
+ { value: 'KE-28', country_code: 'KE', text: 'Mombasa' },
1414
+ { value: 'KE-29', country_code: 'KE', text: "Murang'a" },
1415
+ { value: 'KE-30', country_code: 'KE', text: 'Nairobi City' },
1416
+ { value: 'KE-31', country_code: 'KE', text: 'Nakuru' },
1417
+ { value: 'KE-32', country_code: 'KE', text: 'Nandi' },
1418
+ { value: 'KE-33', country_code: 'KE', text: 'Narok' },
1419
+ { value: 'KE-34', country_code: 'KE', text: 'Nyamira' },
1420
+ { value: 'KE-36', country_code: 'KE', text: 'Nyeri' },
1421
+ { value: 'KE-37', country_code: 'KE', text: 'Samburu' },
1422
+ { value: 'KE-38', country_code: 'KE', text: 'Siaya' },
1423
+ { value: 'KE-39', country_code: 'KE', text: 'Taita/Taveta' },
1424
+ { value: 'KE-40', country_code: 'KE', text: 'Tana River' },
1425
+ { value: 'KE-41', country_code: 'KE', text: 'Tharaka-Nithi' },
1426
+ { value: 'KE-42', country_code: 'KE', text: 'Trans Nzoia' },
1427
+ { value: 'KE-43', country_code: 'KE', text: 'Turkana' },
1428
+ { value: 'KE-44', country_code: 'KE', text: 'Uasin Gishu' },
1429
+ { value: 'KE-45', country_code: 'KE', text: 'Vihiga' },
1430
+ { value: 'KE-46', country_code: 'KE', text: 'Wajir' },
1431
+ { value: 'KE-47', country_code: 'KE', text: 'West Pokot' },
1432
+ { value: 'KG-B', country_code: 'KG', text: 'Batken' },
1433
+ { value: 'KG-GB', country_code: 'KG', text: 'Bishkek' },
1434
+ { value: 'KG-C', country_code: 'KG', text: 'Chuy' },
1435
+ { value: 'KG-J', country_code: 'KG', text: 'Jalal-Abad' },
1436
+ { value: 'KG-N', country_code: 'KG', text: 'Naryn' },
1437
+ { value: 'KG-GO', country_code: 'KG', text: 'Osh' },
1438
+ { value: 'KG-T', country_code: 'KG', text: 'Talas' },
1439
+ { value: 'KG-Y', country_code: 'KG', text: 'Ysyk-Kol' },
1440
+ { value: 'KH-2', country_code: 'KH', text: 'Baat Dambang' },
1441
+ { value: 'KH-1', country_code: 'KH', text: 'Banteay Mean Chey' },
1442
+ { value: 'KH-3', country_code: 'KH', text: 'Kampong Chaam' },
1443
+ { value: 'KH-4', country_code: 'KH', text: 'Kampong Chhnang' },
1444
+ { value: 'KH-5', country_code: 'KH', text: 'Kampong Spueu' },
1445
+ { value: 'KH-6', country_code: 'KH', text: 'Kampong Thum' },
1446
+ { value: 'KH-7', country_code: 'KH', text: 'Kampot' },
1447
+ { value: 'KH-8', country_code: 'KH', text: 'Kandaal' },
1448
+ { value: 'KH-9', country_code: 'KH', text: 'Kaoh Kong' },
1449
+ { value: 'KH-10', country_code: 'KH', text: 'Kracheh' },
1450
+ { value: 'KH-23', country_code: 'KH', text: 'Krong Kaeb' },
1451
+ { value: 'KH-24', country_code: 'KH', text: 'Krong Pailin' },
1452
+ { value: 'KH-18', country_code: 'KH', text: 'Krong Preah Sihanouk' },
1453
+ { value: 'KH-11', country_code: 'KH', text: 'Mondol Kiri' },
1454
+ { value: 'KH-22', country_code: 'KH', text: 'Otdar Mean Chey' },
1455
+ { value: 'KH-12', country_code: 'KH', text: 'Phnom Penh' },
1456
+ { value: 'KH-15', country_code: 'KH', text: 'Pousaat' },
1457
+ { value: 'KH-13', country_code: 'KH', text: 'Preah Vihear' },
1458
+ { value: 'KH-14', country_code: 'KH', text: 'Prey Veaeng' },
1459
+ { value: 'KH-16', country_code: 'KH', text: 'Rotanak Kiri' },
1460
+ { value: 'KH-17', country_code: 'KH', text: 'Siem Reab' },
1461
+ { value: 'KH-19', country_code: 'KH', text: 'Stueng Traeng' },
1462
+ { value: 'KH-20', country_code: 'KH', text: 'Svaay Rieng' },
1463
+ { value: 'KH-21', country_code: 'KH', text: 'Taakaev' },
1464
+ { value: 'KI-G', country_code: 'KI', text: 'Gilbert Islands' },
1465
+ { value: 'KI-L', country_code: 'KI', text: 'Line Islands' },
1466
+ { value: 'KM-A', country_code: 'KM', text: 'Anjouan' },
1467
+ { value: 'KM-G', country_code: 'KM', text: 'Grande Comore' },
1468
+ { value: 'KM-M', country_code: 'KM', text: 'Moheli' },
1469
+ { value: 'KN-03', country_code: 'KN', text: 'Saint George Basseterre' },
1470
+ { value: 'KN-10', country_code: 'KN', text: 'Saint Paul Charlestown' },
1471
+ { value: 'KP-04', country_code: 'KP', text: 'Chagang-do' },
1472
+ { value: 'KP-09', country_code: 'KP', text: 'Hamgyong-bukto' },
1473
+ { value: 'KP-08', country_code: 'KP', text: 'Hamgyong-namdo' },
1474
+ { value: 'KP-06', country_code: 'KP', text: 'Hwanghae-bukto' },
1475
+ { value: 'KP-05', country_code: 'KP', text: 'Hwanghae-namdo' },
1476
+ { value: 'KP-07', country_code: 'KP', text: 'Kangwon-do' },
1477
+ { value: 'KP-13', country_code: 'KP', text: 'Nason' },
1478
+ { value: 'KP-03', country_code: 'KP', text: "P'yongan-bukto" },
1479
+ { value: 'KP-02', country_code: 'KP', text: "P'yongan-namdo" },
1480
+ { value: 'KP-01', country_code: 'KP', text: "P'yongyang" },
1481
+ { value: 'KP-10', country_code: 'KP', text: 'Yanggang-do' },
1482
+ { value: 'KR-26', country_code: 'KR', text: 'Busan-gwangyeoksi' },
1483
+ { value: 'KR-43', country_code: 'KR', text: 'Chungcheongbuk-do' },
1484
+ { value: 'KR-44', country_code: 'KR', text: 'Chungcheongnam-do' },
1485
+ { value: 'KR-27', country_code: 'KR', text: 'Daegu-gwangyeoksi' },
1486
+ { value: 'KR-30', country_code: 'KR', text: 'Daejeon-gwangyeoksi' },
1487
+ { value: 'KR-42', country_code: 'KR', text: 'Gangwon-do' },
1488
+ { value: 'KR-29', country_code: 'KR', text: 'Gwangju-gwangyeoksi' },
1489
+ { value: 'KR-41', country_code: 'KR', text: 'Gyeonggi-do' },
1490
+ { value: 'KR-47', country_code: 'KR', text: 'Gyeongsangbuk-do' },
1491
+ { value: 'KR-48', country_code: 'KR', text: 'Gyeongsangnam-do' },
1492
+ { value: 'KR-28', country_code: 'KR', text: 'Incheon-gwangyeoksi' },
1493
+ { value: 'KR-49', country_code: 'KR', text: 'Jeju-teukbyeoljachido' },
1494
+ { value: 'KR-45', country_code: 'KR', text: 'Jeollabuk-do' },
1495
+ { value: 'KR-46', country_code: 'KR', text: 'Jeollanam-do' },
1496
+ { value: 'KR-11', country_code: 'KR', text: 'Seoul-teukbyeolsi' },
1497
+ { value: 'KR-31', country_code: 'KR', text: 'Ulsan-gwangyeoksi' },
1498
+ { value: 'KW-KU', country_code: 'KW', text: "Al 'Asimah" },
1499
+ { value: 'KW-AH', country_code: 'KW', text: 'Al Ahmadi' },
1500
+ { value: 'KW-FA', country_code: 'KW', text: 'Al Farwaniyah' },
1501
+ { value: 'KW-JA', country_code: 'KW', text: 'Al Jahra' },
1502
+ { value: 'KW-HA', country_code: 'KW', text: 'Hawalli' },
1503
+ { value: 'KW-MU', country_code: 'KW', text: 'Mubarak al Kabir' },
1504
+ { value: 'KZ-ALA', country_code: 'KZ', text: 'Almaty' },
1505
+ { value: 'KZ-ALM', country_code: 'KZ', text: 'Almaty oblysy' },
1506
+ { value: 'KZ-AKM', country_code: 'KZ', text: 'Aqmola oblysy' },
1507
+ { value: 'KZ-AKT', country_code: 'KZ', text: 'Aqtobe oblysy' },
1508
+ { value: 'KZ-AST', country_code: 'KZ', text: 'Astana' },
1509
+ { value: 'KZ-ATY', country_code: 'KZ', text: 'Atyrau oblysy' },
1510
+ { value: 'KZ-ZAP', country_code: 'KZ', text: 'Batys Qazaqstan oblysy' },
1511
+ { value: 'KZ-BAY', country_code: 'KZ', text: 'Bayqongyr' },
1512
+ { value: 'KZ-MAN', country_code: 'KZ', text: 'Mangghystau oblysy' },
1513
+ { value: 'KZ-YUZ', country_code: 'KZ', text: 'Ongtustik Qazaqstan oblysy' },
1514
+ { value: 'KZ-PAV', country_code: 'KZ', text: 'Pavlodar oblysy' },
1515
+ { value: 'KZ-KAR', country_code: 'KZ', text: 'Qaraghandy oblysy' },
1516
+ { value: 'KZ-KUS', country_code: 'KZ', text: 'Qostanay oblysy' },
1517
+ { value: 'KZ-KZY', country_code: 'KZ', text: 'Qyzylorda oblysy' },
1518
+ { value: 'KZ-VOS', country_code: 'KZ', text: 'Shyghys Qazaqstan oblysy' },
1519
+ { value: 'KZ-SEV', country_code: 'KZ', text: 'Soltustik Qazaqstan oblysy' },
1520
+ { value: 'KZ-ZHA', country_code: 'KZ', text: 'Zhambyl oblysy' },
1521
+ { value: 'LA-AT', country_code: 'LA', text: 'Attapu' },
1522
+ { value: 'LA-BK', country_code: 'LA', text: 'Bokeo' },
1523
+ { value: 'LA-BL', country_code: 'LA', text: 'Bolikhamxai' },
1524
+ { value: 'LA-CH', country_code: 'LA', text: 'Champasak' },
1525
+ { value: 'LA-HO', country_code: 'LA', text: 'Houaphan' },
1526
+ { value: 'LA-KH', country_code: 'LA', text: 'Khammouan' },
1527
+ { value: 'LA-LM', country_code: 'LA', text: 'Louang Namtha' },
1528
+ { value: 'LA-LP', country_code: 'LA', text: 'Louangphabang' },
1529
+ { value: 'LA-OU', country_code: 'LA', text: 'Oudomxai' },
1530
+ { value: 'LA-PH', country_code: 'LA', text: 'Phongsali' },
1531
+ { value: 'LA-SL', country_code: 'LA', text: 'Salavan' },
1532
+ { value: 'LA-SV', country_code: 'LA', text: 'Savannakhet' },
1533
+ { value: 'LA-VI', country_code: 'LA', text: 'Viangchan' },
1534
+ { value: 'LA-XA', country_code: 'LA', text: 'Xaignabouli' },
1535
+ { value: 'LA-XE', country_code: 'LA', text: 'Xekong' },
1536
+ { value: 'LA-XI', country_code: 'LA', text: 'Xiangkhouang' },
1537
+ { value: 'LB-AK', country_code: 'LB', text: 'Aakkar' },
1538
+ { value: 'LB-BH', country_code: 'LB', text: 'Baalbek-Hermel' },
1539
+ { value: 'LB-BI', country_code: 'LB', text: 'Beqaa' },
1540
+ { value: 'LB-BA', country_code: 'LB', text: 'Beyrouth' },
1541
+ { value: 'LB-AS', country_code: 'LB', text: 'Liban-Nord' },
1542
+ { value: 'LB-JA', country_code: 'LB', text: 'Liban-Sud' },
1543
+ { value: 'LB-JL', country_code: 'LB', text: 'Mont-Liban' },
1544
+ { value: 'LB-NA', country_code: 'LB', text: 'Nabatiye' },
1545
+ { value: 'LC-01', country_code: 'LC', text: 'Anse la Raye' },
1546
+ { value: 'LC-02', country_code: 'LC', text: 'Castries' },
1547
+ { value: 'LC-05', country_code: 'LC', text: 'Dennery' },
1548
+ { value: 'LC-06', country_code: 'LC', text: 'Gros Islet' },
1549
+ { value: 'LC-07', country_code: 'LC', text: 'Laborie' },
1550
+ { value: 'LC-08', country_code: 'LC', text: 'Micoud' },
1551
+ { value: 'LC-10', country_code: 'LC', text: 'Soufriere' },
1552
+ { value: 'LC-11', country_code: 'LC', text: 'Vieux Fort' },
1553
+ { value: 'LI-01', country_code: 'LI', text: 'Balzers' },
1554
+ { value: 'LI-02', country_code: 'LI', text: 'Eschen' },
1555
+ { value: 'LI-03', country_code: 'LI', text: 'Gamprin' },
1556
+ { value: 'LI-04', country_code: 'LI', text: 'Mauren' },
1557
+ { value: 'LI-05', country_code: 'LI', text: 'Planken' },
1558
+ { value: 'LI-06', country_code: 'LI', text: 'Ruggell' },
1559
+ { value: 'LI-07', country_code: 'LI', text: 'Schaan' },
1560
+ { value: 'LI-08', country_code: 'LI', text: 'Schellenberg' },
1561
+ { value: 'LI-09', country_code: 'LI', text: 'Triesen' },
1562
+ { value: 'LI-10', country_code: 'LI', text: 'Triesenberg' },
1563
+ { value: 'LI-11', country_code: 'LI', text: 'Vaduz' },
1564
+ { value: 'LK-2', country_code: 'LK', text: 'Central Province' },
1565
+ { value: 'LK-5', country_code: 'LK', text: 'Eastern Province' },
1566
+ { value: 'LK-7', country_code: 'LK', text: 'North Central Province' },
1567
+ { value: 'LK-6', country_code: 'LK', text: 'North Western Province' },
1568
+ { value: 'LK-4', country_code: 'LK', text: 'Northern Province' },
1569
+ { value: 'LK-9', country_code: 'LK', text: 'Sabaragamuwa Province' },
1570
+ { value: 'LK-3', country_code: 'LK', text: 'Southern Province' },
1571
+ { value: 'LK-8', country_code: 'LK', text: 'Uva Province' },
1572
+ { value: 'LK-1', country_code: 'LK', text: 'Western Province' },
1573
+ { value: 'LR-BM', country_code: 'LR', text: 'Bomi' },
1574
+ { value: 'LR-BG', country_code: 'LR', text: 'Bong' },
1575
+ { value: 'LR-GP', country_code: 'LR', text: 'Gbarpolu' },
1576
+ { value: 'LR-GB', country_code: 'LR', text: 'Grand Bassa' },
1577
+ { value: 'LR-CM', country_code: 'LR', text: 'Grand Cape Mount' },
1578
+ { value: 'LR-GG', country_code: 'LR', text: 'Grand Gedeh' },
1579
+ { value: 'LR-GK', country_code: 'LR', text: 'Grand Kru' },
1580
+ { value: 'LR-LO', country_code: 'LR', text: 'Lofa' },
1581
+ { value: 'LR-MG', country_code: 'LR', text: 'Margibi' },
1582
+ { value: 'LR-MY', country_code: 'LR', text: 'Maryland' },
1583
+ { value: 'LR-MO', country_code: 'LR', text: 'Montserrado' },
1584
+ { value: 'LR-NI', country_code: 'LR', text: 'Nimba' },
1585
+ { value: 'LR-RI', country_code: 'LR', text: 'River Cess' },
1586
+ { value: 'LR-RG', country_code: 'LR', text: 'River Gee' },
1587
+ { value: 'LR-SI', country_code: 'LR', text: 'Sinoe' },
1588
+ { value: 'LS-D', country_code: 'LS', text: 'Berea' },
1589
+ { value: 'LS-B', country_code: 'LS', text: 'Butha-Buthe' },
1590
+ { value: 'LS-C', country_code: 'LS', text: 'Leribe' },
1591
+ { value: 'LS-E', country_code: 'LS', text: 'Mafeteng' },
1592
+ { value: 'LS-A', country_code: 'LS', text: 'Maseru' },
1593
+ { value: 'LS-F', country_code: 'LS', text: "Mohale's Hoek" },
1594
+ { value: 'LS-J', country_code: 'LS', text: 'Mokhotlong' },
1595
+ { value: 'LS-H', country_code: 'LS', text: "Qacha's Nek" },
1596
+ { value: 'LS-G', country_code: 'LS', text: 'Quthing' },
1597
+ { value: 'LS-K', country_code: 'LS', text: 'Thaba-Tseka' },
1598
+ { value: 'LT-AL', country_code: 'LT', text: 'Alytaus apskritis' },
1599
+ { value: 'LT-KU', country_code: 'LT', text: 'Kauno apskritis' },
1600
+ { value: 'LT-KL', country_code: 'LT', text: 'Klaipedos apskritis' },
1601
+ { value: 'LT-MR', country_code: 'LT', text: 'Marijampoles apskritis' },
1602
+ { value: 'LT-PN', country_code: 'LT', text: 'Panevezio apskritis' },
1603
+ { value: 'LT-SA', country_code: 'LT', text: 'Siauliu apskritis' },
1604
+ { value: 'LT-TA', country_code: 'LT', text: 'Taurages apskritis' },
1605
+ { value: 'LT-TE', country_code: 'LT', text: 'Telsiu apskritis' },
1606
+ { value: 'LT-UT', country_code: 'LT', text: 'Utenos apskritis' },
1607
+ { value: 'LT-VL', country_code: 'LT', text: 'Vilniaus apskritis' },
1608
+ { value: 'LU-DI', country_code: 'LU', text: 'Diekirch' },
1609
+ { value: 'LU-GR', country_code: 'LU', text: 'Grevenmacher' },
1610
+ { value: 'LU-LU', country_code: 'LU', text: 'Luxembourg' },
1611
+ { value: 'LV-011', country_code: 'LV', text: 'Adazu novads' },
1612
+ { value: 'LV-001', country_code: 'LV', text: 'Aglonas novads' },
1613
+ { value: 'LV-002', country_code: 'LV', text: 'Aizkraukles novads' },
1614
+ { value: 'LV-003', country_code: 'LV', text: 'Aizputes novads' },
1615
+ { value: 'LV-005', country_code: 'LV', text: 'Alojas novads' },
1616
+ { value: 'LV-007', country_code: 'LV', text: 'Aluksnes novads' },
1617
+ { value: 'LV-012', country_code: 'LV', text: 'Babites novads' },
1618
+ { value: 'LV-014', country_code: 'LV', text: 'Baltinavas novads' },
1619
+ { value: 'LV-015', country_code: 'LV', text: 'Balvu novads' },
1620
+ { value: 'LV-016', country_code: 'LV', text: 'Bauskas novads' },
1621
+ { value: 'LV-017', country_code: 'LV', text: 'Beverinas novads' },
1622
+ { value: 'LV-018', country_code: 'LV', text: 'Brocenu novads' },
1623
+ { value: 'LV-020', country_code: 'LV', text: 'Carnikavas novads' },
1624
+ { value: 'LV-022', country_code: 'LV', text: 'Cesu novads' },
1625
+ { value: 'LV-021', country_code: 'LV', text: 'Cesvaines novads' },
1626
+ { value: 'LV-023', country_code: 'LV', text: 'Ciblas novads' },
1627
+ { value: 'LV-025', country_code: 'LV', text: 'Daugavpils novads' },
1628
+ { value: 'LV-026', country_code: 'LV', text: 'Dobeles novads' },
1629
+ { value: 'LV-027', country_code: 'LV', text: 'Dundagas novads' },
1630
+ { value: 'LV-033', country_code: 'LV', text: 'Gulbenes novads' },
1631
+ { value: 'LV-034', country_code: 'LV', text: 'Iecavas novads' },
1632
+ { value: 'LV-037', country_code: 'LV', text: 'Incukalna novads' },
1633
+ { value: 'LV-038', country_code: 'LV', text: 'Jaunjelgavas novads' },
1634
+ { value: 'LV-039', country_code: 'LV', text: 'Jaunpiebalgas novads' },
1635
+ { value: 'LV-040', country_code: 'LV', text: 'Jaunpils novads' },
1636
+ { value: 'LV-042', country_code: 'LV', text: 'Jekabpils novads' },
1637
+ { value: 'LV-JEL', country_code: 'LV', text: 'Jelgava' },
1638
+ { value: 'LV-041', country_code: 'LV', text: 'Jelgavas novads' },
1639
+ { value: 'LV-JUR', country_code: 'LV', text: 'Jurmala' },
1640
+ { value: 'LV-052', country_code: 'LV', text: 'Kekavas novads' },
1641
+ { value: 'LV-046', country_code: 'LV', text: 'Kokneses novads' },
1642
+ { value: 'LV-047', country_code: 'LV', text: 'Kraslavas novads' },
1643
+ { value: 'LV-050', country_code: 'LV', text: 'Kuldigas novads' },
1644
+ { value: 'LV-LPX', country_code: 'LV', text: 'Liepaja' },
1645
+ { value: 'LV-054', country_code: 'LV', text: 'Limbazu novads' },
1646
+ { value: 'LV-057', country_code: 'LV', text: 'Lubanas novads' },
1647
+ { value: 'LV-058', country_code: 'LV', text: 'Ludzas novads' },
1648
+ { value: 'LV-059', country_code: 'LV', text: 'Madonas novads' },
1649
+ { value: 'LV-061', country_code: 'LV', text: 'Malpils novads' },
1650
+ { value: 'LV-067', country_code: 'LV', text: 'Ogres novads' },
1651
+ { value: 'LV-068', country_code: 'LV', text: 'Olaines novads' },
1652
+ { value: 'LV-069', country_code: 'LV', text: 'Ozolnieku novads' },
1653
+ { value: 'LV-073', country_code: 'LV', text: 'Preilu novads' },
1654
+ { value: 'LV-077', country_code: 'LV', text: 'Rezeknes novads' },
1655
+ { value: 'LV-RIX', country_code: 'LV', text: 'Riga' },
1656
+ { value: 'LV-079', country_code: 'LV', text: 'Rojas novads' },
1657
+ { value: 'LV-080', country_code: 'LV', text: 'Ropazu novads' },
1658
+ { value: 'LV-082', country_code: 'LV', text: 'Rugaju novads' },
1659
+ { value: 'LV-083', country_code: 'LV', text: 'Rundales novads' },
1660
+ { value: 'LV-086', country_code: 'LV', text: 'Salacgrivas novads' },
1661
+ { value: 'LV-088', country_code: 'LV', text: 'Saldus novads' },
1662
+ { value: 'LV-090', country_code: 'LV', text: 'Sejas novads' },
1663
+ { value: 'LV-091', country_code: 'LV', text: 'Siguldas novads' },
1664
+ { value: 'LV-093', country_code: 'LV', text: 'Skrundas novads' },
1665
+ { value: 'LV-095', country_code: 'LV', text: 'Stopinu novads' },
1666
+ { value: 'LV-096', country_code: 'LV', text: 'Strencu novads' },
1667
+ { value: 'LV-097', country_code: 'LV', text: 'Talsu novads' },
1668
+ { value: 'LV-099', country_code: 'LV', text: 'Tukuma novads' },
1669
+ { value: 'LV-100', country_code: 'LV', text: 'Vainodes novads' },
1670
+ { value: 'LV-101', country_code: 'LV', text: 'Valkas novads' },
1671
+ { value: 'LV-VMR', country_code: 'LV', text: 'Valmiera' },
1672
+ { value: 'LV-103', country_code: 'LV', text: 'Varkavas novads' },
1673
+ { value: 'LV-105', country_code: 'LV', text: 'Vecumnieku novads' },
1674
+ { value: 'LV-106', country_code: 'LV', text: 'Ventspils novads' },
1675
+ { value: 'LY-BU', country_code: 'LY', text: 'Al Butnan' },
1676
+ { value: 'LY-JA', country_code: 'LY', text: 'Al Jabal al Akhdar' },
1677
+ { value: 'LY-JG', country_code: 'LY', text: 'Al Jabal al Gharbi' },
1678
+ { value: 'LY-JI', country_code: 'LY', text: 'Al Jafarah' },
1679
+ { value: 'LY-JU', country_code: 'LY', text: 'Al Jufrah' },
1680
+ { value: 'LY-KF', country_code: 'LY', text: 'Al Kufrah' },
1681
+ { value: 'LY-MJ', country_code: 'LY', text: 'Al Marj' },
1682
+ { value: 'LY-MB', country_code: 'LY', text: 'Al Marqab' },
1683
+ { value: 'LY-WA', country_code: 'LY', text: 'Al Wahat' },
1684
+ { value: 'LY-NQ', country_code: 'LY', text: 'An Nuqat al Khams' },
1685
+ { value: 'LY-ZA', country_code: 'LY', text: 'Az Zawiyah' },
1686
+ { value: 'LY-BA', country_code: 'LY', text: 'Banghazi' },
1687
+ { value: 'LY-DR', country_code: 'LY', text: 'Darnah' },
1688
+ { value: 'LY-GT', country_code: 'LY', text: 'Ghat' },
1689
+ { value: 'LY-MI', country_code: 'LY', text: 'Misratah' },
1690
+ { value: 'LY-MQ', country_code: 'LY', text: 'Murzuq' },
1691
+ { value: 'LY-NL', country_code: 'LY', text: 'Nalut' },
1692
+ { value: 'LY-SB', country_code: 'LY', text: 'Sabha' },
1693
+ { value: 'LY-SR', country_code: 'LY', text: 'Surt' },
1694
+ { value: 'LY-TB', country_code: 'LY', text: 'Tarabulus' },
1695
+ { value: 'LY-WD', country_code: 'LY', text: 'Wadi al Hayat' },
1696
+ { value: 'LY-WS', country_code: 'LY', text: "Wadi ash Shati'" },
1697
+ { value: 'MA-09', country_code: 'MA', text: 'Chaouia-Ouardigha' },
1698
+ { value: 'MA-10', country_code: 'MA', text: 'Doukhala-Abda' },
1699
+ { value: 'MA-05', country_code: 'MA', text: 'Fes-Boulemane' },
1700
+ { value: 'MA-02', country_code: 'MA', text: 'Gharb-Chrarda-Beni Hssen' },
1701
+ { value: 'MA-08', country_code: 'MA', text: 'Grand Casablanca' },
1702
+ { value: 'MA-14', country_code: 'MA', text: 'Guelmim-Es Semara' },
1703
+ { value: 'MA-04', country_code: 'MA', text: "L'Oriental" },
1704
+ { value: 'MA-11', country_code: 'MA', text: 'Marrakech-Tensift-Al Haouz' },
1705
+ { value: 'MA-06', country_code: 'MA', text: 'Meknes-Tafilalet' },
1706
+ { value: 'MA-07', country_code: 'MA', text: 'Rabat-Sale-Zemmour-Zaer' },
1707
+ { value: 'MA-13', country_code: 'MA', text: 'Souss-Massa-Draa' },
1708
+ { value: 'MA-12', country_code: 'MA', text: 'Tadla-Azilal' },
1709
+ { value: 'MA-01', country_code: 'MA', text: 'Tanger-Tetouan' },
1710
+ { value: 'MA-03', country_code: 'MA', text: 'Taza-Al Hoceima-Taounate' },
1711
+ { value: 'MC-FO', country_code: 'MC', text: 'Fontvieille' },
1712
+ { value: 'MC-CO', country_code: 'MC', text: 'La Condamine' },
1713
+ { value: 'MC-MO', country_code: 'MC', text: 'Monaco-Ville' },
1714
+ { value: 'MC-MG', country_code: 'MC', text: 'Moneghetti' },
1715
+ { value: 'MC-MC', country_code: 'MC', text: 'Monte-Carlo' },
1716
+ { value: 'MC-SR', country_code: 'MC', text: 'Saint-Roman' },
1717
+ { value: 'MD-AN', country_code: 'MD', text: 'Anenii Noi' },
1718
+ { value: 'MD-BA', country_code: 'MD', text: 'Balti' },
1719
+ { value: 'MD-BS', country_code: 'MD', text: 'Basarabeasca' },
1720
+ { value: 'MD-BD', country_code: 'MD', text: 'Bender' },
1721
+ { value: 'MD-BR', country_code: 'MD', text: 'Briceni' },
1722
+ { value: 'MD-CA', country_code: 'MD', text: 'Cahul' },
1723
+ { value: 'MD-CL', country_code: 'MD', text: 'Calarasi' },
1724
+ { value: 'MD-CT', country_code: 'MD', text: 'Cantemir' },
1725
+ { value: 'MD-CS', country_code: 'MD', text: 'Causeni' },
1726
+ { value: 'MD-CU', country_code: 'MD', text: 'Chisinau' },
1727
+ { value: 'MD-CM', country_code: 'MD', text: 'Cimislia' },
1728
+ { value: 'MD-CR', country_code: 'MD', text: 'Criuleni' },
1729
+ { value: 'MD-DO', country_code: 'MD', text: 'Donduseni' },
1730
+ { value: 'MD-DR', country_code: 'MD', text: 'Drochia' },
1731
+ { value: 'MD-DU', country_code: 'MD', text: 'Dubasari' },
1732
+ { value: 'MD-ED', country_code: 'MD', text: 'Edinet' },
1733
+ { value: 'MD-FA', country_code: 'MD', text: 'Falesti' },
1734
+ { value: 'MD-FL', country_code: 'MD', text: 'Floresti' },
1735
+ { value: 'MD-GA', country_code: 'MD', text: 'Gagauzia, Unitatea teritoriala autonoma' },
1736
+ { value: 'MD-GL', country_code: 'MD', text: 'Glodeni' },
1737
+ { value: 'MD-HI', country_code: 'MD', text: 'Hincesti' },
1738
+ { value: 'MD-IA', country_code: 'MD', text: 'Ialoveni' },
1739
+ { value: 'MD-LE', country_code: 'MD', text: 'Leova' },
1740
+ { value: 'MD-NI', country_code: 'MD', text: 'Nisporeni' },
1741
+ { value: 'MD-OC', country_code: 'MD', text: 'Ocnita' },
1742
+ { value: 'MD-OR', country_code: 'MD', text: 'Orhei' },
1743
+ { value: 'MD-RE', country_code: 'MD', text: 'Rezina' },
1744
+ { value: 'MD-RI', country_code: 'MD', text: 'Riscani' },
1745
+ { value: 'MD-SI', country_code: 'MD', text: 'Singerei' },
1746
+ { value: 'MD-SD', country_code: 'MD', text: 'Soldanesti' },
1747
+ { value: 'MD-SO', country_code: 'MD', text: 'Soroca' },
1748
+ { value: 'MD-SV', country_code: 'MD', text: 'Stefan Voda' },
1749
+ { value: 'MD-SN', country_code: 'MD', text: 'Stinga Nistrului, unitatea teritoriala din' },
1750
+ { value: 'MD-ST', country_code: 'MD', text: 'Straseni' },
1751
+ { value: 'MD-TA', country_code: 'MD', text: 'Taraclia' },
1752
+ { value: 'MD-TE', country_code: 'MD', text: 'Telenesti' },
1753
+ { value: 'MD-UN', country_code: 'MD', text: 'Ungheni' },
1754
+ { value: 'ME-02', country_code: 'ME', text: 'Bar' },
1755
+ { value: 'ME-05', country_code: 'ME', text: 'Budva' },
1756
+ { value: 'ME-06', country_code: 'ME', text: 'Cetinje' },
1757
+ { value: 'ME-07', country_code: 'ME', text: 'Danilovgrad' },
1758
+ { value: 'ME-08', country_code: 'ME', text: 'Herceg-Novi' },
1759
+ { value: 'ME-09', country_code: 'ME', text: 'Kolasin' },
1760
+ { value: 'ME-10', country_code: 'ME', text: 'Kotor' },
1761
+ { value: 'ME-11', country_code: 'ME', text: 'Mojkovac' },
1762
+ { value: 'ME-12', country_code: 'ME', text: 'Niksic' },
1763
+ { value: 'ME-16', country_code: 'ME', text: 'Podgorica' },
1764
+ { value: 'ME-19', country_code: 'ME', text: 'Tivat' },
1765
+ { value: 'ME-20', country_code: 'ME', text: 'Ulcinj' },
1766
+ { value: 'ME-21', country_code: 'ME', text: 'Zabljak' },
1767
+ { value: 'MG-T', country_code: 'MG', text: 'Antananarivo' },
1768
+ { value: 'MG-D', country_code: 'MG', text: 'Antsiranana' },
1769
+ { value: 'MG-F', country_code: 'MG', text: 'Fianarantsoa' },
1770
+ { value: 'MG-M', country_code: 'MG', text: 'Mahajanga' },
1771
+ { value: 'MG-A', country_code: 'MG', text: 'Toamasina' },
1772
+ { value: 'MG-U', country_code: 'MG', text: 'Toliara' },
1773
+ { value: 'MH-ALL', country_code: 'MH', text: 'Ailinglaplap' },
1774
+ { value: 'MH-ALK', country_code: 'MH', text: 'Ailuk' },
1775
+ { value: 'MH-ARN', country_code: 'MH', text: 'Arno' },
1776
+ { value: 'MH-AUR', country_code: 'MH', text: 'Aur' },
1777
+ { value: 'MH-KIL', country_code: 'MH', text: 'Bikini and Kili' },
1778
+ { value: 'MH-EBO', country_code: 'MH', text: 'Ebon' },
1779
+ { value: 'MH-ENI', country_code: 'MH', text: 'Enewetak and Ujelang' },
1780
+ { value: 'MH-JAB', country_code: 'MH', text: 'Jabat' },
1781
+ { value: 'MH-JAL', country_code: 'MH', text: 'Jaluit' },
1782
+ { value: 'MH-KWA', country_code: 'MH', text: 'Kwajalein' },
1783
+ { value: 'MH-LAE', country_code: 'MH', text: 'Lae' },
1784
+ { value: 'MH-LIB', country_code: 'MH', text: 'Lib' },
1785
+ { value: 'MH-LIK', country_code: 'MH', text: 'Likiep' },
1786
+ { value: 'MH-MAJ', country_code: 'MH', text: 'Majuro' },
1787
+ { value: 'MH-MAL', country_code: 'MH', text: 'Maloelap' },
1788
+ { value: 'MH-MEJ', country_code: 'MH', text: 'Mejit' },
1789
+ { value: 'MH-MIL', country_code: 'MH', text: 'Mili' },
1790
+ { value: 'MH-NMK', country_code: 'MH', text: 'Namdrik' },
1791
+ { value: 'MH-NMU', country_code: 'MH', text: 'Namu' },
1792
+ { value: 'MH-RON', country_code: 'MH', text: 'Rongelap' },
1793
+ { value: 'MH-UJA', country_code: 'MH', text: 'Ujae' },
1794
+ { value: 'MH-UTI', country_code: 'MH', text: 'Utrik' },
1795
+ { value: 'MH-WTH', country_code: 'MH', text: 'Wotho' },
1796
+ { value: 'MH-WTJ', country_code: 'MH', text: 'Wotje' },
1797
+ { value: 'MK-02', country_code: 'MK', text: 'Aracinovo' },
1798
+ { value: 'MK-03', country_code: 'MK', text: 'Berovo' },
1799
+ { value: 'MK-04', country_code: 'MK', text: 'Bitola' },
1800
+ { value: 'MK-05', country_code: 'MK', text: 'Bogdanci' },
1801
+ { value: 'MK-06', country_code: 'MK', text: 'Bogovinje' },
1802
+ { value: 'MK-07', country_code: 'MK', text: 'Bosilovo' },
1803
+ { value: 'MK-08', country_code: 'MK', text: 'Brvenica' },
1804
+ { value: 'MK-80', country_code: 'MK', text: 'Caska' },
1805
+ { value: 'MK-78', country_code: 'MK', text: 'Centar Zupa' },
1806
+ { value: 'MK-81', country_code: 'MK', text: 'Cesinovo-Oblesevo' },
1807
+ { value: 'MK-82', country_code: 'MK', text: 'Cucer Sandevo' },
1808
+ { value: 'MK-21', country_code: 'MK', text: 'Debar' },
1809
+ { value: 'MK-22', country_code: 'MK', text: 'Debarca' },
1810
+ { value: 'MK-23', country_code: 'MK', text: 'Delcevo' },
1811
+ { value: 'MK-25', country_code: 'MK', text: 'Demir Hisar' },
1812
+ { value: 'MK-24', country_code: 'MK', text: 'Demir Kapija' },
1813
+ { value: 'MK-26', country_code: 'MK', text: 'Dojran' },
1814
+ { value: 'MK-27', country_code: 'MK', text: 'Dolneni' },
1815
+ { value: 'MK-18', country_code: 'MK', text: 'Gevgelija' },
1816
+ { value: 'MK-19', country_code: 'MK', text: 'Gostivar' },
1817
+ { value: 'MK-20', country_code: 'MK', text: 'Gradsko' },
1818
+ { value: 'MK-34', country_code: 'MK', text: 'Ilinden' },
1819
+ { value: 'MK-35', country_code: 'MK', text: 'Jegunovce' },
1820
+ { value: 'MK-37', country_code: 'MK', text: 'Karbinci' },
1821
+ { value: 'MK-36', country_code: 'MK', text: 'Kavadarci' },
1822
+ { value: 'MK-40', country_code: 'MK', text: 'Kicevo' },
1823
+ { value: 'MK-42', country_code: 'MK', text: 'Kocani' },
1824
+ { value: 'MK-41', country_code: 'MK', text: 'Konce' },
1825
+ { value: 'MK-43', country_code: 'MK', text: 'Kratovo' },
1826
+ { value: 'MK-44', country_code: 'MK', text: 'Kriva Palanka' },
1827
+ { value: 'MK-45', country_code: 'MK', text: 'Krivogastani' },
1828
+ { value: 'MK-46', country_code: 'MK', text: 'Krusevo' },
1829
+ { value: 'MK-47', country_code: 'MK', text: 'Kumanovo' },
1830
+ { value: 'MK-48', country_code: 'MK', text: 'Lipkovo' },
1831
+ { value: 'MK-49', country_code: 'MK', text: 'Lozovo' },
1832
+ { value: 'MK-51', country_code: 'MK', text: 'Makedonska Kamenica' },
1833
+ { value: 'MK-52', country_code: 'MK', text: 'Makedonski Brod' },
1834
+ { value: 'MK-50', country_code: 'MK', text: 'Mavrovo i Rostusa' },
1835
+ { value: 'MK-53', country_code: 'MK', text: 'Mogila' },
1836
+ { value: 'MK-54', country_code: 'MK', text: 'Negotino' },
1837
+ { value: 'MK-55', country_code: 'MK', text: 'Novaci' },
1838
+ { value: 'MK-56', country_code: 'MK', text: 'Novo Selo' },
1839
+ { value: 'MK-58', country_code: 'MK', text: 'Ohrid' },
1840
+ { value: 'MK-60', country_code: 'MK', text: 'Pehcevo' },
1841
+ { value: 'MK-59', country_code: 'MK', text: 'Petrovec' },
1842
+ { value: 'MK-61', country_code: 'MK', text: 'Plasnica' },
1843
+ { value: 'MK-62', country_code: 'MK', text: 'Prilep' },
1844
+ { value: 'MK-63', country_code: 'MK', text: 'Probistip' },
1845
+ { value: 'MK-64', country_code: 'MK', text: 'Radovis' },
1846
+ { value: 'MK-65', country_code: 'MK', text: 'Rankovce' },
1847
+ { value: 'MK-66', country_code: 'MK', text: 'Resen' },
1848
+ { value: 'MK-67', country_code: 'MK', text: 'Rosoman' },
1849
+ { value: 'MK-85', country_code: 'MK', text: 'Skopje' },
1850
+ { value: 'MK-70', country_code: 'MK', text: 'Sopiste' },
1851
+ { value: 'MK-71', country_code: 'MK', text: 'Staro Nagoricane' },
1852
+ { value: 'MK-83', country_code: 'MK', text: 'Stip' },
1853
+ { value: 'MK-72', country_code: 'MK', text: 'Struga' },
1854
+ { value: 'MK-73', country_code: 'MK', text: 'Strumica' },
1855
+ { value: 'MK-74', country_code: 'MK', text: 'Studenicani' },
1856
+ { value: 'MK-69', country_code: 'MK', text: 'Sveti Nikole' },
1857
+ { value: 'MK-75', country_code: 'MK', text: 'Tearce' },
1858
+ { value: 'MK-76', country_code: 'MK', text: 'Tetovo' },
1859
+ { value: 'MK-10', country_code: 'MK', text: 'Valandovo' },
1860
+ { value: 'MK-11', country_code: 'MK', text: 'Vasilevo' },
1861
+ { value: 'MK-13', country_code: 'MK', text: 'Veles' },
1862
+ { value: 'MK-12', country_code: 'MK', text: 'Vevcani' },
1863
+ { value: 'MK-14', country_code: 'MK', text: 'Vinica' },
1864
+ { value: 'MK-16', country_code: 'MK', text: 'Vrapciste' },
1865
+ { value: 'MK-32', country_code: 'MK', text: 'Zelenikovo' },
1866
+ { value: 'MK-30', country_code: 'MK', text: 'Zelino' },
1867
+ { value: 'MK-33', country_code: 'MK', text: 'Zrnovci' },
1868
+ { value: 'ML-BKO', country_code: 'ML', text: 'Bamako' },
1869
+ { value: 'ML-7', country_code: 'ML', text: 'Gao' },
1870
+ { value: 'ML-1', country_code: 'ML', text: 'Kayes' },
1871
+ { value: 'ML-8', country_code: 'ML', text: 'Kidal' },
1872
+ { value: 'ML-2', country_code: 'ML', text: 'Koulikoro' },
1873
+ { value: 'ML-5', country_code: 'ML', text: 'Mopti' },
1874
+ { value: 'ML-4', country_code: 'ML', text: 'Segou' },
1875
+ { value: 'ML-3', country_code: 'ML', text: 'Sikasso' },
1876
+ { value: 'ML-6', country_code: 'ML', text: 'Tombouctou' },
1877
+ { value: 'MM-07', country_code: 'MM', text: 'Ayeyarwady' },
1878
+ { value: 'MM-02', country_code: 'MM', text: 'Bago' },
1879
+ { value: 'MM-14', country_code: 'MM', text: 'Chin' },
1880
+ { value: 'MM-11', country_code: 'MM', text: 'Kachin' },
1881
+ { value: 'MM-12', country_code: 'MM', text: 'Kayah' },
1882
+ { value: 'MM-13', country_code: 'MM', text: 'Kayin' },
1883
+ { value: 'MM-03', country_code: 'MM', text: 'Magway' },
1884
+ { value: 'MM-04', country_code: 'MM', text: 'Mandalay' },
1885
+ { value: 'MM-15', country_code: 'MM', text: 'Mon' },
1886
+ { value: 'MM-18', country_code: 'MM', text: 'Nay Pyi Taw' },
1887
+ { value: 'MM-16', country_code: 'MM', text: 'Rakhine' },
1888
+ { value: 'MM-01', country_code: 'MM', text: 'Sagaing' },
1889
+ { value: 'MM-17', country_code: 'MM', text: 'Shan' },
1890
+ { value: 'MM-05', country_code: 'MM', text: 'Tanintharyi' },
1891
+ { value: 'MM-06', country_code: 'MM', text: 'Yangon' },
1892
+ { value: 'MN-073', country_code: 'MN', text: 'Arhangay' },
1893
+ { value: 'MN-071', country_code: 'MN', text: 'Bayan-Olgiy' },
1894
+ { value: 'MN-069', country_code: 'MN', text: 'Bayanhongor' },
1895
+ { value: 'MN-067', country_code: 'MN', text: 'Bulgan' },
1896
+ { value: 'MN-037', country_code: 'MN', text: 'Darhan uul' },
1897
+ { value: 'MN-061', country_code: 'MN', text: 'Dornod' },
1898
+ { value: 'MN-063', country_code: 'MN', text: 'Dornogovi' },
1899
+ { value: 'MN-059', country_code: 'MN', text: 'Dundgovi' },
1900
+ { value: 'MN-057', country_code: 'MN', text: 'Dzavhan' },
1901
+ { value: 'MN-065', country_code: 'MN', text: 'Govi-Altay' },
1902
+ { value: 'MN-064', country_code: 'MN', text: 'Govi-Sumber' },
1903
+ { value: 'MN-039', country_code: 'MN', text: 'Hentiy' },
1904
+ { value: 'MN-043', country_code: 'MN', text: 'Hovd' },
1905
+ { value: 'MN-041', country_code: 'MN', text: 'Hovsgol' },
1906
+ { value: 'MN-053', country_code: 'MN', text: 'Omnogovi' },
1907
+ { value: 'MN-035', country_code: 'MN', text: 'Orhon' },
1908
+ { value: 'MN-055', country_code: 'MN', text: 'Ovorhangay' },
1909
+ { value: 'MN-049', country_code: 'MN', text: 'Selenge' },
1910
+ { value: 'MN-051', country_code: 'MN', text: 'Suhbaatar' },
1911
+ { value: 'MN-047', country_code: 'MN', text: 'Tov' },
1912
+ { value: 'MN-1', country_code: 'MN', text: 'Ulaanbaatar' },
1913
+ { value: 'MN-046', country_code: 'MN', text: 'Uvs' },
1914
+ { value: 'MR-07', country_code: 'MR', text: 'Adrar' },
1915
+ { value: 'MR-03', country_code: 'MR', text: 'Assaba' },
1916
+ { value: 'MR-05', country_code: 'MR', text: 'Brakna' },
1917
+ { value: 'MR-08', country_code: 'MR', text: 'Dakhlet Nouadhibou' },
1918
+ { value: 'MR-04', country_code: 'MR', text: 'Gorgol' },
1919
+ { value: 'MR-10', country_code: 'MR', text: 'Guidimaka' },
1920
+ { value: 'MR-01', country_code: 'MR', text: 'Hodh ech Chargui' },
1921
+ { value: 'MR-02', country_code: 'MR', text: 'Hodh el Gharbi' },
1922
+ { value: 'MR-12', country_code: 'MR', text: 'Inchiri' },
1923
+ { value: 'MR-14', country_code: 'MR', text: 'Nouakchott Nord' },
1924
+ { value: 'MR-09', country_code: 'MR', text: 'Tagant' },
1925
+ { value: 'MR-11', country_code: 'MR', text: 'Tiris Zemmour' },
1926
+ { value: 'MR-06', country_code: 'MR', text: 'Trarza' },
1927
+ { value: 'MT-01', country_code: 'MT', text: 'Attard' },
1928
+ { value: 'MT-02', country_code: 'MT', text: 'Balzan' },
1929
+ { value: 'MT-04', country_code: 'MT', text: 'Birkirkara' },
1930
+ { value: 'MT-05', country_code: 'MT', text: 'Birzebbuga' },
1931
+ { value: 'MT-06', country_code: 'MT', text: 'Bormla' },
1932
+ { value: 'MT-07', country_code: 'MT', text: 'Dingli' },
1933
+ { value: 'MT-13', country_code: 'MT', text: 'Ghajnsielem' },
1934
+ { value: 'MT-15', country_code: 'MT', text: 'Gharghur' },
1935
+ { value: 'MT-17', country_code: 'MT', text: 'Ghaxaq' },
1936
+ { value: 'MT-64', country_code: 'MT', text: 'Haz-Zabbar' },
1937
+ { value: 'MT-60', country_code: 'MT', text: 'Valletta' },
1938
+ { value: 'MT-03', country_code: 'MT', text: 'Birgu' },
1939
+ { value: 'MT-08', country_code: 'MT', text: 'Fgura' },
1940
+ { value: 'MT-09', country_code: 'MT', text: 'Floriana' },
1941
+ { value: 'MT-11', country_code: 'MT', text: 'Gudja' },
1942
+ { value: 'MT-18', country_code: 'MT', text: 'Hamrun' },
1943
+ { value: 'MT-21', country_code: 'MT', text: 'Kalkara' },
1944
+ { value: 'MT-26', country_code: 'MT', text: 'Marsa' },
1945
+ { value: 'MT-30', country_code: 'MT', text: 'Mellieha' },
1946
+ { value: 'MT-32', country_code: 'MT', text: 'Mosta' },
1947
+ { value: 'MT-42', country_code: 'MT', text: 'Qala' },
1948
+ { value: 'MT-44', country_code: 'MT', text: 'Qrendi' },
1949
+ { value: 'MT-37', country_code: 'MT', text: 'Nadur' },
1950
+ { value: 'MT-38', country_code: 'MT', text: 'Naxxar' },
1951
+ { value: 'MT-46', country_code: 'MT', text: 'Rabat Malta' },
1952
+ { value: 'MT-55', country_code: 'MT', text: 'Siggiewi' },
1953
+ { value: 'MT-57', country_code: 'MT', text: 'Swieqi' },
1954
+ { value: 'MT-61', country_code: 'MT', text: 'Xaghra' },
1955
+ { value: 'MT-62', country_code: 'MT', text: 'Xewkija' },
1956
+ { value: 'MT-65', country_code: 'MT', text: 'Zebbug Gozo' },
1957
+ { value: 'MT-67', country_code: 'MT', text: 'Zejtun' },
1958
+ { value: 'MT-68', country_code: 'MT', text: 'Zurrieq' },
1959
+ { value: 'MT-23', country_code: 'MT', text: 'Kirkop' },
1960
+ { value: 'MT-19', country_code: 'MT', text: 'Iklin' },
1961
+ { value: 'MT-33', country_code: 'MT', text: 'Mqabba' },
1962
+ { value: 'MT-34', country_code: 'MT', text: 'Msida' },
1963
+ { value: 'MT-20', country_code: 'MT', text: 'Isla' },
1964
+ { value: 'MT-24', country_code: 'MT', text: 'Lija' },
1965
+ { value: 'MT-25', country_code: 'MT', text: 'Luqa' },
1966
+ { value: 'MT-28', country_code: 'MT', text: 'Marsaxlokk' },
1967
+ { value: 'MT-39', country_code: 'MT', text: 'Paola' },
1968
+ { value: 'MT-43', country_code: 'MT', text: 'Qormi' },
1969
+ { value: 'MT-47', country_code: 'MT', text: 'Safi' },
1970
+ { value: 'MT-49', country_code: 'MT', text: 'Saint John' },
1971
+ { value: 'MT-48', country_code: 'MT', text: 'Saint Julian' },
1972
+ { value: 'MT-53', country_code: 'MT', text: 'Saint Lucia' },
1973
+ { value: 'MT-51', country_code: 'MT', text: "Saint Paul's Bay" },
1974
+ { value: 'MT-54', country_code: 'MT', text: 'Saint Venera' },
1975
+ { value: 'MT-52', country_code: 'MT', text: 'Sannat' },
1976
+ { value: 'MT-22', country_code: 'MT', text: 'Kercem' },
1977
+ { value: 'MT-58', country_code: 'MT', text: "Ta' Xbiex" },
1978
+ { value: 'MT-59', country_code: 'MT', text: 'Tarxien' },
1979
+ { value: 'MT-56', country_code: 'MT', text: 'Sliema' },
1980
+ { value: 'MT-45', country_code: 'MT', text: 'Rabat Gozo' },
1981
+ { value: 'MU-BL', country_code: 'MU', text: 'Black River' },
1982
+ { value: 'MU-FL', country_code: 'MU', text: 'Flacq' },
1983
+ { value: 'MU-GP', country_code: 'MU', text: 'Grand Port' },
1984
+ { value: 'MU-MO', country_code: 'MU', text: 'Moka' },
1985
+ { value: 'MU-PA', country_code: 'MU', text: 'Pamplemousses' },
1986
+ { value: 'MU-PW', country_code: 'MU', text: 'Plaines Wilhems' },
1987
+ { value: 'MU-PU', country_code: 'MU', text: 'Port Louis' },
1988
+ { value: 'MU-RR', country_code: 'MU', text: 'Riviere du Rempart' },
1989
+ { value: 'MU-SA', country_code: 'MU', text: 'Savanne' },
1990
+ { value: 'MV-02', country_code: 'MV', text: 'Alifu Alifu' },
1991
+ { value: 'MV-20', country_code: 'MV', text: 'Baa' },
1992
+ { value: 'MV-17', country_code: 'MV', text: 'Dhaalu' },
1993
+ { value: 'MV-28', country_code: 'MV', text: 'Gaafu Dhaalu' },
1994
+ { value: 'MV-07', country_code: 'MV', text: 'Haa Alifu' },
1995
+ { value: 'MV-23', country_code: 'MV', text: 'Haa Dhaalu' },
1996
+ { value: 'MV-26', country_code: 'MV', text: 'Kaafu' },
1997
+ { value: 'MV-05', country_code: 'MV', text: 'Laamu' },
1998
+ { value: 'MV-MLE', country_code: 'MV', text: 'Maale' },
1999
+ { value: 'MV-12', country_code: 'MV', text: 'Meemu' },
2000
+ { value: 'MV-25', country_code: 'MV', text: 'Noonu' },
2001
+ { value: 'MV-13', country_code: 'MV', text: 'Raa' },
2002
+ { value: 'MV-01', country_code: 'MV', text: 'Seenu' },
2003
+ { value: 'MV-24', country_code: 'MV', text: 'Shaviyani' },
2004
+ { value: 'MV-08', country_code: 'MV', text: 'Thaa' },
2005
+ { value: 'MW-BA', country_code: 'MW', text: 'Balaka' },
2006
+ { value: 'MW-BL', country_code: 'MW', text: 'Blantyre' },
2007
+ { value: 'MW-CK', country_code: 'MW', text: 'Chikwawa' },
2008
+ { value: 'MW-CR', country_code: 'MW', text: 'Chiradzulu' },
2009
+ { value: 'MW-CT', country_code: 'MW', text: 'Chitipa' },
2010
+ { value: 'MW-DE', country_code: 'MW', text: 'Dedza' },
2011
+ { value: 'MW-DO', country_code: 'MW', text: 'Dowa' },
2012
+ { value: 'MW-KR', country_code: 'MW', text: 'Karonga' },
2013
+ { value: 'MW-KS', country_code: 'MW', text: 'Kasungu' },
2014
+ { value: 'MW-LK', country_code: 'MW', text: 'Likoma' },
2015
+ { value: 'MW-LI', country_code: 'MW', text: 'Lilongwe' },
2016
+ { value: 'MW-MH', country_code: 'MW', text: 'Machinga' },
2017
+ { value: 'MW-MG', country_code: 'MW', text: 'Mangochi' },
2018
+ { value: 'MW-MC', country_code: 'MW', text: 'Mchinji' },
2019
+ { value: 'MW-MU', country_code: 'MW', text: 'Mulanje' },
2020
+ { value: 'MW-MW', country_code: 'MW', text: 'Mwanza' },
2021
+ { value: 'MW-MZ', country_code: 'MW', text: 'Mzimba' },
2022
+ { value: 'MW-NE', country_code: 'MW', text: 'Neno' },
2023
+ { value: 'MW-NB', country_code: 'MW', text: 'Nkhata Bay' },
2024
+ { value: 'MW-NK', country_code: 'MW', text: 'Nkhotakota' },
2025
+ { value: 'MW-NS', country_code: 'MW', text: 'Nsanje' },
2026
+ { value: 'MW-NU', country_code: 'MW', text: 'Ntcheu' },
2027
+ { value: 'MW-NI', country_code: 'MW', text: 'Ntchisi' },
2028
+ { value: 'MW-PH', country_code: 'MW', text: 'Phalombe' },
2029
+ { value: 'MW-RU', country_code: 'MW', text: 'Rumphi' },
2030
+ { value: 'MW-SA', country_code: 'MW', text: 'Salima' },
2031
+ { value: 'MW-TH', country_code: 'MW', text: 'Thyolo' },
2032
+ { value: 'MW-ZO', country_code: 'MW', text: 'Zomba' },
2033
+ { value: 'MX-AGU', country_code: 'MX', text: 'Aguascalientes' },
2034
+ { value: 'MX-BCN', country_code: 'MX', text: 'Baja California' },
2035
+ { value: 'MX-BCS', country_code: 'MX', text: 'Baja California Sur' },
2036
+ { value: 'MX-CAM', country_code: 'MX', text: 'Campeche' },
2037
+ { value: 'MX-CHP', country_code: 'MX', text: 'Chiapas' },
2038
+ { value: 'MX-CHH', country_code: 'MX', text: 'Chihuahua' },
2039
+ { value: 'MX-CMX', country_code: 'MX', text: 'Ciudad de Mexico' },
2040
+ { value: 'MX-COA', country_code: 'MX', text: 'Coahuila de Zaragoza' },
2041
+ { value: 'MX-COL', country_code: 'MX', text: 'Colima' },
2042
+ { value: 'MX-DUR', country_code: 'MX', text: 'Durango' },
2043
+ { value: 'MX-GUA', country_code: 'MX', text: 'Guanajuato' },
2044
+ { value: 'MX-GRO', country_code: 'MX', text: 'Guerrero' },
2045
+ { value: 'MX-HID', country_code: 'MX', text: 'Hidalgo' },
2046
+ { value: 'MX-JAL', country_code: 'MX', text: 'Jalisco' },
2047
+ { value: 'MX-MEX', country_code: 'MX', text: 'Mexico' },
2048
+ { value: 'MX-MIC', country_code: 'MX', text: 'Michoacan de Ocampo' },
2049
+ { value: 'MX-MOR', country_code: 'MX', text: 'Morelos' },
2050
+ { value: 'MX-NAY', country_code: 'MX', text: 'Nayarit' },
2051
+ { value: 'MX-NLE', country_code: 'MX', text: 'Nuevo Leon' },
2052
+ { value: 'MX-OAX', country_code: 'MX', text: 'Oaxaca' },
2053
+ { value: 'MX-PUE', country_code: 'MX', text: 'Puebla' },
2054
+ { value: 'MX-QUE', country_code: 'MX', text: 'Queretaro' },
2055
+ { value: 'MX-ROO', country_code: 'MX', text: 'Quintana Roo' },
2056
+ { value: 'MX-SLP', country_code: 'MX', text: 'San Luis Potosi' },
2057
+ { value: 'MX-SIN', country_code: 'MX', text: 'Sinaloa' },
2058
+ { value: 'MX-SON', country_code: 'MX', text: 'Sonora' },
2059
+ { value: 'MX-TAB', country_code: 'MX', text: 'Tabasco' },
2060
+ { value: 'MX-TAM', country_code: 'MX', text: 'Tamaulipas' },
2061
+ { value: 'MX-TLA', country_code: 'MX', text: 'Tlaxcala' },
2062
+ { value: 'MX-VER', country_code: 'MX', text: 'Veracruz de Ignacio de la Llave' },
2063
+ { value: 'MX-YUC', country_code: 'MX', text: 'Yucatan' },
2064
+ { value: 'MX-ZAC', country_code: 'MX', text: 'Zacatecas' },
2065
+ { value: 'MY-01', country_code: 'MY', text: 'Johor' },
2066
+ { value: 'MY-02', country_code: 'MY', text: 'Kedah' },
2067
+ { value: 'MY-03', country_code: 'MY', text: 'Kelantan' },
2068
+ { value: 'MY-04', country_code: 'MY', text: 'Melaka' },
2069
+ { value: 'MY-05', country_code: 'MY', text: 'Negeri Sembilan' },
2070
+ { value: 'MY-06', country_code: 'MY', text: 'Pahang' },
2071
+ { value: 'MY-08', country_code: 'MY', text: 'Perak' },
2072
+ { value: 'MY-09', country_code: 'MY', text: 'Perlis' },
2073
+ { value: 'MY-07', country_code: 'MY', text: 'Pulau Pinang' },
2074
+ { value: 'MY-12', country_code: 'MY', text: 'Sabah' },
2075
+ { value: 'MY-13', country_code: 'MY', text: 'Sarawak' },
2076
+ { value: 'MY-10', country_code: 'MY', text: 'Selangor' },
2077
+ { value: 'MY-11', country_code: 'MY', text: 'Terengganu' },
2078
+ { value: 'MY-14', country_code: 'MY', text: 'Wilayah Persekutuan Kuala Lumpur' },
2079
+ { value: 'MY-15', country_code: 'MY', text: 'Wilayah Persekutuan Labuan' },
2080
+ { value: 'MY-16', country_code: 'MY', text: 'Wilayah Persekutuan Putrajaya' },
2081
+ { value: 'MZ-P', country_code: 'MZ', text: 'Cabo Delgado' },
2082
+ { value: 'MZ-G', country_code: 'MZ', text: 'Gaza' },
2083
+ { value: 'MZ-I', country_code: 'MZ', text: 'Inhambane' },
2084
+ { value: 'MZ-B', country_code: 'MZ', text: 'Manica' },
2085
+ { value: 'MZ-MPM', country_code: 'MZ', text: 'Maputo' },
2086
+ { value: 'MZ-N', country_code: 'MZ', text: 'Nampula' },
2087
+ { value: 'MZ-A', country_code: 'MZ', text: 'Niassa' },
2088
+ { value: 'MZ-S', country_code: 'MZ', text: 'Sofala' },
2089
+ { value: 'MZ-T', country_code: 'MZ', text: 'Tete' },
2090
+ { value: 'MZ-Q', country_code: 'MZ', text: 'Zambezia' },
2091
+ { value: 'NA-ER', country_code: 'NA', text: 'Erongo' },
2092
+ { value: 'NA-HA', country_code: 'NA', text: 'Hardap' },
2093
+ { value: 'NA-KA', country_code: 'NA', text: 'Karas' },
2094
+ { value: 'NA-KE', country_code: 'NA', text: 'Kavango East' },
2095
+ { value: 'NA-KH', country_code: 'NA', text: 'Khomas' },
2096
+ { value: 'NA-KU', country_code: 'NA', text: 'Kunene' },
2097
+ { value: 'NA-OW', country_code: 'NA', text: 'Ohangwena' },
2098
+ { value: 'NA-OH', country_code: 'NA', text: 'Omaheke' },
2099
+ { value: 'NA-OS', country_code: 'NA', text: 'Omusati' },
2100
+ { value: 'NA-ON', country_code: 'NA', text: 'Oshana' },
2101
+ { value: 'NA-OT', country_code: 'NA', text: 'Oshikoto' },
2102
+ { value: 'NA-OD', country_code: 'NA', text: 'Otjozondjupa' },
2103
+ { value: 'NA-CA', country_code: 'NA', text: 'Zambezi' },
2104
+ { value: 'NE-1', country_code: 'NE', text: 'Agadez' },
2105
+ { value: 'NE-2', country_code: 'NE', text: 'Diffa' },
2106
+ { value: 'NE-3', country_code: 'NE', text: 'Dosso' },
2107
+ { value: 'NE-4', country_code: 'NE', text: 'Maradi' },
2108
+ { value: 'NE-8', country_code: 'NE', text: 'Niamey' },
2109
+ { value: 'NE-5', country_code: 'NE', text: 'Tahoua' },
2110
+ { value: 'NE-6', country_code: 'NE', text: 'Tillaberi' },
2111
+ { value: 'NE-7', country_code: 'NE', text: 'Zinder' },
2112
+ { value: 'NG-AB', country_code: 'NG', text: 'Abia' },
2113
+ { value: 'NG-FC', country_code: 'NG', text: 'Abuja Federal Capital Territory' },
2114
+ { value: 'NG-AD', country_code: 'NG', text: 'Adamawa' },
2115
+ { value: 'NG-AK', country_code: 'NG', text: 'Akwa Ibom' },
2116
+ { value: 'NG-AN', country_code: 'NG', text: 'Anambra' },
2117
+ { value: 'NG-BA', country_code: 'NG', text: 'Bauchi' },
2118
+ { value: 'NG-BY', country_code: 'NG', text: 'Bayelsa' },
2119
+ { value: 'NG-BE', country_code: 'NG', text: 'Benue' },
2120
+ { value: 'NG-BO', country_code: 'NG', text: 'Borno' },
2121
+ { value: 'NG-CR', country_code: 'NG', text: 'Cross River' },
2122
+ { value: 'NG-DE', country_code: 'NG', text: 'Delta' },
2123
+ { value: 'NG-EB', country_code: 'NG', text: 'Ebonyi' },
2124
+ { value: 'NG-ED', country_code: 'NG', text: 'Edo' },
2125
+ { value: 'NG-EK', country_code: 'NG', text: 'Ekiti' },
2126
+ { value: 'NG-EN', country_code: 'NG', text: 'Enugu' },
2127
+ { value: 'NG-GO', country_code: 'NG', text: 'Gombe' },
2128
+ { value: 'NG-IM', country_code: 'NG', text: 'Imo' },
2129
+ { value: 'NG-JI', country_code: 'NG', text: 'Jigawa' },
2130
+ { value: 'NG-KD', country_code: 'NG', text: 'Kaduna' },
2131
+ { value: 'NG-KN', country_code: 'NG', text: 'Kano' },
2132
+ { value: 'NG-KT', country_code: 'NG', text: 'Katsina' },
2133
+ { value: 'NG-KE', country_code: 'NG', text: 'Kebbi' },
2134
+ { value: 'NG-KO', country_code: 'NG', text: 'Kogi' },
2135
+ { value: 'NG-KW', country_code: 'NG', text: 'Kwara' },
2136
+ { value: 'NG-LA', country_code: 'NG', text: 'Lagos' },
2137
+ { value: 'NG-NA', country_code: 'NG', text: 'Nasarawa' },
2138
+ { value: 'NG-NI', country_code: 'NG', text: 'Niger' },
2139
+ { value: 'NG-OG', country_code: 'NG', text: 'Ogun' },
2140
+ { value: 'NG-ON', country_code: 'NG', text: 'Ondo' },
2141
+ { value: 'NG-OS', country_code: 'NG', text: 'Osun' },
2142
+ { value: 'NG-OY', country_code: 'NG', text: 'Oyo' },
2143
+ { value: 'NG-PL', country_code: 'NG', text: 'Plateau' },
2144
+ { value: 'NG-RI', country_code: 'NG', text: 'Rivers' },
2145
+ { value: 'NG-SO', country_code: 'NG', text: 'Sokoto' },
2146
+ { value: 'NG-TA', country_code: 'NG', text: 'Taraba' },
2147
+ { value: 'NG-YO', country_code: 'NG', text: 'Yobe' },
2148
+ { value: 'NG-ZA', country_code: 'NG', text: 'Zamfara' },
2149
+ { value: 'NI-AN', country_code: 'NI', text: 'Atlantico Norte' },
2150
+ { value: 'NI-AS', country_code: 'NI', text: 'Atlantico Sur' },
2151
+ { value: 'NI-BO', country_code: 'NI', text: 'Boaco' },
2152
+ { value: 'NI-CA', country_code: 'NI', text: 'Carazo' },
2153
+ { value: 'NI-CI', country_code: 'NI', text: 'Chinandega' },
2154
+ { value: 'NI-CO', country_code: 'NI', text: 'Chontales' },
2155
+ { value: 'NI-ES', country_code: 'NI', text: 'Esteli' },
2156
+ { value: 'NI-GR', country_code: 'NI', text: 'Granada' },
2157
+ { value: 'NI-JI', country_code: 'NI', text: 'Jinotega' },
2158
+ { value: 'NI-LE', country_code: 'NI', text: 'Leon' },
2159
+ { value: 'NI-MD', country_code: 'NI', text: 'Madriz' },
2160
+ { value: 'NI-MN', country_code: 'NI', text: 'Managua' },
2161
+ { value: 'NI-MS', country_code: 'NI', text: 'Masaya' },
2162
+ { value: 'NI-MT', country_code: 'NI', text: 'Matagalpa' },
2163
+ { value: 'NI-NS', country_code: 'NI', text: 'Nueva Segovia' },
2164
+ { value: 'NI-SJ', country_code: 'NI', text: 'Rio San Juan' },
2165
+ { value: 'NI-RI', country_code: 'NI', text: 'Rivas' },
2166
+ { value: 'NL-DR', country_code: 'NL', text: 'Drenthe' },
2167
+ { value: 'NL-FL', country_code: 'NL', text: 'Flevoland' },
2168
+ { value: 'NL-FR', country_code: 'NL', text: 'Fryslan' },
2169
+ { value: 'NL-GE', country_code: 'NL', text: 'Gelderland' },
2170
+ { value: 'NL-GR', country_code: 'NL', text: 'Groningen' },
2171
+ { value: 'NL-LI', country_code: 'NL', text: 'Limburg' },
2172
+ { value: 'NL-NB', country_code: 'NL', text: 'Noord-Brabant' },
2173
+ { value: 'NL-NH', country_code: 'NL', text: 'Noord-Holland' },
2174
+ { value: 'NL-OV', country_code: 'NL', text: 'Overijssel' },
2175
+ { value: 'NL-UT', country_code: 'NL', text: 'Utrecht' },
2176
+ { value: 'NL-ZE', country_code: 'NL', text: 'Zeeland' },
2177
+ { value: 'NL-ZH', country_code: 'NL', text: 'Zuid-Holland' },
2178
+ { value: 'NO-02', country_code: 'NO', text: 'Akershus' },
2179
+ { value: 'NO-09', country_code: 'NO', text: 'Aust-Agder' },
2180
+ { value: 'NO-06', country_code: 'NO', text: 'Buskerud' },
2181
+ { value: 'NO-20', country_code: 'NO', text: 'Finnmark' },
2182
+ { value: 'NO-04', country_code: 'NO', text: 'Hedmark' },
2183
+ { value: 'NO-12', country_code: 'NO', text: 'Hordaland' },
2184
+ { value: 'NO-15', country_code: 'NO', text: 'More og Romsdal' },
2185
+ { value: 'NO-17', country_code: 'NO', text: 'Nord-Trondelag' },
2186
+ { value: 'NO-18', country_code: 'NO', text: 'Nordland' },
2187
+ { value: 'NO-05', country_code: 'NO', text: 'Oppland' },
2188
+ { value: 'NO-03', country_code: 'NO', text: 'Oslo' },
2189
+ { value: 'NO-01', country_code: 'NO', text: 'Ostfold' },
2190
+ { value: 'NO-11', country_code: 'NO', text: 'Rogaland' },
2191
+ { value: 'NO-14', country_code: 'NO', text: 'Sogn og Fjordane' },
2192
+ { value: 'NO-16', country_code: 'NO', text: 'Sor-Trondelag' },
2193
+ { value: 'NO-08', country_code: 'NO', text: 'Telemark' },
2194
+ { value: 'NO-19', country_code: 'NO', text: 'Troms' },
2195
+ { value: 'NO-10', country_code: 'NO', text: 'Vest-Agder' },
2196
+ { value: 'NO-07', country_code: 'NO', text: 'Vestfold' },
2197
+ { value: 'NP-BA', country_code: 'NP', text: 'Bagmati' },
2198
+ { value: 'NP-BH', country_code: 'NP', text: 'Bheri' },
2199
+ { value: 'NP-DH', country_code: 'NP', text: 'Dhawalagiri' },
2200
+ { value: 'NP-GA', country_code: 'NP', text: 'Gandaki' },
2201
+ { value: 'NP-JA', country_code: 'NP', text: 'Janakpur' },
2202
+ { value: 'NP-KA', country_code: 'NP', text: 'Karnali' },
2203
+ { value: 'NP-KO', country_code: 'NP', text: 'Kosi' },
2204
+ { value: 'NP-LU', country_code: 'NP', text: 'Lumbini' },
2205
+ { value: 'NP-MA', country_code: 'NP', text: 'Mahakali' },
2206
+ { value: 'NP-ME', country_code: 'NP', text: 'Mechi' },
2207
+ { value: 'NP-NA', country_code: 'NP', text: 'Narayani' },
2208
+ { value: 'NP-RA', country_code: 'NP', text: 'Rapti' },
2209
+ { value: 'NP-SA', country_code: 'NP', text: 'Sagarmatha' },
2210
+ { value: 'NP-SE', country_code: 'NP', text: 'Seti' },
2211
+ { value: 'NR-14', country_code: 'NR', text: 'Yaren' },
2212
+ { value: 'NZ-AUK', country_code: 'NZ', text: 'Auckland' },
2213
+ { value: 'NZ-BOP', country_code: 'NZ', text: 'Bay of Plenty' },
2214
+ { value: 'NZ-CAN', country_code: 'NZ', text: 'Canterbury' },
2215
+ { value: 'NZ-CIT', country_code: 'NZ', text: 'Chatham Islands Territory' },
2216
+ { value: 'NZ-GIS', country_code: 'NZ', text: 'Gisborne' },
2217
+ { value: 'NZ-HKB', country_code: 'NZ', text: "Hawke's Bay" },
2218
+ { value: 'NZ-MWT', country_code: 'NZ', text: 'Manawatu-Wanganui' },
2219
+ { value: 'NZ-MBH', country_code: 'NZ', text: 'Marlborough' },
2220
+ { value: 'NZ-NSN', country_code: 'NZ', text: 'Nelson' },
2221
+ { value: 'NZ-NTL', country_code: 'NZ', text: 'Northland' },
2222
+ { value: 'NZ-OTA', country_code: 'NZ', text: 'Otago' },
2223
+ { value: 'NZ-STL', country_code: 'NZ', text: 'Southland' },
2224
+ { value: 'NZ-TKI', country_code: 'NZ', text: 'Taranaki' },
2225
+ { value: 'NZ-TAS', country_code: 'NZ', text: 'Tasman' },
2226
+ { value: 'NZ-WKO', country_code: 'NZ', text: 'Waikato' },
2227
+ { value: 'NZ-WGN', country_code: 'NZ', text: 'Wellington' },
2228
+ { value: 'NZ-WTC', country_code: 'NZ', text: 'West Coast' },
2229
+ { value: 'OM-DA', country_code: 'OM', text: 'Ad Dakhiliyah' },
2230
+ { value: 'OM-BU', country_code: 'OM', text: 'Al Buraymi' },
2231
+ { value: 'OM-WU', country_code: 'OM', text: 'Al Wusta' },
2232
+ { value: 'OM-ZA', country_code: 'OM', text: 'Az Zahirah' },
2233
+ { value: 'OM-BJ', country_code: 'OM', text: 'Janub al Batinah' },
2234
+ { value: 'OM-SJ', country_code: 'OM', text: 'Janub ash Sharqiyah' },
2235
+ { value: 'OM-MA', country_code: 'OM', text: 'Masqat' },
2236
+ { value: 'OM-MU', country_code: 'OM', text: 'Musandam' },
2237
+ { value: 'OM-BS', country_code: 'OM', text: 'Shamal al Batinah' },
2238
+ { value: 'OM-SS', country_code: 'OM', text: 'Shamal ash Sharqiyah' },
2239
+ { value: 'OM-ZU', country_code: 'OM', text: 'Zufar' },
2240
+ { value: 'PA-1', country_code: 'PA', text: 'Bocas del Toro' },
2241
+ { value: 'PA-4', country_code: 'PA', text: 'Chiriqui' },
2242
+ { value: 'PA-2', country_code: 'PA', text: 'Cocle' },
2243
+ { value: 'PA-3', country_code: 'PA', text: 'Colon' },
2244
+ { value: 'PA-5', country_code: 'PA', text: 'Darien' },
2245
+ { value: 'PA-6', country_code: 'PA', text: 'Herrera' },
2246
+ { value: 'PA-7', country_code: 'PA', text: 'Los Santos' },
2247
+ { value: 'PA-8', country_code: 'PA', text: 'Panama' },
2248
+ { value: 'PA-9', country_code: 'PA', text: 'Veraguas' },
2249
+ { value: 'PE-AMA', country_code: 'PE', text: 'Amazonas' },
2250
+ { value: 'PE-ANC', country_code: 'PE', text: 'Ancash' },
2251
+ { value: 'PE-APU', country_code: 'PE', text: 'Apurimac' },
2252
+ { value: 'PE-ARE', country_code: 'PE', text: 'Arequipa' },
2253
+ { value: 'PE-AYA', country_code: 'PE', text: 'Ayacucho' },
2254
+ { value: 'PE-CAJ', country_code: 'PE', text: 'Cajamarca' },
2255
+ { value: 'PE-CUS', country_code: 'PE', text: 'Cusco' },
2256
+ { value: 'PE-CAL', country_code: 'PE', text: 'El Callao' },
2257
+ { value: 'PE-HUV', country_code: 'PE', text: 'Huancavelica' },
2258
+ { value: 'PE-HUC', country_code: 'PE', text: 'Huanuco' },
2259
+ { value: 'PE-ICA', country_code: 'PE', text: 'Ica' },
2260
+ { value: 'PE-JUN', country_code: 'PE', text: 'Junin' },
2261
+ { value: 'PE-LAL', country_code: 'PE', text: 'La Libertad' },
2262
+ { value: 'PE-LAM', country_code: 'PE', text: 'Lambayeque' },
2263
+ { value: 'PE-LIM', country_code: 'PE', text: 'Lima' },
2264
+ { value: 'PE-LOR', country_code: 'PE', text: 'Loreto' },
2265
+ { value: 'PE-MDD', country_code: 'PE', text: 'Madre de Dios' },
2266
+ { value: 'PE-MOQ', country_code: 'PE', text: 'Moquegua' },
2267
+ { value: 'PE-PAS', country_code: 'PE', text: 'Pasco' },
2268
+ { value: 'PE-PIU', country_code: 'PE', text: 'Piura' },
2269
+ { value: 'PE-PUN', country_code: 'PE', text: 'Puno' },
2270
+ { value: 'PE-SAM', country_code: 'PE', text: 'San Martin' },
2271
+ { value: 'PE-TAC', country_code: 'PE', text: 'Tacna' },
2272
+ { value: 'PE-TUM', country_code: 'PE', text: 'Tumbes' },
2273
+ { value: 'PE-UCA', country_code: 'PE', text: 'Ucayali' },
2274
+ { value: 'PG-NSB', country_code: 'PG', text: 'Bougainville' },
2275
+ { value: 'PG-CPK', country_code: 'PG', text: 'Chimbu' },
2276
+ { value: 'PG-EBR', country_code: 'PG', text: 'East New Britain' },
2277
+ { value: 'PG-ESW', country_code: 'PG', text: 'East Sepik' },
2278
+ { value: 'PG-EHG', country_code: 'PG', text: 'Eastern Highlands' },
2279
+ { value: 'PG-EPW', country_code: 'PG', text: 'Enga' },
2280
+ { value: 'PG-GPK', country_code: 'PG', text: 'Gulf' },
2281
+ { value: 'PG-MPM', country_code: 'PG', text: 'Madang' },
2282
+ { value: 'PG-MRL', country_code: 'PG', text: 'Manus' },
2283
+ { value: 'PG-MBA', country_code: 'PG', text: 'Milne Bay' },
2284
+ { value: 'PG-MPL', country_code: 'PG', text: 'Morobe' },
2285
+ { value: 'PG-NCD', country_code: 'PG', text: 'National Capital District (Port Moresby)' },
2286
+ { value: 'PG-NIK', country_code: 'PG', text: 'New Ireland' },
2287
+ { value: 'PG-NPP', country_code: 'PG', text: 'Northern' },
2288
+ { value: 'PG-SHM', country_code: 'PG', text: 'Southern Highlands' },
2289
+ { value: 'PG-WBK', country_code: 'PG', text: 'West New Britain' },
2290
+ { value: 'PG-SAN', country_code: 'PG', text: 'West Sepik' },
2291
+ { value: 'PG-WPD', country_code: 'PG', text: 'Western' },
2292
+ { value: 'PG-WHM', country_code: 'PG', text: 'Western Highlands' },
2293
+ { value: 'PH-ABR', country_code: 'PH', text: 'Abra' },
2294
+ { value: 'PH-AGN', country_code: 'PH', text: 'Agusan del Norte' },
2295
+ { value: 'PH-AGS', country_code: 'PH', text: 'Agusan del Sur' },
2296
+ { value: 'PH-AKL', country_code: 'PH', text: 'Aklan' },
2297
+ { value: 'PH-ALB', country_code: 'PH', text: 'Albay' },
2298
+ { value: 'PH-ANT', country_code: 'PH', text: 'Antique' },
2299
+ { value: 'PH-APA', country_code: 'PH', text: 'Apayao' },
2300
+ { value: 'PH-AUR', country_code: 'PH', text: 'Aurora' },
2301
+ { value: 'PH-BAS', country_code: 'PH', text: 'Basilan' },
2302
+ { value: 'PH-BAN', country_code: 'PH', text: 'Bataan' },
2303
+ { value: 'PH-BTN', country_code: 'PH', text: 'Batanes' },
2304
+ { value: 'PH-BTG', country_code: 'PH', text: 'Batangas' },
2305
+ { value: 'PH-BEN', country_code: 'PH', text: 'Benguet' },
2306
+ { value: 'PH-BOH', country_code: 'PH', text: 'Bohol' },
2307
+ { value: 'PH-BUK', country_code: 'PH', text: 'Bukidnon' },
2308
+ { value: 'PH-BUL', country_code: 'PH', text: 'Bulacan' },
2309
+ { value: 'PH-CAG', country_code: 'PH', text: 'Cagayan' },
2310
+ { value: 'PH-CAN', country_code: 'PH', text: 'Camarines Norte' },
2311
+ { value: 'PH-CAS', country_code: 'PH', text: 'Camarines Sur' },
2312
+ { value: 'PH-CAM', country_code: 'PH', text: 'Camiguin' },
2313
+ { value: 'PH-CAP', country_code: 'PH', text: 'Capiz' },
2314
+ { value: 'PH-CAT', country_code: 'PH', text: 'Catanduanes' },
2315
+ { value: 'PH-CAV', country_code: 'PH', text: 'Cavite' },
2316
+ { value: 'PH-CEB', country_code: 'PH', text: 'Cebu' },
2317
+ { value: 'PH-NCO', country_code: 'PH', text: 'Cotabato' },
2318
+ { value: 'PH-DAS', country_code: 'PH', text: 'Davao del Sur' },
2319
+ { value: 'PH-DAO', country_code: 'PH', text: 'Davao Oriental' },
2320
+ { value: 'PH-EAS', country_code: 'PH', text: 'Eastern Samar' },
2321
+ { value: 'PH-IFU', country_code: 'PH', text: 'Ifugao' },
2322
+ { value: 'PH-ILN', country_code: 'PH', text: 'Ilocos Norte' },
2323
+ { value: 'PH-ILS', country_code: 'PH', text: 'Ilocos Sur' },
2324
+ { value: 'PH-ILI', country_code: 'PH', text: 'Iloilo' },
2325
+ { value: 'PH-ISA', country_code: 'PH', text: 'Isabela' },
2326
+ { value: 'PH-KAL', country_code: 'PH', text: 'Kalinga' },
2327
+ { value: 'PH-LUN', country_code: 'PH', text: 'La Union' },
2328
+ { value: 'PH-LAG', country_code: 'PH', text: 'Laguna' },
2329
+ { value: 'PH-LAN', country_code: 'PH', text: 'Lanao del Norte' },
2330
+ { value: 'PH-LAS', country_code: 'PH', text: 'Lanao del Sur' },
2331
+ { value: 'PH-LEY', country_code: 'PH', text: 'Leyte' },
2332
+ { value: 'PH-MAG', country_code: 'PH', text: 'Maguindanao' },
2333
+ { value: 'PH-MAD', country_code: 'PH', text: 'Marinduque' },
2334
+ { value: 'PH-MAS', country_code: 'PH', text: 'Masbate' },
2335
+ { value: 'PH-MDC', country_code: 'PH', text: 'Mindoro Occidental' },
2336
+ { value: 'PH-MDR', country_code: 'PH', text: 'Mindoro Oriental' },
2337
+ { value: 'PH-MSC', country_code: 'PH', text: 'Misamis Occidental' },
2338
+ { value: 'PH-MSR', country_code: 'PH', text: 'Misamis Oriental' },
2339
+ { value: 'PH-MOU', country_code: 'PH', text: 'Mountain Province' },
2340
+ { value: 'PH-00', country_code: 'PH', text: 'National Capital Region' },
2341
+ { value: 'PH-NEC', country_code: 'PH', text: 'Negros Occidental' },
2342
+ { value: 'PH-NER', country_code: 'PH', text: 'Negros Oriental' },
2343
+ { value: 'PH-NSA', country_code: 'PH', text: 'Northern Samar' },
2344
+ { value: 'PH-NUE', country_code: 'PH', text: 'Nueva Ecija' },
2345
+ { value: 'PH-NUV', country_code: 'PH', text: 'Nueva Vizcaya' },
2346
+ { value: 'PH-PLW', country_code: 'PH', text: 'Palawan' },
2347
+ { value: 'PH-PAM', country_code: 'PH', text: 'Pampanga' },
2348
+ { value: 'PH-PAN', country_code: 'PH', text: 'Pangasinan' },
2349
+ { value: 'PH-QUE', country_code: 'PH', text: 'Quezon' },
2350
+ { value: 'PH-QUI', country_code: 'PH', text: 'Quirino' },
2351
+ { value: 'PH-RIZ', country_code: 'PH', text: 'Rizal' },
2352
+ { value: 'PH-ROM', country_code: 'PH', text: 'Romblon' },
2353
+ { value: 'PH-WSA', country_code: 'PH', text: 'Samar' },
2354
+ { value: 'PH-SIG', country_code: 'PH', text: 'Siquijor' },
2355
+ { value: 'PH-SOR', country_code: 'PH', text: 'Sorsogon' },
2356
+ { value: 'PH-SCO', country_code: 'PH', text: 'South Cotabato' },
2357
+ { value: 'PH-SLE', country_code: 'PH', text: 'Southern Leyte' },
2358
+ { value: 'PH-SUK', country_code: 'PH', text: 'Sultan Kudarat' },
2359
+ { value: 'PH-SLU', country_code: 'PH', text: 'Sulu' },
2360
+ { value: 'PH-SUN', country_code: 'PH', text: 'Surigao del Norte' },
2361
+ { value: 'PH-SUR', country_code: 'PH', text: 'Surigao del Sur' },
2362
+ { value: 'PH-TAR', country_code: 'PH', text: 'Tarlac' },
2363
+ { value: 'PH-TAW', country_code: 'PH', text: 'Tawi-Tawi' },
2364
+ { value: 'PH-ZMB', country_code: 'PH', text: 'Zambales' },
2365
+ { value: 'PH-ZAN', country_code: 'PH', text: 'Zamboanga del Norte' },
2366
+ { value: 'PH-ZAS', country_code: 'PH', text: 'Zamboanga del Sur' },
2367
+ { value: 'PK-JK', country_code: 'PK', text: 'Azad Kashmir' },
2368
+ { value: 'PK-BA', country_code: 'PK', text: 'Balochistan' },
2369
+ { value: 'PK-TA', country_code: 'PK', text: 'Federally Administered Tribal Areas' },
2370
+ { value: 'PK-GB', country_code: 'PK', text: 'Gilgit-Baltistan' },
2371
+ { value: 'PK-IS', country_code: 'PK', text: 'Islamabad' },
2372
+ { value: 'PK-KP', country_code: 'PK', text: 'Khyber Pakhtunkhwa' },
2373
+ { value: 'PK-PB', country_code: 'PK', text: 'Punjab' },
2374
+ { value: 'PK-SD', country_code: 'PK', text: 'Sindh' },
2375
+ { value: 'PL-DS', country_code: 'PL', text: 'Dolnoslaskie' },
2376
+ { value: 'PL-KP', country_code: 'PL', text: 'Kujawsko-pomorskie' },
2377
+ { value: 'PL-LD', country_code: 'PL', text: 'Lodzkie' },
2378
+ { value: 'PL-LU', country_code: 'PL', text: 'Lubelskie' },
2379
+ { value: 'PL-LB', country_code: 'PL', text: 'Lubuskie' },
2380
+ { value: 'PL-MA', country_code: 'PL', text: 'Malopolskie' },
2381
+ { value: 'PL-MZ', country_code: 'PL', text: 'Mazowieckie' },
2382
+ { value: 'PL-OP', country_code: 'PL', text: 'Opolskie' },
2383
+ { value: 'PL-PK', country_code: 'PL', text: 'Podkarpackie' },
2384
+ { value: 'PL-PD', country_code: 'PL', text: 'Podlaskie' },
2385
+ { value: 'PL-PM', country_code: 'PL', text: 'Pomorskie' },
2386
+ { value: 'PL-SL', country_code: 'PL', text: 'Slaskie' },
2387
+ { value: 'PL-SK', country_code: 'PL', text: 'Swietokrzyskie' },
2388
+ { value: 'PL-WN', country_code: 'PL', text: 'Warminsko-mazurskie' },
2389
+ { value: 'PL-WP', country_code: 'PL', text: 'Wielkopolskie' },
2390
+ { value: 'PL-ZP', country_code: 'PL', text: 'Zachodniopomorskie' },
2391
+ { value: 'PS-BTH', country_code: 'PS', text: 'Bethlehem' },
2392
+ { value: 'PS-GZA', country_code: 'PS', text: 'Gaza' },
2393
+ { value: 'PS-HBN', country_code: 'PS', text: 'Hebron' },
2394
+ { value: 'PS-JEN', country_code: 'PS', text: 'Jenin' },
2395
+ { value: 'PS-JRH', country_code: 'PS', text: 'Jericho and Al Aghwar' },
2396
+ { value: 'PS-JEM', country_code: 'PS', text: 'Jerusalem' },
2397
+ { value: 'PS-NBS', country_code: 'PS', text: 'Nablus' },
2398
+ { value: 'PS-QQA', country_code: 'PS', text: 'Qalqilya' },
2399
+ { value: 'PS-RBH', country_code: 'PS', text: 'Ramallah' },
2400
+ { value: 'PS-SLT', country_code: 'PS', text: 'Salfit' },
2401
+ { value: 'PS-TBS', country_code: 'PS', text: 'Tubas' },
2402
+ { value: 'PS-TKM', country_code: 'PS', text: 'Tulkarm' },
2403
+ { value: 'PT-01', country_code: 'PT', text: 'Aveiro' },
2404
+ { value: 'PT-02', country_code: 'PT', text: 'Beja' },
2405
+ { value: 'PT-03', country_code: 'PT', text: 'Braga' },
2406
+ { value: 'PT-04', country_code: 'PT', text: 'Braganca' },
2407
+ { value: 'PT-05', country_code: 'PT', text: 'Castelo Branco' },
2408
+ { value: 'PT-06', country_code: 'PT', text: 'Coimbra' },
2409
+ { value: 'PT-07', country_code: 'PT', text: 'Evora' },
2410
+ { value: 'PT-08', country_code: 'PT', text: 'Faro' },
2411
+ { value: 'PT-09', country_code: 'PT', text: 'Guarda' },
2412
+ { value: 'PT-10', country_code: 'PT', text: 'Leiria' },
2413
+ { value: 'PT-11', country_code: 'PT', text: 'Lisboa' },
2414
+ { value: 'PT-12', country_code: 'PT', text: 'Portalegre' },
2415
+ { value: 'PT-13', country_code: 'PT', text: 'Porto' },
2416
+ { value: 'PT-30', country_code: 'PT', text: 'Regiao Autonoma da Madeira' },
2417
+ { value: 'PT-20', country_code: 'PT', text: 'Regiao Autonoma dos Acores' },
2418
+ { value: 'PT-14', country_code: 'PT', text: 'Santarem' },
2419
+ { value: 'PT-15', country_code: 'PT', text: 'Setubal' },
2420
+ { value: 'PT-16', country_code: 'PT', text: 'Viana do Castelo' },
2421
+ { value: 'PT-17', country_code: 'PT', text: 'Vila Real' },
2422
+ { value: 'PT-18', country_code: 'PT', text: 'Viseu' },
2423
+ { value: 'PW-002', country_code: 'PW', text: 'Aimeliik' },
2424
+ { value: 'PW-004', country_code: 'PW', text: 'Airai' },
2425
+ { value: 'PW-010', country_code: 'PW', text: 'Angaur' },
2426
+ { value: 'PW-100', country_code: 'PW', text: 'Kayangel' },
2427
+ { value: 'PW-150', country_code: 'PW', text: 'Koror' },
2428
+ { value: 'PW-212', country_code: 'PW', text: 'Melekeok' },
2429
+ { value: 'PW-214', country_code: 'PW', text: 'Ngaraard' },
2430
+ { value: 'PW-218', country_code: 'PW', text: 'Ngarchelong' },
2431
+ { value: 'PW-222', country_code: 'PW', text: 'Ngardmau' },
2432
+ { value: 'PW-224', country_code: 'PW', text: 'Ngatpang' },
2433
+ { value: 'PW-228', country_code: 'PW', text: 'Ngiwal' },
2434
+ { value: 'PW-350', country_code: 'PW', text: 'Peleliu' },
2435
+ { value: 'PY-16', country_code: 'PY', text: 'Alto Paraguay' },
2436
+ { value: 'PY-10', country_code: 'PY', text: 'Alto Parana' },
2437
+ { value: 'PY-13', country_code: 'PY', text: 'Amambay' },
2438
+ { value: 'PY-ASU', country_code: 'PY', text: 'Asuncion' },
2439
+ { value: 'PY-19', country_code: 'PY', text: 'Boqueron' },
2440
+ { value: 'PY-5', country_code: 'PY', text: 'Caaguazu' },
2441
+ { value: 'PY-6', country_code: 'PY', text: 'Caazapa' },
2442
+ { value: 'PY-14', country_code: 'PY', text: 'Canindeyu' },
2443
+ { value: 'PY-11', country_code: 'PY', text: 'Central' },
2444
+ { value: 'PY-1', country_code: 'PY', text: 'Concepcion' },
2445
+ { value: 'PY-3', country_code: 'PY', text: 'Cordillera' },
2446
+ { value: 'PY-4', country_code: 'PY', text: 'Guaira' },
2447
+ { value: 'PY-7', country_code: 'PY', text: 'Itapua' },
2448
+ { value: 'PY-8', country_code: 'PY', text: 'Misiones' },
2449
+ { value: 'PY-12', country_code: 'PY', text: 'Neembucu' },
2450
+ { value: 'PY-9', country_code: 'PY', text: 'Paraguari' },
2451
+ { value: 'PY-15', country_code: 'PY', text: 'Presidente Hayes' },
2452
+ { value: 'PY-2', country_code: 'PY', text: 'San Pedro' },
2453
+ { value: 'QA-DA', country_code: 'QA', text: 'Ad Dawhah' },
2454
+ { value: 'QA-KH', country_code: 'QA', text: 'Al Khawr wa adh Dhakhirah' },
2455
+ { value: 'QA-WA', country_code: 'QA', text: 'Al Wakrah' },
2456
+ { value: 'QA-RA', country_code: 'QA', text: 'Ar Rayyan' },
2457
+ { value: 'QA-MS', country_code: 'QA', text: 'Ash Shamal' },
2458
+ { value: 'QA-ZA', country_code: 'QA', text: "Az Za'ayin" },
2459
+ { value: 'QA-US', country_code: 'QA', text: 'Umm Salal' },
2460
+ { value: 'RO-AB', country_code: 'RO', text: 'Alba' },
2461
+ { value: 'RO-AR', country_code: 'RO', text: 'Arad' },
2462
+ { value: 'RO-AG', country_code: 'RO', text: 'Arges' },
2463
+ { value: 'RO-BC', country_code: 'RO', text: 'Bacau' },
2464
+ { value: 'RO-BH', country_code: 'RO', text: 'Bihor' },
2465
+ { value: 'RO-BN', country_code: 'RO', text: 'Bistrita-Nasaud' },
2466
+ { value: 'RO-BT', country_code: 'RO', text: 'Botosani' },
2467
+ { value: 'RO-BR', country_code: 'RO', text: 'Braila' },
2468
+ { value: 'RO-BV', country_code: 'RO', text: 'Brasov' },
2469
+ { value: 'RO-B', country_code: 'RO', text: 'Bucuresti' },
2470
+ { value: 'RO-BZ', country_code: 'RO', text: 'Buzau' },
2471
+ { value: 'RO-CL', country_code: 'RO', text: 'Calarasi' },
2472
+ { value: 'RO-CS', country_code: 'RO', text: 'Caras-Severin' },
2473
+ { value: 'RO-CJ', country_code: 'RO', text: 'Cluj' },
2474
+ { value: 'RO-CT', country_code: 'RO', text: 'Constanta' },
2475
+ { value: 'RO-CV', country_code: 'RO', text: 'Covasna' },
2476
+ { value: 'RO-DB', country_code: 'RO', text: 'Dambovita' },
2477
+ { value: 'RO-DJ', country_code: 'RO', text: 'Dolj' },
2478
+ { value: 'RO-GL', country_code: 'RO', text: 'Galati' },
2479
+ { value: 'RO-GR', country_code: 'RO', text: 'Giurgiu' },
2480
+ { value: 'RO-GJ', country_code: 'RO', text: 'Gorj' },
2481
+ { value: 'RO-HR', country_code: 'RO', text: 'Harghita' },
2482
+ { value: 'RO-HD', country_code: 'RO', text: 'Hunedoara' },
2483
+ { value: 'RO-IL', country_code: 'RO', text: 'Ialomita' },
2484
+ { value: 'RO-IS', country_code: 'RO', text: 'Iasi' },
2485
+ { value: 'RO-IF', country_code: 'RO', text: 'Ilfov' },
2486
+ { value: 'RO-MM', country_code: 'RO', text: 'Maramures' },
2487
+ { value: 'RO-MH', country_code: 'RO', text: 'Mehedinti' },
2488
+ { value: 'RO-MS', country_code: 'RO', text: 'Mures' },
2489
+ { value: 'RO-NT', country_code: 'RO', text: 'Neamt' },
2490
+ { value: 'RO-OT', country_code: 'RO', text: 'Olt' },
2491
+ { value: 'RO-PH', country_code: 'RO', text: 'Prahova' },
2492
+ { value: 'RO-SJ', country_code: 'RO', text: 'Salaj' },
2493
+ { value: 'RO-SM', country_code: 'RO', text: 'Satu Mare' },
2494
+ { value: 'RO-SB', country_code: 'RO', text: 'Sibiu' },
2495
+ { value: 'RO-SV', country_code: 'RO', text: 'Suceava' },
2496
+ { value: 'RO-TR', country_code: 'RO', text: 'Teleorman' },
2497
+ { value: 'RO-TM', country_code: 'RO', text: 'Timis' },
2498
+ { value: 'RO-TL', country_code: 'RO', text: 'Tulcea' },
2499
+ { value: 'RO-VL', country_code: 'RO', text: 'Valcea' },
2500
+ { value: 'RO-VS', country_code: 'RO', text: 'Vaslui' },
2501
+ { value: 'RO-VN', country_code: 'RO', text: 'Vrancea' },
2502
+ { value: 'RS-00', country_code: 'RS', text: 'Beograd' },
2503
+ { value: 'RS-14', country_code: 'RS', text: 'Borski okrug' },
2504
+ { value: 'RS-11', country_code: 'RS', text: 'Branicevski okrug' },
2505
+ { value: 'RS-23', country_code: 'RS', text: 'Jablanicki okrug' },
2506
+ { value: 'RS-06', country_code: 'RS', text: 'Juznobacki okrug' },
2507
+ { value: 'RS-04', country_code: 'RS', text: 'Juznobanatski okrug' },
2508
+ { value: 'RS-09', country_code: 'RS', text: 'Kolubarski okrug' },
2509
+ { value: 'RS-28', country_code: 'RS', text: 'Kosovsko-Mitrovacki okrug' },
2510
+ { value: 'RS-08', country_code: 'RS', text: 'Macvanski okrug' },
2511
+ { value: 'RS-17', country_code: 'RS', text: 'Moravicki okrug' },
2512
+ { value: 'RS-20', country_code: 'RS', text: 'Nisavski okrug' },
2513
+ { value: 'RS-24', country_code: 'RS', text: 'Pcinjski okrug' },
2514
+ { value: 'RS-26', country_code: 'RS', text: 'Pecki okrug' },
2515
+ { value: 'RS-22', country_code: 'RS', text: 'Pirotski okrug' },
2516
+ { value: 'RS-10', country_code: 'RS', text: 'Podunavski okrug' },
2517
+ { value: 'RS-27', country_code: 'RS', text: 'Prizrenski okrug' },
2518
+ { value: 'RS-19', country_code: 'RS', text: 'Rasinski okrug' },
2519
+ { value: 'RS-18', country_code: 'RS', text: 'Raski okrug' },
2520
+ { value: 'RS-01', country_code: 'RS', text: 'Severnobacki okrug' },
2521
+ { value: 'RS-03', country_code: 'RS', text: 'Severnobanatski okrug' },
2522
+ { value: 'RS-02', country_code: 'RS', text: 'Srednjebanatski okrug' },
2523
+ { value: 'RS-07', country_code: 'RS', text: 'Sremski okrug' },
2524
+ { value: 'RS-12', country_code: 'RS', text: 'Sumadijski okrug' },
2525
+ { value: 'RS-21', country_code: 'RS', text: 'Toplicki okrug' },
2526
+ { value: 'RS-15', country_code: 'RS', text: 'Zajecarski okrug' },
2527
+ { value: 'RS-05', country_code: 'RS', text: 'Zapadnobacki okrug' },
2528
+ { value: 'RS-16', country_code: 'RS', text: 'Zlatiborski okrug' },
2529
+ { value: 'RU-AD', country_code: 'RU', text: 'Adygeya, Respublika' },
2530
+ { value: 'RU-AL', country_code: 'RU', text: 'Altay, Respublika' },
2531
+ { value: 'RU-ALT', country_code: 'RU', text: 'Altayskiy kray' },
2532
+ { value: 'RU-AMU', country_code: 'RU', text: "Amurskaya oblast'" },
2533
+ { value: 'RU-ARK', country_code: 'RU', text: "Arkhangel'skaya oblast'" },
2534
+ { value: 'RU-AST', country_code: 'RU', text: "Astrakhanskaya oblast'" },
2535
+ { value: 'RU-BA', country_code: 'RU', text: 'Bashkortostan, Respublika' },
2536
+ { value: 'RU-BEL', country_code: 'RU', text: "Belgorodskaya oblast'" },
2537
+ { value: 'RU-BRY', country_code: 'RU', text: "Bryanskaya oblast'" },
2538
+ { value: 'RU-BU', country_code: 'RU', text: 'Buryatiya, Respublika' },
2539
+ { value: 'RU-CE', country_code: 'RU', text: 'Chechenskaya Respublika' },
2540
+ { value: 'RU-CHE', country_code: 'RU', text: "Chelyabinskaya oblast'" },
2541
+ { value: 'RU-CHU', country_code: 'RU', text: 'Chukotskiy avtonomnyy okrug' },
2542
+ { value: 'RU-CU', country_code: 'RU', text: 'Chuvashskaya Respublika' },
2543
+ { value: 'RU-DA', country_code: 'RU', text: 'Dagestan, Respublika' },
2544
+ { value: 'RU-IN', country_code: 'RU', text: 'Ingushetiya, Respublika' },
2545
+ { value: 'RU-IRK', country_code: 'RU', text: "Irkutskaya oblast'" },
2546
+ { value: 'RU-IVA', country_code: 'RU', text: "Ivanovskaya oblast'" },
2547
+ { value: 'RU-KB', country_code: 'RU', text: 'Kabardino-Balkarskaya Respublika' },
2548
+ { value: 'RU-KGD', country_code: 'RU', text: "Kaliningradskaya oblast'" },
2549
+ { value: 'RU-KL', country_code: 'RU', text: 'Kalmykiya, Respublika' },
2550
+ { value: 'RU-KLU', country_code: 'RU', text: "Kaluzhskaya oblast'" },
2551
+ { value: 'RU-KAM', country_code: 'RU', text: 'Kamchatskiy kray' },
2552
+ { value: 'RU-KC', country_code: 'RU', text: 'Karachayevo-Cherkesskaya Respublika' },
2553
+ { value: 'RU-KR', country_code: 'RU', text: 'Kareliya, Respublika' },
2554
+ { value: 'RU-KEM', country_code: 'RU', text: "Kemerovskaya oblast'" },
2555
+ { value: 'RU-KHA', country_code: 'RU', text: 'Khabarovskiy kray' },
2556
+ { value: 'RU-KK', country_code: 'RU', text: 'Khakasiya, Respublika' },
2557
+ { value: 'RU-KHM', country_code: 'RU', text: 'Khanty-Mansiyskiy avtonomnyy okrug' },
2558
+ { value: 'RU-KIR', country_code: 'RU', text: "Kirovskaya oblast'" },
2559
+ { value: 'RU-KO', country_code: 'RU', text: 'Komi, Respublika' },
2560
+ { value: 'RU-KOS', country_code: 'RU', text: "Kostromskaya oblast'" },
2561
+ { value: 'RU-KDA', country_code: 'RU', text: 'Krasnodarskiy kray' },
2562
+ { value: 'RU-KYA', country_code: 'RU', text: 'Krasnoyarskiy kray' },
2563
+ { value: 'RU-KGN', country_code: 'RU', text: "Kurganskaya oblast'" },
2564
+ { value: 'RU-KRS', country_code: 'RU', text: "Kurskaya oblast'" },
2565
+ { value: 'RU-LEN', country_code: 'RU', text: "Leningradskaya oblast'" },
2566
+ { value: 'RU-LIP', country_code: 'RU', text: "Lipetskaya oblast'" },
2567
+ { value: 'RU-MAG', country_code: 'RU', text: "Magadanskaya oblast'" },
2568
+ { value: 'RU-ME', country_code: 'RU', text: 'Mariy El, Respublika' },
2569
+ { value: 'RU-MO', country_code: 'RU', text: 'Mordoviya, Respublika' },
2570
+ { value: 'RU-MOS', country_code: 'RU', text: "Moskovskaya oblast'" },
2571
+ { value: 'RU-MOW', country_code: 'RU', text: 'Moskva' },
2572
+ { value: 'RU-MUR', country_code: 'RU', text: "Murmanskaya oblast'" },
2573
+ { value: 'RU-NEN', country_code: 'RU', text: 'Nenetskiy avtonomnyy okrug' },
2574
+ { value: 'RU-NIZ', country_code: 'RU', text: "Nizhegorodskaya oblast'" },
2575
+ { value: 'RU-NGR', country_code: 'RU', text: "Novgorodskaya oblast'" },
2576
+ { value: 'RU-NVS', country_code: 'RU', text: "Novosibirskaya oblast'" },
2577
+ { value: 'RU-OMS', country_code: 'RU', text: "Omskaya oblast'" },
2578
+ { value: 'RU-ORE', country_code: 'RU', text: "Orenburgskaya oblast'" },
2579
+ { value: 'RU-ORL', country_code: 'RU', text: "Orlovskaya oblast'" },
2580
+ { value: 'RU-PNZ', country_code: 'RU', text: "Penzenskaya oblast'" },
2581
+ { value: 'RU-PER', country_code: 'RU', text: 'Permskiy kray' },
2582
+ { value: 'RU-PRI', country_code: 'RU', text: 'Primorskiy kray' },
2583
+ { value: 'RU-PSK', country_code: 'RU', text: "Pskovskaya oblast'" },
2584
+ { value: 'RU-ROS', country_code: 'RU', text: "Rostovskaya oblast'" },
2585
+ { value: 'RU-RYA', country_code: 'RU', text: "Ryazanskaya oblast'" },
2586
+ { value: 'RU-SA', country_code: 'RU', text: 'Saha, Respublika' },
2587
+ { value: 'RU-SAK', country_code: 'RU', text: "Sakhalinskaya oblast'" },
2588
+ { value: 'RU-SAM', country_code: 'RU', text: "Samarskaya oblast'" },
2589
+ { value: 'RU-SPE', country_code: 'RU', text: 'Sankt-Peterburg' },
2590
+ { value: 'RU-SAR', country_code: 'RU', text: "Saratovskaya oblast'" },
2591
+ { value: 'RU-SE', country_code: 'RU', text: 'Severnaya Osetiya, Respublika' },
2592
+ { value: 'RU-SMO', country_code: 'RU', text: "Smolenskaya oblast'" },
2593
+ { value: 'RU-STA', country_code: 'RU', text: "Stavropol'skiy kray" },
2594
+ { value: 'RU-SVE', country_code: 'RU', text: "Sverdlovskaya oblast'" },
2595
+ { value: 'RU-TAM', country_code: 'RU', text: "Tambovskaya oblast'" },
2596
+ { value: 'RU-TA', country_code: 'RU', text: 'Tatarstan, Respublika' },
2597
+ { value: 'RU-TOM', country_code: 'RU', text: "Tomskaya oblast'" },
2598
+ { value: 'RU-TUL', country_code: 'RU', text: "Tul'skaya oblast'" },
2599
+ { value: 'RU-TVE', country_code: 'RU', text: "Tverskaya oblast'" },
2600
+ { value: 'RU-TYU', country_code: 'RU', text: "Tyumenskaya oblast'" },
2601
+ { value: 'RU-TY', country_code: 'RU', text: 'Tyva, Respublika' },
2602
+ { value: 'RU-UD', country_code: 'RU', text: 'Udmurtskaya Respublika' },
2603
+ { value: 'RU-ULY', country_code: 'RU', text: "Ul'yanovskaya oblast'" },
2604
+ { value: 'RU-VLA', country_code: 'RU', text: "Vladimirskaya oblast'" },
2605
+ { value: 'RU-VGG', country_code: 'RU', text: "Volgogradskaya oblast'" },
2606
+ { value: 'RU-VLG', country_code: 'RU', text: "Vologodskaya oblast'" },
2607
+ { value: 'RU-VOR', country_code: 'RU', text: "Voronezhskaya oblast'" },
2608
+ { value: 'RU-YAN', country_code: 'RU', text: 'Yamalo-Nenetskiy avtonomnyy okrug' },
2609
+ { value: 'RU-YAR', country_code: 'RU', text: "Yaroslavskaya oblast'" },
2610
+ { value: 'RU-YEV', country_code: 'RU', text: "Yevreyskaya avtonomnaya oblast'" },
2611
+ { value: 'RU-ZAB', country_code: 'RU', text: "Zabaykal'skiy kray" },
2612
+ { value: 'RW-02', country_code: 'RW', text: 'Est' },
2613
+ { value: 'RW-03', country_code: 'RW', text: 'Nord' },
2614
+ { value: 'RW-04', country_code: 'RW', text: 'Ouest' },
2615
+ { value: 'RW-05', country_code: 'RW', text: 'Sud' },
2616
+ { value: 'RW-01', country_code: 'RW', text: 'Ville de Kigali' },
2617
+ { value: 'SA-14', country_code: 'SA', text: "'Asir" },
2618
+ { value: 'SA-11', country_code: 'SA', text: 'Al Bahah' },
2619
+ { value: 'SA-08', country_code: 'SA', text: 'Al Hudud ash Shamaliyah' },
2620
+ { value: 'SA-12', country_code: 'SA', text: 'Al Jawf' },
2621
+ { value: 'SA-03', country_code: 'SA', text: 'Al Madinah al Munawwarah' },
2622
+ { value: 'SA-05', country_code: 'SA', text: 'Al Qasim' },
2623
+ { value: 'SA-01', country_code: 'SA', text: 'Ar Riyad' },
2624
+ { value: 'SA-04', country_code: 'SA', text: 'Ash Sharqiyah' },
2625
+ { value: 'SA-06', country_code: 'SA', text: "Ha'il" },
2626
+ { value: 'SA-09', country_code: 'SA', text: 'Jazan' },
2627
+ { value: 'SA-02', country_code: 'SA', text: 'Makkah al Mukarramah' },
2628
+ { value: 'SA-10', country_code: 'SA', text: 'Najran' },
2629
+ { value: 'SA-07', country_code: 'SA', text: 'Tabuk' },
2630
+ { value: 'SB-CE', country_code: 'SB', text: 'Central' },
2631
+ { value: 'SB-GU', country_code: 'SB', text: 'Guadalcanal' },
2632
+ { value: 'SB-IS', country_code: 'SB', text: 'Isabel' },
2633
+ { value: 'SB-MK', country_code: 'SB', text: 'Makira-Ulawa' },
2634
+ { value: 'SB-ML', country_code: 'SB', text: 'Malaita' },
2635
+ { value: 'SB-WE', country_code: 'SB', text: 'Western' },
2636
+ { value: 'SC-16', country_code: 'SC', text: 'English River' },
2637
+ { value: 'SD-NB', country_code: 'SD', text: 'Blue Nile' },
2638
+ { value: 'SD-GD', country_code: 'SD', text: 'Gedaref' },
2639
+ { value: 'SD-GZ', country_code: 'SD', text: 'Gezira' },
2640
+ { value: 'SD-KA', country_code: 'SD', text: 'Kassala' },
2641
+ { value: 'SD-KH', country_code: 'SD', text: 'Khartoum' },
2642
+ { value: 'SD-DN', country_code: 'SD', text: 'North Darfur' },
2643
+ { value: 'SD-KN', country_code: 'SD', text: 'North Kordofan' },
2644
+ { value: 'SD-NO', country_code: 'SD', text: 'Northern' },
2645
+ { value: 'SD-RS', country_code: 'SD', text: 'Red Sea' },
2646
+ { value: 'SD-NR', country_code: 'SD', text: 'River Nile' },
2647
+ { value: 'SD-SI', country_code: 'SD', text: 'Sennar' },
2648
+ { value: 'SD-DS', country_code: 'SD', text: 'South Darfur' },
2649
+ { value: 'SD-KS', country_code: 'SD', text: 'South Kordofan' },
2650
+ { value: 'SD-DW', country_code: 'SD', text: 'West Darfur' },
2651
+ { value: 'SD-NW', country_code: 'SD', text: 'White Nile' },
2652
+ { value: 'SE-K', country_code: 'SE', text: 'Blekinge lan' },
2653
+ { value: 'SE-W', country_code: 'SE', text: 'Dalarnas lan' },
2654
+ { value: 'SE-X', country_code: 'SE', text: 'Gavleborgs lan' },
2655
+ { value: 'SE-I', country_code: 'SE', text: 'Gotlands lan' },
2656
+ { value: 'SE-N', country_code: 'SE', text: 'Hallands lan' },
2657
+ { value: 'SE-Z', country_code: 'SE', text: 'Jamtlands lan' },
2658
+ { value: 'SE-F', country_code: 'SE', text: 'Jonkopings lan' },
2659
+ { value: 'SE-H', country_code: 'SE', text: 'Kalmar lan' },
2660
+ { value: 'SE-G', country_code: 'SE', text: 'Kronobergs lan' },
2661
+ { value: 'SE-BD', country_code: 'SE', text: 'Norrbottens lan' },
2662
+ { value: 'SE-T', country_code: 'SE', text: 'Orebro lan' },
2663
+ { value: 'SE-E', country_code: 'SE', text: 'Ostergotlands lan' },
2664
+ { value: 'SE-M', country_code: 'SE', text: 'Skane lan' },
2665
+ { value: 'SE-D', country_code: 'SE', text: 'Sodermanlands lan' },
2666
+ { value: 'SE-AB', country_code: 'SE', text: 'Stockholms lan' },
2667
+ { value: 'SE-C', country_code: 'SE', text: 'Uppsala lan' },
2668
+ { value: 'SE-S', country_code: 'SE', text: 'Varmlands lan' },
2669
+ { value: 'SE-AC', country_code: 'SE', text: 'Vasterbottens lan' },
2670
+ { value: 'SE-Y', country_code: 'SE', text: 'Vasternorrlands lan' },
2671
+ { value: 'SE-U', country_code: 'SE', text: 'Vastmanlands lan' },
2672
+ { value: 'SE-O', country_code: 'SE', text: 'Vastra Gotalands lan' },
2673
+ { value: 'SH-AC', country_code: 'SH', text: 'Ascension' },
2674
+ { value: 'SH-HL', country_code: 'SH', text: 'Saint Helena' },
2675
+ { value: 'SH-TA', country_code: 'SH', text: 'Tristan da Cunha' },
2676
+ { value: 'SI-001', country_code: 'SI', text: 'Ajdovscina' },
2677
+ { value: 'SI-003', country_code: 'SI', text: 'Bled' },
2678
+ { value: 'SI-004', country_code: 'SI', text: 'Bohinj' },
2679
+ { value: 'SI-005', country_code: 'SI', text: 'Borovnica' },
2680
+ { value: 'SI-006', country_code: 'SI', text: 'Bovec' },
2681
+ { value: 'SI-009', country_code: 'SI', text: 'Brezice' },
2682
+ { value: 'SI-008', country_code: 'SI', text: 'Brezovica' },
2683
+ { value: 'SI-011', country_code: 'SI', text: 'Celje' },
2684
+ { value: 'SI-013', country_code: 'SI', text: 'Cerknica' },
2685
+ { value: 'SI-014', country_code: 'SI', text: 'Cerkno' },
2686
+ { value: 'SI-015', country_code: 'SI', text: 'Crensovci' },
2687
+ { value: 'SI-017', country_code: 'SI', text: 'Crnomelj' },
2688
+ { value: 'SI-018', country_code: 'SI', text: 'Destrnik' },
2689
+ { value: 'SI-019', country_code: 'SI', text: 'Divaca' },
2690
+ { value: 'SI-023', country_code: 'SI', text: 'Domzale' },
2691
+ { value: 'SI-025', country_code: 'SI', text: 'Dravograd' },
2692
+ { value: 'SI-029', country_code: 'SI', text: 'Gornja Radgona' },
2693
+ { value: 'SI-032', country_code: 'SI', text: 'Grosuplje' },
2694
+ { value: 'SI-160', country_code: 'SI', text: 'Hoce-Slivnica' },
2695
+ { value: 'SI-162', country_code: 'SI', text: 'Horjul' },
2696
+ { value: 'SI-034', country_code: 'SI', text: 'Hrastnik' },
2697
+ { value: 'SI-036', country_code: 'SI', text: 'Idrija' },
2698
+ { value: 'SI-037', country_code: 'SI', text: 'Ig' },
2699
+ { value: 'SI-038', country_code: 'SI', text: 'Ilirska Bistrica' },
2700
+ { value: 'SI-039', country_code: 'SI', text: 'Ivancna Gorica' },
2701
+ { value: 'SI-040', country_code: 'SI', text: 'Izola' },
2702
+ { value: 'SI-041', country_code: 'SI', text: 'Jesenice' },
2703
+ { value: 'SI-043', country_code: 'SI', text: 'Kamnik' },
2704
+ { value: 'SI-044', country_code: 'SI', text: 'Kanal' },
2705
+ { value: 'SI-045', country_code: 'SI', text: 'Kidricevo' },
2706
+ { value: 'SI-046', country_code: 'SI', text: 'Kobarid' },
2707
+ { value: 'SI-048', country_code: 'SI', text: 'Kocevje' },
2708
+ { value: 'SI-050', country_code: 'SI', text: 'Koper' },
2709
+ { value: 'SI-052', country_code: 'SI', text: 'Kranj' },
2710
+ { value: 'SI-053', country_code: 'SI', text: 'Kranjska Gora' },
2711
+ { value: 'SI-054', country_code: 'SI', text: 'Krsko' },
2712
+ { value: 'SI-057', country_code: 'SI', text: 'Lasko' },
2713
+ { value: 'SI-058', country_code: 'SI', text: 'Lenart' },
2714
+ { value: 'SI-059', country_code: 'SI', text: 'Lendava' },
2715
+ { value: 'SI-060', country_code: 'SI', text: 'Litija' },
2716
+ { value: 'SI-061', country_code: 'SI', text: 'Ljubljana' },
2717
+ { value: 'SI-063', country_code: 'SI', text: 'Ljutomer' },
2718
+ { value: 'SI-208', country_code: 'SI', text: 'Log-Dragomer' },
2719
+ { value: 'SI-064', country_code: 'SI', text: 'Logatec' },
2720
+ { value: 'SI-167', country_code: 'SI', text: 'Lovrenc na Pohorju' },
2721
+ { value: 'SI-070', country_code: 'SI', text: 'Maribor' },
2722
+ { value: 'SI-071', country_code: 'SI', text: 'Medvode' },
2723
+ { value: 'SI-072', country_code: 'SI', text: 'Menges' },
2724
+ { value: 'SI-073', country_code: 'SI', text: 'Metlika' },
2725
+ { value: 'SI-074', country_code: 'SI', text: 'Mezica' },
2726
+ { value: 'SI-169', country_code: 'SI', text: 'Miklavz na Dravskem Polju' },
2727
+ { value: 'SI-075', country_code: 'SI', text: 'Miren-Kostanjevica' },
2728
+ { value: 'SI-076', country_code: 'SI', text: 'Mislinja' },
2729
+ { value: 'SI-079', country_code: 'SI', text: 'Mozirje' },
2730
+ { value: 'SI-080', country_code: 'SI', text: 'Murska Sobota' },
2731
+ { value: 'SI-081', country_code: 'SI', text: 'Muta' },
2732
+ { value: 'SI-084', country_code: 'SI', text: 'Nova Gorica' },
2733
+ { value: 'SI-085', country_code: 'SI', text: 'Novo Mesto' },
2734
+ { value: 'SI-086', country_code: 'SI', text: 'Odranci' },
2735
+ { value: 'SI-171', country_code: 'SI', text: 'Oplotnica' },
2736
+ { value: 'SI-087', country_code: 'SI', text: 'Ormoz' },
2737
+ { value: 'SI-090', country_code: 'SI', text: 'Piran' },
2738
+ { value: 'SI-091', country_code: 'SI', text: 'Pivka' },
2739
+ { value: 'SI-200', country_code: 'SI', text: 'Poljcane' },
2740
+ { value: 'SI-173', country_code: 'SI', text: 'Polzela' },
2741
+ { value: 'SI-094', country_code: 'SI', text: 'Postojna' },
2742
+ { value: 'SI-174', country_code: 'SI', text: 'Prebold' },
2743
+ { value: 'SI-175', country_code: 'SI', text: 'Prevalje' },
2744
+ { value: 'SI-096', country_code: 'SI', text: 'Ptuj' },
2745
+ { value: 'SI-098', country_code: 'SI', text: 'Race-Fram' },
2746
+ { value: 'SI-099', country_code: 'SI', text: 'Radece' },
2747
+ { value: 'SI-100', country_code: 'SI', text: 'Radenci' },
2748
+ { value: 'SI-101', country_code: 'SI', text: 'Radlje ob Dravi' },
2749
+ { value: 'SI-102', country_code: 'SI', text: 'Radovljica' },
2750
+ { value: 'SI-103', country_code: 'SI', text: 'Ravne na Koroskem' },
2751
+ { value: 'SI-104', country_code: 'SI', text: 'Ribnica' },
2752
+ { value: 'SI-106', country_code: 'SI', text: 'Rogaska Slatina' },
2753
+ { value: 'SI-108', country_code: 'SI', text: 'Ruse' },
2754
+ { value: 'SI-183', country_code: 'SI', text: 'Sempeter-Vrtojba' },
2755
+ { value: 'SI-117', country_code: 'SI', text: 'Sencur' },
2756
+ { value: 'SI-118', country_code: 'SI', text: 'Sentilj' },
2757
+ { value: 'SI-120', country_code: 'SI', text: 'Sentjur' },
2758
+ { value: 'SI-110', country_code: 'SI', text: 'Sevnica' },
2759
+ { value: 'SI-111', country_code: 'SI', text: 'Sezana' },
2760
+ { value: 'SI-122', country_code: 'SI', text: 'Skofja Loka' },
2761
+ { value: 'SI-123', country_code: 'SI', text: 'Skofljica' },
2762
+ { value: 'SI-112', country_code: 'SI', text: 'Slovenj Gradec' },
2763
+ { value: 'SI-113', country_code: 'SI', text: 'Slovenska Bistrica' },
2764
+ { value: 'SI-114', country_code: 'SI', text: 'Slovenske Konjice' },
2765
+ { value: 'SI-126', country_code: 'SI', text: 'Sostanj' },
2766
+ { value: 'SI-127', country_code: 'SI', text: 'Store' },
2767
+ { value: 'SI-203', country_code: 'SI', text: 'Straza' },
2768
+ { value: 'SI-128', country_code: 'SI', text: 'Tolmin' },
2769
+ { value: 'SI-129', country_code: 'SI', text: 'Trbovlje' },
2770
+ { value: 'SI-130', country_code: 'SI', text: 'Trebnje' },
2771
+ { value: 'SI-131', country_code: 'SI', text: 'Trzic' },
2772
+ { value: 'SI-186', country_code: 'SI', text: 'Trzin' },
2773
+ { value: 'SI-132', country_code: 'SI', text: 'Turnisce' },
2774
+ { value: 'SI-133', country_code: 'SI', text: 'Velenje' },
2775
+ { value: 'SI-136', country_code: 'SI', text: 'Vipava' },
2776
+ { value: 'SI-138', country_code: 'SI', text: 'Vodice' },
2777
+ { value: 'SI-139', country_code: 'SI', text: 'Vojnik' },
2778
+ { value: 'SI-140', country_code: 'SI', text: 'Vrhnika' },
2779
+ { value: 'SI-141', country_code: 'SI', text: 'Vuzenica' },
2780
+ { value: 'SI-142', country_code: 'SI', text: 'Zagorje ob Savi' },
2781
+ { value: 'SI-190', country_code: 'SI', text: 'Zalec' },
2782
+ { value: 'SI-146', country_code: 'SI', text: 'Zelezniki' },
2783
+ { value: 'SI-147', country_code: 'SI', text: 'Ziri' },
2784
+ { value: 'SI-144', country_code: 'SI', text: 'Zrece' },
2785
+ { value: 'SI-193', country_code: 'SI', text: 'Zuzemberk' },
2786
+ { value: 'SK-BC', country_code: 'SK', text: 'Banskobystricky kraj' },
2787
+ { value: 'SK-BL', country_code: 'SK', text: 'Bratislavsky kraj' },
2788
+ { value: 'SK-KI', country_code: 'SK', text: 'Kosicky kraj' },
2789
+ { value: 'SK-NI', country_code: 'SK', text: 'Nitriansky kraj' },
2790
+ { value: 'SK-PV', country_code: 'SK', text: 'Presovsky kraj' },
2791
+ { value: 'SK-TC', country_code: 'SK', text: 'Trenciansky kraj' },
2792
+ { value: 'SK-TA', country_code: 'SK', text: 'Trnavsky kraj' },
2793
+ { value: 'SK-ZI', country_code: 'SK', text: 'Zilinsky kraj' },
2794
+ { value: 'SL-E', country_code: 'SL', text: 'Eastern' },
2795
+ { value: 'SL-N', country_code: 'SL', text: 'Northern' },
2796
+ { value: 'SL-S', country_code: 'SL', text: 'Southern' },
2797
+ { value: 'SL-W', country_code: 'SL', text: 'Western Area' },
2798
+ { value: 'SM-01', country_code: 'SM', text: 'Acquaviva' },
2799
+ { value: 'SM-02', country_code: 'SM', text: 'Chiesanuova' },
2800
+ { value: 'SM-07', country_code: 'SM', text: 'San Marino' },
2801
+ { value: 'SM-09', country_code: 'SM', text: 'Serravalle' },
2802
+ { value: 'SN-DK', country_code: 'SN', text: 'Dakar' },
2803
+ { value: 'SN-DB', country_code: 'SN', text: 'Diourbel' },
2804
+ { value: 'SN-FK', country_code: 'SN', text: 'Fatick' },
2805
+ { value: 'SN-KA', country_code: 'SN', text: 'Kaffrine' },
2806
+ { value: 'SN-KL', country_code: 'SN', text: 'Kaolack' },
2807
+ { value: 'SN-KE', country_code: 'SN', text: 'Kedougou' },
2808
+ { value: 'SN-KD', country_code: 'SN', text: 'Kolda' },
2809
+ { value: 'SN-LG', country_code: 'SN', text: 'Louga' },
2810
+ { value: 'SN-MT', country_code: 'SN', text: 'Matam' },
2811
+ { value: 'SN-SL', country_code: 'SN', text: 'Saint-Louis' },
2812
+ { value: 'SN-SE', country_code: 'SN', text: 'Sedhiou' },
2813
+ { value: 'SN-TC', country_code: 'SN', text: 'Tambacounda' },
2814
+ { value: 'SN-TH', country_code: 'SN', text: 'Thies' },
2815
+ { value: 'SN-ZG', country_code: 'SN', text: 'Ziguinchor' },
2816
+ { value: 'SO-AW', country_code: 'SO', text: 'Awdal' },
2817
+ { value: 'SO-BK', country_code: 'SO', text: 'Bakool' },
2818
+ { value: 'SO-BN', country_code: 'SO', text: 'Banaadir' },
2819
+ { value: 'SO-BR', country_code: 'SO', text: 'Bari' },
2820
+ { value: 'SO-BY', country_code: 'SO', text: 'Bay' },
2821
+ { value: 'SO-GA', country_code: 'SO', text: 'Galguduud' },
2822
+ { value: 'SO-GE', country_code: 'SO', text: 'Gedo' },
2823
+ { value: 'SO-HI', country_code: 'SO', text: 'Hiiraan' },
2824
+ { value: 'SO-JD', country_code: 'SO', text: 'Jubbada Dhexe' },
2825
+ { value: 'SO-JH', country_code: 'SO', text: 'Jubbada Hoose' },
2826
+ { value: 'SO-MU', country_code: 'SO', text: 'Mudug' },
2827
+ { value: 'SO-NU', country_code: 'SO', text: 'Nugaal' },
2828
+ { value: 'SO-SA', country_code: 'SO', text: 'Sanaag' },
2829
+ { value: 'SO-SD', country_code: 'SO', text: 'Shabeellaha Dhexe' },
2830
+ { value: 'SO-SH', country_code: 'SO', text: 'Shabeellaha Hoose' },
2831
+ { value: 'SO-SO', country_code: 'SO', text: 'Sool' },
2832
+ { value: 'SO-TO', country_code: 'SO', text: 'Togdheer' },
2833
+ { value: 'SO-WO', country_code: 'SO', text: 'Woqooyi Galbeed' },
2834
+ { value: 'SR-BR', country_code: 'SR', text: 'Brokopondo' },
2835
+ { value: 'SR-CM', country_code: 'SR', text: 'Commewijne' },
2836
+ { value: 'SR-CR', country_code: 'SR', text: 'Coronie' },
2837
+ { value: 'SR-MA', country_code: 'SR', text: 'Marowijne' },
2838
+ { value: 'SR-NI', country_code: 'SR', text: 'Nickerie' },
2839
+ { value: 'SR-PR', country_code: 'SR', text: 'Para' },
2840
+ { value: 'SR-PM', country_code: 'SR', text: 'Paramaribo' },
2841
+ { value: 'SR-SA', country_code: 'SR', text: 'Saramacca' },
2842
+ { value: 'SR-WA', country_code: 'SR', text: 'Wanica' },
2843
+ { value: 'SS-EC', country_code: 'SS', text: 'Central Equatoria' },
2844
+ { value: 'SS-EE', country_code: 'SS', text: 'Eastern Equatoria' },
2845
+ { value: 'SS-JG', country_code: 'SS', text: 'Jonglei' },
2846
+ { value: 'SS-LK', country_code: 'SS', text: 'Lakes' },
2847
+ { value: 'SS-BN', country_code: 'SS', text: 'Northern Bahr el Ghazal' },
2848
+ { value: 'SS-UY', country_code: 'SS', text: 'Unity' },
2849
+ { value: 'SS-NU', country_code: 'SS', text: 'Upper Nile' },
2850
+ { value: 'SS-WR', country_code: 'SS', text: 'Warrap' },
2851
+ { value: 'SS-BW', country_code: 'SS', text: 'Western Bahr el Ghazal' },
2852
+ { value: 'SS-EW', country_code: 'SS', text: 'Western Equatoria' },
2853
+ { value: 'ST-P', country_code: 'ST', text: 'Principe' },
2854
+ { value: 'ST-S', country_code: 'ST', text: 'Sao Tome' },
2855
+ { value: 'SV-AH', country_code: 'SV', text: 'Ahuachapan' },
2856
+ { value: 'SV-CA', country_code: 'SV', text: 'Cabanas' },
2857
+ { value: 'SV-CH', country_code: 'SV', text: 'Chalatenango' },
2858
+ { value: 'SV-CU', country_code: 'SV', text: 'Cuscatlan' },
2859
+ { value: 'SV-LI', country_code: 'SV', text: 'La Libertad' },
2860
+ { value: 'SV-PA', country_code: 'SV', text: 'La Paz' },
2861
+ { value: 'SV-UN', country_code: 'SV', text: 'La Union' },
2862
+ { value: 'SV-MO', country_code: 'SV', text: 'Morazan' },
2863
+ { value: 'SV-SM', country_code: 'SV', text: 'San Miguel' },
2864
+ { value: 'SV-SS', country_code: 'SV', text: 'San Salvador' },
2865
+ { value: 'SV-SV', country_code: 'SV', text: 'San Vicente' },
2866
+ { value: 'SV-SA', country_code: 'SV', text: 'Santa Ana' },
2867
+ { value: 'SV-SO', country_code: 'SV', text: 'Sonsonate' },
2868
+ { value: 'SV-US', country_code: 'SV', text: 'Usulutan' },
2869
+ { value: 'SY-HA', country_code: 'SY', text: 'Al Hasakah' },
2870
+ { value: 'SY-LA', country_code: 'SY', text: 'Al Ladhiqiyah' },
2871
+ { value: 'SY-QU', country_code: 'SY', text: 'Al Qunaytirah' },
2872
+ { value: 'SY-RA', country_code: 'SY', text: 'Ar Raqqah' },
2873
+ { value: 'SY-SU', country_code: 'SY', text: "As Suwayda'" },
2874
+ { value: 'SY-DR', country_code: 'SY', text: "Dar'a" },
2875
+ { value: 'SY-DY', country_code: 'SY', text: 'Dayr az Zawr' },
2876
+ { value: 'SY-DI', country_code: 'SY', text: 'Dimashq' },
2877
+ { value: 'SY-HL', country_code: 'SY', text: 'Halab' },
2878
+ { value: 'SY-HM', country_code: 'SY', text: 'Hamah' },
2879
+ { value: 'SY-HI', country_code: 'SY', text: 'Hims' },
2880
+ { value: 'SY-ID', country_code: 'SY', text: 'Idlib' },
2881
+ { value: 'SY-RD', country_code: 'SY', text: 'Rif Dimashq' },
2882
+ { value: 'SY-TA', country_code: 'SY', text: 'Tartus' },
2883
+ { value: 'SZ-HH', country_code: 'SZ', text: 'Hhohho' },
2884
+ { value: 'SZ-LU', country_code: 'SZ', text: 'Lubombo' },
2885
+ { value: 'SZ-MA', country_code: 'SZ', text: 'Manzini' },
2886
+ { value: 'SZ-SH', country_code: 'SZ', text: 'Shiselweni' },
2887
+ { value: 'TD-BG', country_code: 'TD', text: 'Bahr el Gazel' },
2888
+ { value: 'TD-BA', country_code: 'TD', text: 'Batha' },
2889
+ { value: 'TD-BO', country_code: 'TD', text: 'Borkou' },
2890
+ { value: 'TD-CB', country_code: 'TD', text: 'Chari-Baguirmi' },
2891
+ { value: 'TD-GR', country_code: 'TD', text: 'Guera' },
2892
+ { value: 'TD-HL', country_code: 'TD', text: 'Hadjer Lamis' },
2893
+ { value: 'TD-KA', country_code: 'TD', text: 'Kanem' },
2894
+ { value: 'TD-LC', country_code: 'TD', text: 'Lac' },
2895
+ { value: 'TD-LO', country_code: 'TD', text: 'Logone-Occidental' },
2896
+ { value: 'TD-LR', country_code: 'TD', text: 'Logone-Oriental' },
2897
+ { value: 'TD-MA', country_code: 'TD', text: 'Mandoul' },
2898
+ { value: 'TD-ME', country_code: 'TD', text: 'Mayo-Kebbi-Est' },
2899
+ { value: 'TD-MO', country_code: 'TD', text: 'Mayo-Kebbi-Ouest' },
2900
+ { value: 'TD-MC', country_code: 'TD', text: 'Moyen-Chari' },
2901
+ { value: 'TD-OD', country_code: 'TD', text: 'Ouaddai' },
2902
+ { value: 'TD-SA', country_code: 'TD', text: 'Salamat' },
2903
+ { value: 'TD-TA', country_code: 'TD', text: 'Tandjile' },
2904
+ { value: 'TD-TI', country_code: 'TD', text: 'Tibesti' },
2905
+ { value: 'TD-WF', country_code: 'TD', text: 'Wadi Fira' },
2906
+ { value: 'TG-C', country_code: 'TG', text: 'Centrale' },
2907
+ { value: 'TG-K', country_code: 'TG', text: 'Kara' },
2908
+ { value: 'TG-M', country_code: 'TG', text: 'Maritime' },
2909
+ { value: 'TG-P', country_code: 'TG', text: 'Plateaux' },
2910
+ { value: 'TG-S', country_code: 'TG', text: 'Savannes' },
2911
+ { value: 'TH-37', country_code: 'TH', text: 'Amnat Charoen' },
2912
+ { value: 'TH-15', country_code: 'TH', text: 'Ang Thong' },
2913
+ { value: 'TH-31', country_code: 'TH', text: 'Buri Ram' },
2914
+ { value: 'TH-24', country_code: 'TH', text: 'Chachoengsao' },
2915
+ { value: 'TH-18', country_code: 'TH', text: 'Chai Nat' },
2916
+ { value: 'TH-36', country_code: 'TH', text: 'Chaiyaphum' },
2917
+ { value: 'TH-22', country_code: 'TH', text: 'Chanthaburi' },
2918
+ { value: 'TH-50', country_code: 'TH', text: 'Chiang Mai' },
2919
+ { value: 'TH-57', country_code: 'TH', text: 'Chiang Rai' },
2920
+ { value: 'TH-20', country_code: 'TH', text: 'Chon Buri' },
2921
+ { value: 'TH-86', country_code: 'TH', text: 'Chumphon' },
2922
+ { value: 'TH-46', country_code: 'TH', text: 'Kalasin' },
2923
+ { value: 'TH-62', country_code: 'TH', text: 'Kamphaeng Phet' },
2924
+ { value: 'TH-71', country_code: 'TH', text: 'Kanchanaburi' },
2925
+ { value: 'TH-40', country_code: 'TH', text: 'Khon Kaen' },
2926
+ { value: 'TH-81', country_code: 'TH', text: 'Krabi' },
2927
+ { value: 'TH-10', country_code: 'TH', text: 'Krung Thep Maha Nakhon' },
2928
+ { value: 'TH-52', country_code: 'TH', text: 'Lampang' },
2929
+ { value: 'TH-51', country_code: 'TH', text: 'Lamphun' },
2930
+ { value: 'TH-42', country_code: 'TH', text: 'Loei' },
2931
+ { value: 'TH-16', country_code: 'TH', text: 'Lop Buri' },
2932
+ { value: 'TH-58', country_code: 'TH', text: 'Mae Hong Son' },
2933
+ { value: 'TH-44', country_code: 'TH', text: 'Maha Sarakham' },
2934
+ { value: 'TH-49', country_code: 'TH', text: 'Mukdahan' },
2935
+ { value: 'TH-26', country_code: 'TH', text: 'Nakhon Nayok' },
2936
+ { value: 'TH-73', country_code: 'TH', text: 'Nakhon Pathom' },
2937
+ { value: 'TH-48', country_code: 'TH', text: 'Nakhon Phanom' },
2938
+ { value: 'TH-30', country_code: 'TH', text: 'Nakhon Ratchasima' },
2939
+ { value: 'TH-60', country_code: 'TH', text: 'Nakhon Sawan' },
2940
+ { value: 'TH-80', country_code: 'TH', text: 'Nakhon Si Thammarat' },
2941
+ { value: 'TH-55', country_code: 'TH', text: 'Nan' },
2942
+ { value: 'TH-96', country_code: 'TH', text: 'Narathiwat' },
2943
+ { value: 'TH-39', country_code: 'TH', text: 'Nong Bua Lam Phu' },
2944
+ { value: 'TH-43', country_code: 'TH', text: 'Nong Khai' },
2945
+ { value: 'TH-12', country_code: 'TH', text: 'Nonthaburi' },
2946
+ { value: 'TH-13', country_code: 'TH', text: 'Pathum Thani' },
2947
+ { value: 'TH-94', country_code: 'TH', text: 'Pattani' },
2948
+ { value: 'TH-82', country_code: 'TH', text: 'Phangnga' },
2949
+ { value: 'TH-93', country_code: 'TH', text: 'Phatthalung' },
2950
+ { value: 'TH-56', country_code: 'TH', text: 'Phayao' },
2951
+ { value: 'TH-67', country_code: 'TH', text: 'Phetchabun' },
2952
+ { value: 'TH-76', country_code: 'TH', text: 'Phetchaburi' },
2953
+ { value: 'TH-66', country_code: 'TH', text: 'Phichit' },
2954
+ { value: 'TH-65', country_code: 'TH', text: 'Phitsanulok' },
2955
+ { value: 'TH-14', country_code: 'TH', text: 'Phra Nakhon Si Ayutthaya' },
2956
+ { value: 'TH-54', country_code: 'TH', text: 'Phrae' },
2957
+ { value: 'TH-83', country_code: 'TH', text: 'Phuket' },
2958
+ { value: 'TH-25', country_code: 'TH', text: 'Prachin Buri' },
2959
+ { value: 'TH-77', country_code: 'TH', text: 'Prachuap Khiri Khan' },
2960
+ { value: 'TH-85', country_code: 'TH', text: 'Ranong' },
2961
+ { value: 'TH-70', country_code: 'TH', text: 'Ratchaburi' },
2962
+ { value: 'TH-21', country_code: 'TH', text: 'Rayong' },
2963
+ { value: 'TH-45', country_code: 'TH', text: 'Roi Et' },
2964
+ { value: 'TH-27', country_code: 'TH', text: 'Sa Kaeo' },
2965
+ { value: 'TH-47', country_code: 'TH', text: 'Sakon Nakhon' },
2966
+ { value: 'TH-11', country_code: 'TH', text: 'Samut Prakan' },
2967
+ { value: 'TH-74', country_code: 'TH', text: 'Samut Sakhon' },
2968
+ { value: 'TH-75', country_code: 'TH', text: 'Samut Songkhram' },
2969
+ { value: 'TH-19', country_code: 'TH', text: 'Saraburi' },
2970
+ { value: 'TH-91', country_code: 'TH', text: 'Satun' },
2971
+ { value: 'TH-33', country_code: 'TH', text: 'Si Sa Ket' },
2972
+ { value: 'TH-17', country_code: 'TH', text: 'Sing Buri' },
2973
+ { value: 'TH-90', country_code: 'TH', text: 'Songkhla' },
2974
+ { value: 'TH-64', country_code: 'TH', text: 'Sukhothai' },
2975
+ { value: 'TH-72', country_code: 'TH', text: 'Suphan Buri' },
2976
+ { value: 'TH-84', country_code: 'TH', text: 'Surat Thani' },
2977
+ { value: 'TH-32', country_code: 'TH', text: 'Surin' },
2978
+ { value: 'TH-63', country_code: 'TH', text: 'Tak' },
2979
+ { value: 'TH-92', country_code: 'TH', text: 'Trang' },
2980
+ { value: 'TH-23', country_code: 'TH', text: 'Trat' },
2981
+ { value: 'TH-34', country_code: 'TH', text: 'Ubon Ratchathani' },
2982
+ { value: 'TH-41', country_code: 'TH', text: 'Udon Thani' },
2983
+ { value: 'TH-61', country_code: 'TH', text: 'Uthai Thani' },
2984
+ { value: 'TH-53', country_code: 'TH', text: 'Uttaradit' },
2985
+ { value: 'TH-95', country_code: 'TH', text: 'Yala' },
2986
+ { value: 'TH-35', country_code: 'TH', text: 'Yasothon' },
2987
+ { value: 'TJ-DU', country_code: 'TJ', text: 'Dushanbe' },
2988
+ { value: 'TJ-KT', country_code: 'TJ', text: 'Khatlon' },
2989
+ { value: 'TJ-GB', country_code: 'TJ', text: 'Kuhistoni Badakhshon' },
2990
+ { value: 'TJ-RA', country_code: 'TJ', text: 'Nohiyahoi Tobei Jumhuri' },
2991
+ { value: 'TJ-SU', country_code: 'TJ', text: 'Sughd' },
2992
+ { value: 'TL-DI', country_code: 'TL', text: 'Dili' },
2993
+ { value: 'TM-A', country_code: 'TM', text: 'Ahal' },
2994
+ { value: 'TM-B', country_code: 'TM', text: 'Balkan' },
2995
+ { value: 'TM-D', country_code: 'TM', text: 'Dasoguz' },
2996
+ { value: 'TM-L', country_code: 'TM', text: 'Lebap' },
2997
+ { value: 'TM-M', country_code: 'TM', text: 'Mary' },
2998
+ { value: 'TN-31', country_code: 'TN', text: 'Beja' },
2999
+ { value: 'TN-13', country_code: 'TN', text: 'Ben Arous' },
3000
+ { value: 'TN-23', country_code: 'TN', text: 'Bizerte' },
3001
+ { value: 'TN-81', country_code: 'TN', text: 'Gabes' },
3002
+ { value: 'TN-71', country_code: 'TN', text: 'Gafsa' },
3003
+ { value: 'TN-32', country_code: 'TN', text: 'Jendouba' },
3004
+ { value: 'TN-41', country_code: 'TN', text: 'Kairouan' },
3005
+ { value: 'TN-42', country_code: 'TN', text: 'Kasserine' },
3006
+ { value: 'TN-73', country_code: 'TN', text: 'Kebili' },
3007
+ { value: 'TN-12', country_code: 'TN', text: "L'Ariana" },
3008
+ { value: 'TN-14', country_code: 'TN', text: 'La Manouba' },
3009
+ { value: 'TN-33', country_code: 'TN', text: 'Le Kef' },
3010
+ { value: 'TN-53', country_code: 'TN', text: 'Mahdia' },
3011
+ { value: 'TN-82', country_code: 'TN', text: 'Medenine' },
3012
+ { value: 'TN-52', country_code: 'TN', text: 'Monastir' },
3013
+ { value: 'TN-21', country_code: 'TN', text: 'Nabeul' },
3014
+ { value: 'TN-61', country_code: 'TN', text: 'Sfax' },
3015
+ { value: 'TN-43', country_code: 'TN', text: 'Sidi Bouzid' },
3016
+ { value: 'TN-34', country_code: 'TN', text: 'Siliana' },
3017
+ { value: 'TN-51', country_code: 'TN', text: 'Sousse' },
3018
+ { value: 'TN-83', country_code: 'TN', text: 'Tataouine' },
3019
+ { value: 'TN-72', country_code: 'TN', text: 'Tozeur' },
3020
+ { value: 'TN-11', country_code: 'TN', text: 'Tunis' },
3021
+ { value: 'TN-22', country_code: 'TN', text: 'Zaghouan' },
3022
+ { value: 'TO-02', country_code: 'TO', text: "Ha'apai" },
3023
+ { value: 'TO-04', country_code: 'TO', text: 'Tongatapu' },
3024
+ { value: 'TO-05', country_code: 'TO', text: "Vava'u" },
3025
+ { value: 'TR-01', country_code: 'TR', text: 'Adana' },
3026
+ { value: 'TR-02', country_code: 'TR', text: 'Adiyaman' },
3027
+ { value: 'TR-03', country_code: 'TR', text: 'Afyonkarahisar' },
3028
+ { value: 'TR-04', country_code: 'TR', text: 'Agri' },
3029
+ { value: 'TR-68', country_code: 'TR', text: 'Aksaray' },
3030
+ { value: 'TR-05', country_code: 'TR', text: 'Amasya' },
3031
+ { value: 'TR-06', country_code: 'TR', text: 'Ankara' },
3032
+ { value: 'TR-07', country_code: 'TR', text: 'Antalya' },
3033
+ { value: 'TR-75', country_code: 'TR', text: 'Ardahan' },
3034
+ { value: 'TR-08', country_code: 'TR', text: 'Artvin' },
3035
+ { value: 'TR-09', country_code: 'TR', text: 'Aydin' },
3036
+ { value: 'TR-10', country_code: 'TR', text: 'Balikesir' },
3037
+ { value: 'TR-74', country_code: 'TR', text: 'Bartin' },
3038
+ { value: 'TR-72', country_code: 'TR', text: 'Batman' },
3039
+ { value: 'TR-69', country_code: 'TR', text: 'Bayburt' },
3040
+ { value: 'TR-11', country_code: 'TR', text: 'Bilecik' },
3041
+ { value: 'TR-12', country_code: 'TR', text: 'Bingol' },
3042
+ { value: 'TR-13', country_code: 'TR', text: 'Bitlis' },
3043
+ { value: 'TR-14', country_code: 'TR', text: 'Bolu' },
3044
+ { value: 'TR-15', country_code: 'TR', text: 'Burdur' },
3045
+ { value: 'TR-16', country_code: 'TR', text: 'Bursa' },
3046
+ { value: 'TR-17', country_code: 'TR', text: 'Canakkale' },
3047
+ { value: 'TR-18', country_code: 'TR', text: 'Cankiri' },
3048
+ { value: 'TR-19', country_code: 'TR', text: 'Corum' },
3049
+ { value: 'TR-20', country_code: 'TR', text: 'Denizli' },
3050
+ { value: 'TR-21', country_code: 'TR', text: 'Diyarbakir' },
3051
+ { value: 'TR-81', country_code: 'TR', text: 'Duzce' },
3052
+ { value: 'TR-22', country_code: 'TR', text: 'Edirne' },
3053
+ { value: 'TR-23', country_code: 'TR', text: 'Elazig' },
3054
+ { value: 'TR-24', country_code: 'TR', text: 'Erzincan' },
3055
+ { value: 'TR-25', country_code: 'TR', text: 'Erzurum' },
3056
+ { value: 'TR-26', country_code: 'TR', text: 'Eskisehir' },
3057
+ { value: 'TR-27', country_code: 'TR', text: 'Gaziantep' },
3058
+ { value: 'TR-28', country_code: 'TR', text: 'Giresun' },
3059
+ { value: 'TR-29', country_code: 'TR', text: 'Gumushane' },
3060
+ { value: 'TR-30', country_code: 'TR', text: 'Hakkari' },
3061
+ { value: 'TR-31', country_code: 'TR', text: 'Hatay' },
3062
+ { value: 'TR-76', country_code: 'TR', text: 'Igdir' },
3063
+ { value: 'TR-32', country_code: 'TR', text: 'Isparta' },
3064
+ { value: 'TR-34', country_code: 'TR', text: 'Istanbul' },
3065
+ { value: 'TR-35', country_code: 'TR', text: 'Izmir' },
3066
+ { value: 'TR-46', country_code: 'TR', text: 'Kahramanmaras' },
3067
+ { value: 'TR-78', country_code: 'TR', text: 'Karabuk' },
3068
+ { value: 'TR-70', country_code: 'TR', text: 'Karaman' },
3069
+ { value: 'TR-36', country_code: 'TR', text: 'Kars' },
3070
+ { value: 'TR-37', country_code: 'TR', text: 'Kastamonu' },
3071
+ { value: 'TR-38', country_code: 'TR', text: 'Kayseri' },
3072
+ { value: 'TR-79', country_code: 'TR', text: 'Kilis' },
3073
+ { value: 'TR-71', country_code: 'TR', text: 'Kirikkale' },
3074
+ { value: 'TR-39', country_code: 'TR', text: 'Kirklareli' },
3075
+ { value: 'TR-40', country_code: 'TR', text: 'Kirsehir' },
3076
+ { value: 'TR-41', country_code: 'TR', text: 'Kocaeli' },
3077
+ { value: 'TR-42', country_code: 'TR', text: 'Konya' },
3078
+ { value: 'TR-43', country_code: 'TR', text: 'Kutahya' },
3079
+ { value: 'TR-44', country_code: 'TR', text: 'Malatya' },
3080
+ { value: 'TR-45', country_code: 'TR', text: 'Manisa' },
3081
+ { value: 'TR-47', country_code: 'TR', text: 'Mardin' },
3082
+ { value: 'TR-33', country_code: 'TR', text: 'Mersin' },
3083
+ { value: 'TR-48', country_code: 'TR', text: 'Mugla' },
3084
+ { value: 'TR-49', country_code: 'TR', text: 'Mus' },
3085
+ { value: 'TR-50', country_code: 'TR', text: 'Nevsehir' },
3086
+ { value: 'TR-51', country_code: 'TR', text: 'Nigde' },
3087
+ { value: 'TR-52', country_code: 'TR', text: 'Ordu' },
3088
+ { value: 'TR-80', country_code: 'TR', text: 'Osmaniye' },
3089
+ { value: 'TR-53', country_code: 'TR', text: 'Rize' },
3090
+ { value: 'TR-54', country_code: 'TR', text: 'Sakarya' },
3091
+ { value: 'TR-55', country_code: 'TR', text: 'Samsun' },
3092
+ { value: 'TR-63', country_code: 'TR', text: 'Sanliurfa' },
3093
+ { value: 'TR-56', country_code: 'TR', text: 'Siirt' },
3094
+ { value: 'TR-57', country_code: 'TR', text: 'Sinop' },
3095
+ { value: 'TR-73', country_code: 'TR', text: 'Sirnak' },
3096
+ { value: 'TR-58', country_code: 'TR', text: 'Sivas' },
3097
+ { value: 'TR-59', country_code: 'TR', text: 'Tekirdag' },
3098
+ { value: 'TR-60', country_code: 'TR', text: 'Tokat' },
3099
+ { value: 'TR-61', country_code: 'TR', text: 'Trabzon' },
3100
+ { value: 'TR-62', country_code: 'TR', text: 'Tunceli' },
3101
+ { value: 'TR-64', country_code: 'TR', text: 'Usak' },
3102
+ { value: 'TR-65', country_code: 'TR', text: 'Van' },
3103
+ { value: 'TR-77', country_code: 'TR', text: 'Yalova' },
3104
+ { value: 'TR-66', country_code: 'TR', text: 'Yozgat' },
3105
+ { value: 'TR-67', country_code: 'TR', text: 'Zonguldak' },
3106
+ { value: 'TT-ARI', country_code: 'TT', text: 'Arima' },
3107
+ { value: 'TT-CHA', country_code: 'TT', text: 'Chaguanas' },
3108
+ { value: 'TT-CTT', country_code: 'TT', text: 'Couva-Tabaquite-Talparo' },
3109
+ { value: 'TT-DMN', country_code: 'TT', text: 'Diego Martin' },
3110
+ { value: 'TT-MRC', country_code: 'TT', text: 'Mayaro-Rio Claro' },
3111
+ { value: 'TT-PED', country_code: 'TT', text: 'Penal-Debe' },
3112
+ { value: 'TT-PTF', country_code: 'TT', text: 'Point Fortin' },
3113
+ { value: 'TT-POS', country_code: 'TT', text: 'Port of Spain' },
3114
+ { value: 'TT-PRT', country_code: 'TT', text: 'Princes Town' },
3115
+ { value: 'TT-SFO', country_code: 'TT', text: 'San Fernando' },
3116
+ { value: 'TT-SJL', country_code: 'TT', text: 'San Juan-Laventille' },
3117
+ { value: 'TT-SGE', country_code: 'TT', text: 'Sangre Grande' },
3118
+ { value: 'TT-SIP', country_code: 'TT', text: 'Siparia' },
3119
+ { value: 'TT-TOB', country_code: 'TT', text: 'Tobago' },
3120
+ { value: 'TT-TUP', country_code: 'TT', text: 'Tunapuna-Piarco' },
3121
+ { value: 'TV-FUN', country_code: 'TV', text: 'Funafuti' },
3122
+ { value: 'TW-CHA', country_code: 'TW', text: 'Changhua' },
3123
+ { value: 'TW-CYQ', country_code: 'TW', text: 'Chiayi' },
3124
+ { value: 'TW-HSQ', country_code: 'TW', text: 'Hsinchu' },
3125
+ { value: 'TW-HUA', country_code: 'TW', text: 'Hualien' },
3126
+ { value: 'TW-KHH', country_code: 'TW', text: 'Kaohsiung' },
3127
+ { value: 'TW-KEE', country_code: 'TW', text: 'Keelung' },
3128
+ { value: 'TW-KIN', country_code: 'TW', text: 'Kinmen' },
3129
+ { value: 'TW-LIE', country_code: 'TW', text: 'Lienchiang' },
3130
+ { value: 'TW-MIA', country_code: 'TW', text: 'Miaoli' },
3131
+ { value: 'TW-NAN', country_code: 'TW', text: 'Nantou' },
3132
+ { value: 'TW-NWT', country_code: 'TW', text: 'New Taipei' },
3133
+ { value: 'TW-PEN', country_code: 'TW', text: 'Penghu' },
3134
+ { value: 'TW-PIF', country_code: 'TW', text: 'Pingtung' },
3135
+ { value: 'TW-TXG', country_code: 'TW', text: 'Taichung' },
3136
+ { value: 'TW-TNN', country_code: 'TW', text: 'Tainan' },
3137
+ { value: 'TW-TPE', country_code: 'TW', text: 'Taipei' },
3138
+ { value: 'TW-TTT', country_code: 'TW', text: 'Taitung' },
3139
+ { value: 'TW-TAO', country_code: 'TW', text: 'Taoyuan' },
3140
+ { value: 'TW-ILA', country_code: 'TW', text: 'Yilan' },
3141
+ { value: 'TW-YUN', country_code: 'TW', text: 'Yunlin' },
3142
+ { value: 'TZ-01', country_code: 'TZ', text: 'Arusha' },
3143
+ { value: 'TZ-02', country_code: 'TZ', text: 'Dar es Salaam' },
3144
+ { value: 'TZ-03', country_code: 'TZ', text: 'Dodoma' },
3145
+ { value: 'TZ-04', country_code: 'TZ', text: 'Iringa' },
3146
+ { value: 'TZ-05', country_code: 'TZ', text: 'Kagera' },
3147
+ { value: 'TZ-06', country_code: 'TZ', text: 'Kaskazini Pemba' },
3148
+ { value: 'TZ-07', country_code: 'TZ', text: 'Kaskazini Unguja' },
3149
+ { value: 'TZ-08', country_code: 'TZ', text: 'Kigoma' },
3150
+ { value: 'TZ-09', country_code: 'TZ', text: 'Kilimanjaro' },
3151
+ { value: 'TZ-10', country_code: 'TZ', text: 'Kusini Pemba' },
3152
+ { value: 'TZ-11', country_code: 'TZ', text: 'Kusini Unguja' },
3153
+ { value: 'TZ-12', country_code: 'TZ', text: 'Lindi' },
3154
+ { value: 'TZ-26', country_code: 'TZ', text: 'Manyara' },
3155
+ { value: 'TZ-13', country_code: 'TZ', text: 'Mara' },
3156
+ { value: 'TZ-14', country_code: 'TZ', text: 'Mbeya' },
3157
+ { value: 'TZ-15', country_code: 'TZ', text: 'Mjini Magharibi' },
3158
+ { value: 'TZ-16', country_code: 'TZ', text: 'Morogoro' },
3159
+ { value: 'TZ-17', country_code: 'TZ', text: 'Mtwara' },
3160
+ { value: 'TZ-18', country_code: 'TZ', text: 'Mwanza' },
3161
+ { value: 'TZ-19', country_code: 'TZ', text: 'Pwani' },
3162
+ { value: 'TZ-20', country_code: 'TZ', text: 'Rukwa' },
3163
+ { value: 'TZ-21', country_code: 'TZ', text: 'Ruvuma' },
3164
+ { value: 'TZ-22', country_code: 'TZ', text: 'Shinyanga' },
3165
+ { value: 'TZ-23', country_code: 'TZ', text: 'Singida' },
3166
+ { value: 'TZ-24', country_code: 'TZ', text: 'Tabora' },
3167
+ { value: 'TZ-25', country_code: 'TZ', text: 'Tanga' },
3168
+ { value: 'UA-43', country_code: 'UA', text: 'Avtonomna Respublika Krym' },
3169
+ { value: 'UA-71', country_code: 'UA', text: 'Cherkaska oblast' },
3170
+ { value: 'UA-74', country_code: 'UA', text: 'Chernihivska oblast' },
3171
+ { value: 'UA-77', country_code: 'UA', text: 'Chernivetska oblast' },
3172
+ { value: 'UA-12', country_code: 'UA', text: 'Dnipropetrovska oblast' },
3173
+ { value: 'UA-14', country_code: 'UA', text: 'Donetska oblast' },
3174
+ { value: 'UA-26', country_code: 'UA', text: 'Ivano-Frankivska oblast' },
3175
+ { value: 'UA-63', country_code: 'UA', text: 'Kharkivska oblast' },
3176
+ { value: 'UA-65', country_code: 'UA', text: 'Khersonska oblast' },
3177
+ { value: 'UA-68', country_code: 'UA', text: 'Khmelnytska oblast' },
3178
+ { value: 'UA-35', country_code: 'UA', text: 'Kirovohradska oblast' },
3179
+ { value: 'UA-30', country_code: 'UA', text: 'Kyiv' },
3180
+ { value: 'UA-32', country_code: 'UA', text: 'Kyivska oblast' },
3181
+ { value: 'UA-09', country_code: 'UA', text: 'Luhanska oblast' },
3182
+ { value: 'UA-46', country_code: 'UA', text: 'Lvivska oblast' },
3183
+ { value: 'UA-48', country_code: 'UA', text: 'Mykolaivska oblast' },
3184
+ { value: 'UA-51', country_code: 'UA', text: 'Odeska oblast' },
3185
+ { value: 'UA-53', country_code: 'UA', text: 'Poltavska oblast' },
3186
+ { value: 'UA-56', country_code: 'UA', text: 'Rivnenska oblast' },
3187
+ { value: 'UA-40', country_code: 'UA', text: "Sevastopol'" },
3188
+ { value: 'UA-59', country_code: 'UA', text: 'Sumska oblast' },
3189
+ { value: 'UA-61', country_code: 'UA', text: 'Ternopilska oblast' },
3190
+ { value: 'UA-05', country_code: 'UA', text: 'Vinnytska oblast' },
3191
+ { value: 'UA-07', country_code: 'UA', text: 'Volynska oblast' },
3192
+ { value: 'UA-21', country_code: 'UA', text: 'Zakarpatska oblast' },
3193
+ { value: 'UA-23', country_code: 'UA', text: 'Zaporizka oblast' },
3194
+ { value: 'UA-18', country_code: 'UA', text: 'Zhytomyrska oblast' },
3195
+ { value: 'UG-317', country_code: 'UG', text: 'Abim' },
3196
+ { value: 'UG-301', country_code: 'UG', text: 'Adjumani' },
3197
+ { value: 'UG-322', country_code: 'UG', text: 'Agago' },
3198
+ { value: 'UG-323', country_code: 'UG', text: 'Alebtong' },
3199
+ { value: 'UG-314', country_code: 'UG', text: 'Amolatar' },
3200
+ { value: 'UG-324', country_code: 'UG', text: 'Amudat' },
3201
+ { value: 'UG-216', country_code: 'UG', text: 'Amuria' },
3202
+ { value: 'UG-319', country_code: 'UG', text: 'Amuru' },
3203
+ { value: 'UG-302', country_code: 'UG', text: 'Apac' },
3204
+ { value: 'UG-303', country_code: 'UG', text: 'Arua' },
3205
+ { value: 'UG-217', country_code: 'UG', text: 'Budaka' },
3206
+ { value: 'UG-223', country_code: 'UG', text: 'Bududa' },
3207
+ { value: 'UG-201', country_code: 'UG', text: 'Bugiri' },
3208
+ { value: 'UG-117', country_code: 'UG', text: 'Buikwe' },
3209
+ { value: 'UG-224', country_code: 'UG', text: 'Bukedea' },
3210
+ { value: 'UG-118', country_code: 'UG', text: 'Bukomansibi' },
3211
+ { value: 'UG-218', country_code: 'UG', text: 'Bukwa' },
3212
+ { value: 'UG-225', country_code: 'UG', text: 'Bulambuli' },
3213
+ { value: 'UG-419', country_code: 'UG', text: 'Buliisa' },
3214
+ { value: 'UG-401', country_code: 'UG', text: 'Bundibugyo' },
3215
+ { value: 'UG-402', country_code: 'UG', text: 'Bushenyi' },
3216
+ { value: 'UG-202', country_code: 'UG', text: 'Busia' },
3217
+ { value: 'UG-219', country_code: 'UG', text: 'Butaleja' },
3218
+ { value: 'UG-120', country_code: 'UG', text: 'Buvuma' },
3219
+ { value: 'UG-226', country_code: 'UG', text: 'Buyende' },
3220
+ { value: 'UG-318', country_code: 'UG', text: 'Dokolo' },
3221
+ { value: 'UG-121', country_code: 'UG', text: 'Gomba' },
3222
+ { value: 'UG-304', country_code: 'UG', text: 'Gulu' },
3223
+ { value: 'UG-403', country_code: 'UG', text: 'Hoima' },
3224
+ { value: 'UG-203', country_code: 'UG', text: 'Iganga' },
3225
+ { value: 'UG-417', country_code: 'UG', text: 'Isingiro' },
3226
+ { value: 'UG-204', country_code: 'UG', text: 'Jinja' },
3227
+ { value: 'UG-315', country_code: 'UG', text: 'Kaabong' },
3228
+ { value: 'UG-404', country_code: 'UG', text: 'Kabale' },
3229
+ { value: 'UG-405', country_code: 'UG', text: 'Kabarole' },
3230
+ { value: 'UG-213', country_code: 'UG', text: 'Kaberamaido' },
3231
+ { value: 'UG-101', country_code: 'UG', text: 'Kalangala' },
3232
+ { value: 'UG-220', country_code: 'UG', text: 'Kaliro' },
3233
+ { value: 'UG-102', country_code: 'UG', text: 'Kampala' },
3234
+ { value: 'UG-205', country_code: 'UG', text: 'Kamuli' },
3235
+ { value: 'UG-413', country_code: 'UG', text: 'Kamwenge' },
3236
+ { value: 'UG-414', country_code: 'UG', text: 'Kanungu' },
3237
+ { value: 'UG-206', country_code: 'UG', text: 'Kapchorwa' },
3238
+ { value: 'UG-406', country_code: 'UG', text: 'Kasese' },
3239
+ { value: 'UG-207', country_code: 'UG', text: 'Katakwi' },
3240
+ { value: 'UG-112', country_code: 'UG', text: 'Kayunga' },
3241
+ { value: 'UG-407', country_code: 'UG', text: 'Kibaale' },
3242
+ { value: 'UG-103', country_code: 'UG', text: 'Kiboga' },
3243
+ { value: 'UG-227', country_code: 'UG', text: 'Kibuku' },
3244
+ { value: 'UG-420', country_code: 'UG', text: 'Kiryandongo' },
3245
+ { value: 'UG-408', country_code: 'UG', text: 'Kisoro' },
3246
+ { value: 'UG-305', country_code: 'UG', text: 'Kitgum' },
3247
+ { value: 'UG-316', country_code: 'UG', text: 'Koboko' },
3248
+ { value: 'UG-326', country_code: 'UG', text: 'Kole' },
3249
+ { value: 'UG-306', country_code: 'UG', text: 'Kotido' },
3250
+ { value: 'UG-208', country_code: 'UG', text: 'Kumi' },
3251
+ { value: 'UG-228', country_code: 'UG', text: 'Kween' },
3252
+ { value: 'UG-123', country_code: 'UG', text: 'Kyankwanzi' },
3253
+ { value: 'UG-421', country_code: 'UG', text: 'Kyegegwa' },
3254
+ { value: 'UG-415', country_code: 'UG', text: 'Kyenjojo' },
3255
+ { value: 'UG-307', country_code: 'UG', text: 'Lira' },
3256
+ { value: 'UG-229', country_code: 'UG', text: 'Luuka' },
3257
+ { value: 'UG-104', country_code: 'UG', text: 'Luwero' },
3258
+ { value: 'UG-124', country_code: 'UG', text: 'Lwengo' },
3259
+ { value: 'UG-116', country_code: 'UG', text: 'Lyantonde' },
3260
+ { value: 'UG-221', country_code: 'UG', text: 'Manafwa' },
3261
+ { value: 'UG-320', country_code: 'UG', text: 'Maracha' },
3262
+ { value: 'UG-105', country_code: 'UG', text: 'Masaka' },
3263
+ { value: 'UG-409', country_code: 'UG', text: 'Masindi' },
3264
+ { value: 'UG-214', country_code: 'UG', text: 'Mayuge' },
3265
+ { value: 'UG-209', country_code: 'UG', text: 'Mbale' },
3266
+ { value: 'UG-410', country_code: 'UG', text: 'Mbarara' },
3267
+ { value: 'UG-422', country_code: 'UG', text: 'Mitooma' },
3268
+ { value: 'UG-114', country_code: 'UG', text: 'Mityana' },
3269
+ { value: 'UG-308', country_code: 'UG', text: 'Moroto' },
3270
+ { value: 'UG-309', country_code: 'UG', text: 'Moyo' },
3271
+ { value: 'UG-106', country_code: 'UG', text: 'Mpigi' },
3272
+ { value: 'UG-107', country_code: 'UG', text: 'Mubende' },
3273
+ { value: 'UG-108', country_code: 'UG', text: 'Mukono' },
3274
+ { value: 'UG-311', country_code: 'UG', text: 'Nakapiripirit' },
3275
+ { value: 'UG-115', country_code: 'UG', text: 'Nakaseke' },
3276
+ { value: 'UG-109', country_code: 'UG', text: 'Nakasongola' },
3277
+ { value: 'UG-230', country_code: 'UG', text: 'Namayingo' },
3278
+ { value: 'UG-222', country_code: 'UG', text: 'Namutumba' },
3279
+ { value: 'UG-328', country_code: 'UG', text: 'Napak' },
3280
+ { value: 'UG-310', country_code: 'UG', text: 'Nebbi' },
3281
+ { value: 'UG-231', country_code: 'UG', text: 'Ngora' },
3282
+ { value: 'UG-423', country_code: 'UG', text: 'Ntoroko' },
3283
+ { value: 'UG-411', country_code: 'UG', text: 'Ntungamo' },
3284
+ { value: 'UG-330', country_code: 'UG', text: 'Otuke' },
3285
+ { value: 'UG-321', country_code: 'UG', text: 'Oyam' },
3286
+ { value: 'UG-312', country_code: 'UG', text: 'Pader' },
3287
+ { value: 'UG-210', country_code: 'UG', text: 'Pallisa' },
3288
+ { value: 'UG-110', country_code: 'UG', text: 'Rakai' },
3289
+ { value: 'UG-424', country_code: 'UG', text: 'Rubirizi' },
3290
+ { value: 'UG-412', country_code: 'UG', text: 'Rukungiri' },
3291
+ { value: 'UG-111', country_code: 'UG', text: 'Sembabule' },
3292
+ { value: 'UG-232', country_code: 'UG', text: 'Serere' },
3293
+ { value: 'UG-425', country_code: 'UG', text: 'Sheema' },
3294
+ { value: 'UG-215', country_code: 'UG', text: 'Sironko' },
3295
+ { value: 'UG-211', country_code: 'UG', text: 'Soroti' },
3296
+ { value: 'UG-212', country_code: 'UG', text: 'Tororo' },
3297
+ { value: 'UG-113', country_code: 'UG', text: 'Wakiso' },
3298
+ { value: 'UG-313', country_code: 'UG', text: 'Yumbe' },
3299
+ { value: 'UG-331', country_code: 'UG', text: 'Zombo' },
3300
+ { value: 'UM-95', country_code: 'UM', text: 'Palmyra Atoll' },
3301
+ { value: 'US-AL', country_code: 'US', text: 'Alabama' },
3302
+ { value: 'US-AK', country_code: 'US', text: 'Alaska' },
3303
+ { value: 'US-AZ', country_code: 'US', text: 'Arizona' },
3304
+ { value: 'US-AR', country_code: 'US', text: 'Arkansas' },
3305
+ { value: 'US-CA', country_code: 'US', text: 'California' },
3306
+ { value: 'US-CO', country_code: 'US', text: 'Colorado' },
3307
+ { value: 'US-CT', country_code: 'US', text: 'Connecticut' },
3308
+ { value: 'US-DE', country_code: 'US', text: 'Delaware' },
3309
+ { value: 'US-DC', country_code: 'US', text: 'District of Columbia' },
3310
+ { value: 'US-FL', country_code: 'US', text: 'Florida' },
3311
+ { value: 'US-GA', country_code: 'US', text: 'Georgia' },
3312
+ { value: 'US-HI', country_code: 'US', text: 'Hawaii' },
3313
+ { value: 'US-ID', country_code: 'US', text: 'Idaho' },
3314
+ { value: 'US-IL', country_code: 'US', text: 'Illinois' },
3315
+ { value: 'US-IN', country_code: 'US', text: 'Indiana' },
3316
+ { value: 'US-IA', country_code: 'US', text: 'Iowa' },
3317
+ { value: 'US-KS', country_code: 'US', text: 'Kansas' },
3318
+ { value: 'US-KY', country_code: 'US', text: 'Kentucky' },
3319
+ { value: 'US-LA', country_code: 'US', text: 'Louisiana' },
3320
+ { value: 'US-ME', country_code: 'US', text: 'Maine' },
3321
+ { value: 'US-MD', country_code: 'US', text: 'Maryland' },
3322
+ { value: 'US-MA', country_code: 'US', text: 'Massachusetts' },
3323
+ { value: 'US-MI', country_code: 'US', text: 'Michigan' },
3324
+ { value: 'US-MN', country_code: 'US', text: 'Minnesota' },
3325
+ { value: 'US-MS', country_code: 'US', text: 'Mississippi' },
3326
+ { value: 'US-MO', country_code: 'US', text: 'Missouri' },
3327
+ { value: 'US-MT', country_code: 'US', text: 'Montana' },
3328
+ { value: 'US-NE', country_code: 'US', text: 'Nebraska' },
3329
+ { value: 'US-NV', country_code: 'US', text: 'Nevada' },
3330
+ { value: 'US-NH', country_code: 'US', text: 'New Hampshire' },
3331
+ { value: 'US-NJ', country_code: 'US', text: 'New Jersey' },
3332
+ { value: 'US-NM', country_code: 'US', text: 'New Mexico' },
3333
+ { value: 'US-NY', country_code: 'US', text: 'New York' },
3334
+ { value: 'US-NC', country_code: 'US', text: 'North Carolina' },
3335
+ { value: 'US-ND', country_code: 'US', text: 'North Dakota' },
3336
+ { value: 'US-OH', country_code: 'US', text: 'Ohio' },
3337
+ { value: 'US-OK', country_code: 'US', text: 'Oklahoma' },
3338
+ { value: 'US-OR', country_code: 'US', text: 'Oregon' },
3339
+ { value: 'US-PA', country_code: 'US', text: 'Pennsylvania' },
3340
+ { value: 'US-RI', country_code: 'US', text: 'Rhode Island' },
3341
+ { value: 'US-SC', country_code: 'US', text: 'South Carolina' },
3342
+ { value: 'US-SD', country_code: 'US', text: 'South Dakota' },
3343
+ { value: 'US-TN', country_code: 'US', text: 'Tennessee' },
3344
+ { value: 'US-TX', country_code: 'US', text: 'Texas' },
3345
+ { value: 'US-UT', country_code: 'US', text: 'Utah' },
3346
+ { value: 'US-VT', country_code: 'US', text: 'Vermont' },
3347
+ { value: 'US-VA', country_code: 'US', text: 'Virginia' },
3348
+ { value: 'US-WA', country_code: 'US', text: 'Washington' },
3349
+ { value: 'US-WV', country_code: 'US', text: 'West Virginia' },
3350
+ { value: 'US-WI', country_code: 'US', text: 'Wisconsin' },
3351
+ { value: 'US-WY', country_code: 'US', text: 'Wyoming' },
3352
+ { value: 'UY-AR', country_code: 'UY', text: 'Artigas' },
3353
+ { value: 'UY-CA', country_code: 'UY', text: 'Canelones' },
3354
+ { value: 'UY-CL', country_code: 'UY', text: 'Cerro Largo' },
3355
+ { value: 'UY-CO', country_code: 'UY', text: 'Colonia' },
3356
+ { value: 'UY-DU', country_code: 'UY', text: 'Durazno' },
3357
+ { value: 'UY-FS', country_code: 'UY', text: 'Flores' },
3358
+ { value: 'UY-FD', country_code: 'UY', text: 'Florida' },
3359
+ { value: 'UY-LA', country_code: 'UY', text: 'Lavalleja' },
3360
+ { value: 'UY-MA', country_code: 'UY', text: 'Maldonado' },
3361
+ { value: 'UY-MO', country_code: 'UY', text: 'Montevideo' },
3362
+ { value: 'UY-PA', country_code: 'UY', text: 'Paysandu' },
3363
+ { value: 'UY-RN', country_code: 'UY', text: 'Rio Negro' },
3364
+ { value: 'UY-RV', country_code: 'UY', text: 'Rivera' },
3365
+ { value: 'UY-RO', country_code: 'UY', text: 'Rocha' },
3366
+ { value: 'UY-SA', country_code: 'UY', text: 'Salto' },
3367
+ { value: 'UY-SJ', country_code: 'UY', text: 'San Jose' },
3368
+ { value: 'UY-SO', country_code: 'UY', text: 'Soriano' },
3369
+ { value: 'UY-TA', country_code: 'UY', text: 'Tacuarembo' },
3370
+ { value: 'UY-TT', country_code: 'UY', text: 'Treinta y Tres' },
3371
+ { value: 'UZ-AN', country_code: 'UZ', text: 'Andijon' },
3372
+ { value: 'UZ-BU', country_code: 'UZ', text: 'Buxoro' },
3373
+ { value: 'UZ-FA', country_code: 'UZ', text: "Farg'ona" },
3374
+ { value: 'UZ-JI', country_code: 'UZ', text: 'Jizzax' },
3375
+ { value: 'UZ-NG', country_code: 'UZ', text: 'Namangan' },
3376
+ { value: 'UZ-NW', country_code: 'UZ', text: 'Navoiy' },
3377
+ { value: 'UZ-QA', country_code: 'UZ', text: 'Qashqadaryo' },
3378
+ { value: 'UZ-QR', country_code: 'UZ', text: "Qoraqalpog'iston Respublikasi" },
3379
+ { value: 'UZ-SA', country_code: 'UZ', text: 'Samarqand' },
3380
+ { value: 'UZ-SI', country_code: 'UZ', text: 'Sirdaryo' },
3381
+ { value: 'UZ-SU', country_code: 'UZ', text: 'Surxondaryo' },
3382
+ { value: 'UZ-TK', country_code: 'UZ', text: 'Toshkent' },
3383
+ { value: 'UZ-XO', country_code: 'UZ', text: 'Xorazm' },
3384
+ { value: 'VC-01', country_code: 'VC', text: 'Charlotte' },
3385
+ { value: 'VC-04', country_code: 'VC', text: 'Saint George' },
3386
+ { value: 'VE-Z', country_code: 'VE', text: 'Amazonas' },
3387
+ { value: 'VE-B', country_code: 'VE', text: 'Anzoategui' },
3388
+ { value: 'VE-C', country_code: 'VE', text: 'Apure' },
3389
+ { value: 'VE-D', country_code: 'VE', text: 'Aragua' },
3390
+ { value: 'VE-E', country_code: 'VE', text: 'Barinas' },
3391
+ { value: 'VE-F', country_code: 'VE', text: 'Bolivar' },
3392
+ { value: 'VE-G', country_code: 'VE', text: 'Carabobo' },
3393
+ { value: 'VE-H', country_code: 'VE', text: 'Cojedes' },
3394
+ { value: 'VE-Y', country_code: 'VE', text: 'Delta Amacuro' },
3395
+ { value: 'VE-A', country_code: 'VE', text: 'Distrito Capital' },
3396
+ { value: 'VE-I', country_code: 'VE', text: 'Falcon' },
3397
+ { value: 'VE-J', country_code: 'VE', text: 'Guarico' },
3398
+ { value: 'VE-K', country_code: 'VE', text: 'Lara' },
3399
+ { value: 'VE-L', country_code: 'VE', text: 'Merida' },
3400
+ { value: 'VE-M', country_code: 'VE', text: 'Miranda' },
3401
+ { value: 'VE-N', country_code: 'VE', text: 'Monagas' },
3402
+ { value: 'VE-O', country_code: 'VE', text: 'Nueva Esparta' },
3403
+ { value: 'VE-P', country_code: 'VE', text: 'Portuguesa' },
3404
+ { value: 'VE-R', country_code: 'VE', text: 'Sucre' },
3405
+ { value: 'VE-S', country_code: 'VE', text: 'Tachira' },
3406
+ { value: 'VE-T', country_code: 'VE', text: 'Trujillo' },
3407
+ { value: 'VE-X', country_code: 'VE', text: 'Vargas' },
3408
+ { value: 'VE-U', country_code: 'VE', text: 'Yaracuy' },
3409
+ { value: 'VE-V', country_code: 'VE', text: 'Zulia' },
3410
+ { value: 'VN-44', country_code: 'VN', text: 'An Giang' },
3411
+ { value: 'VN-54', country_code: 'VN', text: 'Bac Giang' },
3412
+ { value: 'VN-53', country_code: 'VN', text: 'Bac Kan' },
3413
+ { value: 'VN-55', country_code: 'VN', text: 'Bac Lieu' },
3414
+ { value: 'VN-56', country_code: 'VN', text: 'Bac Ninh' },
3415
+ { value: 'VN-50', country_code: 'VN', text: 'Ben Tre' },
3416
+ { value: 'VN-31', country_code: 'VN', text: 'Binh Dinh' },
3417
+ { value: 'VN-57', country_code: 'VN', text: 'Binh Duong' },
3418
+ { value: 'VN-58', country_code: 'VN', text: 'Binh Phuoc' },
3419
+ { value: 'VN-40', country_code: 'VN', text: 'Binh Thuan' },
3420
+ { value: 'VN-59', country_code: 'VN', text: 'Ca Mau' },
3421
+ { value: 'VN-CT', country_code: 'VN', text: 'Can Tho' },
3422
+ { value: 'VN-04', country_code: 'VN', text: 'Cao Bang' },
3423
+ { value: 'VN-DN', country_code: 'VN', text: 'Da Nang' },
3424
+ { value: 'VN-33', country_code: 'VN', text: 'Dak Lak' },
3425
+ { value: 'VN-71', country_code: 'VN', text: 'Dien Bien' },
3426
+ { value: 'VN-39', country_code: 'VN', text: 'Dong Nai' },
3427
+ { value: 'VN-45', country_code: 'VN', text: 'Dong Thap' },
3428
+ { value: 'VN-30', country_code: 'VN', text: 'Gia Lai' },
3429
+ { value: 'VN-03', country_code: 'VN', text: 'Ha Giang' },
3430
+ { value: 'VN-63', country_code: 'VN', text: 'Ha Nam' },
3431
+ { value: 'VN-HN', country_code: 'VN', text: 'Ha Noi' },
3432
+ { value: 'VN-23', country_code: 'VN', text: 'Ha Tinh' },
3433
+ { value: 'VN-61', country_code: 'VN', text: 'Hai Duong' },
3434
+ { value: 'VN-HP', country_code: 'VN', text: 'Hai Phong' },
3435
+ { value: 'VN-SG', country_code: 'VN', text: 'Ho Chi Minh' },
3436
+ { value: 'VN-14', country_code: 'VN', text: 'Hoa Binh' },
3437
+ { value: 'VN-66', country_code: 'VN', text: 'Hung Yen' },
3438
+ { value: 'VN-34', country_code: 'VN', text: 'Khanh Hoa' },
3439
+ { value: 'VN-47', country_code: 'VN', text: 'Kien Giang' },
3440
+ { value: 'VN-01', country_code: 'VN', text: 'Lai Chau' },
3441
+ { value: 'VN-35', country_code: 'VN', text: 'Lam Dong' },
3442
+ { value: 'VN-09', country_code: 'VN', text: 'Lang Son' },
3443
+ { value: 'VN-02', country_code: 'VN', text: 'Lao Cai' },
3444
+ { value: 'VN-41', country_code: 'VN', text: 'Long An' },
3445
+ { value: 'VN-67', country_code: 'VN', text: 'Nam Dinh' },
3446
+ { value: 'VN-22', country_code: 'VN', text: 'Nghe An' },
3447
+ { value: 'VN-18', country_code: 'VN', text: 'Ninh Binh' },
3448
+ { value: 'VN-36', country_code: 'VN', text: 'Ninh Thuan' },
3449
+ { value: 'VN-68', country_code: 'VN', text: 'Phu Tho' },
3450
+ { value: 'VN-32', country_code: 'VN', text: 'Phu Yen' },
3451
+ { value: 'VN-24', country_code: 'VN', text: 'Quang Binh' },
3452
+ { value: 'VN-27', country_code: 'VN', text: 'Quang Nam' },
3453
+ { value: 'VN-29', country_code: 'VN', text: 'Quang Ngai' },
3454
+ { value: 'VN-13', country_code: 'VN', text: 'Quang Ninh' },
3455
+ { value: 'VN-25', country_code: 'VN', text: 'Quang Tri' },
3456
+ { value: 'VN-52', country_code: 'VN', text: 'Soc Trang' },
3457
+ { value: 'VN-05', country_code: 'VN', text: 'Son La' },
3458
+ { value: 'VN-37', country_code: 'VN', text: 'Tay Ninh' },
3459
+ { value: 'VN-20', country_code: 'VN', text: 'Thai Binh' },
3460
+ { value: 'VN-69', country_code: 'VN', text: 'Thai Nguyen' },
3461
+ { value: 'VN-21', country_code: 'VN', text: 'Thanh Hoa' },
3462
+ { value: 'VN-26', country_code: 'VN', text: 'Thua Thien-Hue' },
3463
+ { value: 'VN-46', country_code: 'VN', text: 'Tien Giang' },
3464
+ { value: 'VN-51', country_code: 'VN', text: 'Tra Vinh' },
3465
+ { value: 'VN-07', country_code: 'VN', text: 'Tuyen Quang' },
3466
+ { value: 'VN-49', country_code: 'VN', text: 'Vinh Long' },
3467
+ { value: 'VN-70', country_code: 'VN', text: 'Vinh Phuc' },
3468
+ { value: 'VN-06', country_code: 'VN', text: 'Yen Bai' },
3469
+ { value: 'VU-MAP', country_code: 'VU', text: 'Malampa' },
3470
+ { value: 'VU-SAM', country_code: 'VU', text: 'Sanma' },
3471
+ { value: 'VU-SEE', country_code: 'VU', text: 'Shefa' },
3472
+ { value: 'VU-TAE', country_code: 'VU', text: 'Tafea' },
3473
+ { value: 'VU-TOB', country_code: 'VU', text: 'Torba' },
3474
+ { value: 'WF-UV', country_code: 'WF', text: 'Uvea' },
3475
+ { value: 'WS-AA', country_code: 'WS', text: "A'ana" },
3476
+ { value: 'WS-AT', country_code: 'WS', text: 'Atua' },
3477
+ { value: 'WS-GI', country_code: 'WS', text: 'Gagaifomauga' },
3478
+ { value: 'WS-PA', country_code: 'WS', text: 'Palauli' },
3479
+ { value: 'WS-TU', country_code: 'WS', text: 'Tuamasaga' },
3480
+ { value: 'YE-AD', country_code: 'YE', text: "'Adan" },
3481
+ { value: 'YE-AM', country_code: 'YE', text: "'Amran" },
3482
+ { value: 'YE-AB', country_code: 'YE', text: 'Abyan' },
3483
+ { value: 'YE-DA', country_code: 'YE', text: "Ad Dali'" },
3484
+ { value: 'YE-BA', country_code: 'YE', text: "Al Bayda'" },
3485
+ { value: 'YE-HU', country_code: 'YE', text: 'Al Hudaydah' },
3486
+ { value: 'YE-JA', country_code: 'YE', text: 'Al Jawf' },
3487
+ { value: 'YE-MR', country_code: 'YE', text: 'Al Mahrah' },
3488
+ { value: 'YE-MW', country_code: 'YE', text: 'Al Mahwit' },
3489
+ { value: 'YE-SA', country_code: 'YE', text: "Amanat al 'Asimah" },
3490
+ { value: 'YE-DH', country_code: 'YE', text: 'Dhamar' },
3491
+ { value: 'YE-HD', country_code: 'YE', text: 'Hadramawt' },
3492
+ { value: 'YE-HJ', country_code: 'YE', text: 'Hajjah' },
3493
+ { value: 'YE-IB', country_code: 'YE', text: 'Ibb' },
3494
+ { value: 'YE-LA', country_code: 'YE', text: 'Lahij' },
3495
+ { value: 'YE-MA', country_code: 'YE', text: "Ma'rib" },
3496
+ { value: 'YE-RA', country_code: 'YE', text: 'Raymah' },
3497
+ { value: 'YE-SD', country_code: 'YE', text: "Sa'dah" },
3498
+ { value: 'YE-SN', country_code: 'YE', text: "San'a'" },
3499
+ { value: 'YE-SH', country_code: 'YE', text: 'Shabwah' },
3500
+ { value: 'YE-TA', country_code: 'YE', text: "Ta'izz" },
3501
+ { value: 'ZA-EC', country_code: 'ZA', text: 'Eastern Cape' },
3502
+ { value: 'ZA-FS', country_code: 'ZA', text: 'Free State' },
3503
+ { value: 'ZA-GT', country_code: 'ZA', text: 'Gauteng' },
3504
+ { value: 'ZA-NL', country_code: 'ZA', text: 'Kwazulu-Natal' },
3505
+ { value: 'ZA-LP', country_code: 'ZA', text: 'Limpopo' },
3506
+ { value: 'ZA-MP', country_code: 'ZA', text: 'Mpumalanga' },
3507
+ { value: 'ZA-NW', country_code: 'ZA', text: 'North-West' },
3508
+ { value: 'ZA-NC', country_code: 'ZA', text: 'Northern Cape' },
3509
+ { value: 'ZA-WC', country_code: 'ZA', text: 'Western Cape' },
3510
+ { value: 'ZM-02', country_code: 'ZM', text: 'Central' },
3511
+ { value: 'ZM-08', country_code: 'ZM', text: 'Copperbelt' },
3512
+ { value: 'ZM-03', country_code: 'ZM', text: 'Eastern' },
3513
+ { value: 'ZM-04', country_code: 'ZM', text: 'Luapula' },
3514
+ { value: 'ZM-09', country_code: 'ZM', text: 'Lusaka' },
3515
+ { value: 'ZM-06', country_code: 'ZM', text: 'North-Western' },
3516
+ { value: 'ZM-05', country_code: 'ZM', text: 'Northern' },
3517
+ { value: 'ZM-07', country_code: 'ZM', text: 'Southern' },
3518
+ { value: 'ZM-01', country_code: 'ZM', text: 'Western' },
3519
+ { value: 'ZW-BU', country_code: 'ZW', text: 'Bulawayo' },
3520
+ { value: 'ZW-HA', country_code: 'ZW', text: 'Harare' },
3521
+ { value: 'ZW-MA', country_code: 'ZW', text: 'Manicaland' },
3522
+ { value: 'ZW-MC', country_code: 'ZW', text: 'Mashonaland Central' },
3523
+ { value: 'ZW-ME', country_code: 'ZW', text: 'Mashonaland East' },
3524
+ { value: 'ZW-MW', country_code: 'ZW', text: 'Mashonaland West' },
3525
+ { value: 'ZW-MV', country_code: 'ZW', text: 'Masvingo' },
3526
+ { value: 'ZW-MN', country_code: 'ZW', text: 'Matabeleland North' },
3527
+ { value: 'ZW-MS', country_code: 'ZW', text: 'Matabeleland South' },
3528
+ { value: 'ZW-MI', country_code: 'ZW', text: 'Midlands' }
3529
+ ].filter((p) => p.country_code === country);
3530
+
3531
+ const childrenWithProps = React.Children.map(
3532
+ children,
3533
+ (child) => React.cloneElement(
3534
+ child,
3535
+ {
3536
+ options: options.filter(
3537
+ (o) => o.country_code === country), ...props
3538
+ }
3539
+ )
3540
+ );
3541
+
3542
+ return <div>{childrenWithProps}</div>;
3543
+ }
3544
+
3545
+ ProvinceOptions.propTypes = {
3546
+ children: PropTypes.node.isRequired,
3547
+ country: PropTypes.string.isRequired
3548
+ };
3549
+
3550
+ export { ProvinceOptions };