umap-project 2.3.1__py3-none-any.whl → 2.4.0b0__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.
Files changed (210) hide show
  1. umap/.DS_Store +0 -0
  2. umap/__init__.py +1 -1
  3. umap/locale/en/LC_MESSAGES/django.po +81 -31
  4. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  5. umap/locale/fr/LC_MESSAGES/django.po +109 -59
  6. umap/management/commands/run_websocket_server.py +23 -0
  7. umap/models.py +6 -1
  8. umap/settings/base.py +11 -3
  9. umap/static/.DS_Store +0 -0
  10. umap/static/umap/.DS_Store +0 -0
  11. umap/static/umap/base.css +53 -162
  12. umap/static/umap/content.css +3 -2
  13. umap/static/umap/css/dialog.css +18 -0
  14. umap/static/umap/css/icon.css +8 -0
  15. umap/static/umap/css/importers.css +44 -0
  16. umap/static/umap/css/panel.css +19 -57
  17. umap/static/umap/css/tooltip.css +59 -0
  18. umap/static/umap/css/window.css +35 -0
  19. umap/static/umap/favicons/.DS_Store +0 -0
  20. umap/static/umap/fonts/.DS_Store +0 -0
  21. umap/static/umap/img/.DS_Store +0 -0
  22. umap/static/umap/img/alert-icon-error.svg +8 -0
  23. umap/static/umap/img/alert-icon-info.svg +4 -0
  24. umap/static/umap/img/alert-icon-success.svg +3 -0
  25. umap/static/umap/img/icon-external-link.svg +3 -0
  26. umap/static/umap/img/importers/communesfr.svg +5 -0
  27. umap/static/umap/img/importers/datasets.svg +13 -0
  28. umap/static/umap/img/importers/geodatamine.svg +10 -0
  29. umap/static/umap/img/importers/overpass.svg +7 -0
  30. umap/static/umap/img/importers/random.svg +18 -0
  31. umap/static/umap/img/importers/random1.svg +4 -0
  32. umap/static/umap/img/importers/random2.svg +4 -0
  33. umap/static/umap/img/source/.DS_Store +0 -0
  34. umap/static/umap/js/components/alerts/alert.css +160 -0
  35. umap/static/umap/js/components/alerts/alert.js +169 -0
  36. umap/static/umap/js/components/base.js +54 -0
  37. umap/static/umap/js/modules/autocomplete.js +347 -0
  38. umap/static/umap/js/modules/browser.js +1 -1
  39. umap/static/umap/js/modules/caption.js +4 -3
  40. umap/static/umap/js/modules/global.js +36 -12
  41. umap/static/umap/js/modules/help.js +255 -0
  42. umap/static/umap/js/modules/importer.js +280 -0
  43. umap/static/umap/js/modules/importers/communesfr.js +44 -0
  44. umap/static/umap/js/modules/importers/datasets.js +41 -0
  45. umap/static/umap/js/modules/importers/geodatamine.js +95 -0
  46. umap/static/umap/js/modules/importers/overpass.js +84 -0
  47. umap/static/umap/js/modules/request.js +12 -14
  48. umap/static/umap/js/modules/rules.js +241 -0
  49. umap/static/umap/js/modules/schema.js +63 -14
  50. umap/static/umap/js/modules/sync/engine.js +93 -0
  51. umap/static/umap/js/modules/sync/updaters.js +109 -0
  52. umap/static/umap/js/modules/sync/websocket.js +25 -0
  53. umap/static/umap/js/modules/ui/dialog.js +52 -0
  54. umap/static/umap/js/modules/{panel.js → ui/panel.js} +25 -14
  55. umap/static/umap/js/modules/ui/tooltip.js +116 -0
  56. umap/static/umap/js/modules/utils.js +25 -18
  57. umap/static/umap/js/umap.controls.js +13 -14
  58. umap/static/umap/js/umap.core.js +1 -324
  59. umap/static/umap/js/umap.features.js +67 -27
  60. umap/static/umap/js/umap.forms.js +9 -13
  61. umap/static/umap/js/umap.js +220 -180
  62. umap/static/umap/js/umap.layer.js +142 -74
  63. umap/static/umap/js/umap.permissions.js +5 -9
  64. umap/static/umap/js/umap.tableeditor.js +8 -8
  65. umap/static/umap/locale/am_ET.js +51 -16
  66. umap/static/umap/locale/am_ET.json +51 -16
  67. umap/static/umap/locale/ar.js +51 -16
  68. umap/static/umap/locale/ar.json +51 -16
  69. umap/static/umap/locale/ast.js +51 -16
  70. umap/static/umap/locale/ast.json +51 -16
  71. umap/static/umap/locale/bg.js +51 -16
  72. umap/static/umap/locale/bg.json +51 -16
  73. umap/static/umap/locale/br.js +55 -20
  74. umap/static/umap/locale/br.json +55 -20
  75. umap/static/umap/locale/ca.js +51 -16
  76. umap/static/umap/locale/ca.json +51 -16
  77. umap/static/umap/locale/cs_CZ.js +93 -58
  78. umap/static/umap/locale/cs_CZ.json +93 -58
  79. umap/static/umap/locale/da.js +51 -16
  80. umap/static/umap/locale/da.json +51 -16
  81. umap/static/umap/locale/de.js +56 -21
  82. umap/static/umap/locale/de.json +56 -21
  83. umap/static/umap/locale/el.js +51 -16
  84. umap/static/umap/locale/el.json +51 -16
  85. umap/static/umap/locale/en.js +51 -16
  86. umap/static/umap/locale/en.json +51 -16
  87. umap/static/umap/locale/en_US.json +51 -16
  88. umap/static/umap/locale/es.js +51 -16
  89. umap/static/umap/locale/es.json +51 -16
  90. umap/static/umap/locale/et.js +51 -16
  91. umap/static/umap/locale/et.json +51 -16
  92. umap/static/umap/locale/eu.js +51 -16
  93. umap/static/umap/locale/eu.json +51 -16
  94. umap/static/umap/locale/fa_IR.js +51 -16
  95. umap/static/umap/locale/fa_IR.json +51 -16
  96. umap/static/umap/locale/fi.js +51 -16
  97. umap/static/umap/locale/fi.json +51 -16
  98. umap/static/umap/locale/fr.js +52 -17
  99. umap/static/umap/locale/fr.json +52 -17
  100. umap/static/umap/locale/gl.js +51 -16
  101. umap/static/umap/locale/gl.json +51 -16
  102. umap/static/umap/locale/he.js +51 -16
  103. umap/static/umap/locale/he.json +51 -16
  104. umap/static/umap/locale/hr.js +51 -16
  105. umap/static/umap/locale/hr.json +51 -16
  106. umap/static/umap/locale/hu.js +51 -16
  107. umap/static/umap/locale/hu.json +51 -16
  108. umap/static/umap/locale/id.js +51 -16
  109. umap/static/umap/locale/id.json +51 -16
  110. umap/static/umap/locale/is.js +51 -16
  111. umap/static/umap/locale/is.json +51 -16
  112. umap/static/umap/locale/it.js +51 -16
  113. umap/static/umap/locale/it.json +51 -16
  114. umap/static/umap/locale/ja.js +51 -16
  115. umap/static/umap/locale/ja.json +51 -16
  116. umap/static/umap/locale/ko.js +51 -16
  117. umap/static/umap/locale/ko.json +51 -16
  118. umap/static/umap/locale/lt.js +51 -16
  119. umap/static/umap/locale/lt.json +51 -16
  120. umap/static/umap/locale/ms.js +51 -16
  121. umap/static/umap/locale/ms.json +51 -16
  122. umap/static/umap/locale/nl.js +51 -16
  123. umap/static/umap/locale/nl.json +51 -16
  124. umap/static/umap/locale/no.js +51 -16
  125. umap/static/umap/locale/no.json +51 -16
  126. umap/static/umap/locale/pl.js +93 -58
  127. umap/static/umap/locale/pl.json +93 -58
  128. umap/static/umap/locale/pl_PL.json +51 -16
  129. umap/static/umap/locale/pt.js +215 -180
  130. umap/static/umap/locale/pt.json +215 -180
  131. umap/static/umap/locale/pt_BR.js +51 -16
  132. umap/static/umap/locale/pt_BR.json +51 -16
  133. umap/static/umap/locale/pt_PT.js +51 -16
  134. umap/static/umap/locale/pt_PT.json +51 -16
  135. umap/static/umap/locale/ro.js +51 -16
  136. umap/static/umap/locale/ro.json +51 -16
  137. umap/static/umap/locale/ru.js +51 -16
  138. umap/static/umap/locale/ru.json +51 -16
  139. umap/static/umap/locale/si.js +51 -16
  140. umap/static/umap/locale/si.json +51 -16
  141. umap/static/umap/locale/sk_SK.js +51 -16
  142. umap/static/umap/locale/sk_SK.json +51 -16
  143. umap/static/umap/locale/sl.js +51 -16
  144. umap/static/umap/locale/sl.json +51 -16
  145. umap/static/umap/locale/sr.js +51 -16
  146. umap/static/umap/locale/sr.json +51 -16
  147. umap/static/umap/locale/sv.js +51 -16
  148. umap/static/umap/locale/sv.json +51 -16
  149. umap/static/umap/locale/th_TH.js +51 -16
  150. umap/static/umap/locale/th_TH.json +51 -16
  151. umap/static/umap/locale/tr.js +51 -16
  152. umap/static/umap/locale/tr.json +51 -16
  153. umap/static/umap/locale/uk_UA.js +51 -16
  154. umap/static/umap/locale/uk_UA.json +51 -16
  155. umap/static/umap/locale/vi.js +51 -16
  156. umap/static/umap/locale/vi.json +51 -16
  157. umap/static/umap/locale/vi_VN.json +51 -16
  158. umap/static/umap/locale/zh.js +51 -16
  159. umap/static/umap/locale/zh.json +51 -16
  160. umap/static/umap/locale/zh_CN.json +51 -16
  161. umap/static/umap/locale/zh_TW.Big5.json +51 -16
  162. umap/static/umap/locale/zh_TW.js +51 -16
  163. umap/static/umap/locale/zh_TW.json +51 -16
  164. umap/static/umap/map.css +27 -41
  165. umap/static/umap/unittests/sync.js +105 -0
  166. umap/static/umap/unittests/utils.js +76 -34
  167. umap/static/umap/vars.css +18 -1
  168. umap/static/umap/vendors/dompurify/purify.es.js +5 -59
  169. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  170. umap/templates/umap/components/alerts/alert.html +89 -0
  171. umap/templates/umap/content.html +4 -3
  172. umap/templates/umap/css.html +4 -0
  173. umap/templates/umap/home.html +3 -0
  174. umap/templates/umap/js.html +0 -3
  175. umap/templates/umap/map_init.html +2 -8
  176. umap/templates/umap/messages.html +9 -11
  177. umap/templates/umap/search.html +3 -0
  178. umap/tests/.DS_Store +0 -0
  179. umap/tests/base.py +2 -0
  180. umap/tests/integration/.DS_Store +0 -0
  181. umap/tests/integration/conftest.py +30 -0
  182. umap/tests/integration/test_anonymous_owned_map.py +8 -13
  183. umap/tests/integration/test_browser.py +1 -1
  184. umap/tests/integration/test_conditional_rules.py +201 -0
  185. umap/tests/integration/test_dashboard.py +1 -1
  186. umap/tests/integration/test_datalayer.py +2 -3
  187. umap/tests/integration/test_edit_datalayer.py +4 -4
  188. umap/tests/integration/test_edit_map.py +1 -1
  189. umap/tests/integration/test_facets_browser.py +3 -3
  190. umap/tests/integration/test_import.py +138 -49
  191. umap/tests/integration/test_map.py +2 -2
  192. umap/tests/integration/{test_collaborative_editing.py → test_optimistic_merge.py} +7 -7
  193. umap/tests/integration/test_owned_map.py +1 -1
  194. umap/tests/integration/test_picto.py +2 -2
  195. umap/tests/integration/test_statics.py +1 -1
  196. umap/tests/integration/test_websocket_sync.py +283 -0
  197. umap/tests/settings.py +5 -0
  198. umap/tests/test_datalayer_views.py +0 -1
  199. umap/tests/test_views.py +53 -0
  200. umap/urls.py +5 -0
  201. umap/views.py +40 -11
  202. umap/websocket_server.py +92 -0
  203. {umap_project-2.3.1.dist-info → umap_project-2.4.0b0.dist-info}/METADATA +11 -9
  204. {umap_project-2.3.1.dist-info → umap_project-2.4.0b0.dist-info}/RECORD +207 -164
  205. {umap_project-2.3.1.dist-info → umap_project-2.4.0b0.dist-info}/WHEEL +1 -1
  206. umap/static/umap/js/umap.autocomplete.js +0 -341
  207. umap/static/umap/js/umap.importer.js +0 -187
  208. umap/static/umap/js/umap.ui.js +0 -190
  209. {umap_project-2.3.1.dist-info → umap_project-2.4.0b0.dist-info}/entry_points.txt +0 -0
  210. {umap_project-2.3.1.dist-info → umap_project-2.4.0b0.dist-info}/licenses/LICENSE +0 -0
