umap-project 2.1.3__py3-none-any.whl → 2.2.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.

Potentially problematic release.


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

Files changed (196) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +1 -0
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/en/LC_MESSAGES/django.po +32 -32
  5. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  8. umap/migrations/0020_alter_tilelayer_url_template.py +19 -0
  9. umap/migrations/0021_remove_map_description.py +16 -0
  10. umap/models.py +8 -6
  11. umap/settings/base.py +1 -0
  12. umap/static/umap/base.css +29 -151
  13. umap/static/umap/content.css +7 -25
  14. umap/static/umap/css/icon.css +112 -0
  15. umap/static/umap/css/panel.css +140 -0
  16. umap/static/umap/img/16-white.svg +5 -1
  17. umap/static/umap/img/16.svg +7 -4
  18. umap/static/umap/img/24-white.svg +3 -1
  19. umap/static/umap/img/24.svg +3 -4
  20. umap/static/umap/img/source/16-white.svg +176 -940
  21. umap/static/umap/img/source/16.svg +8 -5
  22. umap/static/umap/img/source/24-white.svg +5 -3
  23. umap/static/umap/img/source/24.svg +6 -7
  24. umap/static/umap/js/modules/browser.js +82 -73
  25. umap/static/umap/js/modules/dompurify.js +12 -0
  26. umap/static/umap/js/modules/facets.js +148 -0
  27. umap/static/umap/js/modules/global.js +9 -1
  28. umap/static/umap/js/modules/i18n.js +7 -0
  29. umap/static/umap/js/modules/orderable.js +84 -0
  30. umap/static/umap/js/modules/panel.js +76 -0
  31. umap/static/umap/js/modules/request.js +0 -1
  32. umap/static/umap/js/modules/schema.js +324 -223
  33. umap/static/umap/js/modules/urls.js +1 -16
  34. umap/static/umap/js/modules/utils.js +340 -0
  35. umap/static/umap/js/umap.controls.js +183 -330
  36. umap/static/umap/js/umap.core.js +60 -364
  37. umap/static/umap/js/umap.datalayer.permissions.js +1 -1
  38. umap/static/umap/js/umap.features.js +60 -40
  39. umap/static/umap/js/umap.forms.js +111 -25
  40. umap/static/umap/js/umap.icon.js +11 -4
  41. umap/static/umap/js/umap.importer.js +24 -17
  42. umap/static/umap/js/umap.js +170 -145
  43. umap/static/umap/js/umap.layer.js +71 -40
  44. umap/static/umap/js/umap.permissions.js +9 -11
  45. umap/static/umap/js/umap.popup.js +10 -21
  46. umap/static/umap/js/umap.share.js +11 -8
  47. umap/static/umap/js/umap.tableeditor.js +4 -6
  48. umap/static/umap/js/umap.ui.js +0 -51
  49. umap/static/umap/locale/am_ET.js +242 -227
  50. umap/static/umap/locale/am_ET.json +18 -7
  51. umap/static/umap/locale/ar.js +242 -227
  52. umap/static/umap/locale/ar.json +18 -7
  53. umap/static/umap/locale/ast.js +242 -227
  54. umap/static/umap/locale/ast.json +18 -7
  55. umap/static/umap/locale/bg.js +242 -227
  56. umap/static/umap/locale/bg.json +18 -7
  57. umap/static/umap/locale/br.js +252 -237
  58. umap/static/umap/locale/br.json +22 -11
  59. umap/static/umap/locale/ca.js +242 -227
  60. umap/static/umap/locale/ca.json +18 -7
  61. umap/static/umap/locale/cs_CZ.js +242 -227
  62. umap/static/umap/locale/cs_CZ.json +18 -7
  63. umap/static/umap/locale/da.js +242 -227
  64. umap/static/umap/locale/da.json +18 -7
  65. umap/static/umap/locale/de.js +242 -227
  66. umap/static/umap/locale/de.json +18 -7
  67. umap/static/umap/locale/el.js +242 -227
  68. umap/static/umap/locale/el.json +18 -7
  69. umap/static/umap/locale/en.js +242 -234
  70. umap/static/umap/locale/en.json +19 -8
  71. umap/static/umap/locale/en_US.json +18 -7
  72. umap/static/umap/locale/es.js +242 -227
  73. umap/static/umap/locale/es.json +18 -7
  74. umap/static/umap/locale/et.js +242 -227
  75. umap/static/umap/locale/et.json +18 -7
  76. umap/static/umap/locale/eu.js +227 -199
  77. umap/static/umap/locale/eu.json +1 -1
  78. umap/static/umap/locale/fa_IR.js +242 -227
  79. umap/static/umap/locale/fa_IR.json +18 -7
  80. umap/static/umap/locale/fi.js +242 -227
  81. umap/static/umap/locale/fi.json +18 -7
  82. umap/static/umap/locale/fr.js +242 -234
  83. umap/static/umap/locale/fr.json +18 -7
  84. umap/static/umap/locale/gl.js +242 -227
  85. umap/static/umap/locale/gl.json +18 -7
  86. umap/static/umap/locale/he.js +242 -227
  87. umap/static/umap/locale/he.json +18 -7
  88. umap/static/umap/locale/hr.js +242 -227
  89. umap/static/umap/locale/hr.json +18 -7
  90. umap/static/umap/locale/hu.js +242 -234
  91. umap/static/umap/locale/hu.json +18 -7
  92. umap/static/umap/locale/id.js +242 -227
  93. umap/static/umap/locale/id.json +18 -7
  94. umap/static/umap/locale/is.js +242 -227
  95. umap/static/umap/locale/is.json +18 -7
  96. umap/static/umap/locale/it.js +242 -234
  97. umap/static/umap/locale/it.json +18 -7
  98. umap/static/umap/locale/ja.js +242 -227
  99. umap/static/umap/locale/ja.json +18 -7
  100. umap/static/umap/locale/ko.js +242 -227
  101. umap/static/umap/locale/ko.json +18 -7
  102. umap/static/umap/locale/lt.js +242 -227
  103. umap/static/umap/locale/lt.json +18 -7
  104. umap/static/umap/locale/ms.js +242 -234
  105. umap/static/umap/locale/ms.json +19 -8
  106. umap/static/umap/locale/nl.js +245 -230
  107. umap/static/umap/locale/nl.json +18 -7
  108. umap/static/umap/locale/no.js +242 -227
  109. umap/static/umap/locale/no.json +18 -7
  110. umap/static/umap/locale/pl.js +242 -227
  111. umap/static/umap/locale/pl.json +18 -7
  112. umap/static/umap/locale/pl_PL.json +18 -7
  113. umap/static/umap/locale/pt.js +242 -227
  114. umap/static/umap/locale/pt.json +18 -7
  115. umap/static/umap/locale/pt_BR.js +242 -227
  116. umap/static/umap/locale/pt_BR.json +18 -7
  117. umap/static/umap/locale/pt_PT.js +242 -227
  118. umap/static/umap/locale/pt_PT.json +18 -7
  119. umap/static/umap/locale/ro.js +242 -227
  120. umap/static/umap/locale/ro.json +18 -7
  121. umap/static/umap/locale/ru.js +242 -227
  122. umap/static/umap/locale/ru.json +18 -7
  123. umap/static/umap/locale/si.js +1 -1
  124. umap/static/umap/locale/si.json +1 -1
  125. umap/static/umap/locale/sk_SK.js +242 -227
  126. umap/static/umap/locale/sk_SK.json +18 -7
  127. umap/static/umap/locale/sl.js +242 -227
  128. umap/static/umap/locale/sl.json +18 -7
  129. umap/static/umap/locale/sr.js +242 -227
  130. umap/static/umap/locale/sr.json +18 -7
  131. umap/static/umap/locale/sv.js +242 -227
  132. umap/static/umap/locale/sv.json +18 -7
  133. umap/static/umap/locale/th_TH.js +242 -227
  134. umap/static/umap/locale/th_TH.json +18 -7
  135. umap/static/umap/locale/tr.js +242 -227
  136. umap/static/umap/locale/tr.json +18 -7
  137. umap/static/umap/locale/uk_UA.js +242 -227
  138. umap/static/umap/locale/uk_UA.json +18 -7
  139. umap/static/umap/locale/vi.js +242 -227
  140. umap/static/umap/locale/vi.json +18 -7
  141. umap/static/umap/locale/vi_VN.json +18 -7
  142. umap/static/umap/locale/zh.js +242 -227
  143. umap/static/umap/locale/zh.json +18 -7
  144. umap/static/umap/locale/zh_CN.json +18 -7
  145. umap/static/umap/locale/zh_TW.Big5.json +18 -7
  146. umap/static/umap/locale/zh_TW.js +242 -234
  147. umap/static/umap/locale/zh_TW.json +18 -7
  148. umap/static/umap/map.css +114 -265
  149. umap/static/umap/test/DataLayer.js +463 -0
  150. umap/static/umap/test/Feature.js +0 -226
  151. umap/static/umap/test/TableEditor.js +104 -0
  152. umap/static/umap/test/Util.js +0 -521
  153. umap/static/umap/test/index.html +0 -1
  154. umap/static/umap/unittests/URLs.js +1 -1
  155. umap/static/umap/unittests/utils.js +610 -0
  156. umap/static/umap/vars.css +9 -0
  157. umap/static/umap/vendors/dompurify/purify.es.mjs +1525 -0
  158. umap/static/umap/vendors/iconlayers/iconLayers.js +1 -1
  159. umap/templates/umap/css.html +2 -0
  160. umap/templates/umap/js.html +0 -1
  161. umap/templates/umap/map_detail.html +4 -0
  162. umap/templates/umap/map_table.html +12 -10
  163. umap/templatetags/umap_tags.py +5 -0
  164. umap/tests/integration/conftest.py +12 -1
  165. umap/tests/integration/test_anonymous_owned_map.py +6 -5
  166. umap/tests/integration/test_browser.py +12 -25
  167. umap/tests/integration/test_choropleth.py +1 -1
  168. umap/tests/integration/test_dashboard.py +10 -0
  169. umap/tests/integration/test_datalayer.py +8 -6
  170. umap/tests/integration/test_edit_datalayer.py +24 -19
  171. umap/tests/integration/test_edit_map.py +182 -2
  172. umap/tests/integration/test_edit_marker.py +120 -0
  173. umap/tests/integration/test_edit_polygon.py +122 -0
  174. umap/tests/integration/test_facets_browser.py +104 -14
  175. umap/tests/integration/test_import.py +70 -20
  176. umap/tests/integration/test_map.py +19 -17
  177. umap/tests/integration/test_map_list.py +28 -0
  178. umap/tests/integration/test_owned_map.py +10 -10
  179. umap/tests/integration/test_picto.py +5 -5
  180. umap/tests/integration/test_querystring.py +9 -15
  181. umap/tests/integration/test_slideshow.py +0 -5
  182. umap/tests/integration/test_statics.py +3 -2
  183. umap/tests/integration/test_tableeditor.py +1 -5
  184. umap/tests/integration/test_view_marker.py +64 -0
  185. umap/tests/integration/test_view_polygon.py +59 -0
  186. umap/tests/integration/test_view_polyline.py +51 -0
  187. umap/tests/test_map_views.py +13 -0
  188. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/METADATA +8 -8
  189. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/RECORD +194 -178
  190. umap/static/umap/vendors/dompurify/purify.min.js +0 -3
  191. umap/static/umap/vendors/dompurify/purify.min.js.map +0 -1
  192. /umap/tests/integration/{test_polygon.py → test_draw_polygon.py} +0 -0
  193. /umap/tests/integration/{test_polyline.py → test_draw_polyline.py} +0 -0
  194. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/WHEEL +0 -0
  195. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/entry_points.txt +0 -0
  196. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/licenses/LICENSE +0 -0
