umap-project 2.5.0__py3-none-any.whl → 2.6.0__py3-none-any.whl

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.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

Files changed (276) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +6 -1
  3. umap/context_processors.py +2 -1
  4. umap/decorators.py +13 -2
  5. umap/forms.py +26 -2
  6. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/br/LC_MESSAGES/django.po +252 -146
  8. umap/locale/ca/LC_MESSAGES/django.mo +0 -0
  9. umap/locale/ca/LC_MESSAGES/django.po +274 -162
  10. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
  12. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/de/LC_MESSAGES/django.po +299 -187
  14. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/el/LC_MESSAGES/django.po +215 -159
  16. umap/locale/en/LC_MESSAGES/django.po +211 -155
  17. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/es/LC_MESSAGES/django.po +255 -144
  19. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  20. umap/locale/eu/LC_MESSAGES/django.po +254 -198
  21. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  22. umap/locale/fa_IR/LC_MESSAGES/django.po +347 -235
  23. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  24. umap/locale/fr/LC_MESSAGES/django.po +216 -160
  25. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  26. umap/locale/hu/LC_MESSAGES/django.po +215 -159
  27. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  28. umap/locale/it/LC_MESSAGES/django.po +252 -146
  29. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  30. umap/locale/ms/LC_MESSAGES/django.po +252 -146
  31. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  32. umap/locale/pl/LC_MESSAGES/django.po +254 -148
  33. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  34. umap/locale/pt/LC_MESSAGES/django.po +215 -159
  35. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  36. umap/locale/sv/LC_MESSAGES/django.po +254 -143
  37. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  38. umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
  39. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  40. umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
  41. umap/migrations/0022_add_team.py +94 -0
  42. umap/models.py +45 -10
  43. umap/settings/__init__.py +2 -0
  44. umap/settings/base.py +9 -2
  45. umap/static/umap/base.css +32 -41
  46. umap/static/umap/content.css +19 -25
  47. umap/static/umap/css/icon.css +63 -37
  48. umap/static/umap/css/importers.css +1 -1
  49. umap/static/umap/css/slideshow.css +7 -5
  50. umap/static/umap/css/tableeditor.css +4 -3
  51. umap/static/umap/img/16-white.svg +1 -4
  52. umap/static/umap/img/16.svg +2 -6
  53. umap/static/umap/img/24-white.svg +4 -4
  54. umap/static/umap/img/24.svg +6 -6
  55. umap/static/umap/img/source/16-white.svg +2 -5
  56. umap/static/umap/img/source/16.svg +3 -7
  57. umap/static/umap/img/source/24-white.svg +7 -14
  58. umap/static/umap/img/source/24.svg +10 -17
  59. umap/static/umap/js/components/alerts/alert.css +20 -8
  60. umap/static/umap/js/modules/autocomplete.js +8 -12
  61. umap/static/umap/js/modules/browser.js +4 -3
  62. umap/static/umap/js/modules/caption.js +9 -11
  63. umap/static/umap/js/modules/data/features.js +993 -0
  64. umap/static/umap/js/modules/data/layer.js +1210 -0
  65. umap/static/umap/js/modules/formatter.js +12 -3
  66. umap/static/umap/js/modules/global.js +21 -5
  67. umap/static/umap/js/modules/importers/overpass.js +22 -8
  68. umap/static/umap/js/modules/permissions.js +280 -0
  69. umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
  70. umap/static/umap/js/modules/rendering/layers/base.js +105 -0
  71. umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
  72. umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
  73. umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
  74. umap/static/umap/js/modules/rendering/popup.js +99 -0
  75. umap/static/umap/js/modules/rendering/template.js +217 -0
  76. umap/static/umap/js/modules/rendering/ui.js +610 -0
  77. umap/static/umap/js/modules/rules.js +16 -3
  78. umap/static/umap/js/modules/schema.js +25 -1
  79. umap/static/umap/js/modules/share.js +66 -45
  80. umap/static/umap/js/modules/sync/updaters.js +9 -10
  81. umap/static/umap/js/modules/tableeditor.js +7 -7
  82. umap/static/umap/js/modules/ui/dialog.js +8 -4
  83. umap/static/umap/js/modules/utils.js +22 -13
  84. umap/static/umap/js/umap.controls.js +80 -146
  85. umap/static/umap/js/umap.core.js +9 -9
  86. umap/static/umap/js/umap.forms.js +41 -17
  87. umap/static/umap/js/umap.js +72 -65
  88. umap/static/umap/locale/am_ET.js +8 -2
  89. umap/static/umap/locale/am_ET.json +8 -2
  90. umap/static/umap/locale/ar.js +8 -2
  91. umap/static/umap/locale/ar.json +8 -2
  92. umap/static/umap/locale/ast.js +8 -2
  93. umap/static/umap/locale/ast.json +8 -2
  94. umap/static/umap/locale/bg.js +8 -2
  95. umap/static/umap/locale/bg.json +8 -2
  96. umap/static/umap/locale/br.js +42 -36
  97. umap/static/umap/locale/br.json +42 -36
  98. umap/static/umap/locale/ca.js +67 -61
  99. umap/static/umap/locale/ca.json +67 -61
  100. umap/static/umap/locale/cs_CZ.js +8 -2
  101. umap/static/umap/locale/cs_CZ.json +8 -2
  102. umap/static/umap/locale/da.js +8 -2
  103. umap/static/umap/locale/da.json +8 -2
  104. umap/static/umap/locale/de.js +143 -137
  105. umap/static/umap/locale/de.json +143 -137
  106. umap/static/umap/locale/el.js +54 -48
  107. umap/static/umap/locale/el.json +54 -48
  108. umap/static/umap/locale/en.js +10 -2
  109. umap/static/umap/locale/en.json +10 -2
  110. umap/static/umap/locale/en_US.json +8 -2
  111. umap/static/umap/locale/es.js +8 -2
  112. umap/static/umap/locale/es.json +8 -2
  113. umap/static/umap/locale/et.js +8 -2
  114. umap/static/umap/locale/et.json +8 -2
  115. umap/static/umap/locale/eu.js +346 -338
  116. umap/static/umap/locale/eu.json +346 -338
  117. umap/static/umap/locale/fa_IR.js +415 -407
  118. umap/static/umap/locale/fa_IR.json +415 -407
  119. umap/static/umap/locale/fi.js +8 -2
  120. umap/static/umap/locale/fi.json +8 -2
  121. umap/static/umap/locale/fr.js +11 -3
  122. umap/static/umap/locale/fr.json +11 -3
  123. umap/static/umap/locale/gl.js +8 -2
  124. umap/static/umap/locale/gl.json +8 -2
  125. umap/static/umap/locale/he.js +8 -2
  126. umap/static/umap/locale/he.json +8 -2
  127. umap/static/umap/locale/hr.js +8 -2
  128. umap/static/umap/locale/hr.json +8 -2
  129. umap/static/umap/locale/hu.js +31 -23
  130. umap/static/umap/locale/hu.json +31 -23
  131. umap/static/umap/locale/id.js +8 -2
  132. umap/static/umap/locale/id.json +8 -2
  133. umap/static/umap/locale/is.js +8 -2
  134. umap/static/umap/locale/is.json +8 -2
  135. umap/static/umap/locale/it.js +8 -2
  136. umap/static/umap/locale/it.json +8 -2
  137. umap/static/umap/locale/ja.js +8 -2
  138. umap/static/umap/locale/ja.json +8 -2
  139. umap/static/umap/locale/ko.js +8 -2
  140. umap/static/umap/locale/ko.json +8 -2
  141. umap/static/umap/locale/lt.js +8 -2
  142. umap/static/umap/locale/lt.json +8 -2
  143. umap/static/umap/locale/ms.js +8 -2
  144. umap/static/umap/locale/ms.json +8 -2
  145. umap/static/umap/locale/nl.js +8 -2
  146. umap/static/umap/locale/nl.json +8 -2
  147. umap/static/umap/locale/no.js +8 -2
  148. umap/static/umap/locale/no.json +8 -2
  149. umap/static/umap/locale/pl.js +54 -48
  150. umap/static/umap/locale/pl.json +54 -48
  151. umap/static/umap/locale/pl_PL.json +8 -2
  152. umap/static/umap/locale/pt.js +24 -18
  153. umap/static/umap/locale/pt.json +24 -18
  154. umap/static/umap/locale/pt_BR.js +8 -2
  155. umap/static/umap/locale/pt_BR.json +8 -2
  156. umap/static/umap/locale/pt_PT.js +214 -208
  157. umap/static/umap/locale/pt_PT.json +214 -208
  158. umap/static/umap/locale/ro.js +8 -2
  159. umap/static/umap/locale/ro.json +8 -2
  160. umap/static/umap/locale/ru.js +8 -2
  161. umap/static/umap/locale/ru.json +8 -2
  162. umap/static/umap/locale/sk_SK.js +8 -2
  163. umap/static/umap/locale/sk_SK.json +8 -2
  164. umap/static/umap/locale/sl.js +8 -2
  165. umap/static/umap/locale/sl.json +8 -2
  166. umap/static/umap/locale/sr.js +8 -2
  167. umap/static/umap/locale/sr.json +8 -2
  168. umap/static/umap/locale/sv.js +8 -2
  169. umap/static/umap/locale/sv.json +8 -2
  170. umap/static/umap/locale/th_TH.js +33 -27
  171. umap/static/umap/locale/th_TH.json +33 -27
  172. umap/static/umap/locale/tr.js +8 -2
  173. umap/static/umap/locale/tr.json +8 -2
  174. umap/static/umap/locale/uk_UA.js +8 -2
  175. umap/static/umap/locale/uk_UA.json +8 -2
  176. umap/static/umap/locale/vi.js +8 -2
  177. umap/static/umap/locale/vi.json +8 -2
  178. umap/static/umap/locale/vi_VN.json +8 -2
  179. umap/static/umap/locale/zh.js +8 -2
  180. umap/static/umap/locale/zh.json +8 -2
  181. umap/static/umap/locale/zh_CN.json +8 -2
  182. umap/static/umap/locale/zh_TW.Big5.json +8 -2
  183. umap/static/umap/locale/zh_TW.js +102 -96
  184. umap/static/umap/locale/zh_TW.json +102 -96
  185. umap/static/umap/map.css +111 -108
  186. umap/static/umap/nav.css +19 -10
  187. umap/static/umap/unittests/utils.js +230 -107
  188. umap/static/umap/vars.css +1 -0
  189. umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
  190. umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
  191. umap/storage.py +4 -3
  192. umap/templates/404.html +5 -1
  193. umap/templates/500.html +3 -1
  194. umap/templates/auth/user_detail.html +8 -2
  195. umap/templates/auth/user_form.html +19 -10
  196. umap/templates/auth/user_stars.html +8 -2
  197. umap/templates/base.html +1 -0
  198. umap/templates/registration/login.html +18 -3
  199. umap/templates/umap/about.html +1 -0
  200. umap/templates/umap/about_summary.html +22 -7
  201. umap/templates/umap/components/alerts/alert.html +42 -21
  202. umap/templates/umap/content.html +2 -0
  203. umap/templates/umap/content_footer.html +7 -3
  204. umap/templates/umap/css.html +1 -0
  205. umap/templates/umap/dashboard_menu.html +15 -0
  206. umap/templates/umap/home.html +14 -4
  207. umap/templates/umap/js.html +4 -9
  208. umap/templates/umap/login_popup_end.html +10 -4
  209. umap/templates/umap/map_detail.html +8 -2
  210. umap/templates/umap/map_fragment.html +3 -1
  211. umap/templates/umap/map_init.html +2 -1
  212. umap/templates/umap/map_list.html +6 -3
  213. umap/templates/umap/map_table.html +36 -12
  214. umap/templates/umap/messages.html +0 -1
  215. umap/templates/umap/navigation.html +2 -1
  216. umap/templates/umap/password_change.html +5 -1
  217. umap/templates/umap/password_change_done.html +8 -2
  218. umap/templates/umap/search.html +8 -2
  219. umap/templates/umap/search_bar.html +1 -0
  220. umap/templates/umap/team_confirm_delete.html +19 -0
  221. umap/templates/umap/team_detail.html +27 -0
  222. umap/templates/umap/team_form.html +60 -0
  223. umap/templates/umap/user_dashboard.html +7 -9
  224. umap/templates/umap/user_teams.html +51 -0
  225. umap/tests/base.py +8 -1
  226. umap/tests/conftest.py +6 -0
  227. umap/tests/fixtures/test_circles_layer.geojson +219 -0
  228. umap/tests/fixtures/test_upload_georss.xml +20 -0
  229. umap/tests/integration/conftest.py +18 -4
  230. umap/tests/integration/helpers.py +12 -0
  231. umap/tests/integration/test_anonymous_owned_map.py +23 -0
  232. umap/tests/integration/test_basics.py +29 -0
  233. umap/tests/integration/test_browser.py +20 -0
  234. umap/tests/integration/test_caption.py +20 -0
  235. umap/tests/integration/test_circles_layer.py +69 -0
  236. umap/tests/integration/test_conditional_rules.py +102 -17
  237. umap/tests/integration/test_draw_polygon.py +138 -13
  238. umap/tests/integration/test_draw_polyline.py +8 -18
  239. umap/tests/integration/test_edit_datalayer.py +3 -3
  240. umap/tests/integration/test_import.py +124 -5
  241. umap/tests/integration/test_owned_map.py +21 -13
  242. umap/tests/integration/test_querystring.py +7 -0
  243. umap/tests/integration/test_team.py +47 -0
  244. umap/tests/integration/test_tilelayer.py +19 -2
  245. umap/tests/integration/test_view_marker.py +28 -1
  246. umap/tests/integration/test_websocket_sync.py +5 -5
  247. umap/tests/test_datalayer.py +32 -7
  248. umap/tests/test_datalayer_views.py +1 -1
  249. umap/tests/test_map.py +30 -4
  250. umap/tests/test_map_views.py +2 -2
  251. umap/tests/test_statics.py +40 -0
  252. umap/tests/test_team_views.py +131 -0
  253. umap/tests/test_views.py +15 -1
  254. umap/urls.py +23 -13
  255. umap/views.py +116 -10
  256. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
  257. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
  258. umap/static/umap/js/umap.datalayer.permissions.js +0 -70
  259. umap/static/umap/js/umap.features.js +0 -1290
  260. umap/static/umap/js/umap.layer.js +0 -1837
  261. umap/static/umap/js/umap.permissions.js +0 -208
  262. umap/static/umap/js/umap.popup.js +0 -341
  263. umap/static/umap/test/TableEditor.js +0 -104
  264. umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
  265. umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
  266. umap/static/umap/vendors/leaflet/leaflet.js +0 -6
  267. umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
  268. umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
  269. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
  270. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
  271. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
  272. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
  273. umap/tests/integration/test_statics.py +0 -47
  274. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
  275. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
  276. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,18 +1,18 @@
1
- umap/__init__.py,sha256=fsg24VguiJZpIthG-J0moFIDnrsCZptYgdX4AC4T4o4,18
2
- umap/admin.py,sha256=gL6zrexmDbIKIqOKHCuAM5wtqr8FIQkRtjbcXcNyBrs,749
1
+ umap/__init__.py,sha256=8GzSnoo8fNqCifU9gtPf-ELAxKxn7FeHxhyT4tnMB1E,18
2
+ umap/admin.py,sha256=BSZydLskm87WOovG1dnJztkuFTRKA8zxffUDBzJ4PHE,864
3
3
  umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
4
4
  umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
5
- umap/context_processors.py,sha256=DhBi0zspPjiULRqrcY7zWk_5AE_9qL4ZrFO_cPtwPgc,489
6
- umap/decorators.py,sha256=ocbT65HKHy6rB8zVvuJfSYWbI7-se8wuvcuFQr-34n0,2004
5
+ umap/context_processors.py,sha256=tpFuobOUj75OaheysJMIt-Xnq0CFQOMY38e_vohX6dE,534
6
+ umap/decorators.py,sha256=95tsPKWtK-Hdy0wcUdB_UdCCiXs8onmEw6XDLj-4H-U,2373
7
7
  umap/fields.py,sha256=c32tKWKF8aThrCXDJblwo0n9n2ET6hxBYzEupfr0B4o,900
8
- umap/forms.py,sha256=bpNLMSsB1sHUcaf24MmUpwVdEz_SHy_ohfhQMoKwDzI,3128
8
+ umap/forms.py,sha256=geBn_IVvhbpfswkOZyA1RMgoD6AV33ic9N7gH1M92oE,3994
9
9
  umap/managers.py,sha256=-lBK0xYFRDfX76qDRdLnZOA8jEPYseEwIj8QOiHVM4w,243
