codex 1.7.15__py3-none-any.whl → 1.8.0a2__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 codex might be problematic. Click here for more details.

Files changed (1125) hide show
  1. codex/__init__.py +6 -1
  2. codex/applications/lifespan.py +16 -12
  3. codex/asgi.py +1 -2
  4. codex/choices/admin.py +63 -59
  5. codex/choices/browser.py +7 -10
  6. codex/choices/choices_to_json.py +21 -9
  7. codex/choices/search.py +133 -0
  8. codex/choices/statii.py +40 -0
  9. codex/librarian/bookmark/bookmarkd.py +56 -17
  10. codex/librarian/bookmark/latest_version.py +65 -0
  11. codex/librarian/bookmark/tasks.py +11 -1
  12. codex/librarian/bookmark/update.py +1 -1
  13. codex/librarian/bookmark/user_active.py +2 -3
  14. codex/librarian/covers/coverd.py +4 -1
  15. codex/librarian/covers/create.py +31 -22
  16. codex/librarian/covers/path.py +1 -1
  17. codex/librarian/covers/purge.py +22 -22
  18. codex/librarian/covers/status.py +37 -6
  19. codex/librarian/cron/crond.py +5 -3
  20. codex/librarian/librariand.py +57 -84
  21. codex/librarian/notifier/notifierd.py +8 -3
  22. codex/librarian/restarter/__init__.py +1 -0
  23. codex/librarian/restarter/restarter.py +55 -0
  24. codex/librarian/restarter/status.py +32 -0
  25. codex/librarian/restarter/tasks.py +13 -0
  26. codex/librarian/scribe/__init__.py +1 -0
  27. codex/librarian/scribe/importer/__init__.py +1 -0
  28. codex/librarian/scribe/importer/const.py +361 -0
  29. codex/librarian/scribe/importer/create/__init__.py +37 -0
  30. codex/librarian/scribe/importer/create/comics.py +172 -0
  31. codex/librarian/scribe/importer/create/const.py +131 -0
  32. codex/librarian/scribe/importer/create/covers.py +123 -0
  33. codex/librarian/scribe/importer/create/folders.py +98 -0
  34. codex/librarian/scribe/importer/create/foreign_keys.py +253 -0
  35. codex/librarian/scribe/importer/create/link_fks.py +73 -0
  36. codex/librarian/scribe/importer/delete/__init__.py +28 -0
  37. codex/librarian/scribe/importer/delete/comics.py +68 -0
  38. codex/librarian/scribe/importer/delete/covers.py +35 -0
  39. codex/librarian/scribe/importer/delete/folders.py +33 -0
  40. codex/librarian/scribe/importer/failed_imports.py +168 -0
  41. codex/librarian/scribe/importer/finish.py +70 -0
  42. codex/librarian/scribe/importer/importer.py +31 -0
  43. codex/librarian/scribe/importer/init.py +338 -0
  44. codex/librarian/scribe/importer/link/__init__.py +15 -0
  45. codex/librarian/scribe/importer/link/const.py +31 -0
  46. codex/librarian/scribe/importer/link/covers.py +70 -0
  47. codex/librarian/scribe/importer/link/delete.py +106 -0
  48. codex/librarian/scribe/importer/link/many_to_many.py +88 -0
  49. codex/librarian/scribe/importer/link/prepare.py +132 -0
  50. codex/librarian/scribe/importer/link/sum.py +19 -0
  51. codex/librarian/scribe/importer/moved/__init__.py +52 -0
  52. codex/librarian/scribe/importer/moved/comics.py +125 -0
  53. codex/librarian/scribe/importer/moved/covers.py +88 -0
  54. codex/librarian/scribe/importer/moved/folders.py +205 -0
  55. codex/librarian/scribe/importer/query/__init__.py +44 -0
  56. codex/librarian/scribe/importer/query/covers.py +55 -0
  57. codex/librarian/scribe/importer/query/filters.py +61 -0
  58. codex/librarian/scribe/importer/query/links.py +29 -0
  59. codex/librarian/scribe/importer/query/links_fk.py +99 -0
  60. codex/librarian/scribe/importer/query/links_m2m.py +102 -0
  61. codex/librarian/scribe/importer/query/query_fks.py +203 -0
  62. codex/librarian/scribe/importer/query/update_comics.py +59 -0
  63. codex/librarian/scribe/importer/query/update_fks.py +140 -0
  64. codex/librarian/scribe/importer/read/__init__.py +14 -0
  65. codex/librarian/scribe/importer/read/aggregate_path.py +108 -0
  66. codex/librarian/scribe/importer/read/const.py +144 -0
  67. codex/librarian/scribe/importer/read/extract.py +128 -0
  68. codex/librarian/scribe/importer/read/folders.py +37 -0
  69. codex/librarian/scribe/importer/read/foreign_keys.py +145 -0
  70. codex/librarian/scribe/importer/read/many_to_many.py +237 -0
  71. codex/librarian/scribe/importer/search/__init__.py +34 -0
  72. codex/librarian/scribe/importer/search/const.py +50 -0
  73. codex/librarian/scribe/importer/search/prepare.py +85 -0
  74. codex/librarian/scribe/importer/search/sync_m2m.py +84 -0
  75. codex/librarian/scribe/importer/search/update.py +245 -0
  76. codex/librarian/scribe/importer/statii/1 +27 -0
  77. codex/librarian/scribe/importer/statii/__init__.py +19 -0
  78. codex/librarian/scribe/importer/statii/create.py +67 -0
  79. codex/librarian/scribe/importer/statii/delete.py +39 -0
  80. codex/librarian/scribe/importer/statii/link.py +27 -0
  81. codex/librarian/scribe/importer/statii/moved.py +39 -0
  82. codex/librarian/scribe/importer/statii/query.py +46 -0
  83. codex/librarian/scribe/importer/statii/read.py +30 -0
  84. codex/librarian/scribe/importer/statii/search.py +28 -0
  85. codex/librarian/scribe/importer/status.py +21 -0
  86. codex/librarian/scribe/importer/tasks.py +49 -0
  87. codex/librarian/scribe/janitor/__init__.py +1 -0
  88. codex/librarian/scribe/janitor/adopt_folders.py +81 -0
  89. codex/librarian/scribe/janitor/cleanup.py +199 -0
  90. codex/librarian/scribe/janitor/failed_imports.py +27 -0
  91. codex/librarian/scribe/janitor/integrity.py +374 -0
  92. codex/librarian/scribe/janitor/janitor.py +125 -0
  93. codex/librarian/scribe/janitor/scheduled_time.py +13 -0
  94. codex/librarian/scribe/janitor/status.py +151 -0
  95. codex/librarian/scribe/janitor/tasks.py +71 -0
  96. codex/librarian/scribe/janitor/update.py +88 -0
  97. codex/librarian/scribe/janitor/vacuum.py +53 -0
  98. codex/librarian/scribe/lazy_importer.py +51 -0
  99. codex/librarian/scribe/priority.py +65 -0
  100. codex/librarian/scribe/scribed.py +130 -0
  101. codex/librarian/scribe/search/__init__.py +1 -0
  102. codex/librarian/scribe/search/handler.py +28 -0
  103. codex/librarian/scribe/search/optimize.py +31 -0
  104. codex/librarian/scribe/search/remove.py +44 -0
  105. codex/librarian/scribe/search/status.py +66 -0
  106. codex/librarian/scribe/search/sync.py +391 -0
  107. codex/librarian/scribe/search/tasks.py +28 -0
  108. codex/librarian/scribe/status.py +20 -0
  109. codex/librarian/scribe/tasks.py +31 -0
  110. codex/librarian/scribe/timestamp_update.py +135 -0
  111. codex/librarian/status.py +76 -0
  112. codex/librarian/status_controller.py +164 -0
  113. codex/librarian/tasks.py +0 -10
  114. codex/librarian/telemeter/scheduled_time.py +11 -4
  115. codex/librarian/telemeter/stats.py +0 -2
  116. codex/librarian/telemeter/tasks.py +3 -1
  117. codex/librarian/telemeter/telemeter.py +17 -11
  118. codex/librarian/threads.py +148 -0
  119. codex/librarian/watchdog/const.py +115 -0
  120. codex/librarian/watchdog/db_snapshot.py +16 -10
  121. codex/librarian/watchdog/dir_snapshot_diff.py +19 -1
  122. codex/librarian/watchdog/emitter.py +128 -102
  123. codex/librarian/watchdog/event_batcherd.py +120 -78
  124. codex/librarian/watchdog/events.py +22 -211
  125. codex/librarian/watchdog/handlers.py +203 -0
  126. codex/librarian/watchdog/memory.py +56 -0
  127. codex/librarian/watchdog/observers.py +94 -58
  128. codex/librarian/watchdog/status.py +18 -5
  129. codex/librarian/worker.py +32 -0
  130. codex/middleware.py +6 -8
  131. codex/migrations/0011_library_groups_and_metadata_changes.py +2 -1
  132. codex/migrations/0013_int_issue_count_longer_charfields.py +2 -1
  133. codex/migrations/0023_rename_credit_creator_and_more.py +2 -1
  134. codex/migrations/0026_comicbox_1.py +9 -9
  135. codex/migrations/0034_comicbox2.py +789 -0
  136. codex/models/__init__.py +1 -0
  137. codex/models/admin.py +13 -21
  138. codex/models/base.py +21 -2
  139. codex/models/comic.py +80 -43
  140. codex/models/fields.py +81 -0
  141. codex/models/functions.py +8 -2
  142. codex/models/groups.py +99 -34
  143. codex/models/identifier.py +79 -0
  144. codex/models/library.py +17 -3
  145. codex/models/named.py +52 -55
  146. codex/models/paths.py +16 -12
  147. codex/models/query.py +7 -5
  148. codex/run.py +12 -18
  149. codex/serializers/admin/groups.py +3 -0
  150. codex/serializers/admin/libraries.py +13 -1
  151. codex/serializers/admin/stats.py +5 -4
  152. codex/serializers/admin/tasks.py +3 -5
  153. codex/serializers/admin/users.py +9 -3
  154. codex/serializers/auth.py +13 -6
  155. codex/serializers/browser/choices.py +35 -18
  156. codex/serializers/browser/filters.py +7 -5
  157. codex/serializers/browser/metadata.py +12 -10
  158. codex/serializers/browser/mixins.py +6 -8
  159. codex/serializers/browser/mtime.py +6 -2
  160. codex/serializers/browser/page.py +8 -3
  161. codex/serializers/browser/settings.py +35 -5
  162. codex/serializers/fields/__init__.py +2 -2
  163. codex/serializers/fields/auth.py +4 -5
  164. codex/serializers/fields/base.py +16 -0
  165. codex/serializers/fields/browser.py +15 -31
  166. codex/serializers/fields/group.py +11 -8
  167. codex/serializers/fields/reader.py +14 -10
  168. codex/serializers/fields/sanitized.py +2 -0
  169. codex/serializers/fields/session.py +3 -8
  170. codex/serializers/fields/stats.py +3 -5
  171. codex/serializers/fields/vuetify.py +21 -10
  172. codex/serializers/mixins.py +42 -0
  173. codex/serializers/models/base.py +1 -1
  174. codex/serializers/models/comic.py +6 -2
  175. codex/serializers/models/named.py +62 -37
  176. codex/serializers/models/pycountry.py +0 -3
  177. codex/serializers/opds/v1.py +6 -6
  178. codex/serializers/opds/v2/feed.py +2 -4
  179. codex/serializers/opds/v2/publication.py +14 -14
  180. codex/serializers/opds/v2/unused.py +2 -0
  181. codex/serializers/reader.py +52 -31
  182. codex/serializers/route.py +6 -4
  183. codex/serializers/settings.py +6 -6
  184. codex/settings/__init__.py +424 -1
  185. codex/signals/django_signals.py +2 -35
  186. codex/signals/os_signals.py +4 -5
  187. codex/startup/__init__.py +180 -0
  188. codex/startup/db.py +130 -0
  189. codex/startup/logger_init.py +45 -0
  190. codex/startup/registration.py +13 -0
  191. codex/static_root/assets/VCheckbox-DSndl51k.1e28c443c3cb.js +1 -0
  192. codex/static_root/assets/VCheckbox-DSndl51k.1e28c443c3cb.js.br +0 -0
  193. codex/static_root/assets/VCheckbox-DSndl51k.1e28c443c3cb.js.gz +0 -0
  194. codex/static_root/assets/VCheckbox-DSndl51k.js +1 -0
  195. codex/static_root/assets/VCheckbox-DSndl51k.js.br +0 -0
  196. codex/static_root/assets/VCheckbox-DSndl51k.js.gz +0 -0
  197. codex/static_root/assets/VCheckboxBtn-Bu2Pf64q.d7463473d7a2.js +1 -0
  198. codex/static_root/assets/VCheckboxBtn-Bu2Pf64q.d7463473d7a2.js.br +0 -0
  199. codex/static_root/assets/VCheckboxBtn-Bu2Pf64q.d7463473d7a2.js.gz +0 -0
  200. codex/static_root/assets/VCheckboxBtn-Bu2Pf64q.js +1 -0
  201. codex/static_root/assets/VCheckboxBtn-Bu2Pf64q.js.br +0 -0
  202. codex/static_root/assets/VCheckboxBtn-Bu2Pf64q.js.gz +0 -0
  203. codex/static_root/assets/VCombobox-Uogv6Ckp.9f900e703605.js +1 -0
  204. codex/static_root/assets/VCombobox-Uogv6Ckp.9f900e703605.js.br +0 -0
  205. codex/static_root/assets/VCombobox-Uogv6Ckp.9f900e703605.js.gz +0 -0
  206. codex/static_root/assets/VCombobox-Uogv6Ckp.js +1 -0
  207. codex/static_root/assets/VCombobox-Uogv6Ckp.js.br +0 -0
  208. codex/static_root/assets/VCombobox-Uogv6Ckp.js.gz +0 -0
  209. codex/static_root/assets/VDialog-BzaGu1HN.34f52763c3f8.js +1 -0
  210. codex/static_root/assets/VDialog-BzaGu1HN.34f52763c3f8.js.br +0 -0
  211. codex/static_root/assets/VDialog-BzaGu1HN.34f52763c3f8.js.gz +0 -0
  212. codex/static_root/assets/VDialog-BzaGu1HN.js +1 -0
  213. codex/static_root/assets/VDialog-BzaGu1HN.js.br +0 -0
  214. codex/static_root/assets/VDialog-BzaGu1HN.js.gz +0 -0
  215. codex/static_root/assets/VDialog-CpWjrJ0R.610ffc6302d4.css +1 -0
  216. codex/static_root/assets/VDialog-CpWjrJ0R.610ffc6302d4.css.br +0 -0
  217. codex/static_root/assets/VDialog-CpWjrJ0R.610ffc6302d4.css.gz +0 -0
  218. codex/static_root/assets/VDialog-CpWjrJ0R.css +1 -0
  219. codex/static_root/assets/VDialog-CpWjrJ0R.css.br +0 -0
  220. codex/static_root/assets/VDialog-CpWjrJ0R.css.gz +0 -0
  221. codex/static_root/assets/VDivider-C3ikm0Ko.4938e9ced53e.js +1 -0
  222. codex/static_root/assets/VDivider-C3ikm0Ko.4938e9ced53e.js.br +0 -0
  223. codex/static_root/assets/VDivider-C3ikm0Ko.4938e9ced53e.js.gz +0 -0
  224. codex/static_root/assets/VDivider-C3ikm0Ko.js +1 -0
  225. codex/static_root/assets/VDivider-C3ikm0Ko.js.br +0 -0
  226. codex/static_root/assets/VDivider-C3ikm0Ko.js.gz +0 -0
  227. codex/static_root/assets/VExpansionPanels-AmsInZN0.5cb7c833de3d.js +1 -0
  228. codex/static_root/assets/VExpansionPanels-AmsInZN0.5cb7c833de3d.js.br +0 -0
  229. codex/static_root/assets/VExpansionPanels-AmsInZN0.5cb7c833de3d.js.gz +0 -0
  230. codex/static_root/assets/VExpansionPanels-AmsInZN0.js +1 -0
  231. codex/static_root/assets/VExpansionPanels-AmsInZN0.js.br +0 -0
  232. codex/static_root/assets/VExpansionPanels-AmsInZN0.js.gz +0 -0
  233. codex/static_root/assets/VForm-CyCdgusw.c737973a1e85.js +1 -0
  234. codex/static_root/assets/VForm-CyCdgusw.c737973a1e85.js.br +0 -0
  235. codex/static_root/assets/VForm-CyCdgusw.c737973a1e85.js.gz +0 -0
  236. codex/static_root/assets/VForm-CyCdgusw.js +1 -0
  237. codex/static_root/assets/VForm-CyCdgusw.js.br +0 -0
  238. codex/static_root/assets/VForm-CyCdgusw.js.gz +0 -0
  239. codex/static_root/assets/VRadioGroup-BF0Xjrzi.e54d2bf41bb2.js +1 -0
  240. codex/static_root/assets/VRadioGroup-BF0Xjrzi.e54d2bf41bb2.js.br +0 -0
  241. codex/static_root/assets/VRadioGroup-BF0Xjrzi.e54d2bf41bb2.js.gz +0 -0
  242. codex/static_root/assets/VRadioGroup-BF0Xjrzi.js +1 -0
  243. codex/static_root/assets/VRadioGroup-BF0Xjrzi.js.br +0 -0
  244. codex/static_root/assets/VRadioGroup-BF0Xjrzi.js.gz +0 -0
  245. codex/static_root/assets/VSelect-Dv50OIkN.390adb1fe7fa.js +1 -0
  246. codex/static_root/assets/VSelect-Dv50OIkN.390adb1fe7fa.js.br +0 -0
  247. codex/static_root/assets/VSelect-Dv50OIkN.390adb1fe7fa.js.gz +0 -0
  248. codex/static_root/assets/VSelect-Dv50OIkN.js +1 -0
  249. codex/static_root/assets/VSelect-Dv50OIkN.js.br +0 -0
  250. codex/static_root/assets/VSelect-Dv50OIkN.js.gz +0 -0
  251. codex/static_root/assets/VSelectionControl-DbKYScD5.8d2ab1ebe546.js +1 -0
  252. codex/static_root/assets/VSelectionControl-DbKYScD5.8d2ab1ebe546.js.br +0 -0
  253. codex/static_root/assets/VSelectionControl-DbKYScD5.8d2ab1ebe546.js.gz +0 -0
  254. codex/static_root/assets/VSelectionControl-DbKYScD5.js +1 -0
  255. codex/static_root/assets/VSelectionControl-DbKYScD5.js.br +0 -0
  256. codex/static_root/assets/VSelectionControl-DbKYScD5.js.gz +0 -0
  257. codex/static_root/assets/VTable-BmOfHc7J.b2e1311009d1.js +1 -0
  258. codex/static_root/assets/VTable-BmOfHc7J.b2e1311009d1.js.br +0 -0
  259. codex/static_root/assets/VTable-BmOfHc7J.b2e1311009d1.js.gz +0 -0
  260. codex/static_root/assets/VTable-BmOfHc7J.js +1 -0
  261. codex/static_root/assets/VTable-BmOfHc7J.js.br +0 -0
  262. codex/static_root/assets/VTable-BmOfHc7J.js.gz +0 -0
  263. codex/static_root/assets/VTable-CQyv0wyO.1740239d481b.css +1 -0
  264. codex/static_root/assets/VTable-CQyv0wyO.1740239d481b.css.br +0 -0
  265. codex/static_root/assets/VTable-CQyv0wyO.1740239d481b.css.gz +0 -0
  266. codex/static_root/assets/VTable-CQyv0wyO.css +1 -0
  267. codex/static_root/assets/VTable-CQyv0wyO.css.br +0 -0
  268. codex/static_root/assets/VTable-CQyv0wyO.css.gz +0 -0
  269. codex/static_root/assets/VWindowItem-BLEDgagD.4b67c4a63c59.js +1 -0
  270. codex/static_root/assets/VWindowItem-BLEDgagD.4b67c4a63c59.js.br +0 -0
  271. codex/static_root/assets/VWindowItem-BLEDgagD.4b67c4a63c59.js.gz +0 -0
  272. codex/static_root/assets/VWindowItem-BLEDgagD.js +1 -0
  273. codex/static_root/assets/VWindowItem-BLEDgagD.js.br +0 -0
  274. codex/static_root/assets/VWindowItem-BLEDgagD.js.gz +0 -0
  275. codex/static_root/assets/VWindowItem-ChYLiXSE.a9c679a2977e.css +1 -0
  276. codex/static_root/assets/VWindowItem-ChYLiXSE.a9c679a2977e.css.br +0 -0
  277. codex/static_root/assets/VWindowItem-ChYLiXSE.a9c679a2977e.css.gz +0 -0
  278. codex/static_root/assets/VWindowItem-ChYLiXSE.css +1 -0
  279. codex/static_root/assets/VWindowItem-ChYLiXSE.css.br +0 -0
  280. codex/static_root/assets/VWindowItem-ChYLiXSE.css.gz +0 -0
  281. codex/static_root/assets/admin-Bv40vYZw.8179e1ece835.js +1 -0
  282. codex/static_root/assets/admin-Bv40vYZw.8179e1ece835.js.br +0 -0
  283. codex/static_root/assets/admin-Bv40vYZw.8179e1ece835.js.gz +0 -0
  284. codex/static_root/assets/admin-Bv40vYZw.js +1 -0
  285. codex/static_root/assets/admin-Bv40vYZw.js.br +0 -0
  286. codex/static_root/assets/admin-Bv40vYZw.js.gz +0 -0
  287. codex/static_root/assets/admin-DJCVf2PA.7ba26fd73264.css +1 -0
  288. codex/static_root/assets/admin-DJCVf2PA.7ba26fd73264.css.br +0 -0
  289. codex/static_root/assets/admin-DJCVf2PA.7ba26fd73264.css.gz +0 -0
  290. codex/static_root/assets/admin-DJCVf2PA.css +1 -0
  291. codex/static_root/assets/admin-DJCVf2PA.css.br +0 -0
  292. codex/static_root/assets/admin-DJCVf2PA.css.gz +0 -0
  293. codex/static_root/assets/admin-kjMoKlqD.55a1dd908124.js +1 -0
  294. codex/static_root/assets/admin-kjMoKlqD.55a1dd908124.js.br +0 -0
  295. codex/static_root/assets/admin-kjMoKlqD.55a1dd908124.js.gz +0 -0
  296. codex/static_root/assets/admin-kjMoKlqD.js +1 -0
  297. codex/static_root/assets/admin-kjMoKlqD.js.br +0 -0
  298. codex/static_root/assets/admin-kjMoKlqD.js.gz +0 -0
  299. codex/static_root/assets/admin-menu-BNpuOmbI.e1f62ba483cd.js +1 -0
  300. codex/static_root/assets/admin-menu-BNpuOmbI.e1f62ba483cd.js.br +0 -0
  301. codex/static_root/assets/admin-menu-BNpuOmbI.e1f62ba483cd.js.gz +0 -0
  302. codex/static_root/assets/admin-menu-BNpuOmbI.js +1 -0
  303. codex/static_root/assets/admin-menu-BNpuOmbI.js.br +0 -0
  304. codex/static_root/assets/admin-menu-BNpuOmbI.js.gz +0 -0
  305. codex/static_root/assets/admin-menu-hpyUS8ku.18284a11084d.css +1 -0
  306. codex/static_root/assets/admin-menu-hpyUS8ku.18284a11084d.css.br +0 -0
  307. codex/static_root/assets/admin-menu-hpyUS8ku.18284a11084d.css.gz +0 -0
  308. codex/static_root/assets/admin-menu-hpyUS8ku.css +1 -0
  309. codex/static_root/assets/admin-menu-hpyUS8ku.css.br +0 -0
  310. codex/static_root/assets/admin-menu-hpyUS8ku.css.gz +0 -0
  311. codex/static_root/assets/admin-settings-button-progress-Cks9_KN-.a592809d4008.css +1 -0
  312. codex/static_root/assets/admin-settings-button-progress-Cks9_KN-.css +1 -0
  313. codex/static_root/assets/admin-settings-button-progress-RfwaqLl2.4cdd37d0dd16.js +1 -0
  314. codex/static_root/assets/admin-settings-button-progress-RfwaqLl2.4cdd37d0dd16.js.br +0 -0
  315. codex/static_root/assets/admin-settings-button-progress-RfwaqLl2.4cdd37d0dd16.js.gz +0 -0
  316. codex/static_root/assets/admin-settings-button-progress-RfwaqLl2.js +1 -0
  317. codex/static_root/assets/admin-settings-button-progress-RfwaqLl2.js.br +0 -0
  318. codex/static_root/assets/admin-settings-button-progress-RfwaqLl2.js.gz +0 -0
  319. codex/static_root/assets/browser-Cdi7U5ku.bab9fccf0326.css +1 -0
  320. codex/static_root/assets/browser-Cdi7U5ku.bab9fccf0326.css.br +0 -0
  321. codex/static_root/assets/browser-Cdi7U5ku.bab9fccf0326.css.gz +0 -0
  322. codex/static_root/assets/browser-Cdi7U5ku.css +1 -0
  323. codex/static_root/assets/browser-Cdi7U5ku.css.br +0 -0
  324. codex/static_root/assets/browser-Cdi7U5ku.css.gz +0 -0
  325. codex/static_root/assets/browser-plYso4v5.87ef04b44d37.js +1 -0
  326. codex/static_root/assets/browser-plYso4v5.87ef04b44d37.js.br +0 -0
  327. codex/static_root/assets/browser-plYso4v5.87ef04b44d37.js.gz +0 -0
  328. codex/static_root/assets/browser-plYso4v5.js +1 -0
  329. codex/static_root/assets/browser-plYso4v5.js.br +0 -0
  330. codex/static_root/assets/browser-plYso4v5.js.gz +0 -0
  331. codex/static_root/assets/change-password-dialog-DyhQwNv1.26383853ccc0.js +1 -0
  332. codex/static_root/assets/change-password-dialog-DyhQwNv1.26383853ccc0.js.br +0 -0
  333. codex/static_root/assets/change-password-dialog-DyhQwNv1.26383853ccc0.js.gz +0 -0
  334. codex/static_root/assets/change-password-dialog-DyhQwNv1.js +1 -0
  335. codex/static_root/assets/change-password-dialog-DyhQwNv1.js.br +0 -0
  336. codex/static_root/assets/change-password-dialog-DyhQwNv1.js.gz +0 -0
  337. codex/static_root/assets/confirm-dialog-B7ndwV5M.d1f0728d4bd0.js +1 -0
  338. codex/static_root/assets/confirm-dialog-B7ndwV5M.d1f0728d4bd0.js.br +0 -0
  339. codex/static_root/assets/confirm-dialog-B7ndwV5M.d1f0728d4bd0.js.gz +0 -0
  340. codex/static_root/assets/confirm-dialog-B7ndwV5M.js +1 -0
  341. codex/static_root/assets/confirm-dialog-B7ndwV5M.js.br +0 -0
  342. codex/static_root/assets/confirm-dialog-B7ndwV5M.js.gz +0 -0
  343. codex/static_root/assets/confirm-dialog-YfC8mRQA.be37e8f67e0f.css +1 -0
  344. codex/static_root/assets/confirm-dialog-YfC8mRQA.css +1 -0
  345. codex/static_root/assets/datetime-column-Bt7J1qEf.css +1 -0
  346. codex/static_root/assets/datetime-column-Bt7J1qEf.css.br +0 -0
  347. codex/static_root/assets/datetime-column-Bt7J1qEf.d83164b4d4cb.css +1 -0
  348. codex/static_root/assets/datetime-column-Bt7J1qEf.d83164b4d4cb.css.br +0 -0
  349. codex/static_root/assets/datetime-column-DANpNGGe.13985ff7d484.js +1 -0
  350. codex/static_root/assets/datetime-column-DANpNGGe.13985ff7d484.js.br +0 -0
  351. codex/static_root/assets/datetime-column-DANpNGGe.13985ff7d484.js.gz +0 -0
  352. codex/static_root/assets/datetime-column-DANpNGGe.js +1 -0
  353. codex/static_root/assets/datetime-column-DANpNGGe.js.br +0 -0
  354. codex/static_root/assets/datetime-column-DANpNGGe.js.gz +0 -0
  355. codex/static_root/assets/filter-Dhe8cVmt.ad92d3b618e3.js +1 -0
  356. codex/static_root/assets/filter-Dhe8cVmt.ad92d3b618e3.js.br +0 -0
  357. codex/static_root/assets/filter-Dhe8cVmt.ad92d3b618e3.js.gz +0 -0
  358. codex/static_root/assets/filter-Dhe8cVmt.js +1 -0
  359. codex/static_root/assets/filter-Dhe8cVmt.js.br +0 -0
  360. codex/static_root/assets/filter-Dhe8cVmt.js.gz +0 -0
  361. codex/static_root/assets/flag-tab-BZ9S7U8D.0b814b215567.js +1 -0
  362. codex/static_root/assets/flag-tab-BZ9S7U8D.0b814b215567.js.br +0 -0
  363. codex/static_root/assets/flag-tab-BZ9S7U8D.0b814b215567.js.gz +0 -0
  364. codex/static_root/assets/flag-tab-BZ9S7U8D.js +1 -0
  365. codex/static_root/assets/flag-tab-BZ9S7U8D.js.br +0 -0
  366. codex/static_root/assets/flag-tab-BZ9S7U8D.js.gz +0 -0
  367. codex/static_root/assets/forwardRefs-B_sUWZn6.5114f206ca9c.css +1 -0
  368. codex/static_root/assets/forwardRefs-B_sUWZn6.5114f206ca9c.css.br +0 -0
  369. codex/static_root/assets/forwardRefs-B_sUWZn6.5114f206ca9c.css.gz +0 -0
  370. codex/static_root/assets/forwardRefs-B_sUWZn6.css +1 -0
  371. codex/static_root/assets/forwardRefs-B_sUWZn6.css.br +0 -0
  372. codex/static_root/assets/forwardRefs-B_sUWZn6.css.gz +0 -0
  373. codex/static_root/assets/forwardRefs-Z0d4Mnc7.deb4e7a1b8b5.js +1 -0
  374. codex/static_root/assets/forwardRefs-Z0d4Mnc7.deb4e7a1b8b5.js.br +0 -0
  375. codex/static_root/assets/forwardRefs-Z0d4Mnc7.deb4e7a1b8b5.js.gz +0 -0
  376. codex/static_root/assets/forwardRefs-Z0d4Mnc7.js +1 -0
  377. codex/static_root/assets/forwardRefs-Z0d4Mnc7.js.br +0 -0
  378. codex/static_root/assets/forwardRefs-Z0d4Mnc7.js.gz +0 -0
  379. codex/static_root/assets/group-tab-B0ASBB3_.8e10b90ff052.js +1 -0
  380. codex/static_root/assets/group-tab-B0ASBB3_.8e10b90ff052.js.br +0 -0
  381. codex/static_root/assets/group-tab-B0ASBB3_.8e10b90ff052.js.gz +0 -0
  382. codex/static_root/assets/group-tab-B0ASBB3_.js +1 -0
  383. codex/static_root/assets/group-tab-B0ASBB3_.js.br +0 -0
  384. codex/static_root/assets/group-tab-B0ASBB3_.js.gz +0 -0
  385. codex/static_root/assets/group-tab-CQ_Qw6h8.078d0a9225ba.css +1 -0
  386. codex/static_root/assets/group-tab-CQ_Qw6h8.078d0a9225ba.css.br +0 -0
  387. codex/static_root/assets/group-tab-CQ_Qw6h8.078d0a9225ba.css.gz +0 -0
  388. codex/static_root/assets/group-tab-CQ_Qw6h8.css +1 -0
  389. codex/static_root/assets/group-tab-CQ_Qw6h8.css.br +0 -0
  390. codex/static_root/assets/group-tab-CQ_Qw6h8.css.gz +0 -0
  391. codex/static_root/assets/http-error-BP-mMZsK.72c4d00b40d2.js +1 -0
  392. codex/static_root/assets/http-error-BP-mMZsK.72c4d00b40d2.js.br +0 -0
  393. codex/static_root/assets/http-error-BP-mMZsK.72c4d00b40d2.js.gz +0 -0
  394. codex/static_root/assets/http-error-BP-mMZsK.js +1 -0
  395. codex/static_root/assets/http-error-BP-mMZsK.js.br +0 -0
  396. codex/static_root/assets/http-error-BP-mMZsK.js.gz +0 -0
  397. codex/static_root/assets/http-error-CB3k5P-n.82d886ac81c7.css +1 -0
  398. codex/static_root/assets/http-error-CB3k5P-n.82d886ac81c7.css.br +0 -0
  399. codex/static_root/assets/http-error-CB3k5P-n.82d886ac81c7.css.gz +0 -0
  400. codex/static_root/assets/http-error-CB3k5P-n.css +1 -0
  401. codex/static_root/assets/http-error-CB3k5P-n.css.br +0 -0
  402. codex/static_root/assets/http-error-CB3k5P-n.css.gz +0 -0
  403. codex/static_root/assets/index-Cu9nQXJD.49795921eada.js +1 -0
  404. codex/static_root/assets/index-Cu9nQXJD.49795921eada.js.br +0 -0
  405. codex/static_root/assets/index-Cu9nQXJD.49795921eada.js.gz +0 -0
  406. codex/static_root/assets/index-Cu9nQXJD.js +1 -0
  407. codex/static_root/assets/index-Cu9nQXJD.js.br +0 -0
  408. codex/static_root/assets/index-Cu9nQXJD.js.gz +0 -0
  409. codex/static_root/assets/library-tab-8g2eSuGN.846cc1674a67.js +1 -0
  410. codex/static_root/assets/library-tab-8g2eSuGN.846cc1674a67.js.br +0 -0
  411. codex/static_root/assets/library-tab-8g2eSuGN.846cc1674a67.js.gz +0 -0
  412. codex/static_root/assets/library-tab-8g2eSuGN.js +1 -0
  413. codex/static_root/assets/library-tab-8g2eSuGN.js.br +0 -0
  414. codex/static_root/assets/library-tab-8g2eSuGN.js.gz +0 -0
  415. codex/static_root/assets/library-tab-D9lxhAqv.02f7064c20f3.css +1 -0
  416. codex/static_root/assets/library-tab-D9lxhAqv.02f7064c20f3.css.br +0 -0
  417. codex/static_root/assets/library-tab-D9lxhAqv.02f7064c20f3.css.gz +0 -0
  418. codex/static_root/assets/library-tab-D9lxhAqv.css +1 -0
  419. codex/static_root/assets/library-tab-D9lxhAqv.css.br +0 -0
  420. codex/static_root/assets/library-tab-D9lxhAqv.css.gz +0 -0
  421. codex/static_root/assets/main-B8_0rUnw.a9be0875ae25.css +5 -0
  422. codex/static_root/assets/main-B8_0rUnw.a9be0875ae25.css.br +0 -0
  423. codex/static_root/assets/main-B8_0rUnw.a9be0875ae25.css.gz +0 -0
  424. codex/static_root/assets/main-B8_0rUnw.css +5 -0
  425. codex/static_root/assets/main-B8_0rUnw.css.br +0 -0
  426. codex/static_root/assets/main-B8_0rUnw.css.gz +0 -0
  427. codex/static_root/assets/main-BoAlbVoF.e41ba211717d.js +39 -0
  428. codex/static_root/assets/main-BoAlbVoF.e41ba211717d.js.br +0 -0
  429. codex/static_root/assets/main-BoAlbVoF.e41ba211717d.js.gz +0 -0
  430. codex/static_root/assets/main-BoAlbVoF.js +39 -0
  431. codex/static_root/assets/main-BoAlbVoF.js.br +0 -0
  432. codex/static_root/assets/main-BoAlbVoF.js.gz +0 -0
  433. codex/static_root/assets/pager-full-pdf-DShiSKPO.026946648650.js +1 -0
  434. codex/static_root/assets/pager-full-pdf-DShiSKPO.026946648650.js.br +0 -0
  435. codex/static_root/assets/pager-full-pdf-DShiSKPO.026946648650.js.gz +0 -0
  436. codex/static_root/assets/pager-full-pdf-DShiSKPO.js +1 -0
  437. codex/static_root/assets/pager-full-pdf-DShiSKPO.js.br +0 -0
  438. codex/static_root/assets/pager-full-pdf-DShiSKPO.js.gz +0 -0
  439. codex/static_root/assets/pagination-toolbar-741OafNw.4f9155469274.css +1 -0
  440. codex/static_root/assets/pagination-toolbar-741OafNw.4f9155469274.css.br +0 -0
  441. codex/static_root/assets/pagination-toolbar-741OafNw.4f9155469274.css.gz +0 -0
  442. codex/static_root/assets/pagination-toolbar-741OafNw.css +1 -0
  443. codex/static_root/assets/pagination-toolbar-741OafNw.css.br +0 -0
  444. codex/static_root/assets/pagination-toolbar-741OafNw.css.gz +0 -0
  445. codex/static_root/assets/pagination-toolbar-DGfRDeRW.c3f463ad6edd.js +1 -0
  446. codex/static_root/assets/pagination-toolbar-DGfRDeRW.c3f463ad6edd.js.br +0 -0
  447. codex/static_root/assets/pagination-toolbar-DGfRDeRW.c3f463ad6edd.js.gz +0 -0
  448. codex/static_root/assets/pagination-toolbar-DGfRDeRW.js +1 -0
  449. codex/static_root/assets/pagination-toolbar-DGfRDeRW.js.br +0 -0
  450. codex/static_root/assets/pagination-toolbar-DGfRDeRW.js.gz +0 -0
  451. codex/static_root/assets/pdf-doc-D6Meu4vZ.91b43d057670.js +372 -0
  452. codex/static_root/assets/pdf-doc-D6Meu4vZ.91b43d057670.js.br +0 -0
  453. codex/static_root/assets/pdf-doc-D6Meu4vZ.91b43d057670.js.gz +0 -0
  454. codex/static_root/assets/pdf-doc-D6Meu4vZ.js +372 -0
  455. codex/static_root/assets/pdf-doc-D6Meu4vZ.js.br +0 -0
  456. codex/static_root/assets/pdf-doc-D6Meu4vZ.js.gz +0 -0
  457. codex/static_root/assets/reader-CptqnqBZ.340bc756e164.js +2 -0
  458. codex/static_root/assets/reader-CptqnqBZ.340bc756e164.js.br +0 -0
  459. codex/static_root/assets/reader-CptqnqBZ.340bc756e164.js.gz +0 -0
  460. codex/static_root/assets/reader-CptqnqBZ.js +2 -0
  461. codex/static_root/assets/reader-CptqnqBZ.js.br +0 -0
  462. codex/static_root/assets/reader-CptqnqBZ.js.gz +0 -0
  463. codex/static_root/assets/reader-LwL05rgA.c022ad3b7b94.css +1 -0
  464. codex/static_root/assets/reader-LwL05rgA.c022ad3b7b94.css.br +0 -0
  465. codex/static_root/assets/reader-LwL05rgA.c022ad3b7b94.css.gz +0 -0
  466. codex/static_root/assets/reader-LwL05rgA.css +1 -0
  467. codex/static_root/assets/reader-LwL05rgA.css.br +0 -0
  468. codex/static_root/assets/reader-LwL05rgA.css.gz +0 -0
  469. codex/static_root/assets/relation-chips-CAXZIswb.e991a259ce59.js +1 -0
  470. codex/static_root/assets/relation-chips-CAXZIswb.e991a259ce59.js.br +0 -0
  471. codex/static_root/assets/relation-chips-CAXZIswb.e991a259ce59.js.gz +0 -0
  472. codex/static_root/assets/relation-chips-CAXZIswb.js +1 -0
  473. codex/static_root/assets/relation-chips-CAXZIswb.js.br +0 -0
  474. codex/static_root/assets/relation-chips-CAXZIswb.js.gz +0 -0
  475. codex/static_root/assets/relation-chips-CcFgPQOM.0b468249b62e.css +1 -0
  476. codex/static_root/assets/relation-chips-CcFgPQOM.0b468249b62e.css.br +0 -0
  477. codex/static_root/assets/relation-chips-CcFgPQOM.0b468249b62e.css.gz +0 -0
  478. codex/static_root/assets/relation-chips-CcFgPQOM.css +1 -0
  479. codex/static_root/assets/relation-chips-CcFgPQOM.css.br +0 -0
  480. codex/static_root/assets/relation-chips-CcFgPQOM.css.gz +0 -0
  481. codex/static_root/assets/settings-drawer-B4gD41g6.82718694498e.js +2 -0
  482. codex/static_root/assets/settings-drawer-B4gD41g6.82718694498e.js.br +0 -0
  483. codex/static_root/assets/settings-drawer-B4gD41g6.82718694498e.js.gz +0 -0
  484. codex/static_root/assets/settings-drawer-B4gD41g6.js +2 -0
  485. codex/static_root/assets/settings-drawer-B4gD41g6.js.br +0 -0
  486. codex/static_root/assets/settings-drawer-B4gD41g6.js.gz +0 -0
  487. codex/static_root/assets/settings-drawer-CpS_aX4Z.9d4d9533d033.css +1 -0
  488. codex/static_root/assets/settings-drawer-CpS_aX4Z.9d4d9533d033.css.br +0 -0
  489. codex/static_root/assets/settings-drawer-CpS_aX4Z.9d4d9533d033.css.gz +0 -0
  490. codex/static_root/assets/settings-drawer-CpS_aX4Z.css +1 -0
  491. codex/static_root/assets/settings-drawer-CpS_aX4Z.css.br +0 -0
  492. codex/static_root/assets/settings-drawer-CpS_aX4Z.css.gz +0 -0
  493. codex/static_root/assets/ssrBoot-O6yTJ_UV.7180d77d283e.js +1 -0
  494. codex/static_root/assets/ssrBoot-O6yTJ_UV.7180d77d283e.js.br +0 -0
  495. codex/static_root/assets/ssrBoot-O6yTJ_UV.7180d77d283e.js.gz +0 -0
  496. codex/static_root/assets/ssrBoot-O6yTJ_UV.js +1 -0
  497. codex/static_root/assets/ssrBoot-O6yTJ_UV.js.br +0 -0
  498. codex/static_root/assets/ssrBoot-O6yTJ_UV.js.gz +0 -0
  499. codex/static_root/assets/stats-tab-BZjOg19A.afb2e6b0d648.js +1 -0
  500. codex/static_root/assets/stats-tab-BZjOg19A.afb2e6b0d648.js.br +0 -0
  501. codex/static_root/assets/stats-tab-BZjOg19A.afb2e6b0d648.js.gz +0 -0
  502. codex/static_root/assets/stats-tab-BZjOg19A.js +1 -0
  503. codex/static_root/assets/stats-tab-BZjOg19A.js.br +0 -0
  504. codex/static_root/assets/stats-tab-BZjOg19A.js.gz +0 -0
  505. codex/static_root/assets/stats-tab-Dpqh5pF9.8dba36f90032.css +1 -0
  506. codex/static_root/assets/stats-tab-Dpqh5pF9.8dba36f90032.css.br +0 -0
  507. codex/static_root/assets/stats-tab-Dpqh5pF9.8dba36f90032.css.gz +0 -0
  508. codex/static_root/assets/stats-tab-Dpqh5pF9.css +1 -0
  509. codex/static_root/assets/stats-tab-Dpqh5pF9.css.br +0 -0
  510. codex/static_root/assets/stats-tab-Dpqh5pF9.css.gz +0 -0
  511. codex/static_root/assets/task-tab-GP2jPkRE.cfdfb9396ec4.js +1 -0
  512. codex/static_root/assets/task-tab-GP2jPkRE.cfdfb9396ec4.js.br +0 -0
  513. codex/static_root/assets/task-tab-GP2jPkRE.cfdfb9396ec4.js.gz +0 -0
  514. codex/static_root/assets/task-tab-GP2jPkRE.js +1 -0
  515. codex/static_root/assets/task-tab-GP2jPkRE.js.br +0 -0
  516. codex/static_root/assets/task-tab-GP2jPkRE.js.gz +0 -0
  517. codex/static_root/assets/unauthorized-BBwsmi0O.19d4882b821d.css +1 -0
  518. codex/static_root/assets/unauthorized-BBwsmi0O.19d4882b821d.css.br +0 -0
  519. codex/static_root/assets/unauthorized-BBwsmi0O.19d4882b821d.css.gz +0 -0
  520. codex/static_root/assets/unauthorized-BBwsmi0O.css +1 -0
  521. codex/static_root/assets/unauthorized-BBwsmi0O.css.br +0 -0
  522. codex/static_root/assets/unauthorized-BBwsmi0O.css.gz +0 -0
  523. codex/static_root/assets/unauthorized-Bo3ThIrX.12d2efd95d7d.js +1 -0
  524. codex/static_root/assets/unauthorized-Bo3ThIrX.12d2efd95d7d.js.br +0 -0
  525. codex/static_root/assets/unauthorized-Bo3ThIrX.12d2efd95d7d.js.gz +0 -0
  526. codex/static_root/assets/unauthorized-Bo3ThIrX.js +1 -0
  527. codex/static_root/assets/unauthorized-Bo3ThIrX.js.br +0 -0
  528. codex/static_root/assets/unauthorized-Bo3ThIrX.js.gz +0 -0
  529. codex/static_root/assets/user-tab-BQ82qBg3.17190dc83452.js +1 -0
  530. codex/static_root/assets/user-tab-BQ82qBg3.17190dc83452.js.br +0 -0
  531. codex/static_root/assets/user-tab-BQ82qBg3.17190dc83452.js.gz +0 -0
  532. codex/static_root/assets/user-tab-BQ82qBg3.js +1 -0
  533. codex/static_root/assets/user-tab-BQ82qBg3.js.br +0 -0
  534. codex/static_root/assets/user-tab-BQ82qBg3.js.gz +0 -0
  535. codex/static_root/img/folder.83168d8d3119.svg +1 -0
  536. codex/static_root/img/folder.83168d8d3119.svg.br +1 -0
  537. codex/static_root/img/folder.83168d8d3119.svg.gz +0 -0
  538. codex/static_root/img/folder.svg +1 -1
  539. codex/static_root/img/folder.svg.br +0 -0
  540. codex/static_root/img/folder.svg.gz +0 -0
  541. codex/static_root/img/imprint.3ca7a779b949.svg +1 -0
  542. codex/static_root/img/imprint.3ca7a779b949.svg.br +0 -0
  543. codex/static_root/img/imprint.3ca7a779b949.svg.gz +0 -0
  544. codex/static_root/img/imprint.svg +1 -1
  545. codex/static_root/img/imprint.svg.br +0 -0
  546. codex/static_root/img/imprint.svg.gz +0 -0
  547. codex/static_root/img/logo-maskable.aeef5c2fffc8.svg +1 -0
  548. codex/static_root/img/logo-maskable.aeef5c2fffc8.svg.br +0 -0
  549. codex/static_root/img/logo-maskable.aeef5c2fffc8.svg.gz +0 -0
  550. codex/static_root/img/logo-maskable.svg +1 -1
  551. codex/static_root/img/logo-maskable.svg.br +0 -0
  552. codex/static_root/img/logo-maskable.svg.gz +0 -0
  553. codex/static_root/img/logo.00c902973831.svg +1 -0
  554. codex/static_root/img/logo.00c902973831.svg.br +0 -0
  555. codex/static_root/img/logo.00c902973831.svg.gz +0 -0
  556. codex/static_root/img/logo.svg +1 -1
  557. codex/static_root/img/logo.svg.br +0 -0
  558. codex/static_root/img/logo.svg.gz +0 -0
  559. codex/static_root/img/missing-cover-165.f4bb7740084c.webp +0 -0
  560. codex/static_root/img/missing-cover-165.webp +0 -0
  561. codex/static_root/img/missing-cover.7329518c5972.svg +1 -0
  562. codex/static_root/img/missing-cover.7329518c5972.svg.br +0 -0
  563. codex/static_root/img/missing-cover.7329518c5972.svg.gz +0 -0
  564. codex/static_root/img/missing-cover.svg +1 -1
  565. codex/static_root/img/missing-cover.svg.br +0 -0
  566. codex/static_root/img/missing-cover.svg.gz +0 -0
  567. codex/static_root/img/series.b092bbac0c2a.svg +1 -0
  568. codex/static_root/img/series.b092bbac0c2a.svg.br +0 -0
  569. codex/static_root/img/series.b092bbac0c2a.svg.gz +0 -0
  570. codex/static_root/img/series.svg +1 -1
  571. codex/static_root/img/series.svg.br +0 -0
  572. codex/static_root/img/series.svg.gz +0 -0
  573. codex/static_root/img/story-arc.884f7b1d95bd.svg +1 -0
  574. codex/static_root/img/story-arc.884f7b1d95bd.svg.br +0 -0
  575. codex/static_root/img/story-arc.884f7b1d95bd.svg.gz +0 -0
  576. codex/static_root/img/story-arc.svg +1 -1
  577. codex/static_root/img/story-arc.svg.br +0 -0
  578. codex/static_root/img/story-arc.svg.gz +0 -0
  579. codex/static_root/img/volume.516ec0c3018d.svg +1 -0
  580. codex/static_root/img/volume.516ec0c3018d.svg.br +0 -0
  581. codex/static_root/img/volume.516ec0c3018d.svg.gz +0 -0
  582. codex/static_root/img/volume.svg +1 -1
  583. codex/static_root/img/volume.svg.br +0 -0
  584. codex/static_root/img/volume.svg.gz +0 -0
  585. codex/static_root/manifest.0dc91d0dee6d.json +760 -0
  586. codex/static_root/manifest.0dc91d0dee6d.json.br +0 -0
  587. codex/static_root/manifest.0dc91d0dee6d.json.gz +0 -0
  588. codex/static_root/manifest.json +339 -336
  589. codex/static_root/manifest.json.br +0 -0
  590. codex/static_root/manifest.json.gz +0 -0
  591. codex/static_root/staticfiles.json +1 -1
  592. codex/templates/headers-script-globals.html +1 -0
  593. codex/urls/api/browser.py +10 -1
  594. codex/urls/converters.py +2 -5
  595. codex/urls/root.py +1 -1
  596. codex/util.py +14 -8
  597. codex/views/admin/api_key.py +1 -1
  598. codex/views/admin/flag.py +10 -9
  599. codex/views/admin/group.py +5 -3
  600. codex/views/admin/library.py +12 -9
  601. codex/views/admin/permissions.py +21 -0
  602. codex/views/admin/stats.py +6 -8
  603. codex/views/admin/tasks.py +47 -45
  604. codex/views/admin/user.py +5 -3
  605. codex/views/auth.py +29 -11
  606. codex/views/bookmark.py +25 -14
  607. codex/views/browser/annotate/bookmark.py +0 -3
  608. codex/views/browser/annotate/card.py +20 -5
  609. codex/views/browser/annotate/order.py +2 -6
  610. codex/views/browser/bookmark.py +10 -7
  611. codex/views/browser/breadcrumbs.py +7 -6
  612. codex/views/browser/browser.py +16 -16
  613. codex/views/browser/choices.py +81 -65
  614. codex/views/browser/cover.py +21 -19
  615. codex/views/browser/download.py +5 -5
  616. codex/views/browser/filters/bookmark.py +5 -0
  617. codex/views/browser/filters/field.py +3 -3
  618. codex/views/browser/filters/filter.py +3 -5
  619. codex/views/browser/filters/group.py +5 -5
  620. codex/views/browser/filters/search/field/column.py +13 -9
  621. codex/views/browser/filters/search/field/expression.py +1 -3
  622. codex/views/browser/filters/search/field/filter.py +2 -4
  623. codex/views/browser/filters/search/field/optimize.py +1 -1
  624. codex/views/browser/filters/search/field/parse.py +28 -7
  625. codex/views/browser/filters/search/fts.py +3 -4
  626. codex/views/browser/filters/search/parse.py +26 -26
  627. codex/views/browser/group_mtime.py +13 -10
  628. codex/views/browser/metadata/__init__.py +90 -1
  629. codex/views/browser/metadata/annotate.py +13 -27
  630. codex/views/browser/metadata/const.py +83 -0
  631. codex/views/browser/metadata/copy_intersections.py +14 -9
  632. codex/views/browser/metadata/query_intersections.py +67 -48
  633. codex/views/browser/mtime.py +4 -7
  634. codex/views/browser/order_by.py +4 -1
  635. codex/views/browser/page_in_bounds.py +5 -6
  636. codex/views/browser/paginate.py +3 -5
  637. codex/views/browser/params.py +3 -20
  638. codex/views/browser/settings.py +18 -4
  639. codex/views/browser/title.py +9 -5
  640. codex/views/browser/validate.py +6 -8
  641. codex/views/const.py +11 -9
  642. codex/views/download.py +2 -2
  643. codex/views/error.py +1 -1
  644. codex/views/exceptions.py +82 -0
  645. codex/views/frontend.py +8 -18
  646. codex/views/lazy_import.py +24 -0
  647. codex/views/mixins.py +34 -12
  648. codex/views/opds/auth.py +2 -2
  649. codex/views/opds/authentication_v1.py +2 -1
  650. codex/views/opds/const.py +1 -1
  651. codex/views/opds/urls.py +2 -1
  652. codex/views/opds/util.py +14 -41
  653. codex/views/opds/v1/entry/entry.py +12 -15
  654. codex/views/opds/v1/entry/links.py +15 -19
  655. codex/views/opds/v1/facets.py +8 -5
  656. codex/views/opds/v1/feed.py +23 -22
  657. codex/views/opds/v1/links.py +3 -7
  658. codex/views/opds/v1/opensearch_v1.py +7 -4
  659. codex/views/opds/v2/feed.py +13 -13
  660. codex/views/opds/v2/href.py +17 -12
  661. codex/views/opds/v2/links.py +3 -1
  662. codex/views/opds/v2/progression.py +31 -15
  663. codex/views/opds/v2/publications.py +18 -17
  664. codex/views/opds/v2/top_links.py +7 -2
  665. codex/views/public.py +12 -15
  666. codex/views/reader/arcs.py +143 -74
  667. codex/views/reader/books.py +72 -97
  668. codex/views/reader/page.py +13 -9
  669. codex/views/reader/params.py +32 -98
  670. codex/views/reader/reader.py +18 -73
  671. codex/views/reader/settings.py +4 -2
  672. codex/views/session.py +12 -19
  673. codex/views/settings.py +4 -9
  674. codex/views/template.py +8 -4
  675. codex/views/timezone.py +4 -5
  676. codex/views/util.py +3 -24
  677. codex/views/version.py +5 -3
  678. codex/websockets/consumers.py +7 -7
  679. codex/websockets/listener.py +4 -5
  680. codex-1.8.0a2.dist-info/METADATA +593 -0
  681. codex-1.8.0a2.dist-info/RECORD +1098 -0
  682. codex-1.8.0a2.dist-info/WHEEL +4 -0
  683. codex-1.8.0a2.dist-info/entry_points.txt +2 -0
  684. codex/db.py +0 -134
  685. codex/exceptions.py +0 -88
  686. codex/librarian/README.md +0 -4
  687. codex/librarian/delayed_taskd.py +0 -21
  688. codex/librarian/importer/__init__.py +0 -1
  689. codex/librarian/importer/aggregate.py +0 -256
  690. codex/librarian/importer/cache.py +0 -90
  691. codex/librarian/importer/const.py +0 -244
  692. codex/librarian/importer/create_comics.py +0 -139
  693. codex/librarian/importer/create_covers.py +0 -96
  694. codex/librarian/importer/create_fks.py +0 -346
  695. codex/librarian/importer/deleted.py +0 -138
  696. codex/librarian/importer/extract.py +0 -284
  697. codex/librarian/importer/failed_imports.py +0 -165
  698. codex/librarian/importer/importer.py +0 -101
  699. codex/librarian/importer/importerd.py +0 -122
  700. codex/librarian/importer/init.py +0 -264
  701. codex/librarian/importer/link_comics.py +0 -270
  702. codex/librarian/importer/link_covers.py +0 -73
  703. codex/librarian/importer/moved.py +0 -368
  704. codex/librarian/importer/query_covers.py +0 -53
  705. codex/librarian/importer/query_fks.py +0 -653
  706. codex/librarian/importer/status.py +0 -29
  707. codex/librarian/importer/tasks.py +0 -55
  708. codex/librarian/janitor/__init__.py +0 -1
  709. codex/librarian/janitor/cleanup.py +0 -167
  710. codex/librarian/janitor/failed_imports.py +0 -27
  711. codex/librarian/janitor/integrity.py +0 -378
  712. codex/librarian/janitor/janitor.py +0 -161
  713. codex/librarian/janitor/latest_version.py +0 -55
  714. codex/librarian/janitor/scheduled_time.py +0 -12
  715. codex/librarian/janitor/status.py +0 -22
  716. codex/librarian/janitor/tasks.py +0 -109
  717. codex/librarian/janitor/update.py +0 -109
  718. codex/librarian/janitor/vacuum.py +0 -51
  719. codex/librarian/search/__init__.py +0 -1
  720. codex/librarian/search/optimize.py +0 -43
  721. codex/librarian/search/remove.py +0 -53
  722. codex/librarian/search/searchd.py +0 -28
  723. codex/librarian/search/status.py +0 -13
  724. codex/librarian/search/tasks.py +0 -37
  725. codex/librarian/search/update.py +0 -305
  726. codex/librarian/watchdog/README.md +0 -11
  727. codex/logger/__init__.py +0 -1
  728. codex/logger/formatter.py +0 -36
  729. codex/logger/logger.py +0 -46
  730. codex/logger/loggerd.py +0 -102
  731. codex/logger/mp_queue.py +0 -5
  732. codex/logger_base.py +0 -12
  733. codex/memory.py +0 -56
  734. codex/permissions.py +0 -19
  735. codex/registration.py +0 -16
  736. codex/serializers/README.md +0 -4
  737. codex/settings/README.md +0 -4
  738. codex/settings/settings.py +0 -389
  739. codex/startup.py +0 -182
  740. codex/static_root/assets/VCheckbox-DraWPvy6.30c95a5ce5e6.js +0 -1
  741. codex/static_root/assets/VCheckbox-DraWPvy6.30c95a5ce5e6.js.br +0 -0
  742. codex/static_root/assets/VCheckbox-DraWPvy6.30c95a5ce5e6.js.gz +0 -0
  743. codex/static_root/assets/VCheckbox-DraWPvy6.js +0 -1
  744. codex/static_root/assets/VCheckbox-DraWPvy6.js.br +0 -0
  745. codex/static_root/assets/VCheckbox-DraWPvy6.js.gz +0 -0
  746. codex/static_root/assets/VCheckboxBtn-Bxf1MS02.f38524c2448d.js +0 -1
  747. codex/static_root/assets/VCheckboxBtn-Bxf1MS02.f38524c2448d.js.br +0 -0
  748. codex/static_root/assets/VCheckboxBtn-Bxf1MS02.f38524c2448d.js.gz +0 -0
  749. codex/static_root/assets/VCheckboxBtn-Bxf1MS02.js +0 -1
  750. codex/static_root/assets/VCheckboxBtn-Bxf1MS02.js.br +0 -0
  751. codex/static_root/assets/VCheckboxBtn-Bxf1MS02.js.gz +0 -0
  752. codex/static_root/assets/VCombobox-DKyNgHNV.b4e08dd5606d.js +0 -1
  753. codex/static_root/assets/VCombobox-DKyNgHNV.b4e08dd5606d.js.br +0 -0
  754. codex/static_root/assets/VCombobox-DKyNgHNV.b4e08dd5606d.js.gz +0 -0
  755. codex/static_root/assets/VCombobox-DKyNgHNV.js +0 -1
  756. codex/static_root/assets/VCombobox-DKyNgHNV.js.br +0 -0
  757. codex/static_root/assets/VCombobox-DKyNgHNV.js.gz +0 -0
  758. codex/static_root/assets/VDialog-C_zlnjF1.6c58e08b5374.css +0 -1
  759. codex/static_root/assets/VDialog-C_zlnjF1.6c58e08b5374.css.br +0 -0
  760. codex/static_root/assets/VDialog-C_zlnjF1.6c58e08b5374.css.gz +0 -0
  761. codex/static_root/assets/VDialog-C_zlnjF1.css +0 -1
  762. codex/static_root/assets/VDialog-C_zlnjF1.css.br +0 -0
  763. codex/static_root/assets/VDialog-C_zlnjF1.css.gz +0 -0
  764. codex/static_root/assets/VDialog-tf0N3lvG.eecb009783ed.js +0 -1
  765. codex/static_root/assets/VDialog-tf0N3lvG.eecb009783ed.js.br +0 -0
  766. codex/static_root/assets/VDialog-tf0N3lvG.eecb009783ed.js.gz +0 -0
  767. codex/static_root/assets/VDialog-tf0N3lvG.js +0 -1
  768. codex/static_root/assets/VDialog-tf0N3lvG.js.br +0 -0
  769. codex/static_root/assets/VDialog-tf0N3lvG.js.gz +0 -0
  770. codex/static_root/assets/VDivider-CTvTvFr_.3d0b477ddae0.js +0 -1
  771. codex/static_root/assets/VDivider-CTvTvFr_.3d0b477ddae0.js.br +0 -0
  772. codex/static_root/assets/VDivider-CTvTvFr_.3d0b477ddae0.js.gz +0 -0
  773. codex/static_root/assets/VDivider-CTvTvFr_.js +0 -1
  774. codex/static_root/assets/VDivider-CTvTvFr_.js.br +0 -0
  775. codex/static_root/assets/VDivider-CTvTvFr_.js.gz +0 -0
  776. codex/static_root/assets/VExpansionPanels-BjwwzLx6.203715bfa684.js +0 -1
  777. codex/static_root/assets/VExpansionPanels-BjwwzLx6.203715bfa684.js.br +0 -0
  778. codex/static_root/assets/VExpansionPanels-BjwwzLx6.203715bfa684.js.gz +0 -0
  779. codex/static_root/assets/VExpansionPanels-BjwwzLx6.js +0 -1
  780. codex/static_root/assets/VExpansionPanels-BjwwzLx6.js.br +0 -0
  781. codex/static_root/assets/VExpansionPanels-BjwwzLx6.js.gz +0 -0
  782. codex/static_root/assets/VForm-Dw7aCtM5.9266634dfe00.js +0 -1
  783. codex/static_root/assets/VForm-Dw7aCtM5.9266634dfe00.js.br +0 -0
  784. codex/static_root/assets/VForm-Dw7aCtM5.9266634dfe00.js.gz +0 -0
  785. codex/static_root/assets/VForm-Dw7aCtM5.js +0 -1
  786. codex/static_root/assets/VForm-Dw7aCtM5.js.br +0 -0
  787. codex/static_root/assets/VForm-Dw7aCtM5.js.gz +0 -0
  788. codex/static_root/assets/VRadioGroup-DJBFM2Br.79fa65084b8d.js +0 -1
  789. codex/static_root/assets/VRadioGroup-DJBFM2Br.79fa65084b8d.js.br +0 -0
  790. codex/static_root/assets/VRadioGroup-DJBFM2Br.79fa65084b8d.js.gz +0 -0
  791. codex/static_root/assets/VRadioGroup-DJBFM2Br.js +0 -1
  792. codex/static_root/assets/VRadioGroup-DJBFM2Br.js.br +0 -0
  793. codex/static_root/assets/VRadioGroup-DJBFM2Br.js.gz +0 -0
  794. codex/static_root/assets/VSelect-Cv8OuNtL.a5e2fe245f1a.js +0 -1
  795. codex/static_root/assets/VSelect-Cv8OuNtL.a5e2fe245f1a.js.br +0 -0
  796. codex/static_root/assets/VSelect-Cv8OuNtL.a5e2fe245f1a.js.gz +0 -0
  797. codex/static_root/assets/VSelect-Cv8OuNtL.js +0 -1
  798. codex/static_root/assets/VSelect-Cv8OuNtL.js.br +0 -0
  799. codex/static_root/assets/VSelect-Cv8OuNtL.js.gz +0 -0
  800. codex/static_root/assets/VSelectionControl-DoFzRlEh.a927b53c246b.js +0 -1
  801. codex/static_root/assets/VSelectionControl-DoFzRlEh.a927b53c246b.js.br +0 -0
  802. codex/static_root/assets/VSelectionControl-DoFzRlEh.a927b53c246b.js.gz +0 -0
  803. codex/static_root/assets/VSelectionControl-DoFzRlEh.js +0 -1
  804. codex/static_root/assets/VSelectionControl-DoFzRlEh.js.br +0 -0
  805. codex/static_root/assets/VSelectionControl-DoFzRlEh.js.gz +0 -0
  806. codex/static_root/assets/VTable-C-cNChDa.b2aabb112acf.js +0 -1
  807. codex/static_root/assets/VTable-C-cNChDa.b2aabb112acf.js.br +0 -0
  808. codex/static_root/assets/VTable-C-cNChDa.b2aabb112acf.js.gz +0 -0
  809. codex/static_root/assets/VTable-C-cNChDa.js +0 -1
  810. codex/static_root/assets/VTable-C-cNChDa.js.br +0 -0
  811. codex/static_root/assets/VTable-C-cNChDa.js.gz +0 -0
  812. codex/static_root/assets/VTable-CHRVGI94.0a75643f6486.css +0 -1
  813. codex/static_root/assets/VTable-CHRVGI94.0a75643f6486.css.br +0 -0
  814. codex/static_root/assets/VTable-CHRVGI94.0a75643f6486.css.gz +0 -0
  815. codex/static_root/assets/VTable-CHRVGI94.css +0 -1
  816. codex/static_root/assets/VTable-CHRVGI94.css.br +0 -0
  817. codex/static_root/assets/VTable-CHRVGI94.css.gz +0 -0
  818. codex/static_root/assets/VWindowItem-CWBhiE_Y.css +0 -1
  819. codex/static_root/assets/VWindowItem-CWBhiE_Y.css.br +0 -0
  820. codex/static_root/assets/VWindowItem-CWBhiE_Y.css.gz +0 -0
  821. codex/static_root/assets/VWindowItem-CWBhiE_Y.f7fb19752bf3.css +0 -1
  822. codex/static_root/assets/VWindowItem-CWBhiE_Y.f7fb19752bf3.css.br +0 -0
  823. codex/static_root/assets/VWindowItem-CWBhiE_Y.f7fb19752bf3.css.gz +0 -0
  824. codex/static_root/assets/VWindowItem-DL6bN3h7.45f85724527c.js +0 -1
  825. codex/static_root/assets/VWindowItem-DL6bN3h7.45f85724527c.js.br +0 -0
  826. codex/static_root/assets/VWindowItem-DL6bN3h7.45f85724527c.js.gz +0 -0
  827. codex/static_root/assets/VWindowItem-DL6bN3h7.js +0 -1
  828. codex/static_root/assets/VWindowItem-DL6bN3h7.js.br +0 -0
  829. codex/static_root/assets/VWindowItem-DL6bN3h7.js.gz +0 -0
  830. codex/static_root/assets/admin-BQ68PA7O.8bf1f757ca31.js +0 -1
  831. codex/static_root/assets/admin-BQ68PA7O.8bf1f757ca31.js.br +0 -0
  832. codex/static_root/assets/admin-BQ68PA7O.8bf1f757ca31.js.gz +0 -0
  833. codex/static_root/assets/admin-BQ68PA7O.js +0 -1
  834. codex/static_root/assets/admin-BQ68PA7O.js.br +0 -0
  835. codex/static_root/assets/admin-BQ68PA7O.js.gz +0 -0
  836. codex/static_root/assets/admin-Cg7RkTjo.191b04128f17.js +0 -1
  837. codex/static_root/assets/admin-Cg7RkTjo.191b04128f17.js.br +0 -0
  838. codex/static_root/assets/admin-Cg7RkTjo.191b04128f17.js.gz +0 -0
  839. codex/static_root/assets/admin-Cg7RkTjo.js +0 -1
  840. codex/static_root/assets/admin-Cg7RkTjo.js.br +0 -0
  841. codex/static_root/assets/admin-Cg7RkTjo.js.gz +0 -0
  842. codex/static_root/assets/admin-klMr_GZK.3784e4f1d624.css +0 -1
  843. codex/static_root/assets/admin-klMr_GZK.3784e4f1d624.css.br +0 -0
  844. codex/static_root/assets/admin-klMr_GZK.3784e4f1d624.css.gz +0 -0
  845. codex/static_root/assets/admin-klMr_GZK.css +0 -1
  846. codex/static_root/assets/admin-klMr_GZK.css.br +0 -0
  847. codex/static_root/assets/admin-klMr_GZK.css.gz +0 -0
  848. codex/static_root/assets/admin-menu-CKlcsy9S.41b2cf82b873.css +0 -1
  849. codex/static_root/assets/admin-menu-CKlcsy9S.41b2cf82b873.css.br +0 -0
  850. codex/static_root/assets/admin-menu-CKlcsy9S.41b2cf82b873.css.gz +0 -0
  851. codex/static_root/assets/admin-menu-CKlcsy9S.css +0 -1
  852. codex/static_root/assets/admin-menu-CKlcsy9S.css.br +0 -0
  853. codex/static_root/assets/admin-menu-CKlcsy9S.css.gz +0 -0
  854. codex/static_root/assets/admin-menu-Chx211s6.c63738168d93.js +0 -1
  855. codex/static_root/assets/admin-menu-Chx211s6.c63738168d93.js.br +0 -0
  856. codex/static_root/assets/admin-menu-Chx211s6.c63738168d93.js.gz +0 -0
  857. codex/static_root/assets/admin-menu-Chx211s6.js +0 -1
  858. codex/static_root/assets/admin-menu-Chx211s6.js.br +0 -0
  859. codex/static_root/assets/admin-menu-Chx211s6.js.gz +0 -0
  860. codex/static_root/assets/admin-settings-button-progress-DPuwgSVv.7689648ee782.js +0 -1
  861. codex/static_root/assets/admin-settings-button-progress-DPuwgSVv.7689648ee782.js.br +0 -0
  862. codex/static_root/assets/admin-settings-button-progress-DPuwgSVv.7689648ee782.js.gz +0 -0
  863. codex/static_root/assets/admin-settings-button-progress-DPuwgSVv.js +0 -1
  864. codex/static_root/assets/admin-settings-button-progress-DPuwgSVv.js.br +0 -0
  865. codex/static_root/assets/admin-settings-button-progress-DPuwgSVv.js.gz +0 -0
  866. codex/static_root/assets/admin-settings-button-progress-XVi7SeHr.435dc945daf1.css +0 -1
  867. codex/static_root/assets/admin-settings-button-progress-XVi7SeHr.css +0 -1
  868. codex/static_root/assets/browser-BKDmwxmv.6f4eca6489a1.js +0 -1
  869. codex/static_root/assets/browser-BKDmwxmv.6f4eca6489a1.js.br +0 -0
  870. codex/static_root/assets/browser-BKDmwxmv.6f4eca6489a1.js.gz +0 -0
  871. codex/static_root/assets/browser-BKDmwxmv.js +0 -1
  872. codex/static_root/assets/browser-BKDmwxmv.js.br +0 -0
  873. codex/static_root/assets/browser-BKDmwxmv.js.gz +0 -0
  874. codex/static_root/assets/browser-sNm790x9.305a6a4f38fd.css +0 -1
  875. codex/static_root/assets/browser-sNm790x9.305a6a4f38fd.css.br +0 -0
  876. codex/static_root/assets/browser-sNm790x9.305a6a4f38fd.css.gz +0 -0
  877. codex/static_root/assets/browser-sNm790x9.css +0 -1
  878. codex/static_root/assets/browser-sNm790x9.css.br +0 -0
  879. codex/static_root/assets/browser-sNm790x9.css.gz +0 -0
  880. codex/static_root/assets/change-password-dialog-DqupgUbt.e35dc497629b.js +0 -1
  881. codex/static_root/assets/change-password-dialog-DqupgUbt.e35dc497629b.js.br +0 -0
  882. codex/static_root/assets/change-password-dialog-DqupgUbt.e35dc497629b.js.gz +0 -0
  883. codex/static_root/assets/change-password-dialog-DqupgUbt.js +0 -1
  884. codex/static_root/assets/change-password-dialog-DqupgUbt.js.br +0 -0
  885. codex/static_root/assets/change-password-dialog-DqupgUbt.js.gz +0 -0
  886. codex/static_root/assets/confirm-dialog-AMnfyuMm.278235fdacbf.js +0 -1
  887. codex/static_root/assets/confirm-dialog-AMnfyuMm.278235fdacbf.js.br +0 -0
  888. codex/static_root/assets/confirm-dialog-AMnfyuMm.278235fdacbf.js.gz +0 -0
  889. codex/static_root/assets/confirm-dialog-AMnfyuMm.js +0 -1
  890. codex/static_root/assets/confirm-dialog-AMnfyuMm.js.br +0 -0
  891. codex/static_root/assets/confirm-dialog-AMnfyuMm.js.gz +0 -0
  892. codex/static_root/assets/confirm-dialog-BI5kQLy_.1b5309ad95ec.css +0 -1
  893. codex/static_root/assets/confirm-dialog-BI5kQLy_.1b5309ad95ec.css.br +0 -0
  894. codex/static_root/assets/confirm-dialog-BI5kQLy_.css +0 -1
  895. codex/static_root/assets/confirm-dialog-BI5kQLy_.css.br +0 -0
  896. codex/static_root/assets/datetime-column-BavtvLnf.1f3bf499e063.css +0 -1
  897. codex/static_root/assets/datetime-column-BavtvLnf.css +0 -1
  898. codex/static_root/assets/datetime-column-m-oshrDM.7e17980c4b7a.js +0 -1
  899. codex/static_root/assets/datetime-column-m-oshrDM.7e17980c4b7a.js.br +0 -0
  900. codex/static_root/assets/datetime-column-m-oshrDM.7e17980c4b7a.js.gz +0 -0
  901. codex/static_root/assets/datetime-column-m-oshrDM.js +0 -1
  902. codex/static_root/assets/datetime-column-m-oshrDM.js.br +0 -0
  903. codex/static_root/assets/datetime-column-m-oshrDM.js.gz +0 -0
  904. codex/static_root/assets/filter-BucmWboA.c5589372c258.js +0 -1
  905. codex/static_root/assets/filter-BucmWboA.c5589372c258.js.br +0 -0
  906. codex/static_root/assets/filter-BucmWboA.c5589372c258.js.gz +0 -0
  907. codex/static_root/assets/filter-BucmWboA.js +0 -1
  908. codex/static_root/assets/filter-BucmWboA.js.br +0 -0
  909. codex/static_root/assets/filter-BucmWboA.js.gz +0 -0
  910. codex/static_root/assets/flag-tab-C434E1_2.49632d2b141d.js +0 -1
  911. codex/static_root/assets/flag-tab-C434E1_2.49632d2b141d.js.br +0 -0
  912. codex/static_root/assets/flag-tab-C434E1_2.49632d2b141d.js.gz +0 -0
  913. codex/static_root/assets/flag-tab-C434E1_2.js +0 -1
  914. codex/static_root/assets/flag-tab-C434E1_2.js.br +0 -0
  915. codex/static_root/assets/flag-tab-C434E1_2.js.gz +0 -0
  916. codex/static_root/assets/forwardRefs-C8KYLdfc.css +0 -1
  917. codex/static_root/assets/forwardRefs-C8KYLdfc.css.br +0 -0
  918. codex/static_root/assets/forwardRefs-C8KYLdfc.css.gz +0 -0
  919. codex/static_root/assets/forwardRefs-C8KYLdfc.f5843191eb9e.css +0 -1
  920. codex/static_root/assets/forwardRefs-C8KYLdfc.f5843191eb9e.css.br +0 -0
  921. codex/static_root/assets/forwardRefs-C8KYLdfc.f5843191eb9e.css.gz +0 -0
  922. codex/static_root/assets/forwardRefs-CGpIPavG.d61e8212d1dc.js +0 -1
  923. codex/static_root/assets/forwardRefs-CGpIPavG.d61e8212d1dc.js.br +0 -0
  924. codex/static_root/assets/forwardRefs-CGpIPavG.d61e8212d1dc.js.gz +0 -0
  925. codex/static_root/assets/forwardRefs-CGpIPavG.js +0 -1
  926. codex/static_root/assets/forwardRefs-CGpIPavG.js.br +0 -0
  927. codex/static_root/assets/forwardRefs-CGpIPavG.js.gz +0 -0
  928. codex/static_root/assets/group-tab-Bi681uR0.3246ac0f7cec.css +0 -1
  929. codex/static_root/assets/group-tab-Bi681uR0.3246ac0f7cec.css.br +0 -0
  930. codex/static_root/assets/group-tab-Bi681uR0.3246ac0f7cec.css.gz +0 -0
  931. codex/static_root/assets/group-tab-Bi681uR0.css +0 -1
  932. codex/static_root/assets/group-tab-Bi681uR0.css.br +0 -0
  933. codex/static_root/assets/group-tab-Bi681uR0.css.gz +0 -0
  934. codex/static_root/assets/group-tab-MrhEvTPy.9233e2e5e80e.js +0 -1
  935. codex/static_root/assets/group-tab-MrhEvTPy.9233e2e5e80e.js.br +0 -0
  936. codex/static_root/assets/group-tab-MrhEvTPy.9233e2e5e80e.js.gz +0 -0
  937. codex/static_root/assets/group-tab-MrhEvTPy.js +0 -1
  938. codex/static_root/assets/group-tab-MrhEvTPy.js.br +0 -0
  939. codex/static_root/assets/group-tab-MrhEvTPy.js.gz +0 -0
  940. codex/static_root/assets/http-error-CODU7jcH.8c13689ae574.css +0 -1
  941. codex/static_root/assets/http-error-CODU7jcH.8c13689ae574.css.br +0 -0
  942. codex/static_root/assets/http-error-CODU7jcH.8c13689ae574.css.gz +0 -0
  943. codex/static_root/assets/http-error-CODU7jcH.css +0 -1
  944. codex/static_root/assets/http-error-CODU7jcH.css.br +0 -0
  945. codex/static_root/assets/http-error-CODU7jcH.css.gz +0 -0
  946. codex/static_root/assets/http-error-gBWEusWz.be314a60dc2e.js +0 -1
  947. codex/static_root/assets/http-error-gBWEusWz.be314a60dc2e.js.br +0 -0
  948. codex/static_root/assets/http-error-gBWEusWz.be314a60dc2e.js.gz +0 -0
  949. codex/static_root/assets/http-error-gBWEusWz.js +0 -1
  950. codex/static_root/assets/http-error-gBWEusWz.js.br +0 -0
  951. codex/static_root/assets/http-error-gBWEusWz.js.gz +0 -0
  952. codex/static_root/assets/index-Cu_QC2K8.de1f7935ff98.js +0 -1
  953. codex/static_root/assets/index-Cu_QC2K8.de1f7935ff98.js.br +0 -0
  954. codex/static_root/assets/index-Cu_QC2K8.de1f7935ff98.js.gz +0 -0
  955. codex/static_root/assets/index-Cu_QC2K8.js +0 -1
  956. codex/static_root/assets/index-Cu_QC2K8.js.br +0 -0
  957. codex/static_root/assets/index-Cu_QC2K8.js.gz +0 -0
  958. codex/static_root/assets/library-tab-Ce1d8Ypk.c87088afd4e1.js +0 -1
  959. codex/static_root/assets/library-tab-Ce1d8Ypk.c87088afd4e1.js.br +0 -0
  960. codex/static_root/assets/library-tab-Ce1d8Ypk.c87088afd4e1.js.gz +0 -0
  961. codex/static_root/assets/library-tab-Ce1d8Ypk.js +0 -1
  962. codex/static_root/assets/library-tab-Ce1d8Ypk.js.br +0 -0
  963. codex/static_root/assets/library-tab-Ce1d8Ypk.js.gz +0 -0
  964. codex/static_root/assets/library-tab-DLpvMqPW.2989f610950b.css +0 -1
  965. codex/static_root/assets/library-tab-DLpvMqPW.2989f610950b.css.br +0 -0
  966. codex/static_root/assets/library-tab-DLpvMqPW.2989f610950b.css.gz +0 -0
  967. codex/static_root/assets/library-tab-DLpvMqPW.css +0 -1
  968. codex/static_root/assets/library-tab-DLpvMqPW.css.br +0 -0
  969. codex/static_root/assets/library-tab-DLpvMqPW.css.gz +0 -0
  970. codex/static_root/assets/main-CpP-5rLh.ce09dfd7874f.js +0 -39
  971. codex/static_root/assets/main-CpP-5rLh.ce09dfd7874f.js.br +0 -0
  972. codex/static_root/assets/main-CpP-5rLh.ce09dfd7874f.js.gz +0 -0
  973. codex/static_root/assets/main-CpP-5rLh.js +0 -39
  974. codex/static_root/assets/main-CpP-5rLh.js.br +0 -0
  975. codex/static_root/assets/main-CpP-5rLh.js.gz +0 -0
  976. codex/static_root/assets/main-Of3aYkZ7.91c75c4fbaa6.css +0 -5
  977. codex/static_root/assets/main-Of3aYkZ7.91c75c4fbaa6.css.br +0 -0
  978. codex/static_root/assets/main-Of3aYkZ7.91c75c4fbaa6.css.gz +0 -0
  979. codex/static_root/assets/main-Of3aYkZ7.css +0 -5
  980. codex/static_root/assets/main-Of3aYkZ7.css.br +0 -0
  981. codex/static_root/assets/main-Of3aYkZ7.css.gz +0 -0
  982. codex/static_root/assets/pager-full-pdf-D8B8_31l.f1659a2dac96.js +0 -1
  983. codex/static_root/assets/pager-full-pdf-D8B8_31l.f1659a2dac96.js.br +0 -0
  984. codex/static_root/assets/pager-full-pdf-D8B8_31l.f1659a2dac96.js.gz +0 -0
  985. codex/static_root/assets/pager-full-pdf-D8B8_31l.js +0 -1
  986. codex/static_root/assets/pager-full-pdf-D8B8_31l.js.br +0 -0
  987. codex/static_root/assets/pager-full-pdf-D8B8_31l.js.gz +0 -0
  988. codex/static_root/assets/pagination-toolbar-OKWewkNI.a2773ff43624.js +0 -1
  989. codex/static_root/assets/pagination-toolbar-OKWewkNI.a2773ff43624.js.br +0 -0
  990. codex/static_root/assets/pagination-toolbar-OKWewkNI.a2773ff43624.js.gz +0 -0
  991. codex/static_root/assets/pagination-toolbar-OKWewkNI.js +0 -1
  992. codex/static_root/assets/pagination-toolbar-OKWewkNI.js.br +0 -0
  993. codex/static_root/assets/pagination-toolbar-OKWewkNI.js.gz +0 -0
  994. codex/static_root/assets/pagination-toolbar-aHRrdz48.2cbd38f9256c.css +0 -1
  995. codex/static_root/assets/pagination-toolbar-aHRrdz48.2cbd38f9256c.css.br +0 -0
  996. codex/static_root/assets/pagination-toolbar-aHRrdz48.2cbd38f9256c.css.gz +0 -0
  997. codex/static_root/assets/pagination-toolbar-aHRrdz48.css +0 -1
  998. codex/static_root/assets/pagination-toolbar-aHRrdz48.css.br +0 -0
  999. codex/static_root/assets/pagination-toolbar-aHRrdz48.css.gz +0 -0
  1000. codex/static_root/assets/pdf-doc-DpmuaK3i.2dca76dcae13.js +0 -372
  1001. codex/static_root/assets/pdf-doc-DpmuaK3i.2dca76dcae13.js.br +0 -0
  1002. codex/static_root/assets/pdf-doc-DpmuaK3i.2dca76dcae13.js.gz +0 -0
  1003. codex/static_root/assets/pdf-doc-DpmuaK3i.js +0 -372
  1004. codex/static_root/assets/pdf-doc-DpmuaK3i.js.br +0 -0
  1005. codex/static_root/assets/pdf-doc-DpmuaK3i.js.gz +0 -0
  1006. codex/static_root/assets/reader-BwgJtbgj.c8b86f482c17.css +0 -1
  1007. codex/static_root/assets/reader-BwgJtbgj.c8b86f482c17.css.br +0 -0
  1008. codex/static_root/assets/reader-BwgJtbgj.c8b86f482c17.css.gz +0 -0
  1009. codex/static_root/assets/reader-BwgJtbgj.css +0 -1
  1010. codex/static_root/assets/reader-BwgJtbgj.css.br +0 -0
  1011. codex/static_root/assets/reader-BwgJtbgj.css.gz +0 -0
  1012. codex/static_root/assets/reader-CyitMKSa.d70f4fc1c014.js +0 -2
  1013. codex/static_root/assets/reader-CyitMKSa.d70f4fc1c014.js.br +0 -0
  1014. codex/static_root/assets/reader-CyitMKSa.d70f4fc1c014.js.gz +0 -0
  1015. codex/static_root/assets/reader-CyitMKSa.js +0 -2
  1016. codex/static_root/assets/reader-CyitMKSa.js.br +0 -0
  1017. codex/static_root/assets/reader-CyitMKSa.js.gz +0 -0
  1018. codex/static_root/assets/relation-chips-BuShhy1e.822bb69b0cfe.css +0 -1
  1019. codex/static_root/assets/relation-chips-BuShhy1e.822bb69b0cfe.css.br +0 -0
  1020. codex/static_root/assets/relation-chips-BuShhy1e.822bb69b0cfe.css.gz +0 -0
  1021. codex/static_root/assets/relation-chips-BuShhy1e.css +0 -1
  1022. codex/static_root/assets/relation-chips-BuShhy1e.css.br +0 -0
  1023. codex/static_root/assets/relation-chips-BuShhy1e.css.gz +0 -0
  1024. codex/static_root/assets/relation-chips-QzwrdJWs.99957808773d.js +0 -1
  1025. codex/static_root/assets/relation-chips-QzwrdJWs.99957808773d.js.br +0 -0
  1026. codex/static_root/assets/relation-chips-QzwrdJWs.99957808773d.js.gz +0 -0
  1027. codex/static_root/assets/relation-chips-QzwrdJWs.js +0 -1
  1028. codex/static_root/assets/relation-chips-QzwrdJWs.js.br +0 -0
  1029. codex/static_root/assets/relation-chips-QzwrdJWs.js.gz +0 -0
  1030. codex/static_root/assets/settings-drawer-DYzm391t.67fd6c1c26cd.js +0 -2
  1031. codex/static_root/assets/settings-drawer-DYzm391t.67fd6c1c26cd.js.br +0 -0
  1032. codex/static_root/assets/settings-drawer-DYzm391t.67fd6c1c26cd.js.gz +0 -0
  1033. codex/static_root/assets/settings-drawer-DYzm391t.js +0 -2
  1034. codex/static_root/assets/settings-drawer-DYzm391t.js.br +0 -0
  1035. codex/static_root/assets/settings-drawer-DYzm391t.js.gz +0 -0
  1036. codex/static_root/assets/settings-drawer-WyG6HLH-.css +0 -1
  1037. codex/static_root/assets/settings-drawer-WyG6HLH-.css.br +0 -0
  1038. codex/static_root/assets/settings-drawer-WyG6HLH-.css.gz +0 -0
  1039. codex/static_root/assets/settings-drawer-WyG6HLH-.fe251f6d0a75.css +0 -1
  1040. codex/static_root/assets/settings-drawer-WyG6HLH-.fe251f6d0a75.css.br +0 -0
  1041. codex/static_root/assets/settings-drawer-WyG6HLH-.fe251f6d0a75.css.gz +0 -0
  1042. codex/static_root/assets/ssrBoot-D216TWr1.0b11737afb21.js +0 -1
  1043. codex/static_root/assets/ssrBoot-D216TWr1.0b11737afb21.js.br +0 -0
  1044. codex/static_root/assets/ssrBoot-D216TWr1.0b11737afb21.js.gz +0 -0
  1045. codex/static_root/assets/ssrBoot-D216TWr1.js +0 -1
  1046. codex/static_root/assets/ssrBoot-D216TWr1.js.br +0 -0
  1047. codex/static_root/assets/ssrBoot-D216TWr1.js.gz +0 -0
  1048. codex/static_root/assets/stats-tab-CGY8r-es.b06c55bdaeaa.css +0 -1
  1049. codex/static_root/assets/stats-tab-CGY8r-es.b06c55bdaeaa.css.br +0 -0
  1050. codex/static_root/assets/stats-tab-CGY8r-es.b06c55bdaeaa.css.gz +0 -0
  1051. codex/static_root/assets/stats-tab-CGY8r-es.css +0 -1
  1052. codex/static_root/assets/stats-tab-CGY8r-es.css.br +0 -0
  1053. codex/static_root/assets/stats-tab-CGY8r-es.css.gz +0 -0
  1054. codex/static_root/assets/stats-tab-CXkOoD0h.1e2709686bf6.js +0 -1
  1055. codex/static_root/assets/stats-tab-CXkOoD0h.1e2709686bf6.js.br +0 -0
  1056. codex/static_root/assets/stats-tab-CXkOoD0h.1e2709686bf6.js.gz +0 -0
  1057. codex/static_root/assets/stats-tab-CXkOoD0h.js +0 -1
  1058. codex/static_root/assets/stats-tab-CXkOoD0h.js.br +0 -0
  1059. codex/static_root/assets/stats-tab-CXkOoD0h.js.gz +0 -0
  1060. codex/static_root/assets/task-tab-BlzgZqUZ.9448f1240271.js +0 -1
  1061. codex/static_root/assets/task-tab-BlzgZqUZ.9448f1240271.js.br +0 -0
  1062. codex/static_root/assets/task-tab-BlzgZqUZ.9448f1240271.js.gz +0 -0
  1063. codex/static_root/assets/task-tab-BlzgZqUZ.js +0 -1
  1064. codex/static_root/assets/task-tab-BlzgZqUZ.js.br +0 -0
  1065. codex/static_root/assets/task-tab-BlzgZqUZ.js.gz +0 -0
  1066. codex/static_root/assets/unauthorized-DE63n2Pi.b0357009b13d.css +0 -1
  1067. codex/static_root/assets/unauthorized-DE63n2Pi.b0357009b13d.css.br +0 -0
  1068. codex/static_root/assets/unauthorized-DE63n2Pi.b0357009b13d.css.gz +0 -0
  1069. codex/static_root/assets/unauthorized-DE63n2Pi.css +0 -1
  1070. codex/static_root/assets/unauthorized-DE63n2Pi.css.br +0 -0
  1071. codex/static_root/assets/unauthorized-DE63n2Pi.css.gz +0 -0
  1072. codex/static_root/assets/unauthorized-_61uqek6.56ab5c978077.js +0 -1
  1073. codex/static_root/assets/unauthorized-_61uqek6.56ab5c978077.js.br +0 -0
  1074. codex/static_root/assets/unauthorized-_61uqek6.56ab5c978077.js.gz +0 -0
  1075. codex/static_root/assets/unauthorized-_61uqek6.js +0 -1
  1076. codex/static_root/assets/unauthorized-_61uqek6.js.br +0 -0
  1077. codex/static_root/assets/unauthorized-_61uqek6.js.gz +0 -0
  1078. codex/static_root/assets/user-tab-CNxfPmZf.aed110a6c62b.js +0 -1
  1079. codex/static_root/assets/user-tab-CNxfPmZf.aed110a6c62b.js.br +0 -0
  1080. codex/static_root/assets/user-tab-CNxfPmZf.aed110a6c62b.js.gz +0 -0
  1081. codex/static_root/assets/user-tab-CNxfPmZf.js +0 -1
  1082. codex/static_root/assets/user-tab-CNxfPmZf.js.br +0 -0
  1083. codex/static_root/assets/user-tab-CNxfPmZf.js.gz +0 -0
  1084. codex/static_root/img/folder.f28936a3701d.svg +0 -1
  1085. codex/static_root/img/folder.f28936a3701d.svg.br +0 -0
  1086. codex/static_root/img/folder.f28936a3701d.svg.gz +0 -0
  1087. codex/static_root/img/imprint.7c2adebb76d6.svg +0 -1
  1088. codex/static_root/img/imprint.7c2adebb76d6.svg.br +0 -0
  1089. codex/static_root/img/imprint.7c2adebb76d6.svg.gz +0 -0
  1090. codex/static_root/img/logo-maskable.8f7de7f1c6a8.svg +0 -1
  1091. codex/static_root/img/logo-maskable.8f7de7f1c6a8.svg.br +0 -0
  1092. codex/static_root/img/logo-maskable.8f7de7f1c6a8.svg.gz +0 -0
  1093. codex/static_root/img/logo.0f5344a028ca.svg +0 -1
  1094. codex/static_root/img/logo.0f5344a028ca.svg.br +0 -0
  1095. codex/static_root/img/logo.0f5344a028ca.svg.gz +0 -0
  1096. codex/static_root/img/missing-cover-165.0743171f2148.webp +0 -0
  1097. codex/static_root/img/missing-cover.ddb038cc2c56.svg +0 -1
  1098. codex/static_root/img/missing-cover.ddb038cc2c56.svg.br +0 -0
  1099. codex/static_root/img/missing-cover.ddb038cc2c56.svg.gz +0 -0
  1100. codex/static_root/img/series.ec8a889b8f95.svg +0 -1
  1101. codex/static_root/img/series.ec8a889b8f95.svg.br +0 -0
  1102. codex/static_root/img/series.ec8a889b8f95.svg.gz +0 -0
  1103. codex/static_root/img/story-arc.ca10014355ef.svg +0 -1
  1104. codex/static_root/img/story-arc.ca10014355ef.svg.br +0 -1
  1105. codex/static_root/img/story-arc.ca10014355ef.svg.gz +0 -0
  1106. codex/static_root/img/volume.814e4c79461a.svg +0 -1
  1107. codex/static_root/img/volume.814e4c79461a.svg.br +0 -0
  1108. codex/static_root/img/volume.814e4c79461a.svg.gz +0 -0
  1109. codex/static_root/manifest.95906ea9e563.json +0 -757
  1110. codex/static_root/manifest.95906ea9e563.json.br +0 -0
  1111. codex/static_root/manifest.95906ea9e563.json.gz +0 -0
  1112. codex/status.py +0 -35
  1113. codex/status_controller.py +0 -153
  1114. codex/templates/README.md +0 -3
  1115. codex/threads.py +0 -130
  1116. codex/views/README.md +0 -4
  1117. codex/views/browser/filters/search/aliases.py +0 -81
  1118. codex/views/browser/metadata/metadata.py +0 -83
  1119. codex/websockets/README.md +0 -4
  1120. codex/worker_base.py +0 -14
  1121. codex-1.7.15.dist-info/METADATA +0 -599
  1122. codex-1.7.15.dist-info/RECORD +0 -1052
  1123. codex-1.7.15.dist-info/WHEEL +0 -4
  1124. codex-1.7.15.dist-info/entry_points.txt +0 -3
  1125. {codex-1.7.15.dist-info → codex-1.8.0a2.dist-info/licenses}/LICENSE +0 -0