@@ -1,14 +1,14 @@
1
- umap/__init__.py,sha256=quW0BmC9Yqv06BNR-W3csWrRaFrAXIft7Gu-vCG69z0,18
1
+ umap/__init__.py,sha256=JaTZmXfdCKLjJotsK8E6Prqe0GlcK3g7f--kat5KbN0,20
2
2
  umap/admin.py,sha256=gL6zrexmDbIKIqOKHCuAM5wtqr8FIQkRtjbcXcNyBrs,749
3
3
  umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
4
4
  umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
5
- umap/context_processors.py,sha256=HhRfnUElWwWCMk9vtXkyR3fpPcpagSpvRpqh8jYL8Lk,448
5
+ umap/context_processors.py,sha256=DhBi0zspPjiULRqrcY7zWk_5AE_9qL4ZrFO_cPtwPgc,489
6
6
  umap/decorators.py,sha256=ocbT65HKHy6rB8zVvuJfSYWbI7-se8wuvcuFQr-34n0,2004
7
7
  umap/fields.py,sha256=c32tKWKF8aThrCXDJblwo0n9n2ET6hxBYzEupfr0B4o,900
8
8
  umap/forms.py,sha256=bpNLMSsB1sHUcaf24MmUpwVdEz_SHy_ohfhQMoKwDzI,3128
9
9
  umap/managers.py,sha256=-lBK0xYFRDfX76qDRdLnZOA8jEPYseEwIj8QOiHVM4w,243
10
10
  umap/middleware.py,sha256=p8EPW_gYW8Wh2lk0DNIAkZQbYlBZugW7Yq4iiA7L4aE,514
11
- umap/models.py,sha256=HZjDiK46y6D6ZRzKlqqJMBmv20a6M_pn_W6ubYDTrG0,17583
11
+ umap/models.py,sha256=vzm5lRd-juy3WP-CHW5glU2drQi9LU-anS2IOzgUEFU,17488
12
12
  umap/storage.py,sha256=bdjjdn768fZJYsyDNBxgwLvSu6rhde_Cc6yzyZZDmSg,2282
13
13
  umap/urls.py,sha256=frMCdfDQ2QB39xxqI8I12EeT-yChn5KDwDp-kQxp930,6876
14
14
  umap/utils.py,sha256=19i8ibi-1IXxafT4k_yOHMhD-DsPH74Ll9qw-UrUkM4,5856
@@ -23,7 +23,7 @@ umap/locale/ast/LC_MESSAGES/django.mo,sha256=KUDcu-q8RC_ZdxpQ6I_9cXxfA4X7sCrHddB
23
23
  umap/locale/ast/LC_MESSAGES/django.po,sha256=cb9rEL6AdZKMwXrjEDThG2Wok-fHLTdWlRReg6DUdMA,8007
24
24
  umap/locale/bg/LC_MESSAGES/django.mo,sha256=YisH_thI9rdxn7wmQ5tEHComNK7TmLxP4fcDk1QGqf4,5921
25
25
  umap/locale/bg/LC_MESSAGES/django.po,sha256=nlyZIP-psj_Jqafk4E6rO5-pEMMO_awNxYoANRXPHQA,13713
26
- umap/locale/br/LC_MESSAGES/django.mo,sha256=yMuZQojNDzsoPh0xpvJCdn1IuVzD0UtoPbpkiWBz4QE,8707
26
+ umap/locale/br/LC_MESSAGES/django.mo,sha256=6KrmnQh6oYmLucVs6ThT88--0gY9es8K7GCHA1tqpO0,9529
27
27
  umap/locale/br/LC_MESSAGES/django.po,sha256=qygsPR_EYl2JrDuCx8p0b0IHV7l99BDyAYKPDQ_Q3WY,14711
28
28
  umap/locale/ca/LC_MESSAGES/django.mo,sha256=1R7hKhSAkV1LM2HQ4lc54I9YwhGb_D8JddncpxK8Umg,7512
29
29
  umap/locale/ca/LC_MESSAGES/django.po,sha256=P5vksWA9RkuW5Xf3h9NyGQqanSNJh5c6yH5PAV4p380,13707
@@ -36,7 +36,7 @@ umap/locale/de/LC_MESSAGES/django.po,sha256=vkpO7hxsY8C6tGyHNBMgfWRKwNxGs-IZ_BFs
36
36
  umap/locale/el/LC_MESSAGES/django.mo,sha256=sQhmIyKMdxrBssH9Yu7pt3QjvYEtvqxk0_BiarpCKaI,12429
37
37
  umap/locale/el/LC_MESSAGES/django.po,sha256=yI6iHoWce4H3reQNrbrE2cQFCZ8d1zlMP2y9iGA_8TM,17815
38
38
  umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
39
- umap/locale/en/LC_MESSAGES/django.po,sha256=D9GmEm1jBaKyYk6S5eUR3oBtw0TyscH6dsYwbODxd3M,10790
39
+ umap/locale/en/LC_MESSAGES/django.po,sha256=p8Tg5mwqZ7s2hkByQXfnwy_VLcsxLGMyojQiQqIZ-QQ,10776
40
40
  umap/locale/es/LC_MESSAGES/django.mo,sha256=JmXqbBXhl11fQCibH1MHU64AFsCp_pEbv8AiA94zL08,9034
41
41
  umap/locale/es/LC_MESSAGES/django.po,sha256=JqoNWltQ-vJNgunikXgRcuy90O7t8zROQ5NPlc8rYN4,14596
42
42
  umap/locale/et/LC_MESSAGES/django.mo,sha256=vGMEot_LXQAQPvJESjgOFeyOgzEzYWYKP0HXQEDRDW4,5195
@@ -55,13 +55,13 @@ umap/locale/he/LC_MESSAGES/django.mo,sha256=HsIucdlws4u7UHqBWx6x3Rgbz7H37MQS0iMj
55
55
  umap/locale/he/LC_MESSAGES/django.po,sha256=EWdmr83WCPXUHKgfqsvgK1ZOVt-qZJmQuv6tGom8M4A,13820
56
56
  umap/locale/hr/LC_MESSAGES/django.mo,sha256=bBcaNSs-oqm_cjm6Bbqaph_ZNHF2_I_FP0xccwU9txI,1558
57
57
  umap/locale/hr/LC_MESSAGES/django.po,sha256=Aj3m28Ugyjq-Ih32P7dzw0M4czitDqoYpCvyNsNnEnE,9742
58
- umap/locale/hu/LC_MESSAGES/django.mo,sha256=5Sgl3mI9651nDWdsd3WoKFREdFd0kTHbIAWCnlMNv34,10460
58
+ umap/locale/hu/LC_MESSAGES/django.mo,sha256=GNwKUjWvkLCpIMe44qV2v3Xzy63lNMXEfAxwncGpTlM,10551
59
59
  umap/locale/hu/LC_MESSAGES/django.po,sha256=Rxztnol_ufMta9xiC_ZqeRAXPtuBMVwAdV1beihQCek,15164
60
60
  umap/locale/id/LC_MESSAGES/django.mo,sha256=8craaGVnVbONfojnkDUUtoxMyeI2tt6GdIWeWZGcaJ8,425
61
61
  umap/locale/id/LC_MESSAGES/django.po,sha256=wmbgIN1R7vRDgAdzBu7ZHnTpg5fpB3hmJyjAzRNoN-M,8000
62
62
  umap/locale/is/LC_MESSAGES/django.mo,sha256=8Iufls8l_zQFsOYxrfuUig6Ndm2qtmZiBRDs2TlM8tI,6579
63
63
  umap/locale/is/LC_MESSAGES/django.po,sha256=tkEdFtLUQlSwn7AcpKrHJEpw__HNEHkJzqABkVk4pUk,13438
64
- umap/locale/it/LC_MESSAGES/django.mo,sha256=xJ0oc0hX21aUHPkR_8fmG8h9fH9cVL2WRcGZ7oKvhvE,10053
64
+ umap/locale/it/LC_MESSAGES/django.mo,sha256=bFSw9toYP6AwZTATVKOr79Qg5E4pkEGNrlRE70vrusc,10137
65
65
  umap/locale/it/LC_MESSAGES/django.po,sha256=F-jYT2dKOJM1TaH5DK7cQPLK7swxSlPzuZ76_cue2hE,15266
66
66
  umap/locale/ja/LC_MESSAGES/django.mo,sha256=aul0MIkp-B49WhZofKy7_gi9wqFe_Cq3Vrq7kU_z6DA,6636
67
67
  umap/locale/ja/LC_MESSAGES/django.po,sha256=YjBmabk41z6CCvwAuPhyprUYJLXKsJoCp5_njUyVIm0,13543
@@ -69,7 +69,7 @@ umap/locale/ko/LC_MESSAGES/django.mo,sha256=os9Vo9pdSyMVWMN3ToDdu19-VwM1PJtPlPG2
69
69
  umap/locale/ko/LC_MESSAGES/django.po,sha256=HBqpxmWXtrOBmjYIaPnNJmFX3QfNtvGLjl0bNZj1seA,13453
70
70
  umap/locale/lt/LC_MESSAGES/django.mo,sha256=cA9gb9IAjuYBVh9QIKuniMpDr8CmgMt_cUP99W5it5s,5922
71
71
  umap/locale/lt/LC_MESSAGES/django.po,sha256=adw4Q98CDmXZht37z7lvMTI3tzGHjHxKhbEZ3N5x_y8,13113
72
- umap/locale/ms/LC_MESSAGES/django.mo,sha256=88GIQO91aWcTDt7CK4f5ea6IR8KOLR23K6AVOAvE7eY,9874
72
+ umap/locale/ms/LC_MESSAGES/django.mo,sha256=Y3ZwA7seXuTJhxuiNMueneLo3z23X8lJnFVohymvpzo,9966
73
73
  umap/locale/ms/LC_MESSAGES/django.po,sha256=dGDEpdNNFSMcTwAOTuEbberEGqIyAT28KbYsA8gq8Nk,14661
74
74
  umap/locale/nl/LC_MESSAGES/django.mo,sha256=CWIG-7Vc6EO-4L0oy35wuaNEQSkrOoKpbkrvUq6iMAA,6056
75
75
  umap/locale/nl/LC_MESSAGES/django.po,sha256=SMjyxF10q7p6AumNtnHRfdI1nP-4-_EKlbTCl8ZjhMM,13009
@@ -133,23 +133,27 @@ umap/migrations/0016_pictogram_category.py,sha256=xSNApTToAXVzYSH28ZVqfZq8q0ODSI
133
133
  umap/migrations/0017_migrate_to_openstreetmap_oauth2.py,sha256=b8VTzVGK_PJCHfTsc8o8HlGiwzjklcziYKIuoZzFwYE,393
134
134
  umap/migrations/0018_datalayer_uuid.py,sha256=HukF-EgWp4BlgZyK5hWAYhCkitHxACSgDEMfFWW0CUk,1927
135
135
  umap/migrations/0019_migrate_internal_remote_datalayers.py,sha256=NZOhTwX3UJykn2MZ5x_pcSw2_gULI3Yc9TGwsZt741Q,1601
136
+ umap/migrations/0020_alter_tilelayer_url_template.py,sha256=e6DC3PNSiyyCAwS64D8d4BZiiQa3bCuyoi230L3SPH4,486
137
+ umap/migrations/0021_remove_map_description.py,sha256=C1-pTJ1loj_aZPIbdbPRIHQayarlkbUbfW6bj_vnKGA,336
136
138
  umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
139
  umap/settings/__init__.py,sha256=xxt2Nq7a3xjGTvn1f1hEBV8xErNu0XJ-qP_S21uWzpQ,1597