10
10
  umap/middleware.py,sha256=p8EPW_gYW8Wh2lk0DNIAkZQbYlBZugW7Yq4iiA7L4aE,514
11
- umap/models.py,sha256=3_AHTDnh2EG_aAv16bJ99gw-mz5KfAIJZgV9XRVIbaY,17660
12
- umap/storage.py,sha256=_E4lPFb7VQb_1nN1MXXWb1-hWPs-8XnXR9I3yCQQDhY,2429
13
- umap/urls.py,sha256=U8h4_C67GXfIZCWJRiOGf2in7g8wtVefhKzj3Aw7Q-U,7012
11
+ umap/models.py,sha256=efPfdunwTjKWdnC9WGTQ2n2XAbPt7K6w37q9_A6-ogo,18811
12
+ umap/storage.py,sha256=mxFcenC1JECmpNy4H0e7vX8GObDZVXzs1RPjQFWNd5k,2473
13
+ umap/urls.py,sha256=OPJ47SOnVMmczfpMBYfKbf6UvCYWCm8sp36K2jczwUE,7476
14
14
  umap/utils.py,sha256=19i8ibi-1IXxafT4k_yOHMhD-DsPH74Ll9qw-UrUkM4,5856
15
- umap/views.py,sha256=KgKWTvXeqZl97gY2ZSKp1pj_t5tubZI8HqeM9Pc5k-c,42247
15
+ umap/views.py,sha256=ZrE5WFoTbemRscekTKoFGdYtfJp5yYydDRGsYKL5-gs,45387
16
16
  umap/websocket_server.py,sha256=igM05T95y7IqidPy8nVrCwbydj_xcCEAqwjZPb0mxyA,3023
17
17
  umap/wsgi.py,sha256=IopIgnDZbCus3XpSetTHnra9VyzWi0Y2tJo-CmfTWCY,1132
18
18
  umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
@@ -24,62 +24,62 @@ umap/locale/ast/LC_MESSAGES/django.mo,sha256=KUDcu-q8RC_ZdxpQ6I_9cXxfA4X7sCrHddB
24
24
  umap/locale/ast/LC_MESSAGES/django.po,sha256=cb9rEL6AdZKMwXrjEDThG2Wok-fHLTdWlRReg6DUdMA,8007
25
25
  umap/locale/bg/LC_MESSAGES/django.mo,sha256=YisH_thI9rdxn7wmQ5tEHComNK7TmLxP4fcDk1QGqf4,5921
26
26
  umap/locale/bg/LC_MESSAGES/django.po,sha256=nlyZIP-psj_Jqafk4E6rO5-pEMMO_awNxYoANRXPHQA,13713
27
- umap/locale/br/LC_MESSAGES/django.mo,sha256=6KrmnQh6oYmLucVs6ThT88--0gY9es8K7GCHA1tqpO0,9529
28
- umap/locale/br/LC_MESSAGES/django.po,sha256=qygsPR_EYl2JrDuCx8p0b0IHV7l99BDyAYKPDQ_Q3WY,14711
29
- umap/locale/ca/LC_MESSAGES/django.mo,sha256=1R7hKhSAkV1LM2HQ4lc54I9YwhGb_D8JddncpxK8Umg,7512
30
- umap/locale/ca/LC_MESSAGES/django.po,sha256=P5vksWA9RkuW5Xf3h9NyGQqanSNJh5c6yH5PAV4p380,13707
31
- umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=fVq09prm674l3druK5S6gu7Xbo2SAykOFMnNReJUB1M,9209
32
- umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=4HSgt9pU01lygbnOVxu_8RpbWQNjYCcmV3MD1Wo1cr4,14593
27
+ umap/locale/br/LC_MESSAGES/django.mo,sha256=B16I45ITutbDQcJhPkoMpoEWqUpT5qR2qOOFo-C0qV4,9880
28
+ umap/locale/br/LC_MESSAGES/django.po,sha256=qaXfnEsQTNfwJ4mDFzJ2XkxuT5maqpGizRQh445f0f8,17395
29
+ umap/locale/ca/LC_MESSAGES/django.mo,sha256=5BMkHNTA4hk-XIxcxMxYzqgdOlLm6ydFum2LzTOk_8A,8671
30
+ umap/locale/ca/LC_MESSAGES/django.po,sha256=MhGl8xM4myBR4qc-4xv7yQ_U_R2fZXniDZMDdgEbb0A,16705
31
+ umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=uOOwbC0LrMQz00WCbdyQnOQPVJmN-qw9DKTmah3LDLM,9100
32
+ umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=aPSw06SzysQvSd5mZU5jXJfj0vhwqag83dRbU7LPCd8,17330
33
33
  umap/locale/da/LC_MESSAGES/django.mo,sha256=iaJCTWGuBwECcHX4QuN1okL4mrFWcyQcXoxjKE8E2VA,6073
34
34
  umap/locale/da/LC_MESSAGES/django.po,sha256=1d1q7jWvVKi0a5JRDYQoLyMWRCit4VWfL-x-beJTyhQ,13103
35
- umap/locale/de/LC_MESSAGES/django.mo,sha256=6pQCiW2yT_fYvuuJ4kqNebmk4Wq6uhFgAm5Dpm1vSyA,6363
36
- umap/locale/de/LC_MESSAGES/django.po,sha256=vkpO7hxsY8C6tGyHNBMgfWRKwNxGs-IZ_BFs5Lr-hpw,13472
37
- umap/locale/el/LC_MESSAGES/django.mo,sha256=kMhgfq_Sdw6Ft7HJthDbowU-HaD4ZnCZQ8ex7pwFI8Y,15403
38
- umap/locale/el/LC_MESSAGES/django.po,sha256=SMfOSpAfJ74nZFTaQid4_q6iUNJwZPQzq1Z_XJWtcn0,20816
35
+ umap/locale/de/LC_MESSAGES/django.mo,sha256=YoS0VViwfgC1c_IRyOH_LOsY-XKcBcmlswDDaQ347S0,11176
36
+ umap/locale/de/LC_MESSAGES/django.po,sha256=Sz07ZjueAB6QcuW5QSYYtNtP7DL8d0ZpCaXNVxwQE44,18037
37
+ umap/locale/el/LC_MESSAGES/django.mo,sha256=UQ-FdgbaWf6PQu0vHio4GAdSaBg_V9vSas9PbgLK6D0,15281
38
+ umap/locale/el/LC_MESSAGES/django.po,sha256=Vnt6gZTW9VlpTwBw3LOVeHCtAA7y33uPXDeg_G3dUBg,22044
39
39
  umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
40
- umap/locale/en/LC_MESSAGES/django.po,sha256=qD78Xr3mwCmpqyU3JnraLi-s8TG-xD8cSeHI7H6xYxw,12075
41
- umap/locale/es/LC_MESSAGES/django.mo,sha256=JmXqbBXhl11fQCibH1MHU64AFsCp_pEbv8AiA94zL08,9034
42
- umap/locale/es/LC_MESSAGES/django.po,sha256=JqoNWltQ-vJNgunikXgRcuy90O7t8zROQ5NPlc8rYN4,14596
40
+ umap/locale/en/LC_MESSAGES/django.po,sha256=tNFTLf6VffWfojIWRzq9Y7CXqrQYYniFdN1pi34t218,13359
41
+ umap/locale/es/LC_MESSAGES/django.mo,sha256=FWziZWFL8XjPc36Y9fr9ipyA6kyFqstEI9lBpoaYiII,8913
42
+ umap/locale/es/LC_MESSAGES/django.po,sha256=ZvVUgXzOKGsjI_8BwF8YC2ld6mnL5IKWFe_RIhnbZr8,17226
43
43
  umap/locale/et/LC_MESSAGES/django.mo,sha256=vGMEot_LXQAQPvJESjgOFeyOgzEzYWYKP0HXQEDRDW4,5195
44
44
  umap/locale/et/LC_MESSAGES/django.po,sha256=344_8a7EH06mtLYRIGIIKiFrg8HRWmVdVMJl9pV1oso,12435
45
- umap/locale/eu/LC_MESSAGES/django.mo,sha256=VsExNd4-z3cMEeP81FLqAKGfswJaeNxA2VqqgmSdRWY,8455
46
- umap/locale/eu/LC_MESSAGES/django.po,sha256=NgtZr3prm_DXfEc6q-tKsCEvimmTb_BfR-C_Chc-pFw,15432
47
- umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=LcU15SxGd21_jDyaZoH2DIQbrD1GqcUHM81ebL1QR1k,7754
48
- umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=ASiA2CeduaQzb6TwyWbm-rCi2wN29PV_VnhOn0ifxeg,14688
45
+ umap/locale/eu/LC_MESSAGES/django.mo,sha256=guogxd6hL3SbGClGr7QPv0fr1nAaRa4YPY-7C-MAKUA,11101
46
+ umap/locale/eu/LC_MESSAGES/django.po,sha256=l9zlOHgIkGnH39nSwqf1ydTnQZ3cNdJ8Uo1iyYpBvX8,17674
47
+ umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=t4H1hC7blrnjOwIxILrqRuDsRAm_C8w3Z-KQBbCbLnk,14040
48
+ umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=hjk92LrZvSeOP-DzQpj_mp6ik97KiAXqANa7hQnOqbc,20435
49
49
  umap/locale/fi/LC_MESSAGES/django.mo,sha256=-p9kvtfjdJKrbSMEfpdvoZ6jEX_njf-0uqzlvydbhOo,4856
50
50
  umap/locale/fi/LC_MESSAGES/django.po,sha256=Saq5PpycYhmutr6CWPQNYI4UwQbSdxrCWxapwotaB3c,12823
51
- umap/locale/fr/LC_MESSAGES/django.mo,sha256=O1iKAw-p_C72yo0os9B4_AQEGP8Rlqb2shuHiU213V8,11362
52
- umap/locale/fr/LC_MESSAGES/django.po,sha256=ewfJRRsQVEq_5GP_KlX_Ljb95QicENwmp1V0gpbSEqs,17056
51
+ umap/locale/fr/LC_MESSAGES/django.mo,sha256=Sn8nXuBFRj4FltY3td4IakYJRpxnkoaZQ7ykctp7AKw,12248
52
+ umap/locale/fr/LC_MESSAGES/django.po,sha256=Y_PyuLMsk4uFUHgYXmtnEcJt6Jn5UFK5oIX_14oo9Bk,18677
53
53
  umap/locale/gl/LC_MESSAGES/django.mo,sha256=-p9_T_4C3ns1Sc1iG7zfCUstFsGX_aaxzeLwD8d8Uho,6253
54
54
  umap/locale/gl/LC_MESSAGES/django.po,sha256=w5yCwKMsmFJ7Tk-y4p2a8oOaYkyYi_aLNnWpbw04M2M,13210
55
55
  umap/locale/he/LC_MESSAGES/django.mo,sha256=HsIucdlws4u7UHqBWx6x3Rgbz7H37MQS0iMjHkvLsRo,6944
56
56
  umap/locale/he/LC_MESSAGES/django.po,sha256=EWdmr83WCPXUHKgfqsvgK1ZOVt-qZJmQuv6tGom8M4A,13820
57
57
  umap/locale/hr/LC_MESSAGES/django.mo,sha256=bBcaNSs-oqm_cjm6Bbqaph_ZNHF2_I_FP0xccwU9txI,1558
58
58
  umap/locale/hr/LC_MESSAGES/django.po,sha256=Aj3m28Ugyjq-Ih32P7dzw0M4czitDqoYpCvyNsNnEnE,9742
59
- umap/locale/hu/LC_MESSAGES/django.mo,sha256=JZ5Y29iYCHZcqvF5fQUk02RVc0OE-FN0Me3ofJUzBmM,11830
60
- umap/locale/hu/LC_MESSAGES/django.po,sha256=xw5eGdhCibH9JQTNWcnUypvC73z_EVuLPt8T9ZEZ22o,17054
59
+ umap/locale/hu/LC_MESSAGES/django.mo,sha256=VJ2x41SiwPthLvefxlzOuSveaOPQA8Ieia8ZeMzgaac,12697
60
+ umap/locale/hu/LC_MESSAGES/django.po,sha256=iMf7G_L9-4qUmGuV8v2BoXBK3X9D9l0eREuzzqHVEmg,18656
61
61
  umap/locale/id/LC_MESSAGES/django.mo,sha256=8craaGVnVbONfojnkDUUtoxMyeI2tt6GdIWeWZGcaJ8,425
62
62
  umap/locale/id/LC_MESSAGES/django.po,sha256=wmbgIN1R7vRDgAdzBu7ZHnTpg5fpB3hmJyjAzRNoN-M,8000
63
63
  umap/locale/is/LC_MESSAGES/django.mo,sha256=8Iufls8l_zQFsOYxrfuUig6Ndm2qtmZiBRDs2TlM8tI,6579
64
64
  umap/locale/is/LC_MESSAGES/django.po,sha256=tkEdFtLUQlSwn7AcpKrHJEpw__HNEHkJzqABkVk4pUk,13438
65
- umap/locale/it/LC_MESSAGES/django.mo,sha256=bFSw9toYP6AwZTATVKOr79Qg5E4pkEGNrlRE70vrusc,10137
66
- umap/locale/it/LC_MESSAGES/django.po,sha256=F-jYT2dKOJM1TaH5DK7cQPLK7swxSlPzuZ76_cue2hE,15266
65
+ umap/locale/it/LC_MESSAGES/django.mo,sha256=46JCRPCm43EDeAQUR8zPAzm00BeamLpLZ6EjhndM4i0,10042
66
+ umap/locale/it/LC_MESSAGES/django.po,sha256=SMB6mdbW8dncTP9kXsP7oXNrLlAtRLN5IAbfLVS5sCU,17798
67
67
  umap/locale/ja/LC_MESSAGES/django.mo,sha256=aul0MIkp-B49WhZofKy7_gi9wqFe_Cq3Vrq7kU_z6DA,6636
68
68
  umap/locale/ja/LC_MESSAGES/django.po,sha256=YjBmabk41z6CCvwAuPhyprUYJLXKsJoCp5_njUyVIm0,13543
69
69
  umap/locale/ko/LC_MESSAGES/django.mo,sha256=os9Vo9pdSyMVWMN3ToDdu19-VwM1PJtPlPG20CSC5Q8,6607
70
70
  umap/locale/ko/LC_MESSAGES/django.po,sha256=HBqpxmWXtrOBmjYIaPnNJmFX3QfNtvGLjl0bNZj1seA,13453
71
71
  umap/locale/lt/LC_MESSAGES/django.mo,sha256=cA9gb9IAjuYBVh9QIKuniMpDr8CmgMt_cUP99W5it5s,5922
72
72
  umap/locale/lt/LC_MESSAGES/django.po,sha256=adw4Q98CDmXZht37z7lvMTI3tzGHjHxKhbEZ3N5x_y8,13113
73
- umap/locale/ms/LC_MESSAGES/django.mo,sha256=Y3ZwA7seXuTJhxuiNMueneLo3z23X8lJnFVohymvpzo,9966
74
- umap/locale/ms/LC_MESSAGES/django.po,sha256=dGDEpdNNFSMcTwAOTuEbberEGqIyAT28KbYsA8gq8Nk,14661
73
+ umap/locale/ms/LC_MESSAGES/django.mo,sha256=IrPYBiGUkzJUEu9ATpSqqWaiiGQzGhPXwccAMOwy89o,9880
74
+ umap/locale/ms/LC_MESSAGES/django.po,sha256=fp8NQHyJYlgdhvd8XpAXMAwi5q7bro0k-UXUkvhiyO8,17202
75
75
  umap/locale/nl/LC_MESSAGES/django.mo,sha256=CWIG-7Vc6EO-4L0oy35wuaNEQSkrOoKpbkrvUq6iMAA,6056
76
76
  umap/locale/nl/LC_MESSAGES/django.po,sha256=SMjyxF10q7p6AumNtnHRfdI1nP-4-_EKlbTCl8ZjhMM,13009
77
77
  umap/locale/no/LC_MESSAGES/django.mo,sha256=ADQ1RdDyg19YZHw2wKl_bxEgMu_0wK7HaoYk_nsxXks,423