@@ -1 +0,0 @@
1
- .v-btn{align-items:center;border-radius:4px;display:inline-grid;grid-template-areas:"prepend content append";grid-template-columns:max-content auto max-content;font-weight:500;justify-content:center;letter-spacing:.0892857143em;line-height:normal;max-width:100%;outline:none;position:relative;text-decoration:none;text-indent:.0892857143em;text-transform:uppercase;transition-property:box-shadow,transform,opacity,background;transition-duration:.28s;transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-user-select:none;user-select:none;vertical-align:middle;flex-shrink:0}.v-locale--is-rtl .v-btn{text-indent:-.0892857143em}.v-btn--size-x-small{--v-btn-size: .625rem;--v-btn-height: 20px;font-size:var(--v-btn-size);min-width:36px;padding:0 8px}.v-btn--size-small{--v-btn-size: .75rem;--v-btn-height: 28px;font-size:var(--v-btn-size);min-width:50px;padding:0 12px}.v-btn--size-default{--v-btn-size: .875rem;--v-btn-height: 36px;font-size:var(--v-btn-size);min-width:64px;padding:0 16px}.v-btn--size-large{--v-btn-size: 1rem;--v-btn-height: 44px;font-size:var(--v-btn-size);min-width:78px;padding:0 20px}.v-btn--size-x-large{--v-btn-size: 1.125rem;--v-btn-height: 52px;font-size:var(--v-btn-size);min-width:92px;padding:0 24px}.v-btn.v-btn--density-default{height:calc(var(--v-btn-height) + 0px)}.v-btn.v-btn--density-comfortable{height:calc(var(--v-btn-height) + -8px)}.v-btn.v-btn--density-compact{height:calc(var(--v-btn-height) + -12px)}.v-btn{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-btn--border{border-width:thin;box-shadow:none}.v-btn--absolute{position:absolute}.v-btn--fixed{position:fixed}.v-btn:hover>.v-btn__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-btn:focus-visible>.v-btn__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-btn:focus>.v-btn__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}}.v-btn--active>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]>.v-btn__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-btn--active:hover>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]:hover>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-btn--active:focus-visible>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]:focus-visible>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-btn--active:focus>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]:focus>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-btn--variant-plain,.v-btn--variant-outlined,.v-btn--variant-text,.v-btn--variant-tonal{background:transparent;color:inherit}.v-btn--variant-plain{opacity:.62}.v-btn--variant-plain:focus,.v-btn--variant-plain:hover{opacity:1}.v-btn--variant-plain .v-btn__overlay{display:none}.v-btn--variant-elevated,.v-btn--variant-flat{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-btn--variant-elevated{box-shadow:0 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 2px 2px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 5px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn--variant-outlined{border:thin solid currentColor}.v-btn--variant-text .v-btn__overlay{background:currentColor}.v-btn--variant-tonal .v-btn__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;inset:0;pointer-events:none}.v-btn .v-btn__underlay{position:absolute}@supports selector(:focus-visible){.v-btn:after{pointer-events:none;border:2px solid currentColor;border-radius:inherit;opacity:0;transition:opacity .2s ease-in-out}.v-btn:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-btn:focus-visible:after{opacity:calc(.25 * var(--v-theme-overlay-multiplier))}}.v-btn--icon{border-radius:50%;min-width:0;padding:0}.v-btn--icon.v-btn--size-default{--v-btn-size: 1rem}.v-btn--icon.v-btn--density-default{width:calc(var(--v-btn-height) + 12px);height:calc(var(--v-btn-height) + 12px)}.v-btn--icon.v-btn--density-comfortable{width:calc(var(--v-btn-height) + 0px);height:calc(var(--v-btn-height) + 0px)}.v-btn--icon.v-btn--density-compact{width:calc(var(--v-btn-height) + -8px);height:calc(var(--v-btn-height) + -8px)}.v-btn--elevated:hover,.v-btn--elevated:focus{box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn--elevated:active{box-shadow:0 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn--flat{box-shadow:none}.v-btn--block{display:flex;flex:1 0 auto;min-width:100%}.v-btn--disabled{pointer-events:none;opacity:.26}.v-btn--disabled:hover{opacity:.26}.v-btn--disabled.v-btn--variant-elevated,.v-btn--disabled.v-btn--variant-flat{box-shadow:none;opacity:1;color:rgba(var(--v-theme-on-surface),.26);background:rgb(var(--v-theme-surface))}.v-btn--disabled.v-btn--variant-elevated .v-btn__overlay,.v-btn--disabled.v-btn--variant-flat .v-btn__overlay{opacity:.4615384615}.v-btn--loading{pointer-events:none}.v-btn--loading .v-btn__content,.v-btn--loading .v-btn__prepend,.v-btn--loading .v-btn__append{opacity:0}.v-btn--stacked{grid-template-areas:"prepend" "content" "append";grid-template-columns:auto;grid-template-rows:max-content max-content max-content;justify-items:center;align-content:center}.v-btn--stacked .v-btn__content{flex-direction:column;line-height:1.25}.v-btn--stacked .v-btn__prepend,.v-btn--stacked .v-btn__append,.v-btn--stacked .v-btn__content>.v-icon--start,.v-btn--stacked .v-btn__content>.v-icon--end{margin-inline:0}.v-btn--stacked .v-btn__prepend,.v-btn--stacked .v-btn__content>.v-icon--start{margin-bottom:4px}.v-btn--stacked .v-btn__append,.v-btn--stacked .v-btn__content>.v-icon--end{margin-top:4px}.v-btn--stacked.v-btn--size-x-small{--v-btn-size: .625rem;--v-btn-height: 56px;font-size:var(--v-btn-size);min-width:56px;padding:0 12px}.v-btn--stacked.v-btn--size-small{--v-btn-size: .75rem;--v-btn-height: 64px;font-size:var(--v-btn-size);min-width:64px;padding:0 14px}.v-btn--stacked.v-btn--size-default{--v-btn-size: .875rem;--v-btn-height: 72px;font-size:var(--v-btn-size);min-width:72px;padding:0 16px}.v-btn--stacked.v-btn--size-large{--v-btn-size: 1rem;--v-btn-height: 80px;font-size:var(--v-btn-size);min-width:80px;padding:0 18px}.v-btn--stacked.v-btn--size-x-large{--v-btn-size: 1.125rem;--v-btn-height: 88px;font-size:var(--v-btn-size);min-width:88px;padding:0 20px}.v-btn--stacked.v-btn--density-default{height:calc(var(--v-btn-height) + 0px)}.v-btn--stacked.v-btn--density-comfortable{height:calc(var(--v-btn-height) + -16px)}.v-btn--stacked.v-btn--density-compact{height:calc(var(--v-btn-height) + -24px)}.v-btn--slim{padding:0 8px}.v-btn--readonly{pointer-events:none}.v-btn--rounded{border-radius:24px}.v-btn--rounded.v-btn--icon{border-radius:4px}.v-btn .v-icon{--v-icon-size-multiplier: .8571428571}.v-btn--icon .v-icon{--v-icon-size-multiplier: 1}.v-btn--stacked .v-icon{--v-icon-size-multiplier: 1.1428571429}.v-btn--stacked.v-btn--block{min-width:100%}.v-btn__loader{align-items:center;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.v-btn__loader>.v-progress-circular{width:1.5em;height:1.5em}.v-btn__content,.v-btn__prepend,.v-btn__append{align-items:center;display:flex;transition:transform,opacity .2s cubic-bezier(.4,0,.2,1)}.v-btn__prepend{grid-area:prepend;margin-inline:calc(var(--v-btn-height) / -9) calc(var(--v-btn-height) / 4.5)}.v-btn--slim .v-btn__prepend{margin-inline-start:0}.v-btn__append{grid-area:append;margin-inline:calc(var(--v-btn-height) / 4.5) calc(var(--v-btn-height) / -9)}.v-btn--slim .v-btn__append{margin-inline-end:0}.v-btn__content{grid-area:content;justify-content:center;white-space:nowrap}.v-btn__content>.v-icon--start{margin-inline:calc(var(--v-btn-height) / -9) calc(var(--v-btn-height) / 4.5)}.v-btn__content>.v-icon--end{margin-inline:calc(var(--v-btn-height) / 4.5) calc(var(--v-btn-height) / -9)}.v-btn--stacked .v-btn__content{white-space:normal}.v-btn__overlay{background-color:currentColor;border-radius:inherit;opacity:0;transition:opacity .2s ease-in-out}.v-btn__overlay,.v-btn__underlay{pointer-events:none}.v-btn__overlay,.v-btn__underlay{position:absolute;top:0;left:0;width:100%;height:100%}.v-pagination .v-btn{width:auto;padding-inline:5px}.v-pagination .v-btn.v-btn--density-default{min-width:calc(var(--v-btn-height) + 12px)}.v-pagination .v-btn.v-btn--density-comfortable{min-width:calc(var(--v-btn-height) + 0px)}.v-pagination .v-btn.v-btn--density-compact{min-width:calc(var(--v-btn-height) + -8px)}.v-pagination .v-btn{border-radius:4px}.v-pagination .v-btn--rounded{border-radius:50%}.v-pagination .v-btn__overlay{transition:none}.v-pagination__prev .v-btn,.v-pagination__next .v-btn{padding-inline:0}.v-pagination__prev .v-btn.v-btn--density-default,.v-pagination__next .v-btn.v-btn--density-default{width:calc(var(--v-btn-height) + 12px)}.v-pagination__prev .v-btn.v-btn--density-comfortable,.v-pagination__next .v-btn.v-btn--density-comfortable{width:calc(var(--v-btn-height) + 0px)}.v-pagination__prev .v-btn.v-btn--density-compact,.v-pagination__next .v-btn.v-btn--density-compact{width:calc(var(--v-btn-height) + -8px)}.v-pagination .v-pagination__item--is-active .v-btn__overlay{opacity:var(--v-border-opacity)}.v-btn-toggle>.v-btn.v-btn--active:not(.v-btn--disabled)>.v-btn__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-btn-toggle>.v-btn.v-btn--active:not(.v-btn--disabled):hover>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-btn-toggle>.v-btn.v-btn--active:not(.v-btn--disabled):focus-visible>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-btn-toggle>.v-btn.v-btn--active:not(.v-btn--disabled):focus>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-btn-toggle>.v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain{opacity:1}.v-btn-group{display:inline-flex;flex-wrap:nowrap;max-width:100%;min-width:0;overflow-y:hidden;overflow-x:auto;vertical-align:middle}.v-btn-group{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-btn-group--border{border-width:thin;box-shadow:none}.v-btn-group{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn-group{border-radius:4px}.v-btn-group{background:transparent;color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-btn-group--density-default.v-btn-group{height:48px}.v-btn-group--density-comfortable.v-btn-group{height:40px}.v-btn-group--density-compact.v-btn-group{height:36px}.v-btn-group .v-btn{border-radius:0;border-color:inherit}.v-btn-group .v-btn:not(:last-child){border-inline-end:none}.v-btn-group .v-btn:not(:first-child){border-inline-start:none}.v-btn-group .v-btn:first-child{border-start-start-radius:inherit;border-end-start-radius:inherit}.v-btn-group .v-btn:last-child{border-start-end-radius:inherit;border-end-end-radius:inherit}.v-btn-group--divided .v-btn:not(:last-child){border-inline-end-width:thin;border-inline-end-style:solid;border-inline-end-color:rgba(var(--v-border-color),var(--v-border-opacity))}.v-btn-group--tile{border-radius:0}.v-icon{--v-icon-size-multiplier: 1;align-items:center;display:inline-flex;font-feature-settings:"liga";height:1em;justify-content:center;letter-spacing:normal;line-height:1;position:relative;opacity:var(--v-icon-opacity, 1);text-indent:0;text-align:center;-webkit-user-select:none;user-select:none;vertical-align:middle;width:1em;min-width:1em}.v-icon--clickable{cursor:pointer}.v-icon--disabled{pointer-events:none;opacity:.38}.v-icon--size-x-small{font-size:calc(var(--v-icon-size-multiplier) * 1em)}.v-icon--size-small{font-size:calc(var(--v-icon-size-multiplier) * 1.25em)}.v-icon--size-default{font-size:calc(var(--v-icon-size-multiplier) * 1.5em)}.v-icon--size-large{font-size:calc(var(--v-icon-size-multiplier) * 1.75em)}.v-icon--size-x-large{font-size:calc(var(--v-icon-size-multiplier) * 2em)}.v-icon__svg{fill:currentColor;width:100%;height:100%}.v-icon--start{margin-inline-end:8px}.v-icon--end{margin-inline-start:8px}.v-progress-circular{align-items:center;display:inline-flex;justify-content:center;position:relative;vertical-align:middle}.v-progress-circular>svg{width:100%;height:100%;margin:auto;position:absolute;inset:0;z-index:0}.v-progress-circular__content{align-items:center;display:flex;justify-content:center}.v-progress-circular__underlay{color:rgba(var(--v-border-color),var(--v-border-opacity));stroke:currentColor;z-index:1}.v-progress-circular__overlay{stroke:currentColor;transition:all .2s ease-in-out,stroke-width 0s;z-index:2}.v-progress-circular--size-x-small{height:16px;width:16px}.v-progress-circular--size-small{height:24px;width:24px}.v-progress-circular--size-default{height:32px;width:32px}.v-progress-circular--size-large{height:48px;width:48px}.v-progress-circular--size-x-large{height:64px;width:64px}.v-progress-circular--indeterminate>svg{animation:progress-circular-rotate 1.4s linear infinite;transform-origin:center center;transition:all .2s ease-in-out}.v-progress-circular--indeterminate .v-progress-circular__overlay{animation:progress-circular-dash 1.4s ease-in-out infinite,progress-circular-rotate 1.4s linear infinite;stroke-dasharray:25,200;stroke-dashoffset:0;stroke-linecap:round;transform-origin:center center;transform:rotate(-90deg)}.v-progress-circular--disable-shrink>svg{animation-duration:.7s}.v-progress-circular--disable-shrink .v-progress-circular__overlay{animation:none}.v-progress-circular--indeterminate:not(.v-progress-circular--visible)>svg,.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay{animation-play-state:paused!important}@keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0px}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}to{stroke-dasharray:100,200;stroke-dashoffset:-124px}}@keyframes progress-circular-rotate{to{transform:rotate(270deg)}}.v-progress-linear{background:transparent;overflow:hidden;position:relative;transition:.2s cubic-bezier(.4,0,.2,1);width:100%}@media (forced-colors: active){.v-progress-linear{border:thin solid buttontext}}.v-progress-linear__background,.v-progress-linear__buffer{background:currentColor;bottom:0;left:0;opacity:var(--v-border-opacity);position:absolute;top:0;width:100%;transition-property:width,left,right;transition:inherit}@media (forced-colors: active){.v-progress-linear__buffer{background-color:highlight;opacity:.3}}.v-progress-linear__content{align-items:center;display:flex;height:100%;justify-content:center;left:0;pointer-events:none;position:absolute;top:0;width:100%}.v-progress-linear__determinate,.v-progress-linear__indeterminate{background:currentColor}@media (forced-colors: active){.v-progress-linear__determinate,.v-progress-linear__indeterminate{background-color:highlight}}.v-progress-linear__determinate{height:inherit;left:0;position:absolute;transition:inherit;transition-property:width,left,right}.v-progress-linear__indeterminate .long,.v-progress-linear__indeterminate .short{animation-play-state:paused;animation-duration:2.2s;animation-iteration-count:infinite;height:inherit;inset:0 auto 0 0;position:absolute;width:auto}.v-progress-linear__indeterminate .long{animation-name:indeterminate-ltr}.v-progress-linear__indeterminate .short{animation-name:indeterminate-short-ltr}.v-progress-linear__stream{animation:stream .25s infinite linear;animation-play-state:paused;bottom:0;left:auto;opacity:.3;pointer-events:none;position:absolute;transition:inherit;transition-property:width,left,right}.v-progress-linear--reverse .v-progress-linear__background,.v-progress-linear--reverse .v-progress-linear__determinate,.v-progress-linear--reverse .v-progress-linear__content,.v-progress-linear--reverse .v-progress-linear__indeterminate .long,.v-progress-linear--reverse .v-progress-linear__indeterminate .short{left:auto;right:0}.v-progress-linear--reverse .v-progress-linear__indeterminate .long{animation-name:indeterminate-rtl}.v-progress-linear--reverse .v-progress-linear__indeterminate .short{animation-name:indeterminate-short-rtl}.v-progress-linear--reverse .v-progress-linear__stream{right:auto}.v-progress-linear--absolute,.v-progress-linear--fixed{left:0;z-index:1}.v-progress-linear--absolute{position:absolute}.v-progress-linear--fixed{position:fixed}.v-progress-linear--rounded{border-radius:9999px}.v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__determinate,.v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__indeterminate{border-radius:inherit}.v-progress-linear--striped .v-progress-linear__determinate{animation:progress-linear-stripes 1s infinite linear;background-image:linear-gradient(135deg,hsla(0,0%,100%,.25) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.25) 0,hsla(0,0%,100%,.25) 75%,transparent 0,transparent);background-repeat:repeat;background-size:var(--v-progress-linear-height)}.v-progress-linear--active .v-progress-linear__indeterminate .long,.v-progress-linear--active .v-progress-linear__indeterminate .short,.v-progress-linear--active .v-progress-linear__stream{animation-play-state:running}.v-progress-linear--rounded-bar .v-progress-linear__determinate,.v-progress-linear--rounded-bar .v-progress-linear__indeterminate,.v-progress-linear--rounded-bar .v-progress-linear__stream+.v-progress-linear__background{border-radius:9999px}.v-progress-linear--rounded-bar .v-progress-linear__determinate{border-start-start-radius:0;border-end-start-radius:0}@keyframes indeterminate-ltr{0%{left:-90%;right:100%}60%{left:-90%;right:100%}to{left:100%;right:-35%}}@keyframes indeterminate-rtl{0%{left:100%;right:-90%}60%{left:100%;right:-90%}to{left:-35%;right:100%}}@keyframes indeterminate-short-ltr{0%{left:-200%;right:100%}60%{left:107%;right:-8%}to{left:107%;right:-8%}}@keyframes indeterminate-short-rtl{0%{left:100%;right:-200%}60%{left:-8%;right:107%}to{left:-8%;right:107%}}@keyframes stream{to{transform:translate(var(--v-progress-linear-stream-to))}}@keyframes progress-linear-stripes{0%{background-position-x:var(--v-progress-linear-height)}}.v-ripple__container{color:inherit;border-radius:inherit;position:absolute;width:100%;height:100%;left:0;top:0;overflow:hidden;z-index:0;pointer-events:none;contain:strict}.v-ripple__animation{color:inherit;position:absolute;top:0;left:0;border-radius:50%;background:currentColor;opacity:0;pointer-events:none;overflow:hidden;will-change:transform,opacity}.v-ripple__animation--enter{transition:none;opacity:0}.v-ripple__animation--in{transition:transform .25s cubic-bezier(0,0,.2,1),opacity .1s cubic-bezier(0,0,.2,1);opacity:calc(.25 * var(--v-theme-overlay-multiplier))}.v-ripple__animation--out{transition:opacity .3s cubic-bezier(0,0,.2,1);opacity:0}
@@ -1 +0,0 @@
1
- import{cu as q,p as y,g as N,bV as vt,f as Ie,c as b,j as C,co as Ee,cm as D,cv as we,cw as mt,cx as gt,cy as ht,cb as $,cz as le,h as ue,c7 as bt,bp as Le,m as X,cA as yt,c8 as pt,ck as Te,t as g,b as S,d as k,F as Ct,aT as H,K as G,aO as K,u as W,a as _,n as L,bN as J,br as wt,aU as Re,i as St,bj as Ne,aS as ge,cs as ce,e as $e,bi as xt,cB as _t,bC as Oe,bB as kt,cC as Bt,bX as Pt,aR as ze,cD as Vt,cE as It,L as de,cF as Et,cG as Lt,r as Ae,bl as We,bc as Tt,b5 as fe,bg as Rt,aP as De,bq as Fe,I as Nt,cH as Se,aV as Me,cI as xe,T as $t,A as Ot}from"./main-CpP-5rLh.js";const He=["top","bottom"],zt=["start","end","left","right"];function At(e,t){let[n,s]=e.split(" ");return s||(s=q(He,n)?"start":q(zt,n)?"top":"center"),{side:_e(n,t),align:_e(s,t)}}function _e(e,t){return e==="start"?t?"right":"left":e==="end"?t?"left":"right":e}function _n(e){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[e.side],align:e.align}}function kn(e){return{side:e.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[e.align]}}function Bn(e){return{side:e.align,align:e.side}}function Pn(e){return q(He,e.side)?"y":"x"}class R{constructor(t){let{x:n,y:s,width:i,height:a}=t;this.x=n,this.y=s,this.width=i,this.height=a}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function Vn(e,t){return{x:{before:Math.max(0,t.left-e.left),after:Math.max(0,e.right-t.right)},y:{before:Math.max(0,t.top-e.top),after:Math.max(0,e.bottom-t.bottom)}}}function In(e){return Array.isArray(e)?new R({x:e[0],y:e[1],width:0,height:0}):e.getBoundingClientRect()}function En(e){if(e===document.documentElement)return visualViewport?new R({x:visualViewport.scale>1?0:visualViewport.offsetLeft,y:visualViewport.scale>1?0:visualViewport.offsetTop,width:visualViewport.width*visualViewport.scale,height:visualViewport.height*visualViewport.scale}):new R({x:0,y:0,width:document.documentElement.clientWidth,height:document.documentElement.clientHeight});{const t=e.getBoundingClientRect();return new R({x:t.x,y:t.y,width:e.clientWidth,height:e.clientHeight})}}function Ln(e){const t=e.getBoundingClientRect(),n=getComputedStyle(e),s=n.transform;if(s){let i,a,o,r,l;if(s.startsWith("matrix3d("))i=s.slice(9,-1).split(/, /),a=Number(i[0]),o=Number(i[5]),r=Number(i[12]),l=Number(i[13]);else if(s.startsWith("matrix("))i=s.slice(7,-1).split(/, /),a=Number(i[0]),o=Number(i[3]),r=Number(i[4]),l=Number(i[5]);else return new R(t);const c=n.transformOrigin,f=t.x-r-(1-a)*parseFloat(c),m=t.y-l-(1-o)*parseFloat(c.slice(c.indexOf(" ")+1)),u=a?t.width/a:e.offsetWidth+1,v=o?t.height/o:e.offsetHeight+1;return new R({x:f,y:m,width:u,height:v})}else return new R(t)}function Tn(e,t,n){if(typeof e.animate>"u")return{finished:Promise.resolve()};let s;try{s=e.animate(t,n)}catch{return{finished:Promise.resolve()}}return typeof s.finished>"u"&&(s.finished=new Promise(i=>{s.onfinish=()=>{i(s)}})),s}const Rn="cubic-bezier(0.4, 0, 0.2, 1)",Nn="cubic-bezier(0.0, 0, 0.2, 1)",$n="cubic-bezier(0.4, 0, 1, 1)",j=y({tag:{type:[String,Object,Function],default:"div"}},"tag"),Wt=y({defaults:Object,disabled:Boolean,reset:[Number,String],root:[Boolean,String],scoped:Boolean},"VDefaultsProvider"),ne=N(!1)({name:"VDefaultsProvider",props:Wt(),setup(e,t){let{slots:n}=t;const{defaults:s,disabled:i,reset:a,root:o,scoped:r}=vt(e);return Ie(s,{reset:a,root:o,scoped:r,disabled:i}),()=>n.default?.()}}),Dt=y({height:[Number,String],maxHeight:[Number,String],maxWidth:[Number,String],minHeight:[Number,String],minWidth:[Number,String],width:[Number,String]},"dimension");function Ft(e){return{dimensionStyles:b(()=>{const n={},s=C(e.height),i=C(e.maxHeight),a=C(e.maxWidth),o=C(e.minHeight),r=C(e.minWidth),l=C(e.width);return s!=null&&(n.height=s),i!=null&&(n.maxHeight=i),a!=null&&(n.maxWidth=a),o!=null&&(n.minHeight=o),r!=null&&(n.minWidth=r),l!=null&&(n.width=l),n})}}function he(e){return Ee(()=>{const t=D(e),n=[],s={};if(t.background)if(we(t.background)){if(s.backgroundColor=t.background,!t.text&&mt(t.background)){const i=gt(t.background);if(i.a==null||i.a===1){const a=ht(i);s.color=a,s.caretColor=a}}}else n.push(`bg-${t.background}`);return t.text&&(we(t.text)?(s.color=t.text,s.caretColor=t.text):n.push(`text-${t.text}`)),{colorClasses:n,colorStyles:s}})}function U(e){const{colorClasses:t,colorStyles:n}=he(()=>({text:D(e)}));return{textColorClasses:t,textColorStyles:n}}function se(e){const{colorClasses:t,colorStyles:n}=he(()=>({background:D(e)}));return{backgroundColorClasses:t,backgroundColorStyles:n}}const be=y({rounded:{type:[Boolean,Number,String],default:void 0},tile:Boolean},"rounded");function ye(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{roundedClasses:b(()=>{const s=le(e)?e.value:e.rounded,i=le(e)?e.value:e.tile,a=[];if(s===!0||s==="")a.push(`${t}--rounded`);else if(typeof s=="string"||s===0)for(const o of String(s).split(" "))a.push(`rounded-${o}`);else(i||s===!1)&&a.push("rounded-0");return a})}}const On=y({transition:{type:null,default:"fade-transition",validator:e=>e!==!0}},"transition"),zn=(e,t)=>{let{slots:n}=t;const{transition:s,disabled:i,group:a,...o}=e,{component:r=a?bt:Le,...l}=ue(s)?s:{};let c;return ue(s)?c=X(l,yt({disabled:i,group:a}),o):c=X({name:i||!s?"":s},o),pt(r,c,n)};function Mt(e,t){if(!Te)return;const n=t.modifiers||{},s=t.value,{handler:i,options:a}=typeof s=="object"?s:{handler:s,options:{}},o=new IntersectionObserver(function(){let r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],l=arguments.length>1?arguments[1]:void 0;const c=e._observe?.[t.instance.$.uid];if(!c)return;const f=r.some(m=>m.isIntersecting);i&&(!n.quiet||c.init)&&(!n.once||f||c.init)&&i(f,r,l),f&&n.once?Ge(e,t):c.init=!0},a);e._observe=Object(e._observe),e._observe[t.instance.$.uid]={init:!1,observer:o},o.observe(e)}function Ge(e,t){const n=e._observe?.[t.instance.$.uid];n&&(n.observer.unobserve(e),delete e._observe[t.instance.$.uid])}const An={mounted:Mt,unmounted:Ge},je=y({border:[Boolean,Number,String]},"border");function qe(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{borderClasses:b(()=>{const s=e.border;return s===!0||s===""?`${t}--border`:typeof s=="string"||s===0?String(s).split(" ").map(i=>`border-${i}`):[]})}}const Xe=y({elevation:{type:[Number,String],validator(e){const t=parseInt(e);return!isNaN(t)&&t>=0&&t<=24}}},"elevation");function Ue(e){return{elevationClasses:g(()=>{const n=le(e)?e.value:e.elevation;return n==null?[]:[`elevation-${n}`]})}}const Ht=["elevated","flat","tonal","outlined","text","plain"];function Gt(e,t){return S(Ct,null,[e&&S("span",{key:"overlay",class:k(`${t}__overlay`)},null),S("span",{key:"underlay",class:k(`${t}__underlay`)},null)])}const Ye=y({color:String,variant:{type:String,default:"elevated",validator:e=>Ht.includes(e)}},"variant");function jt(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();const n=g(()=>{const{variant:a}=D(e);return`${t}--variant-${a}`}),{colorClasses:s,colorStyles:i}=he(()=>{const{variant:a,color:o}=D(e);return{[["elevated","flat"].includes(a)?"background":"text"]:o}});return{colorClasses:s,colorStyles:i,variantClasses:n}}const qt=[null,"default","comfortable","compact"],Ke=y({density:{type:String,default:"default",validator:e=>qt.includes(e)}},"density");function Je(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{densityClasses:g(()=>`${t}--density-${e.density}`)}}const Qe=y({baseColor:String,divided:Boolean,...je(),...G(),...Ke(),...Xe(),...be(),...j(),...H(),...Ye()},"VBtnGroup"),ke=N()({name:"VBtnGroup",props:Qe(),setup(e,t){let{slots:n}=t;const{themeClasses:s}=K(e),{densityClasses:i}=Je(e),{borderClasses:a}=qe(e),{elevationClasses:o}=Ue(e),{roundedClasses:r}=ye(e);Ie({VBtn:{height:"auto",baseColor:g(()=>e.baseColor),color:g(()=>e.color),density:g(()=>e.density),flat:!0,variant:g(()=>e.variant)}}),W(()=>_(e.tag,{class:k(["v-btn-group",{"v-btn-group--divided":e.divided},s.value,a.value,i.value,o.value,r.value,e.class]),style:L(e.style)},n))}}),Xt=y({modelValue:{type:null,default:void 0},multiple:Boolean,mandatory:[Boolean,String],max:Number,selectedClass:String,disabled:Boolean},"group"),Ut=y({value:null,disabled:Boolean,selectedClass:String},"group-item");function Yt(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0;const s=J("useGroupItem");if(!s)throw new Error("[Vuetify] useGroupItem composable must be used inside a component setup function");const i=wt();Re(Symbol.for(`${t.description}:id`),i);const a=St(t,null);if(!a){if(!n)return a;throw new Error(`[Vuetify] Could not find useGroup injection with symbol ${t.description}`)}const o=g(()=>e.value),r=b(()=>!!(a.disabled.value||e.disabled));a.register({id:i,value:o,disabled:r},s),Ne(()=>{a.unregister(i)});const l=b(()=>a.isSelected(i)),c=b(()=>a.items.value[0].id===i),f=b(()=>a.items.value[a.items.value.length-1].id===i),m=b(()=>l.value&&[a.selectedClass.value,e.selectedClass]);return ge(l,u=>{s.emit("group:selected",{value:u})},{flush:"sync"}),{id:i,isSelected:l,isFirst:c,isLast:f,toggle:()=>a.select(i,!l.value),select:u=>a.select(i,u),selectedClass:m,value:o,disabled:r,group:a}}function Kt(e,t){let n=!1;const s=ce([]),i=$e(e,"modelValue",[],u=>u==null?[]:Ze(s,kt(u)),u=>{const v=Qt(s,u);return e.multiple?v:v[0]}),a=J("useGroup");function o(u,v){const p=u,d=Symbol.for(`${t.description}:id`),w=Bt(d,a?.vnode).indexOf(v);Pt(p.value)==null&&(p.value=w,p.useIndexAsValue=!0),w>-1?s.splice(w,0,p):s.push(p)}function r(u){if(n)return;l();const v=s.findIndex(p=>p.id===u);s.splice(v,1)}function l(){const u=s.find(v=>!v.disabled);u&&e.mandatory==="force"&&!i.value.length&&(i.value=[u.id])}xt(()=>{l()}),Ne(()=>{n=!0}),_t(()=>{for(let u=0;u<s.length;u++)s[u].useIndexAsValue&&(s[u].value=u)});function c(u,v){const p=s.find(d=>d.id===u);if(!(v&&p?.disabled))if(e.multiple){const d=i.value.slice(),h=d.findIndex(V=>V===u),w=~h;if(v=v??!w,w&&e.mandatory&&d.length<=1||!w&&e.max!=null&&d.length+1>e.max)return;h<0&&v?d.push(u):h>=0&&!v&&d.splice(h,1),i.value=d}else{const d=i.value.includes(u);if(e.mandatory&&d||!d&&!v)return;i.value=v??!d?[u]:[]}}function f(u){if(e.multiple,i.value.length){const v=i.value[0],p=s.findIndex(w=>w.id===v);let d=(p+u)%s.length,h=s[d];for(;h.disabled&&d!==p;)d=(d+u)%s.length,h=s[d];if(h.disabled)return;i.value=[s[d].id]}else{const v=s.find(p=>!p.disabled);v&&(i.value=[v.id])}}const m={register:o,unregister:r,selected:i,select:c,disabled:g(()=>e.disabled),prev:()=>f(s.length-1),next:()=>f(1),isSelected:u=>i.value.includes(u),selectedClass:g(()=>e.selectedClass),items:g(()=>s),getItemIndex:u=>Jt(s,u)};return Re(t,m),m}function Jt(e,t){const n=Ze(e,[t]);return n.length?e.findIndex(s=>s.id===n[0]):-1}function Ze(e,t){const n=[];return t.forEach(s=>{const i=e.find(o=>Oe(s,o.value)),a=e[s];i?.value!=null?n.push(i.id):a!=null&&n.push(a.id)}),n}function Qt(e,t){const n=[];return t.forEach(s=>{const i=e.findIndex(a=>a.id===s);if(~i){const a=e[i];n.push(a.value!=null?a.value:i)}}),n}const et=Symbol.for("vuetify:v-btn-toggle"),Zt=y({...Qe(),...Xt()},"VBtnToggle");N()({name:"VBtnToggle",props:Zt(),emits:{"update:modelValue":e=>!0},setup(e,t){let{slots:n}=t;const{isSelected:s,next:i,prev:a,select:o,selected:r}=Kt(e,et);return W(()=>{const l=ke.filterProps(e);return _(ke,X({class:["v-btn-toggle",e.class]},l,{style:e.style}),{default:()=>[n.default?.({isSelected:s,next:i,prev:a,select:o,selected:r})]})}),{next:i,prev:a,select:o}}});const en=["x-small","small","default","large","x-large"],pe=y({size:{type:[String,Number],default:"default"}},"size");function Ce(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return Ee(()=>{const n=e.size;let s,i;return q(en,n)?s=`${t}--size-${n}`:n&&(i={width:C(n),height:C(n)}),{sizeClasses:s,sizeStyles:i}})}const tn=y({color:String,disabled:Boolean,start:Boolean,end:Boolean,icon:de,opacity:[String,Number],...G(),...pe(),...j({tag:"i"}),...H()},"VIcon"),ae=N()({name:"VIcon",props:tn(),setup(e,t){let{attrs:n,slots:s}=t;const i=ze(),{themeClasses:a}=Vt(),{iconData:o}=It(()=>i.value||e.icon),{sizeClasses:r}=Ce(e),{textColorClasses:l,textColorStyles:c}=U(()=>e.color);return W(()=>{const f=s.default?.();f&&(i.value=Et(f).filter(u=>u.type===Lt&&u.children&&typeof u.children=="string")[0]?.children);const m=!!(n.onClick||n.onClickOnce);return _(o.value.component,{tag:e.tag,icon:o.value.icon,class:k(["v-icon","notranslate",a.value,r.value,l.value,{"v-icon--clickable":m,"v-icon--disabled":e.disabled,"v-icon--start":e.start,"v-icon--end":e.end},e.class]),style:L([{"--v-icon-opacity":e.opacity},r.value?void 0:{fontSize:C(e.size),height:C(e.size),width:C(e.size)},c.value,e.style]),role:m?"button":void 0,"aria-hidden":!m,tabindex:m?e.disabled?-1:0:void 0},{default:()=>[f]})}),{}}});function tt(e,t){const n=Ae(),s=ze(!1);if(Te){const i=new IntersectionObserver(a=>{s.value=!!a.find(o=>o.isIntersecting)},t);We(()=>{i.disconnect()}),ge(n,(a,o)=>{o&&(i.unobserve(o),s.value=!1),a&&i.observe(a)},{flush:"post"})}return{intersectionRef:n,isIntersecting:s}}const nn=y({bgColor:String,color:String,indeterminate:[Boolean,String],modelValue:{type:[Number,String],default:0},rotate:{type:[Number,String],default:0},width:{type:[Number,String],default:4},...G(),...pe(),...j({tag:"div"}),...H()},"VProgressCircular"),sn=N()({name:"VProgressCircular",props:nn(),setup(e,t){let{slots:n}=t;const s=20,i=2*Math.PI*s,a=Ae(),{themeClasses:o}=K(e),{sizeClasses:r,sizeStyles:l}=Ce(e),{textColorClasses:c,textColorStyles:f}=U(()=>e.color),{textColorClasses:m,textColorStyles:u}=U(()=>e.bgColor),{intersectionRef:v,isIntersecting:p}=tt(),{resizeRef:d,contentRect:h}=Tt(),w=g(()=>fe(parseFloat(e.modelValue),0,100)),V=g(()=>Number(e.width)),I=g(()=>l.value?Number(e.size):h.value?h.value.width:Math.max(V.value,32)),P=g(()=>s/(1-V.value/I.value)*2),T=g(()=>V.value/I.value*P.value),O=g(()=>C((100-w.value)/100*i));return Rt(()=>{v.value=a.value,d.value=a.value}),W(()=>_(e.tag,{ref:a,class:k(["v-progress-circular",{"v-progress-circular--indeterminate":!!e.indeterminate,"v-progress-circular--visible":p.value,"v-progress-circular--disable-shrink":e.indeterminate==="disable-shrink"},o.value,r.value,c.value,e.class]),style:L([l.value,f.value,e.style]),role:"progressbar","aria-valuemin":"0","aria-valuemax":"100","aria-valuenow":e.indeterminate?void 0:w.value},{default:()=>[S("svg",{style:{transform:`rotate(calc(-90deg + ${Number(e.rotate)}deg))`},xmlns:"http://www.w3.org/2000/svg",viewBox:`0 0 ${P.value} ${P.value}`},[S("circle",{class:k(["v-progress-circular__underlay",m.value]),style:L(u.value),fill:"transparent",cx:"50%",cy:"50%",r:s,"stroke-width":T.value,"stroke-dasharray":i,"stroke-dashoffset":0},null),S("circle",{class:"v-progress-circular__overlay",fill:"transparent",cx:"50%",cy:"50%",r:s,"stroke-width":T.value,"stroke-dasharray":i,"stroke-dashoffset":O.value},null)]),n.default&&S("div",{class:"v-progress-circular__content"},[n.default({value:w.value})])]})),{}}}),Be={center:"center",top:"bottom",bottom:"top",left:"right",right:"left"},nt=y({location:String},"location");function st(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,n=arguments.length>2?arguments[2]:void 0;const{isRtl:s}=De();return{locationStyles:b(()=>{if(!e.location)return{};const{side:a,align:o}=At(e.location.split(" ").length>1?e.location:`${e.location} center`,s.value);function r(c){return n?n(c):0}const l={};return a!=="center"&&(t?l[Be[a]]=`calc(100% - ${r(a)}px)`:l[a]=0),o!=="center"?t?l[Be[o]]=`calc(100% - ${r(o)}px)`:l[o]=0:(a==="center"?l.top=l.left="50%":l[{top:"left",bottom:"left",left:"top",right:"top"}[a]]="50%",l.transform={top:"translateX(-50%)",bottom:"translateX(-50%)",left:"translateY(-50%)",right:"translateY(-50%)",center:"translate(-50%, -50%)"}[a]),l})}}const an=y({absolute:Boolean,active:{type:Boolean,default:!0},bgColor:String,bgOpacity:[Number,String],bufferValue:{type:[Number,String],default:0},bufferColor:String,bufferOpacity:[Number,String],clickable:Boolean,color:String,height:{type:[Number,String],default:4},indeterminate:Boolean,max:{type:[Number,String],default:100},modelValue:{type:[Number,String],default:0},opacity:[Number,String],reverse:Boolean,stream:Boolean,striped:Boolean,roundedBar:Boolean,...G(),...nt({location:"top"}),...be(),...j(),...H()},"VProgressLinear"),on=N()({name:"VProgressLinear",props:an(),emits:{"update:modelValue":e=>!0},setup(e,t){let{slots:n}=t;const s=$e(e,"modelValue"),{isRtl:i,rtlClasses:a}=De(),{themeClasses:o}=K(e),{locationStyles:r}=st(e),{textColorClasses:l,textColorStyles:c}=U(()=>e.color),{backgroundColorClasses:f,backgroundColorStyles:m}=se(()=>e.bgColor||e.color),{backgroundColorClasses:u,backgroundColorStyles:v}=se(()=>e.bufferColor||e.bgColor||e.color),{backgroundColorClasses:p,backgroundColorStyles:d}=se(()=>e.color),{roundedClasses:h}=ye(e),{intersectionRef:w,isIntersecting:V}=tt(),I=b(()=>parseFloat(e.max)),P=b(()=>parseFloat(e.height)),T=b(()=>fe(parseFloat(e.bufferValue)/I.value*100,0,100)),O=b(()=>fe(parseFloat(s.value)/I.value*100,0,100)),E=b(()=>i.value!==e.reverse),Q=b(()=>e.indeterminate?"fade-transition":"slide-x-transition"),z=Fe&&window.matchMedia?.("(forced-colors: active)").matches;function Z(x){if(!w.value)return;const{left:ee,right:te,width:A}=w.value.getBoundingClientRect(),ft=E.value?A-x.clientX+(te-A):x.clientX-ee;s.value=Math.round(ft/A*I.value)}return W(()=>_(e.tag,{ref:w,class:k(["v-progress-linear",{"v-progress-linear--absolute":e.absolute,"v-progress-linear--active":e.active&&V.value,"v-progress-linear--reverse":E.value,"v-progress-linear--rounded":e.rounded,"v-progress-linear--rounded-bar":e.roundedBar,"v-progress-linear--striped":e.striped},h.value,o.value,a.value,e.class]),style:L([{bottom:e.location==="bottom"?0:void 0,top:e.location==="top"?0:void 0,height:e.active?C(P.value):0,"--v-progress-linear-height":C(P.value),...e.absolute?r.value:{}},e.style]),role:"progressbar","aria-hidden":e.active?"false":"true","aria-valuemin":"0","aria-valuemax":e.max,"aria-valuenow":e.indeterminate?void 0:Math.min(parseFloat(s.value),I.value),onClick:e.clickable&&Z},{default:()=>[e.stream&&S("div",{key:"stream",class:k(["v-progress-linear__stream",l.value]),style:{...c.value,[E.value?"left":"right"]:C(-P.value),borderTop:`${C(P.value/2)} dotted`,opacity:parseFloat(e.bufferOpacity),top:`calc(50% - ${C(P.value/4)})`,width:C(100-T.value,"%"),"--v-progress-linear-stream-to":C(P.value*(E.value?1:-1))}},null),S("div",{class:k(["v-progress-linear__background",z?void 0:f.value]),style:L([m.value,{opacity:parseFloat(e.bgOpacity),width:e.stream?0:void 0}])},null),S("div",{class:k(["v-progress-linear__buffer",z?void 0:u.value]),style:L([v.value,{opacity:parseFloat(e.bufferOpacity),width:C(T.value,"%")}])},null),_(Le,{name:Q.value},{default:()=>[e.indeterminate?S("div",{class:"v-progress-linear__indeterminate"},[["long","short"].map(x=>S("div",{key:x,class:k(["v-progress-linear__indeterminate",x,z?void 0:p.value]),style:L(d.value)},null))]):S("div",{class:k(["v-progress-linear__determinate",z?void 0:p.value]),style:L([d.value,{width:C(O.value,"%")}])},null)]}),n.default&&S("div",{class:"v-progress-linear__content"},[n.default({value:O.value,buffer:T.value})])]})),{}}}),rn=y({loading:[Boolean,String]},"loader");function ln(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{loaderClasses:g(()=>({[`${t}--loading`]:e.loading}))}}function Wn(e,t){let{slots:n}=t;return S("div",{class:k(`${e.name}__loader`)},[n.default?.({color:e.color,isActive:e.active})||_(on,{absolute:e.absolute,active:e.active,color:e.color,height:"2",indeterminate:!0},null)])}const un=["static","relative","fixed","absolute","sticky"],cn=y({position:{type:String,validator:e=>un.includes(e)}},"position");function dn(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{positionClasses:g(()=>e.position?`${t}--${e.position}`:void 0)}}function fn(){const e=J("useRoute");return b(()=>e?.proxy?.$route)}function Dn(){return J("useRouter")?.proxy?.$router}function vn(e,t){const n=Nt("RouterLink"),s=g(()=>!!(e.href||e.to)),i=b(()=>s?.value||Se(t,"click")||Se(e,"click"));if(typeof n=="string"||!("useLink"in n)){const f=g(()=>e.href);return{isLink:s,isClickable:i,href:f,linkProps:ce({href:f})}}const a=n.useLink({to:g(()=>e.to||""),replace:g(()=>e.replace)}),o=b(()=>e.to?a:void 0),r=fn(),l=b(()=>o.value?e.exact?r.value?o.value.isExactActive?.value&&Oe(o.value.route.value.query,r.value.query):o.value.isExactActive?.value??!1:o.value.isActive?.value??!1:!1),c=b(()=>e.to?o.value?.route.value.href:e.href);return{isLink:s,isClickable:i,isActive:l,route:o.value?.route,navigate:o.value?.navigate,href:c,linkProps:ce({href:c,"aria-current":g(()=>l.value?"page":void 0)})}}const mn=y({href:String,replace:Boolean,to:[String,Object],exact:Boolean},"router");let ie=!1;function Fn(e,t){let n=!1,s,i;Fe&&e?.beforeEach&&(Me(()=>{window.addEventListener("popstate",a),s=e.beforeEach((o,r,l)=>{ie?n?t(l):l():setTimeout(()=>n?t(l):l()),ie=!0}),i=e?.afterEach(()=>{ie=!1})}),We(()=>{window.removeEventListener("popstate",a),s?.(),i?.()}));function a(o){o.state?.replaced||(n=!0,setTimeout(()=>n=!1))}}function gn(e,t){ge(()=>e.isActive?.value,n=>{e.isLink.value&&n!=null&&t&&Me(()=>{t(n)})},{immediate:!0})}const ve=Symbol("rippleStop"),hn=80;function Pe(e,t){e.style.transform=t,e.style.webkitTransform=t}function me(e){return e.constructor.name==="TouchEvent"}function at(e){return e.constructor.name==="KeyboardEvent"}const bn=function(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},s=0,i=0;if(!at(e)){const m=t.getBoundingClientRect(),u=me(e)?e.touches[e.touches.length-1]:e;s=u.clientX-m.left,i=u.clientY-m.top}let a=0,o=.3;t._ripple?.circle?(o=.15,a=t.clientWidth/2,a=n.center?a:a+Math.sqrt((s-a)**2+(i-a)**2)/4):a=Math.sqrt(t.clientWidth**2+t.clientHeight**2)/2;const r=`${(t.clientWidth-a*2)/2}px`,l=`${(t.clientHeight-a*2)/2}px`,c=n.center?r:`${s-a}px`,f=n.center?l:`${i-a}px`;return{radius:a,scale:o,x:c,y:f,centerX:r,centerY:l}},Y={show(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(!t?._ripple?.enabled)return;const s=document.createElement("span"),i=document.createElement("span");s.appendChild(i),s.className="v-ripple__container",n.class&&(s.className+=` ${n.class}`);const{radius:a,scale:o,x:r,y:l,centerX:c,centerY:f}=bn(e,t,n),m=`${a*2}px`;i.className="v-ripple__animation",i.style.width=m,i.style.height=m,t.appendChild(s);const u=window.getComputedStyle(t);u&&u.position==="static"&&(t.style.position="relative",t.dataset.previousPosition="static"),i.classList.add("v-ripple__animation--enter"),i.classList.add("v-ripple__animation--visible"),Pe(i,`translate(${r}, ${l}) scale3d(${o},${o},${o})`),i.dataset.activated=String(performance.now()),requestAnimationFrame(()=>{requestAnimationFrame(()=>{i.classList.remove("v-ripple__animation--enter"),i.classList.add("v-ripple__animation--in"),Pe(i,`translate(${c}, ${f}) scale3d(1,1,1)`)})})},hide(e){if(!e?._ripple?.enabled)return;const t=e.getElementsByClassName("v-ripple__animation");if(t.length===0)return;const n=t[t.length-1];if(n.dataset.isHiding)return;n.dataset.isHiding="true";const s=performance.now()-Number(n.dataset.activated),i=Math.max(250-s,0);setTimeout(()=>{n.classList.remove("v-ripple__animation--in"),n.classList.add("v-ripple__animation--out"),setTimeout(()=>{e.getElementsByClassName("v-ripple__animation").length===1&&e.dataset.previousPosition&&(e.style.position=e.dataset.previousPosition,delete e.dataset.previousPosition),n.parentNode?.parentNode===e&&e.removeChild(n.parentNode)},300)},i)}};function it(e){return typeof e>"u"||!!e}function F(e){const t={},n=e.currentTarget;if(!(!n?._ripple||n._ripple.touched||e[ve])){if(e[ve]=!0,me(e))n._ripple.touched=!0,n._ripple.isTouch=!0;else if(n._ripple.isTouch)return;if(t.center=n._ripple.centered||at(e),n._ripple.class&&(t.class=n._ripple.class),me(e)){if(n._ripple.showTimerCommit)return;n._ripple.showTimerCommit=()=>{Y.show(e,n,t)},n._ripple.showTimer=window.setTimeout(()=>{n?._ripple?.showTimerCommit&&(n._ripple.showTimerCommit(),n._ripple.showTimerCommit=null)},hn)}else Y.show(e,n,t)}}function Ve(e){e[ve]=!0}function B(e){const t=e.currentTarget;if(t?._ripple){if(window.clearTimeout(t._ripple.showTimer),e.type==="touchend"&&t._ripple.showTimerCommit){t._ripple.showTimerCommit(),t._ripple.showTimerCommit=null,t._ripple.showTimer=window.setTimeout(()=>{B(e)});return}window.setTimeout(()=>{t._ripple&&(t._ripple.touched=!1)}),Y.hide(t)}}function ot(e){const t=e.currentTarget;t?._ripple&&(t._ripple.showTimerCommit&&(t._ripple.showTimerCommit=null),window.clearTimeout(t._ripple.showTimer))}let M=!1;function rt(e){!M&&(e.keyCode===xe.enter||e.keyCode===xe.space)&&(M=!0,F(e))}function lt(e){M=!1,B(e)}function ut(e){M&&(M=!1,B(e))}function ct(e,t,n){const{value:s,modifiers:i}=t,a=it(s);if(a||Y.hide(e),e._ripple=e._ripple??{},e._ripple.enabled=a,e._ripple.centered=i.center,e._ripple.circle=i.circle,ue(s)&&s.class&&(e._ripple.class=s.class),a&&!n){if(i.stop){e.addEventListener("touchstart",Ve,{passive:!0}),e.addEventListener("mousedown",Ve);return}e.addEventListener("touchstart",F,{passive:!0}),e.addEventListener("touchend",B,{passive:!0}),e.addEventListener("touchmove",ot,{passive:!0}),e.addEventListener("touchcancel",B),e.addEventListener("mousedown",F),e.addEventListener("mouseup",B),e.addEventListener("mouseleave",B),e.addEventListener("keydown",rt),e.addEventListener("keyup",lt),e.addEventListener("blur",ut),e.addEventListener("dragstart",B,{passive:!0})}else!a&&n&&dt(e)}function dt(e){e.removeEventListener("mousedown",F),e.removeEventListener("touchstart",F),e.removeEventListener("touchend",B),e.removeEventListener("touchmove",ot),e.removeEventListener("touchcancel",B),e.removeEventListener("mouseup",B),e.removeEventListener("mouseleave",B),e.removeEventListener("keydown",rt),e.removeEventListener("keyup",lt),e.removeEventListener("dragstart",B),e.removeEventListener("blur",ut)}function yn(e,t){ct(e,t,!1)}function pn(e){delete e._ripple,dt(e)}function Cn(e,t){if(t.value===t.oldValue)return;const n=it(t.oldValue);ct(e,t,n)}const wn={mounted:yn,unmounted:pn,updated:Cn},Sn=y({active:{type:Boolean,default:void 0},activeColor:String,baseColor:String,symbol:{type:null,default:et},flat:Boolean,icon:[Boolean,String,Function,Object],prependIcon:de,appendIcon:de,block:Boolean,readonly:Boolean,slim:Boolean,stacked:Boolean,ripple:{type:[Boolean,Object],default:!0},text:{type:[String,Number,Boolean],default:void 0},...je(),...G(),...Ke(),...Dt(),...Xe(),...Ut(),...rn(),...nt(),...cn(),...be(),...mn(),...pe(),...j({tag:"button"}),...H(),...Ye({variant:"elevated"})},"VBtn"),Mn=N()({name:"VBtn",props:Sn(),emits:{"group:selected":e=>!0},setup(e,t){let{attrs:n,slots:s}=t;const{themeClasses:i}=K(e),{borderClasses:a}=qe(e),{densityClasses:o}=Je(e),{dimensionStyles:r}=Ft(e),{elevationClasses:l}=Ue(e),{loaderClasses:c}=ln(e),{locationStyles:f}=st(e),{positionClasses:m}=dn(e),{roundedClasses:u}=ye(e),{sizeClasses:v,sizeStyles:p}=Ce(e),d=Yt(e,e.symbol,!1),h=vn(e,n),w=b(()=>e.active!==void 0?e.active:h.isLink.value?h.isActive?.value:d?.isSelected.value),V=g(()=>w.value?e.activeColor??e.color:e.color),I=b(()=>({color:d?.isSelected.value&&(!h.isLink.value||h.isActive?.value)||!d||h.isActive?.value?V.value??e.baseColor:e.baseColor,variant:e.variant})),{colorClasses:P,colorStyles:T,variantClasses:O}=jt(I),E=b(()=>d?.disabled.value||e.disabled),Q=g(()=>e.variant==="elevated"&&!(e.disabled||e.flat||e.border)),z=b(()=>{if(!(e.value===void 0||typeof e.value=="symbol"))return Object(e.value)===e.value?JSON.stringify(e.value,null,0):e.value});function Z(x){E.value||h.isLink.value&&(x.metaKey||x.ctrlKey||x.shiftKey||x.button!==0||n.target==="_blank")||(h.navigate?.(x),d?.toggle())}return gn(h,d?.select),W(()=>{const x=h.isLink.value?"a":e.tag,ee=!!(e.prependIcon||s.prepend),te=!!(e.appendIcon||s.append),A=!!(e.icon&&e.icon!==!0);return $t(_(x,X({type:x==="a"?void 0:"button",class:["v-btn",d?.selectedClass.value,{"v-btn--active":w.value,"v-btn--block":e.block,"v-btn--disabled":E.value,"v-btn--elevated":Q.value,"v-btn--flat":e.flat,"v-btn--icon":!!e.icon,"v-btn--loading":e.loading,"v-btn--readonly":e.readonly,"v-btn--slim":e.slim,"v-btn--stacked":e.stacked},i.value,a.value,P.value,o.value,l.value,c.value,m.value,u.value,v.value,O.value,e.class],style:[T.value,r.value,f.value,p.value,e.style],"aria-busy":e.loading?!0:void 0,disabled:E.value||void 0,tabindex:e.loading||e.readonly?-1:void 0,onClick:Z,value:z.value},h.linkProps),{default:()=>[Gt(!0,"v-btn"),!e.icon&&ee&&S("span",{key:"prepend",class:"v-btn__prepend"},[s.prepend?_(ne,{key:"prepend-defaults",disabled:!e.prependIcon,defaults:{VIcon:{icon:e.prependIcon}}},s.prepend):_(ae,{key:"prepend-icon",icon:e.prependIcon},null)]),S("span",{class:"v-btn__content","data-no-activator":""},[!s.default&&A?_(ae,{key:"content-icon",icon:e.icon},null):_(ne,{key:"content-defaults",disabled:!A,defaults:{VIcon:{icon:e.icon}}},{default:()=>[s.default?.()??Ot(e.text)]})]),!e.icon&&te&&S("span",{key:"append",class:"v-btn__append"},[s.append?_(ne,{key:"append-defaults",disabled:!e.appendIcon,defaults:{VIcon:{icon:e.appendIcon}}},s.append):_(ae,{key:"append-icon",icon:e.appendIcon},null)]),!!e.loading&&S("span",{key:"loader",class:"v-btn__loader"},[s.loader?.()??_(sn,{color:typeof e.loading=="boolean"?void 0:e.loading,indeterminate:!0,width:"2"},null)])]}),[[wn,!E.value&&e.ripple,"",{center:!!e.icon}]])}),{group:d}}}),oe=Symbol("Forwarded refs");function re(e,t){let n=e;for(;n;){const s=Reflect.getOwnPropertyDescriptor(n,t);if(s)return s;n=Object.getPrototypeOf(n)}}function Hn(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),s=1;s<t;s++)n[s-1]=arguments[s];return e[oe]=n,new Proxy(e,{get(i,a){if(Reflect.has(i,a))return Reflect.get(i,a);if(!(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))){for(const o of n)if(o.value&&Reflect.has(o.value,a)){const r=Reflect.get(o.value,a);return typeof r=="function"?r.bind(o.value):r}}},has(i,a){if(Reflect.has(i,a))return!0;if(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))return!1;for(const o of n)if(o.value&&Reflect.has(o.value,a))return!0;return!1},set(i,a,o){if(Reflect.has(i,a))return Reflect.set(i,a,o);if(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))return!1;for(const r of n)if(r.value&&Reflect.has(r.value,a))return Reflect.set(r.value,a,o);return!1},getOwnPropertyDescriptor(i,a){const o=Reflect.getOwnPropertyDescriptor(i,a);if(o)return o;if(!(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))){for(const r of n){if(!r.value)continue;const l=re(r.value,a)??("_"in r.value?re(r.value._?.setupState,a):void 0);if(l)return l}for(const r of n){const l=r.value&&r.value[oe];if(!l)continue;const c=l.slice();for(;c.length;){const f=c.shift(),m=re(f.value,a);if(m)return m;const u=f.value&&f.value[oe];u&&c.push(...u)}}}}})}export{Vn as $,je as A,Dn as B,_e as C,ln as D,sn as E,pe as F,Xt as G,rn as H,An as I,Ce as J,jt as K,Wn as L,zn as M,Gt as N,Ln as O,In as P,$n as Q,wn as R,Nn as S,At as T,_n as U,Mn as V,kn as W,Bn as X,R as Y,En as Z,Pn as _,Tn as a,Fn as a0,Je as b,se as c,j as d,Ke as e,Hn as f,vn as g,mn as h,ye as i,be as j,ae as k,ne as l,Sn as m,on as n,Ft as o,On as p,Dt as q,Kt as r,Rn as s,Yt as t,U as u,Ut as v,Ye as w,Xe as x,Ue as y,qe as z};
@@ -1 +0,0 @@
1
- import{cu as q,p as y,g as N,bV as vt,f as Ie,c as b,j as C,co as Ee,cm as D,cv as we,cw as mt,cx as gt,cy as ht,cb as $,cz as le,h as ue,c7 as bt,bp as Le,m as X,cA as yt,c8 as pt,ck as Te,t as g,b as S,d as k,F as Ct,aT as H,K as G,aO as K,u as W,a as _,n as L,bN as J,br as wt,aU as Re,i as St,bj as Ne,aS as ge,cs as ce,e as $e,bi as xt,cB as _t,bC as Oe,bB as kt,cC as Bt,bX as Pt,aR as ze,cD as Vt,cE as It,L as de,cF as Et,cG as Lt,r as Ae,bl as We,bc as Tt,b5 as fe,bg as Rt,aP as De,bq as Fe,I as Nt,cH as Se,aV as Me,cI as xe,T as $t,A as Ot}from"./main-CpP-5rLh.js";const He=["top","bottom"],zt=["start","end","left","right"];function At(e,t){let[n,s]=e.split(" ");return s||(s=q(He,n)?"start":q(zt,n)?"top":"center"),{side:_e(n,t),align:_e(s,t)}}function _e(e,t){return e==="start"?t?"right":"left":e==="end"?t?"left":"right":e}function _n(e){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[e.side],align:e.align}}function kn(e){return{side:e.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[e.align]}}function Bn(e){return{side:e.align,align:e.side}}function Pn(e){return q(He,e.side)?"y":"x"}class R{constructor(t){let{x:n,y:s,width:i,height:a}=t;this.x=n,this.y=s,this.width=i,this.height=a}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function Vn(e,t){return{x:{before:Math.max(0,t.left-e.left),after:Math.max(0,e.right-t.right)},y:{before:Math.max(0,t.top-e.top),after:Math.max(0,e.bottom-t.bottom)}}}function In(e){return Array.isArray(e)?new R({x:e[0],y:e[1],width:0,height:0}):e.getBoundingClientRect()}function En(e){if(e===document.documentElement)return visualViewport?new R({x:visualViewport.scale>1?0:visualViewport.offsetLeft,y:visualViewport.scale>1?0:visualViewport.offsetTop,width:visualViewport.width*visualViewport.scale,height:visualViewport.height*visualViewport.scale}):new R({x:0,y:0,width:document.documentElement.clientWidth,height:document.documentElement.clientHeight});{const t=e.getBoundingClientRect();return new R({x:t.x,y:t.y,width:e.clientWidth,height:e.clientHeight})}}function Ln(e){const t=e.getBoundingClientRect(),n=getComputedStyle(e),s=n.transform;if(s){let i,a,o,r,l;if(s.startsWith("matrix3d("))i=s.slice(9,-1).split(/, /),a=Number(i[0]),o=Number(i[5]),r=Number(i[12]),l=Number(i[13]);else if(s.startsWith("matrix("))i=s.slice(7,-1).split(/, /),a=Number(i[0]),o=Number(i[3]),r=Number(i[4]),l=Number(i[5]);else return new R(t);const c=n.transformOrigin,f=t.x-r-(1-a)*parseFloat(c),m=t.y-l-(1-o)*parseFloat(c.slice(c.indexOf(" ")+1)),u=a?t.width/a:e.offsetWidth+1,v=o?t.height/o:e.offsetHeight+1;return new R({x:f,y:m,width:u,height:v})}else return new R(t)}function Tn(e,t,n){if(typeof e.animate>"u")return{finished:Promise.resolve()};let s;try{s=e.animate(t,n)}catch{return{finished:Promise.resolve()}}return typeof s.finished>"u"&&(s.finished=new Promise(i=>{s.onfinish=()=>{i(s)}})),s}const Rn="cubic-bezier(0.4, 0, 0.2, 1)",Nn="cubic-bezier(0.0, 0, 0.2, 1)",$n="cubic-bezier(0.4, 0, 1, 1)",j=y({tag:{type:[String,Object,Function],default:"div"}},"tag"),Wt=y({defaults:Object,disabled:Boolean,reset:[Number,String],root:[Boolean,String],scoped:Boolean},"VDefaultsProvider"),ne=N(!1)({name:"VDefaultsProvider",props:Wt(),setup(e,t){let{slots:n}=t;const{defaults:s,disabled:i,reset:a,root:o,scoped:r}=vt(e);return Ie(s,{reset:a,root:o,scoped:r,disabled:i}),()=>n.default?.()}}),Dt=y({height:[Number,String],maxHeight:[Number,String],maxWidth:[Number,String],minHeight:[Number,String],minWidth:[Number,String],width:[Number,String]},"dimension");function Ft(e){return{dimensionStyles:b(()=>{const n={},s=C(e.height),i=C(e.maxHeight),a=C(e.maxWidth),o=C(e.minHeight),r=C(e.minWidth),l=C(e.width);return s!=null&&(n.height=s),i!=null&&(n.maxHeight=i),a!=null&&(n.maxWidth=a),o!=null&&(n.minHeight=o),r!=null&&(n.minWidth=r),l!=null&&(n.width=l),n})}}function he(e){return Ee(()=>{const t=D(e),n=[],s={};if(t.background)if(we(t.background)){if(s.backgroundColor=t.background,!t.text&&mt(t.background)){const i=gt(t.background);if(i.a==null||i.a===1){const a=ht(i);s.color=a,s.caretColor=a}}}else n.push(`bg-${t.background}`);return t.text&&(we(t.text)?(s.color=t.text,s.caretColor=t.text):n.push(`text-${t.text}`)),{colorClasses:n,colorStyles:s}})}function U(e){const{colorClasses:t,colorStyles:n}=he(()=>({text:D(e)}));return{textColorClasses:t,textColorStyles:n}}function se(e){const{colorClasses:t,colorStyles:n}=he(()=>({background:D(e)}));return{backgroundColorClasses:t,backgroundColorStyles:n}}const be=y({rounded:{type:[Boolean,Number,String],default:void 0},tile:Boolean},"rounded");function ye(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{roundedClasses:b(()=>{const s=le(e)?e.value:e.rounded,i=le(e)?e.value:e.tile,a=[];if(s===!0||s==="")a.push(`${t}--rounded`);else if(typeof s=="string"||s===0)for(const o of String(s).split(" "))a.push(`rounded-${o}`);else(i||s===!1)&&a.push("rounded-0");return a})}}const On=y({transition:{type:null,default:"fade-transition",validator:e=>e!==!0}},"transition"),zn=(e,t)=>{let{slots:n}=t;const{transition:s,disabled:i,group:a,...o}=e,{component:r=a?bt:Le,...l}=ue(s)?s:{};let c;return ue(s)?c=X(l,yt({disabled:i,group:a}),o):c=X({name:i||!s?"":s},o),pt(r,c,n)};function Mt(e,t){if(!Te)return;const n=t.modifiers||{},s=t.value,{handler:i,options:a}=typeof s=="object"?s:{handler:s,options:{}},o=new IntersectionObserver(function(){let r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],l=arguments.length>1?arguments[1]:void 0;const c=e._observe?.[t.instance.$.uid];if(!c)return;const f=r.some(m=>m.isIntersecting);i&&(!n.quiet||c.init)&&(!n.once||f||c.init)&&i(f,r,l),f&&n.once?Ge(e,t):c.init=!0},a);e._observe=Object(e._observe),e._observe[t.instance.$.uid]={init:!1,observer:o},o.observe(e)}function Ge(e,t){const n=e._observe?.[t.instance.$.uid];n&&(n.observer.unobserve(e),delete e._observe[t.instance.$.uid])}const An={mounted:Mt,unmounted:Ge},je=y({border:[Boolean,Number,String]},"border");function qe(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{borderClasses:b(()=>{const s=e.border;return s===!0||s===""?`${t}--border`:typeof s=="string"||s===0?String(s).split(" ").map(i=>`border-${i}`):[]})}}const Xe=y({elevation:{type:[Number,String],validator(e){const t=parseInt(e);return!isNaN(t)&&t>=0&&t<=24}}},"elevation");function Ue(e){return{elevationClasses:g(()=>{const n=le(e)?e.value:e.elevation;return n==null?[]:[`elevation-${n}`]})}}const Ht=["elevated","flat","tonal","outlined","text","plain"];function Gt(e,t){return S(Ct,null,[e&&S("span",{key:"overlay",class:k(`${t}__overlay`)},null),S("span",{key:"underlay",class:k(`${t}__underlay`)},null)])}const Ye=y({color:String,variant:{type:String,default:"elevated",validator:e=>Ht.includes(e)}},"variant");function jt(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();const n=g(()=>{const{variant:a}=D(e);return`${t}--variant-${a}`}),{colorClasses:s,colorStyles:i}=he(()=>{const{variant:a,color:o}=D(e);return{[["elevated","flat"].includes(a)?"background":"text"]:o}});return{colorClasses:s,colorStyles:i,variantClasses:n}}const qt=[null,"default","comfortable","compact"],Ke=y({density:{type:String,default:"default",validator:e=>qt.includes(e)}},"density");function Je(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{densityClasses:g(()=>`${t}--density-${e.density}`)}}const Qe=y({baseColor:String,divided:Boolean,...je(),...G(),...Ke(),...Xe(),...be(),...j(),...H(),...Ye()},"VBtnGroup"),ke=N()({name:"VBtnGroup",props:Qe(),setup(e,t){let{slots:n}=t;const{themeClasses:s}=K(e),{densityClasses:i}=Je(e),{borderClasses:a}=qe(e),{elevationClasses:o}=Ue(e),{roundedClasses:r}=ye(e);Ie({VBtn:{height:"auto",baseColor:g(()=>e.baseColor),color:g(()=>e.color),density:g(()=>e.density),flat:!0,variant:g(()=>e.variant)}}),W(()=>_(e.tag,{class:k(["v-btn-group",{"v-btn-group--divided":e.divided},s.value,a.value,i.value,o.value,r.value,e.class]),style:L(e.style)},n))}}),Xt=y({modelValue:{type:null,default:void 0},multiple:Boolean,mandatory:[Boolean,String],max:Number,selectedClass:String,disabled:Boolean},"group"),Ut=y({value:null,disabled:Boolean,selectedClass:String},"group-item");function Yt(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0;const s=J("useGroupItem");if(!s)throw new Error("[Vuetify] useGroupItem composable must be used inside a component setup function");const i=wt();Re(Symbol.for(`${t.description}:id`),i);const a=St(t,null);if(!a){if(!n)return a;throw new Error(`[Vuetify] Could not find useGroup injection with symbol ${t.description}`)}const o=g(()=>e.value),r=b(()=>!!(a.disabled.value||e.disabled));a.register({id:i,value:o,disabled:r},s),Ne(()=>{a.unregister(i)});const l=b(()=>a.isSelected(i)),c=b(()=>a.items.value[0].id===i),f=b(()=>a.items.value[a.items.value.length-1].id===i),m=b(()=>l.value&&[a.selectedClass.value,e.selectedClass]);return ge(l,u=>{s.emit("group:selected",{value:u})},{flush:"sync"}),{id:i,isSelected:l,isFirst:c,isLast:f,toggle:()=>a.select(i,!l.value),select:u=>a.select(i,u),selectedClass:m,value:o,disabled:r,group:a}}function Kt(e,t){let n=!1;const s=ce([]),i=$e(e,"modelValue",[],u=>u==null?[]:Ze(s,kt(u)),u=>{const v=Qt(s,u);return e.multiple?v:v[0]}),a=J("useGroup");function o(u,v){const p=u,d=Symbol.for(`${t.description}:id`),w=Bt(d,a?.vnode).indexOf(v);Pt(p.value)==null&&(p.value=w,p.useIndexAsValue=!0),w>-1?s.splice(w,0,p):s.push(p)}function r(u){if(n)return;l();const v=s.findIndex(p=>p.id===u);s.splice(v,1)}function l(){const u=s.find(v=>!v.disabled);u&&e.mandatory==="force"&&!i.value.length&&(i.value=[u.id])}xt(()=>{l()}),Ne(()=>{n=!0}),_t(()=>{for(let u=0;u<s.length;u++)s[u].useIndexAsValue&&(s[u].value=u)});function c(u,v){const p=s.find(d=>d.id===u);if(!(v&&p?.disabled))if(e.multiple){const d=i.value.slice(),h=d.findIndex(V=>V===u),w=~h;if(v=v??!w,w&&e.mandatory&&d.length<=1||!w&&e.max!=null&&d.length+1>e.max)return;h<0&&v?d.push(u):h>=0&&!v&&d.splice(h,1),i.value=d}else{const d=i.value.includes(u);if(e.mandatory&&d||!d&&!v)return;i.value=v??!d?[u]:[]}}function f(u){if(e.multiple,i.value.length){const v=i.value[0],p=s.findIndex(w=>w.id===v);let d=(p+u)%s.length,h=s[d];for(;h.disabled&&d!==p;)d=(d+u)%s.length,h=s[d];if(h.disabled)return;i.value=[s[d].id]}else{const v=s.find(p=>!p.disabled);v&&(i.value=[v.id])}}const m={register:o,unregister:r,selected:i,select:c,disabled:g(()=>e.disabled),prev:()=>f(s.length-1),next:()=>f(1),isSelected:u=>i.value.includes(u),selectedClass:g(()=>e.selectedClass),items:g(()=>s),getItemIndex:u=>Jt(s,u)};return Re(t,m),m}function Jt(e,t){const n=Ze(e,[t]);return n.length?e.findIndex(s=>s.id===n[0]):-1}function Ze(e,t){const n=[];return t.forEach(s=>{const i=e.find(o=>Oe(s,o.value)),a=e[s];i?.value!=null?n.push(i.id):a!=null&&n.push(a.id)}),n}function Qt(e,t){const n=[];return t.forEach(s=>{const i=e.findIndex(a=>a.id===s);if(~i){const a=e[i];n.push(a.value!=null?a.value:i)}}),n}const et=Symbol.for("vuetify:v-btn-toggle"),Zt=y({...Qe(),...Xt()},"VBtnToggle");N()({name:"VBtnToggle",props:Zt(),emits:{"update:modelValue":e=>!0},setup(e,t){let{slots:n}=t;const{isSelected:s,next:i,prev:a,select:o,selected:r}=Kt(e,et);return W(()=>{const l=ke.filterProps(e);return _(ke,X({class:["v-btn-toggle",e.class]},l,{style:e.style}),{default:()=>[n.default?.({isSelected:s,next:i,prev:a,select:o,selected:r})]})}),{next:i,prev:a,select:o}}});const en=["x-small","small","default","large","x-large"],pe=y({size:{type:[String,Number],default:"default"}},"size");function Ce(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return Ee(()=>{const n=e.size;let s,i;return q(en,n)?s=`${t}--size-${n}`:n&&(i={width:C(n),height:C(n)}),{sizeClasses:s,sizeStyles:i}})}const tn=y({color:String,disabled:Boolean,start:Boolean,end:Boolean,icon:de,opacity:[String,Number],...G(),...pe(),...j({tag:"i"}),...H()},"VIcon"),ae=N()({name:"VIcon",props:tn(),setup(e,t){let{attrs:n,slots:s}=t;const i=ze(),{themeClasses:a}=Vt(),{iconData:o}=It(()=>i.value||e.icon),{sizeClasses:r}=Ce(e),{textColorClasses:l,textColorStyles:c}=U(()=>e.color);return W(()=>{const f=s.default?.();f&&(i.value=Et(f).filter(u=>u.type===Lt&&u.children&&typeof u.children=="string")[0]?.children);const m=!!(n.onClick||n.onClickOnce);return _(o.value.component,{tag:e.tag,icon:o.value.icon,class:k(["v-icon","notranslate",a.value,r.value,l.value,{"v-icon--clickable":m,"v-icon--disabled":e.disabled,"v-icon--start":e.start,"v-icon--end":e.end},e.class]),style:L([{"--v-icon-opacity":e.opacity},r.value?void 0:{fontSize:C(e.size),height:C(e.size),width:C(e.size)},c.value,e.style]),role:m?"button":void 0,"aria-hidden":!m,tabindex:m?e.disabled?-1:0:void 0},{default:()=>[f]})}),{}}});function tt(e,t){const n=Ae(),s=ze(!1);if(Te){const i=new IntersectionObserver(a=>{s.value=!!a.find(o=>o.isIntersecting)},t);We(()=>{i.disconnect()}),ge(n,(a,o)=>{o&&(i.unobserve(o),s.value=!1),a&&i.observe(a)},{flush:"post"})}return{intersectionRef:n,isIntersecting:s}}const nn=y({bgColor:String,color:String,indeterminate:[Boolean,String],modelValue:{type:[Number,String],default:0},rotate:{type:[Number,String],default:0},width:{type:[Number,String],default:4},...G(),...pe(),...j({tag:"div"}),...H()},"VProgressCircular"),sn=N()({name:"VProgressCircular",props:nn(),setup(e,t){let{slots:n}=t;const s=20,i=2*Math.PI*s,a=Ae(),{themeClasses:o}=K(e),{sizeClasses:r,sizeStyles:l}=Ce(e),{textColorClasses:c,textColorStyles:f}=U(()=>e.color),{textColorClasses:m,textColorStyles:u}=U(()=>e.bgColor),{intersectionRef:v,isIntersecting:p}=tt(),{resizeRef:d,contentRect:h}=Tt(),w=g(()=>fe(parseFloat(e.modelValue),0,100)),V=g(()=>Number(e.width)),I=g(()=>l.value?Number(e.size):h.value?h.value.width:Math.max(V.value,32)),P=g(()=>s/(1-V.value/I.value)*2),T=g(()=>V.value/I.value*P.value),O=g(()=>C((100-w.value)/100*i));return Rt(()=>{v.value=a.value,d.value=a.value}),W(()=>_(e.tag,{ref:a,class:k(["v-progress-circular",{"v-progress-circular--indeterminate":!!e.indeterminate,"v-progress-circular--visible":p.value,"v-progress-circular--disable-shrink":e.indeterminate==="disable-shrink"},o.value,r.value,c.value,e.class]),style:L([l.value,f.value,e.style]),role:"progressbar","aria-valuemin":"0","aria-valuemax":"100","aria-valuenow":e.indeterminate?void 0:w.value},{default:()=>[S("svg",{style:{transform:`rotate(calc(-90deg + ${Number(e.rotate)}deg))`},xmlns:"http://www.w3.org/2000/svg",viewBox:`0 0 ${P.value} ${P.value}`},[S("circle",{class:k(["v-progress-circular__underlay",m.value]),style:L(u.value),fill:"transparent",cx:"50%",cy:"50%",r:s,"stroke-width":T.value,"stroke-dasharray":i,"stroke-dashoffset":0},null),S("circle",{class:"v-progress-circular__overlay",fill:"transparent",cx:"50%",cy:"50%",r:s,"stroke-width":T.value,"stroke-dasharray":i,"stroke-dashoffset":O.value},null)]),n.default&&S("div",{class:"v-progress-circular__content"},[n.default({value:w.value})])]})),{}}}),Be={center:"center",top:"bottom",bottom:"top",left:"right",right:"left"},nt=y({location:String},"location");function st(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,n=arguments.length>2?arguments[2]:void 0;const{isRtl:s}=De();return{locationStyles:b(()=>{if(!e.location)return{};const{side:a,align:o}=At(e.location.split(" ").length>1?e.location:`${e.location} center`,s.value);function r(c){return n?n(c):0}const l={};return a!=="center"&&(t?l[Be[a]]=`calc(100% - ${r(a)}px)`:l[a]=0),o!=="center"?t?l[Be[o]]=`calc(100% - ${r(o)}px)`:l[o]=0:(a==="center"?l.top=l.left="50%":l[{top:"left",bottom:"left",left:"top",right:"top"}[a]]="50%",l.transform={top:"translateX(-50%)",bottom:"translateX(-50%)",left:"translateY(-50%)",right:"translateY(-50%)",center:"translate(-50%, -50%)"}[a]),l})}}const an=y({absolute:Boolean,active:{type:Boolean,default:!0},bgColor:String,bgOpacity:[Number,String],bufferValue:{type:[Number,String],default:0},bufferColor:String,bufferOpacity:[Number,String],clickable:Boolean,color:String,height:{type:[Number,String],default:4},indeterminate:Boolean,max:{type:[Number,String],default:100},modelValue:{type:[Number,String],default:0},opacity:[Number,String],reverse:Boolean,stream:Boolean,striped:Boolean,roundedBar:Boolean,...G(),...nt({location:"top"}),...be(),...j(),...H()},"VProgressLinear"),on=N()({name:"VProgressLinear",props:an(),emits:{"update:modelValue":e=>!0},setup(e,t){let{slots:n}=t;const s=$e(e,"modelValue"),{isRtl:i,rtlClasses:a}=De(),{themeClasses:o}=K(e),{locationStyles:r}=st(e),{textColorClasses:l,textColorStyles:c}=U(()=>e.color),{backgroundColorClasses:f,backgroundColorStyles:m}=se(()=>e.bgColor||e.color),{backgroundColorClasses:u,backgroundColorStyles:v}=se(()=>e.bufferColor||e.bgColor||e.color),{backgroundColorClasses:p,backgroundColorStyles:d}=se(()=>e.color),{roundedClasses:h}=ye(e),{intersectionRef:w,isIntersecting:V}=tt(),I=b(()=>parseFloat(e.max)),P=b(()=>parseFloat(e.height)),T=b(()=>fe(parseFloat(e.bufferValue)/I.value*100,0,100)),O=b(()=>fe(parseFloat(s.value)/I.value*100,0,100)),E=b(()=>i.value!==e.reverse),Q=b(()=>e.indeterminate?"fade-transition":"slide-x-transition"),z=Fe&&window.matchMedia?.("(forced-colors: active)").matches;function Z(x){if(!w.value)return;const{left:ee,right:te,width:A}=w.value.getBoundingClientRect(),ft=E.value?A-x.clientX+(te-A):x.clientX-ee;s.value=Math.round(ft/A*I.value)}return W(()=>_(e.tag,{ref:w,class:k(["v-progress-linear",{"v-progress-linear--absolute":e.absolute,"v-progress-linear--active":e.active&&V.value,"v-progress-linear--reverse":E.value,"v-progress-linear--rounded":e.rounded,"v-progress-linear--rounded-bar":e.roundedBar,"v-progress-linear--striped":e.striped},h.value,o.value,a.value,e.class]),style:L([{bottom:e.location==="bottom"?0:void 0,top:e.location==="top"?0:void 0,height:e.active?C(P.value):0,"--v-progress-linear-height":C(P.value),...e.absolute?r.value:{}},e.style]),role:"progressbar","aria-hidden":e.active?"false":"true","aria-valuemin":"0","aria-valuemax":e.max,"aria-valuenow":e.indeterminate?void 0:Math.min(parseFloat(s.value),I.value),onClick:e.clickable&&Z},{default:()=>[e.stream&&S("div",{key:"stream",class:k(["v-progress-linear__stream",l.value]),style:{...c.value,[E.value?"left":"right"]:C(-P.value),borderTop:`${C(P.value/2)} dotted`,opacity:parseFloat(e.bufferOpacity),top:`calc(50% - ${C(P.value/4)})`,width:C(100-T.value,"%"),"--v-progress-linear-stream-to":C(P.value*(E.value?1:-1))}},null),S("div",{class:k(["v-progress-linear__background",z?void 0:f.value]),style:L([m.value,{opacity:parseFloat(e.bgOpacity),width:e.stream?0:void 0}])},null),S("div",{class:k(["v-progress-linear__buffer",z?void 0:u.value]),style:L([v.value,{opacity:parseFloat(e.bufferOpacity),width:C(T.value,"%")}])},null),_(Le,{name:Q.value},{default:()=>[e.indeterminate?S("div",{class:"v-progress-linear__indeterminate"},[["long","short"].map(x=>S("div",{key:x,class:k(["v-progress-linear__indeterminate",x,z?void 0:p.value]),style:L(d.value)},null))]):S("div",{class:k(["v-progress-linear__determinate",z?void 0:p.value]),style:L([d.value,{width:C(O.value,"%")}])},null)]}),n.default&&S("div",{class:"v-progress-linear__content"},[n.default({value:O.value,buffer:T.value})])]})),{}}}),rn=y({loading:[Boolean,String]},"loader");function ln(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{loaderClasses:g(()=>({[`${t}--loading`]:e.loading}))}}function Wn(e,t){let{slots:n}=t;return S("div",{class:k(`${e.name}__loader`)},[n.default?.({color:e.color,isActive:e.active})||_(on,{absolute:e.absolute,active:e.active,color:e.color,height:"2",indeterminate:!0},null)])}const un=["static","relative","fixed","absolute","sticky"],cn=y({position:{type:String,validator:e=>un.includes(e)}},"position");function dn(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{positionClasses:g(()=>e.position?`${t}--${e.position}`:void 0)}}function fn(){const e=J("useRoute");return b(()=>e?.proxy?.$route)}function Dn(){return J("useRouter")?.proxy?.$router}function vn(e,t){const n=Nt("RouterLink"),s=g(()=>!!(e.href||e.to)),i=b(()=>s?.value||Se(t,"click")||Se(e,"click"));if(typeof n=="string"||!("useLink"in n)){const f=g(()=>e.href);return{isLink:s,isClickable:i,href:f,linkProps:ce({href:f})}}const a=n.useLink({to:g(()=>e.to||""),replace:g(()=>e.replace)}),o=b(()=>e.to?a:void 0),r=fn(),l=b(()=>o.value?e.exact?r.value?o.value.isExactActive?.value&&Oe(o.value.route.value.query,r.value.query):o.value.isExactActive?.value??!1:o.value.isActive?.value??!1:!1),c=b(()=>e.to?o.value?.route.value.href:e.href);return{isLink:s,isClickable:i,isActive:l,route:o.value?.route,navigate:o.value?.navigate,href:c,linkProps:ce({href:c,"aria-current":g(()=>l.value?"page":void 0)})}}const mn=y({href:String,replace:Boolean,to:[String,Object],exact:Boolean},"router");let ie=!1;function Fn(e,t){let n=!1,s,i;Fe&&e?.beforeEach&&(Me(()=>{window.addEventListener("popstate",a),s=e.beforeEach((o,r,l)=>{ie?n?t(l):l():setTimeout(()=>n?t(l):l()),ie=!0}),i=e?.afterEach(()=>{ie=!1})}),We(()=>{window.removeEventListener("popstate",a),s?.(),i?.()}));function a(o){o.state?.replaced||(n=!0,setTimeout(()=>n=!1))}}function gn(e,t){ge(()=>e.isActive?.value,n=>{e.isLink.value&&n!=null&&t&&Me(()=>{t(n)})},{immediate:!0})}const ve=Symbol("rippleStop"),hn=80;function Pe(e,t){e.style.transform=t,e.style.webkitTransform=t}function me(e){return e.constructor.name==="TouchEvent"}function at(e){return e.constructor.name==="KeyboardEvent"}const bn=function(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},s=0,i=0;if(!at(e)){const m=t.getBoundingClientRect(),u=me(e)?e.touches[e.touches.length-1]:e;s=u.clientX-m.left,i=u.clientY-m.top}let a=0,o=.3;t._ripple?.circle?(o=.15,a=t.clientWidth/2,a=n.center?a:a+Math.sqrt((s-a)**2+(i-a)**2)/4):a=Math.sqrt(t.clientWidth**2+t.clientHeight**2)/2;const r=`${(t.clientWidth-a*2)/2}px`,l=`${(t.clientHeight-a*2)/2}px`,c=n.center?r:`${s-a}px`,f=n.center?l:`${i-a}px`;return{radius:a,scale:o,x:c,y:f,centerX:r,centerY:l}},Y={show(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(!t?._ripple?.enabled)return;const s=document.createElement("span"),i=document.createElement("span");s.appendChild(i),s.className="v-ripple__container",n.class&&(s.className+=` ${n.class}`);const{radius:a,scale:o,x:r,y:l,centerX:c,centerY:f}=bn(e,t,n),m=`${a*2}px`;i.className="v-ripple__animation",i.style.width=m,i.style.height=m,t.appendChild(s);const u=window.getComputedStyle(t);u&&u.position==="static"&&(t.style.position="relative",t.dataset.previousPosition="static"),i.classList.add("v-ripple__animation--enter"),i.classList.add("v-ripple__animation--visible"),Pe(i,`translate(${r}, ${l}) scale3d(${o},${o},${o})`),i.dataset.activated=String(performance.now()),requestAnimationFrame(()=>{requestAnimationFrame(()=>{i.classList.remove("v-ripple__animation--enter"),i.classList.add("v-ripple__animation--in"),Pe(i,`translate(${c}, ${f}) scale3d(1,1,1)`)})})},hide(e){if(!e?._ripple?.enabled)return;const t=e.getElementsByClassName("v-ripple__animation");if(t.length===0)return;const n=t[t.length-1];if(n.dataset.isHiding)return;n.dataset.isHiding="true";const s=performance.now()-Number(n.dataset.activated),i=Math.max(250-s,0);setTimeout(()=>{n.classList.remove("v-ripple__animation--in"),n.classList.add("v-ripple__animation--out"),setTimeout(()=>{e.getElementsByClassName("v-ripple__animation").length===1&&e.dataset.previousPosition&&(e.style.position=e.dataset.previousPosition,delete e.dataset.previousPosition),n.parentNode?.parentNode===e&&e.removeChild(n.parentNode)},300)},i)}};function it(e){return typeof e>"u"||!!e}function F(e){const t={},n=e.currentTarget;if(!(!n?._ripple||n._ripple.touched||e[ve])){if(e[ve]=!0,me(e))n._ripple.touched=!0,n._ripple.isTouch=!0;else if(n._ripple.isTouch)return;if(t.center=n._ripple.centered||at(e),n._ripple.class&&(t.class=n._ripple.class),me(e)){if(n._ripple.showTimerCommit)return;n._ripple.showTimerCommit=()=>{Y.show(e,n,t)},n._ripple.showTimer=window.setTimeout(()=>{n?._ripple?.showTimerCommit&&(n._ripple.showTimerCommit(),n._ripple.showTimerCommit=null)},hn)}else Y.show(e,n,t)}}function Ve(e){e[ve]=!0}function B(e){const t=e.currentTarget;if(t?._ripple){if(window.clearTimeout(t._ripple.showTimer),e.type==="touchend"&&t._ripple.showTimerCommit){t._ripple.showTimerCommit(),t._ripple.showTimerCommit=null,t._ripple.showTimer=window.setTimeout(()=>{B(e)});return}window.setTimeout(()=>{t._ripple&&(t._ripple.touched=!1)}),Y.hide(t)}}function ot(e){const t=e.currentTarget;t?._ripple&&(t._ripple.showTimerCommit&&(t._ripple.showTimerCommit=null),window.clearTimeout(t._ripple.showTimer))}let M=!1;function rt(e){!M&&(e.keyCode===xe.enter||e.keyCode===xe.space)&&(M=!0,F(e))}function lt(e){M=!1,B(e)}function ut(e){M&&(M=!1,B(e))}function ct(e,t,n){const{value:s,modifiers:i}=t,a=it(s);if(a||Y.hide(e),e._ripple=e._ripple??{},e._ripple.enabled=a,e._ripple.centered=i.center,e._ripple.circle=i.circle,ue(s)&&s.class&&(e._ripple.class=s.class),a&&!n){if(i.stop){e.addEventListener("touchstart",Ve,{passive:!0}),e.addEventListener("mousedown",Ve);return}e.addEventListener("touchstart",F,{passive:!0}),e.addEventListener("touchend",B,{passive:!0}),e.addEventListener("touchmove",ot,{passive:!0}),e.addEventListener("touchcancel",B),e.addEventListener("mousedown",F),e.addEventListener("mouseup",B),e.addEventListener("mouseleave",B),e.addEventListener("keydown",rt),e.addEventListener("keyup",lt),e.addEventListener("blur",ut),e.addEventListener("dragstart",B,{passive:!0})}else!a&&n&&dt(e)}function dt(e){e.removeEventListener("mousedown",F),e.removeEventListener("touchstart",F),e.removeEventListener("touchend",B),e.removeEventListener("touchmove",ot),e.removeEventListener("touchcancel",B),e.removeEventListener("mouseup",B),e.removeEventListener("mouseleave",B),e.removeEventListener("keydown",rt),e.removeEventListener("keyup",lt),e.removeEventListener("dragstart",B),e.removeEventListener("blur",ut)}function yn(e,t){ct(e,t,!1)}function pn(e){delete e._ripple,dt(e)}function Cn(e,t){if(t.value===t.oldValue)return;const n=it(t.oldValue);ct(e,t,n)}const wn={mounted:yn,unmounted:pn,updated:Cn},Sn=y({active:{type:Boolean,default:void 0},activeColor:String,baseColor:String,symbol:{type:null,default:et},flat:Boolean,icon:[Boolean,String,Function,Object],prependIcon:de,appendIcon:de,block:Boolean,readonly:Boolean,slim:Boolean,stacked:Boolean,ripple:{type:[Boolean,Object],default:!0},text:{type:[String,Number,Boolean],default:void 0},...je(),...G(),...Ke(),...Dt(),...Xe(),...Ut(),...rn(),...nt(),...cn(),...be(),...mn(),...pe(),...j({tag:"button"}),...H(),...Ye({variant:"elevated"})},"VBtn"),Mn=N()({name:"VBtn",props:Sn(),emits:{"group:selected":e=>!0},setup(e,t){let{attrs:n,slots:s}=t;const{themeClasses:i}=K(e),{borderClasses:a}=qe(e),{densityClasses:o}=Je(e),{dimensionStyles:r}=Ft(e),{elevationClasses:l}=Ue(e),{loaderClasses:c}=ln(e),{locationStyles:f}=st(e),{positionClasses:m}=dn(e),{roundedClasses:u}=ye(e),{sizeClasses:v,sizeStyles:p}=Ce(e),d=Yt(e,e.symbol,!1),h=vn(e,n),w=b(()=>e.active!==void 0?e.active:h.isLink.value?h.isActive?.value:d?.isSelected.value),V=g(()=>w.value?e.activeColor??e.color:e.color),I=b(()=>({color:d?.isSelected.value&&(!h.isLink.value||h.isActive?.value)||!d||h.isActive?.value?V.value??e.baseColor:e.baseColor,variant:e.variant})),{colorClasses:P,colorStyles:T,variantClasses:O}=jt(I),E=b(()=>d?.disabled.value||e.disabled),Q=g(()=>e.variant==="elevated"&&!(e.disabled||e.flat||e.border)),z=b(()=>{if(!(e.value===void 0||typeof e.value=="symbol"))return Object(e.value)===e.value?JSON.stringify(e.value,null,0):e.value});function Z(x){E.value||h.isLink.value&&(x.metaKey||x.ctrlKey||x.shiftKey||x.button!==0||n.target==="_blank")||(h.navigate?.(x),d?.toggle())}return gn(h,d?.select),W(()=>{const x=h.isLink.value?"a":e.tag,ee=!!(e.prependIcon||s.prepend),te=!!(e.appendIcon||s.append),A=!!(e.icon&&e.icon!==!0);return $t(_(x,X({type:x==="a"?void 0:"button",class:["v-btn",d?.selectedClass.value,{"v-btn--active":w.value,"v-btn--block":e.block,"v-btn--disabled":E.value,"v-btn--elevated":Q.value,"v-btn--flat":e.flat,"v-btn--icon":!!e.icon,"v-btn--loading":e.loading,"v-btn--readonly":e.readonly,"v-btn--slim":e.slim,"v-btn--stacked":e.stacked},i.value,a.value,P.value,o.value,l.value,c.value,m.value,u.value,v.value,O.value,e.class],style:[T.value,r.value,f.value,p.value,e.style],"aria-busy":e.loading?!0:void 0,disabled:E.value||void 0,tabindex:e.loading||e.readonly?-1:void 0,onClick:Z,value:z.value},h.linkProps),{default:()=>[Gt(!0,"v-btn"),!e.icon&&ee&&S("span",{key:"prepend",class:"v-btn__prepend"},[s.prepend?_(ne,{key:"prepend-defaults",disabled:!e.prependIcon,defaults:{VIcon:{icon:e.prependIcon}}},s.prepend):_(ae,{key:"prepend-icon",icon:e.prependIcon},null)]),S("span",{class:"v-btn__content","data-no-activator":""},[!s.default&&A?_(ae,{key:"content-icon",icon:e.icon},null):_(ne,{key:"content-defaults",disabled:!A,defaults:{VIcon:{icon:e.icon}}},{default:()=>[s.default?.()??Ot(e.text)]})]),!e.icon&&te&&S("span",{key:"append",class:"v-btn__append"},[s.append?_(ne,{key:"append-defaults",disabled:!e.appendIcon,defaults:{VIcon:{icon:e.appendIcon}}},s.append):_(ae,{key:"append-icon",icon:e.appendIcon},null)]),!!e.loading&&S("span",{key:"loader",class:"v-btn__loader"},[s.loader?.()??_(sn,{color:typeof e.loading=="boolean"?void 0:e.loading,indeterminate:!0,width:"2"},null)])]}),[[wn,!E.value&&e.ripple,"",{center:!!e.icon}]])}),{group:d}}}),oe=Symbol("Forwarded refs");function re(e,t){let n=e;for(;n;){const s=Reflect.getOwnPropertyDescriptor(n,t);if(s)return s;n=Object.getPrototypeOf(n)}}function Hn(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),s=1;s<t;s++)n[s-1]=arguments[s];return e[oe]=n,new Proxy(e,{get(i,a){if(Reflect.has(i,a))return Reflect.get(i,a);if(!(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))){for(const o of n)if(o.value&&Reflect.has(o.value,a)){const r=Reflect.get(o.value,a);return typeof r=="function"?r.bind(o.value):r}}},has(i,a){if(Reflect.has(i,a))return!0;if(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))return!1;for(const o of n)if(o.value&&Reflect.has(o.value,a))return!0;return!1},set(i,a,o){if(Reflect.has(i,a))return Reflect.set(i,a,o);if(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))return!1;for(const r of n)if(r.value&&Reflect.has(r.value,a))return Reflect.set(r.value,a,o);return!1},getOwnPropertyDescriptor(i,a){const o=Reflect.getOwnPropertyDescriptor(i,a);if(o)return o;if(!(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))){for(const r of n){if(!r.value)continue;const l=re(r.value,a)??("_"in r.value?re(r.value._?.setupState,a):void 0);if(l)return l}for(const r of n){const l=r.value&&r.value[oe];if(!l)continue;const c=l.slice();for(;c.length;){const f=c.shift(),m=re(f.value,a);if(m)return m;const u=f.value&&f.value[oe];u&&c.push(...u)}}}}})}export{Vn as $,je as A,Dn as B,_e as C,ln as D,sn as E,pe as F,Xt as G,rn as H,An as I,Ce as J,jt as K,Wn as L,zn as M,Gt as N,Ln as O,In as P,$n as Q,wn as R,Nn as S,At as T,_n as U,Mn as V,kn as W,Bn as X,R as Y,En as Z,Pn as _,Tn as a,Fn as a0,Je as b,se as c,j as d,Ke as e,Hn as f,vn as g,mn as h,ye as i,be as j,ae as k,ne as l,Sn as m,on as n,Ft as o,On as p,Dt as q,Kt as r,Rn as s,Yt as t,U as u,Ut as v,Ye as w,Xe as x,Ue as y,qe as z};
@@ -1 +0,0 @@
1
- #groupHelp[data-v-d3017405]{margin-top:2em;margin-bottom:2em;color:rgb(var(--v-theme-textSecondary))}#groupTable[data-v-d3017405]{border:solid thin;margin-top:1em}#groupTable th[data-v-d3017405],#groupTable td[data-v-d3017405]{padding:.25em}.see[data-v-d3017405]{background-color:rgb(var(--v-theme-includeGroup))}.hidden[data-v-d3017405]{background-color:rgb(var(--v-theme-excludeGroup))}
@@ -1 +0,0 @@
1
- #groupHelp[data-v-d3017405]{margin-top:2em;margin-bottom:2em;color:rgb(var(--v-theme-textSecondary))}#groupTable[data-v-d3017405]{border:solid thin;margin-top:1em}#groupTable th[data-v-d3017405],#groupTable td[data-v-d3017405]{padding:.25em}.see[data-v-d3017405]{background-color:rgb(var(--v-theme-includeGroup))}.hidden[data-v-d3017405]{background-color:rgb(var(--v-theme-excludeGroup))}
@@ -1 +0,0 @@
1
- import{_ as w,B as k,D as G,E as h,q as A,v as C,a as l,w as a,s as i,M as g,b as t,y as m,ao as v}from"./main-CpP-5rLh.js";import{G as S,A as I,R as V,a as D,b as E,c as j}from"./relation-chips-QzwrdJWs.js";import{useAdminStore as d}from"./admin-BQ68PA7O.js";import{c as L}from"./VSelectionControl-DoFzRlEh.js";import{a as f,V as N}from"./VRadioGroup-DJBFM2Br.js";import"./forwardRefs-CGpIPavG.js";import"./VForm-Dw7aCtM5.js";import"./VDialog-tf0N3lvG.js";import"./VSelect-Cv8OuNtL.js";import"./ssrBoot-D216TWr1.js";import"./VDivider-CTvTvFr_.js";import"./VCheckboxBtn-Bxf1MS02.js";import"./VTable-C-cNChDa.js";import"./filter-BucmWboA.js";import"./confirm-dialog-AMnfyuMm.js";const x=["name","userSet","librarySet","exclude"];Object.freeze(x);const b={name:"",userSet:[],librarySet:[],exclude:!1};Object.freeze(b);const H={name:"AdminGroupCreateUpdateInputs",components:{AdminRelationPicker:I,GroupChip:S},props:{oldRow:{type:[Object,Boolean],default:!1}},emits:["change"],data(){return{rules:{name:[s=>!!s||"Name is required",s=>!!s&&!this.names.has(s.trim())||"Name already used"]},row:{...b,...g(this.oldRow)}}},computed:{...h(d,["normalLibraries"]),...G(d,{groups:s=>s.groups,users:s=>s.users}),names(){return this.nameSet(this.groups,"name",this.oldRow,!0)}},watch:{row:{handler(s){this.$emit("change",s)},deep:!0},oldRow:{handler(s){this.row=g(s)},deep:!0}},methods:{...k(d,["nameSet"])},UPDATE_KEYS:x,EMPTY_ROW:b};function P(s,e,y,U,o,c){const p=i("GroupChip"),u=i("AdminRelationPicker");return C(),A("div",null,[l(L,{modelValue:o.row.name,"onUpdate:modelValue":e[0]||(e[0]=r=>o.row.name=r),label:"Group Name",rules:o.rules.name,clearable:"",autofocus:""},null,8,["modelValue","rules"]),l(N,{inline:"",label:"Type","model-value":o.row.exclude,"hide-details":"auto","onUpdate:modelValue":e[1]||(e[1]=r=>o.row.exclude=r)},{default:a(()=>[l(f,{value:!1},{label:a(()=>[l(p,{item:{name:"Include",exclude:!1},"title-key":"name","group-type":""})]),_:1}),l(f,{value:!0},{label:a(()=>[l(p,{item:{name:"Exclude",exclude:!0},"title-key":"name","group-type":""})]),_:1})]),_:1},8,["model-value"]),l(u,{"model-value":o.row.userSet,label:"Users",objs:s.users,"title-key":"username","onUpdate:modelValue":e[2]||(e[2]=r=>o.row.userSet=r)},null,8,["model-value","objs"]),l(u,{"model-value":o.row.librarySet,label:"Libraries",objs:s.normalLibraries,"title-key":"path","onUpdate:modelValue":e[3]||(e[3]=r=>o.row.librarySet=r)},null,8,["model-value","objs"])])}const O=w(H,[["render",P]]),B=180,z={name:"AdminGroupsTab",components:{AdminTable:j,AdminDeleteRowDialog:E,AdminCreateUpdateDialog:D,RelationChips:V,GroupChip:S},data(){return{lastUpdate:{pk:0,field:void 0},AdminGroupCreateUpdateInputs:v(O),GROUP_HELP_HEIGHT:B,headers:[{title:"Name",key:"name",align:"start"},{title:"Type",key:"exclude",align:"start"},{title:"Users",key:"userSet"},{title:"Libraries",key:"librarySet"},{title:"Actions",key:"actions",sortable:!1}]}},computed:{...h(d,["normalLibraries"]),...G(d,{groups:s=>s.groups,users:s=>s.users})},mounted(){this.loadTables(["User","Library","Group"])},methods:{...k(d,["loadTables"]),groupType(s){const e=s.exclude;return{name:e?"Exclude ":"Include",exclude:e}}}},_={class:"tabHeader"},q={id:"groupHelp"},M={id:"groupTable"};function Y(s,e,y,U,o,c){const p=i("AdminCreateUpdateDialog"),u=i("GroupChip"),r=i("RelationChips"),R=i("AdminDeleteRowDialog"),T=i("AdminTable");return C(),A("div",null,[t("header",_,[l(p,{table:"Group","max-width":"20em",inputs:o.AdminGroupCreateUpdateInputs},null,8,["inputs"])]),l(T,{"item-title":"name",headers:o.headers,items:s.groups},{"no-data":a(()=>e[0]||(e[0]=[t("td",{class:"adminNoData",colspan:"100%"},"No groups",-1)])),"item.exclude":a(({item:n})=>[l(u,{"group-type":"",item:c.groupType(n),"title-key":"name"},null,8,["item"])]),"item.userSet":a(({item:n})=>[l(r,{pks:n.userSet,objs:s.users,"title-key":"username"},null,8,["pks","objs"])]),"item.librarySet":a(({item:n})=>[l(r,{pks:n.librarySet,objs:s.normalLibraries,"title-key":"path"},null,8,["pks","objs"])]),"item.actions":a(({item:n})=>[l(p,{table:"Group","old-row":n,"max-width":"20em",inputs:o.AdminGroupCreateUpdateInputs,size:"small",density:"compact"},null,8,["old-row","inputs"]),l(R,{table:"Group",pk:n.pk,name:n.name,size:"small",density:"compact"},null,8,["pk","name"])]),_:2},1032,["headers","items"]),t("div",q,[e[9]||(e[9]=t("h3",null,"Group Logic",-1)),e[10]||(e[10]=t("p",null," A library in no groups is accessible to every user and non-users if those are enabled. ",-1)),e[11]||(e[11]=t("p",null,[m(" A library with "),t("em",null,"any"),m(" Include groups is accessible "),t("em",null,"only"),m(" to users who are in those groups. ")],-1)),e[12]||(e[12]=t("p",null,[m(" A library with "),t("em",null,"any"),m(" Exclude groups is not accessible to Guest users but is acccessable to any logged in users that are not in the Exclude groups. ")],-1)),e[13]||(e[13]=t("p",null," If you have libraries added and you do not see them in your browser, check to see if the library and your user are in the same group. ",-1)),t("table",M,[e[8]||(e[8]=t("thead",null,[t("tr",null,[t("th",null,"Library in Group Type"),t("th",null,"Guest"),t("th",null,"User Out of Group"),t("th",null,"User In Group")])],-1)),t("tbody",null,[e[7]||(e[7]=t("tr",null,[t("td",null,"Not in a Group"),t("td",{class:"see"},"Can See"),t("td",{class:"see"},"Can See"),t("td",{class:"see"},"Can See")],-1)),t("tr",null,[t("td",null,[l(u,{item:{name:"Include",exclude:!1},"title-key":"name","group-type":""})]),e[1]||(e[1]=t("td",{class:"hidden"},"Hidden",-1)),e[2]||(e[2]=t("td",{class:"hidden"},"Hidden",-1)),e[3]||(e[3]=t("td",{class:"see"},"Can See",-1))]),t("tr",null,[t("td",null,[l(u,{item:{name:"Exclude",exclude:!0},"title-key":"name","group-type":""})]),e[4]||(e[4]=t("td",{class:"hidden"},"Hidden",-1)),e[5]||(e[5]=t("td",{class:"see"},"Can See",-1)),e[6]||(e[6]=t("td",{class:"hidden"},"Hidden",-1))])])])])])}const ae=w(z,[["render",Y],["__scopeId","data-v-d3017405"]]);export{ae as default};
@@ -1 +0,0 @@
1
- import{_ as w,B as k,D as G,E as h,q as A,v as C,a as l,w as a,s as i,M as g,b as t,y as m,ao as v}from"./main-CpP-5rLh.js";import{G as S,A as I,R as V,a as D,b as E,c as j}from"./relation-chips-QzwrdJWs.js";import{useAdminStore as d}from"./admin-BQ68PA7O.js";import{c as L}from"./VSelectionControl-DoFzRlEh.js";import{a as f,V as N}from"./VRadioGroup-DJBFM2Br.js";import"./forwardRefs-CGpIPavG.js";import"./VForm-Dw7aCtM5.js";import"./VDialog-tf0N3lvG.js";import"./VSelect-Cv8OuNtL.js";import"./ssrBoot-D216TWr1.js";import"./VDivider-CTvTvFr_.js";import"./VCheckboxBtn-Bxf1MS02.js";import"./VTable-C-cNChDa.js";import"./filter-BucmWboA.js";import"./confirm-dialog-AMnfyuMm.js";const x=["name","userSet","librarySet","exclude"];Object.freeze(x);const b={name:"",userSet:[],librarySet:[],exclude:!1};Object.freeze(b);const H={name:"AdminGroupCreateUpdateInputs",components:{AdminRelationPicker:I,GroupChip:S},props:{oldRow:{type:[Object,Boolean],default:!1}},emits:["change"],data(){return{rules:{name:[s=>!!s||"Name is required",s=>!!s&&!this.names.has(s.trim())||"Name already used"]},row:{...b,...g(this.oldRow)}}},computed:{...h(d,["normalLibraries"]),...G(d,{groups:s=>s.groups,users:s=>s.users}),names(){return this.nameSet(this.groups,"name",this.oldRow,!0)}},watch:{row:{handler(s){this.$emit("change",s)},deep:!0},oldRow:{handler(s){this.row=g(s)},deep:!0}},methods:{...k(d,["nameSet"])},UPDATE_KEYS:x,EMPTY_ROW:b};function P(s,e,y,U,o,c){const p=i("GroupChip"),u=i("AdminRelationPicker");return C(),A("div",null,[l(L,{modelValue:o.row.name,"onUpdate:modelValue":e[0]||(e[0]=r=>o.row.name=r),label:"Group Name",rules:o.rules.name,clearable:"",autofocus:""},null,8,["modelValue","rules"]),l(N,{inline:"",label:"Type","model-value":o.row.exclude,"hide-details":"auto","onUpdate:modelValue":e[1]||(e[1]=r=>o.row.exclude=r)},{default:a(()=>[l(f,{value:!1},{label:a(()=>[l(p,{item:{name:"Include",exclude:!1},"title-key":"name","group-type":""})]),_:1}),l(f,{value:!0},{label:a(()=>[l(p,{item:{name:"Exclude",exclude:!0},"title-key":"name","group-type":""})]),_:1})]),_:1},8,["model-value"]),l(u,{"model-value":o.row.userSet,label:"Users",objs:s.users,"title-key":"username","onUpdate:modelValue":e[2]||(e[2]=r=>o.row.userSet=r)},null,8,["model-value","objs"]),l(u,{"model-value":o.row.librarySet,label:"Libraries",objs:s.normalLibraries,"title-key":"path","onUpdate:modelValue":e[3]||(e[3]=r=>o.row.librarySet=r)},null,8,["model-value","objs"])])}const O=w(H,[["render",P]]),B=180,z={name:"AdminGroupsTab",components:{AdminTable:j,AdminDeleteRowDialog:E,AdminCreateUpdateDialog:D,RelationChips:V,GroupChip:S},data(){return{lastUpdate:{pk:0,field:void 0},AdminGroupCreateUpdateInputs:v(O),GROUP_HELP_HEIGHT:B,headers:[{title:"Name",key:"name",align:"start"},{title:"Type",key:"exclude",align:"start"},{title:"Users",key:"userSet"},{title:"Libraries",key:"librarySet"},{title:"Actions",key:"actions",sortable:!1}]}},computed:{...h(d,["normalLibraries"]),...G(d,{groups:s=>s.groups,users:s=>s.users})},mounted(){this.loadTables(["User","Library","Group"])},methods:{...k(d,["loadTables"]),groupType(s){const e=s.exclude;return{name:e?"Exclude ":"Include",exclude:e}}}},_={class:"tabHeader"},q={id:"groupHelp"},M={id:"groupTable"};function Y(s,e,y,U,o,c){const p=i("AdminCreateUpdateDialog"),u=i("GroupChip"),r=i("RelationChips"),R=i("AdminDeleteRowDialog"),T=i("AdminTable");return C(),A("div",null,[t("header",_,[l(p,{table:"Group","max-width":"20em",inputs:o.AdminGroupCreateUpdateInputs},null,8,["inputs"])]),l(T,{"item-title":"name",headers:o.headers,items:s.groups},{"no-data":a(()=>e[0]||(e[0]=[t("td",{class:"adminNoData",colspan:"100%"},"No groups",-1)])),"item.exclude":a(({item:n})=>[l(u,{"group-type":"",item:c.groupType(n),"title-key":"name"},null,8,["item"])]),"item.userSet":a(({item:n})=>[l(r,{pks:n.userSet,objs:s.users,"title-key":"username"},null,8,["pks","objs"])]),"item.librarySet":a(({item:n})=>[l(r,{pks:n.librarySet,objs:s.normalLibraries,"title-key":"path"},null,8,["pks","objs"])]),"item.actions":a(({item:n})=>[l(p,{table:"Group","old-row":n,"max-width":"20em",inputs:o.AdminGroupCreateUpdateInputs,size:"small",density:"compact"},null,8,["old-row","inputs"]),l(R,{table:"Group",pk:n.pk,name:n.name,size:"small",density:"compact"},null,8,["pk","name"])]),_:2},1032,["headers","items"]),t("div",q,[e[9]||(e[9]=t("h3",null,"Group Logic",-1)),e[10]||(e[10]=t("p",null," A library in no groups is accessible to every user and non-users if those are enabled. ",-1)),e[11]||(e[11]=t("p",null,[m(" A library with "),t("em",null,"any"),m(" Include groups is accessible "),t("em",null,"only"),m(" to users who are in those groups. ")],-1)),e[12]||(e[12]=t("p",null,[m(" A library with "),t("em",null,"any"),m(" Exclude groups is not accessible to Guest users but is acccessable to any logged in users that are not in the Exclude groups. ")],-1)),e[13]||(e[13]=t("p",null," If you have libraries added and you do not see them in your browser, check to see if the library and your user are in the same group. ",-1)),t("table",M,[e[8]||(e[8]=t("thead",null,[t("tr",null,[t("th",null,"Library in Group Type"),t("th",null,"Guest"),t("th",null,"User Out of Group"),t("th",null,"User In Group")])],-1)),t("tbody",null,[e[7]||(e[7]=t("tr",null,[t("td",null,"Not in a Group"),t("td",{class:"see"},"Can See"),t("td",{class:"see"},"Can See"),t("td",{class:"see"},"Can See")],-1)),t("tr",null,[t("td",null,[l(u,{item:{name:"Include",exclude:!1},"title-key":"name","group-type":""})]),e[1]||(e[1]=t("td",{class:"hidden"},"Hidden",-1)),e[2]||(e[2]=t("td",{class:"hidden"},"Hidden",-1)),e[3]||(e[3]=t("td",{class:"see"},"Can See",-1))]),t("tr",null,[t("td",null,[l(u,{item:{name:"Exclude",exclude:!0},"title-key":"name","group-type":""})]),e[4]||(e[4]=t("td",{class:"hidden"},"Hidden",-1)),e[5]||(e[5]=t("td",{class:"see"},"Can See",-1)),e[6]||(e[6]=t("td",{class:"hidden"},"Hidden",-1))])])])])])}const ae=w(z,[["render",Y],["__scopeId","data-v-d3017405"]]);export{ae as default};
@@ -1 +0,0 @@
1
- #httpError[data-v-1fbffaf4]{padding-top:max(20px,env(safe-area-inset-top));padding-left:max(20px,env(safe-area-inset-left));padding-right:max(20px,env(safe-area-inset-right));padding-bottom:max(20px,env(safe-area-inset-bottom))}#httpCode[data-v-1fbffaf4],#title[data-v-1fbffaf4],#link[data-v-1fbffaf4]{position:absolute;left:50%;transform:translate(-50%) translateY(-25%)}#httpCode[data-v-1fbffaf4],#title[data-v-1fbffaf4]{top:25%}#httpCode[data-v-1fbffaf4]{z-index:100;padding-top:1em}#title[data-v-1fbffaf4]{text-align:center;font-size:6vw;color:rgb(var(--v-theme-textDisabled));stroke:rgb(var(--v-theme-textDisabled));fill:rgb(var(--v-theme-textDisabled));opacity:25%}#link[data-v-1fbffaf4]{bottom:50%}@media (max-width: 959.98px){#title[data-v-1fbffaf4]{font-size:32vw}}
@@ -1 +0,0 @@
1
- #httpError[data-v-1fbffaf4]{padding-top:max(20px,env(safe-area-inset-top));padding-left:max(20px,env(safe-area-inset-left));padding-right:max(20px,env(safe-area-inset-right));padding-bottom:max(20px,env(safe-area-inset-bottom))}#httpCode[data-v-1fbffaf4],#title[data-v-1fbffaf4],#link[data-v-1fbffaf4]{position:absolute;left:50%;transform:translate(-50%) translateY(-25%)}#httpCode[data-v-1fbffaf4],#title[data-v-1fbffaf4]{top:25%}#httpCode[data-v-1fbffaf4]{z-index:100;padding-top:1em}#title[data-v-1fbffaf4]{text-align:center;font-size:6vw;color:rgb(var(--v-theme-textDisabled));stroke:rgb(var(--v-theme-textDisabled));fill:rgb(var(--v-theme-textDisabled));opacity:25%}#link[data-v-1fbffaf4]{bottom:50%}@media (max-width: 959.98px){#title[data-v-1fbffaf4]{font-size:32vw}}
@@ -1 +0,0 @@
1
- import{_ as f,E as h,x as a,w as s,s as e,G as l,v as i,a as p,b as o,A as d}from"./main-CpP-5rLh.js";import{U as k,A,c as B}from"./unauthorized-_61uqek6.js";import"./VDialog-tf0N3lvG.js";import"./forwardRefs-CGpIPavG.js";import"./change-password-dialog-DqupgUbt.js";import"./VForm-Dw7aCtM5.js";import"./VSelectionControl-DoFzRlEh.js";import"./admin-BQ68PA7O.js";import"./ssrBoot-D216TWr1.js";const c={400:"Bad Request",403:"Forbidden",404:"Page Not Found",500:"Server Error"};Object.freeze(c);const E={name:"HttpError",components:{AppBanner:A,Unauthorized:k},data(){return{}},computed:{...h(l,["isAuthorized"]),code:function(){return+this.$route.params.code},title:function(){let t=c[this.code];return t||(t="Unknown Error"),t}}},z={id:"httpCode"},x={id:"title"};function U(t,r,b,v,C,n){const u=e("AppBanner"),m=e("router-link"),_=e("Unauthorized");return t.isAuthorized?(i(),a(B,{key:0,id:"httpError"},{default:s(()=>[p(u),o("h1",z,d(n.code),1),o("h1",x,d(n.title),1),p(m,{id:"link",to:{name:"home"}},{default:s(()=>r[0]||(r[0]=[o("h2",null,"Codex Home",-1)])),_:1,__:[0]})]),_:1})):(i(),a(_,{key:1}))}const H=f(E,[["render",U],["__scopeId","data-v-1fbffaf4"]]);export{H as default};
@@ -1 +0,0 @@
1
- import{_ as f,E as h,x as a,w as s,s as e,G as l,v as i,a as p,b as o,A as d}from"./main-CpP-5rLh.js";import{U as k,A,c as B}from"./unauthorized-_61uqek6.js";import"./VDialog-tf0N3lvG.js";import"./forwardRefs-CGpIPavG.js";import"./change-password-dialog-DqupgUbt.js";import"./VForm-Dw7aCtM5.js";import"./VSelectionControl-DoFzRlEh.js";import"./admin-BQ68PA7O.js";import"./ssrBoot-D216TWr1.js";const c={400:"Bad Request",403:"Forbidden",404:"Page Not Found",500:"Server Error"};Object.freeze(c);const E={name:"HttpError",components:{AppBanner:A,Unauthorized:k},data(){return{}},computed:{...h(l,["isAuthorized"]),code:function(){return+this.$route.params.code},title:function(){let t=c[this.code];return t||(t="Unknown Error"),t}}},z={id:"httpCode"},x={id:"title"};function U(t,r,b,v,C,n){const u=e("AppBanner"),m=e("router-link"),_=e("Unauthorized");return t.isAuthorized?(i(),a(B,{key:0,id:"httpError"},{default:s(()=>[p(u),o("h1",z,d(n.code),1),o("h1",x,d(n.title),1),p(m,{id:"link",to:{name:"home"}},{default:s(()=>r[0]||(r[0]=[o("h2",null,"Codex Home",-1)])),_:1,__:[0]})]),_:1})):(i(),a(_,{key:1}))}const H=f(E,[["render",U],["__scopeId","data-v-1fbffaf4"]]);export{H as default};
@@ -1 +0,0 @@
1
- import{p as V,o as P,g as O,e as T,br as S,t as g,r as k,c as d,m,u as A,a as $,cM as h,h as w,c8 as b,s as j}from"./main-CpP-5rLh.js";import{p as I,u as R,r as y}from"./VDialog-tf0N3lvG.js";import{f as B}from"./forwardRefs-CGpIPavG.js";const M=V({id:String,interactive:Boolean,text:String,...P(I({closeOnBack:!1,location:"end",locationStrategy:"connected",eager:!0,minWidth:0,offset:10,openOnClick:!1,openOnHover:!0,origin:"auto",scrim:!1,scrollStrategy:"reposition",transition:null}),["absolute","persistent"])},"VTooltip"),D=O()({name:"VTooltip",props:M(),emits:{"update:modelValue":t=>!0},setup(t,n){let{slots:a}=n;const e=T(t,"modelValue"),{scopeId:s}=R(),i=S(),o=g(()=>t.id||`v-tooltip-${i}`),r=k(),f=d(()=>t.location.split(" ").length>1?t.location:t.location+" center"),v=d(()=>t.origin==="auto"||t.origin==="overlap"||t.origin.split(" ").length>1||t.location.split(" ").length>1?t.origin:t.origin+" center"),l=g(()=>t.transition!=null?t.transition:e.value?"scale-transition":"fade-transition"),x=d(()=>m({"aria-describedby":o.value},t.activatorProps));return A(()=>{const C=y.filterProps(t);return $(y,m({ref:r,class:["v-tooltip",{"v-tooltip--interactive":t.interactive},t.class],style:t.style,id:o.value},C,{modelValue:e.value,"onUpdate:modelValue":c=>e.value=c,transition:l.value,absolute:!0,location:f.value,origin:v.value,persistent:!0,role:"tooltip",activatorProps:x.value,_disableGlobalStack:!0},s),{activator:a.activator,default:function(){for(var c=arguments.length,p=new Array(c),u=0;u<c;u++)p[u]=arguments[u];return a.default?.(...p)??t.text}})}),B({},r)}});function F(t,n){const a=typeof t=="string"?j(t):t,e=G(a,n);return{mounted:e,updated:e,unmounted(s){h(null,s)}}}function G(t,n){return function(a,e,s){const i=typeof n=="function"?n(e):n,o=e.value?.text??e.value??i?.text,r=w(e.value)?e.value:{},f=()=>o??a.textContent,v=(s.ctx===e.instance.$?H(s,e.instance.$)?.provides:s.ctx?.provides)??e.instance.$.provides,l=b(t,m(i,r),f);l.appContext=Object.assign(Object.create(null),e.instance.$.appContext,{provides:v}),h(l,a)}}function H(t,n){const a=new Set,e=i=>{for(const o of i){if(!o)continue;if(o===t||o.el&&t.el&&o.el===t.el)return!0;a.add(o);let r;if(o.suspense?r=e([o.ssContent]):Array.isArray(o.children)?r=e(o.children):o.component?.vnode&&(r=e([o.component?.subTree])),r)return r;a.delete(o)}return!1};if(!e([n.subTree]))return n;const s=Array.from(a).reverse();for(const i of s)if(i.component)return i.component;return n}const q=F(D,t=>({activator:"parent",location:t.arg?.replace("-"," "),text:typeof t.value=="boolean"?void 0:t.value}));export{q as T};
@@ -1 +0,0 @@
1
- import{p as V,o as P,g as O,e as T,br as S,t as g,r as k,c as d,m,u as A,a as $,cM as h,h as w,c8 as b,s as j}from"./main-CpP-5rLh.js";import{p as I,u as R,r as y}from"./VDialog-tf0N3lvG.js";import{f as B}from"./forwardRefs-CGpIPavG.js";const M=V({id:String,interactive:Boolean,text:String,...P(I({closeOnBack:!1,location:"end",locationStrategy:"connected",eager:!0,minWidth:0,offset:10,openOnClick:!1,openOnHover:!0,origin:"auto",scrim:!1,scrollStrategy:"reposition",transition:null}),["absolute","persistent"])},"VTooltip"),D=O()({name:"VTooltip",props:M(),emits:{"update:modelValue":t=>!0},setup(t,n){let{slots:a}=n;const e=T(t,"modelValue"),{scopeId:s}=R(),i=S(),o=g(()=>t.id||`v-tooltip-${i}`),r=k(),f=d(()=>t.location.split(" ").length>1?t.location:t.location+" center"),v=d(()=>t.origin==="auto"||t.origin==="overlap"||t.origin.split(" ").length>1||t.location.split(" ").length>1?t.origin:t.origin+" center"),l=g(()=>t.transition!=null?t.transition:e.value?"scale-transition":"fade-transition"),x=d(()=>m({"aria-describedby":o.value},t.activatorProps));return A(()=>{const C=y.filterProps(t);return $(y,m({ref:r,class:["v-tooltip",{"v-tooltip--interactive":t.interactive},t.class],style:t.style,id:o.value},C,{modelValue:e.value,"onUpdate:modelValue":c=>e.value=c,transition:l.value,absolute:!0,location:f.value,origin:v.value,persistent:!0,role:"tooltip",activatorProps:x.value,_disableGlobalStack:!0},s),{activator:a.activator,default:function(){for(var c=arguments.length,p=new Array(c),u=0;u<c;u++)p[u]=arguments[u];return a.default?.(...p)??t.text}})}),B({},r)}});function F(t,n){const a=typeof t=="string"?j(t):t,e=G(a,n);return{mounted:e,updated:e,unmounted(s){h(null,s)}}}function G(t,n){return function(a,e,s){const i=typeof n=="function"?n(e):n,o=e.value?.text??e.value??i?.text,r=w(e.value)?e.value:{},f=()=>o??a.textContent,v=(s.ctx===e.instance.$?H(s,e.instance.$)?.provides:s.ctx?.provides)??e.instance.$.provides,l=b(t,m(i,r),f);l.appContext=Object.assign(Object.create(null),e.instance.$.appContext,{provides:v}),h(l,a)}}function H(t,n){const a=new Set,e=i=>{for(const o of i){if(!o)continue;if(o===t||o.el&&t.el&&o.el===t.el)return!0;a.add(o);let r;if(o.suspense?r=e([o.ssContent]):Array.isArray(o.children)?r=e(o.children):o.component?.vnode&&(r=e([o.component?.subTree])),r)return r;a.delete(o)}return!1};if(!e([n.subTree]))return n;const s=Array.from(a).reverse();for(const i of s)if(i.component)return i.component;return n}const q=F(D,t=>({activator:"parent",location:t.arg?.replace("-"," "),text:typeof t.value=="boolean"?void 0:t.value}));export{q as T};
@@ -1 +0,0 @@
1
- import{_ as C,B as k,D as v,C as D,q as g,v as p,a as r,w as s,m as L,Y as J,x as w,E as I,H as F,s as u,A as _,M as z,ag as Q,N as X,ao as $,a0 as B,bx as Z,by as ee,bz as te,b as o,d as oe,y as i,k as re,bA as le,F as se,z as ie}from"./main-CpP-5rLh.js";import{A as ne,R as ae,a as j,b as de,c as me}from"./relation-chips-QzwrdJWs.js";import{useAdminStore as h}from"./admin-BQ68PA7O.js";import{a as ue}from"./VDialog-tf0N3lvG.js";import{V as pe}from"./VCombobox-DKyNgHNV.js";import{V}from"./VCheckbox-DraWPvy6.js";import{c as ce,d as U}from"./VSelectionControl-DoFzRlEh.js";import{D as N}from"./datetime-column-m-oshrDM.js";import{C as he}from"./confirm-dialog-AMnfyuMm.js";import{V as O}from"./VCheckboxBtn-Bxf1MS02.js";import{V as A,a as x,b as T,c as P}from"./VExpansionPanels-BjwwzLx6.js";import{k as R}from"./forwardRefs-CGpIPavG.js";import{V as fe}from"./VTable-C-cNChDa.js";import"./VForm-Dw7aCtM5.js";import"./VSelect-Cv8OuNtL.js";import"./ssrBoot-D216TWr1.js";import"./VDivider-CTvTvFr_.js";import"./filter-BucmWboA.js";const be={name:"AdminServerFolderPicker",emits:["change","menu"],data(){return{path:"",originalPath:"",showHidden:!1,menuOpen:!1}},computed:{...v(h,{folders:e=>e.folderPicker.folders,rootFolder:e=>e.folderPicker.rootFolder}),...v(D,{formErrors:e=>e.form.errors}),appendOuterIcon(){return this.showHidden?this.mdiFolderHidden:this.mdiFolderOutline},showHiddenTooltipPrefix(){return this.showHidden?"Hide":"Show"}},watch:{menuOpen(e){e&&this.$emit("menu",e)}},created(){this.loadFolders().then(()=>(this.path=this.rootFolder,this.originalPath=this.rootFolder,!0)).catch(console.warn)},methods:{...k(h,["clearFolders","loadFolders"]),...k(D,["clearErrors"]),change(e){let t;e?t=e.startsWith("/")||e.startsWith("\\")?e:[this.rootFolder,e].join("/"):t=this.rootFolder;const m=this.menuOpen;this.clearErrors(),this.loadFolders(t,this.showHidden).then(()=>{this.menuOpen=m;let b="";return this.formErrors.length===0&&(this.path=b=this.rootFolder),this.$emit("change",b)}).catch(console.warn)},onBlur(){this.menuOpen=!1,this.change(this.path)},onClear(){this.clearFolders(this.orignalPath).then(()=>this.change(this.orginalPath)).catch(console.error)},onKeyDownEnter(){this.change(this.path)},onItemClick(e){this.change(e)}}},ye={id:"folderPicker"};function ve(e,t,m,b,l,n){return p(),g("div",ye,[r(pe,L({modelValue:l.path,"onUpdate:modelValue":t[0]||(t[0]=d=>l.path=d),menu:l.menuOpen,"onUpdate:menu":t[1]||(t[1]=d=>l.menuOpen=d)},e.$attrs,{"aria-label":"Library folder",clearable:"","error-messages":e.formErrors,"full-width":"","hide-details":"auto",items:e.folders,"menu-props":{maxHeight:"370px"},"validate-on":"blur",variant:"filled",onBlur:n.onBlur,"onClick:clear":n.onClear,onKeydown:J(n.onKeyDownEnter,["enter"])}),{item:s(({item:d,props:f})=>[r(ue,L(f,{title:d.title,value:d.value,onClick:y=>n.onItemClick(d.value)}),null,16,["title","value","onClick"])]),_:1},16,["modelValue","menu","error-messages","items","onBlur","onClick:clear","onKeydown"]),r(V,{modelValue:l.showHidden,"onUpdate:modelValue":t[2]||(t[2]=d=>l.showHidden=d),density:"compact",class:"showHidden","hide-details":"auto",label:"Show Hidden Folders"},null,8,["modelValue"])])}const ge=C(be,[["render",ve],["__scopeId","data-v-61ca3769"]]),S="DDD HH:mm:SS",we=/^(?:[0-3]?\d?\d\s)?(?:[01]?\d|2[0-3])(?::[0-5]\d){2}$/,Ce={name:"TimeTextField",data(){return{FORMAT:S,timeRules:[e=>we.test(e)||`Invalid time format ${S}`]}}};function _e(e,t,m,b,l,n){return p(),w(ce,L({ref:"timeField",density:"compact",filled:"",hint:l.FORMAT,round:"",rules:l.timeRules},e.$attrs),null,16,["hint","rules"])}const ke=C(Ce,[["render",_e]]),W=["events","poll","pollEvery","groups"];Object.freeze(W);const E={path:"",events:!0,poll:!0,pollEvery:"01:00:00",groups:[]};Object.freeze(E);const H=(e,t)=>(e=e.replaceAll("\\","/"),t=t.replaceAll("\\","/"),e.endsWith("/")||(e+="/"),t.endsWith("/")||(t+="/"),t.startsWith(e)),Fe={name:"AdminLibraryCreateUpdateInputs",components:{AdminRelationPicker:ne,AdminServerFolderPicker:ge,TimeTextField:ke},props:{oldRow:{type:[Object,Boolean],default:!1}},emits:["change"],data(){return{rules:{path:[e=>!!e||"Path is required",e=>{if(!e)return!1;for(const t of this.paths){if(H(t,e))return"Path is a child of an existing library";if(H(e,t))return"Path is a parent of an existing library"}return!0}]},row:z(this.oldRow||E)}},computed:{...I(h,["normalLibraries"]),...v(h,{groups:e=>e.groups}),paths(){return this.nameSet(this.normalLibraries,"path",this.oldRow,!1)}},watch:{row:{handler(e){this.$emit("change",e)},deep:!0},oldRow:{handler(e){this.row=z(e)},deep:!0}},methods:{...k(h,["nameSet"])},UPDATE_KEYS:W,EMPTY_ROW:E},Ae={key:1};function xe(e,t,m,b,l,n){const d=u("AdminServerFolderPicker"),f=u("TimeTextField"),y=u("AdminRelationPicker");return p(),g("section",null,[m.oldRow?(p(),g("div",Ae,_(m.oldRow.path),1)):(p(),w(d,{key:0,rules:l.rules.path,autofocus:"",label:"Library Folder",onChange:t[0]||(t[0]=c=>l.row.path=c)},null,8,["rules"])),r(V,{modelValue:l.row.events,"onUpdate:modelValue":t[1]||(t[1]=c=>l.row.events=c),"hide-details":"auto",hint:"Update Codex instantly when the filesystem changes",label:"Watch Filesystem Events","persistent-hint":!0},null,8,["modelValue"]),r(V,{modelValue:l.row.poll,"onUpdate:modelValue":t[2]||(t[2]=c=>l.row.poll=c),label:"Poll Filesystem Periodically","hide-details":"auto",hint:"Periodically poll the library for changes","persistent-hint":!0},null,8,["modelValue"]),r(f,{modelValue:l.row.pollEvery,"onUpdate:modelValue":t[3]||(t[3]=c=>l.row.pollEvery=c),label:"Poll Every",disabled:!l.row.poll},null,8,["modelValue","disabled"]),l.row.coversOnly?F("",!0):(p(),w(y,{key:2,modelValue:l.row.groups,"onUpdate:modelValue":t[4]||(t[4]=c=>l.row.groups=c),label:"Groups",objs:e.groups,"group-type":"","title-key":"name"},null,8,["modelValue","objs"]))])}const G=C(Fe,[["render",xe]]),Te={name:"AdminLibrariesTab",components:{AdminTable:me,AdminDeleteRowDialog:de,AdminCreateUpdateDialog:j,RelationChips:ae,ConfirmDialog:he,DateTimeColumn:N},props:{coversDir:{type:Boolean,default:!1}},data(){return{lastUpdate:{pk:0,field:void 0},mdiCircleOffOutline:te,mdiDatabaseClockOutline:ee,mdiDatabaseSyncOutline:Z,mdiOpenInNew:B,AdminLibraryCreateUpdateInputs:$(G)}},computed:{...I(h,["normalLibraries","customCoverLibraries"]),...v(h,{groups:e=>e.groups}),...v(D,{formErrors:e=>e.form?.errors}),...v(X,{twentyFourHourTime:e=>e.settings.twentyFourHourTime}),headers(){const e=[{title:"Path",key:"path",align:"start"},{title:"Watch File Events",key:"events"},{title:"Poll Files Periodically",key:"poll"},{title:"Poll Every",key:"pollEvery"},{title:"Last Poll",key:"lastPoll"}];return this.coversDir||e.push({title:"Groups",key:"groups"}),e.push({title:"Actions",key:"actions",sortable:!1}),e},items(){return globalThis.coversDir?this.customCoverLibraries:this.normalLibraries},updateLabel(){return this.coversDir?"Cover Dir":""},itemName(){return this.coversDir?"custom covers":"comics"},iconSize(){const e=this.$vuetify.display;return e.xlAndUp?"x-large":e.lgAndUp?"large":e.mdAndUp?"default":"small"}},mounted(){this.loadTables(["Group","Library","FailedImport"])},methods:{...k(h,["updateRow","clearErrors","librarianTask","loadTables"]),formatDateTime(e){return e?Q(e,this.twentyFourHourTime):""},changeCol(e,t,m){this.lastUpdate.pk=e,this.lastUpdate.field=t;const b={[t]:m};this.updateRow("Library",e,b)},getFormErrors(e,t){if(e===this.lastUpdate.pk&&t===this.lastUpdate.field)return this.formErrors},libraryLabel(e,t=!0){let m="";return e.coversOnly?(t&&(m+="Custom Group "),m+="Cover Dir"):m+="Library",m},poll(e){const t=this.libraryLabel(e);this.librarianTask("poll",`Poll ${t} ${e.pk}`,e.pk)},forcePoll(e){const t=this.libraryLabel(e);this.librarianTask("poll_force",`Force Poll ${t} ${e.pk}`,e.pk)},pollConfirmText(e){return`Poll ${this.libraryLabel(e,!1)}`}}},Pe={class:"actionButtonCell"};function Ie(e,t,m,b,l,n){const d=u("DateTimeColumn"),f=u("RelationChips"),y=u("ConfirmDialog"),c=u("AdminCreateUpdateDialog"),M=u("AdminDeleteRowDialog"),Y=u("AdminTable");return p(),w(Y,{headers:n.headers},{"no-data":s(()=>t[0]||(t[0]=[o("td",{class:"adminNoData",colspan:"100%"}," Add a Library to start using Codex ",-1)])),"item.events":s(({item:a})=>[r(O,{"model-value":a.events,disabled:""},null,8,["model-value"])]),"item.poll":s(({item:a})=>[r(O,{"model-value":a.poll,disabled:""},null,8,["model-value"])]),"item.pollEvery":s(({item:a})=>[o("span",{class:oe({disabled:!a.poll})},_(a.pollEvery),3)]),"item.lastPoll":s(({item:a})=>[r(d,{dttm:a.lastPoll},null,8,["dttm"])]),"item.groups":s(({item:a})=>[r(f,{pks:a.groups,objs:e.groups,"group-type":"","title-key":"name"},null,8,["pks","objs"])]),"item.actions":s(({item:a})=>[o("span",Pe,[r(y,{icon:l.mdiDatabaseClockOutline,"title-text":`Poll for updated ${n.itemName}`,text:a.path,"confirm-text":n.pollConfirmText(a),size:n.iconSize,density:"compact",onConfirm:q=>n.poll(a)},null,8,["icon","title-text","text","confirm-text","size","onConfirm"]),r(y,{icon:l.mdiDatabaseSyncOutline,"title-text":`Force update every ${n.itemName}`,text:a.path,"confirm-text":"Force Update",size:n.iconSize,density:"compact",onConfirm:q=>n.forcePoll(a)},null,8,["icon","title-text","text","size","onConfirm"]),r(c,{table:"Library","old-row":a,inputs:l.AdminLibraryCreateUpdateInputs,label:n.updateLabel,"max-width":"22em",size:n.iconSize,density:"compact"},null,8,["old-row","inputs","label","size"]),a.coversOnly?F("",!0):(p(),w(M,{key:0,table:"Library",pk:a.pk,name:a.path,size:n.iconSize,density:"compact"},null,8,["pk","name","size"]))])]),_:2},1032,["headers"])}const K=C(Te,[["render",Ie],["__scopeId","data-v-7b626283"]]),De={name:"AdminCustomCoversPanel",components:{AdminLibraryTable:K},computed:{...I(h,["customCoverLibraries"])}};function Le(e,t,m,b,l,n){const d=u("AdminLibraryTable");return p(),w(A,null,{default:s(()=>[r(x,null,{default:s(()=>[r(T,null,{default:s(()=>t[0]||(t[0]=[o("h4",{id:"coverDirHeader"},"Custom Covers",-1)])),_:1,__:[0]}),r(P,null,{default:s(()=>[r(d,{items:e.customCoverLibraries,"disable-sort":"","covers-dir":!0},null,8,["items"]),r(A,null,{default:s(()=>[r(x,{id:"customCoversHelp"},{default:s(()=>[r(T,null,{default:s(()=>t[1]||(t[1]=[o("h4",null,"Custom Covers Help",-1)])),_:1,__:[1]}),r(P,null,{default:s(()=>t[2]||(t[2]=[o("p",null,"Custom covers may be added to the browser in two locations:",-1),o("h4",null,"Folders",-1),o("p",null,[i(" A library folder with a file named "),o("code",null,".codex-cover.jpg"),i(" will show a custom cover for that folder in Folder view. The addition and removal of these covers by watching filesystem events and polling is handled by the library that folder belongs to. ")],-1),o("h4",null,"Custom Covers Dir",-1),o("p",null,[i(" The Codex config directory has a special folder named "),o("code",null,"custom-covers"),i(" under which are subdirectories for each of the browser groups that may adopt custom covers. Images in these subdirectories that match the name of the browser group will be used as custom covers. For instance: "),o("code",null,".../custom-covers/publishers/American Comics Group.webp"),i(' would be used as the cover for the publisher "American Comics Group". '),o("code",null,".../custom-covers/series/arrow.png"),i(' would be used as the cover for every series named "Arrow", for '),o("em",null,"every"),i(" publisher. Similar to a comic library, the "),o("code",null,"custom-covers"),i(" directory may be watched and polled for changes. By default it is neither watched nor polled and must be enabled by the admin. ")],-1),o("h4",null,"Image Formats & Size",-1),o("p",null,[i(" Custom covers are detected only for files with the extensions: "),o("code",null,".bmp, .gif, .jpeg, .jpg, .png, .webp"),i(". ")],-1),o("p",null," Browser covers are transformed from their sources to 165px x 254px thumbnails. Custom covers will transform most aesthetically the closer to that ratio they are. ",-1),o("h4",null,"Priority",-1),o("p",null," Custom covers supersede covers set by the user's individual browser settings. ",-1)])),_:1,__:[2]})]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})}const Ve=C(De,[["render",Le],["__scopeId","data-v-09e17970"]]),Ee={name:"AdminFailedImportsPanel",components:{DateTimeColumn:N},data(){return{mdiBookAlert:le,mdiOpenInNew:B}},computed:{...v(h,{failedImports:e=>e.failedImports,showFailedImports:e=>e.failedImports&&e.failedImports.length>0}),...re(h,["unseenFailedImports"])}},ze={key:0},Ue={class:"dateCol"},Oe={href:"https://github.com/ajslater/codex/issues/",target:"_blank"};function Re(e,t,m,b,l,n){const d=u("DateTimeColumn");return e.showFailedImports?(p(),g("div",ze,[r(A,null,{default:s(()=>[r(x,{id:"failedImportsPanel",onClick:t[0]||(t[0]=f=>e.unseenFailedImports=!1)},{default:s(()=>[r(T,null,{default:s(()=>[o("h4",null,"Failed Imports: "+_(e.failedImports.length),1),e.unseenFailedImports?(p(),w(R,{key:0,id:"failedImportsIcon",title:"New Failed Imports"},{default:s(()=>[i(_(l.mdiBookAlert),1)]),_:1})):F("",!0)]),_:1}),r(P,null,{default:s(()=>[r(fe,{class:"highlight-table"},{default:s(()=>[t[1]||(t[1]=o("thead",null,[o("tr",null,[o("th",null,"Path"),o("th",null,"Created")])],-1)),o("tbody",null,[(p(!0),g(se,null,ie(e.failedImports,f=>(p(),g("tr",{key:`fi:${f.path}`},[o("td",null,_(f.path),1),o("td",Ue,[r(d,{dttm:f.createdAt},null,8,["dttm"])])]))),128))])]),_:1}),r(A,null,{default:s(()=>[r(x,{id:"failedImportsHelp"},{default:s(()=>[r(T,null,{default:s(()=>t[2]||(t[2]=[o("h4",null,"Failed Imports Help",-1)])),_:1,__:[2]}),r(P,null,{default:s(()=>[t[8]||(t[8]=o("p",null," These are Comic archives that have failed to import. This list is updated every time the library updates. You should probably review these files and fix or remove them. ",-1)),t[9]||(t[9]=o("h4",null,"Fixing comics",-1)),t[10]||(t[10]=o("p",null,[i(" Try using the zip fixer to fix comics: "),o("code",{class:"cli"},[i(" cp problem-comic.cbz /somewhere/safe/problem-comic.cbz.backup"),o("br"),i(" zip -F problem-comic.cbz --out fixed.zip"),o("br"),i(" mv fixed.zip problem-comic.cbz ")]),i(" You may also try "),o("code",null,"zip -FF"),i(" to fix comics which uses a different (not necissarily better) algorithm. If you fix some imports, and Codex does not immediately detect the change, poll the library which contains the fixed comics. ")],-1)),t[11]||(t[11]=o("h4",null,"Reporting Issues",-1)),o("p",null,[t[4]||(t[4]=i(" If the comic looks good to you, but still shows up as a failed import, it might be Codex's fault for not importing it correctly. Please file an ")),o("a",Oe,[t[3]||(t[3]=i("Issue Report")),r(R,{size:"small"},{default:s(()=>[i(_(l.mdiOpenInNew),1)]),_:1})]),t[5]||(t[5]=i(" and include the stack trace from the logs at ")),t[6]||(t[6]=o("code",null,"config/logs/codex.log",-1)),t[7]||(t[7]=i(" if you can. "))])]),_:1,__:[8,9,10,11]})]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])):F("",!0)}const Se=C(Ee,[["render",Re],["__scopeId","data-v-827c9a0b"]]),He={name:"AdminLibrariesTab",components:{AdminFailedImportsPanel:Se,AdminLibraryTable:K,AdminCreateUpdateDialog:j,AdminCustomCoversPanel:Ve},data(){return{AdminLibraryCreateUpdateInputs:$(G)}},computed:{...I(h,["normalLibraries"])},mounted(){this.loadTables(["Group","Library","FailedImport"])},methods:{...k(h,["loadTables"])}},$e={class:"tabHeader"};function Be(e,t,m,b,l,n){const d=u("AdminCreateUpdateDialog"),f=u("AdminLibraryTable"),y=u("AdminFailedImportsPanel"),c=u("AdminCustomCoversPanel");return p(),g("div",null,[o("header",$e,[r(d,{table:"Library",inputs:l.AdminLibraryCreateUpdateInputs},null,8,["inputs"])]),r(f,{items:e.normalLibraries,"sort-by":[{key:"path",order:"asc"}]},null,8,["items"]),r(U,null,{default:s(()=>[r(y,{id:"failedImports"})]),_:1}),r(U,null,{default:s(()=>[r(c,{id:"customCovers"})]),_:1}),t[0]||(t[0]=o("p",{id:"libraryHelp"}," Each Watched File Events box checked creates a thread to monitor the Library. An large number of watching threads may exceed the limits of your operating system or container. ",-1))])}const it=C(He,[["render",Be],["__scopeId","data-v-c699976c"]]);export{it as default};
@@ -1 +0,0 @@
1
- import{_ as C,B as k,D as v,C as D,q as g,v as p,a as r,w as s,m as L,Y as J,x as w,E as I,H as F,s as u,A as _,M as z,ag as Q,N as X,ao as $,a0 as B,bx as Z,by as ee,bz as te,b as o,d as oe,y as i,k as re,bA as le,F as se,z as ie}from"./main-CpP-5rLh.js";import{A as ne,R as ae,a as j,b as de,c as me}from"./relation-chips-QzwrdJWs.js";import{useAdminStore as h}from"./admin-BQ68PA7O.js";import{a as ue}from"./VDialog-tf0N3lvG.js";import{V as pe}from"./VCombobox-DKyNgHNV.js";import{V}from"./VCheckbox-DraWPvy6.js";import{c as ce,d as U}from"./VSelectionControl-DoFzRlEh.js";import{D as N}from"./datetime-column-m-oshrDM.js";import{C as he}from"./confirm-dialog-AMnfyuMm.js";import{V as O}from"./VCheckboxBtn-Bxf1MS02.js";import{V as A,a as x,b as T,c as P}from"./VExpansionPanels-BjwwzLx6.js";import{k as R}from"./forwardRefs-CGpIPavG.js";import{V as fe}from"./VTable-C-cNChDa.js";import"./VForm-Dw7aCtM5.js";import"./VSelect-Cv8OuNtL.js";import"./ssrBoot-D216TWr1.js";import"./VDivider-CTvTvFr_.js";import"./filter-BucmWboA.js";const be={name:"AdminServerFolderPicker",emits:["change","menu"],data(){return{path:"",originalPath:"",showHidden:!1,menuOpen:!1}},computed:{...v(h,{folders:e=>e.folderPicker.folders,rootFolder:e=>e.folderPicker.rootFolder}),...v(D,{formErrors:e=>e.form.errors}),appendOuterIcon(){return this.showHidden?this.mdiFolderHidden:this.mdiFolderOutline},showHiddenTooltipPrefix(){return this.showHidden?"Hide":"Show"}},watch:{menuOpen(e){e&&this.$emit("menu",e)}},created(){this.loadFolders().then(()=>(this.path=this.rootFolder,this.originalPath=this.rootFolder,!0)).catch(console.warn)},methods:{...k(h,["clearFolders","loadFolders"]),...k(D,["clearErrors"]),change(e){let t;e?t=e.startsWith("/")||e.startsWith("\\")?e:[this.rootFolder,e].join("/"):t=this.rootFolder;const m=this.menuOpen;this.clearErrors(),this.loadFolders(t,this.showHidden).then(()=>{this.menuOpen=m;let b="";return this.formErrors.length===0&&(this.path=b=this.rootFolder),this.$emit("change",b)}).catch(console.warn)},onBlur(){this.menuOpen=!1,this.change(this.path)},onClear(){this.clearFolders(this.orignalPath).then(()=>this.change(this.orginalPath)).catch(console.error)},onKeyDownEnter(){this.change(this.path)},onItemClick(e){this.change(e)}}},ye={id:"folderPicker"};function ve(e,t,m,b,l,n){return p(),g("div",ye,[r(pe,L({modelValue:l.path,"onUpdate:modelValue":t[0]||(t[0]=d=>l.path=d),menu:l.menuOpen,"onUpdate:menu":t[1]||(t[1]=d=>l.menuOpen=d)},e.$attrs,{"aria-label":"Library folder",clearable:"","error-messages":e.formErrors,"full-width":"","hide-details":"auto",items:e.folders,"menu-props":{maxHeight:"370px"},"validate-on":"blur",variant:"filled",onBlur:n.onBlur,"onClick:clear":n.onClear,onKeydown:J(n.onKeyDownEnter,["enter"])}),{item:s(({item:d,props:f})=>[r(ue,L(f,{title:d.title,value:d.value,onClick:y=>n.onItemClick(d.value)}),null,16,["title","value","onClick"])]),_:1},16,["modelValue","menu","error-messages","items","onBlur","onClick:clear","onKeydown"]),r(V,{modelValue:l.showHidden,"onUpdate:modelValue":t[2]||(t[2]=d=>l.showHidden=d),density:"compact",class:"showHidden","hide-details":"auto",label:"Show Hidden Folders"},null,8,["modelValue"])])}const ge=C(be,[["render",ve],["__scopeId","data-v-61ca3769"]]),S="DDD HH:mm:SS",we=/^(?:[0-3]?\d?\d\s)?(?:[01]?\d|2[0-3])(?::[0-5]\d){2}$/,Ce={name:"TimeTextField",data(){return{FORMAT:S,timeRules:[e=>we.test(e)||`Invalid time format ${S}`]}}};function _e(e,t,m,b,l,n){return p(),w(ce,L({ref:"timeField",density:"compact",filled:"",hint:l.FORMAT,round:"",rules:l.timeRules},e.$attrs),null,16,["hint","rules"])}const ke=C(Ce,[["render",_e]]),W=["events","poll","pollEvery","groups"];Object.freeze(W);const E={path:"",events:!0,poll:!0,pollEvery:"01:00:00",groups:[]};Object.freeze(E);const H=(e,t)=>(e=e.replaceAll("\\","/"),t=t.replaceAll("\\","/"),e.endsWith("/")||(e+="/"),t.endsWith("/")||(t+="/"),t.startsWith(e)),Fe={name:"AdminLibraryCreateUpdateInputs",components:{AdminRelationPicker:ne,AdminServerFolderPicker:ge,TimeTextField:ke},props:{oldRow:{type:[Object,Boolean],default:!1}},emits:["change"],data(){return{rules:{path:[e=>!!e||"Path is required",e=>{if(!e)return!1;for(const t of this.paths){if(H(t,e))return"Path is a child of an existing library";if(H(e,t))return"Path is a parent of an existing library"}return!0}]},row:z(this.oldRow||E)}},computed:{...I(h,["normalLibraries"]),...v(h,{groups:e=>e.groups}),paths(){return this.nameSet(this.normalLibraries,"path",this.oldRow,!1)}},watch:{row:{handler(e){this.$emit("change",e)},deep:!0},oldRow:{handler(e){this.row=z(e)},deep:!0}},methods:{...k(h,["nameSet"])},UPDATE_KEYS:W,EMPTY_ROW:E},Ae={key:1};function xe(e,t,m,b,l,n){const d=u("AdminServerFolderPicker"),f=u("TimeTextField"),y=u("AdminRelationPicker");return p(),g("section",null,[m.oldRow?(p(),g("div",Ae,_(m.oldRow.path),1)):(p(),w(d,{key:0,rules:l.rules.path,autofocus:"",label:"Library Folder",onChange:t[0]||(t[0]=c=>l.row.path=c)},null,8,["rules"])),r(V,{modelValue:l.row.events,"onUpdate:modelValue":t[1]||(t[1]=c=>l.row.events=c),"hide-details":"auto",hint:"Update Codex instantly when the filesystem changes",label:"Watch Filesystem Events","persistent-hint":!0},null,8,["modelValue"]),r(V,{modelValue:l.row.poll,"onUpdate:modelValue":t[2]||(t[2]=c=>l.row.poll=c),label:"Poll Filesystem Periodically","hide-details":"auto",hint:"Periodically poll the library for changes","persistent-hint":!0},null,8,["modelValue"]),r(f,{modelValue:l.row.pollEvery,"onUpdate:modelValue":t[3]||(t[3]=c=>l.row.pollEvery=c),label:"Poll Every",disabled:!l.row.poll},null,8,["modelValue","disabled"]),l.row.coversOnly?F("",!0):(p(),w(y,{key:2,modelValue:l.row.groups,"onUpdate:modelValue":t[4]||(t[4]=c=>l.row.groups=c),label:"Groups",objs:e.groups,"group-type":"","title-key":"name"},null,8,["modelValue","objs"]))])}const G=C(Fe,[["render",xe]]),Te={name:"AdminLibrariesTab",components:{AdminTable:me,AdminDeleteRowDialog:de,AdminCreateUpdateDialog:j,RelationChips:ae,ConfirmDialog:he,DateTimeColumn:N},props:{coversDir:{type:Boolean,default:!1}},data(){return{lastUpdate:{pk:0,field:void 0},mdiCircleOffOutline:te,mdiDatabaseClockOutline:ee,mdiDatabaseSyncOutline:Z,mdiOpenInNew:B,AdminLibraryCreateUpdateInputs:$(G)}},computed:{...I(h,["normalLibraries","customCoverLibraries"]),...v(h,{groups:e=>e.groups}),...v(D,{formErrors:e=>e.form?.errors}),...v(X,{twentyFourHourTime:e=>e.settings.twentyFourHourTime}),headers(){const e=[{title:"Path",key:"path",align:"start"},{title:"Watch File Events",key:"events"},{title:"Poll Files Periodically",key:"poll"},{title:"Poll Every",key:"pollEvery"},{title:"Last Poll",key:"lastPoll"}];return this.coversDir||e.push({title:"Groups",key:"groups"}),e.push({title:"Actions",key:"actions",sortable:!1}),e},items(){return globalThis.coversDir?this.customCoverLibraries:this.normalLibraries},updateLabel(){return this.coversDir?"Cover Dir":""},itemName(){return this.coversDir?"custom covers":"comics"},iconSize(){const e=this.$vuetify.display;return e.xlAndUp?"x-large":e.lgAndUp?"large":e.mdAndUp?"default":"small"}},mounted(){this.loadTables(["Group","Library","FailedImport"])},methods:{...k(h,["updateRow","clearErrors","librarianTask","loadTables"]),formatDateTime(e){return e?Q(e,this.twentyFourHourTime):""},changeCol(e,t,m){this.lastUpdate.pk=e,this.lastUpdate.field=t;const b={[t]:m};this.updateRow("Library",e,b)},getFormErrors(e,t){if(e===this.lastUpdate.pk&&t===this.lastUpdate.field)return this.formErrors},libraryLabel(e,t=!0){let m="";return e.coversOnly?(t&&(m+="Custom Group "),m+="Cover Dir"):m+="Library",m},poll(e){const t=this.libraryLabel(e);this.librarianTask("poll",`Poll ${t} ${e.pk}`,e.pk)},forcePoll(e){const t=this.libraryLabel(e);this.librarianTask("poll_force",`Force Poll ${t} ${e.pk}`,e.pk)},pollConfirmText(e){return`Poll ${this.libraryLabel(e,!1)}`}}},Pe={class:"actionButtonCell"};function Ie(e,t,m,b,l,n){const d=u("DateTimeColumn"),f=u("RelationChips"),y=u("ConfirmDialog"),c=u("AdminCreateUpdateDialog"),M=u("AdminDeleteRowDialog"),Y=u("AdminTable");return p(),w(Y,{headers:n.headers},{"no-data":s(()=>t[0]||(t[0]=[o("td",{class:"adminNoData",colspan:"100%"}," Add a Library to start using Codex ",-1)])),"item.events":s(({item:a})=>[r(O,{"model-value":a.events,disabled:""},null,8,["model-value"])]),"item.poll":s(({item:a})=>[r(O,{"model-value":a.poll,disabled:""},null,8,["model-value"])]),"item.pollEvery":s(({item:a})=>[o("span",{class:oe({disabled:!a.poll})},_(a.pollEvery),3)]),"item.lastPoll":s(({item:a})=>[r(d,{dttm:a.lastPoll},null,8,["dttm"])]),"item.groups":s(({item:a})=>[r(f,{pks:a.groups,objs:e.groups,"group-type":"","title-key":"name"},null,8,["pks","objs"])]),"item.actions":s(({item:a})=>[o("span",Pe,[r(y,{icon:l.mdiDatabaseClockOutline,"title-text":`Poll for updated ${n.itemName}`,text:a.path,"confirm-text":n.pollConfirmText(a),size:n.iconSize,density:"compact",onConfirm:q=>n.poll(a)},null,8,["icon","title-text","text","confirm-text","size","onConfirm"]),r(y,{icon:l.mdiDatabaseSyncOutline,"title-text":`Force update every ${n.itemName}`,text:a.path,"confirm-text":"Force Update",size:n.iconSize,density:"compact",onConfirm:q=>n.forcePoll(a)},null,8,["icon","title-text","text","size","onConfirm"]),r(c,{table:"Library","old-row":a,inputs:l.AdminLibraryCreateUpdateInputs,label:n.updateLabel,"max-width":"22em",size:n.iconSize,density:"compact"},null,8,["old-row","inputs","label","size"]),a.coversOnly?F("",!0):(p(),w(M,{key:0,table:"Library",pk:a.pk,name:a.path,size:n.iconSize,density:"compact"},null,8,["pk","name","size"]))])]),_:2},1032,["headers"])}const K=C(Te,[["render",Ie],["__scopeId","data-v-7b626283"]]),De={name:"AdminCustomCoversPanel",components:{AdminLibraryTable:K},computed:{...I(h,["customCoverLibraries"])}};function Le(e,t,m,b,l,n){const d=u("AdminLibraryTable");return p(),w(A,null,{default:s(()=>[r(x,null,{default:s(()=>[r(T,null,{default:s(()=>t[0]||(t[0]=[o("h4",{id:"coverDirHeader"},"Custom Covers",-1)])),_:1,__:[0]}),r(P,null,{default:s(()=>[r(d,{items:e.customCoverLibraries,"disable-sort":"","covers-dir":!0},null,8,["items"]),r(A,null,{default:s(()=>[r(x,{id:"customCoversHelp"},{default:s(()=>[r(T,null,{default:s(()=>t[1]||(t[1]=[o("h4",null,"Custom Covers Help",-1)])),_:1,__:[1]}),r(P,null,{default:s(()=>t[2]||(t[2]=[o("p",null,"Custom covers may be added to the browser in two locations:",-1),o("h4",null,"Folders",-1),o("p",null,[i(" A library folder with a file named "),o("code",null,".codex-cover.jpg"),i(" will show a custom cover for that folder in Folder view. The addition and removal of these covers by watching filesystem events and polling is handled by the library that folder belongs to. ")],-1),o("h4",null,"Custom Covers Dir",-1),o("p",null,[i(" The Codex config directory has a special folder named "),o("code",null,"custom-covers"),i(" under which are subdirectories for each of the browser groups that may adopt custom covers. Images in these subdirectories that match the name of the browser group will be used as custom covers. For instance: "),o("code",null,".../custom-covers/publishers/American Comics Group.webp"),i(' would be used as the cover for the publisher "American Comics Group". '),o("code",null,".../custom-covers/series/arrow.png"),i(' would be used as the cover for every series named "Arrow", for '),o("em",null,"every"),i(" publisher. Similar to a comic library, the "),o("code",null,"custom-covers"),i(" directory may be watched and polled for changes. By default it is neither watched nor polled and must be enabled by the admin. ")],-1),o("h4",null,"Image Formats & Size",-1),o("p",null,[i(" Custom covers are detected only for files with the extensions: "),o("code",null,".bmp, .gif, .jpeg, .jpg, .png, .webp"),i(". ")],-1),o("p",null," Browser covers are transformed from their sources to 165px x 254px thumbnails. Custom covers will transform most aesthetically the closer to that ratio they are. ",-1),o("h4",null,"Priority",-1),o("p",null," Custom covers supersede covers set by the user's individual browser settings. ",-1)])),_:1,__:[2]})]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})}const Ve=C(De,[["render",Le],["__scopeId","data-v-09e17970"]]),Ee={name:"AdminFailedImportsPanel",components:{DateTimeColumn:N},data(){return{mdiBookAlert:le,mdiOpenInNew:B}},computed:{...v(h,{failedImports:e=>e.failedImports,showFailedImports:e=>e.failedImports&&e.failedImports.length>0}),...re(h,["unseenFailedImports"])}},ze={key:0},Ue={class:"dateCol"},Oe={href:"https://github.com/ajslater/codex/issues/",target:"_blank"};function Re(e,t,m,b,l,n){const d=u("DateTimeColumn");return e.showFailedImports?(p(),g("div",ze,[r(A,null,{default:s(()=>[r(x,{id:"failedImportsPanel",onClick:t[0]||(t[0]=f=>e.unseenFailedImports=!1)},{default:s(()=>[r(T,null,{default:s(()=>[o("h4",null,"Failed Imports: "+_(e.failedImports.length),1),e.unseenFailedImports?(p(),w(R,{key:0,id:"failedImportsIcon",title:"New Failed Imports"},{default:s(()=>[i(_(l.mdiBookAlert),1)]),_:1})):F("",!0)]),_:1}),r(P,null,{default:s(()=>[r(fe,{class:"highlight-table"},{default:s(()=>[t[1]||(t[1]=o("thead",null,[o("tr",null,[o("th",null,"Path"),o("th",null,"Created")])],-1)),o("tbody",null,[(p(!0),g(se,null,ie(e.failedImports,f=>(p(),g("tr",{key:`fi:${f.path}`},[o("td",null,_(f.path),1),o("td",Ue,[r(d,{dttm:f.createdAt},null,8,["dttm"])])]))),128))])]),_:1}),r(A,null,{default:s(()=>[r(x,{id:"failedImportsHelp"},{default:s(()=>[r(T,null,{default:s(()=>t[2]||(t[2]=[o("h4",null,"Failed Imports Help",-1)])),_:1,__:[2]}),r(P,null,{default:s(()=>[t[8]||(t[8]=o("p",null," These are Comic archives that have failed to import. This list is updated every time the library updates. You should probably review these files and fix or remove them. ",-1)),t[9]||(t[9]=o("h4",null,"Fixing comics",-1)),t[10]||(t[10]=o("p",null,[i(" Try using the zip fixer to fix comics: "),o("code",{class:"cli"},[i(" cp problem-comic.cbz /somewhere/safe/problem-comic.cbz.backup"),o("br"),i(" zip -F problem-comic.cbz --out fixed.zip"),o("br"),i(" mv fixed.zip problem-comic.cbz ")]),i(" You may also try "),o("code",null,"zip -FF"),i(" to fix comics which uses a different (not necissarily better) algorithm. If you fix some imports, and Codex does not immediately detect the change, poll the library which contains the fixed comics. ")],-1)),t[11]||(t[11]=o("h4",null,"Reporting Issues",-1)),o("p",null,[t[4]||(t[4]=i(" If the comic looks good to you, but still shows up as a failed import, it might be Codex's fault for not importing it correctly. Please file an ")),o("a",Oe,[t[3]||(t[3]=i("Issue Report")),r(R,{size:"small"},{default:s(()=>[i(_(l.mdiOpenInNew),1)]),_:1})]),t[5]||(t[5]=i(" and include the stack trace from the logs at ")),t[6]||(t[6]=o("code",null,"config/logs/codex.log",-1)),t[7]||(t[7]=i(" if you can. "))])]),_:1,__:[8,9,10,11]})]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])):F("",!0)}const Se=C(Ee,[["render",Re],["__scopeId","data-v-827c9a0b"]]),He={name:"AdminLibrariesTab",components:{AdminFailedImportsPanel:Se,AdminLibraryTable:K,AdminCreateUpdateDialog:j,AdminCustomCoversPanel:Ve},data(){return{AdminLibraryCreateUpdateInputs:$(G)}},computed:{...I(h,["normalLibraries"])},mounted(){this.loadTables(["Group","Library","FailedImport"])},methods:{...k(h,["loadTables"])}},$e={class:"tabHeader"};function Be(e,t,m,b,l,n){const d=u("AdminCreateUpdateDialog"),f=u("AdminLibraryTable"),y=u("AdminFailedImportsPanel"),c=u("AdminCustomCoversPanel");return p(),g("div",null,[o("header",$e,[r(d,{table:"Library",inputs:l.AdminLibraryCreateUpdateInputs},null,8,["inputs"])]),r(f,{items:e.normalLibraries,"sort-by":[{key:"path",order:"asc"}]},null,8,["items"]),r(U,null,{default:s(()=>[r(y,{id:"failedImports"})]),_:1}),r(U,null,{default:s(()=>[r(c,{id:"customCovers"})]),_:1}),t[0]||(t[0]=o("p",{id:"libraryHelp"}," Each Watched File Events box checked creates a thread to monitor the Library. An large number of watching threads may exceed the limits of your operating system or container. ",-1))])}const it=C(He,[["render",Be],["__scopeId","data-v-c699976c"]]);export{it as default};
@@ -1 +0,0 @@
1
- #folderPicker[data-v-61ca3769]{border-radius:5px;background-color:rgb(var(--v-theme-surface))}.showHidden[data-v-61ca3769] .v-label{color:rgb(var(--v-theme-textSecondary))}.disabled[data-v-7b626283]{color:rgb(var(--v-theme-textDisabled))!important}.actionButtonCell[data-v-7b626283]>button{opacity:.7}.actionButtonCell[data-v-7b626283]>button:hover{opacity:1}#customCoversHelp[data-v-09e17970]{color:rgb(var(--v-theme-textSecondary))}#customCoversHelp[data-v-09e17970] .v-expansion-panel-text h4{margin-top:.5em}a[data-v-827c9a0b],a>.v-icon[data-v-827c9a0b]{color:rgb(var(--v-theme-primary))!important}a[data-v-827c9a0b]:hover,a:hover>.v-icon[data-v-827c9a0b]{color:rgb(var(--v-theme-textPrimary))!important}a.v-btn>.v-icon[data-v-827c9a0b]{color:rgb(var(--v-theme-textPrimary))}.cli[data-v-827c9a0b]{display:block;margin-left:2em}#failedImportsPanel[data-v-827c9a0b]{padding-top:10px}#failedImportsIcon[data-v-827c9a0b]{padding-left:.25em;color:rgb(var(--v-theme-error))!important}#failedImportsHelp[data-v-827c9a0b]{color:rgb(var(--v-theme-textSecondary))}h4[data-v-827c9a0b]{padding-top:.5em}#customCovers[data-v-c699976c]{margin-top:60px}#libraryHelp[data-v-c699976c]{margin-top:2em;font-size:smaller;color:rgb(var(--v-theme-textDisabled))}
@@ -1 +0,0 @@
1
- #folderPicker[data-v-61ca3769]{border-radius:5px;background-color:rgb(var(--v-theme-surface))}.showHidden[data-v-61ca3769] .v-label{color:rgb(var(--v-theme-textSecondary))}.disabled[data-v-7b626283]{color:rgb(var(--v-theme-textDisabled))!important}.actionButtonCell[data-v-7b626283]>button{opacity:.7}.actionButtonCell[data-v-7b626283]>button:hover{opacity:1}#customCoversHelp[data-v-09e17970]{color:rgb(var(--v-theme-textSecondary))}#customCoversHelp[data-v-09e17970] .v-expansion-panel-text h4{margin-top:.5em}a[data-v-827c9a0b],a>.v-icon[data-v-827c9a0b]{color:rgb(var(--v-theme-primary))!important}a[data-v-827c9a0b]:hover,a:hover>.v-icon[data-v-827c9a0b]{color:rgb(var(--v-theme-textPrimary))!important}a.v-btn>.v-icon[data-v-827c9a0b]{color:rgb(var(--v-theme-textPrimary))}.cli[data-v-827c9a0b]{display:block;margin-left:2em}#failedImportsPanel[data-v-827c9a0b]{padding-top:10px}#failedImportsIcon[data-v-827c9a0b]{padding-left:.25em;color:rgb(var(--v-theme-error))!important}#failedImportsHelp[data-v-827c9a0b]{color:rgb(var(--v-theme-textSecondary))}h4[data-v-827c9a0b]{padding-top:.5em}#customCovers[data-v-c699976c]{margin-top:60px}#libraryHelp[data-v-c699976c]{margin-top:2em;font-size:smaller;color:rgb(var(--v-theme-textDisabled))}