@@ -1,4 +1,5 @@
1
- umap/__init__.py,sha256=jNDu9_qA08LzoGVtdJANTg4APrzNV1Rq-CURkQHgCLc,18
1
+ umap/.DS_Store,sha256=B4-anBIm7kFQicJnbjnO-JSfRpv0HVyvhdun5qug0zM,6148
2
+ umap/__init__.py,sha256=pAeaFawMKFhIU957ygfp3KHfUZ4lyT3Yq8ZQXibVsyQ,20
2
3
  umap/admin.py,sha256=gL6zrexmDbIKIqOKHCuAM5wtqr8FIQkRtjbcXcNyBrs,749
3
4
  umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
4
5
  umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
@@ -8,11 +9,12 @@ umap/fields.py,sha256=c32tKWKF8aThrCXDJblwo0n9n2ET6hxBYzEupfr0B4o,900
8
9
  umap/forms.py,sha256=bpNLMSsB1sHUcaf24MmUpwVdEz_SHy_ohfhQMoKwDzI,3128
9
10
  umap/managers.py,sha256=-lBK0xYFRDfX76qDRdLnZOA8jEPYseEwIj8QOiHVM4w,243
10
11
  umap/middleware.py,sha256=p8EPW_gYW8Wh2lk0DNIAkZQbYlBZugW7Yq4iiA7L4aE,514
11
- umap/models.py,sha256=vzm5lRd-juy3WP-CHW5glU2drQi9LU-anS2IOzgUEFU,17488
12
+ umap/models.py,sha256=3_AHTDnh2EG_aAv16bJ99gw-mz5KfAIJZgV9XRVIbaY,17660
12
13
  umap/storage.py,sha256=bdjjdn768fZJYsyDNBxgwLvSu6rhde_Cc6yzyZZDmSg,2282
13
- umap/urls.py,sha256=frMCdfDQ2QB39xxqI8I12EeT-yChn5KDwDp-kQxp930,6876
14
+ umap/urls.py,sha256=U8h4_C67GXfIZCWJRiOGf2in7g8wtVefhKzj3Aw7Q-U,7012
14
15
  umap/utils.py,sha256=19i8ibi-1IXxafT4k_yOHMhD-DsPH74Ll9qw-UrUkM4,5856
15
- umap/views.py,sha256=N2J9BOP5Yq6ClTy2K_11l34pRIgCL4jwvU_n2K_wM8c,41075
16
+ umap/views.py,sha256=iHU1glFj30Lizn2maH7PiXdvyTrOCQ3GTI9yTJrmirg,42213
17
+ umap/websocket_server.py,sha256=igM05T95y7IqidPy8nVrCwbydj_xcCEAqwjZPb0mxyA,3023
16
18
  umap/wsgi.py,sha256=IopIgnDZbCus3XpSetTHnra9VyzWi0Y2tJo-CmfTWCY,1132
17
19
  umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
18
20
  umap/locale/am_ET/LC_MESSAGES/django.mo,sha256=xdPMnJ3Z0fkxocaO7IKexPyomuWUKak01D2T6pVruco,5457
@@ -36,7 +38,7 @@ umap/locale/de/LC_MESSAGES/django.po,sha256=vkpO7hxsY8C6tGyHNBMgfWRKwNxGs-IZ_BFs
36
38
  umap/locale/el/LC_MESSAGES/django.mo,sha256=sQhmIyKMdxrBssH9Yu7pt3QjvYEtvqxk0_BiarpCKaI,12429
37
39
  umap/locale/el/LC_MESSAGES/django.po,sha256=yI6iHoWce4H3reQNrbrE2cQFCZ8d1zlMP2y9iGA_8TM,17815
38
40
  umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
39
- umap/locale/en/LC_MESSAGES/django.po,sha256=p8Tg5mwqZ7s2hkByQXfnwy_VLcsxLGMyojQiQqIZ-QQ,10776
41
+ umap/locale/en/LC_MESSAGES/django.po,sha256=n7NOlv9fcXMx95Qiycd73EUojTrPvfd5o4vjRDgqByk,12075
40
42
  umap/locale/es/LC_MESSAGES/django.mo,sha256=JmXqbBXhl11fQCibH1MHU64AFsCp_pEbv8AiA94zL08,9034
41
43
  umap/locale/es/LC_MESSAGES/django.po,sha256=JqoNWltQ-vJNgunikXgRcuy90O7t8zROQ5NPlc8rYN4,14596
42
44
  umap/locale/et/LC_MESSAGES/django.mo,sha256=vGMEot_LXQAQPvJESjgOFeyOgzEzYWYKP0HXQEDRDW4,5195
@@ -47,8 +49,8 @@ umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=LcU15SxGd21_jDyaZoH2DIQbrD1GqcUHM
47
49
  umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=ASiA2CeduaQzb6TwyWbm-rCi2wN29PV_VnhOn0ifxeg,14688
48
50
  umap/locale/fi/LC_MESSAGES/django.mo,sha256=-p9kvtfjdJKrbSMEfpdvoZ6jEX_njf-0uqzlvydbhOo,4856
49
51
  umap/locale/fi/LC_MESSAGES/django.po,sha256=Saq5PpycYhmutr6CWPQNYI4UwQbSdxrCWxapwotaB3c,12823
50
- umap/locale/fr/LC_MESSAGES/django.mo,sha256=peYLQjhdbs-c6E-RbVXIl8bNYMzc6OaqVVs0pqw5pwA,10220
51
- umap/locale/fr/LC_MESSAGES/django.po,sha256=i6LNVXn3OqPfNevCf61MLaEViWjCEalgAPUFjswMv44,15263
52
+ umap/locale/fr/LC_MESSAGES/django.mo,sha256=n3UJhFF9fr9kSGCl9PeBppx-asz54nMppW-Uo8m2ARw,11387
53
+ umap/locale/fr/LC_MESSAGES/django.po,sha256=aQDUujCDbw_-x11jjcmneoOjmuI7ezKYaYey5KSF0WI,17042
52
54
  umap/locale/gl/LC_MESSAGES/django.mo,sha256=-p9_T_4C3ns1Sc1iG7zfCUstFsGX_aaxzeLwD8d8Uho,6253
53
55
  umap/locale/gl/LC_MESSAGES/django.po,sha256=w5yCwKMsmFJ7Tk-y4p2a8oOaYkyYi_aLNnWpbw04M2M,13210
54
56
  umap/locale/he/LC_MESSAGES/django.mo,sha256=HsIucdlws4u7UHqBWx6x3Rgbz7H37MQS0iMjHkvLsRo,6944
@@ -114,6 +116,7 @@ umap/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
114
116
  umap/management/commands/anonymous_edit_url.py,sha256=hsWgPzZJmLCoDKTWziFUuwq-DdnSiXkSal2t2TIED-s,1070
115
117
  umap/management/commands/generate_js_locale.py,sha256=wkf-PFIHS7m4ZhyL1ZRMBLqyUeY2SlOrTXS42tE0-bs,1281
116
118
  umap/management/commands/import_pictograms.py,sha256=RuQDCoiKamba4l3fZUGAXRyd-3zwWWT5c5AhgDvs7AQ,2369
119
+ umap/management/commands/run_websocket_server.py,sha256=TyECJWnmZ95KpVEWSaqfXywz5VwIEzPdypU2d6V541c,648
117
120
  umap/migrations/0001_initial.py,sha256=dMcXtTKPiA0IqXCrDVctH91Fe0hhc04NxmvcLAULyzE,8787
118
121
  umap/migrations/0002_tilelayer_tms.py,sha256=E99JAu1K0NzwsCEJs1z5uGlBkBJmoVb9a3WBKjpLYlo,372
119
122
  umap/migrations/0003_add_tilelayer.py,sha256=53r95Y13CvV0pXseYEnnqtPI4-Q0qcVldYMS-jFpPoE,833
@@ -137,23 +140,30 @@ umap/migrations/0020_alter_tilelayer_url_template.py,sha256=e6DC3PNSiyyCAwS64D8d
137
140
  umap/migrations/0021_remove_map_description.py,sha256=C1-pTJ1loj_aZPIbdbPRIHQayarlkbUbfW6bj_vnKGA,336
138
141
  umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
142
  umap/settings/__init__.py,sha256=xxt2Nq7a3xjGTvn1f1hEBV8xErNu0XJ-qP_S21uWzpQ,1597
140
- umap/settings/base.py,sha256=CREsol-R6r8rI6t-0BL6rNhDdR0fPZew01HFPXBI2Ds,9924
143
+ umap/settings/base.py,sha256=opweJ5UoMRmBylkAuWcTqP364ab9DRwXwfjMKio-60s,10254
141
144
  umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
142
145
  umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
146
+ umap/static/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
143
147
  umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
144
- umap/static/umap/base.css,sha256=PMCxVS8cfIFl2OGtHQgNwibraCAu6yIg9sJ6XQk_Gy4,19667
148
+ umap/static/umap/.DS_Store,sha256=25wUHAzNlKKNi8zJzUdKYuHD2pgYZXNNmvaeGbIAYkM,6148
149
+ umap/static/umap/base.css,sha256=Guz-0MreA8HlLLmXaF2MSjElP1HlrIGtszc9uD3wqDI,17206
145
150
  umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr8,9125
146
- umap/static/umap/content.css,sha256=pXtVn8r0EStDr7h9Cw5HKRtcFroBIIoffFqk16SB6Xw,11402
151
+ umap/static/umap/content.css,sha256=3aFi5hHUuokCqdW_xQuEDyS6vW1ahSdjbSPPnFNutbk,11429
147
152
  umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
148
153
  umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
149
- umap/static/umap/map.css,sha256=4Lig80PUqQebn0-jEwrJWHAkZi4B-3j6hwwDTPpPd9s,39947
154
+ umap/static/umap/map.css,sha256=eRdNaEKQqBT8ZRTNsmNT4qCJWVznqbRrUOAQgtyghA4,39672
150
155
  umap/static/umap/nav.css,sha256=vU41w3awlBtsB4XCRJOtVVy9-VN7rua1nJsay61ST_0,1574
151
156
  umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
152
157
  umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
153
158
  umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
154
- umap/static/umap/vars.css,sha256=DWFJBk4_l7_b-R0V3jujsvRuC7FIGpZ9g30Mo3St9Zs,876
155
- umap/static/umap/css/icon.css,sha256=E9dZbFBsKPUvRoIWDONdQLXJ5PqIPJtqyRXk_H5UOf4,2310
156
- umap/static/umap/css/panel.css,sha256=59joliPC6DhlFdqZqQyBh8NOXz_vw9AlP7mGFDyguyw,3509
159
+ umap/static/umap/vars.css,sha256=oew1iuKNev2JK0-IAFzDgvGGceNv7tNRI6vExIzuLbE,1266
160
+ umap/static/umap/css/dialog.css,sha256=IMDzMNemyCdVyPC5r8rEc5zJuMjdqMiJ4gz7tuHsXtc,379
161
+ umap/static/umap/css/icon.css,sha256=VUQqVTl8JVfYBGV5mT1NL6ocRol_jZPOmS9Yzv9SuXQ,2430
162
+ umap/static/umap/css/importers.css,sha256=pKUlkrBgcTSq6Nf5Fx-SlbRJ7T2ugU2mtlJIQtcCajE,1185
163
+ umap/static/umap/css/panel.css,sha256=pjbR1XulhLc8iZMDcPi1VLFAE6qlYsxitKytlWCMLLU,2914
164
+ umap/static/umap/css/tooltip.css,sha256=-hPbDSVn0cEHfNiBYtz-PlZ-bVBWVKg_8VnsEckYv3M,1384
165
+ umap/static/umap/css/window.css,sha256=50MFWr9oU200f8-crTPJi3ZPG9h1eG5i6oOBP8yttBQ,808
166
+ umap/static/umap/favicons/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
157
167
  umap/static/umap/favicons/apple-touch-icon.png,sha256=xjhkAIZwNywTApzAgnwSvagpcm252katIaVnHIIC_LE,2776