78
78
  umap/locale/no/LC_MESSAGES/django.po,sha256=HXr3Y_gxOPjdU1pSV_tyX_l7pbDMVrFBdf0gm3gciwI,7998
79
- umap/locale/pl/LC_MESSAGES/django.mo,sha256=gianKLgTIpQVm_eix8KUAIJE2y3hRlb2jlZGGSrZSPA,9457
80
- umap/locale/pl/LC_MESSAGES/django.po,sha256=EuvkgUF7tFMxxVB7_neSF31zVk07TBp_HDPI2uK8D4c,14735
81
- umap/locale/pt/LC_MESSAGES/django.mo,sha256=eoKl_1ZO74e7YOud-SA6s-fHICKEltrBBnnU54F3x24,11414
82
- umap/locale/pt/LC_MESSAGES/django.po,sha256=tqFJKNlkfCFfRFrQ4VD3tAwNe3je9W4EIGR3BhUgiVs,16667
79
+ umap/locale/pl/LC_MESSAGES/django.mo,sha256=fMCMevGTw3C8Daq24P1m9gWFKvvZT4kXAd4JpRhjBns,10450
80
+ umap/locale/pl/LC_MESSAGES/django.po,sha256=AWSgcqq7iLAc-k66VFjxqxz4E_TsFXvX1jl5fHc1LyE,17723
81
+ umap/locale/pt/LC_MESSAGES/django.mo,sha256=tJ2OdBQAlIFc7X7r7jSkmlx1aMX2k75NxD7Oorye1Zw,11323
82
+ umap/locale/pt/LC_MESSAGES/django.po,sha256=5NCFcwaTN1wybawUpWCtf1XknNlAFcLMpCdewoLB-Bw,17926
83
83
  umap/locale/pt_BR/LC_MESSAGES/django.mo,sha256=DrxyrIeCD0dmbieR3clKO2Sy0pyWpcHmQKM251Ff294,6328
84
84
  umap/locale/pt_BR/LC_MESSAGES/django.po,sha256=RXQyHUSrm2JdiWLyR6XEvdSzFLicNj9hR82Noppc2n4,13319
85
85
  umap/locale/pt_PT/LC_MESSAGES/django.mo,sha256=4iwtGYsVFh05Qbp9XmZdclQSTZIYYt6IiLN6W3Eyc6I,6356
@@ -96,10 +96,10 @@ umap/locale/sl/LC_MESSAGES/django.mo,sha256=0b49Cays1FTBSDhXRkIEdbe9j00XVRnxXTtN
96
96
  umap/locale/sl/LC_MESSAGES/django.po,sha256=Zq_C_uygt1eJNamjiiRLt_bD4CnvKr0Sv7ciwu9S6rI,13063
97
97
  umap/locale/sr/LC_MESSAGES/django.mo,sha256=t81xXtil60GM5JfXivxFyWd9nMiDXeAVf2pL1SJfwlY,7668
98
98
  umap/locale/sr/LC_MESSAGES/django.po,sha256=nQGT42kRT9aHxFOivd7konIkTt4FZexCX2P9n3Vbnyg,14555
99
- umap/locale/sv/LC_MESSAGES/django.mo,sha256=FMe3QPWAfbebF9cf9CgPFv13h6h8wRJTvRewWX_iFRs,7775
100
- umap/locale/sv/LC_MESSAGES/django.po,sha256=1_ohzcnFIsNojXeY8u5rXx0s8HHiqgSBwRsvD3oRMws,13645
101
- umap/locale/th_TH/LC_MESSAGES/django.mo,sha256=e02yWZVbFMzw_Ux4rvMCuLGm9zk163Olk8fhXLCmmTM,8943
102
- umap/locale/th_TH/LC_MESSAGES/django.po,sha256=X1UopDsu3_yC-IgpW6aWvmR6VepN3Esap2UbG6FusOI,15768
99
+ umap/locale/sv/LC_MESSAGES/django.mo,sha256=XtlI0vL7Lnu3-P-62HYEzeT7AZp3G814Vis6pWWpe5g,7727
100
+ umap/locale/sv/LC_MESSAGES/django.po,sha256=bdqp9tBe5oTahVrzozF6Eh2f5_xh9hGKEFtpff9OVGM,16280
101
+ umap/locale/th_TH/LC_MESSAGES/django.mo,sha256=cMoM4qiKCkFuF314KdFtv518Ncx5qFo_SYePfyWnRrw,8991
102
+ umap/locale/th_TH/LC_MESSAGES/django.po,sha256=4bwE27mdrd26HZr38J91eEiWib9Q8Nbs2jG4TXOmcMA,17175
103
103
  umap/locale/tr/LC_MESSAGES/django.mo,sha256=YguenEWomH76Cy9qrmDYmU-588ohHVw_iiiEWOS-648,6363
104
104
  umap/locale/tr/LC_MESSAGES/django.po,sha256=wC1qHzXSO5pAD8_rwF_vjYnXB9Lv7cLgRroVFbNNN04,13317
105
105
  umap/locale/uk_UA/LC_MESSAGES/django.mo,sha256=iHdp6HtoDAuqY_w7zMu08tW5_CC64lmJuzsCbt4S8X0,8235
@@ -108,8 +108,8 @@ umap/locale/vi/LC_MESSAGES/django.mo,sha256=OCqzY2ppgBY2UKLvpqReVu-5JV9PLX_FBJku
108
108
  umap/locale/vi/LC_MESSAGES/django.po,sha256=RXA7JAZFIHun1vwwKwj3ffYQW7ghdTIiq0e2l9Ihai8,12784
109
109
  umap/locale/zh/LC_MESSAGES/django.mo,sha256=ozLSGu_UCayTacLRSpiWSV8uEcEAxEiY9uKyz1Hmits,3540
110
110
  umap/locale/zh/LC_MESSAGES/django.po,sha256=0WdjDl_mAoZz6RXmP9tBYFV-D13okk-FE9Xg-8KRk-w,11831
111
- umap/locale/zh_TW/LC_MESSAGES/django.mo,sha256=2rzZhzpFVPVxdcEBy96Vzj5n2gGqkf7bXNmF5QnVl8g,9364
112
- umap/locale/zh_TW/LC_MESSAGES/django.po,sha256=DSikigqh7o4-_U3LbpEn0Zgo4R8RerfRugFR_v1MZkw,14177
111
+ umap/locale/zh_TW/LC_MESSAGES/django.mo,sha256=9jHlpzsn5NjAcFufOeBZKAT3IgRXsEyNzl_BjyHFQH0,10478
112
+ umap/locale/zh_TW/LC_MESSAGES/django.po,sha256=GpWfCxD6P1AcPJKMRiAWvKQVcKkIQzvOw73jszZBsAE,17289
113
113
  umap/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
114
114
  umap/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
115
  umap/management/commands/anonymous_edit_url.py,sha256=hsWgPzZJmLCoDKTWziFUuwq-DdnSiXkSal2t2TIED-s,1070
@@ -137,30 +137,31 @@ umap/migrations/0018_datalayer_uuid.py,sha256=HukF-EgWp4BlgZyK5hWAYhCkitHxACSgDE
137
137
  umap/migrations/0019_migrate_internal_remote_datalayers.py,sha256=NZOhTwX3UJykn2MZ5x_pcSw2_gULI3Yc9TGwsZt741Q,1601
138
138
  umap/migrations/0020_alter_tilelayer_url_template.py,sha256=e6DC3PNSiyyCAwS64D8d4BZiiQa3bCuyoi230L3SPH4,486
139
139
  umap/migrations/0021_remove_map_description.py,sha256=C1-pTJ1loj_aZPIbdbPRIHQayarlkbUbfW6bj_vnKGA,336
140
+ umap/migrations/0022_add_team.py,sha256=oEM1cm_GTpiNb4m7HYaid1Sji56NZSf-IudgjYm0okg,2932
140
141
  umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
141
- umap/settings/__init__.py,sha256=xxt2Nq7a3xjGTvn1f1hEBV8xErNu0XJ-qP_S21uWzpQ,1597
142
- umap/settings/base.py,sha256=opweJ5UoMRmBylkAuWcTqP364ab9DRwXwfjMKio-60s,10254
142
+ umap/settings/__init__.py,sha256=aPJkOTk0uFusIBA-uOjdUi10R5Cxt4jl5yv2_uCTUvo,1702
143
+ umap/settings/base.py,sha256=FY8DaaF3b9z-Nu0PKo4KRuLDqxm5LtCOlxtohzG3z2s,10447
143
144
  umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
144
145
  umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
145
146
  umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
146
- umap/static/umap/base.css,sha256=FCAsCmtOxjAPD3i3sSpMMih9AjAhDdEEmMG1hKx7Xcw,16914
147
+ umap/static/umap/base.css,sha256=HJJ7fmkkXihBrV6_fAwAOYPAVyvIyAmKbGQ55J3RCFQ,16798
147
148
  umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr8,9125
148
- umap/static/umap/content.css,sha256=v2hCjLhRqj3qRFEk_-GMOqLDCIowuGCa38nZYC5FL2U,11457
149
+ umap/static/umap/content.css,sha256=6p2sgg-FYOjVBiwvk930tBJTl3lfr2m8jjSKkf84Gv0,11555
149
150
  umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
150
151
  umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
151
- umap/static/umap/map.css,sha256=DxKs9bwPqrrnq1ROyE9U1TxDwLHaFjhQIYyu3vVmtTU,36384
152
- umap/static/umap/nav.css,sha256=vU41w3awlBtsB4XCRJOtVVy9-VN7rua1nJsay61ST_0,1574
152
+ umap/static/umap/map.css,sha256=v5LjwLgUowtzSXQkGdpwSBxfyOWATY57UAgGyMIPQ_8,36963
153
+ umap/static/umap/nav.css,sha256=IKB8Ga8TRal8naxjsgrcrnCO2eaKUL3YNofJB9IN9l0,1865
153
154
  umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
154
155
  umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
155
156
  umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
156
- umap/static/umap/vars.css,sha256=A2moP0RPPmiej7Q4nJT2a_zmXFxI2BoB390lvtysX3o,1724
157
+ umap/static/umap/vars.css,sha256=PiwVk4MzyFjnnQTzQ8rorQenpzoB2l3dGoafxtSKmaU,1752
157
158
  umap/static/umap/css/contextmenu.css,sha256=LAoxcStGC2IesXj9FsYqVTGiJD2AIS0MPErygc-b2No,339
158
159
  umap/static/umap/css/dialog.css,sha256=9qwy9rOcTQY6SPkteM7dW1t36XQBJVoGETQatSOvffM,879
159
- umap/static/umap/css/icon.css,sha256=VUQqVTl8JVfYBGV5mT1NL6ocRol_jZPOmS9Yzv9SuXQ,2430
160
- umap/static/umap/css/importers.css,sha256=0DugO_k0vhcKHusz9XjOWghGgEq1G7INNewFKaPjlFc,1321
160
+ umap/static/umap/css/icon.css,sha256=mXmjTvRU5ElQcuibHbht9oIIBv1ch1LrxQTuIshu7KE,3758
161
+ umap/static/umap/css/importers.css,sha256=qsUmVtV4pyy5yzhKsGqMoCqUhoD5RoFDo69TuI6rSgw,1326
161
162
  umap/static/umap/css/panel.css,sha256=fRPw-dyrcRegoOxTOWTDjBwuI_aHNPmmBOY16flsCBI,3073
162
- umap/static/umap/css/slideshow.css,sha256=rP9TetCZ1954eNWdPan1QQT9jOSKBUAzgOtiNcWYfMg,1800
163
- umap/static/umap/css/tableeditor.css,sha256=6bK8wmlGmDF7VA7_picFN4XwafHuquUy_8JY_Vwqa44,1564
163
+ umap/static/umap/css/slideshow.css,sha256=zh3H_VlkMJsCjE6djbI9sJ3blY9GbDBYWKGX20oXrXA,1928
164
+ umap/static/umap/css/tableeditor.css,sha256=nYFd5qSMkUasFfAxkWwewKJ5MwIcZb2Zq_DViuDRZc4,1574
164
165
  umap/static/umap/css/tooltip.css,sha256=YmaXRbnADYALIPxZASRDnkYpBoQnOnfVmIQrl4m3Wi0,1403
165
166
  umap/static/umap/css/window.css,sha256=50MFWr9oU200f8-crTPJi3ZPG9h1eG5i6oOBP8yttBQ,808
166
167
  umap/static/umap/favicons/apple-touch-icon.png,sha256=xjhkAIZwNywTApzAgnwSvagpcm252katIaVnHIIC_LE,2776
@@ -174,10 +175,10 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
174
175
  umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
175
176
  umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
176
177
  umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
177
- umap/static/umap/img/16-white.svg,sha256=4meHrLSUypTHoy2aHGkG_KWT1Htm1WQ2a2ykkbJUIO0,41110
178
- umap/static/umap/img/16.svg,sha256=R9KiBefx832Eog5088aXm07s-thjbRsgSTs3N8emvCw,25475
179
- umap/static/umap/img/24-white.svg,sha256=PE1gVqezV0mTFmYwmaG2r1n_HODeADkZNd-9Wb5gOCo,17592
180
- umap/static/umap/img/24.svg,sha256=rEsLjRM1Unxqi_Lw9kc6Npy86jk5wbhWS8ZkVfM_GR0,24881
178
+ umap/static/umap/img/16-white.svg,sha256=yPkRrnYx5VagQgmgR8fqOU5_LtRifaMKPzZP7PnEx3c,39878
179
+ umap/static/umap/img/16.svg,sha256=MJM2z0mWeBZnSlDZjxt13CprKYIeZmIzUoORuFMRf8A,23939
180
+ umap/static/umap/img/24-white.svg,sha256=Z9BBwVMcjO4QOaTZMS0bQS1hd_jaBQHD5NanB2nJhnM,17592
181
+ umap/static/umap/img/24.svg,sha256=zZOHyTyuDINA7EForgVFWXosfsXD4-eQ8-Jzhn74gvQ,24878
181
182
  umap/static/umap/img/alert-icon-error.svg,sha256=YyAYn6J4zVGLfpnC60UntTxlylcA4lPcHkBfzufcdDU,4104
182
183
  umap/static/umap/img/alert-icon-info.svg,sha256=wnfvaWhidanbIX8n2G8ppFG7pXyqnDjL9lhdbVoeCf8,735
183
184
  umap/static/umap/img/alert-icon-success.svg,sha256=ZzH4Te0IMM0Cyf9MByh57gxNxVddOavA3gSGqsa3xM0,189
@@ -205,155 +206,160 @@ umap/static/umap/img/importers/overpass.svg,sha256=PFmMwBEQug3bpMdjk3Xue7cU3eArn
205
206
  umap/static/umap/img/importers/random.svg,sha256=DnxcCu2vJOBdZYWhl8Si0boGjkLcvqrRZaB_BbP1zcM,2445
206
207
  umap/static/umap/img/importers/random1.svg,sha256=mY-Yp9-my2ZxdvL6sgnDzc-ihjnAw-mNZtgSkbj25LA,1370
207
208
  umap/static/umap/img/importers/random2.svg,sha256=wRwBTM7skyvLZJX4QHozMX8P4jxP59POTHlKPsMODcg,1933