138
- umap/settings/base.py,sha256=rtulVGGfqaBJoZMvXeu9QrkOg-g3QhkXYTmgSEPjSOM,9844
140
+ umap/settings/base.py,sha256=CREsol-R6r8rI6t-0BL6rNhDdR0fPZew01HFPXBI2Ds,9924
139
141
  umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
140
142
  umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
141
143
  umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
- umap/static/umap/base.css,sha256=YQtsvzIJJe9O8F34z9lev3vIGM-JwM9lZcvMJGYqzDI,21590
144
+ umap/static/umap/base.css,sha256=IQeOGKbnXO5nl5w-K7sAZUQ16iMbhtaLmesuFyFKitc,18481
143
145
  umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr8,9125
144
- umap/static/umap/content.css,sha256=PxavrwRn3prdgXnnMavSp_5bEfuokje_27Lzyu2NwHs,11688
146
+ umap/static/umap/content.css,sha256=pXtVn8r0EStDr7h9Cw5HKRtcFroBIIoffFqk16SB6Xw,11402
145
147
  umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
146
148
  umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
147
- umap/static/umap/map.css,sha256=Eu_GZWKKJ9chCTSZ62fCMcfEQgEq2YKBnke6tj6OvT8,42997
149
+ umap/static/umap/map.css,sha256=XEDWc1dvKhFn5ltUFPpRAIDE0HRSs3HBe9Mt5EYyIZE,39327
148
150
  umap/static/umap/nav.css,sha256=vU41w3awlBtsB4XCRJOtVVy9-VN7rua1nJsay61ST_0,1574
149
151
  umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
150
152
  umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
151
153
  umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
152
- umap/static/umap/vars.css,sha256=TT0jijfYX3NWbTLvy1tPBZ-2eblwHw0g_Bt7085qqZQ,387
154
+ umap/static/umap/vars.css,sha256=AYxw4HHJubB0A8Ns_3LFRQiDgZyKqJzgDT76gvWWFzM,606
155
+ umap/static/umap/css/icon.css,sha256=zUUTI_vWOEMXqbykwq-3E6RyXlLko40SL4153AfxRkg,2198
156
+ umap/static/umap/css/panel.css,sha256=DYaSN_RCRiWYtK_FkS0fVEXYrr0bezcFTb_aZwM3Hzk,3283
153
157
  umap/static/umap/favicons/apple-touch-icon.png,sha256=xjhkAIZwNywTApzAgnwSvagpcm252katIaVnHIIC_LE,2776
154
158
  umap/static/umap/favicons/favicon.ico,sha256=0jjg1MnZ2AdWFLKjEwZSf09TVXlqz6oNdtX4rRppHdA,15086
155
159
  umap/static/umap/favicons/icon-192.png,sha256=saYoRLAaZNkHHntkmldXiptk9FEcaGWDO3N6HpYyw8w,2987
@@ -161,10 +165,10 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
161
165
  umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
162
166
  umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
163
167
  umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
164
- umap/static/umap/img/16-white.svg,sha256=zOp7SOTF5N0UixoriN-YPHcUWJ8oVTsptENVvCwEWR8,35034
165
- umap/static/umap/img/16.svg,sha256=aWuJ2C7pahh1KPV8Q8ZQnCFFlrbvDfcmP4PTldvcNi8,21424
166
- umap/static/umap/img/24-white.svg,sha256=tq2MLPvVKz4h4dHCmMp1-_brBmudqyCcMcSShhnDh24,17550
167
- umap/static/umap/img/24.svg,sha256=jpi6lDVbN89-zyH3VwNf0pOKzjOfuF9l9yPV-NpE1cI,25175
168
+ umap/static/umap/img/16-white.svg,sha256=qvCWtxEyFGjinV6Zm6SYczI3FYDG2ar-SoLCke329Qo,35880
169
+ umap/static/umap/img/16.svg,sha256=l0dWn8Cmzba-oA28X4LvENwNwV45gr5S-is-nWOOD8o,23069
170
+ umap/static/umap/img/24-white.svg,sha256=PE1gVqezV0mTFmYwmaG2r1n_HODeADkZNd-9Wb5gOCo,17592
171
+ umap/static/umap/img/24.svg,sha256=rEsLjRM1Unxqi_Lw9kc6Npy86jk5wbhWS8ZkVfM_GR0,24881
168
172
  umap/static/umap/img/edit.svg,sha256=I3YHkH3X6CQP0TkoKev-9yQD-DeKobDl6MN-bAH2ghs,554
169
173
  umap/static/umap/img/icon-bg.png,sha256=EeliGSnA81n2CBPKELxRjCodV5Xyqy9yLaoacWNZkdQ,190
170
174
  umap/static/umap/img/icon-delete.svg,sha256=ORwww_L88Co87ImlpKw4hj1DYG8KMbj2l5q6lxToRNg,386
@@ -181,150 +185,156 @@ umap/static/umap/img/marker.svg,sha256=xR0PuBxGt9sRlLXbvllNT952Wx1iapyrZpsyJiWY-
181
185
  umap/static/umap/img/opensource.svg,sha256=DLoPUwQivWNDY0DsKLsL0CK4a6x30ao0YXuUJN-HzYI,473
182
186
  umap/static/umap/img/osm.svg,sha256=Owz6LQS8mm5ySW0XqnpyXf0WZx7pthz2GLzqwk5cuBA,1997
183
187
  umap/static/umap/img/search.gif,sha256=Ws7V8knHJGdxG5_12zfPoBweX6PjOjHzrzYY4eyAY-4,1472
184
- umap/static/umap/img/source/16-white.svg,sha256=sZQhsA8bf5EyxjxksJMtlmx8pyYbI-OZiFiFX4xSuj4,73381
185
- umap/static/umap/img/source/16.svg,sha256=OHwbeoiEMXfGLSzCauzOdBEkNzCr_sC4sNB1sTn5JJ0,43293
186
- umap/static/umap/img/source/24-white.svg,sha256=31n0rwyxcoJ69Mm2hvSAifQV0x00px0z-Jkf__UetnA,29369
187
- umap/static/umap/img/source/24.svg,sha256=rocP2xyMQdigy8noiipCM8hJNOc9tvF4uoXUPFBAjxY,38901
188
+ umap/static/umap/img/source/16-white.svg,sha256=MS_S0U-3bjOlo4hKslp-cPdbBOlUtWC4JlSH7Os1FpY,68449
189
+ umap/static/umap/img/source/16.svg,sha256=iGpWSmNqLIddgToMXby2b4EBBMCtW1ezUfOWGF26KIw,45350
190
+ umap/static/umap/img/source/24-white.svg,sha256=KUkQwOG-ut88Ev5QJKNCXx8DWdPxskIRuxxvY_jL0NA,29405
191
+ umap/static/umap/img/source/24.svg,sha256=YMuMON2fI9PzkG-QMmT0XqoDDGhPEmbE1jMJUBfpOLI,38713
188
192
  umap/static/umap/js/umap.autocomplete.js,sha256=h3Ap9towVTChGSSZaMCrhWjQUPCrGcvW6fD46dD3pTs,7740
189
- umap/static/umap/js/umap.controls.js,sha256=1LWARSx_CzxOAfMoyg8FfwW5vOV8xKKPoWoWgATnChU,44898
190
- umap/static/umap/js/umap.core.js,sha256=aiTfkNI8Z13OiblpYEis6YrRNOObhVn70uikgBkkCIc,26116
191
- umap/static/umap/js/umap.datalayer.permissions.js,sha256=kpGb7sZKdcSj0QhmGZ56LFtubysc68S48e3YzeXQNNs,1947
192
- umap/static/umap/js/umap.features.js,sha256=iMsmunpxNWFITEzVFBm3lqI5r1fuFHMod-6JWf-gMxs,34680
193
- umap/static/umap/js/umap.forms.js,sha256=KOtUkqVA7rmwi7O5PPqj_t3QusCqkRRbEbc2lcIENY0,26940
194
- umap/static/umap/js/umap.icon.js,sha256=woRRVru2jSOl0Ah5DAl2vZCTg3rsPeNSoTt57IIcUOg,7546
195
- umap/static/umap/js/umap.importer.js,sha256=1tNOyFguvH4Q9f2WBvmndVYJa-9wocKqrCaDxmpT4a0,5375
196
- umap/static/umap/js/umap.js,sha256=XbabOc0tBc2sNujYg7IntXwFENuiH-VBZCALs_n15D4,55572
197
- umap/static/umap/js/umap.layer.js,sha256=ZRdb90lR8fvp4Kq07qWGla6eZAA8SeTfiCKOt_CvSIg,47538
198
- umap/static/umap/js/umap.permissions.js,sha256=d7M3aoQ4QliSD7lFnCWgoUN4pHax1-6JnerH8BjvubY,6097
199
- umap/static/umap/js/umap.popup.js,sha256=jZzwRbH3iIJlq35XiZa5Ugnw3KkplWckEgJmW7CAOWY,10108
200
- umap/static/umap/js/umap.share.js,sha256=36IjZW9Gd_b-1OMD95-hJaKc2etPazILCDNS4iZJqCA,7774
193
+ umap/static/umap/js/umap.controls.js,sha256=rcbcttVmV0Ys_T3YHpD0H_n2cCHj6lxZ2FvG_BqC8Ns,39832
194
+ umap/static/umap/js/umap.core.js,sha256=F1-6aFNeXqaO5oM-Z6GMuKSBUYro2g8RxbWsAI35AKw,17500
195
+ umap/static/umap/js/umap.datalayer.permissions.js,sha256=_wqTme7S7AvMOXSWecLm_iJBCV65V_KUH9ABKJg1H-8,1948
196
+ umap/static/umap/js/umap.features.js,sha256=zfl85UAg2rSfP9f6VHl-MD0n2CIcsSIqK9-xOoR9Va4,35291
197
+ umap/static/umap/js/umap.forms.js,sha256=A7sZqMRUzTS_KMfUC42LHdj08qw86YaGgFkXaptN5fg,29174
198
+ umap/static/umap/js/umap.icon.js,sha256=8dzfEN5fgP2jXYTbN6B-xjrB94A6nXHCXO2RKoTC0S0,7594
199
+ umap/static/umap/js/umap.importer.js,sha256=iFAQmcPcBYjfbz1lnZx1ZUDlZsIHprn5kriXQuY555M,5458
200
+ umap/static/umap/js/umap.js,sha256=dtm_emXCWoGZyvJ7umnU_BIhZcRYKmtr6gAmDLlrdM0,56441
201
+ umap/static/umap/js/umap.layer.js,sha256=gzJZOQm32dypdMxfLgkPLyyflZN0Pz4KJt5fZWuZ1PQ,48594
202
+ umap/static/umap/js/umap.permissions.js,sha256=6bU_OnxrmqRpN7ovfP6sy84lVBW9fyffPPHtNGSUT1Y,6063
203
+ umap/static/umap/js/umap.popup.js,sha256=znH_V6xd4nVy4Y5wV2LafSnLavJYtRA7mn9PsliZeM0,9633
204
+ umap/static/umap/js/umap.share.js,sha256=lEsX97JtCUlq_W2eMlv-MROQ3V2ti2Rxb-C8AnpiwHU,7764
201
205
  umap/static/umap/js/umap.slideshow.js,sha256=xRhNvtQJEYtyiif38KLEyquPn_L50Ga3zkD7j4V23aQ,4398
202
- umap/static/umap/js/umap.tableeditor.js,sha256=GP5fYBTRAw7hLVB_k2H2KvECOBU6DLQF-MIZhsY3UAo,4075
203
- umap/static/umap/js/umap.ui.js,sha256=xHj0owBiDTgahLsj6fKq3ur0JgNwJFu9BtT4uzbDQag,7699
206
+ umap/static/umap/js/umap.tableeditor.js,sha256=eZucKKD_KwlVEcIBVyAUxK1H_hiTk3t6RP0r-6Qn2DY,3934
207
+ umap/static/umap/js/umap.ui.js,sha256=t8QWVteS0b4WaotK3AbG91robjt8nh3T1fzkxNy5aKw,5986
204
208
  umap/static/umap/js/components/fragment.js,sha256=2zFkX4A0iVeebZJawmveEMKMXQyYmBuY67rbZUPo-Fs,341