158
168
  umap/static/umap/favicons/favicon.ico,sha256=0jjg1MnZ2AdWFLKjEwZSf09TVXlqz6oNdtX4rRppHdA,15086
159
169
  umap/static/umap/favicons/icon-192.png,sha256=saYoRLAaZNkHHntkmldXiptk9FEcaGWDO3N6HpYyw8w,2987
@@ -165,16 +175,22 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
165
175
  umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
166
176
  umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
167
177
  umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
178
+ umap/static/umap/fonts/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
179
+ umap/static/umap/img/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
168
180
  umap/static/umap/img/16-white.svg,sha256=qvCWtxEyFGjinV6Zm6SYczI3FYDG2ar-SoLCke329Qo,35880
169
181
  umap/static/umap/img/16.svg,sha256=R9KiBefx832Eog5088aXm07s-thjbRsgSTs3N8emvCw,25475
170
182
  umap/static/umap/img/24-white.svg,sha256=PE1gVqezV0mTFmYwmaG2r1n_HODeADkZNd-9Wb5gOCo,17592
171
183
  umap/static/umap/img/24.svg,sha256=rEsLjRM1Unxqi_Lw9kc6Npy86jk5wbhWS8ZkVfM_GR0,24881
184
+ umap/static/umap/img/alert-icon-error.svg,sha256=YyAYn6J4zVGLfpnC60UntTxlylcA4lPcHkBfzufcdDU,4104
185
+ umap/static/umap/img/alert-icon-info.svg,sha256=wnfvaWhidanbIX8n2G8ppFG7pXyqnDjL9lhdbVoeCf8,735
186
+ umap/static/umap/img/alert-icon-success.svg,sha256=ZzH4Te0IMM0Cyf9MByh57gxNxVddOavA3gSGqsa3xM0,189
172
187
  umap/static/umap/img/edit.svg,sha256=I3YHkH3X6CQP0TkoKev-9yQD-DeKobDl6MN-bAH2ghs,554
173
188
  umap/static/umap/img/icon-bg.png,sha256=EeliGSnA81n2CBPKELxRjCodV5Xyqy9yLaoacWNZkdQ,190
174
189
  umap/static/umap/img/icon-delete.svg,sha256=ORwww_L88Co87ImlpKw4hj1DYG8KMbj2l5q6lxToRNg,386
175
190
  umap/static/umap/img/icon-download.svg,sha256=-KLOn9NCIQka-tZOCbvOoA4Io7tJIi1lEdeFAmmnsrM,554
176
191
  umap/static/umap/img/icon-duplicate.svg,sha256=Q6Mnffy831mt-OhrdyQjZ74XytoPkr-aVxDurUnMD9w,511
177
192
  umap/static/umap/img/icon-edit.svg,sha256=LEKK318AdfTF39aRv-bchkVQMBQC01_keDfNcQBjCjg,526
193
+ umap/static/umap/img/icon-external-link.svg,sha256=BKEZzqFdR8VcVxGiveoCedoWphj0lVywcPgY9gOMlJs,276
178
194
  umap/static/umap/img/icon-share.svg,sha256=gM10E83eYKoeb7f3_r4WvTsKPVzIBM0Fd0cVDocdeus,517
179
195
  umap/static/umap/img/icon-view.svg,sha256=B_7C10pw1OMMRNkOebzV4Z-s9e7UjeOGIYkPb71DQh4,495
180
196
  umap/static/umap/img/logo.svg,sha256=yLz4cKJmvn5ROlr_yFz5ZSYBi4vPqLnuo5_KTncyYXs,327
@@ -185,139 +201,160 @@ umap/static/umap/img/marker.svg,sha256=xR0PuBxGt9sRlLXbvllNT952Wx1iapyrZpsyJiWY-
185
201
  umap/static/umap/img/opensource.svg,sha256=DLoPUwQivWNDY0DsKLsL0CK4a6x30ao0YXuUJN-HzYI,473
186
202
  umap/static/umap/img/osm.svg,sha256=Owz6LQS8mm5ySW0XqnpyXf0WZx7pthz2GLzqwk5cuBA,1997
187
203
  umap/static/umap/img/search.gif,sha256=Ws7V8knHJGdxG5_12zfPoBweX6PjOjHzrzYY4eyAY-4,1472
204
+ umap/static/umap/img/importers/communesfr.svg,sha256=P4M9PyT3Y8PCWhp5GVw2W-TeB0xZEWlUzKv7fkfihBk,4760
205
+ umap/static/umap/img/importers/datasets.svg,sha256=Pqn6WzE0ZpE8QLgml75mnkstXseTpI1wXXN5MyjOshU,4075
206
+ umap/static/umap/img/importers/geodatamine.svg,sha256=LmNUU_nANL-q8vE1Y2rZ9_D0QRDFCgWIwf7fEUX_gwo,8133
207
+ umap/static/umap/img/importers/overpass.svg,sha256=PFmMwBEQug3bpMdjk3Xue7cU3eArnmBwLOYs5M3z0Nc,837
208
+ umap/static/umap/img/importers/random.svg,sha256=DnxcCu2vJOBdZYWhl8Si0boGjkLcvqrRZaB_BbP1zcM,2445
209
+ umap/static/umap/img/importers/random1.svg,sha256=mY-Yp9-my2ZxdvL6sgnDzc-ihjnAw-mNZtgSkbj25LA,1370
210
+ umap/static/umap/img/importers/random2.svg,sha256=wRwBTM7skyvLZJX4QHozMX8P4jxP59POTHlKPsMODcg,1933
211
+ umap/static/umap/img/source/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
188
212
  umap/static/umap/img/source/16-white.svg,sha256=MS_S0U-3bjOlo4hKslp-cPdbBOlUtWC4JlSH7Os1FpY,68449
189
213
  umap/static/umap/img/source/16.svg,sha256=XjrSS3_6kxf432h83aQF6UfxwjNxjNdioJG8jXEdQXo,48127
190
214
  umap/static/umap/img/source/24-white.svg,sha256=KUkQwOG-ut88Ev5QJKNCXx8DWdPxskIRuxxvY_jL0NA,29405
191
215
  umap/static/umap/img/source/24.svg,sha256=YMuMON2fI9PzkG-QMmT0XqoDDGhPEmbE1jMJUBfpOLI,38713
192
- umap/static/umap/js/umap.autocomplete.js,sha256=yKkkO2U34lwgy37RfuMSv9npLfmvacWbRjDnc96M2wU,7942
193
- umap/static/umap/js/umap.controls.js,sha256=FneCwTsOAgqgPDOL_Fa3pNr9SUJOBuZ71MTXRdh2xxM,37271
194
- umap/static/umap/js/umap.core.js,sha256=GG_W-8EsbR_jNU30dG8U0svFoGuC6nKzZ6K-3NR5jC4,17807
216
+ umap/static/umap/js/umap.controls.js,sha256=Zrp5Dys0lHx5KSSuBSYDOz_g58T9LxLGQOZ-OHHYD2U,37277
217
+ umap/static/umap/js/umap.core.js,sha256=JWaIuowHjnLrOQnUCifln4qiAvD7X43DAcL7flQK_4g,7546
195
218
  umap/static/umap/js/umap.datalayer.permissions.js,sha256=_wqTme7S7AvMOXSWecLm_iJBCV65V_KUH9ABKJg1H-8,1948
196
- umap/static/umap/js/umap.features.js,sha256=rlf2ZCsRLA2-Z8hYK9oZlll4ehW9IAyX5G9HD9QQ2ro,35504
197
- umap/static/umap/js/umap.forms.js,sha256=ZVqImsOUi7oW-N0VmUdePmw4rnpZ4-legYm2WBCN4lE,31531
219
+ umap/static/umap/js/umap.features.js,sha256=M-Bj0lS4q_vsvhYQl2lp7WSDphbrghltvqZKHQkNWac,36412
220
+ umap/static/umap/js/umap.forms.js,sha256=FGqqpD7yQOxfgHNwTaYSiNYRw8biuoZpwDmwvozFhXI,31400
198
221
  umap/static/umap/js/umap.icon.js,sha256=8dzfEN5fgP2jXYTbN6B-xjrB94A6nXHCXO2RKoTC0S0,7594
199
- umap/static/umap/js/umap.importer.js,sha256=8WodN0j0cS0Zc9Q96G7q6Ahlmv-C9NAgUyCyp1o1DOM,5704
200
- umap/static/umap/js/umap.js,sha256=TTS3qnPa-6ZDVIzcrBoPm23ZKTlachTvDBE1IRaiFXw,56617
201
- umap/static/umap/js/umap.layer.js,sha256=D1DDRFQsMMPdW6jGOvWAwV01V56wmP1fhdFbP7wRWlc,48797
202
- umap/static/umap/js/umap.permissions.js,sha256=u5OoAaMNF5b055NzxshvG1XHzEt-ji7lcrn7USKzCU4,6168
222
+ umap/static/umap/js/umap.js,sha256=BmXDvnIDb61ivEgae19LUlKVobBzB-FieR8clpui6Pg,57023
223
+ umap/static/umap/js/umap.layer.js,sha256=hLOUncINK5BjbwIWWH4qTrfUKQYq3V_80Rs9-JU_x5I,50739
224
+ umap/static/umap/js/umap.permissions.js,sha256=JK_O8ttM95F5tGXY5MJ_eLXgEmNPS4dVQS3h9u3I3iM,6068
203
225
  umap/static/umap/js/umap.popup.js,sha256=rVO7JPJM0usM6hoKtfZaxgyCKaE-Ze1oFDQrc3T3kIY,9800
204
226
  umap/static/umap/js/umap.share.js,sha256=nUM4r1QZSw6s9lIxgXvMMcG-udsauGWFOrayC9_uEa4,7766
205
227
  umap/static/umap/js/umap.slideshow.js,sha256=xRhNvtQJEYtyiif38KLEyquPn_L50Ga3zkD7j4V23aQ,4398
206
- umap/static/umap/js/umap.tableeditor.js,sha256=eZucKKD_KwlVEcIBVyAUxK1H_hiTk3t6RP0r-6Qn2DY,3934
207
- umap/static/umap/js/umap.ui.js,sha256=2VJYOmKF7ZvyOePF89LSG3W_O7zA15Kf1X1BRujpdek,6072
228
+ umap/static/umap/js/umap.tableeditor.js,sha256=Vi9xy0FKspLc9uTbLGuh0UJUfKSNnNAOHxWyAjuvF8A,3882
229
+ umap/static/umap/js/components/base.js,sha256=gDb1fGuNCC1KEu4PlQflC1PDNyrulhqLhmlsjyCJpps,1575
208
230
  umap/static/umap/js/components/fragment.js,sha256=2zFkX4A0iVeebZJawmveEMKMXQyYmBuY67rbZUPo-Fs,341