208
- umap/static/umap/img/source/16-white.svg,sha256=jiTSsgEekddjRJJeOLl4NvzJRpB9Pzk-ETb9pDeQVQ8,74236
209
- umap/static/umap/img/source/16.svg,sha256=XjrSS3_6kxf432h83aQF6UfxwjNxjNdioJG8jXEdQXo,48127
210
- umap/static/umap/img/source/24-white.svg,sha256=KUkQwOG-ut88Ev5QJKNCXx8DWdPxskIRuxxvY_jL0NA,29405
211
- umap/static/umap/img/source/24.svg,sha256=YMuMON2fI9PzkG-QMmT0XqoDDGhPEmbE1jMJUBfpOLI,38713
212
- umap/static/umap/js/umap.controls.js,sha256=FQ7cHFnAJIR8yUenPwIFegz1FldR2L4PJ6HK-iF4dbk,37241
213
- umap/static/umap/js/umap.core.js,sha256=VkGsb707hpgTd_Je69fZ4xRP9zi53cpM8D1g_ZCBwr8,7562
214
- umap/static/umap/js/umap.datalayer.permissions.js,sha256=x48VTKCviC3pwljD4wU7bvk2POXMGvzYcAQCAuA7-sI,1869
215
- umap/static/umap/js/umap.features.js,sha256=0r04QrFRFSUT7QObUecBiuu8WXIZCXhtL2dRo2Kotnw,36862
216
- umap/static/umap/js/umap.forms.js,sha256=nQIHel542c__Ayumdvqg_gb-FCU6TL257NEOxXGRe04,30897
217
- umap/static/umap/js/umap.icon.js,sha256=JYLHLtPAZT6BRIrAv5wHXYRIWMkCZMO-olwps9Xz8f8,7465
218
- umap/static/umap/js/umap.js,sha256=5zdit8BnNLY4WDpox2lTP-A6PyEZvJIDYghCiI9w8GU,57438
219
- umap/static/umap/js/umap.layer.js,sha256=6PeGuVqGyMTgIusmdrNgC94FTznntmKBPI2vuKlZ-DE,53211
220
- umap/static/umap/js/umap.permissions.js,sha256=wWgJSyd7fIykn-vo6Wik_sGf9uyL5n3QGqWLPYHDmhs,5947
221
- umap/static/umap/js/umap.popup.js,sha256=t7zlz_LCgVsUvuDaH5ddF4NygC6Lld6Mhi7Q0eIqZmo,9775
209
+ umap/static/umap/img/source/16-white.svg,sha256=jwnyt-E_4QGPYVc3DKRByI0iI7vj55hoGDOF8QsTs8U,71911
210
+ umap/static/umap/img/source/16.svg,sha256=b5Dm2yMk5bEAb6FvKRWPtk86-Y2Gp4gX8WL1W1sIYBc,45384
211
+ umap/static/umap/img/source/24-white.svg,sha256=F4lvAvzlTaqUsVhB13PXl7X-r4oz6rWykgHv0Dxmdec,28439
212
+ umap/static/umap/img/source/24.svg,sha256=zIuQN1fv_w0asmxzuiCh2TErV4za8Mqg6pK-4YKAt-w,37617
213
+ umap/static/umap/js/umap.controls.js,sha256=dKYdPtwbnq8QKqshYED9YlAMVJkbvw6ETuFGRLakXWs,35744
214
+ umap/static/umap/js/umap.core.js,sha256=JXTrFJJ6Da_RNGqVcgw08VMtZIz4IGB83TqFKLeBHfw,7679
215
+ umap/static/umap/js/umap.forms.js,sha256=AKASrtNbnrE3PMdejGE40oEgeU2yvfDqXdeowwZLd5o,31455
216
+ umap/static/umap/js/umap.js,sha256=q1brPIZUJ5OG2G_r0hNs3NvRxAVoAnjhz2BWP6jdn-s,57697
222
217
  umap/static/umap/js/components/base.js,sha256=gDb1fGuNCC1KEu4PlQflC1PDNyrulhqLhmlsjyCJpps,1575
223
218
  umap/static/umap/js/components/fragment.js,sha256=2zFkX4A0iVeebZJawmveEMKMXQyYmBuY67rbZUPo-Fs,341
224
- umap/static/umap/js/components/alerts/alert.css,sha256=tHJW3lNb1wIFSfdd80Zanix2g-w0MBTyn6pO_Z-mzAQ,4439
219
+ umap/static/umap/js/components/alerts/alert.css,sha256=fSmbDDjXjEYLfgnEAVDhyqWiBOUy2YhVRy0_den-7Dk,4930
225
220
  umap/static/umap/js/components/alerts/alert.js,sha256=7JaTfAzB6qrodu8soo4aoiQMR7YOYcE3u17q3boMbxI,4491
226
- umap/static/umap/js/modules/autocomplete.js,sha256=_IxVom0cjwtemQ1ZC1O7ROdoccB465L58vBK_yi1lE4,8574
227
- umap/static/umap/js/modules/browser.js,sha256=vt3eDTPMJlU3XBhE74ThSbieQc2BfVRvydrmKhgI8ls,7386
228
- umap/static/umap/js/modules/caption.js,sha256=LLvNXtRqUfzvx9pAhp7cGu1kUShckFUOw0wI8qJ-CMc,3880
221
+ umap/static/umap/js/modules/autocomplete.js,sha256=wkS653Cm7H2mFJrha5a7tvFPerEg1P0Blft9q8SIQmw,8573
222
+ umap/static/umap/js/modules/browser.js,sha256=Aj-kV186oKmmjvWrYY-EA0XOlUOXF_LmYm8ow55JPdg,7406
223
+ umap/static/umap/js/modules/caption.js,sha256=Jz3P_pDeNq8z74Lk1yGSgSstp3rhkh9LzzlWI0PHHxg,3813
229
224
  umap/static/umap/js/modules/dompurify.js,sha256=SOmoM-pTgYCKCKXFo6-znemWPLiLsFgR4lxM_moWaA8,328
230
225
  umap/static/umap/js/modules/facets.js,sha256=K4qfnCtgIK7oMkL4YvAvPovHfaCK_aRyW5rl7nAFqK0,4677
231
- umap/static/umap/js/modules/formatter.js,sha256=UK9BakIlkW67_ixnKqo98W0Zab6nsz2ioqMqVJPlHAg,4067
232
- umap/static/umap/js/modules/global.js,sha256=2c4gM0UYtaqdj5v0-3h55PzbUFaHh2NtySUppIf9Bxo,1564
226
+ umap/static/umap/js/modules/formatter.js,sha256=nY2FV4TsZJcdNdb9nQlxcI4pnZZckdxWLFKjQSZc72M,4391
227
+ umap/static/umap/js/modules/global.js,sha256=t57saMq7iT_2ypWBv2eEx8IjH8lWGuB_sMJHVNyfETw,1944
233
228
  umap/static/umap/js/modules/help.js,sha256=k0gUpRf8ik9_okGH7Jv4JOjveNbbvSdk1yV_oZ3kSkQ,9870
234
229
  umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
235
230
  umap/static/umap/js/modules/importer.js,sha256=4BIQEUHJCaJ7WFrCn_DSPzBKjOw0B_BeAuXMqF8D4W4,8657
236
231
  umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
237
232
  umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
233
+ umap/static/umap/js/modules/permissions.js,sha256=sxItfFTWapFvDhvGvtZ4uONjm6_zparHqIFq1vY5QBI,7534
238
234
  umap/static/umap/js/modules/request.js,sha256=hMy3dleGRxstKsksbNa15w7jk4H9-nAV_ub-JdNhDD8,3881
239
- umap/static/umap/js/modules/rules.js,sha256=fREXFveMjw3pqv8nExLELkT-t0K_h2H6PekNM6dY64A,7076
240
- umap/static/umap/js/modules/schema.js,sha256=KOl4zZewN5lNQ4TdAyTeo9Vfl8bkp5VyT6XB5SuBFRA,12313
241
- umap/static/umap/js/modules/share.js,sha256=nSToPEseLgJr97JObci4p5PN56ubLG9J0BPK05G_KKY,6646
235
+ umap/static/umap/js/modules/rules.js,sha256=NO2GeUDgPfWp8VAkV0AE-BeQsDSVYCutcJIk1NKVM5k,7397
236
+ umap/static/umap/js/modules/schema.js,sha256=TNUNj4_2WDN_0vK083cnui0gKI-qHfiIzkO8sWLJtYY,13071
237
+ umap/static/umap/js/modules/share.js,sha256=XFEhE26Fek9tINpzbAQvXzrwoTRlvyLwarDcJW1bdRw,7253
242
238
  umap/static/umap/js/modules/slideshow.js,sha256=fMpQ93VU7Uc9Mhxary_vrAdAK8g_P5Ch6pTVInIJzW4,3445
243
- umap/static/umap/js/modules/tableeditor.js,sha256=4Bjy9et_oYjv_1H-0B78YD2OBuQ-jU5QiHYVvzHr5gI,9814
239
+ umap/static/umap/js/modules/tableeditor.js,sha256=o8t6zheQcaZ9Ybp67W8AFnMJvbHgLuJsOXXQajCwX7U,9788
244
240
  umap/static/umap/js/modules/urls.js,sha256=Y_8KJ8CqMDCgV_0E9mc6oohODvRgoNHBx_avL85SR8g,838
245
- umap/static/umap/js/modules/utils.js,sha256=FFI1mjzdZE57QdsSu4kSWMjG9olo5e1HClz6YTuSlp4,11142
241
+ umap/static/umap/js/modules/utils.js,sha256=TzRJEqlvNpPgv-gqIisWLOv4LtfzvoAeEi1NnD_hPRE,11378
242
+ umap/static/umap/js/modules/data/features.js,sha256=W3v7rwgs-ypvcc3neYcxyMOyqbxxGIGY79ahd1zoQzE,26291
243
+ umap/static/umap/js/modules/data/layer.js,sha256=hcEgr1xlIayfMOTGNRIWP9BwluZAnqgoJ1RSAcVZeLw,33195
246
244
  umap/static/umap/js/modules/importers/communesfr.js,sha256=GuBriig7n3-AmtBWByrD43S12bQS_vr6VPlEw3bCL0g,1316
247
245
  umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
248
246
  umap/static/umap/js/modules/importers/geodatamine.js,sha256=FtrHMVntY4pPelw0uDZCbDVxy5er1ZzDc80zcDpvRnc,2949
249
- umap/static/umap/js/modules/importers/overpass.js,sha256=xWatsY2Xfed2KqBe1h1QBEagO6q11MYbiNVq5eB5nkI,2722
247
+ umap/static/umap/js/modules/importers/overpass.js,sha256=wshao2HAJIz_qowqu6tWxeFAL6TMWMQlzkGLCSfym-4,3178
248
+ umap/static/umap/js/modules/rendering/icon.js,sha256=hguSJt3wDqe0oSQIm1zrYSbyktKVQUWv-QTo5fYdlc8,7861
249
+ umap/static/umap/js/modules/rendering/popup.js,sha256=s_LhWy3nqKm_GEwc9aCbzSG1JM9M5-kshwNfKQNdu3A,2460
250
+ umap/static/umap/js/modules/rendering/template.js,sha256=79umxBD0pMuz8n-sx54Zg7FKcm_fbEkGDlt3vnEXtXo,7177
251
+ umap/static/umap/js/modules/rendering/ui.js,sha256=2mRmfBO1gBlFzdh9VaQCupP4wj11YJFu-4hgMzHkvJo,17470
252
+ umap/static/umap/js/modules/rendering/layers/base.js,sha256=QNQm_IHSX2jwhr6RfoURk9ypSi4lH1Z0voZNH84VLV0,2419
253
+ umap/static/umap/js/modules/rendering/layers/classified.js,sha256=HhmYc_PCaA4VoRO_2TUIaPhkiRE1RUOoNEJVGs10Etk,14550
254
+ umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=tIwkcJhJ7SQTpMK7YXumcA6KMjuZjPKWzc_xuF9d_Dc,3360
255
+ umap/static/umap/js/modules/rendering/layers/heat.js,sha256=pWZkgwNP18bKl5gqN2w9dAxvWWHYoTSDN4n9t_1u-xI,4771
250
256
  umap/static/umap/js/modules/sync/engine.js,sha256=m2FIY-GvtB5zRwiGNMn0DbTQV3aBdVxgXpaAKND0nX8,2587
251
- umap/static/umap/js/modules/sync/updaters.js,sha256=otp0K4KLoUlohqeZkdrJBvSV0LlI1CBChmSDFdTby5U,3030
257
+ umap/static/umap/js/modules/sync/updaters.js,sha256=_sQtHBI86mapqwSOKBNPWMBnXlEwnS1W4H5F4jdYuqU,3002
252
258
  umap/static/umap/js/modules/sync/websocket.js,sha256=v9UdTU1lFTOXWBFFQjvYrl9to8ug_m6XAmpjRZRQreU,640
253
259
  umap/static/umap/js/modules/ui/base.js,sha256=a5QgdgkaFZZMDq50kCgyaobUQdjvDecdTQC3lZ7-M5M,2418
254
260
  umap/static/umap/js/modules/ui/contextmenu.js,sha256=JY1b_z9jq5FKMMAAZuWUjjvzo3RTuoAA_COS55jcDmo,1493
255
- umap/static/umap/js/modules/ui/dialog.js,sha256=q-fZxU7qIox4uSkkQkYfFIMN5DLL-LY_N1WymPhmG5g,5314
261
+ umap/static/umap/js/modules/ui/dialog.js,sha256=fP51HDkucZpXnx1v0h5eAckj77RsADZO_CzPRbjeKSU,5407
256
262
  umap/static/umap/js/modules/ui/panel.js,sha256=Iqfagid9BxB0zjexBElaA_hLejoePdfORt4Di5lHVLY,2994
257
263
  umap/static/umap/js/modules/ui/tooltip.js,sha256=M2KBb5CA4AvaA-6QgfpUKMYQuGXzTqx4ZVA9fkMRBEs,1642