205
- umap/static/umap/js/modules/browser.js,sha256=-RPyTmnd8_d9FhkmL4wP3DlQHkaoA9QIAdkCwoEptpA,5477
206
- umap/static/umap/js/modules/global.js,sha256=tp8tCmAqKlSVNPi7w3n9wiMTb5Wh-DVh_XedZz_Lo60,454
207
- umap/static/umap/js/modules/i18n.js,sha256=5EmqVuxda24BvXPZb8uOXNc21vHs7Rx8RF9fVZsnTR8,1207
209
+ umap/static/umap/js/modules/browser.js,sha256=HmItvDrra20R9zGMVk5ZiLR1toSR1cTEjOBENBBEi_M,5893
210
+ umap/static/umap/js/modules/dompurify.js,sha256=KszkEmBlua9zMXQ0XSytpGJTm7dU6V7ishF1VSyRwTA,340
211
+ umap/static/umap/js/modules/facets.js,sha256=wVR8YfTgNzAsN8QVo8qo7gzUIDCLMfcfIllFL8CsVcU,4079
212
+ umap/static/umap/js/modules/global.js,sha256=xmgPwJ5bZg7HYFe3P2eGdF9AOQ2vj1L7S8AdMq4tUPc,643
213
+ umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
208
214
  umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