209
- umap/static/umap/js/modules/browser.js,sha256=AekQJOUxDkM0SgJ2BVkeETPgFzLTOZLxlt7FPFMZrQs,7336
210
- umap/static/umap/js/modules/caption.js,sha256=2CT2DrFJVqvzvDIDHyD3S0KNLjG7jrR1UWtUcXRzJ3k,3780
231
+ umap/static/umap/js/components/alerts/alert.css,sha256=F2Bg6IabPgzkCIZycwnta8neONX_q7fhVIYYY1po9g8,4314
232
+ umap/static/umap/js/components/alerts/alert.js,sha256=7IYQfvXUWtcm3A300sbI5EULfRnQGmuMbh5hQDPYquc,4475
233
+ umap/static/umap/js/modules/autocomplete.js,sha256=BPpZBvNttkAQVf3LzTlj_dQhTHbD8cZrAXOIeq6jRn4,7886
234
+ umap/static/umap/js/modules/browser.js,sha256=0x1vlMOIeV-Ma-yrOzpkbgRiN2kUP4UK6F9LgxuHloI,7337
235
+ umap/static/umap/js/modules/caption.js,sha256=s8SIwKszoO7z8be8WRISJLOx58_cOup2V26vhJ5bE0g,3867
211
236
  umap/static/umap/js/modules/dompurify.js,sha256=-4MuNA0bAa60lAL40MPa1F4YHfr2V05isAJdPQlABpk,341
212
237
  umap/static/umap/js/modules/facets.js,sha256=H7RtTKbpCMQa68GIRqkUtmKfDYqrv6pcTSLXeC3GwQc,3428
213
- umap/static/umap/js/modules/global.js,sha256=Sk4vJuQvbo_KmufBcpG5Jp_nqzzSP_HSHhWpE6aOR1Q,689
238
+ umap/static/umap/js/modules/global.js,sha256=IBFJfeOs9Dt3bM-6D7hzKuFPbIqcPFhp5XRViGcNmH4,1312
239
+ umap/static/umap/js/modules/help.js,sha256=kNbDZM2RgVbC1d3HgJAELM2tadgulIFnTCdgveTmcNg,9850
214
240
  umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
241
+ umap/static/umap/js/modules/importer.js,sha256=_AJ7F030qBBftJi1BDRAEf2svoTqg9pvl3xIs8d--Z4,7920
215
242
  umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
216
243
  umap/static/umap/js/modules/orderable.js,sha256=E3FgVeQG1iEnu56M7KIYOwV1ngNyrF8yXVEs0jExbjc,2518
217
- umap/static/umap/js/modules/panel.js,sha256=ZEEL7JH4BPFClvzs5HjhA8xSdwwaayll5io9p3j0gns,2728
218
- umap/static/umap/js/modules/request.js,sha256=X8RklmGBV-aXSlT3jS2Gnr54YTq36nDL94irAJtXQ-Q,3978
219
- umap/static/umap/js/modules/schema.js,sha256=Fwn_BHZ1vvcuyAqymEySV4jfP2FDhTG7OZx1Gp1obhY,11019
244
+ umap/static/umap/js/modules/request.js,sha256=Ax1h2dIW2rRiS93v78iHYVCBHTMIIp6RIomW-pk99Fs,3881
245
+ umap/static/umap/js/modules/rules.js,sha256=4FfuENBDL_8Jgn_jlgFQy7UaknBtTsw-srryvBGm2b4,6060
246
+ umap/static/umap/js/modules/schema.js,sha256=cJnZYuhkbv8GZcu8TocIyyWZtQy5RjOEoM7nSTBwKxM,12226
220
247
  umap/static/umap/js/modules/urls.js,sha256=5r2xDllTHALs7LurFmCSXMN8YZzhOSYwoQrNsTx4Xq8,853