258
- umap/static/umap/locale/am_ET.js,sha256=5pEVJGoDPqHE5DkY4Utn8VGFB7KHL9JUv1Pugvbps3U,32779
259
- umap/static/umap/locale/am_ET.json,sha256=iBP9AgjIrkTPpOzVtdXqIrh9_C1XF_tJUuHCEIug9u4,32708
260
- umap/static/umap/locale/ar.js,sha256=Cgn65Co1gDDKMaaFESoLkJVHbgDBt0_eVV-3UPU9H00,29351
261
- umap/static/umap/locale/ar.json,sha256=YiaSdo05ahQzEiLIuphUweiTHKzd14MAb1NnsMyB42k,29286
262
- umap/static/umap/locale/ast.js,sha256=0WGEMhCJiEei3YxbypLm8HJsnAfZb_EaC-dWLhjsSiw,28929
263
- umap/static/umap/locale/ast.json,sha256=os9weOA3tdpKUHR1vjggDbsaeybpqBbU5Knr6v-LTfQ,28862
264
- umap/static/umap/locale/bg.js,sha256=S61OiLIDpdgBsJYWpvD6SP69sheeRdQ3A5qO8cH5vaI,32024
265
- umap/static/umap/locale/bg.json,sha256=134UktcCdYAqLp2qaj7BSWX-pXmcT-N7s8O5QOzjnoI,31959
266
- umap/static/umap/locale/br.js,sha256=_vV6um73KD3tpi6U_eMuJvhua-50HCzNxwTxzX2UnEA,30487
267
- umap/static/umap/locale/br.json,sha256=cz1kvvSzi0Y-lNnjB1-gvCzLNqVUJNYDpH9aQmumQnM,30422
268
- umap/static/umap/locale/ca.js,sha256=WT7pw1QVQPadd_uNUba-eRp6HUXFHHLpAs3lg6IFM54,29886
269
- umap/static/umap/locale/ca.json,sha256=5aJEn1GM4f0xXC7cQJddyWpMUfOBOa6Eut8oqXFDvn0,29821
270
- umap/static/umap/locale/cs_CZ.js,sha256=NDXguGes2Z3aCHOcphDBZpK2ITvOa3WoRygBa9rW_WI,31146
271
- umap/static/umap/locale/cs_CZ.json,sha256=_5wrmpXnBMdgMGraH-j0JNM6gm_iP2lb7zbpAVKLgXE,31075
272
- umap/static/umap/locale/da.js,sha256=7rqaSoR_OxdJtIaiUJrcmtqjh_8hAeiNKWIwojChi70,29305
273
- umap/static/umap/locale/da.json,sha256=28w3Gz6ICf3Uu6eoaP3v5GCJfrrnzhCj-ZNJxNvC-Ts,29240
274
- umap/static/umap/locale/de.js,sha256=KiTrkRTA0nj6NF1xDkDhUJTJyEzuawiXO0K5oPfYCGk,30863
275
- umap/static/umap/locale/de.json,sha256=g3yQ9lV5c-hHYrD-K6StwvoJNhqYvw9GUVbXreVlKNQ,30798
276
- umap/static/umap/locale/el.js,sha256=ncLnE6IiAFI0fT1AMMTcryUiQkYN3r2OcL-2ZH239CU,39570
277
- umap/static/umap/locale/el.json,sha256=r57WEUzGEw-hbtaanFEukY9JeXl2ufFRhm5rsHyOcpc,39505
278
- umap/static/umap/locale/en.js,sha256=7r479R3WLj9WpU-HOE8LXA7AJbFs4Nq-NSqdR6SlTwM,28929
279
- umap/static/umap/locale/en.json,sha256=GrwNEq2-7fOjZdqMt_5FG8jVgK1ZzTN5E17W2Tqp6jg,28864
280
- umap/static/umap/locale/en_US.json,sha256=xf6FKl8HGtBWVEVlfWfWw7VBahtgn_J6ZSvbxj39Mbw,28651
281
- umap/static/umap/locale/es.js,sha256=ywDVVvjuezWuXQf32rUSiDYAeuDcuOg86onP7Wncnzs,31237
282
- umap/static/umap/locale/es.json,sha256=IV1sStOXiF6ZAUPhQ5XyKmr5KAWVnAaTRpzQQAsHK8c,31172
283
- umap/static/umap/locale/et.js,sha256=wJNuorCCpv3Xp7kaeP07S1aoYQz-l3Ah0XBKUBQOKdU,29114
284
- umap/static/umap/locale/et.json,sha256=ot4YMGJjNcc_Ylk9BlmN1kfwExJXzBMr1YxEOEpRz_Q,29049
285
- umap/static/umap/locale/eu.js,sha256=8liI8RYbf8AqJQyR1QJG60cwMYivmXbRljBm7IMQqT4,29474
286
- umap/static/umap/locale/eu.json,sha256=RMMtXOcXq275c2xN60t5cnsCFxrdt5qptBq2Pariowg,29409
287
- umap/static/umap/locale/fa_IR.js,sha256=pCcceqboThRPSDxXld1wtplznI58-uwXTWlI2rAywXY,34857
288
- umap/static/umap/locale/fa_IR.json,sha256=1R7dBF9xOYWTlmNKLom4Loh4aepNDK4NLLg2e7ASkbc,34786
289
- umap/static/umap/locale/fi.js,sha256=cafPW2PrrUpRNrtGBbOUrSI5NwjJhV_Xl5fkJ7ITlhg,29795
290
- umap/static/umap/locale/fi.json,sha256=o6el7y1e2yA6h8jVPbD0HNHZJ_xmPlta1pzDdejp5TY,29730
291
- umap/static/umap/locale/fr.js,sha256=tyOHkRiqBzwFpiLomk-QbEoWADzicyrcH_y9M7rWkrk,31689
292
- umap/static/umap/locale/fr.json,sha256=7hoOsak5HcSLQscpu-NbOkHZ9biKMfF48rKnEzE4Fao,31624
293
- umap/static/umap/locale/gl.js,sha256=S_tOpaStQnIiePrDjeHv4D0C_kMPOGwybSkZBFRlMoU,30352
294
- umap/static/umap/locale/gl.json,sha256=zjwwxAoUuAoVLUxWVEgq6vF2wSTPhyXo8o8jRkmhlR0,30287
295
- umap/static/umap/locale/he.js,sha256=83gdwuY4hc9JszplHauOvOHx5ExtUNpCvmDtvUTPn8w,32387
296
- umap/static/umap/locale/he.json,sha256=WliwZerBx8VjU7RJuV-I8BULZyUMj-0e9GUxoZrEuTo,32322
297
- umap/static/umap/locale/hr.js,sha256=iq5WkhNvOybmx9xyIzATFrSbIEwwZPY9hfMMR70ANSQ,29098
298
- umap/static/umap/locale/hr.json,sha256=DZK-ugOlK3xF4sB8XtjtR426EmUjTPcVU9sXjc4aawc,29033
299
- umap/static/umap/locale/hu.js,sha256=WbvM0UzS0tRM1kRP6pdKjIuxRRNsqPu3lfObdzuCrhg,33096
300
- umap/static/umap/locale/hu.json,sha256=9ZbHdTfImJ76Z6r8BHDUyoU6TzbmSzrDm8SM4fVq7h8,33031
301
- umap/static/umap/locale/id.js,sha256=iRhoOutq7URE-xfUP8z8r9iHj93Vmzc5Eswrido_SXI,28927
302
- umap/static/umap/locale/id.json,sha256=os9weOA3tdpKUHR1vjggDbsaeybpqBbU5Knr6v-LTfQ,28862
303
- umap/static/umap/locale/is.js,sha256=nPi1AOHEBig5S8HRNhj60Vrks5nAJpjEysOsJAjM9y8,30255
304
- umap/static/umap/locale/is.json,sha256=W86FPSNxIdbKnRZCArywHyq1Kt1HNmw21nrnrYWQfY8,30190
305
- umap/static/umap/locale/it.js,sha256=1Tn05kWNdGYSw78Ua7l1MD7rWf_nTbeexC2HFiPk1rE,31192
306
- umap/static/umap/locale/it.json,sha256=M5JIvVzQnWB0zh52yCE1qyzSj9T12hQ_ZBMKyIAAURg,31127
307
- umap/static/umap/locale/ja.js,sha256=u7WUgvkd2v_j3Huap4la9tqelDH-2kPOZiLd8iJhCu4,31396
308
- umap/static/umap/locale/ja.json,sha256=-MVfa8nQszAlYSvrkxZ5-GFGpi1lzr5vnVvKkrv3m8I,31331
309
- umap/static/umap/locale/ko.js,sha256=widwB2Wvqg4dEy-izSShukgsnIUHGCWevrESCNoQAgA,29117
310
- umap/static/umap/locale/ko.json,sha256=Gb35RNUQLqeHGQAnDJXCWWb17F3X5wmWEug7GeSU6sc,29052
311
- umap/static/umap/locale/lt.js,sha256=1vneeccl2y7-dUgBK8JpFe-57uDEDwyOUq-ZOwd1v5Y,29736
312
- umap/static/umap/locale/lt.json,sha256=2PJ3A5YAUnJznd4gMUxV0rdCy_i0A5684f1xRpXYpS4,29671
313
- umap/static/umap/locale/ms.js,sha256=EraceqxW0ksBuhT5Y3LMUGkJ3idzqcGm3SeF77gEKjg,30093
314
- umap/static/umap/locale/ms.json,sha256=n8lsNorGfr9YYM_e8D4AzIrmYFjCLN9lq0L8cCNXrak,30028
315
- umap/static/umap/locale/nl.js,sha256=7xnMQi7RvO7KOEKxthSJ2bj9CshWoL4NJdwfumTPZRk,30536
316
- umap/static/umap/locale/nl.json,sha256=JwYRmABar-ENxZkaTaVRXv96eQeqqCaWv7IOSqlRwso,30471
317
- umap/static/umap/locale/no.js,sha256=XkhHPIba3p4Gyus-GMHwbvyVyT_pISfQUhXQPTaJMwI,29147
318
- umap/static/umap/locale/no.json,sha256=65cxYi8Nsu-1xk8H90XouO_I-Is9mfTt3C9eyRr2whM,29082
319
- umap/static/umap/locale/pl.js,sha256=r0niZyhE0SAR8EVde2UkeCZ0i9db0lHGApVgyFY_R8k,30577
320
- umap/static/umap/locale/pl.json,sha256=yDQf2pk_XQuAzd7aHsAAjIH8cR_P7LEPmolakFRvrAk,30512
321
- umap/static/umap/locale/pl_PL.json,sha256=os9weOA3tdpKUHR1vjggDbsaeybpqBbU5Knr6v-LTfQ,28862
322
- umap/static/umap/locale/pt.js,sha256=nfU0Fg0epeVbCfR609SfHGNxrxkJTjem7batXXzrW1I,31548
323
- umap/static/umap/locale/pt.json,sha256=e1OwSkmEaAFP97y9fhlsyaqO0FcBWLiM8ls8crXazw0,31483
324
- umap/static/umap/locale/pt_BR.js,sha256=5XoKtlkpJVVADBvEMU0hDA6FchXChvGHfJ8Oyd1rPQc,30318
325
- umap/static/umap/locale/pt_BR.json,sha256=kBLmLavnqF1PS8n2S513aKdgTiBxVMJxaWlHzYzCoo4,30247
326
- umap/static/umap/locale/pt_PT.js,sha256=awKv0dpjQxpnl8AakMbs3O-U6_FUs50XpdCkLS9ISeI,30336
327
- umap/static/umap/locale/pt_PT.json,sha256=xqUaQiH3dFSHzRLQFjbNTlBbyAfAbXSjXTwGScZvYW4,30265
328
- umap/static/umap/locale/ro.js,sha256=dEg8AYChxP6RHW3j5TLt8h-FfpVSoR4tbQPu3CrvZVg,28956
329
- umap/static/umap/locale/ro.json,sha256=FHaUrCx2jdOKPElNz1-VjMK7aVybDymHc_efgfTPSeE,28891
330
- umap/static/umap/locale/ru.js,sha256=y7YI07Ih3pmprFW8si2B1Q_4GMtXIYmThdmkXGRFuiE,36236
331
- umap/static/umap/locale/ru.json,sha256=CEpdXOMmor953kUgUYeM2X3mQA-ISoBK6t-mucuY2Ak,36171
264
+ umap/static/umap/locale/am_ET.js,sha256=iWhRaCquVuQvILLJexJTMpCAnAGPBJZH-9zKY_2zzeY,33121
265
+ umap/static/umap/locale/am_ET.json,sha256=txJ5qTYH-06FuyXRzJTl-vsakBkJhUVnu038j6ry-Js,33050
266
+ umap/static/umap/locale/ar.js,sha256=o2rNc6rS2Iu5lfWXAGiW3yTyJ2J5WKs8zCGbXXDPgXc,29693
267
+ umap/static/umap/locale/ar.json,sha256=_wLI0ioBzAPgDRQNwAN9g5dYQUSJT3heEqlL_k1mSS4,29628
268
+ umap/static/umap/locale/ast.js,sha256=KSPTilctfNTMd4C_46awHLjWti9uNXIValRJ1iAOCeA,29271
269
+ umap/static/umap/locale/ast.json,sha256=wyCCbjhU_zc7xE6Zd73k2UktzvennaSl6qUq9Bh0JPo,29204
270
+ umap/static/umap/locale/bg.js,sha256=be2KegvueFclhXhQ-Mara485jPLQ_MZ4uIeP9fdAQOk,32366
271
+ umap/static/umap/locale/bg.json,sha256=cDt-JqpnQ3m3UodbQ2HK_bixgWSXjrIm2VR2AolhFTM,32301
272
+ umap/static/umap/locale/br.js,sha256=BVOfd3QUlgKTO3lC9Vix2EzQIV8YsQvHPx5Kxgmfci8,30976
273
+ umap/static/umap/locale/br.json,sha256=GOKajY-FHSsDd6mxwAqobApWdBmvSzU0quXLomzsGGA,30911
274
+ umap/static/umap/locale/ca.js,sha256=iaRvXzzIwWJYUB58Ps4VrC8OWavfFrIg8NXupupExCc,30667
275
+ umap/static/umap/locale/ca.json,sha256=ApJcv96LYioBnMvpD5PMRLpxXVGgRwuwbDO7bees03g,30602
276
+ umap/static/umap/locale/cs_CZ.js,sha256=YCvGOWKf7fxkHawutmnFwGAOqfblObe-XqXlCREJruQ,31472
277
+ umap/static/umap/locale/cs_CZ.json,sha256=HaqnfEJ0ORi4u6ltiAqJud0NRuh4W9v6ym-mWkwwddw,31401
278
+ umap/static/umap/locale/da.js,sha256=BlI-OAujZRw0v4X2j0rCICTUooIFZ5bOC2W9QxmXQEo,29657
279
+ umap/static/umap/locale/da.json,sha256=H8hg2jMUvMj0ujZdBRt4i0VdDuyNBk0OAAd25NujTQA,29592
280
+ umap/static/umap/locale/de.js,sha256=5A_n__cFkmTqCVrGEb3BCe4WpQvjqZT2W3ic4CiC7rM,31983
281
+ umap/static/umap/locale/de.json,sha256=6GbeG2QNgD1Cbjn_t0jEKLh2Q5Pdjtr5EqHIONAfd0g,31918
282
+ umap/static/umap/locale/el.js,sha256=Uk9d4jo97ggH2grc-VCsUKyk9JFGDwsvC_Ek1pNF98s,40724
283
+ umap/static/umap/locale/el.json,sha256=oOyM-fcLRGuB-2xsJaNVbBaM_2G5_wxb-GMDfVzv9Ds,40659
284
+ umap/static/umap/locale/en.js,sha256=LhKU66xn0N3PSmQvKqlkLfeJLE-BAS-R-LQ2bCBWm9E,29395
285
+ umap/static/umap/locale/en.json,sha256=rrUpQFKkazodyknBNJOAplmo7wieDZ9Y_Kj73oAqr8M,29330
286
+ umap/static/umap/locale/en_US.json,sha256=dZssHREakThYdUHIKIWWqX3CM9wjS4LrMvMB9-rZBGw,28993
287
+ umap/static/umap/locale/es.js,sha256=mC8vLIXS026NP7HjIOShBlPZKGtfgKH7p_4GmNgCpa0,31571
288
+ umap/static/umap/locale/es.json,sha256=dAH6Yo6iWVSmO5roUs9qH4ANjw6IwnCMQwYyuAefuGM,31506
289
+ umap/static/umap/locale/et.js,sha256=TKMGYlcb-D8KW8WVXGIAR8wDdgqCmi6pb9GXMbpYFEU,29465
290
+ umap/static/umap/locale/et.json,sha256=CPkjYxDD3SsBVyiKO24OREw4l3QVOebdXtLakyNyKyo,29400
291
+ umap/static/umap/locale/eu.js,sha256=mE1wggWHJHTvuGV-ssScN93um8ULnb_PSgIn32D2O1Y,31311
292
+ umap/static/umap/locale/eu.json,sha256=5sdH-hXljmu6fM-M514QouLN7B0hf1Oc-pojsgC9zS0,31246
293
+ umap/static/umap/locale/fa_IR.js,sha256=3gEG9DjMeGMQZg2Nm7xxghr1loWodtjC1UFGkvO02aA,38112
294
+ umap/static/umap/locale/fa_IR.json,sha256=pbxwHf1S63wo5YyTkOnKKANrcNAuObeOI01eO7Tl6z8,38041
295
+ umap/static/umap/locale/fi.js,sha256=XUIrgmxg9KjmpDwFKRULr-EmyjjTBhWWA_ylX_nSjvw,30137
296
+ umap/static/umap/locale/fi.json,sha256=3suDckLIR0BpLA15zLXPAXEY-DnVlbA-YEfeWqx3zfA,30072
297
+ umap/static/umap/locale/fr.js,sha256=qbhzRxExAYPoRSaOcqcMWNbuhoSgrhJxreQlOXhP1a8,32169
298
+ umap/static/umap/locale/fr.json,sha256=Hz2eHjWvuCOGSYkjQgVy5fTjJGKajnBtJr1oswvJjTY,32104
299
+ umap/static/umap/locale/gl.js,sha256=A7QDaq4ZBnOXIr6tqfWB7VDSo5UsV70L2HVhiqZXOOI,30692
300
+ umap/static/umap/locale/gl.json,sha256=poqyCH2UFxVAOWepLODcjN3Xtyy3oancGy5c-ch0ocw,30627
301
+ umap/static/umap/locale/he.js,sha256=IQovP2AjKgrah84sWxs9nH7AD3a-w4oNr1WJKDpgjV8,32719
302
+ umap/static/umap/locale/he.json,sha256=F9r726IxWWigKrHajmQyc8Sdyn9Lcj7vIsMAEsPLLw8,32654
303
+ umap/static/umap/locale/hr.js,sha256=QrWfkgZ17dCCBn1fLys07TygfMRWAS2YlhWeJQRsskE,29440
304
+ umap/static/umap/locale/hr.json,sha256=VaHPBeo8GrkyxwyHCpadhRWnPyYktbMzil7lUkCxx-M,29375
305
+ umap/static/umap/locale/hu.js,sha256=DSxi72AK8rEcwLmNJymhAtg8jE8JeXry432ilecnlu0,33684
306
+ umap/static/umap/locale/hu.json,sha256=EoCsm1GE9SPCPVaE2ztcxlwPj6oMtudLL1iyZMd9jYk,33619
307
+ umap/static/umap/locale/id.js,sha256=jx04Ng_EzPT3Av7mbVRQvmK1izSat2ucsTnYFj98u8U,29269
308
+ umap/static/umap/locale/id.json,sha256=wyCCbjhU_zc7xE6Zd73k2UktzvennaSl6qUq9Bh0JPo,29204
309
+ umap/static/umap/locale/is.js,sha256=SH5yWYn72yTZnbJkJbwSIEl8P6Kadyk7UJ0xqUIBoz8,30601
310
+ umap/static/umap/locale/is.json,sha256=JUL8TsIpcbvkG9FCR4gwE-O7ovoAjyWt7aHPrxKrT1k,30536
311
+ umap/static/umap/locale/it.js,sha256=o5HTu5P1ZrLRsxSKMZkHl7jInn3HgdDCB9Pi7Daajq4,31525
312
+ umap/static/umap/locale/it.json,sha256=rk1Z-ndHdOOfsuXHgfZiWMpl2NckCWjwoNvDw43GlDA,31460
313
+ umap/static/umap/locale/ja.js,sha256=x0U88NhI38WqXmo3i8-9HwRX0_1CPpMkwSfcT9W68vA,31727
314
+ umap/static/umap/locale/ja.json,sha256=-byWNCsElDhJiPGWS2crxIF5PoI6J8B58txeJR5U0RE,31662
315
+ umap/static/umap/locale/ko.js,sha256=KUN8_IIw2Wi1-z1EweWXRWlHqhVI61IU4ok17US34nY,29457
316
+ umap/static/umap/locale/ko.json,sha256=bwBCdA7yHyERyh36-DsNL-sqpJq6nvuQI-gUBKOBGPo,29392
317
+ umap/static/umap/locale/lt.js,sha256=qfHKf7DI-uBDyAWoCjRI3G7kvySv8MtAX6GbVK-_oUM,30078
318
+ umap/static/umap/locale/lt.json,sha256=c4xmllCvqA9PacJjM8_3r8jFFTNxX7HISxgm7oiAUy4,30013
319
+ umap/static/umap/locale/ms.js,sha256=M6x0qeC2ytoso4RAKazjy2u7yx6knXHRd7eG16Of9SY,30437
320
+ umap/static/umap/locale/ms.json,sha256=LI74XHEsDsNnjQbtt-vQ2ttRUUWBOBEMnLEcuo4-S9E,30372
321
+ umap/static/umap/locale/nl.js,sha256=tsux79ev-oib4BehzsvNIWIu5OZkn-76luqGIbZ3fWA,30889
322
+ umap/static/umap/locale/nl.json,sha256=iDBgNBdL9cE0AtN5XhIPpkhn3czQDUI4bpSOUVJjmto,30824
323
+ umap/static/umap/locale/no.js,sha256=qgsnNmEkC-lL5wfH9SdJPc2CgakDzNbhVCb_31ih8Yo,29493
324
+ umap/static/umap/locale/no.json,sha256=35Xk6RVclyLkWJxvmGXdj9f_mDX0tDCmBOVSplFdcYc,29428
325
+ umap/static/umap/locale/pl.js,sha256=aq1O_m6RE2DP9m1kf8sc95mItreeABL0MpGUahmM3II,31090
326
+ umap/static/umap/locale/pl.json,sha256=IDn7hwmgo9ouGzdUOFCdiYxrpxwIjIKw5WW06xQ-UwY,31025
327
+ umap/static/umap/locale/pl_PL.json,sha256=wyCCbjhU_zc7xE6Zd73k2UktzvennaSl6qUq9Bh0JPo,29204
328
+ umap/static/umap/locale/pt.js,sha256=Tyhh6PeQ69h_266JLmo-3SNMznSt-8MIrBmuzKFYLNQ,31970
329
+ umap/static/umap/locale/pt.json,sha256=R5sWCyPF2KhzyejlOjPXiTpig0PQc2J_mR0Xi2Mg2Pw,31905
330
+ umap/static/umap/locale/pt_BR.js,sha256=yLTKIOIZaEvQyAFQVB5SiFaTuqAXnnUuG8MZ7xYoWpA,30652
331
+ umap/static/umap/locale/pt_BR.json,sha256=h0LVOk-evdD2sDwLO26WJ0uTtCRr2A7D5cQALHYoaAI,30581
332
+ umap/static/umap/locale/pt_PT.js,sha256=mzJRwZQZBrGszXC62SH64BXo9tJnEMrmqMomuweXPP4,31998
333
+ umap/static/umap/locale/pt_PT.json,sha256=_bds4nPOG8aauMJkTbOXWSKFiO-nmUjq3bV2EpdiOr4,31927
334
+ umap/static/umap/locale/ro.js,sha256=QZKfXbYfA3t48G2C2AA4g_aXSsRvhXUTxzwCHHbe-4k,29298
335
+ umap/static/umap/locale/ro.json,sha256=r2ZnDY3EvwcBBlrY92dlY0q2HWmetnQI3f_LI6XVcVE,29233
336
+ umap/static/umap/locale/ru.js,sha256=nD01YTDK7ZghzFf0g79WJA5LMQeUI51Ud0MZtkrI-8U,36529
337
+ umap/static/umap/locale/ru.json,sha256=smsuvemUgB4HYF8LQKS5eQqgyLPS6nf72N9eV0Nh280,36464
332
338
  umap/static/umap/locale/si.js,sha256=4lhsYFhfg2hZMZn0GZkX4YXY-A55WAs9xYJHPpyYuxs,28492