209
- umap/static/umap/js/modules/request.js,sha256=v10pLYqFcKeQeMTcjC1Vm9wlp5ehRFKQ65HfT7VrYLY,4007
210
- umap/static/umap/js/modules/schema.js,sha256=vP60-MU4rRowRrRQzWRQbT9vu4Klrp5sRTAy_ZgYyxQ,8926
211
- umap/static/umap/js/modules/urls.js,sha256=isqV_dslYuNQIErzf5Wgq-oZqORRK4as6e78sfQgaUo,1308
212
- umap/static/umap/js/modules/utils.js,sha256=sjCXiF3fb86evhDDJBDSRHjXTYTcKtjeC7SoNpFl680,558
213
- umap/static/umap/locale/am_ET.js,sha256=R2dGebdXkPi_3vzW3U40Zjy5Ana-m6oyTino4HNMAqM,29438
214
- umap/static/umap/locale/am_ET.json,sha256=FAeJw-0Nt0v44WZbe-m0YHs5fxxv0TDQGfeAAkqyFHs,29174
215
- umap/static/umap/locale/ar.js,sha256=0D0cJse2maPMVyopcm61ukZWRyuJIEL98ksy7pFfj3g,25652
216
- umap/static/umap/locale/ar.json,sha256=mvh_BZ5Tx9SQlsX9u5ny9Y4pKgvOCNnMLm27zH8uiT8,25404
217
- umap/static/umap/locale/ast.js,sha256=V5WwvlePQkSUvdymO1bYukMnJ1IdDDrrD0wmcn_vk-M,25205
218
- umap/static/umap/locale/ast.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
219
- umap/static/umap/locale/bg.js,sha256=sJWZLRHAuLh_rF86Nn5Vy9A-YGA7rQ_05ESOR5MOraE,28526
220
- umap/static/umap/locale/bg.json,sha256=_74XZ1wE2xge9OYHpdHHNY0KiVtje58zpGwGI5Qw6VY,28218
221
- umap/static/umap/locale/br.js,sha256=fHb5s_xD4nwtiIFohwxOdlYmwzk9_qGHm48ieJkn2DY,26641
222
- umap/static/umap/locale/br.json,sha256=hKG8CeUaHPHHahIYjaG18C6QPAC3AJyZMwAhCaZW3M0,26494
223
- umap/static/umap/locale/ca.js,sha256=F6E1BZVeyKZoVYDpaGZGJm_cJRx9d5SKwkyoTnXEZDo,26165
224
- umap/static/umap/locale/ca.json,sha256=CFIqPaIdJ74jSCK9WAt8G2rFg3xLyMtA0RLJ7XjLLyA,25871
225
- umap/static/umap/locale/cs_CZ.js,sha256=8p4aHku0L8UexAAIxe59m-GM_NMPkeEdsfZ1L5lpgII,27351
226
- umap/static/umap/locale/cs_CZ.json,sha256=VnLNA9EGT9vheBBEdwA92kN4yfHQD9lRWzw10RU55YA,27022
227
- umap/static/umap/locale/da.js,sha256=G-9tV7CvP9BG9Nvj42dRiMk5We_31VytoW8b5WkxHbA,25551
228
- umap/static/umap/locale/da.json,sha256=BUGdBaNro91txQwp3GA2Kz2G7j72xCKYadUaWD2uPV4,25311
229
- umap/static/umap/locale/de.js,sha256=WEaOHb7VkbdKZz-EHTqGqqaAU2k2z71Kl1Ua__iOnig,27402
230
- umap/static/umap/locale/de.json,sha256=cZZGVzS3_MyEdj6l8lcBhXlZJAPiQiSOR5w9xR1o-vI,27114
231
- umap/static/umap/locale/el.js,sha256=DXRcmeIJwqcTl4LcvzkRjR8Cdy7N9raadJnPw7yZIjc,37100
232
- umap/static/umap/locale/el.json,sha256=dDDPh-md8Oqu3Lp-Dqzy3X3j0TvPS0-5liRpTltxvMc,36620
233
- umap/static/umap/locale/en.js,sha256=rRomN53Qe340ZyCG4RhrOA1ruWxbJyye-bRHGsF_-gU,25541
234
- umap/static/umap/locale/en.json,sha256=5Nd3kMsFRFOfzUa-hlQg6SQGk0w3rjrna0aGjHbzlCU,24955
235
- umap/static/umap/locale/en_US.json,sha256=xH78ShS9hu3lzvkxNFXj5qx2aoEPAIY37OskYy5u9_U,24683
236
- umap/static/umap/locale/es.js,sha256=qQ7B2hoW6HKrli79N6L9WPflGGl3CTV4v-RifXIB8ic,27697
237
- umap/static/umap/locale/es.json,sha256=_yQgQB7q6UFOVtSEIzcus71PGpc8BKUmjbKWdIXNFsM,27361
238
- umap/static/umap/locale/et.js,sha256=2eBK_7KST4Rqr9ThuiFlKSLJ7d1cbE9-rMsKXf4PdHI,25406
239
- umap/static/umap/locale/et.json,sha256=gBGLZ5A1aNoR5g4SwOxW-mfyne4ZQZrEbP1wmGNgoZo,25160
240
- umap/static/umap/locale/eu.js,sha256=NZYhxkWnzd5Kx14p5nSpNt9wNOsQvTGGrYrrxQ321Vs,24242
241
- umap/static/umap/locale/eu.json,sha256=YDyhJQajJOZPDZyKmt-UzISm15skFbLKKyv28d_nWTQ,24997
242
- umap/static/umap/locale/fa_IR.js,sha256=wq38Vjc5Gh5TieJ4WBY25q7F-UfqouQ5_9v_-tKZk6k,31737
243
- umap/static/umap/locale/fa_IR.json,sha256=X2tuw3MbZXmIvlbZrsOcbhUNtKqs6A3FWw2kNaahulU,31454
244
- umap/static/umap/locale/fi.js,sha256=mI8uosJq5dP5PRnP619y9n_DxEMz6GX8vumeX1wMhaE,26143
245
- umap/static/umap/locale/fi.json,sha256=fOfdlDIEspEM0g9YDDvNK3ULr-X_7Az0BzOGs8tvjk4,25900
246
- umap/static/umap/locale/fr.js,sha256=bHl3tqbu4SlgGK3RUgaDZ2XZbDs6etF-K9QjTFQOo_E,27867
247
- umap/static/umap/locale/fr.json,sha256=E4Tl_-99a0zA-9-tNjeaXl3jZ8EBFbSaST9c4rcFMH0,27238
248
- umap/static/umap/locale/gl.js,sha256=ZNlvs7owimN92VIZKkH4kmw7ZJg6HbMBIpgUyboKAlY,26740
249
- umap/static/umap/locale/gl.json,sha256=YaS7IIBB8Zrtpqwa4IYt6XqXN3ZBJJes6q4qcCwL7Xk,26477
250
- umap/static/umap/locale/he.js,sha256=u3L4N4j7J5RtsPfyzwPeYAP2SOnJ8A45uwcf5xelCz4,28978
251
- umap/static/umap/locale/he.json,sha256=d_sVS9j5jEsel27ALqXaXwDYGCev4eKoR_x3wIUiuTU,28705
252
- umap/static/umap/locale/hr.js,sha256=jilQQ05T1V7co7oV1lBBwQtqM6LBd12YyOaZllwKT8A,25374
253
- umap/static/umap/locale/hr.json,sha256=HobNY7AcW7XbYbKwyqSQfskEUAp_LUzeEZzRuO9Cfnk,25123
254
- umap/static/umap/locale/hu.js,sha256=m7yVzgOUAkkv_Btj-JHCfjbSynbixG9RhSNDlEtiulI,29219
255
- umap/static/umap/locale/hu.json,sha256=-HbsptPL3eeKmtZ5aoas5f6eFflQ9rWnhQuXRf-06vA,28495
256
- umap/static/umap/locale/id.js,sha256=UwzRW3fspX3vZChWNpjPl5HSfsjaDYu_FJsgMkbJUkk,25203
257
- umap/static/umap/locale/id.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
258
- umap/static/umap/locale/is.js,sha256=7-VEx4F0KKFdzKHJ0B8eoAShgVVsjHFHn0WGw0C84I4,26617
259
- umap/static/umap/locale/is.json,sha256=f5y3JrUS23A8qT0sHInX1Ww37a3R4U6dMxP20vJu6GE,26366
260
- umap/static/umap/locale/it.js,sha256=-4mQd1LF8UrZeDG1swHsUI5r54I0aqj_Kk5aReVp1eg,28155
261
- umap/static/umap/locale/it.json,sha256=Zw8FTpMk4pc_oNfhu6bfFZwsK6Mwcmx8EcdCfBuFNOI,27503
262
- umap/static/umap/locale/ja.js,sha256=CBsGd76-rbyFvPXI1de-bWDYm5UXYaVRZ6f7bmHjzUE,27965
263
- umap/static/umap/locale/ja.json,sha256=EAo1B18lw9bC0SLpv2ZA_KKsFRmKCRbZreTLnHGJuOU,27714
264
- umap/static/umap/locale/ko.js,sha256=-Yg9efr5w5qkMA1DADUMzJsgwz-3Q5qNZ9IXn96i0lk,25401
265
- umap/static/umap/locale/ko.json,sha256=T7NBtIHUYfzfSOfeYhureXdnTg-QKJl35RZT6cSUEzc,25147
266
- umap/static/umap/locale/lt.js,sha256=XvsY46ZBA4JzLedS23QeKmlD7TFc6lBuPpRKpwVN--E,26089
267
- umap/static/umap/locale/lt.json,sha256=XIqRe8me0SFPiq9ReTPBW_eYtG1WcG4kd8TUBIVZ4kk,25840
268
- umap/static/umap/locale/ms.js,sha256=QgCnrQMnMvwElkR9Kiz9EmW6dLci8wnSvTmanjVYCr0,26887
269
- umap/static/umap/locale/ms.json,sha256=OhaTlnDNXZero7HzbeEQJPLZjrIieL372RyR4NuouPw,26234
270
- umap/static/umap/locale/nl.js,sha256=R-quA21bvjq5eqR1w9u3AoRvHqXFa_tZWJt8KIMuAhk,26569
271
- umap/static/umap/locale/nl.json,sha256=wv-sCa0y0SUHJSo6n2Ypd2q_6cNWoRmvPMlqpJ0uc-I,26809
272
- umap/static/umap/locale/no.js,sha256=-Dg-4LTQgSGrPnfP1bUwQBWZbdoKz4KnEyLu7Yg40-M,25434
273
- umap/static/umap/locale/no.json,sha256=6cNwOM-QDsrrJfxjNKkx_quFRXovTUW7iR5tMeEXD7U,25174
274
- umap/static/umap/locale/pl.js,sha256=GowzfcPXHVAmx9vHqVoht9BGTCGpd-8LbjmRcS1UIoQ,26785
275
- umap/static/umap/locale/pl.json,sha256=CrLdiyPO6b1NjzKM244_AWjgNCpiW2QDMnxNYNLF6OA,26536
276
- umap/static/umap/locale/pl_PL.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
277
- umap/static/umap/locale/pt.js,sha256=V0LaTvnRYj1LZfteaq5Yh0_URQxNghLPjFWl8PLk8CA,26710
278
- umap/static/umap/locale/pt.json,sha256=cawNkpM20Lju4ESf02qAMFRF5KKia8VXP8ymrZ0h2EQ,26455
279
- umap/static/umap/locale/pt_BR.js,sha256=9KoAKP-GT5_WEUP3_nKrQkty9U_Kxp18zXIHCx0mQV4,26704
280
- umap/static/umap/locale/pt_BR.json,sha256=NSFmlgcpZM7txD-aJ7j8EmhR6aaPjdAGkhz1VDTHaRo,26443
281
- umap/static/umap/locale/pt_PT.js,sha256=8g9JZuXVxR-lnTEdxKJgqqQxWkSOtw2x7H-3pnERM4Y,26716
282
- umap/static/umap/locale/pt_PT.json,sha256=XO38XfaaEL0LmPC6DlZf0OYa6J_qyly_sx4vDdE6Hns,26455
283
- umap/static/umap/locale/ro.js,sha256=r1eT8-Ba-_jXbE-ZoIueAscTpv4NyZ9LW5uU3vwNLb8,25240
284
- umap/static/umap/locale/ro.json,sha256=UtHbK6tQETxV33H90lr8IosBdFFlq1zDo7IzX7bzEco,24989
285
- umap/static/umap/locale/ru.js,sha256=2CXoohBqIX7nAvfuNsG3LT0uvrYH605YOBoV-vy1KLM,33059
286
- umap/static/umap/locale/ru.json,sha256=lkZBJZ1BSglqKk6eI3yM5Ga17qBU0_6pm-7wYidTzfM,32775
287
- umap/static/umap/locale/si.js,sha256=_Wa9_18OzdnqGUvqbq0PDKC0pTGH6FhAw0vEZrkoxEQ,25799
288
- umap/static/umap/locale/si.json,sha256=nXKIS9TV2eY76aWr5ylKIXQHaTzikUu8i4qmSV7SnJQ,25734
289
- umap/static/umap/locale/sk_SK.js,sha256=zQWat-2j6ojtCS_y41bXJ7c0J7PFHMdl-Z4Wat4U-u4,26577
290
- umap/static/umap/locale/sk_SK.json,sha256=6gyuvsBgiFF1VLHTJWd-3N7wpqDjsE3XnMAmEMYxaV8,26313
291
- umap/static/umap/locale/sl.js,sha256=As0WZpGsGjHicUGTt0bnG43R6hQ--CNA4kLkMFvJ9yE,26442
292
- umap/static/umap/locale/sl.json,sha256=hgl0XfwkNUeHoqSQTQZLkgfqaxV28MOArH9e9iMvbRw,26187
293
- umap/static/umap/locale/sr.js,sha256=lTfRKiPbTy3IwaC81-uyWScJECfw3epapgqqdF-RLiM,29563
294
- umap/static/umap/locale/sr.json,sha256=93YkdPc_pxz97WBGMKVBSDnRQBSp9KaMnqgm8x2rPu8,29307
295
- umap/static/umap/locale/sv.js,sha256=w9MARWmnt4zLVOB22McCy6nRJsePHLKpOFG4mjVVMDo,26382
296
- umap/static/umap/locale/sv.json,sha256=SIApcsDCBTreGTen3kfGsWktwxXUXT7kyNNOStLoJu8,26134
297
- umap/static/umap/locale/th_TH.js,sha256=flGVlWxz0NJNqGr1MBqVX3UJ2c4Q0DF4cw_mv7kKIc0,25209
298
- umap/static/umap/locale/th_TH.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
299
- umap/static/umap/locale/tr.js,sha256=v27IF41EAZFxAvAESonyeknkVKQ23iQxzn6B815aYeM,26912
300
- umap/static/umap/locale/tr.json,sha256=WMDkxHwEIqhEFdgk_53IpmJjR2aZl5MqRbf6lz0ctZk,26666
301
- umap/static/umap/locale/uk_UA.js,sha256=kxeSva_IcguADvqpa_CUfPCk0lAVlkZiuO6p3i8DqaU,32683
302
- umap/static/umap/locale/uk_UA.json,sha256=ggBlpkD_ASIq3xfWISJex9qX1Q3yNrW37YE0Cd0-F90,32394
303
- umap/static/umap/locale/vi.js,sha256=fk4osIWPJNpQF5Qr_mlyXyBFtP_451lHEDCfyH-2BrA,25489
304
- umap/static/umap/locale/vi.json,sha256=4SUSXlzt-6bH2NP0WUGtK3J1g6BBM0HLe2kFZE5Jvy8,25244
305
- umap/static/umap/locale/vi_VN.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
306
- umap/static/umap/locale/zh.js,sha256=_PHC2e8UTxzF3EmhaKwowteSLqN0A7xS0nwW1MRh0Gk,24870
307
- umap/static/umap/locale/zh.json,sha256=x0PfT47wGbRHrGbGOE-KfArLS6IBQ_shYz_UprOq0uE,24629
308
- umap/static/umap/locale/zh_CN.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
309
- umap/static/umap/locale/zh_TW.Big5.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
310
- umap/static/umap/locale/zh_TW.js,sha256=ulTuzsMAtFe44WMJEzyhnza0Q0qU00_gEl4xSYEhk-A,25141
311
- umap/static/umap/locale/zh_TW.json,sha256=yBJE01xj58EXPwVZXndmH4lJOae6sbiJZoh5-LdUqOc,24580
215
+ umap/static/umap/js/modules/orderable.js,sha256=FSeQrluyoXaxvlPMV8sGG7LTxxrw-MCIALydOOWJlrw,2519
216
+ umap/static/umap/js/modules/panel.js,sha256=mYt0slkw_UtN_Wo6hCXCxzncS24F9jtRNgRcnGBEynI,2552
217
+ umap/static/umap/js/modules/request.js,sha256=X8RklmGBV-aXSlT3jS2Gnr54YTq36nDL94irAJtXQ-Q,3978
218
+ umap/static/umap/js/modules/schema.js,sha256=dwSIn4QkUSOABh_gqEwOPG1y44qBoYwW0FfIq3RIz6g,10977
219
+ umap/static/umap/js/modules/urls.js,sha256=eejKsadgXGE1yoNy_S6xT9LCfQroezRgs_ChnKqdg10,853
220
+ umap/static/umap/js/modules/utils.js,sha256=HkZmkrCippade_--bJPVSe_fNb_l3mE1Mzx6GQoPZcs,10404
221
+ umap/static/umap/locale/am_ET.js,sha256=HFE0LL_1bRU_KfdFz-lXpgRUG2zMk6eW-WH6n_kf9e4,30115
222
+ umap/static/umap/locale/am_ET.json,sha256=YoL2yVi08JdVkBJXIQtBKCW1FAb1zPxjikckv9cXD-o,30044
223
+ umap/static/umap/locale/ar.js,sha256=sna9CmZV3MSeS-GsTxeRD5AD1RFClZ8_mJLNGOg9D9k,26385
224
+ umap/static/umap/locale/ar.json,sha256=hOFnXZC9q-9kKvYMudkoxe9S75fLPVdqu9kCrVVIv0s,26320
225
+ umap/static/umap/locale/ast.js,sha256=7Wjp998YPkSXKm6xt-qzc6brXm2Ygv8Yd0qZWyQtmlI,25935
226
+ umap/static/umap/locale/ast.json,sha256=T5hCJIEjOWDLLhK08WEp3I_6xrHhy5riU4ZZTdZ6kLc,25868
227
+ umap/static/umap/locale/bg.js,sha256=6EKPHq-THv9wTmv1JGuo8Mxmz8mV2NpzuOBB6-kypxc,29157
228
+ umap/static/umap/locale/bg.json,sha256=8mdtHRGL_ND1T-kp_4z7LDjhOCCI9I45I9anc7XSLXQ,29092
229
+ umap/static/umap/locale/br.js,sha256=041Ooqqp572IPMGQc7oVelwhShNW1wj03F2pCQr_OxA,27488
230
+ umap/static/umap/locale/br.json,sha256=ZJs0ubbLN_1t_Tz3ROuz8ZHOGRl5qfNj-awbSO6T5gs,27423
231
+ umap/static/umap/locale/ca.js,sha256=UMb8y6a_SWajOrsEJN4nmNwrj3ci_ANsBGIRr_iNWFU,26832
232
+ umap/static/umap/locale/ca.json,sha256=koKZ9Mv47ofTT1RkV5M0cqe2BmkOfuNSsx-EjV2nkFo,26767
233
+ umap/static/umap/locale/cs_CZ.js,sha256=3DP-9rQFbZHf3PdSrWDC99bwRVM5wRr4AzgJ0w2h6Bo,27943
234
+ umap/static/umap/locale/cs_CZ.json,sha256=CiMr43PwOxb-_vAh42t0MNlaHmp_rpOhvTQq53WPNfo,27872
235
+ umap/static/umap/locale/da.js,sha256=qJDfO5_1LNYtDeZD5QUb-3Z8mlNuGX55uikz2d94jT4,26294
236
+ umap/static/umap/locale/da.json,sha256=HVP6BTMQLA2hCVUQQE3S8FHBLjlfHFW40zitWZ1SoJs,26229
237
+ umap/static/umap/locale/de.js,sha256=5OWIPy4X-4Q3fyURCDa8B6L7DMinODtx6LlX6Mhe22g,28073
238
+ umap/static/umap/locale/de.json,sha256=MTedB6ztDOCAIyFNdxGpxjF9qSkb39IbCGsdfRsvhsI,28008
239
+ umap/static/umap/locale/el.js,sha256=uX3nVYVQoirlQ4NhRFXYbHj8InYIeb5f0e5jY9h4jmM,37500
240
+ umap/static/umap/locale/el.json,sha256=WObGA0FAHdQ0V8lRJ34vk1Oe0ysj7ZaiCw0YTn19_B8,37435
241
+ umap/static/umap/locale/en.js,sha256=6ddarIM6gwfNMeGEtk2PvwEer6oI5jwXlcDT-AYKv6w,25935
242
+ umap/static/umap/locale/en.json,sha256=ophT0lRLJ5Uhyj7UT8xTIzyLIVDcGCYi6IAKiJF-BnY,25870
243
+ umap/static/umap/locale/en_US.json,sha256=sfCi5TYCachmV0gv13fBlwd0_AX9abelq388gVCCRo8,25604
244
+ umap/static/umap/locale/es.js,sha256=I157mwzxu1WiuzMY1MOtFr77pRGOUASjCHlMhJkUdzc,28282
245
+ umap/static/umap/locale/es.json,sha256=n3-HVd8O7VebnUxM5yNvTM1ONxKJEV35ftO0wOaAoOE,28217
246
+ umap/static/umap/locale/et.js,sha256=7oK0tjL_8JrUQ91n3TGDO7-0eoNsuSbxo6H71GM3Xes,26132
247
+ umap/static/umap/locale/et.json,sha256=opgVrbiiFG2yA_ieYbGxHT-s5D5Y6-8skaCkcXSb9Xs,26067
248
+ umap/static/umap/locale/eu.js,sha256=qduwhJoibXw9Pcuusp631e3RzIeRcQGMQvYM_WOEIPg,25052
249
+ umap/static/umap/locale/eu.json,sha256=6jZcbsBPi8Hh-lyvdHI4FiOz1MygERPxiJ4pG6IvTAo,24987
250
+ umap/static/umap/locale/fa_IR.js,sha256=_0UwYXonuHgNh_JjvvKXx03bzf-ouvvhA203V8Fmm3Q,32333
251
+ umap/static/umap/locale/fa_IR.json,sha256=tv9uk713nwUoEl6OtIh8vx6qqBLVgiF7M9fBLvFayH0,32262
252
+ umap/static/umap/locale/fi.js,sha256=0gKJinoQ2X53PCJVrZ6mEMUW1-oxVwQZ28eRNuE6MY8,26865
253
+ umap/static/umap/locale/fi.json,sha256=ysaK1e86U35LAWPBY-K_md84dHFMXTK2MenV-_sqfko,26800
254
+ umap/static/umap/locale/fr.js,sha256=jb-8ljP_2Sbor7aqaTVjhTlF1yB06JQT0gHYy-QO0Vk,28306
255
+ umap/static/umap/locale/fr.json,sha256=LGvrF1meHonwAtjVkIhjnyvv5ZuKMSZRy6Bk6ouN6rQ,28241
256
+ umap/static/umap/locale/gl.js,sha256=leuX94NfWZbFo3hr3hJ3BpKAcdEjlAiFgik5aysuwac,27440
257
+ umap/static/umap/locale/gl.json,sha256=wvNq8T9NN0K8G-z0D3GL2O2aOuKIPJSHENic5aG7brQ,27375
258
+ umap/static/umap/locale/he.js,sha256=MdC8EORw4ejDyqllk3ckOTSuvdb4TGIXECuOrSskaDI,29642
259
+ umap/static/umap/locale/he.json,sha256=4drLalvQffa48PmFNixQYVPG_KtzQna3aqZ4h19amaQ,29577
260
+ umap/static/umap/locale/hr.js,sha256=aG9iDHnzqFMHQuImglwvk4IZa-Pb9WVV4_qXCHa-lbs,26095
261
+ umap/static/umap/locale/hr.json,sha256=GLpaTnwq2HELlNywq8s2yszyF6aB4jtjeHpbgpZ1iis,26030
262
+ umap/static/umap/locale/hu.js,sha256=h-pto0SHsiFHQ9AREUwMQLfH-FqKx6cY2Nr4KUcL7G8,29345
263
+ umap/static/umap/locale/hu.json,sha256=-85QnWklqjsVfi_Ba4GYbd1QRrDCu10VUwOdHN6Q73E,29280
264
+ umap/static/umap/locale/id.js,sha256=MhSpDa36VE8qWET2L2IENT0Nwp97shcJK9AHtt2IX0w,25933
265
+ umap/static/umap/locale/id.json,sha256=T5hCJIEjOWDLLhK08WEp3I_6xrHhy5riU4ZZTdZ6kLc,25868
266
+ umap/static/umap/locale/is.js,sha256=WDz8VmdEco_EE9_diG4mP0Rdl2QNUu4pkK6vo22QuW0,27339
267
+ umap/static/umap/locale/is.json,sha256=AQjhUgAXJlpIXJX5wwVStrWI0ehAA5xlP740JfqfqBc,27274
268
+ umap/static/umap/locale/it.js,sha256=t2EoVGdZCobrmb1YRNyb5El3zvfpWUN9LSZe8TPLx_M,28388
269
+ umap/static/umap/locale/it.json,sha256=Fu6eoL8nlkKrxqVefW8TaCwTxmNfSYjPQRLt1sv7ZOc,28323
270
+ umap/static/umap/locale/ja.js,sha256=dQCRN-lFcqZsEfaEHPytJqc_WOR2jRZ-B8kaeenkQoA,28661
271
+ umap/static/umap/locale/ja.json,sha256=TlIBlB2M8Lt29JrMgF4HmR3BOC7UITMvMSsCGVhiPQ0,28596
272
+ umap/static/umap/locale/ko.js,sha256=ZSWoSnNEovi4HcDyRfWl1BXNpMDppY1DwNDT04uvWGg,26128
273
+ umap/static/umap/locale/ko.json,sha256=gYfdkMwin_V1iqoorXwkkfXqgZi0vjDjY9Nei4b3hn4,26063
274
+ umap/static/umap/locale/lt.js,sha256=xkeSnulcYtApUI0rdreBj3Gmi1jQxMWE62rETZOMe3E,26801
275
+ umap/static/umap/locale/lt.json,sha256=TyMtBxWteLIKKI0SVDWvjTWkVr7xmaZ2xgD-99l3mxE,26736
276
+ umap/static/umap/locale/ms.js,sha256=FZ5u9JPtZQDfVu_wm6q_j10kWb5gBgUbFYTXelbPYHs,27188
277
+ umap/static/umap/locale/ms.json,sha256=E_ttI1tbvXieSwKGTaZh5PBtcmk-y-RlCc22pJ7Atxw,27123
278
+ umap/static/umap/locale/nl.js,sha256=bpib99TROWiFOI-Dgb0i4_Oauxnv5B8MmOBPY_wqmdM,27727
279
+ umap/static/umap/locale/nl.json,sha256=PyzM8aUMwPPOUOeF7tlC5zco9oZ2DAUMc9VF8tcpMN8,27662
280
+ umap/static/umap/locale/no.js,sha256=ospOBH1MGeH6z_NrQOuLymh1MqlFNKnDFXu8F5-oIn8,26152
281
+ umap/static/umap/locale/no.json,sha256=R9jDJymFEa-m0f1asFAKdc2GocLCBI606J_JWVYAHRE,26087
282
+ umap/static/umap/locale/pl.js,sha256=60LXa2nkZh2ZSq0mi61GimXsAEKlDtlMlC-NLssh3sg,27486
283
+ umap/static/umap/locale/pl.json,sha256=JmuUQf3EYub-x2roFnd9l2HT3qm5DuTvvp_s0GBrq4M,27421
284
+ umap/static/umap/locale/pl_PL.json,sha256=T5hCJIEjOWDLLhK08WEp3I_6xrHhy5riU4ZZTdZ6kLc,25868
285
+ umap/static/umap/locale/pt.js,sha256=bDJOhG1FVM74Ye7bhubo-57F5dNiKB73uqL9RWQth5Q,27422
286
+ umap/static/umap/locale/pt.json,sha256=OGdxdGEjfdHus9nzPHCJRjmW5zqLb78g4rsuoEaN5nE,27357
287
+ umap/static/umap/locale/pt_BR.js,sha256=ZshohQ6ffQkLoyg1YopdZKmZ96G6cI-wbqVeDJe_AdM,27416
288
+ umap/static/umap/locale/pt_BR.json,sha256=XlfyA6A4JyZx8IdNUEPzmdwJzEAUVrgXHgHDaObNspI,27345
289
+ umap/static/umap/locale/pt_PT.js,sha256=ehZxcz2XRkva640bYppFGZPseMtGof3H26yt5G7sd3U,27428
290
+ umap/static/umap/locale/pt_PT.json,sha256=AAf7lfzf6fIMMDQMisk4g6_IPZxsVJIqJg_vBjiv_Ic,27357
291
+ umap/static/umap/locale/ro.js,sha256=mtYnRq1G19WJ5dNma7Z8avGydQeaG8iLh-xPYRuQt2k,25970
292
+ umap/static/umap/locale/ro.json,sha256=BgEFFz3d43rGqZQkfjCxrhMByQrBtgTfz8gIZOHADe0,25905
293
+ umap/static/umap/locale/ru.js,sha256=XTlLBImksGbtSd42ns-Lvmglpw6e94uikyUvny78aAU,33674
294
+ umap/static/umap/locale/ru.json,sha256=Gl6s2BvW5P7EvHSp_qbNIAvyd41uhfLOTWzvtkK2jpY,33609
295
+ umap/static/umap/locale/si.js,sha256=EY1tQyUHOxZd8ZS6VBXcCGDiiLy5bJrdUC7_sKAoezc,25789
296
+ umap/static/umap/locale/si.json,sha256=-UTnxE3xYozk5A_eFj4pxVgEHMWXSr8ZRu5i5rej0mc,25724
297
+ umap/static/umap/locale/sk_SK.js,sha256=j8G9mY6oRRqtnXvNolyW8MmKmBSfNWfP7MkLko-5uO0,27285
298
+ umap/static/umap/locale/sk_SK.json,sha256=PPtdn-uCZu40wZ-lW6ix45C7Sb6MQ_GX6VrLav2I4rY,27214
299
+ umap/static/umap/locale/sl.js,sha256=ChrrRLPDO3K1df0SHD2MQh3okrgl72O27LvWxmCB7yM,27157
300
+ umap/static/umap/locale/sl.json,sha256=vVxfLbYOatZPu66f-mQb5UTvNugYpt_H3nOND2SqTEI,27092
301
+ umap/static/umap/locale/sr.js,sha256=DdjuaHnU8n9Nle16gwOe62K5-w_LCxS1YFYZb88mfRs,30243
302
+ umap/static/umap/locale/sr.json,sha256=aUNC037IiJnnYJEnvxbtq9_yoNEHdGObG3XHMmQwyt4,30178
303
+ umap/static/umap/locale/sv.js,sha256=uU1VimFwEv9-CoMI_FKcWMLlrqj_lA9J0Nh00TywUKQ,27108
304
+ umap/static/umap/locale/sv.json,sha256=PfH7hbkESmJt2NHQWABeUGbjDT35VzxXT0ho4LUGSAM,27043
305
+ umap/static/umap/locale/th_TH.js,sha256=AzNdDDlxq8G1unpt0BROMfOIGxeIhwDy68Jkb939NDQ,25939
306
+ umap/static/umap/locale/th_TH.json,sha256=T5hCJIEjOWDLLhK08WEp3I_6xrHhy5riU4ZZTdZ6kLc,25868
307
+ umap/static/umap/locale/tr.js,sha256=eZfKo2wWBO8huXorx6LP3XDjOUflXXovE2eJOKRHDLU,27622
308
+ umap/static/umap/locale/tr.json,sha256=iXDaoiIJkDl0k8-swHyFwP6JiI2kf4etLOmH3jb04DY,27557
309
+ umap/static/umap/locale/uk_UA.js,sha256=-365FaY9ZhH5efKxDTho714iqxHY8PmoINP0rVp_Vxc,33311
310
+ umap/static/umap/locale/uk_UA.json,sha256=0rba2z2WFxp_0z4MOugxf--uKaZCFanwm8mNosf4LtQ,33240
311
+ umap/static/umap/locale/vi.js,sha256=XAZmfbcyCvDznSX9Uaa3-mX9GaB-aqvbjU0gvL9X2No,26205
312
+ umap/static/umap/locale/vi.json,sha256=vRemMOVNSaDYMJx5hDmPH1UAHETjd1dQ9_oGpUnST3E,26140
313
+ umap/static/umap/locale/vi_VN.json,sha256=T5hCJIEjOWDLLhK08WEp3I_6xrHhy5riU4ZZTdZ6kLc,25868
314
+ umap/static/umap/locale/zh.js,sha256=IDeRagyhOSr5ljUhkXRBydzHvJlKNTyoBwpoE0rX3R0,25606
315
+ umap/static/umap/locale/zh.json,sha256=oaPvnNpLZmBVHBxXwoXcmW2tAwXzQDjx-ixTuEDxDME,25541
316
+ umap/static/umap/locale/zh_CN.json,sha256=T5hCJIEjOWDLLhK08WEp3I_6xrHhy5riU4ZZTdZ6kLc,25868
317
+ umap/static/umap/locale/zh_TW.Big5.json,sha256=T5hCJIEjOWDLLhK08WEp3I_6xrHhy5riU4ZZTdZ6kLc,25868
318
+ umap/static/umap/locale/zh_TW.js,sha256=8J1D3-Mi2su19tbqcgdto6OYSL6XDuV1wxAikMNmYH0,25553
319
+ umap/static/umap/locale/zh_TW.json,sha256=aUzKaXkvnfeXKAFMH5F9KEtr6N-kXKtUgXkHFZi53Dw,25482
312
320
  umap/static/umap/test/.eslintrc,sha256=lsy_EQL70iOehznbw1QtRqN858VT9vQAZXg9h2aTX2w,444