221
- umap/static/umap/js/modules/utils.js,sha256=-QIkBe7HNHobp0a5TS_EvK80WiVyb9AiVj1ZXZGYLuk,10689
222
- umap/static/umap/locale/am_ET.js,sha256=VdOBl8xVf-aPVENcbO_-cWYSyWlEh4v4owCtNQwGanA,30074
223
- umap/static/umap/locale/am_ET.json,sha256=aRgEm_9nNxmXSFWmanWL3kr5YFRNXxUYewgUuBbTJlA,30003
224
- umap/static/umap/locale/ar.js,sha256=YPtWMXqq8YAwcQ8zE16e--vgC0HEuLf6W5P-yD6-q84,26410
225
- umap/static/umap/locale/ar.json,sha256=B0m2n-8N6cOM1AOThrD9t1VTu48k9WAwbquMnYBY2XE,26345
226
- umap/static/umap/locale/ast.js,sha256=LDATGJ_S7aks5oW-zy8_505pql7bxxvl6eAVgvYD27E,25975
227
- umap/static/umap/locale/ast.json,sha256=_VsiZSPisolww35VAGWIYmYKfQFEEliZ-tvxD3uYXRw,25908
228
- umap/static/umap/locale/bg.js,sha256=eTJz-C4UFC0Wy-EyJDhofp-g7e5x4ILnU4DvYCxS9A4,29166
229
- umap/static/umap/locale/bg.json,sha256=Cz3ZIpLOKgOx_i6WjbX_o3hht1goTfDLjXK0sUbZf4o,29101
230
- umap/static/umap/locale/br.js,sha256=umJUIeNmwu-l4wJn_yTSf-FoNP4FDI69jTwp54Cm_bI,27562
231
- umap/static/umap/locale/br.json,sha256=Aw31sJuz9dZU-IfNARwVtJwW_RvAsT6uQ79iBF_xocc,27497
232
- umap/static/umap/locale/ca.js,sha256=Fr5hjmMV53fm4FF9GVZD2-UsK1WM8JiqGydG6azlly4,26872
233
- umap/static/umap/locale/ca.json,sha256=jnduGqc49VO58pYIFYWuVlu5Shn9YZfAq6WCOZ7Atjg,26807
234
- umap/static/umap/locale/cs_CZ.js,sha256=NH6QuxE_s9evLVp2Tuy4o0S0o92sQb23f2R0rUAk9u4,27936
235
- umap/static/umap/locale/cs_CZ.json,sha256=eWa759HlBy_6PVKZ-dkTdqr5YQ2SxLLvwicc2keVvFA,27865
236
- umap/static/umap/locale/da.js,sha256=ND9KEGiIJEp7QbXtFG_1y9h8xdm_O5pXqV2AgHxdFYE,26338
237
- umap/static/umap/locale/da.json,sha256=2Dzm3ecJPX54ncj6MV8Vk1LP9vcr4wkJznkjZNphmlg,26273
238
- umap/static/umap/locale/de.js,sha256=EZU8BUt8QCRVvA2aKEyiMgip-0DKuAbG1xsMmWZHRKU,28057
239
- umap/static/umap/locale/de.json,sha256=GpmF0BcjtSO0dNaw_mfCeUHs8QuS66U5EEhvU2zdUWs,27992
240
- umap/static/umap/locale/el.js,sha256=fS1_rMo4MOiGv5mJh6fYe_aR7skhRJH8cqYuIj6LJ10,37323
241
- umap/static/umap/locale/el.json,sha256=1nhlk7LjTFeXiEgomzoMtp3uF-7EHtZvzsZTLhkmTDg,37258
242
- umap/static/umap/locale/en.js,sha256=dtgJ78R9TAkqXIr0hTxMit2tEMVCgs5ZTOlIbDFr8Uw,25975
243
- umap/static/umap/locale/en.json,sha256=iMZNUN9_0nzy0U29YIxvRTMjY5bFj9cNNvw4imZ6gk8,25910
244
- umap/static/umap/locale/en_US.json,sha256=F5DeXhl5F19f25HWmjgnUce5trAJWPn_-LKAxWsxKs0,25644
245
- umap/static/umap/locale/es.js,sha256=bNof-SvlZQJnwzN93Y2KpopghUzbdaCAddvt30ZNnug,28261
246
- umap/static/umap/locale/es.json,sha256=OGy7kuKLJ-3HymbShQhPmWxgTcc3tgsnvWU1m0qZNQk,28196
247
- umap/static/umap/locale/et.js,sha256=NUr_ky4hdSSTMBwyZFnGJP3oKcQUJ8VBigRXYo3LLsQ,26164
248
- umap/static/umap/locale/et.json,sha256=8D8acrCWxpLuJFMsOMMe_jLqY620-O_W5LA1DNAFD1s,26099
249
- umap/static/umap/locale/eu.js,sha256=2F8fNms4n2I6UXWw9LIgkpwZtoRu6iEnbNDuqsyCZMY,26018
250
- umap/static/umap/locale/eu.json,sha256=DXrgaQc6eZOSUkb03F2cwzggYwurCmAXYy1LClZu-Hw,25953
251
- umap/static/umap/locale/fa_IR.js,sha256=_ynGd15TMt4IItyDMTiBvM1qWUMG0ByiMaaQ7OfYsp0,32285
252
- umap/static/umap/locale/fa_IR.json,sha256=oZiW3N-Jf6907FD0tHM2H8s-U421-UhrEyRd7EOhl0Q,32214
253
- umap/static/umap/locale/fi.js,sha256=RWULNR4WcuYGq9DSbP4zQ9ZsPLnfykn0qAGhljHfVls,26890
254
- umap/static/umap/locale/fi.json,sha256=0XzNf8NNn8VN0WHiO5xEc2wM7XSUcjJXu63kfDJmUOg,26825
255
- umap/static/umap/locale/fr.js,sha256=Tric58k84EFQ1GY1oMCFNE1cn2ywPKOGL4DDiUNG8hQ,28383
256
- umap/static/umap/locale/fr.json,sha256=QMJqMHl4AQW2lHS-Y4vDC_xs2Gru41EoMsGGpVBqRko,28318
257
- umap/static/umap/locale/gl.js,sha256=73gHK98_ETDDG6Vnpv39i5kC6kxOuHD94cZc4qIaj_s,27452
258
- umap/static/umap/locale/gl.json,sha256=74-Ouy7chXi7-4PitOtXPYWI72kPxYgG1kge8YbAvgQ,27387
259
- umap/static/umap/locale/he.js,sha256=OiDqyYFprP7jc6JeXU0HlfzF8tuUmka770j38edjD0k,29606
260
- umap/static/umap/locale/he.json,sha256=Q6QMSRbtop7n-EFiSd-CWBuzb1PjECi9C_3b6ci2Gg8,29541
261
- umap/static/umap/locale/hr.js,sha256=zukyBVzh0t3I3irYa3FM837uI7Vrx6lJkuOWBMp0KfU,26135
262
- umap/static/umap/locale/hr.json,sha256=zXgOJLeA9mFf3OomtOGoKJiK3fmsW7H54VwuaOxIy-A,26070
263
- umap/static/umap/locale/hu.js,sha256=UXS-RR0DUWB2OlrZtX9bjZqtyCq_fzg371xAqJC6M20,29476
264
- umap/static/umap/locale/hu.json,sha256=DtdJQpXNtEVouje019EClpo2kxwCnrC0DPcgGo67AsY,29411
265
- umap/static/umap/locale/id.js,sha256=IKWWXDTpyqIchIaNgfndVtpVrg7cvGr31NYMWAt_x_4,25973
266
- umap/static/umap/locale/id.json,sha256=_VsiZSPisolww35VAGWIYmYKfQFEEliZ-tvxD3uYXRw,25908
267
- umap/static/umap/locale/is.js,sha256=JxhCOYzVQESIzB6_v9TUhfn3zrf-nU04cwbiGbEpWyI,27367
268
- umap/static/umap/locale/is.json,sha256=z8Se8Lim-zd2zp3QwECuRKig6Oqz5-QUKdlVTqXreMo,27302
269
- umap/static/umap/locale/it.js,sha256=rkJIG1DxSgq9HrFyDAHHqNOIWTW9KbNQ89R0b2B92W0,28355
270
- umap/static/umap/locale/it.json,sha256=86hZZs3WxHDyDMjigxLWTOFGVuz7TH3Mm9lfJOwYyn4,28290
271
- umap/static/umap/locale/ja.js,sha256=2-X-zoF4Sv7VXbKzkHTezyefxBVuy3Oage1BICIfFFQ,28631
272
- umap/static/umap/locale/ja.json,sha256=DHBsOX7UQZQW3IqgbeuuSPtFTzzCHh9958MGQRmBSSA,28566
273
- umap/static/umap/locale/ko.js,sha256=3XxxmI1M-Moisc3YQctFTZdGplKpa7231xtEXLSffNU,26158
274
- umap/static/umap/locale/ko.json,sha256=hqZaUwamoq_89SuvMljuHJW0fyfjaXkRR8l1nHbjppk,26093
275
- umap/static/umap/locale/lt.js,sha256=ldg3RaPucqndoKV7Y16x-iIPyiPnwZBaiQZ3NbhdC1I,26829
276
- umap/static/umap/locale/lt.json,sha256=nUW95KlEEor5MMfqBV4vkv5NQ4ubJJn9Job005x5uMM,26764
277
- umap/static/umap/locale/ms.js,sha256=vxu-L7mpY_rIa2siNpFAuGQfxKvX2VCGLXO2YBS6teE,27240
278
- umap/static/umap/locale/ms.json,sha256=o2WS6Y9GiFvwx3ewGBFRRi1V1SriXr8mSDhrrRL69AY,27175
279
- umap/static/umap/locale/nl.js,sha256=MSXtsUqVMecSiIHekJzPbppf0AqDSnQjlvNxvg730rQ,27697
280
- umap/static/umap/locale/nl.json,sha256=b18XPLSIKZwm7ogVtIy4oCdg8Qlz5KowcvQ-T4tiKO0,27632
281
- umap/static/umap/locale/no.js,sha256=CgkbDnwoD-CoimdfvR2IikoUze3EgKQAweiHlswf-Q0,26190
282
- umap/static/umap/locale/no.json,sha256=iAQI8URGBJpNoNUZeHxsI_5APTfKEFFmXq9zqrUAbz4,26125
283
- umap/static/umap/locale/pl.js,sha256=O1qnj8G-ZNK91eI8sg30szKHUpYZYXoKKg00760R_Vg,27490
284
- umap/static/umap/locale/pl.json,sha256=LdhNhBekl-0CLAohx3z5hWNoCPNCtd4-sxoiNg_tiZA,27425
285
- umap/static/umap/locale/pl_PL.json,sha256=_VsiZSPisolww35VAGWIYmYKfQFEEliZ-tvxD3uYXRw,25908
286
- umap/static/umap/locale/pt.js,sha256=dBZnCQLJrJ6A-MrlR3Zr_sHw3bEnFLVp5MnPclrjFJ0,27442
287
- umap/static/umap/locale/pt.json,sha256=ixYl4uJ9AQeANxiZLFmi0yqmok-Vvs8F0H-dm2tZ43Q,27377
288
- umap/static/umap/locale/pt_BR.js,sha256=A7QXXFFhdzT0COF5ZueND8U9abiZotdHlL-D4D_nM4E,27436
289
- umap/static/umap/locale/pt_BR.json,sha256=ZS6Ix_F-eu5Wqh1sQesYypnYUwmHdjKGpSknxMxvgT0,27365
290
- umap/static/umap/locale/pt_PT.js,sha256=LK-lq-TFrSebUKb3CZ1DOOABqm6CBdjc-ByJcaquPQY,27448
291
- umap/static/umap/locale/pt_PT.json,sha256=QySDHRouwS6dGpTb6KPkekSJC9BiVhR2tVB3SlCAmOE,27377
292
- umap/static/umap/locale/ro.js,sha256=KIwZWhw1qQJ1ZX4tKqETuMgXIj-fDbwcc45KbnWz6i0,26010
293
- umap/static/umap/locale/ro.json,sha256=wrF__agjLkeME8aXVkJ0klMEpCXWG2pXEgJH4PPqsa4,25945
294
- umap/static/umap/locale/ru.js,sha256=sLgPzAGeJ6cspqEaakfpyyWX1Dr7PLDZwg-LnE7iWHQ,33597
295
- umap/static/umap/locale/ru.json,sha256=Wox2Q1yfUta5pc7suviNxbVqXlsJV05ikwFNyT33dqk,33532
296
- umap/static/umap/locale/si.js,sha256=XP-UVAeJsuW856p2W-ct_6ItcjP1A-swdkkXZKqY-Mw,26332
297
- umap/static/umap/locale/si.json,sha256=HkEE9QHjsHyjWHM45bN4KNkNlhVuuFQhiQwlNVwPbPI,26267
298
- umap/static/umap/locale/sk_SK.js,sha256=7TnIwJQyKHdfsa1jISAMyz8Ou86xotQMi-7hZlN-w8A,27317
299
- umap/static/umap/locale/sk_SK.json,sha256=V4FHMowmB0eqnUPC6Jsx3sxjMjuNO7b6ZrliXoNhh7k,27246
300
- umap/static/umap/locale/sl.js,sha256=PUkGPYXE0-iBaz8PGywDNqHUJ3Xu9Il2CJTh90tDDZo,27185
301
- umap/static/umap/locale/sl.json,sha256=bvGtCZDVaotD0UgGjosxRge347cxr-IU3x-xUJQyUNU,27120
302
- umap/static/umap/locale/sr.js,sha256=YfnCRXsccA4TeGmu-OWsTH_mAZCLDCKi1M5aJCMpAlI,30176
303
- umap/static/umap/locale/sr.json,sha256=HQ8Pjin4JVV2llaYXy1djjEs8sZZ88XYEIOMeZaPzfA,30111
304
- umap/static/umap/locale/sv.js,sha256=mYHPVUdqelMA_vBFJ0YIVe6IOpoPYXtK29_VFCU6e-Q,27134
305
- umap/static/umap/locale/sv.json,sha256=juVF_gYgH3glMQ1mYQ3rV6Xqj5YdFMSotCLQvl5NetM,27069
306
- umap/static/umap/locale/th_TH.js,sha256=XH5Wk3Wg3Icq25J22v1Gtqa7rsRlGw5n5EYwHzjDgAY,25979
307
- umap/static/umap/locale/th_TH.json,sha256=_VsiZSPisolww35VAGWIYmYKfQFEEliZ-tvxD3uYXRw,25908
308
- umap/static/umap/locale/tr.js,sha256=n6zHujpDtDKEKinsM_z1AEzVadioInLjdsEispntyR4,27627
309
- umap/static/umap/locale/tr.json,sha256=O3QFZGhgdV4-423bzagBtYj6OqxvOdm1BLJEsOksfDo,27562
310
- umap/static/umap/locale/uk_UA.js,sha256=9RzYyRH-WiwJ-BlZRfdu-3Haka0FiMwjIfUMV6XcHuY,33223
311
- umap/static/umap/locale/uk_UA.json,sha256=GcPcduNwAJkiaF487K8jJAVT7Jbg-d3w20VoP4sZwfI,33152
312
- umap/static/umap/locale/vi.js,sha256=HDdS6hN0JuTn0ci9lGJNZOvNm0ypDRhCi4VITIODfUg,26245
313
- umap/static/umap/locale/vi.json,sha256=b4ugBsdR-RzCISw7EH9qxyzi_-KHEd0BbjPoR7OPOfg,26180
314
- umap/static/umap/locale/vi_VN.json,sha256=_VsiZSPisolww35VAGWIYmYKfQFEEliZ-tvxD3uYXRw,25908
315
- umap/static/umap/locale/zh.js,sha256=06iIcsOtbpvAZ9TrDk_Ud6xqMrpcgs0llukkIgHzgjM,25643
316
- umap/static/umap/locale/zh.json,sha256=__IFT7EOsKFKXW5isQal2Wj7XL_Wxn0PQxX-mwFM_Ts,25578
317
- umap/static/umap/locale/zh_CN.json,sha256=_VsiZSPisolww35VAGWIYmYKfQFEEliZ-tvxD3uYXRw,25908
318
- umap/static/umap/locale/zh_TW.Big5.json,sha256=_VsiZSPisolww35VAGWIYmYKfQFEEliZ-tvxD3uYXRw,25908
319
- umap/static/umap/locale/zh_TW.js,sha256=Mnzg2wVTmfExnTyH9z0UYKHXh8NivEWi-EclRl0u0WM,25608
320
- umap/static/umap/locale/zh_TW.json,sha256=_21nEQhF7Ufyajqe3ngToNbx0Ahgv40CAU74RJU2qPo,25537
248
+ umap/static/umap/js/modules/utils.js,sha256=h4NT-hsLo6gmusYiGjN2WYXvxRVXRRa781i1pWID910,10705
249
+ umap/static/umap/js/modules/importers/communesfr.js,sha256=VtyPEh7MccPM0P1YoYFtBX4YLwk4LrxS5IhJFM3Vmwc,1273
250
+ umap/static/umap/js/modules/importers/datasets.js,sha256=g9cviZ7BT8x55CiSFod4299if2uZEtjZndo9lbkUUCI,1301
251
+ umap/static/umap/js/modules/importers/geodatamine.js,sha256=OCqw7OVmniJKkpAhAAeTf17KV47FF4oiueAq1UFxDSA,3076
252
+ umap/static/umap/js/modules/importers/overpass.js,sha256=QDWZhi0S5xKTE13o5ISLxH-bkAheqMzcihRpLFkQgVY,2765
253
+ umap/static/umap/js/modules/sync/engine.js,sha256=TPUi0H_WZZ7sEQ4UV--om5RgLHPxJdpKWVsuFIG_31Q,2584
254
+ umap/static/umap/js/modules/sync/updaters.js,sha256=Hjh9Wvx0kRLnnp9CmYQ4TKt_I51ZC78peGMe7FzS-oU,3044
255
+ umap/static/umap/js/modules/sync/websocket.js,sha256=v0gawFtVyjm81cNP9H8m8bx30_E1n0BWypqdRmiEoWA,638
256
+ umap/static/umap/js/modules/ui/dialog.js,sha256=-fcCXda2kR2yipJtElzBJPRrUPwkKOFQZMR4Fayv0wQ,1735
257
+ umap/static/umap/js/modules/ui/panel.js,sha256=Uv-jJi4HLV4ymbd4Xfw1D9vQRbSyJ_g_e5oiyzfoFPU,2839
258
+ umap/static/umap/js/modules/ui/tooltip.js,sha256=PEcQvak5bsrabfpSBWSMdBW_E_wJorxW4PCbEBTpySs,3624
259
+ umap/static/umap/locale/am_ET.js,sha256=aEs135O03PLeEauCi3cjuCcPK09P143KR0sUhl2I_yo,32065
260
+ umap/static/umap/locale/am_ET.json,sha256=j9oV12YUK9rmdKnJ2_g5BRvu06xu8JDeBEtqyMUbCnk,31994
261
+ umap/static/umap/locale/ar.js,sha256=Ms39VKCdFCMgzhl5SV0zKJeKod6wo-JXampfkbt0nww,28578
262
+ umap/static/umap/locale/ar.json,sha256=lYoN13biUaRnc1GWYp-Q0JHDAjbWSK2njSzYX49NRBE,28513
263
+ umap/static/umap/locale/ast.js,sha256=gyy9N_FcDmCIVUa_N_kj4Q0bGLyPTu4VEYU5oNSHygw,28147
264
+ umap/static/umap/locale/ast.json,sha256=eCRlYcE5PsBGx_NIaxzJn-qmDLx6FKAQ0OIcTXnHUfM,28080
265
+ umap/static/umap/locale/bg.js,sha256=sW-FOKlRWjkMQtrB1_G2oXX54VCJLStchRyqsxlm844,31242
266
+ umap/static/umap/locale/bg.json,sha256=7PTQUowvjqZNNLvxqsOy85J9p74VLGUByO2o_quW9ZU,31177
267
+ umap/static/umap/locale/br.js,sha256=35QzzaBj6adC4UJVA5RDyQdzHwu2Q_jQGXHWE-ig4rM,29670
268
+ umap/static/umap/locale/br.json,sha256=typPF4ZytU-UYqgHUXzoQW8FpceGGBp6kQHHJ_rGc7Y,29605
269
+ umap/static/umap/locale/ca.js,sha256=H3qSO86HzZ2chr90O-VJ1Ju_GQEMAYFnfCd9Dy3y47E,28963
270
+ umap/static/umap/locale/ca.json,sha256=5XXSMd7XPNnCfqHoXb1bVHp7IpaUgQCZplUd04dx95o,28898
271
+ umap/static/umap/locale/cs_CZ.js,sha256=vHwCOthC2EZV42tv3Y5dDnG5RZQ2sUwPKhhfsVnU2N4,30383
272
+ umap/static/umap/locale/cs_CZ.json,sha256=RyCUvBE7v3SSUljQzZi1hFH1lV8u9Cr0fFyEAuRviwc,30312
273
+ umap/static/umap/locale/da.js,sha256=rLeFiT0F5IlcTY-KZEbDTyGMEEVJtgcWyY1LKYAVlsM,28515
274
+ umap/static/umap/locale/da.json,sha256=g6KoDxBKvVh_oTC9xT1EkEtpZpY-QVoRSKPmZUd74P4,28450
275
+ umap/static/umap/locale/de.js,sha256=mz9wq5V-1mox5REu_IsGLH2CgELQVDkBQlFlKXl2EiY,30098
276
+ umap/static/umap/locale/de.json,sha256=xvxvLQYc4TSHuNFSR6MINLl6umTpMmR8crG_5zqRxV8,30033
277
+ umap/static/umap/locale/el.js,sha256=t1HHbGoP_rI-AP0G0R21CzSbUqqG4YTzM4T_tfF8g5Y,38855
278
+ umap/static/umap/locale/el.json,sha256=KMQt2_RurbYV8k2gV6GiResfLCpnwV4hgUB7q_6B0Ek,38790
279
+ umap/static/umap/locale/en.js,sha256=yS54U88A1zV8olxoMPLBzk1zWvzuu_o7T_epMLTZRFo,28147
280
+ umap/static/umap/locale/en.json,sha256=ps5ABcHoKcDC6j4dchqLJHXSoVS_kvQNUUxmHVq6Ik0,28082
281
+ umap/static/umap/locale/en_US.json,sha256=u6sIwPJfYnI156QDTbYwBrq0i4ws0d0dEm41SPfuJBo,27861
282
+ umap/static/umap/locale/es.js,sha256=W2OnEkmeAFIkOU2JpfFLU7BKVcCrIDrZSfVnph8NVBM,30373
283
+ umap/static/umap/locale/es.json,sha256=ak3Nf1pL5jRtX5HRBIt6ydwpCt50RNzXT0_rPDjbJ8I,30308
284
+ umap/static/umap/locale/et.js,sha256=gTnlWcCqlKH048VKU3G3RgaqmEkj6_ugV5uw3_9XwdA,28337
285
+ umap/static/umap/locale/et.json,sha256=rp4CtO3HHi2jK34P-jJDO7-D-ZiyaHgDss6fQ0O509E,28272
286
+ umap/static/umap/locale/eu.js,sha256=nNmK158y9fnHZcenHTcSmpUf6DQIocQiRv_ZgQqzIU8,28192
287
+ umap/static/umap/locale/eu.json,sha256=ysbltZQrB3nBwDbIKhTh-8c4ue7-wRpICxbYWCTuF8s,28127
288
+ umap/static/umap/locale/fa_IR.js,sha256=kz2VJKwVsy_LiydbaXa4d9RKeVVtp7eMX6QBABkYAMc,34165
289
+ umap/static/umap/locale/fa_IR.json,sha256=bQyzFdyg-7hv7n_nGb537TZeolvlU0bAA-RY63TWlfk,34094
290
+ umap/static/umap/locale/fi.js,sha256=sZImuGI33mkuF4zqOVzHLUXQVrmeqg2BvS-Yye3t0kE,29039
291
+ umap/static/umap/locale/fi.json,sha256=gGumegoK89jiJJzxhfTB9b9RTAHZ5zvqO-wasarVX5Y,28974
292
+ umap/static/umap/locale/fr.js,sha256=vZhezWDTAvWVcoi5GdKlgyW_tBpN-AGJi-L9GvzFYMo,30765
293
+ umap/static/umap/locale/fr.json,sha256=URCW2F3tq4PCCXzhKay3VYnryfPOman-yqDH4Gc1pFM,30700
294
+ umap/static/umap/locale/gl.js,sha256=zF8UtVRHghXmEcDPkCrtgGedfXnAu8E-X0T-ZKilgeM,29588
295
+ umap/static/umap/locale/gl.json,sha256=9Z-FgEGCeoR0lCEEeNfsLcpBrULEwI5EkMfvGp5ECG0,29523
296
+ umap/static/umap/locale/he.js,sha256=OnRsbuDFhoj6FMnTTsx6wEHR-Eu6xgIRTfEow7rT7hs,31649
297
+ umap/static/umap/locale/he.json,sha256=nheI2FGhrig5T8LDu6KcZEC6LHH6bU4678S4t9VCfG8,31584
298
+ umap/static/umap/locale/hr.js,sha256=FNKyfjNgj9Anp8JZ5mvBViXFYmNhJ3gtlpv7PBCPzrk,28316
299
+ umap/static/umap/locale/hr.json,sha256=MA2qv9GIO_NZlOay-2Yrc1WwjOgJl4t8yH0eqVTDWw4,28251
300
+ umap/static/umap/locale/hu.js,sha256=RHaeI73_KHd7RSMX1hsNRViuPO-7aNVKVypv1IFwKfY,31477
301
+ umap/static/umap/locale/hu.json,sha256=FOtsKCoc_Hjk0coYFwEkUcaEx6tngN10B7nv89q6NHU,31412
302
+ umap/static/umap/locale/id.js,sha256=b7-TgCcdkQIN6G9uR--f_LQLsDP0Oeybiz4D6w4FESo,28145
303
+ umap/static/umap/locale/id.json,sha256=eCRlYcE5PsBGx_NIaxzJn-qmDLx6FKAQ0OIcTXnHUfM,28080
304
+ umap/static/umap/locale/is.js,sha256=SBdyjNhx6CZty069gH2EbDcPFG6cUEYTF2p0tofondM,29474
305
+ umap/static/umap/locale/is.json,sha256=J-hYH5Pd9F4UPx9R2FVKcZ1B_KYPwsInQU2anyXCzRE,29409
306
+ umap/static/umap/locale/it.js,sha256=0f1f-7231q_hUCjqJZG9R9jUL0isH-QCLnH04TmoV1Q,30440
307
+ umap/static/umap/locale/it.json,sha256=ysH_wcHKfs7tO8KwBPfx5ugy55SAcfGzFUpRnA9Gkv0,30375
308
+ umap/static/umap/locale/ja.js,sha256=g6YmVDqjrSn7lRLoFla73ITagkQS6b_6m7HSCMjGCpA,30664
309
+ umap/static/umap/locale/ja.json,sha256=gNru3FY0uKkkBm2ZJ8oUg1D4drw3SC7JpIBZj3R0ykw,30599
310
+ umap/static/umap/locale/ko.js,sha256=Td1Lwk9siV0RvD7PBfczFAIgEc3CdP2bVDpj3zVDQBA,28335
311
+ umap/static/umap/locale/ko.json,sha256=BQxMnVRLv-IOMpB4YqXWkqgCwAiRTTZJVppyvMeYzJQ,28270
312
+ umap/static/umap/locale/lt.js,sha256=NYvt-UW02ZhCCo49CFTIVX2tebm0Iab8hQ0HS6jf09Q,28962
313
+ umap/static/umap/locale/lt.json,sha256=keCQcrD03gfetPbLXwtozqN80b5l7b5RsuRoqgRiglg,28897
314
+ umap/static/umap/locale/ms.js,sha256=qCQAO0U5O4lYbYa_K7CkHXeS82juKIwPrAHJZPN9Nf0,29323
315
+ umap/static/umap/locale/ms.json,sha256=9GOXSR47oe2Vi3IHIZ1HcSFugNRskQu80CvJ91dxaSU,29258
316
+ umap/static/umap/locale/nl.js,sha256=K4MC5PO6KuTuh1F3VAp4KYtfsLNiT9vZqA_HspfIWWI,29774
317
+ umap/static/umap/locale/nl.json,sha256=AMA0h5qa0fwFki688coAxSEM_GY-ZnDe8DZ-Thv-aF0,29709
318
+ umap/static/umap/locale/no.js,sha256=1XJQtgNyl0DSAWgIMFl5a8ZbB9oui8IXMCow8b9mMoE,28362
319
+ umap/static/umap/locale/no.json,sha256=tcmQYo64or9X0iKEo96bIZ_Iv9QTGpG3f0mcSK9z7Ig,28297
320
+ umap/static/umap/locale/pl.js,sha256=B6fYRZKeBOG9UujBVBSREhy_vii5JcAuHADUOjVSuWs,29825
321
+ umap/static/umap/locale/pl.json,sha256=8WnN7sb-ARh1sftrl7rzkymrWgbGq3ldcwvNfokLyds,29760
322
+ umap/static/umap/locale/pl_PL.json,sha256=eCRlYcE5PsBGx_NIaxzJn-qmDLx6FKAQ0OIcTXnHUfM,28080
323
+ umap/static/umap/locale/pt.js,sha256=NEp13tgvZvhEy2GXWOMIv0inBvSe1pFIHvkJ1SHk0ho,30457
324
+ umap/static/umap/locale/pt.json,sha256=XZPKwYu5TdrM5_5bwWmVbQYXlwVE-pYBjb8eIam3QpE,30392
325
+ umap/static/umap/locale/pt_BR.js,sha256=Zjs7uMwFruBdDniMtsN-QMVz1_grjpYD2yHHn1sSiGY,29563
326
+ umap/static/umap/locale/pt_BR.json,sha256=DsdC2oW7KZH02dqf1Yhl8VyrxPCyNsImz4jpMBj8tPw,29492
327
+ umap/static/umap/locale/pt_PT.js,sha256=aOPtOSAFKg3A0Xxlr0dKDixqCi_p2tAMBGb2nedFdok,29581
328
+ umap/static/umap/locale/pt_PT.json,sha256=NJ6RPNEdr51-Lod_AAuAYZjj-ClSGzfG7nFdnuCoNTw,29510
329
+ umap/static/umap/locale/ro.js,sha256=KVqGVraY6t0x6gv-OB44nxaPlXxcG9cR4A9_TvrpBro,28174
330
+ umap/static/umap/locale/ro.json,sha256=OkOdi32inl-YBUaaGEJDCLOi5VhH-8mszLJhAf2GcC8,28109
331
+ umap/static/umap/locale/ru.js,sha256=hb79RRxZTJ-PiRBrQH8FqzO8tSHSYoDA9HOrBlmFpcs,35533
332
+ umap/static/umap/locale/ru.json,sha256=v0-EVlEehgCdMBIx7O_rxdUTnwTAhi2h_D0iDxXxJow,35468
333
+ umap/static/umap/locale/si.js,sha256=4lhsYFhfg2hZMZn0GZkX4YXY-A55WAs9xYJHPpyYuxs,28492
334
+ umap/static/umap/locale/si.json,sha256=cQk9X-el9PK66gQUCpFzZe09BCu_XCHESXpNaQTDLF8,28427
335
+ umap/static/umap/locale/sk_SK.js,sha256=Df1EAFST05CaAh0ciVgGHOFzGBNy401VPze9OogHa7s,29447
336
+ umap/static/umap/locale/sk_SK.json,sha256=SrD4Z_xDPPynimcp99e_2yzecKOBFD7GgbONtyEeVqg,29376
337
+ umap/static/umap/locale/sl.js,sha256=ijbgMz5HEQb-9aKQvrE794vLSUUAX_6N422pvbH2D-0,29317
338
+ umap/static/umap/locale/sl.json,sha256=ew2qBHqDGVkuFHLpvrH4J5A-VkGX-YSj1lDNHLggmgE,29252
339
+ umap/static/umap/locale/sr.js,sha256=3xbGgwX23ocUQTdtaHywDzHo-qy-xCjjnkDeGYPkSPs,32261
340
+ umap/static/umap/locale/sr.json,sha256=zIkBk02HLAgEi2uAqLbuxToq8uoGPFGWVVlAmSgYJvg,32196
341
+ umap/static/umap/locale/sv.js,sha256=ITw1s5HVm1md90-lt-NuvEXEiqFgX0LxWvT8vmbJFZk,29209
342
+ umap/static/umap/locale/sv.json,sha256=3jQXJXJ1R4VEo76TYDEgbIBtdggiEDaMa01xlKIKYZ8,29144
343
+ umap/static/umap/locale/th_TH.js,sha256=OWC2YRv625J495_Ypt3rEPq_4PxGdr9EsSd4hmQVbMU,28151
344
+ umap/static/umap/locale/th_TH.json,sha256=eCRlYcE5PsBGx_NIaxzJn-qmDLx6FKAQ0OIcTXnHUfM,28080
345
+ umap/static/umap/locale/tr.js,sha256=YtP7-hQLx3E56QXIRDBqUit-HGjI3gaD8CFFRJL625Q,29749
346
+ umap/static/umap/locale/tr.json,sha256=c1I8eAfWMw0IjU6ZmCqi-M2a8fPiseT_dqigewF2wbo,29684
347
+ umap/static/umap/locale/uk_UA.js,sha256=C-g5j2st7GJhfSzXobIUtBCoAjgiBmDqS8g3De0N9Sk,35177
348
+ umap/static/umap/locale/uk_UA.json,sha256=3lS6zwYlW_taixgkPGnZi-IUQ8BCUEp8uCXuaJfPYIQ,35106
349
+ umap/static/umap/locale/vi.js,sha256=nlL3QCyPpAHQ9U43WpfSW4kmE-SHnd01ufZj5dfl2Yw,28425
350
+ umap/static/umap/locale/vi.json,sha256=bl4rvMIO-lxNmVRlWtBOpDTaMaS3curU-Ak-_3_3rJA,28360
351
+ umap/static/umap/locale/vi_VN.json,sha256=eCRlYcE5PsBGx_NIaxzJn-qmDLx6FKAQ0OIcTXnHUfM,28080
352
+ umap/static/umap/locale/zh.js,sha256=XaLcn2PLf7HNYRAUq_-8Z1j4GfK8596GUCLoJxOCiHc,27835
353
+ umap/static/umap/locale/zh.json,sha256=6CpMyBSXh_70hC6eQvGMCSZZ5cYuvp01FGuWTJVjndE,27770
354
+ umap/static/umap/locale/zh_CN.json,sha256=eCRlYcE5PsBGx_NIaxzJn-qmDLx6FKAQ0OIcTXnHUfM,28080
355
+ umap/static/umap/locale/zh_TW.Big5.json,sha256=eCRlYcE5PsBGx_NIaxzJn-qmDLx6FKAQ0OIcTXnHUfM,28080
356
+ umap/static/umap/locale/zh_TW.js,sha256=R_lHLunXy0kbkD8gvs6G8XEpN26W0fT77YtGruBaAW4,27785
357
+ umap/static/umap/locale/zh_TW.json,sha256=_x9ughe0z-dZwUOyeQgoZmHEcVdJjzlhntYvWBfGEec,27714
321
358
  umap/static/umap/test/.eslintrc,sha256=lsy_EQL70iOehznbw1QtRqN858VT9vQAZXg9h2aTX2w,444