333
339
  umap/static/umap/locale/si.json,sha256=cQk9X-el9PK66gQUCpFzZe09BCu_XCHESXpNaQTDLF8,28427
334
- umap/static/umap/locale/sk_SK.js,sha256=mUvUUODozSAcPKByLGj7ikLuNEfPvNaJFIogwFaIhQ4,30202
335
- umap/static/umap/locale/sk_SK.json,sha256=fzHcc2f8DxXVbyG-x8iRLbBzmREUiGI5AfYM87xm_6c,30131
336
- umap/static/umap/locale/sl.js,sha256=AaUZScR9RFF-PFDPsl6erQPEQt95wH45bn_6qjtuqSw,30093
337
- umap/static/umap/locale/sl.json,sha256=VEWqZiawr1_9xQ1BVZEvjLefNzQoCj4W5shVQa_dB-k,30028
338
- umap/static/umap/locale/sr.js,sha256=eRKmXqscQmkeRQKpof1Nav0B3vVVICZY5ilBa0C_ABo,32989
339
- umap/static/umap/locale/sr.json,sha256=22IReHgXmtFyV8I9SkchbRNFZriaHa4akJUu7CwKox4,32924
340
- umap/static/umap/locale/sv.js,sha256=-9zd65NrsxODsDCRlc7WahqjAGHxBP_DLwnFb58W2Vk,29982
341
- umap/static/umap/locale/sv.json,sha256=nzRKs6mc-jwF86rD_Th-Wwr-nXtAATPxvXMuW2QBYzs,29917
342
- umap/static/umap/locale/th_TH.js,sha256=iFPNxtDrbA8St_1a8tHmHvxP0NRJ4xpqacaJbb80YlE,28933
343
- umap/static/umap/locale/th_TH.json,sha256=os9weOA3tdpKUHR1vjggDbsaeybpqBbU5Knr6v-LTfQ,28862
344
- umap/static/umap/locale/tr.js,sha256=REgtgeeNSqpcf3T1JB0IYuDHaL-oxcrM_vVPqrhnNus,30522
345
- umap/static/umap/locale/tr.json,sha256=ztaGlDfHYklIWBeViRjLBLQxkQKIK8FhlWHvj7Bnfjw,30457
346
- umap/static/umap/locale/uk_UA.js,sha256=5Fs6PuNUwOxOvCNkBFjIwm551XMqf7xicRxwUnX5zwc,35874
347
- umap/static/umap/locale/uk_UA.json,sha256=jc2CNT5eNf-AWhpnWwcAAATvzfysHILmPG1hArXaQWE,35803
348
- umap/static/umap/locale/vi.js,sha256=UEJ_aseCG3Tz4bx75FUhOenTD5S26ZxXJeSUtouEivw,29207
349
- umap/static/umap/locale/vi.json,sha256=iuJLeMsn9n-3BZ231XGcq3vhprng1GzFZ4oN2kh98DA,29142
350
- umap/static/umap/locale/vi_VN.json,sha256=os9weOA3tdpKUHR1vjggDbsaeybpqBbU5Knr6v-LTfQ,28862
351
- umap/static/umap/locale/zh.js,sha256=w8jNdfCanUsKG5tgHK7Nm5ZNcg7HhiFsosqEcM56ZTg,28634
352
- umap/static/umap/locale/zh.json,sha256=ihm7GWoBcseyhg-TUbF-LGD00KLD3a3FwELkrFYpHsM,28569
353
- umap/static/umap/locale/zh_CN.json,sha256=os9weOA3tdpKUHR1vjggDbsaeybpqBbU5Knr6v-LTfQ,28862
354
- umap/static/umap/locale/zh_TW.Big5.json,sha256=os9weOA3tdpKUHR1vjggDbsaeybpqBbU5Knr6v-LTfQ,28862
355
- umap/static/umap/locale/zh_TW.js,sha256=jxTqZfLI3Ep6qYvsxyg3HnKcQtQgj6gQJC6smfpc3D0,28574
356
- umap/static/umap/locale/zh_TW.json,sha256=pK9vW5ch6pqocfPyViVMswlkc4T-iQHpHff8_w2zjJ8,28503
340
+ umap/static/umap/locale/sk_SK.js,sha256=A0Hzt6yUn9fsmXcgl3HwTg3fK9jS1CFKub9QnEQYJ0I,30539
341
+ umap/static/umap/locale/sk_SK.json,sha256=l5JI9Pk4Xdwo9pxuQBg4Bg4Uti3UjBih40N6h-z0FvE,30468
342
+ umap/static/umap/locale/sl.js,sha256=Khp3kbz_wtD70vkW2jO2MxdndQbBxsaRQZuojiAUA3s,30428
343
+ umap/static/umap/locale/sl.json,sha256=M3cQX9qlR7CKhFjqX9F2H65YPRGMU7mo5Wy_gu9W4iE,30363
344
+ umap/static/umap/locale/sr.js,sha256=6tnJV79cZUQysH1mj-hh7SF71jIWRyiDnVfie00Di64,33299
345
+ umap/static/umap/locale/sr.json,sha256=clwlCf96Tn1z5iwv2tdwRlwb3cAsfu3a1q4sLnMUuQc,33234
346
+ umap/static/umap/locale/sv.js,sha256=oBWlbfUXCkIPiwr4W7RGHakp31KKQHr0LniC6BXNpQc,30328
347
+ umap/static/umap/locale/sv.json,sha256=eB88xzDSakMebZxAJ4qn1ghJbRPijTrwf9vBA3n4H-0,30263
348
+ umap/static/umap/locale/th_TH.js,sha256=u2RZuL9p_OEDYgo_lAGljVW7yKw9J4J8R7qVN4diKC4,30353
349
+ umap/static/umap/locale/th_TH.json,sha256=6D1k-F-Vd02-5CwAIpMe89qW3jKtihvUebbmSXzRP9E,30282
350
+ umap/static/umap/locale/tr.js,sha256=7ASI2OcQ6mKIJh_mL4TVhVwEX9yl4gbgK2huVsbI_B0,30855
351
+ umap/static/umap/locale/tr.json,sha256=vZWss6WNLNeWLgjpm69o7J6anjd282orwkqZGqrLtMg,30790
352
+ umap/static/umap/locale/uk_UA.js,sha256=d4Tv-bWFU6zTbWfVoDAQTN87NVSzsWpouMojtVdcHp0,36186
353
+ umap/static/umap/locale/uk_UA.json,sha256=KuNk8kngGn9CF1XP76mdiTQifXxFNv1hmeLI5xJhwz8,36115
354
+ umap/static/umap/locale/vi.js,sha256=4M7TKBzLTqB_Bu_n9gZ9MEwK7qknTbSlWxBvhMDoSqE,29549
355
+ umap/static/umap/locale/vi.json,sha256=Wd1wEIO7cMXFBq3rsx7vzRgDjhr_szckPLxoWFghIZ4,29484
356
+ umap/static/umap/locale/vi_VN.json,sha256=wyCCbjhU_zc7xE6Zd73k2UktzvennaSl6qUq9Bh0JPo,29204
357
+ umap/static/umap/locale/zh.js,sha256=aISl3SdQEU_LPeaXw4xc3YcvutPPhuyOuznEYyZe8Vs,28976
358
+ umap/static/umap/locale/zh.json,sha256=nC6mXHtxTfhQOyFrliXQVlSBUNHRsjZUUA1WnrXGx8g,28911
359
+ umap/static/umap/locale/zh_CN.json,sha256=wyCCbjhU_zc7xE6Zd73k2UktzvennaSl6qUq9Bh0JPo,29204
360
+ umap/static/umap/locale/zh_TW.Big5.json,sha256=wyCCbjhU_zc7xE6Zd73k2UktzvennaSl6qUq9Bh0JPo,29204
361
+ umap/static/umap/locale/zh_TW.js,sha256=uMVPcplZgSATHVZZIdQkRHFx3lxOS_WFYAKJUqT5eVM,28793
362
+ umap/static/umap/locale/zh_TW.json,sha256=O1tLl0Ghfl3G0D43oHiuldZ0lWglK8TdHHSBzciRZek,28722
357
363
  umap/static/umap/test/.eslintrc,sha256=lsy_EQL70iOehznbw1QtRqN858VT9vQAZXg9h2aTX2w,444
358
364
  umap/static/umap/test/DataLayer.js,sha256=P-bq8gjGrSEKXLxmDk85NI33GT5XWHHLvv44xJ7CGKk,14221
359
365
  umap/static/umap/test/Feature.js,sha256=xb6HjjD_EuI4ezvn3z_SUR_s7C1e8xmZim20VHaR2qg,3664
@@ -361,20 +367,19 @@ umap/static/umap/test/Map.js,sha256=LWCyIKxgUXBM61i3QIPkDubTXGlRhy6N2NdlAnaM_mQ,
361
367
  umap/static/umap/test/Marker.js,sha256=pzMBY-l1xD35OgVCd2FNxEDrBMAhafAyZPAFsV2Gd34,4111
362
368
  umap/static/umap/test/Polygon.js,sha256=Jrflfe76wmfu8_E3bDLMGG11w-iUmrgL9Oiv4CcCsb8,2320
363
369
  umap/static/umap/test/Polyline.js,sha256=5VxRW-b6bnNgyIzDsHM6g5lPci-Td1wY5VPg_umpId0,9374
364
- umap/static/umap/test/TableEditor.js,sha256=EJyIp90_tKb4aR3jNn2aRmmnbOLixTCUDouYxBRZAIE,3150
365
370
  umap/static/umap/test/Util.js,sha256=KBsOQN_E4Y5N8VSDNP5fLdUrvOh7G3pewrkRKq547VQ,1096
366
371
  umap/static/umap/test/_pre.js,sha256=O3qaQf-M2SLQ6c7AGIrRwdPm3iULiSTt-KkmAIQnAGg,12960
367
372
  umap/static/umap/test/index.html,sha256=1ZKUQry_D4tzZapPOnhs7TfLP0-yDtOpE28nEicH4qA,6616
368
373
  umap/static/umap/unittests/URLs.js,sha256=EqXPGohwNiEtJWk1QY2KgPaIwd0iP56nYvn05ufsZ-g,1878
369
374
  umap/static/umap/unittests/sync.js,sha256=A5JyhiEMSzjWqWtubyDcLfcthsFLvfUuKKn1Lcv0ZnA,3098
370
- umap/static/umap/unittests/utils.js,sha256=C-576wKC4Eb-bwHjUto_UvOMdu3EzyE5LyRipc3ru2o,21850
375
+ umap/static/umap/unittests/utils.js,sha256=BLsT1C2ZfauTB1jHKklTEOsRNUFcdiTNxz3dPyfK9SY,24033
371
376
  umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=FebyRte_vQrD_CLC8Xjc2cI_bR694S6hDSIu26tDnZ8,24622
372
377
  umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css,sha256=_pRTmdgpDxfu1Oxb7DnP_DTdA44G-k3kf0otWP8gEnc,990
373
378
  umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js,sha256=I3zyDVArt4ZrRcCzTUp6OiNmD5KuDsZCvhG-yZt8lhE,8994
374
- umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=GCr5ZQawzxqZysqyxDTH6oUqP-KHxYTsG5xRt28--Zw,15029
379
+ umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=Cb88gwY7oibx7WL1Y3bfxc_Cur6yo62nLGaEmzP7Fbw,15530
375
380
  umap/static/umap/vendors/dompurify/purify.es.js,sha256=TScM8DATZbXGCLOVBYhpfX4gbnKRCAlt53htdqS9umc,63951
376
381
  umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=7KkvHp3X9QVutUAQnlG8iCMV4jJeHRsggC4yBoO2dTk,123294
