codex 1.7.14__py3-none-any.whl → 1.8.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of codex might be problematic. Click here for more details.
- codex/__init__.py +6 -1
- codex/applications/lifespan.py +16 -12
- codex/asgi.py +1 -2
- codex/choices/admin.py +64 -60
- codex/choices/browser.py +7 -10
- codex/choices/choices_to_json.py +21 -9
- codex/choices/search.py +133 -0
- codex/choices/statii.py +40 -0
- codex/librarian/bookmark/bookmarkd.py +56 -17
- codex/librarian/bookmark/latest_version.py +65 -0
- codex/librarian/bookmark/tasks.py +13 -2
- codex/librarian/bookmark/update.py +1 -1
- codex/librarian/bookmark/user_active.py +2 -3
- codex/librarian/covers/coverd.py +4 -1
- codex/librarian/covers/create.py +31 -22
- codex/librarian/covers/path.py +1 -1
- codex/librarian/covers/purge.py +22 -22
- codex/librarian/covers/status.py +37 -6
- codex/librarian/covers/tasks.py +2 -1
- codex/librarian/cron/crond.py +5 -3
- codex/librarian/librariand.py +59 -84
- codex/librarian/notifier/notifierd.py +8 -3
- codex/librarian/restarter/__init__.py +1 -0
- codex/librarian/restarter/restarter.py +55 -0
- codex/librarian/restarter/status.py +32 -0
- codex/librarian/restarter/tasks.py +15 -0
- codex/librarian/scribe/__init__.py +1 -0
- codex/librarian/scribe/importer/__init__.py +1 -0
- codex/librarian/scribe/importer/const.py +369 -0
- codex/librarian/scribe/importer/create/__init__.py +37 -0
- codex/librarian/scribe/importer/create/comics.py +172 -0
- codex/librarian/scribe/importer/create/const.py +131 -0
- codex/librarian/scribe/importer/create/covers.py +123 -0
- codex/librarian/scribe/importer/create/folders.py +98 -0
- codex/librarian/scribe/importer/create/foreign_keys.py +253 -0
- codex/librarian/scribe/importer/create/link_fks.py +73 -0
- codex/librarian/scribe/importer/delete/__init__.py +28 -0
- codex/librarian/scribe/importer/delete/comics.py +68 -0
- codex/librarian/scribe/importer/delete/covers.py +37 -0
- codex/librarian/scribe/importer/delete/folders.py +33 -0
- codex/librarian/scribe/importer/failed/__init__.py +1 -0
- codex/librarian/scribe/importer/failed/create.py +97 -0
- codex/librarian/scribe/importer/failed/failed.py +54 -0
- codex/librarian/scribe/importer/failed/query.py +103 -0
- codex/librarian/scribe/importer/finish.py +70 -0
- codex/librarian/scribe/importer/importer.py +31 -0
- codex/librarian/scribe/importer/init.py +338 -0
- codex/librarian/scribe/importer/link/__init__.py +15 -0
- codex/librarian/scribe/importer/link/const.py +31 -0
- codex/librarian/scribe/importer/link/covers.py +70 -0
- codex/librarian/scribe/importer/link/delete.py +106 -0
- codex/librarian/scribe/importer/link/many_to_many.py +88 -0
- codex/librarian/scribe/importer/link/prepare.py +132 -0
- codex/librarian/scribe/importer/link/sum.py +19 -0
- codex/librarian/scribe/importer/moved/__init__.py +52 -0
- codex/librarian/scribe/importer/moved/comics.py +125 -0
- codex/librarian/scribe/importer/moved/covers.py +88 -0
- codex/librarian/scribe/importer/moved/folders.py +205 -0
- codex/librarian/scribe/importer/query/__init__.py +44 -0
- codex/librarian/scribe/importer/query/covers.py +55 -0
- codex/librarian/scribe/importer/query/filters.py +61 -0
- codex/librarian/scribe/importer/query/foreign_keys.py +203 -0
- codex/librarian/scribe/importer/query/links.py +29 -0
- codex/librarian/scribe/importer/query/links_fk.py +99 -0
- codex/librarian/scribe/importer/query/links_m2m.py +102 -0
- codex/librarian/scribe/importer/query/update_comics.py +59 -0
- codex/librarian/scribe/importer/query/update_fks.py +140 -0
- codex/librarian/scribe/importer/read/__init__.py +14 -0
- codex/librarian/scribe/importer/read/aggregate_path.py +110 -0
- codex/librarian/scribe/importer/read/const.py +144 -0
- codex/librarian/scribe/importer/read/extract.py +128 -0
- codex/librarian/scribe/importer/read/folders.py +37 -0
- codex/librarian/scribe/importer/read/foreign_keys.py +145 -0
- codex/librarian/scribe/importer/read/many_to_many.py +237 -0
- codex/librarian/scribe/importer/search/__init__.py +34 -0
- codex/librarian/scribe/importer/search/const.py +50 -0
- codex/librarian/scribe/importer/search/prepare.py +85 -0
- codex/librarian/scribe/importer/search/sync_m2m.py +86 -0
- codex/librarian/scribe/importer/search/update.py +273 -0
- codex/librarian/scribe/importer/statii/__init__.py +21 -0
- codex/librarian/scribe/importer/statii/create.py +67 -0
- codex/librarian/scribe/importer/statii/delete.py +39 -0
- codex/librarian/scribe/importer/statii/failed.py +50 -0
- codex/librarian/scribe/importer/statii/link.py +27 -0
- codex/librarian/scribe/importer/statii/moved.py +39 -0
- codex/librarian/scribe/importer/statii/query.py +46 -0
- codex/librarian/scribe/importer/statii/read.py +30 -0
- codex/librarian/scribe/importer/statii/search.py +28 -0
- codex/librarian/scribe/importer/status.py +9 -0
- codex/librarian/scribe/importer/tasks.py +49 -0
- codex/librarian/scribe/janitor/__init__.py +1 -0
- codex/librarian/scribe/janitor/adopt_folders.py +81 -0
- codex/librarian/scribe/janitor/cleanup.py +199 -0
- codex/librarian/scribe/janitor/failed_imports.py +27 -0
- codex/librarian/scribe/janitor/integrity.py +375 -0
- codex/librarian/scribe/janitor/janitor.py +133 -0
- codex/librarian/scribe/janitor/scheduled_time.py +13 -0
- codex/librarian/scribe/janitor/status.py +152 -0
- codex/librarian/scribe/janitor/tasks.py +71 -0
- codex/librarian/scribe/janitor/update.py +88 -0
- codex/librarian/scribe/janitor/vacuum.py +53 -0
- codex/librarian/scribe/lazy_importer.py +51 -0
- codex/librarian/scribe/priority.py +69 -0
- codex/librarian/scribe/scribed.py +130 -0
- codex/librarian/scribe/search/__init__.py +1 -0
- codex/librarian/scribe/search/handler.py +28 -0
- codex/librarian/scribe/search/optimize.py +30 -0
- codex/librarian/scribe/search/remove.py +44 -0
- codex/librarian/scribe/search/status.py +66 -0
- codex/librarian/scribe/search/sync.py +398 -0
- codex/librarian/scribe/search/tasks.py +28 -0
- codex/librarian/scribe/status.py +21 -0
- codex/librarian/scribe/tasks.py +32 -0
- codex/librarian/scribe/timestamp_update.py +135 -0
- codex/librarian/status.py +76 -0
- codex/librarian/status_controller.py +196 -0
- codex/librarian/tasks.py +0 -10
- codex/librarian/telemeter/scheduled_time.py +11 -4
- codex/librarian/telemeter/stats.py +0 -2
- codex/librarian/telemeter/tasks.py +3 -1
- codex/librarian/telemeter/telemeter.py +17 -11
- codex/librarian/threads.py +148 -0
- codex/librarian/watchdog/const.py +139 -0
- codex/librarian/watchdog/db_snapshot.py +16 -10
- codex/librarian/watchdog/dir_snapshot_diff.py +19 -1
- codex/librarian/watchdog/emitter.py +140 -124
- codex/librarian/watchdog/event_batcherd.py +134 -88
- codex/librarian/watchdog/events.py +22 -211
- codex/librarian/watchdog/handlers.py +203 -0
- codex/librarian/watchdog/memory.py +56 -0
- codex/librarian/watchdog/observers.py +89 -55
- codex/librarian/watchdog/status.py +18 -5
- codex/librarian/watchdog/tasks.py +2 -1
- codex/librarian/worker.py +32 -0
- codex/middleware.py +6 -8
- codex/migrations/0011_library_groups_and_metadata_changes.py +2 -1
- codex/migrations/0013_int_issue_count_longer_charfields.py +2 -1
- codex/migrations/0023_rename_credit_creator_and_more.py +2 -1
- codex/migrations/0026_comicbox_1.py +9 -9
- codex/migrations/0034_comicbox2.py +792 -0
- codex/models/__init__.py +1 -0
- codex/models/admin.py +14 -22
- codex/models/base.py +21 -2
- codex/models/comic.py +80 -43
- codex/models/fields.py +81 -0
- codex/models/functions.py +8 -2
- codex/models/groups.py +99 -34
- codex/models/identifier.py +79 -0
- codex/models/library.py +17 -3
- codex/models/named.py +52 -55
- codex/models/paths.py +16 -12
- codex/models/query.py +7 -5
- codex/run.py +12 -18
- codex/serializers/admin/groups.py +3 -0
- codex/serializers/admin/libraries.py +13 -1
- codex/serializers/admin/stats.py +5 -4
- codex/serializers/admin/tasks.py +3 -5
- codex/serializers/admin/users.py +9 -3
- codex/serializers/auth.py +13 -6
- codex/serializers/browser/choices.py +35 -18
- codex/serializers/browser/filters.py +7 -5
- codex/serializers/browser/metadata.py +12 -10
- codex/serializers/browser/mixins.py +6 -8
- codex/serializers/browser/mtime.py +6 -2
- codex/serializers/browser/page.py +8 -3
- codex/serializers/browser/settings.py +35 -5
- codex/serializers/fields/__init__.py +2 -2
- codex/serializers/fields/auth.py +4 -5
- codex/serializers/fields/base.py +16 -0
- codex/serializers/fields/browser.py +15 -31
- codex/serializers/fields/group.py +11 -8
- codex/serializers/fields/reader.py +14 -10
- codex/serializers/fields/sanitized.py +2 -0
- codex/serializers/fields/session.py +3 -8
- codex/serializers/fields/stats.py +3 -5
- codex/serializers/fields/vuetify.py +21 -10
- codex/serializers/mixins.py +42 -0
- codex/serializers/models/base.py +1 -1
- codex/serializers/models/comic.py +6 -2
- codex/serializers/models/named.py +62 -37
- codex/serializers/models/pycountry.py +0 -3
- codex/serializers/opds/v1.py +6 -6
- codex/serializers/opds/v2/feed.py +2 -4
- codex/serializers/opds/v2/publication.py +14 -14
- codex/serializers/opds/v2/unused.py +2 -0
- codex/serializers/reader.py +52 -31
- codex/serializers/route.py +6 -4
- codex/serializers/settings.py +6 -6
- codex/settings/__init__.py +423 -1
- codex/signals/django_signals.py +2 -35
- codex/signals/os_signals.py +4 -5
- codex/startup/__init__.py +180 -0
- codex/startup/db.py +130 -0
- codex/startup/logger_init.py +45 -0
- codex/startup/registration.py +13 -0
- codex/static_root/assets/VCheckbox-BD4eUg4g.3d575d473135.js +1 -0
- codex/static_root/assets/VCheckbox-BD4eUg4g.3d575d473135.js.br +0 -0
- codex/static_root/assets/VCheckbox-BD4eUg4g.3d575d473135.js.gz +0 -0
- codex/static_root/assets/VCheckbox-BD4eUg4g.js +1 -0
- codex/static_root/assets/VCheckbox-BD4eUg4g.js.br +0 -0
- codex/static_root/assets/VCheckbox-BD4eUg4g.js.gz +0 -0
- codex/static_root/assets/VCheckboxBtn-BwlWS4y9.b40b085f1d67.js +1 -0
- codex/static_root/assets/VCheckboxBtn-BwlWS4y9.b40b085f1d67.js.br +0 -0
- codex/static_root/assets/VCheckboxBtn-BwlWS4y9.b40b085f1d67.js.gz +0 -0
- codex/static_root/assets/VCheckboxBtn-BwlWS4y9.js +1 -0
- codex/static_root/assets/VCheckboxBtn-BwlWS4y9.js.br +0 -0
- codex/static_root/assets/VCheckboxBtn-BwlWS4y9.js.gz +0 -0
- codex/static_root/assets/VCombobox-DyLCrBiS.3e13940cf92c.js +1 -0
- codex/static_root/assets/VCombobox-DyLCrBiS.3e13940cf92c.js.br +0 -0
- codex/static_root/assets/VCombobox-DyLCrBiS.3e13940cf92c.js.gz +0 -0
- codex/static_root/assets/VCombobox-DyLCrBiS.js +1 -0
- codex/static_root/assets/VCombobox-DyLCrBiS.js.br +0 -0
- codex/static_root/assets/VCombobox-DyLCrBiS.js.gz +0 -0
- codex/static_root/assets/VDialog-CpWjrJ0R.610ffc6302d4.css +1 -0
- codex/static_root/assets/VDialog-CpWjrJ0R.610ffc6302d4.css.br +0 -0
- codex/static_root/assets/VDialog-CpWjrJ0R.610ffc6302d4.css.gz +0 -0
- codex/static_root/assets/VDialog-CpWjrJ0R.css +1 -0
- codex/static_root/assets/VDialog-CpWjrJ0R.css.br +0 -0
- codex/static_root/assets/VDialog-CpWjrJ0R.css.gz +0 -0
- codex/static_root/assets/VDialog-N7erUTvb.ea9a9b29fb16.js +1 -0
- codex/static_root/assets/VDialog-N7erUTvb.ea9a9b29fb16.js.br +0 -0
- codex/static_root/assets/VDialog-N7erUTvb.ea9a9b29fb16.js.gz +0 -0
- codex/static_root/assets/VDialog-N7erUTvb.js +1 -0
- codex/static_root/assets/VDialog-N7erUTvb.js.br +0 -0
- codex/static_root/assets/VDialog-N7erUTvb.js.gz +0 -0
- codex/static_root/assets/VDivider-DFsQRi0x.d079d29e9764.js +1 -0
- codex/static_root/assets/VDivider-DFsQRi0x.d079d29e9764.js.br +0 -0
- codex/static_root/assets/VDivider-DFsQRi0x.d079d29e9764.js.gz +0 -0
- codex/static_root/assets/VDivider-DFsQRi0x.js +1 -0
- codex/static_root/assets/VDivider-DFsQRi0x.js.br +0 -0
- codex/static_root/assets/VDivider-DFsQRi0x.js.gz +0 -0
- codex/static_root/assets/VExpansionPanels-D_1ryJs5.c67ae2359ced.js +1 -0
- codex/static_root/assets/VExpansionPanels-D_1ryJs5.c67ae2359ced.js.br +0 -0
- codex/static_root/assets/VExpansionPanels-D_1ryJs5.c67ae2359ced.js.gz +0 -0
- codex/static_root/assets/VExpansionPanels-D_1ryJs5.js +1 -0
- codex/static_root/assets/VExpansionPanels-D_1ryJs5.js.br +0 -0
- codex/static_root/assets/VExpansionPanels-D_1ryJs5.js.gz +0 -0
- codex/static_root/assets/VForm-Bhq1UjFg.c9c80e741c2a.js +1 -0
- codex/static_root/assets/VForm-Bhq1UjFg.c9c80e741c2a.js.br +0 -0
- codex/static_root/assets/VForm-Bhq1UjFg.c9c80e741c2a.js.gz +0 -0
- codex/static_root/assets/VForm-Bhq1UjFg.js +1 -0
- codex/static_root/assets/VForm-Bhq1UjFg.js.br +0 -0
- codex/static_root/assets/VForm-Bhq1UjFg.js.gz +0 -0
- codex/static_root/assets/VRadioGroup-IJTnZQT5.731c3f06cee5.js +1 -0
- codex/static_root/assets/VRadioGroup-IJTnZQT5.731c3f06cee5.js.br +0 -0
- codex/static_root/assets/VRadioGroup-IJTnZQT5.731c3f06cee5.js.gz +0 -0
- codex/static_root/assets/VRadioGroup-IJTnZQT5.js +1 -0
- codex/static_root/assets/VRadioGroup-IJTnZQT5.js.br +0 -0
- codex/static_root/assets/VRadioGroup-IJTnZQT5.js.gz +0 -0
- codex/static_root/assets/VSelect-C857NCMc.567124f78bac.js +1 -0
- codex/static_root/assets/VSelect-C857NCMc.567124f78bac.js.br +0 -0
- codex/static_root/assets/VSelect-C857NCMc.567124f78bac.js.gz +0 -0
- codex/static_root/assets/VSelect-C857NCMc.js +1 -0
- codex/static_root/assets/VSelect-C857NCMc.js.br +0 -0
- codex/static_root/assets/VSelect-C857NCMc.js.gz +0 -0
- codex/static_root/assets/VSelect-DQPZyfSb.57477277e7dd.css +1 -0
- codex/static_root/assets/VSelect-DQPZyfSb.57477277e7dd.css.br +0 -0
- codex/static_root/assets/VSelect-DQPZyfSb.57477277e7dd.css.gz +0 -0
- codex/static_root/assets/VSelect-DQPZyfSb.css +1 -0
- codex/static_root/assets/VSelect-DQPZyfSb.css.br +0 -0
- codex/static_root/assets/VSelect-DQPZyfSb.css.gz +0 -0
- codex/static_root/assets/VSelectionControl-BUBBamEF.2e9636e900d8.js +1 -0
- codex/static_root/assets/VSelectionControl-BUBBamEF.2e9636e900d8.js.br +0 -0
- codex/static_root/assets/VSelectionControl-BUBBamEF.2e9636e900d8.js.gz +0 -0
- codex/static_root/assets/VSelectionControl-BUBBamEF.js +1 -0
- codex/static_root/assets/VSelectionControl-BUBBamEF.js.br +0 -0
- codex/static_root/assets/VSelectionControl-BUBBamEF.js.gz +0 -0
- codex/static_root/assets/VTable-CQyv0wyO.1740239d481b.css +1 -0
- codex/static_root/assets/VTable-CQyv0wyO.1740239d481b.css.br +0 -0
- codex/static_root/assets/VTable-CQyv0wyO.1740239d481b.css.gz +0 -0
- codex/static_root/assets/VTable-CQyv0wyO.css +1 -0
- codex/static_root/assets/VTable-CQyv0wyO.css.br +0 -0
- codex/static_root/assets/VTable-CQyv0wyO.css.gz +0 -0
- codex/static_root/assets/VTable-CwYzcGki.ddd22f371cdb.js +1 -0
- codex/static_root/assets/VTable-CwYzcGki.ddd22f371cdb.js.br +0 -0
- codex/static_root/assets/VTable-CwYzcGki.ddd22f371cdb.js.gz +0 -0
- codex/static_root/assets/VTable-CwYzcGki.js +1 -0
- codex/static_root/assets/VTable-CwYzcGki.js.br +0 -0
- codex/static_root/assets/VTable-CwYzcGki.js.gz +0 -0
- codex/static_root/assets/VWindowItem-ChYLiXSE.a9c679a2977e.css +1 -0
- codex/static_root/assets/VWindowItem-ChYLiXSE.a9c679a2977e.css.br +0 -0
- codex/static_root/assets/VWindowItem-ChYLiXSE.a9c679a2977e.css.gz +0 -0
- codex/static_root/assets/VWindowItem-ChYLiXSE.css +1 -0
- codex/static_root/assets/VWindowItem-ChYLiXSE.css.br +0 -0
- codex/static_root/assets/VWindowItem-ChYLiXSE.css.gz +0 -0
- codex/static_root/assets/VWindowItem-WsjNvbu_.0c1a85eba03e.js +1 -0
- codex/static_root/assets/VWindowItem-WsjNvbu_.0c1a85eba03e.js.br +0 -0
- codex/static_root/assets/VWindowItem-WsjNvbu_.0c1a85eba03e.js.gz +0 -0
- codex/static_root/assets/VWindowItem-WsjNvbu_.js +1 -0
- codex/static_root/assets/VWindowItem-WsjNvbu_.js.br +0 -0
- codex/static_root/assets/VWindowItem-WsjNvbu_.js.gz +0 -0
- codex/static_root/assets/admin-ByuViOU9.9a1ee0a29ae2.js +1 -0
- codex/static_root/assets/admin-ByuViOU9.9a1ee0a29ae2.js.br +0 -0
- codex/static_root/assets/admin-ByuViOU9.9a1ee0a29ae2.js.gz +0 -0
- codex/static_root/assets/admin-ByuViOU9.js +1 -0
- codex/static_root/assets/admin-ByuViOU9.js.br +0 -0
- codex/static_root/assets/admin-ByuViOU9.js.gz +0 -0
- codex/static_root/assets/admin-CJauEn2X.b0c66e357083.js +1 -0
- codex/static_root/assets/admin-CJauEn2X.b0c66e357083.js.br +0 -0
- codex/static_root/assets/admin-CJauEn2X.b0c66e357083.js.gz +0 -0
- codex/static_root/assets/admin-CJauEn2X.js +1 -0
- codex/static_root/assets/admin-CJauEn2X.js.br +0 -0
- codex/static_root/assets/admin-CJauEn2X.js.gz +0 -0
- codex/static_root/assets/admin-DJCVf2PA.7ba26fd73264.css +1 -0
- codex/static_root/assets/admin-DJCVf2PA.7ba26fd73264.css.br +0 -0
- codex/static_root/assets/admin-DJCVf2PA.7ba26fd73264.css.gz +0 -0
- codex/static_root/assets/admin-DJCVf2PA.css +1 -0
- codex/static_root/assets/admin-DJCVf2PA.css.br +0 -0
- codex/static_root/assets/admin-DJCVf2PA.css.gz +0 -0
- codex/static_root/assets/admin-menu-BRVAx54U.2c7d6cfd8a50.js +1 -0
- codex/static_root/assets/admin-menu-BRVAx54U.2c7d6cfd8a50.js.br +0 -0
- codex/static_root/assets/admin-menu-BRVAx54U.2c7d6cfd8a50.js.gz +0 -0
- codex/static_root/assets/admin-menu-BRVAx54U.js +1 -0
- codex/static_root/assets/admin-menu-BRVAx54U.js.br +0 -0
- codex/static_root/assets/admin-menu-BRVAx54U.js.gz +0 -0
- codex/static_root/assets/admin-menu-hpyUS8ku.18284a11084d.css +1 -0
- codex/static_root/assets/admin-menu-hpyUS8ku.18284a11084d.css.br +0 -0
- codex/static_root/assets/admin-menu-hpyUS8ku.18284a11084d.css.gz +0 -0
- codex/static_root/assets/admin-menu-hpyUS8ku.css +1 -0
- codex/static_root/assets/admin-menu-hpyUS8ku.css.br +0 -0
- codex/static_root/assets/admin-menu-hpyUS8ku.css.gz +0 -0
- codex/static_root/assets/admin-settings-button-progress-Cks9_KN-.a592809d4008.css +1 -0
- codex/static_root/assets/admin-settings-button-progress-Cks9_KN-.css +1 -0
- codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.4fe043a87c09.js +1 -0
- codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.4fe043a87c09.js.br +0 -0
- codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.4fe043a87c09.js.gz +0 -0
- codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.js +1 -0
- codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.js.br +0 -0
- codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.js.gz +0 -0
- codex/static_root/assets/browser-Cdi7U5ku.bab9fccf0326.css +1 -0
- codex/static_root/assets/browser-Cdi7U5ku.bab9fccf0326.css.br +0 -0
- codex/static_root/assets/browser-Cdi7U5ku.bab9fccf0326.css.gz +0 -0
- codex/static_root/assets/browser-Cdi7U5ku.css +1 -0
- codex/static_root/assets/browser-Cdi7U5ku.css.br +0 -0
- codex/static_root/assets/browser-Cdi7U5ku.css.gz +0 -0
- codex/static_root/assets/browser-OtRiWIux.be28cec0e65a.js +1 -0
- codex/static_root/assets/browser-OtRiWIux.be28cec0e65a.js.br +0 -0
- codex/static_root/assets/browser-OtRiWIux.be28cec0e65a.js.gz +0 -0
- codex/static_root/assets/browser-OtRiWIux.js +1 -0
- codex/static_root/assets/browser-OtRiWIux.js.br +0 -0
- codex/static_root/assets/browser-OtRiWIux.js.gz +0 -0
- codex/static_root/assets/change-password-dialog-DE8R9FId.f3180b3946dd.js +1 -0
- codex/static_root/assets/change-password-dialog-DE8R9FId.f3180b3946dd.js.br +0 -0
- codex/static_root/assets/change-password-dialog-DE8R9FId.f3180b3946dd.js.gz +0 -0
- codex/static_root/assets/change-password-dialog-DE8R9FId.js +1 -0
- codex/static_root/assets/change-password-dialog-DE8R9FId.js.br +0 -0
- codex/static_root/assets/change-password-dialog-DE8R9FId.js.gz +0 -0
- codex/static_root/assets/confirm-dialog-Dy-4G4rU.c2de2d0acce1.js +1 -0
- codex/static_root/assets/confirm-dialog-Dy-4G4rU.c2de2d0acce1.js.br +0 -0
- codex/static_root/assets/confirm-dialog-Dy-4G4rU.c2de2d0acce1.js.gz +0 -0
- codex/static_root/assets/confirm-dialog-Dy-4G4rU.js +1 -0
- codex/static_root/assets/confirm-dialog-Dy-4G4rU.js.br +0 -0
- codex/static_root/assets/confirm-dialog-Dy-4G4rU.js.gz +0 -0
- codex/static_root/assets/confirm-dialog-YfC8mRQA.be37e8f67e0f.css +1 -0
- codex/static_root/assets/confirm-dialog-YfC8mRQA.css +1 -0
- codex/static_root/assets/datetime-column-Bt7J1qEf.css +1 -0
- codex/static_root/assets/datetime-column-Bt7J1qEf.css.br +0 -0
- codex/static_root/assets/datetime-column-Bt7J1qEf.d83164b4d4cb.css +1 -0
- codex/static_root/assets/datetime-column-Bt7J1qEf.d83164b4d4cb.css.br +0 -0
- codex/static_root/assets/datetime-column-C86OiFxS.32dca850b5fb.js +1 -0
- codex/static_root/assets/datetime-column-C86OiFxS.32dca850b5fb.js.br +0 -0
- codex/static_root/assets/datetime-column-C86OiFxS.32dca850b5fb.js.gz +0 -0
- codex/static_root/assets/datetime-column-C86OiFxS.js +1 -0
- codex/static_root/assets/datetime-column-C86OiFxS.js.br +0 -0
- codex/static_root/assets/datetime-column-C86OiFxS.js.gz +0 -0
- codex/static_root/assets/filter-OaiDOf0D.41d89efe9cd5.js +1 -0
- codex/static_root/assets/filter-OaiDOf0D.41d89efe9cd5.js.br +0 -0
- codex/static_root/assets/filter-OaiDOf0D.41d89efe9cd5.js.gz +0 -0
- codex/static_root/assets/filter-OaiDOf0D.js +1 -0
- codex/static_root/assets/filter-OaiDOf0D.js.br +0 -0
- codex/static_root/assets/filter-OaiDOf0D.js.gz +0 -0
- codex/static_root/assets/flag-tab-ChsErni6.0fca30995a0e.js +1 -0
- codex/static_root/assets/flag-tab-ChsErni6.0fca30995a0e.js.br +0 -0
- codex/static_root/assets/flag-tab-ChsErni6.0fca30995a0e.js.gz +0 -0
- codex/static_root/assets/flag-tab-ChsErni6.js +1 -0
- codex/static_root/assets/flag-tab-ChsErni6.js.br +0 -0
- codex/static_root/assets/flag-tab-ChsErni6.js.gz +0 -0
- codex/static_root/assets/forwardRefs-B_sUWZn6.5114f206ca9c.css +1 -0
- codex/static_root/assets/forwardRefs-B_sUWZn6.5114f206ca9c.css.br +0 -0
- codex/static_root/assets/forwardRefs-B_sUWZn6.5114f206ca9c.css.gz +0 -0
- codex/static_root/assets/forwardRefs-B_sUWZn6.css +1 -0
- codex/static_root/assets/forwardRefs-B_sUWZn6.css.br +0 -0
- codex/static_root/assets/forwardRefs-B_sUWZn6.css.gz +0 -0
- codex/static_root/assets/forwardRefs-BjkhALLr.1bfbdea189d7.js +1 -0
- codex/static_root/assets/forwardRefs-BjkhALLr.1bfbdea189d7.js.br +0 -0
- codex/static_root/assets/forwardRefs-BjkhALLr.1bfbdea189d7.js.gz +0 -0
- codex/static_root/assets/forwardRefs-BjkhALLr.js +1 -0
- codex/static_root/assets/forwardRefs-BjkhALLr.js.br +0 -0
- codex/static_root/assets/forwardRefs-BjkhALLr.js.gz +0 -0
- codex/static_root/assets/group-tab-CQ_Qw6h8.078d0a9225ba.css +1 -0
- codex/static_root/assets/group-tab-CQ_Qw6h8.078d0a9225ba.css.br +0 -0
- codex/static_root/assets/group-tab-CQ_Qw6h8.078d0a9225ba.css.gz +0 -0
- codex/static_root/assets/group-tab-CQ_Qw6h8.css +1 -0
- codex/static_root/assets/group-tab-CQ_Qw6h8.css.br +0 -0
- codex/static_root/assets/group-tab-CQ_Qw6h8.css.gz +0 -0
- codex/static_root/assets/group-tab-DB4vz9MA.42dd130d0118.js +1 -0
- codex/static_root/assets/group-tab-DB4vz9MA.42dd130d0118.js.br +0 -0
- codex/static_root/assets/group-tab-DB4vz9MA.42dd130d0118.js.gz +0 -0
- codex/static_root/assets/group-tab-DB4vz9MA.js +1 -0
- codex/static_root/assets/group-tab-DB4vz9MA.js.br +0 -0
- codex/static_root/assets/group-tab-DB4vz9MA.js.gz +0 -0
- codex/static_root/assets/http-error-7Kkr0CW4.c16118f162ac.js +1 -0
- codex/static_root/assets/http-error-7Kkr0CW4.c16118f162ac.js.br +0 -0
- codex/static_root/assets/http-error-7Kkr0CW4.c16118f162ac.js.gz +0 -0
- codex/static_root/assets/http-error-7Kkr0CW4.js +1 -0
- codex/static_root/assets/http-error-7Kkr0CW4.js.br +0 -0
- codex/static_root/assets/http-error-7Kkr0CW4.js.gz +0 -0
- codex/static_root/assets/http-error-CB3k5P-n.82d886ac81c7.css +1 -0
- codex/static_root/assets/http-error-CB3k5P-n.82d886ac81c7.css.br +0 -0
- codex/static_root/assets/http-error-CB3k5P-n.82d886ac81c7.css.gz +0 -0
- codex/static_root/assets/http-error-CB3k5P-n.css +1 -0
- codex/static_root/assets/http-error-CB3k5P-n.css.br +0 -0
- codex/static_root/assets/http-error-CB3k5P-n.css.gz +0 -0
- codex/static_root/assets/index-yvfyzOV3.c886587fcfb6.js +1 -0
- codex/static_root/assets/index-yvfyzOV3.c886587fcfb6.js.br +0 -0
- codex/static_root/assets/index-yvfyzOV3.c886587fcfb6.js.gz +0 -0
- codex/static_root/assets/index-yvfyzOV3.js +1 -0
- codex/static_root/assets/index-yvfyzOV3.js.br +0 -0
- codex/static_root/assets/index-yvfyzOV3.js.gz +0 -0
- codex/static_root/assets/library-tab-5StL67ei.0fad8998a237.css +1 -0
- codex/static_root/assets/library-tab-5StL67ei.0fad8998a237.css.br +0 -0
- codex/static_root/assets/library-tab-5StL67ei.0fad8998a237.css.gz +0 -0
- codex/static_root/assets/library-tab-5StL67ei.css +1 -0
- codex/static_root/assets/library-tab-5StL67ei.css.br +0 -0
- codex/static_root/assets/library-tab-5StL67ei.css.gz +0 -0
- codex/static_root/assets/library-tab-BJM2q4YE.0eb19632c084.js +1 -0
- codex/static_root/assets/library-tab-BJM2q4YE.0eb19632c084.js.br +0 -0
- codex/static_root/assets/library-tab-BJM2q4YE.0eb19632c084.js.gz +0 -0
- codex/static_root/assets/library-tab-BJM2q4YE.js +1 -0
- codex/static_root/assets/library-tab-BJM2q4YE.js.br +0 -0
- codex/static_root/assets/library-tab-BJM2q4YE.js.gz +0 -0
- codex/static_root/assets/main-0gkU-bgy.475633238e98.js +39 -0
- codex/static_root/assets/main-0gkU-bgy.475633238e98.js.br +0 -0
- codex/static_root/assets/main-0gkU-bgy.475633238e98.js.gz +0 -0
- codex/static_root/assets/main-0gkU-bgy.js +39 -0
- codex/static_root/assets/main-0gkU-bgy.js.br +0 -0
- codex/static_root/assets/main-0gkU-bgy.js.gz +0 -0
- codex/static_root/assets/main-B8_0rUnw.a9be0875ae25.css +5 -0
- codex/static_root/assets/main-B8_0rUnw.a9be0875ae25.css.br +0 -0
- codex/static_root/assets/main-B8_0rUnw.a9be0875ae25.css.gz +0 -0
- codex/static_root/assets/main-B8_0rUnw.css +5 -0
- codex/static_root/assets/main-B8_0rUnw.css.br +0 -0
- codex/static_root/assets/main-B8_0rUnw.css.gz +0 -0
- codex/static_root/assets/pager-full-pdf-dMflY9TZ.14b64093d057.js +1 -0
- codex/static_root/assets/pager-full-pdf-dMflY9TZ.14b64093d057.js.br +0 -0
- codex/static_root/assets/pager-full-pdf-dMflY9TZ.14b64093d057.js.gz +0 -0
- codex/static_root/assets/pager-full-pdf-dMflY9TZ.js +1 -0
- codex/static_root/assets/pager-full-pdf-dMflY9TZ.js.br +0 -0
- codex/static_root/assets/pager-full-pdf-dMflY9TZ.js.gz +0 -0
- codex/static_root/assets/pagination-toolbar-741OafNw.4f9155469274.css +1 -0
- codex/static_root/assets/pagination-toolbar-741OafNw.4f9155469274.css.br +0 -0
- codex/static_root/assets/pagination-toolbar-741OafNw.4f9155469274.css.gz +0 -0
- codex/static_root/assets/pagination-toolbar-741OafNw.css +1 -0
- codex/static_root/assets/pagination-toolbar-741OafNw.css.br +0 -0
- codex/static_root/assets/pagination-toolbar-741OafNw.css.gz +0 -0
- codex/static_root/assets/pagination-toolbar-BzWY1XTi.b1fbe47f722d.js +1 -0
- codex/static_root/assets/pagination-toolbar-BzWY1XTi.b1fbe47f722d.js.br +0 -0
- codex/static_root/assets/pagination-toolbar-BzWY1XTi.b1fbe47f722d.js.gz +0 -0
- codex/static_root/assets/pagination-toolbar-BzWY1XTi.js +1 -0
- codex/static_root/assets/pagination-toolbar-BzWY1XTi.js.br +0 -0
- codex/static_root/assets/pagination-toolbar-BzWY1XTi.js.gz +0 -0
- codex/static_root/assets/pdf-doc-remlTMFH.4063b6ec0033.js +372 -0
- codex/static_root/assets/pdf-doc-remlTMFH.4063b6ec0033.js.br +0 -0
- codex/static_root/assets/pdf-doc-remlTMFH.4063b6ec0033.js.gz +0 -0
- codex/static_root/assets/pdf-doc-remlTMFH.js +372 -0
- codex/static_root/assets/pdf-doc-remlTMFH.js.br +0 -0
- codex/static_root/assets/pdf-doc-remlTMFH.js.gz +0 -0
- codex/static_root/assets/reader-CmiUt5h2.65e3cb07aac9.js +2 -0
- codex/static_root/assets/reader-CmiUt5h2.65e3cb07aac9.js.br +0 -0
- codex/static_root/assets/reader-CmiUt5h2.65e3cb07aac9.js.gz +0 -0
- codex/static_root/assets/reader-CmiUt5h2.js +2 -0
- codex/static_root/assets/reader-CmiUt5h2.js.br +0 -0
- codex/static_root/assets/reader-CmiUt5h2.js.gz +0 -0
- codex/static_root/assets/reader-HE07eoaG.8626eeb7c718.css +1 -0
- codex/static_root/assets/reader-HE07eoaG.8626eeb7c718.css.br +0 -0
- codex/static_root/assets/reader-HE07eoaG.8626eeb7c718.css.gz +0 -0
- codex/static_root/assets/reader-HE07eoaG.css +1 -0
- codex/static_root/assets/reader-HE07eoaG.css.br +0 -0
- codex/static_root/assets/reader-HE07eoaG.css.gz +0 -0
- codex/static_root/assets/relation-chips-CcFgPQOM.0b468249b62e.css +1 -0
- codex/static_root/assets/relation-chips-CcFgPQOM.0b468249b62e.css.br +0 -0
- codex/static_root/assets/relation-chips-CcFgPQOM.0b468249b62e.css.gz +0 -0
- codex/static_root/assets/relation-chips-CcFgPQOM.css +1 -0
- codex/static_root/assets/relation-chips-CcFgPQOM.css.br +0 -0
- codex/static_root/assets/relation-chips-CcFgPQOM.css.gz +0 -0
- codex/static_root/assets/relation-chips-Dl0i3EP7.1f365f5c1e41.js +1 -0
- codex/static_root/assets/relation-chips-Dl0i3EP7.1f365f5c1e41.js.br +0 -0
- codex/static_root/assets/relation-chips-Dl0i3EP7.1f365f5c1e41.js.gz +0 -0
- codex/static_root/assets/relation-chips-Dl0i3EP7.js +1 -0
- codex/static_root/assets/relation-chips-Dl0i3EP7.js.br +0 -0
- codex/static_root/assets/relation-chips-Dl0i3EP7.js.gz +0 -0
- codex/static_root/assets/settings-drawer-CpKXWPSA.82625de924bb.js +2 -0
- codex/static_root/assets/settings-drawer-CpKXWPSA.82625de924bb.js.br +0 -0
- codex/static_root/assets/settings-drawer-CpKXWPSA.82625de924bb.js.gz +0 -0
- codex/static_root/assets/settings-drawer-CpKXWPSA.js +2 -0
- codex/static_root/assets/settings-drawer-CpKXWPSA.js.br +0 -0
- codex/static_root/assets/settings-drawer-CpKXWPSA.js.gz +0 -0
- codex/static_root/assets/settings-drawer-CpS_aX4Z.9d4d9533d033.css +1 -0
- codex/static_root/assets/settings-drawer-CpS_aX4Z.9d4d9533d033.css.br +0 -0
- codex/static_root/assets/settings-drawer-CpS_aX4Z.9d4d9533d033.css.gz +0 -0
- codex/static_root/assets/settings-drawer-CpS_aX4Z.css +1 -0
- codex/static_root/assets/settings-drawer-CpS_aX4Z.css.br +0 -0
- codex/static_root/assets/settings-drawer-CpS_aX4Z.css.gz +0 -0
- codex/static_root/assets/ssrBoot-D4fyL90J.0eef13056f93.js +1 -0
- codex/static_root/assets/ssrBoot-D4fyL90J.0eef13056f93.js.br +0 -0
- codex/static_root/assets/ssrBoot-D4fyL90J.0eef13056f93.js.gz +0 -0
- codex/static_root/assets/ssrBoot-D4fyL90J.js +1 -0
- codex/static_root/assets/ssrBoot-D4fyL90J.js.br +0 -0
- codex/static_root/assets/ssrBoot-D4fyL90J.js.gz +0 -0
- codex/static_root/assets/stats-tab-Cu7saNBy.8ad3f7a0995a.js +1 -0
- codex/static_root/assets/stats-tab-Cu7saNBy.8ad3f7a0995a.js.br +0 -0
- codex/static_root/assets/stats-tab-Cu7saNBy.8ad3f7a0995a.js.gz +0 -0
- codex/static_root/assets/stats-tab-Cu7saNBy.js +1 -0
- codex/static_root/assets/stats-tab-Cu7saNBy.js.br +0 -0
- codex/static_root/assets/stats-tab-Cu7saNBy.js.gz +0 -0
- codex/static_root/assets/stats-tab-Dpqh5pF9.8dba36f90032.css +1 -0
- codex/static_root/assets/stats-tab-Dpqh5pF9.8dba36f90032.css.br +0 -0
- codex/static_root/assets/stats-tab-Dpqh5pF9.8dba36f90032.css.gz +0 -0
- codex/static_root/assets/stats-tab-Dpqh5pF9.css +1 -0
- codex/static_root/assets/stats-tab-Dpqh5pF9.css.br +0 -0
- codex/static_root/assets/stats-tab-Dpqh5pF9.css.gz +0 -0
- codex/static_root/assets/task-tab-B66NRaoH.fdb8c98f0652.js +1 -0
- codex/static_root/assets/task-tab-B66NRaoH.fdb8c98f0652.js.br +0 -0
- codex/static_root/assets/task-tab-B66NRaoH.fdb8c98f0652.js.gz +0 -0
- codex/static_root/assets/task-tab-B66NRaoH.js +1 -0
- codex/static_root/assets/task-tab-B66NRaoH.js.br +0 -0
- codex/static_root/assets/task-tab-B66NRaoH.js.gz +0 -0
- codex/static_root/assets/unauthorized-BBwsmi0O.19d4882b821d.css +1 -0
- codex/static_root/assets/unauthorized-BBwsmi0O.19d4882b821d.css.br +0 -0
- codex/static_root/assets/unauthorized-BBwsmi0O.19d4882b821d.css.gz +0 -0
- codex/static_root/assets/unauthorized-BBwsmi0O.css +1 -0
- codex/static_root/assets/unauthorized-BBwsmi0O.css.br +0 -0
- codex/static_root/assets/unauthorized-BBwsmi0O.css.gz +0 -0
- codex/static_root/assets/unauthorized-CLNP5Zx1.9f072de5e06c.js +1 -0
- codex/static_root/assets/unauthorized-CLNP5Zx1.9f072de5e06c.js.br +0 -0
- codex/static_root/assets/unauthorized-CLNP5Zx1.9f072de5e06c.js.gz +0 -0
- codex/static_root/assets/unauthorized-CLNP5Zx1.js +1 -0
- codex/static_root/assets/unauthorized-CLNP5Zx1.js.br +0 -0
- codex/static_root/assets/unauthorized-CLNP5Zx1.js.gz +0 -0
- codex/static_root/assets/user-tab-BqhQ3sls.cacf99be60fb.js +1 -0
- codex/static_root/assets/user-tab-BqhQ3sls.cacf99be60fb.js.br +0 -0
- codex/static_root/assets/user-tab-BqhQ3sls.cacf99be60fb.js.gz +0 -0
- codex/static_root/assets/user-tab-BqhQ3sls.js +1 -0
- codex/static_root/assets/user-tab-BqhQ3sls.js.br +0 -0
- codex/static_root/assets/user-tab-BqhQ3sls.js.gz +0 -0
- codex/static_root/img/folder.83168d8d3119.svg +1 -0
- codex/static_root/img/folder.83168d8d3119.svg.br +1 -0
- codex/static_root/img/folder.83168d8d3119.svg.gz +0 -0
- codex/static_root/img/folder.svg +1 -1
- codex/static_root/img/folder.svg.br +0 -0
- codex/static_root/img/folder.svg.gz +0 -0
- codex/static_root/img/imprint.3ca7a779b949.svg +1 -0
- codex/static_root/img/imprint.3ca7a779b949.svg.br +0 -0
- codex/static_root/img/imprint.3ca7a779b949.svg.gz +0 -0
- codex/static_root/img/imprint.svg +1 -1
- codex/static_root/img/imprint.svg.br +0 -0
- codex/static_root/img/imprint.svg.gz +0 -0
- codex/static_root/img/logo-maskable.aeef5c2fffc8.svg +1 -0
- codex/static_root/img/logo-maskable.aeef5c2fffc8.svg.br +0 -0
- codex/static_root/img/logo-maskable.aeef5c2fffc8.svg.gz +0 -0
- codex/static_root/img/logo-maskable.svg +1 -1
- codex/static_root/img/logo-maskable.svg.br +0 -0
- codex/static_root/img/logo-maskable.svg.gz +0 -0
- codex/static_root/img/logo.00c902973831.svg +1 -0
- codex/static_root/img/logo.00c902973831.svg.br +0 -0
- codex/static_root/img/logo.00c902973831.svg.gz +0 -0
- codex/static_root/img/logo.svg +1 -1
- codex/static_root/img/logo.svg.br +0 -0
- codex/static_root/img/logo.svg.gz +0 -0
- codex/static_root/img/missing-cover-165.f4bb7740084c.webp +0 -0
- codex/static_root/img/missing-cover-165.webp +0 -0
- codex/static_root/img/missing-cover.7329518c5972.svg +1 -0
- codex/static_root/img/missing-cover.7329518c5972.svg.br +0 -0
- codex/static_root/img/missing-cover.7329518c5972.svg.gz +0 -0
- codex/static_root/img/missing-cover.svg +1 -1
- codex/static_root/img/missing-cover.svg.br +0 -0
- codex/static_root/img/missing-cover.svg.gz +0 -0
- codex/static_root/img/series.b092bbac0c2a.svg +1 -0
- codex/static_root/img/series.b092bbac0c2a.svg.br +0 -0
- codex/static_root/img/series.b092bbac0c2a.svg.gz +0 -0
- codex/static_root/img/series.svg +1 -1
- codex/static_root/img/series.svg.br +0 -0
- codex/static_root/img/series.svg.gz +0 -0
- codex/static_root/img/story-arc.884f7b1d95bd.svg +1 -0
- codex/static_root/img/story-arc.884f7b1d95bd.svg.br +0 -0
- codex/static_root/img/story-arc.884f7b1d95bd.svg.gz +0 -0
- codex/static_root/img/story-arc.svg +1 -1
- codex/static_root/img/story-arc.svg.br +0 -0
- codex/static_root/img/story-arc.svg.gz +0 -0
- codex/static_root/img/volume.516ec0c3018d.svg +1 -0
- codex/static_root/img/volume.516ec0c3018d.svg.br +0 -0
- codex/static_root/img/volume.516ec0c3018d.svg.gz +0 -0
- codex/static_root/img/volume.svg +1 -1
- codex/static_root/img/volume.svg.br +0 -0
- codex/static_root/img/volume.svg.gz +0 -0
- codex/static_root/manifest.474fa7aff739.json +760 -0
- codex/static_root/manifest.474fa7aff739.json.br +0 -0
- codex/static_root/manifest.474fa7aff739.json.gz +0 -0
- codex/static_root/manifest.json +350 -347
- codex/static_root/manifest.json.br +0 -0
- codex/static_root/manifest.json.gz +0 -0
- codex/static_root/staticfiles.json +1 -1
- codex/templates/headers-script-globals.html +1 -0
- codex/urls/api/browser.py +10 -1
- codex/urls/converters.py +2 -5
- codex/urls/root.py +1 -1
- codex/util.py +14 -8
- codex/views/admin/api_key.py +1 -1
- codex/views/admin/flag.py +10 -9
- codex/views/admin/group.py +5 -3
- codex/views/admin/library.py +15 -9
- codex/views/admin/permissions.py +21 -0
- codex/views/admin/stats.py +6 -8
- codex/views/admin/tasks.py +48 -48
- codex/views/admin/user.py +5 -3
- codex/views/auth.py +29 -11
- codex/views/bookmark.py +25 -14
- codex/views/browser/annotate/bookmark.py +0 -3
- codex/views/browser/annotate/card.py +20 -5
- codex/views/browser/annotate/order.py +3 -7
- codex/views/browser/bookmark.py +10 -7
- codex/views/browser/breadcrumbs.py +8 -7
- codex/views/browser/browser.py +16 -16
- codex/views/browser/choices.py +81 -65
- codex/views/browser/cover.py +21 -19
- codex/views/browser/download.py +5 -5
- codex/views/browser/filters/bookmark.py +5 -0
- codex/views/browser/filters/field.py +3 -3
- codex/views/browser/filters/filter.py +3 -5
- codex/views/browser/filters/group.py +5 -5
- codex/views/browser/filters/search/field/column.py +13 -9
- codex/views/browser/filters/search/field/expression.py +1 -3
- codex/views/browser/filters/search/field/filter.py +2 -4
- codex/views/browser/filters/search/field/optimize.py +1 -1
- codex/views/browser/filters/search/field/parse.py +28 -7
- codex/views/browser/filters/search/fts.py +3 -4
- codex/views/browser/filters/search/parse.py +26 -26
- codex/views/browser/group_mtime.py +13 -10
- codex/views/browser/metadata/__init__.py +90 -1
- codex/views/browser/metadata/annotate.py +13 -27
- codex/views/browser/metadata/const.py +83 -0
- codex/views/browser/metadata/copy_intersections.py +14 -9
- codex/views/browser/metadata/query_intersections.py +67 -48
- codex/views/browser/mtime.py +4 -7
- codex/views/browser/order_by.py +4 -1
- codex/views/browser/page_in_bounds.py +6 -7
- codex/views/browser/paginate.py +3 -5
- codex/views/browser/params.py +23 -36
- codex/views/browser/settings.py +18 -4
- codex/views/browser/title.py +9 -5
- codex/views/browser/validate.py +6 -8
- codex/views/const.py +11 -9
- codex/views/download.py +2 -2
- codex/views/error.py +1 -1
- codex/views/exceptions.py +82 -0
- codex/views/frontend.py +8 -18
- codex/views/lazy_import.py +24 -0
- codex/views/mixins.py +34 -12
- codex/views/opds/auth.py +2 -2
- codex/views/opds/authentication_v1.py +2 -1
- codex/views/opds/const.py +1 -1
- codex/views/opds/urls.py +2 -1
- codex/views/opds/util.py +14 -41
- codex/views/opds/v1/entry/entry.py +12 -15
- codex/views/opds/v1/entry/links.py +15 -19
- codex/views/opds/v1/facets.py +8 -5
- codex/views/opds/v1/feed.py +23 -22
- codex/views/opds/v1/links.py +3 -7
- codex/views/opds/v1/opensearch_v1.py +7 -4
- codex/views/opds/v2/feed.py +14 -15
- codex/views/opds/v2/href.py +17 -12
- codex/views/opds/v2/links.py +3 -1
- codex/views/opds/v2/progression.py +31 -15
- codex/views/opds/v2/publications.py +18 -17
- codex/views/opds/v2/top_links.py +7 -2
- codex/views/public.py +12 -15
- codex/views/reader/arcs.py +153 -74
- codex/views/reader/books.py +72 -97
- codex/views/reader/page.py +13 -9
- codex/views/reader/params.py +33 -96
- codex/views/reader/reader.py +18 -73
- codex/views/reader/settings.py +4 -2
- codex/views/session.py +13 -19
- codex/views/settings.py +4 -9
- codex/views/template.py +8 -4
- codex/views/timezone.py +4 -5
- codex/views/util.py +3 -24
- codex/views/version.py +5 -3
- codex/websockets/consumers.py +7 -7
- codex/websockets/listener.py +4 -5
- codex-1.8.0.dist-info/METADATA +592 -0
- codex-1.8.0.dist-info/RECORD +1101 -0
- codex-1.8.0.dist-info/WHEEL +4 -0
- codex-1.8.0.dist-info/entry_points.txt +2 -0
- codex/db.py +0 -134
- codex/exceptions.py +0 -88
- codex/librarian/README.md +0 -4
- codex/librarian/delayed_taskd.py +0 -21
- codex/librarian/importer/__init__.py +0 -1
- codex/librarian/importer/aggregate.py +0 -256
- codex/librarian/importer/cache.py +0 -90
- codex/librarian/importer/const.py +0 -244
- codex/librarian/importer/create_comics.py +0 -139
- codex/librarian/importer/create_covers.py +0 -96
- codex/librarian/importer/create_fks.py +0 -346
- codex/librarian/importer/deleted.py +0 -138
- codex/librarian/importer/extract.py +0 -284
- codex/librarian/importer/failed_imports.py +0 -165
- codex/librarian/importer/importer.py +0 -101
- codex/librarian/importer/importerd.py +0 -122
- codex/librarian/importer/init.py +0 -264
- codex/librarian/importer/link_comics.py +0 -270
- codex/librarian/importer/link_covers.py +0 -73
- codex/librarian/importer/moved.py +0 -368
- codex/librarian/importer/query_covers.py +0 -53
- codex/librarian/importer/query_fks.py +0 -653
- codex/librarian/importer/status.py +0 -29
- codex/librarian/importer/tasks.py +0 -55
- codex/librarian/janitor/__init__.py +0 -1
- codex/librarian/janitor/cleanup.py +0 -167
- codex/librarian/janitor/failed_imports.py +0 -27
- codex/librarian/janitor/integrity.py +0 -378
- codex/librarian/janitor/janitor.py +0 -161
- codex/librarian/janitor/latest_version.py +0 -55
- codex/librarian/janitor/scheduled_time.py +0 -12
- codex/librarian/janitor/status.py +0 -22
- codex/librarian/janitor/tasks.py +0 -109
- codex/librarian/janitor/update.py +0 -109
- codex/librarian/janitor/vacuum.py +0 -51
- codex/librarian/search/__init__.py +0 -1
- codex/librarian/search/optimize.py +0 -43
- codex/librarian/search/remove.py +0 -53
- codex/librarian/search/searchd.py +0 -28
- codex/librarian/search/status.py +0 -13
- codex/librarian/search/tasks.py +0 -37
- codex/librarian/search/update.py +0 -305
- codex/librarian/watchdog/README.md +0 -11
- codex/logger/__init__.py +0 -1
- codex/logger/formatter.py +0 -36
- codex/logger/logger.py +0 -46
- codex/logger/loggerd.py +0 -102
- codex/logger/mp_queue.py +0 -5
- codex/logger_base.py +0 -12
- codex/memory.py +0 -56
- codex/permissions.py +0 -19
- codex/registration.py +0 -16
- codex/serializers/README.md +0 -4
- codex/settings/README.md +0 -4
- codex/settings/settings.py +0 -389
- codex/startup.py +0 -182
- codex/static_root/assets/VCheckbox-BP93zyXK.a1358c39a5fc.js +0 -1
- codex/static_root/assets/VCheckbox-BP93zyXK.a1358c39a5fc.js.br +0 -0
- codex/static_root/assets/VCheckbox-BP93zyXK.a1358c39a5fc.js.gz +0 -0
- codex/static_root/assets/VCheckbox-BP93zyXK.js +0 -1
- codex/static_root/assets/VCheckbox-BP93zyXK.js.br +0 -0
- codex/static_root/assets/VCheckbox-BP93zyXK.js.gz +0 -0
- codex/static_root/assets/VCheckboxBtn-CRHYDPms.a17a831d104a.js +0 -1
- codex/static_root/assets/VCheckboxBtn-CRHYDPms.a17a831d104a.js.br +0 -0
- codex/static_root/assets/VCheckboxBtn-CRHYDPms.a17a831d104a.js.gz +0 -0
- codex/static_root/assets/VCheckboxBtn-CRHYDPms.js +0 -1
- codex/static_root/assets/VCheckboxBtn-CRHYDPms.js.br +0 -0
- codex/static_root/assets/VCheckboxBtn-CRHYDPms.js.gz +0 -0
- codex/static_root/assets/VCombobox-BMwdQ72S.106aafc35928.js +0 -1
- codex/static_root/assets/VCombobox-BMwdQ72S.106aafc35928.js.br +0 -0
- codex/static_root/assets/VCombobox-BMwdQ72S.106aafc35928.js.gz +0 -0
- codex/static_root/assets/VCombobox-BMwdQ72S.js +0 -1
- codex/static_root/assets/VCombobox-BMwdQ72S.js.br +0 -0
- codex/static_root/assets/VCombobox-BMwdQ72S.js.gz +0 -0
- codex/static_root/assets/VDialog-BScRe1ug.c1e3368e7223.js +0 -1
- codex/static_root/assets/VDialog-BScRe1ug.c1e3368e7223.js.br +0 -0
- codex/static_root/assets/VDialog-BScRe1ug.c1e3368e7223.js.gz +0 -0
- codex/static_root/assets/VDialog-BScRe1ug.js +0 -1
- codex/static_root/assets/VDialog-BScRe1ug.js.br +0 -0
- codex/static_root/assets/VDialog-BScRe1ug.js.gz +0 -0
- codex/static_root/assets/VDialog-y9QOVA5M.627a99a930c7.css +0 -1
- codex/static_root/assets/VDialog-y9QOVA5M.627a99a930c7.css.br +0 -0
- codex/static_root/assets/VDialog-y9QOVA5M.627a99a930c7.css.gz +0 -0
- codex/static_root/assets/VDialog-y9QOVA5M.css +0 -1
- codex/static_root/assets/VDialog-y9QOVA5M.css.br +0 -0
- codex/static_root/assets/VDialog-y9QOVA5M.css.gz +0 -0
- codex/static_root/assets/VDivider-tFagM0PC.3cc0ce822729.js +0 -1
- codex/static_root/assets/VDivider-tFagM0PC.3cc0ce822729.js.br +0 -0
- codex/static_root/assets/VDivider-tFagM0PC.3cc0ce822729.js.gz +0 -0
- codex/static_root/assets/VDivider-tFagM0PC.js +0 -1
- codex/static_root/assets/VDivider-tFagM0PC.js.br +0 -0
- codex/static_root/assets/VDivider-tFagM0PC.js.gz +0 -0
- codex/static_root/assets/VExpansionPanels-DGHiJ89C.b60a171f4cde.js +0 -1
- codex/static_root/assets/VExpansionPanels-DGHiJ89C.b60a171f4cde.js.br +0 -0
- codex/static_root/assets/VExpansionPanels-DGHiJ89C.b60a171f4cde.js.gz +0 -0
- codex/static_root/assets/VExpansionPanels-DGHiJ89C.js +0 -1
- codex/static_root/assets/VExpansionPanels-DGHiJ89C.js.br +0 -0
- codex/static_root/assets/VExpansionPanels-DGHiJ89C.js.gz +0 -0
- codex/static_root/assets/VForm-B__yH-Y4.63f4a1e9770b.js +0 -1
- codex/static_root/assets/VForm-B__yH-Y4.63f4a1e9770b.js.br +0 -0
- codex/static_root/assets/VForm-B__yH-Y4.63f4a1e9770b.js.gz +0 -0
- codex/static_root/assets/VForm-B__yH-Y4.js +0 -1
- codex/static_root/assets/VForm-B__yH-Y4.js.br +0 -0
- codex/static_root/assets/VForm-B__yH-Y4.js.gz +0 -0
- codex/static_root/assets/VRadioGroup-CPOGOEPv.20e361436bc6.js +0 -1
- codex/static_root/assets/VRadioGroup-CPOGOEPv.20e361436bc6.js.br +0 -0
- codex/static_root/assets/VRadioGroup-CPOGOEPv.20e361436bc6.js.gz +0 -0
- codex/static_root/assets/VRadioGroup-CPOGOEPv.js +0 -1
- codex/static_root/assets/VRadioGroup-CPOGOEPv.js.br +0 -0
- codex/static_root/assets/VRadioGroup-CPOGOEPv.js.gz +0 -0
- codex/static_root/assets/VSelect-B_F15uRm.a7297ec26f7a.js +0 -1
- codex/static_root/assets/VSelect-B_F15uRm.a7297ec26f7a.js.br +0 -0
- codex/static_root/assets/VSelect-B_F15uRm.a7297ec26f7a.js.gz +0 -0
- codex/static_root/assets/VSelect-B_F15uRm.js +0 -1
- codex/static_root/assets/VSelect-B_F15uRm.js.br +0 -0
- codex/static_root/assets/VSelect-B_F15uRm.js.gz +0 -0
- codex/static_root/assets/VSelect-CKXqRkBF.a8be1e193eba.css +0 -1
- codex/static_root/assets/VSelect-CKXqRkBF.a8be1e193eba.css.br +0 -0
- codex/static_root/assets/VSelect-CKXqRkBF.a8be1e193eba.css.gz +0 -0
- codex/static_root/assets/VSelect-CKXqRkBF.css +0 -1
- codex/static_root/assets/VSelect-CKXqRkBF.css.br +0 -0
- codex/static_root/assets/VSelect-CKXqRkBF.css.gz +0 -0
- codex/static_root/assets/VSelectionControl-CjjwyQ-Y.db7787ff7c1d.js +0 -1
- codex/static_root/assets/VSelectionControl-CjjwyQ-Y.db7787ff7c1d.js.br +0 -0
- codex/static_root/assets/VSelectionControl-CjjwyQ-Y.db7787ff7c1d.js.gz +0 -0
- codex/static_root/assets/VSelectionControl-CjjwyQ-Y.js +0 -1
- codex/static_root/assets/VSelectionControl-CjjwyQ-Y.js.br +0 -0
- codex/static_root/assets/VSelectionControl-CjjwyQ-Y.js.gz +0 -0
- codex/static_root/assets/VTable-CHRVGI94.0a75643f6486.css +0 -1
- codex/static_root/assets/VTable-CHRVGI94.0a75643f6486.css.br +0 -0
- codex/static_root/assets/VTable-CHRVGI94.0a75643f6486.css.gz +0 -0
- codex/static_root/assets/VTable-CHRVGI94.css +0 -1
- codex/static_root/assets/VTable-CHRVGI94.css.br +0 -0
- codex/static_root/assets/VTable-CHRVGI94.css.gz +0 -0
- codex/static_root/assets/VTable-DuRw3_Nt.d9e0088b79d2.js +0 -1
- codex/static_root/assets/VTable-DuRw3_Nt.d9e0088b79d2.js.br +0 -0
- codex/static_root/assets/VTable-DuRw3_Nt.d9e0088b79d2.js.gz +0 -0
- codex/static_root/assets/VTable-DuRw3_Nt.js +0 -1
- codex/static_root/assets/VTable-DuRw3_Nt.js.br +0 -0
- codex/static_root/assets/VTable-DuRw3_Nt.js.gz +0 -0
- codex/static_root/assets/VWindowItem-CBh8U6qD.49437fb41631.js +0 -1
- codex/static_root/assets/VWindowItem-CBh8U6qD.49437fb41631.js.br +0 -0
- codex/static_root/assets/VWindowItem-CBh8U6qD.49437fb41631.js.gz +0 -0
- codex/static_root/assets/VWindowItem-CBh8U6qD.js +0 -1
- codex/static_root/assets/VWindowItem-CBh8U6qD.js.br +0 -0
- codex/static_root/assets/VWindowItem-CBh8U6qD.js.gz +0 -0
- codex/static_root/assets/VWindowItem-CWBhiE_Y.css +0 -1
- codex/static_root/assets/VWindowItem-CWBhiE_Y.css.br +0 -0
- codex/static_root/assets/VWindowItem-CWBhiE_Y.css.gz +0 -0
- codex/static_root/assets/VWindowItem-CWBhiE_Y.f7fb19752bf3.css +0 -1
- codex/static_root/assets/VWindowItem-CWBhiE_Y.f7fb19752bf3.css.br +0 -0
- codex/static_root/assets/VWindowItem-CWBhiE_Y.f7fb19752bf3.css.gz +0 -0
- codex/static_root/assets/admin-BiuZANLl.249b6c087031.js +0 -1
- codex/static_root/assets/admin-BiuZANLl.249b6c087031.js.br +0 -0
- codex/static_root/assets/admin-BiuZANLl.249b6c087031.js.gz +0 -0
- codex/static_root/assets/admin-BiuZANLl.js +0 -1
- codex/static_root/assets/admin-BiuZANLl.js.br +0 -0
- codex/static_root/assets/admin-BiuZANLl.js.gz +0 -0
- codex/static_root/assets/admin-klMr_GZK.3784e4f1d624.css +0 -1
- codex/static_root/assets/admin-klMr_GZK.3784e4f1d624.css.br +0 -0
- codex/static_root/assets/admin-klMr_GZK.3784e4f1d624.css.gz +0 -0
- codex/static_root/assets/admin-klMr_GZK.css +0 -1
- codex/static_root/assets/admin-klMr_GZK.css.br +0 -0
- codex/static_root/assets/admin-klMr_GZK.css.gz +0 -0
- codex/static_root/assets/admin-menu-CKlcsy9S.41b2cf82b873.css +0 -1
- codex/static_root/assets/admin-menu-CKlcsy9S.41b2cf82b873.css.br +0 -0
- codex/static_root/assets/admin-menu-CKlcsy9S.41b2cf82b873.css.gz +0 -0
- codex/static_root/assets/admin-menu-CKlcsy9S.css +0 -1
- codex/static_root/assets/admin-menu-CKlcsy9S.css.br +0 -0
- codex/static_root/assets/admin-menu-CKlcsy9S.css.gz +0 -0
- codex/static_root/assets/admin-menu-DqBUjKk4.96d3ee51d1ee.js +0 -1
- codex/static_root/assets/admin-menu-DqBUjKk4.96d3ee51d1ee.js.br +0 -0
- codex/static_root/assets/admin-menu-DqBUjKk4.96d3ee51d1ee.js.gz +0 -0
- codex/static_root/assets/admin-menu-DqBUjKk4.js +0 -1
- codex/static_root/assets/admin-menu-DqBUjKk4.js.br +0 -0
- codex/static_root/assets/admin-menu-DqBUjKk4.js.gz +0 -0
- codex/static_root/assets/admin-rFfBszpt.fe7fc34dcff9.js +0 -1
- codex/static_root/assets/admin-rFfBszpt.fe7fc34dcff9.js.br +0 -0
- codex/static_root/assets/admin-rFfBszpt.fe7fc34dcff9.js.gz +0 -0
- codex/static_root/assets/admin-rFfBszpt.js +0 -1
- codex/static_root/assets/admin-rFfBszpt.js.br +0 -0
- codex/static_root/assets/admin-rFfBszpt.js.gz +0 -0
- codex/static_root/assets/admin-settings-button-progress-OU_loI8p.87ac446b1a6a.js +0 -1
- codex/static_root/assets/admin-settings-button-progress-OU_loI8p.87ac446b1a6a.js.br +0 -0
- codex/static_root/assets/admin-settings-button-progress-OU_loI8p.87ac446b1a6a.js.gz +0 -0
- codex/static_root/assets/admin-settings-button-progress-OU_loI8p.js +0 -1
- codex/static_root/assets/admin-settings-button-progress-OU_loI8p.js.br +0 -0
- codex/static_root/assets/admin-settings-button-progress-OU_loI8p.js.gz +0 -0
- codex/static_root/assets/admin-settings-button-progress-XVi7SeHr.435dc945daf1.css +0 -1
- codex/static_root/assets/admin-settings-button-progress-XVi7SeHr.css +0 -1
- codex/static_root/assets/browser-D0QppR66.501322534a7c.js +0 -1
- codex/static_root/assets/browser-D0QppR66.501322534a7c.js.br +0 -0
- codex/static_root/assets/browser-D0QppR66.501322534a7c.js.gz +0 -0
- codex/static_root/assets/browser-D0QppR66.js +0 -1
- codex/static_root/assets/browser-D0QppR66.js.br +0 -0
- codex/static_root/assets/browser-D0QppR66.js.gz +0 -0
- codex/static_root/assets/browser-sNm790x9.305a6a4f38fd.css +0 -1
- codex/static_root/assets/browser-sNm790x9.305a6a4f38fd.css.br +0 -0
- codex/static_root/assets/browser-sNm790x9.305a6a4f38fd.css.gz +0 -0
- codex/static_root/assets/browser-sNm790x9.css +0 -1
- codex/static_root/assets/browser-sNm790x9.css.br +0 -0
- codex/static_root/assets/browser-sNm790x9.css.gz +0 -0
- codex/static_root/assets/change-password-dialog-DQ_0TaFN.5faa73705235.js +0 -1
- codex/static_root/assets/change-password-dialog-DQ_0TaFN.5faa73705235.js.br +0 -0
- codex/static_root/assets/change-password-dialog-DQ_0TaFN.5faa73705235.js.gz +0 -0
- codex/static_root/assets/change-password-dialog-DQ_0TaFN.js +0 -1
- codex/static_root/assets/change-password-dialog-DQ_0TaFN.js.br +0 -0
- codex/static_root/assets/change-password-dialog-DQ_0TaFN.js.gz +0 -0
- codex/static_root/assets/confirm-dialog-BI5kQLy_.1b5309ad95ec.css +0 -1
- codex/static_root/assets/confirm-dialog-BI5kQLy_.1b5309ad95ec.css.br +0 -0
- codex/static_root/assets/confirm-dialog-BI5kQLy_.css +0 -1
- codex/static_root/assets/confirm-dialog-BI5kQLy_.css.br +0 -0
- codex/static_root/assets/confirm-dialog-Bkr6kSge.f41952e0b099.js +0 -1
- codex/static_root/assets/confirm-dialog-Bkr6kSge.f41952e0b099.js.br +0 -0
- codex/static_root/assets/confirm-dialog-Bkr6kSge.f41952e0b099.js.gz +0 -0
- codex/static_root/assets/confirm-dialog-Bkr6kSge.js +0 -1
- codex/static_root/assets/confirm-dialog-Bkr6kSge.js.br +0 -0
- codex/static_root/assets/confirm-dialog-Bkr6kSge.js.gz +0 -0
- codex/static_root/assets/datetime-column-BavtvLnf.1f3bf499e063.css +0 -1
- codex/static_root/assets/datetime-column-BavtvLnf.css +0 -1
- codex/static_root/assets/datetime-column-DN4pF5Fz.eef663675e36.js +0 -1
- codex/static_root/assets/datetime-column-DN4pF5Fz.eef663675e36.js.br +0 -2
- codex/static_root/assets/datetime-column-DN4pF5Fz.eef663675e36.js.gz +0 -0
- codex/static_root/assets/datetime-column-DN4pF5Fz.js +0 -1
- codex/static_root/assets/datetime-column-DN4pF5Fz.js.br +0 -2
- codex/static_root/assets/datetime-column-DN4pF5Fz.js.gz +0 -0
- codex/static_root/assets/filter-C84dddvE.1f40ef69fc98.js +0 -1
- codex/static_root/assets/filter-C84dddvE.1f40ef69fc98.js.br +0 -0
- codex/static_root/assets/filter-C84dddvE.1f40ef69fc98.js.gz +0 -0
- codex/static_root/assets/filter-C84dddvE.js +0 -1
- codex/static_root/assets/filter-C84dddvE.js.br +0 -0
- codex/static_root/assets/filter-C84dddvE.js.gz +0 -0
- codex/static_root/assets/flag-tab-kXJbxWWt.afd96e3b065a.js +0 -1
- codex/static_root/assets/flag-tab-kXJbxWWt.afd96e3b065a.js.br +0 -0
- codex/static_root/assets/flag-tab-kXJbxWWt.afd96e3b065a.js.gz +0 -0
- codex/static_root/assets/flag-tab-kXJbxWWt.js +0 -1
- codex/static_root/assets/flag-tab-kXJbxWWt.js.br +0 -0
- codex/static_root/assets/flag-tab-kXJbxWWt.js.gz +0 -0
- codex/static_root/assets/forwardRefs-Dbjzugu8.a95409be3194.css +0 -1
- codex/static_root/assets/forwardRefs-Dbjzugu8.a95409be3194.css.br +0 -0
- codex/static_root/assets/forwardRefs-Dbjzugu8.a95409be3194.css.gz +0 -0
- codex/static_root/assets/forwardRefs-Dbjzugu8.css +0 -1
- codex/static_root/assets/forwardRefs-Dbjzugu8.css.br +0 -0
- codex/static_root/assets/forwardRefs-Dbjzugu8.css.gz +0 -0
- codex/static_root/assets/forwardRefs-DkWUbz_i.6267360fb97d.js +0 -1
- codex/static_root/assets/forwardRefs-DkWUbz_i.6267360fb97d.js.br +0 -0
- codex/static_root/assets/forwardRefs-DkWUbz_i.6267360fb97d.js.gz +0 -0
- codex/static_root/assets/forwardRefs-DkWUbz_i.js +0 -1
- codex/static_root/assets/forwardRefs-DkWUbz_i.js.br +0 -0
- codex/static_root/assets/forwardRefs-DkWUbz_i.js.gz +0 -0
- codex/static_root/assets/group-tab-Bi681uR0.3246ac0f7cec.css +0 -1
- codex/static_root/assets/group-tab-Bi681uR0.3246ac0f7cec.css.br +0 -0
- codex/static_root/assets/group-tab-Bi681uR0.3246ac0f7cec.css.gz +0 -0
- codex/static_root/assets/group-tab-Bi681uR0.css +0 -1
- codex/static_root/assets/group-tab-Bi681uR0.css.br +0 -0
- codex/static_root/assets/group-tab-Bi681uR0.css.gz +0 -0
- codex/static_root/assets/group-tab-jH91_dZ-.4e96931a3f26.js +0 -1
- codex/static_root/assets/group-tab-jH91_dZ-.4e96931a3f26.js.br +0 -0
- codex/static_root/assets/group-tab-jH91_dZ-.4e96931a3f26.js.gz +0 -0
- codex/static_root/assets/group-tab-jH91_dZ-.js +0 -1
- codex/static_root/assets/group-tab-jH91_dZ-.js.br +0 -0
- codex/static_root/assets/group-tab-jH91_dZ-.js.gz +0 -0
- codex/static_root/assets/http-error-CODU7jcH.8c13689ae574.css +0 -1
- codex/static_root/assets/http-error-CODU7jcH.8c13689ae574.css.br +0 -0
- codex/static_root/assets/http-error-CODU7jcH.8c13689ae574.css.gz +0 -0
- codex/static_root/assets/http-error-CODU7jcH.css +0 -1
- codex/static_root/assets/http-error-CODU7jcH.css.br +0 -0
- codex/static_root/assets/http-error-CODU7jcH.css.gz +0 -0
- codex/static_root/assets/http-error-CrojtCix.9d0501bde853.js +0 -1
- codex/static_root/assets/http-error-CrojtCix.9d0501bde853.js.br +0 -0
- codex/static_root/assets/http-error-CrojtCix.9d0501bde853.js.gz +0 -0
- codex/static_root/assets/http-error-CrojtCix.js +0 -1
- codex/static_root/assets/http-error-CrojtCix.js.br +0 -0
- codex/static_root/assets/http-error-CrojtCix.js.gz +0 -0
- codex/static_root/assets/index-DHunaD9D.c820322b9e49.js +0 -1
- codex/static_root/assets/index-DHunaD9D.c820322b9e49.js.br +0 -0
- codex/static_root/assets/index-DHunaD9D.c820322b9e49.js.gz +0 -0
- codex/static_root/assets/index-DHunaD9D.js +0 -1
- codex/static_root/assets/index-DHunaD9D.js.br +0 -0
- codex/static_root/assets/index-DHunaD9D.js.gz +0 -0
- codex/static_root/assets/library-tab-BzOyajRi.6c8c04906eec.js +0 -1
- codex/static_root/assets/library-tab-BzOyajRi.6c8c04906eec.js.br +0 -0
- codex/static_root/assets/library-tab-BzOyajRi.6c8c04906eec.js.gz +0 -0
- codex/static_root/assets/library-tab-BzOyajRi.js +0 -1
- codex/static_root/assets/library-tab-BzOyajRi.js.br +0 -0
- codex/static_root/assets/library-tab-BzOyajRi.js.gz +0 -0
- codex/static_root/assets/library-tab-DLpvMqPW.2989f610950b.css +0 -1
- codex/static_root/assets/library-tab-DLpvMqPW.2989f610950b.css.br +0 -0
- codex/static_root/assets/library-tab-DLpvMqPW.2989f610950b.css.gz +0 -0
- codex/static_root/assets/library-tab-DLpvMqPW.css +0 -1
- codex/static_root/assets/library-tab-DLpvMqPW.css.br +0 -0
- codex/static_root/assets/library-tab-DLpvMqPW.css.gz +0 -0
- codex/static_root/assets/main-Dl2Lrwga.e767cd79bb5e.js +0 -39
- codex/static_root/assets/main-Dl2Lrwga.e767cd79bb5e.js.br +0 -0
- codex/static_root/assets/main-Dl2Lrwga.e767cd79bb5e.js.gz +0 -0
- codex/static_root/assets/main-Dl2Lrwga.js +0 -39
- codex/static_root/assets/main-Dl2Lrwga.js.br +0 -0
- codex/static_root/assets/main-Dl2Lrwga.js.gz +0 -0
- codex/static_root/assets/main-Of3aYkZ7.91c75c4fbaa6.css +0 -5
- codex/static_root/assets/main-Of3aYkZ7.91c75c4fbaa6.css.br +0 -0
- codex/static_root/assets/main-Of3aYkZ7.91c75c4fbaa6.css.gz +0 -0
- codex/static_root/assets/main-Of3aYkZ7.css +0 -5
- codex/static_root/assets/main-Of3aYkZ7.css.br +0 -0
- codex/static_root/assets/main-Of3aYkZ7.css.gz +0 -0
- codex/static_root/assets/pager-full-pdf-DKdyHoRL.a504cc00db7c.js +0 -1
- codex/static_root/assets/pager-full-pdf-DKdyHoRL.a504cc00db7c.js.br +0 -0
- codex/static_root/assets/pager-full-pdf-DKdyHoRL.a504cc00db7c.js.gz +0 -0
- codex/static_root/assets/pager-full-pdf-DKdyHoRL.js +0 -1
- codex/static_root/assets/pager-full-pdf-DKdyHoRL.js.br +0 -0
- codex/static_root/assets/pager-full-pdf-DKdyHoRL.js.gz +0 -0
- codex/static_root/assets/pagination-toolbar-T0N6Ubp7.1f07380772ae.js +0 -1
- codex/static_root/assets/pagination-toolbar-T0N6Ubp7.1f07380772ae.js.br +0 -0
- codex/static_root/assets/pagination-toolbar-T0N6Ubp7.1f07380772ae.js.gz +0 -0
- codex/static_root/assets/pagination-toolbar-T0N6Ubp7.js +0 -1
- codex/static_root/assets/pagination-toolbar-T0N6Ubp7.js.br +0 -0
- codex/static_root/assets/pagination-toolbar-T0N6Ubp7.js.gz +0 -0
- codex/static_root/assets/pagination-toolbar-aHRrdz48.2cbd38f9256c.css +0 -1
- codex/static_root/assets/pagination-toolbar-aHRrdz48.2cbd38f9256c.css.br +0 -0
- codex/static_root/assets/pagination-toolbar-aHRrdz48.2cbd38f9256c.css.gz +0 -0
- codex/static_root/assets/pagination-toolbar-aHRrdz48.css +0 -1
- codex/static_root/assets/pagination-toolbar-aHRrdz48.css.br +0 -0
- codex/static_root/assets/pagination-toolbar-aHRrdz48.css.gz +0 -0
- codex/static_root/assets/pdf-doc-CBiUfHpD.9e3e989242e7.js +0 -372
- codex/static_root/assets/pdf-doc-CBiUfHpD.9e3e989242e7.js.br +0 -0
- codex/static_root/assets/pdf-doc-CBiUfHpD.9e3e989242e7.js.gz +0 -0
- codex/static_root/assets/pdf-doc-CBiUfHpD.js +0 -372
- codex/static_root/assets/pdf-doc-CBiUfHpD.js.br +0 -0
- codex/static_root/assets/pdf-doc-CBiUfHpD.js.gz +0 -0
- codex/static_root/assets/reader-BwgJtbgj.c8b86f482c17.css +0 -1
- codex/static_root/assets/reader-BwgJtbgj.c8b86f482c17.css.br +0 -0
- codex/static_root/assets/reader-BwgJtbgj.c8b86f482c17.css.gz +0 -0
- codex/static_root/assets/reader-BwgJtbgj.css +0 -1
- codex/static_root/assets/reader-BwgJtbgj.css.br +0 -0
- codex/static_root/assets/reader-BwgJtbgj.css.gz +0 -0
- codex/static_root/assets/reader-D3uSXJi4.6bf741d0ed65.js +0 -2
- codex/static_root/assets/reader-D3uSXJi4.6bf741d0ed65.js.br +0 -0
- codex/static_root/assets/reader-D3uSXJi4.6bf741d0ed65.js.gz +0 -0
- codex/static_root/assets/reader-D3uSXJi4.js +0 -2
- codex/static_root/assets/reader-D3uSXJi4.js.br +0 -0
- codex/static_root/assets/reader-D3uSXJi4.js.gz +0 -0
- codex/static_root/assets/relation-chips-BuShhy1e.822bb69b0cfe.css +0 -1
- codex/static_root/assets/relation-chips-BuShhy1e.822bb69b0cfe.css.br +0 -0
- codex/static_root/assets/relation-chips-BuShhy1e.822bb69b0cfe.css.gz +0 -0
- codex/static_root/assets/relation-chips-BuShhy1e.css +0 -1
- codex/static_root/assets/relation-chips-BuShhy1e.css.br +0 -0
- codex/static_root/assets/relation-chips-BuShhy1e.css.gz +0 -0
- codex/static_root/assets/relation-chips-DWjWPY3v.d76db684e8a8.js +0 -1
- codex/static_root/assets/relation-chips-DWjWPY3v.d76db684e8a8.js.br +0 -0
- codex/static_root/assets/relation-chips-DWjWPY3v.d76db684e8a8.js.gz +0 -0
- codex/static_root/assets/relation-chips-DWjWPY3v.js +0 -1
- codex/static_root/assets/relation-chips-DWjWPY3v.js.br +0 -0
- codex/static_root/assets/relation-chips-DWjWPY3v.js.gz +0 -0
- codex/static_root/assets/settings-drawer-Bu83HJ70.a7672fb29169.js +0 -2
- codex/static_root/assets/settings-drawer-Bu83HJ70.a7672fb29169.js.br +0 -0
- codex/static_root/assets/settings-drawer-Bu83HJ70.a7672fb29169.js.gz +0 -0
- codex/static_root/assets/settings-drawer-Bu83HJ70.js +0 -2
- codex/static_root/assets/settings-drawer-Bu83HJ70.js.br +0 -0
- codex/static_root/assets/settings-drawer-Bu83HJ70.js.gz +0 -0
- codex/static_root/assets/settings-drawer-WyG6HLH-.css +0 -1
- codex/static_root/assets/settings-drawer-WyG6HLH-.css.br +0 -0
- codex/static_root/assets/settings-drawer-WyG6HLH-.css.gz +0 -0
- codex/static_root/assets/settings-drawer-WyG6HLH-.fe251f6d0a75.css +0 -1
- codex/static_root/assets/settings-drawer-WyG6HLH-.fe251f6d0a75.css.br +0 -0
- codex/static_root/assets/settings-drawer-WyG6HLH-.fe251f6d0a75.css.gz +0 -0
- codex/static_root/assets/ssrBoot-CYaxTeZo.308983ed6c53.js +0 -1
- codex/static_root/assets/ssrBoot-CYaxTeZo.308983ed6c53.js.br +0 -0
- codex/static_root/assets/ssrBoot-CYaxTeZo.308983ed6c53.js.gz +0 -0
- codex/static_root/assets/ssrBoot-CYaxTeZo.js +0 -1
- codex/static_root/assets/ssrBoot-CYaxTeZo.js.br +0 -0
- codex/static_root/assets/ssrBoot-CYaxTeZo.js.gz +0 -0
- codex/static_root/assets/stats-tab-CGY8r-es.b06c55bdaeaa.css +0 -1
- codex/static_root/assets/stats-tab-CGY8r-es.b06c55bdaeaa.css.br +0 -0
- codex/static_root/assets/stats-tab-CGY8r-es.b06c55bdaeaa.css.gz +0 -0
- codex/static_root/assets/stats-tab-CGY8r-es.css +0 -1
- codex/static_root/assets/stats-tab-CGY8r-es.css.br +0 -0
- codex/static_root/assets/stats-tab-CGY8r-es.css.gz +0 -0
- codex/static_root/assets/stats-tab-aWxmJFqf.ef7a1a878842.js +0 -1
- codex/static_root/assets/stats-tab-aWxmJFqf.ef7a1a878842.js.br +0 -0
- codex/static_root/assets/stats-tab-aWxmJFqf.ef7a1a878842.js.gz +0 -0
- codex/static_root/assets/stats-tab-aWxmJFqf.js +0 -1
- codex/static_root/assets/stats-tab-aWxmJFqf.js.br +0 -0
- codex/static_root/assets/stats-tab-aWxmJFqf.js.gz +0 -0
- codex/static_root/assets/task-tab-fAvDZsSF.607dda8657e0.js +0 -1
- codex/static_root/assets/task-tab-fAvDZsSF.607dda8657e0.js.br +0 -0
- codex/static_root/assets/task-tab-fAvDZsSF.607dda8657e0.js.gz +0 -0
- codex/static_root/assets/task-tab-fAvDZsSF.js +0 -1
- codex/static_root/assets/task-tab-fAvDZsSF.js.br +0 -0
- codex/static_root/assets/task-tab-fAvDZsSF.js.gz +0 -0
- codex/static_root/assets/unauthorized-DE63n2Pi.b0357009b13d.css +0 -1
- codex/static_root/assets/unauthorized-DE63n2Pi.b0357009b13d.css.br +0 -0
- codex/static_root/assets/unauthorized-DE63n2Pi.b0357009b13d.css.gz +0 -0
- codex/static_root/assets/unauthorized-DE63n2Pi.css +0 -1
- codex/static_root/assets/unauthorized-DE63n2Pi.css.br +0 -0
- codex/static_root/assets/unauthorized-DE63n2Pi.css.gz +0 -0
- codex/static_root/assets/unauthorized-T8UCTUHd.16d825eec49d.js +0 -1
- codex/static_root/assets/unauthorized-T8UCTUHd.16d825eec49d.js.br +0 -0
- codex/static_root/assets/unauthorized-T8UCTUHd.16d825eec49d.js.gz +0 -0
- codex/static_root/assets/unauthorized-T8UCTUHd.js +0 -1
- codex/static_root/assets/unauthorized-T8UCTUHd.js.br +0 -0
- codex/static_root/assets/unauthorized-T8UCTUHd.js.gz +0 -0
- codex/static_root/assets/user-tab-CI1MB3ic.ed8693e40a0b.js +0 -1
- codex/static_root/assets/user-tab-CI1MB3ic.ed8693e40a0b.js.br +0 -0
- codex/static_root/assets/user-tab-CI1MB3ic.ed8693e40a0b.js.gz +0 -0
- codex/static_root/assets/user-tab-CI1MB3ic.js +0 -1
- codex/static_root/assets/user-tab-CI1MB3ic.js.br +0 -0
- codex/static_root/assets/user-tab-CI1MB3ic.js.gz +0 -0
- codex/static_root/img/folder.f28936a3701d.svg +0 -1
- codex/static_root/img/folder.f28936a3701d.svg.br +0 -0
- codex/static_root/img/folder.f28936a3701d.svg.gz +0 -0
- codex/static_root/img/imprint.7c2adebb76d6.svg +0 -1
- codex/static_root/img/imprint.7c2adebb76d6.svg.br +0 -0
- codex/static_root/img/imprint.7c2adebb76d6.svg.gz +0 -0
- codex/static_root/img/logo-maskable.8f7de7f1c6a8.svg +0 -1
- codex/static_root/img/logo-maskable.8f7de7f1c6a8.svg.br +0 -0
- codex/static_root/img/logo-maskable.8f7de7f1c6a8.svg.gz +0 -0
- codex/static_root/img/logo.0f5344a028ca.svg +0 -1
- codex/static_root/img/logo.0f5344a028ca.svg.br +0 -0
- codex/static_root/img/logo.0f5344a028ca.svg.gz +0 -0
- codex/static_root/img/missing-cover-165.0743171f2148.webp +0 -0
- codex/static_root/img/missing-cover.ddb038cc2c56.svg +0 -1
- codex/static_root/img/missing-cover.ddb038cc2c56.svg.br +0 -0
- codex/static_root/img/missing-cover.ddb038cc2c56.svg.gz +0 -0
- codex/static_root/img/series.ec8a889b8f95.svg +0 -1
- codex/static_root/img/series.ec8a889b8f95.svg.br +0 -0
- codex/static_root/img/series.ec8a889b8f95.svg.gz +0 -0
- codex/static_root/img/story-arc.ca10014355ef.svg +0 -1
- codex/static_root/img/story-arc.ca10014355ef.svg.br +0 -1
- codex/static_root/img/story-arc.ca10014355ef.svg.gz +0 -0
- codex/static_root/img/volume.814e4c79461a.svg +0 -1
- codex/static_root/img/volume.814e4c79461a.svg.br +0 -0
- codex/static_root/img/volume.814e4c79461a.svg.gz +0 -0
- codex/static_root/manifest.b23c14b76074.json +0 -757
- codex/static_root/manifest.b23c14b76074.json.br +0 -0
- codex/static_root/manifest.b23c14b76074.json.gz +0 -0
- codex/status.py +0 -35
- codex/status_controller.py +0 -153
- codex/templates/README.md +0 -3
- codex/threads.py +0 -130
- codex/views/README.md +0 -4
- codex/views/browser/filters/search/aliases.py +0 -81
- codex/views/browser/metadata/metadata.py +0 -83
- codex/websockets/README.md +0 -4
- codex/worker_base.py +0 -14
- codex-1.7.14.dist-info/METADATA +0 -599
- codex-1.7.14.dist-info/RECORD +0 -1052
- codex-1.7.14.dist-info/WHEEL +0 -4
- codex-1.7.14.dist-info/entry_points.txt +0 -3
- {codex-1.7.14.dist-info → codex-1.8.0.dist-info/licenses}/LICENSE +0 -0
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/admin-BiuZANLl.js","assets/unauthorized-T8UCTUHd.js","assets/VDialog-BScRe1ug.js","assets/forwardRefs-DkWUbz_i.js","assets/forwardRefs-Dbjzugu8.css","assets/VDialog-y9QOVA5M.css","assets/change-password-dialog-DQ_0TaFN.js","assets/VForm-B__yH-Y4.js","assets/VSelectionControl-CjjwyQ-Y.js","assets/VSelectionControl-RqBzwjYi.css","assets/VForm-DxBt30-N.css","assets/admin-rFfBszpt.js","assets/change-password-dialog-DL8UMjmX.css","assets/ssrBoot-CYaxTeZo.js","assets/unauthorized-DE63n2Pi.css","assets/settings-drawer-Bu83HJ70.js","assets/copy-to-clipboard-DoUvDJVx.js","assets/VDivider-tFagM0PC.js","assets/VDivider-DU47sRrT.css","assets/settings-drawer-WyG6HLH-.css","assets/VWindowItem-CBh8U6qD.js","assets/VWindowItem-CWBhiE_Y.css","assets/admin-klMr_GZK.css","assets/browser-D0QppR66.js","assets/index-DHunaD9D.js","assets/index-Czf-fUM7.css","assets/VCombobox-BMwdQ72S.js","assets/VSelect-B_F15uRm.js","assets/VCheckboxBtn-CRHYDPms.js","assets/VSelect-CKXqRkBF.css","assets/filter-C84dddvE.js","assets/VCombobox-DHFthaP6.css","assets/VTable-DuRw3_Nt.js","assets/VTable-CHRVGI94.css","assets/pagination-toolbar-T0N6Ubp7.js","assets/confirm-dialog-Bkr6kSge.js","assets/confirm-dialog-BI5kQLy_.css","assets/pagination-toolbar-aHRrdz48.css","assets/VCheckbox-BP93zyXK.js","assets/VCheckbox-CvH8ekHL.css","assets/browser-sNm790x9.css","assets/http-error-CrojtCix.js","assets/http-error-CODU7jcH.css","assets/reader-D3uSXJi4.js","assets/VExpansionPanels-DGHiJ89C.js","assets/VExpansionPanels-RsCANmDP.css","assets/VRadioGroup-CPOGOEPv.js","assets/VRadioGroup-Cp9mZ7cb.css","assets/reader-BwgJtbgj.css","assets/flag-tab-kXJbxWWt.js","assets/flag-tab-CESc_7Pq.css","assets/user-tab-CI1MB3ic.js","assets/relation-chips-DWjWPY3v.js","assets/relation-chips-BuShhy1e.css","assets/datetime-column-DN4pF5Fz.js","assets/datetime-column-BavtvLnf.css","assets/group-tab-jH91_dZ-.js","assets/group-tab-Bi681uR0.css","assets/library-tab-BzOyajRi.js","assets/library-tab-DLpvMqPW.css","assets/task-tab-fAvDZsSF.js","assets/task-tab-CW4DQ3KN.css","assets/stats-tab-aWxmJFqf.js","assets/stats-tab-CGY8r-es.css"])))=>i.map(i=>d[i]);
|
|
2
|
-
function ho(e,t={},n){for(const r in e){const s=e[r],o=n?`${n}:${r}`:r;typeof s=="object"&&s!==null?ho(s,t,o):typeof s=="function"&&(t[o]=s)}return t}const cd={run:e=>e()},ld=()=>cd,Yc=typeof console.createTask<"u"?console.createTask:ld;function ud(e,t){const n=t.shift(),r=Yc(n);return e.reduce((s,o)=>s.then(()=>r.run(()=>o(...t))),Promise.resolve())}function fd(e,t){const n=t.shift(),r=Yc(n);return Promise.all(e.map(s=>r.run(()=>s(...t))))}function js(e,t){for(const n of[...e])n(t)}class dd{constructor(){this._hooks={},this._before=void 0,this._after=void 0,this._deprecatedMessages=void 0,this._deprecatedHooks={},this.hook=this.hook.bind(this),this.callHook=this.callHook.bind(this),this.callHookWith=this.callHookWith.bind(this)}hook(t,n,r={}){if(!t||typeof n!="function")return()=>{};const s=t;let o;for(;this._deprecatedHooks[t];)o=this._deprecatedHooks[t],t=o.to;if(o&&!r.allowDeprecated){let i=o.message;i||(i=`${s} hook has been deprecated`+(o.to?`, please use ${o.to}`:"")),this._deprecatedMessages||(this._deprecatedMessages=new Set),this._deprecatedMessages.has(i)||(console.warn(i),this._deprecatedMessages.add(i))}if(!n.name)try{Object.defineProperty(n,"name",{get:()=>"_"+t.replace(/\W+/g,"_")+"_hook_cb",configurable:!0})}catch{}return this._hooks[t]=this._hooks[t]||[],this._hooks[t].push(n),()=>{n&&(this.removeHook(t,n),n=void 0)}}hookOnce(t,n){let r,s=(...o)=>(typeof r=="function"&&r(),r=void 0,s=void 0,n(...o));return r=this.hook(t,s),r}removeHook(t,n){if(this._hooks[t]){const r=this._hooks[t].indexOf(n);r!==-1&&this._hooks[t].splice(r,1),this._hooks[t].length===0&&delete this._hooks[t]}}deprecateHook(t,n){this._deprecatedHooks[t]=typeof n=="string"?{to:n}:n;const r=this._hooks[t]||[];delete this._hooks[t];for(const s of r)this.hook(t,s)}deprecateHooks(t){Object.assign(this._deprecatedHooks,t);for(const n in t)this.deprecateHook(n,t[n])}addHooks(t){const n=ho(t),r=Object.keys(n).map(s=>this.hook(s,n[s]));return()=>{for(const s of r.splice(0,r.length))s()}}removeHooks(t){const n=ho(t);for(const r in n)this.removeHook(r,n[r])}removeAllHooks(){for(const t in this._hooks)delete this._hooks[t]}callHook(t,...n){return n.unshift(t),this.callHookWith(ud,t,...n)}callHookParallel(t,...n){return n.unshift(t),this.callHookWith(fd,t,...n)}callHookWith(t,n,...r){const s=this._before||this._after?{name:n,args:r,context:{}}:void 0;this._before&&js(this._before,s);const o=t(n in this._hooks?[...this._hooks[n]]:[],r);return o instanceof Promise?o.finally(()=>{this._after&&s&&js(this._after,s)}):(this._after&&s&&js(this._after,s),o)}beforeEach(t){return this._before=this._before||[],this._before.push(t),()=>{if(this._before!==void 0){const n=this._before.indexOf(t);n!==-1&&this._before.splice(n,1)}}}afterEach(t){return this._after=this._after||[],this._after.push(t),()=>{if(this._after!==void 0){const n=this._after.indexOf(t);n!==-1&&this._after.splice(n,1)}}}}function hd(){return new dd}const pd=new Set(["link","style","script","noscript"]),md=new Set(["title","titleTemplate","script","style","noscript"]),ki=new Set(["base","meta","link","style","script","noscript"]),gd=new Set(["title","base","htmlAttrs","bodyAttrs","meta","link","style","script","noscript"]),vd=new Set(["base","title","titleTemplate","bodyAttrs","htmlAttrs","templateParams"]),yd=new Set(["key","tagPosition","tagPriority","tagDuplicateStrategy","innerHTML","textContent","processTemplateParams"]),bd=new Set(["templateParams","htmlAttrs","bodyAttrs"]),Sd=new Set(["theme-color","google-site-verification","og","article","book","profile","twitter","author"]),Cd=["name","property","http-equiv"];function Jc(e){const t=e.split(":");return t.length?Sd.has(t[1]):!1}function po(e){const{props:t,tag:n}=e;if(vd.has(n))return n;if(n==="link"&&t.rel==="canonical")return"canonical";if(t.charset)return"charset";if(e.tag==="meta"){for(const r of Cd)if(t[r]!==void 0)return`${n}:${t[r]}`}if(e.key)return`${n}:key:${e.key}`;if(t.id)return`${n}:id:${t.id}`;if(md.has(n)){const r=e.textContent||e.innerHTML;if(r)return`${n}:content:${r}`}}function Ni(e){const t=e._h||e._d;if(t)return t;const n=e.textContent||e.innerHTML;return n||`${e.tag}:${Object.entries(e.props).map(([r,s])=>`${r}:${String(s)}`).join(",")}`}function Xr(e,t,n){typeof e==="function"&&(!n||n!=="titleTemplate"&&!(n[0]==="o"&&n[1]==="n"))&&(e=e());let s;if(t&&(s=t(n,e)),Array.isArray(s))return s.map(o=>Xr(o,t));if((s==null?void 0:s.constructor)===Object){const o={};for(const i of Object.keys(s))o[i]=Xr(s[i],t,i);return o}return s}function Ad(e,t){const n=e==="style"?new Map:new Set;function r(s){const o=s.trim();if(o)if(e==="style"){const[i,...a]=o.split(":").map(c=>c.trim());i&&a.length&&n.set(i,a.join(":"))}else o.split(" ").filter(Boolean).forEach(i=>n.add(i))}return typeof t=="string"?e==="style"?t.split(";").forEach(r):r(t):Array.isArray(t)?t.forEach(s=>r(s)):t&&typeof t=="object"&&Object.entries(t).forEach(([s,o])=>{o&&o!=="false"&&(e==="style"?n.set(s.trim(),o):r(s))}),n}function Xc(e,t){return e.props=e.props||{},t&&Object.entries(t).forEach(([n,r])=>{if(r===null){e.props[n]=null;return}if(n==="class"||n==="style"){e.props[n]=Ad(n,r);return}if(yd.has(n)){if(["textContent","innerHTML"].includes(n)&&typeof r=="object"){let i=t.type;if(t.type||(i="application/json"),!(i!=null&&i.endsWith("json"))&&i!=="speculationrules")return;t.type=i,e.props.type=i,e[n]=JSON.stringify(r)}else e[n]=r;return}const s=String(r),o=n.startsWith("data-");s==="true"||s===""?e.props[n]=o?s:!0:!r&&o&&s==="false"?e.props[n]="false":r!==void 0&&(e.props[n]=r)}),e}function Ed(e,t){const n=typeof t=="object"&&typeof t!="function"?t:{[e==="script"||e==="noscript"||e==="style"?"innerHTML":"textContent"]:t},r=Xc({tag:e,props:{}},n);return r.key&&pd.has(r.tag)&&(r.props["data-hid"]=r._h=r.key),r.tag==="script"&&typeof r.innerHTML=="object"&&(r.innerHTML=JSON.stringify(r.innerHTML),r.props.type=r.props.type||"application/json"),Array.isArray(r.props.content)?r.props.content.map(s=>({...r,props:{...r.props,content:s}})):r}function Ld(e,t){if(!e)return[];typeof e=="function"&&(e=e());const n=(s,o)=>{for(let i=0;i<t.length;i++)o=t[i](s,o);return o};e=n(void 0,e);const r=[];return e=Xr(e,n),Object.entries(e||{}).forEach(([s,o])=>{if(o!==void 0)for(const i of Array.isArray(o)?o:[o])r.push(Ed(s,i))}),r.flat()}const ji=(e,t)=>e._w===t._w?e._p-t._p:e._w-t._w,$i={base:-10,title:10},wd={critical:-8,high:-1,low:2},Bi={meta:{"content-security-policy":-30,charset:-20,viewport:-15},link:{preconnect:20,stylesheet:60,preload:70,modulepreload:70,prefetch:90,"dns-prefetch":90,prerender:90},script:{async:30,defer:80,sync:50},style:{imported:40,sync:60}},Td=/@import/,jn=e=>e===""||e===!0;function xd(e,t){var o;if(typeof t.tagPriority=="number")return t.tagPriority;let n=100;const r=wd[t.tagPriority]||0,s=e.resolvedOptions.disableCapoSorting?{link:{},script:{},style:{}}:Bi;if(t.tag in $i)n=$i[t.tag];else if(t.tag==="meta"){const i=t.props["http-equiv"]==="content-security-policy"?"content-security-policy":t.props.charset?"charset":t.props.name==="viewport"?"viewport":null;i&&(n=Bi.meta[i])}else t.tag==="link"&&t.props.rel?n=s.link[t.props.rel]:t.tag==="script"?jn(t.props.async)?n=s.script.async:t.props.src&&!jn(t.props.defer)&&!jn(t.props.async)&&t.props.type!=="module"&&!((o=t.props.type)!=null&&o.endsWith("json"))?n=s.script.sync:jn(t.props.defer)&&t.props.src&&!jn(t.props.async)&&(n=s.script.defer):t.tag==="style"&&(n=t.innerHTML&&Td.test(t.innerHTML)?s.style.imported:s.style.sync);return(n||100)+r}function Ui(e,t){const n=typeof t=="function"?t(e):t,r=n.key||String(e.plugins.size+1);e.plugins.get(r)||(e.plugins.set(r,n),e.hooks.addHooks(n.hooks||{}))}function Rd(e={}){var a;const t=hd();t.addHooks(e.hooks||{});const n=!e.document,r=new Map,s=new Map,o=[],i={_entryCount:1,plugins:s,dirty:!1,resolvedOptions:e,hooks:t,ssr:n,entries:r,headEntries(){return[...r.values()]},use:c=>Ui(i,c),push(c,u){const l={...u||{}};delete l.head;const f=l._index??i._entryCount++,d={_i:f,input:c,options:l},m={_poll(h=!1){i.dirty=!0,!h&&o.push(f),t.callHook("entries:updated",i)},dispose(){r.delete(f)&&m._poll(!0)},patch(h){(!l.mode||l.mode==="server"&&n||l.mode==="client"&&!n)&&(d.input=h,r.set(f,d),m._poll())}};return m.patch(c),m},async resolveTags(){var m;const c={tagMap:new Map,tags:[],entries:[...i.entries.values()]};for(await t.callHook("entries:resolve",c);o.length;){const h=o.shift(),p=r.get(h);if(p){const g={tags:Ld(p.input,e.propResolvers||[]).map(v=>Object.assign(v,p.options)),entry:p};await t.callHook("entries:normalize",g),p._tags=g.tags.map((v,b)=>(v._w=xd(i,v),v._p=(p._i<<10)+b,v._d=po(v),v))}}let u=!1;c.entries.flatMap(h=>(h._tags||[]).map(p=>({...p,props:{...p.props}}))).sort(ji).reduce((h,p)=>{const g=String(p._d||p._p);if(!h.has(g))return h.set(g,p);const v=h.get(g);if(((p==null?void 0:p.tagDuplicateStrategy)||(bd.has(p.tag)?"merge":null)||(p.key&&p.key===v.key?"merge":null))==="merge"){const S={...v.props};Object.entries(p.props).forEach(([E,x])=>S[E]=E==="style"?new Map([...v.props.style||new Map,...x]):E==="class"?new Set([...v.props.class||new Set,...x]):x),h.set(g,{...p,props:S})}else p._p>>10===v._p>>10&&p.tag==="meta"&&Jc(g)?(h.set(g,Object.assign([...Array.isArray(v)?v:[v],p],p)),u=!0):(p._w===v._w?p._p>v._p:(p==null?void 0:p._w)<(v==null?void 0:v._w))&&h.set(g,p);return h},c.tagMap);const l=c.tagMap.get("title"),f=c.tagMap.get("titleTemplate");if(i._title=l==null?void 0:l.textContent,f){const h=f==null?void 0:f.textContent;if(i._titleTemplate=h,h){let p=typeof h=="function"?h(l==null?void 0:l.textContent):h;typeof p=="string"&&!i.plugins.has("template-params")&&(p=p.replace("%s",(l==null?void 0:l.textContent)||"")),l?p===null?c.tagMap.delete("title"):c.tagMap.set("title",{...l,textContent:p}):(f.tag="title",f.textContent=p)}}c.tags=Array.from(c.tagMap.values()),u&&(c.tags=c.tags.flat().sort(ji)),await t.callHook("tags:beforeResolve",c),await t.callHook("tags:resolve",c),await t.callHook("tags:afterResolve",c);const d=[];for(const h of c.tags){const{innerHTML:p,tag:g,props:v}=h;if(gd.has(g)&&!(Object.keys(v).length===0&&!h.innerHTML&&!h.textContent)&&!(g==="meta"&&!v.content&&!v["http-equiv"]&&!v.charset)){if(g==="script"&&p){if((m=v.type)!=null&&m.endsWith("json")){const b=typeof p=="string"?p:JSON.stringify(p);h.innerHTML=b.replace(/</g,"\\u003C")}else typeof p=="string"&&(h.innerHTML=p.replace(new RegExp(`</${g}`,"g"),`<\\/${g}`));h._d=po(h)}d.push(h)}}return d}};return((e==null?void 0:e.plugins)||[]).forEach(c=>Ui(i,c)),i.hooks.callHook("init",i),(a=e.init)==null||a.forEach(c=>c&&i.push(c)),i}async function Qc(e,t={}){const n=t.document||e.resolvedOptions.document;if(!n||!e.dirty)return;const r={shouldRender:!0,tags:[]};if(await e.hooks.callHook("dom:beforeRender",r),!!r.shouldRender)return e._domUpdatePromise||(e._domUpdatePromise=new Promise(async s=>{var m;const o=new Map,i=new Promise(h=>{e.resolveTags().then(p=>{h(p.map(g=>{const v=o.get(g._d)||0,b={tag:g,id:(v?`${g._d}:${v}`:g._d)||Ni(g),shouldRender:!0};return g._d&&Jc(g._d)&&o.set(g._d,v+1),b}))})});let a=e._dom;if(!a){a={title:n.title,elMap:new Map().set("htmlAttrs",n.documentElement).set("bodyAttrs",n.body)};for(const h of["body","head"]){const p=(m=n[h])==null?void 0:m.children;for(const g of p){const v=g.tagName.toLowerCase();if(!ki.has(v))continue;const b=Xc({tag:v,props:{}},{innerHTML:g.innerHTML,...g.getAttributeNames().reduce((S,E)=>(S[E]=g.getAttribute(E),S),{})||{}});if(b.key=g.getAttribute("data-hid")||void 0,b._d=po(b)||Ni(b),a.elMap.has(b._d)){let S=1,E=b._d;for(;a.elMap.has(E);)E=`${b._d}:${S++}`;a.elMap.set(E,g)}else a.elMap.set(b._d,g)}}}a.pendingSideEffects={...a.sideEffects},a.sideEffects={};function c(h,p,g){const v=`${h}:${p}`;a.sideEffects[v]=g,delete a.pendingSideEffects[v]}function u({id:h,$el:p,tag:g}){const v=g.tag.endsWith("Attrs");a.elMap.set(h,p),v||(g.textContent&&g.textContent!==p.textContent&&(p.textContent=g.textContent),g.innerHTML&&g.innerHTML!==p.innerHTML&&(p.innerHTML=g.innerHTML),c(h,"el",()=>{p==null||p.remove(),a.elMap.delete(h)}));for(const b in g.props){if(!Object.prototype.hasOwnProperty.call(g.props,b))continue;const S=g.props[b];if(b.startsWith("on")&&typeof S=="function"){const x=p==null?void 0:p.dataset;if(x&&x[`${b}fired`]){const T=b.slice(0,-5);S.call(p,new Event(T.substring(2)))}p.getAttribute(`data-${b}`)!==""&&((g.tag==="bodyAttrs"?n.defaultView:p).addEventListener(b.substring(2),S.bind(p)),p.setAttribute(`data-${b}`,""));continue}const E=`attr:${b}`;if(b==="class"){if(!S)continue;for(const x of S)v&&c(h,`${E}:${x}`,()=>p.classList.remove(x)),!p.classList.contains(x)&&p.classList.add(x)}else if(b==="style"){if(!S)continue;for(const[x,T]of S)c(h,`${E}:${x}`,()=>{p.style.removeProperty(x)}),p.style.setProperty(x,T)}else S!==!1&&S!==null&&(p.getAttribute(b)!==S&&p.setAttribute(b,S===!0?"":String(S)),v&&c(h,E,()=>p.removeAttribute(b)))}}const l=[],f={bodyClose:void 0,bodyOpen:void 0,head:void 0},d=await i;for(const h of d){const{tag:p,shouldRender:g,id:v}=h;if(g){if(p.tag==="title"){n.title=p.textContent,c("title","",()=>n.title=a.title);continue}h.$el=h.$el||a.elMap.get(v),h.$el?u(h):ki.has(p.tag)&&l.push(h)}}for(const h of l){const p=h.tag.tagPosition||"head";h.$el=n.createElement(h.tag.tag),u(h),f[p]=f[p]||n.createDocumentFragment(),f[p].appendChild(h.$el)}for(const h of d)await e.hooks.callHook("dom:renderTag",h,n,c);f.head&&n.head.appendChild(f.head),f.bodyOpen&&n.body.insertBefore(f.bodyOpen,n.body.firstChild),f.bodyClose&&n.body.appendChild(f.bodyClose);for(const h in a.pendingSideEffects)a.pendingSideEffects[h]();e._dom=a,await e.hooks.callHook("dom:rendered",{renders:d}),s()}).finally(()=>{e._domUpdatePromise=void 0,e.dirty=!1})),e._domUpdatePromise}function Od(e={}){var r,s,o;const t=((r=e.domOptions)==null?void 0:r.render)||Qc;e.document=e.document||(typeof window<"u"?document:void 0);const n=((o=(s=e.document)==null?void 0:s.head.querySelector('script[id="unhead:payload"]'))==null?void 0:o.innerHTML)||!1;return Rd({...e,plugins:[...e.plugins||[],{key:"client",hooks:{"entries:updated":t}}],init:[n?JSON.parse(n):!1,...e.init||[]]})}function Pd(e,t){let n=0;return()=>{const r=++n;t(()=>{n===r&&e()})}}/**
|
|
3
|
-
* @vue/shared v3.5.17
|
|
4
|
-
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
5
|
-
* @license MIT
|
|
6
|
-
**//*! #__NO_SIDE_EFFECTS__ */function Jo(e){const t=Object.create(null);for(const n of e.split(","))t[n]=1;return n=>n in t}const he={},wn=[],Ct=()=>{},Md=()=>!1,gs=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Xo=e=>e.startsWith("onUpdate:"),Re=Object.assign,Qo=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Id=Object.prototype.hasOwnProperty,le=(e,t)=>Id.call(e,t),Q=Array.isArray,Tn=e=>vs(e)==="[object Map]",_c=e=>vs(e)==="[object Set]",_=e=>typeof e=="function",Se=e=>typeof e=="string",It=e=>typeof e=="symbol",ve=e=>e!==null&&typeof e=="object",qc=e=>(ve(e)||_(e))&&_(e.then)&&_(e.catch),el=Object.prototype.toString,vs=e=>el.call(e),Hd=e=>vs(e).slice(8,-1),tl=e=>vs(e)==="[object Object]",_o=e=>Se(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,Yn=Jo(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),ys=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Dd=/-(\w)/g,Qe=ys(e=>e.replace(Dd,(t,n)=>n?n.toUpperCase():"")),Vd=/\B([A-Z])/g,Qt=ys(e=>e.replace(Vd,"-$1").toLowerCase()),vr=ys(e=>e.charAt(0).toUpperCase()+e.slice(1)),$s=ys(e=>e?`on${vr(e)}`:""),Zt=(e,t)=>!Object.is(e,t),Bs=(e,...t)=>{for(let n=0;n<e.length;n++)e[n](...t)},mo=(e,t,n,r=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:r,value:n})},Fd=e=>{const t=parseFloat(e);return isNaN(t)?e:t},kd=e=>{const t=Se(e)?Number(e):NaN;return isNaN(t)?e:t};let Wi;const bs=()=>Wi||(Wi=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Ss(e){if(Q(e)){const t={};for(let n=0;n<e.length;n++){const r=e[n],s=Se(r)?Bd(r):Ss(r);if(s)for(const o in s)t[o]=s[o]}return t}else if(Se(e)||ve(e))return e}const Nd=/;(?![^(]*\))/g,jd=/:([^]+)/,$d=/\/\*[^]*?\*\//g;function Bd(e){const t={};return e.replace($d,"").split(Nd).forEach(n=>{if(n){const r=n.split(jd);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}function yr(e){let t="";if(Se(e))t=e;else if(Q(e))for(let n=0;n<e.length;n++){const r=yr(e[n]);r&&(t+=r+" ")}else if(ve(e))for(const n in e)e[n]&&(t+=n+" ");return t.trim()}const Ud="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",Wd=Jo(Ud);function nl(e){return!!e||e===""}const rl=e=>!!(e&&e.__v_isRef===!0),Gd=e=>Se(e)?e:e==null?"":Q(e)||ve(e)&&(e.toString===el||!_(e.toString))?rl(e)?Gd(e.value):JSON.stringify(e,sl,2):String(e),sl=(e,t)=>rl(t)?sl(e,t.value):Tn(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[r,s],o)=>(n[Us(r,o)+" =>"]=s,n),{})}:_c(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>Us(n))}:It(t)?Us(t):ve(t)&&!Q(t)&&!tl(t)?String(t):t,Us=(e,t="")=>{var n;return It(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/**
|
|
7
|
-
* @vue/reactivity v3.5.17
|
|
8
|
-
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
9
|
-
* @license MIT
|
|
10
|
-
**/let Me;class ol{constructor(t=!1){this.detached=t,this._active=!0,this._on=0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.parent=Me,!t&&Me&&(this.index=(Me.scopes||(Me.scopes=[])).push(this)-1)}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let t,n;if(this.scopes)for(t=0,n=this.scopes.length;t<n;t++)this.scopes[t].pause();for(t=0,n=this.effects.length;t<n;t++)this.effects[t].pause()}}resume(){if(this._active&&this._isPaused){this._isPaused=!1;let t,n;if(this.scopes)for(t=0,n=this.scopes.length;t<n;t++)this.scopes[t].resume();for(t=0,n=this.effects.length;t<n;t++)this.effects[t].resume()}}run(t){if(this._active){const n=Me;try{return Me=this,t()}finally{Me=n}}}on(){++this._on===1&&(this.prevScope=Me,Me=this)}off(){this._on>0&&--this._on===0&&(Me=this.prevScope,this.prevScope=void 0)}stop(t){if(this._active){this._active=!1;let n,r;for(n=0,r=this.effects.length;n<r;n++)this.effects[n].stop();for(this.effects.length=0,n=0,r=this.cleanups.length;n<r;n++)this.cleanups[n]();if(this.cleanups.length=0,this.scopes){for(n=0,r=this.scopes.length;n<r;n++)this.scopes[n].stop(!0);this.scopes.length=0}if(!this.detached&&this.parent&&!t){const s=this.parent.scopes.pop();s&&s!==this&&(this.parent.scopes[this.index]=s,s.index=this.index)}this.parent=void 0}}}function or(e){return new ol(e)}function il(){return Me}function qo(e,t=!1){Me&&Me.cleanups.push(e)}let me;const Ws=new WeakSet;class al{constructor(t){this.fn=t,this.deps=void 0,this.depsTail=void 0,this.flags=5,this.next=void 0,this.cleanup=void 0,this.scheduler=void 0,Me&&Me.active&&Me.effects.push(this)}pause(){this.flags|=64}resume(){this.flags&64&&(this.flags&=-65,Ws.has(this)&&(Ws.delete(this),this.trigger()))}notify(){this.flags&2&&!(this.flags&32)||this.flags&8||ll(this)}run(){if(!(this.flags&1))return this.fn();this.flags|=2,Gi(this),ul(this);const t=me,n=ot;me=this,ot=!0;try{return this.fn()}finally{fl(this),me=t,ot=n,this.flags&=-3}}stop(){if(this.flags&1){for(let t=this.deps;t;t=t.nextDep)ni(t);this.deps=this.depsTail=void 0,Gi(this),this.onStop&&this.onStop(),this.flags&=-2}}trigger(){this.flags&64?Ws.add(this):this.scheduler?this.scheduler():this.runIfDirty()}runIfDirty(){go(this)&&this.run()}get dirty(){return go(this)}}let cl=0,Jn,Xn;function ll(e,t=!1){if(e.flags|=8,t){e.next=Xn,Xn=e;return}e.next=Jn,Jn=e}function ei(){cl++}function ti(){if(--cl>0)return;if(Xn){let t=Xn;for(Xn=void 0;t;){const n=t.next;t.next=void 0,t.flags&=-9,t=n}}let e;for(;Jn;){let t=Jn;for(Jn=void 0;t;){const n=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(r){e||(e=r)}t=n}}if(e)throw e}function ul(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function fl(e){let t,n=e.depsTail,r=n;for(;r;){const s=r.prevDep;r.version===-1?(r===n&&(n=s),ni(r),Kd(r)):t=r,r.dep.activeLink=r.prevActiveLink,r.prevActiveLink=void 0,r=s}e.deps=t,e.depsTail=n}function go(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(dl(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function dl(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===ir)||(e.globalVersion=ir,!e.isSSR&&e.flags&128&&(!e.deps&&!e._dirty||!go(e))))return;e.flags|=2;const t=e.dep,n=me,r=ot;me=e,ot=!0;try{ul(e);const s=e.fn(e._value);(t.version===0||Zt(s,e._value))&&(e.flags|=128,e._value=s,t.version++)}catch(s){throw t.version++,s}finally{me=n,ot=r,fl(e),e.flags&=-3}}function ni(e,t=!1){const{dep:n,prevSub:r,nextSub:s}=e;if(r&&(r.nextSub=s,e.prevSub=void 0),s&&(s.prevSub=r,e.nextSub=void 0),n.subs===e&&(n.subs=r,!r&&n.computed)){n.computed.flags&=-5;for(let o=n.computed.deps;o;o=o.nextDep)ni(o,!0)}!t&&!--n.sc&&n.map&&n.map.delete(n.key)}function Kd(e){const{prevDep:t,nextDep:n}=e;t&&(t.nextDep=n,e.prevDep=void 0),n&&(n.prevDep=t,e.nextDep=void 0)}let ot=!0;const hl=[];function Pt(){hl.push(ot),ot=!1}function Mt(){const e=hl.pop();ot=e===void 0?!0:e}function Gi(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const n=me;me=void 0;try{t()}finally{me=n}}}let ir=0;class zd{constructor(t,n){this.sub=t,this.dep=n,this.version=n.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class ri{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0,this.__v_skip=!0}track(t){if(!me||!ot||me===this.computed)return;let n=this.activeLink;if(n===void 0||n.sub!==me)n=this.activeLink=new zd(me,this),me.deps?(n.prevDep=me.depsTail,me.depsTail.nextDep=n,me.depsTail=n):me.deps=me.depsTail=n,pl(n);else if(n.version===-1&&(n.version=this.version,n.nextDep)){const r=n.nextDep;r.prevDep=n.prevDep,n.prevDep&&(n.prevDep.nextDep=r),n.prevDep=me.depsTail,n.nextDep=void 0,me.depsTail.nextDep=n,me.depsTail=n,me.deps===n&&(me.deps=r)}return n}trigger(t){this.version++,ir++,this.notify(t)}notify(t){ei();try{for(let n=this.subs;n;n=n.prevSub)n.sub.notify()&&n.sub.dep.notify()}finally{ti()}}}function pl(e){if(e.dep.sc++,e.sub.flags&4){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let r=t.deps;r;r=r.nextDep)pl(r)}const n=e.dep.subs;n!==e&&(e.prevSub=n,n&&(n.nextSub=e)),e.dep.subs=e}}const Qr=new WeakMap,fn=Symbol(""),vo=Symbol(""),ar=Symbol("");function Ie(e,t,n){if(ot&&me){let r=Qr.get(e);r||Qr.set(e,r=new Map);let s=r.get(n);s||(r.set(n,s=new ri),s.map=r,s.key=n),s.track()}}function Tt(e,t,n,r,s,o){const i=Qr.get(e);if(!i){ir++;return}const a=c=>{c&&c.trigger()};if(ei(),t==="clear")i.forEach(a);else{const c=Q(e),u=c&&_o(n);if(c&&n==="length"){const l=Number(r);i.forEach((f,d)=>{(d==="length"||d===ar||!It(d)&&d>=l)&&a(f)})}else switch((n!==void 0||i.has(void 0))&&a(i.get(n)),u&&a(i.get(ar)),t){case"add":c?u&&a(i.get("length")):(a(i.get(fn)),Tn(e)&&a(i.get(vo)));break;case"delete":c||(a(i.get(fn)),Tn(e)&&a(i.get(vo)));break;case"set":Tn(e)&&a(i.get(fn));break}}ti()}function Zd(e,t){const n=Qr.get(e);return n&&n.get(t)}function yn(e){const t=se(e);return t===e?t:(Ie(t,"iterate",ar),et(e)?t:t.map(Oe))}function Cs(e){return Ie(e=se(e),"iterate",ar),e}const Yd={__proto__:null,[Symbol.iterator](){return Gs(this,Symbol.iterator,Oe)},concat(...e){return yn(this).concat(...e.map(t=>Q(t)?yn(t):t))},entries(){return Gs(this,"entries",e=>(e[1]=Oe(e[1]),e))},every(e,t){return At(this,"every",e,t,void 0,arguments)},filter(e,t){return At(this,"filter",e,t,n=>n.map(Oe),arguments)},find(e,t){return At(this,"find",e,t,Oe,arguments)},findIndex(e,t){return At(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return At(this,"findLast",e,t,Oe,arguments)},findLastIndex(e,t){return At(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return At(this,"forEach",e,t,void 0,arguments)},includes(...e){return Ks(this,"includes",e)},indexOf(...e){return Ks(this,"indexOf",e)},join(e){return yn(this).join(e)},lastIndexOf(...e){return Ks(this,"lastIndexOf",e)},map(e,t){return At(this,"map",e,t,void 0,arguments)},pop(){return $n(this,"pop")},push(...e){return $n(this,"push",e)},reduce(e,...t){return Ki(this,"reduce",e,t)},reduceRight(e,...t){return Ki(this,"reduceRight",e,t)},shift(){return $n(this,"shift")},some(e,t){return At(this,"some",e,t,void 0,arguments)},splice(...e){return $n(this,"splice",e)},toReversed(){return yn(this).toReversed()},toSorted(e){return yn(this).toSorted(e)},toSpliced(...e){return yn(this).toSpliced(...e)},unshift(...e){return $n(this,"unshift",e)},values(){return Gs(this,"values",Oe)}};function Gs(e,t,n){const r=Cs(e),s=r[t]();return r!==e&&!et(e)&&(s._next=s.next,s.next=()=>{const o=s._next();return o.value&&(o.value=n(o.value)),o}),s}const Jd=Array.prototype;function At(e,t,n,r,s,o){const i=Cs(e),a=i!==e&&!et(e),c=i[t];if(c!==Jd[t]){const f=c.apply(e,o);return a?Oe(f):f}let u=n;i!==e&&(a?u=function(f,d){return n.call(this,Oe(f),d,e)}:n.length>2&&(u=function(f,d){return n.call(this,f,d,e)}));const l=c.call(i,u,r);return a&&s?s(l):l}function Ki(e,t,n,r){const s=Cs(e);let o=n;return s!==e&&(et(e)?n.length>3&&(o=function(i,a,c){return n.call(this,i,a,c,e)}):o=function(i,a,c){return n.call(this,i,Oe(a),c,e)}),s[t](o,...r)}function Ks(e,t,n){const r=se(e);Ie(r,"iterate",ar);const s=r[t](...n);return(s===-1||s===!1)&&ai(n[0])?(n[0]=se(n[0]),r[t](...n)):s}function $n(e,t,n=[]){Pt(),ei();const r=se(e)[t].apply(e,n);return ti(),Mt(),r}const Xd=Jo("__proto__,__v_isRef,__isVue"),ml=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(It));function Qd(e){It(e)||(e=String(e));const t=se(this);return Ie(t,"has",e),t.hasOwnProperty(e)}class gl{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,r){if(n==="__v_skip")return t.__v_skip;const s=this._isReadonly,o=this._isShallow;if(n==="__v_isReactive")return!s;if(n==="__v_isReadonly")return s;if(n==="__v_isShallow")return o;if(n==="__v_raw")return r===(s?o?a1:Sl:o?bl:yl).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(r)?t:void 0;const i=Q(t);if(!s){let c;if(i&&(c=Yd[n]))return c;if(n==="hasOwnProperty")return Qd}const a=Reflect.get(t,n,be(t)?t:r);return(It(n)?ml.has(n):Xd(n))||(s||Ie(t,"get",n),o)?a:be(a)?i&&_o(n)?a:a.value:ve(a)?s?oi(a):Ge(a):a}}class vl extends gl{constructor(t=!1){super(!1,t)}set(t,n,r,s){let o=t[n];if(!this._isShallow){const c=Jt(o);if(!et(r)&&!Jt(r)&&(o=se(o),r=se(r)),!Q(t)&&be(o)&&!be(r))return c?!1:(o.value=r,!0)}const i=Q(t)&&_o(n)?Number(n)<t.length:le(t,n),a=Reflect.set(t,n,r,be(t)?t:s);return t===se(s)&&(i?Zt(r,o)&&Tt(t,"set",n,r):Tt(t,"add",n,r)),a}deleteProperty(t,n){const r=le(t,n);t[n];const s=Reflect.deleteProperty(t,n);return s&&r&&Tt(t,"delete",n,void 0),s}has(t,n){const r=Reflect.has(t,n);return(!It(n)||!ml.has(n))&&Ie(t,"has",n),r}ownKeys(t){return Ie(t,"iterate",Q(t)?"length":fn),Reflect.ownKeys(t)}}class _d extends gl{constructor(t=!1){super(!0,t)}set(t,n){return!0}deleteProperty(t,n){return!0}}const qd=new vl,e1=new _d,t1=new vl(!0);const yo=e=>e,Mr=e=>Reflect.getPrototypeOf(e);function n1(e,t,n){return function(...r){const s=this.__v_raw,o=se(s),i=Tn(o),a=e==="entries"||e===Symbol.iterator&&i,c=e==="keys"&&i,u=s[e](...r),l=n?yo:t?_r:Oe;return!t&&Ie(o,"iterate",c?vo:fn),{next(){const{value:f,done:d}=u.next();return d?{value:f,done:d}:{value:a?[l(f[0]),l(f[1])]:l(f),done:d}},[Symbol.iterator](){return this}}}}function Ir(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function r1(e,t){const n={get(s){const o=this.__v_raw,i=se(o),a=se(s);e||(Zt(s,a)&&Ie(i,"get",s),Ie(i,"get",a));const{has:c}=Mr(i),u=t?yo:e?_r:Oe;if(c.call(i,s))return u(o.get(s));if(c.call(i,a))return u(o.get(a));o!==i&&o.get(s)},get size(){const s=this.__v_raw;return!e&&Ie(se(s),"iterate",fn),Reflect.get(s,"size",s)},has(s){const o=this.__v_raw,i=se(o),a=se(s);return e||(Zt(s,a)&&Ie(i,"has",s),Ie(i,"has",a)),s===a?o.has(s):o.has(s)||o.has(a)},forEach(s,o){const i=this,a=i.__v_raw,c=se(a),u=t?yo:e?_r:Oe;return!e&&Ie(c,"iterate",fn),a.forEach((l,f)=>s.call(o,u(l),u(f),i))}};return Re(n,e?{add:Ir("add"),set:Ir("set"),delete:Ir("delete"),clear:Ir("clear")}:{add(s){!t&&!et(s)&&!Jt(s)&&(s=se(s));const o=se(this);return Mr(o).has.call(o,s)||(o.add(s),Tt(o,"add",s,s)),this},set(s,o){!t&&!et(o)&&!Jt(o)&&(o=se(o));const i=se(this),{has:a,get:c}=Mr(i);let u=a.call(i,s);u||(s=se(s),u=a.call(i,s));const l=c.call(i,s);return i.set(s,o),u?Zt(o,l)&&Tt(i,"set",s,o):Tt(i,"add",s,o),this},delete(s){const o=se(this),{has:i,get:a}=Mr(o);let c=i.call(o,s);c||(s=se(s),c=i.call(o,s)),a&&a.call(o,s);const u=o.delete(s);return c&&Tt(o,"delete",s,void 0),u},clear(){const s=se(this),o=s.size!==0,i=s.clear();return o&&Tt(s,"clear",void 0,void 0),i}}),["keys","values","entries",Symbol.iterator].forEach(s=>{n[s]=n1(s,e,t)}),n}function si(e,t){const n=r1(e,t);return(r,s,o)=>s==="__v_isReactive"?!e:s==="__v_isReadonly"?e:s==="__v_raw"?r:Reflect.get(le(n,s)&&s in r?n:r,s,o)}const s1={get:si(!1,!1)},o1={get:si(!1,!0)},i1={get:si(!0,!1)};const yl=new WeakMap,bl=new WeakMap,Sl=new WeakMap,a1=new WeakMap;function c1(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function l1(e){return e.__v_skip||!Object.isExtensible(e)?0:c1(Hd(e))}function Ge(e){return Jt(e)?e:ii(e,!1,qd,s1,yl)}function Cl(e){return ii(e,!1,t1,o1,bl)}function oi(e){return ii(e,!0,e1,i1,Sl)}function ii(e,t,n,r,s){if(!ve(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const o=l1(e);if(o===0)return e;const i=s.get(e);if(i)return i;const a=new Proxy(e,o===2?r:n);return s.set(e,a),a}function Yt(e){return Jt(e)?Yt(e.__v_raw):!!(e&&e.__v_isReactive)}function Jt(e){return!!(e&&e.__v_isReadonly)}function et(e){return!!(e&&e.__v_isShallow)}function ai(e){return e?!!e.__v_raw:!1}function se(e){const t=e&&e.__v_raw;return t?se(t):e}function ci(e){return!le(e,"__v_skip")&&Object.isExtensible(e)&&mo(e,"__v_skip",!0),e}const Oe=e=>ve(e)?Ge(e):e,_r=e=>ve(e)?oi(e):e;function be(e){return e?e.__v_isRef===!0:!1}function Fe(e){return Al(e,!1)}function it(e){return Al(e,!0)}function Al(e,t){return be(e)?e:new u1(e,t)}class u1{constructor(t,n){this.dep=new ri,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=n?t:se(t),this._value=n?t:Oe(t),this.__v_isShallow=n}get value(){return this.dep.track(),this._value}set value(t){const n=this._rawValue,r=this.__v_isShallow||et(t)||Jt(t);t=r?t:se(t),Zt(t,n)&&(this._rawValue=t,this._value=r?t:Oe(t),this.dep.trigger())}}function qe(e){return be(e)?e.value:e}function El(e){return _(e)?e():qe(e)}const f1={get:(e,t,n)=>t==="__v_raw"?e:qe(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const s=e[t];return be(s)&&!be(n)?(s.value=n,!0):Reflect.set(e,t,n,r)}};function Ll(e){return Yt(e)?e:new Proxy(e,f1)}function wl(e){const t=Q(e)?new Array(e.length):{};for(const n in e)t[n]=Tl(e,n);return t}class d1{constructor(t,n,r){this._object=t,this._key=n,this._defaultValue=r,this.__v_isRef=!0,this._value=void 0}get value(){const t=this._object[this._key];return this._value=t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return Zd(se(this._object),this._key)}}class h1{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0,this._value=void 0}get value(){return this._value=this._getter()}}function Xe(e,t,n){return be(e)?e:_(e)?new h1(e):ve(e)&&arguments.length>1?Tl(e,t,n):Fe(e)}function Tl(e,t,n){const r=e[t];return be(r)?r:new d1(e,t,n)}class p1{constructor(t,n,r){this.fn=t,this.setter=n,this._value=void 0,this.dep=new ri(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=ir-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!n,this.isSSR=r}notify(){if(this.flags|=16,!(this.flags&8)&&me!==this)return ll(this,!0),!0}get value(){const t=this.dep.track();return dl(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function m1(e,t,n=!1){let r,s;return _(e)?r=e:(r=e.get,s=e.set),new p1(r,s,n)}const Hr={},qr=new WeakMap;let an;function g1(e,t=!1,n=an){if(n){let r=qr.get(n);r||qr.set(n,r=[]),r.push(e)}}function v1(e,t,n=he){const{immediate:r,deep:s,once:o,scheduler:i,augmentJob:a,call:c}=n,u=E=>s?E:et(E)||s===!1||s===0?xt(E,1):xt(E);let l,f,d,m,h=!1,p=!1;if(be(e)?(f=()=>e.value,h=et(e)):Yt(e)?(f=()=>u(e),h=!0):Q(e)?(p=!0,h=e.some(E=>Yt(E)||et(E)),f=()=>e.map(E=>{if(be(E))return E.value;if(Yt(E))return u(E);if(_(E))return c?c(E,2):E()})):_(e)?t?f=c?()=>c(e,2):e:f=()=>{if(d){Pt();try{d()}finally{Mt()}}const E=an;an=l;try{return c?c(e,3,[m]):e(m)}finally{an=E}}:f=Ct,t&&s){const E=f,x=s===!0?1/0:s;f=()=>xt(E(),x)}const g=il(),v=()=>{l.stop(),g&&g.active&&Qo(g.effects,l)};if(o&&t){const E=t;t=(...x)=>{E(...x),v()}}let b=p?new Array(e.length).fill(Hr):Hr;const S=E=>{if(!(!(l.flags&1)||!l.dirty&&!E))if(t){const x=l.run();if(s||h||(p?x.some((T,P)=>Zt(T,b[P])):Zt(x,b))){d&&d();const T=an;an=l;try{const P=[x,b===Hr?void 0:p&&b[0]===Hr?[]:b,m];b=x,c?c(t,3,P):t(...P)}finally{an=T}}}else l.run()};return a&&a(S),l=new al(f),l.scheduler=i?()=>i(S,!1):S,m=E=>g1(E,!1,l),d=l.onStop=()=>{const E=qr.get(l);if(E){if(c)c(E,4);else for(const x of E)x();qr.delete(l)}},t?r?S(!0):b=l.run():i?i(S.bind(null,!0),!0):l.run(),v.pause=l.pause.bind(l),v.resume=l.resume.bind(l),v.stop=v,v}function xt(e,t=1/0,n){if(t<=0||!ve(e)||e.__v_skip||(n=n||new Set,n.has(e)))return e;if(n.add(e),t--,be(e))xt(e.value,t,n);else if(Q(e))for(let r=0;r<e.length;r++)xt(e[r],t,n);else if(_c(e)||Tn(e))e.forEach(r=>{xt(r,t,n)});else if(tl(e)){for(const r in e)xt(e[r],t,n);for(const r of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,r)&&xt(e[r],t,n)}return e}/**
|
|
11
|
-
* @vue/runtime-core v3.5.17
|
|
12
|
-
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
13
|
-
* @license MIT
|
|
14
|
-
**/function br(e,t,n,r){try{return r?e(...r):e()}catch(s){Sr(s,t,n)}}function at(e,t,n,r){if(_(e)){const s=br(e,t,n,r);return s&&qc(s)&&s.catch(o=>{Sr(o,t,n)}),s}if(Q(e)){const s=[];for(let o=0;o<e.length;o++)s.push(at(e[o],t,n,r));return s}}function Sr(e,t,n,r=!0){const s=t?t.vnode:null,{errorHandler:o,throwUnhandledErrorInProduction:i}=t&&t.appContext.config||he;if(t){let a=t.parent;const c=t.proxy,u=`https://vuejs.org/error-reference/#runtime-${n}`;for(;a;){const l=a.ec;if(l){for(let f=0;f<l.length;f++)if(l[f](e,c,u)===!1)return}a=a.parent}if(o){Pt(),br(o,null,10,[e,c,u]),Mt();return}}y1(e,n,s,r,i)}function y1(e,t,n,r=!0,s=!1){if(s)throw e;console.error(e)}const je=[];let yt=-1;const xn=[];let Ut=null,En=0;const xl=Promise.resolve();let es=null;function As(e){const t=es||xl;return e?t.then(this?e.bind(this):e):t}function b1(e){let t=yt+1,n=je.length;for(;t<n;){const r=t+n>>>1,s=je[r],o=cr(s);o<e||o===e&&s.flags&2?t=r+1:n=r}return t}function li(e){if(!(e.flags&1)){const t=cr(e),n=je[je.length-1];!n||!(e.flags&2)&&t>=cr(n)?je.push(e):je.splice(b1(t),0,e),e.flags|=1,Rl()}}function Rl(){es||(es=xl.then(Pl))}function S1(e){Q(e)?xn.push(...e):Ut&&e.id===-1?Ut.splice(En+1,0,e):e.flags&1||(xn.push(e),e.flags|=1),Rl()}function zi(e,t,n=yt+1){for(;n<je.length;n++){const r=je[n];if(r&&r.flags&2){if(e&&r.id!==e.uid)continue;je.splice(n,1),n--,r.flags&4&&(r.flags&=-2),r(),r.flags&4||(r.flags&=-2)}}}function Ol(e){if(xn.length){const t=[...new Set(xn)].sort((n,r)=>cr(n)-cr(r));if(xn.length=0,Ut){Ut.push(...t);return}for(Ut=t,En=0;En<Ut.length;En++){const n=Ut[En];n.flags&4&&(n.flags&=-2),n.flags&8||n(),n.flags&=-2}Ut=null,En=0}}const cr=e=>e.id==null?e.flags&2?-1:1/0:e.id;function Pl(e){try{for(yt=0;yt<je.length;yt++){const t=je[yt];t&&!(t.flags&8)&&(t.flags&4&&(t.flags&=-2),br(t,t.i,t.i?15:14),t.flags&4||(t.flags&=-2))}}finally{for(;yt<je.length;yt++){const t=je[yt];t&&(t.flags&=-2)}yt=-1,je.length=0,Ol(),es=null,(je.length||xn.length)&&Pl()}}let xe=null,Ml=null;function ts(e){const t=xe;return xe=e,Ml=e&&e.type.__scopeId||null,t}function Il(e,t=xe,n){if(!t||e._n)return e;const r=(...s)=>{r._d&&aa(-1);const o=ts(t);let i;try{i=e(...s)}finally{ts(o),r._d&&aa(1)}return i};return r._n=!0,r._c=!0,r._d=!0,r}function o5(e,t){if(xe===null)return e;const n=xs(xe),r=e.dirs||(e.dirs=[]);for(let s=0;s<t.length;s++){let[o,i,a,c=he]=t[s];o&&(_(o)&&(o={mounted:o,updated:o}),o.deep&&xt(i),r.push({dir:o,instance:n,value:i,oldValue:void 0,arg:a,modifiers:c}))}return e}function en(e,t,n,r){const s=e.dirs,o=t&&t.dirs;for(let i=0;i<s.length;i++){const a=s[i];o&&(a.oldValue=o[i].value);let c=a.dir[r];c&&(Pt(),at(c,n,8,[e.el,a,e,t]),Mt())}}const Hl=Symbol("_vte"),Dl=e=>e.__isTeleport,Qn=e=>e&&(e.disabled||e.disabled===""),Zi=e=>e&&(e.defer||e.defer===""),Yi=e=>typeof SVGElement<"u"&&e instanceof SVGElement,Ji=e=>typeof MathMLElement=="function"&&e instanceof MathMLElement,bo=(e,t)=>{const n=e&&e.to;return Se(n)?t?t(n):null:n},Vl={name:"Teleport",__isTeleport:!0,process(e,t,n,r,s,o,i,a,c,u){const{mc:l,pc:f,pbc:d,o:{insert:m,querySelector:h,createText:p,createComment:g}}=u,v=Qn(t.props);let{shapeFlag:b,children:S,dynamicChildren:E}=t;if(e==null){const x=t.el=p(""),T=t.anchor=p("");m(x,n,r),m(T,n,r);const P=(A,R)=>{b&16&&(s&&s.isCE&&(s.ce._teleportTarget=A),l(S,A,R,s,o,i,a,c))},L=()=>{const A=t.target=bo(t.props,h),R=Fl(A,t,p,m);A&&(i!=="svg"&&Yi(A)?i="svg":i!=="mathml"&&Ji(A)&&(i="mathml"),v||(P(A,R),Br(t,!1)))};v&&(P(n,T),Br(t,!0)),Zi(t.props)?(t.el.__isMounted=!1,Ne(()=>{L(),delete t.el.__isMounted},o)):L()}else{if(Zi(t.props)&&e.el.__isMounted===!1){Ne(()=>{Vl.process(e,t,n,r,s,o,i,a,c,u)},o);return}t.el=e.el,t.targetStart=e.targetStart;const x=t.anchor=e.anchor,T=t.target=e.target,P=t.targetAnchor=e.targetAnchor,L=Qn(e.props),A=L?n:T,R=L?x:P;if(i==="svg"||Yi(T)?i="svg":(i==="mathml"||Ji(T))&&(i="mathml"),E?(d(e.dynamicChildren,E,A,s,o,i,a),bi(e,t,!0)):c||f(e,t,A,R,s,o,i,a,!1),v)L?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):Dr(t,n,x,u,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const I=t.target=bo(t.props,h);I&&Dr(t,I,null,u,0)}else L&&Dr(t,T,P,u,1);Br(t,v)}},remove(e,t,n,{um:r,o:{remove:s}},o){const{shapeFlag:i,children:a,anchor:c,targetStart:u,targetAnchor:l,target:f,props:d}=e;if(f&&(s(u),s(l)),o&&s(c),i&16){const m=o||!Qn(d);for(let h=0;h<a.length;h++){const p=a[h];r(p,t,n,m,!!p.dynamicChildren)}}},move:Dr,hydrate:C1};function Dr(e,t,n,{o:{insert:r},m:s},o=2){o===0&&r(e.targetAnchor,t,n);const{el:i,anchor:a,shapeFlag:c,children:u,props:l}=e,f=o===2;if(f&&r(i,t,n),(!f||Qn(l))&&c&16)for(let d=0;d<u.length;d++)s(u[d],t,n,2);f&&r(a,t,n)}function C1(e,t,n,r,s,o,{o:{nextSibling:i,parentNode:a,querySelector:c,insert:u,createText:l}},f){const d=t.target=bo(t.props,c);if(d){const m=Qn(t.props),h=d._lpa||d.firstChild;if(t.shapeFlag&16)if(m)t.anchor=f(i(e),t,a(e),n,r,s,o),t.targetStart=h,t.targetAnchor=h&&i(h);else{t.anchor=i(e);let p=h;for(;p;){if(p&&p.nodeType===8){if(p.data==="teleport start anchor")t.targetStart=p;else if(p.data==="teleport anchor"){t.targetAnchor=p,d._lpa=t.targetAnchor&&i(t.targetAnchor);break}}p=i(p)}t.targetAnchor||Fl(d,t,l,u),f(h&&i(h),t,d,n,r,s,o)}Br(t,m)}return t.anchor&&i(t.anchor)}const i5=Vl;function Br(e,t){const n=e.ctx;if(n&&n.ut){let r,s;for(t?(r=e.el,s=e.anchor):(r=e.targetStart,s=e.targetAnchor);r&&r!==s;)r.nodeType===1&&r.setAttribute("data-v-owner",n.uid),r=r.nextSibling;n.ut()}}function Fl(e,t,n,r){const s=t.targetStart=n(""),o=t.targetAnchor=n("");return s[Hl]=o,e&&(r(s,e),r(o,e)),o}const Wt=Symbol("_leaveCb"),Vr=Symbol("_enterCb");function kl(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return pi(()=>{e.isMounted=!0}),Ar(()=>{e.isUnmounting=!0}),e}const _e=[Function,Array],Nl={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:_e,onEnter:_e,onAfterEnter:_e,onEnterCancelled:_e,onBeforeLeave:_e,onLeave:_e,onAfterLeave:_e,onLeaveCancelled:_e,onBeforeAppear:_e,onAppear:_e,onAfterAppear:_e,onAppearCancelled:_e},jl=e=>{const t=e.subTree;return t.component?jl(t.component):t},A1={name:"BaseTransition",props:Nl,setup(e,{slots:t}){const n=Vn(),r=kl();return()=>{const s=t.default&&ui(t.default(),!0);if(!s||!s.length)return;const o=$l(s),i=se(e),{mode:a}=i;if(r.isLeaving)return zs(o);const c=Xi(o);if(!c)return zs(o);let u=lr(c,i,r,n,f=>u=f);c.type!==Pe&&gn(c,u);let l=n.subTree&&Xi(n.subTree);if(l&&l.type!==Pe&&!ln(c,l)&&jl(n).type!==Pe){let f=lr(l,i,r,n);if(gn(l,f),a==="out-in"&&c.type!==Pe)return r.isLeaving=!0,f.afterLeave=()=>{r.isLeaving=!1,n.job.flags&8||n.update(),delete f.afterLeave,l=void 0},zs(o);a==="in-out"&&c.type!==Pe?f.delayLeave=(d,m,h)=>{const p=Bl(r,l);p[String(l.key)]=l,d[Wt]=()=>{m(),d[Wt]=void 0,delete u.delayedLeave,l=void 0},u.delayedLeave=()=>{h(),delete u.delayedLeave,l=void 0}}:l=void 0}else l&&(l=void 0);return o}}};function $l(e){let t=e[0];if(e.length>1){for(const n of e)if(n.type!==Pe){t=n;break}}return t}const E1=A1;function Bl(e,t){const{leavingVNodes:n}=e;let r=n.get(t.type);return r||(r=Object.create(null),n.set(t.type,r)),r}function lr(e,t,n,r,s){const{appear:o,mode:i,persisted:a=!1,onBeforeEnter:c,onEnter:u,onAfterEnter:l,onEnterCancelled:f,onBeforeLeave:d,onLeave:m,onAfterLeave:h,onLeaveCancelled:p,onBeforeAppear:g,onAppear:v,onAfterAppear:b,onAppearCancelled:S}=t,E=String(e.key),x=Bl(n,e),T=(A,R)=>{A&&at(A,r,9,R)},P=(A,R)=>{const I=R[1];T(A,R),Q(A)?A.every(O=>O.length<=1)&&I():A.length<=1&&I()},L={mode:i,persisted:a,beforeEnter(A){let R=c;if(!n.isMounted)if(o)R=g||c;else return;A[Wt]&&A[Wt](!0);const I=x[E];I&&ln(e,I)&&I.el[Wt]&&I.el[Wt](),T(R,[A])},enter(A){let R=u,I=l,O=f;if(!n.isMounted)if(o)R=v||u,I=b||l,O=S||f;else return;let k=!1;const X=A[Vr]=re=>{k||(k=!0,re?T(O,[A]):T(I,[A]),L.delayedLeave&&L.delayedLeave(),A[Vr]=void 0)};R?P(R,[A,X]):X()},leave(A,R){const I=String(e.key);if(A[Vr]&&A[Vr](!0),n.isUnmounting)return R();T(d,[A]);let O=!1;const k=A[Wt]=X=>{O||(O=!0,R(),X?T(p,[A]):T(h,[A]),A[Wt]=void 0,x[I]===e&&delete x[I])};x[I]=e,m?P(m,[A,k]):k()},clone(A){const R=lr(A,t,n,r,s);return s&&s(R),R}};return L}function zs(e){if(Cr(e))return e=Xt(e),e.children=null,e}function Xi(e){if(!Cr(e))return Dl(e.type)&&e.children?$l(e.children):e;if(e.component)return e.component.subTree;const{shapeFlag:t,children:n}=e;if(n){if(t&16)return n[0];if(t&32&&_(n.default))return n.default()}}function gn(e,t){e.shapeFlag&6&&e.component?(e.transition=t,gn(e.component.subTree,t)):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function ui(e,t=!1,n){let r=[],s=0;for(let o=0;o<e.length;o++){let i=e[o];const a=n==null?i.key:String(n)+String(i.key!=null?i.key:o);i.type===He?(i.patchFlag&128&&s++,r=r.concat(ui(i.children,t,a))):(t||i.type!==Pe)&&r.push(a!=null?Xt(i,{key:a}):i)}if(s>1)for(let o=0;o<r.length;o++)r[o].patchFlag=-2;return r}/*! #__NO_SIDE_EFFECTS__ */function Es(e,t){return _(e)?Re({name:e.name},t,{setup:e}):e}function L1(){const e=Vn();return e?(e.appContext.config.idPrefix||"v")+"-"+e.ids[0]+e.ids[1]++:""}function fi(e){e.ids=[e.ids[0]+e.ids[2]+++"-",0,0]}function _n(e,t,n,r,s=!1){if(Q(e)){e.forEach((h,p)=>_n(h,t&&(Q(t)?t[p]:t),n,r,s));return}if(Rn(r)&&!s){r.shapeFlag&512&&r.type.__asyncResolved&&r.component.subTree.component&&_n(e,t,n,r.component.subTree);return}const o=r.shapeFlag&4?xs(r.component):r.el,i=s?null:o,{i:a,r:c}=e,u=t&&t.r,l=a.refs===he?a.refs={}:a.refs,f=a.setupState,d=se(f),m=f===he?()=>!1:h=>le(d,h);if(u!=null&&u!==c&&(Se(u)?(l[u]=null,m(u)&&(f[u]=null)):be(u)&&(u.value=null)),_(c))br(c,a,12,[i,l]);else{const h=Se(c),p=be(c);if(h||p){const g=()=>{if(e.f){const v=h?m(c)?f[c]:l[c]:c.value;s?Q(v)&&Qo(v,o):Q(v)?v.includes(o)||v.push(o):h?(l[c]=[o],m(c)&&(f[c]=l[c])):(c.value=[o],e.k&&(l[e.k]=c.value))}else h?(l[c]=i,m(c)&&(f[c]=i)):p&&(c.value=i,e.k&&(l[e.k]=i))};i?(g.id=-1,Ne(g,n)):g()}}}const Qi=e=>e.nodeType===8;bs().requestIdleCallback;bs().cancelIdleCallback;function w1(e,t){if(Qi(e)&&e.data==="["){let n=1,r=e.nextSibling;for(;r;){if(r.nodeType===1){if(t(r)===!1)break}else if(Qi(r))if(r.data==="]"){if(--n===0)break}else r.data==="["&&n++;r=r.nextSibling}}else t(e)}const Rn=e=>!!e.type.__asyncLoader;/*! #__NO_SIDE_EFFECTS__ */function a5(e){_(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:r,delay:s=200,hydrate:o,timeout:i,suspensible:a=!0,onError:c}=e;let u=null,l,f=0;const d=()=>(f++,u=null,m()),m=()=>{let h;return u||(h=u=t().catch(p=>{if(p=p instanceof Error?p:new Error(String(p)),c)return new Promise((g,v)=>{c(p,()=>g(d()),()=>v(p),f+1)});throw p}).then(p=>h!==u&&u?u:(p&&(p.__esModule||p[Symbol.toStringTag]==="Module")&&(p=p.default),l=p,p)))};return Es({name:"AsyncComponentWrapper",__asyncLoader:m,__asyncHydrate(h,p,g){const v=o?()=>{const S=o(()=>{g()},E=>w1(h,E));S&&(p.bum||(p.bum=[])).push(S),(p.u||(p.u=[])).push(()=>!0)}:g;l?v():m().then(()=>!p.isUnmounted&&v())},get __asyncResolved(){return l},setup(){const h=Te;if(fi(h),l)return()=>Zs(l,h);const p=S=>{u=null,Sr(S,h,13,!r)};if(a&&h.suspense||Pn)return m().then(S=>()=>Zs(S,h)).catch(S=>(p(S),()=>r?ge(r,{error:S}):null));const g=Fe(!1),v=Fe(),b=Fe(!!s);return s&&setTimeout(()=>{b.value=!1},s),i!=null&&setTimeout(()=>{if(!g.value&&!v.value){const S=new Error(`Async component timed out after ${i}ms.`);p(S),v.value=S}},i),m().then(()=>{g.value=!0,h.parent&&Cr(h.parent.vnode)&&h.parent.update()}).catch(S=>{p(S),v.value=S}),()=>{if(g.value&&l)return Zs(l,h);if(v.value&&r)return ge(r,{error:v.value});if(n&&!b.value)return ge(n)}}})}function Zs(e,t){const{ref:n,props:r,children:s,ce:o}=t.vnode,i=ge(e,r,s);return i.ref=n,i.ce=o,delete t.vnode.ce,i}const Cr=e=>e.type.__isKeepAlive;function di(e,t){Ul(e,"a",t)}function hi(e,t){Ul(e,"da",t)}function Ul(e,t,n=Te){const r=e.__wdc||(e.__wdc=()=>{let s=n;for(;s;){if(s.isDeactivated)return;s=s.parent}return e()});if(Ls(t,r,n),n){let s=n.parent;for(;s&&s.parent;)Cr(s.parent.vnode)&&T1(r,t,n,s),s=s.parent}}function T1(e,t,n,r){const s=Ls(t,e,r,!0);Gl(()=>{Qo(r[t],s)},n)}function Ls(e,t,n=Te,r=!1){if(n){const s=n[e]||(n[e]=[]),o=t.__weh||(t.__weh=(...i)=>{Pt();const a=Lr(n),c=at(t,n,e,i);return a(),Mt(),c});return r?s.unshift(o):s.push(o),o}}const Ht=e=>(t,n=Te)=>{(!Pn||e==="sp")&&Ls(e,(...r)=>t(...r),n)},x1=Ht("bm"),pi=Ht("m"),R1=Ht("bu"),Wl=Ht("u"),Ar=Ht("bum"),Gl=Ht("um"),O1=Ht("sp"),P1=Ht("rtg"),M1=Ht("rtc");function I1(e,t=Te){Ls("ec",e,t)}const mi="components",H1="directives";function D1(e,t){return gi(mi,e,!0,t)||e}const Kl=Symbol.for("v-ndc");function c5(e){return Se(e)?gi(mi,e,!1)||e:e||Kl}function l5(e){return gi(H1,e)}function gi(e,t,n=!0,r=!1){const s=xe||Te;if(s){const o=s.type;if(e===mi){const a=Sh(o,!1);if(a&&(a===t||a===Qe(t)||a===vr(Qe(t))))return o}const i=_i(s[e]||o[e],t)||_i(s.appContext[e],t);return!i&&r?o:i}}function _i(e,t){return e&&(e[t]||e[Qe(t)]||e[vr(Qe(t))])}function u5(e,t,n,r){let s;const o=n,i=Q(e);if(i||Se(e)){const a=i&&Yt(e);let c=!1,u=!1;a&&(c=!et(e),u=Jt(e),e=Cs(e)),s=new Array(e.length);for(let l=0,f=e.length;l<f;l++)s[l]=t(c?u?_r(Oe(e[l])):Oe(e[l]):e[l],l,void 0,o)}else if(typeof e=="number"){s=new Array(e);for(let a=0;a<e;a++)s[a]=t(a+1,a,void 0,o)}else if(ve(e))if(e[Symbol.iterator])s=Array.from(e,(a,c)=>t(a,c,void 0,o));else{const a=Object.keys(e);s=new Array(a.length);for(let c=0,u=a.length;c<u;c++){const l=a[c];s[c]=t(e[l],l,c,o)}}else s=[];return s}function f5(e,t){for(let n=0;n<t.length;n++){const r=t[n];if(Q(r))for(let s=0;s<r.length;s++)e[r[s].name]=r[s].fn;else r&&(e[r.name]=r.key?(...s)=>{const o=r.fn(...s);return o&&(o.key=r.key),o}:r.fn)}return e}function d5(e,t,n={},r,s){if(xe.ce||xe.parent&&Rn(xe.parent)&&xe.parent.ce)return t!=="default"&&(n.name=t),rs(),ss(He,null,[ge("slot",n,r)],64);let o=e[t];o&&o._c&&(o._d=!1),rs();const i=o&&zl(o(n)),a=n.key||i&&i.key,c=ss(He,{key:(a&&!It(a)?a:`_${t}`)+""},i||[],i&&e._===1?64:-2);return!s&&c.scopeId&&(c.slotScopeIds=[c.scopeId+"-s"]),o&&o._c&&(o._d=!0),c}function zl(e){return e.some(t=>On(t)?!(t.type===Pe||t.type===He&&!zl(t.children)):!0)?e:null}const So=e=>e?du(e)?xs(e):So(e.parent):null,qn=Re(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>So(e.parent),$root:e=>So(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>Yl(e),$forceUpdate:e=>e.f||(e.f=()=>{li(e.update)}),$nextTick:e=>e.n||(e.n=As.bind(e.proxy)),$watch:e=>th.bind(e)}),Ys=(e,t)=>e!==he&&!e.__isScriptSetup&&le(e,t),V1={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:r,data:s,props:o,accessCache:i,type:a,appContext:c}=e;let u;if(t[0]!=="$"){const m=i[t];if(m!==void 0)switch(m){case 1:return r[t];case 2:return s[t];case 4:return n[t];case 3:return o[t]}else{if(Ys(r,t))return i[t]=1,r[t];if(s!==he&&le(s,t))return i[t]=2,s[t];if((u=e.propsOptions[0])&&le(u,t))return i[t]=3,o[t];if(n!==he&&le(n,t))return i[t]=4,n[t];Co&&(i[t]=0)}}const l=qn[t];let f,d;if(l)return t==="$attrs"&&Ie(e.attrs,"get",""),l(e);if((f=a.__cssModules)&&(f=f[t]))return f;if(n!==he&&le(n,t))return i[t]=4,n[t];if(d=c.config.globalProperties,le(d,t))return d[t]},set({_:e},t,n){const{data:r,setupState:s,ctx:o}=e;return Ys(s,t)?(s[t]=n,!0):r!==he&&le(r,t)?(r[t]=n,!0):le(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(o[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:s,propsOptions:o}},i){let a;return!!n[i]||e!==he&&le(e,i)||Ys(t,i)||(a=o[0])&&le(a,i)||le(r,i)||le(qn,i)||le(s.config.globalProperties,i)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:le(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function qi(e){return Q(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let Co=!0;function F1(e){const t=Yl(e),n=e.proxy,r=e.ctx;Co=!1,t.beforeCreate&&ea(t.beforeCreate,e,"bc");const{data:s,computed:o,methods:i,watch:a,provide:c,inject:u,created:l,beforeMount:f,mounted:d,beforeUpdate:m,updated:h,activated:p,deactivated:g,beforeDestroy:v,beforeUnmount:b,destroyed:S,unmounted:E,render:x,renderTracked:T,renderTriggered:P,errorCaptured:L,serverPrefetch:A,expose:R,inheritAttrs:I,components:O,directives:k,filters:X}=t;if(u&&k1(u,r,null),i)for(const K in i){const Z=i[K];_(Z)&&(r[K]=Z.bind(n))}if(s){const K=s.call(n,n);ve(K)&&(e.data=Ge(K))}if(Co=!0,o)for(const K in o){const Z=o[K],fe=_(Z)?Z.bind(n,n):_(Z.get)?Z.get.bind(n,n):Ct,ae=!_(Z)&&_(Z.set)?Z.set.bind(n):Ct,Le=ie({get:fe,set:ae});Object.defineProperty(r,K,{enumerable:!0,configurable:!0,get:()=>Le.value,set:ye=>Le.value=ye})}if(a)for(const K in a)Zl(a[K],r,n,K);if(c){const K=_(c)?c.call(n):c;Reflect.ownKeys(K).forEach(Z=>{Ot(Z,K[Z])})}l&&ea(l,e,"c");function ee(K,Z){Q(Z)?Z.forEach(fe=>K(fe.bind(n))):Z&&K(Z.bind(n))}if(ee(x1,f),ee(pi,d),ee(R1,m),ee(Wl,h),ee(di,p),ee(hi,g),ee(I1,L),ee(M1,T),ee(P1,P),ee(Ar,b),ee(Gl,E),ee(O1,A),Q(R))if(R.length){const K=e.exposed||(e.exposed={});R.forEach(Z=>{Object.defineProperty(K,Z,{get:()=>n[Z],set:fe=>n[Z]=fe})})}else e.exposed||(e.exposed={});x&&e.render===Ct&&(e.render=x),I!=null&&(e.inheritAttrs=I),O&&(e.components=O),k&&(e.directives=k),A&&fi(e)}function k1(e,t,n=Ct){Q(e)&&(e=Ao(e));for(const r in e){const s=e[r];let o;ve(s)?"default"in s?o=Ce(s.from||r,s.default,!0):o=Ce(s.from||r):o=Ce(s),be(o)?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>o.value,set:i=>o.value=i}):t[r]=o}}function ea(e,t,n){at(Q(e)?e.map(r=>r.bind(t.proxy)):e.bind(t.proxy),t,n)}function Zl(e,t,n,r){let s=r.includes(".")?iu(n,r):()=>n[r];if(Se(e)){const o=t[e];_(o)&&tt(s,o)}else if(_(e))tt(s,e.bind(n));else if(ve(e))if(Q(e))e.forEach(o=>Zl(o,t,n,r));else{const o=_(e.handler)?e.handler.bind(n):t[e.handler];_(o)&&tt(s,o,e)}}function Yl(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:s,optionsCache:o,config:{optionMergeStrategies:i}}=e.appContext,a=o.get(t);let c;return a?c=a:!s.length&&!n&&!r?c=t:(c={},s.length&&s.forEach(u=>ns(c,u,i,!0)),ns(c,t,i)),ve(t)&&o.set(t,c),c}function ns(e,t,n,r=!1){const{mixins:s,extends:o}=t;o&&ns(e,o,n,!0),s&&s.forEach(i=>ns(e,i,n,!0));for(const i in t)if(!(r&&i==="expose")){const a=N1[i]||n&&n[i];e[i]=a?a(e[i],t[i]):t[i]}return e}const N1={data:ta,props:na,emits:na,methods:zn,computed:zn,beforeCreate:ke,created:ke,beforeMount:ke,mounted:ke,beforeUpdate:ke,updated:ke,beforeDestroy:ke,beforeUnmount:ke,destroyed:ke,unmounted:ke,activated:ke,deactivated:ke,errorCaptured:ke,serverPrefetch:ke,components:zn,directives:zn,watch:$1,provide:ta,inject:j1};function ta(e,t){return t?e?function(){return Re(_(e)?e.call(this,this):e,_(t)?t.call(this,this):t)}:t:e}function j1(e,t){return zn(Ao(e),Ao(t))}function Ao(e){if(Q(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function ke(e,t){return e?[...new Set([].concat(e,t))]:t}function zn(e,t){return e?Re(Object.create(null),e,t):t}function na(e,t){return e?Q(e)&&Q(t)?[...new Set([...e,...t])]:Re(Object.create(null),qi(e),qi(t??{})):t}function $1(e,t){if(!e)return t;if(!t)return e;const n=Re(Object.create(null),e);for(const r in t)n[r]=ke(e[r],t[r]);return n}function Jl(){return{app:null,config:{isNativeTag:Md,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let B1=0;function U1(e,t){return function(r,s=null){_(r)||(r=Re({},r)),s!=null&&!ve(s)&&(s=null);const o=Jl(),i=new WeakSet,a=[];let c=!1;const u=o.app={_uid:B1++,_component:r,_props:s,_container:null,_context:o,_instance:null,version:Ah,get config(){return o.config},set config(l){},use(l,...f){return i.has(l)||(l&&_(l.install)?(i.add(l),l.install(u,...f)):_(l)&&(i.add(l),l(u,...f))),u},mixin(l){return o.mixins.includes(l)||o.mixins.push(l),u},component(l,f){return f?(o.components[l]=f,u):o.components[l]},directive(l,f){return f?(o.directives[l]=f,u):o.directives[l]},mount(l,f,d){if(!c){const m=u._ceVNode||ge(r,s);return m.appContext=o,d===!0?d="svg":d===!1&&(d=void 0),e(m,l,d),c=!0,u._container=l,l.__vue_app__=u,xs(m.component)}},onUnmount(l){a.push(l)},unmount(){c&&(at(a,u._instance,16),e(null,u._container),delete u._container.__vue_app__)},provide(l,f){return o.provides[l]=f,u},runWithContext(l){const f=dn;dn=u;try{return l()}finally{dn=f}}};return u}}let dn=null;function Ot(e,t){if(Te){let n=Te.provides;const r=Te.parent&&Te.parent.provides;r===n&&(n=Te.provides=Object.create(r)),n[e]=t}}function Ce(e,t,n=!1){const r=Te||xe;if(r||dn){let s=dn?dn._context.provides:r?r.parent==null||r.ce?r.vnode.appContext&&r.vnode.appContext.provides:r.parent.provides:void 0;if(s&&e in s)return s[e];if(arguments.length>1)return n&&_(t)?t.call(r&&r.proxy):t}}function Xl(){return!!(Te||xe||dn)}const Ql={},_l=()=>Object.create(Ql),ql=e=>Object.getPrototypeOf(e)===Ql;function W1(e,t,n,r=!1){const s={},o=_l();e.propsDefaults=Object.create(null),eu(e,t,s,o);for(const i in e.propsOptions[0])i in s||(s[i]=void 0);n?e.props=r?s:Cl(s):e.type.props?e.props=s:e.props=o,e.attrs=o}function G1(e,t,n,r){const{props:s,attrs:o,vnode:{patchFlag:i}}=e,a=se(s),[c]=e.propsOptions;let u=!1;if((r||i>0)&&!(i&16)){if(i&8){const l=e.vnode.dynamicProps;for(let f=0;f<l.length;f++){let d=l[f];if(ws(e.emitsOptions,d))continue;const m=t[d];if(c)if(le(o,d))m!==o[d]&&(o[d]=m,u=!0);else{const h=Qe(d);s[h]=Eo(c,a,h,m,e,!1)}else m!==o[d]&&(o[d]=m,u=!0)}}}else{eu(e,t,s,o)&&(u=!0);let l;for(const f in a)(!t||!le(t,f)&&((l=Qt(f))===f||!le(t,l)))&&(c?n&&(n[f]!==void 0||n[l]!==void 0)&&(s[f]=Eo(c,a,f,void 0,e,!0)):delete s[f]);if(o!==a)for(const f in o)(!t||!le(t,f))&&(delete o[f],u=!0)}u&&Tt(e.attrs,"set","")}function eu(e,t,n,r){const[s,o]=e.propsOptions;let i=!1,a;if(t)for(let c in t){if(Yn(c))continue;const u=t[c];let l;s&&le(s,l=Qe(c))?!o||!o.includes(l)?n[l]=u:(a||(a={}))[l]=u:ws(e.emitsOptions,c)||(!(c in r)||u!==r[c])&&(r[c]=u,i=!0)}if(o){const c=se(n),u=a||he;for(let l=0;l<o.length;l++){const f=o[l];n[f]=Eo(s,c,f,u[f],e,!le(u,f))}}return i}function Eo(e,t,n,r,s,o){const i=e[n];if(i!=null){const a=le(i,"default");if(a&&r===void 0){const c=i.default;if(i.type!==Function&&!i.skipFactory&&_(c)){const{propsDefaults:u}=s;if(n in u)r=u[n];else{const l=Lr(s);r=u[n]=c.call(null,t),l()}}else r=c;s.ce&&s.ce._setProp(n,r)}i[0]&&(o&&!a?r=!1:i[1]&&(r===""||r===Qt(n))&&(r=!0))}return r}const K1=new WeakMap;function tu(e,t,n=!1){const r=n?K1:t.propsCache,s=r.get(e);if(s)return s;const o=e.props,i={},a=[];let c=!1;if(!_(e)){const l=f=>{c=!0;const[d,m]=tu(f,t,!0);Re(i,d),m&&a.push(...m)};!n&&t.mixins.length&&t.mixins.forEach(l),e.extends&&l(e.extends),e.mixins&&e.mixins.forEach(l)}if(!o&&!c)return ve(e)&&r.set(e,wn),wn;if(Q(o))for(let l=0;l<o.length;l++){const f=Qe(o[l]);ra(f)&&(i[f]=he)}else if(o)for(const l in o){const f=Qe(l);if(ra(f)){const d=o[l],m=i[f]=Q(d)||_(d)?{type:d}:Re({},d),h=m.type;let p=!1,g=!0;if(Q(h))for(let v=0;v<h.length;++v){const b=h[v],S=_(b)&&b.name;if(S==="Boolean"){p=!0;break}else S==="String"&&(g=!1)}else p=_(h)&&h.name==="Boolean";m[0]=p,m[1]=g,(p||le(m,"default"))&&a.push(f)}}const u=[i,a];return ve(e)&&r.set(e,u),u}function ra(e){return e[0]!=="$"&&!Yn(e)}const vi=e=>e[0]==="_"||e==="$stable",yi=e=>Q(e)?e.map(St):[St(e)],z1=(e,t,n)=>{if(t._n)return t;const r=Il((...s)=>yi(t(...s)),n);return r._c=!1,r},nu=(e,t,n)=>{const r=e._ctx;for(const s in e){if(vi(s))continue;const o=e[s];if(_(o))t[s]=z1(s,o,r);else if(o!=null){const i=yi(o);t[s]=()=>i}}},ru=(e,t)=>{const n=yi(t);e.slots.default=()=>n},su=(e,t,n)=>{for(const r in t)(n||!vi(r))&&(e[r]=t[r])},Z1=(e,t,n)=>{const r=e.slots=_l();if(e.vnode.shapeFlag&32){const s=t.__;s&&mo(r,"__",s,!0);const o=t._;o?(su(r,t,n),n&&mo(r,"_",o,!0)):nu(t,r)}else t&&ru(e,t)},Y1=(e,t,n)=>{const{vnode:r,slots:s}=e;let o=!0,i=he;if(r.shapeFlag&32){const a=t._;a?n&&a===1?o=!1:su(s,t,n):(o=!t.$stable,nu(t,s)),i=t}else t&&(ru(e,t),i={default:1});if(o)for(const a in s)!vi(a)&&i[a]==null&&delete s[a]},Ne=ch;function J1(e){return X1(e)}function X1(e,t){const n=bs();n.__VUE__=!0;const{insert:r,remove:s,patchProp:o,createElement:i,createText:a,createComment:c,setText:u,setElementText:l,parentNode:f,nextSibling:d,setScopeId:m=Ct,insertStaticContent:h}=e,p=(y,C,w,D=null,F=null,V=null,W=void 0,$=null,j=!!C.dynamicChildren)=>{if(y===C)return;y&&!ln(y,C)&&(D=H(y),ye(y,F,V,!0),y=null),C.patchFlag===-2&&(j=!1,C.dynamicChildren=null);const{type:N,ref:J,shapeFlag:G}=C;switch(N){case Ts:g(y,C,w,D);break;case Pe:v(y,C,w,D);break;case Ur:y==null&&b(C,w,D,W);break;case He:O(y,C,w,D,F,V,W,$,j);break;default:G&1?x(y,C,w,D,F,V,W,$,j):G&6?k(y,C,w,D,F,V,W,$,j):(G&64||G&128)&&N.process(y,C,w,D,F,V,W,$,j,z)}J!=null&&F?_n(J,y&&y.ref,V,C||y,!C):J==null&&y&&y.ref!=null&&_n(y.ref,null,V,y,!0)},g=(y,C,w,D)=>{if(y==null)r(C.el=a(C.children),w,D);else{const F=C.el=y.el;C.children!==y.children&&u(F,C.children)}},v=(y,C,w,D)=>{y==null?r(C.el=c(C.children||""),w,D):C.el=y.el},b=(y,C,w,D)=>{[y.el,y.anchor]=h(y.children,C,w,D,y.el,y.anchor)},S=({el:y,anchor:C},w,D)=>{let F;for(;y&&y!==C;)F=d(y),r(y,w,D),y=F;r(C,w,D)},E=({el:y,anchor:C})=>{let w;for(;y&&y!==C;)w=d(y),s(y),y=w;s(C)},x=(y,C,w,D,F,V,W,$,j)=>{C.type==="svg"?W="svg":C.type==="math"&&(W="mathml"),y==null?T(C,w,D,F,V,W,$,j):A(y,C,F,V,W,$,j)},T=(y,C,w,D,F,V,W,$)=>{let j,N;const{props:J,shapeFlag:G,transition:Y,dirs:q}=y;if(j=y.el=i(y.type,V,J&&J.is,J),G&8?l(j,y.children):G&16&&L(y.children,j,null,D,F,Js(y,V),W,$),q&&en(y,null,D,"created"),P(j,y,y.scopeId,W,D),J){for(const pe in J)pe!=="value"&&!Yn(pe)&&o(j,pe,null,J[pe],V,D);"value"in J&&o(j,"value",null,J.value,V),(N=J.onVnodeBeforeMount)&&mt(N,D,y)}q&&en(y,null,D,"beforeMount");const oe=Q1(F,Y);oe&&Y.beforeEnter(j),r(j,C,w),((N=J&&J.onVnodeMounted)||oe||q)&&Ne(()=>{N&&mt(N,D,y),oe&&Y.enter(j),q&&en(y,null,D,"mounted")},F)},P=(y,C,w,D,F)=>{if(w&&m(y,w),D)for(let V=0;V<D.length;V++)m(y,D[V]);if(F){let V=F.subTree;if(C===V||cu(V.type)&&(V.ssContent===C||V.ssFallback===C)){const W=F.vnode;P(y,W,W.scopeId,W.slotScopeIds,F.parent)}}},L=(y,C,w,D,F,V,W,$,j=0)=>{for(let N=j;N<y.length;N++){const J=y[N]=$?Gt(y[N]):St(y[N]);p(null,J,C,w,D,F,V,W,$)}},A=(y,C,w,D,F,V,W)=>{const $=C.el=y.el;let{patchFlag:j,dynamicChildren:N,dirs:J}=C;j|=y.patchFlag&16;const G=y.props||he,Y=C.props||he;let q;if(w&&tn(w,!1),(q=Y.onVnodeBeforeUpdate)&&mt(q,w,C,y),J&&en(C,y,w,"beforeUpdate"),w&&tn(w,!0),(G.innerHTML&&Y.innerHTML==null||G.textContent&&Y.textContent==null)&&l($,""),N?R(y.dynamicChildren,N,$,w,D,Js(C,F),V):W||Z(y,C,$,null,w,D,Js(C,F),V,!1),j>0){if(j&16)I($,G,Y,w,F);else if(j&2&&G.class!==Y.class&&o($,"class",null,Y.class,F),j&4&&o($,"style",G.style,Y.style,F),j&8){const oe=C.dynamicProps;for(let pe=0;pe<oe.length;pe++){const ue=oe[pe],Be=G[ue],Ue=Y[ue];(Ue!==Be||ue==="value")&&o($,ue,Be,Ue,F,w)}}j&1&&y.children!==C.children&&l($,C.children)}else!W&&N==null&&I($,G,Y,w,F);((q=Y.onVnodeUpdated)||J)&&Ne(()=>{q&&mt(q,w,C,y),J&&en(C,y,w,"updated")},D)},R=(y,C,w,D,F,V,W)=>{for(let $=0;$<C.length;$++){const j=y[$],N=C[$],J=j.el&&(j.type===He||!ln(j,N)||j.shapeFlag&198)?f(j.el):w;p(j,N,J,null,D,F,V,W,!0)}},I=(y,C,w,D,F)=>{if(C!==w){if(C!==he)for(const V in C)!Yn(V)&&!(V in w)&&o(y,V,C[V],null,F,D);for(const V in w){if(Yn(V))continue;const W=w[V],$=C[V];W!==$&&V!=="value"&&o(y,V,$,W,F,D)}"value"in w&&o(y,"value",C.value,w.value,F)}},O=(y,C,w,D,F,V,W,$,j)=>{const N=C.el=y?y.el:a(""),J=C.anchor=y?y.anchor:a("");let{patchFlag:G,dynamicChildren:Y,slotScopeIds:q}=C;q&&($=$?$.concat(q):q),y==null?(r(N,w,D),r(J,w,D),L(C.children||[],w,J,F,V,W,$,j)):G>0&&G&64&&Y&&y.dynamicChildren?(R(y.dynamicChildren,Y,w,F,V,W,$),(C.key!=null||F&&C===F.subTree)&&bi(y,C,!0)):Z(y,C,w,J,F,V,W,$,j)},k=(y,C,w,D,F,V,W,$,j)=>{C.slotScopeIds=$,y==null?C.shapeFlag&512?F.ctx.activate(C,w,D,W,j):X(C,w,D,F,V,W,j):re(y,C,j)},X=(y,C,w,D,F,V,W)=>{const $=y.component=mh(y,D,F);if(Cr(y)&&($.ctx.renderer=z),gh($,!1,W),$.asyncDep){if(F&&F.registerDep($,ee,W),!y.el){const j=$.subTree=ge(Pe);v(null,j,C,w)}}else ee($,y,C,w,F,V,W)},re=(y,C,w)=>{const D=C.component=y.component;if(ih(y,C,w))if(D.asyncDep&&!D.asyncResolved){K(D,C,w);return}else D.next=C,D.update();else C.el=y.el,D.vnode=C},ee=(y,C,w,D,F,V,W)=>{const $=()=>{if(y.isMounted){let{next:G,bu:Y,u:q,parent:oe,vnode:pe}=y;{const ht=ou(y);if(ht){G&&(G.el=pe.el,K(y,G,W)),ht.asyncDep.then(()=>{y.isUnmounted||$()});return}}let ue=G,Be;tn(y,!1),G?(G.el=pe.el,K(y,G,W)):G=pe,Y&&Bs(Y),(Be=G.props&&G.props.onVnodeBeforeUpdate)&&mt(Be,oe,G,pe),tn(y,!0);const Ue=oa(y),dt=y.subTree;y.subTree=Ue,p(dt,Ue,f(dt.el),H(dt),y,F,V),G.el=Ue.el,ue===null&&ah(y,Ue.el),q&&Ne(q,F),(Be=G.props&&G.props.onVnodeUpdated)&&Ne(()=>mt(Be,oe,G,pe),F)}else{let G;const{el:Y,props:q}=C,{bm:oe,m:pe,parent:ue,root:Be,type:Ue}=y,dt=Rn(C);tn(y,!1),oe&&Bs(oe),!dt&&(G=q&&q.onVnodeBeforeMount)&&mt(G,ue,C),tn(y,!0);{Be.ce&&Be.ce._def.shadowRoot!==!1&&Be.ce._injectChildStyle(Ue);const ht=y.subTree=oa(y);p(null,ht,w,D,y,F,V),C.el=ht.el}if(pe&&Ne(pe,F),!dt&&(G=q&&q.onVnodeMounted)){const ht=C;Ne(()=>mt(G,ue,ht),F)}(C.shapeFlag&256||ue&&Rn(ue.vnode)&&ue.vnode.shapeFlag&256)&&y.a&&Ne(y.a,F),y.isMounted=!0,C=w=D=null}};y.scope.on();const j=y.effect=new al($);y.scope.off();const N=y.update=j.run.bind(j),J=y.job=j.runIfDirty.bind(j);J.i=y,J.id=y.uid,j.scheduler=()=>li(J),tn(y,!0),N()},K=(y,C,w)=>{C.component=y;const D=y.vnode.props;y.vnode=C,y.next=null,G1(y,C.props,D,w),Y1(y,C.children,w),Pt(),zi(y),Mt()},Z=(y,C,w,D,F,V,W,$,j=!1)=>{const N=y&&y.children,J=y?y.shapeFlag:0,G=C.children,{patchFlag:Y,shapeFlag:q}=C;if(Y>0){if(Y&128){ae(N,G,w,D,F,V,W,$,j);return}else if(Y&256){fe(N,G,w,D,F,V,W,$,j);return}}q&8?(J&16&&$e(N,F,V),G!==N&&l(w,G)):J&16?q&16?ae(N,G,w,D,F,V,W,$,j):$e(N,F,V,!0):(J&8&&l(w,""),q&16&&L(G,w,D,F,V,W,$,j))},fe=(y,C,w,D,F,V,W,$,j)=>{y=y||wn,C=C||wn;const N=y.length,J=C.length,G=Math.min(N,J);let Y;for(Y=0;Y<G;Y++){const q=C[Y]=j?Gt(C[Y]):St(C[Y]);p(y[Y],q,w,null,F,V,W,$,j)}N>J?$e(y,F,V,!0,!1,G):L(C,w,D,F,V,W,$,j,G)},ae=(y,C,w,D,F,V,W,$,j)=>{let N=0;const J=C.length;let G=y.length-1,Y=J-1;for(;N<=G&&N<=Y;){const q=y[N],oe=C[N]=j?Gt(C[N]):St(C[N]);if(ln(q,oe))p(q,oe,w,null,F,V,W,$,j);else break;N++}for(;N<=G&&N<=Y;){const q=y[G],oe=C[Y]=j?Gt(C[Y]):St(C[Y]);if(ln(q,oe))p(q,oe,w,null,F,V,W,$,j);else break;G--,Y--}if(N>G){if(N<=Y){const q=Y+1,oe=q<J?C[q].el:D;for(;N<=Y;)p(null,C[N]=j?Gt(C[N]):St(C[N]),w,oe,F,V,W,$,j),N++}}else if(N>Y)for(;N<=G;)ye(y[N],F,V,!0),N++;else{const q=N,oe=N,pe=new Map;for(N=oe;N<=Y;N++){const Ye=C[N]=j?Gt(C[N]):St(C[N]);Ye.key!=null&&pe.set(Ye.key,N)}let ue,Be=0;const Ue=Y-oe+1;let dt=!1,ht=0;const Nn=new Array(Ue);for(N=0;N<Ue;N++)Nn[N]=0;for(N=q;N<=G;N++){const Ye=y[N];if(Be>=Ue){ye(Ye,F,V,!0);continue}let pt;if(Ye.key!=null)pt=pe.get(Ye.key);else for(ue=oe;ue<=Y;ue++)if(Nn[ue-oe]===0&&ln(Ye,C[ue])){pt=ue;break}pt===void 0?ye(Ye,F,V,!0):(Nn[pt-oe]=N+1,pt>=ht?ht=pt:dt=!0,p(Ye,C[pt],w,null,F,V,W,$,j),Be++)}const Vi=dt?_1(Nn):wn;for(ue=Vi.length-1,N=Ue-1;N>=0;N--){const Ye=oe+N,pt=C[Ye],Fi=Ye+1<J?C[Ye+1].el:D;Nn[N]===0?p(null,pt,w,Fi,F,V,W,$,j):dt&&(ue<0||N!==Vi[ue]?Le(pt,w,Fi,2):ue--)}}},Le=(y,C,w,D,F=null)=>{const{el:V,type:W,transition:$,children:j,shapeFlag:N}=y;if(N&6){Le(y.component.subTree,C,w,D);return}if(N&128){y.suspense.move(C,w,D);return}if(N&64){W.move(y,C,w,z);return}if(W===He){r(V,C,w);for(let G=0;G<j.length;G++)Le(j[G],C,w,D);r(y.anchor,C,w);return}if(W===Ur){S(y,C,w);return}if(D!==2&&N&1&&$)if(D===0)$.beforeEnter(V),r(V,C,w),Ne(()=>$.enter(V),F);else{const{leave:G,delayLeave:Y,afterLeave:q}=$,oe=()=>{y.ctx.isUnmounted?s(V):r(V,C,w)},pe=()=>{G(V,()=>{oe(),q&&q()})};Y?Y(V,oe,pe):pe()}else r(V,C,w)},ye=(y,C,w,D=!1,F=!1)=>{const{type:V,props:W,ref:$,children:j,dynamicChildren:N,shapeFlag:J,patchFlag:G,dirs:Y,cacheIndex:q}=y;if(G===-2&&(F=!1),$!=null&&(Pt(),_n($,null,w,y,!0),Mt()),q!=null&&(C.renderCache[q]=void 0),J&256){C.ctx.deactivate(y);return}const oe=J&1&&Y,pe=!Rn(y);let ue;if(pe&&(ue=W&&W.onVnodeBeforeUnmount)&&mt(ue,C,y),J&6)qt(y.component,w,D);else{if(J&128){y.suspense.unmount(w,D);return}oe&&en(y,null,C,"beforeUnmount"),J&64?y.type.remove(y,C,w,z,D):N&&!N.hasOnce&&(V!==He||G>0&&G&64)?$e(N,C,w,!1,!0):(V===He&&G&384||!F&&J&16)&&$e(j,C,w),D&&we(y)}(pe&&(ue=W&&W.onVnodeUnmounted)||oe)&&Ne(()=>{ue&&mt(ue,C,y),oe&&en(y,null,C,"unmounted")},w)},we=y=>{const{type:C,el:w,anchor:D,transition:F}=y;if(C===He){nt(w,D);return}if(C===Ur){E(y);return}const V=()=>{s(w),F&&!F.persisted&&F.afterLeave&&F.afterLeave()};if(y.shapeFlag&1&&F&&!F.persisted){const{leave:W,delayLeave:$}=F,j=()=>W(w,V);$?$(y.el,V,j):j()}else V()},nt=(y,C)=>{let w;for(;y!==C;)w=d(y),s(y),y=w;s(C)},qt=(y,C,w)=>{const{bum:D,scope:F,job:V,subTree:W,um:$,m:j,a:N,parent:J,slots:{__:G}}=y;sa(j),sa(N),D&&Bs(D),J&&Q(G)&&G.forEach(Y=>{J.renderCache[Y]=void 0}),F.stop(),V&&(V.flags|=8,ye(W,y,C,w)),$&&Ne($,C),Ne(()=>{y.isUnmounted=!0},C),C&&C.pendingBranch&&!C.isUnmounted&&y.asyncDep&&!y.asyncResolved&&y.suspenseId===C.pendingId&&(C.deps--,C.deps===0&&C.resolve())},$e=(y,C,w,D=!1,F=!1,V=0)=>{for(let W=V;W<y.length;W++)ye(y[W],C,w,D,F)},H=y=>{if(y.shapeFlag&6)return H(y.component.subTree);if(y.shapeFlag&128)return y.suspense.next();const C=d(y.anchor||y.el),w=C&&C[Hl];return w?d(w):C};let B=!1;const U=(y,C,w)=>{y==null?C._vnode&&ye(C._vnode,null,null,!0):p(C._vnode||null,y,C,null,null,null,w),C._vnode=y,B||(B=!0,zi(),Ol(),B=!1)},z={p,um:ye,m:Le,r:we,mt:X,mc:L,pc:Z,pbc:R,n:H,o:e};return{render:U,hydrate:void 0,createApp:U1(U)}}function Js({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function tn({effect:e,job:t},n){n?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function Q1(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function bi(e,t,n=!1){const r=e.children,s=t.children;if(Q(r)&&Q(s))for(let o=0;o<r.length;o++){const i=r[o];let a=s[o];a.shapeFlag&1&&!a.dynamicChildren&&((a.patchFlag<=0||a.patchFlag===32)&&(a=s[o]=Gt(s[o]),a.el=i.el),!n&&a.patchFlag!==-2&&bi(i,a)),a.type===Ts&&(a.el=i.el),a.type===Pe&&!a.el&&(a.el=i.el)}}function _1(e){const t=e.slice(),n=[0];let r,s,o,i,a;const c=e.length;for(r=0;r<c;r++){const u=e[r];if(u!==0){if(s=n[n.length-1],e[s]<u){t[r]=s,n.push(r);continue}for(o=0,i=n.length-1;o<i;)a=o+i>>1,e[n[a]]<u?o=a+1:i=a;u<e[n[o]]&&(o>0&&(t[r]=n[o-1]),n[o]=r)}}for(o=n.length,i=n[o-1];o-- >0;)n[o]=i,i=t[i];return n}function ou(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:ou(t)}function sa(e){if(e)for(let t=0;t<e.length;t++)e[t].flags|=8}const q1=Symbol.for("v-scx"),eh=()=>Ce(q1);function Er(e,t){return Si(e,null,t)}function tt(e,t,n){return Si(e,t,n)}function Si(e,t,n=he){const{immediate:r,deep:s,flush:o,once:i}=n,a=Re({},n),c=t&&r||!t&&o!=="post";let u;if(Pn){if(o==="sync"){const m=eh();u=m.__watcherHandles||(m.__watcherHandles=[])}else if(!c){const m=()=>{};return m.stop=Ct,m.resume=Ct,m.pause=Ct,m}}const l=Te;a.call=(m,h,p)=>at(m,l,h,p);let f=!1;o==="post"?a.scheduler=m=>{Ne(m,l&&l.suspense)}:o!=="sync"&&(f=!0,a.scheduler=(m,h)=>{h?m():li(m)}),a.augmentJob=m=>{t&&(m.flags|=4),f&&(m.flags|=2,l&&(m.id=l.uid,m.i=l))};const d=v1(e,t,a);return Pn&&(u?u.push(d):c&&d()),d}function th(e,t,n){const r=this.proxy,s=Se(e)?e.includes(".")?iu(r,e):()=>r[e]:e.bind(r,r);let o;_(t)?o=t:(o=t.handler,n=t);const i=Lr(this),a=Si(s,o.bind(r),n);return i(),a}function iu(e,t){const n=t.split(".");return()=>{let r=e;for(let s=0;s<n.length&&r;s++)r=r[n[s]];return r}}const nh=(e,t)=>t==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${Qe(t)}Modifiers`]||e[`${Qt(t)}Modifiers`];function rh(e,t,...n){if(e.isUnmounted)return;const r=e.vnode.props||he;let s=n;const o=t.startsWith("update:"),i=o&&nh(r,t.slice(7));i&&(i.trim&&(s=n.map(l=>Se(l)?l.trim():l)),i.number&&(s=n.map(Fd)));let a,c=r[a=$s(t)]||r[a=$s(Qe(t))];!c&&o&&(c=r[a=$s(Qt(t))]),c&&at(c,e,6,s);const u=r[a+"Once"];if(u){if(!e.emitted)e.emitted={};else if(e.emitted[a])return;e.emitted[a]=!0,at(u,e,6,s)}}function au(e,t,n=!1){const r=t.emitsCache,s=r.get(e);if(s!==void 0)return s;const o=e.emits;let i={},a=!1;if(!_(e)){const c=u=>{const l=au(u,t,!0);l&&(a=!0,Re(i,l))};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!o&&!a?(ve(e)&&r.set(e,null),null):(Q(o)?o.forEach(c=>i[c]=null):Re(i,o),ve(e)&&r.set(e,i),i)}function ws(e,t){return!e||!gs(t)?!1:(t=t.slice(2).replace(/Once$/,""),le(e,t[0].toLowerCase()+t.slice(1))||le(e,Qt(t))||le(e,t))}function oa(e){const{type:t,vnode:n,proxy:r,withProxy:s,propsOptions:[o],slots:i,attrs:a,emit:c,render:u,renderCache:l,props:f,data:d,setupState:m,ctx:h,inheritAttrs:p}=e,g=ts(e);let v,b;try{if(n.shapeFlag&4){const E=s||r,x=E;v=St(u.call(x,E,l,f,m,d,h)),b=a}else{const E=t;v=St(E.length>1?E(f,{attrs:a,slots:i,emit:c}):E(f,null)),b=t.props?a:sh(a)}}catch(E){er.length=0,Sr(E,e,1),v=ge(Pe)}let S=v;if(b&&p!==!1){const E=Object.keys(b),{shapeFlag:x}=S;E.length&&x&7&&(o&&E.some(Xo)&&(b=oh(b,o)),S=Xt(S,b,!1,!0))}return n.dirs&&(S=Xt(S,null,!1,!0),S.dirs=S.dirs?S.dirs.concat(n.dirs):n.dirs),n.transition&&gn(S,n.transition),v=S,ts(g),v}const sh=e=>{let t;for(const n in e)(n==="class"||n==="style"||gs(n))&&((t||(t={}))[n]=e[n]);return t},oh=(e,t)=>{const n={};for(const r in e)(!Xo(r)||!(r.slice(9)in t))&&(n[r]=e[r]);return n};function ih(e,t,n){const{props:r,children:s,component:o}=e,{props:i,children:a,patchFlag:c}=t,u=o.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return r?ia(r,i,u):!!i;if(c&8){const l=t.dynamicProps;for(let f=0;f<l.length;f++){const d=l[f];if(i[d]!==r[d]&&!ws(u,d))return!0}}}else return(s||a)&&(!a||!a.$stable)?!0:r===i?!1:r?i?ia(r,i,u):!0:!!i;return!1}function ia(e,t,n){const r=Object.keys(t);if(r.length!==Object.keys(e).length)return!0;for(let s=0;s<r.length;s++){const o=r[s];if(t[o]!==e[o]&&!ws(n,o))return!0}return!1}function ah({vnode:e,parent:t},n){for(;t;){const r=t.subTree;if(r.suspense&&r.suspense.activeBranch===e&&(r.el=e.el),r===e)(e=t.vnode).el=n,t=t.parent;else break}}const cu=e=>e.__isSuspense;function ch(e,t){t&&t.pendingBranch?Q(e)?t.effects.push(...e):t.effects.push(e):S1(e)}const He=Symbol.for("v-fgt"),Ts=Symbol.for("v-txt"),Pe=Symbol.for("v-cmt"),Ur=Symbol.for("v-stc"),er=[];let Je=null;function rs(e=!1){er.push(Je=e?null:[])}function lh(){er.pop(),Je=er[er.length-1]||null}let ur=1;function aa(e,t=!1){ur+=e,e<0&&Je&&t&&(Je.hasOnce=!0)}function lu(e){return e.dynamicChildren=ur>0?Je||wn:null,lh(),ur>0&&Je&&Je.push(e),e}function h5(e,t,n,r,s,o){return lu(zt(e,t,n,r,s,o,!0))}function ss(e,t,n,r,s){return lu(ge(e,t,n,r,s,!0))}function On(e){return e?e.__v_isVNode===!0:!1}function ln(e,t){return e.type===t.type&&e.key===t.key}const uu=({key:e})=>e??null,Wr=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?Se(e)||be(e)||_(e)?{i:xe,r:e,k:t,f:!!n}:e:null);function zt(e,t=null,n=null,r=0,s=null,o=e===He?0:1,i=!1,a=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&uu(t),ref:t&&Wr(t),scopeId:Ml,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:o,patchFlag:r,dynamicProps:s,dynamicChildren:null,appContext:null,ctx:xe};return a?(Ci(c,n),o&128&&e.normalize(c)):n&&(c.shapeFlag|=Se(n)?8:16),ur>0&&!i&&Je&&(c.patchFlag>0||o&6)&&c.patchFlag!==32&&Je.push(c),c}const ge=uh;function uh(e,t=null,n=null,r=0,s=null,o=!1){if((!e||e===Kl)&&(e=Pe),On(e)){const a=Xt(e,t,!0);return n&&Ci(a,n),ur>0&&!o&&Je&&(a.shapeFlag&6?Je[Je.indexOf(e)]=a:Je.push(a)),a.patchFlag=-2,a}if(Ch(e)&&(e=e.__vccOpts),t){t=fh(t);let{class:a,style:c}=t;a&&!Se(a)&&(t.class=yr(a)),ve(c)&&(ai(c)&&!Q(c)&&(c=Re({},c)),t.style=Ss(c))}const i=Se(e)?1:cu(e)?128:Dl(e)?64:ve(e)?4:_(e)?2:0;return zt(e,t,n,r,s,i,o,!0)}function fh(e){return e?ai(e)||ql(e)?Re({},e):e:null}function Xt(e,t,n=!1,r=!1){const{props:s,ref:o,patchFlag:i,children:a,transition:c}=e,u=t?fu(s||{},t):s,l={__v_isVNode:!0,__v_skip:!0,type:e.type,props:u,key:u&&uu(u),ref:t&&t.ref?n&&o?Q(o)?o.concat(Wr(t)):[o,Wr(t)]:Wr(t):o,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:a,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==He?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:c,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Xt(e.ssContent),ssFallback:e.ssFallback&&Xt(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return c&&r&&gn(l,c.clone(l)),l}function dh(e=" ",t=0){return ge(Ts,null,e,t)}function p5(e,t){const n=ge(Ur,null,e);return n.staticCount=t,n}function m5(e="",t=!1){return t?(rs(),ss(Pe,null,e)):ge(Pe,null,e)}function St(e){return e==null||typeof e=="boolean"?ge(Pe):Q(e)?ge(He,null,e.slice()):On(e)?Gt(e):ge(Ts,null,String(e))}function Gt(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Xt(e)}function Ci(e,t){let n=0;const{shapeFlag:r}=e;if(t==null)t=null;else if(Q(t))n=16;else if(typeof t=="object")if(r&65){const s=t.default;s&&(s._c&&(s._d=!1),Ci(e,s()),s._c&&(s._d=!0));return}else{n=32;const s=t._;!s&&!ql(t)?t._ctx=xe:s===3&&xe&&(xe.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else _(t)?(t={default:t,_ctx:xe},n=32):(t=String(t),r&64?(n=16,t=[dh(t)]):n=8);e.children=t,e.shapeFlag|=n}function fu(...e){const t={};for(let n=0;n<e.length;n++){const r=e[n];for(const s in r)if(s==="class")t.class!==r.class&&(t.class=yr([t.class,r.class]));else if(s==="style")t.style=Ss([t.style,r.style]);else if(gs(s)){const o=t[s],i=r[s];i&&o!==i&&!(Q(o)&&o.includes(i))&&(t[s]=o?[].concat(o,i):i)}else s!==""&&(t[s]=r[s])}return t}function mt(e,t,n,r=null){at(e,t,7,[n,r])}const hh=Jl();let ph=0;function mh(e,t,n){const r=e.type,s=(t?t.appContext:e.appContext)||hh,o={uid:ph++,vnode:e,type:r,parent:t,appContext:s,root:null,next:null,subTree:null,effect:null,update:null,job:null,scope:new ol(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(s.provides),ids:t?t.ids:["",0,0],accessCache:null,renderCache:[],components:null,directives:null,propsOptions:tu(r,s),emitsOptions:au(r,s),emit:null,emitted:null,propsDefaults:he,inheritAttrs:r.inheritAttrs,ctx:he,data:he,props:he,attrs:he,slots:he,refs:he,setupState:he,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return o.ctx={_:o},o.root=t?t.root:o,o.emit=rh.bind(null,o),e.ce&&e.ce(o),o}let Te=null;const Vn=()=>Te||xe;let os,Lo;{const e=bs(),t=(n,r)=>{let s;return(s=e[n])||(s=e[n]=[]),s.push(r),o=>{s.length>1?s.forEach(i=>i(o)):s[0](o)}};os=t("__VUE_INSTANCE_SETTERS__",n=>Te=n),Lo=t("__VUE_SSR_SETTERS__",n=>Pn=n)}const Lr=e=>{const t=Te;return os(e),e.scope.on(),()=>{e.scope.off(),os(t)}},ca=()=>{Te&&Te.scope.off(),os(null)};function du(e){return e.vnode.shapeFlag&4}let Pn=!1;function gh(e,t=!1,n=!1){t&&Lo(t);const{props:r,children:s}=e.vnode,o=du(e);W1(e,r,o,t),Z1(e,s,n||t);const i=o?vh(e,t):void 0;return t&&Lo(!1),i}function vh(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,V1);const{setup:r}=n;if(r){Pt();const s=e.setupContext=r.length>1?bh(e):null,o=Lr(e),i=br(r,e,0,[e.props,s]),a=qc(i);if(Mt(),o(),(a||e.sp)&&!Rn(e)&&fi(e),a){if(i.then(ca,ca),t)return i.then(c=>{la(e,c)}).catch(c=>{Sr(c,e,0)});e.asyncDep=i}else la(e,i)}else hu(e)}function la(e,t,n){_(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:ve(t)&&(e.setupState=Ll(t)),hu(e)}function hu(e,t,n){const r=e.type;e.render||(e.render=r.render||Ct);{const s=Lr(e);Pt();try{F1(e)}finally{Mt(),s()}}}const yh={get(e,t){return Ie(e,"get",""),e[t]}};function bh(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,yh),slots:e.slots,emit:e.emit,expose:t}}function xs(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(Ll(ci(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in qn)return qn[n](e)},has(t,n){return n in t||n in qn}})):e.proxy}function Sh(e,t=!0){return _(e)?e.displayName||e.name:e.name||t&&e.__name}function Ch(e){return _(e)&&"__vccOpts"in e}const ie=(e,t)=>m1(e,t,Pn);function Rs(e,t,n){const r=arguments.length;return r===2?ve(t)&&!Q(t)?On(t)?ge(e,null,[t]):ge(e,t):ge(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&On(n)&&(n=[n]),ge(e,t,n))}const Ah="3.5.17";/**
|
|
15
|
-
* @vue/runtime-dom v3.5.17
|
|
16
|
-
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
17
|
-
* @license MIT
|
|
18
|
-
**/let wo;const ua=typeof window<"u"&&window.trustedTypes;if(ua)try{wo=ua.createPolicy("vue",{createHTML:e=>e})}catch{}const pu=wo?e=>wo.createHTML(e):e=>e,Eh="http://www.w3.org/2000/svg",Lh="http://www.w3.org/1998/Math/MathML",wt=typeof document<"u"?document:null,fa=wt&&wt.createElement("template"),wh={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const s=t==="svg"?wt.createElementNS(Eh,e):t==="mathml"?wt.createElementNS(Lh,e):n?wt.createElement(e,{is:n}):wt.createElement(e);return e==="select"&&r&&r.multiple!=null&&s.setAttribute("multiple",r.multiple),s},createText:e=>wt.createTextNode(e),createComment:e=>wt.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>wt.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,r,s,o){const i=n?n.previousSibling:t.lastChild;if(s&&(s===o||s.nextSibling))for(;t.insertBefore(s.cloneNode(!0),n),!(s===o||!(s=s.nextSibling)););else{fa.innerHTML=pu(r==="svg"?`<svg>${e}</svg>`:r==="mathml"?`<math>${e}</math>`:e);const a=fa.content;if(r==="svg"||r==="mathml"){const c=a.firstChild;for(;c.firstChild;)a.appendChild(c.firstChild);a.removeChild(c)}t.insertBefore(a,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Ft="transition",Bn="animation",Mn=Symbol("_vtc"),mu={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},gu=Re({},Nl,mu),Th=e=>(e.displayName="Transition",e.props=gu,e),g5=Th((e,{slots:t})=>Rs(E1,vu(e),t)),nn=(e,t=[])=>{Q(e)?e.forEach(n=>n(...t)):e&&e(...t)},da=e=>e?Q(e)?e.some(t=>t.length>1):e.length>1:!1;function vu(e){const t={};for(const O in e)O in mu||(t[O]=e[O]);if(e.css===!1)return t;const{name:n="v",type:r,duration:s,enterFromClass:o=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:a=`${n}-enter-to`,appearFromClass:c=o,appearActiveClass:u=i,appearToClass:l=a,leaveFromClass:f=`${n}-leave-from`,leaveActiveClass:d=`${n}-leave-active`,leaveToClass:m=`${n}-leave-to`}=e,h=xh(s),p=h&&h[0],g=h&&h[1],{onBeforeEnter:v,onEnter:b,onEnterCancelled:S,onLeave:E,onLeaveCancelled:x,onBeforeAppear:T=v,onAppear:P=b,onAppearCancelled:L=S}=t,A=(O,k,X,re)=>{O._enterCancelled=re,$t(O,k?l:a),$t(O,k?u:i),X&&X()},R=(O,k)=>{O._isLeaving=!1,$t(O,f),$t(O,m),$t(O,d),k&&k()},I=O=>(k,X)=>{const re=O?P:b,ee=()=>A(k,O,X);nn(re,[k,ee]),ha(()=>{$t(k,O?c:o),vt(k,O?l:a),da(re)||pa(k,r,p,ee)})};return Re(t,{onBeforeEnter(O){nn(v,[O]),vt(O,o),vt(O,i)},onBeforeAppear(O){nn(T,[O]),vt(O,c),vt(O,u)},onEnter:I(!1),onAppear:I(!0),onLeave(O,k){O._isLeaving=!0;const X=()=>R(O,k);vt(O,f),O._enterCancelled?(vt(O,d),To()):(To(),vt(O,d)),ha(()=>{O._isLeaving&&($t(O,f),vt(O,m),da(E)||pa(O,r,g,X))}),nn(E,[O,X])},onEnterCancelled(O){A(O,!1,void 0,!0),nn(S,[O])},onAppearCancelled(O){A(O,!0,void 0,!0),nn(L,[O])},onLeaveCancelled(O){R(O),nn(x,[O])}})}function xh(e){if(e==null)return null;if(ve(e))return[Xs(e.enter),Xs(e.leave)];{const t=Xs(e);return[t,t]}}function Xs(e){return kd(e)}function vt(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e[Mn]||(e[Mn]=new Set)).add(t)}function $t(e,t){t.split(/\s+/).forEach(r=>r&&e.classList.remove(r));const n=e[Mn];n&&(n.delete(t),n.size||(e[Mn]=void 0))}function ha(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Rh=0;function pa(e,t,n,r){const s=e._endId=++Rh,o=()=>{s===e._endId&&r()};if(n!=null)return setTimeout(o,n);const{type:i,timeout:a,propCount:c}=yu(e,t);if(!i)return r();const u=i+"end";let l=0;const f=()=>{e.removeEventListener(u,d),o()},d=m=>{m.target===e&&++l>=c&&f()};setTimeout(()=>{l<c&&f()},a+1),e.addEventListener(u,d)}function yu(e,t){const n=window.getComputedStyle(e),r=h=>(n[h]||"").split(", "),s=r(`${Ft}Delay`),o=r(`${Ft}Duration`),i=ma(s,o),a=r(`${Bn}Delay`),c=r(`${Bn}Duration`),u=ma(a,c);let l=null,f=0,d=0;t===Ft?i>0&&(l=Ft,f=i,d=o.length):t===Bn?u>0&&(l=Bn,f=u,d=c.length):(f=Math.max(i,u),l=f>0?i>u?Ft:Bn:null,d=l?l===Ft?o.length:c.length:0);const m=l===Ft&&/\b(transform|all)(,|$)/.test(r(`${Ft}Property`).toString());return{type:l,timeout:f,propCount:d,hasTransform:m}}function ma(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max(...t.map((n,r)=>ga(n)+ga(e[r])))}function ga(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function To(){return document.body.offsetHeight}function Oh(e,t,n){const r=e[Mn];r&&(t=(t?[t,...r]:[...r]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const is=Symbol("_vod"),bu=Symbol("_vsh"),v5={beforeMount(e,{value:t},{transition:n}){e[is]=e.style.display==="none"?"":e.style.display,n&&t?n.beforeEnter(e):Un(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:r}){!t!=!n&&(r?t?(r.beforeEnter(e),Un(e,!0),r.enter(e)):r.leave(e,()=>{Un(e,!1)}):Un(e,t))},beforeUnmount(e,{value:t}){Un(e,t)}};function Un(e,t){e.style.display=t?e[is]:"none",e[bu]=!t}const Ph=Symbol(""),Mh=/(^|;)\s*display\s*:/;function Ih(e,t,n){const r=e.style,s=Se(n);let o=!1;if(n&&!s){if(t)if(Se(t))for(const i of t.split(";")){const a=i.slice(0,i.indexOf(":")).trim();n[a]==null&&Gr(r,a,"")}else for(const i in t)n[i]==null&&Gr(r,i,"");for(const i in n)i==="display"&&(o=!0),Gr(r,i,n[i])}else if(s){if(t!==n){const i=r[Ph];i&&(n+=";"+i),r.cssText=n,o=Mh.test(n)}}else t&&e.removeAttribute("style");is in e&&(e[is]=o?r.display:"",e[bu]&&(r.display="none"))}const va=/\s*!important$/;function Gr(e,t,n){if(Q(n))n.forEach(r=>Gr(e,t,r));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const r=Hh(e,t);va.test(n)?e.setProperty(Qt(r),n.replace(va,""),"important"):e[r]=n}}const ya=["Webkit","Moz","ms"],Qs={};function Hh(e,t){const n=Qs[t];if(n)return n;let r=Qe(t);if(r!=="filter"&&r in e)return Qs[t]=r;r=vr(r);for(let s=0;s<ya.length;s++){const o=ya[s]+r;if(o in e)return Qs[t]=o}return t}const ba="http://www.w3.org/1999/xlink";function Sa(e,t,n,r,s,o=Wd(t)){r&&t.startsWith("xlink:")?n==null?e.removeAttributeNS(ba,t.slice(6,t.length)):e.setAttributeNS(ba,t,n):n==null||o&&!nl(n)?e.removeAttribute(t):e.setAttribute(t,o?"":It(n)?String(n):n)}function Ca(e,t,n,r,s){if(t==="innerHTML"||t==="textContent"){n!=null&&(e[t]=t==="innerHTML"?pu(n):n);return}const o=e.tagName;if(t==="value"&&o!=="PROGRESS"&&!o.includes("-")){const a=o==="OPTION"?e.getAttribute("value")||"":e.value,c=n==null?e.type==="checkbox"?"on":"":String(n);(a!==c||!("_value"in e))&&(e.value=c),n==null&&e.removeAttribute(t),e._value=n;return}let i=!1;if(n===""||n==null){const a=typeof e[t];a==="boolean"?n=nl(n):n==null&&a==="string"?(n="",i=!0):a==="number"&&(n=0,i=!0)}try{e[t]=n}catch{}i&&e.removeAttribute(s||t)}function Dh(e,t,n,r){e.addEventListener(t,n,r)}function Vh(e,t,n,r){e.removeEventListener(t,n,r)}const Aa=Symbol("_vei");function Fh(e,t,n,r,s=null){const o=e[Aa]||(e[Aa]={}),i=o[t];if(r&&i)i.value=r;else{const[a,c]=kh(t);if(r){const u=o[t]=$h(r,s);Dh(e,a,u,c)}else i&&(Vh(e,a,i,c),o[t]=void 0)}}const Ea=/(?:Once|Passive|Capture)$/;function kh(e){let t;if(Ea.test(e)){t={};let r;for(;r=e.match(Ea);)e=e.slice(0,e.length-r[0].length),t[r[0].toLowerCase()]=!0}return[e[2]===":"?e.slice(3):Qt(e.slice(2)),t]}let _s=0;const Nh=Promise.resolve(),jh=()=>_s||(Nh.then(()=>_s=0),_s=Date.now());function $h(e,t){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;at(Bh(r,n.value),t,5,[r])};return n.value=e,n.attached=jh(),n}function Bh(e,t){if(Q(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(r=>s=>!s._stopped&&r&&r(s))}else return t}const La=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,Uh=(e,t,n,r,s,o)=>{const i=s==="svg";t==="class"?Oh(e,r,i):t==="style"?Ih(e,n,r):gs(t)?Xo(t)||Fh(e,t,n,r,o):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):Wh(e,t,r,i))?(Ca(e,t,r),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&Sa(e,t,r,i,o,t!=="value")):e._isVueCE&&(/[A-Z]/.test(t)||!Se(r))?Ca(e,Qe(t),r,o,t):(t==="true-value"?e._trueValue=r:t==="false-value"&&(e._falseValue=r),Sa(e,t,r,i))};function Wh(e,t,n,r){if(r)return!!(t==="innerHTML"||t==="textContent"||t in e&&La(t)&&_(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="autocorrect"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const s=e.tagName;if(s==="IMG"||s==="VIDEO"||s==="CANVAS"||s==="SOURCE")return!1}return La(t)&&Se(n)?!1:t in e}const Su=new WeakMap,Cu=new WeakMap,as=Symbol("_moveCb"),wa=Symbol("_enterCb"),Gh=e=>(delete e.props.mode,e),Kh=Gh({name:"TransitionGroup",props:Re({},gu,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=Vn(),r=kl();let s,o;return Wl(()=>{if(!s.length)return;const i=e.moveClass||`${e.name||"v"}-move`;if(!Jh(s[0].el,n.vnode.el,i)){s=[];return}s.forEach(zh),s.forEach(Zh);const a=s.filter(Yh);To(),a.forEach(c=>{const u=c.el,l=u.style;vt(u,i),l.transform=l.webkitTransform=l.transitionDuration="";const f=u[as]=d=>{d&&d.target!==u||(!d||/transform$/.test(d.propertyName))&&(u.removeEventListener("transitionend",f),u[as]=null,$t(u,i))};u.addEventListener("transitionend",f)}),s=[]}),()=>{const i=se(e),a=vu(i);let c=i.tag||He;if(s=[],o)for(let u=0;u<o.length;u++){const l=o[u];l.el&&l.el instanceof Element&&(s.push(l),gn(l,lr(l,a,r,n)),Su.set(l,l.el.getBoundingClientRect()))}o=t.default?ui(t.default()):[];for(let u=0;u<o.length;u++){const l=o[u];l.key!=null&&gn(l,lr(l,a,r,n))}return ge(c,null,o)}}}),y5=Kh;function zh(e){const t=e.el;t[as]&&t[as](),t[wa]&&t[wa]()}function Zh(e){Cu.set(e,e.el.getBoundingClientRect())}function Yh(e){const t=Su.get(e),n=Cu.get(e),r=t.left-n.left,s=t.top-n.top;if(r||s){const o=e.el.style;return o.transform=o.webkitTransform=`translate(${r}px,${s}px)`,o.transitionDuration="0s",e}}function Jh(e,t,n){const r=e.cloneNode(),s=e[Mn];s&&s.forEach(a=>{a.split(/\s+/).forEach(c=>c&&r.classList.remove(c))}),n.split(/\s+/).forEach(a=>a&&r.classList.add(a)),r.style.display="none";const o=t.nodeType===1?t:t.parentNode;o.appendChild(r);const{hasTransform:i}=yu(r);return o.removeChild(r),i}const Xh=["ctrl","shift","alt","meta"],Qh={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>Xh.some(n=>e[`${n}Key`]&&!t.includes(n))},b5=(e,t)=>{const n=e._withMods||(e._withMods={}),r=t.join(".");return n[r]||(n[r]=(s,...o)=>{for(let i=0;i<t.length;i++){const a=Qh[t[i]];if(a&&a(s,t))return}return e(s,...o)})},_h={esc:"escape",space:" ",up:"arrow-up",left:"arrow-left",right:"arrow-right",down:"arrow-down",delete:"backspace"},S5=(e,t)=>{const n=e._withKeys||(e._withKeys={}),r=t.join(".");return n[r]||(n[r]=s=>{if(!("key"in s))return;const o=Qt(s.key);if(t.some(i=>i===o||_h[i]===o))return e(s)})},qh=Re({patchProp:Uh},wh);let Ta;function Au(){return Ta||(Ta=J1(qh))}const C5=(...e)=>{Au().render(...e)},ep=(...e)=>{const t=Au().createApp(...e),{mount:n}=t;return t.mount=r=>{const s=np(r);if(!s)return;const o=t._component;!_(o)&&!o.render&&!o.template&&(o.template=s.innerHTML),s.nodeType===1&&(s.textContent="");const i=n(s,!1,tp(s));return s instanceof Element&&(s.removeAttribute("v-cloak"),s.setAttribute("data-v-app","")),i},t};function tp(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function np(e){return Se(e)?document.querySelector(e):e}const rp=(e,t)=>be(t)?El(t):t,Eu="usehead";function sp(e){return{install(n){n.config.globalProperties.$unhead=e,n.config.globalProperties.$head=e,n.provide(Eu,e)}}.install}function op(){if(Xl()){const e=Ce(Eu);if(!e)throw new Error("useHead() was called without provide context, ensure you call it through the setup() function.");return e}throw new Error("useHead() was called without provide context, ensure you call it through the setup() function.")}function ip(e,t={}){const n=t.head||op();return n.ssr?n.push(e||{},t):ap(n,e,t)}function ap(e,t,n={}){const r=Fe(!1);let s;return Er(()=>{const i=r.value?{}:Xr(t,rp);s?s.patch(i):s=e.push(i,n)}),Vn()&&(Ar(()=>{s.dispose()}),hi(()=>{r.value=!0}),di(()=>{r.value=!1})),s}const cp={created(){let e=!1;const t=Vn();if(!t)return;const n=t.type;!n||!("head"in n)||(e=typeof n.head=="function"?()=>n.head.call(t.proxy):n.head,e&&ip(e))}};function lp(e={}){const t=Od({domOptions:{render:Pd(()=>Qc(t),n=>setTimeout(n,0))},...e});return t.install=sp(t),t}const up="drag-scroller-disable",fp=(()=>{const e=new WeakMap;return{mounted(t,n){let r=!1;const{onlyX:s,onlyY:o,disablechild:i}=n.modifiers,a=n.value??{},c=new Event("scrollStart",{bubbles:!0}),u=new Event("scrollMoving",{bubbles:!0}),l=new Event("scrollEnd",{bubbles:!0});a.hideScrollbar===!0&&(t.style.overflow="hidden");const f=g=>{if(i)return g===t;for(;g&&g.parentNode;){if(g&&g!=null&&g.hasAttribute(up))return!1;if(g===t)return!0;g=g.parentNode}return!1},d=g=>{r=f(g.target),t.dispatchEvent(c),r&&a!=null&&a.startScroll&&typeof(a==null?void 0:a.startScroll)=="function"&&a.startScroll(g)},m=g=>{t.dispatchEvent(l),r&&a!=null&&a.endScroll&&typeof(a==null?void 0:a.endScroll)=="function"&&a.endScroll(g),r=!1},h=g=>{if(!r)return!1;t.dispatchEvent(u),a!=null&&a.onScrolling&&typeof(a==null?void 0:a.onScrolling)=="function"&&a.onScrolling(g);const v=(a==null?void 0:a.speed)||1,b=a.reverseDirection?g.movementX*v:-g.movementX*v,S=a.reverseDirection?g.movementY*v:-g.movementY*v;return s?t.scrollLeft+=b:(o||(t.scrollLeft+=b),t.scrollTop+=S),p(g),!1};function p(g){var v;(g==null?void 0:g.target)instanceof HTMLImageElement&&g.preventDefault&&g.preventDefault(),(v=window.getSelection())==null||v.removeAllRanges()}e.set(t,{dragStart:d,dragEnd:m,drag:h,preventSelection:p}),t.addEventListener("pointerdown",d),t.addEventListener("dragstart",p),addEventListener("pointerup",m),addEventListener("pointermove",h)},unmounted(t){const{dragStart:n,dragEnd:r,drag:s,preventSelection:o}=e.get(t);t.removeEventListener("pointerdown",n),t.removeEventListener("dragstart",o),removeEventListener("pointerup",r),removeEventListener("pointermove",s)}}})(),dp={install(e){e.directive("drag-scroller",fp)}};/*!
|
|
19
|
-
* pinia v3.0.3
|
|
20
|
-
* (c) 2025 Eduardo San Martin Morote
|
|
21
|
-
* @license MIT
|
|
22
|
-
*/let Lu;const Os=e=>Lu=e,wu=Symbol();function xo(e){return e&&typeof e=="object"&&Object.prototype.toString.call(e)==="[object Object]"&&typeof e.toJSON!="function"}var tr;(function(e){e.direct="direct",e.patchObject="patch object",e.patchFunction="patch function"})(tr||(tr={}));function hp(){const e=or(!0),t=e.run(()=>Fe({}));let n=[],r=[];const s=ci({install(o){Os(s),s._a=o,o.provide(wu,s),o.config.globalProperties.$pinia=s,r.forEach(i=>n.push(i)),r=[]},use(o){return this._a?n.push(o):r.push(o),this},_p:n,_a:null,_e:e,_s:new Map,state:t});return s}const Tu=()=>{};function xa(e,t,n,r=Tu){e.push(t);const s=()=>{const o=e.indexOf(t);o>-1&&(e.splice(o,1),r())};return!n&&il()&&qo(s),s}function bn(e,...t){e.slice().forEach(n=>{n(...t)})}const pp=e=>e(),Ra=Symbol(),qs=Symbol();function Ro(e,t){e instanceof Map&&t instanceof Map?t.forEach((n,r)=>e.set(r,n)):e instanceof Set&&t instanceof Set&&t.forEach(e.add,e);for(const n in t){if(!t.hasOwnProperty(n))continue;const r=t[n],s=e[n];xo(s)&&xo(r)&&e.hasOwnProperty(n)&&!be(r)&&!Yt(r)?e[n]=Ro(s,r):e[n]=r}return e}const mp=Symbol();function gp(e){return!xo(e)||!Object.prototype.hasOwnProperty.call(e,mp)}const{assign:Bt}=Object;function vp(e){return!!(be(e)&&e.effect)}function yp(e,t,n,r){const{state:s,actions:o,getters:i}=t,a=n.state.value[e];let c;function u(){a||(n.state.value[e]=s?s():{});const l=wl(n.state.value[e]);return Bt(l,o,Object.keys(i||{}).reduce((f,d)=>(f[d]=ci(ie(()=>{Os(n);const m=n._s.get(e);return i[d].call(m,m)})),f),{}))}return c=xu(e,u,t,n,r,!0),c}function xu(e,t,n={},r,s,o){let i;const a=Bt({actions:{}},n),c={deep:!0};let u,l,f=[],d=[],m;const h=r.state.value[e];!o&&!h&&(r.state.value[e]={}),Fe({});let p;function g(L){let A;u=l=!1,typeof L=="function"?(L(r.state.value[e]),A={type:tr.patchFunction,storeId:e,events:m}):(Ro(r.state.value[e],L),A={type:tr.patchObject,payload:L,storeId:e,events:m});const R=p=Symbol();As().then(()=>{p===R&&(u=!0)}),l=!0,bn(f,A,r.state.value[e])}const v=o?function(){const{state:A}=n,R=A?A():{};this.$patch(I=>{Bt(I,R)})}:Tu;function b(){i.stop(),f=[],d=[],r._s.delete(e)}const S=(L,A="")=>{if(Ra in L)return L[qs]=A,L;const R=function(){Os(r);const I=Array.from(arguments),O=[],k=[];function X(K){O.push(K)}function re(K){k.push(K)}bn(d,{args:I,name:R[qs],store:x,after:X,onError:re});let ee;try{ee=L.apply(this&&this.$id===e?this:x,I)}catch(K){throw bn(k,K),K}return ee instanceof Promise?ee.then(K=>(bn(O,K),K)).catch(K=>(bn(k,K),Promise.reject(K))):(bn(O,ee),ee)};return R[Ra]=!0,R[qs]=A,R},E={_p:r,$id:e,$onAction:xa.bind(null,d),$patch:g,$reset:v,$subscribe(L,A={}){const R=xa(f,L,A.detached,()=>I()),I=i.run(()=>tt(()=>r.state.value[e],O=>{(A.flush==="sync"?l:u)&&L({storeId:e,type:tr.direct,events:m},O)},Bt({},c,A)));return R},$dispose:b},x=Ge(E);r._s.set(e,x);const P=(r._a&&r._a.runWithContext||pp)(()=>r._e.run(()=>(i=or()).run(()=>t({action:S}))));for(const L in P){const A=P[L];if(be(A)&&!vp(A)||Yt(A))o||(h&&gp(A)&&(be(A)?A.value=h[L]:Ro(A,h[L])),r.state.value[e][L]=A);else if(typeof A=="function"){const R=S(A,L);P[L]=R,a.actions[L]=A}}return Bt(x,P),Bt(se(x),P),Object.defineProperty(x,"$state",{get:()=>r.state.value[e],set:L=>{g(A=>{Bt(A,L)})}}),r._p.forEach(L=>{Bt(x,i.run(()=>L({store:x,app:r._a,pinia:r,options:a})))}),h&&o&&n.hydrate&&n.hydrate(x.$state,h),u=!0,l=!0,x}/*! #__NO_SIDE_EFFECTS__ */function wr(e,t,n){let r;const s=typeof t=="function";r=s?n:t;function o(i,a){const c=Xl();return i=i||(c?Ce(wu,null):null),i&&Os(i),i=Lu,i._s.has(e)||(s?xu(e,t,r,i):yp(e,r,i)),i._s.get(e)}return o.$id=e,o}function Oo(e,t){return Array.isArray(t)?t.reduce((n,r)=>(n[r]=function(){return e(this.$pinia)[r]},n),{}):Object.keys(t).reduce((n,r)=>(n[r]=function(){const s=e(this.$pinia),o=t[r];return typeof o=="function"?o.call(this,s):s[o]},n),{})}const A5=Oo;function bp(e,t){return Array.isArray(t)?t.reduce((n,r)=>(n[r]=function(...s){return e(this.$pinia)[r](...s)},n),{}):Object.keys(t).reduce((n,r)=>(n[r]=function(...s){return e(this.$pinia)[t[r]](...s)},n),{})}function E5(e,t){return Array.isArray(t)?t.reduce((n,r)=>(n[r]={get(){return e(this.$pinia)[r]},set(s){return e(this.$pinia)[r]=s}},n),{}):Object.keys(t).reduce((n,r)=>(n[r]={get(){return e(this.$pinia)[t[r]]},set(s){return e(this.$pinia)[t[r]]=s}},n),{})}const Ru=["detail","oldPassword","password","username","passwordConfirm","path"];Object.freeze(Ru);const Sp=e=>{let t=[];if(e&&e.response&&e.response.data){let n=e.response.data;for(const r of Ru)if(r in n){n=n[r];break}t=Array.isArray(n)?n.flat():[n]}else console.warn("Unable to parse error",e);return t.length===0&&(t=["Unknown error"]),t},nr=wr("common",{state:()=>({form:{errors:[],success:""},versions:{installed:"1.7.14",latest:void 0},timestamp:Date.now(),isSettingsDrawerOpen:!1,opdsURLs:void 0}),actions:{async loadVersions(){await us.getVersions(this.timestamp).then(e=>{const t=e.data;return this.versions=t,this.versions}).catch(console.error)},setErrors(e){const t=Sp(e);this.$patch(n=>{n.form.errors=t,n.form.success=""})},setSuccess(e){this.$patch(t=>{t.form.errors=[],t.form.success=e})},clearErrors(){this.$patch(e=>{e.form.errors=[],e.form.success=""})},setTimestamp(){this.timestamp=Date.now()},setSettingsDrawerOpen(e){this.isSettingsDrawerOpen=e},async loadOPDSURLs(){this.opdsURLs||await us.getOPDSURLs().then(e=>(this.opdsURLs=Object.freeze({...e.data}),this.opdsURLs)).catch(console.error)}}});function Ou(e,t){return function(){return e.apply(t,arguments)}}const{toString:Cp}=Object.prototype,{getPrototypeOf:Ai}=Object,{iterator:Ps,toStringTag:Pu}=Symbol,Ms=(e=>t=>{const n=Cp.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),lt=e=>(e=e.toLowerCase(),t=>Ms(t)===e),Is=e=>t=>typeof t===e,{isArray:Fn}=Array,fr=Is("undefined");function Ap(e){return e!==null&&!fr(e)&&e.constructor!==null&&!fr(e.constructor)&&Ke(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const Mu=lt("ArrayBuffer");function Ep(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&Mu(e.buffer),t}const Lp=Is("string"),Ke=Is("function"),Iu=Is("number"),Hs=e=>e!==null&&typeof e=="object",wp=e=>e===!0||e===!1,Kr=e=>{if(Ms(e)!=="object")return!1;const t=Ai(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Pu in e)&&!(Ps in e)},Tp=lt("Date"),xp=lt("File"),Rp=lt("Blob"),Op=lt("FileList"),Pp=e=>Hs(e)&&Ke(e.pipe),Mp=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||Ke(e.append)&&((t=Ms(e))==="formdata"||t==="object"&&Ke(e.toString)&&e.toString()==="[object FormData]"))},Ip=lt("URLSearchParams"),[Hp,Dp,Vp,Fp]=["ReadableStream","Request","Response","Headers"].map(lt),kp=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Tr(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,s;if(typeof e!="object"&&(e=[e]),Fn(e))for(r=0,s=e.length;r<s;r++)t.call(null,e[r],r,e);else{const o=n?Object.getOwnPropertyNames(e):Object.keys(e),i=o.length;let a;for(r=0;r<i;r++)a=o[r],t.call(null,e[a],a,e)}}function Hu(e,t){t=t.toLowerCase();const n=Object.keys(e);let r=n.length,s;for(;r-- >0;)if(s=n[r],t===s.toLowerCase())return s;return null}const un=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,Du=e=>!fr(e)&&e!==un;function Po(){const{caseless:e}=Du(this)&&this||{},t={},n=(r,s)=>{const o=e&&Hu(t,s)||s;Kr(t[o])&&Kr(r)?t[o]=Po(t[o],r):Kr(r)?t[o]=Po({},r):Fn(r)?t[o]=r.slice():t[o]=r};for(let r=0,s=arguments.length;r<s;r++)arguments[r]&&Tr(arguments[r],n);return t}const Np=(e,t,n,{allOwnKeys:r}={})=>(Tr(t,(s,o)=>{n&&Ke(s)?e[o]=Ou(s,n):e[o]=s},{allOwnKeys:r}),e),jp=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),$p=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},Bp=(e,t,n,r)=>{let s,o,i;const a={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),o=s.length;o-- >0;)i=s[o],(!r||r(i,e,t))&&!a[i]&&(t[i]=e[i],a[i]=!0);e=n!==!1&&Ai(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},Up=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},Wp=e=>{if(!e)return null;if(Fn(e))return e;let t=e.length;if(!Iu(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},Gp=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&Ai(Uint8Array)),Kp=(e,t)=>{const r=(e&&e[Ps]).call(e);let s;for(;(s=r.next())&&!s.done;){const o=s.value;t.call(e,o[0],o[1])}},zp=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},Zp=lt("HTMLFormElement"),Yp=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,s){return r.toUpperCase()+s}),Oa=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),Jp=lt("RegExp"),Vu=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};Tr(n,(s,o)=>{let i;(i=t(s,o,e))!==!1&&(r[o]=i||s)}),Object.defineProperties(e,r)},Xp=e=>{Vu(e,(t,n)=>{if(Ke(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(Ke(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},Qp=(e,t)=>{const n={},r=s=>{s.forEach(o=>{n[o]=!0})};return Fn(e)?r(e):r(String(e).split(t)),n},_p=()=>{},qp=(e,t)=>e!=null&&Number.isFinite(e=+e)?e:t;function em(e){return!!(e&&Ke(e.append)&&e[Pu]==="FormData"&&e[Ps])}const tm=e=>{const t=new Array(10),n=(r,s)=>{if(Hs(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[s]=r;const o=Fn(r)?[]:{};return Tr(r,(i,a)=>{const c=n(i,s+1);!fr(c)&&(o[a]=c)}),t[s]=void 0,o}}return r};return n(e,0)},nm=lt("AsyncFunction"),rm=e=>e&&(Hs(e)||Ke(e))&&Ke(e.then)&&Ke(e.catch),Fu=((e,t)=>e?setImmediate:t?((n,r)=>(un.addEventListener("message",({source:s,data:o})=>{s===un&&o===n&&r.length&&r.shift()()},!1),s=>{r.push(s),un.postMessage(n,"*")}))(`axios@${Math.random()}`,[]):n=>setTimeout(n))(typeof setImmediate=="function",Ke(un.postMessage)),sm=typeof queueMicrotask<"u"?queueMicrotask.bind(un):typeof process<"u"&&process.nextTick||Fu,om=e=>e!=null&&Ke(e[Ps]),M={isArray:Fn,isArrayBuffer:Mu,isBuffer:Ap,isFormData:Mp,isArrayBufferView:Ep,isString:Lp,isNumber:Iu,isBoolean:wp,isObject:Hs,isPlainObject:Kr,isReadableStream:Hp,isRequest:Dp,isResponse:Vp,isHeaders:Fp,isUndefined:fr,isDate:Tp,isFile:xp,isBlob:Rp,isRegExp:Jp,isFunction:Ke,isStream:Pp,isURLSearchParams:Ip,isTypedArray:Gp,isFileList:Op,forEach:Tr,merge:Po,extend:Np,trim:kp,stripBOM:jp,inherits:$p,toFlatObject:Bp,kindOf:Ms,kindOfTest:lt,endsWith:Up,toArray:Wp,forEachEntry:Kp,matchAll:zp,isHTMLForm:Zp,hasOwnProperty:Oa,hasOwnProp:Oa,reduceDescriptors:Vu,freezeMethods:Xp,toObjectSet:Qp,toCamelCase:Yp,noop:_p,toFiniteNumber:qp,findKey:Hu,global:un,isContextDefined:Du,isSpecCompliantForm:em,toJSONObject:tm,isAsyncFn:nm,isThenable:rm,setImmediate:Fu,asap:sm,isIterable:om};function te(e,t,n,r,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),s&&(this.response=s,this.status=s.status?s.status:null)}M.inherits(te,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:M.toJSONObject(this.config),code:this.code,status:this.status}}});const ku=te.prototype,Nu={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{Nu[e]={value:e}});Object.defineProperties(te,Nu);Object.defineProperty(ku,"isAxiosError",{value:!0});te.from=(e,t,n,r,s,o)=>{const i=Object.create(ku);return M.toFlatObject(e,i,function(c){return c!==Error.prototype},a=>a!=="isAxiosError"),te.call(i,e.message,t,n,r,s),i.cause=e,i.name=e.name,o&&Object.assign(i,o),i};const im=null;function Mo(e){return M.isPlainObject(e)||M.isArray(e)}function ju(e){return M.endsWith(e,"[]")?e.slice(0,-2):e}function Pa(e,t,n){return e?e.concat(t).map(function(s,o){return s=ju(s),!n&&o?"["+s+"]":s}).join(n?".":""):t}function am(e){return M.isArray(e)&&!e.some(Mo)}const cm=M.toFlatObject(M,{},null,function(t){return/^is[A-Z]/.test(t)});function Ds(e,t,n){if(!M.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=M.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(p,g){return!M.isUndefined(g[p])});const r=n.metaTokens,s=n.visitor||l,o=n.dots,i=n.indexes,c=(n.Blob||typeof Blob<"u"&&Blob)&&M.isSpecCompliantForm(t);if(!M.isFunction(s))throw new TypeError("visitor must be a function");function u(h){if(h===null)return"";if(M.isDate(h))return h.toISOString();if(M.isBoolean(h))return h.toString();if(!c&&M.isBlob(h))throw new te("Blob is not supported. Use a Buffer instead.");return M.isArrayBuffer(h)||M.isTypedArray(h)?c&&typeof Blob=="function"?new Blob([h]):Buffer.from(h):h}function l(h,p,g){let v=h;if(h&&!g&&typeof h=="object"){if(M.endsWith(p,"{}"))p=r?p:p.slice(0,-2),h=JSON.stringify(h);else if(M.isArray(h)&&am(h)||(M.isFileList(h)||M.endsWith(p,"[]"))&&(v=M.toArray(h)))return p=ju(p),v.forEach(function(S,E){!(M.isUndefined(S)||S===null)&&t.append(i===!0?Pa([p],E,o):i===null?p:p+"[]",u(S))}),!1}return Mo(h)?!0:(t.append(Pa(g,p,o),u(h)),!1)}const f=[],d=Object.assign(cm,{defaultVisitor:l,convertValue:u,isVisitable:Mo});function m(h,p){if(!M.isUndefined(h)){if(f.indexOf(h)!==-1)throw Error("Circular reference detected in "+p.join("."));f.push(h),M.forEach(h,function(v,b){(!(M.isUndefined(v)||v===null)&&s.call(t,v,M.isString(b)?b.trim():b,p,d))===!0&&m(v,p?p.concat(b):[b])}),f.pop()}}if(!M.isObject(e))throw new TypeError("data must be an object");return m(e),t}function Ma(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function Ei(e,t){this._pairs=[],e&&Ds(e,this,t)}const $u=Ei.prototype;$u.append=function(t,n){this._pairs.push([t,n])};$u.toString=function(t){const n=t?function(r){return t.call(this,r,Ma)}:Ma;return this._pairs.map(function(s){return n(s[0])+"="+n(s[1])},"").join("&")};function lm(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Bu(e,t,n){if(!t)return e;const r=n&&n.encode||lm;M.isFunction(n)&&(n={serialize:n});const s=n&&n.serialize;let o;if(s?o=s(t,n):o=M.isURLSearchParams(t)?t.toString():new Ei(t,n).toString(r),o){const i=e.indexOf("#");i!==-1&&(e=e.slice(0,i)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class Ia{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){M.forEach(this.handlers,function(r){r!==null&&t(r)})}}const Uu={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},um=typeof URLSearchParams<"u"?URLSearchParams:Ei,fm=typeof FormData<"u"?FormData:null,dm=typeof Blob<"u"?Blob:null,hm={isBrowser:!0,classes:{URLSearchParams:um,FormData:fm,Blob:dm},protocols:["http","https","file","blob","url","data"]},Li=typeof window<"u"&&typeof document<"u",Io=typeof navigator=="object"&&navigator||void 0,pm=Li&&(!Io||["ReactNative","NativeScript","NS"].indexOf(Io.product)<0),mm=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",gm=Li&&window.location.href||"http://localhost",vm=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Li,hasStandardBrowserEnv:pm,hasStandardBrowserWebWorkerEnv:mm,navigator:Io,origin:gm},Symbol.toStringTag,{value:"Module"})),De={...vm,...hm};function ym(e,t){return Ds(e,new De.classes.URLSearchParams,Object.assign({visitor:function(n,r,s,o){return De.isNode&&M.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)}},t))}function bm(e){return M.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function Sm(e){const t={},n=Object.keys(e);let r;const s=n.length;let o;for(r=0;r<s;r++)o=n[r],t[o]=e[o];return t}function Wu(e){function t(n,r,s,o){let i=n[o++];if(i==="__proto__")return!0;const a=Number.isFinite(+i),c=o>=n.length;return i=!i&&M.isArray(s)?s.length:i,c?(M.hasOwnProp(s,i)?s[i]=[s[i],r]:s[i]=r,!a):((!s[i]||!M.isObject(s[i]))&&(s[i]=[]),t(n,r,s[i],o)&&M.isArray(s[i])&&(s[i]=Sm(s[i])),!a)}if(M.isFormData(e)&&M.isFunction(e.entries)){const n={};return M.forEachEntry(e,(r,s)=>{t(bm(r),s,n,0)}),n}return null}function Cm(e,t,n){if(M.isString(e))try{return(t||JSON.parse)(e),M.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const xr={transitional:Uu,adapter:["xhr","http","fetch"],transformRequest:[function(t,n){const r=n.getContentType()||"",s=r.indexOf("application/json")>-1,o=M.isObject(t);if(o&&M.isHTMLForm(t)&&(t=new FormData(t)),M.isFormData(t))return s?JSON.stringify(Wu(t)):t;if(M.isArrayBuffer(t)||M.isBuffer(t)||M.isStream(t)||M.isFile(t)||M.isBlob(t)||M.isReadableStream(t))return t;if(M.isArrayBufferView(t))return t.buffer;if(M.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let a;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return ym(t,this.formSerializer).toString();if((a=M.isFileList(t))||r.indexOf("multipart/form-data")>-1){const c=this.env&&this.env.FormData;return Ds(a?{"files[]":t}:t,c&&new c,this.formSerializer)}}return o||s?(n.setContentType("application/json",!1),Cm(t)):t}],transformResponse:[function(t){const n=this.transitional||xr.transitional,r=n&&n.forcedJSONParsing,s=this.responseType==="json";if(M.isResponse(t)||M.isReadableStream(t))return t;if(t&&M.isString(t)&&(r&&!this.responseType||s)){const i=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t)}catch(a){if(i)throw a.name==="SyntaxError"?te.from(a,te.ERR_BAD_RESPONSE,this,null,this.response):a}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:De.classes.FormData,Blob:De.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};M.forEach(["delete","get","head","post","put","patch"],e=>{xr.headers[e]={}});const Am=M.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),Em=e=>{const t={};let n,r,s;return e&&e.split(`
|
|
23
|
-
`).forEach(function(i){s=i.indexOf(":"),n=i.substring(0,s).trim().toLowerCase(),r=i.substring(s+1).trim(),!(!n||t[n]&&Am[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},Ha=Symbol("internals");function Wn(e){return e&&String(e).trim().toLowerCase()}function zr(e){return e===!1||e==null?e:M.isArray(e)?e.map(zr):String(e)}function Lm(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const wm=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function eo(e,t,n,r,s){if(M.isFunction(r))return r.call(this,t,n);if(s&&(t=n),!!M.isString(t)){if(M.isString(r))return t.indexOf(r)!==-1;if(M.isRegExp(r))return r.test(t)}}function Tm(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function xm(e,t){const n=M.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(s,o,i){return this[r].call(this,t,s,o,i)},configurable:!0})})}let ze=class{constructor(t){t&&this.set(t)}set(t,n,r){const s=this;function o(a,c,u){const l=Wn(c);if(!l)throw new Error("header name must be a non-empty string");const f=M.findKey(s,l);(!f||s[f]===void 0||u===!0||u===void 0&&s[f]!==!1)&&(s[f||c]=zr(a))}const i=(a,c)=>M.forEach(a,(u,l)=>o(u,l,c));if(M.isPlainObject(t)||t instanceof this.constructor)i(t,n);else if(M.isString(t)&&(t=t.trim())&&!wm(t))i(Em(t),n);else if(M.isObject(t)&&M.isIterable(t)){let a={},c,u;for(const l of t){if(!M.isArray(l))throw TypeError("Object iterator must return a key-value pair");a[u=l[0]]=(c=a[u])?M.isArray(c)?[...c,l[1]]:[c,l[1]]:l[1]}i(a,n)}else t!=null&&o(n,t,r);return this}get(t,n){if(t=Wn(t),t){const r=M.findKey(this,t);if(r){const s=this[r];if(!n)return s;if(n===!0)return Lm(s);if(M.isFunction(n))return n.call(this,s,r);if(M.isRegExp(n))return n.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=Wn(t),t){const r=M.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||eo(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let s=!1;function o(i){if(i=Wn(i),i){const a=M.findKey(r,i);a&&(!n||eo(r,r[a],a,n))&&(delete r[a],s=!0)}}return M.isArray(t)?t.forEach(o):o(t),s}clear(t){const n=Object.keys(this);let r=n.length,s=!1;for(;r--;){const o=n[r];(!t||eo(this,this[o],o,t,!0))&&(delete this[o],s=!0)}return s}normalize(t){const n=this,r={};return M.forEach(this,(s,o)=>{const i=M.findKey(r,o);if(i){n[i]=zr(s),delete n[o];return}const a=t?Tm(o):String(o).trim();a!==o&&delete n[o],n[a]=zr(s),r[a]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return M.forEach(this,(r,s)=>{r!=null&&r!==!1&&(n[s]=t&&M.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(`
|
|
24
|
-
`)}getSetCookie(){return this.get("set-cookie")||[]}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(s=>r.set(s)),r}static accessor(t){const r=(this[Ha]=this[Ha]={accessors:{}}).accessors,s=this.prototype;function o(i){const a=Wn(i);r[a]||(xm(s,i),r[a]=!0)}return M.isArray(t)?t.forEach(o):o(t),this}};ze.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);M.reduceDescriptors(ze.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});M.freezeMethods(ze);function to(e,t){const n=this||xr,r=t||n,s=ze.from(r.headers);let o=r.data;return M.forEach(e,function(a){o=a.call(n,o,s.normalize(),t?t.status:void 0)}),s.normalize(),o}function Gu(e){return!!(e&&e.__CANCEL__)}function kn(e,t,n){te.call(this,e??"canceled",te.ERR_CANCELED,t,n),this.name="CanceledError"}M.inherits(kn,te,{__CANCEL__:!0});function Ku(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new te("Request failed with status code "+n.status,[te.ERR_BAD_REQUEST,te.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}function Rm(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function Om(e,t){e=e||10;const n=new Array(e),r=new Array(e);let s=0,o=0,i;return t=t!==void 0?t:1e3,function(c){const u=Date.now(),l=r[o];i||(i=u),n[s]=c,r[s]=u;let f=o,d=0;for(;f!==s;)d+=n[f++],f=f%e;if(s=(s+1)%e,s===o&&(o=(o+1)%e),u-i<t)return;const m=l&&u-l;return m?Math.round(d*1e3/m):void 0}}function Pm(e,t){let n=0,r=1e3/t,s,o;const i=(u,l=Date.now())=>{n=l,s=null,o&&(clearTimeout(o),o=null),e.apply(null,u)};return[(...u)=>{const l=Date.now(),f=l-n;f>=r?i(u,l):(s=u,o||(o=setTimeout(()=>{o=null,i(s)},r-f)))},()=>s&&i(s)]}const cs=(e,t,n=3)=>{let r=0;const s=Om(50,250);return Pm(o=>{const i=o.loaded,a=o.lengthComputable?o.total:void 0,c=i-r,u=s(c),l=i<=a;r=i;const f={loaded:i,total:a,progress:a?i/a:void 0,bytes:c,rate:u||void 0,estimated:u&&a&&l?(a-i)/u:void 0,event:o,lengthComputable:a!=null,[t?"download":"upload"]:!0};e(f)},n)},Da=(e,t)=>{const n=e!=null;return[r=>t[0]({lengthComputable:n,total:e,loaded:r}),t[1]]},Va=e=>(...t)=>M.asap(()=>e(...t)),Mm=De.hasStandardBrowserEnv?((e,t)=>n=>(n=new URL(n,De.origin),e.protocol===n.protocol&&e.host===n.host&&(t||e.port===n.port)))(new URL(De.origin),De.navigator&&/(msie|trident)/i.test(De.navigator.userAgent)):()=>!0,Im=De.hasStandardBrowserEnv?{write(e,t,n,r,s,o){const i=[e+"="+encodeURIComponent(t)];M.isNumber(n)&&i.push("expires="+new Date(n).toGMTString()),M.isString(r)&&i.push("path="+r),M.isString(s)&&i.push("domain="+s),o===!0&&i.push("secure"),document.cookie=i.join("; ")},read(e){const t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function Hm(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function Dm(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function zu(e,t,n){let r=!Hm(t);return e&&(r||n==!1)?Dm(e,t):t}const Fa=e=>e instanceof ze?{...e}:e;function vn(e,t){t=t||{};const n={};function r(u,l,f,d){return M.isPlainObject(u)&&M.isPlainObject(l)?M.merge.call({caseless:d},u,l):M.isPlainObject(l)?M.merge({},l):M.isArray(l)?l.slice():l}function s(u,l,f,d){if(M.isUndefined(l)){if(!M.isUndefined(u))return r(void 0,u,f,d)}else return r(u,l,f,d)}function o(u,l){if(!M.isUndefined(l))return r(void 0,l)}function i(u,l){if(M.isUndefined(l)){if(!M.isUndefined(u))return r(void 0,u)}else return r(void 0,l)}function a(u,l,f){if(f in t)return r(u,l);if(f in e)return r(void 0,u)}const c={url:o,method:o,data:o,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,withXSRFToken:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,responseEncoding:i,validateStatus:a,headers:(u,l,f)=>s(Fa(u),Fa(l),f,!0)};return M.forEach(Object.keys(Object.assign({},e,t)),function(l){const f=c[l]||s,d=f(e[l],t[l],l);M.isUndefined(d)&&f!==a||(n[l]=d)}),n}const Zu=e=>{const t=vn({},e);let{data:n,withXSRFToken:r,xsrfHeaderName:s,xsrfCookieName:o,headers:i,auth:a}=t;t.headers=i=ze.from(i),t.url=Bu(zu(t.baseURL,t.url,t.allowAbsoluteUrls),e.params,e.paramsSerializer),a&&i.set("Authorization","Basic "+btoa((a.username||"")+":"+(a.password?unescape(encodeURIComponent(a.password)):"")));let c;if(M.isFormData(n)){if(De.hasStandardBrowserEnv||De.hasStandardBrowserWebWorkerEnv)i.setContentType(void 0);else if((c=i.getContentType())!==!1){const[u,...l]=c?c.split(";").map(f=>f.trim()).filter(Boolean):[];i.setContentType([u||"multipart/form-data",...l].join("; "))}}if(De.hasStandardBrowserEnv&&(r&&M.isFunction(r)&&(r=r(t)),r||r!==!1&&Mm(t.url))){const u=s&&o&&Im.read(o);u&&i.set(s,u)}return t},Vm=typeof XMLHttpRequest<"u",Fm=Vm&&function(e){return new Promise(function(n,r){const s=Zu(e);let o=s.data;const i=ze.from(s.headers).normalize();let{responseType:a,onUploadProgress:c,onDownloadProgress:u}=s,l,f,d,m,h;function p(){m&&m(),h&&h(),s.cancelToken&&s.cancelToken.unsubscribe(l),s.signal&&s.signal.removeEventListener("abort",l)}let g=new XMLHttpRequest;g.open(s.method.toUpperCase(),s.url,!0),g.timeout=s.timeout;function v(){if(!g)return;const S=ze.from("getAllResponseHeaders"in g&&g.getAllResponseHeaders()),x={data:!a||a==="text"||a==="json"?g.responseText:g.response,status:g.status,statusText:g.statusText,headers:S,config:e,request:g};Ku(function(P){n(P),p()},function(P){r(P),p()},x),g=null}"onloadend"in g?g.onloadend=v:g.onreadystatechange=function(){!g||g.readyState!==4||g.status===0&&!(g.responseURL&&g.responseURL.indexOf("file:")===0)||setTimeout(v)},g.onabort=function(){g&&(r(new te("Request aborted",te.ECONNABORTED,e,g)),g=null)},g.onerror=function(){r(new te("Network Error",te.ERR_NETWORK,e,g)),g=null},g.ontimeout=function(){let E=s.timeout?"timeout of "+s.timeout+"ms exceeded":"timeout exceeded";const x=s.transitional||Uu;s.timeoutErrorMessage&&(E=s.timeoutErrorMessage),r(new te(E,x.clarifyTimeoutError?te.ETIMEDOUT:te.ECONNABORTED,e,g)),g=null},o===void 0&&i.setContentType(null),"setRequestHeader"in g&&M.forEach(i.toJSON(),function(E,x){g.setRequestHeader(x,E)}),M.isUndefined(s.withCredentials)||(g.withCredentials=!!s.withCredentials),a&&a!=="json"&&(g.responseType=s.responseType),u&&([d,h]=cs(u,!0),g.addEventListener("progress",d)),c&&g.upload&&([f,m]=cs(c),g.upload.addEventListener("progress",f),g.upload.addEventListener("loadend",m)),(s.cancelToken||s.signal)&&(l=S=>{g&&(r(!S||S.type?new kn(null,e,g):S),g.abort(),g=null)},s.cancelToken&&s.cancelToken.subscribe(l),s.signal&&(s.signal.aborted?l():s.signal.addEventListener("abort",l)));const b=Rm(s.url);if(b&&De.protocols.indexOf(b)===-1){r(new te("Unsupported protocol "+b+":",te.ERR_BAD_REQUEST,e));return}g.send(o||null)})},km=(e,t)=>{const{length:n}=e=e?e.filter(Boolean):[];if(t||n){let r=new AbortController,s;const o=function(u){if(!s){s=!0,a();const l=u instanceof Error?u:this.reason;r.abort(l instanceof te?l:new kn(l instanceof Error?l.message:l))}};let i=t&&setTimeout(()=>{i=null,o(new te(`timeout ${t} of ms exceeded`,te.ETIMEDOUT))},t);const a=()=>{e&&(i&&clearTimeout(i),i=null,e.forEach(u=>{u.unsubscribe?u.unsubscribe(o):u.removeEventListener("abort",o)}),e=null)};e.forEach(u=>u.addEventListener("abort",o));const{signal:c}=r;return c.unsubscribe=()=>M.asap(a),c}},Nm=function*(e,t){let n=e.byteLength;if(n<t){yield e;return}let r=0,s;for(;r<n;)s=r+t,yield e.slice(r,s),r=s},jm=async function*(e,t){for await(const n of $m(e))yield*Nm(n,t)},$m=async function*(e){if(e[Symbol.asyncIterator]){yield*e;return}const t=e.getReader();try{for(;;){const{done:n,value:r}=await t.read();if(n)break;yield r}}finally{await t.cancel()}},ka=(e,t,n,r)=>{const s=jm(e,t);let o=0,i,a=c=>{i||(i=!0,r&&r(c))};return new ReadableStream({async pull(c){try{const{done:u,value:l}=await s.next();if(u){a(),c.close();return}let f=l.byteLength;if(n){let d=o+=f;n(d)}c.enqueue(new Uint8Array(l))}catch(u){throw a(u),u}},cancel(c){return a(c),s.return()}},{highWaterMark:2})},Vs=typeof fetch=="function"&&typeof Request=="function"&&typeof Response=="function",Yu=Vs&&typeof ReadableStream=="function",Bm=Vs&&(typeof TextEncoder=="function"?(e=>t=>e.encode(t))(new TextEncoder):async e=>new Uint8Array(await new Response(e).arrayBuffer())),Ju=(e,...t)=>{try{return!!e(...t)}catch{return!1}},Um=Yu&&Ju(()=>{let e=!1;const t=new Request(De.origin,{body:new ReadableStream,method:"POST",get duplex(){return e=!0,"half"}}).headers.has("Content-Type");return e&&!t}),Na=64*1024,Ho=Yu&&Ju(()=>M.isReadableStream(new Response("").body)),ls={stream:Ho&&(e=>e.body)};Vs&&(e=>{["text","arrayBuffer","blob","formData","stream"].forEach(t=>{!ls[t]&&(ls[t]=M.isFunction(e[t])?n=>n[t]():(n,r)=>{throw new te(`Response type '${t}' is not supported`,te.ERR_NOT_SUPPORT,r)})})})(new Response);const Wm=async e=>{if(e==null)return 0;if(M.isBlob(e))return e.size;if(M.isSpecCompliantForm(e))return(await new Request(De.origin,{method:"POST",body:e}).arrayBuffer()).byteLength;if(M.isArrayBufferView(e)||M.isArrayBuffer(e))return e.byteLength;if(M.isURLSearchParams(e)&&(e=e+""),M.isString(e))return(await Bm(e)).byteLength},Gm=async(e,t)=>{const n=M.toFiniteNumber(e.getContentLength());return n??Wm(t)},Km=Vs&&(async e=>{let{url:t,method:n,data:r,signal:s,cancelToken:o,timeout:i,onDownloadProgress:a,onUploadProgress:c,responseType:u,headers:l,withCredentials:f="same-origin",fetchOptions:d}=Zu(e);u=u?(u+"").toLowerCase():"text";let m=km([s,o&&o.toAbortSignal()],i),h;const p=m&&m.unsubscribe&&(()=>{m.unsubscribe()});let g;try{if(c&&Um&&n!=="get"&&n!=="head"&&(g=await Gm(l,r))!==0){let x=new Request(t,{method:"POST",body:r,duplex:"half"}),T;if(M.isFormData(r)&&(T=x.headers.get("content-type"))&&l.setContentType(T),x.body){const[P,L]=Da(g,cs(Va(c)));r=ka(x.body,Na,P,L)}}M.isString(f)||(f=f?"include":"omit");const v="credentials"in Request.prototype;h=new Request(t,{...d,signal:m,method:n.toUpperCase(),headers:l.normalize().toJSON(),body:r,duplex:"half",credentials:v?f:void 0});let b=await fetch(h,d);const S=Ho&&(u==="stream"||u==="response");if(Ho&&(a||S&&p)){const x={};["status","statusText","headers"].forEach(A=>{x[A]=b[A]});const T=M.toFiniteNumber(b.headers.get("content-length")),[P,L]=a&&Da(T,cs(Va(a),!0))||[];b=new Response(ka(b.body,Na,P,()=>{L&&L(),p&&p()}),x)}u=u||"text";let E=await ls[M.findKey(ls,u)||"text"](b,e);return!S&&p&&p(),await new Promise((x,T)=>{Ku(x,T,{data:E,headers:ze.from(b.headers),status:b.status,statusText:b.statusText,config:e,request:h})})}catch(v){throw p&&p(),v&&v.name==="TypeError"&&/Load failed|fetch/i.test(v.message)?Object.assign(new te("Network Error",te.ERR_NETWORK,e,h),{cause:v.cause||v}):te.from(v,v&&v.code,e,h)}}),Do={http:im,xhr:Fm,fetch:Km};M.forEach(Do,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const ja=e=>`- ${e}`,zm=e=>M.isFunction(e)||e===null||e===!1,Xu={getAdapter:e=>{e=M.isArray(e)?e:[e];const{length:t}=e;let n,r;const s={};for(let o=0;o<t;o++){n=e[o];let i;if(r=n,!zm(n)&&(r=Do[(i=String(n)).toLowerCase()],r===void 0))throw new te(`Unknown adapter '${i}'`);if(r)break;s[i||"#"+o]=r}if(!r){const o=Object.entries(s).map(([a,c])=>`adapter ${a} `+(c===!1?"is not supported by the environment":"is not available in the build"));let i=t?o.length>1?`since :
|
|
25
|
-
`+o.map(ja).join(`
|
|
26
|
-
`):" "+ja(o[0]):"as no adapter specified";throw new te("There is no suitable adapter to dispatch the request "+i,"ERR_NOT_SUPPORT")}return r},adapters:Do};function no(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new kn(null,e)}function $a(e){return no(e),e.headers=ze.from(e.headers),e.data=to.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),Xu.getAdapter(e.adapter||xr.adapter)(e).then(function(r){return no(e),r.data=to.call(e,e.transformResponse,r),r.headers=ze.from(r.headers),r},function(r){return Gu(r)||(no(e),r&&r.response&&(r.response.data=to.call(e,e.transformResponse,r.response),r.response.headers=ze.from(r.response.headers))),Promise.reject(r)})}const Qu="1.10.0",Fs={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{Fs[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const Ba={};Fs.transitional=function(t,n,r){function s(o,i){return"[Axios v"+Qu+"] Transitional option '"+o+"'"+i+(r?". "+r:"")}return(o,i,a)=>{if(t===!1)throw new te(s(i," has been removed"+(n?" in "+n:"")),te.ERR_DEPRECATED);return n&&!Ba[i]&&(Ba[i]=!0,console.warn(s(i," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,i,a):!0}};Fs.spelling=function(t){return(n,r)=>(console.warn(`${r} is likely a misspelling of ${t}`),!0)};function Zm(e,t,n){if(typeof e!="object")throw new te("options must be an object",te.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let s=r.length;for(;s-- >0;){const o=r[s],i=t[o];if(i){const a=e[o],c=a===void 0||i(a,o,e);if(c!==!0)throw new te("option "+o+" must be "+c,te.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new te("Unknown option "+o,te.ERR_BAD_OPTION)}}const Zr={assertOptions:Zm,validators:Fs},gt=Zr.validators;let hn=class{constructor(t){this.defaults=t||{},this.interceptors={request:new Ia,response:new Ia}}async request(t,n){try{return await this._request(t,n)}catch(r){if(r instanceof Error){let s={};Error.captureStackTrace?Error.captureStackTrace(s):s=new Error;const o=s.stack?s.stack.replace(/^.+\n/,""):"";try{r.stack?o&&!String(r.stack).endsWith(o.replace(/^.+\n.+\n/,""))&&(r.stack+=`
|
|
27
|
-
`+o):r.stack=o}catch{}}throw r}}_request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=vn(this.defaults,n);const{transitional:r,paramsSerializer:s,headers:o}=n;r!==void 0&&Zr.assertOptions(r,{silentJSONParsing:gt.transitional(gt.boolean),forcedJSONParsing:gt.transitional(gt.boolean),clarifyTimeoutError:gt.transitional(gt.boolean)},!1),s!=null&&(M.isFunction(s)?n.paramsSerializer={serialize:s}:Zr.assertOptions(s,{encode:gt.function,serialize:gt.function},!0)),n.allowAbsoluteUrls!==void 0||(this.defaults.allowAbsoluteUrls!==void 0?n.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:n.allowAbsoluteUrls=!0),Zr.assertOptions(n,{baseUrl:gt.spelling("baseURL"),withXsrfToken:gt.spelling("withXSRFToken")},!0),n.method=(n.method||this.defaults.method||"get").toLowerCase();let i=o&&M.merge(o.common,o[n.method]);o&&M.forEach(["delete","get","head","post","put","patch","common"],h=>{delete o[h]}),n.headers=ze.concat(i,o);const a=[];let c=!0;this.interceptors.request.forEach(function(p){typeof p.runWhen=="function"&&p.runWhen(n)===!1||(c=c&&p.synchronous,a.unshift(p.fulfilled,p.rejected))});const u=[];this.interceptors.response.forEach(function(p){u.push(p.fulfilled,p.rejected)});let l,f=0,d;if(!c){const h=[$a.bind(this),void 0];for(h.unshift.apply(h,a),h.push.apply(h,u),d=h.length,l=Promise.resolve(n);f<d;)l=l.then(h[f++],h[f++]);return l}d=a.length;let m=n;for(f=0;f<d;){const h=a[f++],p=a[f++];try{m=h(m)}catch(g){p.call(this,g);break}}try{l=$a.call(this,m)}catch(h){return Promise.reject(h)}for(f=0,d=u.length;f<d;)l=l.then(u[f++],u[f++]);return l}getUri(t){t=vn(this.defaults,t);const n=zu(t.baseURL,t.url,t.allowAbsoluteUrls);return Bu(n,t.params,t.paramsSerializer)}};M.forEach(["delete","get","head","options"],function(t){hn.prototype[t]=function(n,r){return this.request(vn(r||{},{method:t,url:n,data:(r||{}).data}))}});M.forEach(["post","put","patch"],function(t){function n(r){return function(o,i,a){return this.request(vn(a||{},{method:t,headers:r?{"Content-Type":"multipart/form-data"}:{},url:o,data:i}))}}hn.prototype[t]=n(),hn.prototype[t+"Form"]=n(!0)});let Ym=class _u{constructor(t){if(typeof t!="function")throw new TypeError("executor must be a function.");let n;this.promise=new Promise(function(o){n=o});const r=this;this.promise.then(s=>{if(!r._listeners)return;let o=r._listeners.length;for(;o-- >0;)r._listeners[o](s);r._listeners=null}),this.promise.then=s=>{let o;const i=new Promise(a=>{r.subscribe(a),o=a}).then(s);return i.cancel=function(){r.unsubscribe(o)},i},t(function(o,i,a){r.reason||(r.reason=new kn(o,i,a),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}toAbortSignal(){const t=new AbortController,n=r=>{t.abort(r)};return this.subscribe(n),t.signal.unsubscribe=()=>this.unsubscribe(n),t.signal}static source(){let t;return{token:new _u(function(s){t=s}),cancel:t}}};function Jm(e){return function(n){return e.apply(null,n)}}function Xm(e){return M.isObject(e)&&e.isAxiosError===!0}const Vo={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Vo).forEach(([e,t])=>{Vo[t]=e});function qu(e){const t=new hn(e),n=Ou(hn.prototype.request,t);return M.extend(n,hn.prototype,t,{allOwnKeys:!0}),M.extend(n,t,null,{allOwnKeys:!0}),n.create=function(s){return qu(vn(e,s))},n}const Ae=qu(xr);Ae.Axios=hn;Ae.CanceledError=kn;Ae.CancelToken=Ym;Ae.isCancel=Gu;Ae.VERSION=Qu;Ae.toFormData=Ds;Ae.AxiosError=te;Ae.Cancel=Ae.CanceledError;Ae.all=function(t){return Promise.all(t)};Ae.spread=Jm;Ae.isAxiosError=Xm;Ae.mergeConfig=vn;Ae.AxiosHeaders=ze;Ae.formToJSON=e=>Wu(M.isHTMLForm(e)?new FormData(e):e);Ae.getAdapter=Xu.getAdapter;Ae.HttpStatusCode=Vo;Ae.default=Ae;const{Axios:T5,AxiosError:x5,CanceledError:R5,isCancel:O5,CancelToken:P5,VERSION:M5,all:I5,Cancel:H5,isAxiosError:D5,spread:V5,toFormData:F5,AxiosHeaders:k5,HttpStatusCode:N5,formToJSON:j5,getAdapter:$5,mergeConfig:B5}=Ae,Qm={baseURL:globalThis.CODEX.API_V3_PATH,withCredentials:!0,xsrfCookieName:"csrftoken",xsrfHeaderName:"X-CSRFTOKEN"},Ee=Ae.create(Qm),_m=(e,t)=>{switch(e==null?void 0:e.constructor){case Array:return e.map(n=>t(n));case Object:return Object.fromEntries(Object.entries(e).map(([n,r])=>[n,t(r,n)]));default:return e}},qm=(e,t)=>{switch(e==null?void 0:e.constructor){case Array:return e.filter(n=>t(n));case Object:return Object.fromEntries(Object.entries(e).filter(([n,r])=>t(r,n)));default:return e}},Ua=e=>{switch(e==null?void 0:e.constructor){case Array:case String:return e.length>0;case Object:return Object.keys(e).length>0;default:return e!==void 0}},ef=e=>{switch(e==null?void 0:e.constructor){case Array:case Object:return qm(_m(e,ef),Ua);default:return Ua(e)?e:void 0}},eg=e=>{for(const[t,n]of Object.entries(e))(typeof n=="object"||Array.isArray(n))&&(e[t]=JSON.stringify(n))},tg=(e,t)=>{t||(t=nr().timestamp),e.ts=t},ut=(e,t)=>{const n=ef(e)||{};return eg(n),tg(n,t),n},ng=(e,t)=>{Ee.get(e,{responseType:"blob"}).then(n=>{const r=document.createElement("a"),s=new Blob([n.data],{type:"application/octet-stream"});return r.href=globalThis.URL.createObjectURL(s),r.download=t,r.click(),globalThis.URL.revokeObjectURL(n.data),r.remove()}).catch(console.warn)},rg=(e,t)=>{const n=ut({groups:e,...t},Date.now());return Ee.get("/mtime",{params:n})},sg=()=>Ee.get("/opds-urls"),og=e=>{const t={ts:e};return Ee.get("/version",{params:t})},us={getDownloadIOSPWAFix:ng,getMtime:rg,getOPDSURLs:sg,getVersions:og},ig=async()=>await Ee.get("/auth/flags/"),ag=()=>new Intl.DateTimeFormat().resolvedOptions().timeZone,cg=async()=>{const e={timezone:ag()};return await Ee.put("/auth/timezone/",e)},lg=async e=>(e.login=e.username,await Ee.post("/auth/register/",e)),ug=async e=>(e.login=e.username,await Ee.post("/auth/login/",e)),fg=async()=>{const e=ut();return await Ee.get("/auth/profile/",{params:e})},dg=async()=>await Ee.post("/auth/logout/"),hg=async e=>await Ee.post("/auth/change-password/",e),rn={updatePassword:hg,getAdminFlags:ig,getProfile:fg,updateTimezone:cg,login:ug,logout:dg,register:lg},dr=wr("auth",{state:()=>({adminFlags:{registration:void 0,nonUsers:void 0,bannerText:void 0},user:void 0,MIN_PASSWORD_LENGTH:4,showLoginDialog:!1,showChangePasswordDialog:!1}),getters:{isAuthorized(){return!!(this.user||this.adminFlags.nonUsers)},isAuthChecked(){return this.user!==void 0||this.adminFlags.registration!==void 0},isUserAdmin(){return this.user&&(this.user.isStaff||this.user.isSuperuser)},isAuthDialogOpen(){return this.showLoginDialog||this.showChangePasswordDialog},isBanner(e){return!!e.adminFlags.bannerText}},actions:{async loadAdminFlags(){await rn.getAdminFlags().then(e=>(this.adminFlags=e.data,!0)).catch(console.error)},async loadProfile(){return rn.getProfile().then(e=>(this.user=e.data,!0)).catch(console.debug)},async login(e,t=!0){const n=nr();await rn.login(e).then(()=>(t&&n.clearErrors(),this.loadProfile())).catch(n.setErrors)},async register(e){const t=nr();await rn.register(e).then(()=>(t.clearErrors(),this.login(e))).catch(t.setErrors)},logout(){rn.logout().then(()=>(this.user=void 0,!0)).catch(console.error)},async changePassword(e){const t={username:this.user.username,password:e.password},n=nr();await rn.updatePassword(e).then(r=>(n.setSuccess(r.data.detail),this.login(t,!1))).catch(n.setErrors)},async setTimezone(){await rn.updateTimezone().catch(console.error)}}}),pg="modulepreload",mg=function(e){return window.CODEX.APP_PATH + "static"+"/"+e},Wa={},ft=function(t,n,r){let s=Promise.resolve();if(n&&n.length>0){let i=function(u){return Promise.all(u.map(l=>Promise.resolve(l).then(f=>({status:"fulfilled",value:f}),f=>({status:"rejected",reason:f}))))};document.getElementsByTagName("link");const a=document.querySelector("meta[property=csp-nonce]"),c=(a==null?void 0:a.nonce)||(a==null?void 0:a.getAttribute("nonce"));s=i(n.map(u=>{if(u=mg(u),u in Wa)return;Wa[u]=!0;const l=u.endsWith(".css"),f=l?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${u}"]${f}`))return;const d=document.createElement("link");if(d.rel=l?"stylesheet":pg,l||(d.as="script"),d.crossOrigin="",d.href=u,c&&d.setAttribute("nonce",c),document.head.appendChild(d),l)return new Promise((m,h)=>{d.addEventListener("load",m),d.addEventListener("error",()=>h(new Error(`Unable to preload CSS for ${u}`)))})}))}function o(i){const a=new Event("vite:preloadError",{cancelable:!0});if(a.payload=i,window.dispatchEvent(a),!a.defaultPrevented)throw i}return s.then(i=>{for(const a of i||[])a.status==="rejected"&&o(a.reason);return t().catch(o)})},kt={ADMIN_FLAGS:"ADMIN_FLAGS_CHANGED",BOOKMARK:"BOOKMARK_CHANGED",COVERS:"COVERS_CHANGED",FAILED_IMPORTS:"FAILED_IMPORTS",GROUPS:"GROUPS_CHANGED",LIBRARY:"LIBRARY_CHANGED",LIBRARIAN_STATUS:"LIBRARIAN_STATUS",USERS:"USERS_CHANGED"};/*!
|
|
28
|
-
* vue-router v4.5.1
|
|
29
|
-
* (c) 2025 Eduardo San Martin Morote
|
|
30
|
-
* @license MIT
|
|
31
|
-
*/const Ln=typeof document<"u";function tf(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function gg(e){return e.__esModule||e[Symbol.toStringTag]==="Module"||e.default&&tf(e.default)}const ce=Object.assign;function ro(e,t){const n={};for(const r in t){const s=t[r];n[r]=ct(s)?s.map(e):e(s)}return n}const rr=()=>{},ct=Array.isArray,nf=/#/g,vg=/&/g,yg=/\//g,bg=/=/g,Sg=/\?/g,rf=/\+/g,Cg=/%5B/g,Ag=/%5D/g,sf=/%5E/g,Eg=/%60/g,of=/%7B/g,Lg=/%7C/g,af=/%7D/g,wg=/%20/g;function wi(e){return encodeURI(""+e).replace(Lg,"|").replace(Cg,"[").replace(Ag,"]")}function Tg(e){return wi(e).replace(of,"{").replace(af,"}").replace(sf,"^")}function Fo(e){return wi(e).replace(rf,"%2B").replace(wg,"+").replace(nf,"%23").replace(vg,"%26").replace(Eg,"`").replace(of,"{").replace(af,"}").replace(sf,"^")}function xg(e){return Fo(e).replace(bg,"%3D")}function Rg(e){return wi(e).replace(nf,"%23").replace(Sg,"%3F")}function Og(e){return e==null?"":Rg(e).replace(yg,"%2F")}function hr(e){try{return decodeURIComponent(""+e)}catch{}return""+e}const Pg=/\/$/,Mg=e=>e.replace(Pg,"");function so(e,t,n="/"){let r,s={},o="",i="";const a=t.indexOf("#");let c=t.indexOf("?");return a<c&&a>=0&&(c=-1),c>-1&&(r=t.slice(0,c),o=t.slice(c+1,a>-1?a:t.length),s=e(o)),a>-1&&(r=r||t.slice(0,a),i=t.slice(a,t.length)),r=Vg(r??t,n),{fullPath:r+(o&&"?")+o+i,path:r,query:s,hash:hr(i)}}function Ig(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function Ga(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function Hg(e,t,n){const r=t.matched.length-1,s=n.matched.length-1;return r>-1&&r===s&&In(t.matched[r],n.matched[s])&&cf(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function In(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function cf(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!Dg(e[n],t[n]))return!1;return!0}function Dg(e,t){return ct(e)?Ka(e,t):ct(t)?Ka(t,e):e===t}function Ka(e,t){return ct(t)?e.length===t.length&&e.every((n,r)=>n===t[r]):e.length===1&&e[0]===t}function Vg(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),r=e.split("/"),s=r[r.length-1];(s===".."||s===".")&&r.push("");let o=n.length-1,i,a;for(i=0;i<r.length;i++)if(a=r[i],a!==".")if(a==="..")o>1&&o--;else break;return n.slice(0,o).join("/")+"/"+r.slice(i).join("/")}const Nt={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0};var pr;(function(e){e.pop="pop",e.push="push"})(pr||(pr={}));var sr;(function(e){e.back="back",e.forward="forward",e.unknown=""})(sr||(sr={}));function Fg(e){if(!e)if(Ln){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),Mg(e)}const kg=/^[^#]+#/;function Ng(e,t){return e.replace(kg,"#")+t}function jg(e,t){const n=document.documentElement.getBoundingClientRect(),r=e.getBoundingClientRect();return{behavior:t.behavior,left:r.left-n.left-(t.left||0),top:r.top-n.top-(t.top||0)}}const ks=()=>({left:window.scrollX,top:window.scrollY});function $g(e){let t;if("el"in e){const n=e.el,r=typeof n=="string"&&n.startsWith("#"),s=typeof n=="string"?r?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!s)return;t=jg(s,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.scrollX,t.top!=null?t.top:window.scrollY)}function za(e,t){return(history.state?history.state.position-t:-1)+e}const ko=new Map;function Bg(e,t){ko.set(e,t)}function Ug(e){const t=ko.get(e);return ko.delete(e),t}let Wg=()=>location.protocol+"//"+location.host;function lf(e,t){const{pathname:n,search:r,hash:s}=t,o=e.indexOf("#");if(o>-1){let a=s.includes(e.slice(o))?e.slice(o).length:1,c=s.slice(a);return c[0]!=="/"&&(c="/"+c),Ga(c,"")}return Ga(n,e)+r+s}function Gg(e,t,n,r){let s=[],o=[],i=null;const a=({state:d})=>{const m=lf(e,location),h=n.value,p=t.value;let g=0;if(d){if(n.value=m,t.value=d,i&&i===h){i=null;return}g=p?d.position-p.position:0}else r(m);s.forEach(v=>{v(n.value,h,{delta:g,type:pr.pop,direction:g?g>0?sr.forward:sr.back:sr.unknown})})};function c(){i=n.value}function u(d){s.push(d);const m=()=>{const h=s.indexOf(d);h>-1&&s.splice(h,1)};return o.push(m),m}function l(){const{history:d}=window;d.state&&d.replaceState(ce({},d.state,{scroll:ks()}),"")}function f(){for(const d of o)d();o=[],window.removeEventListener("popstate",a),window.removeEventListener("beforeunload",l)}return window.addEventListener("popstate",a),window.addEventListener("beforeunload",l,{passive:!0}),{pauseListeners:c,listen:u,destroy:f}}function Za(e,t,n,r=!1,s=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:s?ks():null}}function Kg(e){const{history:t,location:n}=window,r={value:lf(e,n)},s={value:t.state};s.value||o(r.value,{back:null,current:r.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function o(c,u,l){const f=e.indexOf("#"),d=f>-1?(n.host&&document.querySelector("base")?e:e.slice(f))+c:Wg()+e+c;try{t[l?"replaceState":"pushState"](u,"",d),s.value=u}catch(m){console.error(m),n[l?"replace":"assign"](d)}}function i(c,u){const l=ce({},t.state,Za(s.value.back,c,s.value.forward,!0),u,{position:s.value.position});o(c,l,!0),r.value=c}function a(c,u){const l=ce({},s.value,t.state,{forward:c,scroll:ks()});o(l.current,l,!0);const f=ce({},Za(r.value,c,null),{position:l.position+1},u);o(c,f,!1),r.value=c}return{location:r,state:s,push:a,replace:i}}function zg(e){e=Fg(e);const t=Kg(e),n=Gg(e,t.state,t.location,t.replace);function r(o,i=!0){i||n.pauseListeners(),history.go(o)}const s=ce({location:"",base:e,go:r,createHref:Ng.bind(null,e)},t,n);return Object.defineProperty(s,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(s,"state",{enumerable:!0,get:()=>t.state.value}),s}function Zg(e){return typeof e=="string"||e&&typeof e=="object"}function uf(e){return typeof e=="string"||typeof e=="symbol"}const ff=Symbol("");var Ya;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(Ya||(Ya={}));function Hn(e,t){return ce(new Error,{type:e,[ff]:!0},t)}function Et(e,t){return e instanceof Error&&ff in e&&(t==null||!!(e.type&t))}const Ja="[^/]+?",Yg={sensitive:!1,strict:!1,start:!0,end:!0},Jg=/[.+*?^${}()[\]/\\]/g;function Xg(e,t){const n=ce({},Yg,t),r=[];let s=n.start?"^":"";const o=[];for(const u of e){const l=u.length?[]:[90];n.strict&&!u.length&&(s+="/");for(let f=0;f<u.length;f++){const d=u[f];let m=40+(n.sensitive?.25:0);if(d.type===0)f||(s+="/"),s+=d.value.replace(Jg,"\\$&"),m+=40;else if(d.type===1){const{value:h,repeatable:p,optional:g,regexp:v}=d;o.push({name:h,repeatable:p,optional:g});const b=v||Ja;if(b!==Ja){m+=10;try{new RegExp(`(${b})`)}catch(E){throw new Error(`Invalid custom RegExp for param "${h}" (${b}): `+E.message)}}let S=p?`((?:${b})(?:/(?:${b}))*)`:`(${b})`;f||(S=g&&u.length<2?`(?:/${S})`:"/"+S),g&&(S+="?"),s+=S,m+=20,g&&(m+=-8),p&&(m+=-20),b===".*"&&(m+=-50)}l.push(m)}r.push(l)}if(n.strict&&n.end){const u=r.length-1;r[u][r[u].length-1]+=.7000000000000001}n.strict||(s+="/?"),n.end?s+="$":n.strict&&!s.endsWith("/")&&(s+="(?:/|$)");const i=new RegExp(s,n.sensitive?"":"i");function a(u){const l=u.match(i),f={};if(!l)return null;for(let d=1;d<l.length;d++){const m=l[d]||"",h=o[d-1];f[h.name]=m&&h.repeatable?m.split("/"):m}return f}function c(u){let l="",f=!1;for(const d of e){(!f||!l.endsWith("/"))&&(l+="/"),f=!1;for(const m of d)if(m.type===0)l+=m.value;else if(m.type===1){const{value:h,repeatable:p,optional:g}=m,v=h in u?u[h]:"";if(ct(v)&&!p)throw new Error(`Provided param "${h}" is an array but it is not repeatable (* or + modifiers)`);const b=ct(v)?v.join("/"):v;if(!b)if(g)d.length<2&&(l.endsWith("/")?l=l.slice(0,-1):f=!0);else throw new Error(`Missing required param "${h}"`);l+=b}}return l||"/"}return{re:i,score:r,keys:o,parse:a,stringify:c}}function Qg(e,t){let n=0;for(;n<e.length&&n<t.length;){const r=t[n]-e[n];if(r)return r;n++}return e.length<t.length?e.length===1&&e[0]===80?-1:1:e.length>t.length?t.length===1&&t[0]===80?1:-1:0}function df(e,t){let n=0;const r=e.score,s=t.score;for(;n<r.length&&n<s.length;){const o=Qg(r[n],s[n]);if(o)return o;n++}if(Math.abs(s.length-r.length)===1){if(Xa(r))return 1;if(Xa(s))return-1}return s.length-r.length}function Xa(e){const t=e[e.length-1];return e.length>0&&t[t.length-1]<0}const _g={type:0,value:""},qg=/[a-zA-Z0-9_]/;function e0(e){if(!e)return[[]];if(e==="/")return[[_g]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(m){throw new Error(`ERR (${n})/"${u}": ${m}`)}let n=0,r=n;const s=[];let o;function i(){o&&s.push(o),o=[]}let a=0,c,u="",l="";function f(){u&&(n===0?o.push({type:0,value:u}):n===1||n===2||n===3?(o.length>1&&(c==="*"||c==="+")&&t(`A repeatable param (${u}) must be alone in its segment. eg: '/:ids+.`),o.push({type:1,value:u,regexp:l,repeatable:c==="*"||c==="+",optional:c==="*"||c==="?"})):t("Invalid state to consume buffer"),u="")}function d(){u+=c}for(;a<e.length;){if(c=e[a++],c==="\\"&&n!==2){r=n,n=4;continue}switch(n){case 0:c==="/"?(u&&f(),i()):c===":"?(f(),n=1):d();break;case 4:d(),n=r;break;case 1:c==="("?n=2:qg.test(c)?d():(f(),n=0,c!=="*"&&c!=="?"&&c!=="+"&&a--);break;case 2:c===")"?l[l.length-1]=="\\"?l=l.slice(0,-1)+c:n=3:l+=c;break;case 3:f(),n=0,c!=="*"&&c!=="?"&&c!=="+"&&a--,l="";break;default:t("Unknown state");break}}return n===2&&t(`Unfinished custom RegExp for param "${u}"`),f(),i(),s}function t0(e,t,n){const r=Xg(e0(e.path),n),s=ce(r,{record:e,parent:t,children:[],alias:[]});return t&&!s.record.aliasOf==!t.record.aliasOf&&t.children.push(s),s}function n0(e,t){const n=[],r=new Map;t=ec({strict:!1,end:!0,sensitive:!1},t);function s(f){return r.get(f)}function o(f,d,m){const h=!m,p=_a(f);p.aliasOf=m&&m.record;const g=ec(t,f),v=[p];if("alias"in f){const E=typeof f.alias=="string"?[f.alias]:f.alias;for(const x of E)v.push(_a(ce({},p,{components:m?m.record.components:p.components,path:x,aliasOf:m?m.record:p})))}let b,S;for(const E of v){const{path:x}=E;if(d&&x[0]!=="/"){const T=d.record.path,P=T[T.length-1]==="/"?"":"/";E.path=d.record.path+(x&&P+x)}if(b=t0(E,d,g),m?m.alias.push(b):(S=S||b,S!==b&&S.alias.push(b),h&&f.name&&!qa(b)&&i(f.name)),hf(b)&&c(b),p.children){const T=p.children;for(let P=0;P<T.length;P++)o(T[P],b,m&&m.children[P])}m=m||b}return S?()=>{i(S)}:rr}function i(f){if(uf(f)){const d=r.get(f);d&&(r.delete(f),n.splice(n.indexOf(d),1),d.children.forEach(i),d.alias.forEach(i))}else{const d=n.indexOf(f);d>-1&&(n.splice(d,1),f.record.name&&r.delete(f.record.name),f.children.forEach(i),f.alias.forEach(i))}}function a(){return n}function c(f){const d=o0(f,n);n.splice(d,0,f),f.record.name&&!qa(f)&&r.set(f.record.name,f)}function u(f,d){let m,h={},p,g;if("name"in f&&f.name){if(m=r.get(f.name),!m)throw Hn(1,{location:f});g=m.record.name,h=ce(Qa(d.params,m.keys.filter(S=>!S.optional).concat(m.parent?m.parent.keys.filter(S=>S.optional):[]).map(S=>S.name)),f.params&&Qa(f.params,m.keys.map(S=>S.name))),p=m.stringify(h)}else if(f.path!=null)p=f.path,m=n.find(S=>S.re.test(p)),m&&(h=m.parse(p),g=m.record.name);else{if(m=d.name?r.get(d.name):n.find(S=>S.re.test(d.path)),!m)throw Hn(1,{location:f,currentLocation:d});g=m.record.name,h=ce({},d.params,f.params),p=m.stringify(h)}const v=[];let b=m;for(;b;)v.unshift(b.record),b=b.parent;return{name:g,path:p,params:h,matched:v,meta:s0(v)}}e.forEach(f=>o(f));function l(){n.length=0,r.clear()}return{addRoute:o,resolve:u,removeRoute:i,clearRoutes:l,getRoutes:a,getRecordMatcher:s}}function Qa(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}function _a(e){const t={path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:e.aliasOf,beforeEnter:e.beforeEnter,props:r0(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}};return Object.defineProperty(t,"mods",{value:{}}),t}function r0(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const r in e.components)t[r]=typeof n=="object"?n[r]:n;return t}function qa(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function s0(e){return e.reduce((t,n)=>ce(t,n.meta),{})}function ec(e,t){const n={};for(const r in e)n[r]=r in t?t[r]:e[r];return n}function o0(e,t){let n=0,r=t.length;for(;n!==r;){const o=n+r>>1;df(e,t[o])<0?r=o:n=o+1}const s=i0(e);return s&&(r=t.lastIndexOf(s,r-1)),r}function i0(e){let t=e;for(;t=t.parent;)if(hf(t)&&df(e,t)===0)return t}function hf({record:e}){return!!(e.name||e.components&&Object.keys(e.components).length||e.redirect)}function a0(e){const t={};if(e===""||e==="?")return t;const r=(e[0]==="?"?e.slice(1):e).split("&");for(let s=0;s<r.length;++s){const o=r[s].replace(rf," "),i=o.indexOf("="),a=hr(i<0?o:o.slice(0,i)),c=i<0?null:hr(o.slice(i+1));if(a in t){let u=t[a];ct(u)||(u=t[a]=[u]),u.push(c)}else t[a]=c}return t}function tc(e){let t="";for(let n in e){const r=e[n];if(n=xg(n),r==null){r!==void 0&&(t+=(t.length?"&":"")+n);continue}(ct(r)?r.map(o=>o&&Fo(o)):[r&&Fo(r)]).forEach(o=>{o!==void 0&&(t+=(t.length?"&":"")+n,o!=null&&(t+="="+o))})}return t}function c0(e){const t={};for(const n in e){const r=e[n];r!==void 0&&(t[n]=ct(r)?r.map(s=>s==null?null:""+s):r==null?r:""+r)}return t}const l0=Symbol(""),nc=Symbol(""),Ti=Symbol(""),pf=Symbol(""),No=Symbol("");function Gn(){let e=[];function t(r){return e.push(r),()=>{const s=e.indexOf(r);s>-1&&e.splice(s,1)}}function n(){e=[]}return{add:t,list:()=>e.slice(),reset:n}}function Kt(e,t,n,r,s,o=i=>i()){const i=r&&(r.enterCallbacks[s]=r.enterCallbacks[s]||[]);return()=>new Promise((a,c)=>{const u=d=>{d===!1?c(Hn(4,{from:n,to:t})):d instanceof Error?c(d):Zg(d)?c(Hn(2,{from:t,to:d})):(i&&r.enterCallbacks[s]===i&&typeof d=="function"&&i.push(d),a())},l=o(()=>e.call(r&&r.instances[s],t,n,u));let f=Promise.resolve(l);e.length<3&&(f=f.then(u)),f.catch(d=>c(d))})}function oo(e,t,n,r,s=o=>o()){const o=[];for(const i of e)for(const a in i.components){let c=i.components[a];if(!(t!=="beforeRouteEnter"&&!i.instances[a]))if(tf(c)){const l=(c.__vccOpts||c)[t];l&&o.push(Kt(l,n,r,i,a,s))}else{let u=c();o.push(()=>u.then(l=>{if(!l)throw new Error(`Couldn't resolve component "${a}" at "${i.path}"`);const f=gg(l)?l.default:l;i.mods[a]=l,i.components[a]=f;const m=(f.__vccOpts||f)[t];return m&&Kt(m,n,r,i,a,s)()}))}}return o}function rc(e){const t=Ce(Ti),n=Ce(pf),r=ie(()=>{const c=qe(e.to);return t.resolve(c)}),s=ie(()=>{const{matched:c}=r.value,{length:u}=c,l=c[u-1],f=n.matched;if(!l||!f.length)return-1;const d=f.findIndex(In.bind(null,l));if(d>-1)return d;const m=sc(c[u-2]);return u>1&&sc(l)===m&&f[f.length-1].path!==m?f.findIndex(In.bind(null,c[u-2])):d}),o=ie(()=>s.value>-1&&p0(n.params,r.value.params)),i=ie(()=>s.value>-1&&s.value===n.matched.length-1&&cf(n.params,r.value.params));function a(c={}){if(h0(c)){const u=t[qe(e.replace)?"replace":"push"](qe(e.to)).catch(rr);return e.viewTransition&&typeof document<"u"&&"startViewTransition"in document&&document.startViewTransition(()=>u),u}return Promise.resolve()}return{route:r,href:ie(()=>r.value.href),isActive:o,isExactActive:i,navigate:a}}function u0(e){return e.length===1?e[0]:e}const f0=Es({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"},viewTransition:Boolean},useLink:rc,setup(e,{slots:t}){const n=Ge(rc(e)),{options:r}=Ce(Ti),s=ie(()=>({[oc(e.activeClass,r.linkActiveClass,"router-link-active")]:n.isActive,[oc(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const o=t.default&&u0(t.default(n));return e.custom?o:Rs("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:s.value},o)}}}),d0=f0;function h0(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function p0(e,t){for(const n in t){const r=t[n],s=e[n];if(typeof r=="string"){if(r!==s)return!1}else if(!ct(s)||s.length!==r.length||r.some((o,i)=>o!==s[i]))return!1}return!0}function sc(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const oc=(e,t,n)=>e??t??n,m0=Es({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const r=Ce(No),s=ie(()=>e.route||r.value),o=Ce(nc,0),i=ie(()=>{let u=qe(o);const{matched:l}=s.value;let f;for(;(f=l[u])&&!f.components;)u++;return u}),a=ie(()=>s.value.matched[i.value]);Ot(nc,ie(()=>i.value+1)),Ot(l0,a),Ot(No,s);const c=Fe();return tt(()=>[c.value,a.value,e.name],([u,l,f],[d,m,h])=>{l&&(l.instances[f]=u,m&&m!==l&&u&&u===d&&(l.leaveGuards.size||(l.leaveGuards=m.leaveGuards),l.updateGuards.size||(l.updateGuards=m.updateGuards))),u&&l&&(!m||!In(l,m)||!d)&&(l.enterCallbacks[f]||[]).forEach(p=>p(u))},{flush:"post"}),()=>{const u=s.value,l=e.name,f=a.value,d=f&&f.components[l];if(!d)return ic(n.default,{Component:d,route:u});const m=f.props[l],h=m?m===!0?u.params:typeof m=="function"?m(u):m:null,g=Rs(d,ce({},h,t,{onVnodeUnmounted:v=>{v.component.isUnmounted&&(f.instances[l]=null)},ref:c}));return ic(n.default,{Component:g,route:u})||g}}});function ic(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const g0=m0;function v0(e){const t=n0(e.routes,e),n=e.parseQuery||a0,r=e.stringifyQuery||tc,s=e.history,o=Gn(),i=Gn(),a=Gn(),c=it(Nt);let u=Nt;Ln&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const l=ro.bind(null,H=>""+H),f=ro.bind(null,Og),d=ro.bind(null,hr);function m(H,B){let U,z;return uf(H)?(U=t.getRecordMatcher(H),z=B):z=H,t.addRoute(z,U)}function h(H){const B=t.getRecordMatcher(H);B&&t.removeRoute(B)}function p(){return t.getRoutes().map(H=>H.record)}function g(H){return!!t.getRecordMatcher(H)}function v(H,B){if(B=ce({},B||c.value),typeof H=="string"){const w=so(n,H,B.path),D=t.resolve({path:w.path},B),F=s.createHref(w.fullPath);return ce(w,D,{params:d(D.params),hash:hr(w.hash),redirectedFrom:void 0,href:F})}let U;if(H.path!=null)U=ce({},H,{path:so(n,H.path,B.path).path});else{const w=ce({},H.params);for(const D in w)w[D]==null&&delete w[D];U=ce({},H,{params:f(w)}),B.params=f(B.params)}const z=t.resolve(U,B),de=H.hash||"";z.params=l(d(z.params));const y=Ig(r,ce({},H,{hash:Tg(de),path:z.path})),C=s.createHref(y);return ce({fullPath:y,hash:de,query:r===tc?c0(H.query):H.query||{}},z,{redirectedFrom:void 0,href:C})}function b(H){return typeof H=="string"?so(n,H,c.value.path):ce({},H)}function S(H,B){if(u!==H)return Hn(8,{from:B,to:H})}function E(H){return P(H)}function x(H){return E(ce(b(H),{replace:!0}))}function T(H){const B=H.matched[H.matched.length-1];if(B&&B.redirect){const{redirect:U}=B;let z=typeof U=="function"?U(H):U;return typeof z=="string"&&(z=z.includes("?")||z.includes("#")?z=b(z):{path:z},z.params={}),ce({query:H.query,hash:H.hash,params:z.path!=null?{}:H.params},z)}}function P(H,B){const U=u=v(H),z=c.value,de=H.state,y=H.force,C=H.replace===!0,w=T(U);if(w)return P(ce(b(w),{state:typeof w=="object"?ce({},de,w.state):de,force:y,replace:C}),B||U);const D=U;D.redirectedFrom=B;let F;return!y&&Hg(r,z,U)&&(F=Hn(16,{to:D,from:z}),Le(z,z,!0,!1)),(F?Promise.resolve(F):R(D,z)).catch(V=>Et(V)?Et(V,2)?V:ae(V):Z(V,D,z)).then(V=>{if(V){if(Et(V,2))return P(ce({replace:C},b(V.to),{state:typeof V.to=="object"?ce({},de,V.to.state):de,force:y}),B||D)}else V=O(D,z,!0,C,de);return I(D,z,V),V})}function L(H,B){const U=S(H,B);return U?Promise.reject(U):Promise.resolve()}function A(H){const B=nt.values().next().value;return B&&typeof B.runWithContext=="function"?B.runWithContext(H):H()}function R(H,B){let U;const[z,de,y]=y0(H,B);U=oo(z.reverse(),"beforeRouteLeave",H,B);for(const w of z)w.leaveGuards.forEach(D=>{U.push(Kt(D,H,B))});const C=L.bind(null,H,B);return U.push(C),$e(U).then(()=>{U=[];for(const w of o.list())U.push(Kt(w,H,B));return U.push(C),$e(U)}).then(()=>{U=oo(de,"beforeRouteUpdate",H,B);for(const w of de)w.updateGuards.forEach(D=>{U.push(Kt(D,H,B))});return U.push(C),$e(U)}).then(()=>{U=[];for(const w of y)if(w.beforeEnter)if(ct(w.beforeEnter))for(const D of w.beforeEnter)U.push(Kt(D,H,B));else U.push(Kt(w.beforeEnter,H,B));return U.push(C),$e(U)}).then(()=>(H.matched.forEach(w=>w.enterCallbacks={}),U=oo(y,"beforeRouteEnter",H,B,A),U.push(C),$e(U))).then(()=>{U=[];for(const w of i.list())U.push(Kt(w,H,B));return U.push(C),$e(U)}).catch(w=>Et(w,8)?w:Promise.reject(w))}function I(H,B,U){a.list().forEach(z=>A(()=>z(H,B,U)))}function O(H,B,U,z,de){const y=S(H,B);if(y)return y;const C=B===Nt,w=Ln?history.state:{};U&&(z||C?s.replace(H.fullPath,ce({scroll:C&&w&&w.scroll},de)):s.push(H.fullPath,de)),c.value=H,Le(H,B,U,C),ae()}let k;function X(){k||(k=s.listen((H,B,U)=>{const z=v(H),de=T(z);if(de){P(ce(de,{replace:!0,force:!0}),z).catch(rr);return}u=z;const y=c.value;Ln&&Bg(za(y.fullPath,U.delta),ks()),R(z,y).catch(C=>Et(C,12)?C:Et(C,2)?(P(ce(b(C.to),{force:!0}),z).then(w=>{Et(w,20)&&!U.delta&&U.type===pr.pop&&s.go(-1,!1)}).catch(rr),Promise.reject()):(U.delta&&s.go(-U.delta,!1),Z(C,z,y))).then(C=>{C=C||O(z,y,!1),C&&(U.delta&&!Et(C,8)?s.go(-U.delta,!1):U.type===pr.pop&&Et(C,20)&&s.go(-1,!1)),I(z,y,C)}).catch(rr)}))}let re=Gn(),ee=Gn(),K;function Z(H,B,U){ae(H);const z=ee.list();return z.length?z.forEach(de=>de(H,B,U)):console.error(H),Promise.reject(H)}function fe(){return K&&c.value!==Nt?Promise.resolve():new Promise((H,B)=>{re.add([H,B])})}function ae(H){return K||(K=!H,X(),re.list().forEach(([B,U])=>H?U(H):B()),re.reset()),H}function Le(H,B,U,z){const{scrollBehavior:de}=e;if(!Ln||!de)return Promise.resolve();const y=!U&&Ug(za(H.fullPath,0))||(z||!U)&&history.state&&history.state.scroll||null;return As().then(()=>de(H,B,y)).then(C=>C&&$g(C)).catch(C=>Z(C,H,B))}const ye=H=>s.go(H);let we;const nt=new Set,qt={currentRoute:c,listening:!0,addRoute:m,removeRoute:h,clearRoutes:t.clearRoutes,hasRoute:g,getRoutes:p,resolve:v,options:e,push:E,replace:x,go:ye,back:()=>ye(-1),forward:()=>ye(1),beforeEach:o.add,beforeResolve:i.add,afterEach:a.add,onError:ee.add,isReady:fe,install(H){const B=this;H.component("RouterLink",d0),H.component("RouterView",g0),H.config.globalProperties.$router=B,Object.defineProperty(H.config.globalProperties,"$route",{enumerable:!0,get:()=>qe(c)}),Ln&&!we&&c.value===Nt&&(we=!0,E(s.location).catch(de=>{}));const U={};for(const de in Nt)Object.defineProperty(U,de,{get:()=>c.value[de],enumerable:!0});H.provide(Ti,B),H.provide(pf,Cl(U)),H.provide(No,c);const z=H.unmount;nt.add(H),H.unmount=function(){nt.delete(H),nt.size<1&&(u=Nt,k&&k(),k=null,c.value=Nt,we=!1,K=!1),z()}}};function $e(H){return H.reduce((B,U)=>B.then(()=>A(U)),Promise.resolve())}return qt}function y0(e,t){const n=[],r=[],s=[],o=Math.max(t.matched.length,e.matched.length);for(let i=0;i<o;i++){const a=t.matched[i];a&&(e.matched.find(u=>In(u,a))?r.push(a):n.push(a));const c=e.matched[i];c&&(t.matched.find(u=>In(u,c))||s.push(c))}return[n,r,s]}const b0="",mf=[{group:"r",pks:"0",page:1}],S0=!0,C0=!0,A0="sort_name",E0=!1,L0="",w0={i:!1,p:!0,s:!0,v:!1},T0="p",x0=!1,We={bookmarkFilter:b0,breadcrumbs:mf,customCovers:S0,dynamicCovers:C0,orderBy:A0,orderReverse:E0,q:L0,show:w0,topGroup:T0,twentyFourHourTime:x0},R0=()=>ft(()=>import("./admin-BiuZANLl.js"),__vite__mapDeps([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22])),O0=()=>ft(()=>import("./browser-D0QppR66.js"),__vite__mapDeps([23,1,2,3,4,5,6,7,8,9,10,11,12,13,14,24,25,26,27,17,18,28,29,30,31,32,33,34,35,36,37,15,16,19,38,39,40])),P0=()=>ft(()=>import("./http-error-CrojtCix.js"),__vite__mapDeps([41,1,2,3,4,5,6,7,8,9,10,11,12,13,14,42])),M0=()=>ft(()=>import("./reader-D3uSXJi4.js").then(e=>e.r),__vite__mapDeps([43,15,3,4,1,2,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,27,28,29,34,32,33,35,36,37,44,45,46,47,38,39,24,25,48])),I0=()=>ft(()=>import("./flag-tab-kXJbxWWt.js"),__vite__mapDeps([49,11,32,3,4,33,8,9,38,28,39,50])),H0=()=>ft(()=>import("./user-tab-CI1MB3ic.js"),__vite__mapDeps([51,52,3,4,7,2,5,8,9,10,11,27,13,17,18,28,29,32,33,30,35,36,53,38,39,54,55,6,12])),D0=()=>ft(()=>import("./group-tab-jH91_dZ-.js"),__vite__mapDeps([56,52,3,4,7,2,5,8,9,10,11,27,13,17,18,28,29,32,33,30,35,36,53,46,47,57])),V0=()=>ft(()=>import("./library-tab-BzOyajRi.js"),__vite__mapDeps([58,52,3,4,7,2,5,8,9,10,11,27,13,17,18,28,29,32,33,30,35,36,53,26,31,38,39,54,55,44,45,59])),F0=()=>ft(()=>import("./task-tab-fAvDZsSF.js"),__vite__mapDeps([60,35,2,3,4,5,36,11,27,8,9,13,17,18,28,29,61])),k0=()=>ft(()=>import("./stats-tab-aWxmJFqf.js"),__vite__mapDeps([62,32,3,4,33,35,2,5,36,16,11,63])),N0={name:"browser",params:globalThis.CODEX.LAST_ROUTE||mf[0]},j0=[{name:"home",path:"/",redirect:N0},{name:"reader",path:"/c/:pk/:page",component:M0},{name:"browser",path:"/:group/:pks/:page",component:O0},{name:"admin",path:"/admin",component:R0,redirect:"/admin/libraries",children:[{name:"admin-users",path:"users",component:H0},{name:"admin-groups",path:"groups",component:D0},{name:"admin-libraries",path:"libraries",component:V0},{name:"admin-flags",path:"flags",component:I0},{name:"admin-tasks",path:"tasks",component:F0},{name:"admin-stats",path:"stats",component:k0}]},{name:"error",path:"/error/:code",component:P0,props:!0},{name:"404",path:"/:pathMatch(.*)*",redirect:"/error/404"}],ne=new v0({history:zg(globalThis.CODEX.APP_PATH),routes:j0});function st(e,t,n=new Map){const r=n.get(e);if(typeof r<"u")return r;if(Array.isArray(e)){const i=[];n.set(e,i);for(let a=0;a<e.length;a++)i[a]=st(e[a],t,n);return i}if(e instanceof Date)return new Date(e.valueOf());if(!(e instanceof Object))return e;const s={};n.set(e,s);const o=Object.keys(e);for(let i=0;i<o.length;i++){const a=typeof t=="function"?t(o[i]):o[i];s[a]=st(e[o[i]],t,n)}return s}function $0(e){return t=>st(t,e)}st.formatKeys=$0;var ac=Object.prototype.hasOwnProperty;function cc(e,t,n){for(n of e.keys())if(pn(n,t))return n}function pn(e,t){var n,r,s;if(e===t)return!0;if(e&&t&&(n=e.constructor)===t.constructor){if(n===Date)return e.getTime()===t.getTime();if(n===RegExp)return e.toString()===t.toString();if(n===Array){if((r=e.length)===t.length)for(;r--&&pn(e[r],t[r]););return r===-1}if(n===Set){if(e.size!==t.size)return!1;for(r of e)if(s=r,s&&typeof s=="object"&&(s=cc(t,s),!s)||!t.has(s))return!1;return!0}if(n===Map){if(e.size!==t.size)return!1;for(r of e)if(s=r[0],s&&typeof s=="object"&&(s=cc(t,s),!s)||!pn(r[1],t.get(s)))return!1;return!0}if(n===ArrayBuffer)e=new Uint8Array(e),t=new Uint8Array(t);else if(n===DataView){if((r=e.byteLength)===t.byteLength)for(;r--&&e.getInt8(r)===t.getInt8(r););return r===-1}if(ArrayBuffer.isView(e)){if((r=e.byteLength)===t.byteLength)for(;r--&&e[r]===t[r];);return r===-1}if(!n||typeof e=="object"){r=0;for(n in e)if(ac.call(e,n)&&++r&&!ac.call(t,n)||!(n in t)||!pn(e[n],t[n]))return!1;return Object.keys(t).length===r}}return e!==e&&t!==t}const xi=({group:e,pks:t,query:n,ts:r})=>{const s=ut(n,r),o=new URLSearchParams(s).toString(),i=t.join(",");return{hrefPath:`${e}/${i}`,queryString:o}},B0=({group:e,pks:t,query:n})=>{const r=globalThis.CODEX.APP_PATH,{hrefPath:s,queryString:o}=xi({group:e,pks:t,query:n});return`${r}${s}/1?${o}`},U0=({group:e,pks:t},n,r)=>{const s=globalThis.CODEX.API_V3_PATH;delete n.show;const{hrefPath:o,queryString:i}=xi({group:e,pks:t,query:n,ts:r});return`${s}${o}/cover.webp?${i}`},W0=({group:e,pks:t},n,r)=>{const s=ut(n,r);return Ee.get(`/${e}/${t}/choices_available`,{params:s})},G0=({group:e,pks:t},n,r,s)=>{const o=ut(r,s);return Ee.get(`/${e}/${t}/choices/${n}`,{params:o})},K0=({group:e,pks:t,page:n},r,s)=>{const o=ut(r,s);return Ee.get(`/${e}/${t}/${n}`,{params:o})},z0=({group:e,pks:t},n)=>{const r=t.join(","),s=Math.max(e.mtime,n.mtime),o=st(n);delete o.mtime;const i=ut(o,s);return Ee.get(`/${e}/${r}/metadata`,{params:i})},Z0=e=>{const t=ut(e);return Ee.get("/r/settings",{params:t})},Y0=e=>Ee.patch("/r/settings",e),J0=({group:e,pks:t},n,r,s)=>{const o=globalThis.CODEX.API_V3_PATH;delete r.show;const{hrefPath:i,queryString:a}=xi({group:e,pks:t,query:r,ts:s});return n=encodeURIComponent(n),`${o}${i}/download/${n}?${a}`},X0=({group:e,ids:t},n,r)=>{const s=ut(n),o=new URLSearchParams(s).toString();r.fitTo===null&&(r.fitTo="");const i=t.join(",");return Ee.patch(`${e}/${i}/bookmark?${o}`,r)},bt={getAvailableFilterChoices:W0,getBrowserHref:B0,getCoverSrc:U0,getFilterChoices:G0,getGroupDownloadURL:J0,getMetadata:z0,getSettings:Z0,getBrowserPage:K0,updateGroupBookmarks:X0,updateSettings:Y0},Q0=[{value:"",title:"All",default:!0},{value:"IN_PROGRESS",title:"In Progress"},{value:"READ",title:"Read"},{value:"UNREAD",title:"Unread"}],_0=[{value:"created_at",title:"Added Time"},{value:"age_rating",title:"Age Rating"},{value:"child_count",title:"Child Count"},{value:"community_rating",title:"Community Rating"},{value:"critical_rating",title:"Critical Rating"},{value:"filename",title:"Filename"},{value:"size",title:"File Size"},{value:"bookmark_updated_at",title:"Last Read"},{value:"sort_name",title:"Name",default:!0},{value:"page_count",title:"Page Count"},{value:"date",title:"Publish Date"},{value:"search_score",title:"Search Score"},{value:"story_arc_number",title:"Story Arc Number"},{value:"updated_at",title:"Updated Time"}],q0=[{value:"p",title:"Publishers",default:!0},{value:"i",title:"Imprints"},{value:"s",title:"Series"},{value:"v",title:"Volumes"},{value:"c",title:"Issues"},{value:"f",title:"Folders"},{value:"a",title:"Story Arcs"}],U5=-1,e2=[{value:"p",title:"Publishers"},{value:"i",title:"Imprints"},{value:"s",title:"Series"},{value:"v",title:"Volumes"}],t2=[{value:"comicvine",title:"Comic Vine"},{value:"comixology",title:"Comixology"},{value:"asin",title:"Amazon"},{value:"gtin",title:"GTIN"},{value:"isbn",title:"ISBN"},{value:"upc",title:"UPC"}],jt={bookmarkFilter:Q0,orderBy:_0,topGroup:q0,settingsGroup:e2,identifierTypes:t2},W5={createdAt:"Added Time",ageRating:"Age Rating",childCount:"Child Count",communityRating:"Community Rating",criticalRating:"Critical Rating",filename:"Filename",size:"File Size",bookmarkUpdatedAt:"Last Read",sortName:"Name",pageCount:"Page Count",date:"Publish Date",searchScore:"Search Score",storyArcNumber:"Story Arc Number",updatedAt:"Updated Time"},lc={p:"Publishers",i:"Imprints",s:"Series",v:"Volumes",c:"Issues",f:"Folders",a:"Story Arcs"},G5={S:"Fit to Screen",W:"Fit to Width",H:"Fit to Height",O:"Original Size"},n2={ltr:"Left to Right",rtl:"Right to Left",ttb:"Top to Bottom",btt:"Bottom to Top"},gf="sv-SE",r2=new Intl.DateTimeFormat(gf),K5=new Intl.NumberFormat,s2=function(e){const t=e?gf:void 0;return new Intl.DateTimeFormat(t,{timeStyle:"medium"})},z5=function(e,t,n=!1){const r=new Date(e),s=r2.format(r),i=s2(t).format(r);return s+(n?"<br />":", ")+i},o2=function(){return Math.floor(Date.now()/1e3)},i2=(e,t=0)=>{e=Number.isInteger(e)&&e>=0?e:0,t=Number.isInteger(t)&&t>=0?t:0;const n=t>e?Math.max(t-e,0):e;let r=[...Array.from({length:n}).keys()];return t>0&&(r=r.map(s=>s+e)),r},vf="rpisvc";Object.freeze(vf);const cn=[...vf].reverse().join("");Object.freeze(cn);const yf=new Set([301,302,303,307,308]);Object.freeze(yf);const bf=new Set([void 0,null,We.bookmarkFilter]);Object.freeze(bf);const Sf=new Set(["a","c"]);Object.freeze(Sf);const Cf=new Set(["a","c","f"]);Object.freeze(Cf);const a2=5e3,Af=["customCovers","dynamicCovers","show"];Object.freeze(Af);const Ef=["filters","orderBy","orderReverse","q"];Object.freeze(Ef);const Lf=["filters","q"];Object.freeze(Lf);const wf=["breadcrumbs"];Object.freeze(wf);const Tf=["filters","q","mtime"];Object.freeze(Tf);const io=e=>{e&&e.params&&ne.push(e).catch(console.warn)},uc=e=>e&&Object.keys(e).length>0||typeof e=="boolean",fc=wr("browser",{state:()=>({choices:{static:Object.freeze({bookmark:jt.bookmarkFilter,groupNames:lc,settingsGroup:jt.settingsGroup,readingDirection:n2,identifierType:jt.identifierTypes}),dynamic:void 0},settings:{breadcrumbs:We.breadcrumbs,customCovers:We.customCovers,dynamicCovers:We.dynamicCovers,filters:{},orderBy:We.orderBy,orderReverse:We.orderReverse,q:We.q,show:We.show,topGroup:We.topGroup,twentyFourHourTime:We.twentyFourHourTime},page:{adminFlags:{folderView:void 0,importMetadata:void 0},title:{groupName:void 0,groupCount:void 0},librariesExist:void 0,modelGroup:void 0,numPages:1,groups:[],books:[],fts:void 0,searchError:void 0,mtime:0},filterMode:"base",zeroPad:0,browserPageLoaded:!1,isSearchOpen:!1,isSearchHelpOpen:!1,searchHideTimeout:void 0}),getters:{groupNames(){const e={};for(const[t,n]of Object.entries(lc))e[t]=n==="Series"?n:n.slice(0,-1);return e},topGroupChoices(){const e=[];for(const t of jt.topGroup)this._isRootGroupEnabled(t.value)&&e.push(t);return e},topGroupChoicesMaxLen(){return this._maxLenChoices(jt.topGroup)},orderByChoices(e){const t=[];for(const n of jt.orderBy)n.value==="path"&&!e.page.adminFlags.folderView||n.value==="child_count"&&e.page.modelGroup==="c"||n.value==="search_score"&&(!e.settings.q||!e.page.fts)||t.push(n);return t},orderByChoicesMaxLen(){return this._maxLenChoices(jt.orderBy)},filterByChoicesMaxLen(){return this._maxLenChoices(jt.bookmarkFilter)},isAuthorized(){return dr().isAuthorized},isDynamicFiltersSelected(e){for(const[t,n]of Object.entries(e.settings.filters))if(t!=="bookmark"&&n&&n.length>0)return!0;return!1},isFiltersClearable(e){return!bf.has(e.settings.filters.bookmark)||this.isDynamicFiltersSelected},lowestShownGroup(e){let t="r";const n=cn.indexOf(e.settings.topGroup);for(const[r,s]of[...cn].entries())if(e.settings.show[s]){r<=n&&(t=s);break}return t},isSearchMode(e){return!!e.settings.q},lastRoute(e){const n=e.settings.breadcrumbs.at(-1),r={};return n?(r.name="browser",delete n.name,r.params=n):r.name="home",r},coverSettings(e){const t=ne.currentRoute.value.params,n=t.group;if(n=="c")return{};let r=Af;const s=e.settings.dynamicCovers;s&&(r=[...r,...Ef]);const o=this._filterSettings(e,r),i=t.pks;return!s&&n!=="r"&&i&&(o.parent={group:n,pks:i}),o},filterOnlySettings(e){return this._filterSettings(e,Lf)},pageLoadSettings(e){return this._filterSettings(e,wf)},metadataSettings(e){return this._filterSettings(e,Tf)}},actions:{_filterSettings(e,t){return Object.fromEntries(Object.entries(e.settings).filter(([n,r])=>{if(!t.includes(n))return null;if(n==="filters"){const s={};for(const[o,i]of Object.entries(r))uc(i)&&(s[o]=i);r=s}if(uc(r))return[n,r]}))},_maxLenChoices(e){let t=0;for(const n of e)n&&n.title&&n.title.length>t&&(t=n.title.length);return t},identifierTypeTitle(e){if(!e)return e;const t=e.toLowerCase();return this.choices.static.identifierType[t]||e},setIsSearchOpen(e){this.isSearchOpen=e},_isRootGroupEnabled(e){var t;return Sf.has(e)?!0:e=="f"?(t=this.page.adminFlags)==null?void 0:t.folderView:this.settings.show[e]},_validateSearch(e){var n;if(!this.settings.q&&!e.q){this.settings.orderBy==="search_score"&&(e.orderBy=this.settings.topGroup==="f"?"filename":"sort_name");return}else if(this.settings.q)return;e.orderBy="search_score",e.orderReverse=!0;const t=(n=ne.currentRoute.value.params)==null?void 0:n.group;if(!(Cf.has(t)||t===this.lowestShownGroup))return{params:{group:this.lowestShownGroup,pks:"0",page:"1"}}},_validateTopGroup(e,t){var f,d;const n=(d=(f=ne==null?void 0:ne.currentRoute)==null?void 0:f.value)==null?void 0:d.params,r=n==null?void 0:n.group;if(r==="r")return t;const s=this.settings.topGroup,o=e.topGroup;if(s===o||!o||!s&&o||o===r)return t;const i=cn.indexOf(s),a=cn.indexOf(o),c=a!==-1,u=c&&i!==-1;let l;return u?i<a?(l=n,l.page=+l.page):l={group:"r",pks:"0",page:"1"}:l={group:c?"r":o,pks:"0",page:"1"},{params:l}},getTopGroup(e){let t;if(this.settings.topGroup===e||["a","f"].includes(e))t=e;else{const n=cn.indexOf(e);for(const r of cn.slice(n))if(r!=="r"&&this.settings.show[r]){t=r;break}}return t},_addSettings(e){this.$patch(t=>{for(let[n,r]of Object.entries(e)){const s=typeof t.settings[n]=="object"&&!Array.isArray(t.settings[n])?{...t.settings[n],...r}:r;pn(t.settings[n],s)||(t.settings[n]=s)}t.settings.q&&!t.isSearchOpen&&(t.isSearchOpen=!0)}),this.startSearchHideTimeout()},_validateAndSaveSettings(e){let t=this._validateSearch(e);return t=this._validateTopGroup(e,t),pn(t==null?void 0:t.params,ne.currentRoute.value.params)&&(t=void 0),e&&this._addSettings(e),this.filterMode="base",t},async setSettings(e){const t=this._validateAndSaveSettings(e);this.browserPageLoaded=!0,t?io(t):this.loadBrowserPage(void 0,!0)},async clearOneFilter(e){this.$patch(t=>{t.filterMode="base",t.settings.filters[e]=[],t.browserPageLoaded=!0}),await this.loadBrowserPage(void 0,!0)},async clearFilters(e=!1){this.$patch(t=>{t.settings.filters={bookmark:""},t.filterMode="base",e&&(t.settings.q="",t.settings.orderBy="sort_name",t.settings.orderReverse=!1),t.browserPageLoaded=!0}),await this.loadBrowserPage(void 0,!0)},async setBookmarkFinished(e,t){this.isAuthorized&&await bt.updateGroupBookmarks(e,this.filterOnlySettings,{finished:t}).then(()=>(this.loadBrowserPage(o2()),!0))},clearSearchHideTimeout(){clearTimeout(this.searchHideTimeout)},startSearchHideTimeout(){if(!this.isSearchOpen)return;this.settings.q||this.isSearchHelpOpen?this.clearSearchHideTimeout():this.searchHideTimeout=setTimeout(()=>{this.settings.q||this.setIsSearchOpen(!1)},a2)},setSearchHelpOpen(e){this.isSearchHelpOpen=e,this.startSearchHideTimeout()},setPageMtime(e){globalThis.mtime=e},async updateBreadcrumbs(e){const t=this.settings.breadcrumbs||[],n=i2(t.length).reverse();for(const r of n){const s=e[r],o=t[r];if(!pn(s,o)){o.name===null&&(o.name=""),bt.updateSettings({breadcrumbs:t});break}}},routeToPage(e){const t=st(ne.currentRoute.value);t.params.page=e,ne.push(t).catch(console.warn)},handlePageError(e){var t;if(yf.has((t=e==null?void 0:e.response)==null?void 0:t.status)){console.debug(e);const n=e.response.data;n.settings&&(this.setSettings(n.settings),this.browserPageLoaded=!0),n.route&&io(n.route)}else return console.error(e)},async loadSettings(){var t,n;if(!this.isAuthorized)return;this.$patch(r=>{r.browserPageLoaded=!1,r.choices.dynamic=void 0});const e=(n=(t=ne==null?void 0:ne.currentRoute)==null?void 0:t.value.params)==null?void 0:n.group;await bt.getSettings({group:e}).then(r=>{const s=r.data,o=this._validateAndSaveSettings(s);return this.browserPageLoaded=!0,o?io(o):this.loadBrowserPage(void 0)}).catch(r=>(this.browserPageLoaded=!0,this.handlePageError(r)))},async loadBrowserPage(e,t=!1){if(!this.isAuthorized)return;const n=ne.currentRoute.value;if(e||(e=n.query.ts,e||(e=this.page.mtime)),this.browserPageLoaded)this.browserPageLoaded=!1;else return this.loadSettings();const r=this.settings.breadcrumbs;await bt.getBrowserPage(n.params,this.settings,e).then(s=>{const{breadcrumbs:o,...i}=s.data;return this.$patch(a=>{a.settings.breadcrumbs=o,a.page=i,(a.settings.orderBy==="search_score"&&!i.fts||a.settings.orderBy==="child_count"&&i.modelGroup==="c")&&(a.settings.orderBy="sort_name"),a.choices.dynamic=void 0,a.browserPageLoaded=!0}),!0}).catch(this.handlePageError),t?bt.updateSettings(this.settings):this.updateBreadcrumbs(r)},async loadAvailableFilterChoices(){return await bt.getAvailableFilterChoices(ne.currentRoute.value.params,this.filterOnlySettings,this.page.mtime).then(e=>(this.choices.dynamic=e.data,!0)).catch(console.error)},async loadFilterChoices(e){return await bt.getFilterChoices(ne.currentRoute.value.params,e,this.filterOnlySettings,this.page.mtime).then(t=>(this.choices.dynamic[e]=Object.freeze(t.data.choices),!0)).catch(console.error)},async loadMtimes(){var s,o;const e=(o=(s=ne==null?void 0:ne.currentRoute)==null?void 0:s.value)==null?void 0:o.params,t=e==null?void 0:e.group,n=t&&t!="r"?t:this.page.modelGroup,r=(e==null?void 0:e.pks)||"0";return await us.getMtime([{group:n,pks:r}],this.filterOnlySettings).then(i=>{var c;const a=(c=i==null?void 0:i.data)==null?void 0:c.maxMtime;return a!==this.page.mtime&&(this.choices.dynamic=void 0,this.loadBrowserPage(a)),!0}).catch(console.error)},routeWithSettings(e,t){t&&(this._validateAndSaveSettings(e),ne.push(t).catch(console.error))}}});var Z5="M11,15H13V17H11V15M11,7H13V13H11V7M12,2C6.47,2 2,6.5 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20Z",Y5="M15,18V12H17.17L12,6.83L6.83,12H9V18H15M12,4L22,14H17V20H7V14H2L12,4Z",J5="M18 4V20C18 21.11 17.11 22 16 22H4C2.9 22 2 21.11 2 20V4C2 2.9 2.9 2 4 2H5V9L7.5 7.5L10 9V2H16C17.1 2 18 2.89 18 4M20 17H22V15H20V17M20 7V13H22V7H20Z",c2="M13 19C13 20.1 13.3 21.12 13.81 22H6C4.89 22 4 21.11 4 20V4C4 2.9 4.89 2 6 2H7V9L9.5 7.5L12 9V2H18C19.1 2 20 2.89 20 4V13.09C19.67 13.04 19.34 13 19 13C15.69 13 13 15.69 13 19M20 20V16H18V20H16L19 23L22 20H20Z",l2="M13 19C13 20.1 13.3 21.12 13.81 22H6C4.89 22 4 21.11 4 20V4C4 2.9 4.89 2 6 2H7V9L9.5 7.5L12 9V2H18C19.1 2 20 2.89 20 4V13.09C19.67 13.04 19.34 13 19 13C15.69 13 13 15.69 13 19M19 15L16 18H18V22H20V18H22L19 15Z",X5="M19,18H9A2,2 0 0,1 7,16V4A2,2 0 0,1 9,2H10V7L12,5.5L14,7V2H19A2,2 0 0,1 21,4V16A2,2 0 0,1 19,18M17,20V22H5A2,2 0 0,1 3,20V6H5V20H17Z",Q5="M13.09 20C13.21 20.72 13.46 21.39 13.81 22H6C4.89 22 4 21.11 4 20V4C4 2.9 4.89 2 6 2H18C19.11 2 20 2.9 20 4V13.09C19.67 13.04 19.34 13 19 13C18.66 13 18.33 13.04 18 13.09V4H13V12L10.5 9.75L8 12V4H6V20H13.09M22.54 16.88L21.12 15.47L19 17.59L16.88 15.47L15.47 16.88L17.59 19L15.47 21.12L16.88 22.54L19 20.41L21.12 22.54L22.54 21.12L20.41 19L22.54 16.88Z",_5="M15.5,12C18,12 20,14 20,16.5C20,17.38 19.75,18.21 19.31,18.9L22.39,22L21,23.39L17.88,20.32C17.19,20.75 16.37,21 15.5,21C13,21 11,19 11,16.5C11,14 13,12 15.5,12M15.5,14A2.5,2.5 0 0,0 13,16.5A2.5,2.5 0 0,0 15.5,19A2.5,2.5 0 0,0 18,16.5A2.5,2.5 0 0,0 15.5,14M13,4V12L10.5,9.75L8,12V4H6V20H10C10.54,20.81 11.23,21.5 12.03,22H6A2,2 0 0,1 4,20V4A2,2 0 0,1 6,2H18A2,2 0 0,1 20,4V11.81C19.42,11.26 18.75,10.81 18,10.5V4H13Z",q5="M9.47 9.65L8.06 11.07L11 14L16.19 8.82L14.78 7.4L11 11.18M17 3H7C5.9 3 5 3.9 5 5L5 21L12 18L19 21V5C19 3.9 18.1 3 17 3M17 18L12 15.82L7 18V5H17Z",eb="M9,11V9H15V11H9M19,5V21L12,18L5,21V5C5,3.89 5.9,3 7,3H17C18.11,3 19,3.9 19,5M17,5H7V18L12,15.82L17,18V5Z",tb="M9 3V18H12V3H9M12 5L16 18L19 17L15 4L12 5M5 5V18H8V5H5M3 19V21H21V19H3Z",nb="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z",rb="M5,20H19V22H5V20M17,2V5H15V2H13V5H11V2H9V5H7V2H5V8H7V18H17V8H19V2H17Z",sb="M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z",ob="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z",ib="M22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2A10,10 0 0,1 22,12M10,18L16,12L10,6L8.6,7.4L13.2,12L8.6,16.6L10,18Z",ab="M22.11 21.46L2.39 1.73L1.11 3L4.06 5.95C2.78 7.63 2 9.72 2 12C2 17.5 6.5 22 12 22C14.28 22 16.37 21.23 18.05 19.94L20.84 22.73L22.11 21.46M12 20C7.58 20 4 16.42 4 12C4 10.27 4.56 8.68 5.5 7.38L16.62 18.5C15.32 19.45 13.73 20 12 20M8.17 4.97L6.72 3.5C8.25 2.56 10.06 2 12 2C17.5 2 22 6.5 22 12C22 13.94 21.44 15.75 20.5 17.28L19.03 15.83C19.65 14.69 20 13.39 20 12C20 7.58 16.42 4 12 4C10.61 4 9.31 4.35 8.17 4.97Z",cb="M19,3H14.82C14.4,1.84 13.3,1 12,1C10.7,1 9.6,1.84 9.18,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M12,3A1,1 0 0,1 13,4A1,1 0 0,1 12,5A1,1 0 0,1 11,4A1,1 0 0,1 12,3M7,7H17V5H19V19H5V5H7V7M7.5,13.5L9,12L11,14L15.5,9.5L17,11L11,17L7.5,13.5Z",lb="M19,3H14.82C14.4,1.84 13.3,1 12,1C10.7,1 9.6,1.84 9.18,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M12,3A1,1 0 0,1 13,4A1,1 0 0,1 12,5A1,1 0 0,1 11,4A1,1 0 0,1 12,3M7,7H17V5H19V19H5V5H7V7Z",ub="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z",fb="M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20M12,2C6.47,2 2,6.47 2,12C2,17.53 6.47,22 12,22C17.53,22 22,17.53 22,12C22,6.47 17.53,2 12,2M14.59,8L12,10.59L9.41,8L8,9.41L10.59,12L8,14.59L9.41,16L12,13.41L14.59,16L16,14.59L13.41,12L16,9.41L14.59,8Z",db="M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z",hb="M17 3H5C3.89 3 3 3.9 3 5V19C3 20.1 3.89 21 5 21H19C20.1 21 21 20.1 21 19V7L17 3M19 19H5V5H16.17L19 7.83V19M12 12C10.34 12 9 13.34 9 15S10.34 18 12 18 15 16.66 15 15 13.66 12 12 12M6 6H15V10H6V6Z",pb="M12 8L15 13.2L18 10.5L17.3 14H6.7L6 10.5L9 13.2L12 8M12 4L8.5 10L3 5L5 16H19L21 5L15.5 10L12 4M19 18H5V19C5 19.6 5.4 20 6 20H18C18.6 20 19 19.6 19 19V18Z",mb="M16.5 16.25L19.36 17.94L18.61 19.16L15 17V12H16.5V16.25M23 16C23 19.87 19.87 23 16 23C13.61 23 11.5 21.8 10.25 20C6.19 19.79 3 18.08 3 16V6C3 3.79 6.58 2 11 2S19 3.79 19 6V9.68C21.36 10.81 23 13.21 23 16M17 9.08V8.64C16.77 8.77 16.5 8.9 16.24 9C16.5 9 16.75 9.04 17 9.08M5 6C5 6.5 7.13 8 11 8S17 6.5 17 6 14.87 4 11 4 5 5.5 5 6M5 11.45C6.07 12.23 7.8 12.76 9.72 12.93C10.33 11.67 11.32 10.62 12.54 9.92C12.04 9.97 11.53 10 11 10C8.61 10 6.47 9.47 5 8.64V11.45M9.26 17.87C9.1 17.27 9 16.65 9 16C9 15.61 9.04 15.23 9.1 14.86C7.56 14.69 6.15 14.33 5 13.77V16C5 16.42 6.5 17.5 9.26 17.87M21 16C21 13.24 18.76 11 16 11S11 13.24 11 16 13.24 21 16 21 21 18.76 21 16Z",gb="M12 16C12.41 16 12.81 15.97 13.21 15.94C13.4 15.18 13.72 14.46 14.16 13.83C13.47 13.94 12.74 14 12 14C9.58 14 7.3 13.4 6 12.45V9.64C7.47 10.47 9.61 11 12 11S16.53 10.47 18 9.64V11.19C18.5 11.07 19 11 19.55 11C19.7 11 19.85 11 20 11.03V7C20 4.79 16.42 3 12 3S4 4.79 4 7V17C4 19.21 7.59 21 12 21C12.66 21 13.31 20.96 13.92 20.88C13.57 20.29 13.31 19.64 13.16 18.94C12.79 19 12.41 19 12 19C8.13 19 6 17.5 6 17V14.77C7.61 15.55 9.72 16 12 16M12 5C15.87 5 18 6.5 18 7S15.87 9 12 9 6 7.5 6 7 8.13 5 12 5M23 17.5C23 18.32 22.75 19.08 22.33 19.71L21.24 18.62C21.41 18.28 21.5 17.9 21.5 17.5C21.5 16.12 20.38 15 19 15V16.5L16.75 14.25L19 12V13.5C21.21 13.5 23 15.29 23 17.5M19 18.5L21.25 20.75L19 23V21.5C16.79 21.5 15 19.71 15 17.5C15 16.68 15.25 15.92 15.67 15.29L16.76 16.38C16.59 16.72 16.5 17.1 16.5 17.5C16.5 18.88 17.62 20 19 20V18.5Z",vb="M12,16A2,2 0 0,1 14,18A2,2 0 0,1 12,20A2,2 0 0,1 10,18A2,2 0 0,1 12,16M12,10A2,2 0 0,1 14,12A2,2 0 0,1 12,14A2,2 0 0,1 10,12A2,2 0 0,1 12,10M12,4A2,2 0 0,1 14,6A2,2 0 0,1 12,8A2,2 0 0,1 10,6A2,2 0 0,1 12,4Z",yb="M5,20H19V18H5M19,9H15V3H9V9H5L12,16L19,9Z",bb="M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9M12,17A5,5 0 0,1 7,12A5,5 0 0,1 12,7A5,5 0 0,1 17,12A5,5 0 0,1 12,17M12,4.5C7,4.5 2.73,7.61 1,12C2.73,16.39 7,19.5 12,19.5C17,19.5 21.27,16.39 23,12C21.27,7.61 17,4.5 12,4.5Z",Sb="M11.83,9L15,12.16C15,12.11 15,12.05 15,12A3,3 0 0,0 12,9C11.94,9 11.89,9 11.83,9M7.53,9.8L9.08,11.35C9.03,11.56 9,11.77 9,12A3,3 0 0,0 12,15C12.22,15 12.44,14.97 12.65,14.92L14.2,16.47C13.53,16.8 12.79,17 12,17A5,5 0 0,1 7,12C7,11.21 7.2,10.47 7.53,9.8M2,4.27L4.28,6.55L4.73,7C3.08,8.3 1.78,10 1,12C2.73,16.39 7,19.5 12,19.5C13.55,19.5 15.03,19.2 16.38,18.66L16.81,19.08L19.73,22L21,20.73L3.27,3M12,7A5,5 0 0,1 17,12C17,12.64 16.87,13.26 16.64,13.82L19.57,16.75C21.07,15.5 22.27,13.86 23,12C21.27,7.61 17,4.5 12,4.5C10.6,4.5 9.26,4.75 8,5.2L10.17,7.35C10.74,7.13 11.35,7 12,7Z",Cb="M12 1A2.5 2.5 0 0 0 9.5 3.5A2.5 2.5 0 0 0 11 5.79V7H7A2 2 0 0 0 5 9V9.71A2.5 2.5 0 0 0 3.5 12A2.5 2.5 0 0 0 5 14.29V15H4A2 2 0 0 0 2 17V18.21A2.5 2.5 0 0 0 .5 20.5A2.5 2.5 0 0 0 3 23A2.5 2.5 0 0 0 5.5 20.5A2.5 2.5 0 0 0 4 18.21V17H8V18.21A2.5 2.5 0 0 0 6.5 20.5A2.5 2.5 0 0 0 9 23A2.5 2.5 0 0 0 11.5 20.5A2.5 2.5 0 0 0 10 18.21V17A2 2 0 0 0 8 15H7V14.29A2.5 2.5 0 0 0 8.5 12A2.5 2.5 0 0 0 7 9.71V9H17V9.71A2.5 2.5 0 0 0 15.5 12A2.5 2.5 0 0 0 17 14.29V15H16A2 2 0 0 0 14 17V18.21A2.5 2.5 0 0 0 12.5 20.5A2.5 2.5 0 0 0 15 23A2.5 2.5 0 0 0 17.5 20.5A2.5 2.5 0 0 0 16 18.21V17H20V18.21A2.5 2.5 0 0 0 18.5 20.5A2.5 2.5 0 0 0 21 23A2.5 2.5 0 0 0 23.5 20.5A2.5 2.5 0 0 0 22 18.21V17A2 2 0 0 0 20 15H19V14.29A2.5 2.5 0 0 0 20.5 12A2.5 2.5 0 0 0 19 9.71V9A2 2 0 0 0 17 7H13V5.79A2.5 2.5 0 0 0 14.5 3.5A2.5 2.5 0 0 0 12 1M12 2.5A1 1 0 0 1 13 3.5A1 1 0 0 1 12 4.5A1 1 0 0 1 11 3.5A1 1 0 0 1 12 2.5M6 11A1 1 0 0 1 7 12A1 1 0 0 1 6 13A1 1 0 0 1 5 12A1 1 0 0 1 6 11M18 11A1 1 0 0 1 19 12A1 1 0 0 1 18 13A1 1 0 0 1 17 12A1 1 0 0 1 18 11M3 19.5A1 1 0 0 1 4 20.5A1 1 0 0 1 3 21.5A1 1 0 0 1 2 20.5A1 1 0 0 1 3 19.5M9 19.5A1 1 0 0 1 10 20.5A1 1 0 0 1 9 21.5A1 1 0 0 1 8 20.5A1 1 0 0 1 9 19.5M15 19.5A1 1 0 0 1 16 20.5A1 1 0 0 1 15 21.5A1 1 0 0 1 14 20.5A1 1 0 0 1 15 19.5M21 19.5A1 1 0 0 1 22 20.5A1 1 0 0 1 21 21.5A1 1 0 0 1 20 20.5A1 1 0 0 1 21 19.5Z",Ab="M22,2C22,2 14.36,1.63 8.34,9.88C3.72,16.21 2,22 2,22L3.94,21C5.38,18.5 6.13,17.47 7.54,16C10.07,16.74 12.71,16.65 15,14C13,13.44 11.4,13.57 9.04,13.81C11.69,12 13.5,11.6 16,12L17,10C15.2,9.66 14,9.63 12.22,10.04C14.19,8.65 15.56,7.87 18,8L19.21,6.07C17.65,5.96 16.71,6.13 14.92,6.57C16.53,5.11 18,4.45 20.14,4.32C20.14,4.32 21.19,2.43 22,2Z",Eb="M13,9H18.5L13,3.5V9M6,2H14L20,8V20A2,2 0 0,1 18,22H6C4.89,22 4,21.1 4,20V4C4,2.89 4.89,2 6,2M6,20H15L18,20V12L14,16L12,14L6,20M8,9A2,2 0 0,0 6,11A2,2 0 0,0 8,13A2,2 0 0,0 10,11A2,2 0 0,0 8,9Z",Lb="M3.47 5C3.25 5 3.04 5.08 2.87 5.21C2.43 5.55 2.35 6.18 2.69 6.61L2.69 6.62L7 12.14V18.05L10.64 21.71C11 22.1 11.66 22.1 12.05 21.71L12.05 21.71C12.44 21.32 12.44 20.69 12.06 20.3L9 17.22V11.45L4.27 5.39C4.08 5.14 3.78 5 3.47 5M21.62 3.22C21.43 3.08 21.22 3 21 3H7C6.78 3 6.57 3.08 6.38 3.22C5.95 3.56 5.87 4.19 6.21 4.62L11 10.75V15.87C10.96 16.16 11.06 16.47 11.29 16.7L15.3 20.71C15.69 21.1 16.32 21.1 16.71 20.71C16.94 20.5 17.04 20.18 17 19.88V10.75L21.79 4.62C22.13 4.19 22.05 3.56 21.62 3.22M15 10.05V17.58L13 15.58V10.06L9.04 5H18.96L15 10.05Z",wb="M15,19.88C15.04,20.18 14.94,20.5 14.71,20.71C14.32,21.1 13.69,21.1 13.3,20.71L9.29,16.7C9.06,16.47 8.96,16.16 9,15.87V10.75L4.21,4.62C3.87,4.19 3.95,3.56 4.38,3.22C4.57,3.08 4.78,3 5,3V3H19V3C19.22,3 19.43,3.08 19.62,3.22C20.05,3.56 20.13,4.19 19.79,4.62L15,10.75V19.88M7.04,5L11,10.06V15.58L13,17.58V10.05L16.96,5H7.04Z",Tb="M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z",xb="M8,11H11V21H13V11H16L12,7L8,11M4,3V5H20V3H4Z",Rb="M4,5A2,2 0 0,0 2,7V17A2,2 0 0,0 4,19H20A2,2 0 0,0 22,17V7A2,2 0 0,0 20,5H4M4,7H20V17H4V7M5,8V10H7V8H5M8,8V10H10V8H8M11,8V10H13V8H11M14,8V10H16V8H14M17,8V10H19V8H17M5,11V13H7V11H5M8,11V13H10V11H8M11,11V13H13V11H11M14,11V13H16V11H14M17,11V13H19V11H17M8,14V16H16V14H8Z",Ob="M3 15H5V19H19V15H21V19C21 20.1 20.1 21 19 21H5C3.9 21 3 20.1 3 19V15Z",Pb="M19.79,15.41C20.74,13.24 20.74,10.75 19.79,8.59L17.05,9.83C17.65,11.21 17.65,12.78 17.06,14.17L19.79,15.41M15.42,4.21C13.25,3.26 10.76,3.26 8.59,4.21L9.83,6.94C11.22,6.35 12.79,6.35 14.18,6.95L15.42,4.21M4.21,8.58C3.26,10.76 3.26,13.24 4.21,15.42L6.95,14.17C6.35,12.79 6.35,11.21 6.95,9.82L4.21,8.58M8.59,19.79C10.76,20.74 13.25,20.74 15.42,19.78L14.18,17.05C12.8,17.65 11.22,17.65 9.84,17.06L8.59,19.79M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2M12,8A4,4 0 0,0 8,12A4,4 0 0,0 12,16A4,4 0 0,0 16,12A4,4 0 0,0 12,8Z",Mb="M12,17C10.89,17 10,16.1 10,15C10,13.89 10.89,13 12,13A2,2 0 0,1 14,15A2,2 0 0,1 12,17M18,20V10H6V20H18M18,8A2,2 0 0,1 20,10V20A2,2 0 0,1 18,22H6C4.89,22 4,21.1 4,20V10C4,8.89 4.89,8 6,8H7V6A5,5 0 0,1 12,1A5,5 0 0,1 17,6V8H18M12,3A3,3 0 0,0 9,6V8H15V6A3,3 0 0,0 12,3Z",Ib="M12.63,2C18.16,2 22.64,6.5 22.64,12C22.64,17.5 18.16,22 12.63,22C9.12,22 6.05,20.18 4.26,17.43L5.84,16.18C7.25,18.47 9.76,20 12.64,20A8,8 0 0,0 20.64,12A8,8 0 0,0 12.64,4C8.56,4 5.2,7.06 4.71,11H7.47L3.73,14.73L0,11H2.69C3.19,5.95 7.45,2 12.63,2M15.59,10.24C16.09,10.25 16.5,10.65 16.5,11.16V15.77C16.5,16.27 16.09,16.69 15.58,16.69H10.05C9.54,16.69 9.13,16.27 9.13,15.77V11.16C9.13,10.65 9.54,10.25 10.04,10.24V9.23C10.04,7.7 11.29,6.46 12.81,6.46C14.34,6.46 15.59,7.7 15.59,9.23V10.24M12.81,7.86C12.06,7.86 11.44,8.47 11.44,9.23V10.24H14.19V9.23C14.19,8.47 13.57,7.86 12.81,7.86Z",Hb="M11 7L9.6 8.4L12.2 11H2V13H12.2L9.6 15.6L11 17L16 12L11 7M20 19H12V21H20C21.1 21 22 20.1 22 19V5C22 3.9 21.1 3 20 3H12V5H20V19Z",Db="M17 7L15.59 8.41L18.17 11H8V13H18.17L15.59 15.58L17 17L22 12M4 5H12V3H4C2.9 3 2 3.9 2 5V19C2 20.1 2.9 21 4 21H12V19H4V5Z",Vb="M9.5,3A6.5,6.5 0 0,1 16,9.5C16,11.11 15.41,12.59 14.44,13.73L14.71,14H15.5L20.5,19L19,20.5L14,15.5V14.71L13.73,14.44C12.59,15.41 11.11,16 9.5,16A6.5,6.5 0 0,1 3,9.5A6.5,6.5 0 0,1 9.5,3M9.5,5C7,5 5,7 5,9.5C5,12 7,14 9.5,14C12,14 14,12 14,9.5C14,7 12,5 9.5,5Z",Fb="M15.5,14H14.71L14.43,13.73C15.41,12.59 16,11.11 16,9.5A6.5,6.5 0 0,0 9.5,3A6.5,6.5 0 0,0 3,9.5A6.5,6.5 0 0,0 9.5,16C11.11,16 12.59,15.41 13.73,14.43L14,14.71V15.5L19,20.5L20.5,19L15.5,14M9.5,14C7,14 5,12 5,9.5C5,7 7,5 9.5,5C12,5 14,7 14,9.5C14,12 12,14 9.5,14M7,9H12V10H7V9Z",kb="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z",Nb="M14,7L9,12L14,17V7Z",jb="M10,17L15,12L10,7V17Z",$b="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z",Bb="M20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18,2.9 17.35,2.9 16.96,3.29L15.12,5.12L18.87,8.87M3,17.25V21H6.75L17.81,9.93L14.06,6.18L3,17.25Z",Ub="M18.4,10.6C16.55,9 14.15,8 11.5,8C6.85,8 2.92,11.03 1.54,15.22L3.9,16C4.95,12.81 7.95,10.5 11.5,10.5C13.45,10.5 15.23,11.22 16.62,12.38L13,16H22V7L18.4,10.6Z",Wb="M2 12C2 16.97 6.03 21 11 21C13.39 21 15.68 20.06 17.4 18.4L15.9 16.9C14.63 18.25 12.86 19 11 19C4.76 19 1.64 11.46 6.05 7.05C10.46 2.64 18 5.77 18 12H15L19 16H19.1L23 12H20C20 7.03 15.97 3 11 3C6.03 3 2 7.03 2 12Z",Gb="M6.18,15.64A2.18,2.18 0 0,1 8.36,17.82C8.36,19 7.38,20 6.18,20C5,20 4,19 4,17.82A2.18,2.18 0 0,1 6.18,15.64M4,4.44A15.56,15.56 0 0,1 19.56,20H16.73A12.73,12.73 0 0,0 4,7.27V4.44M4,10.1A9.9,9.9 0 0,1 13.9,20H11.07A7.07,7.07 0 0,0 4,12.93V10.1Z",Kb="M12 1L21 5V11C21 16.55 17.16 21.74 12 23C6.84 21.74 3 16.55 3 11V5L12 1M12 3.18L5 6.3V11.22C5 15.54 8.25 20 12 21C15.75 20 19 15.54 19 11.22V6.3L12 3.18M16 14V15.5L16 15.59C15.96 15.81 15.78 15.96 15.53 16L15.43 16H8.57L8.47 16C8.22 15.96 8.04 15.81 8 15.59L8 15.5V14H16M17 8L16 13H8L7 8L7 8L9.67 10.67L12 8.34L14.33 10.67L17 8L17 8Z",zb="M3,13H15V11H3M3,6V8H21V6M3,18H9V16H3V18Z",Zb="M6,2H18A2,2 0 0,1 20,4V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V4A2,2 0 0,1 6,2M12.75,13.5C15.5,13.5 16.24,11.47 16.43,10.4C17.34,10.11 18,9.26 18,8.25C18,7 17,6 15.75,6C14.5,6 13.5,7 13.5,8.25C13.5,9.19 14.07,10 14.89,10.33C14.67,11 14,12 12,12C10.62,12 9.66,12.35 9,12.84V8.87C9.87,8.56 10.5,7.73 10.5,6.75C10.5,5.5 9.5,4.5 8.25,4.5C7,4.5 6,5.5 6,6.75C6,7.73 6.63,8.56 7.5,8.87V15.13C6.63,15.44 6,16.27 6,17.25C6,18.5 7,19.5 8.25,19.5C9.5,19.5 10.5,18.5 10.5,17.25C10.5,16.32 9.94,15.5 9.13,15.18C9.41,14.5 10.23,13.5 12.75,13.5M8.25,16.5A0.75,0.75 0 0,1 9,17.25A0.75,0.75 0 0,1 8.25,18A0.75,0.75 0 0,1 7.5,17.25A0.75,0.75 0 0,1 8.25,16.5M8.25,6A0.75,0.75 0 0,1 9,6.75A0.75,0.75 0 0,1 8.25,7.5A0.75,0.75 0 0,1 7.5,6.75A0.75,0.75 0 0,1 8.25,6M15.75,7.5A0.75,0.75 0 0,1 16.5,8.25A0.75,0.75 0 0,1 15.75,9A0.75,0.75 0 0,1 15,8.25A0.75,0.75 0 0,1 15.75,7.5Z",Yb="M21.41 11.58L12.41 2.58A2 2 0 0 0 11 2H4A2 2 0 0 0 2 4V11A2 2 0 0 0 2.59 12.42L11.59 21.42A2 2 0 0 0 13 22A2 2 0 0 0 14.41 21.41L21.41 14.41A2 2 0 0 0 22 13A2 2 0 0 0 21.41 11.58M13 20L4 11V4H11L20 13M6.5 5A1.5 1.5 0 1 1 5 6.5A1.5 1.5 0 0 1 6.5 5Z",Jb="M9,3V4H4V6H5V19A2,2 0 0,0 7,21H17A2,2 0 0,0 19,19V6H20V4H15V3H9M9,8H11V17H9V8M13,8H15V17H13V8Z";const u2=new RegExp("([\\p{Ll}\\d])(\\p{Lu})","gu"),f2=new RegExp("(\\p{Lu})([\\p{Lu}][\\p{Ll}])","gu"),d2=new RegExp("(\\d)(\\p{Ll})","gu"),h2=new RegExp("(\\p{L})(\\d)","gu"),p2=/[^\p{L}\d]+/giu,Fr="$1\0$2",m2="";function xf(e,t){let n=e.trim();n=n.replace(u2,Fr).replace(f2,Fr),t!=null&&t.separateNumbers&&(n=n.replace(d2,Fr).replace(h2,Fr)),n=n.replace(p2,"\0");let r=0,s=n.length;for(;n.charAt(r)==="\0";)r++;if(r===s)return[];for(;n.charAt(s-1)==="\0";)s--;return n.slice(r,s).split(/\0/g)}function g2(e,t){return Of(e,t==null?void 0:t.prefixCharacters)+xf(e,t).map(Rf(t==null?void 0:t.locale)).join((t==null?void 0:t.delimiter)??" ")}function v2(e,t){const n=Of(e,t==null?void 0:t.prefixCharacters),r=Rf(t==null?void 0:t.locale),s=b2(t==null?void 0:t.locale);return n+xf(e,t).map(S2(r,s)).join((t==null?void 0:t.delimiter)??" ")}function y2(e,t){return g2(e,{delimiter:"_",...t})}function Rf(e){return e===!1?t=>t.toLowerCase():t=>t.toLocaleLowerCase(e)}function b2(e){return e===!1?t=>t.toUpperCase():t=>t.toLocaleUpperCase(e)}function S2(e,t){return n=>`${t(n[0])}${e(n.slice(1))}`}function Of(e,t=m2){let n="";for(let r=0;r<e.length;r++){const s=e.charAt(r);if(t.includes(s))n+=s;else break}return n}const C2=v2,A2=y2,Rr=e=>`c/${e}`,E2=(e,t,n)=>{const r=ut(t,n),s=Rr(e);return Ee.get(s,{params:r})},L2=()=>{const e=ut({});return Ee.get("c/settings",{params:e})},w2=e=>Ee.patch("c/settings",e),T2=e=>globalThis.CODEX.API_V3_PATH+Rr(e),dc=({pk:e,page:t,mtime:n})=>`${T2(e)}/${t}/page.jpg?ts=${n}`,Xb=({pk:e},t,n)=>{const r=Rr(e);return t=t?encodeURIComponent(t):`comic-${e}.cbz`,`${r}/download/${t}?ts=${n}`},Qb=({pk:e,page:t,mtime:n})=>`${Rr(e)}/${t}/page.jpg?ts=${n}`,x2=({pk:e,mtime:t})=>`/${Rr(e)}/book.pdf?ts=${t}`,ao={getReaderInfo:E2,getReaderSettings:L2,getPDFInBrowserURL:x2,updateReaderSettings:w2},R2=[{value:"S",title:"Fit to Screen",default:!0},{value:"W",title:"Fit to Width"},{value:"H",title:"Fit to Height"},{value:"O",title:"Original Size"}],O2=[{value:"ltr",title:"Left to Right",default:!0},{value:"rtl",title:"Right to Left"},{value:"ttb",title:"Top to Bottom"},{value:"btt",title:"Bottom to Top"}],Kn={fitTo:R2,readingDirection:O2},P2=function(e){let t;return e?t=e.length===4&&!Number.isNaN(e)?"("+e+")":"v"+e:t="",t},M2=function({issueNumber:e,issueSuffix:t},n){let r;try{e==null&&!t&&(e=0);const s=Number.parseFloat(e),o=Math.floor(s);n===void 0&&(n=0),s===o?r=o.toString():(r=s.toString(),n+=r.split(".")[1].length+1),r=r.padStart(n,"0")}catch{r=""}return t&&(r+=t),r},I2=function({issueNumber:e,issueSuffix:t,issueCount:n},r){let s="#"+M2({issueNumber:e,issueSuffix:t},r);return n&&(s+=` of ${n}`),s},H2=function({seriesName:e,volumeName:t,issueNumber:n,issueSuffix:r,issueCount:s},o){const i=P2(t),a=I2({issueNumber:n,issueSuffix:r,issueCount:s},o);return[e,i,a].filter(Boolean).join(" ")},Pf={fitTo:"",twoPages:null,readingDirection:"",readRtlInReverse:null};Object.freeze(Pf);const Mf={cacheBook:!1};Object.freeze(Mf);const Yr=new Set(["",null,void 0]);Object.freeze(Yr);const If={prev:"next",next:"prev"};Object.freeze(If);const jo={rel:"prefetch",as:"image"};Object.freeze(jo);const Ri=new Set(["ttb","btt"]);Object.freeze(Ri);const Hf=new Set(["rtl","btt"]);Object.freeze(Hf);const hc=1,Df={S:"Screen",W:"Width",H:"Height",O:"Original"};Object.freeze(Df);const Oi=["breadcrumbs","show","topGroup","filters"];Object.freeze(Oi);const Vf=Oi.map(e=>A2(e));Object.freeze(Vf);const Ff=[...Oi,"browserArc"];Object.freeze(Ff);const $o={current:void 0,prev:!1,next:!1};Object.freeze($o);const Bo={prev:!1,next:!1,books:{prev:!1,next:!1},close:We.breadcrumbs[0]};Object.freeze(Bo);const D2=()=>Math.max(document.documentElement.clientWidth||0,window.innerWidth||0)>600?"S":"W",pc=e=>{Ri.has(e.readingDirection)&&e.twoPages&&(e.twoPages=!1)},V2=wr("reader",{state:()=>({choices:{fitTo:Kn.fitTo,readingDirection:Kn.readingDirection,nullValues:Yr},readerSettings:{fitTo:D2(),twoPages:Kn.twoPages,readingDirection:"ltr",readRtlInReverse:Kn.readRtlInReverse,finishOnLastPage:Kn.finishOnLastPage,pageTransition:!0},browserSettings:{breadcrumbs:We.breadcrumbs,show:We.show,topGroup:"p"},books:st($o),arcs:[],arc:{},mtime:0,empty:!1,page:void 0,routes:st(Bo),bookChange:void 0,reactWithScroll:!1,clientSettings:{cacheBook:!1,scale:hc},showToolbars:!1,settingsLoaded:!1,bookSettings:{}}),getters:{activeSettings(e){return e.getBookSettings(e.books.current)||{}},activeTitle(e){var r;const t=e.books.current;let n;return t?(((r=e.arcs[0])==null?void 0:r.group)!="f"&&(n=H2(t)),n||(n=t.filename||"")):n="",n},isVertical(e){return e.activeSettings.isVertical},isReadInReverse(e){return e.activeSettings.isReadInReverse},routeParams(e){return{pk:+e.books.current.pk,page:+e.page}},isPDF(e){var t,n;return((n=(t=e.books)==null?void 0:t.current)==null?void 0:n.fileType)=="PDF"},cacheBook(e){return e.clientSettings.cacheBook&&!(this.isPDF&&this.activeSettings.isVertical)},isPagesNotRoutes(e){return e.activeSettings.isVertical||this.cacheBook},isBTT(e){return e.activeSettings.readingDirection==="btt"},isFirstPage(e){return e.page===0},isLastPage(e){const t=e.books.current?e.books.current.maxPage:0,n=e.activeSettings.twoPages?1:0,r=t-n;return this.page>=r},closeBookRoute(e){var r,s;const t={name:"browser"};let n=e.routes.close;if(n){const o=(s=(r=e.books)==null?void 0:r.current)==null?void 0:s.pk;o&&(t.hash=`#card-${o}`)}else n=globalThis.CODEX.LAST_ROUTE||We.breadcrumbs[0];return t.params=n,t},browserArcFilters(e){const t={};for(const[n,r]of Object.entries(e.browserSettings.filters))n!=="bookmark"&&r&&r.length>0&&(t[n]=r);return t},browserArc(e){var n;const t=(n=e.routes)==null?void 0:n.close;if(t&&t.pks&&t.pks!=="0")return{group:t.group,pks:t.pks,name:t.name,mtime:t.mtime,filters:e.browserArcFilters}},readerInfoSettings(e){const t={};for(const n of Ff){const r=e.browserSettings[n];r&&(t[n]=r)}return e.arc&&Object.keys(e.arc).length>0?t.arc={group:e.arc.group,pks:e.arc.pks}:e.browserArc&&(t.arc=e.browserArc),t}},actions:{setReadRTLInReverse(e){return this.readerSettings.readRtlInReverse&&e.readingDirection==="rtl"?{...e,readingDirection:"ltr"}:e},getBookSettings(e){if(!e)return{};if(!(e.pk in this.bookSettings)){const t=st(Yr);let n=e?e.settings:{};n=this.setReadRTLInReverse(n);const r=[this.readerSettings,n];for(const s of r)for(const[o,i]of Object.entries(s))Yr.has(i)||(t[o]=i);pc(t),t.isVertical=Ri.has(t.readingDirection),t.isReadInReverse=Hf.has(t.readingDirection),t.fitToClass=this.fitToClass(t),this.bookSettings[e.pk]=t}return this.bookSettings[e.pk]},bookChangeLocation(e){let t;return this.isBTT?t=e==="next"?"left":"right":t=e==="next"?"right":"left",t},bookChangeCursorClass(e){let t;return this.activeSettings.isReadInReverse?t=e==="next"?"up":"down":t=e==="next"?"down":"up",t+"Cursor"},bookChangeShow(e){return e==="prev"?this.books.prev&&this.isFirstPage:this.books.next&&this.isLastPage},bookChangeIcon(e){let t=e==="next";return this.isBTT&&(t=!t),t?c2:l2},isCoverPage(e,t){return e.readLtr!==!1&&t===0||e.readLtr&&t===e.maxPage},_getRouteParams(e,t,n){const r=n==="prev"?-1:1;let s=1;this.getBookSettings(e).twoPages&&!this.isCoverPage(e,+t+r)&&(s=2),s=s*r;const i=+t+s;let a=!1;return i>=0&&i<=e.maxPage&&(a={pk:e.pk,page:i}),a},fitToClass(e){const t={};let n;if(n=this.clientSettings.scale>hc?"Orig":Df[e.fitTo],n){let r="fitTo";r+=C2(n),e.isVertical?r+="Vertical":e.twoPages&&(r+="Two"),t[r]=!0}return t},_updateSettings(e,t){this.$patch(n=>{t?(n.books.current.settings={...n.books.current.settings,...e},pc(n.books.current.settings)):n.readerSettings={...n.readerSettings,...e},n.bookSettings={}})},toggleToolbars(){this.showToolbars=!this.showToolbars},setShowToolbars(){this.showToolbars=!0},reset(){this.$patch(e=>{e.arc=void 0,e.arcs=[],e.mtime=0,e.settingsLoaded=!1,e.books=st($o),e.routes=st(Bo),e.bookSettings={}})},_getBookRoutePage(e,t){let n=0;if(t&&e.readLtr!==!1||!t&&e.readLtr===!1){const s=this.getBookSettings(e).twoPages?-1:0;n=e.maxPage+s}return n},_getBookRoute(e,t){if(!e)return!1;const n=this._getBookRoutePage(e,t);return{pk:e.pk,page:n}},_getBookRoutes(e,t){return{prev:this._getBookRoute(e,!0),next:this._getBookRoute(t,!1)}},async setRoutesAndBookmarkPage(e){const t=this.books.current;this.$patch(n=>{n.routes.prev=this._getRouteParams(t,e,"prev"),n.routes.next=this._getRouteParams(t,e,"next")}),await this._setBookmarkPage(e).then(()=>(this.bookChange=void 0,!0))},setActivePage(e,t=!0){if(e<0)return console.warn("Page out of bounds. Redirecting to 0."),this.routeToPage(0);if(e>this.books.current.maxPage)return console.warn(`Page out of bounds. Redirecting to ${this.books.current.maxPage}.`),this.routeToPage(this.books.current.maxPage);if(this.reactWithScroll=!!t,this.page=+e,this.setRoutesAndBookmarkPage(e),this.isPagesNotRoutes){const n={params:{pk:this.books.current.pk,page:e}},{href:r}=ne.resolve(n);globalThis.history.pushState({},void 0,r)}else window.scrollTo(0,0)},async loadBrowserSettings(){return bt.getSettings({only:Vf,breadcrumbNames:!1}).then(e=>(this.$patch(t=>{t.browserSettings=e.data,!t.routes.close&&t.browserSettings.breadcrumbs&&(t.routes.close=t.browserSettings.breadcrumbs.at(-1))}),this.settingsLoaded?!0:(this.settingsLoaded=!0,this.loadBooks({})))).catch(console.error)},async loadReaderSettings(){ao.getReaderSettings().then(e=>{const t=e.data;return this._updateSettings(t,!1),this.empty=!1,this.loadBrowserSettings()}).catch(console.error)},async loadBooks({params:e,arc:t,mtime:n}){var i;this.settingsLoaded||this.loadReaderSettings();const r=ne.currentRoute.value;e||(e=r.params);const s=e.pk,o=this.readerInfoSettings;t&&(o.arc=t),n||(n=(i=r.query)==null?void 0:i.ts,n||(n=this.mtime)),await ao.getReaderInfo(s,o,n).then(a=>{const c=a.data,u=c.books,l=[u==null?void 0:u.prevBook,u==null?void 0:u.current,u==null?void 0:u.nextBook];for(const d of l)d&&!d.settings&&(d.settings={});const f=this._getBookRoutes(u.prevBook,u.nextBook);return this.$patch(d=>{d.books.current=u.current,d.books.prev=u.prevBook,d.books.next=u.nextBook,d.arcs=c.arcs,d.arc=c.arc,d.routes.prev=this._getRouteParams(d.books.current,e.page,"prev"),d.routes.next=this._getRouteParams(d.books.current,e.page,"next"),d.routes.books=f,d.routes.close=c.closeRoute,d.empty=!1,d.mtime=c.mtime,d.bookSettings={}}),!0}).catch(a=>{console.debug(a),this.empty=!0})},async loadMtimes(){return await us.getMtime(this.arcs,{}).then(e=>{const t=e.data.maxMtime;return t!==this.mtime?this.loadBooks({mtime:t}):!0}).catch(console.error)},async _setBookmarkPage(e){const t={group:"c",ids:[+this.books.current.pk]};e=Math.max(Math.min(this.books.current.maxPage,e),0);const n={page:e};this.readerSettings.finishOnLastPage&&e>=this.books.current.maxPage&&(n.finished=!0),await bt.updateGroupBookmarks(t,{},n)},async setSettingsLocal(e){this._updateSettings(e,!0);const t={group:"c",ids:[+this.books.current.pk]};await bt.updateGroupBookmarks(t,{},this.books.current.settings)},setSettingsClient(e){this.clientSettings={...this.clientSettings,...e}},async clearSettingsLocal(){await this.setSettingsLocal(Pf),this.setSettingsClient(Mf)},async setSettingsGlobal(e){this._updateSettings(e,!1),await ao.updateReaderSettings(this.readerSettings),await this.clearSettingsLocal()},setBookChangeFlag(e){e=this.normalizeDirection(e),this.bookChange=this.routes.books[e]?e:void 0},linkLabel(e,t){return`${e==="prev"?"Previous":"Next"} ${t}`},normalizeDirection(e){return this.activeSettings.isReadInReverse?If[e]:e},_validateRoute(e,t){if(t||(t=this.books.current),!t)return{};const n=t.maxPage??0;return e.page>n?(e.page=n,console.warn("Tried to navigate past the end of the book.")):e.page<0&&(e.page=0,console.warn("Tried to navigate before the beginning of the book.")),e},_routeTo(e,t){if(e=this._validateRoute(e,t),this.isPagesNotRoutes&&+e.pk===this.books.current.pk)this.setActivePage(+e.page,!0);else{const n={name:"reader",params:e};ne.push(n).catch(console.debug)}},routeToDirectionOne(e){e=this.normalizeDirection(e);const t=e==="prev"?-1:1,n=this.page+=t;if(n<0||n>this.books.current.maxPage)return;const r={pk:this.books.current.pk,page:n};this._routeTo(r)},routeToDirection(e){if(e=this.normalizeDirection(e),this.routes[e]){const t=this.routes[e];this._routeTo(t)}else this.routes.books[e]?this.bookChange===e?this._routeTo(this.routes.books[e],this.books[e]):this.setBookChangeFlag(e):console.debug("No route to direction",e)},routeToPage(e){const t={pk:this.books.current.pk,page:e};this._routeTo(t)},routeToBook(e){this._routeTo(this.routes.books[e],this.books[e])},toRoute(e){return e?{params:e}:{}},_prefetchSrc(e,t,n=!1,r=!1){if(!e)return!1;const s=n?this.books[t]:this.books.current;if(!s)return!1;let o=e.page;if(r){if(!this.getBookSettings(s).twoPages)return!1;o+=1}if(o>s.maxPage)return!1;const i={pk:e.pk,page:o,mtime:s.mtime};return dc(i)},prefetchLinks(e,t,n=!1){if(!n&&this.cacheBook)return{};const r=[this._prefetchSrc(e,t,n,!1),this._prefetchSrc(e,t,n,!0)],s=[];for(const o of r)o&&s.push({...jo,href:o});return{link:s}},prefetchBook(e){if(!this.cacheBook||e.fileType=="PDF")return{};const t=e.pk,n=[];for(let r=0;r<=e.maxPage;r++){const s={pk:t,page:r,mtime:e.mtime},o=dc(s);o&&n.push({...jo,href:o})}return{link:n}}}}),kf=hp();function F2(e){e.use(kf)}const Uo=["admin-groups","admin-users","admin-libraries"];Object.freeze(Uo);const Nf=wr("socket",{state:()=>({isConnected:!1,reconnectError:!1,app:void 0,heartBeatInterval:5*1e3,heartBeatTimer:0}),getters:{async adminStore(){if(dr().isUserAdmin)return ft(()=>import("./admin-rFfBszpt.js"),[]).then(e=>e.useAdminStore()).catch(console.error)}},actions:{SOCKET_ONOPEN(e){this.app.config.globalProperties.$socket=e.currentTarget,this.$patch(t=>{t.isConnected=!0,t.reconnectError=!1}),this.heartBeatTimer=globalThis.setInterval(()=>{try{this.isConnected&&this.app.config.globalProperties.$socket.send("")}catch(t){console.warn("keep-alive",t)}},this.heartBeatInterval)},SOCKET_ONCLOSE(){this.isConnected=!1,globalThis.clearInterval(this.heartBeatTimer),this.heartBeatTimer=0},SOCKET_ONERROR(e){console.error("socket error",e),this.$patch(t=>{t.isConnected=!1,t.reconnectError=!0})},SOCKET_ONMESSAGE(e){const t=e.data;switch(console.debug(t),t){case kt.ADMIN_FLAGS:this.adminFlagsNotified();break;case kt.BOOKMARK:this.bookmarksNotified();break;case kt.COVERS:this.coversNotified();break;case kt.GROUPS:this.groupsNotified();break;case kt.USERS:this.usersNotified();break;case kt.LIBRARY:this.libraryNotified();break;case kt.LIBRARIAN_STATUS:this.adminLoadTables(["LibrarianStatus"]);break;case kt.FAILED_IMPORTS:this.failedImportsNotified();break;default:console.debug("Unhandled websocket message:",t)}},SOCKET_RECONNECT(e){console.debug("socket reconnect",e)},SOCKET_RECONNECT_ERROR(){console.error("socket reconnect error"),this.reconnectError=!0},async adminLoadTables(e){this.adminStore&&(await this.adminStore).loadTables(e)},adminFlagsNotified(){var t,n;dr().loadAdminFlags(),((n=(t=ne==null?void 0:ne.currentRoute)==null?void 0:t.value)==null?void 0:n.name)==="admin-flags"&&this.adminLoadTables(["Flag"])},reloadBrowser(){var t,n;((n=(t=ne==null?void 0:ne.currentRoute)==null?void 0:t.value)==null?void 0:n.name)==="browser"&&fc().loadMtimes()},bookmarksNotified(){this.reloadBrowser()},coversNotified(){this.reloadBrowser()},groupsNotified(){var t,n;const e=(n=(t=ne==null?void 0:ne.currentRoute)==null?void 0:t.value)==null?void 0:n.name;Uo.includes(e)&&this.adminLoadTables(["Group"])},usersNotified(){var t,n;const e=(n=(t=ne==null?void 0:ne.currentRoute)==null?void 0:t.value)==null?void 0:n.name;Uo.includes(e)&&this.adminLoadTables(["User"])},async libraryNotified(){var t,n;switch(nr().setTimestamp(),(n=(t=ne==null?void 0:ne.currentRoute)==null?void 0:t.value)==null?void 0:n.name){case"browser":fc().loadMtimes();break;case"reader":V2().loadMtimes();break;case"admin-groups":this.adminLoadTables(["Library"]);break;case"admin-libraries":this.adminLoadTables(["Library","FailedImport"]);break;case"admin-stats":this.adminStore&&(await this.adminStore).loadStats();break}},async failedImportsNotified(){if(this.adminStore){const e=await this.adminStore;e.unseenFailedImports=!0}}}});function k2(){return Nf(kf)}const N2=(e,t)=>{const n=e.__vccOpts||e;for(const[r,s]of t)n[r]=s;return n};function _t(e,t){return n=>Object.keys(e).reduce((r,s)=>{const i=typeof e[s]=="object"&&e[s]!=null&&!Array.isArray(e[s])?e[s]:{type:e[s]};return n&&s in n?r[s]={...i,default:n[s]}:r[s]=i,t&&!r[s].source&&(r[s].source=t),r},{})}const j2=_t({class:[String,Array,Object],style:{type:[String,Array,Object],default:null}},"component"),Ze=typeof window<"u",_b=Ze&&"IntersectionObserver"in window,$2=Ze&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function mc(e,t,n){B2(e,t),t.set(e,n)}function B2(e,t){if(t.has(e))throw new TypeError("Cannot initialize the same private elements twice on an object")}function gc(e,t,n){return e.set(jf(e,t),n),n}function Lt(e,t){return e.get(jf(e,t))}function jf(e,t,n){if(typeof e=="function"?e===t:e.has(t))return arguments.length<3?t:n;throw new TypeError("Private element is not present on this object")}function $f(e,t,n){const r=t.length-1;if(r<0)return e===void 0?n:e;for(let s=0;s<r;s++){if(e==null)return n;e=e[t[s]]}return e==null||e[t[r]]===void 0?n:e[t[r]]}function U2(e,t){if(e===t)return!0;if(e instanceof Date&&t instanceof Date&&e.getTime()!==t.getTime()||e!==Object(e)||t!==Object(t))return!1;const n=Object.keys(e);return n.length!==Object.keys(t).length?!1:n.every(r=>U2(e[r],t[r]))}function Wo(e,t,n){return e==null||!t||typeof t!="string"?n:e[t]!==void 0?e[t]:(t=t.replace(/\[(\w+)\]/g,".$1"),t=t.replace(/^\./,""),$f(e,t.split("."),n))}function qb(e,t,n){if(t===!0)return e===void 0?n:e;if(t==null||typeof t=="boolean")return n;if(e!==Object(e)){if(typeof t!="function")return n;const s=t(e,n);return typeof s>"u"?n:s}if(typeof t=="string")return Wo(e,t,n);if(Array.isArray(t))return $f(e,t,n);if(typeof t!="function")return n;const r=t(e,n);return typeof r>"u"?n:r}function Bf(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return Array.from({length:e},(n,r)=>t+r)}function kr(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"px";if(e==null||e==="")return;const n=Number(e);return isNaN(n)?String(e):isFinite(n)?`${n}${t}`:void 0}function eS(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)}function vc(e){let t;return e!==null&&typeof e=="object"&&((t=Object.getPrototypeOf(e))===Object.prototype||t===null)}function Uf(e){if(e&&"$el"in e){const t=e.$el;return(t==null?void 0:t.nodeType)===Node.TEXT_NODE?t.nextElementSibling:t}return e}const tS=Object.freeze({enter:13,tab:9,delete:46,esc:27,space:32,up:38,down:40,left:37,right:39,end:35,home:36,del:46,backspace:8,insert:45,pageup:33,pagedown:34,shift:16}),nS=Object.freeze({enter:"Enter",tab:"Tab",delete:"Delete",esc:"Escape",space:"Space",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",end:"End",home:"Home",del:"Delete",backspace:"Backspace",insert:"Insert",pageup:"PageUp",pagedown:"PageDown",shift:"Shift"});function rS(e){return Object.keys(e)}function co(e,t){return t.every(n=>e.hasOwnProperty(n))}function W2(e,t){const n={};for(const r of t)Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function yc(e,t,n){const r=Object.create(null),s=Object.create(null);for(const o in e)t.some(i=>i instanceof RegExp?i.test(o):i===o)?r[o]=e[o]:s[o]=e[o];return[r,s]}function G2(e,t){const n={...e};return t.forEach(r=>delete n[r]),n}const Wf=/^on[^a-z]/,sS=e=>Wf.test(e),K2=["onAfterscriptexecute","onAnimationcancel","onAnimationend","onAnimationiteration","onAnimationstart","onAuxclick","onBeforeinput","onBeforescriptexecute","onChange","onClick","onCompositionend","onCompositionstart","onCompositionupdate","onContextmenu","onCopy","onCut","onDblclick","onFocusin","onFocusout","onFullscreenchange","onFullscreenerror","onGesturechange","onGestureend","onGesturestart","onGotpointercapture","onInput","onKeydown","onKeypress","onKeyup","onLostpointercapture","onMousedown","onMousemove","onMouseout","onMouseover","onMouseup","onMousewheel","onPaste","onPointercancel","onPointerdown","onPointerenter","onPointerleave","onPointermove","onPointerout","onPointerover","onPointerup","onReset","onSelect","onSubmit","onTouchcancel","onTouchend","onTouchmove","onTouchstart","onTransitioncancel","onTransitionend","onTransitionrun","onTransitionstart","onWheel"],z2=["ArrowUp","ArrowDown","ArrowRight","ArrowLeft","Enter","Escape","Tab"," "];function oS(e){return e.isComposing&&z2.includes(e.key)}function iS(e){const[t,n]=yc(e,[Wf]),r=G2(t,K2),[s,o]=yc(n,["class","style","id",/^data-/]);return Object.assign(s,t),Object.assign(o,r),[s,o]}function aS(e){return e==null?[]:Array.isArray(e)?e:[e]}function cS(e,t){let n=0;const r=function(){for(var s=arguments.length,o=new Array(s),i=0;i<s;i++)o[i]=arguments[i];clearTimeout(n),n=setTimeout(()=>e(...o),qe(t))};return r.clear=()=>{clearTimeout(n)},r.immediate=e,r}function Pi(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;return Math.max(t,Math.min(n,e))}function lS(e){const t=e.toString().trim();return t.includes(".")?t.length-t.indexOf(".")-1:0}function bc(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0";return e+n.repeat(Math.max(0,t-e.length))}function Sc(e,t){return(arguments.length>2&&arguments[2]!==void 0?arguments[2]:"0").repeat(Math.max(0,t-e.length))+e}function Z2(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;const n=[];let r=0;for(;r<e.length;)n.push(e.substr(r,t)),r+=t;return n}function Ve(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=arguments.length>2?arguments[2]:void 0;const r={};for(const s in e)r[s]=e[s];for(const s in t){const o=e[s],i=t[s];if(vc(o)&&vc(i)){r[s]=Ve(o,i,n);continue}if(n&&Array.isArray(o)&&Array.isArray(i)){r[s]=n(o,i);continue}r[s]=i}return r}function Y2(e){return e.map(t=>t.type===He?Y2(t.children):t).flat()}function mn(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";if(mn.cache.has(e))return mn.cache.get(e);const t=e.replace(/[^a-z]/gi,"-").replace(/\B([A-Z])/g,"-$1").toLowerCase();return mn.cache.set(e,t),t}mn.cache=new Map;function Zn(e,t){if(!t||typeof t!="object")return[];if(Array.isArray(t))return t.map(n=>Zn(e,n)).flat(1);if(t.suspense)return Zn(e,t.ssContent);if(Array.isArray(t.children))return t.children.map(n=>Zn(e,n)).flat(1);if(t.component){if(Object.getOwnPropertySymbols(t.component.provides).includes(e))return[t.component];if(t.component.subTree)return Zn(e,t.component.subTree).flat(1)}return[]}var Sn=new WeakMap,sn=new WeakMap;class uS{constructor(t){mc(this,Sn,[]),mc(this,sn,0),this.size=t}get isFull(){return Lt(Sn,this).length===this.size}push(t){Lt(Sn,this)[Lt(sn,this)]=t,gc(sn,this,(Lt(sn,this)+1)%this.size)}values(){return Lt(Sn,this).slice(Lt(sn,this)).concat(Lt(Sn,this).slice(0,Lt(sn,this)))}clear(){Lt(Sn,this).length=0,gc(sn,this,0)}}function fS(e){const t=Ge({});Er(()=>{const r=e();for(const s in r)t[s]=r[s]},{flush:"sync"});const n={};for(const r in t)n[r]=Xe(()=>t[r]);return n}function dS(e,t){return e.includes(t)}function hS(e){return e[2].toLowerCase()+e.slice(3)}const pS=()=>[Function,Array];function mS(e,t){return t="on"+vr(t),!!(e[t]||e[`${t}Once`]||e[`${t}Capture`]||e[`${t}OnceCapture`]||e[`${t}CaptureOnce`])}function gS(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];if(Array.isArray(e))for(const s of e)s(...n);else typeof e=="function"&&e(...n)}function J2(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;const n=["button","[href]",'input:not([type="hidden"])',"select","textarea","[tabindex]"].map(r=>`${r}${t?':not([tabindex="-1"])':""}:not([disabled])`).join(", ");return[...e.querySelectorAll(n)]}function X2(e,t,n){let r,s=e.indexOf(document.activeElement);const o=t==="next"?1:-1;do s+=o,r=e[s];while((!r||r.offsetParent==null||!((n==null?void 0:n(r))??!0))&&s<e.length&&s>=0);return r}function Q2(e,t){var r,s,o,i;const n=J2(e);if(t==null)(e===document.activeElement||!e.contains(document.activeElement))&&((r=n[0])==null||r.focus());else if(t==="first")(s=n[0])==null||s.focus();else if(t==="last")(o=n.at(-1))==null||o.focus();else if(typeof t=="number")(i=n[t])==null||i.focus();else{const a=X2(n,t);a?a.focus():Q2(e,t==="next"?"first":"last")}}function vS(e){return e==null||typeof e=="string"&&e.trim()===""}function yS(){}function bS(e,t){if(!(Ze&&typeof CSS<"u"&&typeof CSS.supports<"u"&&CSS.supports(`selector(${t})`)))return null;try{return!!e&&e.matches(t)}catch{return null}}function _2(e){return e.some(t=>On(t)?t.type===Pe?!1:t.type!==He||_2(t.children):!0)?e:null}function SS(e,t){if(!Ze||e===0)return t(),()=>{};const n=window.setTimeout(t,e);return()=>window.clearTimeout(n)}function CS(e,t){const n=e.clientX,r=e.clientY,s=t.getBoundingClientRect(),o=s.left,i=s.top,a=s.right,c=s.bottom;return n>=o&&n<=a&&r>=i&&r<=c}function q2(){const e=it(),t=n=>{e.value=n};return Object.defineProperty(t,"value",{enumerable:!0,get:()=>e.value,set:n=>e.value=n}),Object.defineProperty(t,"el",{enumerable:!0,get:()=>Uf(e.value)}),t}function AS(e){const t=e.key.length===1,n=!e.ctrlKey&&!e.metaKey&&!e.altKey;return t&&n}function ES(e){return typeof e=="string"||typeof e=="number"||typeof e=="boolean"||typeof e=="bigint"}function LS(e){const t={};for(const n in e)t[Qe(n)]=e[n];return t}function wS(e){const t=["checked","disabled"];return Object.fromEntries(Object.entries(e).filter(n=>{let[r,s]=n;return t.includes(r)?!!s:s!==void 0}))}const Cn=2.4,Cc=.2126729,Ac=.7151522,Ec=.072175,ev=.55,tv=.58,nv=.57,rv=.62,Nr=.03,Lc=1.45,sv=5e-4,ov=1.25,iv=1.25,wc=.078,Tc=12.82051282051282,jr=.06,xc=.001;function Rc(e,t){const n=(e.r/255)**Cn,r=(e.g/255)**Cn,s=(e.b/255)**Cn,o=(t.r/255)**Cn,i=(t.g/255)**Cn,a=(t.b/255)**Cn;let c=n*Cc+r*Ac+s*Ec,u=o*Cc+i*Ac+a*Ec;if(c<=Nr&&(c+=(Nr-c)**Lc),u<=Nr&&(u+=(Nr-u)**Lc),Math.abs(u-c)<sv)return 0;let l;if(u>c){const f=(u**ev-c**tv)*ov;l=f<xc?0:f<wc?f-f*Tc*jr:f-jr}else{const f=(u**rv-c**nv)*iv;l=f>-xc?0:f>-wc?f-f*Tc*jr:f+jr}return l*100}function TS(e){}function xS(e,t){t=Array.isArray(t)?t.slice(0,-1).map(n=>`'${n}'`).join(", ")+` or '${t.at(-1)}'`:`'${t}'`}const fs=.20689655172413793,av=e=>e>fs**3?Math.cbrt(e):e/(3*fs**2)+4/29,cv=e=>e>fs?e**3:3*fs**2*(e-4/29);function Gf(e){const t=av,n=t(e[1]);return[116*n-16,500*(t(e[0]/.95047)-n),200*(n-t(e[2]/1.08883))]}function Kf(e){const t=cv,n=(e[0]+16)/116;return[t(n+e[1]/500)*.95047,t(n),t(n-e[2]/200)*1.08883]}const lv=[[3.2406,-1.5372,-.4986],[-.9689,1.8758,.0415],[.0557,-.204,1.057]],uv=e=>e<=.0031308?e*12.92:1.055*e**(1/2.4)-.055,fv=[[.4124,.3576,.1805],[.2126,.7152,.0722],[.0193,.1192,.9505]],dv=e=>e<=.04045?e/12.92:((e+.055)/1.055)**2.4;function zf(e){const t=Array(3),n=uv,r=lv;for(let s=0;s<3;++s)t[s]=Math.round(Pi(n(r[s][0]*e[0]+r[s][1]*e[1]+r[s][2]*e[2]))*255);return{r:t[0],g:t[1],b:t[2]}}function Mi(e){let{r:t,g:n,b:r}=e;const s=[0,0,0],o=dv,i=fv;t=o(t/255),n=o(n/255),r=o(r/255);for(let a=0;a<3;++a)s[a]=i[a][0]*t+i[a][1]*n+i[a][2]*r;return s}function hv(e){return!!e&&/^(#|var\(--|(rgb|hsl)a?\()/.test(e)}function RS(e){return hv(e)&&!/^((rgb|hsl)a?\()?var\(--/.test(e)}const Oc=/^(?<fn>(?:rgb|hsl)a?)\((?<values>.+)\)/,pv={rgb:(e,t,n,r)=>({r:e,g:t,b:n,a:r}),rgba:(e,t,n,r)=>({r:e,g:t,b:n,a:r}),hsl:(e,t,n,r)=>Pc({h:e,s:t,l:n,a:r}),hsla:(e,t,n,r)=>Pc({h:e,s:t,l:n,a:r}),hsv:(e,t,n,r)=>mr({h:e,s:t,v:n,a:r}),hsva:(e,t,n,r)=>mr({h:e,s:t,v:n,a:r})};function Rt(e){if(typeof e=="number")return{r:(e&16711680)>>16,g:(e&65280)>>8,b:e&255};if(typeof e=="string"&&Oc.test(e)){const{groups:t}=e.match(Oc),{fn:n,values:r}=t,s=r.split(/,\s*|\s*\/\s*|\s+/).map((o,i)=>o.endsWith("%")||i>0&&i<3&&["hsl","hsla","hsv","hsva"].includes(n)?parseFloat(o)/100:parseFloat(o));return pv[n](...s)}else if(typeof e=="string"){let t=e.startsWith("#")?e.slice(1):e;return[3,4].includes(t.length)?t=t.split("").map(n=>n+n).join(""):[6,8].includes(t.length),gv(t)}else if(typeof e=="object"){if(co(e,["r","g","b"]))return e;if(co(e,["h","s","l"]))return mr(Zf(e));if(co(e,["h","s","v"]))return mr(e)}throw new TypeError(`Invalid color: ${e==null?e:String(e)||e.constructor.name}
|
|
32
|
-
Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`)}function mr(e){const{h:t,s:n,v:r,a:s}=e,o=a=>{const c=(a+t/60)%6;return r-r*n*Math.max(Math.min(c,4-c,1),0)},i=[o(5),o(3),o(1)].map(a=>Math.round(a*255));return{r:i[0],g:i[1],b:i[2],a:s}}function Pc(e){return mr(Zf(e))}function Zf(e){const{h:t,s:n,l:r,a:s}=e,o=r+n*Math.min(r,1-r),i=o===0?0:2-2*r/o;return{h:t,s:i,v:o,a:s}}function $r(e){const t=Math.round(e).toString(16);return("00".substr(0,2-t.length)+t).toUpperCase()}function mv(e){let{r:t,g:n,b:r,a:s}=e;return`#${[$r(t),$r(n),$r(r),s!==void 0?$r(Math.round(s*255)):""].join("")}`}function gv(e){e=vv(e);let[t,n,r,s]=Z2(e,2).map(o=>parseInt(o,16));return s=s===void 0?s:s/255,{r:t,g:n,b:r,a:s}}function vv(e){return e.startsWith("#")&&(e=e.slice(1)),e=e.replace(/([^0-9a-f])/gi,"F"),(e.length===3||e.length===4)&&(e=e.split("").map(t=>t+t).join("")),e.length!==6&&(e=bc(bc(e,6),8,"F")),e}function yv(e,t){const n=Gf(Mi(e));return n[0]=n[0]+t*10,zf(Kf(n))}function bv(e,t){const n=Gf(Mi(e));return n[0]=n[0]-t*10,zf(Kf(n))}function Sv(e){const t=Rt(e);return Mi(t)[1]}function Cv(e){const t=Math.abs(Rc(Rt(0),Rt(e)));return Math.abs(Rc(Rt(16777215),Rt(e)))>Math.min(t,50)?"#fff":"#000"}function Dt(e,t){const n=Vn();if(!n)throw new Error(`[Vuetify] ${e} must be called from inside a setup function`);return n}function Av(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"composables";const t=Dt(e).type;return mn((t==null?void 0:t.aliasName)||(t==null?void 0:t.name))}function Ev(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Dt("injectSelf");const{provides:n}=t;if(n&&e in n)return n[e]}const Dn=Symbol.for("vuetify:defaults");function Lv(e){return Fe(e)}function Ii(){const e=Ce(Dn);if(!e)throw new Error("[Vuetify] Could not find defaults instance");return e}function OS(e,t){const n=Ii(),r=Fe(e),s=ie(()=>{if(qe(t==null?void 0:t.disabled))return n.value;const i=qe(t==null?void 0:t.scoped),a=qe(t==null?void 0:t.reset),c=qe(t==null?void 0:t.root);if(r.value==null&&!(i||a||c))return n.value;let u=Ve(r.value,{prev:n.value});if(i)return u;if(a||c){const l=Number(a||1/0);for(let f=0;f<=l&&!(!u||!("prev"in u));f++)u=u.prev;return u&&typeof c=="string"&&c in u&&(u=Ve(Ve(u,{prev:u}),u[c])),u}return u.prev?Ve(u.prev,u):u});return Ot(Dn,s),s}function wv(e,t){return e.props&&(typeof e.props[t]<"u"||typeof e.props[mn(t)]<"u")}function Tv(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:Ii();const r=Dt("useDefaults");if(t=t??r.type.name??r.type.__name,!t)throw new Error("[Vuetify] Could not determine component name");const s=ie(()=>{var c;return(c=n.value)==null?void 0:c[e._as??t]}),o=new Proxy(e,{get(c,u){var m,h,p,g;const l=Reflect.get(c,u);if(u==="class"||u==="style")return[(m=s.value)==null?void 0:m[u],l].filter(v=>v!=null);if(wv(r.vnode,u))return l;const f=(h=s.value)==null?void 0:h[u];if(f!==void 0)return f;const d=(g=(p=n.value)==null?void 0:p.global)==null?void 0:g[u];return d!==void 0?d:l}}),i=it();Er(()=>{if(s.value){const c=Object.entries(s.value).filter(u=>{let[l]=u;return l.startsWith(l[0].toUpperCase())});i.value=c.length?Object.fromEntries(c):void 0}else i.value=void 0});function a(){const c=Ev(Dn,r);Ot(Dn,ie(()=>i.value?Ve((c==null?void 0:c.value)??{},i.value):c==null?void 0:c.value))}return{props:o,provideSubDefaults:a}}function Or(e){if(e._setup=e._setup??e.setup,!e.name)return e;if(e._setup){e.props=_t(e.props??{},e.name)();const t=Object.keys(e.props).filter(n=>n!=="class"&&n!=="style");e.filterProps=function(r){return W2(r,t)},e.props._as=String,e.setup=function(r,s){const o=Ii();if(!o.value)return e._setup(r,s);const{props:i,provideSubDefaults:a}=Tv(r,r._as??e.name,o),c=e._setup(i,s);return a(),c}}return e}function Yf(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;return t=>(e?Or:Es)(t)}function PS(e,t){return t.props=e,t}function xv(e){const t=Dt("useRender");t.render=e}function Rv(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"content";const n=q2(),r=Fe();if(Ze){const s=new ResizeObserver(o=>{e==null||e(o,s),o.length&&(t==="content"?r.value=o[0].contentRect:r.value=o[0].target.getBoundingClientRect())});Ar(()=>{s.disconnect()}),tt(()=>n.el,(o,i)=>{i&&(s.unobserve(i),r.value=void 0),o&&s.observe(o)},{flush:"post"})}return{resizeRef:n,contentRect:oi(r)}}const ds=Symbol.for("vuetify:layout"),Jf=Symbol.for("vuetify:layout-item"),Mc=1e3,Ov=_t({overlaps:{type:Array,default:()=>[]},fullHeight:Boolean},"layout"),MS=_t({name:{type:String},order:{type:[Number,String],default:0},absolute:Boolean},"layout-item");function IS(){const e=Ce(ds);if(!e)throw new Error("[Vuetify] Could not find injected layout");return{getLayoutItem:e.getLayoutItem,mainRect:e.mainRect,mainStyles:e.mainStyles}}function HS(e){const t=Ce(ds);if(!t)throw new Error("[Vuetify] Could not find injected layout");const n=e.id??`layout-item-${L1()}`,r=Dt("useLayoutItem");Ot(Jf,{id:n});const s=it(!1);hi(()=>s.value=!0),di(()=>s.value=!1);const{layoutItemStyles:o,layoutItemScrimStyles:i}=t.register(r,{...e,active:ie(()=>s.value?!1:e.active.value),id:n});return Ar(()=>t.unregister(n)),{layoutItemStyles:o,layoutRect:t.layoutRect,layoutItemScrimStyles:i}}const Pv=(e,t,n,r)=>{let s={top:0,left:0,right:0,bottom:0};const o=[{id:"",layer:{...s}}];for(const i of e){const a=t.get(i),c=n.get(i),u=r.get(i);if(!a||!c||!u)continue;const l={...s,[a.value]:parseInt(s[a.value],10)+(u.value?parseInt(c.value,10):0)};o.push({id:i,layer:l}),s=l}return o};function Mv(e){const t=Ce(ds,null),n=ie(()=>t?t.rootZIndex.value-100:Mc),r=Fe([]),s=Ge(new Map),o=Ge(new Map),i=Ge(new Map),a=Ge(new Map),c=Ge(new Map),{resizeRef:u,contentRect:l}=Rv(),f=ie(()=>{const T=new Map,P=e.overlaps??[];for(const L of P.filter(A=>A.includes(":"))){const[A,R]=L.split(":");if(!r.value.includes(A)||!r.value.includes(R))continue;const I=s.get(A),O=s.get(R),k=o.get(A),X=o.get(R);!I||!O||!k||!X||(T.set(R,{position:I.value,amount:parseInt(k.value,10)}),T.set(A,{position:O.value,amount:-parseInt(X.value,10)}))}return T}),d=ie(()=>{const T=[...new Set([...i.values()].map(L=>L.value))].sort((L,A)=>L-A),P=[];for(const L of T){const A=r.value.filter(R=>{var I;return((I=i.get(R))==null?void 0:I.value)===L});P.push(...A)}return Pv(P,s,o,a)}),m=ie(()=>!Array.from(c.values()).some(T=>T.value)),h=ie(()=>d.value[d.value.length-1].layer),p=Xe(()=>({"--v-layout-left":kr(h.value.left),"--v-layout-right":kr(h.value.right),"--v-layout-top":kr(h.value.top),"--v-layout-bottom":kr(h.value.bottom),...m.value?void 0:{transition:"none"}})),g=ie(()=>d.value.slice(1).map((T,P)=>{let{id:L}=T;const{layer:A}=d.value[P],R=o.get(L),I=s.get(L);return{id:L,...A,size:Number(R.value),position:I.value}})),v=T=>g.value.find(P=>P.id===T),b=Dt("createLayout"),S=it(!1);pi(()=>{S.value=!0}),Ot(ds,{register:(T,P)=>{let{id:L,order:A,position:R,layoutSize:I,elementSize:O,active:k,disableTransitions:X,absolute:re}=P;i.set(L,A),s.set(L,R),o.set(L,I),a.set(L,k),X&&c.set(L,X);const K=Zn(Jf,b==null?void 0:b.vnode).indexOf(T);K>-1?r.value.splice(K,0,L):r.value.push(L);const Z=ie(()=>g.value.findIndex(ye=>ye.id===L)),fe=ie(()=>n.value+d.value.length*2-Z.value*2),ae=ie(()=>{const ye=R.value==="left"||R.value==="right",we=R.value==="right",nt=R.value==="bottom",qt=O.value??I.value,$e=qt===0?"%":"px",H={[R.value]:0,zIndex:fe.value,transform:`translate${ye?"X":"Y"}(${(k.value?0:-(qt===0?100:qt))*(we||nt?-1:1)}${$e})`,position:re.value||n.value!==Mc?"absolute":"fixed",...m.value?void 0:{transition:"none"}};if(!S.value)return H;const B=g.value[Z.value];if(!B)throw new Error(`[Vuetify] Could not find layout item "${L}"`);const U=f.value.get(L);return U&&(B[U.position]+=U.amount),{...H,height:ye?`calc(100% - ${B.top}px - ${B.bottom}px)`:O.value?`${O.value}px`:void 0,left:we?void 0:`${B.left}px`,right:we?`${B.right}px`:void 0,top:R.value!=="bottom"?`${B.top}px`:void 0,bottom:R.value!=="top"?`${B.bottom}px`:void 0,width:ye?O.value?`${O.value}px`:void 0:`calc(100% - ${B.left}px - ${B.right}px)`}}),Le=ie(()=>({zIndex:fe.value-1}));return{layoutItemStyles:ae,layoutItemScrimStyles:Le,zIndex:fe}},unregister:T=>{i.delete(T),s.delete(T),o.delete(T),a.delete(T),c.delete(T),r.value=r.value.filter(P=>P!==T)},mainRect:h,mainStyles:p,getLayoutItem:v,items:g,layoutRect:l,rootZIndex:n});const E=Xe(()=>["v-layout",{"v-layout--full-height":e.fullHeight}]),x=Xe(()=>({zIndex:t?n.value:void 0,position:t?"relative":void 0,overflow:t?"hidden":void 0}));return{layoutClasses:E,layoutStyles:x,getLayoutItem:v,items:g,layoutRect:l,layoutRef:u}}function Iv(e,t){let n;function r(){n=or(),n.run(()=>t.length?t(()=>{n==null||n.stop(),r()}):t())}tt(e,s=>{s&&!n?r():s||(n==null||n.stop(),n=void 0)},{immediate:!0}),qo(()=>{n==null||n.stop()})}function Hv(e,t,n){let r=arguments.length>3&&arguments[3]!==void 0?arguments[3]:f=>f,s=arguments.length>4&&arguments[4]!==void 0?arguments[4]:f=>f;const o=Dt("useProxiedModel"),i=Fe(e[t]!==void 0?e[t]:n),a=mn(t),u=ie(a!==t?()=>{var f,d,m,h;return e[t],!!(((f=o.vnode.props)!=null&&f.hasOwnProperty(t)||(d=o.vnode.props)!=null&&d.hasOwnProperty(a))&&((m=o.vnode.props)!=null&&m.hasOwnProperty(`onUpdate:${t}`)||(h=o.vnode.props)!=null&&h.hasOwnProperty(`onUpdate:${a}`)))}:()=>{var f,d;return e[t],!!((f=o.vnode.props)!=null&&f.hasOwnProperty(t)&&((d=o.vnode.props)!=null&&d.hasOwnProperty(`onUpdate:${t}`)))});Iv(()=>!u.value,()=>{tt(()=>e[t],f=>{i.value=f})});const l=ie({get(){const f=e[t];return r(u.value?f:i.value)},set(f){const d=s(f),m=se(u.value?e[t]:i.value);m===d||r(m)===f||(i.value=d,o==null||o.emit(`update:${t}`,d))}});return Object.defineProperty(l,"externalValue",{get:()=>u.value?e[t]:i.value}),l}const Dv={badge:"Badge",open:"Open",close:"Close",dismiss:"Dismiss",confirmEdit:{ok:"OK",cancel:"Cancel"},dataIterator:{noResultsText:"No matching records found",loadingText:"Loading items..."},dataTable:{itemsPerPageText:"Rows per page:",ariaLabel:{sortDescending:"Sorted descending.",sortAscending:"Sorted ascending.",sortNone:"Not sorted.",activateNone:"Activate to remove sorting.",activateDescending:"Activate to sort descending.",activateAscending:"Activate to sort ascending."},sortBy:"Sort by"},dataFooter:{itemsPerPageText:"Items per page:",itemsPerPageAll:"All",nextPage:"Next page",prevPage:"Previous page",firstPage:"First page",lastPage:"Last page",pageText:"{0}-{1} of {2}"},dateRangeInput:{divider:"to"},datePicker:{itemsSelected:"{0} selected",range:{title:"Select dates",header:"Enter dates"},title:"Select date",header:"Enter date",input:{placeholder:"Enter date"}},noDataText:"No data available",carousel:{prev:"Previous visual",next:"Next visual",ariaLabel:{delimiter:"Carousel slide {0} of {1}"}},calendar:{moreEvents:"{0} more",today:"Today"},input:{clear:"Clear {0}",prependAction:"{0} prepended action",appendAction:"{0} appended action",otp:"Please enter OTP character {0}"},fileInput:{counter:"{0} files",counterSize:"{0} files ({1} in total)"},fileUpload:{title:"Drag and drop files here",divider:"or",browse:"Browse Files"},timePicker:{am:"AM",pm:"PM",title:"Select Time"},pagination:{ariaLabel:{root:"Pagination Navigation",next:"Next page",previous:"Previous page",page:"Go to page {0}",currentPage:"Page {0}, Current page",first:"First page",last:"Last page"}},stepper:{next:"Next",prev:"Previous"},rating:{ariaLabel:{item:"Rating {0} of {1}"}},loading:"Loading...",infiniteScroll:{loadMore:"Load more",empty:"No more"},rules:{required:"This field is required",email:"Please enter a valid email",number:"This field can only contain numbers",integer:"This field can only contain integer values",capital:"This field can only contain uppercase letters",maxLength:"You must enter a maximum of {0} characters",minLength:"You must enter a minimum of {0} characters",strictLength:"The length of the entered field is invalid",exclude:"The {0} character is not allowed",notEmpty:"Please choose at least one value",pattern:"Invalid format"}},Ic="$vuetify.",Hc=(e,t)=>e.replace(/\{(\d+)\}/g,(n,r)=>String(t[Number(r)])),Xf=(e,t,n)=>function(r){for(var s=arguments.length,o=new Array(s>1?s-1:0),i=1;i<s;i++)o[i-1]=arguments[i];if(!r.startsWith(Ic))return Hc(r,o);const a=r.replace(Ic,""),c=e.value&&n.value[e.value],u=t.value&&n.value[t.value];let l=Wo(c,a,null);return l||(`${r}${e.value}`,l=Wo(u,a,null)),l||(l=r),typeof l!="string"&&(l=r),Hc(l,o)};function Qf(e,t){return(n,r)=>new Intl.NumberFormat([e.value,t.value],r).format(n)}function lo(e,t,n){const r=Hv(e,t,e[t]??n.value);return r.value=e[t]??n.value,tt(n,s=>{e[t]==null&&(r.value=n.value)}),r}function _f(e){return t=>{const n=lo(t,"locale",e.current),r=lo(t,"fallback",e.fallback),s=lo(t,"messages",e.messages);return{name:"vuetify",current:n,fallback:r,messages:s,t:Xf(n,r,s),n:Qf(n,r),provide:_f({current:n,fallback:r,messages:s})}}}function Vv(e){const t=it((e==null?void 0:e.locale)??"en"),n=it((e==null?void 0:e.fallback)??"en"),r=Fe({en:Dv,...e==null?void 0:e.messages});return{name:"vuetify",current:t,fallback:n,messages:r,t:Xf(t,n,r),n:Qf(t,n),provide:_f({current:t,fallback:n,messages:r})}}const hs=Symbol.for("vuetify:locale");function Fv(e){return e.name!=null}function kv(e){const t=e!=null&&e.adapter&&Fv(e==null?void 0:e.adapter)?e==null?void 0:e.adapter:Vv(e),n=jv(t,e);return{...t,...n}}function DS(){const e=Ce(hs);if(!e)throw new Error("[Vuetify] Could not find injected locale instance");return e}function Nv(){return{af:!1,ar:!0,bg:!1,ca:!1,ckb:!1,cs:!1,de:!1,el:!1,en:!1,es:!1,et:!1,fa:!0,fi:!1,fr:!1,hr:!1,hu:!1,he:!0,id:!1,it:!1,ja:!1,km:!1,ko:!1,lv:!1,lt:!1,nl:!1,no:!1,pl:!1,pt:!1,ro:!1,ru:!1,sk:!1,sl:!1,srCyrl:!1,srLatn:!1,sv:!1,th:!1,tr:!1,az:!1,uk:!1,vi:!1,zhHans:!1,zhHant:!1}}function jv(e,t){const n=Fe((t==null?void 0:t.rtl)??Nv()),r=ie(()=>n.value[e.current.value]??!1);return{isRtl:r,rtl:n,rtlClasses:Xe(()=>`v-locale--is-${r.value?"rtl":"ltr"}`)}}function qf(){const e=Ce(hs);if(!e)throw new Error("[Vuetify] Could not find injected rtl instance");return{isRtl:e.isRtl,rtlClasses:e.rtlClasses}}const gr=Symbol.for("vuetify:theme"),$v=_t({theme:String},"theme");function Dc(){return{defaultTheme:"light",variations:{colors:[],lighten:0,darken:0},themes:{light:{dark:!1,colors:{background:"#FFFFFF",surface:"#FFFFFF","surface-bright":"#FFFFFF","surface-light":"#EEEEEE","surface-variant":"#424242","on-surface-variant":"#EEEEEE",primary:"#1867C0","primary-darken-1":"#1F5592",secondary:"#48A9A6","secondary-darken-1":"#018786",error:"#B00020",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#000000","border-opacity":.12,"high-emphasis-opacity":.87,"medium-emphasis-opacity":.6,"disabled-opacity":.38,"idle-opacity":.04,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.12,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#F5F5F5","theme-on-code":"#000000"}},dark:{dark:!0,colors:{background:"#121212",surface:"#212121","surface-bright":"#ccbfd6","surface-light":"#424242","surface-variant":"#c8c8c8","on-surface-variant":"#000000",primary:"#2196F3","primary-darken-1":"#277CC1",secondary:"#54B6B2","secondary-darken-1":"#48A9A6",error:"#CF6679",info:"#2196F3",success:"#4CAF50",warning:"#FB8C00"},variables:{"border-color":"#FFFFFF","border-opacity":.12,"high-emphasis-opacity":1,"medium-emphasis-opacity":.7,"disabled-opacity":.5,"idle-opacity":.1,"hover-opacity":.04,"focus-opacity":.12,"selected-opacity":.08,"activated-opacity":.12,"pressed-opacity":.16,"dragged-opacity":.08,"theme-kbd":"#212529","theme-on-kbd":"#FFFFFF","theme-code":"#343434","theme-on-code":"#CCCCCC"}}},stylesheetId:"vuetify-theme-stylesheet"}}function Bv(){var r,s;let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Dc();const t=Dc();if(!e)return{...t,isDisabled:!0};const n={};for(const[o,i]of Object.entries(e.themes??{})){const a=i.dark||o==="dark"?(r=t.themes)==null?void 0:r.dark:(s=t.themes)==null?void 0:s.light;n[o]=Ve(a,i)}return Ve(t,{...e,themes:n})}function on(e,t,n,r){e.push(`${Kv(t,r)} {
|
|
33
|
-
`,...n.map(s=>` ${s};
|
|
34
|
-
`),`}
|
|
35
|
-
`)}function Vc(e){const t=e.dark?2:1,n=e.dark?1:2,r=[];for(const[s,o]of Object.entries(e.colors)){const i=Rt(o);r.push(`--v-theme-${s}: ${i.r},${i.g},${i.b}`),s.startsWith("on-")||r.push(`--v-theme-${s}-overlay-multiplier: ${Sv(o)>.18?t:n}`)}for(const[s,o]of Object.entries(e.variables)){const i=typeof o=="string"&&o.startsWith("#")?Rt(o):void 0,a=i?`${i.r}, ${i.g}, ${i.b}`:void 0;r.push(`--v-${s}: ${a??o}`)}return r}function Uv(e,t,n){const r={};if(n)for(const s of["lighten","darken"]){const o=s==="lighten"?yv:bv;for(const i of Bf(n[s],1))r[`${e}-${s}-${i}`]=mv(o(Rt(t),i))}return r}function Wv(e,t){if(!t)return{};let n={};for(const r of t.colors){const s=e[r];s&&(n={...n,...Uv(r,s,t)})}return n}function Gv(e){const t={};for(const n of Object.keys(e)){if(n.startsWith("on-")||e[`on-${n}`])continue;const r=`on-${n}`,s=Rt(e[n]);t[r]=Cv(s)}return t}function Kv(e,t){if(!t)return e;const n=`:where(${t})`;return e===":root"?n:`${n} ${e}`}function zv(e,t){e&&(e.innerHTML=t)}function Zv(e,t){if(!Ze)return null;let n=document.getElementById(e);return n||(n=document.createElement("style"),n.id=e,n.type="text/css",t&&n.setAttribute("nonce",t),document.head.appendChild(n)),n}function Yv(e){const t=Bv(e),n=it(t.defaultTheme),r=Fe(t.themes),s=ie(()=>{const u={};for(const[l,f]of Object.entries(r.value)){const d={...f.colors,...Wv(f.colors,t.variations)};u[l]={...f,colors:{...d,...Gv(d)}}}return u}),o=Xe(()=>s.value[n.value]),i=ie(()=>{var m;const u=[];(m=o.value)!=null&&m.dark&&on(u,":root",["color-scheme: dark"],t.scope),on(u,":root",Vc(o.value),t.scope);for(const[h,p]of Object.entries(s.value))on(u,`.v-theme--${h}`,[`color-scheme: ${p.dark?"dark":"normal"}`,...Vc(p)],t.scope);const l=[],f=[],d=new Set(Object.values(s.value).flatMap(h=>Object.keys(h.colors)));for(const h of d)h.startsWith("on-")?on(f,`.${h}`,[`color: rgb(var(--v-theme-${h})) !important`],t.scope):(on(l,`.bg-${h}`,[`--v-theme-overlay-multiplier: var(--v-theme-${h}-overlay-multiplier)`,`background-color: rgb(var(--v-theme-${h})) !important`,`color: rgb(var(--v-theme-on-${h})) !important`],t.scope),on(f,`.text-${h}`,[`color: rgb(var(--v-theme-${h})) !important`],t.scope),on(f,`.border-${h}`,[`--v-border-color: var(--v-theme-${h})`],t.scope));return u.push(...l,...f),u.map((h,p)=>p===0?h:` ${h}`).join("")});function a(u){if(t.isDisabled)return;const l=u._context.provides.usehead;if(l){let f=function(){return{style:[{textContent:i.value,id:t.stylesheetId,nonce:t.cspNonce||!1}]}};if(l.push){const d=l.push(f);Ze&&tt(i,()=>{d.patch(f)})}else Ze?(l.addHeadObjs(Xe(f)),Er(()=>l.updateDOM())):l.addHeadObjs(f())}else{let f=function(){zv(Zv(t.stylesheetId,t.cspNonce),i.value)};Ze?tt(i,f,{immediate:!0}):f()}}const c=Xe(()=>t.isDisabled?void 0:`v-theme--${n.value}`);return{install:a,isDisabled:t.isDisabled,name:n,themes:r,current:o,computedThemes:s,themeClasses:c,styles:i,global:{name:n,current:o}}}function Jv(e){Dt("provideTheme");const t=Ce(gr,null);if(!t)throw new Error("Could not find Vuetify theme injection");const n=Xe(()=>e.theme??t.name.value),r=Xe(()=>t.themes.value[n.value]),s=Xe(()=>t.isDisabled?void 0:`v-theme--${n.value}`),o={...t,name:n,current:r,themeClasses:s};return Ot(gr,o),o}function VS(){Dt("useTheme");const e=Ce(gr,null);if(!e)throw new Error("Could not find Vuetify theme injection");return e}const Xv=_t({...j2(),...Ov({fullHeight:!0}),...$v()},"VApp"),Qv=Yf()({name:"VApp",props:Xv(),setup(e,t){let{slots:n}=t;const r=Jv(e),{layoutClasses:s,getLayoutItem:o,items:i,layoutRef:a}=Mv(e),{rtlClasses:c}=qf();return xv(()=>{var u;return zt("div",{ref:a,class:yr(["v-application",r.themeClasses.value,s.value,c.value,e.class]),style:Ss([e.style])},[zt("div",{class:"v-application__wrap"},[(u=n.default)==null?void 0:u.call(n)])])}),{getLayoutItem:o,items:i,theme:r}}}),_v={name:"App",computed:{...Oo(Nf,{isConnected:e=>e.isConnected}),...Oo(dr,{user:e=>e.user})},watch:{user(){this.setTimezone()}},async created(){this.setTimezone(),this.loadAdminFlags(),this.loadProfile()},methods:{...bp(dr,["loadAdminFlags","loadProfile","setTimezone"])}};function qv(e,t,n,r,s,o){const i=D1("router-view");return rs(),ss(Qv,null,{default:Il(()=>[ge(i)]),_:1})}const ey=N2(_v,[["render",qv]]);function ty(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var uo={exports:{}},Fc;function ny(){return Fc||(Fc=1,function(e){e.exports=function(t){var n={};function r(s){if(n[s])return n[s].exports;var o=n[s]={i:s,l:!1,exports:{}};return t[s].call(o.exports,o,o.exports,r),o.l=!0,o.exports}return r.m=t,r.c=n,r.d=function(s,o,i){r.o(s,o)||Object.defineProperty(s,o,{enumerable:!0,get:i})},r.r=function(s){typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(s,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(s,"__esModule",{value:!0})},r.t=function(s,o){if(o&1&&(s=r(s)),o&8||o&4&&typeof s=="object"&&s&&s.__esModule)return s;var i=Object.create(null);if(r.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:s}),o&2&&typeof s!="string")for(var a in s)r.d(i,a,(function(c){return s[c]}).bind(null,a));return i},r.n=function(s){var o=s&&s.__esModule?function(){return s.default}:function(){return s};return r.d(o,"a",o),o},r.o=function(s,o){return Object.prototype.hasOwnProperty.call(s,o)},r.p="",r(r.s="fb15")}({"00ee":function(t,n,r){var s=r("b622"),o=s("toStringTag"),i={};i[o]="z",t.exports=String(i)==="[object z]"},"0366":function(t,n,r){var s=r("1c0b");t.exports=function(o,i,a){if(s(o),i===void 0)return o;switch(a){case 0:return function(){return o.call(i)};case 1:return function(c){return o.call(i,c)};case 2:return function(c,u){return o.call(i,c,u)};case 3:return function(c,u,l){return o.call(i,c,u,l)}}return function(){return o.apply(i,arguments)}}},"06cf":function(t,n,r){var s=r("83ab"),o=r("d1e7"),i=r("5c6c"),a=r("fc6a"),c=r("c04e"),u=r("5135"),l=r("0cfb"),f=Object.getOwnPropertyDescriptor;n.f=s?f:function(m,h){if(m=a(m),h=c(h,!0),l)try{return f(m,h)}catch{}if(u(m,h))return i(!o.f.call(m,h),m[h])}},"0cfb":function(t,n,r){var s=r("83ab"),o=r("d039"),i=r("cc12");t.exports=!s&&!o(function(){return Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a!=7})},"159b":function(t,n,r){var s=r("da84"),o=r("fdbc"),i=r("17c2"),a=r("9112");for(var c in o){var u=s[c],l=u&&u.prototype;if(l&&l.forEach!==i)try{a(l,"forEach",i)}catch{l.forEach=i}}},"17c2":function(t,n,r){var s=r("b727").forEach,o=r("a640"),i=o("forEach");t.exports=i?[].forEach:function(c){return s(this,c,arguments.length>1?arguments[1]:void 0)}},"19aa":function(t,n){t.exports=function(r,s,o){if(!(r instanceof s))throw TypeError("Incorrect "+(o?o+" ":"")+"invocation");return r}},"1be4":function(t,n,r){var s=r("d066");t.exports=s("document","documentElement")},"1c0b":function(t,n){t.exports=function(r){if(typeof r!="function")throw TypeError(String(r)+" is not a function");return r}},"1c7e":function(t,n,r){var s=r("b622"),o=s("iterator"),i=!1;try{var a=0,c={next:function(){return{done:!!a++}},return:function(){i=!0}};c[o]=function(){return this},Array.from(c,function(){throw 2})}catch{}t.exports=function(u,l){if(!l&&!i)return!1;var f=!1;try{var d={};d[o]=function(){return{next:function(){return{done:f=!0}}}},u(d)}catch{}return f}},"1d80":function(t,n){t.exports=function(r){if(r==null)throw TypeError("Can't call method on "+r);return r}},"1dde":function(t,n,r){var s=r("d039"),o=r("b622"),i=r("2d00"),a=o("species");t.exports=function(c){return i>=51||!s(function(){var u=[],l=u.constructor={};return l[a]=function(){return{foo:1}},u[c](Boolean).foo!==1})}},2266:function(t,n,r){var s=r("825a"),o=r("e95a"),i=r("50c4"),a=r("0366"),c=r("35a1"),u=r("2a62"),l=function(f,d){this.stopped=f,this.result=d};t.exports=function(f,d,m){var h=m&&m.that,p=!!(m&&m.AS_ENTRIES),g=!!(m&&m.IS_ITERATOR),v=!!(m&&m.INTERRUPTED),b=a(d,h,1+p+v),S,E,x,T,P,L,A,R=function(O){return S&&u(S),new l(!0,O)},I=function(O){return p?(s(O),v?b(O[0],O[1],R):b(O[0],O[1])):v?b(O,R):b(O)};if(g)S=f;else{if(E=c(f),typeof E!="function")throw TypeError("Target is not iterable");if(o(E)){for(x=0,T=i(f.length);T>x;x++)if(P=I(f[x]),P&&P instanceof l)return P;return new l(!1)}S=E.call(f)}for(L=S.next;!(A=L.call(S)).done;){try{P=I(A.value)}catch(O){throw u(S),O}if(typeof P=="object"&&P&&P instanceof l)return P}return new l(!1)}},"23cb":function(t,n,r){var s=r("a691"),o=Math.max,i=Math.min;t.exports=function(a,c){var u=s(a);return u<0?o(u+c,0):i(u,c)}},"23e7":function(t,n,r){var s=r("da84"),o=r("06cf").f,i=r("9112"),a=r("6eeb"),c=r("ce4e"),u=r("e893"),l=r("94ca");t.exports=function(f,d){var m=f.target,h=f.global,p=f.stat,g,v,b,S,E,x;if(h?v=s:p?v=s[m]||c(m,{}):v=(s[m]||{}).prototype,v)for(b in d){if(E=d[b],f.noTargetGet?(x=o(v,b),S=x&&x.value):S=v[b],g=l(h?b:m+(p?".":"#")+b,f.forced),!g&&S!==void 0){if(typeof E==typeof S)continue;u(E,S)}(f.sham||S&&S.sham)&&i(E,"sham",!0),a(v,b,E,f)}}},"241c":function(t,n,r){var s=r("ca84"),o=r("7839"),i=o.concat("length","prototype");n.f=Object.getOwnPropertyNames||function(c){return s(c,i)}},"25f0":function(t,n,r){var s=r("6eeb"),o=r("825a"),i=r("d039"),a=r("ad6d"),c="toString",u=RegExp.prototype,l=u[c],f=i(function(){return l.call({source:"a",flags:"b"})!="/a/b"}),d=l.name!=c;(f||d)&&s(RegExp.prototype,c,function(){var h=o(this),p=String(h.source),g=h.flags,v=String(g===void 0&&h instanceof RegExp&&!("flags"in u)?a.call(h):g);return"/"+p+"/"+v},{unsafe:!0})},2626:function(t,n,r){var s=r("d066"),o=r("9bf2"),i=r("b622"),a=r("83ab"),c=i("species");t.exports=function(u){var l=s(u),f=o.f;a&&l&&!l[c]&&f(l,c,{configurable:!0,get:function(){return this}})}},"2a62":function(t,n,r){var s=r("825a");t.exports=function(o){var i=o.return;if(i!==void 0)return s(i.call(o)).value}},"2ca0":function(t,n,r){var s=r("23e7"),o=r("06cf").f,i=r("50c4"),a=r("5a34"),c=r("1d80"),u=r("ab13"),l=r("c430"),f="".startsWith,d=Math.min,m=u("startsWith"),h=!l&&!m&&!!function(){var p=o(String.prototype,"startsWith");return p&&!p.writable}();s({target:"String",proto:!0,forced:!h&&!m},{startsWith:function(g){var v=String(c(this));a(g);var b=i(d(arguments.length>1?arguments[1]:void 0,v.length)),S=String(g);return f?f.call(v,S,b):v.slice(b,b+S.length)===S}})},"2d00":function(t,n,r){var s=r("da84"),o=r("342f"),i=s.process,a=i&&i.versions,c=a&&a.v8,u,l;c?(u=c.split("."),l=u[0]<4?1:u[0]+u[1]):o&&(u=o.match(/Edge\/(\d+)/),(!u||u[1]>=74)&&(u=o.match(/Chrome\/(\d+)/),u&&(l=u[1]))),t.exports=l&&+l},"342f":function(t,n,r){var s=r("d066");t.exports=s("navigator","userAgent")||""},"35a1":function(t,n,r){var s=r("f5df"),o=r("3f8c"),i=r("b622"),a=i("iterator");t.exports=function(c){if(c!=null)return c[a]||c["@@iterator"]||o[s(c)]}},"37e8":function(t,n,r){var s=r("83ab"),o=r("9bf2"),i=r("825a"),a=r("df75");t.exports=s?Object.defineProperties:function(u,l){i(u);for(var f=a(l),d=f.length,m=0,h;d>m;)o.f(u,h=f[m++],l[h]);return u}},"3bbe":function(t,n,r){var s=r("861d");t.exports=function(o){if(!s(o)&&o!==null)throw TypeError("Can't set "+String(o)+" as a prototype");return o}},"3ca3":function(t,n,r){var s=r("6547").charAt,o=r("69f3"),i=r("7dd0"),a="String Iterator",c=o.set,u=o.getterFor(a);i(String,"String",function(l){c(this,{type:a,string:String(l),index:0})},function(){var f=u(this),d=f.string,m=f.index,h;return m>=d.length?{value:void 0,done:!0}:(h=s(d,m),f.index+=h.length,{value:h,done:!1})})},"3f8c":function(t,n){t.exports={}},"428f":function(t,n,r){var s=r("da84");t.exports=s},"44ad":function(t,n,r){var s=r("d039"),o=r("c6b6"),i="".split;t.exports=s(function(){return!Object("z").propertyIsEnumerable(0)})?function(a){return o(a)=="String"?i.call(a,""):Object(a)}:Object},"44d2":function(t,n,r){var s=r("b622"),o=r("7c73"),i=r("9bf2"),a=s("unscopables"),c=Array.prototype;c[a]==null&&i.f(c,a,{configurable:!0,value:o(null)}),t.exports=function(u){c[a][u]=!0}},"44e7":function(t,n,r){var s=r("861d"),o=r("c6b6"),i=r("b622"),a=i("match");t.exports=function(c){var u;return s(c)&&((u=c[a])!==void 0?!!u:o(c)=="RegExp")}},4930:function(t,n,r){var s=r("2d00"),o=r("d039");t.exports=!!Object.getOwnPropertySymbols&&!o(function(){var i=Symbol();return!String(i)||!(Object(i)instanceof Symbol)||!Symbol.sham&&s&&s<41})},"4d64":function(t,n,r){var s=r("fc6a"),o=r("50c4"),i=r("23cb"),a=function(c){return function(u,l,f){var d=s(u),m=o(d.length),h=i(f,m),p;if(c&&l!=l){for(;m>h;)if(p=d[h++],p!=p)return!0}else for(;m>h;h++)if((c||h in d)&&d[h]===l)return c||h||0;return!c&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},"4de4":function(t,n,r){var s=r("23e7"),o=r("b727").filter,i=r("1dde"),a=i("filter");s({target:"Array",proto:!0,forced:!a},{filter:function(u){return o(this,u,arguments.length>1?arguments[1]:void 0)}})},"4ec9":function(t,n,r){var s=r("6d61"),o=r("6566");t.exports=s("Map",function(i){return function(){return i(this,arguments.length?arguments[0]:void 0)}},o)},"50c4":function(t,n,r){var s=r("a691"),o=Math.min;t.exports=function(i){return i>0?o(s(i),9007199254740991):0}},5135:function(t,n,r){var s=r("7b0b"),o={}.hasOwnProperty;t.exports=Object.hasOwn||function(a,c){return o.call(s(a),c)}},5692:function(t,n,r){var s=r("c430"),o=r("c6cd");(t.exports=function(i,a){return o[i]||(o[i]=a!==void 0?a:{})})("versions",[]).push({version:"3.15.2",mode:s?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},"56ef":function(t,n,r){var s=r("d066"),o=r("241c"),i=r("7418"),a=r("825a");t.exports=s("Reflect","ownKeys")||function(u){var l=o.f(a(u)),f=i.f;return f?l.concat(f(u)):l}},"5a34":function(t,n,r){var s=r("44e7");t.exports=function(o){if(s(o))throw TypeError("The method doesn't accept regular expressions");return o}},"5c6c":function(t,n){t.exports=function(r,s){return{enumerable:!(r&1),configurable:!(r&2),writable:!(r&4),value:s}}},6547:function(t,n,r){var s=r("a691"),o=r("1d80"),i=function(a){return function(c,u){var l=String(o(c)),f=s(u),d=l.length,m,h;return f<0||f>=d?a?"":void 0:(m=l.charCodeAt(f),m<55296||m>56319||f+1===d||(h=l.charCodeAt(f+1))<56320||h>57343?a?l.charAt(f):m:a?l.slice(f,f+2):(m-55296<<10)+(h-56320)+65536)}};t.exports={codeAt:i(!1),charAt:i(!0)}},6566:function(t,n,r){var s=r("9bf2").f,o=r("7c73"),i=r("e2cc"),a=r("0366"),c=r("19aa"),u=r("2266"),l=r("7dd0"),f=r("2626"),d=r("83ab"),m=r("f183").fastKey,h=r("69f3"),p=h.set,g=h.getterFor;t.exports={getConstructor:function(v,b,S,E){var x=v(function(A,R){c(A,x,b),p(A,{type:b,index:o(null),first:void 0,last:void 0,size:0}),d||(A.size=0),R!=null&&u(R,A[E],{that:A,AS_ENTRIES:S})}),T=g(b),P=function(A,R,I){var O=T(A),k=L(A,R),X,re;return k?k.value=I:(O.last=k={index:re=m(R,!0),key:R,value:I,previous:X=O.last,next:void 0,removed:!1},O.first||(O.first=k),X&&(X.next=k),d?O.size++:A.size++,re!=="F"&&(O.index[re]=k)),A},L=function(A,R){var I=T(A),O=m(R),k;if(O!=="F")return I.index[O];for(k=I.first;k;k=k.next)if(k.key==R)return k};return i(x.prototype,{clear:function(){for(var R=this,I=T(R),O=I.index,k=I.first;k;)k.removed=!0,k.previous&&(k.previous=k.previous.next=void 0),delete O[k.index],k=k.next;I.first=I.last=void 0,d?I.size=0:R.size=0},delete:function(A){var R=this,I=T(R),O=L(R,A);if(O){var k=O.next,X=O.previous;delete I.index[O.index],O.removed=!0,X&&(X.next=k),k&&(k.previous=X),I.first==O&&(I.first=k),I.last==O&&(I.last=X),d?I.size--:R.size--}return!!O},forEach:function(R){for(var I=T(this),O=a(R,arguments.length>1?arguments[1]:void 0,3),k;k=k?k.next:I.first;)for(O(k.value,k.key,this);k&&k.removed;)k=k.previous},has:function(R){return!!L(this,R)}}),i(x.prototype,S?{get:function(R){var I=L(this,R);return I&&I.value},set:function(R,I){return P(this,R===0?0:R,I)}}:{add:function(R){return P(this,R=R===0?0:R,R)}}),d&&s(x.prototype,"size",{get:function(){return T(this).size}}),x},setStrong:function(v,b,S){var E=b+" Iterator",x=g(b),T=g(E);l(v,b,function(P,L){p(this,{type:E,target:P,state:x(P),kind:L,last:void 0})},function(){for(var P=T(this),L=P.kind,A=P.last;A&&A.removed;)A=A.previous;return!P.target||!(P.last=A=A?A.next:P.state.first)?(P.target=void 0,{value:void 0,done:!0}):L=="keys"?{value:A.key,done:!1}:L=="values"?{value:A.value,done:!1}:{value:[A.key,A.value],done:!1}},S?"entries":"values",!S,!0),f(b)}}},"65f0":function(t,n,r){var s=r("861d"),o=r("e8b5"),i=r("b622"),a=i("species");t.exports=function(c,u){var l;return o(c)&&(l=c.constructor,typeof l=="function"&&(l===Array||o(l.prototype))?l=void 0:s(l)&&(l=l[a],l===null&&(l=void 0))),new(l===void 0?Array:l)(u===0?0:u)}},"69f3":function(t,n,r){var s=r("7f9a"),o=r("da84"),i=r("861d"),a=r("9112"),c=r("5135"),u=r("c6cd"),l=r("f772"),f=r("d012"),d="Object already initialized",m=o.WeakMap,h,p,g,v=function(L){return g(L)?p(L):h(L,{})},b=function(L){return function(A){var R;if(!i(A)||(R=p(A)).type!==L)throw TypeError("Incompatible receiver, "+L+" required");return R}};if(s||u.state){var S=u.state||(u.state=new m),E=S.get,x=S.has,T=S.set;h=function(L,A){if(x.call(S,L))throw new TypeError(d);return A.facade=L,T.call(S,L,A),A},p=function(L){return E.call(S,L)||{}},g=function(L){return x.call(S,L)}}else{var P=l("state");f[P]=!0,h=function(L,A){if(c(L,P))throw new TypeError(d);return A.facade=L,a(L,P,A),A},p=function(L){return c(L,P)?L[P]:{}},g=function(L){return c(L,P)}}t.exports={set:h,get:p,has:g,enforce:v,getterFor:b}},"6d61":function(t,n,r){var s=r("23e7"),o=r("da84"),i=r("94ca"),a=r("6eeb"),c=r("f183"),u=r("2266"),l=r("19aa"),f=r("861d"),d=r("d039"),m=r("1c7e"),h=r("d44e"),p=r("7156");t.exports=function(g,v,b){var S=g.indexOf("Map")!==-1,E=g.indexOf("Weak")!==-1,x=S?"set":"add",T=o[g],P=T&&T.prototype,L=T,A={},R=function(K){var Z=P[K];a(P,K,K=="add"?function(ae){return Z.call(this,ae===0?0:ae),this}:K=="delete"?function(fe){return E&&!f(fe)?!1:Z.call(this,fe===0?0:fe)}:K=="get"?function(ae){return E&&!f(ae)?void 0:Z.call(this,ae===0?0:ae)}:K=="has"?function(ae){return E&&!f(ae)?!1:Z.call(this,ae===0?0:ae)}:function(ae,Le){return Z.call(this,ae===0?0:ae,Le),this})},I=i(g,typeof T!="function"||!(E||P.forEach&&!d(function(){new T().entries().next()})));if(I)L=b.getConstructor(v,g,S,x),c.REQUIRED=!0;else if(i(g,!0)){var O=new L,k=O[x](E?{}:-0,1)!=O,X=d(function(){O.has(1)}),re=m(function(K){new T(K)}),ee=!E&&d(function(){for(var K=new T,Z=5;Z--;)K[x](Z,Z);return!K.has(-0)});re||(L=v(function(K,Z){l(K,L,g);var fe=p(new T,K,L);return Z!=null&&u(Z,fe[x],{that:fe,AS_ENTRIES:S}),fe}),L.prototype=P,P.constructor=L),(X||ee)&&(R("delete"),R("has"),S&&R("get")),(ee||k)&&R(x),E&&P.clear&&delete P.clear}return A[g]=L,s({global:!0,forced:L!=T},A),h(L,g),E||b.setStrong(L,g,S),L}},"6eeb":function(t,n,r){var s=r("da84"),o=r("9112"),i=r("5135"),a=r("ce4e"),c=r("8925"),u=r("69f3"),l=u.get,f=u.enforce,d=String(String).split("String");(t.exports=function(m,h,p,g){var v=g?!!g.unsafe:!1,b=g?!!g.enumerable:!1,S=g?!!g.noTargetGet:!1,E;if(typeof p=="function"&&(typeof h=="string"&&!i(p,"name")&&o(p,"name",h),E=f(p),E.source||(E.source=d.join(typeof h=="string"?h:""))),m===s){b?m[h]=p:a(h,p);return}else v?!S&&m[h]&&(b=!0):delete m[h];b?m[h]=p:o(m,h,p)})(Function.prototype,"toString",function(){return typeof this=="function"&&l(this).source||c(this)})},7156:function(t,n,r){var s=r("861d"),o=r("d2bb");t.exports=function(i,a,c){var u,l;return o&&typeof(u=a.constructor)=="function"&&u!==c&&s(l=u.prototype)&&l!==c.prototype&&o(i,l),i}},7418:function(t,n){n.f=Object.getOwnPropertySymbols},7839:function(t,n){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},"7b0b":function(t,n,r){var s=r("1d80");t.exports=function(o){return Object(s(o))}},"7c73":function(t,n,r){var s=r("825a"),o=r("37e8"),i=r("7839"),a=r("d012"),c=r("1be4"),u=r("cc12"),l=r("f772"),f=">",d="<",m="prototype",h="script",p=l("IE_PROTO"),g=function(){},v=function(T){return d+h+f+T+d+"/"+h+f},b=function(T){T.write(v("")),T.close();var P=T.parentWindow.Object;return T=null,P},S=function(){var T=u("iframe"),P="java"+h+":",L;return T.style.display="none",c.appendChild(T),T.src=String(P),L=T.contentWindow.document,L.open(),L.write(v("document.F=Object")),L.close(),L.F},E,x=function(){try{E=document.domain&&new ActiveXObject("htmlfile")}catch{}x=E?b(E):S();for(var T=i.length;T--;)delete x[m][i[T]];return x()};a[p]=!0,t.exports=Object.create||function(P,L){var A;return P!==null?(g[m]=s(P),A=new g,g[m]=null,A[p]=P):A=x(),L===void 0?A:o(A,L)}},"7dd0":function(t,n,r){var s=r("23e7"),o=r("9ed3"),i=r("e163"),a=r("d2bb"),c=r("d44e"),u=r("9112"),l=r("6eeb"),f=r("b622"),d=r("c430"),m=r("3f8c"),h=r("ae93"),p=h.IteratorPrototype,g=h.BUGGY_SAFARI_ITERATORS,v=f("iterator"),b="keys",S="values",E="entries",x=function(){return this};t.exports=function(T,P,L,A,R,I,O){o(L,P,A);var k=function(we){if(we===R&&Z)return Z;if(!g&&we in ee)return ee[we];switch(we){case b:return function(){return new L(this,we)};case S:return function(){return new L(this,we)};case E:return function(){return new L(this,we)}}return function(){return new L(this)}},X=P+" Iterator",re=!1,ee=T.prototype,K=ee[v]||ee["@@iterator"]||R&&ee[R],Z=!g&&K||k(R),fe=P=="Array"&&ee.entries||K,ae,Le,ye;if(fe&&(ae=i(fe.call(new T)),p!==Object.prototype&&ae.next&&(!d&&i(ae)!==p&&(a?a(ae,p):typeof ae[v]!="function"&&u(ae,v,x)),c(ae,X,!0,!0),d&&(m[X]=x))),R==S&&K&&K.name!==S&&(re=!0,Z=function(){return K.call(this)}),(!d||O)&&ee[v]!==Z&&u(ee,v,Z),m[P]=Z,R)if(Le={values:k(S),keys:I?Z:k(b),entries:k(E)},O)for(ye in Le)(g||re||!(ye in ee))&&l(ee,ye,Le[ye]);else s({target:P,proto:!0,forced:g||re},Le);return Le}},"7f9a":function(t,n,r){var s=r("da84"),o=r("8925"),i=s.WeakMap;t.exports=typeof i=="function"&&/native code/.test(o(i))},"825a":function(t,n,r){var s=r("861d");t.exports=function(o){if(!s(o))throw TypeError(String(o)+" is not an object");return o}},"83ab":function(t,n,r){var s=r("d039");t.exports=!s(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!=7})},8418:function(t,n,r){var s=r("c04e"),o=r("9bf2"),i=r("5c6c");t.exports=function(a,c,u){var l=s(c);l in a?o.f(a,l,i(0,u)):a[l]=u}},"861d":function(t,n){t.exports=function(r){return typeof r=="object"?r!==null:typeof r=="function"}},8875:function(t,n,r){var s,o,i;(function(a,c){o=[],s=c,i=typeof s=="function"?s.apply(n,o):s,i!==void 0&&(t.exports=i)})(typeof self<"u"?self:this,function(){function a(){var c=Object.getOwnPropertyDescriptor(document,"currentScript");if(!c&&"currentScript"in document&&document.currentScript||c&&c.get!==a&&document.currentScript)return document.currentScript;try{throw new Error}catch(E){var u=/.*at [^(]*\((.*):(.+):(.+)\)$/ig,l=/@([^@]*):(\d+):(\d+)\s*$/ig,f=u.exec(E.stack)||l.exec(E.stack),d=f&&f[1]||!1,m=f&&f[2]||!1,h=document.location.href.replace(document.location.hash,""),p,g,v,b=document.getElementsByTagName("script");d===h&&(p=document.documentElement.outerHTML,g=new RegExp("(?:[^\\n]+?\\n){0,"+(m-2)+"}[^<]*<script>([\\d\\D]*?)<\\/script>[\\d\\D]*","i"),v=p.replace(g,"$1").trim());for(var S=0;S<b.length;S++)if(b[S].readyState==="interactive"||b[S].src===d||d===h&&b[S].innerHTML&&b[S].innerHTML.trim()===v)return b[S];return null}}return a})},8925:function(t,n,r){var s=r("c6cd"),o=Function.toString;typeof s.inspectSource!="function"&&(s.inspectSource=function(i){return o.call(i)}),t.exports=s.inspectSource},"90e3":function(t,n){var r=0,s=Math.random();t.exports=function(o){return"Symbol("+String(o===void 0?"":o)+")_"+(++r+s).toString(36)}},9112:function(t,n,r){var s=r("83ab"),o=r("9bf2"),i=r("5c6c");t.exports=s?function(a,c,u){return o.f(a,c,i(1,u))}:function(a,c,u){return a[c]=u,a}},"94ca":function(t,n,r){var s=r("d039"),o=/#|\.prototype\./,i=function(f,d){var m=c[a(f)];return m==l?!0:m==u?!1:typeof d=="function"?s(d):!!d},a=i.normalize=function(f){return String(f).replace(o,".").toLowerCase()},c=i.data={},u=i.NATIVE="N",l=i.POLYFILL="P";t.exports=i},"99af":function(t,n,r){var s=r("23e7"),o=r("d039"),i=r("e8b5"),a=r("861d"),c=r("7b0b"),u=r("50c4"),l=r("8418"),f=r("65f0"),d=r("1dde"),m=r("b622"),h=r("2d00"),p=m("isConcatSpreadable"),g=9007199254740991,v="Maximum allowed index exceeded",b=h>=51||!o(function(){var T=[];return T[p]=!1,T.concat()[0]!==T}),S=d("concat"),E=function(T){if(!a(T))return!1;var P=T[p];return P!==void 0?!!P:i(T)},x=!b||!S;s({target:"Array",proto:!0,forced:x},{concat:function(P){var L=c(this),A=f(L,0),R=0,I,O,k,X,re;for(I=-1,k=arguments.length;I<k;I++)if(re=I===-1?L:arguments[I],E(re)){if(X=u(re.length),R+X>g)throw TypeError(v);for(O=0;O<X;O++,R++)O in re&&l(A,R,re[O])}else{if(R>=g)throw TypeError(v);l(A,R++,re)}return A.length=R,A}})},"9bf2":function(t,n,r){var s=r("83ab"),o=r("0cfb"),i=r("825a"),a=r("c04e"),c=Object.defineProperty;n.f=s?c:function(l,f,d){if(i(l),f=a(f,!0),i(d),o)try{return c(l,f,d)}catch{}if("get"in d||"set"in d)throw TypeError("Accessors not supported");return"value"in d&&(l[f]=d.value),l}},"9ed3":function(t,n,r){var s=r("ae93").IteratorPrototype,o=r("7c73"),i=r("5c6c"),a=r("d44e"),c=r("3f8c"),u=function(){return this};t.exports=function(l,f,d){var m=f+" Iterator";return l.prototype=o(s,{next:i(1,d)}),a(l,m,!1,!0),c[m]=u,l}},a15b:function(t,n,r){var s=r("23e7"),o=r("44ad"),i=r("fc6a"),a=r("a640"),c=[].join,u=o!=Object,l=a("join",",");s({target:"Array",proto:!0,forced:u||!l},{join:function(d){return c.call(i(this),d===void 0?",":d)}})},a434:function(t,n,r){var s=r("23e7"),o=r("23cb"),i=r("a691"),a=r("50c4"),c=r("7b0b"),u=r("65f0"),l=r("8418"),f=r("1dde"),d=f("splice"),m=Math.max,h=Math.min,p=9007199254740991,g="Maximum allowed length exceeded";s({target:"Array",proto:!0,forced:!d},{splice:function(b,S){var E=c(this),x=a(E.length),T=o(b,x),P=arguments.length,L,A,R,I,O,k;if(P===0?L=A=0:P===1?(L=0,A=x-T):(L=P-2,A=h(m(i(S),0),x-T)),x+L-A>p)throw TypeError(g);for(R=u(E,A),I=0;I<A;I++)O=T+I,O in E&&l(R,I,E[O]);if(R.length=A,L<A){for(I=T;I<x-A;I++)O=I+A,k=I+L,O in E?E[k]=E[O]:delete E[k];for(I=x;I>x-A+L;I--)delete E[I-1]}else if(L>A)for(I=x-A;I>T;I--)O=I+A-1,k=I+L-1,O in E?E[k]=E[O]:delete E[k];for(I=0;I<L;I++)E[I+T]=arguments[I+2];return E.length=x-A+L,R}})},a640:function(t,n,r){var s=r("d039");t.exports=function(o,i){var a=[][o];return!!a&&s(function(){a.call(null,i||function(){throw 1},1)})}},a691:function(t,n){var r=Math.ceil,s=Math.floor;t.exports=function(o){return isNaN(o=+o)?0:(o>0?s:r)(o)}},ab13:function(t,n,r){var s=r("b622"),o=s("match");t.exports=function(i){var a=/./;try{"/./"[i](a)}catch{try{return a[o]=!1,"/./"[i](a)}catch{}}return!1}},ad6d:function(t,n,r){var s=r("825a");t.exports=function(){var o=s(this),i="";return o.global&&(i+="g"),o.ignoreCase&&(i+="i"),o.multiline&&(i+="m"),o.dotAll&&(i+="s"),o.unicode&&(i+="u"),o.sticky&&(i+="y"),i}},ae93:function(t,n,r){var s=r("d039"),o=r("e163"),i=r("9112"),a=r("5135"),c=r("b622"),u=r("c430"),l=c("iterator"),f=!1,d=function(){return this},m,h,p;[].keys&&(p=[].keys(),"next"in p?(h=o(o(p)),h!==Object.prototype&&(m=h)):f=!0);var g=m==null||s(function(){var v={};return m[l].call(v)!==v});g&&(m={}),(!u||g)&&!a(m,l)&&i(m,l,d),t.exports={IteratorPrototype:m,BUGGY_SAFARI_ITERATORS:f}},af93:function(t,n,r){var s=r("23e7"),o=r("861d"),i=r("f183").onFreeze,a=r("bb2f"),c=r("d039"),u=Object.seal,l=c(function(){u(1)});s({target:"Object",stat:!0,forced:l,sham:!a},{seal:function(d){return u&&o(d)?u(i(d)):d}})},b041:function(t,n,r){var s=r("00ee"),o=r("f5df");t.exports=s?{}.toString:function(){return"[object "+o(this)+"]"}},b622:function(t,n,r){var s=r("da84"),o=r("5692"),i=r("5135"),a=r("90e3"),c=r("4930"),u=r("fdbf"),l=o("wks"),f=s.Symbol,d=u?f:f&&f.withoutSetter||a;t.exports=function(m){return(!i(l,m)||!(c||typeof l[m]=="string"))&&(c&&i(f,m)?l[m]=f[m]:l[m]=d("Symbol."+m)),l[m]}},b64b:function(t,n,r){var s=r("23e7"),o=r("7b0b"),i=r("df75"),a=r("d039"),c=a(function(){i(1)});s({target:"Object",stat:!0,forced:c},{keys:function(l){return i(o(l))}})},b727:function(t,n,r){var s=r("0366"),o=r("44ad"),i=r("7b0b"),a=r("50c4"),c=r("65f0"),u=[].push,l=function(f){var d=f==1,m=f==2,h=f==3,p=f==4,g=f==6,v=f==7,b=f==5||g;return function(S,E,x,T){for(var P=i(S),L=o(P),A=s(E,x,3),R=a(L.length),I=0,O=T||c,k=d?O(S,R):m||v?O(S,0):void 0,X,re;R>I;I++)if((b||I in L)&&(X=L[I],re=A(X,I,P),f))if(d)k[I]=re;else if(re)switch(f){case 3:return!0;case 5:return X;case 6:return I;case 2:u.call(k,X)}else switch(f){case 4:return!1;case 7:u.call(k,X)}return g?-1:h||p?p:k}};t.exports={forEach:l(0),map:l(1),filter:l(2),some:l(3),every:l(4),find:l(5),findIndex:l(6),filterOut:l(7)}},bb2f:function(t,n,r){var s=r("d039");t.exports=!s(function(){return Object.isExtensible(Object.preventExtensions({}))})},c04e:function(t,n,r){var s=r("861d");t.exports=function(o,i){if(!s(o))return o;var a,c;if(i&&typeof(a=o.toString)=="function"&&!s(c=a.call(o))||typeof(a=o.valueOf)=="function"&&!s(c=a.call(o))||!i&&typeof(a=o.toString)=="function"&&!s(c=a.call(o)))return c;throw TypeError("Can't convert object to primitive value")}},c430:function(t,n){t.exports=!1},c6b6:function(t,n){var r={}.toString;t.exports=function(s){return r.call(s).slice(8,-1)}},c6cd:function(t,n,r){var s=r("da84"),o=r("ce4e"),i="__core-js_shared__",a=s[i]||o(i,{});t.exports=a},c8ba:function(t,n){var r;r=function(){return this}();try{r=r||new Function("return this")()}catch{typeof window=="object"&&(r=window)}t.exports=r},ca84:function(t,n,r){var s=r("5135"),o=r("fc6a"),i=r("4d64").indexOf,a=r("d012");t.exports=function(c,u){var l=o(c),f=0,d=[],m;for(m in l)!s(a,m)&&s(l,m)&&d.push(m);for(;u.length>f;)s(l,m=u[f++])&&(~i(d,m)||d.push(m));return d}},cc12:function(t,n,r){var s=r("da84"),o=r("861d"),i=s.document,a=o(i)&&o(i.createElement);t.exports=function(c){return a?i.createElement(c):{}}},ce4e:function(t,n,r){var s=r("da84"),o=r("9112");t.exports=function(i,a){try{o(s,i,a)}catch{s[i]=a}return a}},d012:function(t,n){t.exports={}},d039:function(t,n){t.exports=function(r){try{return!!r()}catch{return!0}}},d066:function(t,n,r){var s=r("428f"),o=r("da84"),i=function(a){return typeof a=="function"?a:void 0};t.exports=function(a,c){return arguments.length<2?i(s[a])||i(o[a]):s[a]&&s[a][c]||o[a]&&o[a][c]}},d1e7:function(t,n,r){var s={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!s.call({1:2},1);n.f=i?function(c){var u=o(this,c);return!!u&&u.enumerable}:s},d2bb:function(t,n,r){var s=r("825a"),o=r("3bbe");t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var i=!1,a={},c;try{c=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set,c.call(a,[]),i=a instanceof Array}catch{}return function(l,f){return s(l),o(f),i?c.call(l,f):l.__proto__=f,l}}():void 0)},d3b7:function(t,n,r){var s=r("00ee"),o=r("6eeb"),i=r("b041");s||o(Object.prototype,"toString",i,{unsafe:!0})},d44e:function(t,n,r){var s=r("9bf2").f,o=r("5135"),i=r("b622"),a=i("toStringTag");t.exports=function(c,u,l){c&&!o(c=l?c:c.prototype,a)&&s(c,a,{configurable:!0,value:u})}},da84:function(t,n,r){(function(s){var o=function(i){return i&&i.Math==Math&&i};t.exports=o(typeof globalThis=="object"&&globalThis)||o(typeof window=="object"&&window)||o(typeof self=="object"&&self)||o(typeof s=="object"&&s)||function(){return this}()||Function("return this")()}).call(this,r("c8ba"))},ddb0:function(t,n,r){var s=r("da84"),o=r("fdbc"),i=r("e260"),a=r("9112"),c=r("b622"),u=c("iterator"),l=c("toStringTag"),f=i.values;for(var d in o){var m=s[d],h=m&&m.prototype;if(h){if(h[u]!==f)try{a(h,u,f)}catch{h[u]=f}if(h[l]||a(h,l,d),o[d]){for(var p in i)if(h[p]!==i[p])try{a(h,p,i[p])}catch{h[p]=i[p]}}}}},df75:function(t,n,r){var s=r("ca84"),o=r("7839");t.exports=Object.keys||function(a){return s(a,o)}},e163:function(t,n,r){var s=r("5135"),o=r("7b0b"),i=r("f772"),a=r("e177"),c=i("IE_PROTO"),u=Object.prototype;t.exports=a?Object.getPrototypeOf:function(l){return l=o(l),s(l,c)?l[c]:typeof l.constructor=="function"&&l instanceof l.constructor?l.constructor.prototype:l instanceof Object?u:null}},e177:function(t,n,r){var s=r("d039");t.exports=!s(function(){function o(){}return o.prototype.constructor=null,Object.getPrototypeOf(new o)!==o.prototype})},e260:function(t,n,r){var s=r("fc6a"),o=r("44d2"),i=r("3f8c"),a=r("69f3"),c=r("7dd0"),u="Array Iterator",l=a.set,f=a.getterFor(u);t.exports=c(Array,"Array",function(d,m){l(this,{type:u,target:s(d),index:0,kind:m})},function(){var d=f(this),m=d.target,h=d.kind,p=d.index++;return!m||p>=m.length?(d.target=void 0,{value:void 0,done:!0}):h=="keys"?{value:p,done:!1}:h=="values"?{value:m[p],done:!1}:{value:[p,m[p]],done:!1}},"values"),i.Arguments=i.Array,o("keys"),o("values"),o("entries")},e2cc:function(t,n,r){var s=r("6eeb");t.exports=function(o,i,a){for(var c in i)s(o,c,i[c],a);return o}},e893:function(t,n,r){var s=r("5135"),o=r("56ef"),i=r("06cf"),a=r("9bf2");t.exports=function(c,u){for(var l=o(u),f=a.f,d=i.f,m=0;m<l.length;m++){var h=l[m];s(c,h)||f(c,h,d(u,h))}}},e8b5:function(t,n,r){var s=r("c6b6");t.exports=Array.isArray||function(i){return s(i)=="Array"}},e95a:function(t,n,r){var s=r("b622"),o=r("3f8c"),i=s("iterator"),a=Array.prototype;t.exports=function(c){return c!==void 0&&(o.Array===c||a[i]===c)}},f183:function(t,n,r){var s=r("d012"),o=r("861d"),i=r("5135"),a=r("9bf2").f,c=r("90e3"),u=r("bb2f"),l=c("meta"),f=0,d=Object.isExtensible||function(){return!0},m=function(b){a(b,l,{value:{objectID:"O"+f++,weakData:{}}})},h=function(b,S){if(!o(b))return typeof b=="symbol"?b:(typeof b=="string"?"S":"P")+b;if(!i(b,l)){if(!d(b))return"F";if(!S)return"E";m(b)}return b[l].objectID},p=function(b,S){if(!i(b,l)){if(!d(b))return!0;if(!S)return!1;m(b)}return b[l].weakData},g=function(b){return u&&v.REQUIRED&&d(b)&&!i(b,l)&&m(b),b},v=t.exports={REQUIRED:!1,fastKey:h,getWeakData:p,onFreeze:g};s[l]=!0},f5df:function(t,n,r){var s=r("00ee"),o=r("c6b6"),i=r("b622"),a=i("toStringTag"),c=o(function(){return arguments}())=="Arguments",u=function(l,f){try{return l[f]}catch{}};t.exports=s?o:function(l){var f,d,m;return l===void 0?"Undefined":l===null?"Null":typeof(d=u(f=Object(l),a))=="string"?d:c?o(f):(m=o(f))=="Object"&&typeof f.callee=="function"?"Arguments":m}},f772:function(t,n,r){var s=r("5692"),o=r("90e3"),i=s("keys");t.exports=function(a){return i[a]||(i[a]=o(a))}},fb15:function(t,n,r){if(r.r(n),typeof window<"u"){var s=window.document.currentScript;{var o=r("8875");s=o(),"currentScript"in document||Object.defineProperty(document,"currentScript",{get:o})}var i=s&&s.src.match(/(.+\/)[^/]+\.js(\?.*)?$/);i&&(r.p=i[1])}r("d3b7"),r("25f0"),r("159b"),r("b64b"),r("af93");function a(h,p){if(!(h instanceof p))throw new TypeError("Cannot call a class as a function")}function c(h,p){for(var g=0;g<p.length;g++){var v=p[g];v.enumerable=v.enumerable||!1,v.configurable=!0,"value"in v&&(v.writable=!0),Object.defineProperty(h,v.key,v)}}function u(h,p,g){return p&&c(h.prototype,p),h}r("2ca0"),r("99af"),r("a15b"),r("4de4"),r("e260"),r("4ec9"),r("3ca3"),r("ddb0"),r("a434");var l=function(){function h(){a(this,h),this.listeners=new Map}return u(h,[{key:"addListener",value:function(g,v,b){return typeof v=="function"?(this.listeners.has(g)||this.listeners.set(g,[]),this.listeners.get(g).push({callback:v,vm:b}),!0):!1}},{key:"removeListener",value:function(g,v,b){var S=this.listeners.get(g),E;return S&&S.length&&(E=S.reduce(function(x,T,P){return typeof T.callback=="function"&&T.callback===v&&T.vm===b&&(x=P),x},-1),E>-1)?(S.splice(E,1),this.listeners.set(g,S),!0):!1}},{key:"emit",value:function(g){for(var v=arguments.length,b=new Array(v>1?v-1:0),S=1;S<v;S++)b[S-1]=arguments[S];var E=this.listeners.get(g);return E&&E.length?(E.forEach(function(x){var T;(T=x.callback).call.apply(T,[x.vm].concat(b))}),!0):!1}}]),h}(),f=new l,d=function(){function h(p){var g=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{format:""};if(a(this,h),this.reconnectTimeoutId=0,this.reconnectionCount=0,this.format=g.format&&g.format.toLowerCase(),p.startsWith("//")){var v=window.location.protocol==="https:"?"wss":"ws";p="".concat(v,":").concat(p)}this.connectionUrl=p,this.opts=g,this.reconnection=this.opts.reconnection||!1,this.reconnectionAttempts=this.opts.reconnectionAttempts||1/0,this.reconnectionDelay=this.opts.reconnectionDelay||1e3,this.passToStoreHandler=this.opts.passToStoreHandler,this.connect(p,g),g.store&&(this.store=g.store),g.mutations&&(this.mutations=g.mutations),this.onEvent()}return u(h,[{key:"connect",value:function(g){var v=this,b=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},S=b.protocol||"";return this.WebSocket=b.WebSocket||(S===""?new WebSocket(g):new WebSocket(g,S)),this.format==="json"&&("sendObj"in this.WebSocket||(this.WebSocket.sendObj=function(E){return v.WebSocket.send(JSON.stringify(E))})),this.WebSocket}},{key:"reconnect",value:function(){var g=this;this.reconnectionCount<=this.reconnectionAttempts?(this.reconnectionCount++,window.clearTimeout(this.reconnectTimeoutId),this.reconnectTimeoutId=window.setTimeout(function(){g.store&&g.passToStore("SOCKET_RECONNECT",g.reconnectionCount),g.connect(g.connectionUrl,g.opts),g.onEvent()},this.reconnectionDelay)):this.store&&this.passToStore("SOCKET_RECONNECT_ERROR",!0)}},{key:"onEvent",value:function(){var g=this;["onmessage","onclose","onerror","onopen"].forEach(function(v){g.WebSocket[v]=function(b){f.emit(v,b),g.store&&g.passToStore("SOCKET_"+v,b),g.reconnection&&v==="onopen"&&(g.opts.$setInstance&&g.opts.$setInstance(b.currentTarget),g.reconnectionCount=0),g.reconnection&&v==="onclose"&&g.reconnect()}})}},{key:"passToStore",value:function(g,v){this.passToStoreHandler?this.passToStoreHandler(g,v,this.defaultPassToStore.bind(this)):this.defaultPassToStore(g,v)}},{key:"defaultPassToStore",value:function(g,v){if(g.startsWith("SOCKET_")){var b="commit",S=g.toUpperCase(),E=v;this.format==="json"&&v.data&&(E=JSON.parse(v.data),E.mutation?S=[E.namespace||"",E.mutation].filter(function(x){return!!x}).join("/"):E.action&&(b="dispatch",S=[E.namespace||"",E.action].filter(function(x){return!!x}).join("/"))),this.mutations&&(S=this.mutations[S]||S),this.store._p?(S=g.toUpperCase(),this.store[S](E)):this.store[b](S,E)}}}]),h}(),m={install:function(p,g){var v=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{format:""};if(!g)throw new Error("[vue-native-socket] cannot locate connection");var b;v.$setInstance=function(E){p.config.globalProperties.$socket=E},v.connectManually?(p.config.globalProperties.$connect=function(){var E=arguments.length>0&&arguments[0]!==void 0?arguments[0]:g,x=arguments.length>1&&arguments[1]!==void 0?arguments[1]:v;x.$setInstance=v.$setInstance,b=new d(E,x),p.config.globalProperties.$socket=b.WebSocket},p.config.globalProperties.$disconnect=function(){b&&b.reconnection&&(b.reconnection=!1,clearTimeout(b.reconnectTimeoutId)),p.config.globalProperties.$socket&&(p.config.globalProperties.$socket.close(),delete p.config.globalProperties.$socket)}):(b=new d(g,v),p.config.globalProperties.$socket=b.WebSocket);var S=typeof Proxy<"u"&&typeof Proxy=="function"&&/native code/.test(Proxy.toString());p.mixin({created:function(){var x=this,T=this,P=this.$options.sockets;S?(this.$options.sockets=new Proxy({},{set:function(A,R,I){return f.addListener(R,I,T),A[R]=I,!0},deleteProperty:function(A,R){return f.removeListener(R,T.$options.sockets[R],T),delete A.key,!0}}),p.config.globalProperties.sockets=new Proxy({},{set:function(A,R,I){return f.addListener(R,I,T),A[R]=I,!0},deleteProperty:function(A,R){return f.removeListener(R,T.$options.sockets[R],T),delete A.key,!0}}),P&&Object.keys(P).forEach(function(L){x.$options.sockets[L]=P[L],p.config.globalProperties.sockets[L]=P[L]})):(Object.seal(this.$options.sockets),Object.seal(p.config.globalProperties.sockets),P&&Object.keys(P).forEach(function(L){f.addListener(L,P[L],T)}))},beforeUnmount:function(){var x=this;if(S){var T=this.$options.sockets;T&&Object.keys(T).forEach(function(P){delete x.$options.sockets[P],delete p.config.globalProperties.sockets})}}})}};n.default=m},fc6a:function(t,n,r){var s=r("44ad"),o=r("1d80");t.exports=function(i){return s(o(i))}},fdbc:function(t,n){t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},fdbf:function(t,n,r){var s=r("4930");t.exports=s&&!Symbol.sham&&typeof Symbol.iterator=="symbol"}})}(uo)),uo.exports}var ry=ny();const sy=ty(ry),oy=()=>{let e="ws";return globalThis.location.protocol==="https:"&&(e+="s"),`${e}://${location.host}${globalThis.CODEX.API_V3_PATH}ws`},iy=oy();function ay(e){const t=k2();t.app=e;const n={store:t,reconnection:!0};e.use(sy,iy,n)}function Pr(e){const t=e.slice(-2).toUpperCase();switch(!0){case e==="GB-alt-variant":return{firstDay:0,firstWeekSize:4};case e==="001":return{firstDay:1,firstWeekSize:1};case`AG AS BD BR BS BT BW BZ CA CO DM DO ET GT GU HK HN ID IL IN JM JP KE
|
|
36
|
-
KH KR LA MH MM MO MT MX MZ NI NP PA PE PH PK PR PY SA SG SV TH TT TW UM US
|
|
37
|
-
VE VI WS YE ZA ZW`.includes(t):return{firstDay:0,firstWeekSize:1};case`AI AL AM AR AU AZ BA BM BN BY CL CM CN CR CY EC GE HR KG KZ LB LK LV
|
|
38
|
-
MD ME MK MN MY NZ RO RS SI TJ TM TR UA UY UZ VN XK`.includes(t):return{firstDay:1,firstWeekSize:1};case`AD AN AT AX BE BG CH CZ DE DK EE ES FI FJ FO FR GB GF GP GR HU IE IS
|
|
39
|
-
IT LI LT LU MC MQ NL NO PL RE RU SE SK SM VA`.includes(t):return{firstDay:1,firstWeekSize:4};case"AE AF BH DJ DZ EG IQ IR JO KW LY OM QA SD SY".includes(t):return{firstDay:6,firstWeekSize:1};case t==="MV":return{firstDay:5,firstWeekSize:1};case t==="PT":return{firstDay:0,firstWeekSize:4};default:return null}}function cy(e,t,n){var l;const r=[];let s=[];const o=ed(e),i=td(e),a=n??((l=Pr(t))==null?void 0:l.firstDay)??0,c=(o.getDay()-a+7)%7,u=(i.getDay()-a+7)%7;for(let f=0;f<c;f++){const d=new Date(o);d.setDate(d.getDate()-(c-f)),s.push(d)}for(let f=1;f<=i.getDate();f++){const d=new Date(e.getFullYear(),e.getMonth(),f);s.push(d),s.length===7&&(r.push(s),s=[])}for(let f=1;f<7-u;f++){const d=new Date(i);d.setDate(d.getDate()+f),s.push(d)}return s.length>0&&r.push(s),r}function Go(e,t,n){var o;const r=n??((o=Pr(t))==null?void 0:o.firstDay)??0,s=new Date(e);for(;s.getDay()!==r;)s.setDate(s.getDate()-1);return s}function ly(e,t){var s;const n=new Date(e),r=((((s=Pr(t))==null?void 0:s.firstDay)??0)+6)%7;for(;n.getDay()!==r;)n.setDate(n.getDate()+1);return n}function ed(e){return new Date(e.getFullYear(),e.getMonth(),1)}function td(e){return new Date(e.getFullYear(),e.getMonth()+1,0)}function uy(e){const t=e.split("-").map(Number);return new Date(t[0],t[1]-1,t[2])}const fy=/^([12]\d{3}-([1-9]|0[1-9]|1[0-2])-([1-9]|0[1-9]|[12]\d|3[01]))$/;function nd(e){if(e==null)return new Date;if(e instanceof Date)return e;if(typeof e=="string"){let t;if(fy.test(e))return uy(e);if(t=Date.parse(e),!isNaN(t))return new Date(t)}return null}const kc=new Date(2e3,0,2);function dy(e,t){var r;const n=t??((r=Pr(e))==null?void 0:r.firstDay)??0;return Bf(7).map(s=>{const o=new Date(kc);return o.setDate(kc.getDate()+n+s),new Intl.DateTimeFormat(e,{weekday:"narrow"}).format(o)})}function hy(e,t,n,r){const s=nd(e)??new Date,o=r==null?void 0:r[t];if(typeof o=="function")return o(s,t,n);let i={};switch(t){case"fullDate":i={year:"numeric",month:"long",day:"numeric"};break;case"fullDateWithWeekday":i={weekday:"long",year:"numeric",month:"long",day:"numeric"};break;case"normalDate":const a=s.getDate(),c=new Intl.DateTimeFormat(n,{month:"long"}).format(s);return`${a} ${c}`;case"normalDateWithWeekday":i={weekday:"short",day:"numeric",month:"short"};break;case"shortDate":i={month:"short",day:"numeric"};break;case"year":i={year:"numeric"};break;case"month":i={month:"long"};break;case"monthShort":i={month:"short"};break;case"monthAndYear":i={month:"long",year:"numeric"};break;case"monthAndDate":i={month:"long",day:"numeric"};break;case"weekday":i={weekday:"long"};break;case"weekdayShort":i={weekday:"short"};break;case"dayOfMonth":return new Intl.NumberFormat(n).format(s.getDate());case"hours12h":i={hour:"numeric",hour12:!0};break;case"hours24h":i={hour:"numeric",hour12:!1};break;case"minutes":i={minute:"numeric"};break;case"seconds":i={second:"numeric"};break;case"fullTime":i={hour:"numeric",minute:"numeric"};break;case"fullTime12h":i={hour:"numeric",minute:"numeric",hour12:!0};break;case"fullTime24h":i={hour:"numeric",minute:"numeric",hour12:!1};break;case"fullDateTime":i={year:"numeric",month:"short",day:"numeric",hour:"numeric",minute:"numeric"};break;case"fullDateTime12h":i={year:"numeric",month:"short",day:"numeric",hour:"numeric",minute:"numeric",hour12:!0};break;case"fullDateTime24h":i={year:"numeric",month:"short",day:"numeric",hour:"numeric",minute:"numeric",hour12:!1};break;case"keyboardDate":i={year:"numeric",month:"2-digit",day:"2-digit"};break;case"keyboardDateTime":return i={year:"numeric",month:"2-digit",day:"2-digit",hour:"numeric",minute:"numeric"},new Intl.DateTimeFormat(n,i).format(s).replace(/, /g," ");case"keyboardDateTime12h":return i={year:"numeric",month:"2-digit",day:"2-digit",hour:"numeric",minute:"numeric",hour12:!0},new Intl.DateTimeFormat(n,i).format(s).replace(/, /g," ");case"keyboardDateTime24h":return i={year:"numeric",month:"2-digit",day:"2-digit",hour:"numeric",minute:"numeric",hour12:!1},new Intl.DateTimeFormat(n,i).format(s).replace(/, /g," ");default:i=o??{timeZone:"UTC",timeZoneName:"short"}}return new Intl.DateTimeFormat(n,i).format(s)}function py(e,t){const n=e.toJsDate(t),r=n.getFullYear(),s=Sc(String(n.getMonth()+1),2,"0"),o=Sc(String(n.getDate()),2,"0");return`${r}-${s}-${o}`}function my(e){const[t,n,r]=e.split("-").map(Number);return new Date(t,n-1,r)}function gy(e,t){const n=new Date(e);return n.setMinutes(n.getMinutes()+t),n}function vy(e,t){const n=new Date(e);return n.setHours(n.getHours()+t),n}function Jr(e,t){const n=new Date(e);return n.setDate(n.getDate()+t),n}function yy(e,t){const n=new Date(e);return n.setDate(n.getDate()+t*7),n}function by(e,t){const n=new Date(e);return n.setDate(1),n.setMonth(n.getMonth()+t),n}function Ko(e){return e.getFullYear()}function Sy(e){return e.getMonth()}function Cy(e,t,n,r){const s=Pr(t),o=n??(s==null?void 0:s.firstDay)??0,i=r??(s==null?void 0:s.firstWeekSize)??1;function a(m){const h=new Date(m,0,1);return 7-zo(h,Go(h,t,o),"days")}let c=Ko(e);const u=Jr(Go(e,t,o),6);c<Ko(u)&&a(c+1)>=i&&c++;const l=new Date(c,0,1),f=a(c),d=f>=i?Jr(l,f-7):Jr(l,f);return 1+zo(rd(e),ms(d),"weeks")}function Ay(e){return e.getDate()}function Ey(e){return new Date(e.getFullYear(),e.getMonth()+1,1)}function Ly(e){return new Date(e.getFullYear(),e.getMonth()-1,1)}function wy(e){return e.getHours()}function Ty(e){return e.getMinutes()}function xy(e){return new Date(e.getFullYear(),0,1)}function Ry(e){return new Date(e.getFullYear(),11,31)}function Oy(e,t){return ps(e,t[0])&&Iy(e,t[1])}function Py(e){const t=new Date(e);return t instanceof Date&&!isNaN(t.getTime())}function ps(e,t){return e.getTime()>t.getTime()}function My(e,t){return ps(ms(e),ms(t))}function Iy(e,t){return e.getTime()<t.getTime()}function Nc(e,t){return e.getTime()===t.getTime()}function Hy(e,t){return e.getDate()===t.getDate()&&e.getMonth()===t.getMonth()&&e.getFullYear()===t.getFullYear()}function Dy(e,t){return e.getMonth()===t.getMonth()&&e.getFullYear()===t.getFullYear()}function Vy(e,t){return e.getFullYear()===t.getFullYear()}function zo(e,t,n){const r=new Date(e),s=new Date(t);switch(n){case"years":return r.getFullYear()-s.getFullYear();case"quarters":return Math.floor((r.getMonth()-s.getMonth()+(r.getFullYear()-s.getFullYear())*12)/4);case"months":return r.getMonth()-s.getMonth()+(r.getFullYear()-s.getFullYear())*12;case"weeks":return Math.floor((r.getTime()-s.getTime())/(1e3*60*60*24*7));case"days":return Math.floor((r.getTime()-s.getTime())/(1e3*60*60*24));case"hours":return Math.floor((r.getTime()-s.getTime())/(1e3*60*60));case"minutes":return Math.floor((r.getTime()-s.getTime())/(1e3*60));case"seconds":return Math.floor((r.getTime()-s.getTime())/1e3);default:return r.getTime()-s.getTime()}}function Fy(e,t){const n=new Date(e);return n.setHours(t),n}function ky(e,t){const n=new Date(e);return n.setMinutes(t),n}function Ny(e,t){const n=new Date(e);return n.setMonth(t),n}function jy(e,t){const n=new Date(e);return n.setDate(t),n}function $y(e,t){const n=new Date(e);return n.setFullYear(t),n}function ms(e){return new Date(e.getFullYear(),e.getMonth(),e.getDate(),0,0,0,0)}function rd(e){return new Date(e.getFullYear(),e.getMonth(),e.getDate(),23,59,59,999)}class By{constructor(t){this.locale=t.locale,this.formats=t.formats}date(t){return nd(t)}toJsDate(t){return t}toISO(t){return py(this,t)}parseISO(t){return my(t)}addMinutes(t,n){return gy(t,n)}addHours(t,n){return vy(t,n)}addDays(t,n){return Jr(t,n)}addWeeks(t,n){return yy(t,n)}addMonths(t,n){return by(t,n)}getWeekArray(t,n){const r=n!==void 0?Number(n):void 0;return cy(t,this.locale,r)}startOfWeek(t,n){const r=n!==void 0?Number(n):void 0;return Go(t,this.locale,r)}endOfWeek(t){return ly(t,this.locale)}startOfMonth(t){return ed(t)}endOfMonth(t){return td(t)}format(t,n){return hy(t,n,this.locale,this.formats)}isEqual(t,n){return Nc(t,n)}isValid(t){return Py(t)}isWithinRange(t,n){return Oy(t,n)}isAfter(t,n){return ps(t,n)}isAfterDay(t,n){return My(t,n)}isBefore(t,n){return!ps(t,n)&&!Nc(t,n)}isSameDay(t,n){return Hy(t,n)}isSameMonth(t,n){return Dy(t,n)}isSameYear(t,n){return Vy(t,n)}setMinutes(t,n){return ky(t,n)}setHours(t,n){return Fy(t,n)}setMonth(t,n){return Ny(t,n)}setDate(t,n){return jy(t,n)}setYear(t,n){return $y(t,n)}getDiff(t,n,r){return zo(t,n,r)}getWeekdays(t){const n=t!==void 0?Number(t):void 0;return dy(this.locale,n)}getYear(t){return Ko(t)}getMonth(t){return Sy(t)}getWeek(t,n,r){const s=n!==void 0?Number(n):void 0;return Cy(t,this.locale,s,r)}getDate(t){return Ay(t)}getNextMonth(t){return Ey(t)}getPreviousMonth(t){return Ly(t)}getHours(t){return wy(t)}getMinutes(t){return Ty(t)}startOfDay(t){return ms(t)}endOfDay(t){return rd(t)}startOfYear(t){return xy(t)}endOfYear(t){return Ry(t)}}const Uy=Symbol.for("vuetify:date-options"),jc=Symbol.for("vuetify:date-adapter");function Wy(e,t){const n=Ve({adapter:By,locale:{af:"af-ZA",bg:"bg-BG",ca:"ca-ES",ckb:"",cs:"cs-CZ",de:"de-DE",el:"el-GR",en:"en-US",et:"et-EE",fa:"fa-IR",fi:"fi-FI",hr:"hr-HR",hu:"hu-HU",he:"he-IL",id:"id-ID",it:"it-IT",ja:"ja-JP",ko:"ko-KR",lv:"lv-LV",lt:"lt-LT",nl:"nl-NL",no:"no-NO",pl:"pl-PL",pt:"pt-PT",ro:"ro-RO",ru:"ru-RU",sk:"sk-SK",sl:"sl-SI",srCyrl:"sr-SP",srLatn:"sr-SP",sv:"sv-SE",th:"th-TH",tr:"tr-TR",az:"az-AZ",uk:"uk-UA",vi:"vi-VN",zhHans:"zh-CN",zhHant:"zh-TW"}},e);return{options:n,instance:Gy(n,t)}}function Gy(e,t){const n=Ge(typeof e.adapter=="function"?new e.adapter({locale:e.locale[t.current.value]??t.current.value,formats:e.formats}):e.adapter);return tt(t.current,r=>{n.locale=e.locale[r]??r??n.locale}),n}const Zo=Symbol.for("vuetify:display"),$c={mobileBreakpoint:"lg",thresholds:{xs:0,sm:600,md:960,lg:1280,xl:1920,xxl:2560}},Ky=function(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:$c;return Ve($c,e)};function Bc(e){return Ze&&!e?window.innerWidth:typeof e=="object"&&e.clientWidth||0}function Uc(e){return Ze&&!e?window.innerHeight:typeof e=="object"&&e.clientHeight||0}function Wc(e){const t=Ze&&!e?window.navigator.userAgent:"ssr";function n(h){return!!t.match(h)}const r=n(/android/i),s=n(/iphone|ipad|ipod/i),o=n(/cordova/i),i=n(/electron/i),a=n(/chrome/i),c=n(/edge/i),u=n(/firefox/i),l=n(/opera/i),f=n(/win/i),d=n(/mac/i),m=n(/linux/i);return{android:r,ios:s,cordova:o,electron:i,chrome:a,edge:c,firefox:u,opera:l,win:f,mac:d,linux:m,touch:$2,ssr:t==="ssr"}}function zy(e,t){const{thresholds:n,mobileBreakpoint:r}=Ky(e),s=it(Uc(t)),o=it(Wc(t)),i=Ge({}),a=it(Bc(t));function c(){s.value=Uc(),a.value=Bc()}function u(){c(),o.value=Wc()}return Er(()=>{const l=a.value<n.sm,f=a.value<n.md&&!l,d=a.value<n.lg&&!(f||l),m=a.value<n.xl&&!(d||f||l),h=a.value<n.xxl&&!(m||d||f||l),p=a.value>=n.xxl,g=l?"xs":f?"sm":d?"md":m?"lg":h?"xl":"xxl",v=typeof r=="number"?r:n[r],b=a.value<v;i.xs=l,i.sm=f,i.md=d,i.lg=m,i.xl=h,i.xxl=p,i.smAndUp=!l,i.mdAndUp=!(l||f),i.lgAndUp=!(l||f||d),i.xlAndUp=!(l||f||d||m),i.smAndDown=!(d||m||h||p),i.mdAndDown=!(m||h||p),i.lgAndDown=!(h||p),i.xlAndDown=!p,i.name=g,i.height=s.value,i.width=a.value,i.mobile=b,i.mobileBreakpoint=r,i.platform=o.value,i.thresholds=n}),Ze&&(window.addEventListener("resize",c,{passive:!0}),qo(()=>{window.removeEventListener("resize",c)},!0)),{...wl(i),update:u,ssr:!!t}}const FS=_t({mobile:{type:Boolean,default:!1},mobileBreakpoint:[Number,String]},"display");function kS(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{mobile:null},t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Av();const n=Ce(Zo);if(!n)throw new Error("Could not find Vuetify display injection");const r=ie(()=>e.mobile?!0:typeof e.mobileBreakpoint=="number"?n.width.value<e.mobileBreakpoint:e.mobileBreakpoint?n.width.value<n.thresholds.value[e.mobileBreakpoint]:e.mobile===null?n.mobile.value:!1),s=Xe(()=>t?{[`${t}--mobile`]:r.value}:{});return{...n,displayClasses:s,mobile:r}}const sd=Symbol.for("vuetify:goto");function od(){return{container:void 0,duration:300,layout:!1,offset:0,easing:"easeInOutCubic",patterns:{linear:e=>e,easeInQuad:e=>e**2,easeOutQuad:e=>e*(2-e),easeInOutQuad:e=>e<.5?2*e**2:-1+(4-2*e)*e,easeInCubic:e=>e**3,easeOutCubic:e=>--e**3+1,easeInOutCubic:e=>e<.5?4*e**3:(e-1)*(2*e-2)*(2*e-2)+1,easeInQuart:e=>e**4,easeOutQuart:e=>1- --e**4,easeInOutQuart:e=>e<.5?8*e**4:1-8*--e**4,easeInQuint:e=>e**5,easeOutQuint:e=>1+--e**5,easeInOutQuint:e=>e<.5?16*e**5:1+16*--e**5}}}function Zy(e){return Hi(e)??(document.scrollingElement||document.body)}function Hi(e){return typeof e=="string"?document.querySelector(e):Uf(e)}function fo(e,t,n){if(typeof e=="number")return t&&n?-e:e;let r=Hi(e),s=0;for(;r;)s+=t?r.offsetLeft:r.offsetTop,r=r.offsetParent;return s}function Yy(e,t){return{rtl:t.isRtl,options:Ve(od(),e)}}async function Gc(e,t,n,r){const s=n?"scrollLeft":"scrollTop",o=Ve((r==null?void 0:r.options)??od(),t),i=r==null?void 0:r.rtl.value,a=(typeof e=="number"?e:Hi(e))??0,c=o.container==="parent"&&a instanceof HTMLElement?a.parentElement:Zy(o.container),u=typeof o.easing=="function"?o.easing:o.patterns[o.easing];if(!u)throw new TypeError(`Easing function "${o.easing}" not found.`);let l;if(typeof a=="number")l=fo(a,n,i);else if(l=fo(a,n,i)-fo(c,n,i),o.layout){const h=window.getComputedStyle(a).getPropertyValue("--v-layout-top");h&&(l-=parseInt(h,10))}l+=o.offset,l=Jy(c,l,!!i,!!n);const f=c[s]??0;if(l===f)return Promise.resolve(l);const d=performance.now();return new Promise(m=>requestAnimationFrame(function h(p){const v=(p-d)/o.duration,b=Math.floor(f+(l-f)*u(Pi(v,0,1)));if(c[s]=b,v>=1&&Math.abs(b-c[s])<10)return m(l);if(v>2)return m(c[s]);requestAnimationFrame(h)}))}function NS(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};const t=Ce(sd),{isRtl:n}=qf();if(!t)throw new Error("[Vuetify] Could not find injected goto instance");const r={...t,rtl:Xe(()=>t.rtl.value||n.value)};async function s(o,i){return Gc(o,Ve(e,i),!1,r)}return s.horizontal=async(o,i)=>Gc(o,Ve(e,i),!0,r),s}function Jy(e,t,n,r){const{scrollWidth:s,scrollHeight:o}=e,[i,a]=e===document.scrollingElement?[window.innerWidth,window.innerHeight]:[e.offsetWidth,e.offsetHeight];let c,u;return r?n?(c=-(s-i),u=0):(c=0,u=s-i):(c=0,u=o+-a),Pi(t,c,u)}const Xy={collapse:"mdi-chevron-up",complete:"mdi-check",cancel:"mdi-close-circle",close:"mdi-close",delete:"mdi-close-circle",clear:"mdi-close-circle",success:"mdi-check-circle",info:"mdi-information",warning:"mdi-alert-circle",error:"mdi-close-circle",prev:"mdi-chevron-left",next:"mdi-chevron-right",checkboxOn:"mdi-checkbox-marked",checkboxOff:"mdi-checkbox-blank-outline",checkboxIndeterminate:"mdi-minus-box",delimiter:"mdi-circle",sortAsc:"mdi-arrow-up",sortDesc:"mdi-arrow-down",expand:"mdi-chevron-down",menu:"mdi-menu",subgroup:"mdi-menu-down",dropdown:"mdi-menu-down",radioOn:"mdi-radiobox-marked",radioOff:"mdi-radiobox-blank",edit:"mdi-pencil",ratingEmpty:"mdi-star-outline",ratingFull:"mdi-star",ratingHalf:"mdi-star-half-full",loading:"mdi-cached",first:"mdi-page-first",last:"mdi-page-last",unfold:"mdi-unfold-more-horizontal",file:"mdi-paperclip",plus:"mdi-plus",minus:"mdi-minus",calendar:"mdi-calendar",treeviewCollapse:"mdi-menu-down",treeviewExpand:"mdi-menu-right",eyeDropper:"mdi-eyedropper",upload:"mdi-cloud-upload",color:"mdi-palette"},Qy={component:e=>Rs(id,{...e,class:"mdi"})},_y=[String,Function,Object,Array],Yo=Symbol.for("vuetify:icons"),Ns=_t({icon:{type:_y},tag:{type:[String,Object,Function],required:!0}},"icon"),Kc=Yf()({name:"VComponentIcon",props:Ns(),setup(e,t){let{slots:n}=t;return()=>{const r=e.icon;return ge(e.tag,null,{default:()=>{var s;return[e.icon?ge(r,null,null):(s=n.default)==null?void 0:s.call(n)]}})}}}),Di=Or({name:"VSvgIcon",inheritAttrs:!1,props:Ns(),setup(e,t){let{attrs:n}=t;return()=>ge(e.tag,fu(n,{style:null}),{default:()=>[zt("svg",{class:"v-icon__svg",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true"},[Array.isArray(e.icon)?e.icon.map(r=>Array.isArray(r)?zt("path",{d:r[0],"fill-opacity":r[1]},null):zt("path",{d:r},null)):zt("path",{d:e.icon},null)])]})}});Or({name:"VLigatureIcon",props:Ns(),setup(e){return()=>ge(e.tag,null,{default:()=>[e.icon]})}});const id=Or({name:"VClassIcon",props:Ns(),setup(e){return()=>ge(e.tag,{class:yr(e.icon)},null)}});function qy(){return{svg:{component:Di},class:{component:id}}}function e5(e){const t=qy(),n=(e==null?void 0:e.defaultSet)??"mdi";return n==="mdi"&&!t.mdi&&(t.mdi=Qy),Ve({defaultSet:n,sets:t,aliases:{...Xy,vuetify:["M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z",["M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z",.6]],"vuetify-outline":"svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z","vuetify-play":["m6.376 13.184-4.11-7.192C1.505 4.66 2.467 3 4.003 3h8.532l-.953 1.576-.006.01-.396.677c-.429.732-.214 1.507.194 2.015.404.503 1.092.878 1.869.806a3.72 3.72 0 0 1 1.005.022c.276.053.434.143.523.237.138.146.38.635-.25 2.09-.893 1.63-1.553 1.722-1.847 1.677-.213-.033-.468-.158-.756-.406a4.95 4.95 0 0 1-.8-.927c-.39-.564-1.04-.84-1.66-.846-.625-.006-1.316.27-1.693.921l-.478.826-.911 1.506Z",["M9.093 11.552c.046-.079.144-.15.32-.148a.53.53 0 0 1 .43.207c.285.414.636.847 1.046 1.2.405.35.914.662 1.516.754 1.334.205 2.502-.698 3.48-2.495l.014-.028.013-.03c.687-1.574.774-2.852-.005-3.675-.37-.391-.861-.586-1.333-.676a5.243 5.243 0 0 0-1.447-.044c-.173.016-.393-.073-.54-.257-.145-.18-.127-.316-.082-.392l.393-.672L14.287 3h5.71c1.536 0 2.499 1.659 1.737 2.992l-7.997 13.996c-.768 1.344-2.706 1.344-3.473 0l-3.037-5.314 1.377-2.278.004-.006.004-.007.481-.831Z",.6]]}},e)}const jS=e=>{const t=Ce(Yo);if(!t)throw new Error("Missing Vuetify Icons provide!");return{iconData:ie(()=>{var c;const r=El(e);if(!r)return{component:Kc};let s=r;if(typeof s=="string"&&(s=s.trim(),s.startsWith("$")&&(s=(c=t.aliases)==null?void 0:c[s.slice(1)])),Array.isArray(s))return{component:Di,icon:s};if(typeof s!="string")return{component:Kc,icon:s};const o=Object.keys(t.sets).find(u=>typeof s=="string"&&s.startsWith(`${u}:`)),i=o?s.slice(o.length+1):s;return{component:t.sets[o??t.defaultSet].component,icon:i}})}};function ad(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};const{blueprint:t,...n}=e,r=Ve(t,n),{aliases:s={},components:o={},directives:i={}}=r,a=or();return a.run(()=>{const c=Lv(r.defaults),u=zy(r.display,r.ssr),l=Yv(r.theme),f=e5(r.icons),d=kv(r.locale),m=Wy(r.date,d),h=Yy(r.goTo,d);function p(v){for(const S in i)v.directive(S,i[S]);for(const S in o)v.component(S,o[S]);for(const S in s)v.component(S,Or({...s[S],name:S,aliasName:s[S].name}));const b=or();if(b.run(()=>{l.install(v)}),v.onUnmount(()=>b.stop()),v.provide(Dn,c),v.provide(Zo,u),v.provide(gr,l),v.provide(Yo,f),v.provide(hs,d),v.provide(Uy,m.options),v.provide(jc,m.instance),v.provide(sd,h),Ze&&r.ssr)if(v.$nuxt)v.$nuxt.hook("app:suspense:resolve",()=>{u.update()});else{const{mount:S}=v;v.mount=function(){const E=S(...arguments);return As(()=>u.update()),v.mount=S,E}}v.mixin({computed:{$vuetify(){return Ge({defaults:An.call(this,Dn),display:An.call(this,Zo),theme:An.call(this,gr),icons:An.call(this,Yo),locale:An.call(this,hs),date:An.call(this,jc)})}}})}function g(){a.stop()}return{install:p,unmount:g,defaults:c,display:u,theme:l,icons:f,locale:d,date:m,goTo:h}})}const t5="3.8.10";ad.version=t5;function An(e){var r,s;const t=this.$,n=((r=t.parent)==null?void 0:r.provides)??((s=t.vnode.appContext)==null?void 0:s.provides);if(n&&e in n)return n[e]}const n5={collapse:"svg:M7.41,15.41L12,10.83L16.59,15.41L18,14L12,8L6,14L7.41,15.41Z",complete:"svg:M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z",cancel:"svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z",close:"svg:M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z",delete:"svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z",clear:"svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z",success:"svg:M12,2C17.52,2 22,6.48 22,12C22,17.52 17.52,22 12,22C6.48,22 2,17.52 2,12C2,6.48 6.48,2 12,2M11,16.5L18,9.5L16.59,8.09L11,13.67L7.91,10.59L6.5,12L11,16.5Z",info:"svg:M13,9H11V7H13M13,17H11V11H13M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2Z",warning:"svg:M13,13H11V7H13M13,17H11V15H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z",error:"svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z",prev:"svg:M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z",next:"svg:M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z",checkboxOn:"svg:M10,17L5,12L6.41,10.58L10,14.17L17.59,6.58L19,8M19,3H5C3.89,3 3,3.89 3,5V19C3,20.1 3.9,21 5,21H19C20.1,21 21,20.1 21,19V5C21,3.89 20.1,3 19,3Z",checkboxOff:"svg:M19,3H5C3.89,3 3,3.89 3,5V19C3,20.1 3.9,21 5,21H19C20.1,21 21,20.1 21,19V5C21,3.89 20.1,3 19,3M19,5V19H5V5H19Z",checkboxIndeterminate:"svg:M17,13H7V11H17M19,3H5C3.89,3 3,3.89 3,5V19C3,20.1 3.9,21 5,21H19C20.1,21 21,20.1 21,19V5C21,3.89 20.1,3 19,3Z",delimiter:"svg:M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2Z",sortAsc:"svg:M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z",sortDesc:"svg:M11,4H13V16L18.5,10.5L19.92,11.92L12,19.84L4.08,11.92L5.5,10.5L11,16V4Z",expand:"svg:M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z",menu:"svg:M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z",subgroup:"svg:M7,10L12,15L17,10H7Z",dropdown:"svg:M7,10L12,15L17,10H7Z",radioOn:"svg:M12,20C7.58,20 4,16.42 4,12C4,7.58 7.58,4 12,4C16.42,4 20,7.58 20,12C20,16.42 16.42,20 12,20M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2M12,7C9.24,7 7,9.24 7,12C7,14.76 9.24,17 12,17C14.76,17 17,14.76 17,12C17,9.24 14.76,7 12,7Z",radioOff:"svg:M12,20C7.58,20 4,16.42 4,12C4,7.58 7.58,4 12,4C16.42,4 20,7.58 20,12C20,16.42 16.42,20 12,20M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2Z",edit:"svg:M20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18,2.9 17.35,2.9 16.96,3.29L15.12,5.12L18.87,8.87M3,17.25V21H6.75L17.81,9.93L14.06,6.18L3,17.25Z",ratingEmpty:"svg:M12,15.39L8.24,17.66L9.23,13.38L5.91,10.5L10.29,10.13L12,6.09L13.71,10.13L18.09,10.5L14.77,13.38L15.76,17.66M22,9.24L14.81,8.63L12,2L9.19,8.63L2,9.24L7.45,13.97L5.82,21L12,17.27L18.18,21L16.54,13.97L22,9.24Z",ratingFull:"svg:M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z",ratingHalf:"svg:M12,15.4V6.1L13.71,10.13L18.09,10.5L14.77,13.39L15.76,17.67M22,9.24L14.81,8.63L12,2L9.19,8.63L2,9.24L7.45,13.97L5.82,21L12,17.27L18.18,21L16.54,13.97L22,9.24Z",loading:"svg:M19,8L15,12H18C18,15.31 15.31,18 12,18C11,18 10.03,17.75 9.2,17.3L7.74,18.76C8.97,19.54 10.43,20 12,20C16.42,20 20,16.42 20,12H23M6,12C6,8.69 8.69,6 12,6C13,6 13.97,6.25 14.8,6.7L16.26,5.24C15.03,4.46 13.57,4 12,4C7.58,4 4,7.58 4,12H1L5,16L9,12",first:"svg:M18.41,16.59L13.82,12L18.41,7.41L17,6L11,12L17,18L18.41,16.59M6,6H8V18H6V6Z",last:"svg:M5.59,7.41L10.18,12L5.59,16.59L7,18L13,12L7,6L5.59,7.41M16,6H18V18H16V6Z",unfold:"svg:M12,18.17L8.83,15L7.42,16.41L12,21L16.59,16.41L15.17,15M12,5.83L15.17,9L16.58,7.59L12,3L7.41,7.59L8.83,9L12,5.83Z",file:"svg:M16.5,6V17.5C16.5,19.71 14.71,21.5 12.5,21.5C10.29,21.5 8.5,19.71 8.5,17.5V5C8.5,3.62 9.62,2.5 11,2.5C12.38,2.5 13.5,3.62 13.5,5V15.5C13.5,16.05 13.05,16.5 12.5,16.5C11.95,16.5 11.5,16.05 11.5,15.5V6H10V15.5C10,16.88 11.12,18 12.5,18C13.88,18 15,16.88 15,15.5V5C15,2.79 13.21,1 11,1C8.79,1 7,2.79 7,5V17.5C7,20.54 9.46,23 12.5,23C15.54,23 18,20.54 18,17.5V6H16.5Z",plus:"svg:M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z",minus:"svg:M19,13H5V11H19V13Z",calendar:"svg:M19,19H5V8H19M16,1V3H8V1H6V3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3H18V1M17,12H12V17H17V12Z",treeviewCollapse:"svg:M7,10L12,15L17,10H7Z",treeviewExpand:"svg:M10,17L15,12L10,7V17Z",eyeDropper:"svg:M19.35,11.72L17.22,13.85L15.81,12.43L8.1,20.14L3.5,22L2,20.5L3.86,15.9L11.57,8.19L10.15,6.78L12.28,4.65L19.35,11.72M16.76,3C17.93,1.83 19.83,1.83 21,3C22.17,4.17 22.17,6.07 21,7.24L19.08,9.16L14.84,4.92L16.76,3M5.56,17.03L4.5,19.5L6.97,18.44L14.4,11L13,9.6L5.56,17.03Z",upload:"svg:M11 20H6.5q-2.28 0-3.89-1.57Q1 16.85 1 14.58q0-1.95 1.17-3.48q1.18-1.53 3.08-1.95q.63-2.3 2.5-3.72Q9.63 4 12 4q2.93 0 4.96 2.04Q19 8.07 19 11q1.73.2 2.86 1.5q1.14 1.28 1.14 3q0 1.88-1.31 3.19T18.5 20H13v-7.15l1.6 1.55L16 13l-4-4l-4 4l1.4 1.4l1.6-1.55Z",color:"svg:M17.5 12a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 17.5 9a1.5 1.5 0 0 1 1.5 1.5a1.5 1.5 0 0 1-1.5 1.5m-3-4A1.5 1.5 0 0 1 13 6.5A1.5 1.5 0 0 1 14.5 5A1.5 1.5 0 0 1 16 6.5A1.5 1.5 0 0 1 14.5 8m-5 0A1.5 1.5 0 0 1 8 6.5A1.5 1.5 0 0 1 9.5 5A1.5 1.5 0 0 1 11 6.5A1.5 1.5 0 0 1 9.5 8m-3 4A1.5 1.5 0 0 1 5 10.5A1.5 1.5 0 0 1 6.5 9A1.5 1.5 0 0 1 8 10.5A1.5 1.5 0 0 1 6.5 12M12 3a9 9 0 0 0-9 9a9 9 0 0 0 9 9a1.5 1.5 0 0 0 1.5-1.5c0-.39-.15-.74-.39-1c-.23-.27-.38-.62-.38-1a1.5 1.5 0 0 1 1.5-1.5H16a5 5 0 0 0 5-5c0-4.42-4.03-8-9-8"},r5={component:Di},zc="#FFFFFF",Zc="#808080",rt={dark:!0,colors:{primary:"#CC7B19","primary-darken-1":"#965B13",error:"#DC143C",success:"#14dc3c","surface-light":"#2A2A2A",linkHover:zc,textPrimary:zc,textHeader:"#D3D3D3",textSecondary:"#A9A9A9",textDisabled:Zc,iconsInactive:Zc,includeGroup:"#151",excludeGroup:"#511"}},s5=new ad({defaults:{global:{ripple:!0},VCheckbox:{color:rt.colors.primary},VCheckboxBtn:{color:rt.colors.primary},VCombobox:{color:rt.colors.primary},VProgressLinear:{color:rt.colors.primary},VProgressCircular:{color:rt.colors.primary},VRadioGroup:{color:rt.colors.primary},VSelect:{color:rt.colors.primary},VSlider:{color:rt.colors.primary},VTabs:{color:rt.colors.primary},VTextField:{color:rt.colors.primary}},theme:{defaultTheme:"codexTheme",options:{customProperties:!0},themes:{codexTheme:rt}},icons:{defaultSet:"mdi",aliases:n5,sets:{mdi:r5}}}),Vt=ep(ey);Vt.use(s5);F2(Vt);ay(Vt);Vt.use(ne);Vt.use(lp());Vt.mixin(cp);Vt.use(dp);Vt.config.performance=!0;ne.isReady().then(()=>Vt.mount("#App")).catch(console.error);export{Pb as $,Gd as A,bp as B,nr as C,Oo as D,A5 as E,He as F,dr as G,m5 as H,c5 as I,Hb as J,j2 as K,_y as L,st as M,fc as N,xb as O,tb as P,Ab as Q,rb as R,Tb as S,o5 as T,P2 as U,Wb as V,f5 as W,Vb as X,S5 as Y,p5 as Z,N2 as _,ge as a,q5 as a$,$b as a0,ib as a1,ob as a2,fb as a3,sb as a4,Lb as a5,d5 as a6,zb as a7,Cb as a8,M2 as a9,Y5 as aA,Ob as aB,jb as aC,Nb as aD,Rb as aE,x2 as aF,nb as aG,X5 as aH,Ub as aI,wb as aJ,ub as aK,v5 as aL,Q5 as aM,rS as aN,Jv as aO,qf as aP,DS as aQ,it as aR,tt as aS,$v as aT,Ot as aU,As as aV,U5 as aW,U0 as aX,Xb as aY,J0 as aZ,eb as a_,vb as aa,b5 as ab,bb as ac,Sb as ad,K5 as ae,r2 as af,z5 as ag,H2 as ah,I2 as ai,_5 as aj,Kb as ak,V2 as al,Mb as am,Z5 as an,ci as ao,dc as ap,a5 as aq,ft as ar,hc as as,Fb as at,l5 as au,i2 as av,ng as aw,Qb as ax,Eb as ay,yb as az,zt as b,hi as b$,wr as b0,bt as b1,Yb as b2,lS as b3,Bf as b4,Pi as b5,nS as b6,kb as b7,cb as b8,lb as b9,J5 as bA,aS as bB,U2 as bC,oS as bD,AS as bE,yS as bF,_2 as bG,W2 as bH,s2 as bI,sS as bJ,Bb as bK,pn as bL,R1 as bM,Dt as bN,PS as bO,vr as bP,TS as bQ,Wo as bR,vS as bS,pS as bT,qb as bU,wl as bV,Jb as bW,qe as bX,Or as bY,ES as bZ,Q2 as b_,Gb as ba,Zb as bb,Rv as bc,Iv as bd,MS as be,HS as bf,Er as bg,db as bh,pi as bi,Ar as bj,uS as bk,qo as bl,kS as bm,oi as bn,FS as bo,g5 as bp,Ze as bq,L1 as br,iS as bs,Db as bt,IS as bu,hb as bv,Ib as bw,gb as bx,mb as by,ab as bz,ie as c,J2 as c0,X2 as c1,CS as c2,cS as c3,bS as c4,LS as c5,NS as c6,y5 as c7,Rs as c8,Qe as c9,wS as cA,Wl as cB,Zn as cC,VS as cD,jS as cE,Y2 as cF,Ts as cG,mS as cH,tS as cI,Ee as cJ,ut as cK,pb as cL,C5 as cM,Es as cN,Ri as cO,gS as ca,Av as cb,x1 as cc,Xt as cd,n2 as ce,G5 as cf,W5 as cg,lc as ch,A2 as ci,hS as cj,_b as ck,se as cl,El as cm,xS as cn,fS as co,or as cp,SS as cq,q2 as cr,Ge as cs,i5 as ct,dS as cu,hv as cv,RS as cw,Rt as cx,Cv as cy,be as cz,yr as d,Hv as e,OS as f,Yf as g,eS as h,Ce as i,kr as j,E5 as k,C2 as l,fu as m,Ss as n,G2 as o,_t as p,h5 as q,Fe as r,D1 as s,Xe as t,xv as u,rs as v,Il as w,ss as x,dh as y,u5 as z};
|