313
- umap/static/umap/test/Feature.js,sha256=NIW3FD156wwo6UZHbKf56lQfQ3dG9fHBWGPc1DN_XAE,11766
321
+ umap/static/umap/test/DataLayer.js,sha256=P-bq8gjGrSEKXLxmDk85NI33GT5XWHHLvv44xJ7CGKk,14221
322
+ umap/static/umap/test/Feature.js,sha256=xb6HjjD_EuI4ezvn3z_SUR_s7C1e8xmZim20VHaR2qg,3664
314
323
  umap/static/umap/test/Map.js,sha256=LWCyIKxgUXBM61i3QIPkDubTXGlRhy6N2NdlAnaM_mQ,919
315
324
  umap/static/umap/test/Marker.js,sha256=pzMBY-l1xD35OgVCd2FNxEDrBMAhafAyZPAFsV2Gd34,4111
316
325
  umap/static/umap/test/Polygon.js,sha256=Jrflfe76wmfu8_E3bDLMGG11w-iUmrgL9Oiv4CcCsb8,2320
317
326
  umap/static/umap/test/Polyline.js,sha256=5VxRW-b6bnNgyIzDsHM6g5lPci-Td1wY5VPg_umpId0,9374
318
- umap/static/umap/test/Util.js,sha256=yhcmnlugm-D7ECvyw_RVdsn7sFdnR1XHnMgNiNCZ-XI,17972
327
+ umap/static/umap/test/TableEditor.js,sha256=EJyIp90_tKb4aR3jNn2aRmmnbOLixTCUDouYxBRZAIE,3150
328
+ umap/static/umap/test/Util.js,sha256=KBsOQN_E4Y5N8VSDNP5fLdUrvOh7G3pewrkRKq547VQ,1096
319
329
  umap/static/umap/test/_pre.js,sha256=O3qaQf-M2SLQ6c7AGIrRwdPm3iULiSTt-KkmAIQnAGg,12960