322
359
  umap/static/umap/test/DataLayer.js,sha256=P-bq8gjGrSEKXLxmDk85NI33GT5XWHHLvv44xJ7CGKk,14221
323
360
  umap/static/umap/test/Feature.js,sha256=xb6HjjD_EuI4ezvn3z_SUR_s7C1e8xmZim20VHaR2qg,3664
@@ -330,13 +367,14 @@ umap/static/umap/test/Util.js,sha256=KBsOQN_E4Y5N8VSDNP5fLdUrvOh7G3pewrkRKq547VQ
330
367
  umap/static/umap/test/_pre.js,sha256=O3qaQf-M2SLQ6c7AGIrRwdPm3iULiSTt-KkmAIQnAGg,12960
331
368
  umap/static/umap/test/index.html,sha256=1ZKUQry_D4tzZapPOnhs7TfLP0-yDtOpE28nEicH4qA,6616
332
369
  umap/static/umap/unittests/URLs.js,sha256=EqXPGohwNiEtJWk1QY2KgPaIwd0iP56nYvn05ufsZ-g,1878
333
- umap/static/umap/unittests/utils.js,sha256=LR6zW9aSbIqm8yF_vQdSpU1rGupEDPWLJFFEluca5qQ,20406
370
+ umap/static/umap/unittests/sync.js,sha256=A5JyhiEMSzjWqWtubyDcLfcthsFLvfUuKKn1Lcv0ZnA,3098
371
+ umap/static/umap/unittests/utils.js,sha256=gd_9iUEW_sVxnZKhfzgAQ9TvRqkKbiSxjVY4ZtTXJ54,21850
334
372
  umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=FebyRte_vQrD_CLC8Xjc2cI_bR694S6hDSIu26tDnZ8,24622