377
- umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=Mx8aiCT4w9DBEUBJiX5eq9Ocy-6E3C9wLAik-dgOLY4,74768
382
+ umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=5-RlyT7RhocenG85yKIhSPdCvUrpxH2o-lvWS9St5uA,69568
378
383
  umap/static/umap/vendors/editable/Path.Drag.js,sha256=EATyTfgSiCkdjTwGM5lU1RZayxzynqhE-AgnuRlqYI0,3898
379
384
  umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css,sha256=eVKDGO_G2bIJvf_o5490h8BbMh5XeraSLmo6qTc8zj8,1263
380
385
  umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js,sha256=ati65azw8WxPG70b4JblFSHgD-fJ0ytriQEzC5tJWCM,9141
@@ -396,11 +401,7 @@ umap/static/umap/vendors/iconlayers/iconLayers.js,sha256=VcHNxU0KrRKk8fQ_biK4GNZ
396
401
  umap/static/umap/vendors/iconlayers/transparent-pixel.png,sha256=wmsrONlpwU7Z-Y-1QYMxjQg-h-BumQw4A89vuT55IYg,2792
397
402
  umap/static/umap/vendors/leaflet/leaflet-src.esm.js,sha256=Oe6TRk8R_jhHE35QwNyBifcGxGDjaYnqeHG_fVQPMwY,424589
398
403
  umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map,sha256=lxY34ye1PfsolFQ8pTsEtlgBJ4tW7panCBRsm35HNbs,866200
399
- umap/static/umap/vendors/leaflet/leaflet-src.js,sha256=tPonvXioSHRQt1-4ztWR5mz_1KG1X3yHNzVXprP2gLo,450229
400
- umap/static/umap/vendors/leaflet/leaflet-src.js.map,sha256=l7cBxd_w6YZOXEWKixXC7DN4ejJsXed7kI-eoTvi1Wo,866292
401
404
  umap/static/umap/vendors/leaflet/leaflet.css,sha256=p4NxAoJBhIIN-hmNHrzRCf9tD_miZyoHS5obTRR9BMY,14806
402
- umap/static/umap/vendors/leaflet/leaflet.js,sha256=20nQCchB9co0qIjJZRGuk2_Z9VM-kNiyxNV1lvTlZBo,147552
403
- umap/static/umap/vendors/leaflet/leaflet.js.map,sha256=YAoQ3FzREN4GmVENMir8vgHHypC0xfSK3CAxTHCqx1M,225544
404
405
  umap/static/umap/vendors/leaflet/images/layers-2x.png,sha256=Bm2sqFDY_77wB68AsG6sABVyje4nnFHzy2xxbffELt8,1259
405
406
  umap/static/umap/vendors/leaflet/images/layers.png,sha256=Hbvp0CjikvNvy6j4s6KNXokydU_CIVuaxp5M3s9RB8Y,696
406
407
  umap/static/umap/vendors/leaflet/images/marker-icon-2x.png,sha256=ABecTB7oMNOhCEEq4NKU9Vd2z-sIXGASmjmqb8SuJSg,2464
@@ -414,9 +415,6 @@ umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js,sha256=jVdNHjjOOJ
414
415
  umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map,sha256=JY9YqG-jXWMRHF4pJcvdjB5hyLq7V8MpsaqhnX7p5tE,15802
415
416
  umap/static/umap/vendors/markercluster/MarkerCluster.Default.css,sha256=YSWCMtmNZNwqex4CEw1nQhvFub2lmU7vcCKP-XVwwXA,1287
416
417
  umap/static/umap/vendors/markercluster/MarkerCluster.css,sha256=YU3qCpj_P06tdPBJGPax0bm6Q1wltfwjsho5TR4-TYc,872
417
- umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt,sha256=-Wux2JFNrEKPToFsslHRUJHV73yJt1-tCo-GMwl3LYI,313
418
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js,sha256=aDdRNljhiyY0m2L86wQeqRfaekllCRM-3DmrzI8XPIw,81160
419
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map,sha256=4REbqTEKzInkVqawqZ6BqI8Zcf8tWUzFKcjk9Uw-nK4,164874
420
418
  umap/static/umap/vendors/markercluster/leaflet.markercluster.js,sha256=Hk4dIpcqOSb0hZjgyvFOP-cEmDXUKKNE_tT542ZbNQg,34136
421
419
  umap/static/umap/vendors/markercluster/leaflet.markercluster.js.map,sha256=p2sESsX-2ysbKhEAYIPZFpVglwMWjQNxLkswXIuv2K8,41953
422
420
  umap/static/umap/vendors/measurable/Leaflet.Measurable.css,sha256=w33CMvSXTRFTOBfa4Zp2IqjZKbNh3zYiTQWJSEpy0ec,937
@@ -433,63 +431,69 @@ umap/static/umap/vendors/togeojson/togeojson.es.js,sha256=3ahjSicOyuiPMyXmBClO89
433
431
  umap/static/umap/vendors/togeojson/togeojson.es.mjs.map,sha256=NBjflNKJL_uGfiPrRRja6IoswUQ2_kaNk3iV64WY2Uo,75780
434
432
  umap/static/umap/vendors/tokml/tokml.es.js,sha256=BqL0WqFH5UZAh_S_265E6PWZjPMYxeGNFgAgywM4Aeo,23457
435
433
  umap/static/umap/vendors/tokml/tokml.es.mjs.map,sha256=vw5JxZFh_2_xM1cHI51r1Bf48JaBKzNcR7ddgaaF8KY,45844
436
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css,sha256=Q1PL4YzNw38EZdT4kmrE1oEhPm0rWuYus4GeQz6aLNA,2890
437
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js,sha256=2LldNgRnLNkn62qw9bxW18O1Lkp3Hm8d6BNoLk3HQZ0,9060
438
434
  umap/static/umap/vendors/toolbar/leaflet.toolbar.css,sha256=5KVBOQ0ivsFuafKYvVm32wJ_fi7w8Li1-2Rwwcv85jA,2244
439
435
  umap/static/umap/vendors/toolbar/leaflet.toolbar.js,sha256=HXh_bR49ZFpJ-GNXDNo2eHy-fJmrWehAzUeHgGhu__c,5326
440
- umap/templates/404.html,sha256=chFp1sDPind5B4cXRY3Cvd6WXw-RBfN3MIujrWajjK4,381
441
- umap/templates/500.html,sha256=dc0t0omG21JQCesEqV1SLrZ7RNXGtk9Diq5W9pKSAEs,5186
442
- umap/templates/base.html,sha256=Ts5gv90PhwkC9Hs6EzL7tqCq1NdRUkwnLCsA4IPCMWU,1498
443
- umap/templates/auth/user_detail.html,sha256=feuzzlA6QatSUI4g57JSGWViMM6iAydesVls-8J9UUc,491
444
- umap/templates/auth/user_form.html,sha256=Qo_O7T0FHNwnF4bZBtFhMQEjTFavI10JVqmrnMzYfvk,1742
445
- umap/templates/auth/user_stars.html,sha256=UE8XnvH48ak27k42hAQviZbj-Q2DNiz1BtSb1cwCGa4,511
446
- umap/templates/registration/login.html,sha256=S8gafwZ5wE5FE_EhzySRKPcS2bzhnzJAbXgiawHHbjo,1651
447
- umap/templates/umap/about.html,sha256=ycCW4EFTJMjLF9YT6xJ7Kqpey4sxozQyVTUx5l48kJo,127
448
- umap/templates/umap/about_summary.html,sha256=i1M3rNgQi912dr0_Jr2xoBSERm3WgEQTNpaiM4eF2ZM,2208
436
+ umap/templates/404.html,sha256=1yLlD8rSF_9cfjm5FYy--P46HLVbHeFkJiW9nRzM--E,399
437
+ umap/templates/500.html,sha256=Z8x47OVfYXquAYAlmRB0EJVTCiCaBppFFiFEmoYsMYY,5202
438
+ umap/templates/base.html,sha256=_Q0Ikwese3vlUl0pKQdzHDy_oRT9OV4uWh0RGFaYAQA,1499
439
+ umap/templates/auth/user_detail.html,sha256=ud6AnM2ZK9WN8SuAnmKhZlGN0Wbi-GOzy09hoPfL04I,525
440
+ umap/templates/auth/user_form.html,sha256=h9NZi9KIC_5jkvj5KAsxX5CdiYCrQ2lrl9qpr5ObPcg,1730
441
+ umap/templates/auth/user_stars.html,sha256=LAGZU50ki2SCqZ0o_NBfN7T2RDl-L_1EGLixu5OH4AY,545
442
+ umap/templates/registration/login.html,sha256=2T5LwkFlkR_1ED3nVIjeuGp-EJXTuFPnOVXKh8F0FRc,1833
443
+ umap/templates/umap/about.html,sha256=0QXMyUF9SygPxak-FK_YpKgRRPMD_EZEIAHkLXsUH7E,128
444
+ umap/templates/umap/about_summary.html,sha256=5pvCvX34YHk_XCtZfcRSznvRwi_-UJMioD9Nzn6TKh0,2349
449
445
  umap/templates/umap/branding.html,sha256=8IzkIWqiZckgkX9FC-n1v6f8JIB2q7DcX3JHscxsaYA,60
450
- umap/templates/umap/content.html,sha256=VHDVxrdW14HuiCZjJxu30q_IVo1R1YgkSK3VIW8QmE4,2244
451
- umap/templates/umap/content_footer.html,sha256=Lq9CK37V2iFxqOdgGWRsJcoQs8e3Ih5VlENbQ-izX84,724
452
- umap/templates/umap/css.html,sha256=sf-a56goLqCkCrlB-VyvLZqwzVeguV3tJd0RzhlfYXs,2174
446
+ umap/templates/umap/content.html,sha256=KfNQ18LcbxFd00tHQeirGy5Vh75qQNM6pj0bQbcy4Bo,2246
447
+ umap/templates/umap/content_footer.html,sha256=wkdc4Usuq4-vDIJHPxv-KS6KL4gBkUl7ARyU7zz1Zis,1154
448
+ umap/templates/umap/css.html,sha256=j1oNsuz8g1Fc9rLGhIby9ngQpQYq42uYYn7Q_965aQk,2175
449
+ umap/templates/umap/dashboard_menu.html,sha256=hwZQL2fsZruw2s_yA-NW5t_IP2bdpc4n4ksXIRvBROw,631
453
450
  umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
454
451
  umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
455
- umap/templates/umap/home.html,sha256=cgx-AsxybcAMSk_7pUh5av4hPekPg6WtKDxgkFpe5A8,773
456
- umap/templates/umap/js.html,sha256=580jH_LLtA5LX8WQ9fITiCVqhwIwdNWpXixH2Pk5pW0,3188
452
+ umap/templates/umap/home.html,sha256=021I4eVLjMWvhsIqo2k2FADXla2c4UClAJ1uy9R5KVI,839
453
+ umap/templates/umap/js.html,sha256=BbWAsL6UgGx4tGkxkaGgyBRBxDQO327qWEWTp-H4J74,2763
457
454
  umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
458
- umap/templates/umap/login_popup_end.html,sha256=b6csbAW1-qZZYgF1RkwfNsGpqhYzzg3wRGbntTadj2U,571
459
- umap/templates/umap/map_detail.html,sha256=2TA1VwH0jAo9yyj7f3XVqPvFOY0EXmzxZJjZJI2l4jY,1143
460
- umap/templates/umap/map_fragment.html,sha256=hog_2ufpF7wQlYq3PUj4ZoOY6R8_ztNZ4KHaHS-KQxY,150
461
- umap/templates/umap/map_init.html,sha256=FvJDPiTVxo86t5IxosDpxdYEsigAb9hoQDrJobC2Vfg,289
462
- umap/templates/umap/map_list.html,sha256=IArhrUe_2ILTpbI2sfmR89oqbqN5_7X2uFKtoqUwNGU,626
463
- umap/templates/umap/map_table.html,sha256=eNsjkmXYBURJp_wzsCDxrtQqJgsVtCj6aCdkI2tJP0I,5490
464
- umap/templates/umap/messages.html,sha256=W2aU_1Y3J19eKOYQSjmS8JKayi3qxPaOGv4djOuvmak,191
465
- umap/templates/umap/navigation.html,sha256=T7alkzJrOggve0oWO_GgHGypemwcXcShMPuRwmPK5OY,1265
466
- umap/templates/umap/password_change.html,sha256=trKXzqdwKCT561NhgV1Tt43f1dwqMrfcCVGayVDRGGI,958
467
- umap/templates/umap/password_change_done.html,sha256=LNi8aPMtQCZyG7u1BD4eYnazufKhECYOFNW8RvXzkMc,264
468
- umap/templates/umap/search.html,sha256=M0PqOtPG86nk-ML8hhEEXhgIZkfhOhJOgb_c0XB6epg,934
469
- umap/templates/umap/search_bar.html,sha256=PK4aWVIjEDcM7XcRGTLG1lMyrJce5czZoEERzQuPKVY,612
455
+ umap/templates/umap/login_popup_end.html,sha256=kcENvhycpVvvIzbNasX1rcSI_67A6pttkWCxy0vHC8g,693
456
+ umap/templates/umap/map_detail.html,sha256=QBotZCdYGNv6aKgwkcX2sdanw8FXZLlMux49vV8dWAU,1165
457
+ umap/templates/umap/map_fragment.html,sha256=ZRIA3W2tuIecv2LtxyKNSW4k7PmCxRlFmI6TIKC1EV8,152
458
+ umap/templates/umap/map_init.html,sha256=mglKMOvxRbe9qhO8SYsK0q3xcPcqEdSepo1sszxmDrE,290
459
+ umap/templates/umap/map_list.html,sha256=Jb-VU3dQdRWsW80nyyRq1Eb6UrhAoIfGleu1cNMJKwc,673
460
+ umap/templates/umap/map_table.html,sha256=WrH86ybY_GzzRmALfON_oni9aFuIswgOtpTSJ5h8SEY,5778
461
+ umap/templates/umap/messages.html,sha256=liEsg-I26XHb0FOBAbzFsZl2RfNQtGt-HKoE6jHefbI,190
462
+ umap/templates/umap/navigation.html,sha256=gUhdTQOfbMHp1QwnzQYcn3CqQ0RqWUjlDFdT92MerO4,1261
463
+ umap/templates/umap/password_change.html,sha256=YOXyq1Y0LRCi73el2kktrQhhlnWVdzWy98u20giOPrE,968
464
+ umap/templates/umap/password_change_done.html,sha256=Ce9RVsyZ4hjYy60lJiubfGGzgCY8881nWRWFzMwoS50,282
465
+ umap/templates/umap/search.html,sha256=KcTKZAUODg_JdYM2C0h0__yGpbZ25zyvaqJGfnMO6KQ,980
466
+ umap/templates/umap/search_bar.html,sha256=V9p1D9HFAjQ0ewJ77Uw_znYNpqaOLN1nSqnSWbQ3PDU,613
470
467
  umap/templates/umap/success.html,sha256=3FG4yWwtdF3zvVWQ2ZAjCkgv0kcSNZlUjgYy_b-X_CI,3
471
- umap/templates/umap/user_dashboard.html,sha256=P9A_5m3HBnEGj87ptbBVOoqrF7gW6Rsyl9ZfM4vbF1w,2691
472
- umap/templates/umap/components/alerts/alert.html,sha256=uv0SBNmKopuTXr_Bh244jeImTQ9F1ttYG5G6_CE6Tzw,3097
468
+ umap/templates/umap/team_confirm_delete.html,sha256=D4EKfuzVjAexHKPHRsSHpjuAjMNl0iCPtaW2NEGUk2A,448
469
+ umap/templates/umap/team_detail.html,sha256=4gd8YjvVqGysXNJtzAaZwOpBAADLzJ_ekFRPQp1sHYM,699
470
+ umap/templates/umap/team_form.html,sha256=yG_zxmJfEwLC5Mof-4SHYcx6lfkOjbGVusQGT7iqSNs,1922
471
+ umap/templates/umap/user_dashboard.html,sha256=pc_5pTzAIW4ggZUl2R6aIKB3cdVFTodBtkLjqztI7W8,2478
472
+ umap/templates/umap/user_teams.html,sha256=MfelqIwoLRVjvX-KpVtwqh0I7pNx3oDRhqmSRdpT4bs,1570
473
+ umap/templates/umap/components/alerts/alert.html,sha256=eQRALES_PzIP3qs16eXq9SGz2KWODr4VY0tyl_hARCw,3482
473
474
  umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