320
- umap/static/umap/test/index.html,sha256=kWkQbao_Hb1XW23PDzlKn-oTMV6lGgTIsaW5X3COaQE,6685
321
- umap/static/umap/unittests/URLs.js,sha256=IOifAKSNuCTtmEGdfV6lHBkg6CT0LftgxWlXWLa5_1U,1886
330
+ umap/static/umap/test/index.html,sha256=1ZKUQry_D4tzZapPOnhs7TfLP0-yDtOpE28nEicH4qA,6616
331
+ umap/static/umap/unittests/URLs.js,sha256=EqXPGohwNiEtJWk1QY2KgPaIwd0iP56nYvn05ufsZ-g,1878
332
+ umap/static/umap/unittests/utils.js,sha256=XcNKpMY6zJqW9Ji_pE0VRSH6Bo3MsKGnHMTkuz8xHLs,20200
322
333
  umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=FebyRte_vQrD_CLC8Xjc2cI_bR694S6hDSIu26tDnZ8,24622
323
334
  umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css,sha256=_pRTmdgpDxfu1Oxb7DnP_DTdA44G-k3kf0otWP8gEnc,990
324
335
  umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js,sha256=I3zyDVArt4ZrRcCzTUp6OiNmD5KuDsZCvhG-yZt8lhE,8994
325
336
  umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=GCr5ZQawzxqZysqyxDTH6oUqP-KHxYTsG5xRt28--Zw,15029
326
- umap/static/umap/vendors/dompurify/purify.min.js,sha256=OO3w-WHBzLKHiAuI8S83B3X8ZbLigifu4hXoSc2-m7w,20860
327
- umap/static/umap/vendors/dompurify/purify.min.js.map,sha256=lvLQ4oJliucO2YsWy1ZZcpP2CmqQdFCUbk2mbwKo3FE,90567
337
+ umap/static/umap/vendors/dompurify/purify.es.mjs,sha256=xQ5F7cRncvKwJeqAUc3jt5zQdJNPbtwNoOV8Av2t1_I,63018
328
338
  umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=Mx8aiCT4w9DBEUBJiX5eq9Ocy-6E3C9wLAik-dgOLY4,74768
329
339
  umap/static/umap/vendors/editable/Path.Drag.js,sha256=EATyTfgSiCkdjTwGM5lU1RZayxzynqhE-AgnuRlqYI0,3898
330
340
  umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css,sha256=eVKDGO_G2bIJvf_o5490h8BbMh5XeraSLmo6qTc8zj8,1263
@@ -342,7 +352,7 @@ umap/static/umap/vendors/heat/leaflet-heat.js,sha256=65UqrlgGoRAnKfKRuriH3eeDrOh
342
352
  umap/static/umap/vendors/i18n/Leaflet.i18n.js,sha256=2_Ztz6WBwqg5fdzoVOvB8-b2kzMiQJqpa6K4tcG1aOQ,1328
343
353
  umap/static/umap/vendors/iconlayers/check.png,sha256=2KEJy_Q7K5Jy_514NoHXWdLk5MSrx5Bdp3IMQS-rpZ0,2945
344
354
  umap/static/umap/vendors/iconlayers/iconLayers.css,sha256=fUnXSp72SLBi2zm_98OhBipn6jl53eLpMAqU9kVXu3Q,2099
345
- umap/static/umap/vendors/iconlayers/iconLayers.js,sha256=VcHNxU0KrRKk8fQ_biK4GNZcKj8gmMWG52irE0yY4xY,11789
355
+ umap/static/umap/vendors/iconlayers/iconLayers.js,sha256=F-TE2E0zFS-ZSt2JfTloeDUIuBpKPwFUA0EaJc8lbOg,11791
346
356
  umap/static/umap/vendors/iconlayers/transparent-pixel.png,sha256=wmsrONlpwU7Z-Y-1QYMxjQg-h-BumQw4A89vuT55IYg,2792
347
357
  umap/static/umap/vendors/leaflet/leaflet-src.esm.js,sha256=Oe6TRk8R_jhHE35QwNyBifcGxGDjaYnqeHG_fVQPMwY,424589
348
358
  umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map,sha256=lxY34ye1PfsolFQ8pTsEtlgBJ4tW7panCBRsm35HNbs,866200
@@ -399,18 +409,18 @@ umap/templates/umap/about_summary.html,sha256=i1M3rNgQi912dr0_Jr2xoBSERm3WgEQTNp
399
409
  umap/templates/umap/branding.html,sha256=8IzkIWqiZckgkX9FC-n1v6f8JIB2q7DcX3JHscxsaYA,60
400
410
  umap/templates/umap/content.html,sha256=L2JRYlXWX9ot3Mc7JCi2Sl5PY6crBTD1PKkf1E61QeA,2255
401
411
  umap/templates/umap/content_footer.html,sha256=Lq9CK37V2iFxqOdgGWRsJcoQs8e3Ih5VlENbQ-izX84,724
402
- umap/templates/umap/css.html,sha256=Bp7pnglIp9E8IaABO0uMVPx3-gV6zMRDxI12rygIx50,1548
412
+ umap/templates/umap/css.html,sha256=RBLqTvnha7Ccemg3RytCB6b07mBTnUONf_D1d_oEIeM,1681
403
413
  umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
404
414
  umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
405
415
  umap/templates/umap/home.html,sha256=A0tMpiJ8MmLciD7A2SMNoYn5K60MN6PLrRfMahKXh8c,670
406
- umap/templates/umap/js.html,sha256=x0AAPBOo1kXt6pePzRmmy8Ugypj8_YImeKRzyPkGH0c,3920
416
+ umap/templates/umap/js.html,sha256=vs4tfLFZ-MrlaDsTMQnsAvEd-4gUCf2OqKOuntSavkI,3838
407
417
  umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
408
418
  umap/templates/umap/login_popup_end.html,sha256=b6csbAW1-qZZYgF1RkwfNsGpqhYzzg3wRGbntTadj2U,571
409
- umap/templates/umap/map_detail.html,sha256=i7853I2IMBHx6rULPp9e8DgSrBuhU0KTlRuIfif7Pkg,877
419
+ umap/templates/umap/map_detail.html,sha256=2TA1VwH0jAo9yyj7f3XVqPvFOY0EXmzxZJjZJI2l4jY,1143
410
420
  umap/templates/umap/map_fragment.html,sha256=hog_2ufpF7wQlYq3PUj4ZoOY6R8_ztNZ4KHaHS-KQxY,150
411
421
  umap/templates/umap/map_init.html,sha256=AFGiWxYQ9foyVwF5mndt_l_r4atz-GHnpV7Z--tno5A,485
412
422
  umap/templates/umap/map_list.html,sha256=IArhrUe_2ILTpbI2sfmR89oqbqN5_7X2uFKtoqUwNGU,626
413
- umap/templates/umap/map_table.html,sha256=KzEDKxGXRaDSSeqioNYP7i17Xw2Zw1wfL2LAxr_ATuA,5389
423
+ umap/templates/umap/map_table.html,sha256=eNsjkmXYBURJp_wzsCDxrtQqJgsVtCj6aCdkI2tJP0I,5490
414
424
  umap/templates/umap/messages.html,sha256=z2nSbxpXeZOXxVB1xq-lYTxm1Ynj-0zGQbGDc61Y2pE,287
415
425
  umap/templates/umap/navigation.html,sha256=T7alkzJrOggve0oWO_GgHGypemwcXcShMPuRwmPK5OY,1265
416
426
  umap/templates/umap/password_change.html,sha256=trKXzqdwKCT561NhgV1Tt43f1dwqMrfcCVGayVDRGGI,958
@@ -420,7 +430,7 @@ umap/templates/umap/search_bar.html,sha256=PK4aWVIjEDcM7XcRGTLG1lMyrJce5czZoEERz
420
430
  umap/templates/umap/success.html,sha256=3FG4yWwtdF3zvVWQ2ZAjCkgv0kcSNZlUjgYy_b-X_CI,3
421
431
  umap/templates/umap/user_dashboard.html,sha256=P9A_5m3HBnEGj87ptbBVOoqrF7gW6Rsyl9ZfM4vbF1w,2691
422
432
  umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
423
- umap/templatetags/umap_tags.py,sha256=2eOMT_6lGHRNSarfUpVTXggg6E0SN_rjrJKDCt__gF8,1671
433
+ umap/templatetags/umap_tags.py,sha256=oMXsa80LFM52EcLnF6A_o4_PdvOncLBf33pexaeL8nw,1773
424
434
  umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
425
435
  umap/tests/base.py,sha256=WcrRnmgcTvx9hHekIJsGyVhFwvyNrgT7PYQ6DPwuAZU,4200
426
436
  umap/tests/conftest.py,sha256=yLFE5sqz61tw_EoZp1nrH-8S49_aStA5Lt1JtZXd-Hg,1498
