mailwoman 0.2.0

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 (1375) hide show
  1. package/.dockerignore +19 -0
  2. package/.editorconfig +19 -0
  3. package/.husky/pre-commit +2 -0
  4. package/.prettierignore +29 -0
  5. package/.vscode/extensions.json +18 -0
  6. package/.vscode/settings.json +132 -0
  7. package/Dockerfile +17 -0
  8. package/LICENSE.md +675 -0
  9. package/README.md +208 -0
  10. package/bin/cli.ts +54 -0
  11. package/classification/AdjacentClassification.test.ts +17 -0
  12. package/classification/AdjacentClassification.ts +13 -0
  13. package/classification/AlphaClassification.test.ts +17 -0
  14. package/classification/AlphaClassification.ts +13 -0
  15. package/classification/AlphaNumericClassification.test.ts +17 -0
  16. package/classification/AlphaNumericClassification.ts +13 -0
  17. package/classification/AreaClassification.test.ts +17 -0
  18. package/classification/AreaClassification.ts +13 -0
  19. package/classification/ChainClassification.test.ts +17 -0
  20. package/classification/ChainClassification.ts +13 -0
  21. package/classification/Classification.test.ts +17 -0
  22. package/classification/Classification.ts +107 -0
  23. package/classification/CountryClassification.test.ts +17 -0
  24. package/classification/CountryClassification.ts +18 -0
  25. package/classification/DependencyClassification.test.ts +17 -0
  26. package/classification/DependencyClassification.ts +14 -0
  27. package/classification/DirectionalClassification.test.ts +17 -0
  28. package/classification/DirectionalClassification.ts +13 -0
  29. package/classification/EndTokenClassification.test.ts +17 -0
  30. package/classification/EndTokenClassification.ts +13 -0
  31. package/classification/EndTokenSingleCharacterClassification.test.ts +17 -0
  32. package/classification/EndTokenSingleCharacterClassification.ts +13 -0
  33. package/classification/GivenNameClassification.test.ts +17 -0
  34. package/classification/GivenNameClassification.ts +13 -0
  35. package/classification/HouseNumberClassification.test.ts +17 -0
  36. package/classification/HouseNumberClassification.ts +14 -0
  37. package/classification/IntersectionClassification.test.ts +17 -0
  38. package/classification/IntersectionClassification.ts +13 -0
  39. package/classification/LevelClassification.ts +14 -0
  40. package/classification/LevelTypeClassification.ts +12 -0
  41. package/classification/LocalityClassification.test.ts +17 -0
  42. package/classification/LocalityClassification.ts +14 -0
  43. package/classification/MiddleInitialClassification.test.ts +17 -0
  44. package/classification/MiddleInitialClassification.ts +13 -0
  45. package/classification/MultiStreetClassification.test.ts +17 -0
  46. package/classification/MultiStreetClassification.ts +14 -0
  47. package/classification/NumericClassification.test.ts +17 -0
  48. package/classification/NumericClassification.ts +13 -0
  49. package/classification/OrdinalClassification.test.ts +17 -0
  50. package/classification/OrdinalClassification.ts +13 -0
  51. package/classification/PersonClassification.test.ts +17 -0
  52. package/classification/PersonClassification.ts +13 -0
  53. package/classification/PersonalSuffixClassification.test.ts +17 -0
  54. package/classification/PersonalSuffixClassification.ts +13 -0
  55. package/classification/PersonalTitleClassification.test.ts +17 -0
  56. package/classification/PersonalTitleClassification.ts +13 -0
  57. package/classification/PlaceClassification.test.ts +17 -0
  58. package/classification/PlaceClassification.ts +13 -0
  59. package/classification/PostcodeClassification.test.ts +17 -0
  60. package/classification/PostcodeClassification.ts +14 -0
  61. package/classification/PunctuationClassification.test.ts +17 -0
  62. package/classification/PunctuationClassification.ts +13 -0
  63. package/classification/RegionClassification.test.ts +17 -0
  64. package/classification/RegionClassification.ts +14 -0
  65. package/classification/RoadTypeClassification.test.ts +16 -0
  66. package/classification/RoadTypeClassification.ts +13 -0
  67. package/classification/StartTokenClassification.test.ts +17 -0
  68. package/classification/StartTokenClassification.ts +13 -0
  69. package/classification/StopWordClassification.test.ts +17 -0
  70. package/classification/StopWordClassification.ts +13 -0
  71. package/classification/StreetClassification.test.ts +17 -0
  72. package/classification/StreetClassification.ts +14 -0
  73. package/classification/StreetNameClassification.test.ts +16 -0
  74. package/classification/StreetNameClassification.ts +13 -0
  75. package/classification/StreetPrefixClassification.test.ts +17 -0
  76. package/classification/StreetPrefixClassification.ts +13 -0
  77. package/classification/StreetProperNameClassification.test.ts +17 -0
  78. package/classification/StreetProperNameClassification.ts +13 -0
  79. package/classification/StreetSuffixClassification.test.ts +17 -0
  80. package/classification/StreetSuffixClassification.ts +13 -0
  81. package/classification/SurnameClassification.test.ts +17 -0
  82. package/classification/SurnameClassification.ts +13 -0
  83. package/classification/ToponymClassification.test.ts +17 -0
  84. package/classification/ToponymClassification.ts +13 -0
  85. package/classification/UnitClassification.test.ts +17 -0
  86. package/classification/UnitClassification.ts +12 -0
  87. package/classification/UnitTypeClassification.test.ts +17 -0
  88. package/classification/UnitTypeClassification.ts +12 -0
  89. package/classification/VenueClassification.test.ts +17 -0
  90. package/classification/VenueClassification.ts +14 -0
  91. package/classification/index.ts +47 -0
  92. package/classification/types.ts +100 -0
  93. package/classifier/AdjacencyClassifier.ts +54 -0
  94. package/classifier/AlphaNumericClassifier.test.ts +100 -0
  95. package/classifier/AlphaNumericClassifier.ts +28 -0
  96. package/classifier/CentralEuropeanStreetNameClassifier.test.ts +68 -0
  97. package/classifier/CentralEuropeanStreetNameClassifier.ts +60 -0
  98. package/classifier/ChainClassifier.test.ts +23 -0
  99. package/classifier/ChainClassifier.ts +32 -0
  100. package/classifier/CompositeClassifier.test.ts +79 -0
  101. package/classifier/CompositeClassifier.ts +192 -0
  102. package/classifier/CompoundStreetClassifier.test.ts +57 -0
  103. package/classifier/CompoundStreetClassifier.ts +59 -0
  104. package/classifier/DirectionalClassifier.test.ts +190 -0
  105. package/classifier/DirectionalClassifier.ts +47 -0
  106. package/classifier/GivenNameClassifier.test.ts +32 -0
  107. package/classifier/GivenNameClassifier.ts +40 -0
  108. package/classifier/HouseNumberClassifier.test.ts +164 -0
  109. package/classifier/HouseNumberClassifier.ts +56 -0
  110. package/classifier/IntersectionClassifier.ts +47 -0
  111. package/classifier/LevelClassifier.ts +48 -0
  112. package/classifier/LevelTypeClassifier.test.ts +22 -0
  113. package/classifier/LevelTypeClassifier.ts +32 -0
  114. package/classifier/LevelTypeLevelClassifier.ts +71 -0
  115. package/classifier/MiddleInitialClassifier.test.ts +29 -0
  116. package/classifier/MiddleInitialClassifier.ts +25 -0
  117. package/classifier/OrdinalClassifier.test.ts +44 -0
  118. package/classifier/OrdinalClassifier.ts +34 -0
  119. package/classifier/PersonClassifier.test.ts +40 -0
  120. package/classifier/PersonClassifier.ts +38 -0
  121. package/classifier/PersonalSuffixClassifier.test.ts +32 -0
  122. package/classifier/PersonalSuffixClassifier.ts +36 -0
  123. package/classifier/PersonalTitleClassifier.test.ts +32 -0
  124. package/classifier/PersonalTitleClassifier.ts +44 -0
  125. package/classifier/PlaceClassifier.test.ts +32 -0
  126. package/classifier/PlaceClassifier.ts +46 -0
  127. package/classifier/PostcodeClassifier.test.ts +86 -0
  128. package/classifier/PostcodeClassifier.ts +86 -0
  129. package/classifier/RoadTypeClassifier.test.ts +37 -0
  130. package/classifier/RoadTypeClassifier.ts +43 -0
  131. package/classifier/StopWordClassifier.test.ts +32 -0
  132. package/classifier/StopWordClassifier.ts +44 -0
  133. package/classifier/StreetPrefixClassifier.test.ts +37 -0
  134. package/classifier/StreetPrefixClassifier.ts +58 -0
  135. package/classifier/StreetProperNameClassifier.test.ts +30 -0
  136. package/classifier/StreetProperNameClassifier.ts +38 -0
  137. package/classifier/StreetSuffixClassifier.test.ts +63 -0
  138. package/classifier/StreetSuffixClassifier.ts +77 -0
  139. package/classifier/SurnameClassifier.test.ts +30 -0
  140. package/classifier/SurnameClassifier.ts +41 -0
  141. package/classifier/TokenPositionClassifier.test.ts +95 -0
  142. package/classifier/TokenPositionClassifier.ts +57 -0
  143. package/classifier/ToponymClassifier.test.ts +36 -0
  144. package/classifier/ToponymClassifier.ts +39 -0
  145. package/classifier/UnitClassifier.test.ts +93 -0
  146. package/classifier/UnitClassifier.ts +67 -0
  147. package/classifier/UnitTypeClassifier.test.ts +22 -0
  148. package/classifier/UnitTypeClassifier.ts +32 -0
  149. package/classifier/UnitTypeUnitClassifier.test.ts +49 -0
  150. package/classifier/UnitTypeUnitClassifier.ts +71 -0
  151. package/classifier/WhosOnFirstClassifier.test.ts +38 -0
  152. package/classifier/WhosOnFirstClassifier.ts +190 -0
  153. package/classifier/index.ts +38 -0
  154. package/classifier/scheme/intersection.ts +125 -0
  155. package/classifier/scheme/person.ts +117 -0
  156. package/classifier/scheme/street.ts +409 -0
  157. package/classifier/scheme/street_name.ts +86 -0
  158. package/classifier/scheme/venue.ts +206 -0
  159. package/classifier/super/BaseClassifier.ts +39 -0
  160. package/classifier/super/PhraseClassifier.ts +37 -0
  161. package/classifier/super/SectionClassifier.ts +42 -0
  162. package/classifier/super/WordClassifier.ts +31 -0
  163. package/classifier/super/index.ts +10 -0
  164. package/debug/DebugOutputBuilder.ts +219 -0
  165. package/docker-compose.yml +8 -0
  166. package/docs/api.png +0 -0
  167. package/docs/cli.png +0 -0
  168. package/docs/demo.png +0 -0
  169. package/eslint.config.mjs +32 -0
  170. package/index.ts +10 -0
  171. package/out/bin/cli.js +41 -0
  172. package/package.json +130 -0
  173. package/parser/AddressParser.ts +162 -0
  174. package/parser/Parser.ts +125 -0
  175. package/parser/index.ts +9 -0
  176. package/parser/utils.ts +94 -0
  177. package/resources/chromium-i18n/ssl-address/AC.json +8 -0
  178. package/resources/chromium-i18n/ssl-address/AD.json +16 -0
  179. package/resources/chromium-i18n/ssl-address/AE.json +15 -0
  180. package/resources/chromium-i18n/ssl-address/AF.json +8 -0
  181. package/resources/chromium-i18n/ssl-address/AG.json +1 -0
  182. package/resources/chromium-i18n/ssl-address/AI.json +8 -0
  183. package/resources/chromium-i18n/ssl-address/AL.json +8 -0
  184. package/resources/chromium-i18n/ssl-address/AM.json +16 -0
  185. package/resources/chromium-i18n/ssl-address/AO.json +1 -0
  186. package/resources/chromium-i18n/ssl-address/AQ.json +1 -0
  187. package/resources/chromium-i18n/ssl-address/AR.json +16 -0
  188. package/resources/chromium-i18n/ssl-address/AS.json +13 -0
  189. package/resources/chromium-i18n/ssl-address/AT.json +10 -0
  190. package/resources/chromium-i18n/ssl-address/AU.json +20 -0
  191. package/resources/chromium-i18n/ssl-address/AW.json +1 -0
  192. package/resources/chromium-i18n/ssl-address/AX.json +11 -0
  193. package/resources/chromium-i18n/ssl-address/AZ.json +9 -0
  194. package/resources/chromium-i18n/ssl-address/BA.json +8 -0
  195. package/resources/chromium-i18n/ssl-address/BB.json +9 -0
  196. package/resources/chromium-i18n/ssl-address/BD.json +9 -0
  197. package/resources/chromium-i18n/ssl-address/BE.json +10 -0
  198. package/resources/chromium-i18n/ssl-address/BF.json +6 -0
  199. package/resources/chromium-i18n/ssl-address/BG.json +9 -0
  200. package/resources/chromium-i18n/ssl-address/BH.json +8 -0
  201. package/resources/chromium-i18n/ssl-address/BI.json +1 -0
  202. package/resources/chromium-i18n/ssl-address/BJ.json +1 -0
  203. package/resources/chromium-i18n/ssl-address/BL.json +11 -0
  204. package/resources/chromium-i18n/ssl-address/BM.json +9 -0
  205. package/resources/chromium-i18n/ssl-address/BN.json +9 -0
  206. package/resources/chromium-i18n/ssl-address/BO.json +1 -0
  207. package/resources/chromium-i18n/ssl-address/BQ.json +1 -0
  208. package/resources/chromium-i18n/ssl-address/BR.json +21 -0
  209. package/resources/chromium-i18n/ssl-address/BS.json +12 -0
  210. package/resources/chromium-i18n/ssl-address/BT.json +9 -0
  211. package/resources/chromium-i18n/ssl-address/BV.json +1 -0
  212. package/resources/chromium-i18n/ssl-address/BW.json +1 -0
  213. package/resources/chromium-i18n/ssl-address/BY.json +9 -0
  214. package/resources/chromium-i18n/ssl-address/BZ.json +1 -0
  215. package/resources/chromium-i18n/ssl-address/CA.json +17 -0
  216. package/resources/chromium-i18n/ssl-address/CC.json +9 -0
  217. package/resources/chromium-i18n/ssl-address/CD.json +1 -0
  218. package/resources/chromium-i18n/ssl-address/CF.json +1 -0
  219. package/resources/chromium-i18n/ssl-address/CG.json +1 -0
  220. package/resources/chromium-i18n/ssl-address/CH.json +12 -0
  221. package/resources/chromium-i18n/ssl-address/CI.json +6 -0
  222. package/resources/chromium-i18n/ssl-address/CK.json +1 -0
  223. package/resources/chromium-i18n/ssl-address/CL.json +15 -0
  224. package/resources/chromium-i18n/ssl-address/CM.json +1 -0
  225. package/resources/chromium-i18n/ssl-address/CN.json +22 -0
  226. package/resources/chromium-i18n/ssl-address/CO.json +11 -0
  227. package/resources/chromium-i18n/ssl-address/CR.json +10 -0
  228. package/resources/chromium-i18n/ssl-address/CU.json +12 -0
  229. package/resources/chromium-i18n/ssl-address/CV.json +13 -0
  230. package/resources/chromium-i18n/ssl-address/CW.json +1 -0
  231. package/resources/chromium-i18n/ssl-address/CX.json +9 -0
  232. package/resources/chromium-i18n/ssl-address/CY.json +8 -0
  233. package/resources/chromium-i18n/ssl-address/CZ.json +10 -0
  234. package/resources/chromium-i18n/ssl-address/DE.json +10 -0
  235. package/resources/chromium-i18n/ssl-address/DJ.json +1 -0
  236. package/resources/chromium-i18n/ssl-address/DK.json +10 -0
  237. package/resources/chromium-i18n/ssl-address/DM.json +1 -0
  238. package/resources/chromium-i18n/ssl-address/DO.json +9 -0
  239. package/resources/chromium-i18n/ssl-address/DZ.json +8 -0
  240. package/resources/chromium-i18n/ssl-address/EC.json +10 -0
  241. package/resources/chromium-i18n/ssl-address/EE.json +9 -0
  242. package/resources/chromium-i18n/ssl-address/EG.json +16 -0
  243. package/resources/chromium-i18n/ssl-address/EH.json +8 -0
  244. package/resources/chromium-i18n/ssl-address/ER.json +1 -0
  245. package/resources/chromium-i18n/ssl-address/ES.json +16 -0
  246. package/resources/chromium-i18n/ssl-address/ET.json +8 -0
  247. package/resources/chromium-i18n/ssl-address/FI.json +11 -0
  248. package/resources/chromium-i18n/ssl-address/FJ.json +1 -0
  249. package/resources/chromium-i18n/ssl-address/FK.json +10 -0
  250. package/resources/chromium-i18n/ssl-address/FM.json +13 -0
  251. package/resources/chromium-i18n/ssl-address/FO.json +10 -0
  252. package/resources/chromium-i18n/ssl-address/FR.json +11 -0
  253. package/resources/chromium-i18n/ssl-address/GA.json +1 -0
  254. package/resources/chromium-i18n/ssl-address/GB.json +12 -0
  255. package/resources/chromium-i18n/ssl-address/GD.json +1 -0
  256. package/resources/chromium-i18n/ssl-address/GE.json +9 -0
  257. package/resources/chromium-i18n/ssl-address/GF.json +11 -0
  258. package/resources/chromium-i18n/ssl-address/GG.json +11 -0
  259. package/resources/chromium-i18n/ssl-address/GH.json +1 -0
  260. package/resources/chromium-i18n/ssl-address/GI.json +9 -0
  261. package/resources/chromium-i18n/ssl-address/GL.json +9 -0
  262. package/resources/chromium-i18n/ssl-address/GM.json +1 -0
  263. package/resources/chromium-i18n/ssl-address/GN.json +8 -0
  264. package/resources/chromium-i18n/ssl-address/GP.json +11 -0
  265. package/resources/chromium-i18n/ssl-address/GQ.json +1 -0
  266. package/resources/chromium-i18n/ssl-address/GR.json +10 -0
  267. package/resources/chromium-i18n/ssl-address/GS.json +10 -0
  268. package/resources/chromium-i18n/ssl-address/GT.json +8 -0
  269. package/resources/chromium-i18n/ssl-address/GU.json +12 -0
  270. package/resources/chromium-i18n/ssl-address/GW.json +8 -0
  271. package/resources/chromium-i18n/ssl-address/GY.json +1 -0
  272. package/resources/chromium-i18n/ssl-address/HK.json +16 -0
  273. package/resources/chromium-i18n/ssl-address/HM.json +9 -0
  274. package/resources/chromium-i18n/ssl-address/HN.json +9 -0
  275. package/resources/chromium-i18n/ssl-address/HR.json +10 -0
  276. package/resources/chromium-i18n/ssl-address/HT.json +9 -0
  277. package/resources/chromium-i18n/ssl-address/HU.json +11 -0
  278. package/resources/chromium-i18n/ssl-address/ID.json +13 -0
  279. package/resources/chromium-i18n/ssl-address/IE.json +16 -0
  280. package/resources/chromium-i18n/ssl-address/IL.json +9 -0
  281. package/resources/chromium-i18n/ssl-address/IM.json +11 -0
  282. package/resources/chromium-i18n/ssl-address/IN.json +18 -0
  283. package/resources/chromium-i18n/ssl-address/IO.json +10 -0
  284. package/resources/chromium-i18n/ssl-address/IQ.json +10 -0
  285. package/resources/chromium-i18n/ssl-address/IR.json +14 -0
  286. package/resources/chromium-i18n/ssl-address/IS.json +9 -0
  287. package/resources/chromium-i18n/ssl-address/IT.json +17 -0
  288. package/resources/chromium-i18n/ssl-address/JE.json +11 -0
  289. package/resources/chromium-i18n/ssl-address/JM.json +12 -0
  290. package/resources/chromium-i18n/ssl-address/JO.json +8 -0
  291. package/resources/chromium-i18n/ssl-address/JP.json +19 -0
  292. package/resources/chromium-i18n/ssl-address/KE.json +8 -0
  293. package/resources/chromium-i18n/ssl-address/KG.json +8 -0
  294. package/resources/chromium-i18n/ssl-address/KH.json +8 -0
  295. package/resources/chromium-i18n/ssl-address/KI.json +8 -0
  296. package/resources/chromium-i18n/ssl-address/KM.json +1 -0
  297. package/resources/chromium-i18n/ssl-address/KN.json +12 -0
  298. package/resources/chromium-i18n/ssl-address/KP.json +12 -0
  299. package/resources/chromium-i18n/ssl-address/KR.json +23 -0
  300. package/resources/chromium-i18n/ssl-address/KW.json +8 -0
  301. package/resources/chromium-i18n/ssl-address/KY.json +14 -0
  302. package/resources/chromium-i18n/ssl-address/KZ.json +8 -0
  303. package/resources/chromium-i18n/ssl-address/LA.json +8 -0
  304. package/resources/chromium-i18n/ssl-address/LB.json +8 -0
  305. package/resources/chromium-i18n/ssl-address/LC.json +1 -0
  306. package/resources/chromium-i18n/ssl-address/LI.json +11 -0
  307. package/resources/chromium-i18n/ssl-address/LK.json +9 -0
  308. package/resources/chromium-i18n/ssl-address/LR.json +8 -0
  309. package/resources/chromium-i18n/ssl-address/LS.json +8 -0
  310. package/resources/chromium-i18n/ssl-address/LT.json +10 -0
  311. package/resources/chromium-i18n/ssl-address/LU.json +11 -0
  312. package/resources/chromium-i18n/ssl-address/LV.json +9 -0
  313. package/resources/chromium-i18n/ssl-address/LY.json +1 -0
  314. package/resources/chromium-i18n/ssl-address/MA.json +8 -0
  315. package/resources/chromium-i18n/ssl-address/MC.json +9 -0
  316. package/resources/chromium-i18n/ssl-address/MD.json +9 -0
  317. package/resources/chromium-i18n/ssl-address/ME.json +8 -0
  318. package/resources/chromium-i18n/ssl-address/MF.json +11 -0
  319. package/resources/chromium-i18n/ssl-address/MG.json +8 -0
  320. package/resources/chromium-i18n/ssl-address/MH.json +13 -0
  321. package/resources/chromium-i18n/ssl-address/MK.json +8 -0
  322. package/resources/chromium-i18n/ssl-address/ML.json +1 -0
  323. package/resources/chromium-i18n/ssl-address/MM.json +8 -0
  324. package/resources/chromium-i18n/ssl-address/MN.json +9 -0
  325. package/resources/chromium-i18n/ssl-address/MO.json +8 -0
  326. package/resources/chromium-i18n/ssl-address/MP.json +13 -0
  327. package/resources/chromium-i18n/ssl-address/MQ.json +11 -0
  328. package/resources/chromium-i18n/ssl-address/MR.json +1 -0
  329. package/resources/chromium-i18n/ssl-address/MS.json +1 -0
  330. package/resources/chromium-i18n/ssl-address/MT.json +10 -0
  331. package/resources/chromium-i18n/ssl-address/MU.json +9 -0
  332. package/resources/chromium-i18n/ssl-address/MV.json +9 -0
  333. package/resources/chromium-i18n/ssl-address/MW.json +1 -0
  334. package/resources/chromium-i18n/ssl-address/MX.json +20 -0
  335. package/resources/chromium-i18n/ssl-address/MY.json +19 -0
  336. package/resources/chromium-i18n/ssl-address/MZ.json +12 -0
  337. package/resources/chromium-i18n/ssl-address/NA.json +1 -0
  338. package/resources/chromium-i18n/ssl-address/NC.json +11 -0
  339. package/resources/chromium-i18n/ssl-address/NE.json +8 -0
  340. package/resources/chromium-i18n/ssl-address/NF.json +9 -0
  341. package/resources/chromium-i18n/ssl-address/NG.json +15 -0
  342. package/resources/chromium-i18n/ssl-address/NI.json +16 -0
  343. package/resources/chromium-i18n/ssl-address/NL.json +10 -0
  344. package/resources/chromium-i18n/ssl-address/NO.json +11 -0
  345. package/resources/chromium-i18n/ssl-address/NP.json +9 -0
  346. package/resources/chromium-i18n/ssl-address/NR.json +12 -0
  347. package/resources/chromium-i18n/ssl-address/NU.json +1 -0
  348. package/resources/chromium-i18n/ssl-address/NZ.json +10 -0
  349. package/resources/chromium-i18n/ssl-address/OM.json +8 -0
  350. package/resources/chromium-i18n/ssl-address/PA.json +7 -0
  351. package/resources/chromium-i18n/ssl-address/PE.json +14 -0
  352. package/resources/chromium-i18n/ssl-address/PF.json +11 -0
  353. package/resources/chromium-i18n/ssl-address/PG.json +9 -0
  354. package/resources/chromium-i18n/ssl-address/PH.json +15 -0
  355. package/resources/chromium-i18n/ssl-address/PK.json +9 -0
  356. package/resources/chromium-i18n/ssl-address/PL.json +10 -0
  357. package/resources/chromium-i18n/ssl-address/PM.json +10 -0
  358. package/resources/chromium-i18n/ssl-address/PN.json +10 -0
  359. package/resources/chromium-i18n/ssl-address/PR.json +13 -0
  360. package/resources/chromium-i18n/ssl-address/PS.json +1 -0
  361. package/resources/chromium-i18n/ssl-address/PT.json +10 -0
  362. package/resources/chromium-i18n/ssl-address/PW.json +13 -0
  363. package/resources/chromium-i18n/ssl-address/PY.json +8 -0
  364. package/resources/chromium-i18n/ssl-address/QA.json +1 -0
  365. package/resources/chromium-i18n/ssl-address/RE.json +11 -0
  366. package/resources/chromium-i18n/ssl-address/RO.json +10 -0
  367. package/resources/chromium-i18n/ssl-address/RS.json +9 -0
  368. package/resources/chromium-i18n/ssl-address/RU.json +20 -0
  369. package/resources/chromium-i18n/ssl-address/RW.json +1 -0
  370. package/resources/chromium-i18n/ssl-address/SA.json +8 -0
  371. package/resources/chromium-i18n/ssl-address/SB.json +1 -0
  372. package/resources/chromium-i18n/ssl-address/SC.json +8 -0
  373. package/resources/chromium-i18n/ssl-address/SD.json +9 -0
  374. package/resources/chromium-i18n/ssl-address/SE.json +12 -0
  375. package/resources/chromium-i18n/ssl-address/SG.json +10 -0
  376. package/resources/chromium-i18n/ssl-address/SH.json +10 -0
  377. package/resources/chromium-i18n/ssl-address/SI.json +9 -0
  378. package/resources/chromium-i18n/ssl-address/SJ.json +11 -0
  379. package/resources/chromium-i18n/ssl-address/SK.json +10 -0
  380. package/resources/chromium-i18n/ssl-address/SL.json +1 -0
  381. package/resources/chromium-i18n/ssl-address/SM.json +10 -0
  382. package/resources/chromium-i18n/ssl-address/SN.json +8 -0
  383. package/resources/chromium-i18n/ssl-address/SO.json +15 -0
  384. package/resources/chromium-i18n/ssl-address/SR.json +11 -0
  385. package/resources/chromium-i18n/ssl-address/SS.json +1 -0
  386. package/resources/chromium-i18n/ssl-address/ST.json +1 -0
  387. package/resources/chromium-i18n/ssl-address/SV.json +17 -0
  388. package/resources/chromium-i18n/ssl-address/SX.json +1 -0
  389. package/resources/chromium-i18n/ssl-address/SY.json +6 -0
  390. package/resources/chromium-i18n/ssl-address/SZ.json +10 -0
  391. package/resources/chromium-i18n/ssl-address/TA.json +8 -0
  392. package/resources/chromium-i18n/ssl-address/TC.json +10 -0
  393. package/resources/chromium-i18n/ssl-address/TD.json +1 -0
  394. package/resources/chromium-i18n/ssl-address/TF.json +1 -0
  395. package/resources/chromium-i18n/ssl-address/TG.json +1 -0
  396. package/resources/chromium-i18n/ssl-address/TH.json +16 -0
  397. package/resources/chromium-i18n/ssl-address/TJ.json +8 -0
  398. package/resources/chromium-i18n/ssl-address/TK.json +1 -0
  399. package/resources/chromium-i18n/ssl-address/TL.json +1 -0
  400. package/resources/chromium-i18n/ssl-address/TM.json +8 -0
  401. package/resources/chromium-i18n/ssl-address/TN.json +9 -0
  402. package/resources/chromium-i18n/ssl-address/TO.json +1 -0
  403. package/resources/chromium-i18n/ssl-address/TR.json +16 -0
  404. package/resources/chromium-i18n/ssl-address/TT.json +1 -0
  405. package/resources/chromium-i18n/ssl-address/TV.json +12 -0
  406. package/resources/chromium-i18n/ssl-address/TW.json +20 -0
  407. package/resources/chromium-i18n/ssl-address/TZ.json +8 -0
  408. package/resources/chromium-i18n/ssl-address/UA.json +19 -0
  409. package/resources/chromium-i18n/ssl-address/UG.json +1 -0
  410. package/resources/chromium-i18n/ssl-address/UM.json +13 -0
  411. package/resources/chromium-i18n/ssl-address/US.json +20 -0
  412. package/resources/chromium-i18n/ssl-address/UY.json +15 -0
  413. package/resources/chromium-i18n/ssl-address/UZ.json +10 -0
  414. package/resources/chromium-i18n/ssl-address/VA.json +8 -0
  415. package/resources/chromium-i18n/ssl-address/VC.json +9 -0
  416. package/resources/chromium-i18n/ssl-address/VE.json +16 -0
  417. package/resources/chromium-i18n/ssl-address/VG.json +9 -0
  418. package/resources/chromium-i18n/ssl-address/VI.json +13 -0
  419. package/resources/chromium-i18n/ssl-address/VN.json +15 -0
  420. package/resources/chromium-i18n/ssl-address/VU.json +1 -0
  421. package/resources/chromium-i18n/ssl-address/WF.json +10 -0
  422. package/resources/chromium-i18n/ssl-address/WS.json +1 -0
  423. package/resources/chromium-i18n/ssl-address/XK.json +8 -0
  424. package/resources/chromium-i18n/ssl-address/YE.json +1 -0
  425. package/resources/chromium-i18n/ssl-address/YT.json +10 -0
  426. package/resources/chromium-i18n/ssl-address/ZA.json +10 -0
  427. package/resources/chromium-i18n/ssl-address/ZM.json +8 -0
  428. package/resources/chromium-i18n/ssl-address/ZW.json +1 -0
  429. package/resources/chromium-i18n/ssl-address-download.sh +15 -0
  430. package/resources/chromium-i18n/ssl-address.json +2468 -0
  431. package/resources/custom/custom.ts +12 -0
  432. package/resources/helper.ts +151 -0
  433. package/resources/libpostal/dictionaries/README.md +88 -0
  434. package/resources/libpostal/dictionaries/af/ambiguous_expansions.txt +8 -0
  435. package/resources/libpostal/dictionaries/af/concatenated_suffixes_inseparable.txt +1 -0
  436. package/resources/libpostal/dictionaries/af/concatenated_suffixes_separable.txt +14 -0
  437. package/resources/libpostal/dictionaries/af/directionals.txt +12 -0
  438. package/resources/libpostal/dictionaries/af/personal_titles.txt +23 -0
  439. package/resources/libpostal/dictionaries/af/place_names.txt +2 -0
  440. package/resources/libpostal/dictionaries/af/qualifiers.txt +4 -0
  441. package/resources/libpostal/dictionaries/af/stopwords.txt +38 -0
  442. package/resources/libpostal/dictionaries/af/street_types.txt +21 -0
  443. package/resources/libpostal/dictionaries/all/ambiguous_expansions.txt +1 -0
  444. package/resources/libpostal/dictionaries/all/chains.txt +504 -0
  445. package/resources/libpostal/dictionaries/all/given_names.txt +12715 -0
  446. package/resources/libpostal/dictionaries/all/people.txt +5 -0
  447. package/resources/libpostal/dictionaries/all/surnames.txt +49375 -0
  448. package/resources/libpostal/dictionaries/ar/personal_titles.txt +4 -0
  449. package/resources/libpostal/dictionaries/ar/place_names.txt +1 -0
  450. package/resources/libpostal/dictionaries/ar/street_types.txt +11 -0
  451. package/resources/libpostal/dictionaries/ast/ambiguous_expansions.txt +1 -0
  452. package/resources/libpostal/dictionaries/ast/personal_titles.txt +1 -0
  453. package/resources/libpostal/dictionaries/ast/street_types.txt +3 -0
  454. package/resources/libpostal/dictionaries/az/building_types.txt +1 -0
  455. package/resources/libpostal/dictionaries/az/directionals.txt +8 -0
  456. package/resources/libpostal/dictionaries/az/personal_titles.txt +3 -0
  457. package/resources/libpostal/dictionaries/az/place_names.txt +1 -0
  458. package/resources/libpostal/dictionaries/az/street_types.txt +18 -0
  459. package/resources/libpostal/dictionaries/be/ambiguous_expansions.txt +8 -0
  460. package/resources/libpostal/dictionaries/be/building_types.txt +2 -0
  461. package/resources/libpostal/dictionaries/be/chains.txt +8 -0
  462. package/resources/libpostal/dictionaries/be/directionals.txt +25 -0
  463. package/resources/libpostal/dictionaries/be/house_numbers.txt +2 -0
  464. package/resources/libpostal/dictionaries/be/personal_titles.txt +6 -0
  465. package/resources/libpostal/dictionaries/be/qualifiers.txt +20 -0
  466. package/resources/libpostal/dictionaries/be/street_types.txt +28 -0
  467. package/resources/libpostal/dictionaries/be/unit_types_numbered.txt +2 -0
  468. package/resources/libpostal/dictionaries/bg/ambiguous_expansions.txt +2 -0
  469. package/resources/libpostal/dictionaries/bg/cross_streets.txt +10 -0
  470. package/resources/libpostal/dictionaries/bg/directionals.txt +8 -0
  471. package/resources/libpostal/dictionaries/bg/entrances.txt +2 -0
  472. package/resources/libpostal/dictionaries/bg/level_types_numbered.txt +6 -0
  473. package/resources/libpostal/dictionaries/bg/level_types_standalone.txt +4 -0
  474. package/resources/libpostal/dictionaries/bg/near.txt +20 -0
  475. package/resources/libpostal/dictionaries/bg/number.txt +2 -0
  476. package/resources/libpostal/dictionaries/bg/personal_titles.txt +14 -0
  477. package/resources/libpostal/dictionaries/bg/place_names.txt +6 -0
  478. package/resources/libpostal/dictionaries/bg/post_office.txt +2 -0
  479. package/resources/libpostal/dictionaries/bg/qualifiers.txt +10 -0
  480. package/resources/libpostal/dictionaries/bg/staircases.txt +2 -0
  481. package/resources/libpostal/dictionaries/bg/street_types.txt +6 -0
  482. package/resources/libpostal/dictionaries/bg/unit_directions.txt +4 -0
  483. package/resources/libpostal/dictionaries/bg/unit_types_numbered.txt +6 -0
  484. package/resources/libpostal/dictionaries/br/personal_titles.txt +3 -0
  485. package/resources/libpostal/dictionaries/br/place_names.txt +3 -0
  486. package/resources/libpostal/dictionaries/br/qualifiers.txt +1 -0
  487. package/resources/libpostal/dictionaries/br/stopwords.txt +4 -0
  488. package/resources/libpostal/dictionaries/br/street_types.txt +40 -0
  489. package/resources/libpostal/dictionaries/bs/ambiguous_expansions.txt +5 -0
  490. package/resources/libpostal/dictionaries/bs/building_types.txt +1 -0
  491. package/resources/libpostal/dictionaries/bs/cross_streets.txt +6 -0
  492. package/resources/libpostal/dictionaries/bs/directionals.txt +4 -0
  493. package/resources/libpostal/dictionaries/bs/entrances.txt +1 -0
  494. package/resources/libpostal/dictionaries/bs/level_types_basement.txt +1 -0
  495. package/resources/libpostal/dictionaries/bs/level_types_mezzanine.txt +1 -0
  496. package/resources/libpostal/dictionaries/bs/level_types_numbered.txt +2 -0
  497. package/resources/libpostal/dictionaries/bs/level_types_standalone.txt +2 -0
  498. package/resources/libpostal/dictionaries/bs/near.txt +5 -0
  499. package/resources/libpostal/dictionaries/bs/no_number.txt +1 -0
  500. package/resources/libpostal/dictionaries/bs/number.txt +1 -0
  501. package/resources/libpostal/dictionaries/bs/personal_titles.txt +8 -0
  502. package/resources/libpostal/dictionaries/bs/place_names.txt +9 -0
  503. package/resources/libpostal/dictionaries/bs/post_office.txt +1 -0
  504. package/resources/libpostal/dictionaries/bs/qualifiers.txt +2 -0
  505. package/resources/libpostal/dictionaries/bs/staircases.txt +1 -0
  506. package/resources/libpostal/dictionaries/bs/stopwords.txt +2 -0
  507. package/resources/libpostal/dictionaries/bs/street_types.txt +12 -0
  508. package/resources/libpostal/dictionaries/bs/unit_directions.txt +2 -0
  509. package/resources/libpostal/dictionaries/bs/unit_types_numbered.txt +4 -0
  510. package/resources/libpostal/dictionaries/ca/ambiguous_expansions.txt +9 -0
  511. package/resources/libpostal/dictionaries/ca/cross_streets.txt +8 -0
  512. package/resources/libpostal/dictionaries/ca/directionals.txt +9 -0
  513. package/resources/libpostal/dictionaries/ca/elisions.txt +1 -0
  514. package/resources/libpostal/dictionaries/ca/entrances.txt +1 -0
  515. package/resources/libpostal/dictionaries/ca/given_names.txt +1 -0
  516. package/resources/libpostal/dictionaries/ca/level_types_basement.txt +1 -0
  517. package/resources/libpostal/dictionaries/ca/level_types_mezzanine.txt +1 -0
  518. package/resources/libpostal/dictionaries/ca/level_types_numbered.txt +2 -0
  519. package/resources/libpostal/dictionaries/ca/level_types_standalone.txt +5 -0
  520. package/resources/libpostal/dictionaries/ca/level_types_sub_basement.txt +1 -0
  521. package/resources/libpostal/dictionaries/ca/near.txt +12 -0
  522. package/resources/libpostal/dictionaries/ca/no_number.txt +1 -0
  523. package/resources/libpostal/dictionaries/ca/number.txt +1 -0
  524. package/resources/libpostal/dictionaries/ca/personal_titles.txt +10 -0
  525. package/resources/libpostal/dictionaries/ca/place_names.txt +133 -0
  526. package/resources/libpostal/dictionaries/ca/post_office.txt +1 -0
  527. package/resources/libpostal/dictionaries/ca/postcodes.txt +1 -0
  528. package/resources/libpostal/dictionaries/ca/qualifiers.txt +8 -0
  529. package/resources/libpostal/dictionaries/ca/staircases.txt +1 -0
  530. package/resources/libpostal/dictionaries/ca/stopwords.txt +31 -0
  531. package/resources/libpostal/dictionaries/ca/street_types.txt +28 -0
  532. package/resources/libpostal/dictionaries/ca/synonyms.txt +14 -0
  533. package/resources/libpostal/dictionaries/ca/unit_directions.txt +2 -0
  534. package/resources/libpostal/dictionaries/ca/unit_types_numbered.txt +10 -0
  535. package/resources/libpostal/dictionaries/cs/ambiguous_expansions.txt +6 -0
  536. package/resources/libpostal/dictionaries/cs/chains.txt +1 -0
  537. package/resources/libpostal/dictionaries/cs/cross_streets.txt +9 -0
  538. package/resources/libpostal/dictionaries/cs/directionals.txt +4 -0
  539. package/resources/libpostal/dictionaries/cs/entrances.txt +1 -0
  540. package/resources/libpostal/dictionaries/cs/house_numbers.txt +1 -0
  541. package/resources/libpostal/dictionaries/cs/level_types_basement.txt +1 -0
  542. package/resources/libpostal/dictionaries/cs/level_types_numbered.txt +3 -0
  543. package/resources/libpostal/dictionaries/cs/level_types_standalone.txt +1 -0
  544. package/resources/libpostal/dictionaries/cs/near.txt +12 -0
  545. package/resources/libpostal/dictionaries/cs/number.txt +1 -0
  546. package/resources/libpostal/dictionaries/cs/personal_titles.txt +2 -0
  547. package/resources/libpostal/dictionaries/cs/place_names.txt +47 -0
  548. package/resources/libpostal/dictionaries/cs/post_office.txt +1 -0
  549. package/resources/libpostal/dictionaries/cs/staircases.txt +1 -0
  550. package/resources/libpostal/dictionaries/cs/stopwords.txt +1 -0
  551. package/resources/libpostal/dictionaries/cs/street_types.txt +6 -0
  552. package/resources/libpostal/dictionaries/cs/unit_directions.txt +2 -0
  553. package/resources/libpostal/dictionaries/cs/unit_types_numbered.txt +3 -0
  554. package/resources/libpostal/dictionaries/cy/building_types.txt +5 -0
  555. package/resources/libpostal/dictionaries/cy/directionals.txt +4 -0
  556. package/resources/libpostal/dictionaries/cy/personal_titles.txt +2 -0
  557. package/resources/libpostal/dictionaries/cy/place_names.txt +22 -0
  558. package/resources/libpostal/dictionaries/cy/qualifiers.txt +2 -0
  559. package/resources/libpostal/dictionaries/cy/stopwords.txt +3 -0
  560. package/resources/libpostal/dictionaries/cy/street_types.txt +22 -0
  561. package/resources/libpostal/dictionaries/da/academic_degrees.txt +1 -0
  562. package/resources/libpostal/dictionaries/da/ambiguous_expansions.txt +7 -0
  563. package/resources/libpostal/dictionaries/da/building_types.txt +3 -0
  564. package/resources/libpostal/dictionaries/da/concatenated_suffixes_inseparable.txt +21 -0
  565. package/resources/libpostal/dictionaries/da/concatenated_suffixes_separable.txt +9 -0
  566. package/resources/libpostal/dictionaries/da/cross_streets.txt +5 -0
  567. package/resources/libpostal/dictionaries/da/directionals.txt +13 -0
  568. package/resources/libpostal/dictionaries/da/entrances.txt +1 -0
  569. package/resources/libpostal/dictionaries/da/level_types_basement.txt +1 -0
  570. package/resources/libpostal/dictionaries/da/level_types_numbered.txt +2 -0
  571. package/resources/libpostal/dictionaries/da/level_types_standalone.txt +2 -0
  572. package/resources/libpostal/dictionaries/da/near.txt +14 -0
  573. package/resources/libpostal/dictionaries/da/number.txt +1 -0
  574. package/resources/libpostal/dictionaries/da/personal_titles.txt +1 -0
  575. package/resources/libpostal/dictionaries/da/place_names.txt +7 -0
  576. package/resources/libpostal/dictionaries/da/post_office.txt +2 -0
  577. package/resources/libpostal/dictionaries/da/staircases.txt +2 -0
  578. package/resources/libpostal/dictionaries/da/stopwords.txt +1 -0
  579. package/resources/libpostal/dictionaries/da/street_types.txt +38 -0
  580. package/resources/libpostal/dictionaries/da/synonyms.txt +2 -0
  581. package/resources/libpostal/dictionaries/da/unit_directions.txt +3 -0
  582. package/resources/libpostal/dictionaries/da/unit_types_numbered.txt +2 -0
  583. package/resources/libpostal/dictionaries/de/academic_degrees.txt +5 -0
  584. package/resources/libpostal/dictionaries/de/ambiguous_expansions.txt +18 -0
  585. package/resources/libpostal/dictionaries/de/chains.txt +11 -0
  586. package/resources/libpostal/dictionaries/de/company_types.txt +8 -0
  587. package/resources/libpostal/dictionaries/de/concatenated_prefixes_separable.txt +17 -0
  588. package/resources/libpostal/dictionaries/de/concatenated_suffixes_inseparable.txt +5 -0
  589. package/resources/libpostal/dictionaries/de/concatenated_suffixes_separable.txt +16 -0
  590. package/resources/libpostal/dictionaries/de/cross_streets.txt +5 -0
  591. package/resources/libpostal/dictionaries/de/directionals.txt +41 -0
  592. package/resources/libpostal/dictionaries/de/entrances.txt +1 -0
  593. package/resources/libpostal/dictionaries/de/house_numbers.txt +1 -0
  594. package/resources/libpostal/dictionaries/de/level_types_basement.txt +1 -0
  595. package/resources/libpostal/dictionaries/de/level_types_numbered.txt +3 -0
  596. package/resources/libpostal/dictionaries/de/level_types_standalone.txt +4 -0
  597. package/resources/libpostal/dictionaries/de/near.txt +16 -0
  598. package/resources/libpostal/dictionaries/de/number.txt +1 -0
  599. package/resources/libpostal/dictionaries/de/personal_suffixes.txt +2 -0
  600. package/resources/libpostal/dictionaries/de/personal_titles.txt +18 -0
  601. package/resources/libpostal/dictionaries/de/place_names.txt +123 -0
  602. package/resources/libpostal/dictionaries/de/post_office.txt +1 -0
  603. package/resources/libpostal/dictionaries/de/qualifiers.txt +3 -0
  604. package/resources/libpostal/dictionaries/de/staircases.txt +2 -0
  605. package/resources/libpostal/dictionaries/de/stopwords.txt +39 -0
  606. package/resources/libpostal/dictionaries/de/street_types.txt +36 -0
  607. package/resources/libpostal/dictionaries/de/synonyms.txt +16 -0
  608. package/resources/libpostal/dictionaries/de/toponyms.txt +28 -0
  609. package/resources/libpostal/dictionaries/de/unit_directions.txt +2 -0
  610. package/resources/libpostal/dictionaries/de/unit_types_numbered.txt +7 -0
  611. package/resources/libpostal/dictionaries/el/ambiguous_expansions.txt +1 -0
  612. package/resources/libpostal/dictionaries/el/building_types.txt +2 -0
  613. package/resources/libpostal/dictionaries/el/entrances.txt +2 -0
  614. package/resources/libpostal/dictionaries/el/given_names.txt +6 -0
  615. package/resources/libpostal/dictionaries/el/level_types_basement.txt +2 -0
  616. package/resources/libpostal/dictionaries/el/level_types_mezzanine.txt +2 -0
  617. package/resources/libpostal/dictionaries/el/level_types_numbered.txt +2 -0
  618. package/resources/libpostal/dictionaries/el/level_types_standalone.txt +2 -0
  619. package/resources/libpostal/dictionaries/el/personal_titles.txt +12 -0
  620. package/resources/libpostal/dictionaries/el/place_names.txt +18 -0
  621. package/resources/libpostal/dictionaries/el/post_office.txt +2 -0
  622. package/resources/libpostal/dictionaries/el/postcodes.txt +2 -0
  623. package/resources/libpostal/dictionaries/el/qualifiers.txt +6 -0
  624. package/resources/libpostal/dictionaries/el/staircases.txt +2 -0
  625. package/resources/libpostal/dictionaries/el/street_types.txt +6 -0
  626. package/resources/libpostal/dictionaries/el/synonyms.txt +41 -0
  627. package/resources/libpostal/dictionaries/el/toponyms.txt +3 -0
  628. package/resources/libpostal/dictionaries/el/unit_types_numbered.txt +6 -0
  629. package/resources/libpostal/dictionaries/en/academic_degrees.txt +27 -0
  630. package/resources/libpostal/dictionaries/en/ambiguous_expansions.txt +178 -0
  631. package/resources/libpostal/dictionaries/en/building_types.txt +19 -0
  632. package/resources/libpostal/dictionaries/en/chains.txt +6 -0
  633. package/resources/libpostal/dictionaries/en/company_types.txt +61 -0
  634. package/resources/libpostal/dictionaries/en/cross_streets.txt +9 -0
  635. package/resources/libpostal/dictionaries/en/directionals.txt +20 -0
  636. package/resources/libpostal/dictionaries/en/entrances.txt +1 -0
  637. package/resources/libpostal/dictionaries/en/given_names.txt +2 -0
  638. package/resources/libpostal/dictionaries/en/level_types_basement.txt +1 -0
  639. package/resources/libpostal/dictionaries/en/level_types_mezzanine.txt +5 -0
  640. package/resources/libpostal/dictionaries/en/level_types_numbered.txt +4 -0
  641. package/resources/libpostal/dictionaries/en/level_types_standalone.txt +12 -0
  642. package/resources/libpostal/dictionaries/en/level_types_sub_basement.txt +1 -0
  643. package/resources/libpostal/dictionaries/en/near.txt +7 -0
  644. package/resources/libpostal/dictionaries/en/no_number.txt +1 -0
  645. package/resources/libpostal/dictionaries/en/nulls.txt +2 -0
  646. package/resources/libpostal/dictionaries/en/number.txt +1 -0
  647. package/resources/libpostal/dictionaries/en/personal_suffixes.txt +2 -0
  648. package/resources/libpostal/dictionaries/en/personal_titles.txt +80 -0
  649. package/resources/libpostal/dictionaries/en/place_names.txt +315 -0
  650. package/resources/libpostal/dictionaries/en/post_office.txt +16 -0
  651. package/resources/libpostal/dictionaries/en/qualifiers.txt +5 -0
  652. package/resources/libpostal/dictionaries/en/staircases.txt +3 -0
  653. package/resources/libpostal/dictionaries/en/stopwords.txt +14 -0
  654. package/resources/libpostal/dictionaries/en/street_names.txt +358 -0
  655. package/resources/libpostal/dictionaries/en/street_types.txt +410 -0
  656. package/resources/libpostal/dictionaries/en/synonyms.txt +53 -0
  657. package/resources/libpostal/dictionaries/en/toponyms.txt +80 -0
  658. package/resources/libpostal/dictionaries/en/unit_directions.txt +4 -0
  659. package/resources/libpostal/dictionaries/en/unit_types_numbered.txt +69 -0
  660. package/resources/libpostal/dictionaries/en/unit_types_standalone.txt +16 -0
  661. package/resources/libpostal/dictionaries/es/academic_degrees.txt +2 -0
  662. package/resources/libpostal/dictionaries/es/ambiguous_expansions.txt +45 -0
  663. package/resources/libpostal/dictionaries/es/building_types.txt +15 -0
  664. package/resources/libpostal/dictionaries/es/company_types.txt +49 -0
  665. package/resources/libpostal/dictionaries/es/cross_streets.txt +9 -0
  666. package/resources/libpostal/dictionaries/es/directionals.txt +13 -0
  667. package/resources/libpostal/dictionaries/es/entrances.txt +3 -0
  668. package/resources/libpostal/dictionaries/es/given_names.txt +3 -0
  669. package/resources/libpostal/dictionaries/es/house_numbers.txt +2 -0
  670. package/resources/libpostal/dictionaries/es/level_types_basement.txt +1 -0
  671. package/resources/libpostal/dictionaries/es/level_types_mezzanine.txt +1 -0
  672. package/resources/libpostal/dictionaries/es/level_types_numbered.txt +2 -0
  673. package/resources/libpostal/dictionaries/es/level_types_standalone.txt +7 -0
  674. package/resources/libpostal/dictionaries/es/level_types_sub_basement.txt +1 -0
  675. package/resources/libpostal/dictionaries/es/near.txt +10 -0
  676. package/resources/libpostal/dictionaries/es/no_number.txt +1 -0
  677. package/resources/libpostal/dictionaries/es/number.txt +1 -0
  678. package/resources/libpostal/dictionaries/es/personal_suffixes.txt +1 -0
  679. package/resources/libpostal/dictionaries/es/personal_titles.txt +132 -0
  680. package/resources/libpostal/dictionaries/es/place_names.txt +234 -0
  681. package/resources/libpostal/dictionaries/es/post_office.txt +4 -0
  682. package/resources/libpostal/dictionaries/es/postcodes.txt +1 -0
  683. package/resources/libpostal/dictionaries/es/qualifiers.txt +34 -0
  684. package/resources/libpostal/dictionaries/es/staircases.txt +2 -0
  685. package/resources/libpostal/dictionaries/es/stopwords.txt +29 -0
  686. package/resources/libpostal/dictionaries/es/street_types.txt +109 -0
  687. package/resources/libpostal/dictionaries/es/surnames.txt +6 -0
  688. package/resources/libpostal/dictionaries/es/synonyms.txt +58 -0
  689. package/resources/libpostal/dictionaries/es/toponyms.txt +39 -0
  690. package/resources/libpostal/dictionaries/es/unit_directions.txt +4 -0
  691. package/resources/libpostal/dictionaries/es/unit_types_numbered.txt +15 -0
  692. package/resources/libpostal/dictionaries/es/unit_types_standalone.txt +5 -0
  693. package/resources/libpostal/dictionaries/et/ambiguous_expansions.txt +5 -0
  694. package/resources/libpostal/dictionaries/et/building_types.txt +3 -0
  695. package/resources/libpostal/dictionaries/et/company_types.txt +10 -0
  696. package/resources/libpostal/dictionaries/et/cross_streets.txt +4 -0
  697. package/resources/libpostal/dictionaries/et/directionals.txt +9 -0
  698. package/resources/libpostal/dictionaries/et/entrances.txt +1 -0
  699. package/resources/libpostal/dictionaries/et/level_types_basement.txt +2 -0
  700. package/resources/libpostal/dictionaries/et/level_types_numbered.txt +1 -0
  701. package/resources/libpostal/dictionaries/et/near.txt +4 -0
  702. package/resources/libpostal/dictionaries/et/number.txt +1 -0
  703. package/resources/libpostal/dictionaries/et/personal_titles.txt +13 -0
  704. package/resources/libpostal/dictionaries/et/place_names.txt +39 -0
  705. package/resources/libpostal/dictionaries/et/post_office.txt +2 -0
  706. package/resources/libpostal/dictionaries/et/qualifiers.txt +6 -0
  707. package/resources/libpostal/dictionaries/et/staircases.txt +1 -0
  708. package/resources/libpostal/dictionaries/et/stopwords.txt +1 -0
  709. package/resources/libpostal/dictionaries/et/street_types.txt +10 -0
  710. package/resources/libpostal/dictionaries/et/toponyms.txt +1 -0
  711. package/resources/libpostal/dictionaries/et/unit_directions.txt +4 -0
  712. package/resources/libpostal/dictionaries/et/unit_types_numbered.txt +3 -0
  713. package/resources/libpostal/dictionaries/eu/ambiguous_expansions.txt +2 -0
  714. package/resources/libpostal/dictionaries/eu/cross_streets.txt +4 -0
  715. package/resources/libpostal/dictionaries/eu/entrances.txt +1 -0
  716. package/resources/libpostal/dictionaries/eu/level_types_numbered.txt +1 -0
  717. package/resources/libpostal/dictionaries/eu/level_types_standalone.txt +2 -0
  718. package/resources/libpostal/dictionaries/eu/near.txt +5 -0
  719. package/resources/libpostal/dictionaries/eu/no_number.txt +1 -0
  720. package/resources/libpostal/dictionaries/eu/place_names.txt +63 -0
  721. package/resources/libpostal/dictionaries/eu/post_office.txt +1 -0
  722. package/resources/libpostal/dictionaries/eu/postcodes.txt +1 -0
  723. package/resources/libpostal/dictionaries/eu/qualifiers.txt +2 -0
  724. package/resources/libpostal/dictionaries/eu/staircases.txt +1 -0
  725. package/resources/libpostal/dictionaries/eu/stopwords.txt +1 -0
  726. package/resources/libpostal/dictionaries/eu/street_types.txt +18 -0
  727. package/resources/libpostal/dictionaries/eu/unit_directions.txt +3 -0
  728. package/resources/libpostal/dictionaries/eu/unit_types_numbered.txt +2 -0
  729. package/resources/libpostal/dictionaries/fa/personal_titles.txt +6 -0
  730. package/resources/libpostal/dictionaries/fa/place_names.txt +3 -0
  731. package/resources/libpostal/dictionaries/fa/street_types.txt +7 -0
  732. package/resources/libpostal/dictionaries/fi/ambiguous_expansions.txt +5 -0
  733. package/resources/libpostal/dictionaries/fi/building_types.txt +3 -0
  734. package/resources/libpostal/dictionaries/fi/chains.txt +1 -0
  735. package/resources/libpostal/dictionaries/fi/concatenated_suffixes_separable.txt +20 -0
  736. package/resources/libpostal/dictionaries/fi/cross_streets.txt +3 -0
  737. package/resources/libpostal/dictionaries/fi/directionals.txt +4 -0
  738. package/resources/libpostal/dictionaries/fi/entrances.txt +1 -0
  739. package/resources/libpostal/dictionaries/fi/level_types_numbered.txt +1 -0
  740. package/resources/libpostal/dictionaries/fi/near.txt +5 -0
  741. package/resources/libpostal/dictionaries/fi/number.txt +1 -0
  742. package/resources/libpostal/dictionaries/fi/post_office.txt +1 -0
  743. package/resources/libpostal/dictionaries/fi/qualifiers.txt +2 -0
  744. package/resources/libpostal/dictionaries/fi/staircases.txt +1 -0
  745. package/resources/libpostal/dictionaries/fi/stopwords.txt +1 -0
  746. package/resources/libpostal/dictionaries/fi/street_types.txt +20 -0
  747. package/resources/libpostal/dictionaries/fi/synonyms.txt +1 -0
  748. package/resources/libpostal/dictionaries/fi/unit_directions.txt +4 -0
  749. package/resources/libpostal/dictionaries/fi/unit_types_numbered.txt +2 -0
  750. package/resources/libpostal/dictionaries/fil/street_types.txt +3 -0
  751. package/resources/libpostal/dictionaries/fr/ambiguous_expansions.txt +25 -0
  752. package/resources/libpostal/dictionaries/fr/building_types.txt +4 -0
  753. package/resources/libpostal/dictionaries/fr/chains.txt +2 -0
  754. package/resources/libpostal/dictionaries/fr/company_types.txt +40 -0
  755. package/resources/libpostal/dictionaries/fr/cross_streets.txt +5 -0
  756. package/resources/libpostal/dictionaries/fr/directionals.txt +12 -0
  757. package/resources/libpostal/dictionaries/fr/elisions.txt +9 -0
  758. package/resources/libpostal/dictionaries/fr/entrances.txt +2 -0
  759. package/resources/libpostal/dictionaries/fr/level_types_basement.txt +1 -0
  760. package/resources/libpostal/dictionaries/fr/level_types_mezzanine.txt +1 -0
  761. package/resources/libpostal/dictionaries/fr/level_types_numbered.txt +2 -0
  762. package/resources/libpostal/dictionaries/fr/level_types_standalone.txt +8 -0
  763. package/resources/libpostal/dictionaries/fr/level_types_sub_basement.txt +1 -0
  764. package/resources/libpostal/dictionaries/fr/near.txt +20 -0
  765. package/resources/libpostal/dictionaries/fr/no_number.txt +1 -0
  766. package/resources/libpostal/dictionaries/fr/number.txt +1 -0
  767. package/resources/libpostal/dictionaries/fr/people.txt +1 -0
  768. package/resources/libpostal/dictionaries/fr/personal_titles.txt +57 -0
  769. package/resources/libpostal/dictionaries/fr/place_names.txt +147 -0
  770. package/resources/libpostal/dictionaries/fr/post_office.txt +3 -0
  771. package/resources/libpostal/dictionaries/fr/qualifiers.txt +19 -0
  772. package/resources/libpostal/dictionaries/fr/staircases.txt +1 -0
  773. package/resources/libpostal/dictionaries/fr/stopwords.txt +28 -0
  774. package/resources/libpostal/dictionaries/fr/street_types.txt +165 -0
  775. package/resources/libpostal/dictionaries/fr/synonyms.txt +14 -0
  776. package/resources/libpostal/dictionaries/fr/toponyms.txt +13 -0
  777. package/resources/libpostal/dictionaries/fr/unit_directions.txt +4 -0
  778. package/resources/libpostal/dictionaries/fr/unit_types_numbered.txt +10 -0
  779. package/resources/libpostal/dictionaries/ga/building_types.txt +16 -0
  780. package/resources/libpostal/dictionaries/ga/level_types_standalone.txt +1 -0
  781. package/resources/libpostal/dictionaries/ga/personal_titles.txt +1 -0
  782. package/resources/libpostal/dictionaries/ga/place_names.txt +10 -0
  783. package/resources/libpostal/dictionaries/ga/street_types.txt +95 -0
  784. package/resources/libpostal/dictionaries/ga/unit_types_numbered.txt +1 -0
  785. package/resources/libpostal/dictionaries/gd/building_types.txt +8 -0
  786. package/resources/libpostal/dictionaries/gd/directionals.txt +6 -0
  787. package/resources/libpostal/dictionaries/gd/place_names.txt +7 -0
  788. package/resources/libpostal/dictionaries/gd/qualifiers.txt +1 -0
  789. package/resources/libpostal/dictionaries/gd/stopwords.txt +2 -0
  790. package/resources/libpostal/dictionaries/gd/street_types.txt +52 -0
  791. package/resources/libpostal/dictionaries/gl/ambiguous_expansions.txt +6 -0
  792. package/resources/libpostal/dictionaries/gl/directionals.txt +8 -0
  793. package/resources/libpostal/dictionaries/gl/personal_titles.txt +2 -0
  794. package/resources/libpostal/dictionaries/gl/stopwords.txt +39 -0
  795. package/resources/libpostal/dictionaries/gl/street_types.txt +26 -0
  796. package/resources/libpostal/dictionaries/gl/unit_directions.txt +2 -0
  797. package/resources/libpostal/dictionaries/gsw/ambiguous_expansions.txt +1 -0
  798. package/resources/libpostal/dictionaries/gsw/concatenated_suffixes_separable.txt +8 -0
  799. package/resources/libpostal/dictionaries/gsw/street_types.txt +8 -0
  800. package/resources/libpostal/dictionaries/he/entrances.txt +2 -0
  801. package/resources/libpostal/dictionaries/he/level_types_basement.txt +2 -0
  802. package/resources/libpostal/dictionaries/he/level_types_numbered.txt +2 -0
  803. package/resources/libpostal/dictionaries/he/level_types_standalone.txt +2 -0
  804. package/resources/libpostal/dictionaries/he/personal_titles.txt +2 -0
  805. package/resources/libpostal/dictionaries/he/post_office.txt +2 -0
  806. package/resources/libpostal/dictionaries/he/street_types.txt +8 -0
  807. package/resources/libpostal/dictionaries/he/unit_types_numbered.txt +2 -0
  808. package/resources/libpostal/dictionaries/hi/street_types.txt +3 -0
  809. package/resources/libpostal/dictionaries/hr/ambiguous_expansions.txt +6 -0
  810. package/resources/libpostal/dictionaries/hr/building_types.txt +1 -0
  811. package/resources/libpostal/dictionaries/hr/cross_streets.txt +6 -0
  812. package/resources/libpostal/dictionaries/hr/directionals.txt +4 -0
  813. package/resources/libpostal/dictionaries/hr/entrances.txt +1 -0
  814. package/resources/libpostal/dictionaries/hr/level_types_basement.txt +1 -0
  815. package/resources/libpostal/dictionaries/hr/level_types_mezzanine.txt +1 -0
  816. package/resources/libpostal/dictionaries/hr/level_types_numbered.txt +2 -0
  817. package/resources/libpostal/dictionaries/hr/level_types_standalone.txt +2 -0
  818. package/resources/libpostal/dictionaries/hr/near.txt +5 -0
  819. package/resources/libpostal/dictionaries/hr/no_number.txt +1 -0
  820. package/resources/libpostal/dictionaries/hr/personal_titles.txt +6 -0
  821. package/resources/libpostal/dictionaries/hr/place_names.txt +18 -0
  822. package/resources/libpostal/dictionaries/hr/post_office.txt +1 -0
  823. package/resources/libpostal/dictionaries/hr/qualifiers.txt +1 -0
  824. package/resources/libpostal/dictionaries/hr/staircases.txt +1 -0
  825. package/resources/libpostal/dictionaries/hr/stopwords.txt +1 -0
  826. package/resources/libpostal/dictionaries/hr/street_types.txt +12 -0
  827. package/resources/libpostal/dictionaries/hr/unit_directions.txt +2 -0
  828. package/resources/libpostal/dictionaries/hr/unit_types_numbered.txt +4 -0
  829. package/resources/libpostal/dictionaries/hu/ambiguous_expansions.txt +6 -0
  830. package/resources/libpostal/dictionaries/hu/cross_streets.txt +5 -0
  831. package/resources/libpostal/dictionaries/hu/directionals.txt +8 -0
  832. package/resources/libpostal/dictionaries/hu/level_types_basement.txt +4 -0
  833. package/resources/libpostal/dictionaries/hu/level_types_mezzanine.txt +2 -0
  834. package/resources/libpostal/dictionaries/hu/level_types_numbered.txt +1 -0
  835. package/resources/libpostal/dictionaries/hu/level_types_standalone.txt +1 -0
  836. package/resources/libpostal/dictionaries/hu/near.txt +3 -0
  837. package/resources/libpostal/dictionaries/hu/number.txt +1 -0
  838. package/resources/libpostal/dictionaries/hu/personal_titles.txt +1 -0
  839. package/resources/libpostal/dictionaries/hu/post_office.txt +1 -0
  840. package/resources/libpostal/dictionaries/hu/stopwords.txt +4 -0
  841. package/resources/libpostal/dictionaries/hu/street_types.txt +21 -0
  842. package/resources/libpostal/dictionaries/hu/unit_directions.txt +2 -0
  843. package/resources/libpostal/dictionaries/hu/unit_types_numbered.txt +3 -0
  844. package/resources/libpostal/dictionaries/id/academic_degrees.txt +78 -0
  845. package/resources/libpostal/dictionaries/id/ambiguous_expansions.txt +64 -0
  846. package/resources/libpostal/dictionaries/id/building_types.txt +7 -0
  847. package/resources/libpostal/dictionaries/id/chains.txt +5 -0
  848. package/resources/libpostal/dictionaries/id/company_types.txt +15 -0
  849. package/resources/libpostal/dictionaries/id/cross_streets.txt +6 -0
  850. package/resources/libpostal/dictionaries/id/directionals.txt +9 -0
  851. package/resources/libpostal/dictionaries/id/entrances.txt +3 -0
  852. package/resources/libpostal/dictionaries/id/level_types_numbered.txt +1 -0
  853. package/resources/libpostal/dictionaries/id/level_types_standalone.txt +3 -0
  854. package/resources/libpostal/dictionaries/id/near.txt +3 -0
  855. package/resources/libpostal/dictionaries/id/number.txt +1 -0
  856. package/resources/libpostal/dictionaries/id/personal_titles.txt +34 -0
  857. package/resources/libpostal/dictionaries/id/place_names.txt +145 -0
  858. package/resources/libpostal/dictionaries/id/qualifiers.txt +13 -0
  859. package/resources/libpostal/dictionaries/id/stopwords.txt +9 -0
  860. package/resources/libpostal/dictionaries/id/street_types.txt +7 -0
  861. package/resources/libpostal/dictionaries/id/synonyms.txt +22 -0
  862. package/resources/libpostal/dictionaries/id/toponyms.txt +34 -0
  863. package/resources/libpostal/dictionaries/id/unit_directions.txt +4 -0
  864. package/resources/libpostal/dictionaries/id/unit_types_numbered.txt +16 -0
  865. package/resources/libpostal/dictionaries/id/unit_types_standalone.txt +9 -0
  866. package/resources/libpostal/dictionaries/is/ambiguous_expansions.txt +6 -0
  867. package/resources/libpostal/dictionaries/is/concatenated_suffixes_inseparable.txt +29 -0
  868. package/resources/libpostal/dictionaries/is/cross_streets.txt +4 -0
  869. package/resources/libpostal/dictionaries/is/directionals.txt +4 -0
  870. package/resources/libpostal/dictionaries/is/entrances.txt +1 -0
  871. package/resources/libpostal/dictionaries/is/level_types_basement.txt +1 -0
  872. package/resources/libpostal/dictionaries/is/level_types_numbered.txt +1 -0
  873. package/resources/libpostal/dictionaries/is/level_types_standalone.txt +1 -0
  874. package/resources/libpostal/dictionaries/is/near.txt +6 -0
  875. package/resources/libpostal/dictionaries/is/number.txt +1 -0
  876. package/resources/libpostal/dictionaries/is/post_office.txt +1 -0
  877. package/resources/libpostal/dictionaries/is/qualifiers.txt +2 -0
  878. package/resources/libpostal/dictionaries/is/staircases.txt +1 -0
  879. package/resources/libpostal/dictionaries/is/stopwords.txt +1 -0
  880. package/resources/libpostal/dictionaries/is/street_types.txt +29 -0
  881. package/resources/libpostal/dictionaries/is/unit_directions.txt +2 -0
  882. package/resources/libpostal/dictionaries/is/unit_types_numbered.txt +1 -0
  883. package/resources/libpostal/dictionaries/it/academic_degrees.txt +1 -0
  884. package/resources/libpostal/dictionaries/it/ambiguous_expansions.txt +8 -0
  885. package/resources/libpostal/dictionaries/it/building_types.txt +5 -0
  886. package/resources/libpostal/dictionaries/it/chains.txt +5 -0
  887. package/resources/libpostal/dictionaries/it/company_types.txt +16 -0
  888. package/resources/libpostal/dictionaries/it/cross_streets.txt +7 -0
  889. package/resources/libpostal/dictionaries/it/directionals.txt +11 -0
  890. package/resources/libpostal/dictionaries/it/elisions.txt +4 -0
  891. package/resources/libpostal/dictionaries/it/entrances.txt +1 -0
  892. package/resources/libpostal/dictionaries/it/level_types_basement.txt +2 -0
  893. package/resources/libpostal/dictionaries/it/level_types_numbered.txt +2 -0
  894. package/resources/libpostal/dictionaries/it/level_types_standalone.txt +2 -0
  895. package/resources/libpostal/dictionaries/it/near.txt +10 -0
  896. package/resources/libpostal/dictionaries/it/no_number.txt +2 -0
  897. package/resources/libpostal/dictionaries/it/number.txt +1 -0
  898. package/resources/libpostal/dictionaries/it/personal_titles.txt +72 -0
  899. package/resources/libpostal/dictionaries/it/place_names.txt +203 -0
  900. package/resources/libpostal/dictionaries/it/post_office.txt +2 -0
  901. package/resources/libpostal/dictionaries/it/qualifiers.txt +16 -0
  902. package/resources/libpostal/dictionaries/it/staircases.txt +1 -0
  903. package/resources/libpostal/dictionaries/it/stopwords.txt +47 -0
  904. package/resources/libpostal/dictionaries/it/street_types.txt +151 -0
  905. package/resources/libpostal/dictionaries/it/synonyms.txt +115 -0
  906. package/resources/libpostal/dictionaries/it/toponyms.txt +110 -0
  907. package/resources/libpostal/dictionaries/it/unit_types_numbered.txt +9 -0
  908. package/resources/libpostal/dictionaries/ja/ambiguous_expansions.txt +5 -0
  909. package/resources/libpostal/dictionaries/ja/building_types.txt +6 -0
  910. package/resources/libpostal/dictionaries/ja/chains.txt +27 -0
  911. package/resources/libpostal/dictionaries/ja/directionals.txt +16 -0
  912. package/resources/libpostal/dictionaries/ja/level_types_numbered.txt +3 -0
  913. package/resources/libpostal/dictionaries/ja/number.txt +2 -0
  914. package/resources/libpostal/dictionaries/ja/place_names.txt +16 -0
  915. package/resources/libpostal/dictionaries/ja/post_office.txt +2 -0
  916. package/resources/libpostal/dictionaries/ja/postcodes.txt +2 -0
  917. package/resources/libpostal/dictionaries/ja/qualifiers.txt +38 -0
  918. package/resources/libpostal/dictionaries/ja/street_types.txt +67 -0
  919. package/resources/libpostal/dictionaries/ka/ambiguous_expansions.txt +2 -0
  920. package/resources/libpostal/dictionaries/ka/personal_titles.txt +4 -0
  921. package/resources/libpostal/dictionaries/ka/place_names.txt +7 -0
  922. package/resources/libpostal/dictionaries/ka/stopwords.txt +1 -0
  923. package/resources/libpostal/dictionaries/ka/street_types.txt +12 -0
  924. package/resources/libpostal/dictionaries/ko/directionals.txt +31 -0
  925. package/resources/libpostal/dictionaries/ko/level_types_numbered.txt +2 -0
  926. package/resources/libpostal/dictionaries/ko/number.txt +3 -0
  927. package/resources/libpostal/dictionaries/ko/post_office.txt +2 -0
  928. package/resources/libpostal/dictionaries/ko/postcodes.txt +2 -0
  929. package/resources/libpostal/dictionaries/ko/qualifiers.txt +6 -0
  930. package/resources/libpostal/dictionaries/ko/street_types.txt +8 -0
  931. package/resources/libpostal/dictionaries/lb/concatenated_suffixes_separable.txt +3 -0
  932. package/resources/libpostal/dictionaries/lb/street_types.txt +3 -0
  933. package/resources/libpostal/dictionaries/lt/ambiguous_expansions.txt +6 -0
  934. package/resources/libpostal/dictionaries/lt/building_types.txt +1 -0
  935. package/resources/libpostal/dictionaries/lt/cross_streets.txt +4 -0
  936. package/resources/libpostal/dictionaries/lt/directionals.txt +4 -0
  937. package/resources/libpostal/dictionaries/lt/entrances.txt +1 -0
  938. package/resources/libpostal/dictionaries/lt/level_types_basement.txt +2 -0
  939. package/resources/libpostal/dictionaries/lt/level_types_numbered.txt +2 -0
  940. package/resources/libpostal/dictionaries/lt/level_types_standalone.txt +1 -0
  941. package/resources/libpostal/dictionaries/lt/number.txt +1 -0
  942. package/resources/libpostal/dictionaries/lt/post_office.txt +1 -0
  943. package/resources/libpostal/dictionaries/lt/qualifiers.txt +5 -0
  944. package/resources/libpostal/dictionaries/lt/staircases.txt +1 -0
  945. package/resources/libpostal/dictionaries/lt/stopwords.txt +1 -0
  946. package/resources/libpostal/dictionaries/lt/street_types.txt +7 -0
  947. package/resources/libpostal/dictionaries/lt/unit_directions.txt +2 -0
  948. package/resources/libpostal/dictionaries/lt/unit_types_numbered.txt +3 -0
  949. package/resources/libpostal/dictionaries/lv/ambiguous_expansions.txt +6 -0
  950. package/resources/libpostal/dictionaries/lv/cross_streets.txt +5 -0
  951. package/resources/libpostal/dictionaries/lv/directionals.txt +4 -0
  952. package/resources/libpostal/dictionaries/lv/entrances.txt +1 -0
  953. package/resources/libpostal/dictionaries/lv/level_types_basement.txt +2 -0
  954. package/resources/libpostal/dictionaries/lv/level_types_numbered.txt +1 -0
  955. package/resources/libpostal/dictionaries/lv/level_types_standalone.txt +1 -0
  956. package/resources/libpostal/dictionaries/lv/number.txt +1 -0
  957. package/resources/libpostal/dictionaries/lv/place_names.txt +2 -0
  958. package/resources/libpostal/dictionaries/lv/staircases.txt +2 -0
  959. package/resources/libpostal/dictionaries/lv/stopwords.txt +1 -0
  960. package/resources/libpostal/dictionaries/lv/street_types.txt +5 -0
  961. package/resources/libpostal/dictionaries/lv/unit_directions.txt +2 -0
  962. package/resources/libpostal/dictionaries/lv/unit_types_numbered.txt +3 -0
  963. package/resources/libpostal/dictionaries/ms/ambiguous_expansions.txt +1 -0
  964. package/resources/libpostal/dictionaries/ms/building_types.txt +10 -0
  965. package/resources/libpostal/dictionaries/ms/company_types.txt +8 -0
  966. package/resources/libpostal/dictionaries/ms/directionals.txt +9 -0
  967. package/resources/libpostal/dictionaries/ms/given_names.txt +3 -0
  968. package/resources/libpostal/dictionaries/ms/level_types_numbered.txt +2 -0
  969. package/resources/libpostal/dictionaries/ms/personal_titles.txt +92 -0
  970. package/resources/libpostal/dictionaries/ms/place_names.txt +145 -0
  971. package/resources/libpostal/dictionaries/ms/post_office.txt +3 -0
  972. package/resources/libpostal/dictionaries/ms/qualifiers.txt +6 -0
  973. package/resources/libpostal/dictionaries/ms/stopwords.txt +1 -0
  974. package/resources/libpostal/dictionaries/ms/street_types.txt +35 -0
  975. package/resources/libpostal/dictionaries/ms/synonyms.txt +27 -0
  976. package/resources/libpostal/dictionaries/mt/ambiguous_expansions.txt +1 -0
  977. package/resources/libpostal/dictionaries/mt/number.txt +1 -0
  978. package/resources/libpostal/dictionaries/mt/personal_titles.txt +6 -0
  979. package/resources/libpostal/dictionaries/mt/place_names.txt +1 -0
  980. package/resources/libpostal/dictionaries/mt/stopwords.txt +5 -0
  981. package/resources/libpostal/dictionaries/mt/street_types.txt +6 -0
  982. package/resources/libpostal/dictionaries/nb/ambiguous_expansions.txt +11 -0
  983. package/resources/libpostal/dictionaries/nb/building_types.txt +3 -0
  984. package/resources/libpostal/dictionaries/nb/concatenated_suffixes_inseparable.txt +13 -0
  985. package/resources/libpostal/dictionaries/nb/concatenated_suffixes_separable.txt +6 -0
  986. package/resources/libpostal/dictionaries/nb/cross_streets.txt +5 -0
  987. package/resources/libpostal/dictionaries/nb/directionals.txt +13 -0
  988. package/resources/libpostal/dictionaries/nb/entrances.txt +1 -0
  989. package/resources/libpostal/dictionaries/nb/level_types_numbered.txt +5 -0
  990. package/resources/libpostal/dictionaries/nb/near.txt +7 -0
  991. package/resources/libpostal/dictionaries/nb/number.txt +1 -0
  992. package/resources/libpostal/dictionaries/nb/personal_titles.txt +1 -0
  993. package/resources/libpostal/dictionaries/nb/post_office.txt +1 -0
  994. package/resources/libpostal/dictionaries/nb/staircases.txt +2 -0
  995. package/resources/libpostal/dictionaries/nb/stopwords.txt +34 -0
  996. package/resources/libpostal/dictionaries/nb/street_types.txt +20 -0
  997. package/resources/libpostal/dictionaries/nb/unit_directions.txt +2 -0
  998. package/resources/libpostal/dictionaries/nb/unit_types_numbered.txt +1 -0
  999. package/resources/libpostal/dictionaries/nl/ambiguous_expansions.txt +10 -0
  1000. package/resources/libpostal/dictionaries/nl/building_types.txt +1 -0
  1001. package/resources/libpostal/dictionaries/nl/chains.txt +1 -0
  1002. package/resources/libpostal/dictionaries/nl/concatenated_suffixes_inseparable.txt +3 -0
  1003. package/resources/libpostal/dictionaries/nl/concatenated_suffixes_separable.txt +13 -0
  1004. package/resources/libpostal/dictionaries/nl/cross_streets.txt +4 -0
  1005. package/resources/libpostal/dictionaries/nl/directionals.txt +20 -0
  1006. package/resources/libpostal/dictionaries/nl/entrances.txt +1 -0
  1007. package/resources/libpostal/dictionaries/nl/level_types_numbered.txt +2 -0
  1008. package/resources/libpostal/dictionaries/nl/level_types_standalone.txt +5 -0
  1009. package/resources/libpostal/dictionaries/nl/near.txt +7 -0
  1010. package/resources/libpostal/dictionaries/nl/number.txt +1 -0
  1011. package/resources/libpostal/dictionaries/nl/personal_titles.txt +32 -0
  1012. package/resources/libpostal/dictionaries/nl/place_names.txt +81 -0
  1013. package/resources/libpostal/dictionaries/nl/post_office.txt +1 -0
  1014. package/resources/libpostal/dictionaries/nl/qualifiers.txt +4 -0
  1015. package/resources/libpostal/dictionaries/nl/staircases.txt +2 -0
  1016. package/resources/libpostal/dictionaries/nl/stopwords.txt +38 -0
  1017. package/resources/libpostal/dictionaries/nl/street_types.txt +22 -0
  1018. package/resources/libpostal/dictionaries/nl/synonyms.txt +2 -0
  1019. package/resources/libpostal/dictionaries/nl/unit_directions.txt +2 -0
  1020. package/resources/libpostal/dictionaries/nl/unit_types_numbered.txt +3 -0
  1021. package/resources/libpostal/dictionaries/oc/elisions.txt +1 -0
  1022. package/resources/libpostal/dictionaries/oc/stopwords.txt +14 -0
  1023. package/resources/libpostal/dictionaries/oc/street_types.txt +5 -0
  1024. package/resources/libpostal/dictionaries/pap/personal_titles.txt +2 -0
  1025. package/resources/libpostal/dictionaries/pap/street_types.txt +2 -0
  1026. package/resources/libpostal/dictionaries/pl/academic_degrees.txt +2 -0
  1027. package/resources/libpostal/dictionaries/pl/ambiguous_expansions.txt +9 -0
  1028. package/resources/libpostal/dictionaries/pl/building_types.txt +1 -0
  1029. package/resources/libpostal/dictionaries/pl/chains.txt +3 -0
  1030. package/resources/libpostal/dictionaries/pl/company_types.txt +4 -0
  1031. package/resources/libpostal/dictionaries/pl/cross_streets.txt +6 -0
  1032. package/resources/libpostal/dictionaries/pl/directionals.txt +8 -0
  1033. package/resources/libpostal/dictionaries/pl/entrances.txt +1 -0
  1034. package/resources/libpostal/dictionaries/pl/house_numbers.txt +1 -0
  1035. package/resources/libpostal/dictionaries/pl/level_types_basement.txt +1 -0
  1036. package/resources/libpostal/dictionaries/pl/level_types_numbered.txt +1 -0
  1037. package/resources/libpostal/dictionaries/pl/level_types_standalone.txt +1 -0
  1038. package/resources/libpostal/dictionaries/pl/near.txt +11 -0
  1039. package/resources/libpostal/dictionaries/pl/number.txt +1 -0
  1040. package/resources/libpostal/dictionaries/pl/personal_suffixes.txt +2 -0
  1041. package/resources/libpostal/dictionaries/pl/personal_titles.txt +54 -0
  1042. package/resources/libpostal/dictionaries/pl/place_names.txt +31 -0
  1043. package/resources/libpostal/dictionaries/pl/post_office.txt +1 -0
  1044. package/resources/libpostal/dictionaries/pl/qualifiers.txt +9 -0
  1045. package/resources/libpostal/dictionaries/pl/staircases.txt +1 -0
  1046. package/resources/libpostal/dictionaries/pl/stopwords.txt +3 -0
  1047. package/resources/libpostal/dictionaries/pl/street_types.txt +12 -0
  1048. package/resources/libpostal/dictionaries/pl/synonyms.txt +19 -0
  1049. package/resources/libpostal/dictionaries/pl/toponyms.txt +1 -0
  1050. package/resources/libpostal/dictionaries/pl/unit_directions.txt +2 -0
  1051. package/resources/libpostal/dictionaries/pl/unit_types_numbered.txt +2 -0
  1052. package/resources/libpostal/dictionaries/pt/ambiguous_expansions.txt +12 -0
  1053. package/resources/libpostal/dictionaries/pt/building_types.txt +7 -0
  1054. package/resources/libpostal/dictionaries/pt/company_types.txt +31 -0
  1055. package/resources/libpostal/dictionaries/pt/cross_streets.txt +8 -0
  1056. package/resources/libpostal/dictionaries/pt/directionals.txt +8 -0
  1057. package/resources/libpostal/dictionaries/pt/elisions.txt +1 -0
  1058. package/resources/libpostal/dictionaries/pt/entrances.txt +1 -0
  1059. package/resources/libpostal/dictionaries/pt/level_types_basement.txt +1 -0
  1060. package/resources/libpostal/dictionaries/pt/level_types_mezzanine.txt +1 -0
  1061. package/resources/libpostal/dictionaries/pt/level_types_numbered.txt +3 -0
  1062. package/resources/libpostal/dictionaries/pt/level_types_standalone.txt +5 -0
  1063. package/resources/libpostal/dictionaries/pt/level_types_sub_basement.txt +1 -0
  1064. package/resources/libpostal/dictionaries/pt/near.txt +13 -0
  1065. package/resources/libpostal/dictionaries/pt/no_number.txt +1 -0
  1066. package/resources/libpostal/dictionaries/pt/number.txt +1 -0
  1067. package/resources/libpostal/dictionaries/pt/personal_suffixes.txt +3 -0
  1068. package/resources/libpostal/dictionaries/pt/personal_titles.txt +101 -0
  1069. package/resources/libpostal/dictionaries/pt/place_names.txt +52 -0
  1070. package/resources/libpostal/dictionaries/pt/post_office.txt +2 -0
  1071. package/resources/libpostal/dictionaries/pt/postcodes.txt +2 -0
  1072. package/resources/libpostal/dictionaries/pt/qualifiers.txt +8 -0
  1073. package/resources/libpostal/dictionaries/pt/staircases.txt +1 -0
  1074. package/resources/libpostal/dictionaries/pt/stopwords.txt +35 -0
  1075. package/resources/libpostal/dictionaries/pt/street_types.txt +53 -0
  1076. package/resources/libpostal/dictionaries/pt/synonyms.txt +21 -0
  1077. package/resources/libpostal/dictionaries/pt/toponyms.txt +28 -0
  1078. package/resources/libpostal/dictionaries/pt/unit_directions.txt +4 -0
  1079. package/resources/libpostal/dictionaries/pt/unit_types_numbered.txt +10 -0
  1080. package/resources/libpostal/dictionaries/pt/unit_types_standalone.txt +1 -0
  1081. package/resources/libpostal/dictionaries/ro/ambiguous_expansions.txt +5 -0
  1082. package/resources/libpostal/dictionaries/ro/cross_streets.txt +5 -0
  1083. package/resources/libpostal/dictionaries/ro/directionals.txt +4 -0
  1084. package/resources/libpostal/dictionaries/ro/entrances.txt +1 -0
  1085. package/resources/libpostal/dictionaries/ro/level_types_numbered.txt +1 -0
  1086. package/resources/libpostal/dictionaries/ro/level_types_standalone.txt +1 -0
  1087. package/resources/libpostal/dictionaries/ro/near.txt +7 -0
  1088. package/resources/libpostal/dictionaries/ro/no_number.txt +1 -0
  1089. package/resources/libpostal/dictionaries/ro/number.txt +1 -0
  1090. package/resources/libpostal/dictionaries/ro/personal_titles.txt +14 -0
  1091. package/resources/libpostal/dictionaries/ro/post_office.txt +1 -0
  1092. package/resources/libpostal/dictionaries/ro/qualifiers.txt +1 -0
  1093. package/resources/libpostal/dictionaries/ro/staircases.txt +1 -0
  1094. package/resources/libpostal/dictionaries/ro/stopwords.txt +2 -0
  1095. package/resources/libpostal/dictionaries/ro/street_types.txt +13 -0
  1096. package/resources/libpostal/dictionaries/ro/unit_types_numbered.txt +4 -0
  1097. package/resources/libpostal/dictionaries/ru/ambiguous_expansions.txt +18 -0
  1098. package/resources/libpostal/dictionaries/ru/building_types.txt +2 -0
  1099. package/resources/libpostal/dictionaries/ru/chains.txt +42 -0
  1100. package/resources/libpostal/dictionaries/ru/company_types.txt +9 -0
  1101. package/resources/libpostal/dictionaries/ru/cross_streets.txt +11 -0
  1102. package/resources/libpostal/dictionaries/ru/directionals.txt +16 -0
  1103. package/resources/libpostal/dictionaries/ru/entrances.txt +2 -0
  1104. package/resources/libpostal/dictionaries/ru/house_numbers.txt +2 -0
  1105. package/resources/libpostal/dictionaries/ru/level_types_basement.txt +4 -0
  1106. package/resources/libpostal/dictionaries/ru/level_types_numbered.txt +4 -0
  1107. package/resources/libpostal/dictionaries/ru/level_types_standalone.txt +4 -0
  1108. package/resources/libpostal/dictionaries/ru/near.txt +26 -0
  1109. package/resources/libpostal/dictionaries/ru/no_number.txt +1 -0
  1110. package/resources/libpostal/dictionaries/ru/number.txt +2 -0
  1111. package/resources/libpostal/dictionaries/ru/personal_titles.txt +6 -0
  1112. package/resources/libpostal/dictionaries/ru/place_names.txt +160 -0
  1113. package/resources/libpostal/dictionaries/ru/post_office.txt +2 -0
  1114. package/resources/libpostal/dictionaries/ru/qualifiers.txt +31 -0
  1115. package/resources/libpostal/dictionaries/ru/staircases.txt +2 -0
  1116. package/resources/libpostal/dictionaries/ru/stopwords.txt +1 -0
  1117. package/resources/libpostal/dictionaries/ru/street_types.txt +28 -0
  1118. package/resources/libpostal/dictionaries/ru/unit_directions.txt +4 -0
  1119. package/resources/libpostal/dictionaries/ru/unit_types_numbered.txt +10 -0
  1120. package/resources/libpostal/dictionaries/si/place_names.txt +8 -0
  1121. package/resources/libpostal/dictionaries/si/qualifiers.txt +4 -0
  1122. package/resources/libpostal/dictionaries/si/street_types.txt +2 -0
  1123. package/resources/libpostal/dictionaries/sk/ambiguous_expansions.txt +6 -0
  1124. package/resources/libpostal/dictionaries/sk/cross_streets.txt +8 -0
  1125. package/resources/libpostal/dictionaries/sk/directionals.txt +21 -0
  1126. package/resources/libpostal/dictionaries/sk/entrances.txt +1 -0
  1127. package/resources/libpostal/dictionaries/sk/house_numbers.txt +1 -0
  1128. package/resources/libpostal/dictionaries/sk/level_types_basement.txt +1 -0
  1129. package/resources/libpostal/dictionaries/sk/level_types_numbered.txt +4 -0
  1130. package/resources/libpostal/dictionaries/sk/level_types_standalone.txt +1 -0
  1131. package/resources/libpostal/dictionaries/sk/near.txt +13 -0
  1132. package/resources/libpostal/dictionaries/sk/number.txt +1 -0
  1133. package/resources/libpostal/dictionaries/sk/personal_titles.txt +16 -0
  1134. package/resources/libpostal/dictionaries/sk/place_names.txt +28 -0
  1135. package/resources/libpostal/dictionaries/sk/post_office.txt +1 -0
  1136. package/resources/libpostal/dictionaries/sk/qualifiers.txt +3 -0
  1137. package/resources/libpostal/dictionaries/sk/staircases.txt +1 -0
  1138. package/resources/libpostal/dictionaries/sk/stopwords.txt +29 -0
  1139. package/resources/libpostal/dictionaries/sk/street_types.txt +20 -0
  1140. package/resources/libpostal/dictionaries/sk/toponyms.txt +1 -0
  1141. package/resources/libpostal/dictionaries/sk/unit_directions.txt +2 -0
  1142. package/resources/libpostal/dictionaries/sk/unit_types_numbered.txt +3 -0
  1143. package/resources/libpostal/dictionaries/sl/ambiguous_expansions.txt +6 -0
  1144. package/resources/libpostal/dictionaries/sl/chains.txt +1 -0
  1145. package/resources/libpostal/dictionaries/sl/cross_streets.txt +5 -0
  1146. package/resources/libpostal/dictionaries/sl/directionals.txt +4 -0
  1147. package/resources/libpostal/dictionaries/sl/entrances.txt +1 -0
  1148. package/resources/libpostal/dictionaries/sl/level_types_basement.txt +1 -0
  1149. package/resources/libpostal/dictionaries/sl/level_types_numbered.txt +1 -0
  1150. package/resources/libpostal/dictionaries/sl/level_types_standalone.txt +2 -0
  1151. package/resources/libpostal/dictionaries/sl/near.txt +7 -0
  1152. package/resources/libpostal/dictionaries/sl/no_number.txt +1 -0
  1153. package/resources/libpostal/dictionaries/sl/number.txt +1 -0
  1154. package/resources/libpostal/dictionaries/sl/personal_titles.txt +3 -0
  1155. package/resources/libpostal/dictionaries/sl/place_names.txt +1 -0
  1156. package/resources/libpostal/dictionaries/sl/post_office.txt +1 -0
  1157. package/resources/libpostal/dictionaries/sl/staircases.txt +1 -0
  1158. package/resources/libpostal/dictionaries/sl/stopwords.txt +7 -0
  1159. package/resources/libpostal/dictionaries/sl/street_types.txt +4 -0
  1160. package/resources/libpostal/dictionaries/sl/synonyms.txt +13 -0
  1161. package/resources/libpostal/dictionaries/sl/unit_directions.txt +2 -0
  1162. package/resources/libpostal/dictionaries/sl/unit_types_numbered.txt +3 -0
  1163. package/resources/libpostal/dictionaries/sr/ambiguous_expansions.txt +9 -0
  1164. package/resources/libpostal/dictionaries/sr/cross_streets.txt +10 -0
  1165. package/resources/libpostal/dictionaries/sr/directionals.txt +8 -0
  1166. package/resources/libpostal/dictionaries/sr/entrances.txt +2 -0
  1167. package/resources/libpostal/dictionaries/sr/level_types_basement.txt +2 -0
  1168. package/resources/libpostal/dictionaries/sr/level_types_numbered.txt +6 -0
  1169. package/resources/libpostal/dictionaries/sr/level_types_standalone.txt +4 -0
  1170. package/resources/libpostal/dictionaries/sr/number.txt +2 -0
  1171. package/resources/libpostal/dictionaries/sr/personal_titles.txt +14 -0
  1172. package/resources/libpostal/dictionaries/sr/place_names.txt +12 -0
  1173. package/resources/libpostal/dictionaries/sr/post_office.txt +6 -0
  1174. package/resources/libpostal/dictionaries/sr/staircases.txt +2 -0
  1175. package/resources/libpostal/dictionaries/sr/stopwords.txt +2 -0
  1176. package/resources/libpostal/dictionaries/sr/street_types.txt +17 -0
  1177. package/resources/libpostal/dictionaries/sr/unit_directions.txt +4 -0
  1178. package/resources/libpostal/dictionaries/sr/unit_types_numbered.txt +8 -0
  1179. package/resources/libpostal/dictionaries/sv/ambiguous_expansions.txt +9 -0
  1180. package/resources/libpostal/dictionaries/sv/company_types.txt +4 -0
  1181. package/resources/libpostal/dictionaries/sv/concatenated_suffixes_inseparable.txt +5 -0
  1182. package/resources/libpostal/dictionaries/sv/concatenated_suffixes_separable.txt +8 -0
  1183. package/resources/libpostal/dictionaries/sv/cross_streets.txt +5 -0
  1184. package/resources/libpostal/dictionaries/sv/directionals.txt +8 -0
  1185. package/resources/libpostal/dictionaries/sv/entrances.txt +2 -0
  1186. package/resources/libpostal/dictionaries/sv/level_types_numbered.txt +7 -0
  1187. package/resources/libpostal/dictionaries/sv/level_types_standalone.txt +5 -0
  1188. package/resources/libpostal/dictionaries/sv/near.txt +11 -0
  1189. package/resources/libpostal/dictionaries/sv/number.txt +1 -0
  1190. package/resources/libpostal/dictionaries/sv/personal_titles.txt +3 -0
  1191. package/resources/libpostal/dictionaries/sv/post_office.txt +2 -0
  1192. package/resources/libpostal/dictionaries/sv/staircases.txt +3 -0
  1193. package/resources/libpostal/dictionaries/sv/stopwords.txt +25 -0
  1194. package/resources/libpostal/dictionaries/sv/street_types.txt +13 -0
  1195. package/resources/libpostal/dictionaries/sv/synonyms.txt +4 -0
  1196. package/resources/libpostal/dictionaries/sv/unit_directions.txt +4 -0
  1197. package/resources/libpostal/dictionaries/sv/unit_types_numbered.txt +5 -0
  1198. package/resources/libpostal/dictionaries/th/chains.txt +2 -0
  1199. package/resources/libpostal/dictionaries/th/street_types.txt +10 -0
  1200. package/resources/libpostal/dictionaries/tr/ambiguous_expansions.txt +5 -0
  1201. package/resources/libpostal/dictionaries/tr/chains.txt +1 -0
  1202. package/resources/libpostal/dictionaries/tr/cross_streets.txt +4 -0
  1203. package/resources/libpostal/dictionaries/tr/directionals.txt +4 -0
  1204. package/resources/libpostal/dictionaries/tr/entrances.txt +1 -0
  1205. package/resources/libpostal/dictionaries/tr/level_types_basement.txt +1 -0
  1206. package/resources/libpostal/dictionaries/tr/level_types_mezzanine.txt +1 -0
  1207. package/resources/libpostal/dictionaries/tr/level_types_numbered.txt +1 -0
  1208. package/resources/libpostal/dictionaries/tr/level_types_standalone.txt +1 -0
  1209. package/resources/libpostal/dictionaries/tr/number.txt +2 -0
  1210. package/resources/libpostal/dictionaries/tr/personal_titles.txt +4 -0
  1211. package/resources/libpostal/dictionaries/tr/place_names.txt +2 -0
  1212. package/resources/libpostal/dictionaries/tr/post_office.txt +1 -0
  1213. package/resources/libpostal/dictionaries/tr/qualifiers.txt +5 -0
  1214. package/resources/libpostal/dictionaries/tr/staircases.txt +1 -0
  1215. package/resources/libpostal/dictionaries/tr/stopwords.txt +1 -0
  1216. package/resources/libpostal/dictionaries/tr/street_types.txt +10 -0
  1217. package/resources/libpostal/dictionaries/tr/unit_directions.txt +2 -0
  1218. package/resources/libpostal/dictionaries/tr/unit_types_numbered.txt +4 -0
  1219. package/resources/libpostal/dictionaries/uk/ambiguous_expansions.txt +8 -0
  1220. package/resources/libpostal/dictionaries/uk/chains.txt +7 -0
  1221. package/resources/libpostal/dictionaries/uk/cross_streets.txt +10 -0
  1222. package/resources/libpostal/dictionaries/uk/directionals.txt +8 -0
  1223. package/resources/libpostal/dictionaries/uk/entrances.txt +2 -0
  1224. package/resources/libpostal/dictionaries/uk/house_numbers.txt +4 -0
  1225. package/resources/libpostal/dictionaries/uk/level_types_basement.txt +4 -0
  1226. package/resources/libpostal/dictionaries/uk/level_types_numbered.txt +4 -0
  1227. package/resources/libpostal/dictionaries/uk/level_types_standalone.txt +4 -0
  1228. package/resources/libpostal/dictionaries/uk/near.txt +24 -0
  1229. package/resources/libpostal/dictionaries/uk/number.txt +2 -0
  1230. package/resources/libpostal/dictionaries/uk/personal_titles.txt +9 -0
  1231. package/resources/libpostal/dictionaries/uk/place_names.txt +161 -0
  1232. package/resources/libpostal/dictionaries/uk/post_office.txt +2 -0
  1233. package/resources/libpostal/dictionaries/uk/qualifiers.txt +8 -0
  1234. package/resources/libpostal/dictionaries/uk/staircases.txt +2 -0
  1235. package/resources/libpostal/dictionaries/uk/stopwords.txt +2 -0
  1236. package/resources/libpostal/dictionaries/uk/street_types.txt +26 -0
  1237. package/resources/libpostal/dictionaries/uk/unit_directions.txt +4 -0
  1238. package/resources/libpostal/dictionaries/uk/unit_types_numbered.txt +10 -0
  1239. package/resources/libpostal/dictionaries/ur/street_types.txt +7 -0
  1240. package/resources/libpostal/dictionaries/vi/ambiguous_expansions.txt +3 -0
  1241. package/resources/libpostal/dictionaries/vi/personal_titles.txt +1 -0
  1242. package/resources/libpostal/dictionaries/vi/place_names.txt +29 -0
  1243. package/resources/libpostal/dictionaries/vi/qualifiers.txt +5 -0
  1244. package/resources/libpostal/dictionaries/vi/street_types.txt +10 -0
  1245. package/resources/libpostal/dictionaries/zh/building_types.txt +2 -0
  1246. package/resources/libpostal/dictionaries/zh/chains.txt +2 -0
  1247. package/resources/libpostal/dictionaries/zh/directionals.txt +20 -0
  1248. package/resources/libpostal/dictionaries/zh/level_types_numbered.txt +5 -0
  1249. package/resources/libpostal/dictionaries/zh/number.txt +3 -0
  1250. package/resources/libpostal/dictionaries/zh/place_names.txt +2 -0
  1251. package/resources/libpostal/dictionaries/zh/post_office.txt +3 -0
  1252. package/resources/libpostal/dictionaries/zh/postcodes.txt +3 -0
  1253. package/resources/libpostal/dictionaries/zh/qualifiers.txt +19 -0
  1254. package/resources/libpostal/dictionaries/zh/stopwords.txt +2 -0
  1255. package/resources/libpostal/dictionaries/zh/street_types.txt +30 -0
  1256. package/resources/libpostal/dictionaries/zh/unit_types_numbered.txt +2 -0
  1257. package/resources/libpostal/libpostal.test.ts +325 -0
  1258. package/resources/libpostal/libpostal.ts +106 -0
  1259. package/resources/libpostal/resources-download.sh +8 -0
  1260. package/resources/pelias/dictionaries/libpostal/af/personal_titles.txt +2 -0
  1261. package/resources/pelias/dictionaries/libpostal/all/surnames.txt +1 -0
  1262. package/resources/pelias/dictionaries/libpostal/de/concatenated_suffixes_separable.txt +3 -0
  1263. package/resources/pelias/dictionaries/libpostal/de/place_names.txt +1 -0
  1264. package/resources/pelias/dictionaries/libpostal/de/street_types.txt +2 -0
  1265. package/resources/pelias/dictionaries/libpostal/en/place_names.txt +7 -0
  1266. package/resources/pelias/dictionaries/libpostal/en/road_types.txt +18 -0
  1267. package/resources/pelias/dictionaries/libpostal/en/street_names.txt +2 -0
  1268. package/resources/pelias/dictionaries/libpostal/en/street_types.txt +16 -0
  1269. package/resources/pelias/dictionaries/libpostal/en/unit_types_numbered.txt +3 -0
  1270. package/resources/pelias/dictionaries/libpostal/es/street_types.txt +2 -0
  1271. package/resources/pelias/dictionaries/libpostal/fr/personal_titles.txt +4 -0
  1272. package/resources/pelias/dictionaries/libpostal/fr/street_types.txt +5 -0
  1273. package/resources/pelias/dictionaries/libpostal/it/street_types.txt +2 -0
  1274. package/resources/pelias/dictionaries/libpostal/ko/street_types.txt +1 -0
  1275. package/resources/pelias/dictionaries/libpostal/nb/concatenated_suffixes_inseparable.txt +40 -0
  1276. package/resources/pelias/dictionaries/libpostal/nb/directionals.txt +8 -0
  1277. package/resources/pelias/dictionaries/libpostal/nb/street_types.txt +36 -0
  1278. package/resources/pelias/dictionaries/libpostal/nl/concatenated_suffixes_inseparable.txt +1 -0
  1279. package/resources/pelias/dictionaries/libpostal/nl/concatenated_suffixes_separable.txt +8 -0
  1280. package/resources/pelias/dictionaries/libpostal/nl/directionals.txt +4 -0
  1281. package/resources/pelias/dictionaries/libpostal/nl/personal_suffixes.txt +4 -0
  1282. package/resources/pelias/dictionaries/libpostal/nl/personal_titles.txt +43 -0
  1283. package/resources/pelias/dictionaries/libpostal/pl/place_names.txt +1 -0
  1284. package/resources/pelias/dictionaries/libpostal/pl/synonyms.txt +1 -0
  1285. package/resources/pelias/dictionaries/libpostal/sv/concatenated_suffixes_separable.txt +1 -0
  1286. package/resources/pelias/dictionaries/whosonfirst/locality/name:eng_x_preferred.txt +81 -0
  1287. package/resources/pelias/dictionaries/whosonfirst/locality/name:fra_x_preferred.txt +2 -0
  1288. package/resources/pelias/dictionaries/whosonfirst/region/name:eng_x_preferred.txt +2 -0
  1289. package/resources/pelias/pelias.ts +12 -0
  1290. package/resources/whosonfirst/dictionaries/country/name:eng_x_preferred.txt +220 -0
  1291. package/resources/whosonfirst/dictionaries/country/wof:country.txt +215 -0
  1292. package/resources/whosonfirst/dictionaries/country/wof:country_alpha3.txt +216 -0
  1293. package/resources/whosonfirst/dictionaries/dependency/name:eng_x_preferred.txt +42 -0
  1294. package/resources/whosonfirst/dictionaries/dependency/wof:shortcode.txt +34 -0
  1295. package/resources/whosonfirst/dictionaries/locality/name:eng_x_preferred.txt +261365 -0
  1296. package/resources/whosonfirst/dictionaries/locality/name:fra_x_preferred.txt +77631 -0
  1297. package/resources/whosonfirst/dictionaries/region/abrv:eng_x_preferred.txt +441 -0
  1298. package/resources/whosonfirst/dictionaries/region/name:eng_x_preferred.txt +4517 -0
  1299. package/resources/whosonfirst/dictionaries/region/wof:shortcode.txt +839 -0
  1300. package/resources/whosonfirst/generate.ts +135 -0
  1301. package/resources/whosonfirst/placetypes.ts +47 -0
  1302. package/resources/whosonfirst/whosonfirst.ts +79 -0
  1303. package/sdk/repo.ts +66 -0
  1304. package/sdk/test/utils/index.ts +42 -0
  1305. package/server/index.ts +111 -0
  1306. package/server/routes/parse.ts +62 -0
  1307. package/server/static/index.html +279 -0
  1308. package/server/types/locals.d.ts +19 -0
  1309. package/solver/ExclusiveCartesianSolver.ts +74 -0
  1310. package/solver/HouseNumberPositionPenalty.ts +80 -0
  1311. package/solver/InvalidSolutionFilter.ts +34 -0
  1312. package/solver/LeadingAreaDeclassifier.ts +41 -0
  1313. package/solver/MultiStreetSolver.ts +142 -0
  1314. package/solver/MustNotFollowFilter.test.ts +38 -0
  1315. package/solver/MustNotFollowFilter.ts +39 -0
  1316. package/solver/MustNotPreceedFilter.test.ts +38 -0
  1317. package/solver/MustNotPreceedFilter.ts +39 -0
  1318. package/solver/OrphanedLevelTypeDeclassifier.ts +30 -0
  1319. package/solver/OrphanedUnitTypeDeclassifier.test.ts +70 -0
  1320. package/solver/OrphanedUnitTypeDeclassifier.ts +32 -0
  1321. package/solver/PostcodePositionPenalty.ts +49 -0
  1322. package/solver/Solution.test.ts +46 -0
  1323. package/solver/Solution.ts +151 -0
  1324. package/solver/SolutionPair.ts +27 -0
  1325. package/solver/SubsetFilter.test.ts +72 -0
  1326. package/solver/SubsetFilter.ts +33 -0
  1327. package/solver/TokenDistanceFilter.ts +38 -0
  1328. package/solver/super/BaseSolver.ts +13 -0
  1329. package/solver/super/HashMapSolver.ts +91 -0
  1330. package/test/functional/address.aus.test.ts +57 -0
  1331. package/test/functional/address.bra.test.ts +16 -0
  1332. package/test/functional/address.cze.test.ts +88 -0
  1333. package/test/functional/address.deu.test.ts +64 -0
  1334. package/test/functional/address.esp.test.ts +14 -0
  1335. package/test/functional/address.fra.test.ts +89 -0
  1336. package/test/functional/address.gbr.test.ts +19 -0
  1337. package/test/functional/address.hrv.test.ts +9 -0
  1338. package/test/functional/address.ind.test.ts +15 -0
  1339. package/test/functional/address.nld.test.ts +79 -0
  1340. package/test/functional/address.nor.test.ts +25 -0
  1341. package/test/functional/address.nzd.test.ts +63 -0
  1342. package/test/functional/address.pol.test.ts +23 -0
  1343. package/test/functional/address.prt.test.ts +47 -0
  1344. package/test/functional/address.rom.test.ts +25 -0
  1345. package/test/functional/address.svk.test.ts +14 -0
  1346. package/test/functional/address.swe.test.ts +18 -0
  1347. package/test/functional/address.usa.test.ts +284 -0
  1348. package/test/functional/addressit.aus.test.ts +62 -0
  1349. package/test/functional/addressit.usa.test.ts +117 -0
  1350. package/test/functional/compound_street.test.ts +16 -0
  1351. package/test/functional/functional.test.ts +80 -0
  1352. package/test/functional/intersection.test.ts +410 -0
  1353. package/test/functional/libpostal.test.ts +15 -0
  1354. package/test/functional/place.fra.test.ts +107 -0
  1355. package/test/functional/transit.test.ts +11 -0
  1356. package/test/functional/venue.usa.test.ts +26 -0
  1357. package/test/openaddresses.ts +136 -0
  1358. package/tokenization/FST.test.ts +275 -0
  1359. package/tokenization/FST.ts +163 -0
  1360. package/tokenization/Graph.test.ts +182 -0
  1361. package/tokenization/Graph.ts +96 -0
  1362. package/tokenization/Span.test.ts +320 -0
  1363. package/tokenization/Span.ts +172 -0
  1364. package/tokenization/Tokenizer.test.ts +156 -0
  1365. package/tokenization/Tokenizer.ts +83 -0
  1366. package/tokenization/index.ts +11 -0
  1367. package/tokenization/normalizer.test.ts +61 -0
  1368. package/tokenization/normalizer.ts +38 -0
  1369. package/tokenization/permutate.test.ts +368 -0
  1370. package/tokenization/permutate.ts +97 -0
  1371. package/tokenization/split.test.ts +84 -0
  1372. package/tokenization/split.ts +54 -0
  1373. package/tokenization/split_funcs.ts +45 -0
  1374. package/tokenization/split_funcs_test.ts +38 -0
  1375. package/tsconfig.json +11 -0