335
373
  umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css,sha256=_pRTmdgpDxfu1Oxb7DnP_DTdA44G-k3kf0otWP8gEnc,990
336
374
  umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js,sha256=I3zyDVArt4ZrRcCzTUp6OiNmD5KuDsZCvhG-yZt8lhE,8994
337
375
  umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=GCr5ZQawzxqZysqyxDTH6oUqP-KHxYTsG5xRt28--Zw,15029
338
- umap/static/umap/vendors/dompurify/purify.es.js,sha256=bbb7tFci1Ja9p9jIhl6P_TRY_UFR7A3l9cx3iBEYctQ,66134
339
- umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=3alEtwTS7nADNMarS5Av7mklHAozIHSRGLrZDKHRKIw,127359
376
+ umap/static/umap/vendors/dompurify/purify.es.js,sha256=TScM8DATZbXGCLOVBYhpfX4gbnKRCAlt53htdqS9umc,63951
377
+ umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=7KkvHp3X9QVutUAQnlG8iCMV4jJeHRsggC4yBoO2dTk,123294
340
378
  umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=Mx8aiCT4w9DBEUBJiX5eq9Ocy-6E3C9wLAik-dgOLY4,74768
341
379
  umap/static/umap/vendors/editable/Path.Drag.js,sha256=EATyTfgSiCkdjTwGM5lU1RZayxzynqhE-AgnuRlqYI0,3898
342
380
  umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css,sha256=eVKDGO_G2bIJvf_o5490h8BbMh5XeraSLmo6qTc8zj8,1263
@@ -409,43 +447,45 @@ umap/templates/registration/login.html,sha256=S8gafwZ5wE5FE_EhzySRKPcS2bzhnzJAbX
409
447
  umap/templates/umap/about.html,sha256=ycCW4EFTJMjLF9YT6xJ7Kqpey4sxozQyVTUx5l48kJo,127
410
448
  umap/templates/umap/about_summary.html,sha256=i1M3rNgQi912dr0_Jr2xoBSERm3WgEQTNpaiM4eF2ZM,2208
411
449
  umap/templates/umap/branding.html,sha256=8IzkIWqiZckgkX9FC-n1v6f8JIB2q7DcX3JHscxsaYA,60
412
- umap/templates/umap/content.html,sha256=L2JRYlXWX9ot3Mc7JCi2Sl5PY6crBTD1PKkf1E61QeA,2255
450
+ umap/templates/umap/content.html,sha256=VHDVxrdW14HuiCZjJxu30q_IVo1R1YgkSK3VIW8QmE4,2244
413
451
  umap/templates/umap/content_footer.html,sha256=Lq9CK37V2iFxqOdgGWRsJcoQs8e3Ih5VlENbQ-izX84,724
414
- umap/templates/umap/css.html,sha256=RBLqTvnha7Ccemg3RytCB6b07mBTnUONf_D1d_oEIeM,1681
452
+ umap/templates/umap/css.html,sha256=V7NmjtW3U0XLgX2_vzSBYxeRvPj5Gb5eM7RPrHH7xqY,1957
415
453
  umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
416
454
  umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
417
- umap/templates/umap/home.html,sha256=A0tMpiJ8MmLciD7A2SMNoYn5K60MN6PLrRfMahKXh8c,670
418
- umap/templates/umap/js.html,sha256=vs4tfLFZ-MrlaDsTMQnsAvEd-4gUCf2OqKOuntSavkI,3838
455
+ umap/templates/umap/home.html,sha256=cgx-AsxybcAMSk_7pUh5av4hPekPg6WtKDxgkFpe5A8,773
456
+ umap/templates/umap/js.html,sha256=kQHl9jyj91Qy686G2PoBRg4KueDn2D500gQgJXkDW_4,3630
419
457
  umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
420
458
  umap/templates/umap/login_popup_end.html,sha256=b6csbAW1-qZZYgF1RkwfNsGpqhYzzg3wRGbntTadj2U,571
421
459
  umap/templates/umap/map_detail.html,sha256=2TA1VwH0jAo9yyj7f3XVqPvFOY0EXmzxZJjZJI2l4jY,1143
422
460
  umap/templates/umap/map_fragment.html,sha256=hog_2ufpF7wQlYq3PUj4ZoOY6R8_ztNZ4KHaHS-KQxY,150
423
- umap/templates/umap/map_init.html,sha256=AFGiWxYQ9foyVwF5mndt_l_r4atz-GHnpV7Z--tno5A,485
461
+ umap/templates/umap/map_init.html,sha256=FvJDPiTVxo86t5IxosDpxdYEsigAb9hoQDrJobC2Vfg,289
424
462
  umap/templates/umap/map_list.html,sha256=IArhrUe_2ILTpbI2sfmR89oqbqN5_7X2uFKtoqUwNGU,626
425
463
  umap/templates/umap/map_table.html,sha256=eNsjkmXYBURJp_wzsCDxrtQqJgsVtCj6aCdkI2tJP0I,5490
426
- umap/templates/umap/messages.html,sha256=z2nSbxpXeZOXxVB1xq-lYTxm1Ynj-0zGQbGDc61Y2pE,287
464
+ umap/templates/umap/messages.html,sha256=W2aU_1Y3J19eKOYQSjmS8JKayi3qxPaOGv4djOuvmak,191
427
465
  umap/templates/umap/navigation.html,sha256=T7alkzJrOggve0oWO_GgHGypemwcXcShMPuRwmPK5OY,1265
428
466
  umap/templates/umap/password_change.html,sha256=trKXzqdwKCT561NhgV1Tt43f1dwqMrfcCVGayVDRGGI,958
429
467
  umap/templates/umap/password_change_done.html,sha256=LNi8aPMtQCZyG7u1BD4eYnazufKhECYOFNW8RvXzkMc,264
430
- umap/templates/umap/search.html,sha256=g35uiuw2iCPpSm61QoppSift0ZcQbu4E-mhoEHzuSUA,804
468
+ umap/templates/umap/search.html,sha256=M0PqOtPG86nk-ML8hhEEXhgIZkfhOhJOgb_c0XB6epg,934
431
469
  umap/templates/umap/search_bar.html,sha256=PK4aWVIjEDcM7XcRGTLG1lMyrJce5czZoEERzQuPKVY,612
432
470
  umap/templates/umap/success.html,sha256=3FG4yWwtdF3zvVWQ2ZAjCkgv0kcSNZlUjgYy_b-X_CI,3
433
471
  umap/templates/umap/user_dashboard.html,sha256=P9A_5m3HBnEGj87ptbBVOoqrF7gW6Rsyl9ZfM4vbF1w,2691
472
+ umap/templates/umap/components/alerts/alert.html,sha256=HeOVES74qAHE_dV00cMP5w4DNw4qLgTOksS8dsCJkiM,3064
434
473
  umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
435
474
  umap/templatetags/umap_tags.py,sha256=oMXsa80LFM52EcLnF6A_o4_PdvOncLBf33pexaeL8nw,1773
475
+ umap/tests/.DS_Store,sha256=1XzuPE00K75AO_2mNxKwuv3D4oPx0c9L2CQc5cfE-d8,6148
436
476
  umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
437
- umap/tests/base.py,sha256=ROgBMkhPmZ_4ysjs2GjSJzvsebCh80XxfjXg97CZ3wU,4252
477
+ umap/tests/base.py,sha256=gZlVLqyRY5eICH8oPAz3c8vWHhTOdbLMvEXME8sTdAw,4345
438
478
  umap/tests/conftest.py,sha256=yLFE5sqz61tw_EoZp1nrH-8S49_aStA5Lt1JtZXd-Hg,1498
439
- umap/tests/settings.py,sha256=qzKYcWzVXUVYxNdv8m7lLV-xkNrV8A8-LWliTJagHOE,716
479
+ umap/tests/settings.py,sha256=tY70LMFXyo_WijswqGyeWai7vBzM62k7IA8pkkbc9y4,816
440
480
  umap/tests/test_datalayer.py,sha256=HJYSQ11LVQe47nnsXdFeX5Ny4WMDPUYg3frnM5G1IzQ,6888