@@ -429,7 +439,7 @@ umap/tests/test_datalayer.py,sha256=HJYSQ11LVQe47nnsXdFeX5Ny4WMDPUYg3frnM5G1IzQ,
429
439
  umap/tests/test_datalayer_views.py,sha256=AJ-0YBorAgKZaKGd8rSYDguqy8acrz54EaQdfkNOH48,22111
430
440
  umap/tests/test_licence.py,sha256=BxNY3gdKhIoc2u5OPmAkmjCp0jJN-Jm-uPOfAZlpOHA,339
431
441
  umap/tests/test_map.py,sha256=nX2eE1HJY3bjycXulglK2SY1ybcnjDVgr0yntX6OgyA,3836
432
- umap/tests/test_map_views.py,sha256=6EW0jqDepS8y117sfCbDwmhnhu0vHup3GXE57IrkAnI,31350
442
+ umap/tests/test_map_views.py,sha256=w3YG5ExH_fw18402bdR3hKxRl3DpAeCs8oy8RYee05o,31886
433
443
  umap/tests/test_merge_features.py,sha256=uLZSW00WAI8_nZS0KPP8gg8U4nnky-XGb-VhhKUxv1M,2275
434
444
  umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
435
445
  umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
@@ -448,35 +458,41 @@ umap/tests/fixtures/test_upload_empty_coordinates.json,sha256=-mJ_1orzUAROfE4PXc
448
458
  umap/tests/fixtures/test_upload_missing_name.json,sha256=klSMHb6laTghzU4AdIG1_p5UZ1LbAJCCKnJea0qEFAI,4566
449
459
  umap/tests/fixtures/test_upload_non_linear_ring.json,sha256=WOR0NnJHNUUW6VKzZyIxU7WL1llnAmEVJwCWla6XOds,1525
450
460
  umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-mEKG4,57
451
- umap/tests/integration/conftest.py,sha256=yV16s_9uzsMt-myJ4nhzbCzCcefElApCq68daQTjxmw,703
452
- umap/tests/integration/test_anonymous_owned_map.py,sha256=OMieSBsR5yvB_Wk-cxB6G5NxJy72mHOHmDjmXJtp8E0,8628
461
+ umap/tests/integration/conftest.py,sha256=hL2SKmJ3kJwlpQ2Y09VYP_Zw6B9TjzY1jyOF-btJL_8,1052
462
+ umap/tests/integration/test_anonymous_owned_map.py,sha256=_mOnoF2ey73y4ToL0YpJsGXKbtK7_VJddqRSmrtp1cU,8617
453
463
  umap/tests/integration/test_basics.py,sha256=1FesSkjNBWi5pEqN0MQlC3kIXTFZzuILq7A5ac9L-3g,1598
454
- umap/tests/integration/test_browser.py,sha256=YF2U5f0g4RQPCaBFBTrBaLy0dDusy3gQG3dRDORQvaQ,13929
455
- umap/tests/integration/test_choropleth.py,sha256=6zeqgY6JTtFF7K5vIVXuE37zuN6JJPn_1ccAZLGZZew,3803
464
+ umap/tests/integration/test_browser.py,sha256=YBOfAFXo1oZPNe9-Ovl0yx-hwNvq2icD3QovhV_Ryyo,13236
465
+ umap/tests/integration/test_choropleth.py,sha256=dNOJq71ZwRTUyas7Ode2YUgoj50IVLxz_FMP7-pkzQs,3791
456
466
  umap/tests/integration/test_collaborative_editing.py,sha256=auvyoGbUJ-xe3HpITrQoCby_X_OZC5tQKUsXASJwtqc,10959
457
- umap/tests/integration/test_dashboard.py,sha256=k--MGBZsek4ebjCoHbUyv-XNkPbc55aOwxH6a7WuIL0,1173
458
- umap/tests/integration/test_datalayer.py,sha256=ttoR41XDlEfS1z4fZtpHAi0SHnnFD6N_8g-9BRHm8fk,5136
459
- umap/tests/integration/test_edit_datalayer.py,sha256=LHGaHoAbztnilLytV8c2cTqxk2om9fKT4WfdxZ-2uNU,7872
460
- umap/tests/integration/test_edit_map.py,sha256=fOc95CtjYNDZuu6hiId9MAP3GizYS75AE96y1fmASRc,500
467
+ umap/tests/integration/test_dashboard.py,sha256=KKHZkkpljsXF0h-c0U1v7KIQVSJNcBOoUdMSLGK60A8,1522
468
+ umap/tests/integration/test_datalayer.py,sha256=EUvPBPleu-XutVw-u2qpq9-4US5dmyJH7pZNX2Zul1s,5244
469
+ umap/tests/integration/test_draw_polygon.py,sha256=sL4sOpNAs1h09W455NY8UunVHQHDogS_eGWWfHqOT9s,14335
470
+ umap/tests/integration/test_draw_polyline.py,sha256=FNMXL4a67Qo-Yhr1V0XCGl6kWsiAJLsoFlJJAg7mOxE,12426
471
+ umap/tests/integration/test_edit_datalayer.py,sha256=zypo6PqUm_SRZocd5qnp2bRGpEnOvG9arj2ouqutTA0,8159
472
+ umap/tests/integration/test_edit_map.py,sha256=uazk4RYUJ9pnmbof9G3cPkVCJ9dJcag3pqL9LsAjbfQ,6906
473
+ umap/tests/integration/test_edit_marker.py,sha256=TJBZDpfrYMaKpZTdktGu2jhCX5YLfQLnSsP5Wu84MnQ,4832
474
+ umap/tests/integration/test_edit_polygon.py,sha256=x1SFqOI2EhwPR9mRms8avtI63QeS3ay-YWhrBa2qiys,4878
461
475
  umap/tests/integration/test_export_map.py,sha256=Y_sgsT7ZTrrDCx5dLegioJ40GN_PtzK7yRFHTxtIb-4,12738
462
- umap/tests/integration/test_facets_browser.py,sha256=w-7wCLzkcDgzxKfDBekVMl33ajvi3WzjGbede01bydE,3579
476
+ umap/tests/integration/test_facets_browser.py,sha256=zjYK7AAu1BLIG_HBOIOcr0_qtRgJnJtZ2hgw8pKksGw,7151
463
477
  umap/tests/integration/test_features_id_generation.py,sha256=e99_8AxeMAi53JjVGlsI32zlrXGAU19FHJfTuYdiBVQ,1511
464
- umap/tests/integration/test_import.py,sha256=2XDbzCxrBMqvwkGEMB44E7QbiU2SHEFwZk_Il5BHzpE,15481
465
- umap/tests/integration/test_map.py,sha256=Ekj1I7d1y14pkoCrtq8OEhoxXsBNjmyNIAs4E4q07m8,8088
478
+ umap/tests/integration/test_import.py,sha256=K2M_Jqjg0h-mm5kVfTgLN3cn98nUb9pR3Z46eIYjqlo,17644
479
+ umap/tests/integration/test_map.py,sha256=wajd31jL-aYlk3Figf4kzFtUXP5j3T69piBxCiaSbBQ,8323
480
+ umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
466
481
  umap/tests/integration/test_map_preview.py,sha256=4rPQF1zfiwqN7PvwFeB3OagR1wLEMbug0Omcd6zQShQ,2702
467
- umap/tests/integration/test_owned_map.py,sha256=E5J7wNPkYuWJMkbbTpVCheyRgJ9NVtBzE5SZNDZZiyw,9905
468
- umap/tests/integration/test_picto.py,sha256=ShQnpiA1yHTYd_BV9kmG3VZ2p2v2COi4Vf3xNwKC_8M,9034
469
- umap/tests/integration/test_polygon.py,sha256=sL4sOpNAs1h09W455NY8UunVHQHDogS_eGWWfHqOT9s,14335
470
- umap/tests/integration/test_polyline.py,sha256=FNMXL4a67Qo-Yhr1V0XCGl6kWsiAJLsoFlJJAg7mOxE,12426
471
- umap/tests/integration/test_querystring.py,sha256=zTEs6S01G7t4MYrxmMyZqS7G8LmDoUAjmkhYeSV32h8,2649
482
+ umap/tests/integration/test_owned_map.py,sha256=51Py-D5xiRqbLhVCwfk3ZnAj8_k8HS4kT67w54QGMLA,9883
483
+ umap/tests/integration/test_picto.py,sha256=dr5rRTHURDAdnIiVcLBHtmnXxbWhC9GmRSCcID7lVcM,9040
484
+ umap/tests/integration/test_querystring.py,sha256=Q9W1TOr5I-FkqIlDGXah9vs7GW-MTYdGNWkSb-uyUd4,2466
472
485
  umap/tests/integration/test_share.py,sha256=gDna-wFedwJ_-8HLBw_G5IO3zA3l96p1FGBSZ15g_7g,1813
473
- umap/tests/integration/test_slideshow.py,sha256=uLPw4SyhLgpqU4-jrTu5vKSqYuZG7hXjfY8JlEt1JkM,2020
486
+ umap/tests/integration/test_slideshow.py,sha256=yhy75YYpfTKpkGK7xGjJDJoqHtN6p2LG-O4krVE1Yks,1907
474
487
  umap/tests/integration/test_star.py,sha256=icB5SbFbXe4KYp3DIJ0xAwCrSQS2rweqIaQTAng3CfY,842
475
- umap/tests/integration/test_statics.py,sha256=UqaN2O56yHwn1tEE9I8B1lGnyztDLC0p7_rG6J7vLIs,1494
476
- umap/tests/integration/test_tableeditor.py,sha256=QIxuMmb1YtibJEgaY92s5Q4Yf7q1Jo974IWsHBord5U,1124
488
+ umap/tests/integration/test_statics.py,sha256=SIwLs0ZwXFu734o5WWYxaBarHrEUw2nCOi3s9aGJwQk,1526
489
+ umap/tests/integration/test_tableeditor.py,sha256=C4C5qj6b77XSNso7B634r0uaIzpO6Gkos7il6VGiSd8,1058
477
490
  umap/tests/integration/test_tilelayer.py,sha256=3Jn1KdOM39DuDkLG-P3heDrsCiYvD6_FEnt0EKGjj5g,4141
478
- umap_project-2.1.3.dist-info/METADATA,sha256=ia2_saR7oUpY52jT0joF8VL8Q7vFazXJnCmCgp2XM_E,2559
479
- umap_project-2.1.3.dist-info/WHEEL,sha256=mRYSEL3Ih6g5a_CVMIcwiF__0Ae4_gLYh01YFNwiq1k,87
480
- umap_project-2.1.3.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
481
- umap_project-2.1.3.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
482
- umap_project-2.1.3.dist-info/RECORD,,
491
+ umap/tests/integration/test_view_marker.py,sha256=PNDYjkcSAUIgXmyzbWYWJ2NDReSrmeT48wujHWNEhb4,2177
492
+ umap/tests/integration/test_view_polygon.py,sha256=I7wR6DUrictIMrCPKajCrruJVLry4ZRDdjSs8q0XaOg,1829
493
+ umap/tests/integration/test_view_polyline.py,sha256=n1QVIdl-Xg9yN9o-Jc6VnPhFAuUspsgY0odiUe_jJC4,1598
494
+ umap_project-2.2.0b0.dist-info/METADATA,sha256=sn8iwBjnnVEUabB-mm48VihYDHTUkxcYrx1NGQCvcPA,2561
495
+ umap_project-2.2.0b0.dist-info/WHEEL,sha256=mRYSEL3Ih6g5a_CVMIcwiF__0Ae4_gLYh01YFNwiq1k,87
496
+ umap_project-2.2.0b0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
497
+ umap_project-2.2.0b0.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
498
+ umap_project-2.2.0b0.dist-info/RECORD,,