@@ -0,0 +1,4517 @@
1
+ republic of srpska
2
+ lakshadweep
3
+ brcko distrikt
4
+ puntland
5
+ nicobar is.
6
+ saint martin
7
+ aruba
8
+ badghis
9
+ herat
10
+ bamian
11
+ balkh
12
+ faryab
13
+ jowzjan
14
+ ghowr
15
+ sare pol
16
+ farah
17
+ helmand
18
+ nimruz
19
+ oruzgan
20
+ daykundi
21
+ kandahar
22
+ zabol
23
+ ghazni
24
+ khowst
25
+ paktika
26
+ badakhshan
27
+ nurestan
28
+ konar
29
+ konduz
30
+ nangarhar
31
+ takhar
32
+ baghlan
33
+ kabul
34
+ kapisa
35
+ parvan
36
+ laghman
37
+ lowgar
38
+ panjshir
39
+ samangan
40
+ vardak
41
+ paktia
42
+ lunda norte
43
+ lunda sul
44
+ malanje
45
+ bengo
46
+ cuanza norte
47
+ cuanza sul
48
+ luanda province
49
+ uíge province
50
+ zaire
51
+ cabinda
52
+ bíe province
53
+ benguela
54
+ cuando cubango
55
+ cunene
56
+ huambo
57
+ huíla province
58
+ moxico
59
+ namibe
60
+ blowing point
61
+ east end
62
+ george hill
63
+ island harbour
64
+ north hill
65
+ north side
66
+ sandy ground
67
+ sandy hill
68
+ south hill
69
+ stoney ground
70
+ the farrington
71
+ the quarter
72
+ the valley
73
+ west end
74
+ durrës
75
+ fier
76
+ shkodër county
77
+ kukës
78
+ vlorë
79
+ korçë
80
+ berat
81
+ elbasan
82
+ gjirokastër
83
+ dibër
84
+ lezhë
85
+ finström
86
+ jomala
87
+ hammarland
88
+ eckerö
89
+ geta
90
+ föglö
91
+ saltvik
92
+ sund
93
+ mariehamn
94
+ lemland
95
+ lumparland
96
+ vårdö
97
+ sottunga
98
+ kumlinge
99
+ brändö
100
+ kökar
101
+ andorra la vella
102
+ massana
103
+ ordino
104
+ canillo
105
+ encamp
106
+ escaldes-engordany
107
+ sant julià de lòria
108
+ ras al khaimah
109
+ umm al quwain
110
+ fujairah
111
+ neutral zone
112
+ ajman
113
+ sharjah
114
+ abu dhabi
115
+ dubai
116
+ santa cruz
117
+ tierra del fuego
118
+ san juan province
119
+ chubut
120
+ mendoza
121
+ neuquen
122
+ buenos aires
123
+ la pampa
124
+ rio negro
125
+ san luis
126
+ cordoba
127
+ catamarca
128
+ jujuy
129
+ la rioja
130
+ salta
131
+ santiago del estero
132
+ tucuman
133
+ chaco
134
+ formosa
135
+ corrientes
136
+ entre rios
137
+ santa fe province
138
+ misiones
139
+ autonomous city of buenos aires
140
+ aragatsotn
141
+ armavir
142
+ shirak
143
+ tavush
144
+ ararat
145
+ geghark'unik'
146
+ kotayk'
147
+ lorri
148
+ erevan
149
+ syunik'
150
+ vayots' dzor
151
+ eastern
152
+ manua
153
+ rose atoll
154
+ swains
155
+ western
156
+ archipel des kerguelen
157
+ archipel des crozet
158
+ iles saint-paul et nouvelle-amsterdam
159
+ iles eparses de l'ocean indien
160
+ barbuda
161
+ redonda
162
+ saint george
163
+ saint peter
164
+ saint philip
165
+ saint paul
166
+ saint mary
167
+ saint john
168
+ agstafa
169
+ daskasan
170
+ gadabay
171
+ ganca
172
+ xanlar
173
+ goranboy
174
+ kalbacar
175
+ mingacevir
176
+ qazax
177
+ samkir
178
+ samux
179
+ tovuz
180
+ yevlax
181
+ baki
182
+ abseron
183
+ agdam
184
+ agdas
185
+ agsu
186
+ haciqabul
187
+ astara
188
+ barda
189
+ beylaqan
190
+ bilasuvar
191
+ cabrayil
192
+ calilabad
193
+ davaci
194
+ fuzuli
195
+ goycay
196
+ imisli
197
+ ismayilli
198
+ kurdamir
199
+ lankaran
200
+ masalli
201
+ lerik
202
+ neftcala
203
+ qobustan
204
+ siyazan
205
+ saatli
206
+ sabirabad
207
+ salyan
208
+ samaxi
209
+ sumqayit
210
+ ucar
211
+ xizi
212
+ yardimli
213
+ zardab
214
+ agcabadi
215
+ balakan
216
+ qabala
217
+ oguz
218
+ qax
219
+ saki
220
+ quba
221
+ qusar
222
+ xacmaz
223
+ zaqatala
224
+ xocavand
225
+ qubadli
226
+ susa
227
+ tartar
228
+ xocali
229
+ zangilan
230
+ azarbayjan-e gharbi
231
+ ordubad
232
+ sarur
233
+ babek
234
+ culfa
235
+ naxcivan
236
+ shakhbuz
237
+ xankandi
238
+ cankuzo province
239
+ karuzi province
240
+ rutana province
241
+ ruyigi province
242
+ bubanza province
243
+ bururi province
244
+ cibitoke province
245
+ gitega province
246
+ kayanza province
247
+ makamba province
248
+ ngozi province
249
+ kirundo province
250
+ muyinga province
251
+ bujumbura mairie province
252
+ muramvya province
253
+ bujumbura rural
254
+ mwaro
255
+ borgou department
256
+ alibori department
257
+ collines department
258
+ atlantique department
259
+ littoral department
260
+ kouffo department
261
+ ouémé department
262
+ zou department
263
+ plateau department
264
+ mono department
265
+ atakora department
266
+ donga department
267
+ kompienga
268
+ gourma
269
+ houet
270
+ banwa
271
+ kossi
272
+ mou houn
273
+ oudalan
274
+ soum
275
+ nayala
276
+ sourou
277
+ bam
278
+ kadiogo
279
+ oubritenga
280
+ zondoma
281
+ sissili
282
+ ziro
283
+ loroum
284
+ yatenga
285
+ namentenga
286
+ sanmatenga
287
+ boulgou
288
+ ganzourgou
289
+ kouritenga
290
+ nahouri
291
+ bougouriba
292
+ ioba
293
+ tuy
294
+ poni
295
+ gnagna
296
+ komondjari
297
+ yagha
298
+ tapoa
299
+ noumbiel
300
+ dhaka
301
+ khulna
302
+ barisal
303
+ chittagong
304
+ sylhet
305
+ rajshahi
306
+ southern
307
+ northern
308
+ middle
309
+ capital
310
+ muharraq
311
+ new providence
312
+ city of freeport
313
+ west grand bahama
314
+ east grand bahama
315
+ grand cay
316
+ north abaco
317
+ central abaco
318
+ south abaco
319
+ moore's island
320
+ berry islands
321
+ north andros
322
+ central andros
323
+ mangrove cay
324
+ south andros
325
+ black point
326
+ exuma
327
+ spanish wells
328
+ harbour island
329
+ north eleuthera
330
+ central eleuthera
331
+ south eleuthera
332
+ cat island
333
+ san salvador
334
+ rum cay
335
+ long island
336
+ ragged island
337
+ crooked island
338
+ acklins
339
+ mayaguana
340
+ inagua
341
+ bimini
342
+ hope town
343
+ west bosnia
344
+ una-sana
345
+ central bosnia
346
+ west herzegovina
347
+ herzegovina-neretva
348
+ tuzla
349
+ zenica-doboj
350
+ sarajevo
351
+ bosnian podrinje
352
+ posavina
353
+ doboj
354
+ banja luka
355
+ bijeljina
356
+ vlasenica
357
+ sarajevo-romanija
358
+ trebinje
359
+ saint barthelemy
360
+ brestskaya voblasts'
361
+ homyel'skaya voblasts'
362
+ mahilyowskaya voblasts'
363
+ vitsyebskaya voblasts'
364
+ haradzyenskaya voblasts'
365
+ minskaya voblasts'
366
+ minsk
367
+ belize
368
+ cayo
369
+ corozal
370
+ orange walk
371
+ stann creek
372
+ toledo
373
+ hamilton
374
+ devonshire
375
+ paget
376
+ pembroke
377
+ saint george's
378
+ sandys
379
+ smith's
380
+ southampton
381
+ warwick
382
+ cochabamba
383
+ chuquisaca
384
+ el beni
385
+ la paz
386
+ oruro
387
+ pando
388
+ potosí
389
+ tarija
390
+ christ church
391
+ saint andrew
392
+ saint james
393
+ saint joseph
394
+ saint lucy
395
+ saint michael
396
+ saint thomas
397
+ belait
398
+ brunei-muara
399
+ temburong
400
+ tutong
401
+ chhukha
402
+ daga
403
+ ha
404
+ paro
405
+ gasa
406
+ samchi
407
+ thimphu
408
+ punakha
409
+ bumthang
410
+ chirang
411
+ geylegphug
412
+ lhuntshi
413
+ tashi yangtse
414
+ shemgang
415
+ tongsa
416
+ wangdue phodrang
417
+ mongar
418
+ pemagatsel
419
+ samdrup
420
+ tashigang
421
+ ghanzi
422
+ kgalagadi
423
+ north-west
424
+ central
425
+ kgatleng
426
+ kweneng
427
+ south-east
428
+ north-east
429
+ bangui prefecture
430
+ ombella-m'poko
431
+ basse-kotto
432
+ lobaye
433
+ mambéré-kadéï prefecture
434
+ sangha-mbaéré prefecture
435
+ nana-mambéré prefecture
436
+ ouham-pendé prefecture
437
+ bamingui-bangoran
438
+ nana-grébizi prefecture
439
+ kémo prefecture
440
+ ouaka
441
+ ouham
442
+ vakaga
443
+ haute-kotto
444
+ haut-mbomou
445
+ mbomou
446
+ gansu
447
+ qinghai
448
+ guangxi zhuang
449
+ guizhou
450
+ chongqing
451
+ beijing
452
+ fujian
453
+ anhui
454
+ guangdong
455
+ tibet
456
+ xinjiang uyghur
457
+ hainan
458
+ ningxia hui
459
+ shaanxi
460
+ shanxi
461
+ hubei
462
+ hunan
463
+ sichuan
464
+ yunnan
465
+ hebei
466
+ henan
467
+ liaoning
468
+ shandong
469
+ tianjin
470
+ jiangxi
471
+ jiangsu
472
+ shanghai
473
+ zhejiang
474
+ jilin
475
+ inner mongolia
476
+ heilongjiang
477
+ savanes
478
+ denguélé
479
+ dix-huit montagnes
480
+ worodougou
481
+ fromager
482
+ haut-sassandra
483
+ sud-bandama
484
+ bas-sassandra
485
+ zanzan
486
+ vallée du bandama
487
+ moyen-cavally
488
+ moyen-comoe
489
+ far north region
490
+ littoral province
491
+ north-west province
492
+ centre region
493
+ east province
494
+ adamaoua province
495
+ north province
496
+ west region
497
+ south-west province
498
+ south province
499
+ Équateur province
500
+ eastern province
501
+ bandundu province
502
+ kasaï-occidental province
503
+ bas-congo province
504
+ kinshasa city
505
+ south kivu
506
+ maniema
507
+ katanga
508
+ north kivu
509
+ cuvette-ouest department
510
+ bouenza department
511
+ likouala
512
+ sangha department
513
+ pool department
514
+ cuvette department
515
+ kouilou
516
+ lékoumou department
517
+ niari region
518
+ plateaux department
519
+ brazzavile department
520
+ kouilou department
521
+ atiu
522
+ aitutaki
523
+ mangaia
524
+ rarotonga
525
+ mitiaro
526
+ mauke
527
+ palmerston
528
+ pukapuka
529
+ rakahanga
530
+ maniki
531
+ tongareva
532
+ amazonas
533
+ antioquia
534
+ boyacá
535
+ córdoba
536
+ santander
537
+ la guajira
538
+ san andrés y providencia
539
+ caldas
540
+ cundinamarca
541
+ bogota d.c.
542
+ quindío
543
+ risaralda
544
+ tolima
545
+ caquetá
546
+ cauca
547
+ huila
548
+ nariño
549
+ putumayo
550
+ valle del cauca
551
+ atlántico
552
+ bolívar
553
+ cesar
554
+ chocó
555
+ magdalena
556
+ sucre
557
+ arauca
558
+ norte de santander
559
+ casanare
560
+ guaviare
561
+ guainía
562
+ meta
563
+ vaupés
564
+ vichada
565
+ mohéli
566
+ grande comore
567
+ anjouan
568
+ brava
569
+ são filipe municipality
570
+ mosteiros
571
+ santa catarina do fogo
572
+ tarrafal
573
+ santa catarina
574
+ são miguel municipality
575
+ são salvador do mundo municipality
576
+ são lourenço dos Órgãos
577
+ são domingos municipality
578
+ ribeira grande de santiago
579
+ praia
580
+ maio
581
+ boa vista
582
+ sal
583
+ ribeira brava
584
+ tarrafal de são nicolau municipality
585
+ são vicente municipality
586
+ porto novo
587
+ ribeira grande
588
+ paul
589
+ cartago
590
+ heredia
591
+ limón
592
+ puntarenas
593
+ san josé
594
+ alajuela
595
+ guanacaste
596
+ cienfuegos
597
+ isla de la juventud
598
+ pinar del río
599
+ sancti spíritus
600
+ ciego de Ávila
601
+ camagüey
602
+ guantánamo
603
+ granma
604
+ holguín
605
+ las tunas
606
+ santiago de cuba
607
+ la habana
608
+ artemisa
609
+ matanzas
610
+ villa clara
611
+ mayabeque
612
+ curacao
613
+ ali sabieh
614
+ djibouti
615
+ arta
616
+ dikhil
617
+ obock
618
+ tadjourah
619
+ saint david
620
+ saint luke
621
+ saint mark
622
+ saint patrick
623
+ santiago
624
+ santiago rodríguez
625
+ valverde
626
+ san juan
627
+ santo domingo
628
+ sánchez ramírez
629
+ san pedro de macorís
630
+ monte cristi
631
+ puerto plata
632
+ dajabón
633
+ espaillat
634
+ hermanas
635
+ bahoruco
636
+ barahona
637
+ independencia
638
+ la estrelleta
639
+ pedernales
640
+ azua
641
+ la vega
642
+ monseñor nouel
643
+ peravia
644
+ san josé de ocoa
645
+ duarte
646
+ hato mayor
647
+ monte plata
648
+ maría trinidad sánchez
649
+ samaná
650
+ san cristóbal
651
+ distrito nacional
652
+ el seybo
653
+ la altagracia
654
+ la romana
655
+ adrar
656
+ aïn témouchent province
657
+ oran
658
+ sidi bel abbes
659
+ tlemcen
660
+ béchar province
661
+ naama
662
+ tindouf
663
+ annaba
664
+ el tarf
665
+ jijel
666
+ skikda
667
+ illizi
668
+ tamanghasset
669
+ el bayadh
670
+ el oued
671
+ ghardaia province
672
+ laghouat
673
+ ouargla
674
+ alger
675
+ boumerdes province
676
+ tizi ouzou
677
+ tipaza
678
+ aïn defla province
679
+ chlef
680
+ mascara
681
+ mostaganem
682
+ relizane
683
+ saida province
684
+ tiaret
685
+ tissemsilt
686
+ bordj bou arréridj province
687
+ béjaia province
688
+ blida
689
+ bouira
690
+ biskra
691
+ djelfa
692
+ medea province
693
+ m'sila
694
+ sétif province
695
+ batna
696
+ constantine
697
+ guelma
698
+ khenchela
699
+ mila
700
+ oum el bouaghi
701
+ souk ahras
702
+ tébessa province
703
+ azuay
704
+ el oro
705
+ loja
706
+ zamora chinchipe
707
+ galápagos
708
+ bolivar
709
+ cañar
710
+ cotopaxi
711
+ guayas
712
+ los rios
713
+ manabi
714
+ chimborazo
715
+ morona santiago
716
+ orellana
717
+ pichincha
718
+ pastaza
719
+ napo
720
+ tungurahua
721
+ esmeraldas
722
+ carchi
723
+ imbabura
724
+ sucumbios
725
+ santa elena
726
+ santo domingo de los tsáchilas
727
+ gharbia
728
+ el ismailia
729
+ menofia
730
+ cairo
731
+ qalubia
732
+ sharqia
733
+ el suez
734
+ daqahlia
735
+ port said
736
+ dumiat
737
+ matrouh
738
+ beheira
739
+ fayoum
740
+ alexandria
741
+ giza
742
+ menia
743
+ bani sueif
744
+ kafr el sheikh
745
+ aswan
746
+ asyout
747
+ el wadi el gedeed
748
+ qena
749
+ sohag
750
+ el bahr el ahmar
751
+ south sinai
752
+ north sinai
753
+ luxor
754
+ gash-barka
755
+ maekel
756
+ semien-keih-bahri
757
+ anseba
758
+ debub
759
+ debub-keih-bahri
760
+ famagusta district
761
+ amhara
762
+ tigray
763
+ afar
764
+ southern nations nationalities and people's region
765
+ gambela
766
+ oromia
767
+ benshangul-gumaz
768
+ addis ababa
769
+ somali
770
+ dire dawa
771
+ harari
772
+ rotuma
773
+ martinique
774
+ french guiana
775
+ reunion
776
+ mayotte
777
+ guadeloupe
778
+ faroe islands
779
+ state of pohnpei
780
+ state of chuuk
781
+ state of yap
782
+ state of kosrae
783
+ estuaire province
784
+ ogooué-ivindo province
785
+ woleu-ntem province
786
+ moyen-ogooué province
787
+ ngouni province
788
+ nyanga province
789
+ ogooué-maritime province
790
+ haut-ogooué province
791
+ ogooué-lol province
792
+ abkhazia
793
+ ajaria
794
+ ozurget´is raioni
795
+ khonis raioni
796
+ vanis raioni
797
+ gurjaanis raioni
798
+ dushet´is raioni
799
+ ambrolauris raioni
800
+ t´bilisi
801
+ t´et´ritsqaros raioni
802
+ akhalts´ikhis raioni
803
+ goris raioni
804
+ upper east
805
+ upper west
806
+ ashanti
807
+ brong-ahafo
808
+ greater accra
809
+ volta
810
+ beyla
811
+ boffa
812
+ boké
813
+ conakry
814
+ coyah
815
+ dabola
816
+ dalaba
817
+ dinguiraye
818
+ dubréka
819
+ forécariah
820
+ fria
821
+ gaoual
822
+ guéckédou
823
+ kankan
824
+ kérouané
825
+ kindia
826
+ kissidougou
827
+ koubia
828
+ koundara
829
+ kouroussa
830
+ labé
831
+ lélouma
832
+ lola
833
+ macenta
834
+ mali
835
+ mamou
836
+ mandiana
837
+ nzérékoré
838
+ pita
839
+ siguiri
840
+ tougué
841
+ yomou
842
+ télimélé
843
+ central river
844
+ upper river
845
+ banjul
846
+ lower river
847
+ north bank
848
+ biombo
849
+ bissau
850
+ bolama
851
+ cacheu
852
+ oio
853
+ quinara
854
+ bafatá
855
+ gabú
856
+ tombali
857
+ annobón province
858
+ centro sur
859
+ kié-ntem province
860
+ litoral
861
+ wele-nzas province
862
+ bioko norte
863
+ bioko sur
864
+ baja verapaz
865
+ huehuetenango
866
+ petén
867
+ quezaltenango
868
+ retalhuleu
869
+ san marcos
870
+ alta verapaz
871
+ chimaltenango
872
+ escuintla
873
+ guatemala
874
+ suchitepeque
875
+ sacatepéquez
876
+ sololá
877
+ totonicapán
878
+ el progreso
879
+ santa rosa
880
+ izabal
881
+ chiquimula
882
+ jalapa
883
+ jutiapa
884
+ zacapa
885
+ quiché
886
+ east berbice-corentyne
887
+ potaro-siparuni
888
+ upper demerara-berbice
889
+ upper takutu-upper essequibo
890
+ barima-waini
891
+ cuyuni-mazaruni
892
+ demerara-mahaica
893
+ essequibo islands-west demerara
894
+ mahaica-berbice
895
+ pomeroon-supenaam
896
+ central and western
897
+ wan chai
898
+ yau tsim mong
899
+ kowloon city
900
+ sham shui po
901
+ wong tai sin
902
+ kwun tong
903
+ sai kung
904
+ sha tin
905
+ kwai tsing
906
+ tsuen wan
907
+ tuen mun
908
+ yuen long
909
+ north
910
+ tai po
911
+ islands
912
+ atlántida
913
+ colón
914
+ francisco morazán
915
+ gracias a dios
916
+ bay islands
917
+ olancho
918
+ yoro
919
+ valle
920
+ comayagua
921
+ cortés
922
+ intibucá
923
+ santa bárbara
924
+ copán
925
+ lempira
926
+ ocotepeque
927
+ choluteca
928
+ el paraíso
929
+ grand' anse
930
+ nippes
931
+ nord-ouest
932
+ sud
933
+ l'artibonite
934
+ centre
935
+ nord-est
936
+ nord
937
+ ouest
938
+ sud-est
939
+ aceh
940
+ east kalimantan
941
+ west java
942
+ central java
943
+ bengkulu
944
+ banten
945
+ dki jakarta
946
+ west kalimantan
947
+ lampung
948
+ south sumatra
949
+ bangka-belitung
950
+ bali
951
+ east java
952
+ south kalimantan
953
+ east nusa tenggara
954
+ south sulawesi
955
+ west sulawesi
956
+ kepulauan riau
957
+ gorontalo
958
+ jambi
959
+ central kalimantan
960
+ west papua
961
+ north sumatra
962
+ riau
963
+ north sulawesi
964
+ north maluku
965
+ west sumatra
966
+ special region of yogyakarta
967
+ maluku
968
+ west nusa tenggara
969
+ south east sulawesi
970
+ central sulawesi
971
+ papua
972
+ chandigarh
973
+ delhi
974
+ himachal pradesh
975
+ haryana
976
+ jammu and kashmir
977
+ andhra pradesh
978
+ kerala
979
+ odisha
980
+ dadra and nagar haveli
981
+ karnataka
982
+ maharashtra
983
+ andaman and nicobar islands
984
+ assam
985
+ manipur
986
+ nagaland
987
+ meghalaya
988
+ punjab
989
+ rajasthan
990
+ uttar pradesh
991
+ uttarakhand
992
+ jharkhand
993
+ west bengal
994
+ bihar
995
+ sikkim
996
+ chhattisgarh
997
+ madhya pradesh
998
+ puducherry
999
+ tamil nadu
1000
+ gujarat
1001
+ goa
1002
+ arunachal pradesh
1003
+ mizoram
1004
+ tripura
1005
+ daman and diu
1006
+ cocos (keeling) islands
1007
+ christmas island
1008
+ kohgiluyeh va buyer ahmad
1009
+ bushehr
1010
+ esfahan
1011
+ fars
1012
+ golestan
1013
+ mazandaran
1014
+ semnan
1015
+ tehran
1016
+ yazd
1017
+ chahar mahall va bakhtiari
1018
+ khuzestan
1019
+ lorestan
1020
+ ilam
1021
+ hormozgan
1022
+ ardabil
1023
+ markazi
1024
+ qom
1025
+ hamadan
1026
+ zanjan
1027
+ qazvin
1028
+ azarbayjan-e sharqi
1029
+ kermanshah
1030
+ gilan
1031
+ kordestan
1032
+ south khorasan
1033
+ khorasan
1034
+ razavi khorasan
1035
+ sistan va baluchestan
1036
+ kerman
1037
+ alborz
1038
+ dihok
1039
+ at-ta'mim
1040
+ arbil
1041
+ ninawa
1042
+ sala ad-din
1043
+ an-najaf
1044
+ karbala'
1045
+ baghdad
1046
+ al-basrah
1047
+ al-muthannia
1048
+ al-qadisiyah
1049
+ dhi-qar
1050
+ maysan
1051
+ wasit
1052
+ as-sulaymaniyah
1053
+ diyala
1054
+ al-anbar
1055
+ babil
1056
+ capital region
1057
+ westfjords
1058
+ austurland
1059
+ northwest
1060
+ northeast
1061
+ southern peninsula
1062
+ south
1063
+ vesturland
1064
+ haifa
1065
+ tel aviv
1066
+ jerusalem
1067
+ clarendon
1068
+ hanover
1069
+ manchester
1070
+ saint elizabeth
1071
+ trelawny
1072
+ westmoreland
1073
+ kingston st. john
1074
+ portland
1075
+ saint ann
1076
+ saint catherine
1077
+ al aqaba
1078
+ al mafraq
1079
+ amman
1080
+ al tafilah
1081
+ maan
1082
+ irbid
1083
+ ajloun
1084
+ jerash
1085
+ al balqa
1086
+ madaba
1087
+ al karak
1088
+ al zarqa
1089
+ hiroshima prefecture
1090
+ okayama prefecture
1091
+ shimane prefecture
1092
+ tottori prefecture
1093
+ yamaguchi prefecture
1094
+ saga prefecture
1095
+ fukuoka prefecture
1096
+ kumamoto prefecture
1097
+ miyazaki prefecture
1098
+ ehime prefecture
1099
+ kagawa prefecture
1100
+ kochi prefecture
1101
+ oita prefecture
1102
+ tokushima prefecture
1103
+ aichi prefecture
1104
+ gifu prefecture
1105
+ ishikawa prefecture
1106
+ mie prefecture
1107
+ nagano prefecture
1108
+ shizuoka prefecture
1109
+ toyama prefecture
1110
+ hokkaido prefecture
1111
+ fukui prefecture
1112
+ hyogo prefecture
1113
+ kyoto prefecture
1114
+ nara prefecture
1115
+ osaka prefecture
1116
+ shiga prefecture
1117
+ wakayama prefecture
1118
+ chiba prefecture
1119
+ ibaraki prefecture
1120
+ kanagawa prefecture
1121
+ saitama prefecture
1122
+ tochigi prefecture
1123
+ tokyo
1124
+ yamanashi prefecture
1125
+ akita prefecture
1126
+ aomori prefecture
1127
+ fukushima prefecture
1128
+ iwate prefecture
1129
+ miyagi prefecture
1130
+ niigata prefecture
1131
+ yamagata prefecture
1132
+ nagasaki prefecture
1133
+ kagoshima prefecture
1134
+ okinawa prefecture
1135
+ gunma prefecture
1136
+ aqtobe
1137
+ qostanay
1138
+ qyzylorda
1139
+ atyrau
1140
+ batys qazaqstan
1141
+ aqmola
1142
+ qaraghandy
1143
+ soltustik qazaqstan
1144
+ pavlodar
1145
+ shyghys qazaqstan
1146
+ almaty
1147
+ mangghystau
1148
+ ongtustik qazaqstan
1149
+ zhambyl
1150
+ astana
1151
+ coast
1152
+ nairobi area
1153
+ nyanza
1154
+ rift valley
1155
+ north-eastern
1156
+ bishkek
1157
+ chuy
1158
+ ysyk-kol
1159
+ naryn
1160
+ batken
1161
+ jalal-abad
1162
+ talas
1163
+ osh
1164
+ banteay mean cheay
1165
+ batdambang
1166
+ kaoh kong
1167
+ pouthisat
1168
+ siem reap province
1169
+ otdar mean cheay
1170
+ pailin
1171
+ kampong cham
1172
+ kampong chhnang
1173
+ kandal
1174
+ kampong spoe
1175
+ kampong thum
1176
+ phnum penh
1177
+ prey veng
1178
+ preah vihear
1179
+ stoeng treng
1180
+ krachen
1181
+ mondol kiri
1182
+ ratanah kiri
1183
+ kampot
1184
+ keb
1185
+ preah seihanu
1186
+ svay rieng
1187
+ takev
1188
+ christ church nichola town
1189
+ saint anne sandy point
1190
+ saint george basseterre
1191
+ saint george gingerland
1192
+ saint james windward
1193
+ saint john capesterre
1194
+ saint john figtree
1195
+ saint mary cayon
1196
+ saint paul capesterre
1197
+ saint paul charlestown
1198
+ saint peter basseterre
1199
+ saint thomas lowland
1200
+ saint thomas middle island
1201
+ trinity palmetto point
1202
+ chungcheongbuk-do
1203
+ incheon
1204
+ kangwon-do
1205
+ seoul
1206
+ kyeongki-do
1207
+ jeollabuk-do
1208
+ gwangju
1209
+ chungcheongnam-do
1210
+ daejon
1211
+ daegu
1212
+ gyeongsangnam-do
1213
+ jeollanam-do
1214
+ busan
1215
+ ulsan
1216
+ gyeongsangbuk-do
1217
+ jaeju-do
1218
+ pech
1219
+ kosovska mitrovica
1220
+ kosovo
1221
+ kosovsko pomoravlje
1222
+ prizren
1223
+ al `asimah
1224
+ al farwaniyah
1225
+ al ahmadi
1226
+ mubarak al kabeer
1227
+ al jahra
1228
+ hawalli
1229
+ bokeo
1230
+ louang namtha province
1231
+ xiagnabouli
1232
+ champasak
1233
+ salavan
1234
+ savannahkhet
1235
+ viangchan
1236
+ xiangkhoang
1237
+ houaphan
1238
+ louangphabang
1239
+ oudomxai
1240
+ phongsali
1241
+ bolikhamxai
1242
+ khammouan
1243
+ attapu
1244
+ xekong
1245
+ beqaa
1246
+ north lebanon
1247
+ beirut
1248
+ mount lebanon
1249
+ nabatieh
1250
+ south lebanon
1251
+ grand gedeh
1252
+ lofa
1253
+ grand kru
1254
+ maryland
1255
+ sinoe
1256
+ bomi
1257
+ bong
1258
+ grand bassa
1259
+ grand cape mount
1260
+ montserrado
1261
+ margibi
1262
+ nimba
1263
+ river cess
1264
+ ghadamis
1265
+ al jufrah
1266
+ al kufrah
1267
+ al khums
1268
+ ash shati'
1269
+ awbari
1270
+ murzuq
1271
+ misratah
1272
+ sabha
1273
+ al jifarah
1274
+ an nuqat al khams
1275
+ az zawiyah
1276
+ gharyan
1277
+ tajura' wa an nawahi al arba
1278
+ al marj
1279
+ al jabal al akhdar
1280
+ ajdabiya
1281
+ benghazi
1282
+ surt
1283
+ darnah
1284
+ al butnan
1285
+ ansela-raye
1286
+ castries
1287
+ choiseul
1288
+ dauphin
1289
+ dennery
1290
+ gros islet
1291
+ laborie
1292
+ micoud
1293
+ praslin
1294
+ soufriere
1295
+ vieux fort
1296
+ kandy
1297
+ matale
1298
+ nuwara eliya
1299
+ ampara
1300
+ batticaloa
1301
+ polonnaruwa
1302
+ trincomalee
1303
+ anuradhapura
1304
+ vavuniya
1305
+ mannar
1306
+ mullaitivu
1307
+ jaffna
1308
+ kilinochchi
1309
+ kurunegala
1310
+ puttalam
1311
+ ratnapura
1312
+ galle
1313
+ hambantota
1314
+ matara
1315
+ badulla
1316
+ moneragala
1317
+ kegalle
1318
+ colombo
1319
+ gampaha
1320
+ kalutara
1321
+ berea
1322
+ maseru
1323
+ mohale's hoek
1324
+ quthing
1325
+ butha-buthe
1326
+ leribe
1327
+ mokhotlong
1328
+ qacha's nek
1329
+ thaba-tseka
1330
+ mafeteng
1331
+ luxemburg
1332
+ tangier-tetouan
1333
+ fes-boulemane
1334
+ taza-al hoceima-taounate
1335
+ gharb-chrarda-béni hssen
1336
+ chaouia - ouardigha
1337
+ greater casablanca
1338
+ rabat-salé-zemmour-zaer
1339
+ meknès-tafilalet
1340
+ tadla - azilal
1341
+ oriental
1342
+ suss-massa-draa
1343
+ marrakech - tensift - al haouz
1344
+ doukkala - abda
1345
+ laâyoune-boujdour-sakia el hamra
1346
+ guelmim - es-semara
1347
+ oued ed-dahab
1348
+ toamasina
1349
+ fianarantsoa
1350
+ antananarivo
1351
+ toliara
1352
+ mahajanga
1353
+ antsiranana
1354
+ haa alifu
1355
+ haa dhaalu
1356
+ shaviyani
1357
+ raa
1358
+ noonu
1359
+ baa
1360
+ lhaviyani
1361
+ kaafu
1362
+ alifu
1363
+ faafu
1364
+ maale
1365
+ vaavu
1366
+ meemu
1367
+ dhaalu
1368
+ thaa
1369
+ laamu
1370
+ gaafu alifu
1371
+ gaafu dhaalu
1372
+ gnaviyani
1373
+ seenu
1374
+ railik chain
1375
+ ratak chain
1376
+ resen municipality
1377
+ vevcani municipality
1378
+ bitola municipality
1379
+ demir hisar municipality
1380
+ ohrid municipality
1381
+ debarca municipality
1382
+ petrovec municipality
1383
+ plasnica municipality
1384
+ prilep municipality
1385
+ probistip municipality
1386
+ radovis municipality
1387
+ kriva palanka municipality
1388
+ rosoman municipality
1389
+ saraj municipality
1390
+ sopiste municipality
1391
+ staro nagoricane municipality
1392
+ stip municipality
1393
+ studenicani municipality
1394
+ cair municipality
1395
+ sveti nikole municipality
1396
+ veles municipality
1397
+ vranestica municipality
1398
+ zelenikovo municipality
1399
+ zelino municipality
1400
+ aracinovo municipality
1401
+ lipkovo municipality
1402
+ butel municipality
1403
+ caska municipality
1404
+ centar municipality
1405
+ zrnovci municipality
1406
+ cesinovo-oblesevo municipality
1407
+ cucer-sandevo municipality
1408
+ demir kapija municipality
1409
+ dolneni municipality
1410
+ gazi baba municipality
1411
+ gradsko municipality
1412
+ lozovo municipality
1413
+ konce municipality
1414
+ ilinden municipality
1415
+ karbinci municipality
1416
+ karpos municipality
1417
+ kavadarci municipality
1418
+ aerodrom municipality
1419
+ kocani municipality
1420
+ kratovo municipality
1421
+ krivogastani municipality
1422
+ krusevo municipality
1423
+ kumanovo municipality
1424
+ makedonski brod municipality
1425
+ mogila municipality
1426
+ negotino municipality
1427
+ novaci municipality
1428
+ gjorce petrov municipality
1429
+ zajas municipality
1430
+ centar zupa municipality
1431
+ debar municipality
1432
+ drugovo municipality
1433
+ kicevo municipality
1434
+ mavrovo and rostusa municipality
1435
+ oslomej municipality
1436
+ tearce municipality
1437
+ tetovo municipality
1438
+ vrapciste municipality
1439
+ bogovinje municipality
1440
+ brvenica municipality
1441
+ gostivar municipality
1442
+ jegunovce municipality
1443
+ strumica municipality
1444
+ valandovo municipality
1445
+ vasilevo municipality
1446
+ bogdanci municipality
1447
+ bosilovo municipality
1448
+ gevgelija municipality
1449
+ novo selo municipality
1450
+ star dojran municipality
1451
+ vinica municipality
1452
+ berovo municipality
1453
+ delcevo municipality
1454
+ makedonska kamenica municipality
1455
+ pehcevo municipality
1456
+ struga municipality
1457
+ rankovce municipality
1458
+ tombouctou
1459
+ kidal
1460
+ gao
1461
+ bamako
1462
+ kayes
1463
+ sikasso
1464
+ mopti
1465
+ ségou
1466
+ koulikoro
1467
+ kayan state
1468
+ karan state
1469
+ mandalay
1470
+ bago
1471
+ yangon
1472
+ mon state
1473
+ rakhine state
1474
+ chin state
1475
+ ayeyarwady
1476
+ magway
1477
+ shan state
1478
+ tenasserim
1479
+ kachin state
1480
+ sagaing
1481
+ bar
1482
+ ulcinj
1483
+ budva
1484
+ cetinje
1485
+ rozaje
1486
+ plav
1487
+ herceg novi
1488
+ kotor
1489
+ andrijevica
1490
+ berane
1491
+ bijelo polje
1492
+ danilovgrad
1493
+ kolasin
1494
+ mojkovac
1495
+ niksic
1496
+ pluzine
1497
+ pljevlja
1498
+ podgorica
1499
+ tivat
1500
+ savnik
1501
+ zabljak
1502
+ bayan-olgiy
1503
+ dornogovi
1504
+ omnogov
1505
+ hentiy
1506
+ arhangay
1507
+ bayanhongor
1508
+ dzavhan
1509
+ govi-altay
1510
+ hovd
1511
+ hovsgol
1512
+ uvs
1513
+ bulgan
1514
+ erdenet
1515
+ dundgovi
1516
+ selenge
1517
+ ovorhangay
1518
+ darhan
1519
+ tov
1520
+ ulaanbaatar
1521
+ dornod
1522
+ suhbaatar
1523
+ rota
1524
+ tinian
1525
+ saipan
1526
+ northern islands
1527
+ tete
1528
+ manica
1529
+ cabo delgado
1530
+ niassa
1531
+ nampula
1532
+ gaza
1533
+ sofala
1534
+ zambézia
1535
+ inhambane
1536
+ maputo
1537
+ tiris zemmour
1538
+ brakna region
1539
+ dakhlet nouadhibou
1540
+ inchiri region
1541
+ nouakchott
1542
+ trarza
1543
+ assaba region
1544
+ guidimaka region
1545
+ gorgol region
1546
+ adrar region
1547
+ hodh ech chargui
1548
+ hodh el gharbi
1549
+ tagant region
1550
+ saint anthony
1551
+ saint georges
1552
+ agalega islands
1553
+ beau bassin
1554
+ cargados carajos
1555
+ curepipe (2)
1556
+ flacq
1557
+ grand port
1558
+ moka
1559
+ pamplemousses
1560
+ plaines wilhems
1561
+ port louis
1562
+ quatre bornes
1563
+ riviere du rempart
1564
+ black river
1565
+ rodrigues
1566
+ savanne
1567
+ vacoas
1568
+ chitipa
1569
+ kasungu
1570
+ mzimba
1571
+ nkhata bay
1572
+ nkhotakota
1573
+ rumphi
1574
+ machinga
1575
+ dedza
1576
+ dowa
1577
+ lilongwe
1578
+ mangochi
1579
+ mchinji
1580
+ ntcheu
1581
+ ntchisi
1582
+ salima
1583
+ balaka
1584
+ chikwawa
1585
+ chiradzulu
1586
+ thyolo
1587
+ nsanje
1588
+ zomba
1589
+ blantyre
1590
+ mwanza
1591
+ mulanje
1592
+ phalombe
1593
+ perak
1594
+ penang
1595
+ kedah
1596
+ perlis
1597
+ johor
1598
+ kelantan
1599
+ melaka
1600
+ negeri sembilan
1601
+ pahang
1602
+ selangor
1603
+ trengganu
1604
+ sabah
1605
+ sarawak
1606
+ kuala lumpur
1607
+ putrajaya
1608
+ labuan
1609
+ karas
1610
+ hardap
1611
+ khomas
1612
+ kunene
1613
+ erongo
1614
+ otjozondjupa
1615
+ omusati
1616
+ oshana
1617
+ ohangwena
1618
+ omaheke
1619
+ okavango
1620
+ oshikoto
1621
+ caprivi
1622
+ loyalty islands
1623
+ tillabéri
1624
+ diffa region
1625
+ agadez
1626
+ maradi
1627
+ zinder
1628
+ dosso
1629
+ niamey
1630
+ tahoua
1631
+ borno
1632
+ abia
1633
+ akwa ibom
1634
+ imo
1635
+ rivers
1636
+ bayelsa
1637
+ benue
1638
+ cross river
1639
+ taraba
1640
+ kwara
1641
+ lagos
1642
+ niger
1643
+ ogun
1644
+ ondo
1645
+ ekiti
1646
+ osun
1647
+ oyo
1648
+ anambra
1649
+ bauchi
1650
+ gombe
1651
+ delta
1652
+ edo
1653
+ enugu
1654
+ ebonyi
1655
+ kaduna
1656
+ kogi
1657
+ plateau
1658
+ nassarawa
1659
+ jigawa
1660
+ kano
1661
+ katsina
1662
+ sokoto
1663
+ zamfara
1664
+ yobe
1665
+ kebbi
1666
+ adamawa
1667
+ federal capital territory
1668
+ rivas
1669
+ rio san juan
1670
+ región autónoma del caribe sur
1671
+ carazo
1672
+ granada
1673
+ jinotega
1674
+ región autónoma del caribe norte
1675
+ león
1676
+ managua
1677
+ masaya
1678
+ chinandega
1679
+ estelí
1680
+ madriz
1681
+ matagalpa
1682
+ nueva segovia
1683
+ boaco
1684
+ chontales
1685
+ st. eustatius
1686
+ bonaire
1687
+ svalbard
1688
+ gandaki
1689
+ bheri
1690
+ dhawalagiri
1691
+ karnali
1692
+ lumbini
1693
+ mahakali
1694
+ seti
1695
+ bagmati
1696
+ janakpur
1697
+ narayani
1698
+ sagarmatha
1699
+ kosi
1700
+ mechi
1701
+ rapti
1702
+ buada
1703
+ boe
1704
+ aiwo
1705
+ denigomodu
1706
+ nibok
1707
+ uaboe
1708
+ baiti
1709
+ ewa
1710
+ anetan
1711
+ anabar
1712
+ ijuw
1713
+ anibare
1714
+ meneng
1715
+ yaren
1716
+ ad dakhiliyah
1717
+ al wusta
1718
+ ash sharqiyah
1719
+ zufar
1720
+ az zahirah
1721
+ al batinah
1722
+ musandam
1723
+ masqat
1724
+ buraymi
1725
+ balochistan
1726
+ azad kashmir
1727
+ islamabad
1728
+ gilgit baltistan
1729
+ gilgit baltistan province
1730
+ federally administered tribal areas
1731
+ sindh
1732
+ north-west frontier
1733
+ chiriquí
1734
+ coclé
1735
+ herrera
1736
+ los santos
1737
+ panama
1738
+ veraguas
1739
+ darién
1740
+ kuna yala
1741
+ bocas del toro
1742
+ ngäbe buglé
1743
+ emberá
1744
+ callao
1745
+ lambayeque
1746
+ piura
1747
+ tumbes
1748
+ apurímac
1749
+ arequipa
1750
+ cusco
1751
+ madre de dios
1752
+ moquegua
1753
+ tacna
1754
+ ancash
1755
+ cajamarca
1756
+ huánuco
1757
+ la libertad
1758
+ pasco
1759
+ san martín
1760
+ ucayali
1761
+ loreto
1762
+ ayacucho
1763
+ lima province
1764
+ huancavelica
1765
+ ica
1766
+ junín region
1767
+ lima region
1768
+ tawitawi
1769
+ bohol
1770
+ cebu
1771
+ negros oriental
1772
+ siquijor
1773
+ negros occidental
1774
+ basilan
1775
+ zamboanga del norte
1776
+ zamboanga sibugay
1777
+ zamboanga del sur
1778
+ misamis occidental
1779
+ sulu
1780
+ aklan
1781
+ antique
1782
+ capiz
1783
+ iloilo
1784
+ guimaras
1785
+ palawan
1786
+ romblon
1787
+ albay
1788
+ camarines norte
1789
+ camarines sur
1790
+ catanduanes
1791
+ masbate
1792
+ sorsogon
1793
+ abra
1794
+ batanes
1795
+ cagayan
1796
+ apayao
1797
+ ilocos norte
1798
+ ilocos sur
1799
+ aurora
1800
+ isabela
1801
+ ifugao
1802
+ mountain province
1803
+ nueva vizcaya
1804
+ quirino
1805
+ bataan
1806
+ tarlac
1807
+ nueva ecija
1808
+ pampanga
1809
+ benguet
1810
+ zambales
1811
+ la union
1812
+ pangasinan
1813
+ cavite
1814
+ batangas
1815
+ bulacan
1816
+ laguna
1817
+ rizal
1818
+ marinduque
1819
+ mindoro occidental
1820
+ mindoro oriental
1821
+ quezon
1822
+ lanao del norte
1823
+ lanao del sur
1824
+ maguindanao
1825
+ cotabato
1826
+ sultan kudarat
1827
+ biliran
1828
+ eastern samar
1829
+ leyte
1830
+ samar
1831
+ southern leyte
1832
+ northern samar
1833
+ agusan del norte
1834
+ agusan del sur
1835
+ bukidnon
1836
+ camiguin
1837
+ davao del norte
1838
+ compostela valley
1839
+ surigao del norte
1840
+ surigao del sur
1841
+ misamis oriental
1842
+ davao del sur
1843
+ davao oriental
1844
+ sarangani
1845
+ south cotabato
1846
+ kalinga
1847
+ zamboanga city
1848
+ central visayas
1849
+ western visayas
1850
+ davao
1851
+ northern mindanao
1852
+ caraga
1853
+ eastern visayas
1854
+ bicol region
1855
+ cagayan valley
1856
+ central luzon
1857
+ cordillera administrative region
1858
+ ilocos region
1859
+ national capital region
1860
+ calabarzon
1861
+ aimeliik
1862
+ airai
1863
+ angaur
1864
+ hatohobei
1865
+ kayangel
1866
+ koror
1867
+ melekeok
1868
+ ngaraard
1869
+ ngarchelong
1870
+ ngardmau
1871
+ ngatpang
1872
+ ngchesar
1873
+ ngeremlengui
1874
+ ngiwal
1875
+ peleliu
1876
+ sonsorol
1877
+ enga
1878
+ east sepik
1879
+ madang
1880
+ sandaun
1881
+ chimbu
1882
+ eastern highlands
1883
+ gulf
1884
+ north solomons
1885
+ southern highlands
1886
+ western highlands
1887
+ east new britain
1888
+ manus
1889
+ milne bay
1890
+ morobe
1891
+ national capital
1892
+ new ireland
1893
+ west new britain
1894
+ hwanghae-bukto
1895
+ hwanghae-namdo
1896
+ p´yongyang-si
1897
+ hamgyong-bukto
1898
+ chagang-do
1899
+ hamgyong-namdo
1900
+ p'yongan-bukto
1901
+ p'yongan-namdo
1902
+ yanggang-do
1903
+ asunción
1904
+ alto paraguay
1905
+ boquerón
1906
+ concepción
1907
+ cordillera
1908
+ presidente hayes
1909
+ san pedro
1910
+ guairá
1911
+ Ñeembucú
1912
+ paraguarí
1913
+ amambay
1914
+ alto paraná
1915
+ caaguazú
1916
+ caazapá
1917
+ canindeyú
1918
+ itapúa
1919
+ windward islands
1920
+ leeward islands
1921
+ tuamotu-gambier
1922
+ austral islands
1923
+ marquesas islands
1924
+ doha
1925
+ al rayyan
1926
+ al wakra
1927
+ al khor
1928
+ madinat al shamal
1929
+ umm slal
1930
+ kigali province
1931
+ najran
1932
+ riyadh
1933
+ al madinah
1934
+ al-qassim
1935
+ ha'il
1936
+ tabuk
1937
+ northern borders
1938
+ al jawf
1939
+ al-bahah
1940
+ aseer
1941
+ jizan
1942
+ makkah
1943
+ an nil al azraq
1944
+ al bahr al ahmar
1945
+ janub darfor
1946
+ gharb darfor
1947
+ al khartum
1948
+ gezira
1949
+ gadarif
1950
+ nahr an nil
1951
+ ash shamaliyah
1952
+ an nil al abyad
1953
+ sinnar
1954
+ shamal darfor
1955
+ janub kurdufan
1956
+ shamal kurdufan
1957
+ northern bahr al ghazal
1958
+ lakes
1959
+ western equatoria
1960
+ central equatoria
1961
+ upper nile
1962
+ jonglei
1963
+ unity
1964
+ warrap
1965
+ western bahr el ghazal
1966
+ eastern equatoria
1967
+ sedhiou
1968
+ kedougou
1969
+ kaffrine
1970
+ saint-louis
1971
+ dakar
1972
+ diourbel
1973
+ fatick
1974
+ kaolack
1975
+ louga
1976
+ matam
1977
+ thies
1978
+ kolda
1979
+ ziguinchor
1980
+ tambacounda
1981
+ central singapore
1982
+ south west
1983
+ north west
1984
+ north east
1985
+ south east
1986
+ ascension
1987
+ saint helena
1988
+ tristan da cunha
1989
+ malaita
1990
+ makira
1991
+ guadalcanal
1992
+ isabel
1993
+ temotu
1994
+ western area
1995
+ ahuachapán
1996
+ cabañas
1997
+ cuscatlán
1998
+ sonsonate
1999
+ la unión
2000
+ morazán
2001
+ san miguel
2002
+ san vicente
2003
+ usulután
2004
+ chalatenango
2005
+ santa ana
2006
+ borgo maggiore
2007
+ san marino
2008
+ acquaviva
2009
+ serravalle
2010
+ domagnano
2011
+ faetano
2012
+ montegiardino
2013
+ fiorentino
2014
+ chiesanuova
2015
+ bari
2016
+ bakool
2017
+ bay
2018
+ gedo
2019
+ jubbada dhexe
2020
+ shabeellaha hoose
2021
+ banaadir
2022
+ galguduud
2023
+ hiiraan
2024
+ shabeellaha dhexe
2025
+ mudug
2026
+ nugaal
2027
+ jubbada hoose
2028
+ saint-pierre
2029
+ miquelon-langlade
2030
+ são tomé island
2031
+ príncipe
2032
+ nickerie
2033
+ brokopondo
2034
+ marowijne
2035
+ para
2036
+ sipaliwini
2037
+ commewijne
2038
+ coronie
2039
+ paramaribo
2040
+ saramacca
2041
+ wanica
2042
+ velenje
2043
+ vitanje
2044
+ vodice
2045
+ vrhnika
2046
+ vuzenica
2047
+ zasavska
2048
+ zrece
2049
+ bled
2050
+ bohinj
2051
+ cerkno
2052
+ gorenja vas-poljane
2053
+ idrija
2054
+ kranj
2055
+ kranjska gora
2056
+ naklo
2057
+ radovljica
2058
+ municipality of Škofja loka
2059
+ tolmin
2060
+ bovec
2061
+ brda
2062
+ divaca
2063
+ hrpelje-kozina
2064
+ izola
2065
+ kanal
2066
+ kobarid
2067
+ komen
2068
+ koper
2069
+ miren-kostanjevica
2070
+ piran
2071
+ vipava
2072
+ beltinci
2073
+ dornava
2074
+ kobilje
2075
+ moravske toplice
2076
+ murska sobota
2077
+ odranci
2078
+ sveti jurij
2079
+ zavrc
2080
+ kuzma
2081
+ cerkvenjak
2082
+ benedikt
2083
+ sveta ana
2084
+ grad
2085
+ destrnik
2086
+ dobrova-polhov gradec
2087
+ kamnik
2088
+ kocevje
2089
+ lenart
2090
+ luce
2091
+ novo mesto
2092
+ bistrica ob sotli
2093
+ podvelka
2094
+ preddvor
2095
+ ptuj
2096
+ ribnica
2097
+ municipality of Šentjur
2098
+ slovenska bistrica
2099
+ videm
2100
+ vojnik
2101
+ komenda
2102
+ oplotnica
2103
+ hajdina
2104
+ hoce-slivnica
2105
+ trnovska vas
2106
+ podlehnik
2107
+ prevalje
2108
+ selnica ob dravi
2109
+ lovrenc na pohorju
2110
+ trzin
2111
+ jezersko
2112
+ dobrna
2113
+ tabor
2114
+ vransko
2115
+ mirna pec
2116
+ prebold
2117
+ polzela
2118
+ kostel
2119
+ braslovce
2120
+ dolenjske toplice
2121
+ horjul
2122
+ solcava
2123
+ dobje
2124
+ dobrepolje
2125
+ bloke
2126
+ podcetrtek
2127
+ maribor
2128
+ ribnica na pohorju
2129
+ jesenice
2130
+ lendava
2131
+ ljutomer
2132
+ velika polana
2133
+ dobrovnik
2134
+ markovci
2135
+ apace
2136
+ cankova
2137
+ gornja radgona
2138
+ gornji petrovci
2139
+ puconci
2140
+ radenci
2141
+ borovnica
2142
+ krsko
2143
+ brezovica
2144
+ celje
2145
+ cerklje na gorenjskem
2146
+ cerknica
2147
+ crnomelj
2148
+ dol pri ljubljani
2149
+ dravograd
2150
+ duplek
2151
+ gornji grad
2152
+ grosuplje
2153
+ hrastnik
2154
+ trbovlje
2155
+ ig
2156
+ ilirska bistrica
2157
+ ivancna gorica
2158
+ kidricevo
2159
+ kozje
2160
+ kungota
2161
+ litija
2162
+ ljubljana
2163
+ ljubno
2164
+ logatec
2165
+ lukovica
2166
+ medvode
2167
+ metlika
2168
+ mislinja
2169
+ moravce
2170
+ mozirje
2171
+ muta
2172
+ nazarje
2173
+ pesnica
2174
+ pivka
2175
+ postojna
2176
+ race-fram
2177
+ radece
2178
+ radlje ob dravi
2179
+ rogatec
2180
+ semic
2181
+ sevnica
2182
+ slovenj gradec
2183
+ slovenske konjice
2184
+ trebnje
2185
+ hhohho
2186
+ lubombo
2187
+ manzini
2188
+ shiselweni
2189
+ sint maarten
2190
+ outer islands
2191
+ anse aux pins
2192
+ anse boileau
2193
+ anse etoile
2194
+ au cap
2195
+ anse royale
2196
+ baie lazare
2197
+ baie ste. anne
2198
+ beau vallon
2199
+ bel air
2200
+ belombre
2201
+ cascade
2202
+ glacis
2203
+ grand anse mahe
2204
+ grand anse praslin
2205
+ la digue and inner islands
2206
+ english river
2207
+ mont buxton
2208
+ mont fleuri
2209
+ plaisance
2210
+ pointe larue
2211
+ port glaud
2212
+ saint louis
2213
+ takamaka
2214
+ les mamelles
2215
+ roche caiman
2216
+ al ladhiqiyah
2217
+ tartus
2218
+ ar raqqah
2219
+ h'alab
2220
+ hamah
2221
+ homs (hims)
2222
+ idlib
2223
+ hasaka (al haksa)
2224
+ dayr az zawr
2225
+ as suwayda'
2226
+ rif dimashq
2227
+ al qunaytirah
2228
+ dar`a
2229
+ dimashq
2230
+ middle caicos
2231
+ north caicos
2232
+ providencales and west caicos
2233
+ south and east caicos
2234
+ gand turk
2235
+ salt cay
2236
+ hadjer-lamis
2237
+ kanem region
2238
+ lac region
2239
+ batha region
2240
+ wadi fira region
2241
+ guéra region
2242
+ ouadaï region
2243
+ logone occidental
2244
+ logone oriental region
2245
+ mayo-kebbi est
2246
+ tandjilé region
2247
+ mandoul region
2248
+ salamat region
2249
+ n'djamena
2250
+ mayo-kebbi ouest
2251
+ borkou
2252
+ tibesti
2253
+ chari-baguirmi
2254
+ barh el gazel
2255
+ sila
2256
+ moyen-chari
2257
+ plateaux region
2258
+ maritime region
2259
+ kara region
2260
+ centrale region
2261
+ savanes region
2262
+ mae hong son
2263
+ chumphon
2264
+ nakhon si thammarat
2265
+ phuket
2266
+ phang nga
2267
+ ranong
2268
+ surat thani
2269
+ krabi
2270
+ phatthalung
2271
+ satun
2272
+ songkhla
2273
+ trang
2274
+ yala
2275
+ chiang rai
2276
+ chiang mai
2277
+ lampang
2278
+ lamphun
2279
+ nan
2280
+ phayao
2281
+ phrae
2282
+ phitsanulok
2283
+ sukhothai
2284
+ uttaradit
2285
+ kanchanaburi
2286
+ kamphaeng phet
2287
+ phichit
2288
+ phetchabun
2289
+ suphan buri
2290
+ tak
2291
+ uthai thani
2292
+ ang thong
2293
+ chai nat
2294
+ lopburi
2295
+ nakhon nayok
2296
+ prachinburi
2297
+ nakhon sawan
2298
+ phra nakhon si ayutthaya
2299
+ pathum thani
2300
+ sing buri
2301
+ sara buri
2302
+ bangkok
2303
+ nonthaburi
2304
+ nathon pathon
2305
+ phetchaburi
2306
+ prachuap khiri khan
2307
+ ratchaburi
2308
+ samut prakan
2309
+ samut sakhon
2310
+ samut songkhran
2311
+ sisaket
2312
+ ubon ratchathani
2313
+ amnat charoen
2314
+ yasothon
2315
+ chonburi
2316
+ chachoengsao
2317
+ chanthaburi
2318
+ sa kaeo
2319
+ rayong
2320
+ trat
2321
+ buriram
2322
+ chaiyaphum
2323
+ khon kaen
2324
+ kalasin
2325
+ maha sarakham
2326
+ nakhon ratchasima
2327
+ roi et
2328
+ surin
2329
+ loei
2330
+ nong khai
2331
+ sakon nakhon
2332
+ udon thani
2333
+ nong bua lam phu
2334
+ nakhon phanom
2335
+ mukdahan
2336
+ narathiwat
2337
+ pattani
2338
+ kuhistoni badakhshon
2339
+ khatlon
2340
+ karategin
2341
+ leninobod
2342
+ krasnovodsk
2343
+ ashkhabad
2344
+ tashauz
2345
+ chardzhou
2346
+ mary
2347
+ dili
2348
+ liquica
2349
+ oecussi-ambeno
2350
+ aileu
2351
+ ainaro
2352
+ baucau
2353
+ bobonaro
2354
+ cova lima
2355
+ ermera
2356
+ manatuto
2357
+ manufahi
2358
+ viqueque
2359
+ lautem
2360
+ tongatapu
2361
+ vava'eu
2362
+ niuas
2363
+ ha'apai
2364
+ eua
2365
+ eastern tobago
2366
+ western tobago
2367
+ diego martin
2368
+ siparia
2369
+ arima
2370
+ sangre grande
2371
+ rio claro-mayaro
2372
+ san juan-laventille
2373
+ princes town
2374
+ couva-tabaquite-talparo
2375
+ penal-debe
2376
+ point fortin
2377
+ tanapuna-piarco
2378
+ san fernando
2379
+ chaguanas
2380
+ port of spain
2381
+ tozeur
2382
+ manubah
2383
+ béja
2384
+ ben arous (tunis sud)
2385
+ bizerte
2386
+ jendouba
2387
+ nabeul
2388
+ tunis
2389
+ le kef
2390
+ kassérine
2391
+ gabès
2392
+ gafsa
2393
+ sidi bou zid
2394
+ sfax
2395
+ siliana
2396
+ mahdia
2397
+ monastir
2398
+ kairouan
2399
+ sousse
2400
+ zaghouan
2401
+ médenine
2402
+ kebili
2403
+ tataouine
2404
+ aydin
2405
+ izmir
2406
+ balikesir
2407
+ Çanakkale province
2408
+ edirne
2409
+ kirklareli
2410
+ tekirdag
2411
+ bilecik
2412
+ bursa
2413
+ istanbul
2414
+ kocaeli
2415
+ sakarya
2416
+ bolu
2417
+ eskisehir
2418
+ kastamonu
2419
+ antalya
2420
+ afyonkarahisar
2421
+ burdur
2422
+ denizli
2423
+ isparta
2424
+ kütahya province
2425
+ manisa
2426
+ mugla
2427
+ adiyaman
2428
+ elazig
2429
+ k. maras
2430
+ malatya
2431
+ mersin
2432
+ kirsehir
2433
+ kayseri
2434
+ nevsehir
2435
+ hatay
2436
+ amasya
2437
+ Çorum province
2438
+ giresun
2439
+ ordu
2440
+ sinop
2441
+ sivas
2442
+ samsun
2443
+ tokat
2444
+ artvin
2445
+ erzurum
2446
+ erzincan
2447
+ rize
2448
+ trabzon
2449
+ agri
2450
+ bingöl province
2451
+ diyarbakir
2452
+ mus
2453
+ bitlis
2454
+ ankara province
2455
+ Çankırı province
2456
+ zinguldak
2457
+ konya
2458
+ karaman
2459
+ usak
2460
+ gaziantep
2461
+ sanliurfa
2462
+ adana
2463
+ kinkkale
2464
+ nigde
2465
+ aksaray
2466
+ yozgat
2467
+ gümüshane
2468
+ bayburt
2469
+ kars
2470
+ mardin
2471
+ batman
2472
+ siirt
2473
+ sirnak
2474
+ tunceli
2475
+ hakkari
2476
+ van
2477
+ ardahan
2478
+ iğdır province
2479
+ kilis
2480
+ osmaniye
2481
+ yalova
2482
+ düzce
2483
+ karabük
2484
+ bartın province
2485
+ kaohsiung city
2486
+ pingtung county
2487
+ tainan city
2488
+ hsinchu city
2489
+ hsinchu county
2490
+ yilan county
2491
+ keelung city
2492
+ miaoli county
2493
+ taipei city
2494
+ new taipei city
2495
+ taoyuan county
2496
+ changhua county
2497
+ chiayi county
2498
+ chiayi city
2499
+ hualien county
2500
+ nantou county
2501
+ taichung city
2502
+ yunlin county
2503
+ taitung county
2504
+ penghu county
2505
+ kinmen county
2506
+ lienchiang county
2507
+ mbeya
2508
+ rukwa
2509
+ zanzibar south and central
2510
+ shinyanga
2511
+ tabora
2512
+ kagera
2513
+ kigoma
2514
+ dar es salaam
2515
+ morogoro
2516
+ pemba north
2517
+ pemba south
2518
+ pwani
2519
+ zanzibar north
2520
+ zanzibar west
2521
+ dodoma
2522
+ iringa
2523
+ lindi
2524
+ mtwara
2525
+ ruvuma
2526
+ singida
2527
+ arusha
2528
+ manyara
2529
+ kilimanjaro
2530
+ mara
2531
+ tanga
2532
+ njombe
2533
+ kalangala
2534
+ jinja
2535
+ kumi
2536
+ kaberamaido
2537
+ kayunga
2538
+ iganga
2539
+ kamuli
2540
+ amolatar
2541
+ kaliro
2542
+ soroti
2543
+ mukono
2544
+ pallisa
2545
+ sembabule
2546
+ mpigi
2547
+ adjumani
2548
+ arua
2549
+ koboko
2550
+ masindi
2551
+ nebbi
2552
+ moyo
2553
+ yumbe
2554
+ kampala
2555
+ kiboga
2556
+ nakasongola
2557
+ wakiso
2558
+ luwero
2559
+ mubende
2560
+ mityana
2561
+ kitgum
2562
+ gulu
2563
+ lira
2564
+ dokolo
2565
+ pader
2566
+ oyam
2567
+ bundibugyo
2568
+ hoima
2569
+ kabarole
2570
+ kyenjojo
2571
+ kibaale
2572
+ kapchorwa
2573
+ sironko
2574
+ mbale
2575
+ bugiri
2576
+ busia
2577
+ butaleja
2578
+ mayuge
2579
+ tororo
2580
+ amuria
2581
+ kotido
2582
+ katakwi
2583
+ moroto
2584
+ nakapiripirit
2585
+ rakai
2586
+ masaka
2587
+ bushenyi
2588
+ kasese
2589
+ kamwenge
2590
+ ibanda
2591
+ isingiro
2592
+ mbarara
2593
+ ntungamo
2594
+ rukungiri
2595
+ kabale
2596
+ kisoro
2597
+ kanungu
2598
+ budaka
2599
+ apac
2600
+ baker island
2601
+ howland island
2602
+ jarvis island
2603
+ johnston atoll
2604
+ kingman reef
2605
+ midway islands
2606
+ navassa island
2607
+ palmyra atoll
2608
+ wake island
2609
+ salto
2610
+ soriano
2611
+ cerro largo
2612
+ durazno
2613
+ rivera
2614
+ tacuarembó
2615
+ treinta y tres
2616
+ canelones
2617
+ florida department
2618
+ lavalleja
2619
+ maldonado
2620
+ montevideo
2621
+ rocha
2622
+ colonia
2623
+ artigas
2624
+ flores
2625
+ paysandú
2626
+ río negro
2627
+ bukhoro
2628
+ khorazm
2629
+ qoraqalpoghiston
2630
+ nawoiy
2631
+ samarqand
2632
+ qashqadaryo
2633
+ surkhondaryo
2634
+ andijon
2635
+ farghona
2636
+ namangan
2637
+ jizzakh
2638
+ sirdaryo
2639
+ toshkent
2640
+ charlotte
2641
+ grenadines
2642
+ falcón
2643
+ apure
2644
+ barinas
2645
+ mérida
2646
+ táchira
2647
+ trujillo
2648
+ zulia
2649
+ cojedes
2650
+ carabobo
2651
+ lara
2652
+ portuguesa
2653
+ yaracuy
2654
+ anzoátegui
2655
+ aragua
2656
+ vargas
2657
+ distrito capital
2658
+ dependencias federales
2659
+ guárico
2660
+ monagas
2661
+ miranda
2662
+ nueva esparta
2663
+ delta amacuro
2664
+ saint thomas island
2665
+ saint john island
2666
+ saint croix island
2667
+ quang ninh
2668
+ tay ninh
2669
+ dien bien
2670
+ bac kan
2671
+ thai nguyen
2672
+ lai chau
2673
+ lang son
2674
+ son la
2675
+ thanh hoa
2676
+ tuyen quang
2677
+ yen bai
2678
+ hoa binh
2679
+ hai duong
2680
+ hai phong
2681
+ hung yen
2682
+ ha noi
2683
+ bac ninh
2684
+ vinh phuc
2685
+ ninh binh
2686
+ ha nam
2687
+ nam dinh
2688
+ phu tho
2689
+ bac giang
2690
+ thai binh
2691
+ ha tinh
2692
+ nghe an
2693
+ quang binh
2694
+ dak lak
2695
+ gia lai
2696
+ khanh hoa
2697
+ lam dong
2698
+ ninh thuan
2699
+ phu yen
2700
+ bin duong
2701
+ tien giang
2702
+ dac nong
2703
+ bin phuoc
2704
+ binh dinh
2705
+ kon tum
2706
+ quang nam
2707
+ quang ngai
2708
+ quang tri
2709
+ thura thien-hue
2710
+ da nang
2711
+ ba ria-vung tau
2712
+ binh thuan
2713
+ dong nai
2714
+ an giang
2715
+ can tho
2716
+ dong thap
2717
+ ho chi minh
2718
+ kien giang
2719
+ long an
2720
+ ben tre
2721
+ hau giang
2722
+ bac lieu
2723
+ ca mau
2724
+ soc trang
2725
+ tra vinh
2726
+ vinh long
2727
+ cao bang
2728
+ ha giang
2729
+ lao cai
2730
+ torba
2731
+ sanma
2732
+ tafea
2733
+ malampa
2734
+ penama
2735
+ shefa
2736
+ sigave
2737
+ uvéa
2738
+ alo
2739
+ limassol district
2740
+ tuamasaga
2741
+ a`ana
2742
+ aiga-i-le-tai
2743
+ atua
2744
+ va`a-o-fonoti
2745
+ fa`asaleleaga
2746
+ gaga`emauga
2747
+ gagaifomauga
2748
+ vaisigano
2749
+ satupa`itea
2750
+ palauli
2751
+ sa`dah
2752
+ al hudaydah
2753
+ al mahwit
2754
+ dhamar
2755
+ hajjah
2756
+ amran
2757
+ ibb
2758
+ lahij
2759
+ ta`izz
2760
+ al mahrah
2761
+ al bayda'
2762
+ al dali'
2763
+ shabwah
2764
+ ma'rib
2765
+ san`ar
2766
+ hadramawt
2767
+ amanat al asimah
2768
+ `adan
2769
+ abyan
2770
+ luapula
2771
+ copperbelt
2772
+ lusaka
2773
+ north-western
2774
+ mashonaland central
2775
+ harare
2776
+ matabeleland north
2777
+ midlands
2778
+ mashonaland east
2779
+ manicaland
2780
+ matabeleland south
2781
+ bulawayo
2782
+ masvingo
2783
+ mashonaland west
2784
+ minor islands of anguilla
2785
+ antarctica
2786
+ minor islands of antarctica
2787
+ ashmore and cartier islands
2788
+ bajo nuevo bank
2789
+ minor islands of belize
2790
+ clipperton island
2791
+ minor islands of colombia
2792
+ coral sea islands
2793
+ minor islands of cuba
2794
+ cayman islands
2795
+ northern cyprus
2796
+ minor islands of djibouti
2797
+ minor islands of egypt
2798
+ minor islands of eritrea
2799
+ minor islands of fiji
2800
+ falkland islands
2801
+ gaza strip
2802
+ sark
2803
+ minor islands of guernsey
2804
+ guam
2805
+ heard island and mcdonald islands
2806
+ minor islands of indonesia
2807
+ isle of man
2808
+ minor islands of india
2809
+ british indian ocean territory
2810
+ minor islands of iran
2811
+ jersey
2812
+ minor islands of japan
2813
+ minor islands of kazakhstan
2814
+ kiribati
2815
+ minor islands of kiribati
2816
+ minor islands of south korea
2817
+ macau
2818
+ minor islands of myanmar
2819
+ minor islands of mauritania
2820
+ minor islands of malaysia
2821
+ minor islands of new caledonia
2822
+ norfolk island
2823
+ niue
2824
+ null island
2825
+ pitcairn islands
2826
+ paracel islands
2827
+ spratly islands
2828
+ minor islands of philippines
2829
+ minor islands of papua new guinea
2830
+ minor islands of north korea
2831
+ western sahara
2832
+ minor islands of saudi arabia
2833
+ scarborough reef
2834
+ south georgia and the south sandwich islands
2835
+ minor islands of solomon islands
2836
+ somaliland
2837
+ minor islands of somaliland
2838
+ united nations neutral zone
2839
+ minor islands of thailand
2840
+ minor islands of tunisia
2841
+ minor islands of turkey
2842
+ tuvalu
2843
+ minor islands of tuvalu
2844
+ guantanamo bay usnb
2845
+ minor islands of venezuela
2846
+ british virgin islands
2847
+ minor islands of cambodia
2848
+ west bank
2849
+ minor island of yemen
2850
+ western australia
2851
+ queensland
2852
+ australian capital territory
2853
+ victoria
2854
+ south australia
2855
+ northern territory
2856
+ new south wales
2857
+ tasmania
2858
+ vorarlberg
2859
+ burgenland
2860
+ carinthia
2861
+ tirol
2862
+ wien
2863
+ lower austria
2864
+ upper austria
2865
+ salzburg
2866
+ steiermark
2867
+ liège
2868
+ brabant wallon
2869
+ namur
2870
+ limburg
2871
+ west-vlaanderen
2872
+ brussels
2873
+ antwerpen
2874
+ hainaut
2875
+ luxembourg
2876
+ vlaams-brabant
2877
+ oost-vlaanderen
2878
+ smolyan
2879
+ kurdzhali
2880
+ blagoevgrad
2881
+ kyustendil
2882
+ khaskovo
2883
+ pazardzhik
2884
+ pernik
2885
+ sofiya
2886
+ plovdiv
2887
+ stara zagora
2888
+ sofia province
2889
+ yambol
2890
+ gabrovo
2891
+ sliven
2892
+ burgas
2893
+ lovech
2894
+ ruse
2895
+ vratsa
2896
+ montana
2897
+ veliko turnovo
2898
+ pleven
2899
+ turgovishte
2900
+ vidin
2901
+ varna
2902
+ shumen
2903
+ razgrad
2904
+ dobrich
2905
+ silistra
2906
+ acre
2907
+ alagoas
2908
+ amapa
2909
+ bahia
2910
+ ceara
2911
+ distrito federal
2912
+ espirito santo
2913
+ goias
2914
+ maranhao
2915
+ minas gerais
2916
+ mato grosso do sul
2917
+ mato grosso
2918
+ paraiba
2919
+ pernambuco
2920
+ piaui
2921
+ parana
2922
+ rio de janeiro
2923
+ rio grande do norte
2924
+ rondonia
2925
+ roraima
2926
+ rio grande do sul
2927
+ sergipe
2928
+ sao paulo
2929
+ tocantins
2930
+ ontario
2931
+ new brunswick
2932
+ northwest territories
2933
+ nova scotia
2934
+ prince edward island
2935
+ manitoba
2936
+ alberta
2937
+ yukon
2938
+ nunavut
2939
+ saskatchewan
2940
+ british columbia
2941
+ newfoundland and labrador
2942
+ de atacama
2943
+ de valparaiso
2944
+ del maule
2945
+ del bio-bio
2946
+ de coquimbo
2947
+ del libertador b ohiggins
2948
+ de los rios
2949
+ de antofagasta
2950
+ de la araucania
2951
+ andean southern ice field (campo de hielo sur)
2952
+ de aisen
2953
+ metropolitana
2954
+ de magallanes y antartica chilena
2955
+ de los lagos
2956
+ de tarapaca
2957
+ glarus
2958
+ grisons
2959
+ zug
2960
+ ticino
2961
+ appenzell innerrhoden
2962
+ valais
2963
+ schaffhausen
2964
+ canton of geneva
2965
+ basel-stadt
2966
+ fribourg
2967
+ schwyz
2968
+ canton of zurich
2969
+ nidwalden
2970
+ lucerne
2971
+ vaud
2972
+ aargau
2973
+ thurgau
2974
+ sankt gallen
2975
+ jura
2976
+ appenzell ausserrhoden
2977
+ canton of neuchâtel
2978
+ basel-landschaft
2979
+ solothurn
2980
+ obwalden
2981
+ uri
2982
+ bern
2983
+ famagusta
2984
+ kyrenia
2985
+ nicosia
2986
+ paphos district
2987
+ larnaca district
2988
+ jihoceský
2989
+ zlínský
2990
+ south moravian region
2991
+ vysocina
2992
+ plzenský
2993
+ praha
2994
+ pardubický
2995
+ karlovarský
2996
+ moravskoslezský
2997
+ olomoucký
2998
+ central bohemian region
2999
+ královéhradecký
3000
+ Ústecký
3001
+ liberecký
3002
+ saarland
3003
+ minor islands of germany
3004
+ mecklenburg-vorpommern
3005
+ rheinland-pfalz
3006
+ berlin
3007
+ hamburg
3008
+ nordrhein-westfalen
3009
+ schleswig-holstein
3010
+ sachsen-anhalt
3011
+ sachsen
3012
+ hessen
3013
+ free state of thuringia
3014
+ brandenburg
3015
+ niedersachsen
3016
+ bremen
3017
+ baden-württemberg region
3018
+ bayern
3019
+ syddanmark
3020
+ hovedstaden
3021
+ region zealand
3022
+ nordjylland
3023
+ midtjylland
3024
+ minor islands of denmark
3025
+ araba / Álava
3026
+ araba/Álava
3027
+ albacete
3028
+ alicante
3029
+ almeria
3030
+ avila
3031
+ badajoz
3032
+ balearic islands
3033
+ barcelona
3034
+ burgos
3035
+ caceres
3036
+ cadiz
3037
+ castellon
3038
+ ciudad real
3039
+ corunna
3040
+ cuenca
3041
+ girona
3042
+ guadalajara
3043
+ gipuzkoa
3044
+ huelva
3045
+ huesca
3046
+ jaen
3047
+ leon
3048
+ lleida
3049
+ lugo
3050
+ madrid
3051
+ malaga
3052
+ murcia
3053
+ navarre
3054
+ ourense
3055
+ asturias
3056
+ palencia
3057
+ las palmas
3058
+ pontevedra
3059
+ salamanca
3060
+ santa cruz de tenerife
3061
+ cantabria
3062
+ segovia
3063
+ seville
3064
+ soria
3065
+ tarragona
3066
+ teruel
3067
+ valencia
3068
+ valladolid
3069
+ biscay
3070
+ zamora
3071
+ zaragoza
3072
+ ceuta
3073
+ melilla
3074
+ conjurisdicciones interprovinciales
3075
+ saaremaa
3076
+ võru
3077
+ valgamaa
3078
+ põlva county
3079
+ estonia
3080
+ tartumaa
3081
+ hiiumaa
3082
+ pärnu county
3083
+ viljandimaa
3084
+ lääne
3085
+ lääne county
3086
+ jõgeva county
3087
+ raplamaa
3088
+ harjumaa
3089
+ järva county
3090
+ lääne-viru county
3091
+ ida-virumaa
3092
+ pskov
3093
+ uusimaa
3094
+ southwest finland
3095
+ tavastia proper
3096
+ kymenlaakso
3097
+ päijänne tavastia
3098
+ paijanne tavastia
3099
+ satakunta
3100
+ pirkanmaa
3101
+ south karelia
3102
+ southern savonia
3103
+ southern ostrobothnia
3104
+ central finland
3105
+ ostrobothnia
3106
+ central ostrobothnia
3107
+ northern savonia
3108
+ north karelen
3109
+ kainuu
3110
+ northern ostrobothnia
3111
+ lapland
3112
+ ain
3113
+ hauts-de-seine
3114
+ deux-sèvres
3115
+ corse-du-sud
3116
+ pyrénées-orientales
3117
+ creuse
3118
+ landes
3119
+ vienne
3120
+ eure-et-loir
3121
+ aube
3122
+ vaucluse
3123
+ hautes-pyrénées
3124
+ corrèze
3125
+ tarn-et-garonne
3126
+ bas-rhin
3127
+ vosges
3128
+ haute-savoie
3129
+ loire-atlantique
3130
+ doubs
3131
+ gironde
3132
+ aisne
3133
+ seine-maritime
3134
+ pas-de-calais
3135
+ haute-marne
3136
+ savoie
3137
+ moselle
3138
+ charente-maritime
3139
+ sarthe
3140
+ eure
3141
+ oise
3142
+ allier
3143
+ meuse
3144
+ aveyron
3145
+ ardennes
3146
+ indre
3147
+ var
3148
+ alpes-maritimes
3149
+ maine-et-loire
3150
+ dordogne
3151
+ ariège
3152
+ lot-et-garonne
3153
+ meurthe-et-moselle
3154
+ loir-et-cher
3155
+ territoire de belfort
3156
+ nièvre
3157
+ somme
3158
+ yvelines
3159
+ essonne
3160
+ loire
3161
+ haut-rhin
3162
+ seine-et-marne
3163
+ lot
3164
+ haute-garonne
3165
+ mayenne
3166
+ marne
3167
+ vendée
3168
+ haute-loire
3169
+ hérault
3170
+ ardèche
3171
+ isère
3172
+ gard
3173
+ charente
3174
+ bouches-du-rhône
3175
+ val-d'oise
3176
+ lozère
3177
+ val-de-marne
3178
+ ille-et-vilaine
3179
+ gers
3180
+ puy-de-dôme
3181
+ seine-saint-denis
3182
+ loiret
3183
+ aude
3184
+ manche
3185
+ haute-corse
3186
+ paris
3187
+ yonne
3188
+ morbihan
3189
+ alpes-de-haute-provence
3190
+ côtes-d'armor
3191
+ cantal
3192
+ drôme
3193
+ orne
3194
+ haute-vienne
3195
+ pyrénées-atlantiques
3196
+ saône-et-loire
3197
+ cher
3198
+ finistère
3199
+ haute-saône
3200
+ cote d'or
3201
+ rhône
3202
+ indre-et-loire
3203
+ calvados
3204
+ hautes-alpes
3205
+ tarn
3206
+ calderdale
3207
+ pembrokeshire
3208
+ bury
3209
+ limavady
3210
+ redcar and cleveland
3211
+ ballymoney
3212
+ craigavon
3213
+ barking and dagenham
3214
+ cumbria
3215
+ sutton
3216
+ shetland islands
3217
+ poole
3218
+ milton keynes
3219
+ kensington and chelsea
3220
+ wandsworth
3221
+ tameside
3222
+ ealing
3223
+ hackney
3224
+ wakefield
3225
+ north lanarkshire
3226
+ oldham
3227
+ newcastle upon tyne
3228
+ warrington
3229
+ cookstown
3230
+ york
3231
+ greenwich
3232
+ hillingdon
3233
+ city of leicester
3234
+ down
3235
+ na h-eileanan an iar
3236
+ east lothian
3237
+ wigan
3238
+ swindon
3239
+ dumfries and galloway
3240
+ highland
3241
+ county of herefordshire
3242
+ slough
3243
+ bexley
3244
+ harrow
3245
+ devon
3246
+ stockton-on-tees
3247
+ city of derby
3248
+ bolton
3249
+ cardiff
3250
+ north somerset
3251
+ inverclyde
3252
+ city of wolverhampton
3253
+ dorset
3254
+ north yorkshire
3255
+ fermanagh
3256
+ northumberland
3257
+ bath and north east somerset
3258
+ north down
3259
+ isle of anglesey
3260
+ flintshire
3261
+ havering
3262
+ nottinghamshire
3263
+ lancashire
3264
+ orkney islands
3265
+ perth and kinross
3266
+ oxfordshire
3267
+ cambridgeshire
3268
+ rotherham
3269
+ omagh
3270
+ argyll and bute
3271
+ moray
3272
+ leicestershire
3273
+ newtownabbey
3274
+ stockport
3275
+ dundee city
3276
+ warwickshire
3277
+ vale of glamorgan
3278
+ isles of scilly
3279
+ larne
3280
+ ards
3281
+ cheshire west and chester
3282
+ gloucestershire
3283
+ wiltshire
3284
+ staffordshire
3285
+ norfolk
3286
+ south lanarkshire
3287
+ dungannon
3288
+ hartlepool
3289
+ powys
3290
+ halton
3291
+ blackburn with darwen
3292
+ stirling
3293
+ blaenau gwent
3294
+ castlereagh
3295
+ rhondda, cynon, taf
3296
+ belfast
3297
+ north tyneside
3298
+ brent
3299
+ croydon
3300
+ somerset
3301
+ city of portsmouth
3302
+ torbay
3303
+ clackmannanshire
3304
+ armagh city and district
3305
+ barnsley
3306
+ renfrewshire
3307
+ moyle
3308
+ carrickfergus
3309
+ east renfrewshire
3310
+ city of westminster
3311
+ city of bristol
3312
+ southend-on-sea
3313
+ islington
3314
+ derbyshire
3315
+ city and county of the city of london
3316
+ east ayrshire
3317
+ luton
3318
+ st. helens
3319
+ merton
3320
+ angus
3321
+ east sussex
3322
+ west dunbartonshire
3323
+ neath port talbot
3324
+ haringey
3325
+ north east lincolnshire
3326
+ city of plymouth
3327
+ middlesbrough
3328
+ west berkshire
3329
+ hounslow
3330
+ ballymena
3331
+ richmond upon thames
3332
+ walsall
3333
+ gateshead
3334
+ darlington
3335
+ antrim
3336
+ city of southampton
3337
+ thurrock
3338
+ torfaen
3339
+ caerphilly
3340
+ cheshire east
3341
+ trafford
3342
+ windsor and maidenhead
3343
+ gwynedd
3344
+ wokingham
3345
+ liverpool
3346
+ essex
3347
+ lisburn
3348
+ aberdeen city
3349
+ buckinghamshire
3350
+ bromley
3351
+ scottish borders
3352
+ south ayrshire
3353
+ west lothian
3354
+ aberdeenshire
3355
+ worcestershire
3356
+ bridgend
3357
+ solihull
3358
+ rochdale
3359
+ waltham forest
3360
+ bedford
3361
+ birmingham
3362
+ southwark
3363
+ isle of wight
3364
+ rutland
3365
+ hammersmith and fulham
3366
+ monmouthshire
3367
+ ceredigion
3368
+ derry
3369
+ conwy
3370
+ leeds
3371
+ northamptonshire
3372
+ hertfordshire
3373
+ sefton
3374
+ lewisham
3375
+ denbighshire
3376
+ midlothian
3377
+ glasgow city
3378
+ merthyr tydfil
3379
+ city of stoke-on-trent
3380
+ kent
3381
+ shropshire
3382
+ hampshire
3383
+ east dunbartonshire
3384
+ enfield
3385
+ kingston upon thames
3386
+ north ayrshire
3387
+ south tyneside
3388
+ falkirk
3389
+ bournemouth
3390
+ magherafelt
3391
+ newham
3392
+ surrey
3393
+ south gloucestershire
3394
+ north lincolnshire
3395
+ telford and wrekin
3396
+ kirklees
3397
+ redbridge
3398
+ coleraine
3399
+ dudley
3400
+ knowsley
3401
+ city of kingston upon hull
3402
+ bradford
3403
+ tower hamlets
3404
+ doncaster
3405
+ reading
3406
+ sunderland
3407
+ east riding of yorkshire
3408
+ salford
3409
+ bracknell forest
3410
+ the city of brighton and hove
3411
+ strabane
3412
+ sandwell
3413
+ suffolk
3414
+ wirral
3415
+ county durham
3416
+ lincolnshire
3417
+ lambeth
3418
+ sheffield
3419
+ banbridge
3420
+ cornwall
3421
+ swansea
3422
+ medway
3423
+ newry and mourne
3424
+ coventry
3425
+ fife
3426
+ newport
3427
+ wrexham
3428
+ west sussex
3429
+ city of edinburgh
3430
+ central bedfordshire
3431
+ city of peterborough
3432
+ camden
3433
+ carmarthenshire
3434
+ blackpool
3435
+ city of nottingham
3436
+ barnet
3437
+ gibraltar
3438
+ western greece
3439
+ west macedonia
3440
+ epirus
3441
+ central macedonia
3442
+ peloponnese
3443
+ crete
3444
+ south aegean
3445
+ central greece
3446
+ thessaly
3447
+ ionian islands
3448
+ attica
3449
+ east macedonia and thrace
3450
+ nuna allanngutsaaaliugaq
3451
+ kommune kujalleq
3452
+ qeqqata kommunia
3453
+ qaasuitsup kommunia
3454
+ kommuneqarfik sermersooq
3455
+ vukovarsko-srijemska
3456
+ licko-senjska
3457
+ disputed areas of croatia
3458
+ brodsko-posavska
3459
+ bjelovarsko-bilogorska
3460
+ sibenik
3461
+ pozega-slavonija
3462
+ zagrebacka
3463
+ sisacko-moslavacka
3464
+ dubrovacko-neretvanska
3465
+ splitsko-dalmatinska
3466
+ inland waters of croatia
3467
+ primorsko-goranska
3468
+ viroviticko-podravska
3469
+ koprivnica-krizevci
3470
+ osjecko-baranjska
3471
+ zadarska
3472
+ grad zagreb
3473
+ krapinsko-zagorska
3474
+ karlovacka
3475
+ medimurska
3476
+ istarska
3477
+ varazdin
3478
+ baranya
3479
+ tolna
3480
+ somogy
3481
+ zala
3482
+ csongrád
3483
+ bács-kiskun county
3484
+ vas
3485
+ veszprém
3486
+ bekes
3487
+ fejér
3488
+ budapest
3489
+ komárom-esztergom
3490
+ jász-nagykun-szolnok county
3491
+ gyor-moson-sopron
3492
+ pest
3493
+ hajdú-bihar county
3494
+ heves
3495
+ nógrád
3496
+ szabolcs-szatmár-bereg
3497
+ borsod-abauj zemplen county
3498
+ cork
3499
+ cork city
3500
+ waterford city
3501
+ waterford
3502
+ kerry
3503
+ wexford
3504
+ south tipperary
3505
+ carlow
3506
+ kilkenny
3507
+ limerick city
3508
+ limerick
3509
+ wicklow
3510
+ dunlaoghaire-rathdown
3511
+ laois
3512
+ south dublin
3513
+ dublin city
3514
+ north tipperary
3515
+ kildare
3516
+ galway
3517
+ clare
3518
+ offaly
3519
+ fingal
3520
+ galway city
3521
+ westmeath
3522
+ meath
3523
+ louth
3524
+ longford
3525
+ mayo
3526
+ roscommon
3527
+ monaghan
3528
+ cavan
3529
+ leitrim
3530
+ sligo
3531
+ donegal
3532
+ torino
3533
+ vercelli
3534
+ novara
3535
+ cuneo
3536
+ asti
3537
+ alessandria
3538
+ valle d'aosta
3539
+ imperia
3540
+ savona
3541
+ genova
3542
+ la spezia
3543
+ varese
3544
+ como
3545
+ sondrio
3546
+ milano
3547
+ bergamo
3548
+ brescia
3549
+ pavia
3550
+ cremona
3551
+ mantova
3552
+ bolzano/bozen
3553
+ trento
3554
+ verona
3555
+ vicenza
3556
+ belluno
3557
+ treviso
3558
+ venezia
3559
+ padova
3560
+ rovigo
3561
+ udine
3562
+ gorizia
3563
+ trieste
3564
+ piacenza
3565
+ parma
3566
+ reggio nell'emilia
3567
+ modena
3568
+ bologna
3569
+ ferrara
3570
+ ravenna
3571
+ forli'-cesena
3572
+ pesaro e urbino
3573
+ ancona
3574
+ macerata
3575
+ ascoli piceno
3576
+ massa-carrara
3577
+ lucca
3578
+ pistoia
3579
+ firenze
3580
+ livorno
3581
+ pisa
3582
+ arezzo
3583
+ siena
3584
+ grosseto
3585
+ perugia
3586
+ terni
3587
+ viterbo
3588
+ rieti
3589
+ rome
3590
+ latina
3591
+ frosinone
3592
+ caserta
3593
+ benevento
3594
+ napoli
3595
+ avellino
3596
+ salerno
3597
+ l'aquila
3598
+ teramo
3599
+ pescara
3600
+ chieti
3601
+ campobasso
3602
+ foggia
3603
+ taranto
3604
+ brindisi
3605
+ lecce
3606
+ potenza
3607
+ matera
3608
+ cosenza
3609
+ catanzaro
3610
+ reggio di calabria
3611
+ trapani
3612
+ palermo
3613
+ messina
3614
+ agrigento
3615
+ caltanissetta
3616
+ enna
3617
+ catania
3618
+ ragusa
3619
+ siracusa
3620
+ sassari
3621
+ nuoro
3622
+ cagliari
3623
+ pordenone
3624
+ isernia
3625
+ oristano
3626
+ biella
3627
+ lecco
3628
+ lodi
3629
+ rimini
3630
+ prato
3631
+ crotone
3632
+ vibo valentia
3633
+ verbano-cusio-ossola
3634
+ olbia-tempio
3635
+ ogliastra
3636
+ carbonia-iglesias
3637
+ monza e della brianza
3638
+ fermo
3639
+ barletta-andria-trani
3640
+ liechtenstein
3641
+ telšiai county
3642
+ klaipeda
3643
+ marijampole
3644
+ Šiauliai county
3645
+ vilnius
3646
+ alytus
3647
+ taurage
3648
+ kaunas
3649
+ panevėžys county
3650
+ utena
3651
+ rucavas
3652
+ nicas
3653
+ daugavpils
3654
+ liepaja
3655
+ priekules
3656
+ vainodes
3657
+ grobinas
3658
+ ilukstes
3659
+ aknistes
3660
+ durbes
3661
+ kraslavas
3662
+ tervetes
3663
+ auces
3664
+ rundales
3665
+ bauskas
3666
+ aglonas
3667
+ varkavas
3668
+ neretas
3669
+ aizputes
3670
+ skrundas
3671
+ viesites
3672
+ jelgava
3673
+ brocenu
3674
+ jekabpils
3675
+ dagdas
3676
+ pavilostas
3677
+ iecavas
3678
+ ozolnieku
3679
+ olaines
3680
+ jaunpils
3681
+ dobeles
3682
+ preilu
3683
+ saldus
3684
+ vecumnieku
3685
+ livanu
3686
+ jaunjelgavas
3687
+ salas
3688
+ baldones
3689
+ alsungas
3690
+ aizkraukles
3691
+ jelgavas
3692
+ skriveru
3693
+ riebinu
3694
+ zilupes
3695
+ krustpils
3696
+ lielvardes
3697
+ kekavas
3698
+ rezekne
3699
+ marupes
3700
+ keguma
3701
+ salaspils
3702
+ ikšķile
3703
+ kokneses
3704
+ babites
3705
+ jurmala
3706
+ stopinu
3707
+ ludzas
3708
+ kuldigas
3709
+ vilanu
3710
+ varaklanu
3711
+ plavinu
3712
+ kandavas
3713
+ riga
3714
+ ropazi
3715
+ garkalnes
3716
+ ogres
3717
+ tukuma
3718
+ erglu
3719
+ ciblas
3720
+ rezeknes
3721
+ malpils
3722
+ engures
3723
+ carnikavas
3724
+ Ādaži
3725
+ incukalna
3726
+ ventspils
3727
+ mersraga
3728
+ lubanas
3729
+ siguldas
3730
+ karsavas
3731
+ madonas
3732
+ cesvaines
3733
+ ligatnes
3734
+ talsu
3735
+ sejas
3736
+ saulkrastu
3737
+ amatas
3738
+ jaunpiepalgas
3739
+ baltinavas
3740
+ rugaju
3741
+ vecpiebalgas
3742
+ cesu
3743
+ krimuldas
3744
+ raunas
3745
+ rojas
3746
+ pargaujas
3747
+ dundagas
3748
+ priekulu
3749
+ balvu
3750
+ gulbenes
3751
+ valmiera
3752
+ smiltenes
3753
+ vilakas
3754
+ kocenu
3755
+ beverinas
3756
+ limbazi
3757
+ apes
3758
+ strencu
3759
+ aluksnes
3760
+ burtnieku
3761
+ salacgrivas
3762
+ alojas
3763
+ valkas
3764
+ nauksenu
3765
+ mazsalacas
3766
+ rujienas
3767
+ monaco
3768
+ cahul
3769
+ taraclia
3770
+ cantemir
3771
+ gagauzia
3772
+ basarabeasca
3773
+ leova
3774
+ cimișlia district
3775
+ stefan voda
3776
+ mun.bender
3777
+ causeni
3778
+ hîncești district
3779
+ ialoveni
3780
+ nisporeni
3781
+ chișinău municipality
3782
+ anenii noi
3783
+ criuleni
3784
+ strășeni
3785
+ ungheni
3786
+ calarasi
3787
+ dubasari
3788
+ transnistria
3789
+ fălești district
3790
+ orhei
3791
+ glodeni
3792
+ balti
3793
+ telenești district
3794
+ sîngerei district
3795
+ rîșcani district
3796
+ rezina
3797
+ Șoldănești district
3798
+ florești district
3799
+ drocia
3800
+ raionul edineţ
3801
+ briceni
3802
+ soroca
3803
+ dondușeni district
3804
+ raionul ocniţa
3805
+ ciudad de méxico
3806
+ guerrero
3807
+ méxico
3808
+ morelos
3809
+ sinaloa
3810
+ baja california
3811
+ sonora
3812
+ baja california sur
3813
+ zacatecas
3814
+ durango
3815
+ chihuahua
3816
+ colima
3817
+ nayarit
3818
+ michoacán
3819
+ jalisco
3820
+ chiapas
3821
+ tabasco
3822
+ oaxaca
3823
+ guanajuato
3824
+ aguascalientes
3825
+ querétaro
3826
+ san luis potosí
3827
+ tlaxcala
3828
+ puebla
3829
+ hidalgo
3830
+ veracruz de ignacio de la llave
3831
+ nuevo león
3832
+ coahuila de zaragoza
3833
+ tamaulipas
3834
+ yucatán
3835
+ campeche
3836
+ quintana roo
3837
+ zurrieq
3838
+ qrendi
3839
+ safi
3840
+ birzebbugia
3841
+ kirkop
3842
+ mqabba
3843
+ marsaxlokk
3844
+ gudja
3845
+ ghaxaq
3846
+ santa lucija
3847
+ siggiewi (citta' ferdinand)
3848
+ dingli
3849
+ zejtun (citta' beland)
3850
+ tarxien
3851
+ luqa
3852
+ fgura
3853
+ marsaskala
3854
+ zebbug (malta) (citta' rohan)
3855
+ bormla (citta' cospicua)
3856
+ mdina (citta' notabile)
3857
+ marsa
3858
+ qormi (citta' pinto)
3859
+ zabbar (citta' hompesch)
3860
+ paola
3861
+ mtarfa
3862
+ hamrun
3863
+ isla (citta' invicta)
3864
+ xghajra
3865
+ santa venera
3866
+ birgu (citta' vittoriosa)
3867
+ pieta'
3868
+ attard
3869
+ floriana
3870
+ balzan
3871
+ kalkara
3872
+ ta' xbiex
3873
+ lija
3874
+ rabat (malta)
3875
+ birkirkara
3876
+ msida
3877
+ valletta (citta' umilissima)
3878
+ gzira
3879
+ iklin
3880
+ san gwann
3881
+ sliema
3882
+ mosta
3883
+ san giljan
3884
+ gharghur
3885
+ swieqi
3886
+ mgarr
3887
+ naxxar
3888
+ san pawl il-bahar
3889
+ mellieha
3890
+ ghajnsielem u kemmuna
3891
+ sannat
3892
+ munxar
3893
+ fontana
3894
+ xewkija
3895
+ rabat (ghawdex) (citta' vittoria)
3896
+ qala
3897
+ kercem
3898
+ san lawrenz
3899
+ nadur
3900
+ xaghra
3901
+ gharb
3902
+ ghasri
3903
+ zebbug (ghawdex)
3904
+ noord-brabant
3905
+ zeeland
3906
+ utrecht
3907
+ zuid-holland
3908
+ gelderland
3909
+ overijssel
3910
+ flevoland
3911
+ drenthe
3912
+ noord-holland
3913
+ friesland
3914
+ groningen
3915
+ vest-agder
3916
+ aust-agder
3917
+ vestfold
3918
+ Østfold
3919
+ rogaland
3920
+ oslo
3921
+ telemark
3922
+ akershus
3923
+ hordaland
3924
+ buskerud
3925
+ oppland
3926
+ sogn og fjordane
3927
+ hedmark
3928
+ møre og romsdal
3929
+ sør-trøndelag
3930
+ nord-trøndelag
3931
+ nordland
3932
+ troms
3933
+ finnmark
3934
+ northland region
3935
+ nelson region
3936
+ area outside region
3937
+ west coast region
3938
+ bay of plenty region
3939
+ canterbury region
3940
+ marlborough region
3941
+ hawke's bay region
3942
+ taranaki region
3943
+ otago region
3944
+ southland region
3945
+ chatham islands
3946
+ tasman region
3947
+ waikato region
3948
+ wellington region
3949
+ gisborne region
3950
+ auckland region
3951
+ manawatu-wanganui region
3952
+ mazowieckie
3953
+ Łódź voivodeship
3954
+ pomorskie
3955
+ zachodniopomorskie
3956
+ silesian voivodeship
3957
+ podlaskie
3958
+ Świętokrzyskie voivodship
3959
+ lesser poland voivodeship
3960
+ podkarpackie
3961
+ dolnoslaskie
3962
+ warmian-masurian voivodeship
3963
+ lubelskie
3964
+ opolskie
3965
+ kujawsko-pomorskie
3966
+ greater poland
3967
+ lubuskie
3968
+ puerto rico
3969
+ ilha da madeira
3970
+ ilha de porto santo
3971
+ faro
3972
+ beja
3973
+ setúbal district
3974
+ Évora
3975
+ lisboa
3976
+ portalegre
3977
+ santarém
3978
+ leiria
3979
+ castelo branco
3980
+ coimbra
3981
+ guarda
3982
+ viseu
3983
+ aveiro
3984
+ porto
3985
+ braganza district
3986
+ braga
3987
+ vila real
3988
+ ilha de santa maria
3989
+ viana do castelo
3990
+ ilha terceira
3991
+ ilha do pico
3992
+ ilha do faial
3993
+ ilha da graciosa
3994
+ ilha das flores
3995
+ ilha do corvo
3996
+ qalqilya
3997
+ salfit
3998
+ ramallah
3999
+ hebron
4000
+ deir al-balah
4001
+ khan younis
4002
+ rafah
4003
+ jenin
4004
+ tulkarem
4005
+ tubas
4006
+ nablus
4007
+ jericho
4008
+ bethlahem
4009
+ dolj
4010
+ teleorman
4011
+ giurgiu
4012
+ bucharest
4013
+ mehedinti
4014
+ olt
4015
+ ilfov
4016
+ gorj
4017
+ ialomita
4018
+ caras-severin
4019
+ constanta
4020
+ dâmbovita
4021
+ vâlcea
4022
+ arges
4023
+ tulcea
4024
+ timis
4025
+ prahova
4026
+ braila
4027
+ buzau
4028
+ hunedoara
4029
+ brasov
4030
+ sibiu
4031
+ arad
4032
+ alba
4033
+ covasna
4034
+ vrancea
4035
+ galati
4036
+ bacau
4037
+ mures
4038
+ salaj
4039
+ cluj
4040
+ harghita
4041
+ bihor
4042
+ vaslui
4043
+ neamt
4044
+ bistrita-nasaud
4045
+ satu mare
4046
+ maramureş county
4047
+ iasi
4048
+ suceava
4049
+ botosani
4050
+ samara
4051
+ udmurt
4052
+ chelyabinsk
4053
+ chukotka
4054
+ bashkortostan
4055
+ tomsk
4056
+ belgorod
4057
+ smolensk
4058
+ stavropol
4059
+ tambov
4060
+ tyumen
4061
+ altai
4062
+ sakha
4063
+ oryol
4064
+ vologda
4065
+ leningrad
4066
+ north ossetia-alania
4067
+ murmansk
4068
+ mordovia
4069
+ magadan
4070
+ kirov
4071
+ ulyanovsk
4072
+ karachay-cherkess
4073
+ lipetsk
4074
+ khanty-mansi
4075
+ novosibirsk
4076
+ yamalo-nenets
4077
+ khabarovsk
4078
+ gorno-altay
4079
+ amur
4080
+ kalmykia
4081
+ kamchatka
4082
+ yaroslavl
4083
+ ryazan
4084
+ arkhangelsk
4085
+ perm
4086
+ vladimir
4087
+ astrakhan
4088
+ yevrey
4089
+ saratov
4090
+ penza
4091
+ zabaykalsky
4092
+ kursk
4093
+ chechnya
4094
+ primorsky
4095
+ krasnodar
4096
+ rostov
4097
+ tuva
4098
+ mari el
4099
+ tver
4100
+ voronezh
4101
+ nizhny novgorod
4102
+ khakassia
4103
+ tatarstan
4104
+ saint petersburg
4105
+ komi
4106
+ orenburg
4107
+ moscow city
4108
+ kabardino-balkar
4109
+ novgorod
4110
+ volgograd
4111
+ kemerovo
4112
+ chuvash
4113
+ kostroma
4114
+ bryansk
4115
+ sakhalin
4116
+ kaluga
4117
+ adygea
4118
+ krasnoyarsk
4119
+ ivanovo
4120
+ kurgan
4121
+ moscow oblast
4122
+ irkutsk
4123
+ sverdlovsk
4124
+ omsk
4125
+ karelia
4126
+ dagestan
4127
+ tula
4128
+ buryat
4129
+ nenets
4130
+ kaliningrad
4131
+ pcinja
4132
+ morava
4133
+ north bačka district
4134
+ branicevo district
4135
+ minor islands of serbia
4136
+ rasinski upravni okrug
4137
+ zlatiborski upravni okrug
4138
+ severnobanatski upravni okrug
4139
+ toplica
4140
+ podunavski upravni okrug
4141
+ raska
4142
+ zajecar
4143
+ grad beograd
4144
+ nisava
4145
+ sremski upravni okrug
4146
+ south backa
4147
+ srednjobanatski upravni okrug
4148
+ pirotski upravni okrug
4149
+ pomoravski upravni okrug
4150
+ kolubarski upravni okrug
4151
+ sumadija
4152
+ south banat
4153
+ jablanica
4154
+ borski upravni okrug
4155
+ macva
4156
+ trenciansky kraj
4157
+ presov
4158
+ zilina
4159
+ banska bystrica
4160
+ kosice
4161
+ nitriansky kraj
4162
+ trnava
4163
+ bratislava
4164
+ scania
4165
+ blekinge
4166
+ kronoberg
4167
+ halland
4168
+ jonkoping
4169
+ kalmar
4170
+ gotland
4171
+ ostergotland
4172
+ vastra gotaland
4173
+ sodermanland
4174
+ orebro
4175
+ vastmanland
4176
+ stockholm
4177
+ varmland
4178
+ uppsala
4179
+ dalarna
4180
+ gavleborg
4181
+ vasternorrland
4182
+ jamtland
4183
+ vasterbotten county
4184
+ norrbotten
4185
+ wyoming
4186
+ pennsylvania
4187
+ ohio
4188
+ new mexico
4189
+ rhode island
4190
+ oregon
4191
+ wisconsin
4192
+ north dakota
4193
+ nevada
4194
+ georgia
4195
+ new york
4196
+ arkansas
4197
+ kansas
4198
+ nebraska
4199
+ utah
4200
+ alaska
4201
+ mississippi
4202
+ oklahoma
4203
+ west virginia
4204
+ michigan
4205
+ colorado
4206
+ new jersey
4207
+ delaware
4208
+ washington
4209
+ connecticut
4210
+ california
4211
+ kentucky
4212
+ massachusetts
4213
+ florida
4214
+ idaho
4215
+ missouri
4216
+ hawaii
4217
+ alabama
4218
+ south carolina
4219
+ new hampshire
4220
+ south dakota
4221
+ illinois
4222
+ tennessee
4223
+ indiana
4224
+ iowa
4225
+ arizona
4226
+ minnesota
4227
+ louisiana
4228
+ district of columbia
4229
+ virginia
4230
+ texas
4231
+ vermont
4232
+ maine
4233
+ north carolina
4234
+ donetsk
4235
+ vinnytsia
4236
+ sumy
4237
+ zhytomyr
4238
+ dnipropetrovs'k
4239
+ kiev
4240
+ luhansk
4241
+ rivne
4242
+ volyn
4243
+ mykolaiv
4244
+ ivano-frankivs'k
4245
+ chernihiv
4246
+ khmelnytskyi
4247
+ ternopil
4248
+ zakarpattia
4249
+ kherson
4250
+ zaporizhia
4251
+ crimea
4252
+ poltava
4253
+ cherkasy
4254
+ chernivtsi
4255
+ kharkiv
4256
+ odessa
4257
+ kirovohrad
4258
+ lviv
4259
+ vatican
4260
+ mpumalanga
4261
+ northern cape
4262
+ western cape
4263
+ kwazulu-natal
4264
+ free state
4265
+ gauteng
4266
+ eastern cape
4267
+ limpopo
4268
+ quebec
4269
+ kédougou
4270
+ khashuris raioni
4271
+ marneulis raioni
4272
+ akhmetis raioni
4273
+ sabaragamuwa
4274
+ talofofo
4275
+ borjomis raioni
4276
+ tqibuli
4277
+ madhyamanchal
4278
+ zlitan
4279
+ qvarlis raioni
4280
+ dmanisis raioni
4281
+ lagodekhis raioni
4282
+ senakis raioni
4283
+ adigenis raioni
4284
+ madhya pashchimanchal
4285
+ davao region
4286
+ mimaropa
4287
+ zugdidi
4288
+ woqooyi galbeed
4289
+ ha tay
4290
+ tsalenjikhis raioni
4291
+ tsqaltubo
4292
+ kharagaulis raioni
4293
+ orenburg oblast
4294
+ onis raioni
4295
+ ingushetia republic
4296
+ kaesong-si
4297
+ aspindzis raioni
4298
+ akhalgoris raioni
4299
+ lentekhis raioni
4300
+ sagarejos raioni
4301
+ qazbegis raioni
4302
+ mestiis raioni
4303
+ gori
4304
+ sighnaghis raioni
4305
+ kaspis raioni
4306
+ sudur pashchimanchal
4307
+ tarhunah
4308
+ autonomous region in muslim mindanao
4309
+ ninotsmindis raioni
4310
+ faranah
4311
+ zamboanga peninsula
4312
+ nanumanga
4313
+ niutao
4314
+ nukulaelae
4315
+ nukufetau
4316
+ nanumea
4317
+ togdheer
4318
+ sawfajjin
4319
+ bolnisis raioni
4320
+ naftalan
4321
+ yafran
4322
+ uva
4323
+ north central
4324
+ purwanchal
4325
+ pashchimanchal
4326
+ aur
4327
+ lae
4328
+ lib
4329
+ nui
4330
+ north western
4331
+ gardabanis raioni
4332
+ funafuti
4333
+ kwajalein
4334
+ majuro
4335
+ west falkland
4336
+ inarajan
4337
+ sinajana
4338
+ dededo
4339
+ yigo
4340
+ agat
4341
+ merizo
4342
+ umatac
4343
+ santa rita
4344
+ piti
4345
+ asan
4346
+ agana
4347
+ atafu
4348
+ nukunonu
4349
+ fakaofo
4350
+ north eastern
4351
+ mangilao
4352
+ autonomna pokrajina vojvodina
4353
+ zapadna bachka
4354
+ bor
4355
+ severna bachka
4356
+ moravica
4357
+ podunavlje
4358
+ zajechar
4359
+ juzhna bachka
4360
+ srednji banat
4361
+ pirot
4362
+ machva
4363
+ rashka
4364
+ kolubara
4365
+ zlatibor
4366
+ rasina
4367
+ pchinja
4368
+ juzhni banat
4369
+ nishava
4370
+ severni banat
4371
+ beograd
4372
+ srem
4373
+ shumadija
4374
+ pomoravlje
4375
+ republika srpska
4376
+ federacija bosne i hercegovine
4377
+ daikondi
4378
+ tiranë
4379
+ mymensingh
4380
+ rumonge
4381
+ tbong khmum
4382
+ arica and parinacota
4383
+ kirkuk
4384
+ halabja
4385
+ osh city
4386
+ naypyidaw
4387
+ kavango east
4388
+ zambezi
4389
+ kavango west
4390
+ panamá oeste
4391
+ jiwaka
4392
+ hela
4393
+ puno
4394
+ sool
4395
+ sanaag
4396
+ awdal
4397
+ west kordofan
4398
+ socotra
4399
+ sud-ouest
4400
+ est
4401
+ hauts bassins
4402
+ sahel
4403
+ plateau central
4404
+ centre ouest
4405
+ centre sud
4406
+ cascades
4407
+ centre est
4408
+ boucle du mouhoun
4409
+ centre nord
4410
+ maekel region
4411
+ anseba region
4412
+ imereti
4413
+ shida kartli
4414
+ mtskheta-mtianeti
4415
+ tbilisi
4416
+ kvemo kartli
4417
+ samtskhe-javakheti
4418
+ guria
4419
+ racha-lochkhumi-kvemo svaneti
4420
+ telangana
4421
+ kalimantan utara
4422
+ montagnes
4423
+ gôh-djiboua
4424
+ lagunes
4425
+ lacs
4426
+ bafing region
4427
+ comoé
4428
+ abidjan
4429
+ sassandra-marahoué
4430
+ yamoussoukro
4431
+ four
4432
+ five
4433
+ six
4434
+ seven
4435
+ one
4436
+ two
4437
+ three
4438
+ ariana
4439
+ kyankwanzi
4440
+ kiruhuura
4441
+ ennedi est
4442
+ ennedi ouest
4443
+ pec
4444
+ davao occidental
4445
+ dolenjska
4446
+ pomurska
4447
+ goriska
4448
+ osrednjeslovenska
4449
+ koroska
4450
+ notranjsko-kraska
4451
+ savinjska
4452
+ podravska
4453
+ spodnjeposavska
4454
+ gorenjska
4455
+ national capital district
4456
+ north aegean
4457
+ mt athos
4458
+ mt. athos
4459
+ holy mountain
4460
+ bedfordshire
4461
+ berkshire
4462
+ bristol
4463
+ cheshire
4464
+ greater manchester
4465
+ merseyside
4466
+ south yorkshire
4467
+ tyne & wear
4468
+ west midlands
4469
+ west yorkshire
4470
+ herefordshire
4471
+ durham
4472
+ south glamorgan
4473
+ west glamorgan
4474
+ mid glamorgan
4475
+ clwyd
4476
+ dyfed
4477
+ gwent
4478
+ greater london
4479
+ the stewartry of kirkcudbright
4480
+ wigtown
4481
+ tweeddale
4482
+ stirling and falkirk
4483
+ clackmannan
4484
+ inverness
4485
+ caithness
4486
+ nairn
4487
+ ross and cromarty
4488
+ sutherland
4489
+ shetland
4490
+ orkney
4491
+ western isles
4492
+ city of dundee
4493
+ ayrshire and arran
4494
+ dunbartonshire
4495
+ lanarkshire
4496
+ city of glasgow
4497
+ city of aberdeen
4498
+ kincardineshire
4499
+ banffshire
4500
+ dumfries
4501
+ roxburgh, ettrick and lauderdale
4502
+ berwickshire
4503
+ antrim and newtownabbey
4504
+ armagh city banbridge and craigavon
4505
+ causeway coast and glens
4506
+ derry city and strabane
4507
+ fermanagh and omagh
4508
+ lisburn and castlereagh
4509
+ mid and east antrim
4510
+ mid ulster
4511
+ newry mourne and down
4512
+ ards and north down
4513
+ khyber pakhtunkhwa
4514
+ south sardinia
4515
+ baalbek-hermel
4516
+ akkar
4517
+ al-shahaniya‎