441
- umap/tests/test_datalayer_views.py,sha256=AJ-0YBorAgKZaKGd8rSYDguqy8acrz54EaQdfkNOH48,22111
481
+ umap/tests/test_datalayer_views.py,sha256=Xqh8EjePdJOyC-SEvqbSO4gFjUboRxzEzgxnPkNNkTk,22099
442
482
  umap/tests/test_licence.py,sha256=BxNY3gdKhIoc2u5OPmAkmjCp0jJN-Jm-uPOfAZlpOHA,339
443
483
  umap/tests/test_map.py,sha256=nX2eE1HJY3bjycXulglK2SY1ybcnjDVgr0yntX6OgyA,3836
444
484
  umap/tests/test_map_views.py,sha256=w3YG5ExH_fw18402bdR3hKxRl3DpAeCs8oy8RYee05o,31886
445
485
  umap/tests/test_merge_features.py,sha256=uLZSW00WAI8_nZS0KPP8gg8U4nnky-XGb-VhhKUxv1M,2275
446
486
  umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
447
487
  umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
448
- umap/tests/test_views.py,sha256=7obGfbL_WShBrwShvyp8VrUZEdYejCFIbDJGJthS-xY,14436
488
+ umap/tests/test_views.py,sha256=dlgy_wXVhFv_I979XZmlkR99VRmHI1BEDpYKc7nT6i0,16348
449
489
  umap/tests/fixtures/choropleth_region_chomage.geojson,sha256=mVVbYlf92Sr3wWH9ETm43FdHz1U3zjsn91HuU5H5r4Y,21325
450
490
  umap/tests/fixtures/circle.svg,sha256=P37vV2PhFPecAtY8qR3VlRuB79_wFaMeqKm2tX-2tkA,254
451
491
  umap/tests/fixtures/display_on_load.umap,sha256=eo4ecB3QUeCVu1u7COp7mZ8sCPkf2j4gGERE7N1v8GU,1845
@@ -459,43 +499,46 @@ umap/tests/fixtures/test_upload_data_osm.json,sha256=ekOwBHdp7qHQ-JUGlb-kGUXcVep
459
499
  umap/tests/fixtures/test_upload_empty_coordinates.json,sha256=-mJ_1orzUAROfE4PXchHXyqxjS-q4tDfvEFPllJiHFU,786
460
500
  umap/tests/fixtures/test_upload_missing_name.json,sha256=klSMHb6laTghzU4AdIG1_p5UZ1LbAJCCKnJea0qEFAI,4566
461
501
  umap/tests/fixtures/test_upload_non_linear_ring.json,sha256=WOR0NnJHNUUW6VKzZyIxU7WL1llnAmEVJwCWla6XOds,1525
502
+ umap/tests/integration/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
462
503
  umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-mEKG4,57
463
- umap/tests/integration/conftest.py,sha256=Dt6G7M5u-Usrjil0AjJB7sMUEl33swaZlhkTtjmcgc8,1099
464
- umap/tests/integration/test_anonymous_owned_map.py,sha256=aDg_q_2Y1eDyRMd3YqEYVpxPQTybuBfi4B3wKSt4FGc,9487
504
+ umap/tests/integration/conftest.py,sha256=QQuhq7Z2lZlJFJN5qMRWINu1qfUOQPOfgx5dLYX-5zY,1984
505
+ umap/tests/integration/test_anonymous_owned_map.py,sha256=v3_qXx3_YhDzr0N8fNfeZwepPGpJ_yZrKwX5LpLFf5Q,9457
465
506
  umap/tests/integration/test_basics.py,sha256=dOb5zZ4YNJlkJc6rVt5HIrf4nmy0Bxw5S0Nn94Yi1Qo,2616
466
- umap/tests/integration/test_browser.py,sha256=acBtZt6XufO2qDvZR5o8qRnLOpVpyyoj9Zng7-fOsFo,13653
507
+ umap/tests/integration/test_browser.py,sha256=w2_tajwKxxqrbjTBOAjg3Mfc8BqdIGrXSK9armu1d8c,13655
467
508
  umap/tests/integration/test_caption.py,sha256=CRZHNwRHuSPIz33F2kpL85bacQQ0cFXDu12IB1rIskc,1016
468
509
  umap/tests/integration/test_choropleth.py,sha256=MOgWxPiv39wU7v6kwEJ6sfN3P3xTf_ABQo7hxQa_Y1M,3775
469
- umap/tests/integration/test_collaborative_editing.py,sha256=auvyoGbUJ-xe3HpITrQoCby_X_OZC5tQKUsXASJwtqc,10959
470
- umap/tests/integration/test_dashboard.py,sha256=KKHZkkpljsXF0h-c0U1v7KIQVSJNcBOoUdMSLGK60A8,1522
471
- umap/tests/integration/test_datalayer.py,sha256=EUvPBPleu-XutVw-u2qpq9-4US5dmyJH7pZNX2Zul1s,5244
510
+ umap/tests/integration/test_conditional_rules.py,sha256=zvLMzy15JrBRIrhUvRMAB1KKmI3Zdb-CYFs9Dn5v-bE,7330
511
+ umap/tests/integration/test_dashboard.py,sha256=OmqZx6NwtTnPj1-HsYyg5WptcmPpSq5pL01VtxZuuzk,1526
512
+ umap/tests/integration/test_datalayer.py,sha256=zclk7GJWPTjOXoaK9n-aL4q60Ovw51T5gP44c37KMOo,5175
472
513
  umap/tests/integration/test_draw_polygon.py,sha256=hP2T_2gE3R55hXaGzgJwh2xPq6vJNImDV0-1s8khxo0,14719
473
514
  umap/tests/integration/test_draw_polyline.py,sha256=Cg_lmRLTNPMk1CJBvVJEXww_wQmmdq9i6CToUEflJ1w,12810
474
- umap/tests/integration/test_edit_datalayer.py,sha256=F8CFcSpKloaR0YzDWmH7XTGwSDHVya8RCITXXqabpR8,9423
475
- umap/tests/integration/test_edit_map.py,sha256=tD3Rv3lytts_jJQ-A3JoSGL41alon7g8M8UmnoUuYWg,7109
515
+ umap/tests/integration/test_edit_datalayer.py,sha256=uLIyBQ8CbjowoJjvu4us8UJcjFWcDX4Z_t7o2XHEjVY,9431
516
+ umap/tests/integration/test_edit_map.py,sha256=cIJWelF1DWIUjqEyyb7NyaDLU8cQ0LGo-WfUEUx_5-A,7111
476
517
  umap/tests/integration/test_edit_marker.py,sha256=1MpA1mjdtVx2HuFkVSYZojBoGJ0fhK_JBGDsv5v6rUE,4736
477
518
  umap/tests/integration/test_edit_polygon.py,sha256=v6NaNtZLagP7A4M2I-jUF5qpy4XA67WUwPtKBjKZnA0,4782
478
519
  umap/tests/integration/test_export_map.py,sha256=Y_sgsT7ZTrrDCx5dLegioJ40GN_PtzK7yRFHTxtIb-4,12738
479
- umap/tests/integration/test_facets_browser.py,sha256=LjIFFcZgjDzjMOXbaTilBFAMC0K9ycBd8UVB8DNeQzg,10623
520
+ umap/tests/integration/test_facets_browser.py,sha256=bsEpb4tXZtxF3tdmSZ0tGrOIIEhd1KSbmDQruuUQFic,10622
480
521
  umap/tests/integration/test_features_id_generation.py,sha256=e99_8AxeMAi53JjVGlsI32zlrXGAU19FHJfTuYdiBVQ,1511
481
- umap/tests/integration/test_import.py,sha256=-UJBDyQvh-ZiVXM78C3_DL4tB98Dcb3R6V3J4BJJg_c,17740
482
- umap/tests/integration/test_map.py,sha256=IkvWreX4GO1OYhpb4-E5KWAdzsaj_gyNiLX_a58ZcHQ,7657
522
+ umap/tests/integration/test_import.py,sha256=mWBHsmmWx1GuIz1wrGxpJY_f_TRn3PDpxZC_5yYuVII,22026
523
+ umap/tests/integration/test_map.py,sha256=YvguclU6SFNDxbxio9lm8Jz4iXWDV9Ox43_ets4qbiA,7661
483
524
  umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
484
525
  umap/tests/integration/test_map_preview.py,sha256=4rPQF1zfiwqN7PvwFeB3OagR1wLEMbug0Omcd6zQShQ,2702
485
- umap/tests/integration/test_owned_map.py,sha256=51Py-D5xiRqbLhVCwfk3ZnAj8_k8HS4kT67w54QGMLA,9883
486
- umap/tests/integration/test_picto.py,sha256=dr5rRTHURDAdnIiVcLBHtmnXxbWhC9GmRSCcID7lVcM,9040
526
+ umap/tests/integration/test_optimistic_merge.py,sha256=HK-RYWyqvkUw3ibnONzb3HNMsvj9RLDXnf0vJlWkv6g,10948
527
+ umap/tests/integration/test_owned_map.py,sha256=7R_CwndXw_ZSg2mQDvLjnskL6t_iQE0ENOC676WL5x0,9885
528
+ umap/tests/integration/test_picto.py,sha256=Ey9V-NTQ64cIEtdXWzjhlBEykmTiGk7jUxKN1oA6n_g,9040
487
529
  umap/tests/integration/test_querystring.py,sha256=Q9W1TOr5I-FkqIlDGXah9vs7GW-MTYdGNWkSb-uyUd4,2466
488
530
  umap/tests/integration/test_share.py,sha256=gDna-wFedwJ_-8HLBw_G5IO3zA3l96p1FGBSZ15g_7g,1813
489
531
  umap/tests/integration/test_slideshow.py,sha256=yhy75YYpfTKpkGK7xGjJDJoqHtN6p2LG-O4krVE1Yks,1907
490
532
  umap/tests/integration/test_star.py,sha256=icB5SbFbXe4KYp3DIJ0xAwCrSQS2rweqIaQTAng3CfY,842
491
- umap/tests/integration/test_statics.py,sha256=SIwLs0ZwXFu734o5WWYxaBarHrEUw2nCOi3s9aGJwQk,1526
533
+ umap/tests/integration/test_statics.py,sha256=BuScxhKTXclLzKEZYTatzPnh9rKrY2FsqgdT3vVLwqc,1521
492
534
  umap/tests/integration/test_tableeditor.py,sha256=C4C5qj6b77XSNso7B634r0uaIzpO6Gkos7il6VGiSd8,1058
493
535
  umap/tests/integration/test_tilelayer.py,sha256=nQIhU3GIxxCXrelNWgSsm4iT3Su52rW8ENWtKfiqjWk,4607
494
536
  umap/tests/integration/test_view_marker.py,sha256=Y45rDzhScKsHz7_JgK46tRd29qrBLxndFLAk8pjHnJs,2843
495
537
  umap/tests/integration/test_view_polygon.py,sha256=I7wR6DUrictIMrCPKajCrruJVLry4ZRDdjSs8q0XaOg,1829
496
538
  umap/tests/integration/test_view_polyline.py,sha256=n1QVIdl-Xg9yN9o-Jc6VnPhFAuUspsgY0odiUe_jJC4,1598
497
- umap_project-2.3.1.dist-info/METADATA,sha256=COyVIUXnI4JGxIYyXWklEP5amZDQAic3EjV6_zpiFDw,2619
498
- umap_project-2.3.1.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
499
- umap_project-2.3.1.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
500
- umap_project-2.3.1.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
501
- umap_project-2.3.1.dist-info/RECORD,,
539
+ umap/tests/integration/test_websocket_sync.py,sha256=r2qlo7KUdPbX58gMJDNg-C1ZuDNSNT105wOUA6GJRMI,10487
540
+ umap_project-2.4.0b0.dist-info/METADATA,sha256=SDL3cops5mLN7vaxBT0JVKLDsr6JIvwsLvh5iycqFO8,2682
541
+ umap_project-2.4.0b0.dist-info/WHEEL,sha256=9QBuHhg6FNW7lppboF2vKVbCGTVzsFykgRQjjlajrhA,87
542
+ umap_project-2.4.0b0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
543
+ umap_project-2.4.0b0.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
544
+ umap_project-2.4.0b0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.24.2
2
+ Generator: hatchling 1.18.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any