474
475
  umap/templatetags/umap_tags.py,sha256=oMXsa80LFM52EcLnF6A_o4_PdvOncLBf33pexaeL8nw,1773
475
476
  umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
476
- umap/tests/base.py,sha256=gZlVLqyRY5eICH8oPAz3c8vWHhTOdbLMvEXME8sTdAw,4345
477
- umap/tests/conftest.py,sha256=yLFE5sqz61tw_EoZp1nrH-8S49_aStA5Lt1JtZXd-Hg,1498
477
+ umap/tests/base.py,sha256=VsyFT-cqXEL0scSI69WKUdItfagqOZ3t2omINyVpb1M,4471
478
+ umap/tests/conftest.py,sha256=IBjTc6bJVB77C83XJ-vhpUTmTbvyTCUi9p5AHqp-8OY,1570
478
479
  umap/tests/settings.py,sha256=tY70LMFXyo_WijswqGyeWai7vBzM62k7IA8pkkbc9y4,816
479
- umap/tests/test_datalayer.py,sha256=HJYSQ11LVQe47nnsXdFeX5Ny4WMDPUYg3frnM5G1IzQ,6888
480
- umap/tests/test_datalayer_views.py,sha256=Xqh8EjePdJOyC-SEvqbSO4gFjUboRxzEzgxnPkNNkTk,22099
480
+ umap/tests/test_datalayer.py,sha256=lonCoyOH8KVKbq8jjz0jZMfSydaOYthRgQfdQy4qY4M,7561
481
+ umap/tests/test_datalayer_views.py,sha256=oq1azMk0IUgf688a41VJHZO4In7On3Nb72x3wwP_ZVQ,22105
481
482
  umap/tests/test_licence.py,sha256=BxNY3gdKhIoc2u5OPmAkmjCp0jJN-Jm-uPOfAZlpOHA,339
482
- umap/tests/test_map.py,sha256=nX2eE1HJY3bjycXulglK2SY1ybcnjDVgr0yntX6OgyA,3836
483
- umap/tests/test_map_views.py,sha256=w3YG5ExH_fw18402bdR3hKxRl3DpAeCs8oy8RYee05o,31886
483
+ umap/tests/test_map.py,sha256=8jqB5UDHBedMWugEw8dT57vqtziLIdoK-XFku4WVpNo,4464
484
+ umap/tests/test_map_views.py,sha256=1bd8vqVq3hYQ4m00klMi6Blxcy2dGKzHKRAxx85vfHk,31898
484
485
  umap/tests/test_merge_features.py,sha256=uLZSW00WAI8_nZS0KPP8gg8U4nnky-XGb-VhhKUxv1M,2275
486
+ umap/tests/test_statics.py,sha256=WJe4DZ-cSfN_wCRD8U9ocl6v5FoXrVwBjU6kI6BOcmY,1252
487
+ umap/tests/test_team_views.py,sha256=vExhJ3c1cJ7vgxe0G20UzTKkzR5D2UgAapk09muUg5w,4481
485
488
  umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
486
489
  umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
487
- umap/tests/test_views.py,sha256=jMGziFGM8tvQLElmTdti_zxutSOynEQ3knrMtVgZIUA,16366
490
+ umap/tests/test_views.py,sha256=_zc48oUJ4iz6wZZmjE23RcNqaB17m4Rs5LBYEtrEGlM,16805
488
491
  umap/tests/fixtures/categorized_highway.geojson,sha256=p7QHOd8nXi7yVq37gY6Ca8BXkjaLnDxW9Fq0Zcm3Fk4,15830
489
492
  umap/tests/fixtures/choropleth_region_chomage.geojson,sha256=mVVbYlf92Sr3wWH9ETm43FdHz1U3zjsn91HuU5H5r4Y,21325
490
493
  umap/tests/fixtures/circle.svg,sha256=P37vV2PhFPecAtY8qR3VlRuB79_wFaMeqKm2tX-2tkA,254
491
494
  umap/tests/fixtures/display_on_load.umap,sha256=eo4ecB3QUeCVu1u7COp7mZ8sCPkf2j4gGERE7N1v8GU,1845
492
495
  umap/tests/fixtures/star.svg,sha256=zIi-j16L1Fzxtqz2rV2NDDm1NDHBWQfM5O6MIeoxgEU,256
496
+ umap/tests/fixtures/test_circles_layer.geojson,sha256=8S_zh4MA-5qqm43ETKfGz0hw84vuN2cXB1vTz9Syu3k,6454
493
497
  umap/tests/fixtures/test_import_osm_relation.json,sha256=SjZFqZ-qnxcrUnVkb43jI9iMBF8Il3-OPqxh62nNH9o,4249
494
498
  umap/tests/fixtures/test_upload_data.csv,sha256=KZOO-DcXhdTgx2FrIYZz_ZNZAKOp8zpN_jCyfDw3PcQ,186
495
499
  umap/tests/fixtures/test_upload_data.gpx,sha256=sIfeKEGxYikzg121qBdkBIVTFpuYh8q2-yWZOZwbu38,674
@@ -498,48 +502,51 @@ umap/tests/fixtures/test_upload_data.kml,sha256=t66ms8oNI3999bhRJx01mn-UuHeqWoVY
498
502
  umap/tests/fixtures/test_upload_data.umap,sha256=WUmcwcQ4o5_rYw0SOqjnszbk2TOzfynrK3psyApSWsk,5463
499
503
  umap/tests/fixtures/test_upload_data_osm.json,sha256=ekOwBHdp7qHQ-JUGlb-kGUXcVepdMsBqr7k51pVaCbA,916
500
504
  umap/tests/fixtures/test_upload_empty_coordinates.json,sha256=-mJ_1orzUAROfE4PXchHXyqxjS-q4tDfvEFPllJiHFU,786
505
+ umap/tests/fixtures/test_upload_georss.xml,sha256=lfmVA0qGDakCG48jjsLmSIE1U6iZ9yyFuqqX6Srt8Js,1160
501
506
  umap/tests/fixtures/test_upload_missing_name.json,sha256=klSMHb6laTghzU4AdIG1_p5UZ1LbAJCCKnJea0qEFAI,4566
502
507
  umap/tests/fixtures/test_upload_non_linear_ring.json,sha256=WOR0NnJHNUUW6VKzZyIxU7WL1llnAmEVJwCWla6XOds,1525
503
508
  umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-mEKG4,57
504
- umap/tests/integration/conftest.py,sha256=nLGK12rRXhGF7Ks70SoWALfDSMHG7kVQLIX88BKj79s,2141
505
- umap/tests/integration/test_anonymous_owned_map.py,sha256=v3_qXx3_YhDzr0N8fNfeZwepPGpJ_yZrKwX5LpLFf5Q,9457
506
- umap/tests/integration/test_basics.py,sha256=dOb5zZ4YNJlkJc6rVt5HIrf4nmy0Bxw5S0Nn94Yi1Qo,2616
507
- umap/tests/integration/test_browser.py,sha256=Vzzqv7i_fH73dKz0qIsyhdKMJRCfnEbwmCGlcFt2D7M,16992
508
- umap/tests/integration/test_caption.py,sha256=CRZHNwRHuSPIz33F2kpL85bacQQ0cFXDu12IB1rIskc,1016
509
+ umap/tests/integration/conftest.py,sha256=bo-ndi3ARHnkwRGo8fGi6lqTd_LdXWSOpgNyXEMcO0I,2436
510
+ umap/tests/integration/helpers.py,sha256=vvGX5b-DS2fMVDdeXz1lH2IleZkRHjyL7DVvatJU8Do,344
511
+ umap/tests/integration/test_anonymous_owned_map.py,sha256=nsj9VNJ-uP8gToR-eYxBipE20s3DACfQaddpmvwqUBs,10606
512
+ umap/tests/integration/test_basics.py,sha256=_XC0ojQU_HpBvkIPSt1g_rW1B0vjmAko8FSJ7WOD67M,3760
513
+ umap/tests/integration/test_browser.py,sha256=pFPeUlPG5Kpk9EhiHJmSenBpVRI3k15Ad8qBha48YJQ,17820
514
+ umap/tests/integration/test_caption.py,sha256=UykDB2WpyFl0sbXGrSJ1IAJTM0PzYajPyz-XWaqUBws,1795
509
515
  umap/tests/integration/test_categorized_layer.py,sha256=1MJopDBMLUd_NN2NVqWoePuNPS42RbNlXOwXeyKdZo8,5586
510
516
  umap/tests/integration/test_choropleth.py,sha256=MOgWxPiv39wU7v6kwEJ6sfN3P3xTf_ABQo7hxQa_Y1M,3775
511
- umap/tests/integration/test_conditional_rules.py,sha256=ZDhp93tzJ7y9kXYPMY-5fI-Tp0dFZ4OTKBX8JHkqU4A,8490
517
+ umap/tests/integration/test_circles_layer.py,sha256=7kBqDyvPHbK31LQLU5NVP8mxNqV-Rn7LnzwyDmg801I,1868
518
+ umap/tests/integration/test_conditional_rules.py,sha256=josrLgUbBvoa9ygbJB6sKR5_GnTXo65UGrJMSpD8QbY,11890
512
519
  umap/tests/integration/test_dashboard.py,sha256=OmqZx6NwtTnPj1-HsYyg5WptcmPpSq5pL01VtxZuuzk,1526
513
520
  umap/tests/integration/test_datalayer.py,sha256=39ceMKkvwaE-TOh6GH1q0YwnYOSMEyQA4Ao0XSXR0nI,5471
514
- umap/tests/integration/test_draw_polygon.py,sha256=hP2T_2gE3R55hXaGzgJwh2xPq6vJNImDV0-1s8khxo0,14719
515
- umap/tests/integration/test_draw_polyline.py,sha256=Cg_lmRLTNPMk1CJBvVJEXww_wQmmdq9i6CToUEflJ1w,12810
516
- umap/tests/integration/test_edit_datalayer.py,sha256=ghq0aGkLw3UxiLPooG0qYGy9_h9bCYOBiZDhpswPRqE,9499
521
+ umap/tests/integration/test_draw_polygon.py,sha256=s_a1j2Ye3jq09VmALZM0k1j2wYgoSjtjtlwpc8Eh_Sg,25311
522
+ umap/tests/integration/test_draw_polyline.py,sha256=NxoY-Sf56Kyu-AuX-1sO9xCuS5InK9NdEuUZ2EMklTg,12453
523
+ umap/tests/integration/test_edit_datalayer.py,sha256=gg55b6xwWo__-DC4at7YT4NcaFnxn47GPhlrd86NZ9s,9505
517
524
  umap/tests/integration/test_edit_map.py,sha256=cIJWelF1DWIUjqEyyb7NyaDLU8cQ0LGo-WfUEUx_5-A,7111
518
525
  umap/tests/integration/test_edit_marker.py,sha256=1MpA1mjdtVx2HuFkVSYZojBoGJ0fhK_JBGDsv5v6rUE,4736
519
526
  umap/tests/integration/test_edit_polygon.py,sha256=JeIW6NcBltIl958uJ_T-0dRCT5gOo9JrNtULvg7nxf4,5286
520
527
  umap/tests/integration/test_export_map.py,sha256=jH0BXm-7Ov26OEkve9-xKMfRwXwR73zRrZLIQusyUOY,12112
521
528
  umap/tests/integration/test_facets_browser.py,sha256=bsEpb4tXZtxF3tdmSZ0tGrOIIEhd1KSbmDQruuUQFic,10622
522
529
  umap/tests/integration/test_features_id_generation.py,sha256=e99_8AxeMAi53JjVGlsI32zlrXGAU19FHJfTuYdiBVQ,1511
523
- umap/tests/integration/test_import.py,sha256=5cy2lFC8HCXm2gTsXi1-ydEQ5zXRYJ8uTnqmvMNx4fw,24627
530
+ umap/tests/integration/test_import.py,sha256=kUqFLpFFigAzwjbYX9FOkDlpahjntkWBaF9TmrLQWAI,28985
524
531
  umap/tests/integration/test_map.py,sha256=WH_vNCsFTnfEKNyt9OHfpXa3BMS1fh1cqvSLSb_Nxtk,8726
525
532
  umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
526
533
  umap/tests/integration/test_map_preview.py,sha256=kP0vkEiUN7EJNCvZgNeUAzrrXfgwpU0S2UnmOBV4P5A,3540
527
534
  umap/tests/integration/test_optimistic_merge.py,sha256=HK-RYWyqvkUw3ibnONzb3HNMsvj9RLDXnf0vJlWkv6g,10948
528
- umap/tests/integration/test_owned_map.py,sha256=7R_CwndXw_ZSg2mQDvLjnskL6t_iQE0ENOC676WL5x0,9885
535
+ umap/tests/integration/test_owned_map.py,sha256=lzdHaN9HTQ-bd_MJT1tOVVALRxq1UqNiVWWhAzp-caI,10374
529
536
  umap/tests/integration/test_picto.py,sha256=Ey9V-NTQ64cIEtdXWzjhlBEykmTiGk7jUxKN1oA6n_g,9040
530
- umap/tests/integration/test_querystring.py,sha256=Q9W1TOr5I-FkqIlDGXah9vs7GW-MTYdGNWkSb-uyUd4,2466
537
+ umap/tests/integration/test_querystring.py,sha256=yR7oOlIA4qbL14gEazdFmdCtoOc7RKwadpuuutAPxU8,2754
531
538
  umap/tests/integration/test_share.py,sha256=gDna-wFedwJ_-8HLBw_G5IO3zA3l96p1FGBSZ15g_7g,1813
532
539
  umap/tests/integration/test_slideshow.py,sha256=yhy75YYpfTKpkGK7xGjJDJoqHtN6p2LG-O4krVE1Yks,1907
533
540
  umap/tests/integration/test_star.py,sha256=icB5SbFbXe4KYp3DIJ0xAwCrSQS2rweqIaQTAng3CfY,842
534
- umap/tests/integration/test_statics.py,sha256=BuScxhKTXclLzKEZYTatzPnh9rKrY2FsqgdT3vVLwqc,1521
535
541
  umap/tests/integration/test_tableeditor.py,sha256=C2s06rTnzbs_ULxfsyPVq4UkfpnuRxCvqsK2zaEYfa0,7838
536
- umap/tests/integration/test_tilelayer.py,sha256=nQIhU3GIxxCXrelNWgSsm4iT3Su52rW8ENWtKfiqjWk,4607
537
- umap/tests/integration/test_view_marker.py,sha256=PPuG93hSN33qjSOnHg8ls0XucsuGl89t49JqwLusJLE,2918
542
+ umap/tests/integration/test_team.py,sha256=LVuj5Dhz27cqk6ieEbukGsdy9J2FP5aQmcMex_xevIg,1594
543
+ umap/tests/integration/test_tilelayer.py,sha256=rBI3bm4hCpH87rcFvuc5H8yu1D9FQBZMNbqqJzpdI24,5302
544
+ umap/tests/integration/test_view_marker.py,sha256=sPZBbX5jF8WkbAl3Q9eta7a80E2rPXOaH-R26Myf6I0,4003
538
545
  umap/tests/integration/test_view_polygon.py,sha256=I7wR6DUrictIMrCPKajCrruJVLry4ZRDdjSs8q0XaOg,1829
539
546
  umap/tests/integration/test_view_polyline.py,sha256=n1QVIdl-Xg9yN9o-Jc6VnPhFAuUspsgY0odiUe_jJC4,1598
540
- umap/tests/integration/test_websocket_sync.py,sha256=_E72UldefpDGdjFysKroU4--HLLabiqcvhyXFrUjDus,10515
541
- umap_project-2.5.0.dist-info/METADATA,sha256=7OZba-FQrgw-ceJLleBjDgQzUecRbROqXbvjQcNpZbY,2679
542
- umap_project-2.5.0.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
543
- umap_project-2.5.0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
544
- umap_project-2.5.0.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
545
- umap_project-2.5.0.dist-info/RECORD,,
547
+ umap/tests/integration/test_websocket_sync.py,sha256=sdMjvZsCImhceQiFvSBHKo4dR6HJPl7-D0NItl2QsNU,10530
548
+ umap_project-2.6.0.dist-info/METADATA,sha256=yaxiBoCFKKK2DxnnqUORj2-4P3LMmCerr9-b2Qo2UWs,2679
549
+ umap_project-2.6.0.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
550
+ umap_project-2.6.0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
551
+ umap_project-2.6.0.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
552
+ umap_project-2.6.0.dist-info/RECORD,,