umap-project 1.10.0__py3-none-any.whl → 1.11.1__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 (181) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +7 -3
  3. umap/autocomplete.py +3 -5
  4. umap/bin/__init__.py +2 -5
  5. umap/decorators.py +4 -5
  6. umap/forms.py +5 -5
  7. umap/locale/en/LC_MESSAGES/django.po +23 -23
  8. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  9. umap/locale/fr/LC_MESSAGES/django.po +28 -27
  10. umap/management/commands/generate_js_locale.py +9 -11
  11. umap/management/commands/import_pictograms.py +49 -28
  12. umap/managers.py +5 -3
  13. umap/middleware.py +2 -3
  14. umap/migrations/0001_initial.py +204 -56
  15. umap/migrations/0002_tilelayer_tms.py +3 -4
  16. umap/migrations/0003_add_tilelayer.py +13 -9
  17. umap/migrations/0004_add_licence.py +3 -6
  18. umap/migrations/0005_remove_map_tilelayer.py +3 -4
  19. umap/migrations/0006_auto_20190407_0719.py +6 -5
  20. umap/migrations/0007_auto_20190416_1757.py +13 -5
  21. umap/migrations/0008_alter_map_settings.py +0 -1
  22. umap/migrations/0009_star.py +27 -8
  23. umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py +20 -8
  24. umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py +21 -8
  25. umap/migrations/0014_map_created_at.py +1 -1
  26. umap/migrations/0015_alter_pictogram_pictogram.py +17 -0
  27. umap/migrations/0016_pictogram_category.py +17 -0
  28. umap/models.py +9 -7
  29. umap/settings/base.py +1 -4
  30. umap/static/umap/base.css +59 -20
  31. umap/static/umap/content.css +2 -13
  32. umap/static/umap/favicons/apple-touch-icon.png +0 -0
  33. umap/static/umap/favicons/favicon.ico +0 -0
  34. umap/static/umap/favicons/icon-192.png +0 -0
  35. umap/static/umap/favicons/icon-512.png +0 -0
  36. umap/static/umap/favicons/icon.svg +5 -0
  37. umap/static/umap/img/16-white.svg +20 -9
  38. umap/static/umap/img/24-white.svg +2 -2
  39. umap/static/umap/img/source/16-white.svg +25 -13
  40. umap/static/umap/img/source/24-white.svg +5 -5
  41. umap/static/umap/js/umap.controls.js +15 -23
  42. umap/static/umap/js/umap.core.js +33 -24
  43. umap/static/umap/js/umap.features.js +24 -2
  44. umap/static/umap/js/umap.forms.js +182 -84
  45. umap/static/umap/js/umap.icon.js +19 -14
  46. umap/static/umap/js/umap.js +14 -32
  47. umap/static/umap/js/umap.layer.js +13 -2
  48. umap/static/umap/js/umap.popup.js +21 -0
  49. umap/static/umap/locale/am_ET.js +9 -4
  50. umap/static/umap/locale/am_ET.json +9 -4
  51. umap/static/umap/locale/ar.js +9 -4
  52. umap/static/umap/locale/ar.json +9 -4
  53. umap/static/umap/locale/ast.js +9 -4
  54. umap/static/umap/locale/ast.json +9 -4
  55. umap/static/umap/locale/bg.js +9 -4
  56. umap/static/umap/locale/bg.json +9 -4
  57. umap/static/umap/locale/br.js +20 -15
  58. umap/static/umap/locale/br.json +20 -15
  59. umap/static/umap/locale/ca.js +9 -4
  60. umap/static/umap/locale/ca.json +9 -4
  61. umap/static/umap/locale/cs_CZ.js +9 -4
  62. umap/static/umap/locale/cs_CZ.json +9 -4
  63. umap/static/umap/locale/da.js +9 -4
  64. umap/static/umap/locale/da.json +9 -4
  65. umap/static/umap/locale/de.js +9 -4
  66. umap/static/umap/locale/de.json +9 -4
  67. umap/static/umap/locale/el.js +9 -4
  68. umap/static/umap/locale/el.json +9 -4
  69. umap/static/umap/locale/en.js +9 -4
  70. umap/static/umap/locale/en.json +9 -4
  71. umap/static/umap/locale/en_US.json +9 -4
  72. umap/static/umap/locale/es.js +15 -10
  73. umap/static/umap/locale/es.json +15 -10
  74. umap/static/umap/locale/et.js +9 -4
  75. umap/static/umap/locale/et.json +9 -4
  76. umap/static/umap/locale/fa_IR.js +9 -4
  77. umap/static/umap/locale/fa_IR.json +9 -4
  78. umap/static/umap/locale/fi.js +9 -4
  79. umap/static/umap/locale/fi.json +9 -4
  80. umap/static/umap/locale/fr.js +10 -5
  81. umap/static/umap/locale/fr.json +10 -5
  82. umap/static/umap/locale/gl.js +9 -4
  83. umap/static/umap/locale/gl.json +9 -4
  84. umap/static/umap/locale/he.js +9 -4
  85. umap/static/umap/locale/he.json +9 -4
  86. umap/static/umap/locale/hr.js +9 -4
  87. umap/static/umap/locale/hr.json +9 -4
  88. umap/static/umap/locale/hu.js +64 -59
  89. umap/static/umap/locale/hu.json +64 -59
  90. umap/static/umap/locale/id.js +9 -4
  91. umap/static/umap/locale/id.json +9 -4
  92. umap/static/umap/locale/is.js +9 -4
  93. umap/static/umap/locale/is.json +9 -4
  94. umap/static/umap/locale/it.js +9 -4
  95. umap/static/umap/locale/it.json +9 -4
  96. umap/static/umap/locale/ja.js +9 -4
  97. umap/static/umap/locale/ja.json +9 -4
  98. umap/static/umap/locale/ko.js +9 -4
  99. umap/static/umap/locale/ko.json +9 -4
  100. umap/static/umap/locale/lt.js +9 -4
  101. umap/static/umap/locale/lt.json +9 -4
  102. umap/static/umap/locale/ms.js +15 -10
  103. umap/static/umap/locale/ms.json +15 -10
  104. umap/static/umap/locale/nl.js +9 -4
  105. umap/static/umap/locale/nl.json +9 -4
  106. umap/static/umap/locale/no.js +9 -4
  107. umap/static/umap/locale/no.json +9 -4
  108. umap/static/umap/locale/pl.js +9 -4
  109. umap/static/umap/locale/pl.json +9 -4
  110. umap/static/umap/locale/pl_PL.json +9 -4
  111. umap/static/umap/locale/pt.js +9 -4
  112. umap/static/umap/locale/pt.json +9 -4
  113. umap/static/umap/locale/pt_BR.js +9 -4
  114. umap/static/umap/locale/pt_BR.json +9 -4
  115. umap/static/umap/locale/pt_PT.js +9 -4
  116. umap/static/umap/locale/pt_PT.json +9 -4
  117. umap/static/umap/locale/ro.js +9 -4
  118. umap/static/umap/locale/ro.json +9 -4
  119. umap/static/umap/locale/ru.js +9 -4
  120. umap/static/umap/locale/ru.json +9 -4
  121. umap/static/umap/locale/si.js +55 -20
  122. umap/static/umap/locale/si.json +55 -20
  123. umap/static/umap/locale/sk_SK.js +9 -4
  124. umap/static/umap/locale/sk_SK.json +9 -4
  125. umap/static/umap/locale/sl.js +9 -4
  126. umap/static/umap/locale/sl.json +9 -4
  127. umap/static/umap/locale/sr.js +9 -4
  128. umap/static/umap/locale/sr.json +9 -4
  129. umap/static/umap/locale/sv.js +9 -4
  130. umap/static/umap/locale/sv.json +9 -4
  131. umap/static/umap/locale/th_TH.js +9 -4
  132. umap/static/umap/locale/th_TH.json +9 -4
  133. umap/static/umap/locale/tr.js +9 -4
  134. umap/static/umap/locale/tr.json +9 -4
  135. umap/static/umap/locale/uk_UA.js +9 -4
  136. umap/static/umap/locale/uk_UA.json +9 -4
  137. umap/static/umap/locale/vi.js +9 -4
  138. umap/static/umap/locale/vi.json +9 -4
  139. umap/static/umap/locale/vi_VN.json +9 -4
  140. umap/static/umap/locale/zh.js +9 -4
  141. umap/static/umap/locale/zh.json +9 -4
  142. umap/static/umap/locale/zh_CN.json +9 -4
  143. umap/static/umap/locale/zh_TW.Big5.json +9 -4
  144. umap/static/umap/locale/zh_TW.js +9 -4
  145. umap/static/umap/locale/zh_TW.json +9 -4
  146. umap/static/umap/map.css +104 -21
  147. umap/static/umap/nav.css +0 -1
  148. umap/static/umap/test/Controls.js +0 -1
  149. umap/static/umap/test/Feature.js +29 -0
  150. umap/static/umap/test/Map.Export.js +2 -127
  151. umap/static/umap/test/Util.js +10 -0
  152. umap/static/umap/test/_pre.js +2 -3
  153. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +13 -2
  154. umap/static/umap/vendors/leaflet/leaflet-src.js +7144 -7144
  155. umap/templates/auth/user_form.html +2 -2
  156. umap/templates/base.html +11 -0
  157. umap/templates/umap/map_table.html +3 -3
  158. umap/templatetags/umap_tags.py +32 -34
  159. umap/tests/base.py +4 -4
  160. umap/tests/conftest.py +3 -6
  161. umap/tests/fixtures/circle.svg +4 -0
  162. umap/tests/fixtures/star.svg +4 -0
  163. umap/tests/integration/test_export_map.py +5 -18
  164. umap/tests/integration/test_picto.py +217 -0
  165. umap/tests/integration/test_slideshow.py +70 -0
  166. umap/tests/settings.py +11 -5
  167. umap/tests/test_datalayer.py +7 -6
  168. umap/tests/test_map.py +6 -5
  169. umap/tests/test_map_views.py +82 -10
  170. umap/tests/test_tilelayer.py +17 -11
  171. umap/tests/test_views.py +36 -9
  172. umap/urls.py +27 -4
  173. umap/utils.py +1 -2
  174. umap/views.py +67 -35
  175. umap/wsgi.py +2 -2
  176. {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/METADATA +11 -9
  177. {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/RECORD +180 -170
  178. umap/static/favicon.ico +0 -0
  179. {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/WHEEL +0 -0
  180. {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/entry_points.txt +0 -0
  181. {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,19 +1,19 @@
1
- umap/__init__.py,sha256=Y6xunpWXkzHbY7c6dKsL_N-0PE4lzuAi20pue0nyTP8,19
2
- umap/admin.py,sha256=K6WlowHtPD8_LCSFqw0R_ug3sKg10FOL1ELVUQ9if1o,541
1
+ umap/__init__.py,sha256=wxi1d8fOEl2scnMci9RTh9OQ9YhelMzYhbmHa-viiXg,19
2
+ umap/admin.py,sha256=pE-e7Cxfjs7CxW0eL5_opTaT2rkN18LjZB9zfUVXmUU,562
3
3
  umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
4
- umap/autocomplete.py,sha256=bFCooKTlTBIxVLQ11rDDuam90V11RyeyJZ2Z3j9S-OI,446
4
+ umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
5
5
  umap/context_processors.py,sha256=HhRfnUElWwWCMk9vtXkyR3fpPcpagSpvRpqh8jYL8Lk,448
6
- umap/decorators.py,sha256=0HrvQ3r6Di5VfBwkUMQzSNJKHcHG-3BAvMPpkPuZVJQ,2481
6
+ umap/decorators.py,sha256=qHNBLDPQevwyZUSD2bxTPOLT0LNkUPKC8RhLZAjvkns,2480
7
7
  umap/fields.py,sha256=Zm8_2uAwdZx5tGOiTPOIXhsT__535tziKBJ-67GP2mw,869
8
- umap/forms.py,sha256=4QMh1XWtaZWxgktREh28IWQddjj93NTcN4Mny9GNYhk,3128
9
- umap/managers.py,sha256=9p-EKFRoGUcDp-X3-Nr_fzu2DUENZGEx6KhbI1pqVYc,207
10
- umap/middleware.py,sha256=wXsu7RDH1HoJZwisSdAvUb5hntDhXdrUS26nY6Q6EVM,515
11
- umap/models.py,sha256=GCdjvsiiigcsqpkpnB1t-5VTuLXrNeBAurZamJOfVa8,14628
12
- umap/urls.py,sha256=NE0rb6H502o6_xKBOeC906dLElqy2eqLeZfMlNdV1A4,6155
13
- umap/utils.py,sha256=wvgLv3KvLrRzUnhD51RTNT9W6-iP9XDWpW5YAZ3FQWQ,4390
14
- umap/views.py,sha256=XQQc9nhYvJRkhOeb-djGy-TS_5_x9cy-3wEnyS5mveA,33123
15
- umap/wsgi.py,sha256=0G5LiAn7hXiqO30tpPf7z5EnY1ylz031ZlZY9vCRz-c,1152
16
- umap/bin/__init__.py,sha256=CQzUxX_hIgitZ_19KobD9afZYEN7brrao-RQmIUhq4o,256
8
+ umap/forms.py,sha256=bpNLMSsB1sHUcaf24MmUpwVdEz_SHy_ohfhQMoKwDzI,3128
9
+ umap/managers.py,sha256=-lBK0xYFRDfX76qDRdLnZOA8jEPYseEwIj8QOiHVM4w,243
10
+ umap/middleware.py,sha256=p8EPW_gYW8Wh2lk0DNIAkZQbYlBZugW7Yq4iiA7L4aE,514
11
+ umap/models.py,sha256=-w9tjK55XQK81XErTl74L2aJ3lGntx4y44OldAs7U_U,14737
12
+ umap/urls.py,sha256=0no_xoq6pn_DS5F2N5vIzYua3qSsw3wXLyudnxkc-50,6832
13
+ umap/utils.py,sha256=T36USx_plEaH-d-IlTOMc8c2HGyrNfXnYwkQ7ZELdWc,4367
14
+ umap/views.py,sha256=DpH-GRXkaEoqDDEmvObWjv0hn4BqPZguEG7JneHPo78,34469
15
+ umap/wsgi.py,sha256=mSba0LSaWFocs-7Fw-bDljb6-Bqh9yZRJU-sTi4dGIU,1131
16
+ umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
17
17
  umap/locale/am_ET/LC_MESSAGES/django.mo,sha256=meGhTk_lZZMIr3_tA7B8CV_03hxqzkwEtR7h7I4flXk,5530
18
18
  umap/locale/am_ET/LC_MESSAGES/django.po,sha256=9scDJOkryFZpfWdeOBPiQNPEMGHs9jWGNGLNtDVfNKg,11990
19
19
  umap/locale/ar/LC_MESSAGES/django.mo,sha256=XcMbqHyvnn51Xf_Vb8BQ4sBhHz6FjJwZugyZ9Bsln9E,3324
@@ -35,7 +35,7 @@ umap/locale/de/LC_MESSAGES/django.po,sha256=ReuTKy-QEJ8VdTMdMWdEoz3V3G-hbhkqBp0E
35
35
  umap/locale/el/LC_MESSAGES/django.mo,sha256=E92hV1UX0EeMmBmovDMcCx0j47nsACDVZCrEEsO5ubA,12471
36
36
  umap/locale/el/LC_MESSAGES/django.po,sha256=uKEFi9JD-pm4Dhw1XDOs_ZeS_5sZ4tiDVHBmcCGrxjw,16535
37
37
  umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
38
- umap/locale/en/LC_MESSAGES/django.po,sha256=MV6OvaCuH1KGteR-lhT7kJzBrgs7jQdcdma8NZ-3ovk,9404
38
+ umap/locale/en/LC_MESSAGES/django.po,sha256=R8TUZpN4JOdO_tHawTTBMHBMCa2ZXySxZwLk4MmEfWQ,9404
39
39
  umap/locale/es/LC_MESSAGES/django.mo,sha256=gsjvpwQiO7qnob757M1leKfs4PtTW1KIcXSfShnvgt4,9189
40
40
  umap/locale/es/LC_MESSAGES/django.po,sha256=HluFU2opjbl0iWjX0SSDvYzS1zyuN7cGmPTfRp-tE5M,13353
41
41
  umap/locale/et/LC_MESSAGES/django.mo,sha256=zVyI6fwSNUZl5ydLwjv4CR8t6Z7qMbmC3tU9uN3VmNI,5285
@@ -46,8 +46,8 @@ umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=rhsDYSi1mu_4ejZaBw2XzKpFP1gHkdZ6B
46
46
  umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=n-5L06dBH5PvDDfXyruXWeZhE4QkCnDAli5vwOzTnz0,13421
47
47
  umap/locale/fi/LC_MESSAGES/django.mo,sha256=SUV6nc1FS8XtlKjGhn60NKEttPPRxJXIXUWwZMxRsEk,4925
48
48
  umap/locale/fi/LC_MESSAGES/django.po,sha256=mF2LkD2bnvQR0DLyLSZRQPTVErBkuP5gLcu14poIJhM,11543
49
- umap/locale/fr/LC_MESSAGES/django.mo,sha256=ya06NGvH8N4y1ysmHpIeRmSEHKYH9TzAeCHk6wogbHo,9375
50
- umap/locale/fr/LC_MESSAGES/django.po,sha256=UsuKM0Ovrlk8Ox66vz60OKvaH3iivfWjjih4zhdQrbQ,13586
49
+ umap/locale/fr/LC_MESSAGES/django.mo,sha256=IxQdG7xhyd1FYSmLpThi098Wta_JXo8IbtEq_4bSyFU,9334
50
+ umap/locale/fr/LC_MESSAGES/django.po,sha256=mMJ5_OBBsjrSUUJ3Dz77VN4GxOlQEizkPKmtTguy7Hs,13564
51
51
  umap/locale/gl/LC_MESSAGES/django.mo,sha256=K5BtO5vpXvhqaeTEINh8vONoB_HDGmFapqjjhfnXmr4,6315
52
52
  umap/locale/gl/LC_MESSAGES/django.po,sha256=WavSXp7AMcgZRKeHWCb9HjyZOO4_j6MKocXecogAK2U,11931
53
53
  umap/locale/he/LC_MESSAGES/django.mo,sha256=QLCf7QiT1qYO56x1u4516hFIO4yMobkDcqpgVibeq-8,7005
@@ -111,48 +111,54 @@ umap/locale/zh_TW/LC_MESSAGES/django.po,sha256=c7_DDL-95WVLJyCHjyQ3Z7lr_GIlHXIle
111
111
  umap/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
112
  umap/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
113
  umap/management/commands/anonymous_edit_url.py,sha256=hsWgPzZJmLCoDKTWziFUuwq-DdnSiXkSal2t2TIED-s,1070
114
- umap/management/commands/generate_js_locale.py,sha256=1eDhbffHq37Xg5EE75FJEAuPIBUeym6yQJPAxZEWHco,1298
115
- umap/management/commands/import_pictograms.py,sha256=PtPT9d2wPbZz3y2LAd-31DcrXqaVJ_KpB5LNHbU6q_8,1902
116
- umap/migrations/0001_initial.py,sha256=f9N8NHHRcEhtKisjNQuHnQvtJ7f5dFUr22pxJjtIF2U,5563
117
- umap/migrations/0002_tilelayer_tms.py,sha256=_Pmx_dX3K2XR5S1kSnRtIO6KMHHu47cUtbz6A3mFOfQ,373
118
- umap/migrations/0003_add_tilelayer.py,sha256=58GjNWUU7Eu5DncxICg1SUT3Fume7t2ikkrAYMjtgvk,812
119
- umap/migrations/0004_add_licence.py,sha256=5xTz2eEelPaNEAXE8BqCcrS-V4wr8MDbL87ce0tFgFQ,530
120
- umap/migrations/0005_remove_map_tilelayer.py,sha256=no42OvRfFnrySput2aAU2EWTKc4LlDpOdMjgOdZ-79w,318
121
- umap/migrations/0006_auto_20190407_0719.py,sha256=9mymrhUi2QZkPl9aS8-gGb_Gz_jpX3O_w7LMWMFn2CA,497
122
- umap/migrations/0007_auto_20190416_1757.py,sha256=SAHp-_faQR9s07JwvppJQb8fzfe1OWL0lXqJJ-4ZUQw,515
123
- umap/migrations/0008_alter_map_settings.py,sha256=M0D22Bv2IQ9IZCZhb_ZT_bbAy-Hii1JosYk6ETK4E3s,459
124
- umap/migrations/0009_star.py,sha256=seS8Pl3GwS765kie_eAZcguD999469a3Z6hDVPCLjiQ,886
125
- umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py,sha256=H0Bh0aRhvYMecydiCJdx5x5UdqMqj0R7nwuX9g5ilH0,757
126
- umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py,sha256=p41w5o8BEXL5-ezjrxJ5RShn3AT4WWkVwcnGMsWX35k,885
114
+ umap/management/commands/generate_js_locale.py,sha256=wkf-PFIHS7m4ZhyL1ZRMBLqyUeY2SlOrTXS42tE0-bs,1281
115
+ umap/management/commands/import_pictograms.py,sha256=hRyUFAfgJSUgylVxZ5HfnscNZ16BnXU43ZioYcYZUr0,2376
116
+ umap/migrations/0001_initial.py,sha256=dMcXtTKPiA0IqXCrDVctH91Fe0hhc04NxmvcLAULyzE,8787
117
+ umap/migrations/0002_tilelayer_tms.py,sha256=E99JAu1K0NzwsCEJs1z5uGlBkBJmoVb9a3WBKjpLYlo,372
118
+ umap/migrations/0003_add_tilelayer.py,sha256=53r95Y13CvV0pXseYEnnqtPI4-Q0qcVldYMS-jFpPoE,833
119
+ umap/migrations/0004_add_licence.py,sha256=AQf6eUkpg4_68KGFw6XIhkgKz_B9nDgwVWHvEQspKXQ,512
120
+ umap/migrations/0005_remove_map_tilelayer.py,sha256=fxx4pJT7BFALWhLZz-XkA0GseLAOlfWQiUJapc_rXNY,317
121
+ umap/migrations/0006_auto_20190407_0719.py,sha256=84dw4zHyqdBFzaMOBAqfSVMpxd0GEhq4kf9aj_N_dQE,526
122
+ umap/migrations/0007_auto_20190416_1757.py,sha256=Wj_w9kuaMzsNEu4GAHkixZFC4joBfW0IUU5TDGbNw8g,676
123
+ umap/migrations/0008_alter_map_settings.py,sha256=V61UVf5APSG2fYUJdi-uAZ-yPybHGA9mvPrQVd02aUw,458
124
+ umap/migrations/0009_star.py,sha256=efWBWXVlWON_zFJeGQZVsklOi2jYrAg8n-jxzLxftlc,1322
125
+ umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py,sha256=uS7LBeD7QROB6UVnoHhsPalj1-lDGbWJFTNjwVejYCw,981
126
+ umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py,sha256=s8ZbY96TVEowFCK8x5FV755nKh3YYynFPLpqX_H94W0,1110
127
127
  umap/migrations/0012_datalayer_settings.py,sha256=uolQNiWeOudROb5WQUUrOeJvwQpWWFDCUQvOxrwdwec,488
128
128
  umap/migrations/0013_datalayer_edit_status.py,sha256=L4lnGyo9VyuyNv1sOxQuUKCTi3Qvu3QxB6fP4Yyqs84,665
129
- umap/migrations/0014_map_created_at.py,sha256=QZ6Nu8jBn0HrlKXARoBnd-FSy65X6CI3SG9tHq-BVis,680
129
+ umap/migrations/0014_map_created_at.py,sha256=VcK1r2MNFJ5wt07_gRWJRf_fF22_GbYhpOdPeskGEio,680
130
+ umap/migrations/0015_alter_pictogram_pictogram.py,sha256=ABoM7PXhcO6R2AM_XH6KITyhnP_dtw9d2xc5XVJiH7c,392
131
+ umap/migrations/0016_pictogram_category.py,sha256=xSNApTToAXVzYSH28ZVqfZq8q0ODSI9czwcQRkTHcX0,416
130
132
  umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
133
  umap/settings/__init__.py,sha256=bWfNzX2GIt602j8HdF2nDtpKbisq8ARS6B9jVd2QN6k,1771
132
- umap/settings/base.py,sha256=nJX_YZKcGZ3JRrGAC3qe1gWnCc6620MnoHd8tA3pzJU,9731
134
+ umap/settings/base.py,sha256=6976M9ivlRuXf7EpaSwLgZjB39oO7QwqRj3jlJyIX0Y,9664
133
135
  umap/settings/dev.py,sha256=iGroLwlJM2EeqZ4HUC3DviUOgJy-SoULN1WB5AD4xFM,385
134
136
  umap/settings/local.py.sample,sha256=IpV5j6T64rRK9M2OEr3_orM5Qc2iSUBniiR_2DB0GK4,3193
135
137
  umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
- umap/static/favicon.ico,sha256=BWUrt1AqYOr1MxUastn5d8KJPZuFZoWY5B85YkngRv4,638
137
- umap/static/umap/base.css,sha256=5kzfS6qWsX6RxFPazaDGsGhp7T3elgnB2qFN8QndzMI,19484
138
+ umap/static/umap/base.css,sha256=IpSGz4YLbWszX-5wW0EInIwmRVtDbNs8uJl10OXuaSI,20383
138
139
  umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr8,9125
139
- umap/static/umap/content.css,sha256=LGcpxfVkxoVGWBpz98sFOqkySkjLjUGrMn4J4r1nKeA,6759
140
+ umap/static/umap/content.css,sha256=magun-6SM7VfYltzBS0tgauwOp1dAFlP76PLfnXak4s,6547
140
141
  umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
141
142
  umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
142
- umap/static/umap/map.css,sha256=c92rAf655CLeeRZLQTlyKb-zS23W_GXLP1O4IMuNg9Q,37794
143
- umap/static/umap/nav.css,sha256=QoI2qphmqCOYLgbgjEd79exK_PEYdPCSaMHU-6Auc2Y,1531
143
+ umap/static/umap/map.css,sha256=vWRtXRbwI4JUNsmmuA5hRshhcHADj3fWPK6Us5d8DT0,40024
144
+ umap/static/umap/nav.css,sha256=R4cFMZkgHmNHodyW1rEZmtopgkGboghd6Ut7ebQmihk,1514
144
145
  umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
145
146
  umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
146
147
  umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
148
+ umap/static/umap/favicons/apple-touch-icon.png,sha256=xjhkAIZwNywTApzAgnwSvagpcm252katIaVnHIIC_LE,2776
149
+ umap/static/umap/favicons/favicon.ico,sha256=0jjg1MnZ2AdWFLKjEwZSf09TVXlqz6oNdtX4rRppHdA,15086
150
+ umap/static/umap/favicons/icon-192.png,sha256=saYoRLAaZNkHHntkmldXiptk9FEcaGWDO3N6HpYyw8w,2987
151
+ umap/static/umap/favicons/icon-512.png,sha256=h_VHiNf_wJWK6mQEQsx_FMMPj3DG7W65iBylCQrcTto,7516
152
+ umap/static/umap/favicons/icon.svg,sha256=SBXqk0YbFuGazMGBQyxRuYv1XLnqKUSBwf48TBM1qU0,390
147
153
  umap/static/umap/font/FiraSans-Light.woff,sha256=BpuM9rShca7idiLmGAsWZhXcJcuyVULgOmR2uORNOY8,182984
148
154
  umap/static/umap/font/FiraSans-Light.woff2,sha256=b9P588hmLKGEFmHzEJ5NQsTOlaSpFfFf8XhK7pfNt_o,129180
149
155
  umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c1Eo7s0X2IUzVkugeQY,191400
150
156
  umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
151
157
  umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
152
158
  umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
153
- umap/static/umap/img/16-white.svg,sha256=-2dWSoaQlWM9s28M5nz7alISDo6VciFTdg78n0rC1ho,27381
159
+ umap/static/umap/img/16-white.svg,sha256=kv-O7n9IyY0RC3paS_-geZ8VDAThCRscEnxPygqrld4,28600
154
160
  umap/static/umap/img/16.svg,sha256=llYxW8YrrQVBq5AhdDqM6eBHHu_LVcEMyOFc4D3p9wg,13888
155
- umap/static/umap/img/24-white.svg,sha256=Bg6vRLJh-iOa8sj9a8I9wiI0qlpABOwO2nJHFfWVrS8,17550
161
+ umap/static/umap/img/24-white.svg,sha256=tq2MLPvVKz4h4dHCmMp1-_brBmudqyCcMcSShhnDh24,17550
156
162
  umap/static/umap/img/24.svg,sha256=jpi6lDVbN89-zyH3VwNf0pOKzjOfuF9l9yPV-NpE1cI,25175
157
163
  umap/static/umap/img/edit.svg,sha256=iePt4pB5hJacTvqNyXxAYyGLvXlShm8JKykH8M6ZTTg,554
158
164
  umap/static/umap/img/icon-bg.png,sha256=EeliGSnA81n2CBPKELxRjCodV5Xyqy9yLaoacWNZkdQ,190
@@ -163,131 +169,131 @@ umap/static/umap/img/marker.png,sha256=0DYKyg5h8swIh80zYGOXcjP3QwFthMeHIO4AJv5V3
163
169
  umap/static/umap/img/opensource.svg,sha256=hXEQkvJX_vxw2lZ5TU70vOomK_kJcW--WfYdlfvrWq0,473
164
170
  umap/static/umap/img/osm.svg,sha256=v676T5hpZhLAFt-pK06jcnzAs9mvdHWtCx6iRvmaGbc,1997
165
171
  umap/static/umap/img/search.gif,sha256=Ws7V8knHJGdxG5_12zfPoBweX6PjOjHzrzYY4eyAY-4,1472
166
- umap/static/umap/img/source/16-white.svg,sha256=IhOXg06mfSiXmp8SM4FQbupaIbb2tanjelwpJFdlL_I,57966
172
+ umap/static/umap/img/source/16-white.svg,sha256=9RWSRRcOGLiAtw4Qtumk9SHlGsGKdoNjEFyRK9RfgaE,59619
167
173
  umap/static/umap/img/source/16.svg,sha256=OJhsygxseWrjW-bL78wLSGbCrWmsN3zk26r-jYS4s5I,34037
168
- umap/static/umap/img/source/24-white.svg,sha256=e-q7GZR_soLjgEziKuX1tnebyPAlEPExF0MtcK_8hlc,29251
174
+ umap/static/umap/img/source/24-white.svg,sha256=31n0rwyxcoJ69Mm2hvSAifQV0x00px0z-Jkf__UetnA,29369
169
175
  umap/static/umap/img/source/24.svg,sha256=rocP2xyMQdigy8noiipCM8hJNOc9tvF4uoXUPFBAjxY,38901
170
176
  umap/static/umap/js/umap.autocomplete.js,sha256=BwFdzOAzl_61JJMIM8CW2x2v78oxRvZZ7XQY8f53QVk,7937
171
177
  umap/static/umap/js/umap.browser.js,sha256=xcuSjFAd7p-1fAPQTcAn1PvHP5CNc-0Iw9DXocf33Bw,4418
172
- umap/static/umap/js/umap.controls.js,sha256=bHyTYvjKuz6JFFBcx-xEttIdzVGNLsIFD9a0hWawhFg,52425
173
- umap/static/umap/js/umap.core.js,sha256=Z1alkI6mC4XETruqrZWSZ4A_HJ4B7CUFLbKCHNEl-D0,22651
178
+ umap/static/umap/js/umap.controls.js,sha256=aFzPGn9gDKFVfKW4GkvJI63T-YsmsotYHQkKfrXPQ8Q,52321
179
+ umap/static/umap/js/umap.core.js,sha256=wT4W8P0ODgCYykeZ2kxU0WCBPXdZbqZV3hffXE_YhuU,23136
174
180
  umap/static/umap/js/umap.datalayer.permissions.js,sha256=CV5WfUVJVVkbj63KiFIvJN48hA9i723zYk7TVraO_gg,1922
175
- umap/static/umap/js/umap.features.js,sha256=XOGD2uRvL6Mm-rhaS7WyQZBX0x-Sxso0Y7rtNZ8gF5E,33451
176
- umap/static/umap/js/umap.forms.js,sha256=CLSDFW7tepHrQa5mKPdr0kvDDrrFsdWiHWDWeV8ajmE,29866
177
- umap/static/umap/js/umap.icon.js,sha256=J_XqNkpHVSU0De8eihKtUmmflFJNB-9SmUU4Ka6c868,6339
178
- umap/static/umap/js/umap.js,sha256=0uKBYbC-k3pofmRqqsOLNMxof9ClaMgqhJk4PUTG2ic,59746
179
- umap/static/umap/js/umap.layer.js,sha256=l_Nc3niB_IrFiSBurgUYn4AyyH7FI3lmgNpbGGa_P-c,44493
181
+ umap/static/umap/js/umap.features.js,sha256=HfVO3VqdKPg0E38di7LlTLXVf2QC3wkYp8DebFFNCPE,34160
182
+ umap/static/umap/js/umap.forms.js,sha256=vkjHsYkJvS8Zm_HcxKMYkLeNDNojjuDZMBRstQGCn3w,32510
183
+ umap/static/umap/js/umap.icon.js,sha256=SHnWd4mzWzOTVIgLaIMjZBTyz2MoCzqjL2w6YSs0BoM,6588
184
+ umap/static/umap/js/umap.js,sha256=KbqkL1PtI4CxQh_zQbFI1mjpXYrOb5x8ba-QvZ_NZ38,59279
185
+ umap/static/umap/js/umap.layer.js,sha256=YpnKIg3QydU7kw7khbywF_LH5i3RJl_4u6iBTzv6iBw,44986
180
186
  umap/static/umap/js/umap.permissions.js,sha256=Cnvrvb3UXmVIR411uhpjH2RXTirg7dHlWkS5chQCKYA,6097
181
- umap/static/umap/js/umap.popup.js,sha256=okaxEe2fkfT5WEbq-4dtSfep6a-uJm6bmfnF1YiESlA,6633
187
+ umap/static/umap/js/umap.popup.js,sha256=1UxLawfP9tuHJvxTLzAjTg15xQgOhJs9hU5nkeK-DkI,7409
182
188
  umap/static/umap/js/umap.slideshow.js,sha256=P5zByJfMJXROMmFLdSbVqATP0Mf6AGx4QtYpiCvhV-4,4421
183
189
  umap/static/umap/js/umap.tableeditor.js,sha256=LE1D3OtZanY2HQ1j3R9V7wdmPrIBPt9FcGz5OhEzH14,4191
184
190
  umap/static/umap/js/umap.ui.js,sha256=Fh3iSuZnWpdr2ZmAhL1NtfhsZos-Hj4qWpHY8kEzOQI,7637
185
191
  umap/static/umap/js/umap.xhr.js,sha256=-HEti2JnTSExIfy2agAdoUGOvE7t3CzPHU9dPjEKYA4,8981
186
- umap/static/umap/locale/am_ET.js,sha256=r96vuZB5xrmrSQHqwFS_O5C3S9CidpFp0jsbepCRGTI,29748
187
- umap/static/umap/locale/am_ET.json,sha256=YaN56z5WhCnH8fYA12dWWsXOp7KQ2YcViOKUaX1YU00,29677
188
- umap/static/umap/locale/ar.js,sha256=3xq_MFKE_tuJ4gmDchZTrHZlY9yMnfreqW8K0zMgPug,25719
189
- umap/static/umap/locale/ar.json,sha256=wANCXhrQOFGlyz_Q-u1F372Wuog0mXA_J2tgxFKb00k,25654
190
- umap/static/umap/locale/ast.js,sha256=uH0H5tFcJ0ceiOputJnQFfhz_EFs3XE8yr6pK40jwp0,25265
191
- umap/static/umap/locale/ast.json,sha256=FdBYHBvDjIU6o00ZPP8RXEknFHFNvKme6EuprKfi9uo,25198
192
- umap/static/umap/locale/bg.js,sha256=jasRKzN2nP8_w-7xPtRNrjUCX3LYESKVGi9s79VLLe8,28862
193
- umap/static/umap/locale/bg.json,sha256=KIMvOxBa_wfeHFVuY6gkfjyWRltOGKrtgEgE6BNJHaM,28797
194
- umap/static/umap/locale/br.js,sha256=ee06Dan53Y23LiN8rjrlvLTLL9Ifw1FlA-stND6ydNg,26666
195
- umap/static/umap/locale/br.json,sha256=-P23MTB5aMPkPYm4dcAe27U6AbyQOWVocJ4UCBT17x8,26601
196
- umap/static/umap/locale/ca.js,sha256=hn9HVVY8LkPPl5NIgVi95enkCoZX0tmbgXR3Dwh_ULk,26298
197
- umap/static/umap/locale/ca.json,sha256=o9ixCuInlArmcSY6XE6l0JLflSXV7pkDdNXU2QQ8Es8,26233
198
- umap/static/umap/locale/cs_CZ.js,sha256=5cCsA1PY-LmTnXtcUMBg-PKQJhtyaJxdMFlnYgtfI14,27466
199
- umap/static/umap/locale/cs_CZ.json,sha256=T7ZXMKPqmKDdUJO3uW19U2IHNeSnwjoiHGUGu2YWINA,27395
200
- umap/static/umap/locale/da.js,sha256=NxwfgWbaxKLHNhK19evChLmhuvrrrTQHEmhNDgTjew4,25641
201
- umap/static/umap/locale/da.json,sha256=1rSWJuhj5mYxs6V0B2FzVerIME_xbFnSeODKYsEzvU0,25576
202
- umap/static/umap/locale/de.js,sha256=G1MduXu7p_wNu9WtI9OXJXoI8UIzkhFMLHoMZQWb3H0,27067
203
- umap/static/umap/locale/de.json,sha256=5hXzDrBQ73nCoWLCE6GnDiJJVnT-fnP9CfQCf-uH4F4,27002
204
- umap/static/umap/locale/el.js,sha256=J8nxZEZN8incqyb1StFJjmw5Y4xMEXYqCHVH_r3Tj20,36779
205
- umap/static/umap/locale/el.json,sha256=hk4OFTCUD6zD6AFVDYOIPoWNP3cic2P5m3EkETKsS8k,36714
206
- umap/static/umap/locale/en.js,sha256=HnHgcczbKVolu0d--AuvBJ9DfUYhziHqUoBOtyykV6Y,25265
207
- umap/static/umap/locale/en.json,sha256=Gw9ow8ujzQViQV4iM-dzSmldVSdK3e8XIbdI6lERiKo,25200
208
- umap/static/umap/locale/en_US.json,sha256=6EcG2_jiWutTj5zkFa2VC-pjikBlIj7B_WECUvS3PO0,24917
209
- umap/static/umap/locale/es.js,sha256=qkXowVZbKil2kHC6MiBS0--JFZpQxO6ttSF6-4g7cro,27817
210
- umap/static/umap/locale/es.json,sha256=Tq5oPaEvHgK-wNoq3O2sMXmivlDTF8XnibQptAHKy1s,27752
211
- umap/static/umap/locale/et.js,sha256=RQ_zcnt1SV2MBQiCXWc81AaGXt1HWTEqF69VkQFviQY,25487
212
- umap/static/umap/locale/et.json,sha256=e-S4mhUKeID6l2Uz8RoEze_3JZ8rIVDSMpuu9aDpzq0,25422
192
+ umap/static/umap/locale/am_ET.js,sha256=Xws2J2_SXY3vdtoV-yqKCUcN27Pi2vdk29B8xG0UqHk,29894
193
+ umap/static/umap/locale/am_ET.json,sha256=uf6yyyxDRZfNI_7iBdAISLQdRyJAs1iFvFvA5-bNN1g,29823
194
+ umap/static/umap/locale/ar.js,sha256=_puZglhIyVlgmCYGiPJbxVfAkuTAUCVItVGtsCkUG7g,25865
195
+ umap/static/umap/locale/ar.json,sha256=4cPT-ry53LKZ1XcoCkiNX_IflWTW4qXayCYoMUgxTdM,25800
196
+ umap/static/umap/locale/ast.js,sha256=VMBkl9Xn1kWAPaaXIFxJcPHBniVYktlEuNG2H-zGTsc,25411
197
+ umap/static/umap/locale/ast.json,sha256=TcmPSNErGN_fMciABYqd7IHyBTYs_LFj5VBZ7fmwsBg,25344
198
+ umap/static/umap/locale/bg.js,sha256=pbbTVwfe0NazeTeSl_b_x7nxfsllredrcBwPhCkH9g0,28998
199
+ umap/static/umap/locale/bg.json,sha256=ZlRPnGg8HfafhbAMnll8vBvB9kNu9CTOuR2r9Qv4BnA,28933
200
+ umap/static/umap/locale/br.js,sha256=48qdHUg-nfMGJGic4FJk21We2FUnqfBQUA9ImQC9xZk,26834
201
+ umap/static/umap/locale/br.json,sha256=tPe6bkKvGCu_UjHpVhsRXghcE5VufRQFYwhchvy7QjI,26769
202
+ umap/static/umap/locale/ca.js,sha256=lokxnicm7ZgsKUvRGPHdXTy6tkXSFK32QhQhR3Zd79g,26444
203
+ umap/static/umap/locale/ca.json,sha256=9WYUzbYSvZCzmJq-UZTKvOdcTFyusc9zbnPzlu6ExGU,26379
204
+ umap/static/umap/locale/cs_CZ.js,sha256=ccLG9r2HKQiExuiegtlaSVOAa9S5Otc1LUhgrVjIg0I,27578
205
+ umap/static/umap/locale/cs_CZ.json,sha256=jXCI2_cyZvtWvtTqkN12ja2V7YqtYkpwR9LHD65mTcE,27507
206
+ umap/static/umap/locale/da.js,sha256=gUd33-hIIssQCJWU0swEfz1DWCOKvfkwHYcfAIJi-RY,25779
207
+ umap/static/umap/locale/da.json,sha256=lL33eqvoz1KnDOc8-aOV_l5qqyr3GU_N2TIFu-onyN8,25714
208
+ umap/static/umap/locale/de.js,sha256=ms2fDzqNznQhS6H7FiSM-ByBxhdYvFA_P8iB3Sx9tog,27199
209
+ umap/static/umap/locale/de.json,sha256=eulGYqY5pF6mU8wggZFyseG252c0lP_Xjyk2oniL-vU,27134
210
+ umap/static/umap/locale/el.js,sha256=LEDlH7ICmJUlTd-keFJZStN29EKZsded3PlKzMA_KXw,36863
211
+ umap/static/umap/locale/el.json,sha256=JuHZzWlFNuicT9LnfvnkwqRAsSFP9j1WKlilLg46fsM,36798
212
+ umap/static/umap/locale/en.js,sha256=iUYZlF_0nCzsPpX4HKEqg6ustECzdQ1fBq2Z4RC7cnQ,25411
213
+ umap/static/umap/locale/en.json,sha256=qKLfCKuCSmL2o8eqCa50XG8vVlh3aDc5nCZQJ1XxeQ8,25346
214
+ umap/static/umap/locale/en_US.json,sha256=MuNd-Ri0UujQyVmEJ7gD-4tm11eVDnS5Py37pI8RPRU,25063
215
+ umap/static/umap/locale/es.js,sha256=WQsq7L0octeT2LUZCTC9_7NWkf_3Cg-1clQqTRKJFN8,27980
216
+ umap/static/umap/locale/es.json,sha256=DrN9nfAkXUP618NPiuY2bjNC5KnboRLlTRqhEsPFzLU,27915
217
+ umap/static/umap/locale/et.js,sha256=YcngFQYpUvaCml6aCEpNrA4KXkIzZOiYyKqnW-AXlyM,25624
218
+ umap/static/umap/locale/et.json,sha256=nuvFpHyOjnCXJA0R-mrEQD3mzndL4Rgi13Bl8R_Wmao,25559
213
219
  umap/static/umap/locale/eu.js,sha256=NZYhxkWnzd5Kx14p5nSpNt9wNOsQvTGGrYrrxQ321Vs,24242
214
220
  umap/static/umap/locale/eu.json,sha256=7ZbrluA4I-_HLGUqOLMABfAp_ZmDQJVsmmd4V6PlQMQ,24177
215
- umap/static/umap/locale/fa_IR.js,sha256=G07oyLAMQXkDE_CUmP9LuhTsnYjW-C7nbw2UlpnEXwE,32195
216
- umap/static/umap/locale/fa_IR.json,sha256=OTbPx5SDBTiekIs5MU00O6dZs_GIo4vj9R4HsoG6jHM,32124
217
- umap/static/umap/locale/fi.js,sha256=DONu4H3f7xR6qTfpLOJf35QPfr3oYqULFj9L7YU9v7E,26235
218
- umap/static/umap/locale/fi.json,sha256=gUlLo6ottEwVnVlW94wC0QowioUeLJDkxTdiyO--B64,26170
219
- umap/static/umap/locale/fr.js,sha256=80cThfLS0mA9lKWUcrkh95XRGUxCXP2yMixiEYYMcTQ,27641
220
- umap/static/umap/locale/fr.json,sha256=b6qpWLJXc-JKE9LhViWsqQFF8WUYUERENQhyuged5D0,27576
221
- umap/static/umap/locale/gl.js,sha256=ybn_6nRf9kRVHBwLs2fZJ0MqcyPi4OEcVH6N92543sA,26843
222
- umap/static/umap/locale/gl.json,sha256=gqFPDj8jto0W9hN99wUJZNR8prUKyi9Iq39EGUL05NY,26778
223
- umap/static/umap/locale/he.js,sha256=OowFgAFSv9C5w49RHMX0chiXA45lI61FnVnkY3umRZk,29170
224
- umap/static/umap/locale/he.json,sha256=Ev2vRXSiEJm3-LI3Xh0--secPG_poyg6DzQtuFATd8g,29105
225
- umap/static/umap/locale/hr.js,sha256=IqquW_d_V0BPUymzcWlGdkSIRhePxBKPnydbKhpZilY,25451
226
- umap/static/umap/locale/hr.json,sha256=E4ohkrMQYK2BGYNfyE3nOsWTFK_rlQbXDN1IwHnuqME,25386
227
- umap/static/umap/locale/hu.js,sha256=2UhsC1NXHdGn4KgSy8TY3nab9EppxIzYzkhv0YVleEY,28310
228
- umap/static/umap/locale/hu.json,sha256=k3G19zQu6np4wqOwCd0CGnb5iK4p2xd-faR5I3nxIHg,28245
229
- umap/static/umap/locale/id.js,sha256=19yZfCR91ZXDhiJZivP8Ks3nU-H-Y79AaIZV5h3cIIk,25263
230
- umap/static/umap/locale/id.json,sha256=FdBYHBvDjIU6o00ZPP8RXEknFHFNvKme6EuprKfi9uo,25198
231
- umap/static/umap/locale/is.js,sha256=BWHg4SKArKFeSZrWtwADoiYTmN5GK5fNXK_3_xlVVlw,26743
232
- umap/static/umap/locale/is.json,sha256=EobaSjt6yHf0Zd88aHCnfB2OQPWLqUA2qDyS1x5UOWE,26678
233
- umap/static/umap/locale/it.js,sha256=tUd53BGgOECTeC1oxPN6wXBoJy7zaROwCEDEH2hTUFo,27797
234
- umap/static/umap/locale/it.json,sha256=OdolIkiOzOGFk0C3oPvoG7youSw9aXCJvb33Yun-ZYA,27732
235
- umap/static/umap/locale/ja.js,sha256=cwMXBNZ3X4B3OpLcPToSpcNSfa-xk-7a0_ivHOxjeqk,28229
236
- umap/static/umap/locale/ja.json,sha256=Dz6wo1kfwljPrz5uifuS00ajIrre3yBxcAFb9VUVehE,28164
237
- umap/static/umap/locale/ko.js,sha256=GVRrR25ecjBhhQ21-upwm81rRoXG0yqDb0bJ8mdmfUU,25508
238
- umap/static/umap/locale/ko.json,sha256=QRdBZfU0EfZVtImTJu-JqfsH2n2h4e-Agd_AYwlpFe8,25443
239
- umap/static/umap/locale/lt.js,sha256=47xYAsOfqbT_NvsWV4ThXCeFrfnwHs44t8epJBGnq_Q,26174
240
- umap/static/umap/locale/lt.json,sha256=u5fwjRmBed7eZS1TYxhKwMMvhEF7PA3JAt5H2Po6Vhc,26109
241
- umap/static/umap/locale/ms.js,sha256=CvS3wXlXF07Hhg76i5sJApDflCj_ltdbNHtZuQ2tmaQ,26586
242
- umap/static/umap/locale/ms.json,sha256=5YMo1MLOEMptOAM9ATuTshQrXtH71hQD-Uh2fy5uM-k,26521
243
- umap/static/umap/locale/nl.js,sha256=1Jrik1agOPSsVT4NeiwXp88VsS7QBFGMA5eV9ULEGmE,26752
244
- umap/static/umap/locale/nl.json,sha256=dSCMBi-jphOhKM56MQhgzivJ5vbEsHFaJ2JDhmaj4Ik,26687
245
- umap/static/umap/locale/no.js,sha256=lfqe4Uk5olAfhjQSU3I9h0c9MKZ_bQsWV8DGxFJnnXk,25519
246
- umap/static/umap/locale/no.json,sha256=cxW0CTngqcRB9kElwNfjjHluznbzUt3emTKQdmYaCZI,25454
247
- umap/static/umap/locale/pl.js,sha256=xBrPXtJsV3Q80Rp-P7v4sAwGDX-VLfzk-P_iNkeNNc4,26910
248
- umap/static/umap/locale/pl.json,sha256=xlJic-l6sTgjdMPbCpRYCx0lvkouuk2fr6OouXRVtqg,26845
249
- umap/static/umap/locale/pl_PL.json,sha256=FdBYHBvDjIU6o00ZPP8RXEknFHFNvKme6EuprKfi9uo,25198
250
- umap/static/umap/locale/pt.js,sha256=AlpepvAGaGi7J_ZRDXO7mynEiNu38oLZs4biFc1Mlig,26833
251
- umap/static/umap/locale/pt.json,sha256=5762P5bODc1eoukGPeYIOhnRRNF2fZs0wXInSyAjHGE,26768
252
- umap/static/umap/locale/pt_BR.js,sha256=-I1bInVNCA8MK1IOubo8lKvadW340BqFP9xreXIGux0,26827
253
- umap/static/umap/locale/pt_BR.json,sha256=gbpsCOtx79qDVLnF4_9bvKresHlaKCkFInfbevVWWHk,26756
254
- umap/static/umap/locale/pt_PT.js,sha256=7NMIaQMzIm9MWM6GM2QXAmgNWmwTM9zVMzhPoWI0iwA,26839
255
- umap/static/umap/locale/pt_PT.json,sha256=hinxK30WorxNzbT2JTTI64Z1OcDLOrBQ8DkzOtQhs9c,26768
256
- umap/static/umap/locale/ro.js,sha256=uvhat0d-6_HqMLh4CDHAfL8mAhVQwsQcUUuuCdOB-mA,25313
257
- umap/static/umap/locale/ro.json,sha256=NX2sZO2868j0X_OLrEX-ZAVL-9PGyVddfHSbd1DnKgQ,25248
258
- umap/static/umap/locale/ru.js,sha256=mdsxuX23zrAHTMNC_j4_2N-pJLr7UI1sOWN0yax_K30,33525
259
- umap/static/umap/locale/ru.json,sha256=xiVJmNxNOocn0PGVY5LQgl_7o6ILlXhgBhPnoNN52wI,33460
260
- umap/static/umap/locale/si.js,sha256=8PHmKwiGpnStW6MGWG7sBPDA0LDfMgVv3mEMTWNms_w,23838
261
- umap/static/umap/locale/si.json,sha256=eKMlpMsKpfi00mGZFVyoTRZC4vqW2BzZ5ts1cGZs1vY,23773
262
- umap/static/umap/locale/sk_SK.js,sha256=-_TZy4AFTfB8VMRDasvg0RkwKpMtw69Z3ybOb7eM9PI,26721
263
- umap/static/umap/locale/sk_SK.json,sha256=EUSwoA-2bnxCDcO8BBYY5Swdn1d6AZ_H6TgYwKQ8wQg,26650
264
- umap/static/umap/locale/sl.js,sha256=pgA7cTUosEZHAe-EPvB88D-pG7FeizxP10oforzDVz4,26553
265
- umap/static/umap/locale/sl.json,sha256=W6ZXfQiZBFJE9QRT-_1GuWhYib-MmfRN5pQB8lqZfJc,26488
266
- umap/static/umap/locale/sr.js,sha256=AqKhoACdCgmaReIFg14_PaDkyp54QudopoxX9EQWOrU,29872
267
- umap/static/umap/locale/sr.json,sha256=DOo1AekP8Je5dv8aBOB92CIGoi7pxFM_6PqVT6PZRCo,29807
268
- umap/static/umap/locale/sv.js,sha256=IbZ4DipC8Hcrhtfi-dZ5phGraThC1HN7CGqe4VlH7y0,26504
269
- umap/static/umap/locale/sv.json,sha256=tMDpeoYaMWjdJH9BcMsrEjx8VjhnZlK8r8etb2WTSa0,26439
270
- umap/static/umap/locale/th_TH.js,sha256=HmO2j_MYPTBZW-qWvK-xihquZTuiUs3o-bGPRpigBKc,25269
271
- umap/static/umap/locale/th_TH.json,sha256=FdBYHBvDjIU6o00ZPP8RXEknFHFNvKme6EuprKfi9uo,25198
272
- umap/static/umap/locale/tr.js,sha256=aHfeO6SsCk8nb8NEO9_FrDmUMk9nrK8npHuu40V3al0,27023
273
- umap/static/umap/locale/tr.json,sha256=56LC-mV8ZDDu0feQYNkzCvejGmbGyynRe3vncGunuqE,26958
274
- umap/static/umap/locale/uk_UA.js,sha256=3Fcvos84zYwnDPYna8uhOBtEf3Xywy7Gzepi9lIacCA,33122
275
- umap/static/umap/locale/uk_UA.json,sha256=0aDmVqkhvUIgKJEouAp1gSdyLRrO0NNcxDVgGWut31A,33051
276
- umap/static/umap/locale/vi.js,sha256=9f-vyXlqptG5Fqt3wKo__zA68VadvIdgwsv1VqnL3Gk,25607
277
- umap/static/umap/locale/vi.json,sha256=3pHR6D7L41u4AEMhQhuy4k7T2LzXAl7hFgZQbfUn_Gg,25542
278
- umap/static/umap/locale/vi_VN.json,sha256=FdBYHBvDjIU6o00ZPP8RXEknFHFNvKme6EuprKfi9uo,25198
279
- umap/static/umap/locale/zh.js,sha256=qShc4uE1WaetAF_yp3FBWNfc7XUvDg5nmiX1EtqHYT0,24895
280
- umap/static/umap/locale/zh.json,sha256=JLz-UCL72ZGrI05CLMWaunmZR0xEbm-VqT3mt9RbzGU,24830
281
- umap/static/umap/locale/zh_CN.json,sha256=FdBYHBvDjIU6o00ZPP8RXEknFHFNvKme6EuprKfi9uo,25198
282
- umap/static/umap/locale/zh_TW.Big5.json,sha256=FdBYHBvDjIU6o00ZPP8RXEknFHFNvKme6EuprKfi9uo,25198
283
- umap/static/umap/locale/zh_TW.js,sha256=D20AE1mb0Sna4MhdHLf27kBjbfJA2wIK5hyAv5-sWpI,24866
284
- umap/static/umap/locale/zh_TW.json,sha256=reHHtKwPS5wsQl9mism_NzfYRYSMkCfWI_QH66O4Z4c,24795
221
+ umap/static/umap/locale/fa_IR.js,sha256=05eZouZ3v6ccmcTq0lteekkzrJeLLO70PIMgBOroik4,32295
222
+ umap/static/umap/locale/fa_IR.json,sha256=DpCFNcC3TLklD8tLvp8AKvUdmwPt8w9wR84Lna5mNkg,32224
223
+ umap/static/umap/locale/fi.js,sha256=s0qYlBidVavypuVuvV3WYA8KLopFg79ycTqPWS5TBnM,26381
224
+ umap/static/umap/locale/fi.json,sha256=ILbaqBmNeDuKl6Sf8aU-W1rKZtwSM-AphdsOZcyUir0,26316
225
+ umap/static/umap/locale/fr.js,sha256=OGIW3953quxXkjFK0a6F7RwmbaVgwwFGuQQ6ufD8TaU,27805
226
+ umap/static/umap/locale/fr.json,sha256=LZAAhPRwF5xKj5yn47pKBkx9T7ltyhwx1_-raZqyADw,27740
227
+ umap/static/umap/locale/gl.js,sha256=Ia-ssPwrIl-dHJrKHWSsl2y6eA0aGXHs4QYEecpfwx0,26981
228
+ umap/static/umap/locale/gl.json,sha256=Evxnkg72uxYh7HT8iPvWj8cIhPJN-CZc_WjB9nIYlWg,26916
229
+ umap/static/umap/locale/he.js,sha256=snIVvXegd9bFWcEbs7Y5UxlgK02Yv_5FrRtzvpdt_9c,29292
230
+ umap/static/umap/locale/he.json,sha256=OFQrbOs0-0Vpx_0ziAQGzcUKZ-zwlIwLOAJG3OcX7c4,29227
231
+ umap/static/umap/locale/hr.js,sha256=jR0U0EKvhFDzHDOwkifgiBarPUwsHzsB53IrIISyx_U,25597
232
+ umap/static/umap/locale/hr.json,sha256=BdM4fpi_Sr0sHpc1c3L-PgpNWU0nmd1shpWi4HXCXG0,25532
233
+ umap/static/umap/locale/hu.js,sha256=AH8Jq0ZNWItQ46254UKEB-1Bq6IFHsTUd6gXU6uFIS8,29028
234
+ umap/static/umap/locale/hu.json,sha256=s7soXKVg2yzWpTMoYbu-nJuYPSQ6knKCz8kQlcRpUfg,28963
235
+ umap/static/umap/locale/id.js,sha256=Z6k_wOag_HEPqASNqO3wEdVwtXCBq9kgGBhC-NvqRgE,25409
236
+ umap/static/umap/locale/id.json,sha256=TcmPSNErGN_fMciABYqd7IHyBTYs_LFj5VBZ7fmwsBg,25344
237
+ umap/static/umap/locale/is.js,sha256=3rqZPXDow79bHaFRNnBwiDtrjtLQWvyhwXON4EZ_41A,26883
238
+ umap/static/umap/locale/is.json,sha256=B-96OiqefLZHAb521oMZ-DvCF8lAiF9lOhZgYQqwBcs,26818
239
+ umap/static/umap/locale/it.js,sha256=h_0zgkPEvm5eHQVKCaflDtUSCO67B5AT3aWXBCAL4Tk,27931
240
+ umap/static/umap/locale/it.json,sha256=agkQp2LzhDMFPvRBiqM23rzRg_bKw8zXEbMAKR_g0Rs,27866
241
+ umap/static/umap/locale/ja.js,sha256=6jPE3NYQqD-kXevQUOfV7D2qRriLwkfSaao4VIv7Yc4,28364
242
+ umap/static/umap/locale/ja.json,sha256=gb3quK9k4LyZ28FEm1dof7_2BgKoIpQKtDWho-dcYGk,28299
243
+ umap/static/umap/locale/ko.js,sha256=QyOoTg2C_WinCA2dqeyBtLH1IcO9fVabOfrQEfrTqYs,25651
244
+ umap/static/umap/locale/ko.json,sha256=SuCtq0m7t_uEcDV6vXdUsOYNhNKCWYKvMhpB9N9UtQE,25586
245
+ umap/static/umap/locale/lt.js,sha256=jic87KBJLdZUTryyPGIXd5Cxv3GIDxs9zjFiiqruR58,26320
246
+ umap/static/umap/locale/lt.json,sha256=Vf7rMQ12vzdH0jJZJDjeRCQLqRPEd7A8wRat46g2uwA,26255
247
+ umap/static/umap/locale/ms.js,sha256=CI2r8dgXKwXz6k-aWvFLIhCtr2dy-c0cTEFNJL6UAk0,26745
248
+ umap/static/umap/locale/ms.json,sha256=I0wU8s2gt1jOhdnxrvixZC3PgnQm5UmtAW4NJgW5FRc,26680
249
+ umap/static/umap/locale/nl.js,sha256=KP4_-ABmAqNmWWoKJWMOoaNxhbEZ8pn3GQADQ9ZJWqg,26896
250
+ umap/static/umap/locale/nl.json,sha256=AO-g8t3jcsqsZ5eCT5XIXzKMqDq8Ux44nQURcRZqCRI,26831
251
+ umap/static/umap/locale/no.js,sha256=MWLrpPIRTFOmgO4fdbSToj7NIM4yNJgqZy2laB54Wag,25662
252
+ umap/static/umap/locale/no.json,sha256=O_kQtbsijC0NBDqVxJtedsAktnU4zGa-KRUNuz6cdVM,25597
253
+ umap/static/umap/locale/pl.js,sha256=N7YBJ2C--e85x9566g94cjWCkMZHD-bghbqMBS3oaCQ,27046
254
+ umap/static/umap/locale/pl.json,sha256=wy8ORuERdeLKMLFLYRpBRdVhO42NdhRgKNVIygrzmb4,26981
255
+ umap/static/umap/locale/pl_PL.json,sha256=TcmPSNErGN_fMciABYqd7IHyBTYs_LFj5VBZ7fmwsBg,25344
256
+ umap/static/umap/locale/pt.js,sha256=lg4lLe3tIOjf3Jr0rMAVSDRCIjqIRTiLAE3ueg2_qeI,26968
257
+ umap/static/umap/locale/pt.json,sha256=2T9IuOznV77P6oQyECA8Xwk_TRISGp78CqXRVFsmBD4,26903
258
+ umap/static/umap/locale/pt_BR.js,sha256=tTLbkbQfVT8UEN3TkykzuOWjiaNspepQewVwUIwodZ0,26962
259
+ umap/static/umap/locale/pt_BR.json,sha256=-LoEJQ74-Y4z0JZZ0K742PSo0ICOweafjeyBFTvVsdo,26891
260
+ umap/static/umap/locale/pt_PT.js,sha256=WQQzHd9OgQVv_S494cnFjhevtHmd54TT-5xSdkiT_gY,26974
261
+ umap/static/umap/locale/pt_PT.json,sha256=vyB8BzhWQ8IteoB5IOq4pFtZsHOVtAfFXcu6nmvhLmY,26903
262
+ umap/static/umap/locale/ro.js,sha256=3Vnwh95YbYGSPvkd3ZYZzEfmhimMCyWvYkbfqOq77PE,25459
263
+ umap/static/umap/locale/ro.json,sha256=mw2On_in54o0M9aGAFNDP-td1Ap_ouki322Wv6KPIzk,25394
264
+ umap/static/umap/locale/ru.js,sha256=EGsuZl4I2UjsBb530XrJCP-5-Ja3_gVEckMoi0NFCZI,33644
265
+ umap/static/umap/locale/ru.json,sha256=z3YLYfu5B8hQEFcxsCO8mB8iRKb6Kk1g6lNrKdjefxg,33579
266
+ umap/static/umap/locale/si.js,sha256=_Wa9_18OzdnqGUvqbq0PDKC0pTGH6FhAw0vEZrkoxEQ,25799
267
+ umap/static/umap/locale/si.json,sha256=nXKIS9TV2eY76aWr5ylKIXQHaTzikUu8i4qmSV7SnJQ,25734
268
+ umap/static/umap/locale/sk_SK.js,sha256=H0Ux914dIh0sB-ypCtBwadAx16XHX0E-P-aF9wQQiuI,26863
269
+ umap/static/umap/locale/sk_SK.json,sha256=5qfj9CstswultoONWVM8oJOoR1nk3BTUTBZLGWnPRsk,26792
270
+ umap/static/umap/locale/sl.js,sha256=U2ehYnNZ6OvV54IroZWU_1JJH1pUigWHNGeRflZH9Qc,26688
271
+ umap/static/umap/locale/sl.json,sha256=r4aO_Qn2t5k0MyfZYwjsL7AoeQDd7767jzBi499fhM4,26623
272
+ umap/static/umap/locale/sr.js,sha256=WmPORXoe7v2XUIJBcJ03pbCpg1nt8K_vwkCXZRvXgdw,30008
273
+ umap/static/umap/locale/sr.json,sha256=Q5-BpMesnvjz07oYkkQcfoHQb-t8hN73Wkm134qm9fA,29943
274
+ umap/static/umap/locale/sv.js,sha256=D6ojUqp3AYAaEN1X4ZOBr_YtRfYLhY1jfEskO04OFDE,26643
275
+ umap/static/umap/locale/sv.json,sha256=gej96C77ks1Ta1700SNjs0-phQdPXhkQ6j33top7v3g,26578
276
+ umap/static/umap/locale/th_TH.js,sha256=nggyczgehV66IEALQp4uilE-wsQm_BOq59sb1OW0cd4,25415
277
+ umap/static/umap/locale/th_TH.json,sha256=TcmPSNErGN_fMciABYqd7IHyBTYs_LFj5VBZ7fmwsBg,25344
278
+ umap/static/umap/locale/tr.js,sha256=z_gnYd3RYV8tJmBsjjyHE_lpxh8lf-S7kwca0kIIC7s,27154
279
+ umap/static/umap/locale/tr.json,sha256=LlvQbhh1EzTffgdf-4Od9Q654pCrGBIaXlXLCl-kaz0,27089
280
+ umap/static/umap/locale/uk_UA.js,sha256=1LEXXPz09b4ic9p99KU58HpFOUZdsjzXsLpsS6aScFo,33256
281
+ umap/static/umap/locale/uk_UA.json,sha256=lpio66UsabOEtDO2xj2zDjqKixC_ZBzluPZxlpZ-xoo,33185
282
+ umap/static/umap/locale/vi.js,sha256=ZfTkAzc8vlVla1BSOIw1ji32Z9wi1QEz3g7uWkeoqU8,25753
283
+ umap/static/umap/locale/vi.json,sha256=_B63yEGc9jNqoKVDU8OnDOaXJZs8QjZPkC5jSAMtxoY,25688
284
+ umap/static/umap/locale/vi_VN.json,sha256=TcmPSNErGN_fMciABYqd7IHyBTYs_LFj5VBZ7fmwsBg,25344
285
+ umap/static/umap/locale/zh.js,sha256=LT2HtGQDVPHP17K4cLcxMliUVI6WKg_47ATzWA8ybvY,25041
286
+ umap/static/umap/locale/zh.json,sha256=2R3kFcZ44eZRz4ULNiF-CenKaW3zTd30AVyiZOi8eqk,24976
287
+ umap/static/umap/locale/zh_CN.json,sha256=TcmPSNErGN_fMciABYqd7IHyBTYs_LFj5VBZ7fmwsBg,25344
288
+ umap/static/umap/locale/zh_TW.Big5.json,sha256=TcmPSNErGN_fMciABYqd7IHyBTYs_LFj5VBZ7fmwsBg,25344
289
+ umap/static/umap/locale/zh_TW.js,sha256=Webv1vL-rKDTyDl8Wq74YbscK0W4XnpEcjeyDX77xLo,25002
290
+ umap/static/umap/locale/zh_TW.json,sha256=OpBZwtIgPdUD_YPFT41K7A8L2Wamzm8DCdrCUEE248I,24931
285
291
  umap/static/umap/test/.eslintrc,sha256=zxYJhhVZ0wLRZ5qxM3yYJTGq_c134VHa8J2hplugqQ0,464
286
292
  umap/static/umap/test/Choropleth.js,sha256=_4SMYFErWeuEjswt28GjseByotonFQ8zuHYiyqmlkuI,5340
287
- umap/static/umap/test/Controls.js,sha256=_2gQRHH-KTPAvkojmZf1aRzeR_VsyOoHuqZdVR9H6TA,3517
293
+ umap/static/umap/test/Controls.js,sha256=cfLfIzCWawKaVRRFmyFS5pUDySDIDoJSR6tQ4eH3hEw,3516
288
294
  umap/static/umap/test/DataLayer.js,sha256=gIVayR02wpwx0HSxLwtVGdaPydD_2SOjVz-iYA2MKeA,15722
289
- umap/static/umap/test/Feature.js,sha256=Qc4mQ1F8FOimkX2c6AcQBaRldkftCwHQEA1D8RI5V0U,11534
290
- umap/static/umap/test/Map.Export.js,sha256=ShcSMEwwis0bcmqZLGY9eLqVxrr78P_IXrdeGtP_XcQ,8862
295
+ umap/static/umap/test/Feature.js,sha256=D9AiFKCsVCJwqp280i-LhPAhFqfL_Ov8XJE3qivVOFo,12472
296
+ umap/static/umap/test/Map.Export.js,sha256=FLMpPM0PwKWykfevcoL0lCnFRsSqtzfUZ_F9emPyBH4,5086
291
297
  umap/static/umap/test/Map.Init.js,sha256=g-u-0Oe8ucGL9ihZXBBT_S-ji5AG8Wwm4XeqqcniWyg,1589
292
298
  umap/static/umap/test/Map.js,sha256=fkyT_XIIh8LsZcyFDPTOUW9IB84j7sqT1WuX4UM6HQE,17727
293
299
  umap/static/umap/test/Marker.js,sha256=cuMzi2s6yJ4v_kWsn5vOnCfnWiFip__0RE3G-JqJuQ4,4179
@@ -295,8 +301,8 @@ umap/static/umap/test/Permissions.js,sha256=D2zw97L1bqIwZSG30r0NnbS1YLxGiCNQIKWm
295
301
  umap/static/umap/test/Polygon.js,sha256=EcyZ-Gnv_kOs3FVhN9O77w_qX4WozQPDtHedRaUduxA,12614
296
302
  umap/static/umap/test/Polyline.js,sha256=_mavFZOUdhUkVTo5JVa_tljWrxRjeTlI5k19KXZIEao,13980
297
303
  umap/static/umap/test/TableEditor.js,sha256=t0TJvhMLAu4g1lfereKWODz0G8rK4KspZn7xTWZIKFk,3216
298
- umap/static/umap/test/Util.js,sha256=5T8a00xHXk8TfO7twfmbWApYM5z7P4fVLAoaDz0Blt4,17671
299
- umap/static/umap/test/_pre.js,sha256=HmUDRAK1DHAW3h9_uuiQyqRJwhonnpT2MBrPxSDE2UA,13074
304
+ umap/static/umap/test/Util.js,sha256=UOl5utosvgcyvCCDHy7vHdVfgN2RK6yawy743moChZE,17937
305
+ umap/static/umap/test/_pre.js,sha256=JZ3NtZlyt4hrOR5_VOeK1qcaL9a7odofAqVpPc_yDmw,13095
300
306
  umap/static/umap/test/index.html,sha256=LQe62gEntHY4LOAX_49Y8HYwnQVFUNTGWolwFoaKDyw,5756
301
307
  umap/static/umap/vendors/choropleth/choropleth.js,sha256=gayHzV6SB_MNdm48-ZANMOcAFkXw_rqaDUYkOWW0EkI,57721
302
308
  umap/static/umap/vendors/chroma/chroma.min.js,sha256=oZqg3zt5dAKHJLJmbYMRoias7cZakJR8e8Vu7LmjZ60,46174
@@ -315,7 +321,7 @@ umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css,sha256=eVKDGO_G2bIJvf_o
315
321
  umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js,sha256=ati65azw8WxPG70b4JblFSHgD-fJ0ytriQEzC5tJWCM,9141
316
322
  umap/static/umap/vendors/editinosm/edit-in-osm.png,sha256=xsQrWBc8olICRKg-bt7auEoceoCoWWZxm5OmAHSE2PM,3340
317
323
  umap/static/umap/vendors/flat-drop-files/flatdropfiles.umd.js,sha256=zB9GhNsR_71RiaBxHmyrtVNemX458bFzxgSKroPa-qw,3691
318
- umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js,sha256=1jy77XNRH2xkWyo5Vp9raZVBaj-OSnkPShBA-8-hBVY,12322
324
+ umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js,sha256=YgcuELqOzpJjBz4AmXAZp6XKEQGYeRdpJ0sm_kZf8Dw,12432
319
325
  umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.js,sha256=_VGiFGzaidNadoKY4_8zFXP_OqGdajjpB-0vNHRz33o,5041
320
326
  umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.min.js,sha256=RQN1bmEq_28pzVG8Csu34O677VNj5_1xl1wUGyDjMuo,3654
321
327
  umap/static/umap/vendors/fullscreen/fullscreen.png,sha256=yDtz-dhjuAoo6q9xc00-_XNTrGwEWrN80pOneFdol4g,299
@@ -327,7 +333,7 @@ umap/static/umap/vendors/heat/leaflet-heat.js,sha256=65UqrlgGoRAnKfKRuriH3eeDrOh
327
333
  umap/static/umap/vendors/i18n/Leaflet.i18n.js,sha256=2_Ztz6WBwqg5fdzoVOvB8-b2kzMiQJqpa6K4tcG1aOQ,1328
328
334
  umap/static/umap/vendors/leaflet/leaflet-src.esm.js,sha256=Oe6TRk8R_jhHE35QwNyBifcGxGDjaYnqeHG_fVQPMwY,424589
329
335
  umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map,sha256=lxY34ye1PfsolFQ8pTsEtlgBJ4tW7panCBRsm35HNbs,866200
330
- umap/static/umap/vendors/leaflet/leaflet-src.js,sha256=tPonvXioSHRQt1-4ztWR5mz_1KG1X3yHNzVXprP2gLo,450229
336
+ umap/static/umap/vendors/leaflet/leaflet-src.js,sha256=Y0Ki5d8X0X1H2YiS590G4GgQTUnf6kP26s5XsJ2w76Q,455791
331
337
  umap/static/umap/vendors/leaflet/leaflet-src.js.map,sha256=l7cBxd_w6YZOXEWKixXC7DN4ejJsXed7kI-eoTvi1Wo,866292
332
338
  umap/static/umap/vendors/leaflet/leaflet.css,sha256=p4NxAoJBhIIN-hmNHrzRCf9tD_miZyoHS5obTRR9BMY,14806
333
339
  umap/static/umap/vendors/leaflet/leaflet.js,sha256=20nQCchB9co0qIjJZRGuk2_Z9VM-kNiyxNV1lvTlZBo,147552
@@ -369,9 +375,9 @@ umap/static/umap/vendors/toolbar/leaflet.toolbar.css,sha256=5KVBOQ0ivsFuafKYvVm3
369
375
  umap/static/umap/vendors/toolbar/leaflet.toolbar.js,sha256=HXh_bR49ZFpJ-GNXDNo2eHy-fJmrWehAzUeHgGhu__c,5326
370
376
  umap/templates/404.html,sha256=chFp1sDPind5B4cXRY3Cvd6WXw-RBfN3MIujrWajjK4,381
371
377
  umap/templates/500.html,sha256=dc0t0omG21JQCesEqV1SLrZ7RNXGtk9Diq5W9pKSAEs,5186
372
- umap/templates/base.html,sha256=LXH2AZt9ZfL0TMTjrzumh2c6ZCXB_8NQtztxJwbPUbU,968
378
+ umap/templates/base.html,sha256=YG_2-Ap5N87cD6higXIJmA9B5s8G9AUCUetlevqfuHQ,1464
373
379
  umap/templates/auth/user_detail.html,sha256=feuzzlA6QatSUI4g57JSGWViMM6iAydesVls-8J9UUc,491
374
- umap/templates/auth/user_form.html,sha256=X1urDpligmqgoBnkRXcZ81TMhIj-gaROqxME9qQsG2Y,1692
380
+ umap/templates/auth/user_form.html,sha256=VV4-hQQAr4Oe4U6mLLfqbMKUy4J4Km_rPkVQGnfoJjM,1692
375
381
  umap/templates/auth/user_stars.html,sha256=UE8XnvH48ak27k42hAQviZbj-Q2DNiz1BtSb1cwCGa4,511
376
382
  umap/templates/registration/login.html,sha256=0xthmYnxZ0RtjeAiTHpOvl874KW0kC9g9qCr6xNO4qw,1175
377
383
  umap/templates/umap/about.html,sha256=ycCW4EFTJMjLF9YT6xJ7Kqpey4sxozQyVTUx5l48kJo,127
@@ -389,7 +395,7 @@ umap/templates/umap/map_fragment.html,sha256=eO-03bkMsJn74rnMNMuIwvnpmJLYiUl71u-
389
395
  umap/templates/umap/map_init.html,sha256=kZ7iaXixnB4DFAj2JopLDre7GA84KzBypqzwewYBZPE,185
390
396
  umap/templates/umap/map_list.html,sha256=hIaqhlA8ihq_EighKubTuIQv8clxQEgk6T5GXdHHSu0,636
391
397
  umap/templates/umap/map_messages.html,sha256=0SRPEp2psqXeZCDOXODzisVNSUp6xUGlEfI9Nsvscjw,264
392
- umap/templates/umap/map_table.html,sha256=6WdBKcY0tQxAO71Sq2ldG-N2OQ8oEfRAIadKWVLqLvY,1518
398
+ umap/templates/umap/map_table.html,sha256=ghcLOYmCW7bb-ge2DK6leYsTJG2KXWC2TNH74p-X1DM,1518
393
399
  umap/templates/umap/messages.html,sha256=z2nSbxpXeZOXxVB1xq-lYTxm1Ynj-0zGQbGDc61Y2pE,287
394
400
  umap/templates/umap/navigation.html,sha256=V-DbNKDE34oK59FvTxZBfcIa5KLO_dEn4dULqRns9is,1269
395
401
  umap/templates/umap/password_change.html,sha256=trKXzqdwKCT561NhgV1Tt43f1dwqMrfcCVGayVDRGGI,958
@@ -399,21 +405,23 @@ umap/templates/umap/search_bar.html,sha256=PK4aWVIjEDcM7XcRGTLG1lMyrJce5czZoEERz
399
405
  umap/templates/umap/success.html,sha256=3FG4yWwtdF3zvVWQ2ZAjCkgv0kcSNZlUjgYy_b-X_CI,3
400
406
  umap/templates/umap/user_dashboard.html,sha256=bWlZoEEcem1cpWPl_V5IHwCQsgsGzij82LYtPmmfRUw,840
401
407
  umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
402
- umap/templatetags/umap_tags.py,sha256=ijLzYJGUsXvWs36MnuuNGA3a1ojuSBHC_IbGXrxaDD4,2411
408
+ umap/templatetags/umap_tags.py,sha256=sDKZMZAtLknc-__G3S5WH0mv-eh7HDV1yLAgT1ICx0Q,2456
403
409
  umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
404
- umap/tests/base.py,sha256=lvqO1DmVPEoFITy5RrHDRrNvd-nZuEmh1nOLehBvI8A,4186
405
- umap/tests/conftest.py,sha256=u5SijfoN_NUb3B5TEAiJfW7a_trLyvLeNgcM99p33MI,1430
406
- umap/tests/settings.py,sha256=LxZlXn5etLPrpp5KttjHTIFQfPCJ0vmt4Fp4eOBXjv4,453
407
- umap/tests/test_datalayer.py,sha256=91knrLUJcf555Lx-gakXCErJqHRunCgugnlKsAuMAr8,6321
410
+ umap/tests/base.py,sha256=evp_vK5d3Uqw8S5bTDOqYGuoMzpj6GiA95OY3yIFITI,4180
411
+ umap/tests/conftest.py,sha256=X-Yjm5b-yOjd1AVlcOIgsrIg0I5GXe4fj-sa37nxA7Y,1396
412
+ umap/tests/settings.py,sha256=EuwTzb6mxoAQndiijoGXZJ45CPESb6GffopsP1TLFR8,632
413
+ umap/tests/test_datalayer.py,sha256=1C2z0VACCime11CMbp9ehbj-knLpW8r6j72EQ_hKLU4,6322
408
414
  umap/tests/test_datalayer_views.py,sha256=vWyKq6gcfkBnwZTSxREclTKRL2aWJJVYH3_cSED0MFY,14927
409
415
  umap/tests/test_licence.py,sha256=BxNY3gdKhIoc2u5OPmAkmjCp0jJN-Jm-uPOfAZlpOHA,339
410
- umap/tests/test_map.py,sha256=jZI3E1CwU2jSveL3Fi5RanHC-qzJv6KN_-kHk6ONoP8,3860
411
- umap/tests/test_map_views.py,sha256=5trBblabEjpQtDUXn1StifOjO0wKHqvKUuo-KoaU1QE,22025
412
- umap/tests/test_tilelayer.py,sha256=thhM7UbdMAnpvRJyFL8fxCT4cvh_RHdGOwj43H8YmDI,605
416
+ umap/tests/test_map.py,sha256=nX2eE1HJY3bjycXulglK2SY1ybcnjDVgr0yntX6OgyA,3836
417
+ umap/tests/test_map_views.py,sha256=DGgfQHvLgDYizQeFZ-Vvv70zgKOWsZSDiklba58kAjg,24581
418
+ umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
413
419
  umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
414
- umap/tests/test_views.py,sha256=nSvAVwXqSc9N94ljpCuOJpJ1sFlP9wcpULCBKDLyny8,11726
420
+ umap/tests/test_views.py,sha256=fnvB2p0pK2FlKO66DC-mjNb6xGggCG1KTLQJV2muCm8,12598
415
421
  umap/tests/fixtures/choropleth_region_chomage.geojson,sha256=mVVbYlf92Sr3wWH9ETm43FdHz1U3zjsn91HuU5H5r4Y,21325
422
+ umap/tests/fixtures/circle.svg,sha256=P37vV2PhFPecAtY8qR3VlRuB79_wFaMeqKm2tX-2tkA,254
416
423
  umap/tests/fixtures/display_on_load.umap,sha256=eo4ecB3QUeCVu1u7COp7mZ8sCPkf2j4gGERE7N1v8GU,1845
424
+ umap/tests/fixtures/star.svg,sha256=zIi-j16L1Fzxtqz2rV2NDDm1NDHBWQfM5O6MIeoxgEU,256
417
425
  umap/tests/fixtures/test_upload_data.csv,sha256=b4RQw68ixs9UMj8TlTucV5YSfbactWhLLuE1yCKUTAY,109
418
426
  umap/tests/fixtures/test_upload_data.gpx,sha256=sIfeKEGxYikzg121qBdkBIVTFpuYh8q2-yWZOZwbu38,674
419
427
  umap/tests/fixtures/test_upload_data.json,sha256=t4PmJtVDhyI1x-E1a36jD8YVSa87T-Vtg8eBmHfQ4KQ,5650
@@ -425,12 +433,14 @@ umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-
425
433
  umap/tests/integration/test_anonymous_owned_map.py,sha256=8Zw-MwBcR5ewZMimHdSZr7OYEgpNmQdanmFrUB32hy4,6080
426
434
  umap/tests/integration/test_basics.py,sha256=1FesSkjNBWi5pEqN0MQlC3kIXTFZzuILq7A5ac9L-3g,1598
427
435
  umap/tests/integration/test_browser.py,sha256=xVNEHGjwE9y6PXAzc5L8w_sEfJrN-CAvoZJVFyZRco4,4842
428
- umap/tests/integration/test_export_map.py,sha256=SJgCsQKVInH77JRGr4x2kiuyuHgBrRiGUcds4Fxhtg4,3575
436
+ umap/tests/integration/test_export_map.py,sha256=C5_svVg2I0-KpYZZWL6Zu-lv_h43vystlBHXPaRWACI,3137
429
437
  umap/tests/integration/test_import.py,sha256=ML5LlnCY8RmKQgFEhygI9xLNsb6vVw7rGQ2R89LJejE,877
430
438
  umap/tests/integration/test_map.py,sha256=vui3SMJN-y9NQ3o5-z9dtJ-sTdvVN7IBDfH4FR4cwp8,3540
431
439
  umap/tests/integration/test_owned_map.py,sha256=mdGTLwf69vCpreXLUDkHMNf0R4Z80EGJECNA-I5GSwg,9025
432
- umap_project-1.10.0.dist-info/METADATA,sha256=j2wM1fDv0-PgVhnETmjvAA6cvxZxLI9iCupmEjDiYOI,2965
433
- umap_project-1.10.0.dist-info/WHEEL,sha256=9QBuHhg6FNW7lppboF2vKVbCGTVzsFykgRQjjlajrhA,87
434
- umap_project-1.10.0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
435
- umap_project-1.10.0.dist-info/licenses/LICENSE,sha256=BtMQT5EWvEua8jhXIrm2qfP8dmRFsMqCrJtq4k9Pb34,482
436
- umap_project-1.10.0.dist-info/RECORD,,
440
+ umap/tests/integration/test_picto.py,sha256=wNC6nqetSJC-A7Be8UPMeYLaycsG3RLvUrj7ykC7FI4,8356
441
+ umap/tests/integration/test_slideshow.py,sha256=uLPw4SyhLgpqU4-jrTu5vKSqYuZG7hXjfY8JlEt1JkM,2020
442
+ umap_project-1.11.1.dist-info/METADATA,sha256=DE1BXc7NoOtVf9CkME3HKHxSfLKApCfvzQhwfOMde5g,3071
443
+ umap_project-1.11.1.dist-info/WHEEL,sha256=9QBuHhg6FNW7lppboF2vKVbCGTVzsFykgRQjjlajrhA,87
444
+ umap_project-1.11.1.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
445
+ umap_project-1.11.1.dist-info/licenses/LICENSE,sha256=BtMQT5EWvEua8jhXIrm2qfP8dmRFsMqCrJtq4k9Pb34,482
446
+ umap_project-1.11.1.dist-info/RECORD,,
umap/static/favicon.ico DELETED
Binary file