diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index d1ef4db055..c8d9464727 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -42,7 +42,7 @@ jobs: sudo apt-get update sudo apt-get install -yq build-essential clang clang-tools git autotools-dev autoconf libtool gettext gawk gperf bison flex libconfuse-dev libunistring-dev libsqlite3-dev libavcodec-dev libavformat-dev libavfilter-dev libswscale-dev libavutil-dev libasound2-dev libmxml-dev libgcrypt20-dev libavahi-client-dev zlib1g-dev libevent-dev libplist-dev libsodium-dev libcurl4-openssl-dev libjson-c-dev libprotobuf-c-dev libpulse-dev libwebsockets-dev libgnutls28-dev autoreconf -vi - ./configure --enable-lastfm --enable-chromecast + ./configure --enable-lastfm --enable-chromecast --disable-webinterface scan-build --status-bugs -disable-checker deadcode.DeadStores --exclude src/parsers make - name: Perform CodeQL Analysis diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 815c546586..607c2da7f1 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -58,7 +58,7 @@ jobs: brew install ffmpeg - name: Install other dependencies - run: brew install libunistring libmxml confuse libplist sqlite libwebsockets libevent libgcrypt json-c protobuf-c libsodium gnutls pulseaudio openssl + run: brew install libunistring libmxml confuse libplist sqlite libwebsockets libevent libgcrypt json-c protobuf-c libsodium gnutls pulseaudio openssl node - name: Configure run: | @@ -72,6 +72,7 @@ jobs: export LD_LIBRARY_PATH=$(brew --prefix openssl)/lib export CPATH=$(brew --prefix openssl)/include export PKG_CONFIG_PATH=$(brew --prefix openssl)/lib/pkgconfig + make web make - name: Install diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index fa3c5597ba..676fd506ab 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -16,11 +16,12 @@ jobs: - name: install dependencies run: | sudo apt-get update - sudo apt-get install -yq build-essential clang clang-tools git autotools-dev autoconf libtool gettext gawk gperf bison flex libconfuse-dev libunistring-dev libsqlite3-dev libavcodec-dev libavformat-dev libavfilter-dev libswscale-dev libavutil-dev libasound2-dev libmxml-dev libgcrypt20-dev libavahi-client-dev zlib1g-dev libevent-dev libplist-dev libsodium-dev libcurl4-openssl-dev libjson-c-dev libprotobuf-c-dev libpulse-dev libwebsockets-dev libgnutls28-dev + sudo apt-get install -yq build-essential clang clang-tools git autotools-dev autoconf libtool gettext gawk gperf bison flex libconfuse-dev libunistring-dev libsqlite3-dev libavcodec-dev libavformat-dev libavfilter-dev libswscale-dev libavutil-dev libasound2-dev libmxml-dev libgcrypt20-dev libavahi-client-dev zlib1g-dev libevent-dev libplist-dev libsodium-dev libcurl4-openssl-dev libjson-c-dev libprotobuf-c-dev libpulse-dev libwebsockets-dev libgnutls28-dev nodejs npm - name: build and check run: | autoreconf -vi ./configure + make web make make check make distcheck diff --git a/Makefile.am b/Makefile.am index eaa0781bff..6f9c505122 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,7 +16,13 @@ endif BUILT_SOURCES = $(CONF_FILE) $(SYSTEMD_SERVICE_FILE) $(SYSTEMD_TSERVICE_FILE) -SUBDIRS = $(LIBRESPOTC_SUBDIR) sqlext src htdocs +if COND_WEBINTERFACE +WEBINTERFACE_HTDOCS_SUBDIR = htdocs +WEBINTERFACE_SRC_SUBDIR = web-src +endif + +SUBDIRS = $(LIBRESPOTC_SUBDIR) sqlext src $(WEBINTERFACE_HTDOCS_SUBDIR) +DIST_SUBDIRS = $(SUBDIRS) $(WEBINTERFACE_SRC_SUBDIR) dist_man_MANS = owntone.8 @@ -100,3 +106,24 @@ $(CONF_FILE): $(srcdir)/$(CONF_FILE).in $(SYSTEMD_SERVICE_FILE): $(srcdir)/$(SYSTEMD_SERVICE_FILE).in $(SYSTEMD_TSERVICE_FILE): $(srcdir)/$(SYSTEMD_TSERVICE_FILE).in + +web: + $(MAKE) web -C web-src + +web-clean: + $(MAKE) web-clean -C web-src + +web-serve: + $(MAKE) web-serve -C web-src + +web-dist: web-build + tar -czf owntone-web-$(PACKAGE_VERSION).tar.gz htdocs + +web-lint: + $(MAKE) web-lint -C web-src + +web-format: + $(MAKE) web-format -C web-src + +.PHONY: web web-clean web-serve web-dist web-lint web-format + diff --git a/build.sh b/build.sh new file mode 100755 index 0000000000..b9cc90ceb2 --- /dev/null +++ b/build.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +set -x + +DEFAULT_AUTORECONF_FLAGS="-i" +DEFAULT_CONFIGURE_FLAGS="--prefix=/usr --sysconfdir=/etc --localstatedir=/var" +DEFAULT_MAKE_FLAGS="" + +autoreconf ${AUTORECONF_FLAGS:-${DEFAULT_AUTORECONF_FLAGS}} +./configure ${CONFIGURE_FLAGS:-${DEFAULT_CONFIGURE_FLAGS}} +make web +make ${MAKE_FLAGS:-${DEFAULT_MAKE_FLAGS}} diff --git a/configure.ac b/configure.ac index 8c2d137f44..9acbda1f29 100644 --- a/configure.ac +++ b/configure.ac @@ -318,11 +318,25 @@ dnl MPD support OWNTONE_ARG_DISABLE([MPD client protocol support], [mpd], [MPD]) AM_CONDITIONAL([COND_MPD], [[test "x$enable_mpd" = "xyes"]]) +AC_PATH_PROG([NPM], [[npm]]) + dnl Include default webinterface OWNTONE_ARG_DISABLE([include default web interface], [webinterface], [WEBINTERFACE], - [AS_IF([[test "x$with_libwebsockets" = "xno"]], - [AC_MSG_ERROR([[Web interface requires libwebsockets >= 2.0.2 (or use --disable-webinterface)]])]) - ]) + [AS_IF( + [[test "x$with_libwebsockets" = "xno"]], + [AC_MSG_ERROR([[Web interface requires libwebsockets >= 2.0.2 (or use --disable-webinterface)]])], + [[test -z "$NPM"]], + [AS_IF([[test -f "$srcdir/htdocs/index.html"]], + [AM_MISSING_PROG([NPM], [[npm]]) + AC_MSG_NOTICE([[ + +npm not found, but a prebuilt web interface seems to be present. +If you modify any web interface files, you will need to install it. + + ]])], + [AC_MSG_ERROR([[npm required, please install it.]])]) + ] + )]) AM_CONDITIONAL([COND_WEBINTERFACE], [[test "x$enable_webinterface" = "xyes"]]) dnl Creating and defining users and groups @@ -378,6 +392,7 @@ AC_CONFIG_FILES([ src/Makefile sqlext/Makefile htdocs/Makefile + web-src/Makefile Makefile owntone.spec ]) diff --git a/htdocs/.gitignore b/htdocs/.gitignore new file mode 100644 index 0000000000..6123f5117c --- /dev/null +++ b/htdocs/.gitignore @@ -0,0 +1,13 @@ +/android-chrome-192x192.png +/android-chrome-512x512.png +/apple-touch-icon.png +/browserconfig.xml +/favicon-16x16.png +/favicon-32x32.png +/favicon.ico +/index.html +/logo.svg +/mstile-150x150.png +/safari-pinned-tab.svg +/site.webmanifest +/assets \ No newline at end of file diff --git a/htdocs/Makefile.am b/htdocs/Makefile.am index 68c1acbdc7..a7ed14b66f 100644 --- a/htdocs/Makefile.am +++ b/htdocs/Makefile.am @@ -1,8 +1,6 @@ -if COND_WEBINTERFACE + WEBINTERFACE_SRC = \ index.html -endif - htdocsdir = $(datadir)/owntone/htdocs @@ -19,10 +17,13 @@ dist_htdocs_DATA = \ safari-pinned-tab.svg \ site.webmanifest -if COND_WEBINTERFACE htdocsassetsdir = $(datadir)/owntone/htdocs/assets dist_htdocsassets_DATA = \ assets/index.css \ assets/index.js -endif + +$(WEBINTERFACE_SRC): + if test ! -f "$(srcdir)/$(WEBINTERFACE_SRC)"; \ + then $(error Web interface files are missing! Did you run "make web"?); \ + fi; diff --git a/htdocs/android-chrome-192x192.png b/htdocs/android-chrome-192x192.png deleted file mode 100644 index ed82adb865..0000000000 Binary files a/htdocs/android-chrome-192x192.png and /dev/null differ diff --git a/htdocs/android-chrome-512x512.png b/htdocs/android-chrome-512x512.png deleted file mode 100644 index 74d5352ecc..0000000000 Binary files a/htdocs/android-chrome-512x512.png and /dev/null differ diff --git a/htdocs/apple-touch-icon.png b/htdocs/apple-touch-icon.png deleted file mode 100644 index 42c64f726f..0000000000 Binary files a/htdocs/apple-touch-icon.png and /dev/null differ diff --git a/htdocs/assets/index.css b/htdocs/assets/index.css deleted file mode 100644 index 26b9d1ae45..0000000000 --- a/htdocs/assets/index.css +++ /dev/null @@ -1 +0,0 @@ -@charset "UTF-8";.mdi>svg{vertical-align:middle}.mdi.mdi-spin>svg{-webkit-animation:mdi-spin 2s infinite linear;-moz-animation:mdi-spin 2s infinite linear;animation:mdi-spin 2s infinite linear}@-webkit-keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);transform:rotate(360deg)}}.fd-notifications{position:fixed;bottom:60px;z-index:20000;width:100%}.fd-notifications .notification{margin-bottom:10px;margin-left:24px;margin-right:24px;box-shadow:0 4px 8px #0003,0 6px 20px #00000030}/*! bulma.io v0.9.4 | MIT License | github.com/jgthms/bulma */.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.file-cta,.file-name,.select select,.textarea,.input,.button{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:4px;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(.5em - 1px);padding-left:calc(.75em - 1px);padding-right:calc(.75em - 1px);padding-top:calc(.5em - 1px);position:relative;vertical-align:top}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus,.pagination-ellipsis:focus,.file-cta:focus,.file-name:focus,.select select:focus,.textarea:focus,.input:focus,.button:focus,.is-focused.pagination-previous,.is-focused.pagination-next,.is-focused.pagination-link,.is-focused.pagination-ellipsis,.is-focused.file-cta,.is-focused.file-name,.select select.is-focused,.is-focused.textarea,.is-focused.input,.is-focused.button,.pagination-previous:active,.pagination-next:active,.pagination-link:active,.pagination-ellipsis:active,.file-cta:active,.file-name:active,.select select:active,.textarea:active,.input:active,.button:active,.is-active.pagination-previous,.is-active.pagination-next,.is-active.pagination-link,.is-active.pagination-ellipsis,.is-active.file-cta,.is-active.file-name,.select select.is-active,.is-active.textarea,.is-active.input,.is-active.button{outline:none}[disabled].pagination-previous,[disabled].pagination-next,[disabled].pagination-link,[disabled].pagination-ellipsis,[disabled].file-cta,[disabled].file-name,.select select[disabled],[disabled].textarea,[disabled].input,[disabled].button,fieldset[disabled] .pagination-previous,fieldset[disabled] .pagination-next,fieldset[disabled] .pagination-link,fieldset[disabled] .pagination-ellipsis,fieldset[disabled] .file-cta,fieldset[disabled] .file-name,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input,fieldset[disabled] .button{cursor:not-allowed}.is-unselectable,.tabs,.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.breadcrumb,.file,.button{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.navbar-link:not(.is-arrowless):after,.select:not(.is-multiple):not(.is-loading):after{border:3px solid transparent;border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:.625em;margin-top:-.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:.625em}.tabs:not(:last-child),.pagination:not(:last-child),.message:not(:last-child),.level:not(:last-child),.breadcrumb:not(:last-child),.block:not(:last-child),.title:not(:last-child),.subtitle:not(:last-child),.table-container:not(:last-child),.table:not(:last-child),.progress:not(:last-child),.notification:not(:last-child),.content:not(:last-child),.box:not(:last-child){margin-bottom:1.5rem}.modal-close,.delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:#0a0a0a33;border:none;border-radius:9999px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}.modal-close:before,.delete:before,.modal-close:after,.delete:after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translate(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.modal-close:before,.delete:before{height:2px;width:50%}.modal-close:after,.delete:after{height:50%;width:2px}.modal-close:hover,.delete:hover,.modal-close:focus,.delete:focus{background-color:#0a0a0a4d}.modal-close:active,.delete:active{background-color:#0a0a0a66}.is-small.modal-close,.is-small.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}.is-medium.modal-close,.is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}.is-large.modal-close,.is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}.control.is-loading:after,.select.is-loading:after,.loader,.button.is-loading:after{animation:spinAround .5s infinite linear;border:2px solid hsl(0deg,0%,86%);border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}.hero-video,.is-overlay,.fd-overlay-fullscreen,.modal-background,.modal,.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio{bottom:0;left:0;position:absolute;right:0;top:0}.navbar-burger{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}html{background-color:#fff;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:hidden;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}article,aside,figure,footer,header,hgroup,section{display:block}body,button,input,optgroup,select,textarea{font-family:BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Arial,sans-serif}code,pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:monospace}body{color:#4a4a4a;font-size:1em;font-weight:400;line-height:1.5}a{color:#485fc7;cursor:pointer;text-decoration:none}a strong{color:currentColor}a:hover{color:#363636}code{background-color:#f5f5f5;color:#da1039;font-size:.875em;font-weight:400;padding:.25em .5em}hr{background-color:#f5f5f5;border:none;display:block;height:2px;margin:1.5rem 0}img{height:auto;max-width:100%}input[type=checkbox],input[type=radio]{vertical-align:baseline}small{font-size:.875em}span{font-style:inherit;font-weight:inherit}strong{color:#363636;font-weight:700}fieldset{border:none}pre{-webkit-overflow-scrolling:touch;background-color:#f5f5f5;color:#4a4a4a;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}table td,table th{vertical-align:top}table td:not([align]),table th:not([align]){text-align:inherit}table th{color:#363636}@keyframes spinAround{0%{transform:rotate(0)}to{transform:rotate(359deg)}}.box{background-color:#fff;border-radius:6px;box-shadow:0 .5em 1em -.125em #0a0a0a1a,0 0 0 1px #0a0a0a05;color:#4a4a4a;display:block;padding:1.25rem}a.box:hover,a.box:focus{box-shadow:0 .5em 1em -.125em #0a0a0a1a,0 0 0 1px #485fc7}a.box:active{box-shadow:inset 0 1px 2px #0a0a0a33,0 0 0 1px #485fc7}.button{background-color:#fff;border-color:#dbdbdb;border-width:1px;color:#363636;cursor:pointer;justify-content:center;padding-bottom:calc(.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(.5em - 1px);text-align:center;white-space:nowrap}.button strong{color:inherit}.button .icon,.button .icon.is-small,.button .icon.is-medium,.button .icon.is-large{height:1.5em;width:1.5em}.button .icon:first-child:not(:last-child){margin-left:calc(-.5em - 1px);margin-right:.25em}.button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-.5em - 1px)}.button .icon:first-child:last-child{margin-left:calc(-.5em - 1px);margin-right:calc(-.5em - 1px)}.button:hover,.button.is-hovered{border-color:#b5b5b5;color:#363636}.button:focus,.button.is-focused{border-color:#485fc7;color:#363636}.button:focus:not(:active),.button.is-focused:not(:active){box-shadow:0 0 0 .125em #485fc740}.button:active,.button.is-active{border-color:#4a4a4a;color:#363636}.button.is-text{background-color:transparent;border-color:transparent;color:#4a4a4a;text-decoration:underline}.button.is-text:hover,.button.is-text.is-hovered,.button.is-text:focus,.button.is-text.is-focused{background-color:#f5f5f5;color:#363636}.button.is-text:active,.button.is-text.is-active{background-color:#e8e8e8;color:#363636}.button.is-text[disabled],fieldset[disabled] .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}.button.is-ghost{background:none;border-color:transparent;color:#485fc7;text-decoration:none}.button.is-ghost:hover,.button.is-ghost.is-hovered{color:#485fc7;text-decoration:underline}.button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}.button.is-white:hover,.button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.button.is-white:focus,.button.is-white.is-focused{border-color:transparent;color:#0a0a0a}.button.is-white:focus:not(:active),.button.is-white.is-focused:not(:active){box-shadow:0 0 0 .125em #ffffff40}.button.is-white:active,.button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.button.is-white[disabled],fieldset[disabled] .button.is-white{background-color:#fff;border-color:#fff;box-shadow:none}.button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted:hover,.button.is-white.is-inverted.is-hovered{background-color:#000}.button.is-white.is-inverted[disabled],fieldset[disabled] .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}.button.is-white.is-loading:after{border-color:transparent transparent hsl(0deg,0%,4%) hsl(0deg,0%,4%)!important}.button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-white.is-outlined:hover,.button.is-white.is-outlined.is-hovered,.button.is-white.is-outlined:focus,.button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}.button.is-white.is-outlined.is-loading:after{border-color:transparent transparent hsl(0deg,0%,100%) hsl(0deg,0%,100%)!important}.button.is-white.is-outlined.is-loading:hover:after,.button.is-white.is-outlined.is-loading.is-hovered:after,.button.is-white.is-outlined.is-loading:focus:after,.button.is-white.is-outlined.is-loading.is-focused:after{border-color:transparent transparent hsl(0deg,0%,4%) hsl(0deg,0%,4%)!important}.button.is-white.is-outlined[disabled],fieldset[disabled] .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-white.is-inverted.is-outlined:hover,.button.is-white.is-inverted.is-outlined.is-hovered,.button.is-white.is-inverted.is-outlined:focus,.button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted.is-outlined.is-loading:hover:after,.button.is-white.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-white.is-inverted.is-outlined.is-loading:focus:after,.button.is-white.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent hsl(0deg,0%,100%) hsl(0deg,0%,100%)!important}.button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}.button.is-black:hover,.button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}.button.is-black:focus,.button.is-black.is-focused{border-color:transparent;color:#fff}.button.is-black:focus:not(:active),.button.is-black.is-focused:not(:active){box-shadow:0 0 0 .125em #0a0a0a40}.button.is-black:active,.button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}.button.is-black[disabled],fieldset[disabled] .button.is-black{background-color:#0a0a0a;border-color:#0a0a0a;box-shadow:none}.button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted:hover,.button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-black.is-inverted[disabled],fieldset[disabled] .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}.button.is-black.is-loading:after{border-color:transparent transparent hsl(0deg,0%,100%) hsl(0deg,0%,100%)!important}.button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-black.is-outlined:hover,.button.is-black.is-outlined.is-hovered,.button.is-black.is-outlined:focus,.button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.button.is-black.is-outlined.is-loading:after{border-color:transparent transparent hsl(0deg,0%,4%) hsl(0deg,0%,4%)!important}.button.is-black.is-outlined.is-loading:hover:after,.button.is-black.is-outlined.is-loading.is-hovered:after,.button.is-black.is-outlined.is-loading:focus:after,.button.is-black.is-outlined.is-loading.is-focused:after{border-color:transparent transparent hsl(0deg,0%,100%) hsl(0deg,0%,100%)!important}.button.is-black.is-outlined[disabled],fieldset[disabled] .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-black.is-inverted.is-outlined:hover,.button.is-black.is-inverted.is-outlined.is-hovered,.button.is-black.is-inverted.is-outlined:focus,.button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted.is-outlined.is-loading:hover:after,.button.is-black.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-black.is-inverted.is-outlined.is-loading:focus:after,.button.is-black.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent hsl(0deg,0%,4%) hsl(0deg,0%,4%)!important}.button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-light{background-color:#f5f5f5;border-color:transparent;color:#000000b3}.button.is-light:hover,.button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:#000000b3}.button.is-light:focus,.button.is-light.is-focused{border-color:transparent;color:#000000b3}.button.is-light:focus:not(:active),.button.is-light.is-focused:not(:active){box-shadow:0 0 0 .125em #f5f5f540}.button.is-light:active,.button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:#000000b3}.button.is-light[disabled],fieldset[disabled] .button.is-light{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none}.button.is-light.is-inverted{background-color:#000000b3;color:#f5f5f5}.button.is-light.is-inverted:hover,.button.is-light.is-inverted.is-hovered{background-color:#000000b3}.button.is-light.is-inverted[disabled],fieldset[disabled] .button.is-light.is-inverted{background-color:#000000b3;border-color:transparent;box-shadow:none;color:#f5f5f5}.button.is-light.is-loading:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}.button.is-light.is-outlined:hover,.button.is-light.is-outlined.is-hovered,.button.is-light.is-outlined:focus,.button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:#000000b3}.button.is-light.is-outlined.is-loading:after{border-color:transparent transparent hsl(0deg,0%,96%) hsl(0deg,0%,96%)!important}.button.is-light.is-outlined.is-loading:hover:after,.button.is-light.is-outlined.is-loading.is-hovered:after,.button.is-light.is-outlined.is-loading:focus:after,.button.is-light.is-outlined.is-loading.is-focused:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-light.is-outlined[disabled],fieldset[disabled] .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}.button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:#000000b3;color:#000000b3}.button.is-light.is-inverted.is-outlined:hover,.button.is-light.is-inverted.is-outlined.is-hovered,.button.is-light.is-inverted.is-outlined:focus,.button.is-light.is-inverted.is-outlined.is-focused{background-color:#000000b3;color:#f5f5f5}.button.is-light.is-inverted.is-outlined.is-loading:hover:after,.button.is-light.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-light.is-inverted.is-outlined.is-loading:focus:after,.button.is-light.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent hsl(0deg,0%,96%) hsl(0deg,0%,96%)!important}.button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:#000000b3;box-shadow:none;color:#000000b3}.button.is-dark{background-color:#363636;border-color:transparent;color:#fff}.button.is-dark:hover,.button.is-dark.is-hovered{background-color:#2f2f2f;border-color:transparent;color:#fff}.button.is-dark:focus,.button.is-dark.is-focused{border-color:transparent;color:#fff}.button.is-dark:focus:not(:active),.button.is-dark.is-focused:not(:active){box-shadow:0 0 0 .125em #36363640}.button.is-dark:active,.button.is-dark.is-active{background-color:#292929;border-color:transparent;color:#fff}.button.is-dark[disabled],fieldset[disabled] .button.is-dark{background-color:#363636;border-color:#363636;box-shadow:none}.button.is-dark.is-inverted{background-color:#fff;color:#363636}.button.is-dark.is-inverted:hover,.button.is-dark.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-dark.is-inverted[disabled],fieldset[disabled] .button.is-dark.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#363636}.button.is-dark.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-dark.is-outlined{background-color:transparent;border-color:#363636;color:#363636}.button.is-dark.is-outlined:hover,.button.is-dark.is-outlined.is-hovered,.button.is-dark.is-outlined:focus,.button.is-dark.is-outlined.is-focused{background-color:#363636;border-color:#363636;color:#fff}.button.is-dark.is-outlined.is-loading:after{border-color:transparent transparent hsl(0deg,0%,21%) hsl(0deg,0%,21%)!important}.button.is-dark.is-outlined.is-loading:hover:after,.button.is-dark.is-outlined.is-loading.is-hovered:after,.button.is-dark.is-outlined.is-loading:focus:after,.button.is-dark.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-dark.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-outlined{background-color:transparent;border-color:#363636;box-shadow:none;color:#363636}.button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-dark.is-inverted.is-outlined:hover,.button.is-dark.is-inverted.is-outlined.is-hovered,.button.is-dark.is-inverted.is-outlined:focus,.button.is-dark.is-inverted.is-outlined.is-focused{background-color:#fff;color:#363636}.button.is-dark.is-inverted.is-outlined.is-loading:hover:after,.button.is-dark.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-dark.is-inverted.is-outlined.is-loading:focus:after,.button.is-dark.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent hsl(0deg,0%,21%) hsl(0deg,0%,21%)!important}.button.is-dark.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary{background-color:#00d1b2;border-color:transparent;color:#fff}.button.is-primary:hover,.button.is-primary.is-hovered{background-color:#00c4a7;border-color:transparent;color:#fff}.button.is-primary:focus,.button.is-primary.is-focused{border-color:transparent;color:#fff}.button.is-primary:focus:not(:active),.button.is-primary.is-focused:not(:active){box-shadow:0 0 0 .125em #00d1b240}.button.is-primary:active,.button.is-primary.is-active{background-color:#00b89c;border-color:transparent;color:#fff}.button.is-primary[disabled],fieldset[disabled] .button.is-primary{background-color:#00d1b2;border-color:#00d1b2;box-shadow:none}.button.is-primary.is-inverted{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted:hover,.button.is-primary.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-primary.is-inverted[disabled],fieldset[disabled] .button.is-primary.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#00d1b2}.button.is-primary.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;color:#00d1b2}.button.is-primary.is-outlined:hover,.button.is-primary.is-outlined.is-hovered,.button.is-primary.is-outlined:focus,.button.is-primary.is-outlined.is-focused{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.button.is-primary.is-outlined.is-loading:after{border-color:transparent transparent hsl(171deg,100%,41%) hsl(171deg,100%,41%)!important}.button.is-primary.is-outlined.is-loading:hover:after,.button.is-primary.is-outlined.is-loading.is-hovered:after,.button.is-primary.is-outlined.is-loading:focus:after,.button.is-primary.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;box-shadow:none;color:#00d1b2}.button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-primary.is-inverted.is-outlined:hover,.button.is-primary.is-inverted.is-outlined.is-hovered,.button.is-primary.is-inverted.is-outlined:focus,.button.is-primary.is-inverted.is-outlined.is-focused{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted.is-outlined.is-loading:hover:after,.button.is-primary.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-primary.is-inverted.is-outlined.is-loading:focus:after,.button.is-primary.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent hsl(171deg,100%,41%) hsl(171deg,100%,41%)!important}.button.is-primary.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary.is-light{background-color:#ebfffc;color:#00947e}.button.is-primary.is-light:hover,.button.is-primary.is-light.is-hovered{background-color:#defffa;border-color:transparent;color:#00947e}.button.is-primary.is-light:active,.button.is-primary.is-light.is-active{background-color:#d1fff8;border-color:transparent;color:#00947e}.button.is-link{background-color:#485fc7;border-color:transparent;color:#fff}.button.is-link:hover,.button.is-link.is-hovered{background-color:#3e56c4;border-color:transparent;color:#fff}.button.is-link:focus,.button.is-link.is-focused{border-color:transparent;color:#fff}.button.is-link:focus:not(:active),.button.is-link.is-focused:not(:active){box-shadow:0 0 0 .125em #485fc740}.button.is-link:active,.button.is-link.is-active{background-color:#3a51bb;border-color:transparent;color:#fff}.button.is-link[disabled],fieldset[disabled] .button.is-link{background-color:#485fc7;border-color:#485fc7;box-shadow:none}.button.is-link.is-inverted{background-color:#fff;color:#485fc7}.button.is-link.is-inverted:hover,.button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-link.is-inverted[disabled],fieldset[disabled] .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#485fc7}.button.is-link.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined{background-color:transparent;border-color:#485fc7;color:#485fc7}.button.is-link.is-outlined:hover,.button.is-link.is-outlined.is-hovered,.button.is-link.is-outlined:focus,.button.is-link.is-outlined.is-focused{background-color:#485fc7;border-color:#485fc7;color:#fff}.button.is-link.is-outlined.is-loading:after{border-color:transparent transparent hsl(229deg,53%,53%) hsl(229deg,53%,53%)!important}.button.is-link.is-outlined.is-loading:hover:after,.button.is-link.is-outlined.is-loading.is-hovered:after,.button.is-link.is-outlined.is-loading:focus:after,.button.is-link.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined[disabled],fieldset[disabled] .button.is-link.is-outlined{background-color:transparent;border-color:#485fc7;box-shadow:none;color:#485fc7}.button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-link.is-inverted.is-outlined:hover,.button.is-link.is-inverted.is-outlined.is-hovered,.button.is-link.is-inverted.is-outlined:focus,.button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#485fc7}.button.is-link.is-inverted.is-outlined.is-loading:hover:after,.button.is-link.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-link.is-inverted.is-outlined.is-loading:focus:after,.button.is-link.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent hsl(229deg,53%,53%) hsl(229deg,53%,53%)!important}.button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-link.is-light{background-color:#eff1fa;color:#3850b7}.button.is-link.is-light:hover,.button.is-link.is-light.is-hovered{background-color:#e6e9f7;border-color:transparent;color:#3850b7}.button.is-link.is-light:active,.button.is-link.is-light.is-active{background-color:#dce0f4;border-color:transparent;color:#3850b7}.button.is-info{background-color:#3e8ed0;border-color:transparent;color:#fff}.button.is-info:hover,.button.is-info.is-hovered{background-color:#3488ce;border-color:transparent;color:#fff}.button.is-info:focus,.button.is-info.is-focused{border-color:transparent;color:#fff}.button.is-info:focus:not(:active),.button.is-info.is-focused:not(:active){box-shadow:0 0 0 .125em #3e8ed040}.button.is-info:active,.button.is-info.is-active{background-color:#3082c5;border-color:transparent;color:#fff}.button.is-info[disabled],fieldset[disabled] .button.is-info{background-color:#3e8ed0;border-color:#3e8ed0;box-shadow:none}.button.is-info.is-inverted{background-color:#fff;color:#3e8ed0}.button.is-info.is-inverted:hover,.button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-info.is-inverted[disabled],fieldset[disabled] .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#3e8ed0}.button.is-info.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined{background-color:transparent;border-color:#3e8ed0;color:#3e8ed0}.button.is-info.is-outlined:hover,.button.is-info.is-outlined.is-hovered,.button.is-info.is-outlined:focus,.button.is-info.is-outlined.is-focused{background-color:#3e8ed0;border-color:#3e8ed0;color:#fff}.button.is-info.is-outlined.is-loading:after{border-color:transparent transparent hsl(207deg,61%,53%) hsl(207deg,61%,53%)!important}.button.is-info.is-outlined.is-loading:hover:after,.button.is-info.is-outlined.is-loading.is-hovered:after,.button.is-info.is-outlined.is-loading:focus:after,.button.is-info.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined[disabled],fieldset[disabled] .button.is-info.is-outlined{background-color:transparent;border-color:#3e8ed0;box-shadow:none;color:#3e8ed0}.button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-info.is-inverted.is-outlined:hover,.button.is-info.is-inverted.is-outlined.is-hovered,.button.is-info.is-inverted.is-outlined:focus,.button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:#3e8ed0}.button.is-info.is-inverted.is-outlined.is-loading:hover:after,.button.is-info.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-info.is-inverted.is-outlined.is-loading:focus:after,.button.is-info.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent hsl(207deg,61%,53%) hsl(207deg,61%,53%)!important}.button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-info.is-light{background-color:#eff5fb;color:#296fa8}.button.is-info.is-light:hover,.button.is-info.is-light.is-hovered{background-color:#e4eff9;border-color:transparent;color:#296fa8}.button.is-info.is-light:active,.button.is-info.is-light.is-active{background-color:#dae9f6;border-color:transparent;color:#296fa8}.button.is-success{background-color:#48c78e;border-color:transparent;color:#fff}.button.is-success:hover,.button.is-success.is-hovered{background-color:#3ec487;border-color:transparent;color:#fff}.button.is-success:focus,.button.is-success.is-focused{border-color:transparent;color:#fff}.button.is-success:focus:not(:active),.button.is-success.is-focused:not(:active){box-shadow:0 0 0 .125em #48c78e40}.button.is-success:active,.button.is-success.is-active{background-color:#3abb81;border-color:transparent;color:#fff}.button.is-success[disabled],fieldset[disabled] .button.is-success{background-color:#48c78e;border-color:#48c78e;box-shadow:none}.button.is-success.is-inverted{background-color:#fff;color:#48c78e}.button.is-success.is-inverted:hover,.button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-success.is-inverted[disabled],fieldset[disabled] .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#48c78e}.button.is-success.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined{background-color:transparent;border-color:#48c78e;color:#48c78e}.button.is-success.is-outlined:hover,.button.is-success.is-outlined.is-hovered,.button.is-success.is-outlined:focus,.button.is-success.is-outlined.is-focused{background-color:#48c78e;border-color:#48c78e;color:#fff}.button.is-success.is-outlined.is-loading:after{border-color:transparent transparent hsl(153deg,53%,53%) hsl(153deg,53%,53%)!important}.button.is-success.is-outlined.is-loading:hover:after,.button.is-success.is-outlined.is-loading.is-hovered:after,.button.is-success.is-outlined.is-loading:focus:after,.button.is-success.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined[disabled],fieldset[disabled] .button.is-success.is-outlined{background-color:transparent;border-color:#48c78e;box-shadow:none;color:#48c78e}.button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-success.is-inverted.is-outlined:hover,.button.is-success.is-inverted.is-outlined.is-hovered,.button.is-success.is-inverted.is-outlined:focus,.button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:#48c78e}.button.is-success.is-inverted.is-outlined.is-loading:hover:after,.button.is-success.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-success.is-inverted.is-outlined.is-loading:focus:after,.button.is-success.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent hsl(153deg,53%,53%) hsl(153deg,53%,53%)!important}.button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-success.is-light{background-color:#effaf5;color:#257953}.button.is-success.is-light:hover,.button.is-success.is-light.is-hovered{background-color:#e6f7ef;border-color:transparent;color:#257953}.button.is-success.is-light:active,.button.is-success.is-light.is-active{background-color:#dcf4e9;border-color:transparent;color:#257953}.button.is-warning{background-color:#ffe08a;border-color:transparent;color:#000000b3}.button.is-warning:hover,.button.is-warning.is-hovered{background-color:#ffdc7d;border-color:transparent;color:#000000b3}.button.is-warning:focus,.button.is-warning.is-focused{border-color:transparent;color:#000000b3}.button.is-warning:focus:not(:active),.button.is-warning.is-focused:not(:active){box-shadow:0 0 0 .125em #ffe08a40}.button.is-warning:active,.button.is-warning.is-active{background-color:#ffd970;border-color:transparent;color:#000000b3}.button.is-warning[disabled],fieldset[disabled] .button.is-warning{background-color:#ffe08a;border-color:#ffe08a;box-shadow:none}.button.is-warning.is-inverted{background-color:#000000b3;color:#ffe08a}.button.is-warning.is-inverted:hover,.button.is-warning.is-inverted.is-hovered{background-color:#000000b3}.button.is-warning.is-inverted[disabled],fieldset[disabled] .button.is-warning.is-inverted{background-color:#000000b3;border-color:transparent;box-shadow:none;color:#ffe08a}.button.is-warning.is-loading:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-warning.is-outlined{background-color:transparent;border-color:#ffe08a;color:#ffe08a}.button.is-warning.is-outlined:hover,.button.is-warning.is-outlined.is-hovered,.button.is-warning.is-outlined:focus,.button.is-warning.is-outlined.is-focused{background-color:#ffe08a;border-color:#ffe08a;color:#000000b3}.button.is-warning.is-outlined.is-loading:after{border-color:transparent transparent hsl(44deg,100%,77%) hsl(44deg,100%,77%)!important}.button.is-warning.is-outlined.is-loading:hover:after,.button.is-warning.is-outlined.is-loading.is-hovered:after,.button.is-warning.is-outlined.is-loading:focus:after,.button.is-warning.is-outlined.is-loading.is-focused:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-warning.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-outlined{background-color:transparent;border-color:#ffe08a;box-shadow:none;color:#ffe08a}.button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:#000000b3;color:#000000b3}.button.is-warning.is-inverted.is-outlined:hover,.button.is-warning.is-inverted.is-outlined.is-hovered,.button.is-warning.is-inverted.is-outlined:focus,.button.is-warning.is-inverted.is-outlined.is-focused{background-color:#000000b3;color:#ffe08a}.button.is-warning.is-inverted.is-outlined.is-loading:hover:after,.button.is-warning.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-warning.is-inverted.is-outlined.is-loading:focus:after,.button.is-warning.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent hsl(44deg,100%,77%) hsl(44deg,100%,77%)!important}.button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:#000000b3;box-shadow:none;color:#000000b3}.button.is-warning.is-light{background-color:#fffaeb;color:#946c00}.button.is-warning.is-light:hover,.button.is-warning.is-light.is-hovered{background-color:#fff6de;border-color:transparent;color:#946c00}.button.is-warning.is-light:active,.button.is-warning.is-light.is-active{background-color:#fff3d1;border-color:transparent;color:#946c00}.button.is-danger{background-color:#f14668;border-color:transparent;color:#fff}.button.is-danger:hover,.button.is-danger.is-hovered{background-color:#f03a5f;border-color:transparent;color:#fff}.button.is-danger:focus,.button.is-danger.is-focused{border-color:transparent;color:#fff}.button.is-danger:focus:not(:active),.button.is-danger.is-focused:not(:active){box-shadow:0 0 0 .125em #f1466840}.button.is-danger:active,.button.is-danger.is-active{background-color:#ef2e55;border-color:transparent;color:#fff}.button.is-danger[disabled],fieldset[disabled] .button.is-danger{background-color:#f14668;border-color:#f14668;box-shadow:none}.button.is-danger.is-inverted{background-color:#fff;color:#f14668}.button.is-danger.is-inverted:hover,.button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-danger.is-inverted[disabled],fieldset[disabled] .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#f14668}.button.is-danger.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined{background-color:transparent;border-color:#f14668;color:#f14668}.button.is-danger.is-outlined:hover,.button.is-danger.is-outlined.is-hovered,.button.is-danger.is-outlined:focus,.button.is-danger.is-outlined.is-focused{background-color:#f14668;border-color:#f14668;color:#fff}.button.is-danger.is-outlined.is-loading:after{border-color:transparent transparent hsl(348deg,86%,61%) hsl(348deg,86%,61%)!important}.button.is-danger.is-outlined.is-loading:hover:after,.button.is-danger.is-outlined.is-loading.is-hovered:after,.button.is-danger.is-outlined.is-loading:focus:after,.button.is-danger.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-outlined{background-color:transparent;border-color:#f14668;box-shadow:none;color:#f14668}.button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-danger.is-inverted.is-outlined:hover,.button.is-danger.is-inverted.is-outlined.is-hovered,.button.is-danger.is-inverted.is-outlined:focus,.button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#f14668}.button.is-danger.is-inverted.is-outlined.is-loading:hover:after,.button.is-danger.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-danger.is-inverted.is-outlined.is-loading:focus:after,.button.is-danger.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent hsl(348deg,86%,61%) hsl(348deg,86%,61%)!important}.button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.button.is-danger.is-light:hover,.button.is-danger.is-light.is-hovered{background-color:#fde0e6;border-color:transparent;color:#cc0f35}.button.is-danger.is-light:active,.button.is-danger.is-light.is-active{background-color:#fcd4dc;border-color:transparent;color:#cc0f35}.button.is-small{font-size:.75rem}.button.is-small:not(.is-rounded){border-radius:2px}.button.is-normal{font-size:1rem}.button.is-medium{font-size:1.25rem}.button.is-large{font-size:1.5rem}.button[disabled],fieldset[disabled] .button{background-color:#fff;border-color:#dbdbdb;box-shadow:none;opacity:.5}.button.is-fullwidth{display:flex;width:100%}.button.is-loading{color:transparent!important;pointer-events:none}.button.is-loading:after{position:absolute;left:calc(50% - .5em);top:calc(50% - .5em);position:absolute!important}.button.is-static{background-color:#f5f5f5;border-color:#dbdbdb;color:#7a7a7a;box-shadow:none;pointer-events:none}.button.is-rounded{border-radius:9999px;padding-left:1.25em;padding-right:1.25em}.buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.buttons .button{margin-bottom:.5rem}.buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}.buttons:last-child{margin-bottom:-.5rem}.buttons:not(:last-child){margin-bottom:1rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:2px}.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}.buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}.buttons.has-addons .button:last-child{margin-right:0}.buttons.has-addons .button:hover,.buttons.has-addons .button.is-hovered{z-index:2}.buttons.has-addons .button:focus,.buttons.has-addons .button.is-focused,.buttons.has-addons .button:active,.buttons.has-addons .button.is-active,.buttons.has-addons .button.is-selected{z-index:3}.buttons.has-addons .button:focus:hover,.buttons.has-addons .button.is-focused:hover,.buttons.has-addons .button:active:hover,.buttons.has-addons .button.is-active:hover,.buttons.has-addons .button.is-selected:hover{z-index:4}.buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}.buttons.is-centered{justify-content:center}.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}.buttons.is-right{justify-content:flex-end}.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}@media screen and (max-width: 768px){.button.is-responsive.is-small{font-size:.5625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.65625rem}.button.is-responsive.is-medium{font-size:.75rem}.button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.button.is-responsive.is-small{font-size:.65625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.75rem}.button.is-responsive.is-medium{font-size:1rem}.button.is-responsive.is-large{font-size:1.25rem}}.container{flex-grow:1;margin:0 auto;position:relative;width:auto}.container.is-fluid{max-width:none!important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width: 1024px){.container{max-width:960px}}@media screen and (max-width: 1215px){.container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width: 1407px){.container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width: 1216px){.container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width: 1408px){.container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}.content li+li{margin-top:.25em}.content p:not(:last-child),.content dl:not(:last-child),.content ol:not(:last-child),.content ul:not(:last-child),.content blockquote:not(:last-child),.content pre:not(:last-child),.content table:not(:last-child){margin-bottom:1em}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{color:#363636;font-weight:600;line-height:1.125}.content h1{font-size:2em;margin-bottom:.5em}.content h1:not(:first-child){margin-top:1em}.content h2{font-size:1.75em;margin-bottom:.5714em}.content h2:not(:first-child){margin-top:1.1428em}.content h3{font-size:1.5em;margin-bottom:.6666em}.content h3:not(:first-child){margin-top:1.3333em}.content h4{font-size:1.25em;margin-bottom:.8em}.content h5{font-size:1.125em;margin-bottom:.8888em}.content h6{font-size:1em;margin-bottom:1em}.content blockquote{background-color:#f5f5f5;border-left:5px solid hsl(0deg,0%,86%);padding:1.25em 1.5em}.content ol{list-style-position:outside;margin-left:2em;margin-top:1em}.content ol:not([type]){list-style-type:decimal}.content ol:not([type]).is-lower-alpha{list-style-type:lower-alpha}.content ol:not([type]).is-lower-roman{list-style-type:lower-roman}.content ol:not([type]).is-upper-alpha{list-style-type:upper-alpha}.content ol:not([type]).is-upper-roman{list-style-type:upper-roman}.content ul{list-style:disc outside;margin-left:2em;margin-top:1em}.content ul ul{list-style-type:circle;margin-top:.5em}.content ul ul ul{list-style-type:square}.content dd{margin-left:2em}.content figure{margin-left:2em;margin-right:2em;text-align:center}.content figure:not(:first-child){margin-top:2em}.content figure:not(:last-child){margin-bottom:2em}.content figure img{display:inline-block}.content figure figcaption{font-style:italic}.content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:1.25em 1.5em;white-space:pre;word-wrap:normal}.content sup,.content sub{font-size:75%}.content table{width:100%}.content table td,.content table th{border:1px solid hsl(0deg,0%,86%);border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.content table th{color:#363636}.content table th:not([align]){text-align:inherit}.content table thead td,.content table thead th{border-width:0 0 2px;color:#363636}.content table tfoot td,.content table tfoot th{border-width:2px 0 0;color:#363636}.content table tbody tr:last-child td,.content table tbody tr:last-child th{border-bottom-width:0}.content .tabs li+li{margin-top:0}.content.is-small{font-size:.75rem}.content.is-normal{font-size:1rem}.content.is-medium{font-size:1.25rem}.content.is-large{font-size:1.5rem}.icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}.icon.is-small{height:1rem;width:1rem}.icon.is-medium{height:2rem;width:2rem}.icon.is-large{height:3rem;width:3rem}.icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}.icon-text .icon{flex-grow:0;flex-shrink:0}.icon-text .icon:not(:last-child){margin-right:.25em}.icon-text .icon:not(:first-child){margin-left:.25em}div.icon-text{display:flex}.image{display:block;position:relative}.image img{display:block;height:auto;width:100%}.image img.is-rounded{border-radius:9999px}.image.is-fullwidth{width:100%}.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio{height:100%;width:100%}.image.is-square,.image.is-1by1{padding-top:100%}.image.is-5by4{padding-top:80%}.image.is-4by3{padding-top:75%}.image.is-3by2{padding-top:66.6666%}.image.is-5by3{padding-top:60%}.image.is-16by9{padding-top:56.25%}.image.is-2by1{padding-top:50%}.image.is-3by1{padding-top:33.3333%}.image.is-4by5{padding-top:125%}.image.is-3by4{padding-top:133.3333%}.image.is-2by3{padding-top:150%}.image.is-3by5{padding-top:166.6666%}.image.is-9by16{padding-top:177.7777%}.image.is-1by2{padding-top:200%}.image.is-1by3{padding-top:300%}.image.is-16x16{height:16px;width:16px}.image.is-24x24{height:24px;width:24px}.image.is-32x32{height:32px;width:32px}.image.is-48x48{height:48px;width:48px}.image.is-64x64{height:64px;width:64px}.image.is-96x96{height:96px;width:96px}.image.is-128x128{height:128px;width:128px}.notification{background-color:#f5f5f5;border-radius:4px;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}.notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}.notification strong{color:currentColor}.notification code,.notification pre{background:hsl(0deg,0%,100%)}.notification pre code{background:transparent}.notification>.delete{right:.5rem;position:absolute;top:.5rem}.notification .title,.notification .subtitle,.notification .content{color:currentColor}.notification.is-white{background-color:#fff;color:#0a0a0a}.notification.is-black{background-color:#0a0a0a;color:#fff}.notification.is-light{background-color:#f5f5f5;color:#000000b3}.notification.is-dark{background-color:#363636;color:#fff}.notification.is-primary{background-color:#00d1b2;color:#fff}.notification.is-primary.is-light{background-color:#ebfffc;color:#00947e}.notification.is-link{background-color:#485fc7;color:#fff}.notification.is-link.is-light{background-color:#eff1fa;color:#3850b7}.notification.is-info{background-color:#3e8ed0;color:#fff}.notification.is-info.is-light{background-color:#eff5fb;color:#296fa8}.notification.is-success{background-color:#48c78e;color:#fff}.notification.is-success.is-light{background-color:#effaf5;color:#257953}.notification.is-warning{background-color:#ffe08a;color:#000000b3}.notification.is-warning.is-light{background-color:#fffaeb;color:#946c00}.notification.is-danger{background-color:#f14668;color:#fff}.notification.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}.progress::-webkit-progress-bar{background-color:#ededed}.progress::-webkit-progress-value{background-color:#4a4a4a}.progress::-moz-progress-bar{background-color:#4a4a4a}.progress::-ms-fill{background-color:#4a4a4a;border:none}.progress.is-white::-webkit-progress-value{background-color:#fff}.progress.is-white::-moz-progress-bar{background-color:#fff}.progress.is-white::-ms-fill{background-color:#fff}.progress.is-white:indeterminate{background-image:linear-gradient(to right,hsl(0deg,0%,100%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-black::-webkit-progress-value{background-color:#0a0a0a}.progress.is-black::-moz-progress-bar{background-color:#0a0a0a}.progress.is-black::-ms-fill{background-color:#0a0a0a}.progress.is-black:indeterminate{background-image:linear-gradient(to right,hsl(0deg,0%,4%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-light::-webkit-progress-value{background-color:#f5f5f5}.progress.is-light::-moz-progress-bar{background-color:#f5f5f5}.progress.is-light::-ms-fill{background-color:#f5f5f5}.progress.is-light:indeterminate{background-image:linear-gradient(to right,hsl(0deg,0%,96%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-dark::-webkit-progress-value{background-color:#363636}.progress.is-dark::-moz-progress-bar{background-color:#363636}.progress.is-dark::-ms-fill{background-color:#363636}.progress.is-dark:indeterminate{background-image:linear-gradient(to right,hsl(0deg,0%,21%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-primary::-webkit-progress-value{background-color:#00d1b2}.progress.is-primary::-moz-progress-bar{background-color:#00d1b2}.progress.is-primary::-ms-fill{background-color:#00d1b2}.progress.is-primary:indeterminate{background-image:linear-gradient(to right,hsl(171deg,100%,41%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-link::-webkit-progress-value{background-color:#485fc7}.progress.is-link::-moz-progress-bar{background-color:#485fc7}.progress.is-link::-ms-fill{background-color:#485fc7}.progress.is-link:indeterminate{background-image:linear-gradient(to right,hsl(229deg,53%,53%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-info::-webkit-progress-value{background-color:#3e8ed0}.progress.is-info::-moz-progress-bar{background-color:#3e8ed0}.progress.is-info::-ms-fill{background-color:#3e8ed0}.progress.is-info:indeterminate{background-image:linear-gradient(to right,hsl(207deg,61%,53%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-success::-webkit-progress-value{background-color:#48c78e}.progress.is-success::-moz-progress-bar{background-color:#48c78e}.progress.is-success::-ms-fill{background-color:#48c78e}.progress.is-success:indeterminate{background-image:linear-gradient(to right,hsl(153deg,53%,53%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-warning::-webkit-progress-value{background-color:#ffe08a}.progress.is-warning::-moz-progress-bar{background-color:#ffe08a}.progress.is-warning::-ms-fill{background-color:#ffe08a}.progress.is-warning:indeterminate{background-image:linear-gradient(to right,hsl(44deg,100%,77%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-danger::-webkit-progress-value{background-color:#f14668}.progress.is-danger::-moz-progress-bar{background-color:#f14668}.progress.is-danger::-ms-fill{background-color:#f14668}.progress.is-danger:indeterminate{background-image:linear-gradient(to right,hsl(348deg,86%,61%) 30%,hsl(0deg,0%,93%) 30%)}.progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#ededed;background-image:linear-gradient(to right,hsl(0deg,0%,29%) 30%,hsl(0deg,0%,93%) 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}.progress:indeterminate::-webkit-progress-bar{background-color:transparent}.progress:indeterminate::-moz-progress-bar{background-color:transparent}.progress:indeterminate::-ms-fill{animation-name:none}.progress.is-small{height:.75rem}.progress.is-medium{height:1.25rem}.progress.is-large{height:1.5rem}@keyframes moveIndeterminate{0%{background-position:200% 0}to{background-position:-200% 0}}.table{background-color:#fff;color:#363636}.table td,.table th{border:1px solid hsl(0deg,0%,86%);border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.table td.is-white,.table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}.table td.is-black,.table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.table td.is-light,.table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:#000000b3}.table td.is-dark,.table th.is-dark{background-color:#363636;border-color:#363636;color:#fff}.table td.is-primary,.table th.is-primary{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.table td.is-link,.table th.is-link{background-color:#485fc7;border-color:#485fc7;color:#fff}.table td.is-info,.table th.is-info{background-color:#3e8ed0;border-color:#3e8ed0;color:#fff}.table td.is-success,.table th.is-success{background-color:#48c78e;border-color:#48c78e;color:#fff}.table td.is-warning,.table th.is-warning{background-color:#ffe08a;border-color:#ffe08a;color:#000000b3}.table td.is-danger,.table th.is-danger{background-color:#f14668;border-color:#f14668;color:#fff}.table td.is-narrow,.table th.is-narrow{white-space:nowrap;width:1%}.table td.is-selected,.table th.is-selected{background-color:#00d1b2;color:#fff}.table td.is-selected a,.table td.is-selected strong,.table th.is-selected a,.table th.is-selected strong{color:currentColor}.table td.is-vcentered,.table th.is-vcentered{vertical-align:middle}.table th{color:#363636}.table th:not([align]){text-align:left}.table tr.is-selected{background-color:#00d1b2;color:#fff}.table tr.is-selected a,.table tr.is-selected strong{color:currentColor}.table tr.is-selected td,.table tr.is-selected th{border-color:#fff;color:currentColor}.table thead{background-color:transparent}.table thead td,.table thead th{border-width:0 0 2px;color:#363636}.table tfoot{background-color:transparent}.table tfoot td,.table tfoot th{border-width:2px 0 0;color:#363636}.table tbody{background-color:transparent}.table tbody tr:last-child td,.table tbody tr:last-child th{border-bottom-width:0}.table.is-bordered td,.table.is-bordered th{border-width:1px}.table.is-bordered tr:last-child td,.table.is-bordered tr:last-child th{border-bottom-width:1px}.table.is-fullwidth{width:100%}.table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#f5f5f5}.table.is-narrow td,.table.is-narrow th{padding:.25em .5em}.table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#fafafa}.table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}.tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.tags .tag{margin-bottom:.5rem}.tags .tag:not(:last-child){margin-right:.5rem}.tags:last-child{margin-bottom:-.5rem}.tags:not(:last-child){margin-bottom:1rem}.tags.are-medium .tag:not(.is-normal):not(.is-large){font-size:1rem}.tags.are-large .tag:not(.is-normal):not(.is-medium){font-size:1.25rem}.tags.is-centered{justify-content:center}.tags.is-centered .tag{margin-right:.25rem;margin-left:.25rem}.tags.is-right{justify-content:flex-end}.tags.is-right .tag:not(:first-child){margin-left:.5rem}.tags.is-right .tag:not(:last-child){margin-right:0}.tags.has-addons .tag{margin-right:0}.tags.has-addons .tag:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.tags.has-addons .tag:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.tag:not(body){align-items:center;background-color:#f5f5f5;border-radius:4px;color:#4a4a4a;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:.75em;padding-right:.75em;white-space:nowrap}.tag:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}.tag:not(body).is-white{background-color:#fff;color:#0a0a0a}.tag:not(body).is-black{background-color:#0a0a0a;color:#fff}.tag:not(body).is-light{background-color:#f5f5f5;color:#000000b3}.tag:not(body).is-dark{background-color:#363636;color:#fff}.tag:not(body).is-primary{background-color:#00d1b2;color:#fff}.tag:not(body).is-primary.is-light{background-color:#ebfffc;color:#00947e}.tag:not(body).is-link{background-color:#485fc7;color:#fff}.tag:not(body).is-link.is-light{background-color:#eff1fa;color:#3850b7}.tag:not(body).is-info{background-color:#3e8ed0;color:#fff}.tag:not(body).is-info.is-light{background-color:#eff5fb;color:#296fa8}.tag:not(body).is-success{background-color:#48c78e;color:#fff}.tag:not(body).is-success.is-light{background-color:#effaf5;color:#257953}.tag:not(body).is-warning{background-color:#ffe08a;color:#000000b3}.tag:not(body).is-warning.is-light{background-color:#fffaeb;color:#946c00}.tag:not(body).is-danger{background-color:#f14668;color:#fff}.tag:not(body).is-danger.is-light{background-color:#feecf0;color:#cc0f35}.tag:not(body).is-normal{font-size:.75rem}.tag:not(body).is-medium{font-size:1rem}.tag:not(body).is-large{font-size:1.25rem}.tag:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}.tag:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}.tag:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}.tag:not(body).is-delete{margin-left:1px;padding:0;position:relative;width:2em}.tag:not(body).is-delete:before,.tag:not(body).is-delete:after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translate(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.tag:not(body).is-delete:before{height:1px;width:50%}.tag:not(body).is-delete:after{height:50%;width:1px}.tag:not(body).is-delete:hover,.tag:not(body).is-delete:focus{background-color:#e8e8e8}.tag:not(body).is-delete:active{background-color:#dbdbdb}.tag:not(body).is-rounded{border-radius:9999px}a.tag:hover{text-decoration:underline}.title,.subtitle{word-break:break-word}.title em,.title span,.subtitle em,.subtitle span{font-weight:inherit}.title sub,.subtitle sub,.title sup,.subtitle sup{font-size:.75em}.title .tag,.subtitle .tag{vertical-align:middle}.title{color:#363636;font-size:2rem;font-weight:600;line-height:1.125}.title strong{color:inherit;font-weight:inherit}.title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}.title.is-1{font-size:3rem}.title.is-2{font-size:2.5rem}.title.is-3{font-size:2rem}.title.is-4{font-size:1.5rem}.title.is-5{font-size:1.25rem}.title.is-6{font-size:1rem}.title.is-7{font-size:.75rem}.subtitle{color:#4a4a4a;font-size:1.25rem;font-weight:400;line-height:1.25}.subtitle strong{color:#363636;font-weight:600}.subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}.subtitle.is-1{font-size:3rem}.subtitle.is-2{font-size:2.5rem}.subtitle.is-3{font-size:2rem}.subtitle.is-4{font-size:1.5rem}.subtitle.is-5{font-size:1.25rem}.subtitle.is-6{font-size:1rem}.subtitle.is-7{font-size:.75rem}.heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}.number{align-items:center;background-color:#f5f5f5;border-radius:9999px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:.25rem .5rem;text-align:center;vertical-align:top}.select select,.textarea,.input{background-color:#fff;border-color:#dbdbdb;border-radius:4px;color:#363636}.select select::-moz-placeholder,.textarea::-moz-placeholder,.input::-moz-placeholder{color:#3636364d}.select select::-webkit-input-placeholder,.textarea::-webkit-input-placeholder,.input::-webkit-input-placeholder{color:#3636364d}.select select:-moz-placeholder,.textarea:-moz-placeholder,.input:-moz-placeholder{color:#3636364d}.select select:-ms-input-placeholder,.textarea:-ms-input-placeholder,.input:-ms-input-placeholder{color:#3636364d}.select select:hover,.textarea:hover,.input:hover,.select select.is-hovered,.is-hovered.textarea,.is-hovered.input{border-color:#b5b5b5}.select select:focus,.textarea:focus,.input:focus,.select select.is-focused,.is-focused.textarea,.is-focused.input,.select select:active,.textarea:active,.input:active,.select select.is-active,.is-active.textarea,.is-active.input{border-color:#485fc7;box-shadow:0 0 0 .125em #485fc740}.select select[disabled],[disabled].textarea,[disabled].input,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none;color:#7a7a7a}.select select[disabled]::-moz-placeholder,[disabled].textarea::-moz-placeholder,[disabled].input::-moz-placeholder,fieldset[disabled] .select select::-moz-placeholder,.select fieldset[disabled] select::-moz-placeholder,fieldset[disabled] .textarea::-moz-placeholder,fieldset[disabled] .input::-moz-placeholder{color:#7a7a7a4d}.select select[disabled]::-webkit-input-placeholder,[disabled].textarea::-webkit-input-placeholder,[disabled].input::-webkit-input-placeholder,fieldset[disabled] .select select::-webkit-input-placeholder,.select fieldset[disabled] select::-webkit-input-placeholder,fieldset[disabled] .textarea::-webkit-input-placeholder,fieldset[disabled] .input::-webkit-input-placeholder{color:#7a7a7a4d}.select select[disabled]:-moz-placeholder,[disabled].textarea:-moz-placeholder,[disabled].input:-moz-placeholder,fieldset[disabled] .select select:-moz-placeholder,.select fieldset[disabled] select:-moz-placeholder,fieldset[disabled] .textarea:-moz-placeholder,fieldset[disabled] .input:-moz-placeholder{color:#7a7a7a4d}.select select[disabled]:-ms-input-placeholder,[disabled].textarea:-ms-input-placeholder,[disabled].input:-ms-input-placeholder,fieldset[disabled] .select select:-ms-input-placeholder,.select fieldset[disabled] select:-ms-input-placeholder,fieldset[disabled] .textarea:-ms-input-placeholder,fieldset[disabled] .input:-ms-input-placeholder{color:#7a7a7a4d}.textarea,.input{box-shadow:inset 0 .0625em .125em #0a0a0a0d;max-width:100%;width:100%}[readonly].textarea,[readonly].input{box-shadow:none}.is-white.textarea,.is-white.input{border-color:#fff}.is-white.textarea:focus,.is-white.input:focus,.is-white.is-focused.textarea,.is-white.is-focused.input,.is-white.textarea:active,.is-white.input:active,.is-white.is-active.textarea,.is-white.is-active.input{box-shadow:0 0 0 .125em #ffffff40}.is-black.textarea,.is-black.input{border-color:#0a0a0a}.is-black.textarea:focus,.is-black.input:focus,.is-black.is-focused.textarea,.is-black.is-focused.input,.is-black.textarea:active,.is-black.input:active,.is-black.is-active.textarea,.is-black.is-active.input{box-shadow:0 0 0 .125em #0a0a0a40}.is-light.textarea,.is-light.input{border-color:#f5f5f5}.is-light.textarea:focus,.is-light.input:focus,.is-light.is-focused.textarea,.is-light.is-focused.input,.is-light.textarea:active,.is-light.input:active,.is-light.is-active.textarea,.is-light.is-active.input{box-shadow:0 0 0 .125em #f5f5f540}.is-dark.textarea,.is-dark.input{border-color:#363636}.is-dark.textarea:focus,.is-dark.input:focus,.is-dark.is-focused.textarea,.is-dark.is-focused.input,.is-dark.textarea:active,.is-dark.input:active,.is-dark.is-active.textarea,.is-dark.is-active.input{box-shadow:0 0 0 .125em #36363640}.is-primary.textarea,.is-primary.input{border-color:#00d1b2}.is-primary.textarea:focus,.is-primary.input:focus,.is-primary.is-focused.textarea,.is-primary.is-focused.input,.is-primary.textarea:active,.is-primary.input:active,.is-primary.is-active.textarea,.is-primary.is-active.input{box-shadow:0 0 0 .125em #00d1b240}.is-link.textarea,.is-link.input{border-color:#485fc7}.is-link.textarea:focus,.is-link.input:focus,.is-link.is-focused.textarea,.is-link.is-focused.input,.is-link.textarea:active,.is-link.input:active,.is-link.is-active.textarea,.is-link.is-active.input{box-shadow:0 0 0 .125em #485fc740}.is-info.textarea,.is-info.input{border-color:#3e8ed0}.is-info.textarea:focus,.is-info.input:focus,.is-info.is-focused.textarea,.is-info.is-focused.input,.is-info.textarea:active,.is-info.input:active,.is-info.is-active.textarea,.is-info.is-active.input{box-shadow:0 0 0 .125em #3e8ed040}.is-success.textarea,.is-success.input{border-color:#48c78e}.is-success.textarea:focus,.is-success.input:focus,.is-success.is-focused.textarea,.is-success.is-focused.input,.is-success.textarea:active,.is-success.input:active,.is-success.is-active.textarea,.is-success.is-active.input{box-shadow:0 0 0 .125em #48c78e40}.is-warning.textarea,.is-warning.input{border-color:#ffe08a}.is-warning.textarea:focus,.is-warning.input:focus,.is-warning.is-focused.textarea,.is-warning.is-focused.input,.is-warning.textarea:active,.is-warning.input:active,.is-warning.is-active.textarea,.is-warning.is-active.input{box-shadow:0 0 0 .125em #ffe08a40}.is-danger.textarea,.is-danger.input{border-color:#f14668}.is-danger.textarea:focus,.is-danger.input:focus,.is-danger.is-focused.textarea,.is-danger.is-focused.input,.is-danger.textarea:active,.is-danger.input:active,.is-danger.is-active.textarea,.is-danger.is-active.input{box-shadow:0 0 0 .125em #f1466840}.is-small.textarea,.is-small.input{border-radius:2px;font-size:.75rem}.is-medium.textarea,.is-medium.input{font-size:1.25rem}.is-large.textarea,.is-large.input{font-size:1.5rem}.is-fullwidth.textarea,.is-fullwidth.input{display:block;width:100%}.is-inline.textarea,.is-inline.input{display:inline;width:auto}.input.is-rounded{border-radius:9999px;padding-left:calc(1.125em - 1px);padding-right:calc(1.125em - 1px)}.input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}.textarea{display:block;max-width:100%;min-width:100%;padding:calc(.75em - 1px);resize:vertical}.textarea:not([rows]){max-height:40em;min-height:8em}.textarea[rows]{height:initial}.textarea.has-fixed-size{resize:none}.radio,.checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}.radio input,.checkbox input{cursor:pointer}.radio:hover,.checkbox:hover{color:#363636}[disabled].radio,[disabled].checkbox,fieldset[disabled] .radio,fieldset[disabled] .checkbox,.radio input[disabled],.checkbox input[disabled]{color:#7a7a7a;cursor:not-allowed}.radio+.radio{margin-left:.5em}.select{display:inline-block;max-width:100%;position:relative;vertical-align:top}.select:not(.is-multiple){height:2.5em}.select:not(.is-multiple):not(.is-loading):after{border-color:#485fc7;right:1.125em;z-index:4}.select.is-rounded select{border-radius:9999px;padding-left:1em}.select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}.select select::-ms-expand{display:none}.select select[disabled]:hover,fieldset[disabled] .select select:hover{border-color:#f5f5f5}.select select:not([multiple]){padding-right:2.5em}.select select[multiple]{height:auto;padding:0}.select select[multiple] option{padding:.5em 1em}.select:not(.is-multiple):not(.is-loading):hover:after{border-color:#363636}.select.is-white:not(:hover):after{border-color:#fff}.select.is-white select{border-color:#fff}.select.is-white select:hover,.select.is-white select.is-hovered{border-color:#f2f2f2}.select.is-white select:focus,.select.is-white select.is-focused,.select.is-white select:active,.select.is-white select.is-active{box-shadow:0 0 0 .125em #ffffff40}.select.is-black:not(:hover):after{border-color:#0a0a0a}.select.is-black select{border-color:#0a0a0a}.select.is-black select:hover,.select.is-black select.is-hovered{border-color:#000}.select.is-black select:focus,.select.is-black select.is-focused,.select.is-black select:active,.select.is-black select.is-active{box-shadow:0 0 0 .125em #0a0a0a40}.select.is-light:not(:hover):after{border-color:#f5f5f5}.select.is-light select{border-color:#f5f5f5}.select.is-light select:hover,.select.is-light select.is-hovered{border-color:#e8e8e8}.select.is-light select:focus,.select.is-light select.is-focused,.select.is-light select:active,.select.is-light select.is-active{box-shadow:0 0 0 .125em #f5f5f540}.select.is-dark:not(:hover):after{border-color:#363636}.select.is-dark select{border-color:#363636}.select.is-dark select:hover,.select.is-dark select.is-hovered{border-color:#292929}.select.is-dark select:focus,.select.is-dark select.is-focused,.select.is-dark select:active,.select.is-dark select.is-active{box-shadow:0 0 0 .125em #36363640}.select.is-primary:not(:hover):after{border-color:#00d1b2}.select.is-primary select{border-color:#00d1b2}.select.is-primary select:hover,.select.is-primary select.is-hovered{border-color:#00b89c}.select.is-primary select:focus,.select.is-primary select.is-focused,.select.is-primary select:active,.select.is-primary select.is-active{box-shadow:0 0 0 .125em #00d1b240}.select.is-link:not(:hover):after{border-color:#485fc7}.select.is-link select{border-color:#485fc7}.select.is-link select:hover,.select.is-link select.is-hovered{border-color:#3a51bb}.select.is-link select:focus,.select.is-link select.is-focused,.select.is-link select:active,.select.is-link select.is-active{box-shadow:0 0 0 .125em #485fc740}.select.is-info:not(:hover):after{border-color:#3e8ed0}.select.is-info select{border-color:#3e8ed0}.select.is-info select:hover,.select.is-info select.is-hovered{border-color:#3082c5}.select.is-info select:focus,.select.is-info select.is-focused,.select.is-info select:active,.select.is-info select.is-active{box-shadow:0 0 0 .125em #3e8ed040}.select.is-success:not(:hover):after{border-color:#48c78e}.select.is-success select{border-color:#48c78e}.select.is-success select:hover,.select.is-success select.is-hovered{border-color:#3abb81}.select.is-success select:focus,.select.is-success select.is-focused,.select.is-success select:active,.select.is-success select.is-active{box-shadow:0 0 0 .125em #48c78e40}.select.is-warning:not(:hover):after{border-color:#ffe08a}.select.is-warning select{border-color:#ffe08a}.select.is-warning select:hover,.select.is-warning select.is-hovered{border-color:#ffd970}.select.is-warning select:focus,.select.is-warning select.is-focused,.select.is-warning select:active,.select.is-warning select.is-active{box-shadow:0 0 0 .125em #ffe08a40}.select.is-danger:not(:hover):after{border-color:#f14668}.select.is-danger select{border-color:#f14668}.select.is-danger select:hover,.select.is-danger select.is-hovered{border-color:#ef2e55}.select.is-danger select:focus,.select.is-danger select.is-focused,.select.is-danger select:active,.select.is-danger select.is-active{box-shadow:0 0 0 .125em #f1466840}.select.is-small{border-radius:2px;font-size:.75rem}.select.is-medium{font-size:1.25rem}.select.is-large{font-size:1.5rem}.select.is-disabled:after{border-color:#7a7a7a!important;opacity:.5}.select.is-fullwidth,.select.is-fullwidth select{width:100%}.select.is-loading:after{margin-top:0;position:absolute;right:.625em;top:.625em;transform:none}.select.is-loading.is-small:after{font-size:.75rem}.select.is-loading.is-medium:after{font-size:1.25rem}.select.is-loading.is-large:after{font-size:1.5rem}.file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}.file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}.file.is-white:hover .file-cta,.file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.file.is-white:focus .file-cta,.file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #ffffff40;color:#0a0a0a}.file.is-white:active .file-cta,.file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}.file.is-black:hover .file-cta,.file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}.file.is-black:focus .file-cta,.file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #0a0a0a40;color:#fff}.file.is-black:active .file-cta,.file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}.file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:#000000b3}.file.is-light:hover .file-cta,.file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:#000000b3}.file.is-light:focus .file-cta,.file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #f5f5f540;color:#000000b3}.file.is-light:active .file-cta,.file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:#000000b3}.file.is-dark .file-cta{background-color:#363636;border-color:transparent;color:#fff}.file.is-dark:hover .file-cta,.file.is-dark.is-hovered .file-cta{background-color:#2f2f2f;border-color:transparent;color:#fff}.file.is-dark:focus .file-cta,.file.is-dark.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #36363640;color:#fff}.file.is-dark:active .file-cta,.file.is-dark.is-active .file-cta{background-color:#292929;border-color:transparent;color:#fff}.file.is-primary .file-cta{background-color:#00d1b2;border-color:transparent;color:#fff}.file.is-primary:hover .file-cta,.file.is-primary.is-hovered .file-cta{background-color:#00c4a7;border-color:transparent;color:#fff}.file.is-primary:focus .file-cta,.file.is-primary.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #00d1b240;color:#fff}.file.is-primary:active .file-cta,.file.is-primary.is-active .file-cta{background-color:#00b89c;border-color:transparent;color:#fff}.file.is-link .file-cta{background-color:#485fc7;border-color:transparent;color:#fff}.file.is-link:hover .file-cta,.file.is-link.is-hovered .file-cta{background-color:#3e56c4;border-color:transparent;color:#fff}.file.is-link:focus .file-cta,.file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #485fc740;color:#fff}.file.is-link:active .file-cta,.file.is-link.is-active .file-cta{background-color:#3a51bb;border-color:transparent;color:#fff}.file.is-info .file-cta{background-color:#3e8ed0;border-color:transparent;color:#fff}.file.is-info:hover .file-cta,.file.is-info.is-hovered .file-cta{background-color:#3488ce;border-color:transparent;color:#fff}.file.is-info:focus .file-cta,.file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #3e8ed040;color:#fff}.file.is-info:active .file-cta,.file.is-info.is-active .file-cta{background-color:#3082c5;border-color:transparent;color:#fff}.file.is-success .file-cta{background-color:#48c78e;border-color:transparent;color:#fff}.file.is-success:hover .file-cta,.file.is-success.is-hovered .file-cta{background-color:#3ec487;border-color:transparent;color:#fff}.file.is-success:focus .file-cta,.file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #48c78e40;color:#fff}.file.is-success:active .file-cta,.file.is-success.is-active .file-cta{background-color:#3abb81;border-color:transparent;color:#fff}.file.is-warning .file-cta{background-color:#ffe08a;border-color:transparent;color:#000000b3}.file.is-warning:hover .file-cta,.file.is-warning.is-hovered .file-cta{background-color:#ffdc7d;border-color:transparent;color:#000000b3}.file.is-warning:focus .file-cta,.file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #ffe08a40;color:#000000b3}.file.is-warning:active .file-cta,.file.is-warning.is-active .file-cta{background-color:#ffd970;border-color:transparent;color:#000000b3}.file.is-danger .file-cta{background-color:#f14668;border-color:transparent;color:#fff}.file.is-danger:hover .file-cta,.file.is-danger.is-hovered .file-cta{background-color:#f03a5f;border-color:transparent;color:#fff}.file.is-danger:focus .file-cta,.file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #f1466840;color:#fff}.file.is-danger:active .file-cta,.file.is-danger.is-active .file-cta{background-color:#ef2e55;border-color:transparent;color:#fff}.file.is-small{font-size:.75rem}.file.is-normal{font-size:1rem}.file.is-medium{font-size:1.25rem}.file.is-medium .file-icon .fa{font-size:21px}.file.is-large{font-size:1.5rem}.file.is-large .file-icon .fa{font-size:28px}.file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}.file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}.file.has-name.is-empty .file-cta{border-radius:4px}.file.has-name.is-empty .file-name{display:none}.file.is-boxed .file-label{flex-direction:column}.file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}.file.is-boxed .file-name{border-width:0 1px 1px}.file.is-boxed .file-icon{height:1.5em;width:1.5em}.file.is-boxed .file-icon .fa{font-size:21px}.file.is-boxed.is-small .file-icon .fa{font-size:14px}.file.is-boxed.is-medium .file-icon .fa{font-size:28px}.file.is-boxed.is-large .file-icon .fa{font-size:35px}.file.is-boxed.has-name .file-cta{border-radius:4px 4px 0 0}.file.is-boxed.has-name .file-name{border-radius:0 0 4px 4px;border-width:0 1px 1px}.file.is-centered{justify-content:center}.file.is-fullwidth .file-label{width:100%}.file.is-fullwidth .file-name{flex-grow:1;max-width:none}.file.is-right{justify-content:flex-end}.file.is-right .file-cta{border-radius:0 4px 4px 0}.file.is-right .file-name{border-radius:4px 0 0 4px;border-width:1px 0 1px 1px;order:-1}.file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}.file-label:hover .file-cta{background-color:#eee;color:#363636}.file-label:hover .file-name{border-color:#d5d5d5}.file-label:active .file-cta{background-color:#e8e8e8;color:#363636}.file-label:active .file-name{border-color:#cfcfcf}.file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}.file-cta,.file-name{border-color:#dbdbdb;border-radius:4px;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}.file-cta{background-color:#f5f5f5;color:#4a4a4a}.file-name{border-color:#dbdbdb;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}.file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}.file-icon .fa{font-size:14px}.label{color:#363636;display:block;font-size:1rem;font-weight:700}.label:not(:last-child){margin-bottom:.5em}.label.is-small{font-size:.75rem}.label.is-medium{font-size:1.25rem}.label.is-large{font-size:1.5rem}.help{display:block;font-size:.75rem;margin-top:.25rem}.help.is-white{color:#fff}.help.is-black{color:#0a0a0a}.help.is-light{color:#f5f5f5}.help.is-dark{color:#363636}.help.is-primary{color:#00d1b2}.help.is-link{color:#485fc7}.help.is-info{color:#3e8ed0}.help.is-success{color:#48c78e}.help.is-warning{color:#ffe08a}.help.is-danger{color:#f14668}.field:not(:last-child){margin-bottom:.75rem}.field.has-addons{display:flex;justify-content:flex-start}.field.has-addons .control:not(:last-child){margin-right:-1px}.field.has-addons .control:not(:first-child):not(:last-child) .button,.field.has-addons .control:not(:first-child):not(:last-child) .input,.field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}.field.has-addons .control:first-child:not(:only-child) .button,.field.has-addons .control:first-child:not(:only-child) .input,.field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}.field.has-addons .control:last-child:not(:only-child) .button,.field.has-addons .control:last-child:not(:only-child) .input,.field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}.field.has-addons .control .button:not([disabled]):hover,.field.has-addons .control .button:not([disabled]).is-hovered,.field.has-addons .control .input:not([disabled]):hover,.field.has-addons .control .input:not([disabled]).is-hovered,.field.has-addons .control .select select:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]).is-hovered{z-index:2}.field.has-addons .control .button:not([disabled]):focus,.field.has-addons .control .button:not([disabled]).is-focused,.field.has-addons .control .button:not([disabled]):active,.field.has-addons .control .button:not([disabled]).is-active,.field.has-addons .control .input:not([disabled]):focus,.field.has-addons .control .input:not([disabled]).is-focused,.field.has-addons .control .input:not([disabled]):active,.field.has-addons .control .input:not([disabled]).is-active,.field.has-addons .control .select select:not([disabled]):focus,.field.has-addons .control .select select:not([disabled]).is-focused,.field.has-addons .control .select select:not([disabled]):active,.field.has-addons .control .select select:not([disabled]).is-active{z-index:3}.field.has-addons .control .button:not([disabled]):focus:hover,.field.has-addons .control .button:not([disabled]).is-focused:hover,.field.has-addons .control .button:not([disabled]):active:hover,.field.has-addons .control .button:not([disabled]).is-active:hover,.field.has-addons .control .input:not([disabled]):focus:hover,.field.has-addons .control .input:not([disabled]).is-focused:hover,.field.has-addons .control .input:not([disabled]):active:hover,.field.has-addons .control .input:not([disabled]).is-active:hover,.field.has-addons .control .select select:not([disabled]):focus:hover,.field.has-addons .control .select select:not([disabled]).is-focused:hover,.field.has-addons .control .select select:not([disabled]):active:hover,.field.has-addons .control .select select:not([disabled]).is-active:hover{z-index:4}.field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}.field.has-addons.has-addons-centered{justify-content:center}.field.has-addons.has-addons-right{justify-content:flex-end}.field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}.field.is-grouped{display:flex;justify-content:flex-start}.field.is-grouped>.control{flex-shrink:0}.field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}.field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}.field.is-grouped.is-grouped-centered{justify-content:center}.field.is-grouped.is-grouped-right{justify-content:flex-end}.field.is-grouped.is-grouped-multiline{flex-wrap:wrap}.field.is-grouped.is-grouped-multiline>.control:last-child,.field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:.75rem}.field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-.75rem}.field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{.field.is-horizontal{display:flex}}.field-label .label{font-size:inherit}@media screen and (max-width: 768px){.field-label{margin-bottom:.5rem}}@media screen and (min-width: 769px),print{.field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}.field-label.is-small{font-size:.75rem;padding-top:.375em}.field-label.is-normal{padding-top:.375em}.field-label.is-medium{font-size:1.25rem;padding-top:.375em}.field-label.is-large{font-size:1.5rem;padding-top:.375em}}.field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{.field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}.field-body .field{margin-bottom:0}.field-body>.field{flex-shrink:1}.field-body>.field:not(.is-narrow){flex-grow:1}.field-body>.field:not(:last-child){margin-right:.75rem}}.control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}.control.has-icons-left .input:focus~.icon,.control.has-icons-left .select:focus~.icon,.control.has-icons-right .input:focus~.icon,.control.has-icons-right .select:focus~.icon{color:#4a4a4a}.control.has-icons-left .input.is-small~.icon,.control.has-icons-left .select.is-small~.icon,.control.has-icons-right .input.is-small~.icon,.control.has-icons-right .select.is-small~.icon{font-size:.75rem}.control.has-icons-left .input.is-medium~.icon,.control.has-icons-left .select.is-medium~.icon,.control.has-icons-right .input.is-medium~.icon,.control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}.control.has-icons-left .input.is-large~.icon,.control.has-icons-left .select.is-large~.icon,.control.has-icons-right .input.is-large~.icon,.control.has-icons-right .select.is-large~.icon{font-size:1.5rem}.control.has-icons-left .icon,.control.has-icons-right .icon{color:#dbdbdb;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}.control.has-icons-left .input,.control.has-icons-left .select select{padding-left:2.5em}.control.has-icons-left .icon.is-left{left:0}.control.has-icons-right .input,.control.has-icons-right .select select{padding-right:2.5em}.control.has-icons-right .icon.is-right{right:0}.control.is-loading:after{position:absolute!important;right:.625em;top:.625em;z-index:4}.control.is-loading.is-small:after{font-size:.75rem}.control.is-loading.is-medium:after{font-size:1.25rem}.control.is-loading.is-large:after{font-size:1.5rem}.breadcrumb{font-size:1rem;white-space:nowrap}.breadcrumb a{align-items:center;color:#485fc7;display:flex;justify-content:center;padding:0 .75em}.breadcrumb a:hover{color:#363636}.breadcrumb li{align-items:center;display:flex}.breadcrumb li:first-child a{padding-left:0}.breadcrumb li.is-active a{color:#363636;cursor:default;pointer-events:none}.breadcrumb li+li:before{color:#b5b5b5;content:"/"}.breadcrumb ul,.breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}.breadcrumb .icon:first-child{margin-right:.5em}.breadcrumb .icon:last-child{margin-left:.5em}.breadcrumb.is-centered ol,.breadcrumb.is-centered ul{justify-content:center}.breadcrumb.is-right ol,.breadcrumb.is-right ul{justify-content:flex-end}.breadcrumb.is-small{font-size:.75rem}.breadcrumb.is-medium{font-size:1.25rem}.breadcrumb.is-large{font-size:1.5rem}.breadcrumb.has-arrow-separator li+li:before{content:"\2192"}.breadcrumb.has-bullet-separator li+li:before{content:"\2022"}.breadcrumb.has-dot-separator li+li:before{content:"\b7"}.breadcrumb.has-succeeds-separator li+li:before{content:"\227b"}.card{background-color:#fff;border-radius:.25rem;box-shadow:0 .5em 1em -.125em #0a0a0a1a,0 0 0 1px #0a0a0a05;color:#4a4a4a;max-width:100%;position:relative}.card-footer:first-child,.card-content:first-child,.card-header:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-footer:last-child,.card-content:last-child,.card-header:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card-header{background-color:transparent;align-items:stretch;box-shadow:0 .125em .25em #0a0a0a1a;display:flex}.card-header-title{align-items:center;color:#363636;display:flex;flex-grow:1;font-weight:700;padding:.75rem 1rem}.card-header-title.is-centered{justify-content:center}.card-header-icon{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0;align-items:center;cursor:pointer;display:flex;justify-content:center;padding:.75rem 1rem}.card-image{display:block;position:relative}.card-image:first-child img{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-image:last-child img{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card-content{background-color:transparent;padding:1.5rem}.card-footer{background-color:transparent;border-top:1px solid hsl(0deg,0%,93%);align-items:stretch;display:flex}.card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}.card-footer-item:not(:last-child){border-right:1px solid hsl(0deg,0%,93%)}.card .media:not(:last-child){margin-bottom:1.5rem}.dropdown{display:inline-flex;position:relative;vertical-align:top}.dropdown.is-active .dropdown-menu,.dropdown.is-hoverable:hover .dropdown-menu{display:block}.dropdown.is-right .dropdown-menu{left:auto;right:0}.dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}.dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}.dropdown-content{background-color:#fff;border-radius:4px;box-shadow:0 .5em 1em -.125em #0a0a0a1a,0 0 0 1px #0a0a0a05;padding-bottom:.5rem;padding-top:.5rem}.dropdown-item{color:#4a4a4a;display:block;font-size:.875rem;line-height:1.5;padding:.375rem 1rem;position:relative}a.dropdown-item,button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}a.dropdown-item:hover,button.dropdown-item:hover{background-color:#f5f5f5;color:#0a0a0a}a.dropdown-item.is-active,button.dropdown-item.is-active{background-color:#485fc7;color:#fff}.dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:.5rem 0}.level{align-items:center;justify-content:space-between}.level code{border-radius:4px}.level img{display:inline-block;vertical-align:top}.level.is-mobile,.level.is-mobile .level-left,.level.is-mobile .level-right{display:flex}.level.is-mobile .level-left+.level-right{margin-top:0}.level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}.level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{.level{display:flex}.level>.level-item:not(.is-narrow){flex-grow:1}}.level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}.level-item .title,.level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){.level-item:not(:last-child){margin-bottom:.75rem}}.level-left,.level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.level-left .level-item.is-flexible,.level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{.level-left .level-item:not(:last-child),.level-right .level-item:not(:last-child){margin-right:.75rem}}.level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){.level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{.level-left{display:flex}}.level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{.level-right{display:flex}}.media{align-items:flex-start;display:flex;text-align:inherit}.media .content:not(:last-child){margin-bottom:.75rem}.media .media{border-top:1px solid rgba(219,219,219,.5);display:flex;padding-top:.75rem}.media .media .content:not(:last-child),.media .media .control:not(:last-child){margin-bottom:.5rem}.media .media .media{padding-top:.5rem}.media .media .media+.media{margin-top:.5rem}.media+.media{border-top:1px solid rgba(219,219,219,.5);margin-top:1rem;padding-top:1rem}.media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}.media-left,.media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.media-left{margin-right:1rem}.media-right{margin-left:1rem}.media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 768px){.media-content{overflow-x:auto}}.menu{font-size:1rem}.menu.is-small{font-size:.75rem}.menu.is-medium{font-size:1.25rem}.menu.is-large{font-size:1.5rem}.menu-list{line-height:1.25}.menu-list a{border-radius:2px;color:#4a4a4a;display:block;padding:.5em .75em}.menu-list a:hover{background-color:#f5f5f5;color:#363636}.menu-list a.is-active{background-color:#485fc7;color:#fff}.menu-list li ul{border-left:1px solid hsl(0deg,0%,86%);margin:.75em;padding-left:.75em}.menu-label{color:#7a7a7a;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}.menu-label:not(:first-child){margin-top:1em}.menu-label:not(:last-child){margin-bottom:1em}.message{background-color:#f5f5f5;border-radius:4px;font-size:1rem}.message strong{color:currentColor}.message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}.message.is-small{font-size:.75rem}.message.is-medium{font-size:1.25rem}.message.is-large{font-size:1.5rem}.message.is-white{background-color:#fff}.message.is-white .message-header{background-color:#fff;color:#0a0a0a}.message.is-white .message-body{border-color:#fff}.message.is-black{background-color:#fafafa}.message.is-black .message-header{background-color:#0a0a0a;color:#fff}.message.is-black .message-body{border-color:#0a0a0a}.message.is-light{background-color:#fafafa}.message.is-light .message-header{background-color:#f5f5f5;color:#000000b3}.message.is-light .message-body{border-color:#f5f5f5}.message.is-dark{background-color:#fafafa}.message.is-dark .message-header{background-color:#363636;color:#fff}.message.is-dark .message-body{border-color:#363636}.message.is-primary{background-color:#ebfffc}.message.is-primary .message-header{background-color:#00d1b2;color:#fff}.message.is-primary .message-body{border-color:#00d1b2;color:#00947e}.message.is-link{background-color:#eff1fa}.message.is-link .message-header{background-color:#485fc7;color:#fff}.message.is-link .message-body{border-color:#485fc7;color:#3850b7}.message.is-info{background-color:#eff5fb}.message.is-info .message-header{background-color:#3e8ed0;color:#fff}.message.is-info .message-body{border-color:#3e8ed0;color:#296fa8}.message.is-success{background-color:#effaf5}.message.is-success .message-header{background-color:#48c78e;color:#fff}.message.is-success .message-body{border-color:#48c78e;color:#257953}.message.is-warning{background-color:#fffaeb}.message.is-warning .message-header{background-color:#ffe08a;color:#000000b3}.message.is-warning .message-body{border-color:#ffe08a;color:#946c00}.message.is-danger{background-color:#feecf0}.message.is-danger .message-header{background-color:#f14668;color:#fff}.message.is-danger .message-body{border-color:#f14668;color:#cc0f35}.message-header{align-items:center;background-color:#4a4a4a;border-radius:4px 4px 0 0;color:#fff;display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:.75em 1em;position:relative}.message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}.message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}.message-body{border-color:#dbdbdb;border-radius:4px;border-style:solid;border-width:0 0 0 4px;color:#4a4a4a;padding:1.25em 1.5em}.message-body code,.message-body pre{background-color:#fff}.message-body pre code{background-color:transparent}.modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}.modal.is-active{display:flex}.modal-background{background-color:#0a0a0adb}.modal-content,.modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px){.modal-content,.modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}.modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}.modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}.modal-card-head,.modal-card-foot{align-items:center;background-color:#f5f5f5;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}.modal-card-head{border-bottom:1px solid hsl(0deg,0%,86%);border-top-left-radius:6px;border-top-right-radius:6px}.modal-card-title{color:#363636;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}.modal-card-foot{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid hsl(0deg,0%,86%)}.modal-card-foot .button:not(:last-child){margin-right:.5em}.modal-card-body{-webkit-overflow-scrolling:touch;background-color:#fff;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}.navbar{background-color:#fff;min-height:3.25rem;position:relative;z-index:30}.navbar.is-white{background-color:#fff;color:#0a0a0a}.navbar.is-white .navbar-brand>.navbar-item,.navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}.navbar.is-white .navbar-brand>a.navbar-item:focus,.navbar.is-white .navbar-brand>a.navbar-item:hover,.navbar.is-white .navbar-brand>a.navbar-item.is-active,.navbar.is-white .navbar-brand .navbar-link:focus,.navbar.is-white .navbar-brand .navbar-link:hover,.navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link:after{border-color:#0a0a0a}.navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1024px){.navbar.is-white .navbar-start>.navbar-item,.navbar.is-white .navbar-start .navbar-link,.navbar.is-white .navbar-end>.navbar-item,.navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}.navbar.is-white .navbar-start>a.navbar-item:focus,.navbar.is-white .navbar-start>a.navbar-item:hover,.navbar.is-white .navbar-start>a.navbar-item.is-active,.navbar.is-white .navbar-start .navbar-link:focus,.navbar.is-white .navbar-start .navbar-link:hover,.navbar.is-white .navbar-start .navbar-link.is-active,.navbar.is-white .navbar-end>a.navbar-item:focus,.navbar.is-white .navbar-end>a.navbar-item:hover,.navbar.is-white .navbar-end>a.navbar-item.is-active,.navbar.is-white .navbar-end .navbar-link:focus,.navbar.is-white .navbar-end .navbar-link:hover,.navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-start .navbar-link:after,.navbar.is-white .navbar-end .navbar-link:after{border-color:#0a0a0a}.navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}.navbar.is-black{background-color:#0a0a0a;color:#fff}.navbar.is-black .navbar-brand>.navbar-item,.navbar.is-black .navbar-brand .navbar-link{color:#fff}.navbar.is-black .navbar-brand>a.navbar-item:focus,.navbar.is-black .navbar-brand>a.navbar-item:hover,.navbar.is-black .navbar-brand>a.navbar-item.is-active,.navbar.is-black .navbar-brand .navbar-link:focus,.navbar.is-black .navbar-brand .navbar-link:hover,.navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-black .navbar-start>.navbar-item,.navbar.is-black .navbar-start .navbar-link,.navbar.is-black .navbar-end>.navbar-item,.navbar.is-black .navbar-end .navbar-link{color:#fff}.navbar.is-black .navbar-start>a.navbar-item:focus,.navbar.is-black .navbar-start>a.navbar-item:hover,.navbar.is-black .navbar-start>a.navbar-item.is-active,.navbar.is-black .navbar-start .navbar-link:focus,.navbar.is-black .navbar-start .navbar-link:hover,.navbar.is-black .navbar-start .navbar-link.is-active,.navbar.is-black .navbar-end>a.navbar-item:focus,.navbar.is-black .navbar-end>a.navbar-item:hover,.navbar.is-black .navbar-end>a.navbar-item.is-active,.navbar.is-black .navbar-end .navbar-link:focus,.navbar.is-black .navbar-end .navbar-link:hover,.navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-start .navbar-link:after,.navbar.is-black .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}.navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}.navbar.is-light{background-color:#f5f5f5;color:#000000b3}.navbar.is-light .navbar-brand>.navbar-item,.navbar.is-light .navbar-brand .navbar-link{color:#000000b3}.navbar.is-light .navbar-brand>a.navbar-item:focus,.navbar.is-light .navbar-brand>a.navbar-item:hover,.navbar.is-light .navbar-brand>a.navbar-item.is-active,.navbar.is-light .navbar-brand .navbar-link:focus,.navbar.is-light .navbar-brand .navbar-link:hover,.navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#e8e8e8;color:#000000b3}.navbar.is-light .navbar-brand .navbar-link:after{border-color:#000000b3}.navbar.is-light .navbar-burger{color:#000000b3}@media screen and (min-width: 1024px){.navbar.is-light .navbar-start>.navbar-item,.navbar.is-light .navbar-start .navbar-link,.navbar.is-light .navbar-end>.navbar-item,.navbar.is-light .navbar-end .navbar-link{color:#000000b3}.navbar.is-light .navbar-start>a.navbar-item:focus,.navbar.is-light .navbar-start>a.navbar-item:hover,.navbar.is-light .navbar-start>a.navbar-item.is-active,.navbar.is-light .navbar-start .navbar-link:focus,.navbar.is-light .navbar-start .navbar-link:hover,.navbar.is-light .navbar-start .navbar-link.is-active,.navbar.is-light .navbar-end>a.navbar-item:focus,.navbar.is-light .navbar-end>a.navbar-item:hover,.navbar.is-light .navbar-end>a.navbar-item.is-active,.navbar.is-light .navbar-end .navbar-link:focus,.navbar.is-light .navbar-end .navbar-link:hover,.navbar.is-light .navbar-end .navbar-link.is-active{background-color:#e8e8e8;color:#000000b3}.navbar.is-light .navbar-start .navbar-link:after,.navbar.is-light .navbar-end .navbar-link:after{border-color:#000000b3}.navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e8e8e8;color:#000000b3}.navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#000000b3}}.navbar.is-dark{background-color:#363636;color:#fff}.navbar.is-dark .navbar-brand>.navbar-item,.navbar.is-dark .navbar-brand .navbar-link{color:#fff}.navbar.is-dark .navbar-brand>a.navbar-item:focus,.navbar.is-dark .navbar-brand>a.navbar-item:hover,.navbar.is-dark .navbar-brand>a.navbar-item.is-active,.navbar.is-dark .navbar-brand .navbar-link:focus,.navbar.is-dark .navbar-brand .navbar-link:hover,.navbar.is-dark .navbar-brand .navbar-link.is-active{background-color:#292929;color:#fff}.navbar.is-dark .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-dark .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-dark .navbar-start>.navbar-item,.navbar.is-dark .navbar-start .navbar-link,.navbar.is-dark .navbar-end>.navbar-item,.navbar.is-dark .navbar-end .navbar-link{color:#fff}.navbar.is-dark .navbar-start>a.navbar-item:focus,.navbar.is-dark .navbar-start>a.navbar-item:hover,.navbar.is-dark .navbar-start>a.navbar-item.is-active,.navbar.is-dark .navbar-start .navbar-link:focus,.navbar.is-dark .navbar-start .navbar-link:hover,.navbar.is-dark .navbar-start .navbar-link.is-active,.navbar.is-dark .navbar-end>a.navbar-item:focus,.navbar.is-dark .navbar-end>a.navbar-item:hover,.navbar.is-dark .navbar-end>a.navbar-item.is-active,.navbar.is-dark .navbar-end .navbar-link:focus,.navbar.is-dark .navbar-end .navbar-link:hover,.navbar.is-dark .navbar-end .navbar-link.is-active{background-color:#292929;color:#fff}.navbar.is-dark .navbar-start .navbar-link:after,.navbar.is-dark .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link{background-color:#292929;color:#fff}.navbar.is-dark .navbar-dropdown a.navbar-item.is-active{background-color:#363636;color:#fff}}.navbar.is-primary{background-color:#00d1b2;color:#fff}.navbar.is-primary .navbar-brand>.navbar-item,.navbar.is-primary .navbar-brand .navbar-link{color:#fff}.navbar.is-primary .navbar-brand>a.navbar-item:focus,.navbar.is-primary .navbar-brand>a.navbar-item:hover,.navbar.is-primary .navbar-brand>a.navbar-item.is-active,.navbar.is-primary .navbar-brand .navbar-link:focus,.navbar.is-primary .navbar-brand .navbar-link:hover,.navbar.is-primary .navbar-brand .navbar-link.is-active{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-primary .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-primary .navbar-start>.navbar-item,.navbar.is-primary .navbar-start .navbar-link,.navbar.is-primary .navbar-end>.navbar-item,.navbar.is-primary .navbar-end .navbar-link{color:#fff}.navbar.is-primary .navbar-start>a.navbar-item:focus,.navbar.is-primary .navbar-start>a.navbar-item:hover,.navbar.is-primary .navbar-start>a.navbar-item.is-active,.navbar.is-primary .navbar-start .navbar-link:focus,.navbar.is-primary .navbar-start .navbar-link:hover,.navbar.is-primary .navbar-start .navbar-link.is-active,.navbar.is-primary .navbar-end>a.navbar-item:focus,.navbar.is-primary .navbar-end>a.navbar-item:hover,.navbar.is-primary .navbar-end>a.navbar-item.is-active,.navbar.is-primary .navbar-end .navbar-link:focus,.navbar.is-primary .navbar-end .navbar-link:hover,.navbar.is-primary .navbar-end .navbar-link.is-active{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-start .navbar-link:after,.navbar.is-primary .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-dropdown a.navbar-item.is-active{background-color:#00d1b2;color:#fff}}.navbar.is-link{background-color:#485fc7;color:#fff}.navbar.is-link .navbar-brand>.navbar-item,.navbar.is-link .navbar-brand .navbar-link{color:#fff}.navbar.is-link .navbar-brand>a.navbar-item:focus,.navbar.is-link .navbar-brand>a.navbar-item:hover,.navbar.is-link .navbar-brand>a.navbar-item.is-active,.navbar.is-link .navbar-brand .navbar-link:focus,.navbar.is-link .navbar-brand .navbar-link:hover,.navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#3a51bb;color:#fff}.navbar.is-link .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-link .navbar-start>.navbar-item,.navbar.is-link .navbar-start .navbar-link,.navbar.is-link .navbar-end>.navbar-item,.navbar.is-link .navbar-end .navbar-link{color:#fff}.navbar.is-link .navbar-start>a.navbar-item:focus,.navbar.is-link .navbar-start>a.navbar-item:hover,.navbar.is-link .navbar-start>a.navbar-item.is-active,.navbar.is-link .navbar-start .navbar-link:focus,.navbar.is-link .navbar-start .navbar-link:hover,.navbar.is-link .navbar-start .navbar-link.is-active,.navbar.is-link .navbar-end>a.navbar-item:focus,.navbar.is-link .navbar-end>a.navbar-item:hover,.navbar.is-link .navbar-end>a.navbar-item.is-active,.navbar.is-link .navbar-end .navbar-link:focus,.navbar.is-link .navbar-end .navbar-link:hover,.navbar.is-link .navbar-end .navbar-link.is-active{background-color:#3a51bb;color:#fff}.navbar.is-link .navbar-start .navbar-link:after,.navbar.is-link .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#3a51bb;color:#fff}.navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#485fc7;color:#fff}}.navbar.is-info{background-color:#3e8ed0;color:#fff}.navbar.is-info .navbar-brand>.navbar-item,.navbar.is-info .navbar-brand .navbar-link{color:#fff}.navbar.is-info .navbar-brand>a.navbar-item:focus,.navbar.is-info .navbar-brand>a.navbar-item:hover,.navbar.is-info .navbar-brand>a.navbar-item.is-active,.navbar.is-info .navbar-brand .navbar-link:focus,.navbar.is-info .navbar-brand .navbar-link:hover,.navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#3082c5;color:#fff}.navbar.is-info .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-info .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-info .navbar-start>.navbar-item,.navbar.is-info .navbar-start .navbar-link,.navbar.is-info .navbar-end>.navbar-item,.navbar.is-info .navbar-end .navbar-link{color:#fff}.navbar.is-info .navbar-start>a.navbar-item:focus,.navbar.is-info .navbar-start>a.navbar-item:hover,.navbar.is-info .navbar-start>a.navbar-item.is-active,.navbar.is-info .navbar-start .navbar-link:focus,.navbar.is-info .navbar-start .navbar-link:hover,.navbar.is-info .navbar-start .navbar-link.is-active,.navbar.is-info .navbar-end>a.navbar-item:focus,.navbar.is-info .navbar-end>a.navbar-item:hover,.navbar.is-info .navbar-end>a.navbar-item.is-active,.navbar.is-info .navbar-end .navbar-link:focus,.navbar.is-info .navbar-end .navbar-link:hover,.navbar.is-info .navbar-end .navbar-link.is-active{background-color:#3082c5;color:#fff}.navbar.is-info .navbar-start .navbar-link:after,.navbar.is-info .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#3082c5;color:#fff}.navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#3e8ed0;color:#fff}}.navbar.is-success{background-color:#48c78e;color:#fff}.navbar.is-success .navbar-brand>.navbar-item,.navbar.is-success .navbar-brand .navbar-link{color:#fff}.navbar.is-success .navbar-brand>a.navbar-item:focus,.navbar.is-success .navbar-brand>a.navbar-item:hover,.navbar.is-success .navbar-brand>a.navbar-item.is-active,.navbar.is-success .navbar-brand .navbar-link:focus,.navbar.is-success .navbar-brand .navbar-link:hover,.navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#3abb81;color:#fff}.navbar.is-success .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-success .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-success .navbar-start>.navbar-item,.navbar.is-success .navbar-start .navbar-link,.navbar.is-success .navbar-end>.navbar-item,.navbar.is-success .navbar-end .navbar-link{color:#fff}.navbar.is-success .navbar-start>a.navbar-item:focus,.navbar.is-success .navbar-start>a.navbar-item:hover,.navbar.is-success .navbar-start>a.navbar-item.is-active,.navbar.is-success .navbar-start .navbar-link:focus,.navbar.is-success .navbar-start .navbar-link:hover,.navbar.is-success .navbar-start .navbar-link.is-active,.navbar.is-success .navbar-end>a.navbar-item:focus,.navbar.is-success .navbar-end>a.navbar-item:hover,.navbar.is-success .navbar-end>a.navbar-item.is-active,.navbar.is-success .navbar-end .navbar-link:focus,.navbar.is-success .navbar-end .navbar-link:hover,.navbar.is-success .navbar-end .navbar-link.is-active{background-color:#3abb81;color:#fff}.navbar.is-success .navbar-start .navbar-link:after,.navbar.is-success .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#3abb81;color:#fff}.navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#48c78e;color:#fff}}.navbar.is-warning{background-color:#ffe08a;color:#000000b3}.navbar.is-warning .navbar-brand>.navbar-item,.navbar.is-warning .navbar-brand .navbar-link{color:#000000b3}.navbar.is-warning .navbar-brand>a.navbar-item:focus,.navbar.is-warning .navbar-brand>a.navbar-item:hover,.navbar.is-warning .navbar-brand>a.navbar-item.is-active,.navbar.is-warning .navbar-brand .navbar-link:focus,.navbar.is-warning .navbar-brand .navbar-link:hover,.navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#ffd970;color:#000000b3}.navbar.is-warning .navbar-brand .navbar-link:after{border-color:#000000b3}.navbar.is-warning .navbar-burger{color:#000000b3}@media screen and (min-width: 1024px){.navbar.is-warning .navbar-start>.navbar-item,.navbar.is-warning .navbar-start .navbar-link,.navbar.is-warning .navbar-end>.navbar-item,.navbar.is-warning .navbar-end .navbar-link{color:#000000b3}.navbar.is-warning .navbar-start>a.navbar-item:focus,.navbar.is-warning .navbar-start>a.navbar-item:hover,.navbar.is-warning .navbar-start>a.navbar-item.is-active,.navbar.is-warning .navbar-start .navbar-link:focus,.navbar.is-warning .navbar-start .navbar-link:hover,.navbar.is-warning .navbar-start .navbar-link.is-active,.navbar.is-warning .navbar-end>a.navbar-item:focus,.navbar.is-warning .navbar-end>a.navbar-item:hover,.navbar.is-warning .navbar-end>a.navbar-item.is-active,.navbar.is-warning .navbar-end .navbar-link:focus,.navbar.is-warning .navbar-end .navbar-link:hover,.navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#ffd970;color:#000000b3}.navbar.is-warning .navbar-start .navbar-link:after,.navbar.is-warning .navbar-end .navbar-link:after{border-color:#000000b3}.navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#ffd970;color:#000000b3}.navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#ffe08a;color:#000000b3}}.navbar.is-danger{background-color:#f14668;color:#fff}.navbar.is-danger .navbar-brand>.navbar-item,.navbar.is-danger .navbar-brand .navbar-link{color:#fff}.navbar.is-danger .navbar-brand>a.navbar-item:focus,.navbar.is-danger .navbar-brand>a.navbar-item:hover,.navbar.is-danger .navbar-brand>a.navbar-item.is-active,.navbar.is-danger .navbar-brand .navbar-link:focus,.navbar.is-danger .navbar-brand .navbar-link:hover,.navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-danger .navbar-start>.navbar-item,.navbar.is-danger .navbar-start .navbar-link,.navbar.is-danger .navbar-end>.navbar-item,.navbar.is-danger .navbar-end .navbar-link{color:#fff}.navbar.is-danger .navbar-start>a.navbar-item:focus,.navbar.is-danger .navbar-start>a.navbar-item:hover,.navbar.is-danger .navbar-start>a.navbar-item.is-active,.navbar.is-danger .navbar-start .navbar-link:focus,.navbar.is-danger .navbar-start .navbar-link:hover,.navbar.is-danger .navbar-start .navbar-link.is-active,.navbar.is-danger .navbar-end>a.navbar-item:focus,.navbar.is-danger .navbar-end>a.navbar-item:hover,.navbar.is-danger .navbar-end>a.navbar-item.is-active,.navbar.is-danger .navbar-end .navbar-link:focus,.navbar.is-danger .navbar-end .navbar-link:hover,.navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-start .navbar-link:after,.navbar.is-danger .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#f14668;color:#fff}}.navbar>.container{align-items:stretch;display:flex;min-height:3.25rem;width:100%}.navbar.has-shadow{box-shadow:0 2px #f5f5f5}.navbar.is-fixed-bottom,.navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom{bottom:0}.navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px #f5f5f5}.navbar.is-fixed-top{top:0}html.has-navbar-fixed-top,body.has-navbar-fixed-top{padding-top:3.25rem}html.has-navbar-fixed-bottom,body.has-navbar-fixed-bottom{padding-bottom:3.25rem}.navbar-brand,.navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:3.25rem}.navbar-brand a.navbar-item:focus,.navbar-brand a.navbar-item:hover{background-color:transparent}.navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}.navbar-burger{color:#4a4a4a;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:block;height:3.25rem;position:relative;width:3.25rem;margin-left:auto}.navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color,opacity,transform;transition-timing-function:ease-out;width:16px}.navbar-burger span:nth-child(1){top:calc(50% - 6px)}.navbar-burger span:nth-child(2){top:calc(50% - 1px)}.navbar-burger span:nth-child(3){top:calc(50% + 4px)}.navbar-burger:hover{background-color:#0000000d}.navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}.navbar-burger.is-active span:nth-child(2){opacity:0}.navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}.navbar-menu{display:none}.navbar-item,.navbar-link{color:#4a4a4a;display:block;line-height:1.5;padding:.5rem .75rem;position:relative}.navbar-item .icon:only-child,.navbar-link .icon:only-child{margin-left:-.25rem;margin-right:-.25rem}a.navbar-item,.navbar-link{cursor:pointer}a.navbar-item:focus,a.navbar-item:focus-within,a.navbar-item:hover,a.navbar-item.is-active,.navbar-link:focus,.navbar-link:focus-within,.navbar-link:hover,.navbar-link.is-active{background-color:#fafafa;color:#485fc7}.navbar-item{flex-grow:0;flex-shrink:0}.navbar-item img{max-height:1.75rem}.navbar-item.has-dropdown{padding:0}.navbar-item.is-expanded{flex-grow:1;flex-shrink:1}.navbar-item.is-tab{border-bottom:1px solid transparent;min-height:3.25rem;padding-bottom:calc(.5rem - 1px)}.navbar-item.is-tab:focus,.navbar-item.is-tab:hover{background-color:transparent;border-bottom-color:#485fc7}.navbar-item.is-tab.is-active{background-color:transparent;border-bottom-color:#485fc7;border-bottom-style:solid;border-bottom-width:3px;color:#485fc7;padding-bottom:calc(.5rem - 3px)}.navbar-content{flex-grow:1;flex-shrink:1}.navbar-link:not(.is-arrowless){padding-right:2.5em}.navbar-link:not(.is-arrowless):after{border-color:#485fc7;margin-top:-.375em;right:1.125em}.navbar-dropdown{font-size:.875rem;padding-bottom:.5rem;padding-top:.5rem}.navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}.navbar-divider{background-color:#f5f5f5;border:none;display:none;height:2px;margin:.5rem 0}@media screen and (max-width: 1023px){.navbar>.container{display:block}.navbar-brand .navbar-item,.navbar-tabs .navbar-item{align-items:center;display:flex}.navbar-link:after{display:none}.navbar-menu{background-color:#fff;box-shadow:0 8px 16px #0a0a0a1a;padding:.5rem 0}.navbar-menu.is-active{display:block}.navbar.is-fixed-bottom-touch,.navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-touch{bottom:0}.navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px #0a0a0a1a}.navbar.is-fixed-top-touch{top:0}.navbar.is-fixed-top .navbar-menu,.navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 3.25rem);overflow:auto}html.has-navbar-fixed-top-touch,body.has-navbar-fixed-top-touch{padding-top:3.25rem}html.has-navbar-fixed-bottom-touch,body.has-navbar-fixed-bottom-touch{padding-bottom:3.25rem}}@media screen and (min-width: 1024px){.navbar,.navbar-menu,.navbar-start,.navbar-end{align-items:stretch;display:flex}.navbar{min-height:3.25rem}.navbar.is-spaced{padding:1rem 2rem}.navbar.is-spaced .navbar-start,.navbar.is-spaced .navbar-end{align-items:center}.navbar.is-spaced a.navbar-item,.navbar.is-spaced .navbar-link{border-radius:4px}.navbar.is-transparent a.navbar-item:focus,.navbar.is-transparent a.navbar-item:hover,.navbar.is-transparent a.navbar-item.is-active,.navbar.is-transparent .navbar-link:focus,.navbar.is-transparent .navbar-link:hover,.navbar.is-transparent .navbar-link.is-active{background-color:transparent!important}.navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent!important}.navbar.is-transparent .navbar-dropdown a.navbar-item:focus,.navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#485fc7}.navbar-burger{display:none}.navbar-item,.navbar-link{align-items:center;display:flex}.navbar-item.has-dropdown{align-items:stretch}.navbar-item.has-dropdown-up .navbar-link:after{transform:rotate(135deg) translate(.25em,-.25em)}.navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:2px solid hsl(0deg,0%,86%);border-radius:6px 6px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px #0a0a0a1a;top:auto}.navbar-item.is-active .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced .navbar-item.is-active .navbar-dropdown,.navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}.navbar-menu{flex-grow:1;flex-shrink:0}.navbar-start{justify-content:flex-start;margin-right:auto}.navbar-end{justify-content:flex-end;margin-left:auto}.navbar-dropdown{background-color:#fff;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:2px solid hsl(0deg,0%,86%);box-shadow:0 8px 8px #0a0a0a1a;display:none;font-size:.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}.navbar-dropdown .navbar-item{padding:.375rem 1rem;white-space:nowrap}.navbar-dropdown a.navbar-item{padding-right:3rem}.navbar-dropdown a.navbar-item:focus,.navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#485fc7}.navbar.is-spaced .navbar-dropdown,.navbar-dropdown.is-boxed{border-radius:6px;border-top:none;box-shadow:0 8px 8px #0a0a0a1a,0 0 0 1px #0a0a0a1a;display:block;opacity:0;pointer-events:none;top:calc(100% - 4px);transform:translateY(-5px);transition-duration:86ms;transition-property:opacity,transform}.navbar-dropdown.is-right{left:auto;right:0}.navbar-divider{display:block}.navbar>.container .navbar-brand,.container>.navbar .navbar-brand{margin-left:-.75rem}.navbar>.container .navbar-menu,.container>.navbar .navbar-menu{margin-right:-.75rem}.navbar.is-fixed-bottom-desktop,.navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-desktop{bottom:0}.navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px #0a0a0a1a}.navbar.is-fixed-top-desktop{top:0}html.has-navbar-fixed-top-desktop,body.has-navbar-fixed-top-desktop{padding-top:3.25rem}html.has-navbar-fixed-bottom-desktop,body.has-navbar-fixed-bottom-desktop{padding-bottom:3.25rem}html.has-spaced-navbar-fixed-top,body.has-spaced-navbar-fixed-top{padding-top:5.25rem}html.has-spaced-navbar-fixed-bottom,body.has-spaced-navbar-fixed-bottom{padding-bottom:5.25rem}a.navbar-item.is-active,.navbar-link.is-active{color:#0a0a0a}a.navbar-item.is-active:not(:focus):not(:hover),.navbar-link.is-active:not(:focus):not(:hover){background-color:transparent}.navbar-item.has-dropdown:focus .navbar-link,.navbar-item.has-dropdown:hover .navbar-link,.navbar-item.has-dropdown.is-active .navbar-link{background-color:#fafafa}}.hero.is-fullheight-with-navbar{min-height:calc(100vh - 3.25rem)}.pagination{font-size:1rem;margin:-.25rem}.pagination.is-small{font-size:.75rem}.pagination.is-medium{font-size:1.25rem}.pagination.is-large{font-size:1.5rem}.pagination.is-rounded .pagination-previous,.pagination.is-rounded .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}.pagination.is-rounded .pagination-link{border-radius:9999px}.pagination,.pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}.pagination-previous,.pagination-next,.pagination-link{border-color:#dbdbdb;color:#363636;min-width:2.5em}.pagination-previous:hover,.pagination-next:hover,.pagination-link:hover{border-color:#b5b5b5;color:#363636}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus{border-color:#485fc7}.pagination-previous:active,.pagination-next:active,.pagination-link:active{box-shadow:inset 0 1px 2px #0a0a0a33}.pagination-previous[disabled],.pagination-previous.is-disabled,.pagination-next[disabled],.pagination-next.is-disabled,.pagination-link[disabled],.pagination-link.is-disabled{background-color:#dbdbdb;border-color:#dbdbdb;box-shadow:none;color:#7a7a7a;opacity:.5}.pagination-previous,.pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}.pagination-link.is-current{background-color:#485fc7;border-color:#485fc7;color:#fff}.pagination-ellipsis{color:#b5b5b5;pointer-events:none}.pagination-list{flex-wrap:wrap}.pagination-list li{list-style:none}@media screen and (max-width: 768px){.pagination{flex-wrap:wrap}.pagination-previous,.pagination-next,.pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{.pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{margin-bottom:0;margin-top:0}.pagination-previous{order:2}.pagination-next{order:3}.pagination{justify-content:space-between;margin-bottom:0;margin-top:0}.pagination.is-centered .pagination-previous{order:1}.pagination.is-centered .pagination-list{justify-content:center;order:2}.pagination.is-centered .pagination-next{order:3}.pagination.is-right .pagination-previous{order:1}.pagination.is-right .pagination-next{order:2}.pagination.is-right .pagination-list{justify-content:flex-end;order:3}}.panel{border-radius:6px;box-shadow:0 .5em 1em -.125em #0a0a0a1a,0 0 0 1px #0a0a0a05;font-size:1rem}.panel:not(:last-child){margin-bottom:1.5rem}.panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}.panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}.panel.is-white .panel-block.is-active .panel-icon{color:#fff}.panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}.panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}.panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}.panel.is-light .panel-heading{background-color:#f5f5f5;color:#000000b3}.panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}.panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}.panel.is-dark .panel-heading{background-color:#363636;color:#fff}.panel.is-dark .panel-tabs a.is-active{border-bottom-color:#363636}.panel.is-dark .panel-block.is-active .panel-icon{color:#363636}.panel.is-primary .panel-heading{background-color:#00d1b2;color:#fff}.panel.is-primary .panel-tabs a.is-active{border-bottom-color:#00d1b2}.panel.is-primary .panel-block.is-active .panel-icon{color:#00d1b2}.panel.is-link .panel-heading{background-color:#485fc7;color:#fff}.panel.is-link .panel-tabs a.is-active{border-bottom-color:#485fc7}.panel.is-link .panel-block.is-active .panel-icon{color:#485fc7}.panel.is-info .panel-heading{background-color:#3e8ed0;color:#fff}.panel.is-info .panel-tabs a.is-active{border-bottom-color:#3e8ed0}.panel.is-info .panel-block.is-active .panel-icon{color:#3e8ed0}.panel.is-success .panel-heading{background-color:#48c78e;color:#fff}.panel.is-success .panel-tabs a.is-active{border-bottom-color:#48c78e}.panel.is-success .panel-block.is-active .panel-icon{color:#48c78e}.panel.is-warning .panel-heading{background-color:#ffe08a;color:#000000b3}.panel.is-warning .panel-tabs a.is-active{border-bottom-color:#ffe08a}.panel.is-warning .panel-block.is-active .panel-icon{color:#ffe08a}.panel.is-danger .panel-heading{background-color:#f14668;color:#fff}.panel.is-danger .panel-tabs a.is-active{border-bottom-color:#f14668}.panel.is-danger .panel-block.is-active .panel-icon{color:#f14668}.panel-tabs:not(:last-child),.panel-block:not(:last-child){border-bottom:1px solid hsl(0deg,0%,93%)}.panel-heading{background-color:#ededed;border-radius:6px 6px 0 0;color:#363636;font-size:1.25em;font-weight:700;line-height:1.25;padding:.75em 1em}.panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}.panel-tabs a{border-bottom:1px solid hsl(0deg,0%,86%);margin-bottom:-1px;padding:.5em}.panel-tabs a.is-active{border-bottom-color:#4a4a4a;color:#363636}.panel-list a{color:#4a4a4a}.panel-list a:hover{color:#485fc7}.panel-block{align-items:center;color:#363636;display:flex;justify-content:flex-start;padding:.5em .75em}.panel-block input[type=checkbox]{margin-right:.75em}.panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}.panel-block.is-wrapped{flex-wrap:wrap}.panel-block.is-active{border-left-color:#485fc7;color:#363636}.panel-block.is-active .panel-icon{color:#485fc7}.panel-block:last-child{border-bottom-left-radius:6px;border-bottom-right-radius:6px}a.panel-block,label.panel-block{cursor:pointer}a.panel-block:hover,label.panel-block:hover{background-color:#f5f5f5}.panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#7a7a7a;margin-right:.75em}.panel-icon .fa{font-size:inherit;line-height:inherit}.tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}.tabs a{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;color:#4a4a4a;display:flex;justify-content:center;margin-bottom:-1px;padding:.5em 1em;vertical-align:top}.tabs a:hover{border-bottom-color:#363636;color:#363636}.tabs li{display:block}.tabs li.is-active a{border-bottom-color:#485fc7;color:#485fc7}.tabs ul{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}.tabs ul.is-left{padding-right:.75em}.tabs ul.is-center{flex:none;justify-content:center;padding-left:.75em;padding-right:.75em}.tabs ul.is-right{justify-content:flex-end;padding-left:.75em}.tabs .icon:first-child{margin-right:.5em}.tabs .icon:last-child{margin-left:.5em}.tabs.is-centered ul{justify-content:center}.tabs.is-right ul{justify-content:flex-end}.tabs.is-boxed a{border:1px solid transparent;border-radius:4px 4px 0 0}.tabs.is-boxed a:hover{background-color:#f5f5f5;border-bottom-color:#dbdbdb}.tabs.is-boxed li.is-active a{background-color:#fff;border-color:#dbdbdb;border-bottom-color:transparent!important}.tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}.tabs.is-toggle a{border-color:#dbdbdb;border-style:solid;border-width:1px;margin-bottom:0;position:relative}.tabs.is-toggle a:hover{background-color:#f5f5f5;border-color:#b5b5b5;z-index:2}.tabs.is-toggle li+li{margin-left:-1px}.tabs.is-toggle li:first-child a{border-top-left-radius:4px;border-bottom-left-radius:4px}.tabs.is-toggle li:last-child a{border-top-right-radius:4px;border-bottom-right-radius:4px}.tabs.is-toggle li.is-active a{background-color:#485fc7;border-color:#485fc7;color:#fff;z-index:1}.tabs.is-toggle ul{border-bottom:none}.tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:9999px;border-top-left-radius:9999px;padding-left:1.25em}.tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:9999px;border-top-right-radius:9999px;padding-right:1.25em}.tabs.is-small{font-size:.75rem}.tabs.is-medium{font-size:1.25rem}.tabs.is-large{font-size:1.5rem}.column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>.column.is-narrow{flex:none;width:unset}.columns.is-mobile>.column.is-full{flex:none;width:100%}.columns.is-mobile>.column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>.column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>.column.is-half{flex:none;width:50%}.columns.is-mobile>.column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>.column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>.column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>.column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>.column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>.column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>.column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>.column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>.column.is-offset-half{margin-left:50%}.columns.is-mobile>.column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>.column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>.column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>.column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>.column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>.column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>.column.is-0{flex:none;width:0%}.columns.is-mobile>.column.is-offset-0{margin-left:0%}.columns.is-mobile>.column.is-1{flex:none;width:8.33333337%}.columns.is-mobile>.column.is-offset-1{margin-left:8.33333337%}.columns.is-mobile>.column.is-2{flex:none;width:16.66666674%}.columns.is-mobile>.column.is-offset-2{margin-left:16.66666674%}.columns.is-mobile>.column.is-3{flex:none;width:25%}.columns.is-mobile>.column.is-offset-3{margin-left:25%}.columns.is-mobile>.column.is-4{flex:none;width:33.33333337%}.columns.is-mobile>.column.is-offset-4{margin-left:33.33333337%}.columns.is-mobile>.column.is-5{flex:none;width:41.66666674%}.columns.is-mobile>.column.is-offset-5{margin-left:41.66666674%}.columns.is-mobile>.column.is-6{flex:none;width:50%}.columns.is-mobile>.column.is-offset-6{margin-left:50%}.columns.is-mobile>.column.is-7{flex:none;width:58.33333337%}.columns.is-mobile>.column.is-offset-7{margin-left:58.33333337%}.columns.is-mobile>.column.is-8{flex:none;width:66.66666674%}.columns.is-mobile>.column.is-offset-8{margin-left:66.66666674%}.columns.is-mobile>.column.is-9{flex:none;width:75%}.columns.is-mobile>.column.is-offset-9{margin-left:75%}.columns.is-mobile>.column.is-10{flex:none;width:83.33333337%}.columns.is-mobile>.column.is-offset-10{margin-left:83.33333337%}.columns.is-mobile>.column.is-11{flex:none;width:91.66666674%}.columns.is-mobile>.column.is-offset-11{margin-left:91.66666674%}.columns.is-mobile>.column.is-12{flex:none;width:100%}.columns.is-mobile>.column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){.column.is-narrow-mobile{flex:none;width:unset}.column.is-full-mobile{flex:none;width:100%}.column.is-three-quarters-mobile{flex:none;width:75%}.column.is-two-thirds-mobile{flex:none;width:66.6666%}.column.is-half-mobile{flex:none;width:50%}.column.is-one-third-mobile{flex:none;width:33.3333%}.column.is-one-quarter-mobile{flex:none;width:25%}.column.is-one-fifth-mobile{flex:none;width:20%}.column.is-two-fifths-mobile{flex:none;width:40%}.column.is-three-fifths-mobile{flex:none;width:60%}.column.is-four-fifths-mobile{flex:none;width:80%}.column.is-offset-three-quarters-mobile{margin-left:75%}.column.is-offset-two-thirds-mobile{margin-left:66.6666%}.column.is-offset-half-mobile{margin-left:50%}.column.is-offset-one-third-mobile{margin-left:33.3333%}.column.is-offset-one-quarter-mobile{margin-left:25%}.column.is-offset-one-fifth-mobile{margin-left:20%}.column.is-offset-two-fifths-mobile{margin-left:40%}.column.is-offset-three-fifths-mobile{margin-left:60%}.column.is-offset-four-fifths-mobile{margin-left:80%}.column.is-0-mobile{flex:none;width:0%}.column.is-offset-0-mobile{margin-left:0%}.column.is-1-mobile{flex:none;width:8.33333337%}.column.is-offset-1-mobile{margin-left:8.33333337%}.column.is-2-mobile{flex:none;width:16.66666674%}.column.is-offset-2-mobile{margin-left:16.66666674%}.column.is-3-mobile{flex:none;width:25%}.column.is-offset-3-mobile{margin-left:25%}.column.is-4-mobile{flex:none;width:33.33333337%}.column.is-offset-4-mobile{margin-left:33.33333337%}.column.is-5-mobile{flex:none;width:41.66666674%}.column.is-offset-5-mobile{margin-left:41.66666674%}.column.is-6-mobile{flex:none;width:50%}.column.is-offset-6-mobile{margin-left:50%}.column.is-7-mobile{flex:none;width:58.33333337%}.column.is-offset-7-mobile{margin-left:58.33333337%}.column.is-8-mobile{flex:none;width:66.66666674%}.column.is-offset-8-mobile{margin-left:66.66666674%}.column.is-9-mobile{flex:none;width:75%}.column.is-offset-9-mobile{margin-left:75%}.column.is-10-mobile{flex:none;width:83.33333337%}.column.is-offset-10-mobile{margin-left:83.33333337%}.column.is-11-mobile{flex:none;width:91.66666674%}.column.is-offset-11-mobile{margin-left:91.66666674%}.column.is-12-mobile{flex:none;width:100%}.column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{.column.is-narrow,.column.is-narrow-tablet{flex:none;width:unset}.column.is-full,.column.is-full-tablet{flex:none;width:100%}.column.is-three-quarters,.column.is-three-quarters-tablet{flex:none;width:75%}.column.is-two-thirds,.column.is-two-thirds-tablet{flex:none;width:66.6666%}.column.is-half,.column.is-half-tablet{flex:none;width:50%}.column.is-one-third,.column.is-one-third-tablet{flex:none;width:33.3333%}.column.is-one-quarter,.column.is-one-quarter-tablet{flex:none;width:25%}.column.is-one-fifth,.column.is-one-fifth-tablet{flex:none;width:20%}.column.is-two-fifths,.column.is-two-fifths-tablet{flex:none;width:40%}.column.is-three-fifths,.column.is-three-fifths-tablet{flex:none;width:60%}.column.is-four-fifths,.column.is-four-fifths-tablet{flex:none;width:80%}.column.is-offset-three-quarters,.column.is-offset-three-quarters-tablet{margin-left:75%}.column.is-offset-two-thirds,.column.is-offset-two-thirds-tablet{margin-left:66.6666%}.column.is-offset-half,.column.is-offset-half-tablet{margin-left:50%}.column.is-offset-one-third,.column.is-offset-one-third-tablet{margin-left:33.3333%}.column.is-offset-one-quarter,.column.is-offset-one-quarter-tablet{margin-left:25%}.column.is-offset-one-fifth,.column.is-offset-one-fifth-tablet{margin-left:20%}.column.is-offset-two-fifths,.column.is-offset-two-fifths-tablet{margin-left:40%}.column.is-offset-three-fifths,.column.is-offset-three-fifths-tablet{margin-left:60%}.column.is-offset-four-fifths,.column.is-offset-four-fifths-tablet{margin-left:80%}.column.is-0,.column.is-0-tablet{flex:none;width:0%}.column.is-offset-0,.column.is-offset-0-tablet{margin-left:0%}.column.is-1,.column.is-1-tablet{flex:none;width:8.33333337%}.column.is-offset-1,.column.is-offset-1-tablet{margin-left:8.33333337%}.column.is-2,.column.is-2-tablet{flex:none;width:16.66666674%}.column.is-offset-2,.column.is-offset-2-tablet{margin-left:16.66666674%}.column.is-3,.column.is-3-tablet{flex:none;width:25%}.column.is-offset-3,.column.is-offset-3-tablet{margin-left:25%}.column.is-4,.column.is-4-tablet{flex:none;width:33.33333337%}.column.is-offset-4,.column.is-offset-4-tablet{margin-left:33.33333337%}.column.is-5,.column.is-5-tablet{flex:none;width:41.66666674%}.column.is-offset-5,.column.is-offset-5-tablet{margin-left:41.66666674%}.column.is-6,.column.is-6-tablet{flex:none;width:50%}.column.is-offset-6,.column.is-offset-6-tablet{margin-left:50%}.column.is-7,.column.is-7-tablet{flex:none;width:58.33333337%}.column.is-offset-7,.column.is-offset-7-tablet{margin-left:58.33333337%}.column.is-8,.column.is-8-tablet{flex:none;width:66.66666674%}.column.is-offset-8,.column.is-offset-8-tablet{margin-left:66.66666674%}.column.is-9,.column.is-9-tablet{flex:none;width:75%}.column.is-offset-9,.column.is-offset-9-tablet{margin-left:75%}.column.is-10,.column.is-10-tablet{flex:none;width:83.33333337%}.column.is-offset-10,.column.is-offset-10-tablet{margin-left:83.33333337%}.column.is-11,.column.is-11-tablet{flex:none;width:91.66666674%}.column.is-offset-11,.column.is-offset-11-tablet{margin-left:91.66666674%}.column.is-12,.column.is-12-tablet{flex:none;width:100%}.column.is-offset-12,.column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1023px){.column.is-narrow-touch{flex:none;width:unset}.column.is-full-touch{flex:none;width:100%}.column.is-three-quarters-touch{flex:none;width:75%}.column.is-two-thirds-touch{flex:none;width:66.6666%}.column.is-half-touch{flex:none;width:50%}.column.is-one-third-touch{flex:none;width:33.3333%}.column.is-one-quarter-touch{flex:none;width:25%}.column.is-one-fifth-touch{flex:none;width:20%}.column.is-two-fifths-touch{flex:none;width:40%}.column.is-three-fifths-touch{flex:none;width:60%}.column.is-four-fifths-touch{flex:none;width:80%}.column.is-offset-three-quarters-touch{margin-left:75%}.column.is-offset-two-thirds-touch{margin-left:66.6666%}.column.is-offset-half-touch{margin-left:50%}.column.is-offset-one-third-touch{margin-left:33.3333%}.column.is-offset-one-quarter-touch{margin-left:25%}.column.is-offset-one-fifth-touch{margin-left:20%}.column.is-offset-two-fifths-touch{margin-left:40%}.column.is-offset-three-fifths-touch{margin-left:60%}.column.is-offset-four-fifths-touch{margin-left:80%}.column.is-0-touch{flex:none;width:0%}.column.is-offset-0-touch{margin-left:0%}.column.is-1-touch{flex:none;width:8.33333337%}.column.is-offset-1-touch{margin-left:8.33333337%}.column.is-2-touch{flex:none;width:16.66666674%}.column.is-offset-2-touch{margin-left:16.66666674%}.column.is-3-touch{flex:none;width:25%}.column.is-offset-3-touch{margin-left:25%}.column.is-4-touch{flex:none;width:33.33333337%}.column.is-offset-4-touch{margin-left:33.33333337%}.column.is-5-touch{flex:none;width:41.66666674%}.column.is-offset-5-touch{margin-left:41.66666674%}.column.is-6-touch{flex:none;width:50%}.column.is-offset-6-touch{margin-left:50%}.column.is-7-touch{flex:none;width:58.33333337%}.column.is-offset-7-touch{margin-left:58.33333337%}.column.is-8-touch{flex:none;width:66.66666674%}.column.is-offset-8-touch{margin-left:66.66666674%}.column.is-9-touch{flex:none;width:75%}.column.is-offset-9-touch{margin-left:75%}.column.is-10-touch{flex:none;width:83.33333337%}.column.is-offset-10-touch{margin-left:83.33333337%}.column.is-11-touch{flex:none;width:91.66666674%}.column.is-offset-11-touch{margin-left:91.66666674%}.column.is-12-touch{flex:none;width:100%}.column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1024px){.column.is-narrow-desktop{flex:none;width:unset}.column.is-full-desktop{flex:none;width:100%}.column.is-three-quarters-desktop{flex:none;width:75%}.column.is-two-thirds-desktop{flex:none;width:66.6666%}.column.is-half-desktop{flex:none;width:50%}.column.is-one-third-desktop{flex:none;width:33.3333%}.column.is-one-quarter-desktop{flex:none;width:25%}.column.is-one-fifth-desktop{flex:none;width:20%}.column.is-two-fifths-desktop{flex:none;width:40%}.column.is-three-fifths-desktop{flex:none;width:60%}.column.is-four-fifths-desktop{flex:none;width:80%}.column.is-offset-three-quarters-desktop{margin-left:75%}.column.is-offset-two-thirds-desktop{margin-left:66.6666%}.column.is-offset-half-desktop{margin-left:50%}.column.is-offset-one-third-desktop{margin-left:33.3333%}.column.is-offset-one-quarter-desktop{margin-left:25%}.column.is-offset-one-fifth-desktop{margin-left:20%}.column.is-offset-two-fifths-desktop{margin-left:40%}.column.is-offset-three-fifths-desktop{margin-left:60%}.column.is-offset-four-fifths-desktop{margin-left:80%}.column.is-0-desktop{flex:none;width:0%}.column.is-offset-0-desktop{margin-left:0%}.column.is-1-desktop{flex:none;width:8.33333337%}.column.is-offset-1-desktop{margin-left:8.33333337%}.column.is-2-desktop{flex:none;width:16.66666674%}.column.is-offset-2-desktop{margin-left:16.66666674%}.column.is-3-desktop{flex:none;width:25%}.column.is-offset-3-desktop{margin-left:25%}.column.is-4-desktop{flex:none;width:33.33333337%}.column.is-offset-4-desktop{margin-left:33.33333337%}.column.is-5-desktop{flex:none;width:41.66666674%}.column.is-offset-5-desktop{margin-left:41.66666674%}.column.is-6-desktop{flex:none;width:50%}.column.is-offset-6-desktop{margin-left:50%}.column.is-7-desktop{flex:none;width:58.33333337%}.column.is-offset-7-desktop{margin-left:58.33333337%}.column.is-8-desktop{flex:none;width:66.66666674%}.column.is-offset-8-desktop{margin-left:66.66666674%}.column.is-9-desktop{flex:none;width:75%}.column.is-offset-9-desktop{margin-left:75%}.column.is-10-desktop{flex:none;width:83.33333337%}.column.is-offset-10-desktop{margin-left:83.33333337%}.column.is-11-desktop{flex:none;width:91.66666674%}.column.is-offset-11-desktop{margin-left:91.66666674%}.column.is-12-desktop{flex:none;width:100%}.column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){.column.is-narrow-widescreen{flex:none;width:unset}.column.is-full-widescreen{flex:none;width:100%}.column.is-three-quarters-widescreen{flex:none;width:75%}.column.is-two-thirds-widescreen{flex:none;width:66.6666%}.column.is-half-widescreen{flex:none;width:50%}.column.is-one-third-widescreen{flex:none;width:33.3333%}.column.is-one-quarter-widescreen{flex:none;width:25%}.column.is-one-fifth-widescreen{flex:none;width:20%}.column.is-two-fifths-widescreen{flex:none;width:40%}.column.is-three-fifths-widescreen{flex:none;width:60%}.column.is-four-fifths-widescreen{flex:none;width:80%}.column.is-offset-three-quarters-widescreen{margin-left:75%}.column.is-offset-two-thirds-widescreen{margin-left:66.6666%}.column.is-offset-half-widescreen{margin-left:50%}.column.is-offset-one-third-widescreen{margin-left:33.3333%}.column.is-offset-one-quarter-widescreen{margin-left:25%}.column.is-offset-one-fifth-widescreen{margin-left:20%}.column.is-offset-two-fifths-widescreen{margin-left:40%}.column.is-offset-three-fifths-widescreen{margin-left:60%}.column.is-offset-four-fifths-widescreen{margin-left:80%}.column.is-0-widescreen{flex:none;width:0%}.column.is-offset-0-widescreen{margin-left:0%}.column.is-1-widescreen{flex:none;width:8.33333337%}.column.is-offset-1-widescreen{margin-left:8.33333337%}.column.is-2-widescreen{flex:none;width:16.66666674%}.column.is-offset-2-widescreen{margin-left:16.66666674%}.column.is-3-widescreen{flex:none;width:25%}.column.is-offset-3-widescreen{margin-left:25%}.column.is-4-widescreen{flex:none;width:33.33333337%}.column.is-offset-4-widescreen{margin-left:33.33333337%}.column.is-5-widescreen{flex:none;width:41.66666674%}.column.is-offset-5-widescreen{margin-left:41.66666674%}.column.is-6-widescreen{flex:none;width:50%}.column.is-offset-6-widescreen{margin-left:50%}.column.is-7-widescreen{flex:none;width:58.33333337%}.column.is-offset-7-widescreen{margin-left:58.33333337%}.column.is-8-widescreen{flex:none;width:66.66666674%}.column.is-offset-8-widescreen{margin-left:66.66666674%}.column.is-9-widescreen{flex:none;width:75%}.column.is-offset-9-widescreen{margin-left:75%}.column.is-10-widescreen{flex:none;width:83.33333337%}.column.is-offset-10-widescreen{margin-left:83.33333337%}.column.is-11-widescreen{flex:none;width:91.66666674%}.column.is-offset-11-widescreen{margin-left:91.66666674%}.column.is-12-widescreen{flex:none;width:100%}.column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){.column.is-narrow-fullhd{flex:none;width:unset}.column.is-full-fullhd{flex:none;width:100%}.column.is-three-quarters-fullhd{flex:none;width:75%}.column.is-two-thirds-fullhd{flex:none;width:66.6666%}.column.is-half-fullhd{flex:none;width:50%}.column.is-one-third-fullhd{flex:none;width:33.3333%}.column.is-one-quarter-fullhd{flex:none;width:25%}.column.is-one-fifth-fullhd{flex:none;width:20%}.column.is-two-fifths-fullhd{flex:none;width:40%}.column.is-three-fifths-fullhd{flex:none;width:60%}.column.is-four-fifths-fullhd{flex:none;width:80%}.column.is-offset-three-quarters-fullhd{margin-left:75%}.column.is-offset-two-thirds-fullhd{margin-left:66.6666%}.column.is-offset-half-fullhd{margin-left:50%}.column.is-offset-one-third-fullhd{margin-left:33.3333%}.column.is-offset-one-quarter-fullhd{margin-left:25%}.column.is-offset-one-fifth-fullhd{margin-left:20%}.column.is-offset-two-fifths-fullhd{margin-left:40%}.column.is-offset-three-fifths-fullhd{margin-left:60%}.column.is-offset-four-fifths-fullhd{margin-left:80%}.column.is-0-fullhd{flex:none;width:0%}.column.is-offset-0-fullhd{margin-left:0%}.column.is-1-fullhd{flex:none;width:8.33333337%}.column.is-offset-1-fullhd{margin-left:8.33333337%}.column.is-2-fullhd{flex:none;width:16.66666674%}.column.is-offset-2-fullhd{margin-left:16.66666674%}.column.is-3-fullhd{flex:none;width:25%}.column.is-offset-3-fullhd{margin-left:25%}.column.is-4-fullhd{flex:none;width:33.33333337%}.column.is-offset-4-fullhd{margin-left:33.33333337%}.column.is-5-fullhd{flex:none;width:41.66666674%}.column.is-offset-5-fullhd{margin-left:41.66666674%}.column.is-6-fullhd{flex:none;width:50%}.column.is-offset-6-fullhd{margin-left:50%}.column.is-7-fullhd{flex:none;width:58.33333337%}.column.is-offset-7-fullhd{margin-left:58.33333337%}.column.is-8-fullhd{flex:none;width:66.66666674%}.column.is-offset-8-fullhd{margin-left:66.66666674%}.column.is-9-fullhd{flex:none;width:75%}.column.is-offset-9-fullhd{margin-left:75%}.column.is-10-fullhd{flex:none;width:83.33333337%}.column.is-offset-10-fullhd{margin-left:83.33333337%}.column.is-11-fullhd{flex:none;width:91.66666674%}.column.is-offset-11-fullhd{margin-left:91.66666674%}.column.is-12-fullhd{flex:none;width:100%}.column.is-offset-12-fullhd{margin-left:100%}}.columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.columns:last-child{margin-bottom:-.75rem}.columns:not(:last-child){margin-bottom:.75rem}.columns.is-centered{justify-content:center}.columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}.columns.is-gapless>.column{margin:0;padding:0!important}.columns.is-gapless:not(:last-child){margin-bottom:1.5rem}.columns.is-gapless:last-child{margin-bottom:0}.columns.is-mobile{display:flex}.columns.is-multiline{flex-wrap:wrap}.columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{.columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1024px){.columns.is-desktop{display:flex}}.columns.is-variable{--columnGap: .75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}.columns.is-variable>.column{padding-left:var(--columnGap);padding-right:var(--columnGap)}.columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){.columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-0-fullhd{--columnGap: 0rem}}.columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 768px){.columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-1-widescreen{--columnGap: .25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-1-widescreen-only{--columnGap: .25rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-1-fullhd{--columnGap: .25rem}}.columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 768px){.columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-2-widescreen{--columnGap: .5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-2-widescreen-only{--columnGap: .5rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-2-fullhd{--columnGap: .5rem}}.columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 768px){.columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-3-widescreen{--columnGap: .75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-3-widescreen-only{--columnGap: .75rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-3-fullhd{--columnGap: .75rem}}.columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){.columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-4-fullhd{--columnGap: 1rem}}.columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){.columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}.columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){.columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}.columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){.columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}.columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){.columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-8-fullhd{--columnGap: 2rem}}.tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}.tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.tile.is-ancestor:last-child{margin-bottom:-.75rem}.tile.is-ancestor:not(:last-child){margin-bottom:.75rem}.tile.is-child{margin:0!important}.tile.is-parent{padding:.75rem}.tile.is-vertical{flex-direction:column}.tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem!important}@media screen and (min-width: 769px),print{.tile:not(.is-child){display:flex}.tile.is-1{flex:none;width:8.33333337%}.tile.is-2{flex:none;width:16.66666674%}.tile.is-3{flex:none;width:25%}.tile.is-4{flex:none;width:33.33333337%}.tile.is-5{flex:none;width:41.66666674%}.tile.is-6{flex:none;width:50%}.tile.is-7{flex:none;width:58.33333337%}.tile.is-8{flex:none;width:66.66666674%}.tile.is-9{flex:none;width:75%}.tile.is-10{flex:none;width:83.33333337%}.tile.is-11{flex:none;width:91.66666674%}.tile.is-12{flex:none;width:100%}}.has-text-white{color:#fff!important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6!important}.has-background-white{background-color:#fff!important}.has-text-black{color:#0a0a0a!important}a.has-text-black:hover,a.has-text-black:focus{color:#000!important}.has-background-black{background-color:#0a0a0a!important}.has-text-light{color:#f5f5f5!important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb!important}.has-background-light{background-color:#f5f5f5!important}.has-text-dark{color:#363636!important}a.has-text-dark:hover,a.has-text-dark:focus{color:#1c1c1c!important}.has-background-dark{background-color:#363636!important}.has-text-primary{color:#00d1b2!important}a.has-text-primary:hover,a.has-text-primary:focus{color:#009e86!important}.has-background-primary{background-color:#00d1b2!important}.has-text-primary-light{color:#ebfffc!important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#b8fff4!important}.has-background-primary-light{background-color:#ebfffc!important}.has-text-primary-dark{color:#00947e!important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#00c7a9!important}.has-background-primary-dark{background-color:#00947e!important}.has-text-link{color:#485fc7!important}a.has-text-link:hover,a.has-text-link:focus{color:#3449a8!important}.has-background-link{background-color:#485fc7!important}.has-text-link-light{color:#eff1fa!important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#c8cfee!important}.has-background-link-light{background-color:#eff1fa!important}.has-text-link-dark{color:#3850b7!important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#576dcb!important}.has-background-link-dark{background-color:#3850b7!important}.has-text-info{color:#3e8ed0!important}a.has-text-info:hover,a.has-text-info:focus{color:#2b74b1!important}.has-background-info{background-color:#3e8ed0!important}.has-text-info-light{color:#eff5fb!important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#c6ddf1!important}.has-background-info-light{background-color:#eff5fb!important}.has-text-info-dark{color:#296fa8!important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#368ace!important}.has-background-info-dark{background-color:#296fa8!important}.has-text-success{color:#48c78e!important}a.has-text-success:hover,a.has-text-success:focus{color:#34a873!important}.has-background-success{background-color:#48c78e!important}.has-text-success-light{color:#effaf5!important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#c8eedd!important}.has-background-success-light{background-color:#effaf5!important}.has-text-success-dark{color:#257953!important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#31a06e!important}.has-background-success-dark{background-color:#257953!important}.has-text-warning{color:#ffe08a!important}a.has-text-warning:hover,a.has-text-warning:focus{color:#ffd257!important}.has-background-warning{background-color:#ffe08a!important}.has-text-warning-light{color:#fffaeb!important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#ffecb8!important}.has-background-warning-light{background-color:#fffaeb!important}.has-text-warning-dark{color:#946c00!important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#c79200!important}.has-background-warning-dark{background-color:#946c00!important}.has-text-danger{color:#f14668!important}a.has-text-danger:hover,a.has-text-danger:focus{color:#ee1742!important}.has-background-danger{background-color:#f14668!important}.has-text-danger-light{color:#feecf0!important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#fabdc9!important}.has-background-danger-light{background-color:#feecf0!important}.has-text-danger-dark{color:#cc0f35!important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#ee2049!important}.has-background-danger-dark{background-color:#cc0f35!important}.has-text-black-bis{color:#121212!important}.has-background-black-bis{background-color:#121212!important}.has-text-black-ter{color:#242424!important}.has-background-black-ter{background-color:#242424!important}.has-text-grey-darker{color:#363636!important}.has-background-grey-darker{background-color:#363636!important}.has-text-grey-dark{color:#4a4a4a!important}.has-background-grey-dark{background-color:#4a4a4a!important}.has-text-grey{color:#7a7a7a!important}.has-background-grey{background-color:#7a7a7a!important}.has-text-grey-light{color:#b5b5b5!important}.has-background-grey-light{background-color:#b5b5b5!important}.has-text-grey-lighter{color:#dbdbdb!important}.has-background-grey-lighter{background-color:#dbdbdb!important}.has-text-white-ter{color:#f5f5f5!important}.has-background-white-ter{background-color:#f5f5f5!important}.has-text-white-bis{color:#fafafa!important}.has-background-white-bis{background-color:#fafafa!important}.is-flex-direction-row{flex-direction:row!important}.is-flex-direction-row-reverse{flex-direction:row-reverse!important}.is-flex-direction-column{flex-direction:column!important}.is-flex-direction-column-reverse{flex-direction:column-reverse!important}.is-flex-wrap-nowrap{flex-wrap:nowrap!important}.is-flex-wrap-wrap{flex-wrap:wrap!important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse!important}.is-justify-content-flex-start{justify-content:flex-start!important}.is-justify-content-flex-end{justify-content:flex-end!important}.is-justify-content-center{justify-content:center!important}.is-justify-content-space-between{justify-content:space-between!important}.is-justify-content-space-around{justify-content:space-around!important}.is-justify-content-space-evenly{justify-content:space-evenly!important}.is-justify-content-start{justify-content:start!important}.is-justify-content-end{justify-content:end!important}.is-justify-content-left{justify-content:left!important}.is-justify-content-right{justify-content:right!important}.is-align-content-flex-start{align-content:flex-start!important}.is-align-content-flex-end{align-content:flex-end!important}.is-align-content-center{align-content:center!important}.is-align-content-space-between{align-content:space-between!important}.is-align-content-space-around{align-content:space-around!important}.is-align-content-space-evenly{align-content:space-evenly!important}.is-align-content-stretch{align-content:stretch!important}.is-align-content-start{align-content:start!important}.is-align-content-end{align-content:end!important}.is-align-content-baseline{align-content:baseline!important}.is-align-items-stretch{align-items:stretch!important}.is-align-items-flex-start{align-items:flex-start!important}.is-align-items-flex-end{align-items:flex-end!important}.is-align-items-center{align-items:center!important}.is-align-items-baseline{align-items:baseline!important}.is-align-items-start{align-items:start!important}.is-align-items-end{align-items:end!important}.is-align-items-self-start{align-items:self-start!important}.is-align-items-self-end{align-items:self-end!important}.is-align-self-auto{align-self:auto!important}.is-align-self-flex-start{align-self:flex-start!important}.is-align-self-flex-end{align-self:flex-end!important}.is-align-self-center{align-self:center!important}.is-align-self-baseline{align-self:baseline!important}.is-align-self-stretch{align-self:stretch!important}.is-flex-grow-0{flex-grow:0!important}.is-flex-grow-1{flex-grow:1!important}.is-flex-grow-2{flex-grow:2!important}.is-flex-grow-3{flex-grow:3!important}.is-flex-grow-4{flex-grow:4!important}.is-flex-grow-5{flex-grow:5!important}.is-flex-shrink-0{flex-shrink:0!important}.is-flex-shrink-1{flex-shrink:1!important}.is-flex-shrink-2{flex-shrink:2!important}.is-flex-shrink-3{flex-shrink:3!important}.is-flex-shrink-4{flex-shrink:4!important}.is-flex-shrink-5{flex-shrink:5!important}.is-clearfix:after{clear:both;content:" ";display:table}.is-pulled-left{float:left!important}.is-pulled-right{float:right!important}.is-radiusless{border-radius:0!important}.is-shadowless{box-shadow:none!important}.is-clickable{cursor:pointer!important;pointer-events:all!important}.is-clipped{overflow:hidden!important}.is-relative{position:relative!important}.is-marginless{margin:0!important}.is-paddingless{padding:0!important}.m-0{margin:0!important}.mt-0{margin-top:0!important}.mr-0{margin-right:0!important}.mb-0{margin-bottom:0!important}.ml-0{margin-left:0!important}.mx-0{margin-left:0!important;margin-right:0!important}.my-0{margin-top:0!important;margin-bottom:0!important}.m-1{margin:.25rem!important}.mt-1{margin-top:.25rem!important}.mr-1{margin-right:.25rem!important}.mb-1{margin-bottom:.25rem!important}.ml-1{margin-left:.25rem!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.m-2{margin:.5rem!important}.mt-2{margin-top:.5rem!important}.mr-2{margin-right:.5rem!important}.mb-2{margin-bottom:.5rem!important}.ml-2{margin-left:.5rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.m-3{margin:.75rem!important}.mt-3{margin-top:.75rem!important}.mr-3{margin-right:.75rem!important}.mb-3{margin-bottom:.75rem!important}.ml-3{margin-left:.75rem!important}.mx-3{margin-left:.75rem!important;margin-right:.75rem!important}.my-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.m-4{margin:1rem!important}.mt-4{margin-top:1rem!important}.mr-4{margin-right:1rem!important}.mb-4{margin-bottom:1rem!important}.ml-4{margin-left:1rem!important}.mx-4{margin-left:1rem!important;margin-right:1rem!important}.my-4{margin-top:1rem!important;margin-bottom:1rem!important}.m-5{margin:1.5rem!important}.mt-5{margin-top:1.5rem!important}.mr-5{margin-right:1.5rem!important}.mb-5{margin-bottom:1.5rem!important}.ml-5{margin-left:1.5rem!important}.mx-5{margin-left:1.5rem!important;margin-right:1.5rem!important}.my-5{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-6{margin:3rem!important}.mt-6{margin-top:3rem!important}.mr-6{margin-right:3rem!important}.mb-6{margin-bottom:3rem!important}.ml-6{margin-left:3rem!important}.mx-6{margin-left:3rem!important;margin-right:3rem!important}.my-6{margin-top:3rem!important;margin-bottom:3rem!important}.m-auto{margin:auto!important}.mt-auto{margin-top:auto!important}.mr-auto{margin-right:auto!important}.mb-auto{margin-bottom:auto!important}.ml-auto{margin-left:auto!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.p-0{padding:0!important}.pt-0{padding-top:0!important}.pr-0{padding-right:0!important}.pb-0{padding-bottom:0!important}.pl-0{padding-left:0!important}.px-0{padding-left:0!important;padding-right:0!important}.py-0{padding-top:0!important;padding-bottom:0!important}.p-1{padding:.25rem!important}.pt-1{padding-top:.25rem!important}.pr-1{padding-right:.25rem!important}.pb-1{padding-bottom:.25rem!important}.pl-1{padding-left:.25rem!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.p-2{padding:.5rem!important}.pt-2{padding-top:.5rem!important}.pr-2{padding-right:.5rem!important}.pb-2{padding-bottom:.5rem!important}.pl-2{padding-left:.5rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.p-3{padding:.75rem!important}.pt-3{padding-top:.75rem!important}.pr-3{padding-right:.75rem!important}.pb-3{padding-bottom:.75rem!important}.pl-3{padding-left:.75rem!important}.px-3{padding-left:.75rem!important;padding-right:.75rem!important}.py-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.p-4{padding:1rem!important}.pt-4{padding-top:1rem!important}.pr-4{padding-right:1rem!important}.pb-4{padding-bottom:1rem!important}.pl-4{padding-left:1rem!important}.px-4{padding-left:1rem!important;padding-right:1rem!important}.py-4{padding-top:1rem!important;padding-bottom:1rem!important}.p-5{padding:1.5rem!important}.pt-5{padding-top:1.5rem!important}.pr-5{padding-right:1.5rem!important}.pb-5{padding-bottom:1.5rem!important}.pl-5{padding-left:1.5rem!important}.px-5{padding-left:1.5rem!important;padding-right:1.5rem!important}.py-5{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-6{padding:3rem!important}.pt-6{padding-top:3rem!important}.pr-6{padding-right:3rem!important}.pb-6{padding-bottom:3rem!important}.pl-6{padding-left:3rem!important}.px-6{padding-left:3rem!important;padding-right:3rem!important}.py-6{padding-top:3rem!important;padding-bottom:3rem!important}.p-auto{padding:auto!important}.pt-auto{padding-top:auto!important}.pr-auto{padding-right:auto!important}.pb-auto{padding-bottom:auto!important}.pl-auto{padding-left:auto!important}.px-auto{padding-left:auto!important;padding-right:auto!important}.py-auto{padding-top:auto!important;padding-bottom:auto!important}.is-size-1{font-size:3rem!important}.is-size-2{font-size:2.5rem!important}.is-size-3{font-size:2rem!important}.is-size-4{font-size:1.5rem!important}.is-size-5{font-size:1.25rem!important}.is-size-6{font-size:1rem!important}.is-size-7{font-size:.75rem!important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem!important}.is-size-2-mobile{font-size:2.5rem!important}.is-size-3-mobile{font-size:2rem!important}.is-size-4-mobile{font-size:1.5rem!important}.is-size-5-mobile{font-size:1.25rem!important}.is-size-6-mobile{font-size:1rem!important}.is-size-7-mobile{font-size:.75rem!important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem!important}.is-size-2-tablet{font-size:2.5rem!important}.is-size-3-tablet{font-size:2rem!important}.is-size-4-tablet{font-size:1.5rem!important}.is-size-5-tablet{font-size:1.25rem!important}.is-size-6-tablet{font-size:1rem!important}.is-size-7-tablet{font-size:.75rem!important}}@media screen and (max-width: 1023px){.is-size-1-touch{font-size:3rem!important}.is-size-2-touch{font-size:2.5rem!important}.is-size-3-touch{font-size:2rem!important}.is-size-4-touch{font-size:1.5rem!important}.is-size-5-touch{font-size:1.25rem!important}.is-size-6-touch{font-size:1rem!important}.is-size-7-touch{font-size:.75rem!important}}@media screen and (min-width: 1024px){.is-size-1-desktop{font-size:3rem!important}.is-size-2-desktop{font-size:2.5rem!important}.is-size-3-desktop{font-size:2rem!important}.is-size-4-desktop{font-size:1.5rem!important}.is-size-5-desktop{font-size:1.25rem!important}.is-size-6-desktop{font-size:1rem!important}.is-size-7-desktop{font-size:.75rem!important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem!important}.is-size-2-widescreen{font-size:2.5rem!important}.is-size-3-widescreen{font-size:2rem!important}.is-size-4-widescreen{font-size:1.5rem!important}.is-size-5-widescreen{font-size:1.25rem!important}.is-size-6-widescreen{font-size:1rem!important}.is-size-7-widescreen{font-size:.75rem!important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem!important}.is-size-2-fullhd{font-size:2.5rem!important}.is-size-3-fullhd{font-size:2rem!important}.is-size-4-fullhd{font-size:1.5rem!important}.is-size-5-fullhd{font-size:1.25rem!important}.is-size-6-fullhd{font-size:1rem!important}.is-size-7-fullhd{font-size:.75rem!important}}.has-text-centered{text-align:center!important}.has-text-justified{text-align:justify!important}.has-text-left{text-align:left!important}.has-text-right{text-align:right!important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center!important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.has-text-centered-tablet-only{text-align:center!important}}@media screen and (max-width: 1023px){.has-text-centered-touch{text-align:center!important}}@media screen and (min-width: 1024px){.has-text-centered-desktop{text-align:center!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center!important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center!important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center!important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify!important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.has-text-justified-tablet-only{text-align:justify!important}}@media screen and (max-width: 1023px){.has-text-justified-touch{text-align:justify!important}}@media screen and (min-width: 1024px){.has-text-justified-desktop{text-align:justify!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify!important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify!important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify!important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left!important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.has-text-left-tablet-only{text-align:left!important}}@media screen and (max-width: 1023px){.has-text-left-touch{text-align:left!important}}@media screen and (min-width: 1024px){.has-text-left-desktop{text-align:left!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.has-text-left-desktop-only{text-align:left!important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left!important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left!important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right!important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.has-text-right-tablet-only{text-align:right!important}}@media screen and (max-width: 1023px){.has-text-right-touch{text-align:right!important}}@media screen and (min-width: 1024px){.has-text-right-desktop{text-align:right!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.has-text-right-desktop-only{text-align:right!important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right!important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right!important}}.is-capitalized{text-transform:capitalize!important}.is-lowercase{text-transform:lowercase!important}.is-uppercase{text-transform:uppercase!important}.is-italic{font-style:italic!important}.is-underlined{text-decoration:underline!important}.has-text-weight-light{font-weight:300!important}.has-text-weight-normal{font-weight:400!important}.has-text-weight-medium{font-weight:500!important}.has-text-weight-semibold{font-weight:600!important}.has-text-weight-bold{font-weight:700!important}.is-family-primary,.is-family-secondary,.is-family-sans-serif{font-family:BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Arial,sans-serif!important}.is-family-monospace,.is-family-code{font-family:monospace!important}.is-block{display:block!important}@media screen and (max-width: 768px){.is-block-mobile{display:block!important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-block-tablet-only{display:block!important}}@media screen and (max-width: 1023px){.is-block-touch{display:block!important}}@media screen and (min-width: 1024px){.is-block-desktop{display:block!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-block-desktop-only{display:block!important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-block-widescreen-only{display:block!important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block!important}}.is-flex{display:flex!important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex!important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-flex-tablet-only{display:flex!important}}@media screen and (max-width: 1023px){.is-flex-touch{display:flex!important}}@media screen and (min-width: 1024px){.is-flex-desktop{display:flex!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-flex-desktop-only{display:flex!important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-flex-widescreen-only{display:flex!important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex!important}}.is-inline{display:inline!important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline!important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-inline-tablet-only{display:inline!important}}@media screen and (max-width: 1023px){.is-inline-touch{display:inline!important}}@media screen and (min-width: 1024px){.is-inline-desktop{display:inline!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-inline-desktop-only{display:inline!important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-widescreen-only{display:inline!important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline!important}}.is-inline-block{display:inline-block!important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block!important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-inline-block-tablet-only{display:inline-block!important}}@media screen and (max-width: 1023px){.is-inline-block-touch{display:inline-block!important}}@media screen and (min-width: 1024px){.is-inline-block-desktop{display:inline-block!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block!important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block!important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block!important}}.is-inline-flex{display:inline-flex!important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex!important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-inline-flex-tablet-only{display:inline-flex!important}}@media screen and (max-width: 1023px){.is-inline-flex-touch{display:inline-flex!important}}@media screen and (min-width: 1024px){.is-inline-flex-desktop{display:inline-flex!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex!important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex!important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex!important}}.is-hidden{display:none!important}.is-sr-only{border:none!important;clip:rect(0,0,0,0)!important;height:.01em!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:.01em!important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none!important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-hidden-tablet-only{display:none!important}}@media screen and (max-width: 1023px){.is-hidden-touch{display:none!important}}@media screen and (min-width: 1024px){.is-hidden-desktop{display:none!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-hidden-desktop-only{display:none!important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-hidden-widescreen-only{display:none!important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none!important}}.is-invisible{visibility:hidden!important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden!important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-invisible-tablet-only{visibility:hidden!important}}@media screen and (max-width: 1023px){.is-invisible-touch{visibility:hidden!important}}@media screen and (min-width: 1024px){.is-invisible-desktop{visibility:hidden!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden!important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden!important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden!important}}.hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}.hero .navbar{background:none}.hero .tabs ul{border-bottom:none}.hero.is-white{background-color:#fff;color:#0a0a0a}.hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-white strong{color:inherit}.hero.is-white .title{color:#0a0a0a}.hero.is-white .subtitle{color:#0a0a0ae6}.hero.is-white .subtitle a:not(.button),.hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1023px){.hero.is-white .navbar-menu{background-color:#fff}}.hero.is-white .navbar-item,.hero.is-white .navbar-link{color:#0a0a0ab3}.hero.is-white a.navbar-item:hover,.hero.is-white a.navbar-item.is-active,.hero.is-white .navbar-link:hover,.hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.hero.is-white .tabs a{color:#0a0a0a;opacity:.9}.hero.is-white .tabs a:hover{opacity:1}.hero.is-white .tabs li.is-active a{color:#fff!important;opacity:1}.hero.is-white .tabs.is-boxed a,.hero.is-white .tabs.is-toggle a{color:#0a0a0a}.hero.is-white .tabs.is-boxed a:hover,.hero.is-white .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-white .tabs.is-boxed li.is-active a,.hero.is-white .tabs.is-boxed li.is-active a:hover,.hero.is-white .tabs.is-toggle li.is-active a,.hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.hero.is-white.is-bold{background-image:linear-gradient(141deg,#e8e3e4 0%,hsl(0deg,0%,100%) 71%,white 100%)}@media screen and (max-width: 768px){.hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg,#e8e3e4 0%,hsl(0deg,0%,100%) 71%,white 100%)}}.hero.is-black{background-color:#0a0a0a;color:#fff}.hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-black strong{color:inherit}.hero.is-black .title{color:#fff}.hero.is-black .subtitle{color:#ffffffe6}.hero.is-black .subtitle a:not(.button),.hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-black .navbar-menu{background-color:#0a0a0a}}.hero.is-black .navbar-item,.hero.is-black .navbar-link{color:#ffffffb3}.hero.is-black a.navbar-item:hover,.hero.is-black a.navbar-item.is-active,.hero.is-black .navbar-link:hover,.hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}.hero.is-black .tabs a{color:#fff;opacity:.9}.hero.is-black .tabs a:hover{opacity:1}.hero.is-black .tabs li.is-active a{color:#0a0a0a!important;opacity:1}.hero.is-black .tabs.is-boxed a,.hero.is-black .tabs.is-toggle a{color:#fff}.hero.is-black .tabs.is-boxed a:hover,.hero.is-black .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-black .tabs.is-boxed li.is-active a,.hero.is-black .tabs.is-boxed li.is-active a:hover,.hero.is-black .tabs.is-toggle li.is-active a,.hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}.hero.is-black.is-bold{background-image:linear-gradient(141deg,black 0%,hsl(0deg,0%,4%) 71%,#181616 100%)}@media screen and (max-width: 768px){.hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg,black 0%,hsl(0deg,0%,4%) 71%,#181616 100%)}}.hero.is-light{background-color:#f5f5f5;color:#000000b3}.hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-light strong{color:inherit}.hero.is-light .title{color:#000000b3}.hero.is-light .subtitle{color:#000000e6}.hero.is-light .subtitle a:not(.button),.hero.is-light .subtitle strong{color:#000000b3}@media screen and (max-width: 1023px){.hero.is-light .navbar-menu{background-color:#f5f5f5}}.hero.is-light .navbar-item,.hero.is-light .navbar-link{color:#000000b3}.hero.is-light a.navbar-item:hover,.hero.is-light a.navbar-item.is-active,.hero.is-light .navbar-link:hover,.hero.is-light .navbar-link.is-active{background-color:#e8e8e8;color:#000000b3}.hero.is-light .tabs a{color:#000000b3;opacity:.9}.hero.is-light .tabs a:hover{opacity:1}.hero.is-light .tabs li.is-active a{color:#f5f5f5!important;opacity:1}.hero.is-light .tabs.is-boxed a,.hero.is-light .tabs.is-toggle a{color:#000000b3}.hero.is-light .tabs.is-boxed a:hover,.hero.is-light .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-light .tabs.is-boxed li.is-active a,.hero.is-light .tabs.is-boxed li.is-active a:hover,.hero.is-light .tabs.is-toggle li.is-active a,.hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:#000000b3;border-color:#000000b3;color:#f5f5f5}.hero.is-light.is-bold{background-image:linear-gradient(141deg,#dfd8d9 0%,hsl(0deg,0%,96%) 71%,white 100%)}@media screen and (max-width: 768px){.hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg,#dfd8d9 0%,hsl(0deg,0%,96%) 71%,white 100%)}}.hero.is-dark{background-color:#363636;color:#fff}.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-dark strong{color:inherit}.hero.is-dark .title{color:#fff}.hero.is-dark .subtitle{color:#ffffffe6}.hero.is-dark .subtitle a:not(.button),.hero.is-dark .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-dark .navbar-menu{background-color:#363636}}.hero.is-dark .navbar-item,.hero.is-dark .navbar-link{color:#ffffffb3}.hero.is-dark a.navbar-item:hover,.hero.is-dark a.navbar-item.is-active,.hero.is-dark .navbar-link:hover,.hero.is-dark .navbar-link.is-active{background-color:#292929;color:#fff}.hero.is-dark .tabs a{color:#fff;opacity:.9}.hero.is-dark .tabs a:hover{opacity:1}.hero.is-dark .tabs li.is-active a{color:#363636!important;opacity:1}.hero.is-dark .tabs.is-boxed a,.hero.is-dark .tabs.is-toggle a{color:#fff}.hero.is-dark .tabs.is-boxed a:hover,.hero.is-dark .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-dark .tabs.is-boxed li.is-active a,.hero.is-dark .tabs.is-boxed li.is-active a:hover,.hero.is-dark .tabs.is-toggle li.is-active a,.hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#363636}.hero.is-dark.is-bold{background-image:linear-gradient(141deg,#1f191a 0%,hsl(0deg,0%,21%) 71%,#46403f 100%)}@media screen and (max-width: 768px){.hero.is-dark.is-bold .navbar-menu{background-image:linear-gradient(141deg,#1f191a 0%,hsl(0deg,0%,21%) 71%,#46403f 100%)}}.hero.is-primary{background-color:#00d1b2;color:#fff}.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-primary strong{color:inherit}.hero.is-primary .title{color:#fff}.hero.is-primary .subtitle{color:#ffffffe6}.hero.is-primary .subtitle a:not(.button),.hero.is-primary .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-primary .navbar-menu{background-color:#00d1b2}}.hero.is-primary .navbar-item,.hero.is-primary .navbar-link{color:#ffffffb3}.hero.is-primary a.navbar-item:hover,.hero.is-primary a.navbar-item.is-active,.hero.is-primary .navbar-link:hover,.hero.is-primary .navbar-link.is-active{background-color:#00b89c;color:#fff}.hero.is-primary .tabs a{color:#fff;opacity:.9}.hero.is-primary .tabs a:hover{opacity:1}.hero.is-primary .tabs li.is-active a{color:#00d1b2!important;opacity:1}.hero.is-primary .tabs.is-boxed a,.hero.is-primary .tabs.is-toggle a{color:#fff}.hero.is-primary .tabs.is-boxed a:hover,.hero.is-primary .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-primary .tabs.is-boxed li.is-active a,.hero.is-primary .tabs.is-boxed li.is-active a:hover,.hero.is-primary .tabs.is-toggle li.is-active a,.hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#00d1b2}.hero.is-primary.is-bold{background-image:linear-gradient(141deg,#009e6c 0%,hsl(171deg,100%,41%) 71%,#00e7eb 100%)}@media screen and (max-width: 768px){.hero.is-primary.is-bold .navbar-menu{background-image:linear-gradient(141deg,#009e6c 0%,hsl(171deg,100%,41%) 71%,#00e7eb 100%)}}.hero.is-link{background-color:#485fc7;color:#fff}.hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-link strong{color:inherit}.hero.is-link .title{color:#fff}.hero.is-link .subtitle{color:#ffffffe6}.hero.is-link .subtitle a:not(.button),.hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-link .navbar-menu{background-color:#485fc7}}.hero.is-link .navbar-item,.hero.is-link .navbar-link{color:#ffffffb3}.hero.is-link a.navbar-item:hover,.hero.is-link a.navbar-item.is-active,.hero.is-link .navbar-link:hover,.hero.is-link .navbar-link.is-active{background-color:#3a51bb;color:#fff}.hero.is-link .tabs a{color:#fff;opacity:.9}.hero.is-link .tabs a:hover{opacity:1}.hero.is-link .tabs li.is-active a{color:#485fc7!important;opacity:1}.hero.is-link .tabs.is-boxed a,.hero.is-link .tabs.is-toggle a{color:#fff}.hero.is-link .tabs.is-boxed a:hover,.hero.is-link .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-link .tabs.is-boxed li.is-active a,.hero.is-link .tabs.is-boxed li.is-active a:hover,.hero.is-link .tabs.is-toggle li.is-active a,.hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#485fc7}.hero.is-link.is-bold{background-image:linear-gradient(141deg,#2959b3 0%,hsl(229deg,53%,53%) 71%,#5658d2 100%)}@media screen and (max-width: 768px){.hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg,#2959b3 0%,hsl(229deg,53%,53%) 71%,#5658d2 100%)}}.hero.is-info{background-color:#3e8ed0;color:#fff}.hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-info strong{color:inherit}.hero.is-info .title{color:#fff}.hero.is-info .subtitle{color:#ffffffe6}.hero.is-info .subtitle a:not(.button),.hero.is-info .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-info .navbar-menu{background-color:#3e8ed0}}.hero.is-info .navbar-item,.hero.is-info .navbar-link{color:#ffffffb3}.hero.is-info a.navbar-item:hover,.hero.is-info a.navbar-item.is-active,.hero.is-info .navbar-link:hover,.hero.is-info .navbar-link.is-active{background-color:#3082c5;color:#fff}.hero.is-info .tabs a{color:#fff;opacity:.9}.hero.is-info .tabs a:hover{opacity:1}.hero.is-info .tabs li.is-active a{color:#3e8ed0!important;opacity:1}.hero.is-info .tabs.is-boxed a,.hero.is-info .tabs.is-toggle a{color:#fff}.hero.is-info .tabs.is-boxed a:hover,.hero.is-info .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-info .tabs.is-boxed li.is-active a,.hero.is-info .tabs.is-boxed li.is-active a:hover,.hero.is-info .tabs.is-toggle li.is-active a,.hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3e8ed0}.hero.is-info.is-bold{background-image:linear-gradient(141deg,#208fbc 0%,hsl(207deg,61%,53%) 71%,#4d83db 100%)}@media screen and (max-width: 768px){.hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg,#208fbc 0%,hsl(207deg,61%,53%) 71%,#4d83db 100%)}}.hero.is-success{background-color:#48c78e;color:#fff}.hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-success strong{color:inherit}.hero.is-success .title{color:#fff}.hero.is-success .subtitle{color:#ffffffe6}.hero.is-success .subtitle a:not(.button),.hero.is-success .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-success .navbar-menu{background-color:#48c78e}}.hero.is-success .navbar-item,.hero.is-success .navbar-link{color:#ffffffb3}.hero.is-success a.navbar-item:hover,.hero.is-success a.navbar-item.is-active,.hero.is-success .navbar-link:hover,.hero.is-success .navbar-link.is-active{background-color:#3abb81;color:#fff}.hero.is-success .tabs a{color:#fff;opacity:.9}.hero.is-success .tabs a:hover{opacity:1}.hero.is-success .tabs li.is-active a{color:#48c78e!important;opacity:1}.hero.is-success .tabs.is-boxed a,.hero.is-success .tabs.is-toggle a{color:#fff}.hero.is-success .tabs.is-boxed a:hover,.hero.is-success .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-success .tabs.is-boxed li.is-active a,.hero.is-success .tabs.is-boxed li.is-active a:hover,.hero.is-success .tabs.is-toggle li.is-active a,.hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#48c78e}.hero.is-success.is-bold{background-image:linear-gradient(141deg,#29b35e 0%,hsl(153deg,53%,53%) 71%,#56d2af 100%)}@media screen and (max-width: 768px){.hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg,#29b35e 0%,hsl(153deg,53%,53%) 71%,#56d2af 100%)}}.hero.is-warning{background-color:#ffe08a;color:#000000b3}.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-warning strong{color:inherit}.hero.is-warning .title{color:#000000b3}.hero.is-warning .subtitle{color:#000000e6}.hero.is-warning .subtitle a:not(.button),.hero.is-warning .subtitle strong{color:#000000b3}@media screen and (max-width: 1023px){.hero.is-warning .navbar-menu{background-color:#ffe08a}}.hero.is-warning .navbar-item,.hero.is-warning .navbar-link{color:#000000b3}.hero.is-warning a.navbar-item:hover,.hero.is-warning a.navbar-item.is-active,.hero.is-warning .navbar-link:hover,.hero.is-warning .navbar-link.is-active{background-color:#ffd970;color:#000000b3}.hero.is-warning .tabs a{color:#000000b3;opacity:.9}.hero.is-warning .tabs a:hover{opacity:1}.hero.is-warning .tabs li.is-active a{color:#ffe08a!important;opacity:1}.hero.is-warning .tabs.is-boxed a,.hero.is-warning .tabs.is-toggle a{color:#000000b3}.hero.is-warning .tabs.is-boxed a:hover,.hero.is-warning .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-warning .tabs.is-boxed li.is-active a,.hero.is-warning .tabs.is-boxed li.is-active a:hover,.hero.is-warning .tabs.is-toggle li.is-active a,.hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:#000000b3;border-color:#000000b3;color:#ffe08a}.hero.is-warning.is-bold{background-image:linear-gradient(141deg,#ffb657 0%,hsl(44deg,100%,77%) 71%,#fff6a3 100%)}@media screen and (max-width: 768px){.hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg,#ffb657 0%,hsl(44deg,100%,77%) 71%,#fff6a3 100%)}}.hero.is-danger{background-color:#f14668;color:#fff}.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-danger strong{color:inherit}.hero.is-danger .title{color:#fff}.hero.is-danger .subtitle{color:#ffffffe6}.hero.is-danger .subtitle a:not(.button),.hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-danger .navbar-menu{background-color:#f14668}}.hero.is-danger .navbar-item,.hero.is-danger .navbar-link{color:#ffffffb3}.hero.is-danger a.navbar-item:hover,.hero.is-danger a.navbar-item.is-active,.hero.is-danger .navbar-link:hover,.hero.is-danger .navbar-link.is-active{background-color:#ef2e55;color:#fff}.hero.is-danger .tabs a{color:#fff;opacity:.9}.hero.is-danger .tabs a:hover{opacity:1}.hero.is-danger .tabs li.is-active a{color:#f14668!important;opacity:1}.hero.is-danger .tabs.is-boxed a,.hero.is-danger .tabs.is-toggle a{color:#fff}.hero.is-danger .tabs.is-boxed a:hover,.hero.is-danger .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-danger .tabs.is-boxed li.is-active a,.hero.is-danger .tabs.is-boxed li.is-active a:hover,.hero.is-danger .tabs.is-toggle li.is-active a,.hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#f14668}.hero.is-danger.is-bold{background-image:linear-gradient(141deg,#fa0a62 0%,hsl(348deg,86%,61%) 71%,#f7595f 100%)}@media screen and (max-width: 768px){.hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg,#fa0a62 0%,hsl(348deg,86%,61%) 71%,#f7595f 100%)}}.hero.is-small .hero-body{padding:1.5rem}@media screen and (min-width: 769px),print{.hero.is-medium .hero-body{padding:9rem 4.5rem}}@media screen and (min-width: 769px),print{.hero.is-large .hero-body{padding:18rem 6rem}}.hero.is-halfheight .hero-body,.hero.is-fullheight .hero-body,.hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}.hero.is-halfheight .hero-body>.container,.hero.is-fullheight .hero-body>.container,.hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}.hero.is-halfheight{min-height:50vh}.hero.is-fullheight{min-height:100vh}.hero-video{overflow:hidden}.hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%,-50%,0)}.hero-video.is-transparent{opacity:.3}@media screen and (max-width: 768px){.hero-video{display:none}}.hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){.hero-buttons .button{display:flex}.hero-buttons .button:not(:last-child){margin-bottom:.75rem}}@media screen and (min-width: 769px),print{.hero-buttons{display:flex;justify-content:center}.hero-buttons .button:not(:last-child){margin-right:1.5rem}}.hero-head,.hero-foot{flex-grow:0;flex-shrink:0}.hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}@media screen and (min-width: 769px),print{.hero-body{padding:3rem}}.section{padding:3rem 1.5rem}@media screen and (min-width: 1024px){.section{padding:3rem}.section.is-medium{padding:9rem 4.5rem}.section.is-large{padding:18rem 6rem}}.footer{background-color:#fafafa;padding:3rem 1.5rem 6rem}.switch[type=checkbox]{outline:0;user-select:none;display:inline-block;position:absolute;opacity:0}.switch[type=checkbox]:focus+label:before,.switch[type=checkbox]:focus+label:before,.switch[type=checkbox]:focus+label:after,.switch[type=checkbox]:focus+label:after{outline:1px dotted hsl(0deg,0%,71%)}.switch[type=checkbox][disabled]{cursor:not-allowed}.switch[type=checkbox][disabled]+label{opacity:.5}.switch[type=checkbox][disabled]+label:before,.switch[type=checkbox][disabled]+label:before{opacity:.5}.switch[type=checkbox][disabled]+label:after,.switch[type=checkbox][disabled]+label:after{opacity:.5}.switch[type=checkbox][disabled]+label:hover{cursor:not-allowed}.switch[type=checkbox]+label{position:relative;display:inline-flex;align-items:center;justify-content:flex-start;font-size:1rem;height:2.5em;line-height:1.5;padding-left:3.5rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox]+label:before,.switch[type=checkbox]+label:before{position:absolute;display:block;top:calc(50% - .75rem);left:0;width:3rem;height:1.5rem;border:.1rem solid transparent;border-radius:4px;background:hsl(0deg,0%,71%);content:""}.switch[type=checkbox]+label:after,.switch[type=checkbox]+label:after{display:block;position:absolute;top:calc(50% - .5rem);left:.25rem;width:1rem;height:1rem;transform:translateZ(0);border-radius:4px;background:hsl(0deg,0%,100%);transition:all .25s ease-out;content:""}.switch[type=checkbox]+label .switch-active,.switch[type=checkbox]+label .switch-inactive{font-size:.9rem;z-index:1;margin-top:-4px}.switch[type=checkbox]+label.has-text-inside .switch-inactive{margin-left:-1.925rem}.switch[type=checkbox]+label.has-text-inside .switch-active{margin-left:-3.25rem}.switch[type=checkbox].is-rtl+label{padding-left:0;padding-right:3.5rem}.switch[type=checkbox].is-rtl+label:before,.switch[type=checkbox].is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-rtl+label:after,.switch[type=checkbox].is-rtl+label:after{left:auto;right:1.625rem}.switch[type=checkbox]:checked+label:before,.switch[type=checkbox]:checked+label:before{background:hsl(171deg,100%,41%)}.switch[type=checkbox]:checked+label:after{left:1.625rem}.switch[type=checkbox]:checked.is-rtl+label:after,.switch[type=checkbox]:checked.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-outlined+label:before,.switch[type=checkbox].is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-outlined+label:after,.switch[type=checkbox].is-outlined+label:after{background:hsl(0deg,0%,71%)}.switch[type=checkbox].is-outlined:checked+label:before,.switch[type=checkbox].is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-outlined:checked+label:after,.switch[type=checkbox].is-outlined:checked+label:after{background:hsl(171deg,100%,41%)}.switch[type=checkbox].is-thin+label:before,.switch[type=checkbox].is-thin+label:before{top:.5454545456rem;height:.375rem}.switch[type=checkbox].is-thin+label:after,.switch[type=checkbox].is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-rounded+label:before,.switch[type=checkbox].is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-rounded+label:after,.switch[type=checkbox].is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-small+label{position:relative;display:inline-flex;align-items:center;justify-content:flex-start;font-size:.75rem;height:2.5em;line-height:1.5;padding-left:2.75rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-small+label:before,.switch[type=checkbox].is-small+label:before{position:absolute;display:block;top:calc(50% - .5625rem);left:0;width:2.25rem;height:1.125rem;border:.1rem solid transparent;border-radius:4px;background:hsl(0deg,0%,71%);content:""}.switch[type=checkbox].is-small+label:after,.switch[type=checkbox].is-small+label:after{display:block;position:absolute;top:calc(50% - .3125rem);left:.25rem;width:.625rem;height:.625rem;transform:translateZ(0);border-radius:4px;background:hsl(0deg,0%,100%);transition:all .25s ease-out;content:""}.switch[type=checkbox].is-small+label .switch-active,.switch[type=checkbox].is-small+label .switch-inactive{font-size:.65rem;z-index:1;margin-top:-4px}.switch[type=checkbox].is-small+label.has-text-inside .switch-inactive{margin-left:-1.55rem}.switch[type=checkbox].is-small+label.has-text-inside .switch-active{margin-left:-2.5rem}.switch[type=checkbox].is-small.is-rtl+label{padding-left:0;padding-right:2.75rem}.switch[type=checkbox].is-small.is-rtl+label:before,.switch[type=checkbox].is-small.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-small.is-rtl+label:after,.switch[type=checkbox].is-small.is-rtl+label:after{left:auto;right:1.25rem}.switch[type=checkbox].is-small:checked+label:before,.switch[type=checkbox].is-small:checked+label:before{background:hsl(171deg,100%,41%)}.switch[type=checkbox].is-small:checked+label:after{left:1.25rem}.switch[type=checkbox].is-small:checked.is-rtl+label:after,.switch[type=checkbox].is-small:checked.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-small.is-outlined+label:before,.switch[type=checkbox].is-small.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-small.is-outlined+label:after,.switch[type=checkbox].is-small.is-outlined+label:after{background:hsl(0deg,0%,71%)}.switch[type=checkbox].is-small.is-outlined:checked+label:before,.switch[type=checkbox].is-small.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-small.is-outlined:checked+label:after,.switch[type=checkbox].is-small.is-outlined:checked+label:after{background:hsl(171deg,100%,41%)}.switch[type=checkbox].is-small.is-thin+label:before,.switch[type=checkbox].is-small.is-thin+label:before{top:.4090909093rem;height:.28125rem}.switch[type=checkbox].is-small.is-thin+label:after,.switch[type=checkbox].is-small.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-small.is-rounded+label:before,.switch[type=checkbox].is-small.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-small.is-rounded+label:after,.switch[type=checkbox].is-small.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-medium+label{position:relative;display:inline-flex;align-items:center;justify-content:flex-start;font-size:1.25rem;height:2.5em;line-height:1.5;padding-left:4.25rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-medium+label:before,.switch[type=checkbox].is-medium+label:before{position:absolute;display:block;top:calc(50% - .9375rem);left:0;width:3.75rem;height:1.875rem;border:.1rem solid transparent;border-radius:4px;background:hsl(0deg,0%,71%);content:""}.switch[type=checkbox].is-medium+label:after,.switch[type=checkbox].is-medium+label:after{display:block;position:absolute;top:calc(50% - .6875rem);left:.25rem;width:1.375rem;height:1.375rem;transform:translateZ(0);border-radius:4px;background:hsl(0deg,0%,100%);transition:all .25s ease-out;content:""}.switch[type=checkbox].is-medium+label .switch-active,.switch[type=checkbox].is-medium+label .switch-inactive{font-size:1.15rem;z-index:1;margin-top:-4px}.switch[type=checkbox].is-medium+label.has-text-inside .switch-inactive{margin-left:-2.3rem}.switch[type=checkbox].is-medium+label.has-text-inside .switch-active{margin-left:-4rem}.switch[type=checkbox].is-medium.is-rtl+label{padding-left:0;padding-right:4.25rem}.switch[type=checkbox].is-medium.is-rtl+label:before,.switch[type=checkbox].is-medium.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-medium.is-rtl+label:after,.switch[type=checkbox].is-medium.is-rtl+label:after{left:auto;right:2rem}.switch[type=checkbox].is-medium:checked+label:before,.switch[type=checkbox].is-medium:checked+label:before{background:hsl(171deg,100%,41%)}.switch[type=checkbox].is-medium:checked+label:after{left:2rem}.switch[type=checkbox].is-medium:checked.is-rtl+label:after,.switch[type=checkbox].is-medium:checked.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-medium.is-outlined+label:before,.switch[type=checkbox].is-medium.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-medium.is-outlined+label:after,.switch[type=checkbox].is-medium.is-outlined+label:after{background:hsl(0deg,0%,71%)}.switch[type=checkbox].is-medium.is-outlined:checked+label:before,.switch[type=checkbox].is-medium.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-medium.is-outlined:checked+label:after,.switch[type=checkbox].is-medium.is-outlined:checked+label:after{background:hsl(171deg,100%,41%)}.switch[type=checkbox].is-medium.is-thin+label:before,.switch[type=checkbox].is-medium.is-thin+label:before{top:.6818181819rem;height:.46875rem}.switch[type=checkbox].is-medium.is-thin+label:after,.switch[type=checkbox].is-medium.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-medium.is-rounded+label:before,.switch[type=checkbox].is-medium.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-medium.is-rounded+label:after,.switch[type=checkbox].is-medium.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-large+label{position:relative;display:inline-flex;align-items:center;justify-content:flex-start;font-size:1.5rem;height:2.5em;line-height:1.5;padding-left:5rem;padding-top:.2rem;cursor:pointer}.switch[type=checkbox].is-large+label:before,.switch[type=checkbox].is-large+label:before{position:absolute;display:block;top:calc(50% - 1.125rem);left:0;width:4.5rem;height:2.25rem;border:.1rem solid transparent;border-radius:4px;background:hsl(0deg,0%,71%);content:""}.switch[type=checkbox].is-large+label:after,.switch[type=checkbox].is-large+label:after{display:block;position:absolute;top:calc(50% - .875rem);left:.25rem;width:1.75rem;height:1.75rem;transform:translateZ(0);border-radius:4px;background:hsl(0deg,0%,100%);transition:all .25s ease-out;content:""}.switch[type=checkbox].is-large+label .switch-active,.switch[type=checkbox].is-large+label .switch-inactive{font-size:1.4rem;z-index:1;margin-top:-4px}.switch[type=checkbox].is-large+label.has-text-inside .switch-inactive{margin-left:-2.675rem}.switch[type=checkbox].is-large+label.has-text-inside .switch-active{margin-left:-4.75rem}.switch[type=checkbox].is-large.is-rtl+label{padding-left:0;padding-right:5rem}.switch[type=checkbox].is-large.is-rtl+label:before,.switch[type=checkbox].is-large.is-rtl+label:before{left:auto;right:0}.switch[type=checkbox].is-large.is-rtl+label:after,.switch[type=checkbox].is-large.is-rtl+label:after{left:auto;right:2.375rem}.switch[type=checkbox].is-large:checked+label:before,.switch[type=checkbox].is-large:checked+label:before{background:hsl(171deg,100%,41%)}.switch[type=checkbox].is-large:checked+label:after{left:2.375rem}.switch[type=checkbox].is-large:checked.is-rtl+label:after,.switch[type=checkbox].is-large:checked.is-rtl+label:after{left:auto;right:.25rem}.switch[type=checkbox].is-large.is-outlined+label:before,.switch[type=checkbox].is-large.is-outlined+label:before{background-color:transparent;border-color:#b5b5b5}.switch[type=checkbox].is-large.is-outlined+label:after,.switch[type=checkbox].is-large.is-outlined+label:after{background:hsl(0deg,0%,71%)}.switch[type=checkbox].is-large.is-outlined:checked+label:before,.switch[type=checkbox].is-large.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2}.switch[type=checkbox].is-large.is-outlined:checked+label:after,.switch[type=checkbox].is-large.is-outlined:checked+label:after{background:hsl(171deg,100%,41%)}.switch[type=checkbox].is-large.is-thin+label:before,.switch[type=checkbox].is-large.is-thin+label:before{top:.8181818183rem;height:.5625rem}.switch[type=checkbox].is-large.is-thin+label:after,.switch[type=checkbox].is-large.is-thin+label:after{box-shadow:0 0 3px #7a7a7a}.switch[type=checkbox].is-large.is-rounded+label:before,.switch[type=checkbox].is-large.is-rounded+label:before{border-radius:24px}.switch[type=checkbox].is-large.is-rounded+label:after,.switch[type=checkbox].is-large.is-rounded+label:after{border-radius:50%}.switch[type=checkbox].is-white+label .switch-active{display:none}.switch[type=checkbox].is-white+label .switch-inactive{display:inline-block}.switch[type=checkbox].is-white:checked+label:before,.switch[type=checkbox].is-white:checked+label:before{background:hsl(0deg,0%,100%)}.switch[type=checkbox].is-white:checked+label .switch-active{display:inline-block}.switch[type=checkbox].is-white:checked+label .switch-inactive{display:none}.switch[type=checkbox].is-white.is-outlined:checked+label:before,.switch[type=checkbox].is-white.is-outlined:checked+label:before{background-color:transparent;border-color:#fff!important}.switch[type=checkbox].is-white.is-outlined:checked+label:after,.switch[type=checkbox].is-white.is-outlined:checked+label:after{background:hsl(0deg,0%,100%)}.switch[type=checkbox].is-white.is-thin.is-outlined+label:after,.switch[type=checkbox].is-white.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-white+label:before,.switch[type=checkbox].is-unchecked-white+label:before{background:hsl(0deg,0%,100%)}.switch[type=checkbox].is-unchecked-white.is-outlined+label:before,.switch[type=checkbox].is-unchecked-white.is-outlined+label:before{background-color:transparent;border-color:#fff!important}.switch[type=checkbox].is-unchecked-white.is-outlined+label:after,.switch[type=checkbox].is-unchecked-white.is-outlined+label:after{background:hsl(0deg,0%,100%)}.switch[type=checkbox].is-black+label .switch-active{display:none}.switch[type=checkbox].is-black+label .switch-inactive{display:inline-block}.switch[type=checkbox].is-black:checked+label:before,.switch[type=checkbox].is-black:checked+label:before{background:hsl(0deg,0%,4%)}.switch[type=checkbox].is-black:checked+label .switch-active{display:inline-block}.switch[type=checkbox].is-black:checked+label .switch-inactive{display:none}.switch[type=checkbox].is-black.is-outlined:checked+label:before,.switch[type=checkbox].is-black.is-outlined:checked+label:before{background-color:transparent;border-color:#0a0a0a!important}.switch[type=checkbox].is-black.is-outlined:checked+label:after,.switch[type=checkbox].is-black.is-outlined:checked+label:after{background:hsl(0deg,0%,4%)}.switch[type=checkbox].is-black.is-thin.is-outlined+label:after,.switch[type=checkbox].is-black.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-black+label:before,.switch[type=checkbox].is-unchecked-black+label:before{background:hsl(0deg,0%,4%)}.switch[type=checkbox].is-unchecked-black.is-outlined+label:before,.switch[type=checkbox].is-unchecked-black.is-outlined+label:before{background-color:transparent;border-color:#0a0a0a!important}.switch[type=checkbox].is-unchecked-black.is-outlined+label:after,.switch[type=checkbox].is-unchecked-black.is-outlined+label:after{background:hsl(0deg,0%,4%)}.switch[type=checkbox].is-light+label .switch-active{display:none}.switch[type=checkbox].is-light+label .switch-inactive{display:inline-block}.switch[type=checkbox].is-light:checked+label:before,.switch[type=checkbox].is-light:checked+label:before{background:hsl(0deg,0%,96%)}.switch[type=checkbox].is-light:checked+label .switch-active{display:inline-block}.switch[type=checkbox].is-light:checked+label .switch-inactive{display:none}.switch[type=checkbox].is-light.is-outlined:checked+label:before,.switch[type=checkbox].is-light.is-outlined:checked+label:before{background-color:transparent;border-color:#f5f5f5!important}.switch[type=checkbox].is-light.is-outlined:checked+label:after,.switch[type=checkbox].is-light.is-outlined:checked+label:after{background:hsl(0deg,0%,96%)}.switch[type=checkbox].is-light.is-thin.is-outlined+label:after,.switch[type=checkbox].is-light.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-light+label:before,.switch[type=checkbox].is-unchecked-light+label:before{background:hsl(0deg,0%,96%)}.switch[type=checkbox].is-unchecked-light.is-outlined+label:before,.switch[type=checkbox].is-unchecked-light.is-outlined+label:before{background-color:transparent;border-color:#f5f5f5!important}.switch[type=checkbox].is-unchecked-light.is-outlined+label:after,.switch[type=checkbox].is-unchecked-light.is-outlined+label:after{background:hsl(0deg,0%,96%)}.switch[type=checkbox].is-dark+label .switch-active{display:none}.switch[type=checkbox].is-dark+label .switch-inactive{display:inline-block}.switch[type=checkbox].is-dark:checked+label:before,.switch[type=checkbox].is-dark:checked+label:before{background:hsl(0deg,0%,21%)}.switch[type=checkbox].is-dark:checked+label .switch-active{display:inline-block}.switch[type=checkbox].is-dark:checked+label .switch-inactive{display:none}.switch[type=checkbox].is-dark.is-outlined:checked+label:before,.switch[type=checkbox].is-dark.is-outlined:checked+label:before{background-color:transparent;border-color:#363636!important}.switch[type=checkbox].is-dark.is-outlined:checked+label:after,.switch[type=checkbox].is-dark.is-outlined:checked+label:after{background:hsl(0deg,0%,21%)}.switch[type=checkbox].is-dark.is-thin.is-outlined+label:after,.switch[type=checkbox].is-dark.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-dark+label:before,.switch[type=checkbox].is-unchecked-dark+label:before{background:hsl(0deg,0%,21%)}.switch[type=checkbox].is-unchecked-dark.is-outlined+label:before,.switch[type=checkbox].is-unchecked-dark.is-outlined+label:before{background-color:transparent;border-color:#363636!important}.switch[type=checkbox].is-unchecked-dark.is-outlined+label:after,.switch[type=checkbox].is-unchecked-dark.is-outlined+label:after{background:hsl(0deg,0%,21%)}.switch[type=checkbox].is-primary+label .switch-active{display:none}.switch[type=checkbox].is-primary+label .switch-inactive{display:inline-block}.switch[type=checkbox].is-primary:checked+label:before,.switch[type=checkbox].is-primary:checked+label:before{background:hsl(171deg,100%,41%)}.switch[type=checkbox].is-primary:checked+label .switch-active{display:inline-block}.switch[type=checkbox].is-primary:checked+label .switch-inactive{display:none}.switch[type=checkbox].is-primary.is-outlined:checked+label:before,.switch[type=checkbox].is-primary.is-outlined:checked+label:before{background-color:transparent;border-color:#00d1b2!important}.switch[type=checkbox].is-primary.is-outlined:checked+label:after,.switch[type=checkbox].is-primary.is-outlined:checked+label:after{background:hsl(171deg,100%,41%)}.switch[type=checkbox].is-primary.is-thin.is-outlined+label:after,.switch[type=checkbox].is-primary.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-primary+label:before,.switch[type=checkbox].is-unchecked-primary+label:before{background:hsl(171deg,100%,41%)}.switch[type=checkbox].is-unchecked-primary.is-outlined+label:before,.switch[type=checkbox].is-unchecked-primary.is-outlined+label:before{background-color:transparent;border-color:#00d1b2!important}.switch[type=checkbox].is-unchecked-primary.is-outlined+label:after,.switch[type=checkbox].is-unchecked-primary.is-outlined+label:after{background:hsl(171deg,100%,41%)}.switch[type=checkbox].is-link+label .switch-active{display:none}.switch[type=checkbox].is-link+label .switch-inactive{display:inline-block}.switch[type=checkbox].is-link:checked+label:before,.switch[type=checkbox].is-link:checked+label:before{background:hsl(229deg,53%,53%)}.switch[type=checkbox].is-link:checked+label .switch-active{display:inline-block}.switch[type=checkbox].is-link:checked+label .switch-inactive{display:none}.switch[type=checkbox].is-link.is-outlined:checked+label:before,.switch[type=checkbox].is-link.is-outlined:checked+label:before{background-color:transparent;border-color:#485fc7!important}.switch[type=checkbox].is-link.is-outlined:checked+label:after,.switch[type=checkbox].is-link.is-outlined:checked+label:after{background:hsl(229deg,53%,53%)}.switch[type=checkbox].is-link.is-thin.is-outlined+label:after,.switch[type=checkbox].is-link.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-link+label:before,.switch[type=checkbox].is-unchecked-link+label:before{background:hsl(229deg,53%,53%)}.switch[type=checkbox].is-unchecked-link.is-outlined+label:before,.switch[type=checkbox].is-unchecked-link.is-outlined+label:before{background-color:transparent;border-color:#485fc7!important}.switch[type=checkbox].is-unchecked-link.is-outlined+label:after,.switch[type=checkbox].is-unchecked-link.is-outlined+label:after{background:hsl(229deg,53%,53%)}.switch[type=checkbox].is-info+label .switch-active{display:none}.switch[type=checkbox].is-info+label .switch-inactive{display:inline-block}.switch[type=checkbox].is-info:checked+label:before,.switch[type=checkbox].is-info:checked+label:before{background:hsl(207deg,61%,53%)}.switch[type=checkbox].is-info:checked+label .switch-active{display:inline-block}.switch[type=checkbox].is-info:checked+label .switch-inactive{display:none}.switch[type=checkbox].is-info.is-outlined:checked+label:before,.switch[type=checkbox].is-info.is-outlined:checked+label:before{background-color:transparent;border-color:#3e8ed0!important}.switch[type=checkbox].is-info.is-outlined:checked+label:after,.switch[type=checkbox].is-info.is-outlined:checked+label:after{background:hsl(207deg,61%,53%)}.switch[type=checkbox].is-info.is-thin.is-outlined+label:after,.switch[type=checkbox].is-info.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-info+label:before,.switch[type=checkbox].is-unchecked-info+label:before{background:hsl(207deg,61%,53%)}.switch[type=checkbox].is-unchecked-info.is-outlined+label:before,.switch[type=checkbox].is-unchecked-info.is-outlined+label:before{background-color:transparent;border-color:#3e8ed0!important}.switch[type=checkbox].is-unchecked-info.is-outlined+label:after,.switch[type=checkbox].is-unchecked-info.is-outlined+label:after{background:hsl(207deg,61%,53%)}.switch[type=checkbox].is-success+label .switch-active{display:none}.switch[type=checkbox].is-success+label .switch-inactive{display:inline-block}.switch[type=checkbox].is-success:checked+label:before,.switch[type=checkbox].is-success:checked+label:before{background:hsl(153deg,53%,53%)}.switch[type=checkbox].is-success:checked+label .switch-active{display:inline-block}.switch[type=checkbox].is-success:checked+label .switch-inactive{display:none}.switch[type=checkbox].is-success.is-outlined:checked+label:before,.switch[type=checkbox].is-success.is-outlined:checked+label:before{background-color:transparent;border-color:#48c78e!important}.switch[type=checkbox].is-success.is-outlined:checked+label:after,.switch[type=checkbox].is-success.is-outlined:checked+label:after{background:hsl(153deg,53%,53%)}.switch[type=checkbox].is-success.is-thin.is-outlined+label:after,.switch[type=checkbox].is-success.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-success+label:before,.switch[type=checkbox].is-unchecked-success+label:before{background:hsl(153deg,53%,53%)}.switch[type=checkbox].is-unchecked-success.is-outlined+label:before,.switch[type=checkbox].is-unchecked-success.is-outlined+label:before{background-color:transparent;border-color:#48c78e!important}.switch[type=checkbox].is-unchecked-success.is-outlined+label:after,.switch[type=checkbox].is-unchecked-success.is-outlined+label:after{background:hsl(153deg,53%,53%)}.switch[type=checkbox].is-warning+label .switch-active{display:none}.switch[type=checkbox].is-warning+label .switch-inactive{display:inline-block}.switch[type=checkbox].is-warning:checked+label:before,.switch[type=checkbox].is-warning:checked+label:before{background:hsl(44deg,100%,77%)}.switch[type=checkbox].is-warning:checked+label .switch-active{display:inline-block}.switch[type=checkbox].is-warning:checked+label .switch-inactive{display:none}.switch[type=checkbox].is-warning.is-outlined:checked+label:before,.switch[type=checkbox].is-warning.is-outlined:checked+label:before{background-color:transparent;border-color:#ffe08a!important}.switch[type=checkbox].is-warning.is-outlined:checked+label:after,.switch[type=checkbox].is-warning.is-outlined:checked+label:after{background:hsl(44deg,100%,77%)}.switch[type=checkbox].is-warning.is-thin.is-outlined+label:after,.switch[type=checkbox].is-warning.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-warning+label:before,.switch[type=checkbox].is-unchecked-warning+label:before{background:hsl(44deg,100%,77%)}.switch[type=checkbox].is-unchecked-warning.is-outlined+label:before,.switch[type=checkbox].is-unchecked-warning.is-outlined+label:before{background-color:transparent;border-color:#ffe08a!important}.switch[type=checkbox].is-unchecked-warning.is-outlined+label:after,.switch[type=checkbox].is-unchecked-warning.is-outlined+label:after{background:hsl(44deg,100%,77%)}.switch[type=checkbox].is-danger+label .switch-active{display:none}.switch[type=checkbox].is-danger+label .switch-inactive{display:inline-block}.switch[type=checkbox].is-danger:checked+label:before,.switch[type=checkbox].is-danger:checked+label:before{background:hsl(348deg,86%,61%)}.switch[type=checkbox].is-danger:checked+label .switch-active{display:inline-block}.switch[type=checkbox].is-danger:checked+label .switch-inactive{display:none}.switch[type=checkbox].is-danger.is-outlined:checked+label:before,.switch[type=checkbox].is-danger.is-outlined:checked+label:before{background-color:transparent;border-color:#f14668!important}.switch[type=checkbox].is-danger.is-outlined:checked+label:after,.switch[type=checkbox].is-danger.is-outlined:checked+label:after{background:hsl(348deg,86%,61%)}.switch[type=checkbox].is-danger.is-thin.is-outlined+label:after,.switch[type=checkbox].is-danger.is-thin.is-outlined+label:after{box-shadow:none}.switch[type=checkbox].is-unchecked-danger+label:before,.switch[type=checkbox].is-unchecked-danger+label:before{background:hsl(348deg,86%,61%)}.switch[type=checkbox].is-unchecked-danger.is-outlined+label:before,.switch[type=checkbox].is-unchecked-danger.is-outlined+label:before{background-color:transparent;border-color:#f14668!important}.switch[type=checkbox].is-unchecked-danger.is-outlined+label:after,.switch[type=checkbox].is-unchecked-danger.is-outlined+label:after{background:hsl(348deg,86%,61%)}.field-body .switch[type=checkbox]+label{margin-top:.375em}.slider{min-width:250px;width:100%;margin-top:16px;margin-bottom:16px;--slider-height: 4px;--slider-connect-bg: hsl(0, 0%, 21%);--slider-tooltip-bg: hsl(0, 0%, 21%);--slider-handle-ring-color: #3b82f630;--slider-handle-shadow: .5px .5px .5px .5px rgba(0, 0, 0, .32);--slider-handle-shadow-active: .5px .5px .5px .5px rgba(0, 0, 0, .42)}.seek-slider{min-width:250px;max-width:500px;width:100%!important;box-shadow:0 4px 8px #0003,0 6px 20px #00000030;margin:0 auto 16px;--slider-height: 4px;--slider-connect-bg: hsl(171, 100%, 41%);--slider-tooltip-bg: hsl(171, 100%, 41%);--slider-handle-bg: hsl(171, 100%, 41%);--slider-handle-border: 0;--slider-handle-width: 10px;--slider-handle-height: 10px;--slider-handle-radius: 9999px;--slider-handle-shadow: .5px .5px .5px .5px rgba(0, 0, 0, .32);--slider-handle-shadow-active: .5px .5px .5px .5px rgba(0, 0, 0, .42);--slider-handle-ring-width: 3px}.progress-bar{background-color:#3e8ed0;border-radius:9999px;height:4px}.media.with-progress h2:last-of-type{margin-bottom:6px}.media.with-progress{margin-top:0}a.navbar-item{outline:0;line-height:1.5;padding:.5rem 1rem}.fd-expanded{flex-grow:1;flex-shrink:1}.fd-margin-left-auto{margin-left:auto}.fd-has-action{cursor:pointer}.fd-is-movable{cursor:move}.fd-has-margin-top{margin-top:24px}.fd-has-margin-bottom{margin-bottom:24px}.fd-remove-padding-bottom{padding-bottom:0}.fd-has-padding-left-right{padding-left:24px;padding-right:24px}.fd-is-square .button{height:27px;min-width:27px;padding-left:.25rem;padding-right:.25rem}.fd-is-text-clipped{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.fd-tabs-section{padding-bottom:3px;padding-top:3px;background:white;top:3.25rem;z-index:20;position:fixed;width:100%}section.fd-tabs-section+section.fd-content{margin-top:24px}section.hero+section.fd-content{padding-top:0}.fd-progress-bar{top:52px!important}.fd-has-shadow{box-shadow:0 4px 8px #0003,0 6px 20px #00000030}.fd-page{margin-top:3.25rem;margin-bottom:3.25rem}.fd-page-with-tabs{margin-top:6.25rem!important;margin-bottom:3.25rem}.fd-content-with-option{min-height:calc(100vh - 6.5rem)}.fd-is-fullheight{height:calc(100vh - 6.5rem);display:flex;flex-direction:column;justify-content:center}.fd-is-fullheight .fd-is-expanded{max-height:calc(100vh - 25rem);padding:1.5rem;overflow:hidden;flex-grow:1;flex-shrink:1;display:flex}.fd-cover-image{display:flex;flex-grow:1;flex-shrink:1;min-width:0;min-height:0;overflow:hidden;padding:10px}.fd-cover-image img{object-fit:contain;object-position:center bottom;filter:drop-shadow(0px 0px 1px rgba(0,0,0,.3)) drop-shadow(0px 0px 10px rgba(0,0,0,.3));flex-grow:1;flex-shrink:1;height:unset;width:unset;max-width:unset;max-height:unset;min-width:0;min-height:0;overflow:hidden}.sortable-chosen .media-right{visibility:hidden}.sortable-ghost h1,.sortable-ghost h2{color:#ff3860!important}.media:first-of-type{padding-top:17px;margin-top:16px}.fade-leave-active{transition:opacity .2s ease}.fade-enter-active{transition:opacity .5s ease}.fade-enter-from,.fade-leave-to{opacity:0}.fade-enter-to,.fade-leave-from{opacity:1}.title:not(.is-spaced)+.subtitle{margin-top:-1.3rem!important}.title:not(.is-spaced)+.subtitle+.subtitle{margin-top:-1.3rem!important}.fd-modal-card{overflow:visible}.fd-modal-card .card-content{max-height:calc(100vh - 200px);overflow:auto}.fd-modal-card .card{margin-left:16px;margin-right:16px}.dropdown-item a{display:block}.dropdown-item:hover{background-color:#f5f5f5}.navbar-item .fd-navbar-item-level2{padding-left:1.5rem}hr.fd-navbar-divider{margin:12px 0}@media only screen and (min-width: 1024px){.navbar-dropdown{max-height:calc(100vh - 8.5rem);overflow:auto}}.fd-bottom-navbar .navbar-menu{max-height:calc(100vh - 7.5rem);overflow:scroll}@media screen and (max-width: 768px){.buttons.fd-is-centered-mobile{justify-content:center}.buttons.fd-is-centered-mobile:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}}.column.fd-has-cover{max-height:150px;max-width:150px}@media screen and (max-width: 768px){.column.fd-has-cover{margin:auto}}@media screen and (min-width: 769px){.column.fd-has-cover{margin:auto 0 auto auto}}.fd-overlay-fullscreen{z-index:25;background-color:#0a0a0a33;position:fixed}.hero-body{padding:1.5rem!important}.slider-target,.slider-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(0,0,0,0);box-sizing:border-box;touch-action:none;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none;user-select:none}.slider-target{position:relative}.slider-base,.slider-connects{height:100%;position:relative;width:100%;z-index:1}.slider-connects{overflow:hidden;z-index:0}.slider-connect,.slider-origin{height:100%;position:absolute;right:0;top:0;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform-style:preserve-3d;transform-style:flat;width:100%;will-change:transform;z-index:1}.slider-txt-dir-rtl.slider-horizontal .slider-origin{left:0;right:auto}.slider-vertical .slider-origin{top:-100%;width:0}.slider-horizontal .slider-origin{height:0}.slider-handle{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute}.slider-touch-area{height:100%;width:100%}.slider-state-tap .slider-connect,.slider-state-tap .slider-origin{transition:transform .3s}.slider-state-drag *{cursor:inherit!important}.slider-tooltip-drag .slider-tooltip,.slider-tooltip-focus .slider-tooltip{display:none!important}.slider-tooltip-drag .slider-active .slider-tooltip,.slider-tooltip-drag.slider-state-drag .slider-tooltip:not(.slider-tooltip-hidden),.slider-tooltip-focus.slider-focused .slider-tooltip:not(.slider-tooltip-hidden){display:block!important}.slider-horizontal{height:var(--slider-height,6px)}.slider-horizontal .slider-handle{height:var(--slider-handle-height,16px);right:calc(var(--slider-handle-width, 16px)/2*-1);top:calc(var(--slider-handle-height, 16px)/2*-1 - var(--slider-height, 6px)/2*-1 + -1px);width:var(--slider-handle-width,16px)}.slider-vertical{height:var(--slider-vertical-height,300px);width:var(--slider-height,6px)}.slider-vertical .slider-handle{bottom:calc(var(--slider-handle-width, 16px)/2*-1);height:var(--slider-handle-width,16px);right:calc(var(--slider-handle-height, 16px)/2*-1 - var(--slider-height, 6px)/2*-1 + -1px);width:var(--slider-handle-height,16px)}.slider-txt-dir-rtl.slider-horizontal .slider-handle{left:calc(var(--slider-handle-width, 16px)/2*-1);right:auto}.slider-base{background-color:var(--slider-bg,#d1d5db)}.slider-base,.slider-connects{border-radius:var(--slider-radius,9999px)}.slider-connect{background:var(--slider-connect-bg,#10b981);cursor:pointer}.slider-draggable{cursor:ew-resize}.slider-vertical .slider-draggable{cursor:ns-resize}.slider-handle{background:var(--slider-handle-bg,#fff);border:var(--slider-handle-border,0);border-radius:var(--slider-handle-radius,9999px);box-shadow:var(--slider-handle-shadow,.5px .5px 2px 1px rgba(0,0,0,.32));cursor:-webkit-grab;cursor:grab;height:var(--slider-handle-height,16px);width:var(--slider-handle-width,16px)}.slider-handle:focus{box-shadow:0 0 0 var(--slider-handle-ring-width,3px) var(--slider-handle-ring-color,#10b98130),var(--slider-handle-shadow,.5px .5px 2px 1px rgba(0,0,0,.32));outline:none}.slider-active{box-shadow:var(--slider-handle-shadow-active,.5px .5px 2px 1px rgba(0,0,0,.42));cursor:-webkit-grabbing;cursor:grabbing}[disabled] .slider-connect{background:var(--slider-connect-bg-disabled,#9ca3af)}[disabled].slider-handle,[disabled] .slider-handle,[disabled].slider-target{cursor:not-allowed}[disabled] .slider-tooltip{background:var(--slider-tooltip-bg-disabled,#9ca3af);border-color:var(--slider-tooltip-bg-disabled,#9ca3af)}.slider-tooltip{background:var(--slider-tooltip-bg,#10b981);border:1px solid var(--slider-tooltip-bg,#10b981);border-radius:var(--slider-tooltip-radius,5px);color:var(--slider-tooltip-color,#fff);display:block;font-size:var(--slider-tooltip-font-size,.875rem);font-weight:var(--slider-tooltip-font-weight,600);line-height:var(--slider-tooltip-line-height,1.25rem);min-width:var(--slider-tooltip-min-width,20px);padding:var(--slider-tooltip-py,2px) var(--slider-tooltip-px,6px);position:absolute;text-align:center;white-space:nowrap}.slider-horizontal .slider-tooltip-top{bottom:calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));left:50%;transform:translate(-50%)}.slider-horizontal .slider-tooltip-top:before{border:var(--slider-tooltip-arrow-size,5px) solid transparent;border-top-color:inherit;bottom:calc(var(--slider-tooltip-arrow-size, 5px)*-2);content:"";height:0;left:50%;position:absolute;transform:translate(-50%);width:0}.slider-horizontal .slider-tooltip-bottom{left:50%;top:calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));transform:translate(-50%)}.slider-horizontal .slider-tooltip-bottom:before{border:var(--slider-tooltip-arrow-size,5px) solid transparent;border-bottom-color:inherit;content:"";height:0;left:50%;position:absolute;top:calc(var(--slider-tooltip-arrow-size, 5px)*-2);transform:translate(-50%);width:0}.slider-vertical .slider-tooltip-left{right:calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));top:50%;transform:translateY(-50%)}.slider-vertical .slider-tooltip-left:before{border:var(--slider-tooltip-arrow-size,5px) solid transparent;border-left-color:inherit;content:"";height:0;position:absolute;right:calc(var(--slider-tooltip-arrow-size, 5px)*-2);top:50%;transform:translateY(-50%);width:0}.slider-vertical .slider-tooltip-right{left:calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));top:50%;transform:translateY(-50%)}.slider-vertical .slider-tooltip-right:before{border:var(--slider-tooltip-arrow-size,5px) solid transparent;border-right-color:inherit;content:"";height:0;left:calc(var(--slider-tooltip-arrow-size, 5px)*-2);position:absolute;top:50%;transform:translateY(-50%);width:0}.slider-horizontal .slider-origin>.slider-tooltip{left:auto;transform:translate(50%)}.slider-horizontal .slider-origin>.slider-tooltip-top{bottom:calc(var(--slider-tooltip-arrow-size, 5px) + var(--slider-handle-height, 16px)/2 - var(--slider-height, 6px)/2 + var(--slider-tooltip-distance, 3px) + 1px)}.slider-horizontal .slider-origin>.slider-tooltip-bottom{top:calc(var(--slider-tooltip-arrow-size, 5px) + var(--slider-handle-height, 16px)/2 - var(--slider-height, 6px)/2 + var(--slider-tooltip-distance, 3px) + var(--slider-height, 6px) - 1px)}.slider-vertical .slider-origin>.slider-tooltip{top:auto;transform:translateY(calc(var(--slider-tooltip-line-height, 1.25rem)*-1 - var(--slider-tooltip-py, 2px)*-1 + 1px))}.slider-vertical .slider-origin>.slider-tooltip-left{right:calc(var(--slider-tooltip-arrow-size, 5px) + var(--slider-height, 6px) + var(--slider-handle-height, 16px)/2 - var(--slider-height, 6px)/2 + var(--slider-tooltip-distance, 3px) - 1px)}.slider-vertical .slider-origin>.slider-tooltip-right{left:calc(var(--slider-tooltip-arrow-size, 5px) + var(--slider-height, 6px) + var(--slider-handle-height, 16px)/2 - var(--slider-height, 6px)/2 + var(--slider-tooltip-distance, 3px) - var(--slider-height, 6px) + 1px)} diff --git a/htdocs/assets/index.js b/htdocs/assets/index.js deleted file mode 100644 index 6b612d8921..0000000000 --- a/htdocs/assets/index.js +++ /dev/null @@ -1,61 +0,0 @@ -var P0=Object.defineProperty,D0=Object.defineProperties;var F0=Object.getOwnPropertyDescriptors;var ia=Object.getOwnPropertySymbols;var mm=Object.prototype.hasOwnProperty,hm=Object.prototype.propertyIsEnumerable;var fm=(e,t,n)=>t in e?P0(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Je=(e,t)=>{for(var n in t||(t={}))mm.call(t,n)&&fm(e,n,t[n]);if(ia)for(var n of ia(t))hm.call(t,n)&&fm(e,n,t[n]);return e},jn=(e,t)=>D0(e,F0(t));var Nc=(e,t)=>{var n={};for(var o in e)mm.call(e,o)&&t.indexOf(o)<0&&(n[o]=e[o]);if(e!=null&&ia)for(var o of ia(e))t.indexOf(o)<0&&hm.call(e,o)&&(n[o]=e[o]);return n};const I0=function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const i of document.querySelectorAll('link[rel="modulepreload"]'))o(i);new MutationObserver(i=>{for(const r of i)if(r.type==="childList")for(const s of r.addedNodes)s.tagName==="LINK"&&s.rel==="modulepreload"&&o(s)}).observe(document,{childList:!0,subtree:!0});function n(i){const r={};return i.integrity&&(r.integrity=i.integrity),i.referrerpolicy&&(r.referrerPolicy=i.referrerpolicy),i.crossorigin==="use-credentials"?r.credentials="include":i.crossorigin==="anonymous"?r.credentials="omit":r.credentials="same-origin",r}function o(i){if(i.ep)return;i.ep=!0;const r=n(i);fetch(i.href,r)}};I0();function Vl(e,t){const n=Object.create(null),o=e.split(",");for(let i=0;i!!n[i.toLowerCase()]:i=>!!n[i]}const M0="Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt",L0=Vl(M0),R0="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",N0=Vl(R0);function Xp(e){return!!e||e===""}function li(e){if(He(e)){const t={};for(let n=0;n{if(n){const o=n.split(V0);o.length>1&&(t[o[0].trim()]=o[1].trim())}}),t}function Ye(e){let t="";if(Tt(e))t=e;else if(He(e))for(let n=0;nti(n,t))}const _=e=>Tt(e)?e:e==null?"":He(e)||Nt(e)&&(e.toString===eb||!et(e.toString))?JSON.stringify(e,Qp,2):String(e),Qp=(e,t)=>t&&t.__v_isRef?Qp(e,t.value):ar(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[o,i])=>(n[`${o} =>`]=i,n),{})}:Ti(t)?{[`Set(${t.size})`]:[...t.values()]}:Nt(t)&&!He(t)&&!tb(t)?String(t):t,vt={},sr=[],io=()=>{},q0=()=>!1,G0=/^on[^a-z]/,Ms=e=>G0.test(e),zd=e=>e.startsWith("onUpdate:"),Rt=Object.assign,Sd=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},W0=Object.prototype.hasOwnProperty,ft=(e,t)=>W0.call(e,t),He=Array.isArray,ar=e=>Ls(e)==="[object Map]",Ti=e=>Ls(e)==="[object Set]",pm=e=>Ls(e)==="[object Date]",et=e=>typeof e=="function",Tt=e=>typeof e=="string",$s=e=>typeof e=="symbol",Nt=e=>e!==null&&typeof e=="object",$d=e=>Nt(e)&&et(e.then)&&et(e.catch),eb=Object.prototype.toString,Ls=e=>eb.call(e),K0=e=>Ls(e).slice(8,-1),tb=e=>Ls(e)==="[object Object]",Ed=e=>Tt(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,ss=Vl(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Ul=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Y0=/-(\w)/g,Ln=Ul(e=>e.replace(Y0,(t,n)=>n?n.toUpperCase():"")),Z0=/\B([A-Z])/g,po=Ul(e=>e.replace(Z0,"-$1").toLowerCase()),Rs=Ul(e=>e.charAt(0).toUpperCase()+e.slice(1)),as=Ul(e=>e?`on${Rs(e)}`:""),fr=(e,t)=>!Object.is(e,t),lr=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},ni=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let bm;const J0=()=>bm||(bm=typeof globalThis!="undefined"?globalThis:typeof self!="undefined"?self:typeof window!="undefined"?window:typeof global!="undefined"?global:{});let Tn;class Ad{constructor(t=!1){this.active=!0,this.effects=[],this.cleanups=[],!t&&Tn&&(this.parent=Tn,this.index=(Tn.scopes||(Tn.scopes=[])).push(this)-1)}run(t){if(this.active){const n=Tn;try{return Tn=this,t()}finally{Tn=n}}}on(){Tn=this}off(){Tn=this.parent}stop(t){if(this.active){let n,o;for(n=0,o=this.effects.length;n{const t=new Set(e);return t.w=0,t.n=0,t},ob=e=>(e.w&oi)>0,ib=e=>(e.n&oi)>0,t1=({deps:e})=>{if(e.length)for(let t=0;t{const{deps:t}=e;if(t.length){let n=0;for(let o=0;o{(u==="length"||u>=o)&&a.push(l)});else switch(n!==void 0&&a.push(s.get(n)),t){case"add":He(e)?Ed(n)&&a.push(s.get("length")):(a.push(s.get(ki)),ar(e)&&a.push(s.get(zu)));break;case"delete":He(e)||(a.push(s.get(ki)),ar(e)&&a.push(s.get(zu)));break;case"set":ar(e)&&a.push(s.get(ki));break}if(a.length===1)a[0]&&Su(a[0]);else{const l=[];for(const u of a)u&&l.push(...u);Su(Od(l))}}function Su(e,t){const n=He(e)?e:[...e];for(const o of n)o.computed&&vm(o);for(const o of n)o.computed||vm(o)}function vm(e,t){(e!==no||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}const r1=Vl("__proto__,__v_isRef,__isVue"),ab=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter($s)),s1=Hl(),a1=Hl(!1,!0),l1=Hl(!0),c1=Hl(!0,!0),_m=u1();function u1(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const o=ct(this);for(let r=0,s=this.length;r{e[t]=function(...n){Pi();const o=ct(this)[t].apply(this,n);return Di(),o}}),e}function Hl(e=!1,t=!1){return function(o,i,r){if(i==="__v_isReactive")return!e;if(i==="__v_isReadonly")return e;if(i==="__v_isShallow")return t;if(i==="__v_raw"&&r===(e?t?hb:mb:t?fb:db).get(o))return o;const s=He(o);if(!e&&s&&ft(_m,i))return Reflect.get(_m,i,r);const a=Reflect.get(o,i,r);return($s(i)?ab.has(i):r1(i))||(e||Rn(o,"get",i),t)?a:qt(a)?s&&Ed(i)?a:a.value:Nt(a)?e?Pd(a):Fi(a):a}}const d1=lb(),f1=lb(!0);function lb(e=!1){return function(n,o,i,r){let s=n[o];if(mr(s)&&qt(s)&&!qt(i))return!1;if(!e&&!mr(i)&&(gl(i)||(i=ct(i),s=ct(s)),!He(n)&&qt(s)&&!qt(i)))return s.value=i,!0;const a=He(n)&&Ed(o)?Number(o)e,ql=e=>Reflect.getPrototypeOf(e);function ra(e,t,n=!1,o=!1){e=e.__v_raw;const i=ct(e),r=ct(t);n||(t!==r&&Rn(i,"get",t),Rn(i,"get",r));const{has:s}=ql(i),a=o?Td:n?Id:Es;if(s.call(i,t))return a(e.get(t));if(s.call(i,r))return a(e.get(r));e!==i&&e.get(t)}function sa(e,t=!1){const n=this.__v_raw,o=ct(n),i=ct(e);return t||(e!==i&&Rn(o,"has",e),Rn(o,"has",i)),e===i?n.has(e):n.has(e)||n.has(i)}function aa(e,t=!1){return e=e.__v_raw,!t&&Rn(ct(e),"iterate",ki),Reflect.get(e,"size",e)}function ym(e){e=ct(e);const t=ct(this);return ql(t).has.call(t,e)||(t.add(e),Ao(t,"add",e,e)),this}function wm(e,t){t=ct(t);const n=ct(this),{has:o,get:i}=ql(n);let r=o.call(n,e);r||(e=ct(e),r=o.call(n,e));const s=i.call(n,e);return n.set(e,t),r?fr(t,s)&&Ao(n,"set",e,t):Ao(n,"add",e,t),this}function xm(e){const t=ct(this),{has:n,get:o}=ql(t);let i=n.call(t,e);i||(e=ct(e),i=n.call(t,e)),o&&o.call(t,e);const r=t.delete(e);return i&&Ao(t,"delete",e,void 0),r}function km(){const e=ct(this),t=e.size!==0,n=e.clear();return t&&Ao(e,"clear",void 0,void 0),n}function la(e,t){return function(o,i){const r=this,s=r.__v_raw,a=ct(s),l=t?Td:e?Id:Es;return!e&&Rn(a,"iterate",ki),s.forEach((u,d)=>o.call(i,l(u),l(d),r))}}function ca(e,t,n){return function(...o){const i=this.__v_raw,r=ct(i),s=ar(r),a=e==="entries"||e===Symbol.iterator&&s,l=e==="keys"&&s,u=i[e](...o),d=n?Td:t?Id:Es;return!t&&Rn(r,"iterate",l?zu:ki),{next(){const{value:m,done:f}=u.next();return f?{value:m,done:f}:{value:a?[d(m[0]),d(m[1])]:d(m),done:f}},[Symbol.iterator](){return this}}}}function Lo(e){return function(...t){return e==="delete"?!1:this}}function v1(){const e={get(r){return ra(this,r)},get size(){return aa(this)},has:sa,add:ym,set:wm,delete:xm,clear:km,forEach:la(!1,!1)},t={get(r){return ra(this,r,!1,!0)},get size(){return aa(this)},has:sa,add:ym,set:wm,delete:xm,clear:km,forEach:la(!1,!0)},n={get(r){return ra(this,r,!0)},get size(){return aa(this,!0)},has(r){return sa.call(this,r,!0)},add:Lo("add"),set:Lo("set"),delete:Lo("delete"),clear:Lo("clear"),forEach:la(!0,!1)},o={get(r){return ra(this,r,!0,!0)},get size(){return aa(this,!0)},has(r){return sa.call(this,r,!0)},add:Lo("add"),set:Lo("set"),delete:Lo("delete"),clear:Lo("clear"),forEach:la(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(r=>{e[r]=ca(r,!1,!1),n[r]=ca(r,!0,!1),t[r]=ca(r,!1,!0),o[r]=ca(r,!0,!0)}),[e,n,t,o]}const[_1,y1,w1,x1]=v1();function Gl(e,t){const n=t?e?x1:w1:e?y1:_1;return(o,i,r)=>i==="__v_isReactive"?!e:i==="__v_isReadonly"?e:i==="__v_raw"?o:Reflect.get(ft(n,i)&&i in o?n:o,i,r)}const k1={get:Gl(!1,!1)},C1={get:Gl(!1,!0)},z1={get:Gl(!0,!1)},S1={get:Gl(!0,!0)},db=new WeakMap,fb=new WeakMap,mb=new WeakMap,hb=new WeakMap;function $1(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function E1(e){return e.__v_skip||!Object.isExtensible(e)?0:$1(K0(e))}function Fi(e){return mr(e)?e:Wl(e,!1,cb,k1,db)}function pb(e){return Wl(e,!1,b1,C1,fb)}function Pd(e){return Wl(e,!0,ub,z1,mb)}function A1(e){return Wl(e,!0,g1,S1,hb)}function Wl(e,t,n,o,i){if(!Nt(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const r=i.get(e);if(r)return r;const s=E1(e);if(s===0)return e;const a=new Proxy(e,s===2?o:n);return i.set(e,a),a}function Ci(e){return mr(e)?Ci(e.__v_raw):!!(e&&e.__v_isReactive)}function mr(e){return!!(e&&e.__v_isReadonly)}function gl(e){return!!(e&&e.__v_isShallow)}function Dd(e){return Ci(e)||mr(e)}function ct(e){const t=e&&e.__v_raw;return t?ct(t):e}function Fd(e){return bl(e,"__v_skip",!0),e}const Es=e=>Nt(e)?Fi(e):e,Id=e=>Nt(e)?Pd(e):e;function Md(e){Qo&&no&&(e=ct(e),sb(e.dep||(e.dep=Od())))}function Kl(e,t){e=ct(e),e.dep&&Su(e.dep)}function qt(e){return!!(e&&e.__v_isRef===!0)}function wn(e){return gb(e,!1)}function bb(e){return gb(e,!0)}function gb(e,t){return qt(e)?e:new O1(e,t)}class O1{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:ct(t),this._value=n?t:Es(t)}get value(){return Md(this),this._value}set value(t){t=this.__v_isShallow?t:ct(t),fr(t,this._rawValue)&&(this._rawValue=t,this._value=this.__v_isShallow?t:Es(t),Kl(this))}}function T1(e){Kl(e)}function cr(e){return qt(e)?e.value:e}const P1={get:(e,t,n)=>cr(Reflect.get(e,t,n)),set:(e,t,n,o)=>{const i=e[t];return qt(i)&&!qt(n)?(i.value=n,!0):Reflect.set(e,t,n,o)}};function Ld(e){return Ci(e)?e:new Proxy(e,P1)}class D1{constructor(t){this.dep=void 0,this.__v_isRef=!0;const{get:n,set:o}=t(()=>Md(this),()=>Kl(this));this._get=n,this._set=o}get value(){return this._get()}set value(t){this._set(t)}}function F1(e){return new D1(e)}function ls(e){const t=He(e)?new Array(e.length):{};for(const n in e)t[n]=vb(e,n);return t}class I1{constructor(t,n,o){this._object=t,this._key=n,this._defaultValue=o,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}}function vb(e,t,n){const o=e[t];return qt(o)?o:new I1(e,t,n)}class M1{constructor(t,n,o,i){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this._dirty=!0,this.effect=new Ns(t,()=>{this._dirty||(this._dirty=!0,Kl(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!i,this.__v_isReadonly=o}get value(){const t=ct(this);return Md(t),(t._dirty||!t._cacheable)&&(t._dirty=!1,t._value=t.effect.run()),t._value}set value(t){this._setter(t)}}function L1(e,t,n=!1){let o,i;const r=et(e);return r?(o=e,i=io):(o=e.get,i=e.set),new M1(o,i,r||!i,n)}const cs=[];function _b(e,...t){Pi();const n=cs.length?cs[cs.length-1].component:null,o=n&&n.appContext.config.warnHandler,i=R1();if(o)bo(o,n,11,[e+t.join(""),n&&n.proxy,i.map(({vnode:r})=>`at <${ug(n,r.type)}>`).join(` -`),i]);else{const r=[`[Vue warn]: ${e}`,...t];i.length&&r.push(` -`,...N1(i)),console.warn(...r)}Di()}function R1(){let e=cs[cs.length-1];if(!e)return[];const t=[];for(;e;){const n=t[0];n&&n.vnode===e?n.recurseCount++:t.push({vnode:e,recurseCount:0});const o=e.component&&e.component.parent;e=o&&o.vnode}return t}function N1(e){const t=[];return e.forEach((n,o)=>{t.push(...o===0?[]:[` -`],...j1(n))}),t}function j1({vnode:e,recurseCount:t}){const n=t>0?`... (${t} recursive calls)`:"",o=e.component?e.component.parent==null:!1,i=` at <${ug(e.component,e.type,o)}`,r=">"+n;return e.props?[i,...V1(e.props),r]:[i+r]}function V1(e){const t=[],n=Object.keys(e);return n.slice(0,3).forEach(o=>{t.push(...yb(o,e[o]))}),n.length>3&&t.push(" ..."),t}function yb(e,t,n){return Tt(t)?(t=JSON.stringify(t),n?t:[`${e}=${t}`]):typeof t=="number"||typeof t=="boolean"||t==null?n?t:[`${e}=${t}`]:qt(t)?(t=yb(e,ct(t.value),!0),n?t:[`${e}=Ref<`,t,">"]):et(t)?[`${e}=fn${t.name?`<${t.name}>`:""}`]:(t=ct(t),n?t:[`${e}=`,t])}function bo(e,t,n,o){let i;try{i=o?e(...o):e()}catch(r){Ii(r,t,n)}return i}function In(e,t,n,o){if(et(e)){const r=bo(e,t,n,o);return r&&$d(r)&&r.catch(s=>{Ii(s,t,n)}),r}const i=[];for(let r=0;r>>1;As(Fn[o])zo&&Fn.splice(t,1)}function kb(e,t,n,o){He(e)?n.push(...e):(!t||!t.includes(e,e.allowRecurse?o+1:o))&&n.push(e),xb()}function q1(e){kb(e,Xr,us,Xi)}function jd(e){kb(e,Uo,ds,Qi)}function Zl(e,t=null){if(us.length){for(Eu=t,Xr=[...new Set(us)],us.length=0,Xi=0;XiAs(n)-As(o)),Qi=0;Qie.id==null?1/0:e.id;function Cb(e){$u=!1,vl=!0,Zl(e),Fn.sort((n,o)=>As(n)-As(o));const t=io;try{for(zo=0;zoer.emit(i,...r)),ua=[]):typeof window!="undefined"&&window.HTMLElement&&!(!((o=(n=window.navigator)===null||n===void 0?void 0:n.userAgent)===null||o===void 0)&&o.includes("jsdom"))?((t.__VUE_DEVTOOLS_HOOK_REPLAY__=t.__VUE_DEVTOOLS_HOOK_REPLAY__||[]).push(r=>{zb(r,t)}),setTimeout(()=>{er||(t.__VUE_DEVTOOLS_HOOK_REPLAY__=null,ua=[])},3e3)):ua=[]}function G1(e,t,...n){if(e.isUnmounted)return;const o=e.vnode.props||vt;let i=n;const r=t.startsWith("update:"),s=r&&t.slice(7);if(s&&s in o){const d=`${s==="modelValue"?"model":s}Modifiers`,{number:m,trim:f}=o[d]||vt;f&&(i=n.map(h=>h.trim())),m&&(i=n.map(ni))}let a,l=o[a=as(t)]||o[a=as(Ln(t))];!l&&r&&(l=o[a=as(po(t))]),l&&In(l,e,6,i);const u=o[a+"Once"];if(u){if(!e.emitted)e.emitted={};else if(e.emitted[a])return;e.emitted[a]=!0,In(u,e,6,i)}}function Sb(e,t,n=!1){const o=t.emitsCache,i=o.get(e);if(i!==void 0)return i;const r=e.emits;let s={},a=!1;if(!et(e)){const l=u=>{const d=Sb(u,t,!0);d&&(a=!0,Rt(s,d))};!n&&t.mixins.length&&t.mixins.forEach(l),e.extends&&l(e.extends),e.mixins&&e.mixins.forEach(l)}return!r&&!a?(o.set(e,null),null):(He(r)?r.forEach(l=>s[l]=null):Rt(s,r),o.set(e,s),s)}function Jl(e,t){return!e||!Ms(t)?!1:(t=t.slice(2).replace(/Once$/,""),ft(e,t[0].toLowerCase()+t.slice(1))||ft(e,po(t))||ft(e,t))}let rn=null,Xl=null;function Os(e){const t=rn;return rn=e,Xl=e&&e.type.__scopeId||null,t}function W1(e){Xl=e}function K1(){Xl=null}const Y1=e=>T;function T(e,t=rn,n){if(!t||e._n)return e;const o=(...i)=>{o._d&&Iu(-1);const r=Os(t),s=e(...i);return Os(r),o._d&&Iu(1),s};return o._n=!0,o._c=!0,o._d=!0,o}function il(e){const{type:t,vnode:n,proxy:o,withProxy:i,props:r,propsOptions:[s],slots:a,attrs:l,emit:u,render:d,renderCache:m,data:f,setupState:h,ctx:p,inheritAttrs:b}=e;let g,y;const w=Os(e);try{if(n.shapeFlag&4){const k=i||o;g=Pn(d.call(k,k,m,r,h,f,p)),y=l}else{const k=t;g=Pn(k.length>1?k(r,{attrs:l,slots:a,emit:u}):k(r,null)),y=t.props?l:J1(l)}}catch(k){hs.length=0,Ii(k,e,1),g=x(ln)}let C=g;if(y&&b!==!1){const k=Object.keys(y),{shapeFlag:$}=C;k.length&&$&7&&(s&&k.some(zd)&&(y=X1(y,s)),C=vo(C,y))}return n.dirs&&(C=vo(C),C.dirs=C.dirs?C.dirs.concat(n.dirs):n.dirs),n.transition&&(C.transition=n.transition),g=C,Os(w),g}function Z1(e){let t;for(let n=0;n{let t;for(const n in e)(n==="class"||n==="style"||Ms(n))&&((t||(t={}))[n]=e[n]);return t},X1=(e,t)=>{const n={};for(const o in e)(!zd(o)||!(o.slice(9)in t))&&(n[o]=e[o]);return n};function Q1(e,t,n){const{props:o,children:i,component:r}=e,{props:s,children:a,patchFlag:l}=t,u=r.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&l>=0){if(l&1024)return!0;if(l&16)return o?Cm(o,s,u):!!s;if(l&8){const d=t.dynamicProps;for(let m=0;me.__isSuspense,ew={name:"Suspense",__isSuspense:!0,process(e,t,n,o,i,r,s,a,l,u){e==null?nw(t,n,o,i,r,s,a,l,u):ow(e,t,n,o,i,s,a,l,u)},hydrate:iw,create:Bd,normalize:rw},tw=ew;function Ts(e,t){const n=e.props&&e.props[t];et(n)&&n()}function nw(e,t,n,o,i,r,s,a,l){const{p:u,o:{createElement:d}}=l,m=d("div"),f=e.suspense=Bd(e,i,o,t,m,n,r,s,a,l);u(null,f.pendingBranch=e.ssContent,m,null,o,f,r,s),f.deps>0?(Ts(e,"onPending"),Ts(e,"onFallback"),u(null,e.ssFallback,t,n,o,null,r,s),ur(f,e.ssFallback)):f.resolve()}function ow(e,t,n,o,i,r,s,a,{p:l,um:u,o:{createElement:d}}){const m=t.suspense=e.suspense;m.vnode=t,t.el=e.el;const f=t.ssContent,h=t.ssFallback,{activeBranch:p,pendingBranch:b,isInFallback:g,isHydrating:y}=m;if(b)m.pendingBranch=f,ho(f,b)?(l(b,f,m.hiddenContainer,null,i,m,r,s,a),m.deps<=0?m.resolve():g&&(l(p,h,n,o,i,null,r,s,a),ur(m,h))):(m.pendingId++,y?(m.isHydrating=!1,m.activeBranch=b):u(b,i,m),m.deps=0,m.effects.length=0,m.hiddenContainer=d("div"),g?(l(null,f,m.hiddenContainer,null,i,m,r,s,a),m.deps<=0?m.resolve():(l(p,h,n,o,i,null,r,s,a),ur(m,h))):p&&ho(f,p)?(l(p,f,n,o,i,m,r,s,a),m.resolve(!0)):(l(null,f,m.hiddenContainer,null,i,m,r,s,a),m.deps<=0&&m.resolve()));else if(p&&ho(f,p))l(p,f,n,o,i,m,r,s,a),ur(m,f);else if(Ts(t,"onPending"),m.pendingBranch=f,m.pendingId++,l(null,f,m.hiddenContainer,null,i,m,r,s,a),m.deps<=0)m.resolve();else{const{timeout:w,pendingId:C}=m;w>0?setTimeout(()=>{m.pendingId===C&&m.fallback(h)},w):w===0&&m.fallback(h)}}function Bd(e,t,n,o,i,r,s,a,l,u,d=!1){const{p:m,m:f,um:h,n:p,o:{parentNode:b,remove:g}}=u,y=ni(e.props&&e.props.timeout),w={vnode:e,parent:t,parentComponent:n,isSVG:s,container:o,hiddenContainer:i,anchor:r,deps:0,pendingId:0,timeout:typeof y=="number"?y:-1,activeBranch:null,pendingBranch:null,isInFallback:!0,isHydrating:d,isUnmounted:!1,effects:[],resolve(C=!1){const{vnode:k,activeBranch:$,pendingBranch:O,pendingId:j,effects:F,parentComponent:A,container:M}=w;if(w.isHydrating)w.isHydrating=!1;else if(!C){const q=$&&O.transition&&O.transition.mode==="out-in";q&&($.transition.afterLeave=()=>{j===w.pendingId&&f(O,M,B,0)});let{anchor:B}=w;$&&(B=p($),h($,A,w,!0)),q||f(O,M,B,0)}ur(w,O),w.pendingBranch=null,w.isInFallback=!1;let G=w.parent,R=!1;for(;G;){if(G.pendingBranch){G.effects.push(...F),R=!0;break}G=G.parent}R||jd(F),w.effects=[],Ts(k,"onResolve")},fallback(C){if(!w.pendingBranch)return;const{vnode:k,activeBranch:$,parentComponent:O,container:j,isSVG:F}=w;Ts(k,"onFallback");const A=p($),M=()=>{!w.isInFallback||(m(null,C,j,A,O,null,F,a,l),ur(w,C))},G=C.transition&&C.transition.mode==="out-in";G&&($.transition.afterLeave=M),w.isInFallback=!0,h($,O,null,!0),G||M()},move(C,k,$){w.activeBranch&&f(w.activeBranch,C,k,$),w.container=C},next(){return w.activeBranch&&p(w.activeBranch)},registerDep(C,k){const $=!!w.pendingBranch;$&&w.deps++;const O=C.vnode.el;C.asyncDep.catch(j=>{Ii(j,C,0)}).then(j=>{if(C.isUnmounted||w.isUnmounted||w.pendingId!==C.suspenseId)return;C.asyncResolved=!0;const{vnode:F}=C;Mu(C,j,!1),O&&(F.el=O);const A=!O&&C.subTree.el;k(C,F,b(O||C.subTree.el),O?null:p(C.subTree),w,s,l),A&&g(A),Vd(C,F.el),$&&--w.deps===0&&w.resolve()})},unmount(C,k){w.isUnmounted=!0,w.activeBranch&&h(w.activeBranch,n,C,k),w.pendingBranch&&h(w.pendingBranch,n,C,k)}};return w}function iw(e,t,n,o,i,r,s,a,l){const u=t.suspense=Bd(t,o,n,e.parentNode,document.createElement("div"),null,i,r,s,a,!0),d=l(e,u.pendingBranch=t.ssContent,n,u,r,s);return u.deps===0&&u.resolve(),d}function rw(e){const{shapeFlag:t,children:n}=e,o=t&32;e.ssContent=zm(o?n.default:n),e.ssFallback=o?zm(n.fallback):x(ln)}function zm(e){let t;if(et(e)){const n=Oi&&e._c;n&&(e._d=!1,S()),e=e(),n&&(e._d=!0,t=xn,tg())}return He(e)&&(e=Z1(e)),e=Pn(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter(n=>n!==e)),e}function Eb(e,t){t&&t.pendingBranch?He(e)?t.effects.push(...e):t.effects.push(e):jd(e)}function ur(e,t){e.activeBranch=t;const{vnode:n,parentComponent:o}=e,i=n.el=t.el;o&&o.subTree===n&&(o.vnode.el=i,Vd(o,i))}function fs(e,t){if(Yt){let n=Yt.provides;const o=Yt.parent&&Yt.parent.provides;o===n&&(n=Yt.provides=Object.create(o)),n[e]=t}}function ro(e,t,n=!1){const o=Yt||rn;if(o){const i=o.parent==null?o.vnode.appContext&&o.vnode.appContext.provides:o.parent.provides;if(i&&e in i)return i[e];if(arguments.length>1)return n&&et(t)?t.call(o.proxy):t}}function sw(e,t){return js(e,null,t)}function Ab(e,t){return js(e,null,{flush:"post"})}function aw(e,t){return js(e,null,{flush:"sync"})}const Sm={};function Mt(e,t,n){return js(e,t,n)}function js(e,t,{immediate:n,deep:o,flush:i,onTrack:r,onTrigger:s}=vt){const a=Yt;let l,u=!1,d=!1;if(qt(e)?(l=()=>e.value,u=gl(e)):Ci(e)?(l=()=>e,o=!0):He(e)?(d=!0,u=e.some(y=>Ci(y)||gl(y)),l=()=>e.map(y=>{if(qt(y))return y.value;if(Ci(y))return xi(y);if(et(y))return bo(y,a,2)})):et(e)?t?l=()=>bo(e,a,2):l=()=>{if(!(a&&a.isUnmounted))return m&&m(),In(e,a,3,[f])}:l=io,t&&o){const y=l;l=()=>xi(y())}let m,f=y=>{m=g.onStop=()=>{bo(y,a,4)}};if(pr)return f=io,t?n&&In(t,a,3,[l(),d?[]:void 0,f]):l(),io;let h=d?[]:Sm;const p=()=>{if(!!g.active)if(t){const y=g.run();(o||u||(d?y.some((w,C)=>fr(w,h[C])):fr(y,h)))&&(m&&m(),In(t,a,3,[y,h===Sm?void 0:h,f]),h=y)}else g.run()};p.allowRecurse=!!t;let b;i==="sync"?b=p:i==="post"?b=()=>Qt(p,a&&a.suspense):b=()=>q1(p);const g=new Ns(l,b);return t?n?p():h=g.run():i==="post"?Qt(g.run.bind(g),a&&a.suspense):g.run(),()=>{g.stop(),a&&a.scope&&Sd(a.scope.effects,g)}}function lw(e,t,n){const o=this.proxy,i=Tt(e)?e.includes(".")?Ob(o,e):()=>o[e]:e.bind(o,o);let r;et(t)?r=t:(r=t.handler,n=t);const s=Yt;si(this);const a=js(i,r.bind(o),n);return s?si(s):ei(),a}function Ob(e,t){const n=t.split(".");return()=>{let o=e;for(let i=0;i{xi(n,t)});else if(tb(e))for(const n in e)xi(e[n],t);return e}function Ud(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return Mi(()=>{e.isMounted=!0}),nc(()=>{e.isUnmounting=!0}),e}const Vn=[Function,Array],cw={name:"BaseTransition",props:{mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Vn,onEnter:Vn,onAfterEnter:Vn,onEnterCancelled:Vn,onBeforeLeave:Vn,onLeave:Vn,onAfterLeave:Vn,onLeaveCancelled:Vn,onBeforeAppear:Vn,onAppear:Vn,onAfterAppear:Vn,onAppearCancelled:Vn},setup(e,{slots:t}){const n=ao(),o=Ud();let i;return()=>{const r=t.default&&Ql(t.default(),!0);if(!r||!r.length)return;let s=r[0];if(r.length>1){for(const b of r)if(b.type!==ln){s=b;break}}const a=ct(e),{mode:l}=a;if(o.isLeaving)return jc(s);const u=$m(s);if(!u)return jc(s);const d=hr(u,a,o,n);Ai(u,d);const m=n.subTree,f=m&&$m(m);let h=!1;const{getTransitionKey:p}=u.type;if(p){const b=p();i===void 0?i=b:b!==i&&(i=b,h=!0)}if(f&&f.type!==ln&&(!ho(u,f)||h)){const b=hr(f,a,o,n);if(Ai(f,b),l==="out-in")return o.isLeaving=!0,b.afterLeave=()=>{o.isLeaving=!1,n.update()},jc(s);l==="in-out"&&u.type!==ln&&(b.delayLeave=(g,y,w)=>{const C=Tb(o,f);C[String(f.key)]=f,g._leaveCb=()=>{y(),g._leaveCb=void 0,delete d.delayedLeave},d.delayedLeave=w})}return s}}},Hd=cw;function Tb(e,t){const{leavingVNodes:n}=e;let o=n.get(t.type);return o||(o=Object.create(null),n.set(t.type,o)),o}function hr(e,t,n,o){const{appear:i,mode:r,persisted:s=!1,onBeforeEnter:a,onEnter:l,onAfterEnter:u,onEnterCancelled:d,onBeforeLeave:m,onLeave:f,onAfterLeave:h,onLeaveCancelled:p,onBeforeAppear:b,onAppear:g,onAfterAppear:y,onAppearCancelled:w}=t,C=String(e.key),k=Tb(n,e),$=(F,A)=>{F&&In(F,o,9,A)},O=(F,A)=>{const M=A[1];$(F,A),He(F)?F.every(G=>G.length<=1)&&M():F.length<=1&&M()},j={mode:r,persisted:s,beforeEnter(F){let A=a;if(!n.isMounted)if(i)A=b||a;else return;F._leaveCb&&F._leaveCb(!0);const M=k[C];M&&ho(e,M)&&M.el._leaveCb&&M.el._leaveCb(),$(A,[F])},enter(F){let A=l,M=u,G=d;if(!n.isMounted)if(i)A=g||l,M=y||u,G=w||d;else return;let R=!1;const q=F._enterCb=B=>{R||(R=!0,B?$(G,[F]):$(M,[F]),j.delayedLeave&&j.delayedLeave(),F._enterCb=void 0)};A?O(A,[F,q]):q()},leave(F,A){const M=String(e.key);if(F._enterCb&&F._enterCb(!0),n.isUnmounting)return A();$(m,[F]);let G=!1;const R=F._leaveCb=q=>{G||(G=!0,A(),q?$(p,[F]):$(h,[F]),F._leaveCb=void 0,k[M]===e&&delete k[M])};k[M]=e,f?O(f,[F,R]):R()},clone(F){return hr(F,t,n,o)}};return j}function jc(e){if(Bs(e))return e=vo(e),e.children=null,e}function $m(e){return Bs(e)?e.children?e.children[0]:void 0:e}function Ai(e,t){e.shapeFlag&6&&e.component?Ai(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 Ql(e,t=!1,n){let o=[],i=0;for(let r=0;r1)for(let r=0;r!!e.type.__asyncLoader;function uw(e){et(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:o,delay:i=200,timeout:r,suspensible:s=!0,onError:a}=e;let l=null,u,d=0;const m=()=>(d++,l=null,f()),f=()=>{let h;return l||(h=l=t().catch(p=>{if(p=p instanceof Error?p:new Error(String(p)),a)return new Promise((b,g)=>{a(p,()=>b(m()),()=>g(p),d+1)});throw p}).then(p=>h!==l&&l?l:(p&&(p.__esModule||p[Symbol.toStringTag]==="Module")&&(p=p.default),u=p,p)))};return Vs({name:"AsyncComponentWrapper",__asyncLoader:f,get __asyncResolved(){return u},setup(){const h=Yt;if(u)return()=>Vc(u,h);const p=w=>{l=null,Ii(w,h,13,!o)};if(s&&h.suspense||pr)return f().then(w=>()=>Vc(w,h)).catch(w=>(p(w),()=>o?x(o,{error:w}):null));const b=wn(!1),g=wn(),y=wn(!!i);return i&&setTimeout(()=>{y.value=!1},i),r!=null&&setTimeout(()=>{if(!b.value&&!g.value){const w=new Error(`Async component timed out after ${r}ms.`);p(w),g.value=w}},r),f().then(()=>{b.value=!0,h.parent&&Bs(h.parent.vnode)&&Nd(h.parent.update)}).catch(w=>{p(w),g.value=w}),()=>{if(b.value&&u)return Vc(u,h);if(g.value&&o)return x(o,{error:g.value});if(n&&!y.value)return x(n)}}})}function Vc(e,{vnode:{ref:t,props:n,children:o,shapeFlag:i},parent:r}){const s=x(e,n,o);return s.ref=t,s}const Bs=e=>e.type.__isKeepAlive,dw={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=ao(),o=n.ctx;if(!o.renderer)return()=>{const w=t.default&&t.default();return w&&w.length===1?w[0]:w};const i=new Map,r=new Set;let s=null;const a=n.suspense,{renderer:{p:l,m:u,um:d,o:{createElement:m}}}=o,f=m("div");o.activate=(w,C,k,$,O)=>{const j=w.component;u(w,C,k,0,a),l(j.vnode,w,C,k,j,a,$,w.slotScopeIds,O),Qt(()=>{j.isDeactivated=!1,j.a&&lr(j.a);const F=w.props&&w.props.onVnodeMounted;F&&yn(F,j.parent,w)},a)},o.deactivate=w=>{const C=w.component;u(w,f,null,1,a),Qt(()=>{C.da&&lr(C.da);const k=w.props&&w.props.onVnodeUnmounted;k&&yn(k,C.parent,w),C.isDeactivated=!0},a)};function h(w){Bc(w),d(w,n,a,!0)}function p(w){i.forEach((C,k)=>{const $=Cl(C.type);$&&(!w||!w($))&&b(k)})}function b(w){const C=i.get(w);!s||C.type!==s.type?h(C):s&&Bc(s),i.delete(w),r.delete(w)}Mt(()=>[e.include,e.exclude],([w,C])=>{w&&p(k=>Qr(w,k)),C&&p(k=>!Qr(C,k))},{flush:"post",deep:!0});let g=null;const y=()=>{g!=null&&i.set(g,Uc(n.subTree))};return Mi(y),tc(y),nc(()=>{i.forEach(w=>{const{subTree:C,suspense:k}=n,$=Uc(C);if(w.type===$.type){Bc($);const O=$.component.da;O&&Qt(O,k);return}h(w)})}),()=>{if(g=null,!t.default)return null;const w=t.default(),C=w[0];if(w.length>1)return s=null,w;if(!ri(C)||!(C.shapeFlag&4)&&!(C.shapeFlag&128))return s=null,C;let k=Uc(C);const $=k.type,O=Cl(zi(k)?k.type.__asyncResolved||{}:$),{include:j,exclude:F,max:A}=e;if(j&&(!O||!Qr(j,O))||F&&O&&Qr(F,O))return s=k,C;const M=k.key==null?$:k.key,G=i.get(M);return k.el&&(k=vo(k),C.shapeFlag&128&&(C.ssContent=k)),g=M,G?(k.el=G.el,k.component=G.component,k.transition&&Ai(k,k.transition),k.shapeFlag|=512,r.delete(M),r.add(M)):(r.add(M),A&&r.size>parseInt(A,10)&&b(r.values().next().value)),k.shapeFlag|=256,s=k,$b(C.type)?C:k}}},fw=dw;function Qr(e,t){return He(e)?e.some(n=>Qr(n,t)):Tt(e)?e.split(",").includes(t):e.test?e.test(t):!1}function Pb(e,t){Fb(e,"a",t)}function Db(e,t){Fb(e,"da",t)}function Fb(e,t,n=Yt){const o=e.__wdc||(e.__wdc=()=>{let i=n;for(;i;){if(i.isDeactivated)return;i=i.parent}return e()});if(ec(t,o,n),n){let i=n.parent;for(;i&&i.parent;)Bs(i.parent.vnode)&&mw(o,t,n,i),i=i.parent}}function mw(e,t,n,o){const i=ec(t,e,o,!0);$r(()=>{Sd(o[t],i)},n)}function Bc(e){let t=e.shapeFlag;t&256&&(t-=256),t&512&&(t-=512),e.shapeFlag=t}function Uc(e){return e.shapeFlag&128?e.ssContent:e}function ec(e,t,n=Yt,o=!1){if(n){const i=n[e]||(n[e]=[]),r=t.__weh||(t.__weh=(...s)=>{if(n.isUnmounted)return;Pi(),si(n);const a=In(t,n,e,s);return ei(),Di(),a});return o?i.unshift(r):i.push(r),r}}const Po=e=>(t,n=Yt)=>(!pr||e==="sp")&&ec(e,t,n),Ib=Po("bm"),Mi=Po("m"),Mb=Po("bu"),tc=Po("u"),nc=Po("bum"),$r=Po("um"),Lb=Po("sp"),Rb=Po("rtg"),Nb=Po("rtc");function jb(e,t=Yt){ec("ec",e,t)}function zt(e,t){const n=rn;if(n===null)return e;const o=rc(n)||n.proxy,i=e.dirs||(e.dirs=[]);for(let r=0;rt(s,a,void 0,r&&r[a]));else{const s=Object.keys(e);i=new Array(s.length);for(let a=0,l=s.length;ari(t)?!(t.type===ln||t.type===Ge&&!Ub(t.children)):!0)?e:null}function pw(e){const t={};for(const n in e)t[as(n)]=e[n];return t}const Au=e=>e?sg(e)?rc(e)||e.proxy:Au(e.parent):null,yl=Rt(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=>Au(e.parent),$root:e=>Au(e.root),$emit:e=>e.emit,$options:e=>qb(e),$forceUpdate:e=>e.f||(e.f=()=>Nd(e.update)),$nextTick:e=>e.n||(e.n=Yl.bind(e.proxy)),$watch:e=>lw.bind(e)}),Ou={get({_:e},t){const{ctx:n,setupState:o,data:i,props:r,accessCache:s,type:a,appContext:l}=e;let u;if(t[0]!=="$"){const h=s[t];if(h!==void 0)switch(h){case 1:return o[t];case 2:return i[t];case 4:return n[t];case 3:return r[t]}else{if(o!==vt&&ft(o,t))return s[t]=1,o[t];if(i!==vt&&ft(i,t))return s[t]=2,i[t];if((u=e.propsOptions[0])&&ft(u,t))return s[t]=3,r[t];if(n!==vt&&ft(n,t))return s[t]=4,n[t];Tu&&(s[t]=0)}}const d=yl[t];let m,f;if(d)return t==="$attrs"&&Rn(e,"get",t),d(e);if((m=a.__cssModules)&&(m=m[t]))return m;if(n!==vt&&ft(n,t))return s[t]=4,n[t];if(f=l.config.globalProperties,ft(f,t))return f[t]},set({_:e},t,n){const{data:o,setupState:i,ctx:r}=e;return i!==vt&&ft(i,t)?(i[t]=n,!0):o!==vt&&ft(o,t)?(o[t]=n,!0):ft(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(r[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:o,appContext:i,propsOptions:r}},s){let a;return!!n[s]||e!==vt&&ft(e,s)||t!==vt&&ft(t,s)||(a=r[0])&&ft(a,s)||ft(o,s)||ft(yl,s)||ft(i.config.globalProperties,s)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:ft(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}},bw=Rt({},Ou,{get(e,t){if(t!==Symbol.unscopables)return Ou.get(e,t,e)},has(e,t){return t[0]!=="_"&&!L0(t)}});let Tu=!0;function gw(e){const t=qb(e),n=e.proxy,o=e.ctx;Tu=!1,t.beforeCreate&&Am(t.beforeCreate,e,"bc");const{data:i,computed:r,methods:s,watch:a,provide:l,inject:u,created:d,beforeMount:m,mounted:f,beforeUpdate:h,updated:p,activated:b,deactivated:g,beforeDestroy:y,beforeUnmount:w,destroyed:C,unmounted:k,render:$,renderTracked:O,renderTriggered:j,errorCaptured:F,serverPrefetch:A,expose:M,inheritAttrs:G,components:R,directives:q,filters:B}=t;if(u&&vw(u,o,null,e.appContext.config.unwrapInjectedRef),s)for(const ce in s){const ge=s[ce];et(ge)&&(o[ce]=ge.bind(n))}if(i){const ce=i.call(n,n);Nt(ce)&&(e.data=Fi(ce))}if(Tu=!0,r)for(const ce in r){const ge=r[ce],Le=et(ge)?ge.bind(n,n):et(ge.get)?ge.get.bind(n,n):io,Be=!et(ge)&&et(ge.set)?ge.set.bind(n):io,pe=Ot({get:Le,set:Be});Object.defineProperty(o,ce,{enumerable:!0,configurable:!0,get:()=>pe.value,set:J=>pe.value=J})}if(a)for(const ce in a)Hb(a[ce],o,n,ce);if(l){const ce=et(l)?l.call(n):l;Reflect.ownKeys(ce).forEach(ge=>{fs(ge,ce[ge])})}d&&Am(d,e,"c");function X(ce,ge){He(ge)?ge.forEach(Le=>ce(Le.bind(n))):ge&&ce(ge.bind(n))}if(X(Ib,m),X(Mi,f),X(Mb,h),X(tc,p),X(Pb,b),X(Db,g),X(jb,F),X(Nb,O),X(Rb,j),X(nc,w),X($r,k),X(Lb,A),He(M))if(M.length){const ce=e.exposed||(e.exposed={});M.forEach(ge=>{Object.defineProperty(ce,ge,{get:()=>n[ge],set:Le=>n[ge]=Le})})}else e.exposed||(e.exposed={});$&&e.render===io&&(e.render=$),G!=null&&(e.inheritAttrs=G),R&&(e.components=R),q&&(e.directives=q)}function vw(e,t,n=io,o=!1){He(e)&&(e=Pu(e));for(const i in e){const r=e[i];let s;Nt(r)?"default"in r?s=ro(r.from||i,r.default,!0):s=ro(r.from||i):s=ro(r),qt(s)&&o?Object.defineProperty(t,i,{enumerable:!0,configurable:!0,get:()=>s.value,set:a=>s.value=a}):t[i]=s}}function Am(e,t,n){In(He(e)?e.map(o=>o.bind(t.proxy)):e.bind(t.proxy),t,n)}function Hb(e,t,n,o){const i=o.includes(".")?Ob(n,o):()=>n[o];if(Tt(e)){const r=t[e];et(r)&&Mt(i,r)}else if(et(e))Mt(i,e.bind(n));else if(Nt(e))if(He(e))e.forEach(r=>Hb(r,t,n,o));else{const r=et(e.handler)?e.handler.bind(n):t[e.handler];et(r)&&Mt(i,r,e)}}function qb(e){const t=e.type,{mixins:n,extends:o}=t,{mixins:i,optionsCache:r,config:{optionMergeStrategies:s}}=e.appContext,a=r.get(t);let l;return a?l=a:!i.length&&!n&&!o?l=t:(l={},i.length&&i.forEach(u=>wl(l,u,s,!0)),wl(l,t,s)),r.set(t,l),l}function wl(e,t,n,o=!1){const{mixins:i,extends:r}=t;r&&wl(e,r,n,!0),i&&i.forEach(s=>wl(e,s,n,!0));for(const s in t)if(!(o&&s==="expose")){const a=_w[s]||n&&n[s];e[s]=a?a(e[s],t[s]):t[s]}return e}const _w={data:Om,props:vi,emits:vi,methods:vi,computed:vi,beforeCreate:un,created:un,beforeMount:un,mounted:un,beforeUpdate:un,updated:un,beforeDestroy:un,beforeUnmount:un,destroyed:un,unmounted:un,activated:un,deactivated:un,errorCaptured:un,serverPrefetch:un,components:vi,directives:vi,watch:ww,provide:Om,inject:yw};function Om(e,t){return t?e?function(){return Rt(et(e)?e.call(this,this):e,et(t)?t.call(this,this):t)}:t:e}function yw(e,t){return vi(Pu(e),Pu(t))}function Pu(e){if(He(e)){const t={};for(let n=0;n0)&&!(s&16)){if(s&8){const d=e.vnode.dynamicProps;for(let m=0;m{l=!0;const[f,h]=Wb(m,t,!0);Rt(s,f),h&&a.push(...h)};!n&&t.mixins.length&&t.mixins.forEach(d),e.extends&&d(e.extends),e.mixins&&e.mixins.forEach(d)}if(!r&&!l)return o.set(e,sr),sr;if(He(r))for(let d=0;d-1,h[1]=b<0||p-1||ft(h,"default"))&&a.push(m)}}}const u=[s,a];return o.set(e,u),u}function Tm(e){return e[0]!=="$"}function Pm(e){const t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:e===null?"null":""}function Dm(e,t){return Pm(e)===Pm(t)}function Fm(e,t){return He(t)?t.findIndex(n=>Dm(n,e)):et(t)&&Dm(t,e)?0:-1}const Kb=e=>e[0]==="_"||e==="$stable",Wd=e=>He(e)?e.map(Pn):[Pn(e)],Cw=(e,t,n)=>{if(t._n)return t;const o=T((...i)=>Wd(t(...i)),n);return o._c=!1,o},Yb=(e,t,n)=>{const o=e._ctx;for(const i in e){if(Kb(i))continue;const r=e[i];if(et(r))t[i]=Cw(i,r,o);else if(r!=null){const s=Wd(r);t[i]=()=>s}}},Zb=(e,t)=>{const n=Wd(t);e.slots.default=()=>n},zw=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=ct(t),bl(t,"_",n)):Yb(t,e.slots={})}else e.slots={},t&&Zb(e,t);bl(e.slots,ic,1)},Sw=(e,t,n)=>{const{vnode:o,slots:i}=e;let r=!0,s=vt;if(o.shapeFlag&32){const a=t._;a?n&&a===1?r=!1:(Rt(i,t),!n&&a===1&&delete i._):(r=!t.$stable,Yb(t,i)),s=t}else t&&(Zb(e,t),s={default:1});if(r)for(const a in i)!Kb(a)&&!(a in s)&&delete i[a]};function Jb(){return{app:null,config:{isNativeTag:q0,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 $w=0;function Ew(e,t){return function(o,i=null){et(o)||(o=Object.assign({},o)),i!=null&&!Nt(i)&&(i=null);const r=Jb(),s=new Set;let a=!1;const l=r.app={_uid:$w++,_component:o,_props:i,_container:null,_context:r,_instance:null,version:hg,get config(){return r.config},set config(u){},use(u,...d){return s.has(u)||(u&&et(u.install)?(s.add(u),u.install(l,...d)):et(u)&&(s.add(u),u(l,...d))),l},mixin(u){return r.mixins.includes(u)||r.mixins.push(u),l},component(u,d){return d?(r.components[u]=d,l):r.components[u]},directive(u,d){return d?(r.directives[u]=d,l):r.directives[u]},mount(u,d,m){if(!a){const f=x(o,i);return f.appContext=r,d&&t?t(f,u):e(f,u,m),a=!0,l._container=u,u.__vue_app__=l,rc(f.component)||f.component.proxy}},unmount(){a&&(e(null,l._container),delete l._container.__vue_app__)},provide(u,d){return r.provides[u]=d,l}};return l}}function xl(e,t,n,o,i=!1){if(He(e)){e.forEach((f,h)=>xl(f,t&&(He(t)?t[h]:t),n,o,i));return}if(zi(o)&&!i)return;const r=o.shapeFlag&4?rc(o.component)||o.component.proxy:o.el,s=i?null:r,{i:a,r:l}=e,u=t&&t.r,d=a.refs===vt?a.refs={}:a.refs,m=a.setupState;if(u!=null&&u!==l&&(Tt(u)?(d[u]=null,ft(m,u)&&(m[u]=null)):qt(u)&&(u.value=null)),et(l))bo(l,a,12,[s,d]);else{const f=Tt(l),h=qt(l);if(f||h){const p=()=>{if(e.f){const b=f?d[l]:l.value;i?He(b)&&Sd(b,r):He(b)?b.includes(r)||b.push(r):f?(d[l]=[r],ft(m,l)&&(m[l]=d[l])):(l.value=[r],e.k&&(d[e.k]=l.value))}else f?(d[l]=s,ft(m,l)&&(m[l]=s)):h&&(l.value=s,e.k&&(d[e.k]=s))};s?(p.id=-1,Qt(p,n)):p()}}}let Ro=!1;const da=e=>/svg/.test(e.namespaceURI)&&e.tagName!=="foreignObject",fa=e=>e.nodeType===8;function Aw(e){const{mt:t,p:n,o:{patchProp:o,createText:i,nextSibling:r,parentNode:s,remove:a,insert:l,createComment:u}}=e,d=(y,w)=>{if(!w.hasChildNodes()){n(null,y,w),_l(),w._vnode=y;return}Ro=!1,m(w.firstChild,y,null,null,null),_l(),w._vnode=y,Ro&&console.error("Hydration completed but contains mismatches.")},m=(y,w,C,k,$,O=!1)=>{const j=fa(y)&&y.data==="[",F=()=>b(y,w,C,k,$,j),{type:A,ref:M,shapeFlag:G,patchFlag:R}=w,q=y.nodeType;w.el=y,R===-2&&(O=!1,w.dynamicChildren=null);let B=null;switch(A){case ii:q!==3?w.children===""?(l(w.el=i(""),s(y),y),B=y):B=F():(y.data!==w.children&&(Ro=!0,y.data=w.children),B=r(y));break;case ln:q!==8||j?B=F():B=r(y);break;case Si:if(q!==1&&q!==3)B=F();else{B=y;const re=!w.children.length;for(let X=0;X{O=O||!!w.dynamicChildren;const{type:j,props:F,patchFlag:A,shapeFlag:M,dirs:G}=w,R=j==="input"&&G||j==="option";if(R||A!==-1){if(G&&fo(w,null,C,"created"),F)if(R||!O||A&48)for(const B in F)(R&&B.endsWith("value")||Ms(B)&&!ss(B))&&o(y,B,null,F[B],!1,void 0,C);else F.onClick&&o(y,"onClick",null,F.onClick,!1,void 0,C);let q;if((q=F&&F.onVnodeBeforeMount)&&yn(q,C,w),G&&fo(w,null,C,"beforeMount"),((q=F&&F.onVnodeMounted)||G)&&Eb(()=>{q&&yn(q,C,w),G&&fo(w,null,C,"mounted")},k),M&16&&!(F&&(F.innerHTML||F.textContent))){let B=h(y.firstChild,w,y,C,k,$,O);for(;B;){Ro=!0;const re=B;B=B.nextSibling,a(re)}}else M&8&&y.textContent!==w.children&&(Ro=!0,y.textContent=w.children)}return y.nextSibling},h=(y,w,C,k,$,O,j)=>{j=j||!!w.dynamicChildren;const F=w.children,A=F.length;for(let M=0;M{const{slotScopeIds:j}=w;j&&($=$?$.concat(j):j);const F=s(y),A=h(r(y),w,F,C,k,$,O);return A&&fa(A)&&A.data==="]"?r(w.anchor=A):(Ro=!0,l(w.anchor=u("]"),F,A),A)},b=(y,w,C,k,$,O)=>{if(Ro=!0,w.el=null,O){const A=g(y);for(;;){const M=r(y);if(M&&M!==A)a(M);else break}}const j=r(y),F=s(y);return a(y),n(null,w,F,j,C,k,da(F),$),j},g=y=>{let w=0;for(;y;)if(y=r(y),y&&fa(y)&&(y.data==="["&&w++,y.data==="]")){if(w===0)return r(y);w--}return y};return[d,m]}const Qt=Eb;function Xb(e){return eg(e)}function Qb(e){return eg(e,Aw)}function eg(e,t){const n=J0();n.__VUE__=!0;const{insert:o,remove:i,patchProp:r,createElement:s,createText:a,createComment:l,setText:u,setElementText:d,parentNode:m,nextSibling:f,setScopeId:h=io,cloneNode:p,insertStaticContent:b}=e,g=(E,L,Z,le=null,ue=null,ve=null,xe=!1,he=null,V=!!L.dynamicChildren)=>{if(E===L)return;E&&!ho(E,L)&&(le=ye(E),fe(E,ue,ve,!0),E=null),L.patchFlag===-2&&(V=!1,L.dynamicChildren=null);const{type:H,ref:Ee,shapeFlag:ke}=L;switch(H){case ii:y(E,L,Z,le);break;case ln:w(E,L,Z,le);break;case Si:E==null&&C(L,Z,le,xe);break;case Ge:q(E,L,Z,le,ue,ve,xe,he,V);break;default:ke&1?O(E,L,Z,le,ue,ve,xe,he,V):ke&6?B(E,L,Z,le,ue,ve,xe,he,V):(ke&64||ke&128)&&H.process(E,L,Z,le,ue,ve,xe,he,V,Ie)}Ee!=null&&ue&&xl(Ee,E&&E.ref,ve,L||E,!L)},y=(E,L,Z,le)=>{if(E==null)o(L.el=a(L.children),Z,le);else{const ue=L.el=E.el;L.children!==E.children&&u(ue,L.children)}},w=(E,L,Z,le)=>{E==null?o(L.el=l(L.children||""),Z,le):L.el=E.el},C=(E,L,Z,le)=>{[E.el,E.anchor]=b(E.children,L,Z,le,E.el,E.anchor)},k=({el:E,anchor:L},Z,le)=>{let ue;for(;E&&E!==L;)ue=f(E),o(E,Z,le),E=ue;o(L,Z,le)},$=({el:E,anchor:L})=>{let Z;for(;E&&E!==L;)Z=f(E),i(E),E=Z;i(L)},O=(E,L,Z,le,ue,ve,xe,he,V)=>{xe=xe||L.type==="svg",E==null?j(L,Z,le,ue,ve,xe,he,V):M(E,L,ue,ve,xe,he,V)},j=(E,L,Z,le,ue,ve,xe,he)=>{let V,H;const{type:Ee,props:ke,shapeFlag:De,transition:Re,patchFlag:qe,dirs:tt}=E;if(E.el&&p!==void 0&&qe===-1)V=E.el=p(E.el);else{if(V=E.el=s(E.type,ve,ke&&ke.is,ke),De&8?d(V,E.children):De&16&&A(E.children,V,null,le,ue,ve&&Ee!=="foreignObject",xe,he),tt&&fo(E,null,le,"created"),ke){for(const v in ke)v!=="value"&&!ss(v)&&r(V,v,null,ke[v],ve,E.children,le,ue,ie);"value"in ke&&r(V,"value",null,ke.value),(H=ke.onVnodeBeforeMount)&&yn(H,le,E)}F(V,E,E.scopeId,xe,le)}tt&&fo(E,null,le,"beforeMount");const z=(!ue||ue&&!ue.pendingBranch)&&Re&&!Re.persisted;z&&Re.beforeEnter(V),o(V,L,Z),((H=ke&&ke.onVnodeMounted)||z||tt)&&Qt(()=>{H&&yn(H,le,E),z&&Re.enter(V),tt&&fo(E,null,le,"mounted")},ue)},F=(E,L,Z,le,ue)=>{if(Z&&h(E,Z),le)for(let ve=0;ve{for(let H=V;H{const he=L.el=E.el;let{patchFlag:V,dynamicChildren:H,dirs:Ee}=L;V|=E.patchFlag&16;const ke=E.props||vt,De=L.props||vt;let Re;Z&&fi(Z,!1),(Re=De.onVnodeBeforeUpdate)&&yn(Re,Z,L,E),Ee&&fo(L,E,Z,"beforeUpdate"),Z&&fi(Z,!0);const qe=ue&&L.type!=="foreignObject";if(H?G(E.dynamicChildren,H,he,Z,le,qe,ve):xe||Le(E,L,he,null,Z,le,qe,ve,!1),V>0){if(V&16)R(he,L,ke,De,Z,le,ue);else if(V&2&&ke.class!==De.class&&r(he,"class",null,De.class,ue),V&4&&r(he,"style",ke.style,De.style,ue),V&8){const tt=L.dynamicProps;for(let z=0;z{Re&&yn(Re,Z,L,E),Ee&&fo(L,E,Z,"updated")},le)},G=(E,L,Z,le,ue,ve,xe)=>{for(let he=0;he{if(Z!==le){for(const he in le){if(ss(he))continue;const V=le[he],H=Z[he];V!==H&&he!=="value"&&r(E,he,H,V,xe,L.children,ue,ve,ie)}if(Z!==vt)for(const he in Z)!ss(he)&&!(he in le)&&r(E,he,Z[he],null,xe,L.children,ue,ve,ie);"value"in le&&r(E,"value",Z.value,le.value)}},q=(E,L,Z,le,ue,ve,xe,he,V)=>{const H=L.el=E?E.el:a(""),Ee=L.anchor=E?E.anchor:a("");let{patchFlag:ke,dynamicChildren:De,slotScopeIds:Re}=L;Re&&(he=he?he.concat(Re):Re),E==null?(o(H,Z,le),o(Ee,Z,le),A(L.children,Z,Ee,ue,ve,xe,he,V)):ke>0&&ke&64&&De&&E.dynamicChildren?(G(E.dynamicChildren,De,Z,ue,ve,xe,he),(L.key!=null||ue&&L===ue.subTree)&&Kd(E,L,!0)):Le(E,L,Z,Ee,ue,ve,xe,he,V)},B=(E,L,Z,le,ue,ve,xe,he,V)=>{L.slotScopeIds=he,E==null?L.shapeFlag&512?ue.ctx.activate(L,Z,le,xe,V):re(L,Z,le,ue,ve,xe,V):X(E,L,V)},re=(E,L,Z,le,ue,ve,xe)=>{const he=E.component=rg(E,le,ue);if(Bs(E)&&(he.ctx.renderer=Ie),ag(he),he.asyncDep){if(ue&&ue.registerDep(he,ce),!E.el){const V=he.subTree=x(ln);w(null,V,L,Z)}return}ce(he,E,L,Z,ue,ve,xe)},X=(E,L,Z)=>{const le=L.component=E.component;if(Q1(E,L,Z))if(le.asyncDep&&!le.asyncResolved){ge(le,L,Z);return}else le.next=L,H1(le.update),le.update();else L.el=E.el,le.vnode=L},ce=(E,L,Z,le,ue,ve,xe)=>{const he=()=>{if(E.isMounted){let{next:Ee,bu:ke,u:De,parent:Re,vnode:qe}=E,tt=Ee,z;fi(E,!1),Ee?(Ee.el=qe.el,ge(E,Ee,xe)):Ee=qe,ke&&lr(ke),(z=Ee.props&&Ee.props.onVnodeBeforeUpdate)&&yn(z,Re,Ee,qe),fi(E,!0);const v=il(E),I=E.subTree;E.subTree=v,g(I,v,m(I.el),ye(I),E,ue,ve),Ee.el=v.el,tt===null&&Vd(E,v.el),De&&Qt(De,ue),(z=Ee.props&&Ee.props.onVnodeUpdated)&&Qt(()=>yn(z,Re,Ee,qe),ue)}else{let Ee;const{el:ke,props:De}=L,{bm:Re,m:qe,parent:tt}=E,z=zi(L);if(fi(E,!1),Re&&lr(Re),!z&&(Ee=De&&De.onVnodeBeforeMount)&&yn(Ee,tt,L),fi(E,!0),ke&&Ae){const v=()=>{E.subTree=il(E),Ae(ke,E.subTree,E,ue,null)};z?L.type.__asyncLoader().then(()=>!E.isUnmounted&&v()):v()}else{const v=E.subTree=il(E);g(null,v,Z,le,E,ue,ve),L.el=v.el}if(qe&&Qt(qe,ue),!z&&(Ee=De&&De.onVnodeMounted)){const v=L;Qt(()=>yn(Ee,tt,v),ue)}(L.shapeFlag&256||tt&&zi(tt.vnode)&&tt.vnode.shapeFlag&256)&&E.a&&Qt(E.a,ue),E.isMounted=!0,L=Z=le=null}},V=E.effect=new Ns(he,()=>Nd(H),E.scope),H=E.update=()=>V.run();H.id=E.uid,fi(E,!0),H()},ge=(E,L,Z)=>{L.component=E;const le=E.vnode.props;E.vnode=L,E.next=null,kw(E,L.props,le,Z),Sw(E,L.children,Z),Pi(),Zl(void 0,E.update),Di()},Le=(E,L,Z,le,ue,ve,xe,he,V=!1)=>{const H=E&&E.children,Ee=E?E.shapeFlag:0,ke=L.children,{patchFlag:De,shapeFlag:Re}=L;if(De>0){if(De&128){pe(H,ke,Z,le,ue,ve,xe,he,V);return}else if(De&256){Be(H,ke,Z,le,ue,ve,xe,he,V);return}}Re&8?(Ee&16&&ie(H,ue,ve),ke!==H&&d(Z,ke)):Ee&16?Re&16?pe(H,ke,Z,le,ue,ve,xe,he,V):ie(H,ue,ve,!0):(Ee&8&&d(Z,""),Re&16&&A(ke,Z,le,ue,ve,xe,he,V))},Be=(E,L,Z,le,ue,ve,xe,he,V)=>{E=E||sr,L=L||sr;const H=E.length,Ee=L.length,ke=Math.min(H,Ee);let De;for(De=0;DeEe?ie(E,ue,ve,!0,!1,ke):A(L,Z,le,ue,ve,xe,he,V,ke)},pe=(E,L,Z,le,ue,ve,xe,he,V)=>{let H=0;const Ee=L.length;let ke=E.length-1,De=Ee-1;for(;H<=ke&&H<=De;){const Re=E[H],qe=L[H]=V?qo(L[H]):Pn(L[H]);if(ho(Re,qe))g(Re,qe,Z,null,ue,ve,xe,he,V);else break;H++}for(;H<=ke&&H<=De;){const Re=E[ke],qe=L[De]=V?qo(L[De]):Pn(L[De]);if(ho(Re,qe))g(Re,qe,Z,null,ue,ve,xe,he,V);else break;ke--,De--}if(H>ke){if(H<=De){const Re=De+1,qe=ReDe)for(;H<=ke;)fe(E[H],ue,ve,!0),H++;else{const Re=H,qe=H,tt=new Map;for(H=qe;H<=De;H++){const Me=L[H]=V?qo(L[H]):Pn(L[H]);Me.key!=null&&tt.set(Me.key,H)}let z,v=0;const I=De-qe+1;let K=!1,ee=0;const me=new Array(I);for(H=0;H=I){fe(Me,ue,ve,!0);continue}let oe;if(Me.key!=null)oe=tt.get(Me.key);else for(z=qe;z<=De;z++)if(me[z-qe]===0&&ho(Me,L[z])){oe=z;break}oe===void 0?fe(Me,ue,ve,!0):(me[oe-qe]=H+1,oe>=ee?ee=oe:K=!0,g(Me,L[oe],Z,null,ue,ve,xe,he,V),v++)}const Se=K?Ow(me):sr;for(z=Se.length-1,H=I-1;H>=0;H--){const Me=qe+H,oe=L[Me],de=Me+1{const{el:ve,type:xe,transition:he,children:V,shapeFlag:H}=E;if(H&6){J(E.component.subTree,L,Z,le);return}if(H&128){E.suspense.move(L,Z,le);return}if(H&64){xe.move(E,L,Z,Ie);return}if(xe===Ge){o(ve,L,Z);for(let ke=0;kehe.enter(ve),ue);else{const{leave:ke,delayLeave:De,afterLeave:Re}=he,qe=()=>o(ve,L,Z),tt=()=>{ke(ve,()=>{qe(),Re&&Re()})};De?De(ve,qe,tt):tt()}else o(ve,L,Z)},fe=(E,L,Z,le=!1,ue=!1)=>{const{type:ve,props:xe,ref:he,children:V,dynamicChildren:H,shapeFlag:Ee,patchFlag:ke,dirs:De}=E;if(he!=null&&xl(he,null,Z,E,!0),Ee&256){L.ctx.deactivate(E);return}const Re=Ee&1&&De,qe=!zi(E);let tt;if(qe&&(tt=xe&&xe.onVnodeBeforeUnmount)&&yn(tt,L,E),Ee&6)se(E.component,Z,le);else{if(Ee&128){E.suspense.unmount(Z,le);return}Re&&fo(E,null,L,"beforeUnmount"),Ee&64?E.type.remove(E,L,Z,ue,Ie,le):H&&(ve!==Ge||ke>0&&ke&64)?ie(H,L,Z,!1,!0):(ve===Ge&&ke&384||!ue&&Ee&16)&&ie(V,L,Z),le&&we(E)}(qe&&(tt=xe&&xe.onVnodeUnmounted)||Re)&&Qt(()=>{tt&&yn(tt,L,E),Re&&fo(E,null,L,"unmounted")},Z)},we=E=>{const{type:L,el:Z,anchor:le,transition:ue}=E;if(L===Ge){U(Z,le);return}if(L===Si){$(E);return}const ve=()=>{i(Z),ue&&!ue.persisted&&ue.afterLeave&&ue.afterLeave()};if(E.shapeFlag&1&&ue&&!ue.persisted){const{leave:xe,delayLeave:he}=ue,V=()=>xe(Z,ve);he?he(E.el,ve,V):V()}else ve()},U=(E,L)=>{let Z;for(;E!==L;)Z=f(E),i(E),E=Z;i(L)},se=(E,L,Z)=>{const{bum:le,scope:ue,update:ve,subTree:xe,um:he}=E;le&&lr(le),ue.stop(),ve&&(ve.active=!1,fe(xe,E,L,Z)),he&&Qt(he,L),Qt(()=>{E.isUnmounted=!0},L),L&&L.pendingBranch&&!L.isUnmounted&&E.asyncDep&&!E.asyncResolved&&E.suspenseId===L.pendingId&&(L.deps--,L.deps===0&&L.resolve())},ie=(E,L,Z,le=!1,ue=!1,ve=0)=>{for(let xe=ve;xeE.shapeFlag&6?ye(E.component.subTree):E.shapeFlag&128?E.suspense.next():f(E.anchor||E.el),je=(E,L,Z)=>{E==null?L._vnode&&fe(L._vnode,null,null,!0):g(L._vnode||null,E,L,null,null,null,Z),_l(),L._vnode=E},Ie={p:g,um:fe,m:J,r:we,mt:re,mc:A,pc:Le,pbc:G,n:ye,o:e};let $e,Ae;return t&&([$e,Ae]=t(Ie)),{render:je,hydrate:$e,createApp:Ew(je,$e)}}function fi({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function Kd(e,t,n=!1){const o=e.children,i=t.children;if(He(o)&&He(i))for(let r=0;r>1,e[n[a]]0&&(t[o]=n[r-1]),n[r]=o)}}for(r=n.length,s=n[r-1];r-- >0;)n[r]=s,s=t[s];return n}const Tw=e=>e.__isTeleport,ms=e=>e&&(e.disabled||e.disabled===""),Im=e=>typeof SVGElement!="undefined"&&e instanceof SVGElement,Fu=(e,t)=>{const n=e&&e.to;return Tt(n)?t?t(n):null:n},Pw={__isTeleport:!0,process(e,t,n,o,i,r,s,a,l,u){const{mc:d,pc:m,pbc:f,o:{insert:h,querySelector:p,createText:b,createComment:g}}=u,y=ms(t.props);let{shapeFlag:w,children:C,dynamicChildren:k}=t;if(e==null){const $=t.el=b(""),O=t.anchor=b("");h($,n,o),h(O,n,o);const j=t.target=Fu(t.props,p),F=t.targetAnchor=b("");j&&(h(F,j),s=s||Im(j));const A=(M,G)=>{w&16&&d(C,M,G,i,r,s,a,l)};y?A(n,O):j&&A(j,F)}else{t.el=e.el;const $=t.anchor=e.anchor,O=t.target=e.target,j=t.targetAnchor=e.targetAnchor,F=ms(e.props),A=F?n:O,M=F?$:j;if(s=s||Im(O),k?(f(e.dynamicChildren,k,A,i,r,s,a),Kd(e,t,!0)):l||m(e,t,A,M,i,r,s,a,!1),y)F||ma(t,n,$,u,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const G=t.target=Fu(t.props,p);G&&ma(t,G,null,u,0)}else F&&ma(t,O,j,u,1)}},remove(e,t,n,o,{um:i,o:{remove:r}},s){const{shapeFlag:a,children:l,anchor:u,targetAnchor:d,target:m,props:f}=e;if(m&&r(d),(s||!ms(f))&&(r(u),a&16))for(let h=0;h0?xn||sr:null,tg(),Oi>0&&xn&&xn.push(e),e}function D(e,t,n,o,i,r){return ng(c(e,t,n,o,i,r,!0))}function Ce(e,t,n,o,i){return ng(x(e,t,n,o,i,!0))}function ri(e){return e?e.__v_isVNode===!0:!1}function ho(e,t){return e.type===t.type&&e.key===t.key}function Fw(e){}const ic="__vInternal",og=({key:e})=>e!=null?e:null,rl=({ref:e,ref_key:t,ref_for:n})=>e!=null?Tt(e)||qt(e)||et(e)?{i:rn,r:e,k:t,f:!!n}:e:null;function c(e,t=null,n=null,o=0,i=null,r=e===Ge?0:1,s=!1,a=!1){const l={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&og(t),ref:t&&rl(t),scopeId:Xl,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:r,patchFlag:o,dynamicProps:i,dynamicChildren:null,appContext:null};return a?(Yd(l,n),r&128&&e.normalize(l)):n&&(l.shapeFlag|=Tt(n)?8:16),Oi>0&&!s&&xn&&(l.patchFlag>0||r&6)&&l.patchFlag!==32&&xn.push(l),l}const x=Iw;function Iw(e,t=null,n=null,o=0,i=null,r=!1){if((!e||e===Vb)&&(e=ln),ri(e)){const a=vo(e,t,!0);return n&&Yd(a,n),Oi>0&&!r&&xn&&(a.shapeFlag&6?xn[xn.indexOf(e)]=a:xn.push(a)),a.patchFlag|=-2,a}if(qw(e)&&(e=e.__vccOpts),t){t=ig(t);let{class:a,style:l}=t;a&&!Tt(a)&&(t.class=Ye(a)),Nt(l)&&(Dd(l)&&!He(l)&&(l=Rt({},l)),t.style=li(l))}const s=Tt(e)?1:$b(e)?128:Tw(e)?64:Nt(e)?4:et(e)?2:0;return c(e,t,n,o,i,s,r,!0)}function ig(e){return e?Dd(e)||ic in e?Rt({},e):e:null}function vo(e,t,n=!1){const{props:o,ref:i,patchFlag:r,children:s}=e,a=t?Zd(o||{},t):o;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:a,key:a&&og(a),ref:t&&t.ref?n&&i?He(i)?i.concat(rl(t)):[i,rl(t)]:rl(t):i,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:s,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Ge?r===-1?16:r|16:r,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&vo(e.ssContent),ssFallback:e.ssFallback&&vo(e.ssFallback),el:e.el,anchor:e.anchor}}function _t(e=" ",t=0){return x(ii,null,e,t)}function Mw(e,t){const n=x(Si,null,e);return n.staticCount=t,n}function Q(e="",t=!1){return t?(S(),Ce(ln,null,e)):x(ln,null,e)}function Pn(e){return e==null||typeof e=="boolean"?x(ln):He(e)?x(Ge,null,e.slice()):typeof e=="object"?qo(e):x(ii,null,String(e))}function qo(e){return e.el===null||e.memo?e:vo(e)}function Yd(e,t){let n=0;const{shapeFlag:o}=e;if(t==null)t=null;else if(He(t))n=16;else if(typeof t=="object")if(o&65){const i=t.default;i&&(i._c&&(i._d=!1),Yd(e,i()),i._c&&(i._d=!0));return}else{n=32;const i=t._;!i&&!(ic in t)?t._ctx=rn:i===3&&rn&&(rn.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else et(t)?(t={default:t,_ctx:rn},n=32):(t=String(t),o&64?(n=16,t=[_t(t)]):n=8);e.children=t,e.shapeFlag|=n}function Zd(...e){const t={};for(let n=0;nYt||rn,si=e=>{Yt=e,e.scope.on()},ei=()=>{Yt&&Yt.scope.off(),Yt=null};function sg(e){return e.vnode.shapeFlag&4}let pr=!1;function ag(e,t=!1){pr=t;const{props:n,children:o}=e.vnode,i=sg(e);xw(e,n,i,t),zw(e,o);const r=i?Nw(e,t):void 0;return pr=!1,r}function Nw(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=Fd(new Proxy(e.ctx,Ou));const{setup:o}=n;if(o){const i=e.setupContext=o.length>1?cg(e):null;si(e),Pi();const r=bo(o,e,0,[e.props,i]);if(Di(),ei(),$d(r)){if(r.then(ei,ei),t)return r.then(s=>{Mu(e,s,t)}).catch(s=>{Ii(s,e,0)});e.asyncDep=r}else Mu(e,r,t)}else lg(e,t)}function Mu(e,t,n){et(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:Nt(t)&&(e.setupState=Ld(t)),lg(e,n)}let kl,Lu;function jw(e){kl=e,Lu=t=>{t.render._rc&&(t.withProxy=new Proxy(t.ctx,bw))}}const Vw=()=>!kl;function lg(e,t,n){const o=e.type;if(!e.render){if(!t&&kl&&!o.render){const i=o.template;if(i){const{isCustomElement:r,compilerOptions:s}=e.appContext.config,{delimiters:a,compilerOptions:l}=o,u=Rt(Rt({isCustomElement:r,delimiters:a},s),l);o.render=kl(i,u)}}e.render=o.render||io,Lu&&Lu(e)}si(e),Pi(),gw(e),Di(),ei()}function Bw(e){return new Proxy(e.attrs,{get(t,n){return Rn(e,"get","$attrs"),t[n]}})}function cg(e){const t=o=>{e.exposed=o||{}};let n;return{get attrs(){return n||(n=Bw(e))},slots:e.slots,emit:e.emit,expose:t}}function rc(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(Ld(Fd(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in yl)return yl[n](e)}}))}const Uw=/(?:^|[-_])(\w)/g,Hw=e=>e.replace(Uw,t=>t.toUpperCase()).replace(/[-_]/g,"");function Cl(e,t=!0){return et(e)?e.displayName||e.name:e.name||t&&e.__name}function ug(e,t,n=!1){let o=Cl(t);if(!o&&t.__file){const i=t.__file.match(/([^/\\]+)\.\w+$/);i&&(o=i[1])}if(!o&&e&&e.parent){const i=r=>{for(const s in r)if(r[s]===t)return s};o=i(e.components||e.parent.type.components)||i(e.appContext.components)}return o?Hw(o):n?"App":"Anonymous"}function qw(e){return et(e)&&"__vccOpts"in e}const Ot=(e,t)=>L1(e,t,pr);function Gw(){return null}function Ww(){return null}function Kw(e){}function Yw(e,t){return null}function Zw(){return dg().slots}function Jw(){return dg().attrs}function dg(){const e=ao();return e.setupContext||(e.setupContext=cg(e))}function Xw(e,t){const n=He(e)?e.reduce((o,i)=>(o[i]={},o),{}):e;for(const o in t){const i=n[o];i?He(i)||et(i)?n[o]={type:i,default:t[o]}:i.default=t[o]:i===null&&(n[o]={default:t[o]})}return n}function Qw(e,t){const n={};for(const o in e)t.includes(o)||Object.defineProperty(n,o,{enumerable:!0,get:()=>e[o]});return n}function ex(e){const t=ao();let n=e();return ei(),$d(n)&&(n=n.catch(o=>{throw si(t),o})),[n,()=>si(t)]}function kn(e,t,n){const o=arguments.length;return o===2?Nt(t)&&!He(t)?ri(t)?x(e,null,[t]):x(e,t):x(e,null,t):(o>3?n=Array.prototype.slice.call(arguments,2):o===3&&ri(n)&&(n=[n]),x(e,t,n))}const fg=Symbol(""),tx=()=>{{const e=ro(fg);return e||_b("Server rendering context not provided. Make sure to only call useSSRContext() conditionally in the server build."),e}};function nx(){}function ox(e,t,n,o){const i=n[o];if(i&&mg(i,e))return i;const r=t();return r.memo=e.slice(),n[o]=r}function mg(e,t){const n=e.memo;if(n.length!=t.length)return!1;for(let o=0;o0&&xn&&xn.push(e),!0}const hg="3.2.37",ix={createComponentInstance:rg,setupComponent:ag,renderComponentRoot:il,setCurrentRenderingInstance:Os,isVNode:ri,normalizeVNode:Pn},rx=ix,sx=null,ax=null,lx="http://www.w3.org/2000/svg",wi=typeof document!="undefined"?document:null,Mm=wi&&wi.createElement("template"),cx={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,o)=>{const i=t?wi.createElementNS(lx,e):wi.createElement(e,n?{is:n}:void 0);return e==="select"&&o&&o.multiple!=null&&i.setAttribute("multiple",o.multiple),i},createText:e=>wi.createTextNode(e),createComment:e=>wi.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>wi.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},cloneNode(e){const t=e.cloneNode(!0);return"_value"in e&&(t._value=e._value),t},insertStaticContent(e,t,n,o,i,r){const s=n?n.previousSibling:t.lastChild;if(i&&(i===r||i.nextSibling))for(;t.insertBefore(i.cloneNode(!0),n),!(i===r||!(i=i.nextSibling)););else{Mm.innerHTML=o?`${e}`:e;const a=Mm.content;if(o){const l=a.firstChild;for(;l.firstChild;)a.appendChild(l.firstChild);a.removeChild(l)}t.insertBefore(a,n)}return[s?s.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};function ux(e,t,n){const o=e._vtc;o&&(t=(t?[t,...o]:[...o]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}function dx(e,t,n){const o=e.style,i=Tt(n);if(n&&!i){for(const r in n)Ru(o,r,n[r]);if(t&&!Tt(t))for(const r in t)n[r]==null&&Ru(o,r,"")}else{const r=o.display;i?t!==n&&(o.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(o.display=r)}}const Lm=/\s*!important$/;function Ru(e,t,n){if(He(n))n.forEach(o=>Ru(e,t,o));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const o=fx(e,t);Lm.test(n)?e.setProperty(po(o),n.replace(Lm,""),"important"):e[o]=n}}const Rm=["Webkit","Moz","ms"],Hc={};function fx(e,t){const n=Hc[t];if(n)return n;let o=Ln(t);if(o!=="filter"&&o in e)return Hc[t]=o;o=Rs(o);for(let i=0;i{let e=Date.now,t=!1;if(typeof window!="undefined"){Date.now()>document.createEvent("Event").timeStamp&&(e=performance.now.bind(performance));const n=navigator.userAgent.match(/firefox\/(\d+)/i);t=!!(n&&Number(n[1])<=53)}return[e,t]})();let Nu=0;const bx=Promise.resolve(),gx=()=>{Nu=0},vx=()=>Nu||(bx.then(gx),Nu=pg());function So(e,t,n,o){e.addEventListener(t,n,o)}function _x(e,t,n,o){e.removeEventListener(t,n,o)}function yx(e,t,n,o,i=null){const r=e._vei||(e._vei={}),s=r[t];if(o&&s)s.value=o;else{const[a,l]=wx(t);if(o){const u=r[t]=xx(o,i);So(e,a,u,l)}else s&&(_x(e,a,s,l),r[t]=void 0)}}const jm=/(?:Once|Passive|Capture)$/;function wx(e){let t;if(jm.test(e)){t={};let n;for(;n=e.match(jm);)e=e.slice(0,e.length-n[0].length),t[n[0].toLowerCase()]=!0}return[po(e.slice(2)),t]}function xx(e,t){const n=o=>{const i=o.timeStamp||pg();(px||i>=n.attached-1)&&In(kx(o,n.value),t,5,[o])};return n.value=e,n.attached=vx(),n}function kx(e,t){if(He(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(o=>i=>!i._stopped&&o&&o(i))}else return t}const Vm=/^on[a-z]/,Cx=(e,t,n,o,i=!1,r,s,a,l)=>{t==="class"?ux(e,o,i):t==="style"?dx(e,n,o):Ms(t)?zd(t)||yx(e,t,n,o,s):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):zx(e,t,o,i))?hx(e,t,o,r,s,a,l):(t==="true-value"?e._trueValue=o:t==="false-value"&&(e._falseValue=o),mx(e,t,o,i))};function zx(e,t,n,o){return o?!!(t==="innerHTML"||t==="textContent"||t in e&&Vm.test(t)&&et(n)):t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA"||Vm.test(t)&&Tt(n)?!1:t in e}function bg(e,t){const n=Vs(e);class o extends sc{constructor(r){super(n,r,t)}}return o.def=n,o}const Sx=e=>bg(e,Ag),$x=typeof HTMLElement!="undefined"?HTMLElement:class{};class sc extends $x{constructor(t,n={},o){super(),this._def=t,this._props=n,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this.shadowRoot&&o?o(this._createVNode(),this.shadowRoot):this.attachShadow({mode:"open"})}connectedCallback(){this._connected=!0,this._instance||this._resolveDef()}disconnectedCallback(){this._connected=!1,Yl(()=>{this._connected||(Vu(null,this.shadowRoot),this._instance=null)})}_resolveDef(){if(this._resolved)return;this._resolved=!0;for(let o=0;o{for(const i of o)this._setAttr(i.attributeName)}).observe(this,{attributes:!0});const t=o=>{const{props:i,styles:r}=o,s=!He(i),a=i?s?Object.keys(i):i:[];let l;if(s)for(const u in this._props){const d=i[u];(d===Number||d&&d.type===Number)&&(this._props[u]=ni(this._props[u]),(l||(l=Object.create(null)))[u]=!0)}this._numberProps=l;for(const u of Object.keys(this))u[0]!=="_"&&this._setProp(u,this[u],!0,!1);for(const u of a.map(Ln))Object.defineProperty(this,u,{get(){return this._getProp(u)},set(d){this._setProp(u,d)}});this._applyStyles(r),this._update()},n=this._def.__asyncLoader;n?n().then(t):t(this._def)}_setAttr(t){let n=this.getAttribute(t);this._numberProps&&this._numberProps[t]&&(n=ni(n)),this._setProp(Ln(t),n,!1)}_getProp(t){return this._props[t]}_setProp(t,n,o=!0,i=!0){n!==this._props[t]&&(this._props[t]=n,i&&this._instance&&this._update(),o&&(n===!0?this.setAttribute(po(t),""):typeof n=="string"||typeof n=="number"?this.setAttribute(po(t),n+""):n||this.removeAttribute(po(t))))}_update(){Vu(this._createVNode(),this.shadowRoot)}_createVNode(){const t=x(this._def,Rt({},this._props));return this._instance||(t.ce=n=>{this._instance=n,n.isCE=!0,n.emit=(i,...r)=>{this.dispatchEvent(new CustomEvent(i,{detail:r}))};let o=this;for(;o=o&&(o.parentNode||o.host);)if(o instanceof sc){n.parent=o._instance;break}}),t}_applyStyles(t){t&&t.forEach(n=>{const o=document.createElement("style");o.textContent=n,this.shadowRoot.appendChild(o)})}}function Ex(e="$style"){{const t=ao();if(!t)return vt;const n=t.type.__cssModules;if(!n)return vt;const o=n[e];return o||vt}}function Ax(e){const t=ao();if(!t)return;const n=()=>ju(t.subTree,e(t.proxy));Ab(n),Mi(()=>{const o=new MutationObserver(n);o.observe(t.subTree.el.parentNode,{childList:!0}),$r(()=>o.disconnect())})}function ju(e,t){if(e.shapeFlag&128){const n=e.suspense;e=n.activeBranch,n.pendingBranch&&!n.isHydrating&&n.effects.push(()=>{ju(n.activeBranch,t)})}for(;e.component;)e=e.component.subTree;if(e.shapeFlag&1&&e.el)Bm(e.el,t);else if(e.type===Ge)e.children.forEach(n=>ju(n,t));else if(e.type===Si){let{el:n,anchor:o}=e;for(;n&&(Bm(n,t),n!==o);)n=n.nextSibling}}function Bm(e,t){if(e.nodeType===1){const n=e.style;for(const o in t)n.setProperty(`--${o}`,t[o])}}const No="transition",Lr="animation",Gt=(e,{slots:t})=>kn(Hd,vg(e),t);Gt.displayName="Transition";const gg={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},Ox=Gt.props=Rt({},Hd.props,gg),mi=(e,t=[])=>{He(e)?e.forEach(n=>n(...t)):e&&e(...t)},Um=e=>e?He(e)?e.some(t=>t.length>1):e.length>1:!1;function vg(e){const t={};for(const R in e)R in gg||(t[R]=e[R]);if(e.css===!1)return t;const{name:n="v",type:o,duration:i,enterFromClass:r=`${n}-enter-from`,enterActiveClass:s=`${n}-enter-active`,enterToClass:a=`${n}-enter-to`,appearFromClass:l=r,appearActiveClass:u=s,appearToClass:d=a,leaveFromClass:m=`${n}-leave-from`,leaveActiveClass:f=`${n}-leave-active`,leaveToClass:h=`${n}-leave-to`}=e,p=Tx(i),b=p&&p[0],g=p&&p[1],{onBeforeEnter:y,onEnter:w,onEnterCancelled:C,onLeave:k,onLeaveCancelled:$,onBeforeAppear:O=y,onAppear:j=w,onAppearCancelled:F=C}=t,A=(R,q,B)=>{Ho(R,q?d:a),Ho(R,q?u:s),B&&B()},M=(R,q)=>{R._isLeaving=!1,Ho(R,m),Ho(R,h),Ho(R,f),q&&q()},G=R=>(q,B)=>{const re=R?j:w,X=()=>A(q,R,B);mi(re,[q,X]),Hm(()=>{Ho(q,R?l:r),Co(q,R?d:a),Um(re)||qm(q,o,b,X)})};return Rt(t,{onBeforeEnter(R){mi(y,[R]),Co(R,r),Co(R,s)},onBeforeAppear(R){mi(O,[R]),Co(R,l),Co(R,u)},onEnter:G(!1),onAppear:G(!0),onLeave(R,q){R._isLeaving=!0;const B=()=>M(R,q);Co(R,m),yg(),Co(R,f),Hm(()=>{!R._isLeaving||(Ho(R,m),Co(R,h),Um(k)||qm(R,o,g,B))}),mi(k,[R,B])},onEnterCancelled(R){A(R,!1),mi(C,[R])},onAppearCancelled(R){A(R,!0),mi(F,[R])},onLeaveCancelled(R){M(R),mi($,[R])}})}function Tx(e){if(e==null)return null;if(Nt(e))return[qc(e.enter),qc(e.leave)];{const t=qc(e);return[t,t]}}function qc(e){return ni(e)}function Co(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e._vtc||(e._vtc=new Set)).add(t)}function Ho(e,t){t.split(/\s+/).forEach(o=>o&&e.classList.remove(o));const{_vtc:n}=e;n&&(n.delete(t),n.size||(e._vtc=void 0))}function Hm(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Px=0;function qm(e,t,n,o){const i=e._endId=++Px,r=()=>{i===e._endId&&o()};if(n)return setTimeout(r,n);const{type:s,timeout:a,propCount:l}=_g(e,t);if(!s)return o();const u=s+"end";let d=0;const m=()=>{e.removeEventListener(u,f),r()},f=h=>{h.target===e&&++d>=l&&m()};setTimeout(()=>{d(n[p]||"").split(", "),i=o(No+"Delay"),r=o(No+"Duration"),s=Gm(i,r),a=o(Lr+"Delay"),l=o(Lr+"Duration"),u=Gm(a,l);let d=null,m=0,f=0;t===No?s>0&&(d=No,m=s,f=r.length):t===Lr?u>0&&(d=Lr,m=u,f=l.length):(m=Math.max(s,u),d=m>0?s>u?No:Lr:null,f=d?d===No?r.length:l.length:0);const h=d===No&&/\b(transform|all)(,|$)/.test(n[No+"Property"]);return{type:d,timeout:m,propCount:f,hasTransform:h}}function Gm(e,t){for(;e.lengthWm(n)+Wm(e[o])))}function Wm(e){return Number(e.slice(0,-1).replace(",","."))*1e3}function yg(){return document.body.offsetHeight}const wg=new WeakMap,xg=new WeakMap,Dx={name:"TransitionGroup",props:Rt({},Ox,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=ao(),o=Ud();let i,r;return tc(()=>{if(!i.length)return;const s=e.moveClass||`${e.name||"v"}-move`;if(!Rx(i[0].el,n.vnode.el,s))return;i.forEach(Ix),i.forEach(Mx);const a=i.filter(Lx);yg(),a.forEach(l=>{const u=l.el,d=u.style;Co(u,s),d.transform=d.webkitTransform=d.transitionDuration="";const m=u._moveCb=f=>{f&&f.target!==u||(!f||/transform$/.test(f.propertyName))&&(u.removeEventListener("transitionend",m),u._moveCb=null,Ho(u,s))};u.addEventListener("transitionend",m)})}),()=>{const s=ct(e),a=vg(s);let l=s.tag||Ge;i=r,r=t.default?Ql(t.default()):[];for(let u=0;u{s.split(/\s+/).forEach(a=>a&&o.classList.remove(a))}),n.split(/\s+/).forEach(s=>s&&o.classList.add(s)),o.style.display="none";const i=t.nodeType===1?t:t.parentNode;i.appendChild(o);const{hasTransform:r}=_g(o);return i.removeChild(o),r}const ai=e=>{const t=e.props["onUpdate:modelValue"]||!1;return He(t)?n=>lr(t,n):t};function Nx(e){e.target.composing=!0}function Km(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const zn={created(e,{modifiers:{lazy:t,trim:n,number:o}},i){e._assign=ai(i);const r=o||i.props&&i.props.type==="number";So(e,t?"change":"input",s=>{if(s.target.composing)return;let a=e.value;n&&(a=a.trim()),r&&(a=ni(a)),e._assign(a)}),n&&So(e,"change",()=>{e.value=e.value.trim()}),t||(So(e,"compositionstart",Nx),So(e,"compositionend",Km),So(e,"change",Km))},mounted(e,{value:t}){e.value=t==null?"":t},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:o,number:i}},r){if(e._assign=ai(r),e.composing||document.activeElement===e&&e.type!=="range"&&(n||o&&e.value.trim()===t||(i||e.type==="number")&&ni(e.value)===t))return;const s=t==null?"":t;e.value!==s&&(e.value=s)}},Oo={deep:!0,created(e,t,n){e._assign=ai(n),So(e,"change",()=>{const o=e._modelValue,i=br(e),r=e.checked,s=e._assign;if(He(o)){const a=Bl(o,i),l=a!==-1;if(r&&!l)s(o.concat(i));else if(!r&&l){const u=[...o];u.splice(a,1),s(u)}}else if(Ti(o)){const a=new Set(o);r?a.add(i):a.delete(i),s(a)}else s(kg(e,r))})},mounted:Ym,beforeUpdate(e,t,n){e._assign=ai(n),Ym(e,t,n)}};function Ym(e,{value:t,oldValue:n},o){e._modelValue=t,He(t)?e.checked=Bl(t,o.props.value)>-1:Ti(t)?e.checked=t.has(o.props.value):t!==n&&(e.checked=ti(t,kg(e,!0)))}const Jd={created(e,{value:t},n){e.checked=ti(t,n.props.value),e._assign=ai(n),So(e,"change",()=>{e._assign(br(e))})},beforeUpdate(e,{value:t,oldValue:n},o){e._assign=ai(o),t!==n&&(e.checked=ti(t,o.props.value))}},Xd={deep:!0,created(e,{value:t,modifiers:{number:n}},o){const i=Ti(t);So(e,"change",()=>{const r=Array.prototype.filter.call(e.options,s=>s.selected).map(s=>n?ni(br(s)):br(s));e._assign(e.multiple?i?new Set(r):r:r[0])}),e._assign=ai(o)},mounted(e,{value:t}){Zm(e,t)},beforeUpdate(e,t,n){e._assign=ai(n)},updated(e,{value:t}){Zm(e,t)}};function Zm(e,t){const n=e.multiple;if(!(n&&!He(t)&&!Ti(t))){for(let o=0,i=e.options.length;o-1:r.selected=t.has(s);else if(ti(br(r),t)){e.selectedIndex!==o&&(e.selectedIndex=o);return}}!n&&e.selectedIndex!==-1&&(e.selectedIndex=-1)}}function br(e){return"_value"in e?e._value:e.value}function kg(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}const Cg={created(e,t,n){ha(e,t,n,null,"created")},mounted(e,t,n){ha(e,t,n,null,"mounted")},beforeUpdate(e,t,n,o){ha(e,t,n,o,"beforeUpdate")},updated(e,t,n,o){ha(e,t,n,o,"updated")}};function zg(e,t){switch(e){case"SELECT":return Xd;case"TEXTAREA":return zn;default:switch(t){case"checkbox":return Oo;case"radio":return Jd;default:return zn}}}function ha(e,t,n,o,i){const s=zg(e.tagName,n.props&&n.props.type)[i];s&&s(e,t,n,o)}function jx(){zn.getSSRProps=({value:e})=>({value:e}),Jd.getSSRProps=({value:e},t)=>{if(t.props&&ti(t.props.value,e))return{checked:!0}},Oo.getSSRProps=({value:e},t)=>{if(He(e)){if(t.props&&Bl(e,t.props.value)>-1)return{checked:!0}}else if(Ti(e)){if(t.props&&e.has(t.props.value))return{checked:!0}}else if(e)return{checked:!0}},Cg.getSSRProps=(e,t)=>{if(typeof t.type!="string")return;const n=zg(t.type.toUpperCase(),t.props&&t.props.type);if(n.getSSRProps)return n.getSSRProps(e,t)}}const Vx=["ctrl","shift","alt","meta"],Bx={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)=>Vx.some(n=>e[`${n}Key`]&&!t.includes(n))},bt=(e,t)=>(n,...o)=>{for(let i=0;in=>{if(!("key"in n))return;const o=po(n.key);if(t.some(i=>i===o||Ux[i]===o))return e(n)},gr={beforeMount(e,{value:t},{transition:n}){e._vod=e.style.display==="none"?"":e.style.display,n&&t?n.beforeEnter(e):Rr(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:o}){!t!=!n&&(o?t?(o.beforeEnter(e),Rr(e,!0),o.enter(e)):o.leave(e,()=>{Rr(e,!1)}):Rr(e,t))},beforeUnmount(e,{value:t}){Rr(e,t)}};function Rr(e,t){e.style.display=t?e._vod:"none"}function Hx(){gr.getSSRProps=({value:e})=>{if(!e)return{style:{display:"none"}}}}const Sg=Rt({patchProp:Cx},cx);let ps,Jm=!1;function $g(){return ps||(ps=Xb(Sg))}function Eg(){return ps=Jm?ps:Qb(Sg),Jm=!0,ps}const Vu=(...e)=>{$g().render(...e)},Ag=(...e)=>{Eg().hydrate(...e)},Og=(...e)=>{const t=$g().createApp(...e),{mount:n}=t;return t.mount=o=>{const i=Tg(o);if(!i)return;const r=t._component;!et(r)&&!r.render&&!r.template&&(r.template=i.innerHTML),i.innerHTML="";const s=n(i,!1,i instanceof SVGElement);return i instanceof Element&&(i.removeAttribute("v-cloak"),i.setAttribute("data-v-app","")),s},t},qx=(...e)=>{const t=Eg().createApp(...e),{mount:n}=t;return t.mount=o=>{const i=Tg(o);if(i)return n(i,!0,i instanceof SVGElement)},t};function Tg(e){return Tt(e)?document.querySelector(e):e}let Xm=!1;const Gx=()=>{Xm||(Xm=!0,jx(),Hx())},Wx=()=>{};var Kx=Object.freeze(Object.defineProperty({__proto__:null,compile:Wx,EffectScope:Ad,ReactiveEffect:Ns,customRef:F1,effect:o1,effectScope:X0,getCurrentScope:Q0,isProxy:Dd,isReactive:Ci,isReadonly:mr,isRef:qt,isShallow:gl,markRaw:Fd,onScopeDispose:e1,proxyRefs:Ld,reactive:Fi,readonly:Pd,ref:wn,shallowReactive:pb,shallowReadonly:A1,shallowRef:bb,stop:i1,toRaw:ct,toRef:vb,toRefs:ls,triggerRef:T1,unref:cr,camelize:Ln,capitalize:Rs,normalizeClass:Ye,normalizeProps:U0,normalizeStyle:li,toDisplayString:_,toHandlerKey:as,BaseTransition:Hd,Comment:ln,Fragment:Ge,KeepAlive:fw,Static:Si,Suspense:tw,Teleport:ci,Text:ii,callWithAsyncErrorHandling:In,callWithErrorHandling:bo,cloneVNode:vo,compatUtils:ax,computed:Ot,createBlock:Ce,createCommentVNode:Q,createElementBlock:D,createElementVNode:c,createHydrationRenderer:Qb,createPropsRestProxy:Qw,createRenderer:Xb,createSlots:Us,createStaticVNode:Mw,createTextVNode:_t,createVNode:x,defineAsyncComponent:uw,defineComponent:Vs,defineEmits:Ww,defineExpose:Kw,defineProps:Gw,get devtools(){return er},getCurrentInstance:ao,getTransitionRawChildren:Ql,guardReactiveProps:ig,h:kn,handleError:Ii,initCustomFormatter:nx,inject:ro,isMemoSame:mg,isRuntimeOnly:Vw,isVNode:ri,mergeDefaults:Xw,mergeProps:Zd,nextTick:Yl,onActivated:Pb,onBeforeMount:Ib,onBeforeUnmount:nc,onBeforeUpdate:Mb,onDeactivated:Db,onErrorCaptured:jb,onMounted:Mi,onRenderTracked:Nb,onRenderTriggered:Rb,onServerPrefetch:Lb,onUnmounted:$r,onUpdated:tc,openBlock:S,popScopeId:K1,provide:fs,pushScopeId:W1,queuePostFlushCb:jd,registerRuntimeCompiler:jw,renderList:xt,renderSlot:Ct,resolveComponent:P,resolveDirective:oc,resolveDynamicComponent:Bb,resolveFilter:sx,resolveTransitionHooks:hr,setBlockTracking:Iu,setDevtoolsHook:zb,setTransitionHooks:Ai,ssrContextKey:fg,ssrUtils:rx,toHandlers:pw,transformVNodeArgs:Fw,useAttrs:Jw,useSSRContext:tx,useSlots:Zw,useTransitionState:Ud,version:hg,warn:_b,watch:Mt,watchEffect:sw,watchPostEffect:Ab,watchSyncEffect:aw,withAsyncContext:ex,withCtx:T,withDefaults:Yw,withDirectives:zt,withMemo:ox,withScopeId:Y1,Transition:Gt,TransitionGroup:Fx,VueElement:sc,createApp:Og,createSSRApp:qx,defineCustomElement:bg,defineSSRCustomElement:Sx,hydrate:Ag,initDirectivesForSSR:Gx,render:Vu,useCssModule:Ex,useCssVars:Ax,vModelCheckbox:Oo,vModelDynamic:Cg,vModelRadio:Jd,vModelSelect:Xd,vModelText:zn,vShow:gr,withKeys:Dn,withModifiers:bt},Symbol.toStringTag,{value:"Module"}));/*! - * @intlify/shared v9.1.10 - * (c) 2022 kazuya kawaguchi - * Released under the MIT License. - */const Yx=typeof Symbol=="function"&&typeof Symbol.toStringTag=="symbol",Do=e=>Yx?Symbol(e):e,Zx=(e,t,n)=>Jx({l:e,k:t,s:n}),Jx=e=>JSON.stringify(e).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029").replace(/\u0027/g,"\\u0027"),en=e=>typeof e=="number"&&isFinite(e),Xx=e=>ef(e)==="[object Date]",zl=e=>ef(e)==="[object RegExp]",ac=e=>mt(e)&&Object.keys(e).length===0;function Qx(e,t){typeof console!="undefined"&&(console.warn("[intlify] "+e),t&&console.warn(t.stack))}const hn=Object.assign;let Qm;const Qd=()=>Qm||(Qm=typeof globalThis!="undefined"?globalThis:typeof self!="undefined"?self:typeof window!="undefined"?window:typeof global!="undefined"?global:{});function eh(e){return e.replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}const ek=Object.prototype.hasOwnProperty;function Pg(e,t){return ek.call(e,t)}const sn=Array.isArray,fn=e=>typeof e=="function",We=e=>typeof e=="string",Zt=e=>typeof e=="boolean",pn=e=>e!==null&&typeof e=="object",Dg=Object.prototype.toString,ef=e=>Dg.call(e),mt=e=>ef(e)==="[object Object]",tk=e=>e==null?"":sn(e)||mt(e)&&e.toString===Dg?JSON.stringify(e,null,2):String(e);/*! - * @intlify/message-resolver v9.1.10 - * (c) 2022 kazuya kawaguchi - * Released under the MIT License. - */const nk=Object.prototype.hasOwnProperty;function ok(e,t){return nk.call(e,t)}const sl=e=>e!==null&&typeof e=="object",ui=[];ui[0]={w:[0],i:[3,0],["["]:[4],o:[7]};ui[1]={w:[1],["."]:[2],["["]:[4],o:[7]};ui[2]={w:[2],i:[3,0],["0"]:[3,0]};ui[3]={i:[3,0],["0"]:[3,0],w:[1,1],["."]:[2,1],["["]:[4,1],o:[7,1]};ui[4]={["'"]:[5,0],['"']:[6,0],["["]:[4,2],["]"]:[1,3],o:8,l:[4,0]};ui[5]={["'"]:[4,0],o:8,l:[5,0]};ui[6]={['"']:[4,0],o:8,l:[6,0]};const ik=/^\s?(?:true|false|-?[\d.]+|'[^']*'|"[^"]*")\s?$/;function rk(e){return ik.test(e)}function sk(e){const t=e.charCodeAt(0),n=e.charCodeAt(e.length-1);return t===n&&(t===34||t===39)?e.slice(1,-1):e}function ak(e){if(e==null)return"o";switch(e.charCodeAt(0)){case 91:case 93:case 46:case 34:case 39:return e;case 95:case 36:case 45:return"i";case 9:case 10:case 13:case 160:case 65279:case 8232:case 8233:return"w"}return"i"}function lk(e){const t=e.trim();return e.charAt(0)==="0"&&isNaN(parseInt(e))?!1:rk(t)?sk(t):"*"+t}function ck(e){const t=[];let n=-1,o=0,i=0,r,s,a,l,u,d,m;const f=[];f[0]=()=>{s===void 0?s=a:s+=a},f[1]=()=>{s!==void 0&&(t.push(s),s=void 0)},f[2]=()=>{f[0](),i++},f[3]=()=>{if(i>0)i--,o=4,f[0]();else{if(i=0,s===void 0||(s=lk(s),s===!1))return!1;f[1]()}};function h(){const p=e[n+1];if(o===5&&p==="'"||o===6&&p==='"')return n++,a="\\"+p,f[0](),!0}for(;o!==null;)if(n++,r=e[n],!(r==="\\"&&h())){if(l=ak(r),m=ui[o],u=m[l]||m.l||8,u===8||(o=u[0],u[1]!==void 0&&(d=f[u[1]],d&&(a=r,d()===!1))))return;if(o===7)return t}}const th=new Map;function Sl(e,t){if(!sl(e))return null;let n=th.get(t);if(n||(n=ck(t),n&&th.set(t,n)),!n)return null;const o=n.length;let i=e,r=0;for(;re,dk=e=>"",fk="text",mk=e=>e.length===0?"":e.join(""),hk=tk;function nh(e,t){return e=Math.abs(e),t===2?e?e>1?1:0:1:e?Math.min(e,2):0}function pk(e){const t=en(e.pluralIndex)?e.pluralIndex:-1;return e.named&&(en(e.named.count)||en(e.named.n))?en(e.named.count)?e.named.count:en(e.named.n)?e.named.n:t:t}function bk(e,t){t.count||(t.count=e),t.n||(t.n=e)}function gk(e={}){const t=e.locale,n=pk(e),o=pn(e.pluralRules)&&We(t)&&fn(e.pluralRules[t])?e.pluralRules[t]:nh,i=pn(e.pluralRules)&&We(t)&&fn(e.pluralRules[t])?nh:void 0,r=g=>g[o(n,g.length,i)],s=e.list||[],a=g=>s[g],l=e.named||{};en(e.pluralIndex)&&bk(n,l);const u=g=>l[g];function d(g){const y=fn(e.messages)?e.messages(g):pn(e.messages)?e.messages[g]:!1;return y||(e.parent?e.parent.message(g):dk)}const m=g=>e.modifiers?e.modifiers[g]:uk,f=mt(e.processor)&&fn(e.processor.normalize)?e.processor.normalize:mk,h=mt(e.processor)&&fn(e.processor.interpolate)?e.processor.interpolate:hk,p=mt(e.processor)&&We(e.processor.type)?e.processor.type:fk,b={list:a,named:u,plural:r,linked:(g,y)=>{const w=d(g)(b);return We(y)?m(y)(w):w},message:d,type:p,interpolate:h,normalize:f};return b}/*! - * @intlify/message-compiler v9.1.10 - * (c) 2022 kazuya kawaguchi - * Released under the MIT License. - */function Fg(e,t,n={}){const{domain:o,messages:i,args:r}=n,s=e,a=new SyntaxError(String(s));return a.code=e,t&&(a.location=t),a.domain=o,a}/*! - * @intlify/devtools-if v9.1.10 - * (c) 2022 kazuya kawaguchi - * Released under the MIT License. - */const Ig={I18nInit:"i18n:init",FunctionTranslate:"function:translate"};/*! - * @intlify/core-base v9.1.10 - * (c) 2022 kazuya kawaguchi - * Released under the MIT License. - */let Ps=null;function vk(e){Ps=e}function _k(e,t,n){Ps&&Ps.emit(Ig.I18nInit,{timestamp:Date.now(),i18n:e,version:t,meta:n})}const yk=wk(Ig.FunctionTranslate);function wk(e){return t=>Ps&&Ps.emit(e,t)}const xk="9.1.10",lc=-1,oh="";function kk(){return{upper:e=>We(e)?e.toUpperCase():e,lower:e=>We(e)?e.toLowerCase():e,capitalize:e=>We(e)?`${e.charAt(0).toLocaleUpperCase()}${e.substr(1)}`:e}}let Ck,Mg=null;const ih=e=>{Mg=e},zk=()=>Mg;let rh=0;function Sk(e={}){const t=We(e.version)?e.version:xk,n=We(e.locale)?e.locale:"en-US",o=sn(e.fallbackLocale)||mt(e.fallbackLocale)||We(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:n,i=mt(e.messages)?e.messages:{[n]:{}},r=mt(e.datetimeFormats)?e.datetimeFormats:{[n]:{}},s=mt(e.numberFormats)?e.numberFormats:{[n]:{}},a=hn({},e.modifiers||{},kk()),l=e.pluralRules||{},u=fn(e.missing)?e.missing:null,d=Zt(e.missingWarn)||zl(e.missingWarn)?e.missingWarn:!0,m=Zt(e.fallbackWarn)||zl(e.fallbackWarn)?e.fallbackWarn:!0,f=!!e.fallbackFormat,h=!!e.unresolving,p=fn(e.postTranslation)?e.postTranslation:null,b=mt(e.processor)?e.processor:null,g=Zt(e.warnHtmlMessage)?e.warnHtmlMessage:!0,y=!!e.escapeParameter,w=fn(e.messageCompiler)?e.messageCompiler:Ck,C=fn(e.onWarn)?e.onWarn:Qx,k=e,$=pn(k.__datetimeFormatters)?k.__datetimeFormatters:new Map,O=pn(k.__numberFormatters)?k.__numberFormatters:new Map,j=pn(k.__meta)?k.__meta:{};rh++;const F={version:t,cid:rh,locale:n,fallbackLocale:o,messages:i,datetimeFormats:r,numberFormats:s,modifiers:a,pluralRules:l,missing:u,missingWarn:d,fallbackWarn:m,fallbackFormat:f,unresolving:h,postTranslation:p,processor:b,warnHtmlMessage:g,escapeParameter:y,messageCompiler:w,onWarn:C,__datetimeFormatters:$,__numberFormatters:O,__meta:j};return __INTLIFY_PROD_DEVTOOLS__&&_k(F,t,j),F}function tf(e,t,n,o,i){const{missing:r,onWarn:s}=e;if(r!==null){const a=r(e,n,t,i);return We(a)?a:t}else return t}function Hs(e,t,n){const o=e;o.__localeChainCache||(o.__localeChainCache=new Map);let i=o.__localeChainCache.get(n);if(!i){i=[];let r=[n];for(;sn(r);)r=sh(i,r,t);const s=sn(t)?t:mt(t)?t.default?t.default:null:t;r=We(s)?[s]:s,sn(r)&&sh(i,r,!1),o.__localeChainCache.set(n,i)}return i}function sh(e,t,n){let o=!0;for(let i=0;i"",mo=e=>fn(e);function lh(e,...t){const{fallbackFormat:n,postTranslation:o,unresolving:i,fallbackLocale:r,messages:s}=e,[a,l]=Uu(...t),u=Zt(l.missingWarn)?l.missingWarn:e.missingWarn,d=Zt(l.fallbackWarn)?l.fallbackWarn:e.fallbackWarn,m=Zt(l.escapeParameter)?l.escapeParameter:e.escapeParameter,f=!!l.resolvedMessage,h=We(l.default)||Zt(l.default)?Zt(l.default)?a:l.default:n?a:"",p=n||h!=="",b=We(l.locale)?l.locale:e.locale;m&&Ak(l);let[g,y,w]=f?[a,b,s[b]||{}]:Ok(e,a,b,r,d,u),C=a;if(!f&&!(We(g)||mo(g))&&p&&(g=h,C=g),!f&&(!(We(g)||mo(g))||!We(y)))return i?lc:a;let k=!1;const $=()=>{k=!0},O=mo(g)?g:Lg(e,a,y,g,C,$);if(k)return g;const j=Dk(e,y,w,l),F=gk(j),A=Tk(e,O,F),M=o?o(A):A;if(__INTLIFY_PROD_DEVTOOLS__){const G={timestamp:Date.now(),key:We(a)?a:mo(g)?g.key:"",locale:y||(mo(g)?g.locale:""),format:We(g)?g:mo(g)?g.source:"",message:M};G.meta=hn({},e.__meta,zk()||{}),yk(G)}return M}function Ak(e){sn(e.list)?e.list=e.list.map(t=>We(t)?eh(t):t):pn(e.named)&&Object.keys(e.named).forEach(t=>{We(e.named[t])&&(e.named[t]=eh(e.named[t]))})}function Ok(e,t,n,o,i,r){const{messages:s,onWarn:a}=e,l=Hs(e,o,n);let u={},d,m=null;const f="translate";for(let h=0;h{throw r&&r(s),s},onCacheKey:s=>Zx(t,n,s)}}function Dk(e,t,n,o){const{modifiers:i,pluralRules:r}=e,a={locale:t,modifiers:i,pluralRules:r,messages:l=>{const u=Sl(n,l);if(We(u)){let d=!1;const f=Lg(e,l,t,u,l,()=>{d=!0});return d?ah:f}else return mo(u)?u:ah}};return e.processor&&(a.processor=e.processor),o.list&&(a.list=o.list),o.named&&(a.named=o.named),en(o.plural)&&(a.pluralIndex=o.plural),a}function ch(e,...t){const{datetimeFormats:n,unresolving:o,fallbackLocale:i,onWarn:r}=e,{__datetimeFormatters:s}=e,[a,l,u,d]=Hu(...t),m=Zt(u.missingWarn)?u.missingWarn:e.missingWarn;Zt(u.fallbackWarn)?u.fallbackWarn:e.fallbackWarn;const f=!!u.part,h=We(u.locale)?u.locale:e.locale,p=Hs(e,i,h);if(!We(a)||a==="")return new Intl.DateTimeFormat(h).format(l);let b={},g,y=null;const w="datetime format";for(let $=0;${s===this.plugin.id&&this.fallbacks.setSettings(a)}),this.proxiedOn=new Proxy({},{get:(s,a)=>this.target?this.target.on[a]:(...l)=>{this.onQueue.push({method:a,args:l})}}),this.proxiedTarget=new Proxy({},{get:(s,a)=>this.target?this.target[a]:a==="on"?this.proxiedOn:Object.keys(this.fallbacks).includes(a)?(...l)=>(this.targetQueue.push({method:a,args:l,resolve:()=>{}}),this.fallbacks[a](...l)):(...l)=>new Promise(u=>{this.targetQueue.push({method:a,args:l,resolve:u})})})}async setRealTarget(t){this.target=t;for(const n of this.onQueue)this.target.on[n.method](...n.args);for(const n of this.targetQueue)n.resolve(await this.target[n.method](...n.args))}}function Vk(e,t){const n=e,o=Rg(),i=Fk(),r=Ik&&n.enableEarlyProxy;if(i&&(o.__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__||!r))i.emit(Mk,e,t);else{const s=r?new jk(n,i):null;(o.__VUE_DEVTOOLS_PLUGINS__=o.__VUE_DEVTOOLS_PLUGINS__||[]).push({pluginDescriptor:n,setupFn:t,proxy:s}),s&&t(s.proxiedTarget)}}/*! - * vue-i18n v9.1.10 - * (c) 2022 kazuya kawaguchi - * Released under the MIT License. - */const Bk="9.1.10";function Uk(){typeof __INTLIFY_PROD_DEVTOOLS__!="boolean"&&(Qd().__INTLIFY_PROD_DEVTOOLS__=!1)}function qn(e,...t){return Fg(e,null,void 0)}const Gc="__INTLIFY_META__",Wu=Do("__transrateVNode"),Ku=Do("__datetimeParts"),Yu=Do("__numberParts");Do("__enableEmitter");Do("__disableEmitter");const Hk=Do("__setPluralRules");Do("__intlifyMeta");const Ng=Do("__injectWithOption");let mh=0;function hh(e){return(t,n,o,i)=>e(n,o,ao()||void 0,i)}function jg(e,t){const{messages:n,__i18n:o}=t,i=mt(n)?n:sn(o)?{}:{[e]:{}};if(sn(o)&&o.forEach(({locale:r,resource:s})=>{r?(i[r]=i[r]||{},$l(s,i[r])):$l(s,i)}),t.flatJson)for(const r in i)Pg(i,r)&&Bu(i[r]);return i}const pa=e=>!pn(e)||sn(e);function $l(e,t){if(pa(e)||pa(t))throw qn(20);for(const n in e)Pg(e,n)&&(pa(e[n])||pa(t[n])?t[n]=e[n]:$l(e[n],t[n]))}const qk=()=>{const e=ao();return e&&e.type[Gc]?{[Gc]:e.type[Gc]}:null};function Vg(e={}){const{__root:t}=e,n=t===void 0;let o=Zt(e.inheritLocale)?e.inheritLocale:!0;const i=wn(t&&o?t.locale.value:We(e.locale)?e.locale:"en-US"),r=wn(t&&o?t.fallbackLocale.value:We(e.fallbackLocale)||sn(e.fallbackLocale)||mt(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:i.value),s=wn(jg(i.value,e)),a=wn(mt(e.datetimeFormats)?e.datetimeFormats:{[i.value]:{}}),l=wn(mt(e.numberFormats)?e.numberFormats:{[i.value]:{}});let u=t?t.missingWarn:Zt(e.missingWarn)||zl(e.missingWarn)?e.missingWarn:!0,d=t?t.fallbackWarn:Zt(e.fallbackWarn)||zl(e.fallbackWarn)?e.fallbackWarn:!0,m=t?t.fallbackRoot:Zt(e.fallbackRoot)?e.fallbackRoot:!0,f=!!e.fallbackFormat,h=fn(e.missing)?e.missing:null,p=fn(e.missing)?hh(e.missing):null,b=fn(e.postTranslation)?e.postTranslation:null,g=Zt(e.warnHtmlMessage)?e.warnHtmlMessage:!0,y=!!e.escapeParameter;const w=t?t.modifiers:mt(e.modifiers)?e.modifiers:{};let C=e.pluralRules||t&&t.pluralRules,k;function $(){return Sk({version:Bk,locale:i.value,fallbackLocale:r.value,messages:s.value,datetimeFormats:a.value,numberFormats:l.value,modifiers:w,pluralRules:C,missing:p===null?void 0:p,missingWarn:u,fallbackWarn:d,fallbackFormat:f,unresolving:!0,postTranslation:b===null?void 0:b,warnHtmlMessage:g,escapeParameter:y,__datetimeFormatters:mt(k)?k.__datetimeFormatters:void 0,__numberFormatters:mt(k)?k.__numberFormatters:void 0,__v_emitter:mt(k)?k.__v_emitter:void 0,__meta:{framework:"vue"}})}k=$(),Nr(k,i.value,r.value);function O(){return[i.value,r.value,s.value,a.value,l.value]}const j=Ot({get:()=>i.value,set:V=>{i.value=V,k.locale=i.value}}),F=Ot({get:()=>r.value,set:V=>{r.value=V,k.fallbackLocale=r.value,Nr(k,i.value,V)}}),A=Ot(()=>s.value),M=Ot(()=>a.value),G=Ot(()=>l.value);function R(){return fn(b)?b:null}function q(V){b=V,k.postTranslation=V}function B(){return h}function re(V){V!==null&&(p=hh(V)),h=V,k.missing=p}function X(V,H,Ee,ke,De,Re){O();let qe;if(__INTLIFY_PROD_DEVTOOLS__)try{ih(qk()),qe=V(k)}finally{ih(null)}else qe=V(k);if(en(qe)&&qe===lc){const[tt,z]=H();return t&&m?ke(t):De(tt)}else{if(Re(qe))return qe;throw qn(14)}}function ce(...V){return X(H=>lh(H,...V),()=>Uu(...V),"translate",H=>H.t(...V),H=>H,H=>We(H))}function ge(...V){const[H,Ee,ke]=V;if(ke&&!pn(ke))throw qn(15);return ce(H,Ee,hn({resolvedMessage:!0},ke||{}))}function Le(...V){return X(H=>ch(H,...V),()=>Hu(...V),"datetime format",H=>H.d(...V),()=>oh,H=>We(H))}function Be(...V){return X(H=>dh(H,...V),()=>qu(...V),"number format",H=>H.n(...V),()=>oh,H=>We(H))}function pe(V){return V.map(H=>We(H)?x(ii,null,H,0):H)}const fe={normalize:pe,interpolate:V=>V,type:"vnode"};function we(...V){return X(H=>{let Ee;const ke=H;try{ke.processor=fe,Ee=lh(ke,...V)}finally{ke.processor=null}return Ee},()=>Uu(...V),"translate",H=>H[Wu](...V),H=>[x(ii,null,H,0)],H=>sn(H))}function U(...V){return X(H=>dh(H,...V),()=>qu(...V),"number format",H=>H[Yu](...V),()=>[],H=>We(H)||sn(H))}function se(...V){return X(H=>ch(H,...V),()=>Hu(...V),"datetime format",H=>H[Ku](...V),()=>[],H=>We(H)||sn(H))}function ie(V){C=V,k.pluralRules=C}function ye(V,H){const Ee=We(H)?H:i.value,ke=$e(Ee);return Sl(ke,V)!==null}function je(V){let H=null;const Ee=Hs(k,r.value,i.value);for(let ke=0;ke{o&&(i.value=V,k.locale=V,Nr(k,i.value,r.value))}),Mt(t.fallbackLocale,V=>{o&&(r.value=V,k.fallbackLocale=V,Nr(k,i.value,r.value))})),{id:mh,locale:j,fallbackLocale:F,get inheritLocale(){return o},set inheritLocale(V){o=V,V&&t&&(i.value=t.locale.value,r.value=t.fallbackLocale.value,Nr(k,i.value,r.value))},get availableLocales(){return Object.keys(s.value).sort()},messages:A,datetimeFormats:M,numberFormats:G,get modifiers(){return w},get pluralRules(){return C||{}},get isGlobal(){return n},get missingWarn(){return u},set missingWarn(V){u=V,k.missingWarn=u},get fallbackWarn(){return d},set fallbackWarn(V){d=V,k.fallbackWarn=d},get fallbackRoot(){return m},set fallbackRoot(V){m=V},get fallbackFormat(){return f},set fallbackFormat(V){f=V,k.fallbackFormat=f},get warnHtmlMessage(){return g},set warnHtmlMessage(V){g=V,k.warnHtmlMessage=V},get escapeParameter(){return y},set escapeParameter(V){y=V,k.escapeParameter=V},t:ce,rt:ge,d:Le,n:Be,te:ye,tm:Ie,getLocaleMessage:$e,setLocaleMessage:Ae,mergeLocaleMessage:E,getDateTimeFormat:L,setDateTimeFormat:Z,mergeDateTimeFormat:le,getNumberFormat:ue,setNumberFormat:ve,mergeNumberFormat:xe,getPostTranslationHandler:R,setPostTranslationHandler:q,getMissingHandler:B,setMissingHandler:re,[Wu]:we,[Yu]:U,[Ku]:se,[Hk]:ie,[Ng]:e.__injectWithOption}}const nf={tag:{type:[String,Object]},locale:{type:String},scope:{type:String,validator:e=>e==="parent"||e==="global",default:"parent"},i18n:{type:Object}},ph={name:"i18n-t",props:hn({keypath:{type:String,required:!0},plural:{type:[Number,String],validator:e=>en(e)||!isNaN(e)}},nf),setup(e,t){const{slots:n,attrs:o}=t,i=e.i18n||of({useScope:e.scope,__useComponent:!0}),r=Object.keys(n).filter(s=>s!=="_");return()=>{const s={};e.locale&&(s.locale=e.locale),e.plural!==void 0&&(s.plural=We(e.plural)?+e.plural:e.plural);const a=Gk(t,r),l=i[Wu](e.keypath,a,s),u=hn({},o);return We(e.tag)||pn(e.tag)?kn(e.tag,u,l):kn(Ge,u,l)}}};function Gk({slots:e},t){return t.length===1&&t[0]==="default"?e.default?e.default():[]:t.reduce((n,o)=>{const i=e[o];return i&&(n[o]=i()),n},{})}function Bg(e,t,n,o){const{slots:i,attrs:r}=t;return()=>{const s={part:!0};let a={};e.locale&&(s.locale=e.locale),We(e.format)?s.key=e.format:pn(e.format)&&(We(e.format.key)&&(s.key=e.format.key),a=Object.keys(e.format).reduce((m,f)=>n.includes(f)?hn({},m,{[f]:e.format[f]}):m,{}));const l=o(e.value,s,a);let u=[s.key];sn(l)?u=l.map((m,f)=>{const h=i[m.type];return h?h({[m.type]:m.value,index:f,parts:l}):[m.value]}):We(l)&&(u=[l]);const d=hn({},r);return We(e.tag)||pn(e.tag)?kn(e.tag,d,u):kn(Ge,d,u)}}const Wk=["localeMatcher","style","unit","unitDisplay","currency","currencyDisplay","useGrouping","numberingSystem","minimumIntegerDigits","minimumFractionDigits","maximumFractionDigits","minimumSignificantDigits","maximumSignificantDigits","notation","formatMatcher"],bh={name:"i18n-n",props:hn({value:{type:Number,required:!0},format:{type:[String,Object]}},nf),setup(e,t){const n=e.i18n||of({useScope:"parent",__useComponent:!0});return Bg(e,t,Wk,(...o)=>n[Yu](...o))}},Kk=["dateStyle","timeStyle","fractionalSecondDigits","calendar","dayPeriod","numberingSystem","localeMatcher","timeZone","hour12","hourCycle","formatMatcher","weekday","era","year","month","day","hour","minute","second","timeZoneName"],gh={name:"i18n-d",props:hn({value:{type:[Number,Date],required:!0},format:{type:[String,Object]}},nf),setup(e,t){const n=e.i18n||of({useScope:"parent",__useComponent:!0});return Bg(e,t,Kk,(...o)=>n[Ku](...o))}};function Yk(e,t){const n=e;if(e.mode==="composition")return n.__getInstance(t)||e.global;{const o=n.__getInstance(t);return o!=null?o.__composer:e.global.__composer}}function Zk(e){const t=(n,{instance:o,value:i,modifiers:r})=>{if(!o||!o.$)throw qn(22);const s=Yk(e,o.$),a=Jk(i);n.textContent=s.t(...Xk(a))};return{beforeMount:t,beforeUpdate:t}}function Jk(e){if(We(e))return{path:e};if(mt(e)){if(!("path"in e))throw qn(19,"path");return e}else throw qn(20)}function Xk(e){const{path:t,locale:n,args:o,choice:i,plural:r}=e,s={},a=o||{};return We(n)&&(s.locale=n),en(i)&&(s.plural=i),en(r)&&(s.plural=r),[t,a,s]}function Qk(e,t,...n){const o=mt(n[0])?n[0]:{},i=!!o.useI18nComponentName;(Zt(o.globalInstall)?o.globalInstall:!0)&&(e.component(i?"i18n":ph.name,ph),e.component(bh.name,bh),e.component(gh.name,gh)),e.directive("t",Zk(t))}function e2(e={}){const t=!!e.globalInjection,n=new Map,o=Vg(e),i=Do(""),r={get mode(){return"composition"},async install(s,...a){s.__VUE_I18N_SYMBOL__=i,s.provide(s.__VUE_I18N_SYMBOL__,r),t&&r2(s,r.global),Qk(s,r,...a)},get global(){return o},__instances:n,__getInstance(s){return n.get(s)||null},__setInstance(s,a){n.set(s,a)},__deleteInstance(s){n.delete(s)}};return r}function of(e={}){const t=ao();if(t==null)throw qn(16);if(!t.appContext.app.__VUE_I18N_SYMBOL__)throw qn(17);const n=ro(t.appContext.app.__VUE_I18N_SYMBOL__);if(!n)throw qn(22);const o=n.mode==="composition"?n.global:n.global.__composer,i=ac(e)?"__i18n"in t.type?"local":"global":e.useScope?e.useScope:"local";if(i==="global"){let a=pn(e.messages)?e.messages:{};"__i18nGlobal"in t.type&&(a=jg(o.locale.value,{messages:a,__i18n:t.type.__i18nGlobal}));const l=Object.keys(a);if(l.length&&l.forEach(u=>{o.mergeLocaleMessage(u,a[u])}),pn(e.datetimeFormats)){const u=Object.keys(e.datetimeFormats);u.length&&u.forEach(d=>{o.mergeDateTimeFormat(d,e.datetimeFormats[d])})}if(pn(e.numberFormats)){const u=Object.keys(e.numberFormats);u.length&&u.forEach(d=>{o.mergeNumberFormat(d,e.numberFormats[d])})}return o}if(i==="parent"){let a=t2(n,t,e.__useComponent);return a==null&&(a=o),a}if(n.mode==="legacy")throw qn(18);const r=n;let s=r.__getInstance(t);if(s==null){const a=t.type,l=hn({},e);a.__i18n&&(l.__i18n=a.__i18n),o&&(l.__root=o),s=Vg(l),n2(r,t),r.__setInstance(t,s)}return s}function t2(e,t,n=!1){let o=null;const i=t.root;let r=t.parent;for(;r!=null;){const s=e;if(e.mode==="composition")o=s.__getInstance(r);else{const a=s.__getInstance(r);a!=null&&(o=a.__composer),n&&o&&!o[Ng]&&(o=null)}if(o!=null||i===r)break;r=r.parent}return o}function n2(e,t,n){Mi(()=>{},t),$r(()=>{e.__deleteInstance(t)},t)}const o2=["locale","fallbackLocale","availableLocales"],i2=["t","rt","d","n","tm"];function r2(e,t){const n=Object.create(null);o2.forEach(o=>{const i=Object.getOwnPropertyDescriptor(t,o);if(!i)throw qn(22);const r=qt(i.value)?{get(){return i.value.value},set(s){i.value.value=s}}:{get(){return i.get&&i.get()}};Object.defineProperty(n,o,r)}),e.config.globalProperties.$i18n=n,i2.forEach(o=>{const i=Object.getOwnPropertyDescriptor(t,o);if(!i||!i.value)throw qn(22);Object.defineProperty(e.config.globalProperties,`$${o}`,i)})}Uk();if(__INTLIFY_PROD_DEVTOOLS__){const e=Qd();e.__INTLIFY__=!0,vk(e.__INTLIFY_DEVTOOLS_GLOBAL_HOOK__)}var s2={en:{data:{kind:{file:e=>{const{normalize:t}=e;return t(["File"])},url:e=>{const{normalize:t}=e;return t(["URL"])},spotify:e=>{const{normalize:t}=e;return t(["Spotify"])},pipe:e=>{const{normalize:t}=e;return t(["Stream"])}}},dialog:{cancel:e=>{const{normalize:t}=e;return t(["Cancel"])},add:{rss:{add:e=>{const{normalize:t}=e;return t(["Add"])},cancel:e=>{const{normalize:t}=e;return t(["Cancel"])},help:e=>{const{normalize:t}=e;return t(["Adding a podcast includes creating an RSS playlist, that will allow OwnTone to manage the podcast subscription."])},placeholder:e=>{const{normalize:t}=e;return t(["https://url-to-rss"])},processing:e=>{const{normalize:t}=e;return t(["Processing\u2026"])},title:e=>{const{normalize:t}=e;return t(["Add Podcast RSS feed URL"])}},stream:{add:e=>{const{normalize:t}=e;return t(["Add"])},cancel:e=>{const{normalize:t}=e;return t(["Cancel"])},loading:e=>{const{normalize:t}=e;return t(["Loading\u2026"])},placeholder:e=>{const{normalize:t}=e;return t(["https://url-to-stream"])},play:e=>{const{normalize:t}=e;return t(["Play"])},title:e=>{const{normalize:t}=e;return t(["Add Stream URL"])}}},album:{"add-next":e=>{const{normalize:t}=e;return t(["Add Next"])},add:e=>{const{normalize:t}=e;return t(["Add"])},"added-on":e=>{const{normalize:t}=e;return t(["Added on"])},artist:e=>{const{normalize:t}=e;return t(["Album artist"])},duration:e=>{const{normalize:t}=e;return t(["Duration"])},"mark-as-played":e=>{const{normalize:t}=e;return t(["Mark as played"])},play:e=>{const{normalize:t}=e;return t(["Play"])},"release-date":e=>{const{normalize:t}=e;return t(["Release date"])},"remove-podcast":e=>{const{normalize:t}=e;return t(["Remove podcast"])},tracks:e=>{const{normalize:t}=e;return t(["Track count"])},type:e=>{const{normalize:t}=e;return t(["Type"])},year:e=>{const{normalize:t}=e;return t(["Year"])}},artist:{"add-next":e=>{const{normalize:t}=e;return t(["Add Next"])},add:e=>{const{normalize:t}=e;return t(["Add"])},"added-on":e=>{const{normalize:t}=e;return t(["Added On"])},albums:e=>{const{normalize:t}=e;return t(["Albums"])},play:e=>{const{normalize:t}=e;return t(["Play"])},tracks:e=>{const{normalize:t}=e;return t(["Tracks"])},type:e=>{const{normalize:t}=e;return t(["Type"])}},composer:{"add-next":e=>{const{normalize:t}=e;return t(["Add Next"])},add:e=>{const{normalize:t}=e;return t(["Add"])},albums:e=>{const{normalize:t}=e;return t(["Albums"])},duration:e=>{const{normalize:t}=e;return t(["Duration"])},play:e=>{const{normalize:t}=e;return t(["Play"])},tracks:e=>{const{normalize:t}=e;return t(["Tracks"])}},directory:{"add-next":e=>{const{normalize:t}=e;return t(["Add Next"])},add:e=>{const{normalize:t}=e;return t(["Add"])},play:e=>{const{normalize:t}=e;return t(["Play"])}},genre:{"add-next":e=>{const{normalize:t}=e;return t(["Add Next"])},add:e=>{const{normalize:t}=e;return t(["Add"])},albums:e=>{const{normalize:t}=e;return t(["Albums"])},duration:e=>{const{normalize:t}=e;return t(["Duration"])},play:e=>{const{normalize:t}=e;return t(["Play"])},tracks:e=>{const{normalize:t}=e;return t(["Tracks"])}},playlist:{"add-next":e=>{const{normalize:t}=e;return t(["Add Next"])},add:e=>{const{normalize:t}=e;return t(["Add"])},play:e=>{const{normalize:t}=e;return t(["Play"])},"track-count":e=>{const{normalize:t}=e;return t(["Track Count"])},type:e=>{const{normalize:t}=e;return t(["Type"])},save:{cancel:e=>{const{normalize:t}=e;return t(["Cancel"])},save:e=>{const{normalize:t}=e;return t(["Save"])},saving:e=>{const{normalize:t}=e;return t(["Saving\u2026"])},title:e=>{const{normalize:t}=e;return t(["Save queue to playlist"])}}},"queue-item":{"album-artist":e=>{const{normalize:t}=e;return t(["Album Artist"])},album:e=>{const{normalize:t}=e;return t(["Album"])},bitrate:e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["|"," ",n(o("rate"))," kbit/s"])},channels:e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["|"," ",n(o("channels"))])},composer:e=>{const{normalize:t}=e;return t(["Composer"])},duration:e=>{const{normalize:t}=e;return t(["Duration"])},genre:e=>{const{normalize:t}=e;return t(["Genre"])},path:e=>{const{normalize:t}=e;return t(["Path"])},play:e=>{const{normalize:t}=e;return t(["Play"])},position:e=>{const{normalize:t}=e;return t(["Disc / Track"])},quality:e=>{const{normalize:t}=e;return t(["Quality"])},remove:e=>{const{normalize:t}=e;return t(["Remove"])},samplerate:e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["|"," ",n(o("rate"))," Hz"])},"spotify-album":e=>{const{normalize:t}=e;return t(["album"])},"spotify-artist":e=>{const{normalize:t}=e;return t(["artist"])},type:e=>{const{normalize:t}=e;return t(["Type"])},year:e=>{const{normalize:t}=e;return t(["Year"])}},"remote-pairing":{cancel:e=>{const{normalize:t}=e;return t(["Cancel"])},pair:e=>{const{normalize:t}=e;return t(["Pair Remote"])},title:e=>{const{normalize:t}=e;return t(["Remote pairing request"])}},spotify:{album:{"add-next":e=>{const{normalize:t}=e;return t(["Add Next"])},add:e=>{const{normalize:t}=e;return t(["Add"])},"album-artist":e=>{const{normalize:t}=e;return t(["Album Artist"])},play:e=>{const{normalize:t}=e;return t(["Play"])},"release-date":e=>{const{normalize:t}=e;return t(["Release Date"])},type:e=>{const{normalize:t}=e;return t(["Type"])}},artist:{"add-next":e=>{const{normalize:t}=e;return t(["Add Next"])},add:e=>{const{normalize:t}=e;return t(["Add"])},genres:e=>{const{normalize:t}=e;return t(["Genres"])},play:e=>{const{normalize:t}=e;return t(["Play"])},popularity:e=>{const{normalize:t}=e;return t(["Popularity / Followers"])}},playlist:{"add-next":e=>{const{normalize:t}=e;return t(["Add Next"])},add:e=>{const{normalize:t}=e;return t(["Add"])},owner:e=>{const{normalize:t}=e;return t(["Owner"])},path:e=>{const{normalize:t}=e;return t(["Path"])},play:e=>{const{normalize:t}=e;return t(["Play"])},tracks:e=>{const{normalize:t}=e;return t(["Tracks"])}},track:{"add-next":e=>{const{normalize:t}=e;return t(["Add Next"])},add:e=>{const{normalize:t}=e;return t(["Add"])},"album-artist":e=>{const{normalize:t}=e;return t(["Album Artist"])},album:e=>{const{normalize:t}=e;return t(["Album"])},duration:e=>{const{normalize:t}=e;return t(["Duration"])},path:e=>{const{normalize:t}=e;return t(["Path"])},play:e=>{const{normalize:t}=e;return t(["Play"])},position:e=>{const{normalize:t}=e;return t(["Disc / Track"])},"release-date":e=>{const{normalize:t}=e;return t(["Release Date"])}}},track:{"add-next":e=>{const{normalize:t}=e;return t(["Add Next"])},add:e=>{const{normalize:t}=e;return t(["Add"])},"added-on":e=>{const{normalize:t}=e;return t(["Added On"])},"album-artist":e=>{const{normalize:t}=e;return t(["Album Artist"])},album:e=>{const{normalize:t}=e;return t(["Album"])},bitrate:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([" ","|"," ",n(o("rate"))," Kb/s"])},channels:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([" ","|"," ",n(o("channels"))])},comment:e=>{const{normalize:t}=e;return t(["Comment"])},composer:e=>{const{normalize:t}=e;return t(["Composer"])},duration:e=>{const{normalize:t}=e;return t(["Duration"])},genre:e=>{const{normalize:t}=e;return t(["Genre"])},"mark-as-new":e=>{const{normalize:t}=e;return t(["Mark as new"])},"mark-as-played":e=>{const{normalize:t}=e;return t(["Mark as played"])},path:e=>{const{normalize:t}=e;return t(["Path"])},play:e=>{const{normalize:t}=e;return t(["Play"])},position:e=>{const{normalize:t}=e;return t(["Disc / Track"])},quality:e=>{const{normalize:t}=e;return t(["Quality"])},"rating-value":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("rating"))," / 10"])},rating:e=>{const{normalize:t}=e;return t(["Rating"])},"release-date":e=>{const{normalize:t}=e;return t(["Release Date"])},samplerate:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([" ","|"," ",n(o("rate"))," Hz"])},"spotify-album":e=>{const{normalize:t}=e;return t(["album"])},"spotify-artist":e=>{const{normalize:t}=e;return t(["artist"])},type:e=>{const{normalize:t}=e;return t(["Type"])},year:e=>{const{normalize:t}=e;return t(["Year"])}},update:{all:e=>{const{normalize:t}=e;return t(["Update everything"])},cancel:e=>{const{normalize:t}=e;return t(["Cancel"])},feeds:e=>{const{normalize:t}=e;return t(["Only update RSS feeds"])},info:e=>{const{normalize:t}=e;return t(["Scan for new, deleted and modified files"])},local:e=>{const{normalize:t}=e;return t(["Only update local library"])},progress:e=>{const{normalize:t}=e;return t(["Library update in progress\u2026"])},"rescan-metadata":e=>{const{normalize:t}=e;return t(["Rescan metadata of unmodified files"])},rescan:e=>{const{normalize:t}=e;return t(["Rescan"])},spotify:e=>{const{normalize:t}=e;return t(["Only update Spotify"])},title:e=>{const{normalize:t}=e;return t(["Library update"])}}},language:{en:e=>{const{normalize:t}=e;return t(["English"])},fr:e=>{const{normalize:t}=e;return t(["French (Fran\xE7ais)"])}},list:{albums:{"info-1":e=>{const{normalize:t}=e;return t(["Permanently remove this podcast from your library?"])},"info-2":e=>{const{normalize:t}=e;return t(["This will also remove the RSS playlist "])},notification:e=>{const{normalize:t}=e;return t(["Podcast cannot be removed. Probably it was not added as an RSS playlist."])}},spotify:{"not-playable-track":e=>{const{normalize:t}=e;return t(["Track is not playable"])},"restriction-reason":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([", restriction reason: ",n(o("reason"))])}}},media:{kind:{album:e=>{const{normalize:t}=e;return t(["Album"])},audiobook:e=>{const{normalize:t}=e;return t(["Audiobook"])},music:e=>{const{normalize:t}=e;return t(["Music"])},podcast:e=>{const{normalize:t}=e;return t(["Podcast"])}}},navigation:{about:e=>{const{normalize:t}=e;return t(["About"])},albums:e=>{const{normalize:t}=e;return t(["Albums"])},artists:e=>{const{normalize:t}=e;return t(["Artists"])},audiobooks:e=>{const{normalize:t}=e;return t(["Audiobooks"])},"now-playing":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([" - ",n(o("album"))])},"stream-error":e=>{const{normalize:t}=e;return t(["HTTP stream error: failed to load stream or stopped loading due to network problem"])},stream:e=>{const{normalize:t}=e;return t(["HTTP stream"])},volume:e=>{const{normalize:t}=e;return t(["Volume"])},files:e=>{const{normalize:t}=e;return t(["Files"])},genres:e=>{const{normalize:t}=e;return t(["Genres"])},music:e=>{const{normalize:t}=e;return t(["Music"])},playlists:e=>{const{normalize:t}=e;return t(["Playlists"])},podcasts:e=>{const{normalize:t}=e;return t(["Podcasts"])},radio:e=>{const{normalize:t}=e;return t(["Radio"])},search:e=>{const{normalize:t}=e;return t(["Search"])},settings:e=>{const{normalize:t}=e;return t(["Settings"])},spotify:e=>{const{normalize:t}=e;return t(["Spotify"])},title:e=>{const{normalize:t}=e;return t(["OwnTone"])},"update-library":e=>{const{normalize:t}=e;return t(["Update Library"])}},page:{about:{albums:e=>{const{normalize:t}=e;return t(["Albums"])},artists:e=>{const{normalize:t}=e;return t(["Artists"])},"built-with":e=>{const{normalize:t}=e;return t(['Web interface built with Bulma, Material Design Icons, Vue.js, axios and more.'])},"compiled-with":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Compiled with support for ",n(o("options")),"."])},library:e=>{const{normalize:t}=e;return t(["Library"])},"total-playtime":e=>{const{normalize:t}=e;return t(["Total playtime"])},tracks:e=>{const{normalize:t}=e;return t(["Tracks"])},update:e=>{const{normalize:t}=e;return t(["Update"])},"updated-on":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("time"))," ago"])},updated:e=>{const{normalize:t}=e;return t(["Updated"])},uptime:e=>{const{normalize:t}=e;return t(["Uptime"])},version:e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Version ",n(o("version"))])}},album:{shuffle:e=>{const{normalize:t}=e;return t(["Shuffle"])},"track-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," tracks"])}},albums:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," albums"])},filter:e=>{const{normalize:t}=e;return t(["Filter"])},"hide-singles-help":e=>{const{normalize:t}=e;return t(["If active, hides singles and albums with tracks that only appear in playlists."])},"hide-singles":e=>{const{normalize:t}=e;return t(["Hide singles"])},"hide-spotify-help":e=>{const{normalize:t}=e;return t(["If active, hides albums that only appear in your Spotify library."])},"hide-spotify":e=>{const{normalize:t}=e;return t(["Hide albums from Spotify"])},title:e=>{const{normalize:t}=e;return t(["Albums"])},"sort-by":{title:e=>{const{normalize:t}=e;return t(["Sort by"])},name:e=>{const{normalize:t}=e;return t(["Name"])},"recently-added":e=>{const{normalize:t}=e;return t(["Recently added"])},"recently-released":e=>{const{normalize:t}=e;return t(["Recently released"])}}},artist:{"album-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," albums"])},shuffle:e=>{const{normalize:t}=e;return t(["Shuffle"])},"track-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," tracks"])},"sort-by":{title:e=>{const{normalize:t}=e;return t(["Sort by"])},name:e=>{const{normalize:t}=e;return t(["Name"])},"release-date":e=>{const{normalize:t}=e;return t(["Release date"])}}},artists:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," artists"])},filter:e=>{const{normalize:t}=e;return t(["Filter"])},"sort-by":{title:e=>{const{normalize:t}=e;return t(["Sort by"])},name:e=>{const{normalize:t}=e;return t(["Name"])},"recently-added":e=>{const{normalize:t}=e;return t(["Rencently added"])}},"hide-singles-help":e=>{const{normalize:t}=e;return t(["If active, hides artists that only appear on singles or playlists."])},"hide-singles":e=>{const{normalize:t}=e;return t(["Hide singles"])},"hide-spotify-help":e=>{const{normalize:t}=e;return t(["If active, hides artists that only appear in your Spotify library."])},"hide-spotify":e=>{const{normalize:t}=e;return t(["Hide artists from Spotify"])},title:e=>{const{normalize:t}=e;return t(["Artists"])}},audiobooks:{album:{play:e=>{const{normalize:t}=e;return t(["Play"])},"track-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," tracks"])}},albums:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," audiobooks"])},title:e=>{const{normalize:t}=e;return t(["Audiobooks"])}},artist:{"albums-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," albums"])},shuffle:e=>{const{normalize:t}=e;return t(["Shuffle"])}},artists:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," authors"])},title:e=>{const{normalize:t}=e;return t(["Authors"])}},tabs:{authors:e=>{const{normalize:t}=e;return t(["Authors"])},audiobooks:e=>{const{normalize:t}=e;return t(["Audiobooks"])}}},browse:{albums:e=>{const{normalize:t}=e;return t(["albums"])},"show-more":e=>{const{normalize:t}=e;return t(["Show more"])},tracks:e=>{const{normalize:t}=e;return t(["tracks"])},"recently-added":{albums:e=>{const{normalize:t}=e;return t(["albums"])},title:e=>{const{normalize:t}=e;return t(["Recently added"])}},"recently-played":{title:e=>{const{normalize:t}=e;return t(["Recently played"])},tracks:e=>{const{normalize:t}=e;return t(["tracks"])}},tabs:{albums:e=>{const{normalize:t}=e;return t(["Albums"])},artists:e=>{const{normalize:t}=e;return t(["Artists"])},browse:e=>{const{normalize:t}=e;return t(["Browse"])},composers:e=>{const{normalize:t}=e;return t(["Composers"])},genres:e=>{const{normalize:t}=e;return t(["Genres"])},spotify:e=>{const{normalize:t}=e;return t(["Spotify"])}}},composer:{"album-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," albums"])},shuffle:e=>{const{normalize:t}=e;return t(["Shuffle"])},"track-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," tracks"])}},composers:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," composers"])},title:e=>{const{normalize:t}=e;return t(["Composers"])}},files:{play:e=>{const{normalize:t}=e;return t(["Play"])},title:e=>{const{normalize:t}=e;return t(["Files"])}},genre:{"album-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," albums"])},shuffle:e=>{const{normalize:t}=e;return t(["Shuffle"])},"track-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," tracks"])}},genres:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," genres"])},title:e=>{const{normalize:t}=e;return t(["Genres"])}},"now-playing":{info:e=>{const{normalize:t}=e;return t(["Add some tracks by browsing your library"])},title:e=>{const{normalize:t}=e;return t(["Your play queue is empty"])}},playlist:{length:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("length"))," tracks"])},shuffle:e=>{const{normalize:t}=e;return t(["Shuffle"])}},playlists:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," playlists"])}},podcast:{play:e=>{const{normalize:t}=e;return t(["Play"])},"remove-error":e=>{const{normalize:t}=e;return t(["Podcast cannot be removed. Probably it was not added as an RSS playlist."])},"remove-info-1":e=>{const{normalize:t}=e;return t(["Permanently remove this podcast from your library?"])},"remove-info-2":e=>{const{normalize:t}=e;return t(["This will also remove the RSS playlist "])},"track-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," tracks"])}},podcasts:{add:e=>{const{normalize:t}=e;return t(["Add"])},count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," podcasts"])},"mark-all-played":e=>{const{normalize:t}=e;return t(["Mark All Played"])},"new-episodes":e=>{const{normalize:t}=e;return t(["New Episodes"])},title:e=>{const{normalize:t}=e;return t(["Podcasts"])},update:e=>{const{normalize:t}=e;return t(["Update"])}},queue:{"add-stream":e=>{const{normalize:t}=e;return t(["Add stream"])},clear:e=>{const{normalize:t}=e;return t(["Clear"])},count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," tracks"])},edit:e=>{const{normalize:t}=e;return t(["Edit"])},"hide-previous":e=>{const{normalize:t}=e;return t(["Hide previous"])},title:e=>{const{normalize:t}=e;return t(["Queue"])},save:e=>{const{normalize:t}=e;return t(["Save"])}},radio:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," stations"])},title:e=>{const{normalize:t}=e;return t(["Radio"])}},search:{albums:e=>{const{normalize:t}=e;return t(["Albums"])},artists:e=>{const{normalize:t}=e;return t(["Artists"])},audiobooks:e=>{const{normalize:t}=e;return t(["Audiobooks"])},composers:e=>{const{normalize:t}=e;return t(["Composers"])},help:e=>{const{normalize:t}=e;return t(['Tip: you can search by a smart playlist query language expression if you prefix it with query:.'])},"no-albums":e=>{const{normalize:t}=e;return t(["No albums found"])},"no-artists":e=>{const{normalize:t}=e;return t(["No artists found"])},"no-audiobooks":e=>{const{normalize:t}=e;return t(["No audiobooks found"])},"no-composers":e=>{const{normalize:t}=e;return t(["No composers found"])},"no-playlists":e=>{const{normalize:t}=e;return t(["No playlists found"])},"no-podcasts":e=>{const{normalize:t}=e;return t(["No podcasts found"])},"no-tracks":e=>{const{normalize:t}=e;return t(["No tracks found"])},playlists:e=>{const{normalize:t}=e;return t(["Playlists"])},podcasts:e=>{const{normalize:t}=e;return t(["Podcasts"])},"show-albums":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Show all ",n(o("count"))," albums"])},"show-artists":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Show all ",n(o("count"))," artists"])},"show-audiobooks":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Show all ",n(o("count"))," audiobooks"])},"show-composers":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Show all ",n(o("count"))," composers"])},"show-playlists":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Show all ",n(o("count"))," playlists"])},"show-podcasts":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Show all ",n(o("count"))," podcasts"])},"show-tracks":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Show all ",n(o("count"))," tracks"])},tracks:e=>{const{normalize:t}=e;return t(["Tracks"])},tabs:{library:e=>{const{normalize:t}=e;return t(["Library"])},spotify:e=>{const{normalize:t}=e;return t(["Spotify"])}}},settings:{artwork:{artwork:e=>{const{normalize:t}=e;return t(["Artwork"])},coverartarchive:e=>{const{normalize:t}=e;return t(["Cover Art Archive"])},discogs:e=>{const{normalize:t}=e;return t(["Discogs"])},"explanation-1":e=>{const{normalize:t}=e;return t(["OwnTone supports PNG and JPEG artwork which is either placed as separate image files in the library, embedded in the media files or made available online by radio stations."])},"explanation-2":e=>{const{normalize:t}=e;return t(["In addition to that, you can enable fetching artwork from the following artwork providers:"])},spotify:e=>{const{normalize:t}=e;return t(["Spotify"])}},devices:{"no-active-pairing":e=>{const{normalize:t}=e;return t(["No active pairing request."])},"pairing-request":e=>{const{normalize:t}=e;return t(["Remote pairing request from "])},pairing:e=>{const{normalize:t}=e;return t(["Remote Pairing"])},send:e=>{const{normalize:t}=e;return t(["Send"])},"speaker-pairing-info":e=>{const{normalize:t}=e;return t(["If your speaker requires pairing then activate it below and enter the PIN that it displays."])},"speaker-pairing":e=>{const{normalize:t}=e;return t(["Speaker pairing and device verification"])},"verification-code":e=>{const{normalize:t}=e;return t(["Enter verification code"])},verify:e=>{const{normalize:t}=e;return t(["Verify"])}},general:{"album-lists":e=>{const{normalize:t}=e;return t(["Album Lists"])},audiobooks:e=>{const{normalize:t}=e;return t(["Audiobooks"])},files:e=>{const{normalize:t}=e;return t(["Audio Files"])},language:e=>{const{normalize:t}=e;return t(["Language"])},music:e=>{const{normalize:t}=e;return t(["Music"])},"navigation-item-selection-info":e=>{const{normalize:t}=e;return t(["If you select more items than can be shown on your screen then the burger menu will disappear."])},"navigation-item-selection":e=>{const{normalize:t}=e;return t(["Select the top navigation bar menu items"])},"navigation-items":e=>{const{normalize:t}=e;return t(["Navigation Bar"])},"now-playing-page":e=>{const{normalize:t}=e;return t(["Now playing page"])},playlists:e=>{const{normalize:t}=e;return t(["Playlists"])},podcasts:e=>{const{normalize:t}=e;return t(["Podcasts"])},radio:e=>{const{normalize:t}=e;return t(["Radio"])},"recently-added-page-info":e=>{const{normalize:t}=e;return t(['Limit the number of albums shown on the "Recently Added" page'])},"recently-added-page":e=>{const{normalize:t}=e;return t(["Recently added page"])},search:e=>{const{normalize:t}=e;return t(["Search"])},"show-composer-genres-info-1":e=>{const{normalize:t}=e;return t(['Comma separated list of genres the composer should be displayed on the "now playing page"'])},"show-composer-genres-info-2":e=>{const{normalize:t}=e;return t(["Leave empty to always show the composer."])},"show-composer-genres-info-3":e=>{const{normalize:t}=e;return t(['The genre tag of the current track is matched by checking, if one of the defined genres are included. For example setting to "classical, soundtrack" will show the composer for tracks with a genre tag of "Contemporary Classical"'])},"show-composer-genres":e=>{const{normalize:t}=e;return t(["Show composer only for listed genres"])},"show-composer-info":e=>{const{normalize:t}=e;return t(['If enabled the composer of the current playing track is shown on the "now playing page"'])},"show-composer":e=>{const{normalize:t}=e;return t(["Show composer"])},"show-coverart":e=>{const{normalize:t}=e;return t(["Show cover artwork in album list"])}},services:{lastfm:{"grant-access":e=>{const{normalize:t}=e;return t(["Last.fm - Login with your Last.fm username and password to enable scrobbling"])},info:e=>{const{normalize:t}=e;return t(["OwnTone will not store your Last.fm username/password, only the session key. The session key does not expire."])},title:e=>{const{normalize:t}=e;return t(["Last.fm"])},"no-support":e=>{const{normalize:t}=e;return t(["OwnTone was built without support for Last.fm."])},"stop-scrobbling":e=>{const{normalize:t}=e;return t(["Stop scrobbling"])}},spotify:{"no-support":e=>{const{normalize:t}=e;return t(["OwnTone was either built without support for Spotify or libspotify is not installed."])},help:e=>{const{normalize:t}=e;return t(["If you normally log into Spotify with your Facebook account you must first go to Spotify's web site where you can get the Spotify username and password that matches your account."])},"logged-as":e=>{const{normalize:t}=e;return t(["Logged in as "])},requirements:e=>{const{normalize:t}=e;return t(["You must have a Spotify premium account."])},scopes:e=>{const{normalize:t}=e;return t(["Access to the Spotify Web API enables scanning of your Spotify library. Required scopes are: "])},user:e=>{const{normalize:t}=e;return t(["Access granted for "])},authorize:e=>{const{normalize:t}=e;return t(["Authorize Web API access"])},credentials:e=>{const{normalize:t}=e;return t([" - Login with your Spotify username and password"])},"grant-access":e=>{const{normalize:t}=e;return t(["Spotify Web API - Grant access to the Spotify Web API"])},"help-1":e=>{const{normalize:t}=e;return t(["libspotify enables OwnTone to play Spotify tracks."])},"help-2":e=>{const{normalize:t}=e;return t(["OwnTone will not store your password, but will still be able to log you in automatically afterwards, because libspotify saves a login token."])},reauthorize:e=>{const{normalize:t}=e;return t(["Please reauthorize Web API access to grant OwnTone the following additional access rights: "])},title:e=>{const{normalize:t}=e;return t(["Spotify"])}},login:e=>{const{normalize:t}=e;return t(["Login"])},logout:e=>{const{normalize:t}=e;return t(["Logout"])}},tabs:{artwork:e=>{const{normalize:t}=e;return t(["Artwork"])},general:e=>{const{normalize:t}=e;return t(["General"])},"online-services":e=>{const{normalize:t}=e;return t(["Online Services"])},"remotes-and-outputs":e=>{const{normalize:t}=e;return t(["Remotes and Outputs"])}}},spotify:{album:{shuffle:e=>{const{normalize:t}=e;return t(["Shuffle"])},"track-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," tracks"])}},artist:{"album-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," albums"])},shuffle:e=>{const{normalize:t}=e;return t(["Shuffle"])}},browse:{"featured-playlists":e=>{const{normalize:t}=e;return t(["Featured Playlists"])},"new-releases":e=>{const{normalize:t}=e;return t(["New Releases"])},"show-more":e=>{const{normalize:t}=e;return t(["Show More"])}},playlist:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," tracks"])},shuffle:e=>{const{normalize:t}=e;return t(["Shuffle"])}},search:{albums:e=>{const{normalize:t}=e;return t(["Albums"])},artists:e=>{const{normalize:t}=e;return t(["Artists"])},"no-albums":e=>{const{normalize:t}=e;return t(["No albums found"])},"no-artists":e=>{const{normalize:t}=e;return t(["No artists found"])},"no-playlists":e=>{const{normalize:t}=e;return t(["No playlists found"])},"no-tracks":e=>{const{normalize:t}=e;return t(["No tracks found"])},playlists:e=>{const{normalize:t}=e;return t(["Playlists"])},"show-all-albums":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Show all ",n(o("count"))," albums"])},"show-all-artists":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Show all ",n(o("count"))," artists"])},"show-all-playlists":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Show all ",n(o("count"))," playlists"])},"show-all-tracks":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Show all ",n(o("count"))," tracks"])},tracks:e=>{const{normalize:t}=e;return t(["Tracks"])}}}},setting:{"not-saved":e=>{const{normalize:t}=e;return t([" (error saving setting)"])},saved:e=>{const{normalize:t}=e;return t([" (setting saved)"])}},server:{"connection-failed":e=>{const{normalize:t}=e;return t(["Failed to connect to OwnTone server"])},"missing-port":e=>{const{normalize:t}=e;return t(["Missing websocket port"])},"request-failed":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Request failed (status: ",n(o("status"))," ",n(o("cause"))," ",n(o("url")),")"])},"queue-saved":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Queue saved to playlist ",n(o("name"))])},"appended-tracks":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," tracks appended to the queue"])},"empty-queue":e=>{const{normalize:t}=e;return t(["Queue is empty"])}},"group-by-list":{today:e=>{const{normalize:t}=e;return t(["Today"])},"last-week":e=>{const{normalize:t}=e;return t(["Last week"])},"last-month":e=>{const{normalize:t}=e;return t(["Last month"])}}},fr:{data:{kind:{file:e=>{const{normalize:t}=e;return t(["Fichier"])},url:e=>{const{normalize:t}=e;return t(["URL"])},spotify:e=>{const{normalize:t}=e;return t(["Spotify"])},pipe:e=>{const{normalize:t}=e;return t(["Flux"])}}},dialog:{cancel:e=>{const{normalize:t}=e;return t(["Annuler"])},add:{rss:{add:e=>{const{normalize:t}=e;return t(["Ajouter"])},cancel:e=>{const{normalize:t}=e;return t(["Annuler"])},help:e=>{const{normalize:t}=e;return t(["L\u2019ajout d\u2019un podcast inclut la cr\xE9ation d\u2019une liste de lecture RSS, qui permettra \xE0 OwnTone de g\xE9rer l\u2019abonnement au podcast."])},placeholder:e=>{const{normalize:t}=e;return t(["https://url-du-flux-rss"])},processing:e=>{const{normalize:t}=e;return t(["Traitement en cours\u2026"])},title:e=>{const{normalize:t}=e;return t(["Ajouter l\u2019URL du flux RSS du podcast"])}},stream:{add:e=>{const{normalize:t}=e;return t(["Ajouter"])},cancel:e=>{const{normalize:t}=e;return t(["Annuler"])},loading:e=>{const{normalize:t}=e;return t(["Chargement\u2026"])},placeholder:e=>{const{normalize:t}=e;return t(["https://url-du-flux"])},play:e=>{const{normalize:t}=e;return t(["Lire"])},title:e=>{const{normalize:t}=e;return t(["Ajouter l\u2019URL du flux"])}}},album:{"add-next":e=>{const{normalize:t}=e;return t(["Ajouter ensuite"])},add:e=>{const{normalize:t}=e;return t(["Ajouter"])},"added-on":e=>{const{normalize:t}=e;return t(["Ajout\xE9 le"])},artiste:e=>{const{normalize:t}=e;return t(["Album artist"])},duration:e=>{const{normalize:t}=e;return t(["Dur\xE9e"])},"mark-as-played":e=>{const{normalize:t}=e;return t(["Marquer comme lu"])},play:e=>{const{normalize:t}=e;return t(["Lire"])},"release-date":e=>{const{normalize:t}=e;return t(["Date de sortie"])},"remove-podcast":e=>{const{normalize:t}=e;return t(["Supprimer le podcast"])},tracks:e=>{const{normalize:t}=e;return t(["Pistes"])},type:e=>{const{normalize:t}=e;return t(["Type"])},year:e=>{const{normalize:t}=e;return t(["Ann\xE9e"])}},artiste:{"add-next":e=>{const{normalize:t}=e;return t(["Ajouter ensuite"])},add:e=>{const{normalize:t}=e;return t(["Ajouter"])},"added-on":e=>{const{normalize:t}=e;return t(["Ajout\xE9 le"])},albums:e=>{const{normalize:t}=e;return t(["Albums"])},play:e=>{const{normalize:t}=e;return t(["Lire"])},tracks:e=>{const{normalize:t}=e;return t(["Pistes"])},type:e=>{const{normalize:t}=e;return t(["Type"])}},composer:{"add-next":e=>{const{normalize:t}=e;return t(["Ajouter ensuite"])},add:e=>{const{normalize:t}=e;return t(["Ajouter"])},albums:e=>{const{normalize:t}=e;return t(["Albums"])},duration:e=>{const{normalize:t}=e;return t(["Dur\xE9e"])},play:e=>{const{normalize:t}=e;return t(["Lire"])},tracks:e=>{const{normalize:t}=e;return t(["Pistes"])}},directory:{"add-next":e=>{const{normalize:t}=e;return t(["Ajouter ensuite"])},add:e=>{const{normalize:t}=e;return t(["Ajouter"])},play:e=>{const{normalize:t}=e;return t(["Lire"])}},genre:{"add-next":e=>{const{normalize:t}=e;return t(["Ajouter ensuite"])},add:e=>{const{normalize:t}=e;return t(["Ajouter"])},albums:e=>{const{normalize:t}=e;return t(["Albums"])},duration:e=>{const{normalize:t}=e;return t(["Dur\xE9e"])},play:e=>{const{normalize:t}=e;return t(["Lire"])},tracks:e=>{const{normalize:t}=e;return t(["Pistes"])}},playlist:{"add-next":e=>{const{normalize:t}=e;return t(["Ajouter ensuite"])},add:e=>{const{normalize:t}=e;return t(["Ajouter"])},play:e=>{const{normalize:t}=e;return t(["Lire"])},"track-count":e=>{const{normalize:t}=e;return t(["Pistes"])},type:e=>{const{normalize:t}=e;return t(["Type"])},save:{cancel:e=>{const{normalize:t}=e;return t(["Annuler"])},save:e=>{const{normalize:t}=e;return t(["Enregistrer"])},saving:e=>{const{normalize:t}=e;return t(["Enregistrement en cours\u2026"])},title:e=>{const{normalize:t}=e;return t(["Enregister la file d\u2019attente dans une liste de lecture"])}}},"queue-item":{"album-artist":e=>{const{normalize:t}=e;return t(["Artiste de l\u2019album"])},album:e=>{const{normalize:t}=e;return t(["Album"])},bitrate:e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["|"," ",n(o("rate"))," kbit/s"])},channels:e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["|"," ",n(o("channels"))])},composer:e=>{const{normalize:t}=e;return t(["Compositeur"])},duration:e=>{const{normalize:t}=e;return t(["Dur\xE9e"])},genre:e=>{const{normalize:t}=e;return t(["Genre"])},path:e=>{const{normalize:t}=e;return t(["Emplacement"])},play:e=>{const{normalize:t}=e;return t(["Lire"])},position:e=>{const{normalize:t}=e;return t(["Disque / Piste"])},quality:e=>{const{normalize:t}=e;return t(["Qualit\xE9"])},remove:e=>{const{normalize:t}=e;return t(["Supprimer"])},samplerate:e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["|"," ",n(o("rate"))," Hz"])},"spotify-album":e=>{const{normalize:t}=e;return t(["album"])},"spotify-artist":e=>{const{normalize:t}=e;return t(["artiste"])},type:e=>{const{normalize:t}=e;return t(["Type"])},year:e=>{const{normalize:t}=e;return t(["Ann\xE9e"])}},"remote-pairing":{cancel:e=>{const{normalize:t}=e;return t(["Annuler"])},pair:e=>{const{normalize:t}=e;return t(["Jumeler la t\xE9l\xE9commande"])},title:e=>{const{normalize:t}=e;return t(["Demande de jumelage de t\xE9l\xE9commande"])}},spotify:{album:{"add-next":e=>{const{normalize:t}=e;return t(["Ajouter ensuite"])},add:e=>{const{normalize:t}=e;return t(["Ajouter"])},"album-artist":e=>{const{normalize:t}=e;return t(["Artiste de l\u2019album"])},play:e=>{const{normalize:t}=e;return t(["Lire"])},"release-date":e=>{const{normalize:t}=e;return t(["Date de sortie"])},type:e=>{const{normalize:t}=e;return t(["Type"])}},artiste:{"add-next":e=>{const{normalize:t}=e;return t(["Ajouter ensuite"])},add:e=>{const{normalize:t}=e;return t(["Ajouter"])},genres:e=>{const{normalize:t}=e;return t(["Genres"])},play:e=>{const{normalize:t}=e;return t(["Lire"])},popularity:e=>{const{normalize:t}=e;return t(["Popularit\xE9s / Followers"])}},playlist:{"add-next":e=>{const{normalize:t}=e;return t(["Ajouter ensuite"])},add:e=>{const{normalize:t}=e;return t(["Ajouter"])},owner:e=>{const{normalize:t}=e;return t(["Propri\xE9ataire"])},path:e=>{const{normalize:t}=e;return t(["Emplacement"])},play:e=>{const{normalize:t}=e;return t(["Lire"])},tracks:e=>{const{normalize:t}=e;return t(["Pistes"])}},track:{"add-next":e=>{const{normalize:t}=e;return t(["Ajouter ensuite"])},add:e=>{const{normalize:t}=e;return t(["Ajouter"])},"album-artist":e=>{const{normalize:t}=e;return t(["Artiste de l\u2019album"])},album:e=>{const{normalize:t}=e;return t(["Album"])},duration:e=>{const{normalize:t}=e;return t(["Dur\xE9e"])},path:e=>{const{normalize:t}=e;return t(["Emplacement"])},play:e=>{const{normalize:t}=e;return t(["Lire"])},position:e=>{const{normalize:t}=e;return t(["Disque / Piste"])},"release-date":e=>{const{normalize:t}=e;return t(["Date de sortie"])}}},track:{"add-next":e=>{const{normalize:t}=e;return t(["Ajouter ensuite"])},add:e=>{const{normalize:t}=e;return t(["Ajouter"])},"added-on":e=>{const{normalize:t}=e;return t(["Ajout\xE9 le"])},"album-artist":e=>{const{normalize:t}=e;return t(["Artiste de l\u2019album"])},album:e=>{const{normalize:t}=e;return t(["Album"])},bitrate:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([" ","|"," ",n(o("rate"))," Kb/s"])},channels:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([" ","|"," ",n(o("channels"))])},comment:e=>{const{normalize:t}=e;return t(["Commentaire"])},composer:e=>{const{normalize:t}=e;return t(["Compositeur"])},duration:e=>{const{normalize:t}=e;return t(["Dur\xE9e"])},genre:e=>{const{normalize:t}=e;return t(["Genre"])},"mark-as-new":e=>{const{normalize:t}=e;return t(["Marquer comme nouveau"])},"mark-as-played":e=>{const{normalize:t}=e;return t(["Marquer comme lu"])},path:e=>{const{normalize:t}=e;return t(["Emplacement"])},play:e=>{const{normalize:t}=e;return t(["Lire"])},position:e=>{const{normalize:t}=e;return t(["Disque / Piste"])},quality:e=>{const{normalize:t}=e;return t(["Qualit\xE9"])},"rating-value":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("rating"))," / 10"])},rating:e=>{const{normalize:t}=e;return t(["Classement"])},"release-date":e=>{const{normalize:t}=e;return t(["Date de sortie"])},samplerate:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([" ","|"," ",n(o("rate"))," Hz"])},"spotify-album":e=>{const{normalize:t}=e;return t(["album"])},"spotify-artist":e=>{const{normalize:t}=e;return t(["artiste"])},type:e=>{const{normalize:t}=e;return t(["Type"])},year:e=>{const{normalize:t}=e;return t(["Ann\xE9e"])}},update:{all:e=>{const{normalize:t}=e;return t(["Tout actualiser"])},cancel:e=>{const{normalize:t}=e;return t(["Annuler"])},feeds:e=>{const{normalize:t}=e;return t(["Actualiser uniquement les flux RSS"])},info:e=>{const{normalize:t}=e;return t(["Recherche les fichiers ajout\xE9s, supprim\xE9s et modifi\xE9s"])},local:e=>{const{normalize:t}=e;return t(["Actualiser uniquement la biblioth\xE8que locale"])},progress:e=>{const{normalize:t}=e;return t(["Actualisation de la biblioth\xE8que en cours\u2026"])},"rescan-metadata":e=>{const{normalize:t}=e;return t(["Analyser les m\xE9tadonn\xE9es des fichiers non modifi\xE9s"])},rescan:e=>{const{normalize:t}=e;return t(["Analyser"])},spotify:e=>{const{normalize:t}=e;return t(["Actualiser uniquement Spotify"])},title:e=>{const{normalize:t}=e;return t(["Actualisation de la biblioth\xE8que"])}}},language:{en:e=>{const{normalize:t}=e;return t(["Anglais (English)"])},fr:e=>{const{normalize:t}=e;return t(["Fran\xE7ais"])}},list:{albums:{"info-1":e=>{const{normalize:t}=e;return t(["Supprimer d\xE9finitivement ce podcast de votre biblioth\xE8que ?"])},"info-2":e=>{const{normalize:t}=e;return t(["Cela supprimera \xE9galement la liste de lecture RSS "])},notification:e=>{const{normalize:t}=e;return t(["Le podcast ne peut \xEAtre supprim\xE9. Il n\u2019avait probablement pas \xE9t\xE9 ajout\xE9 comme une liste de lecture RSS."])}},spotify:{"not-playable-track":e=>{const{normalize:t}=e;return t(["La piste ne peut pas \xEAtre lue"])},"restriction-reason":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([", raison de la restriction : ",n(o("reason"))])}}},media:{kind:{album:e=>{const{normalize:t}=e;return t(["Album"])},audiobook:e=>{const{normalize:t}=e;return t(["Livre audio"])},music:e=>{const{normalize:t}=e;return t(["Musique"])},podcast:e=>{const{normalize:t}=e;return t(["Podcast"])}}},navigation:{about:e=>{const{normalize:t}=e;return t(["\xC0 propos"])},albums:e=>{const{normalize:t}=e;return t(["Albums"])},artists:e=>{const{normalize:t}=e;return t(["Artistes"])},audiobooks:e=>{const{normalize:t}=e;return t(["Livres audio"])},"now-playing":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([" - ",n(o("album"))])},"stream-error":e=>{const{normalize:t}=e;return t(["Erreur du flux HTTP : \xE9chec du chargement du flux ou arr\xEAt du chargement en raison d\u2019un probl\xE8me r\xE9seau"])},stream:e=>{const{normalize:t}=e;return t(["Flux HTTP"])},volume:e=>{const{normalize:t}=e;return t(["Volume"])},files:e=>{const{normalize:t}=e;return t(["Fichiers"])},genres:e=>{const{normalize:t}=e;return t(["Genres"])},music:e=>{const{normalize:t}=e;return t(["Musique"])},playlists:e=>{const{normalize:t}=e;return t(["Listes de lecture"])},podcasts:e=>{const{normalize:t}=e;return t(["Podcasts"])},radio:e=>{const{normalize:t}=e;return t(["Radio"])},search:e=>{const{normalize:t}=e;return t(["Recherche"])},settings:e=>{const{normalize:t}=e;return t(["R\xE9glages"])},spotify:e=>{const{normalize:t}=e;return t(["Spotify"])},title:e=>{const{normalize:t}=e;return t(["OwnTone"])},"update-library":e=>{const{normalize:t}=e;return t(["Actualiser la biblioth\xE8que"])}},page:{about:{albums:e=>{const{normalize:t}=e;return t(["Albums"])},artists:e=>{const{normalize:t}=e;return t(["Artistes"])},"built-with":e=>{const{normalize:t}=e;return t(['Interface utilisateur construite avec Bulma, Material Design Icons, Vue.js, axios et plus.'])},"compiled-with":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Compil\xE9 avec les options ",n(o("options")),"."])},library:e=>{const{normalize:t}=e;return t(["Biblioth\xE8que"])},"total-playtime":e=>{const{normalize:t}=e;return t(["Dur\xE9e totale de lecture"])},tracks:e=>{const{normalize:t}=e;return t(["Pistes"])},update:e=>{const{normalize:t}=e;return t(["Actualiser"])},"updated-on":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["il y a ",n(o("time"))])},updated:e=>{const{normalize:t}=e;return t(["Mis \xE0 jour"])},uptime:e=>{const{normalize:t}=e;return t(["Temps de fonctionnement"])},name:e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Version ",n(o("version"))])}},album:{shuffle:e=>{const{normalize:t}=e;return t(["Lecture al\xE9atoire"])},"track-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," pistes"])}},albums:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," albums"])},filter:e=>{const{normalize:t}=e;return t(["Filtre"])},"hide-singles-help":e=>{const{normalize:t}=e;return t(["Si actif, masque les singles et les albums dont les pistes n\u2019apparaissent que dans les listes de lecture."])},"hide-singles":e=>{const{normalize:t}=e;return t(["Masquer les singles"])},"hide-spotify-help":e=>{const{normalize:t}=e;return t(["Si actif, masque les albums qui n\u2019apparaissent que dans votre biblioth\xE8que Spotify."])},"hide-spotify":e=>{const{normalize:t}=e;return t(["Masquer les albums de Spotify"])},title:e=>{const{normalize:t}=e;return t(["Albums"])},"sort-by":{title:e=>{const{normalize:t}=e;return t(["Trier par"])},name:e=>{const{normalize:t}=e;return t(["Nom"])},"recently-added":e=>{const{normalize:t}=e;return t(["Ajouts r\xE9cents"])},"recently-released":e=>{const{normalize:t}=e;return t(["Sorties r\xE9centes"])}}},artist:{"album-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," albums"])},shuffle:e=>{const{normalize:t}=e;return t(["Lecture al\xE9atoire"])},"track-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," pistes"])},"sort-by":{title:e=>{const{normalize:t}=e;return t(["Trier par"])},name:e=>{const{normalize:t}=e;return t(["Nom"])},"release-date":e=>{const{normalize:t}=e;return t(["Date de sortie"])}}},artists:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," artists"])},filter:e=>{const{normalize:t}=e;return t(["Filtre"])},"sort-by":{title:e=>{const{normalize:t}=e;return t(["Trier par"])},name:e=>{const{normalize:t}=e;return t(["Nom"])},"recently-added":e=>{const{normalize:t}=e;return t(["Ajouts r\xE9cents"])}},"hide-singles-help":e=>{const{normalize:t}=e;return t(["Si actif, masque les artistes qui n\u2019apparaissent que dans des singles ou des listes de lecture."])},"hide-singles":e=>{const{normalize:t}=e;return t(["Masquer les singles"])},"hide-spotify-help":e=>{const{normalize:t}=e;return t(["Si actif, masque les artistes qui n\u2019apparaissent que dans votre biblioth\xE8que Spotify."])},"hide-spotify":e=>{const{normalize:t}=e;return t(["Masquer les artistes de Spotify"])},title:e=>{const{normalize:t}=e;return t(["Artistes"])}},audiobooks:{album:{play:e=>{const{normalize:t}=e;return t(["Lire"])},"track-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," pistes"])}},albums:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," livres audio"])},title:e=>{const{normalize:t}=e;return t(["Livres audio"])}},artiste:{"albums-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," albums"])},shuffle:e=>{const{normalize:t}=e;return t(["Lecture al\xE9atoire"])}},artists:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," auteurs"])},title:e=>{const{normalize:t}=e;return t(["Auteurs"])}},tabs:{authors:e=>{const{normalize:t}=e;return t(["Auteurs"])},audiobooks:e=>{const{normalize:t}=e;return t(["Livres audio"])}}},browse:{albums:e=>{const{normalize:t}=e;return t(["albums"])},"show-more":e=>{const{normalize:t}=e;return t(["Afficher plus"])},tracks:e=>{const{normalize:t}=e;return t(["pistes"])},"recently-added":{albums:e=>{const{normalize:t}=e;return t(["albums"])},title:e=>{const{normalize:t}=e;return t(["Ajouts r\xE9cents"])}},"recently-played":{title:e=>{const{normalize:t}=e;return t(["Lectures r\xE9centes"])},tracks:e=>{const{normalize:t}=e;return t(["pistes"])}},tabs:{albums:e=>{const{normalize:t}=e;return t(["Albums"])},artists:e=>{const{normalize:t}=e;return t(["Artistes"])},browse:e=>{const{normalize:t}=e;return t(["Parcourir"])},composers:e=>{const{normalize:t}=e;return t(["Compositeurs"])},genres:e=>{const{normalize:t}=e;return t(["Genres"])},spotify:e=>{const{normalize:t}=e;return t(["Spotify"])}}},composer:{"album-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," albums"])},shuffle:e=>{const{normalize:t}=e;return t(["Lecture al\xE9atoire"])},"track-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," pistes"])}},composers:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," compositeurs"])},title:e=>{const{normalize:t}=e;return t(["Compositeurs"])}},files:{play:e=>{const{normalize:t}=e;return t(["Lire"])},title:e=>{const{normalize:t}=e;return t(["Fichiers"])}},genre:{"album-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," albums"])},shuffle:e=>{const{normalize:t}=e;return t(["Lecture al\xE9atoire"])},"track-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," pistes"])}},genres:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," genres"])},title:e=>{const{normalize:t}=e;return t(["Genres"])}},"now-playing":{info:e=>{const{normalize:t}=e;return t(["Ajoutez des pistes en parcourant votre biblioth\xE8que"])},title:e=>{const{normalize:t}=e;return t(["La file d\u2019attente est vide"])}},playlist:{length:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("length"))," pistes"])},shuffle:e=>{const{normalize:t}=e;return t(["Lecture al\xE9atoire"])}},playlists:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," listes de lecture"])}},podcast:{play:e=>{const{normalize:t}=e;return t(["Lire"])},"remove-error":e=>{const{normalize:t}=e;return t(["Le podcast ne peut pas \xEAtre supprim\xE9. Il n\u2019a probablement pas \xE9t\xE9 ajout\xE9 en tant que liste de lecture RSS."])},"remove-info-1":e=>{const{normalize:t}=e;return t(["Supprimer ce podcast de mani\xE8re permanente de la biblioth\xE8que ?"])},"remove-info-2":e=>{const{normalize:t}=e;return t(["Cela supprimera \xE9galement la liste de lecture RSS "])},"track-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," pistes"])}},podcasts:{add:e=>{const{normalize:t}=e;return t(["Ajouter"])},count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," podcasts"])},"mark-all-played":e=>{const{normalize:t}=e;return t(["Marquer comme lus"])},"new-episodes":e=>{const{normalize:t}=e;return t(["Nouveaux \xE9pisodes"])},title:e=>{const{normalize:t}=e;return t(["Podcasts"])},update:e=>{const{normalize:t}=e;return t(["Actualiser"])}},queue:{"add-stream":e=>{const{normalize:t}=e;return t(["Ajouter un flux"])},clear:e=>{const{normalize:t}=e;return t(["Effacer"])},count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," pistes"])},edit:e=>{const{normalize:t}=e;return t(["\xC9diter"])},"hide-previous":e=>{const{normalize:t}=e;return t(["Masquer l\u2019historique"])},queue:e=>{const{normalize:t}=e;return t(["File d\u2019attente"])},save:e=>{const{normalize:t}=e;return t(["Enregistrer"])}},radio:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," stations"])},title:e=>{const{normalize:t}=e;return t(["Radio"])}},search:{albums:e=>{const{normalize:t}=e;return t(["Albums"])},artists:e=>{const{normalize:t}=e;return t(["Artistes"])},audiobooks:e=>{const{normalize:t}=e;return t(["Livres audio"])},composers:e=>{const{normalize:t}=e;return t(["Compositeurs"])},help:e=>{const{normalize:t}=e;return t(['Astuce : en pr\xE9fixant votre requ\xEAte avec query:, vous pouvez effectuer une recherche avec une expression du langage de requ\xEAte de liste de lecture intelligente.'])},"no-albums":e=>{const{normalize:t}=e;return t(["Aucun album trouv\xE9"])},"no-artists":e=>{const{normalize:t}=e;return t(["Aucun artiste trouv\xE9"])},"no-audiobooks":e=>{const{normalize:t}=e;return t(["Aucun livre audio trouv\xE9"])},"no-composers":e=>{const{normalize:t}=e;return t(["Aucun compositeur trouv\xE9"])},"no-playlists":e=>{const{normalize:t}=e;return t(["Aucune liste de lecture trouv\xE9e"])},"no-podcasts":e=>{const{normalize:t}=e;return t(["Aucune podcast trouv\xE9"])},"no-tracks":e=>{const{normalize:t}=e;return t(["Aucune piste trouv\xE9e"])},playlists:e=>{const{normalize:t}=e;return t(["Listes de lecture"])},podcasts:e=>{const{normalize:t}=e;return t(["Podcasts"])},"show-albums":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Afficher les ",n(o("count"))," albums"])},"show-artists":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Afficher les ",n(o("count"))," artistes"])},"show-audiobooks":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Afficher les ",n(o("count"))," livres audio"])},"show-composers":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Afficher les ",n(o("count"))," compositeurs"])},"show-playlists":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Afficher les ",n(o("count"))," listes de lecture"])},"show-podcasts":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Afficher les ",n(o("count"))," podcasts"])},"show-tracks":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Afficher les ",n(o("count"))," pistes"])},tracks:e=>{const{normalize:t}=e;return t(["Pistes"])},tabs:{library:e=>{const{normalize:t}=e;return t(["Biblioth\xE8que"])},spotify:e=>{const{normalize:t}=e;return t(["Spotify"])}}},settings:{artwork:{artwork:e=>{const{normalize:t}=e;return t(["Illustrations"])},coverartarchive:e=>{const{normalize:t}=e;return t(["Cover Art Archive"])},discogs:e=>{const{normalize:t}=e;return t(["Discogs"])},"explanation-1":e=>{const{normalize:t}=e;return t(["Prend en charge les illustrations au format PNG et JPEG qui sont soit plac\xE9es dans la biblioth\xE8que en tant que fichiers image s\xE9par\xE9s, soit int\xE9gr\xE9es dans les fichiers m\xE9dia, soit mises \xE0 disposition en ligne par les stations de radio."])},"explanation-2":e=>{const{normalize:t}=e;return t(["En outre, vous pouvez activer la r\xE9cup\xE9ration des illustrations \xE0 partir des fournisseurs d\u2019illustrations suivants :"])},spotify:e=>{const{normalize:t}=e;return t(["Spotify"])}},devices:{"no-active-pairing":e=>{const{normalize:t}=e;return t(["Aucune demande de jumelage active."])},"pairing-request":e=>{const{normalize:t}=e;return t(["Demande de jumelage de t\xE9l\xE9commande "])},pairing:e=>{const{normalize:t}=e;return t(["Jumelage de t\xE9l\xE9commande"])},send:e=>{const{normalize:t}=e;return t(["Envoyer"])},"speaker-pairing-info":e=>{const{normalize:t}=e;return t(["Si votre enceinte n\xE9cessite un jumelage, activez-la ci-dessous et entrez le code PIN qu\u2019elle affiche."])},"speaker-pairing":e=>{const{normalize:t}=e;return t(["Jumelage d\u2019enceinte et v\xE9rification d\u2019appareil"])},"verification-code":e=>{const{normalize:t}=e;return t(["Code de v\xE9rification"])},verify:e=>{const{normalize:t}=e;return t(["V\xE9rifier"])}},general:{"album-lists":e=>{const{normalize:t}=e;return t(["Listes d\u2019album"])},audiobooks:e=>{const{normalize:t}=e;return t(["Livres audio"])},files:e=>{const{normalize:t}=e;return t(["Fichiers audio"])},language:e=>{const{normalize:t}=e;return t(["Langue"])},music:e=>{const{normalize:t}=e;return t(["Musique"])},"navigation-item-selection-info":e=>{const{normalize:t}=e;return t(["Si vous s\xE9lectionnez plus d\u2019\xE9l\xE9ments que ce qui peut \xEAtre affich\xE9 sur votre \xE9cran, le menu dispara\xEEtra."])},"navigation-item-selection":e=>{const{normalize:t}=e;return t(["S\xE9lectionnez les \xE9l\xE9ments de la barre de navigation sup\xE9rieure"])},"navigation-items":e=>{const{normalize:t}=e;return t(["Barre de navigation"])},"now-playing-page":e=>{const{normalize:t}=e;return t(["Now playing page"])},playlists:e=>{const{normalize:t}=e;return t(["Listes de lecture"])},podcasts:e=>{const{normalize:t}=e;return t(["Podcasts"])},radio:e=>{const{normalize:t}=e;return t(["Radio"])},"recently-added-page-info":e=>{const{normalize:t}=e;return t(['Limiter le nombre d\u2019album affich\xE9s dans la section "Ajouts r\xE9cents"'])},"recently-added-page":e=>{const{normalize:t}=e;return t(["Recently added page"])},search:e=>{const{normalize:t}=e;return t(["Search"])},"show-composer-genres-info-1":e=>{const{normalize:t}=e;return t(['Liste des genres, s\xE9par\xE9s par des virgules, que le compositeur doit afficher sur la page "Lecture en cours".'])},"show-composer-genres-info-2":e=>{const{normalize:t}=e;return t(["Laissez vide pour toujours afficher le compositeur."])},"show-composer-genres-info-3":e=>{const{normalize:t}=e;return t(['L\u2019\xE9tiquette de genre de la piste actuelle est compar\xE9e en v\xE9rifiant si l\u2019un des genres d\xE9finis est inclus. Par exemple, en choisissant "classique, bande sonore", le compositeur pour les pistes dont l\u2019\xE9tiquette de genre est "classique contemporain" sera affich\xE9.'])},"show-composer-genres":e=>{const{normalize:t}=e;return t(["Afficher le compositeur uniquement pour les genres list\xE9s"])},"show-composer-info":e=>{const{normalize:t}=e;return t(['Si actif, le compositeur de la piste en cours de lecture est affich\xE9 sur la page "lecture en cours"'])},"show-composer":e=>{const{normalize:t}=e;return t(["Afficher le compositeur"])},"show-coverart":e=>{const{normalize:t}=e;return t(["Afficher les illustration dans la liste d\u2019albums"])}},services:{lastfm:{"grant-access":e=>{const{normalize:t}=e;return t(["Last.fm - Connectez-vous avec votre nom d\u2019utilisateur et votre mot de passe Last.fm pour activer le scrobbling."])},info:e=>{const{normalize:t}=e;return t(["Le nom d\u2019utilisateur et le mot de passe Last.fm ne sont pas enregistr\xE9s, uniquement la cl\xE9 de session. La cl\xE9 de session n\u2019expire pas."])},title:e=>{const{normalize:t}=e;return t(["Last.fm"])},"no-support":e=>{const{normalize:t}=e;return t(["L\u2019option Last.fm n\u2019est pas pr\xE9sente."])},"stop-scrobbling":e=>{const{normalize:t}=e;return t(["Arr\xEAter le scrobbling"])}},spotify:{"no-support":e=>{const{normalize:t}=e;return t(["L\u2019option Spotify n\u2019est pas pr\xE9sente."])},help:e=>{const{normalize:t}=e;return t(["Si vous vous connectez habituellement \xE0 Spotify avec votre compte Facebook, vous devez d\u2019abord vous rendre sur le site de Spotify pour obtenir le nom d\u2019utilisateur et le mot de passe correspondant \xE0 votre compte."])},"logged-as":e=>{const{normalize:t}=e;return t(["Connect\xE9 en tant que "])},requirements:e=>{const{normalize:t}=e;return t(["Vous devez poss\xE9der un compte Spotify Premium."])},scopes:e=>{const{normalize:t}=e;return t(["L\u2019acc\xE8s \xE0 l\u2019API de Spotify permet l\u2019analyse de votre biblioth\xE8que Spotify. Les champs d\u2019application requis sont les suivants :"])},user:e=>{const{normalize:t}=e;return t(["Acc\xE8s autoris\xE9 pour "])},authorize:e=>{const{normalize:t}=e;return t(["Autoriser l\u2019acc\xE8s \xE0 l\u2019API"])},credentials:e=>{const{normalize:t}=e;return t([" - Connectez-vous avec votre nom d\u2019utilisateur et mot de passe Spotify"])},"grant-access":e=>{const{normalize:t}=e;return t(["Spotify - Accordez l\u2019acc\xE8s \xE0 l\u2019API de Spotify"])},"help-1":e=>{const{normalize:t}=e;return t(["La biblioth\xE8que libspotify permet de lire les pistes de Spotify."])},"help-2":e=>{const{normalize:t}=e;return t(["Votre nom d\u2019utilisateur et votre mot de passe Spotify ne sont pas enregistr\xE9s, uniquement le jeton de connexion."])},reauthorize:e=>{const{normalize:t}=e;return t(["Veuillez autoriser \xE0 nouveau l\u2019acc\xE8s \xE0 l\u2019API pour accorder \xE0 OwnTone les droits d\u2019acc\xE8s suppl\xE9mentaires suivants :"])},title:e=>{const{normalize:t}=e;return t(["Spotify"])}},login:e=>{const{normalize:t}=e;return t(["Se connecter"])},logout:e=>{const{normalize:t}=e;return t(["Se d\xE9connecter"])}},tabs:{artwork:e=>{const{normalize:t}=e;return t(["Illustrations"])},general:e=>{const{normalize:t}=e;return t(["G\xE9n\xE9ral"])},"online-services":e=>{const{normalize:t}=e;return t(["Services en ligne"])},"remotes-and-outputs":e=>{const{normalize:t}=e;return t(["T\xE9l\xE9commandes et sorties"])}}},spotify:{album:{shuffle:e=>{const{normalize:t}=e;return t(["Lecture al\xE9atoire"])},"track-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," pistes"])}},artiste:{"album-count":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," albums"])},shuffle:e=>{const{normalize:t}=e;return t(["Lecture al\xE9atoire"])}},browse:{"featured-playlists":e=>{const{normalize:t}=e;return t(["Listes de lecture en vedette"])},"new-releases":e=>{const{normalize:t}=e;return t(["Nouvelle sorties"])},"show-more":e=>{const{normalize:t}=e;return t(["Afficher plus"])}},playlist:{count:e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," pistes"])},shuffle:e=>{const{normalize:t}=e;return t(["Lecture al\xE9atoire"])}},search:{albums:e=>{const{normalize:t}=e;return t(["Albums"])},artists:e=>{const{normalize:t}=e;return t(["Artistes"])},"no-albums":e=>{const{normalize:t}=e;return t(["Aucun album trouv\xE9"])},"no-artists":e=>{const{normalize:t}=e;return t(["Aucun artiste trouv\xE9"])},"no-playlists":e=>{const{normalize:t}=e;return t(["Aucune liste de lecture trouv\xE9e"])},"no-tracks":e=>{const{normalize:t}=e;return t(["Aucune piste trouv\xE9e"])},playlists:e=>{const{normalize:t}=e;return t(["Listes de lecture"])},"show-all-albums":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Afficher les ",n(o("count"))," albums"])},"show-all-artists":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Afficher les ",n(o("count"))," artistes"])},"show-all-playlists":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Afficher les ",n(o("count"))," listes de lecture"])},"show-all-tracks":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["Afficher les ",n(o("count"))," pistes"])},tracks:e=>{const{normalize:t}=e;return t(["Pistes"])}}}},setting:{"not-saved":e=>{const{normalize:t}=e;return t([" (erreur \xE0 l\u2019enregistrement du r\xE9glage)"])},saved:e=>{const{normalize:t}=e;return t([" (r\xE9glage enregistr\xE9)"])}},server:{"connection-failed":e=>{const{normalize:t}=e;return t(["\xC9chec de connexion au serveur"])},"missing-port":e=>{const{normalize:t}=e;return t(["Port websocket manquant"])},"request-failed":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["La requ\xEAte a \xE9chou\xE9 (status: ",n(o("status"))," ",n(o("cause"))," ",n(o("url")),")"])},"queue-saved":e=>{const{normalize:t,interpolate:n,named:o}=e;return t(["La file d\u2019attente enregistr\xE9e dans la liste de lecture ",n(o("name"))])},"appended-tracks":e=>{const{normalize:t,interpolate:n,named:o}=e;return t([n(o("count"))," pistes ajout\xE9es \xE0 la file d\u2019attente"])},"empty-queue":e=>{const{normalize:t}=e;return t(["La file d\u2019attente est vide"])}},"group-by-list":{today:e=>{const{normalize:t}=e;return t(["Aujourd\u2019hui"])},"last-week":e=>{const{normalize:t}=e;return t(["La semaine derni\xE8re"])},"last-month":e=>{const{normalize:t}=e;return t(["Le mois dernier"])}}}},a2=e2({legacy:!1,globalInjection:!0,locale:navigator.language,fallbackLocale:"en",fallbackWarn:!1,missingWarn:!1,messages:s2});/*! - * vuex v4.0.2 - * (c) 2021 Evan You - * @license MIT - */var l2="store";function Er(e,t){Object.keys(e).forEach(function(n){return t(e[n],n)})}function c2(e){return e!==null&&typeof e=="object"}function u2(e){return e&&typeof e.then=="function"}function d2(e,t){return function(){return e(t)}}function Ug(e,t,n){return t.indexOf(e)<0&&(n&&n.prepend?t.unshift(e):t.push(e)),function(){var o=t.indexOf(e);o>-1&&t.splice(o,1)}}function Hg(e,t){e._actions=Object.create(null),e._mutations=Object.create(null),e._wrappedGetters=Object.create(null),e._modulesNamespaceMap=Object.create(null);var n=e.state;cc(e,n,[],e._modules.root,!0),rf(e,n,t)}function rf(e,t,n){var o=e._state;e.getters={},e._makeLocalGettersCache=Object.create(null);var i=e._wrappedGetters,r={};Er(i,function(s,a){r[a]=d2(s,e),Object.defineProperty(e.getters,a,{get:function(){return r[a]()},enumerable:!0})}),e._state=Fi({data:t}),e.strict&&b2(e),o&&n&&e._withCommit(function(){o.data=null})}function cc(e,t,n,o,i){var r=!n.length,s=e._modules.getNamespace(n);if(o.namespaced&&(e._modulesNamespaceMap[s],e._modulesNamespaceMap[s]=o),!r&&!i){var a=sf(t,n.slice(0,-1)),l=n[n.length-1];e._withCommit(function(){a[l]=o.state})}var u=o.context=f2(e,s,n);o.forEachMutation(function(d,m){var f=s+m;m2(e,f,d,u)}),o.forEachAction(function(d,m){var f=d.root?m:s+m,h=d.handler||d;h2(e,f,h,u)}),o.forEachGetter(function(d,m){var f=s+m;p2(e,f,d,u)}),o.forEachChild(function(d,m){cc(e,t,n.concat(m),d,i)})}function f2(e,t,n){var o=t==="",i={dispatch:o?e.dispatch:function(r,s,a){var l=El(r,s,a),u=l.payload,d=l.options,m=l.type;return(!d||!d.root)&&(m=t+m),e.dispatch(m,u)},commit:o?e.commit:function(r,s,a){var l=El(r,s,a),u=l.payload,d=l.options,m=l.type;(!d||!d.root)&&(m=t+m),e.commit(m,u,d)}};return Object.defineProperties(i,{getters:{get:o?function(){return e.getters}:function(){return qg(e,t)}},state:{get:function(){return sf(e.state,n)}}}),i}function qg(e,t){if(!e._makeLocalGettersCache[t]){var n={},o=t.length;Object.keys(e.getters).forEach(function(i){if(i.slice(0,o)===t){var r=i.slice(o);Object.defineProperty(n,r,{get:function(){return e.getters[i]},enumerable:!0})}}),e._makeLocalGettersCache[t]=n}return e._makeLocalGettersCache[t]}function m2(e,t,n,o){var i=e._mutations[t]||(e._mutations[t]=[]);i.push(function(s){n.call(e,o.state,s)})}function h2(e,t,n,o){var i=e._actions[t]||(e._actions[t]=[]);i.push(function(s){var a=n.call(e,{dispatch:o.dispatch,commit:o.commit,getters:o.getters,state:o.state,rootGetters:e.getters,rootState:e.state},s);return u2(a)||(a=Promise.resolve(a)),e._devtoolHook?a.catch(function(l){throw e._devtoolHook.emit("vuex:error",l),l}):a})}function p2(e,t,n,o){e._wrappedGetters[t]||(e._wrappedGetters[t]=function(r){return n(o.state,o.getters,r.state,r.getters)})}function b2(e){Mt(function(){return e._state.data},function(){},{deep:!0,flush:"sync"})}function sf(e,t){return t.reduce(function(n,o){return n[o]},e)}function El(e,t,n){return c2(e)&&e.type&&(n=t,t=e,e=e.type),{type:e,payload:t,options:n}}var g2="vuex bindings",vh="vuex:mutations",Wc="vuex:actions",Ui="vuex",v2=0;function _2(e,t){Vk({id:"org.vuejs.vuex",app:e,label:"Vuex",homepage:"https://next.vuex.vuejs.org/",logo:"https://vuejs.org/images/icons/favicon-96x96.png",packageName:"vuex",componentStateTypes:[g2]},function(n){n.addTimelineLayer({id:vh,label:"Vuex Mutations",color:_h}),n.addTimelineLayer({id:Wc,label:"Vuex Actions",color:_h}),n.addInspector({id:Ui,label:"Vuex",icon:"storage",treeFilterPlaceholder:"Filter stores..."}),n.on.getInspectorTree(function(o){if(o.app===e&&o.inspectorId===Ui)if(o.filter){var i=[];Yg(i,t._modules.root,o.filter,""),o.rootNodes=i}else o.rootNodes=[Kg(t._modules.root,"")]}),n.on.getInspectorState(function(o){if(o.app===e&&o.inspectorId===Ui){var i=o.nodeId;qg(t,i),o.state=x2(C2(t._modules,i),i==="root"?t.getters:t._makeLocalGettersCache,i)}}),n.on.editInspectorState(function(o){if(o.app===e&&o.inspectorId===Ui){var i=o.nodeId,r=o.path;i!=="root"&&(r=i.split("/").filter(Boolean).concat(r)),t._withCommit(function(){o.set(t._state.data,r,o.state.value)})}}),t.subscribe(function(o,i){var r={};o.payload&&(r.payload=o.payload),r.state=i,n.notifyComponentUpdate(),n.sendInspectorTree(Ui),n.sendInspectorState(Ui),n.addTimelineEvent({layerId:vh,event:{time:Date.now(),title:o.type,data:r}})}),t.subscribeAction({before:function(o,i){var r={};o.payload&&(r.payload=o.payload),o._id=v2++,o._time=Date.now(),r.state=i,n.addTimelineEvent({layerId:Wc,event:{time:o._time,title:o.type,groupId:o._id,subtitle:"start",data:r}})},after:function(o,i){var r={},s=Date.now()-o._time;r.duration={_custom:{type:"duration",display:s+"ms",tooltip:"Action duration",value:s}},o.payload&&(r.payload=o.payload),r.state=i,n.addTimelineEvent({layerId:Wc,event:{time:Date.now(),title:o.type,groupId:o._id,subtitle:"end",data:r}})}})})}var _h=8702998,y2=6710886,w2=16777215,Gg={label:"namespaced",textColor:w2,backgroundColor:y2};function Wg(e){return e&&e!=="root"?e.split("/").slice(-2,-1)[0]:"Root"}function Kg(e,t){return{id:t||"root",label:Wg(t),tags:e.namespaced?[Gg]:[],children:Object.keys(e._children).map(function(n){return Kg(e._children[n],t+n+"/")})}}function Yg(e,t,n,o){o.includes(n)&&e.push({id:o||"root",label:o.endsWith("/")?o.slice(0,o.length-1):o||"Root",tags:t.namespaced?[Gg]:[]}),Object.keys(t._children).forEach(function(i){Yg(e,t._children[i],n,o+i+"/")})}function x2(e,t,n){t=n==="root"?t:t[n];var o=Object.keys(t),i={state:Object.keys(e.state).map(function(s){return{key:s,editable:!0,value:e.state[s]}})};if(o.length){var r=k2(t);i.getters=Object.keys(r).map(function(s){return{key:s.endsWith("/")?Wg(s):s,editable:!1,value:Zu(function(){return r[s]})}})}return i}function k2(e){var t={};return Object.keys(e).forEach(function(n){var o=n.split("/");if(o.length>1){var i=t,r=o.pop();o.forEach(function(s){i[s]||(i[s]={_custom:{value:{},display:s,tooltip:"Module",abstract:!0}}),i=i[s]._custom.value}),i[r]=Zu(function(){return e[n]})}else t[n]=Zu(function(){return e[n]})}),t}function C2(e,t){var n=t.split("/").filter(function(o){return o});return n.reduce(function(o,i,r){var s=o[i];if(!s)throw new Error('Missing module "'+i+'" for path "'+t+'".');return r===n.length-1?s:s._children},t==="root"?e:e.root._children)}function Zu(e){try{return e()}catch(t){return t}}var lo=function(t,n){this.runtime=n,this._children=Object.create(null),this._rawModule=t;var o=t.state;this.state=(typeof o=="function"?o():o)||{}},Zg={namespaced:{configurable:!0}};Zg.namespaced.get=function(){return!!this._rawModule.namespaced};lo.prototype.addChild=function(t,n){this._children[t]=n};lo.prototype.removeChild=function(t){delete this._children[t]};lo.prototype.getChild=function(t){return this._children[t]};lo.prototype.hasChild=function(t){return t in this._children};lo.prototype.update=function(t){this._rawModule.namespaced=t.namespaced,t.actions&&(this._rawModule.actions=t.actions),t.mutations&&(this._rawModule.mutations=t.mutations),t.getters&&(this._rawModule.getters=t.getters)};lo.prototype.forEachChild=function(t){Er(this._children,t)};lo.prototype.forEachGetter=function(t){this._rawModule.getters&&Er(this._rawModule.getters,t)};lo.prototype.forEachAction=function(t){this._rawModule.actions&&Er(this._rawModule.actions,t)};lo.prototype.forEachMutation=function(t){this._rawModule.mutations&&Er(this._rawModule.mutations,t)};Object.defineProperties(lo.prototype,Zg);var Li=function(t){this.register([],t,!1)};Li.prototype.get=function(t){return t.reduce(function(n,o){return n.getChild(o)},this.root)};Li.prototype.getNamespace=function(t){var n=this.root;return t.reduce(function(o,i){return n=n.getChild(i),o+(n.namespaced?i+"/":"")},"")};Li.prototype.update=function(t){Jg([],this.root,t)};Li.prototype.register=function(t,n,o){var i=this;o===void 0&&(o=!0);var r=new lo(n,o);if(t.length===0)this.root=r;else{var s=this.get(t.slice(0,-1));s.addChild(t[t.length-1],r)}n.modules&&Er(n.modules,function(a,l){i.register(t.concat(l),a,o)})};Li.prototype.unregister=function(t){var n=this.get(t.slice(0,-1)),o=t[t.length-1],i=n.getChild(o);!i||!i.runtime||n.removeChild(o)};Li.prototype.isRegistered=function(t){var n=this.get(t.slice(0,-1)),o=t[t.length-1];return n?n.hasChild(o):!1};function Jg(e,t,n){if(t.update(n),n.modules)for(var o in n.modules){if(!t.getChild(o))return;Jg(e.concat(o),t.getChild(o),n.modules[o])}}function z2(e){return new $n(e)}var $n=function(t){var n=this;t===void 0&&(t={});var o=t.plugins;o===void 0&&(o=[]);var i=t.strict;i===void 0&&(i=!1);var r=t.devtools;this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new Li(t),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._makeLocalGettersCache=Object.create(null),this._devtools=r;var s=this,a=this,l=a.dispatch,u=a.commit;this.dispatch=function(f,h){return l.call(s,f,h)},this.commit=function(f,h,p){return u.call(s,f,h,p)},this.strict=i;var d=this._modules.root.state;cc(this,d,[],this._modules.root),rf(this,d),o.forEach(function(m){return m(n)})},af={state:{configurable:!0}};$n.prototype.install=function(t,n){t.provide(n||l2,this),t.config.globalProperties.$store=this;var o=this._devtools!==void 0?this._devtools:!1;o&&_2(t,this)};af.state.get=function(){return this._state.data};af.state.set=function(e){};$n.prototype.commit=function(t,n,o){var i=this,r=El(t,n,o),s=r.type,a=r.payload,l={type:s,payload:a},u=this._mutations[s];!u||(this._withCommit(function(){u.forEach(function(m){m(a)})}),this._subscribers.slice().forEach(function(d){return d(l,i.state)}))};$n.prototype.dispatch=function(t,n){var o=this,i=El(t,n),r=i.type,s=i.payload,a={type:r,payload:s},l=this._actions[r];if(!!l){try{this._actionSubscribers.slice().filter(function(d){return d.before}).forEach(function(d){return d.before(a,o.state)})}catch{}var u=l.length>1?Promise.all(l.map(function(d){return d(s)})):l[0](s);return new Promise(function(d,m){u.then(function(f){try{o._actionSubscribers.filter(function(h){return h.after}).forEach(function(h){return h.after(a,o.state)})}catch{}d(f)},function(f){try{o._actionSubscribers.filter(function(h){return h.error}).forEach(function(h){return h.error(a,o.state,f)})}catch{}m(f)})})}};$n.prototype.subscribe=function(t,n){return Ug(t,this._subscribers,n)};$n.prototype.subscribeAction=function(t,n){var o=typeof t=="function"?{before:t}:t;return Ug(o,this._actionSubscribers,n)};$n.prototype.watch=function(t,n,o){var i=this;return Mt(function(){return t(i.state,i.getters)},n,Object.assign({},o))};$n.prototype.replaceState=function(t){var n=this;this._withCommit(function(){n._state.data=t})};$n.prototype.registerModule=function(t,n,o){o===void 0&&(o={}),typeof t=="string"&&(t=[t]),this._modules.register(t,n),cc(this,this.state,t,this._modules.get(t),o.preserveState),rf(this,this.state)};$n.prototype.unregisterModule=function(t){var n=this;typeof t=="string"&&(t=[t]),this._modules.unregister(t),this._withCommit(function(){var o=sf(n.state,t.slice(0,-1));delete o[t[t.length-1]]}),Hg(this)};$n.prototype.hasModule=function(t){return typeof t=="string"&&(t=[t]),this._modules.isRegistered(t)};$n.prototype.hotUpdate=function(t){this._modules.update(t),Hg(this,!0)};$n.prototype._withCommit=function(t){var n=this._committing;this._committing=!0,t(),this._committing=n};Object.defineProperties($n.prototype,af);const Xg="UPDATE_CONFIG",Qg="UPDATE_SETTINGS",uc="UPDATE_SETTINGS_OPTION",ev="UPDATE_LIBRARY_STATS",tv="UPDATE_LIBRARY_AUDIOBOOKS_COUNT",nv="UPDATE_LIBRARY_PODCASTS_COUNT",ov="UPDATE_LIBRARY_RSS_COUNT",iv="UPDATE_OUTPUTS",lf="UPDATE_PLAYER_STATUS",rv="UPDATE_QUEUE",sv="UPDATE_LASTFM",av="UPDATE_SPOTIFY",lv="UPDATE_PAIRING",cf="SPOTIFY_NEW_RELEASES",uf="SPOTIFY_FEATURED_PLAYLISTS",yh="ADD_NOTIFICATION",Ju="DELETE_NOTIFICATION",Xu="SEARCH_PATH",df="ADD_RECENT_SEARCH",dc="HIDE_SINGLES",ff="HIDE_SPOTIFY",cv="ARTISTS_SORT",uv="ARTIST_ALBUMS_SORT",dv="ALBUMS_SORT",fv="SHOW_ONLY_NEXT_ITEMS",vr="SHOW_BURGER_MENU",_r="SHOW_PLAYER_MENU",qs="SHOW_UPDATE_DIALOG",mf="UPDATE_DIALOG_SCAN_KIND";var at=z2({state(){return{config:{websocket_port:0,version:"",buildoptions:[]},settings:{categories:[]},library:{artists:0,albums:0,songs:0,db_playtime:0,updating:!1},audiobooks_count:{},podcasts_count:{},rss_count:{},outputs:[],player:{state:"stop",repeat:"off",consume:!1,shuffle:!1,volume:0,item_id:0,item_length_ms:0,item_progress_ms:0},queue:{version:0,count:0,items:[]},lastfm:{},spotify:{},pairing:{},spotify_new_releases:[],spotify_featured_playlists:[],notifications:{next_id:1,list:[]},search_path:"/search/library",recent_searches:[],hide_singles:!1,hide_spotify:!1,artists_sort:1,artist_albums_sort:1,albums_sort:1,show_only_next_items:!1,show_burger_menu:!1,show_player_menu:!1,show_update_dialog:!1,update_dialog_scan_kind:""}},getters:{now_playing:e=>{const t=e.queue.items.find(function(n){return n.id===e.player.item_id});return t===void 0?{}:t},settings_webinterface:e=>e.settings?e.settings.categories.find(t=>t.name==="webinterface"):null,settings_option_recently_added_limit:(e,t)=>{if(t.settings_webinterface){const n=t.settings_webinterface.options.find(o=>o.name==="recently_added_limit");if(n)return n.value}return 100},settings_option_show_composer_now_playing:(e,t)=>{if(t.settings_webinterface){const n=t.settings_webinterface.options.find(o=>o.name==="show_composer_now_playing");if(n)return n.value}return!1},settings_option_show_composer_for_genre:(e,t)=>{if(t.settings_webinterface){const n=t.settings_webinterface.options.find(o=>o.name==="show_composer_for_genre");if(n)return n.value}return null},settings_category:e=>t=>e.settings.categories.find(n=>n.name===t),settings_option:e=>(t,n)=>{const o=e.settings.categories.find(i=>i.name===t);return o?o.options.find(i=>i.name===n):{}}},mutations:{[Xg](e,t){e.config=t},[Qg](e,t){e.settings=t},[uc](e,t){const o=e.settings.categories.find(i=>i.name===t.category).options.find(i=>i.name===t.name);o.value=t.value},[ev](e,t){e.library=t},[tv](e,t){e.audiobooks_count=t},[nv](e,t){e.podcasts_count=t},[ov](e,t){e.rss_count=t},[iv](e,t){e.outputs=t},[lf](e,t){e.player=t},[rv](e,t){e.queue=t},[sv](e,t){e.lastfm=t},[av](e,t){e.spotify=t},[lv](e,t){e.pairing=t},[cf](e,t){e.spotify_new_releases=t},[uf](e,t){e.spotify_featured_playlists=t},[yh](e,t){if(t.topic){const n=e.notifications.list.findIndex(o=>o.topic===t.topic);if(n>=0){e.notifications.list.splice(n,1,t);return}}e.notifications.list.push(t)},[Ju](e,t){const n=e.notifications.list.indexOf(t);n!==-1&&e.notifications.list.splice(n,1)},[Xu](e,t){e.search_path=t},[df](e,t){const n=e.recent_searches.findIndex(o=>o===t);n>=0&&e.recent_searches.splice(n,1),e.recent_searches.splice(0,0,t),e.recent_searches.length>5&&e.recent_searches.pop()},[dc](e,t){e.hide_singles=t},[ff](e,t){e.hide_spotify=t},[cv](e,t){e.artists_sort=t},[uv](e,t){e.artist_albums_sort=t},[dv](e,t){e.albums_sort=t},[fv](e,t){e.show_only_next_items=t},[vr](e,t){e.show_burger_menu=t},[_r](e,t){e.show_player_menu=t},[qs](e,t){e.show_update_dialog=t},[mf](e,t){e.update_dialog_scan_kind=t}},actions:{add_notification({commit:e,state:t},n){const o={id:t.notifications.next_id++,type:n.type,text:n.text,topic:n.topic,timeout:n.timeout};e(yh,o),n.timeout>0&&setTimeout(()=>{e(Ju,o)},n.timeout)}}});/*! - * vue-router v4.0.16 - * (c) 2022 Eduardo San Martin Morote - * @license MIT - */const mv=typeof Symbol=="function"&&typeof Symbol.toStringTag=="symbol",Ar=e=>mv?Symbol(e):"_vr_"+e,S2=Ar("rvlm"),wh=Ar("rvd"),hf=Ar("r"),hv=Ar("rl"),Qu=Ar("rvl"),tr=typeof window!="undefined";function $2(e){return e.__esModule||mv&&e[Symbol.toStringTag]==="Module"}const wt=Object.assign;function Kc(e,t){const n={};for(const o in t){const i=t[o];n[o]=Array.isArray(i)?i.map(e):e(i)}return n}const bs=()=>{},E2=/\/$/,A2=e=>e.replace(E2,"");function Yc(e,t,n="/"){let o,i={},r="",s="";const a=t.indexOf("?"),l=t.indexOf("#",a>-1?a:0);return a>-1&&(o=t.slice(0,a),r=t.slice(a+1,l>-1?l:t.length),i=e(r)),l>-1&&(o=o||t.slice(0,l),s=t.slice(l,t.length)),o=D2(o!=null?o:t,n),{fullPath:o+(r&&"?")+r+s,path:o,query:i,hash:s}}function O2(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function xh(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function T2(e,t,n){const o=t.matched.length-1,i=n.matched.length-1;return o>-1&&o===i&&yr(t.matched[o],n.matched[i])&&pv(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function yr(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function pv(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!P2(e[n],t[n]))return!1;return!0}function P2(e,t){return Array.isArray(e)?kh(e,t):Array.isArray(t)?kh(t,e):e===t}function kh(e,t){return Array.isArray(t)?e.length===t.length&&e.every((n,o)=>n===t[o]):e.length===1&&e[0]===t}function D2(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),o=e.split("/");let i=n.length-1,r,s;for(r=0;r({left:window.pageXOffset,top:window.pageYOffset});function R2(e){let t;if("el"in e){const n=e.el,o=typeof n=="string"&&n.startsWith("#"),i=typeof n=="string"?o?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!i)return;t=L2(i,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.pageXOffset,t.top!=null?t.top:window.pageYOffset)}function Ch(e,t){return(history.state?history.state.position-t:-1)+e}const ed=new Map;function N2(e,t){ed.set(e,t)}function j2(e){const t=ed.get(e);return ed.delete(e),t}let V2=()=>location.protocol+"//"+location.host;function bv(e,t){const{pathname:n,search:o,hash:i}=t,r=e.indexOf("#");if(r>-1){let a=i.includes(e.slice(r))?e.slice(r).length:1,l=i.slice(a);return l[0]!=="/"&&(l="/"+l),xh(l,"")}return xh(n,e)+o+i}function B2(e,t,n,o){let i=[],r=[],s=null;const a=({state:f})=>{const h=bv(e,location),p=n.value,b=t.value;let g=0;if(f){if(n.value=h,t.value=f,s&&s===p){s=null;return}g=b?f.position-b.position:0}else o(h);i.forEach(y=>{y(n.value,p,{delta:g,type:Ds.pop,direction:g?g>0?gs.forward:gs.back:gs.unknown})})};function l(){s=n.value}function u(f){i.push(f);const h=()=>{const p=i.indexOf(f);p>-1&&i.splice(p,1)};return r.push(h),h}function d(){const{history:f}=window;!f.state||f.replaceState(wt({},f.state,{scroll:fc()}),"")}function m(){for(const f of r)f();r=[],window.removeEventListener("popstate",a),window.removeEventListener("beforeunload",d)}return window.addEventListener("popstate",a),window.addEventListener("beforeunload",d),{pauseListeners:l,listen:u,destroy:m}}function zh(e,t,n,o=!1,i=!1){return{back:e,current:t,forward:n,replaced:o,position:window.history.length,scroll:i?fc():null}}function U2(e){const{history:t,location:n}=window,o={value:bv(e,n)},i={value:t.state};i.value||r(o.value,{back:null,current:o.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function r(l,u,d){const m=e.indexOf("#"),f=m>-1?(n.host&&document.querySelector("base")?e:e.slice(m))+l:V2()+e+l;try{t[d?"replaceState":"pushState"](u,"",f),i.value=u}catch(h){console.error(h),n[d?"replace":"assign"](f)}}function s(l,u){const d=wt({},t.state,zh(i.value.back,l,i.value.forward,!0),u,{position:i.value.position});r(l,d,!0),o.value=l}function a(l,u){const d=wt({},i.value,t.state,{forward:l,scroll:fc()});r(d.current,d,!0);const m=wt({},zh(o.value,l,null),{position:d.position+1},u);r(l,m,!1),o.value=l}return{location:o,state:i,push:a,replace:s}}function H2(e){e=F2(e);const t=U2(e),n=B2(e,t.state,t.location,t.replace);function o(r,s=!0){s||n.pauseListeners(),history.go(r)}const i=wt({location:"",base:e,go:o,createHref:M2.bind(null,e)},t,n);return Object.defineProperty(i,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(i,"state",{enumerable:!0,get:()=>t.state.value}),i}function q2(e){return e=location.host?e||location.pathname+location.search:"",e.includes("#")||(e+="#"),H2(e)}function G2(e){return typeof e=="string"||e&&typeof e=="object"}function gv(e){return typeof e=="string"||typeof e=="symbol"}const jo={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},vv=Ar("nf");var Sh;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(Sh||(Sh={}));function wr(e,t){return wt(new Error,{type:e,[vv]:!0},t)}function Vo(e,t){return e instanceof Error&&vv in e&&(t==null||!!(e.type&t))}const $h="[^/]+?",W2={sensitive:!1,strict:!1,start:!0,end:!0},K2=/[.+*?^${}()[\]/\\]/g;function Y2(e,t){const n=wt({},W2,t),o=[];let i=n.start?"^":"";const r=[];for(const u of e){const d=u.length?[]:[90];n.strict&&!u.length&&(i+="/");for(let m=0;m1&&(d.endsWith("/")?d=d.slice(0,-1):m=!0);else throw new Error(`Missing required param "${p}"`);d+=w}}return d}return{re:s,score:o,keys:r,parse:a,stringify:l}}function Z2(e,t){let n=0;for(;nt.length?t.length===1&&t[0]===40+40?1:-1:0}function J2(e,t){let n=0;const o=e.score,i=t.score;for(;n0&&t[t.length-1]<0}const X2={type:0,value:""},Q2=/[a-zA-Z0-9_]/;function eC(e){if(!e)return[[]];if(e==="/")return[[X2]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(h){throw new Error(`ERR (${n})/"${u}": ${h}`)}let n=0,o=n;const i=[];let r;function s(){r&&i.push(r),r=[]}let a=0,l,u="",d="";function m(){!u||(n===0?r.push({type:0,value:u}):n===1||n===2||n===3?(r.length>1&&(l==="*"||l==="+")&&t(`A repeatable param (${u}) must be alone in its segment. eg: '/:ids+.`),r.push({type:1,value:u,regexp:d,repeatable:l==="*"||l==="+",optional:l==="*"||l==="?"})):t("Invalid state to consume buffer"),u="")}function f(){u+=l}for(;a{s(w)}:bs}function s(d){if(gv(d)){const m=o.get(d);m&&(o.delete(d),n.splice(n.indexOf(m),1),m.children.forEach(s),m.alias.forEach(s))}else{const m=n.indexOf(d);m>-1&&(n.splice(m,1),d.record.name&&o.delete(d.record.name),d.children.forEach(s),d.alias.forEach(s))}}function a(){return n}function l(d){let m=0;for(;m=0&&(d.record.path!==n[m].record.path||!_v(d,n[m]));)m++;n.splice(m,0,d),d.record.name&&!Ah(d)&&o.set(d.record.name,d)}function u(d,m){let f,h={},p,b;if("name"in d&&d.name){if(f=o.get(d.name),!f)throw wr(1,{location:d});b=f.record.name,h=wt(oC(m.params,f.keys.filter(w=>!w.optional).map(w=>w.name)),d.params),p=f.stringify(h)}else if("path"in d)p=d.path,f=n.find(w=>w.re.test(p)),f&&(h=f.parse(p),b=f.record.name);else{if(f=m.name?o.get(m.name):n.find(w=>w.re.test(m.path)),!f)throw wr(1,{location:d,currentLocation:m});b=f.record.name,h=wt({},m.params,d.params),p=f.stringify(h)}const g=[];let y=f;for(;y;)g.unshift(y.record),y=y.parent;return{name:b,path:p,params:h,matched:g,meta:sC(g)}}return e.forEach(d=>r(d)),{addRoute:r,resolve:u,removeRoute:s,getRoutes:a,getRecordMatcher:i}}function oC(e,t){const n={};for(const o of t)o in e&&(n[o]=e[o]);return n}function iC(e){return{path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:void 0,beforeEnter:e.beforeEnter,props:rC(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||{}:{default:e.component}}}function rC(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const o in e.components)t[o]=typeof n=="boolean"?n:n[o];return t}function Ah(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function sC(e){return e.reduce((t,n)=>wt(t,n.meta),{})}function Oh(e,t){const n={};for(const o in e)n[o]=o in t?t[o]:e[o];return n}function _v(e,t){return t.children.some(n=>n===e||_v(e,n))}const yv=/#/g,aC=/&/g,lC=/\//g,cC=/=/g,uC=/\?/g,wv=/\+/g,dC=/%5B/g,fC=/%5D/g,xv=/%5E/g,mC=/%60/g,kv=/%7B/g,hC=/%7C/g,Cv=/%7D/g,pC=/%20/g;function pf(e){return encodeURI(""+e).replace(hC,"|").replace(dC,"[").replace(fC,"]")}function bC(e){return pf(e).replace(kv,"{").replace(Cv,"}").replace(xv,"^")}function td(e){return pf(e).replace(wv,"%2B").replace(pC,"+").replace(yv,"%23").replace(aC,"%26").replace(mC,"`").replace(kv,"{").replace(Cv,"}").replace(xv,"^")}function gC(e){return td(e).replace(cC,"%3D")}function vC(e){return pf(e).replace(yv,"%23").replace(uC,"%3F")}function _C(e){return e==null?"":vC(e).replace(lC,"%2F")}function Al(e){try{return decodeURIComponent(""+e)}catch{}return""+e}function yC(e){const t={};if(e===""||e==="?")return t;const o=(e[0]==="?"?e.slice(1):e).split("&");for(let i=0;ir&&td(r)):[o&&td(o)]).forEach(r=>{r!==void 0&&(t+=(t.length?"&":"")+n,r!=null&&(t+="="+r))})}return t}function wC(e){const t={};for(const n in e){const o=e[n];o!==void 0&&(t[n]=Array.isArray(o)?o.map(i=>i==null?null:""+i):o==null?o:""+o)}return t}function jr(){let e=[];function t(o){return e.push(o),()=>{const i=e.indexOf(o);i>-1&&e.splice(i,1)}}function n(){e=[]}return{add:t,list:()=>e,reset:n}}function Go(e,t,n,o,i){const r=o&&(o.enterCallbacks[i]=o.enterCallbacks[i]||[]);return()=>new Promise((s,a)=>{const l=m=>{m===!1?a(wr(4,{from:n,to:t})):m instanceof Error?a(m):G2(m)?a(wr(2,{from:t,to:m})):(r&&o.enterCallbacks[i]===r&&typeof m=="function"&&r.push(m),s())},u=e.call(o&&o.instances[i],t,n,l);let d=Promise.resolve(u);e.length<3&&(d=d.then(l)),d.catch(m=>a(m))})}function Zc(e,t,n,o){const i=[];for(const r of e)for(const s in r.components){let a=r.components[s];if(!(t!=="beforeRouteEnter"&&!r.instances[s]))if(xC(a)){const u=(a.__vccOpts||a)[t];u&&i.push(Go(u,n,o,r,s))}else{let l=a();i.push(()=>l.then(u=>{if(!u)return Promise.reject(new Error(`Couldn't resolve component "${s}" at "${r.path}"`));const d=$2(u)?u.default:u;r.components[s]=d;const f=(d.__vccOpts||d)[t];return f&&Go(f,n,o,r,s)()}))}}return i}function xC(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function Ph(e){const t=ro(hf),n=ro(hv),o=Ot(()=>t.resolve(cr(e.to))),i=Ot(()=>{const{matched:l}=o.value,{length:u}=l,d=l[u-1],m=n.matched;if(!d||!m.length)return-1;const f=m.findIndex(yr.bind(null,d));if(f>-1)return f;const h=Dh(l[u-2]);return u>1&&Dh(d)===h&&m[m.length-1].path!==h?m.findIndex(yr.bind(null,l[u-2])):f}),r=Ot(()=>i.value>-1&&SC(n.params,o.value.params)),s=Ot(()=>i.value>-1&&i.value===n.matched.length-1&&pv(n.params,o.value.params));function a(l={}){return zC(l)?t[cr(e.replace)?"replace":"push"](cr(e.to)).catch(bs):Promise.resolve()}return{route:o,href:Ot(()=>o.value.href),isActive:r,isExactActive:s,navigate:a}}const kC=Vs({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"}},useLink:Ph,setup(e,{slots:t}){const n=Fi(Ph(e)),{options:o}=ro(hf),i=Ot(()=>({[Fh(e.activeClass,o.linkActiveClass,"router-link-active")]:n.isActive,[Fh(e.exactActiveClass,o.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const r=t.default&&t.default(n);return e.custom?r:kn("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:i.value},r)}}}),CC=kC;function zC(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 SC(e,t){for(const n in t){const o=t[n],i=e[n];if(typeof o=="string"){if(o!==i)return!1}else if(!Array.isArray(i)||i.length!==o.length||o.some((r,s)=>r!==i[s]))return!1}return!0}function Dh(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const Fh=(e,t,n)=>e!=null?e:t!=null?t:n,$C=Vs({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const o=ro(Qu),i=Ot(()=>e.route||o.value),r=ro(wh,0),s=Ot(()=>i.value.matched[r]);fs(wh,r+1),fs(S2,s),fs(Qu,i);const a=wn();return Mt(()=>[a.value,s.value,e.name],([l,u,d],[m,f,h])=>{u&&(u.instances[d]=l,f&&f!==u&&l&&l===m&&(u.leaveGuards.size||(u.leaveGuards=f.leaveGuards),u.updateGuards.size||(u.updateGuards=f.updateGuards))),l&&u&&(!f||!yr(u,f)||!m)&&(u.enterCallbacks[d]||[]).forEach(p=>p(l))},{flush:"post"}),()=>{const l=i.value,u=s.value,d=u&&u.components[e.name],m=e.name;if(!d)return Ih(n.default,{Component:d,route:l});const f=u.props[e.name],h=f?f===!0?l.params:typeof f=="function"?f(l):f:null,b=kn(d,wt({},h,t,{onVnodeUnmounted:g=>{g.component.isUnmounted&&(u.instances[m]=null)},ref:a}));return Ih(n.default,{Component:b,route:l})||b}}});function Ih(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const EC=$C;function AC(e){const t=nC(e.routes,e),n=e.parseQuery||yC,o=e.stringifyQuery||Th,i=e.history,r=jr(),s=jr(),a=jr(),l=bb(jo);let u=jo;tr&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const d=Kc.bind(null,U=>""+U),m=Kc.bind(null,_C),f=Kc.bind(null,Al);function h(U,se){let ie,ye;return gv(U)?(ie=t.getRecordMatcher(U),ye=se):ye=U,t.addRoute(ye,ie)}function p(U){const se=t.getRecordMatcher(U);se&&t.removeRoute(se)}function b(){return t.getRoutes().map(U=>U.record)}function g(U){return!!t.getRecordMatcher(U)}function y(U,se){if(se=wt({},se||l.value),typeof U=="string"){const Ae=Yc(n,U,se.path),E=t.resolve({path:Ae.path},se),L=i.createHref(Ae.fullPath);return wt(Ae,E,{params:f(E.params),hash:Al(Ae.hash),redirectedFrom:void 0,href:L})}let ie;if("path"in U)ie=wt({},U,{path:Yc(n,U.path,se.path).path});else{const Ae=wt({},U.params);for(const E in Ae)Ae[E]==null&&delete Ae[E];ie=wt({},U,{params:m(U.params)}),se.params=m(se.params)}const ye=t.resolve(ie,se),je=U.hash||"";ye.params=d(f(ye.params));const Ie=O2(o,wt({},U,{hash:bC(je),path:ye.path})),$e=i.createHref(Ie);return wt({fullPath:Ie,hash:je,query:o===Th?wC(U.query):U.query||{}},ye,{redirectedFrom:void 0,href:$e})}function w(U){return typeof U=="string"?Yc(n,U,l.value.path):wt({},U)}function C(U,se){if(u!==U)return wr(8,{from:se,to:U})}function k(U){return j(U)}function $(U){return k(wt(w(U),{replace:!0}))}function O(U){const se=U.matched[U.matched.length-1];if(se&&se.redirect){const{redirect:ie}=se;let ye=typeof ie=="function"?ie(U):ie;return typeof ye=="string"&&(ye=ye.includes("?")||ye.includes("#")?ye=w(ye):{path:ye},ye.params={}),wt({query:U.query,hash:U.hash,params:U.params},ye)}}function j(U,se){const ie=u=y(U),ye=l.value,je=U.state,Ie=U.force,$e=U.replace===!0,Ae=O(ie);if(Ae)return j(wt(w(Ae),{state:je,force:Ie,replace:$e}),se||ie);const E=ie;E.redirectedFrom=se;let L;return!Ie&&T2(o,ye,ie)&&(L=wr(16,{to:E,from:ye}),Be(ye,ye,!0,!1)),(L?Promise.resolve(L):A(E,ye)).catch(Z=>Vo(Z)?Vo(Z,2)?Z:Le(Z):ce(Z,E,ye)).then(Z=>{if(Z){if(Vo(Z,2))return j(wt(w(Z.to),{state:je,force:Ie,replace:$e}),se||E)}else Z=G(E,ye,!0,$e,je);return M(E,ye,Z),Z})}function F(U,se){const ie=C(U,se);return ie?Promise.reject(ie):Promise.resolve()}function A(U,se){let ie;const[ye,je,Ie]=OC(U,se);ie=Zc(ye.reverse(),"beforeRouteLeave",U,se);for(const Ae of ye)Ae.leaveGuards.forEach(E=>{ie.push(Go(E,U,se))});const $e=F.bind(null,U,se);return ie.push($e),Hi(ie).then(()=>{ie=[];for(const Ae of r.list())ie.push(Go(Ae,U,se));return ie.push($e),Hi(ie)}).then(()=>{ie=Zc(je,"beforeRouteUpdate",U,se);for(const Ae of je)Ae.updateGuards.forEach(E=>{ie.push(Go(E,U,se))});return ie.push($e),Hi(ie)}).then(()=>{ie=[];for(const Ae of U.matched)if(Ae.beforeEnter&&!se.matched.includes(Ae))if(Array.isArray(Ae.beforeEnter))for(const E of Ae.beforeEnter)ie.push(Go(E,U,se));else ie.push(Go(Ae.beforeEnter,U,se));return ie.push($e),Hi(ie)}).then(()=>(U.matched.forEach(Ae=>Ae.enterCallbacks={}),ie=Zc(Ie,"beforeRouteEnter",U,se),ie.push($e),Hi(ie))).then(()=>{ie=[];for(const Ae of s.list())ie.push(Go(Ae,U,se));return ie.push($e),Hi(ie)}).catch(Ae=>Vo(Ae,8)?Ae:Promise.reject(Ae))}function M(U,se,ie){for(const ye of a.list())ye(U,se,ie)}function G(U,se,ie,ye,je){const Ie=C(U,se);if(Ie)return Ie;const $e=se===jo,Ae=tr?history.state:{};ie&&(ye||$e?i.replace(U.fullPath,wt({scroll:$e&&Ae&&Ae.scroll},je)):i.push(U.fullPath,je)),l.value=U,Be(U,se,ie,$e),Le()}let R;function q(){R||(R=i.listen((U,se,ie)=>{const ye=y(U),je=O(ye);if(je){j(wt(je,{replace:!0}),ye).catch(bs);return}u=ye;const Ie=l.value;tr&&N2(Ch(Ie.fullPath,ie.delta),fc()),A(ye,Ie).catch($e=>Vo($e,12)?$e:Vo($e,2)?(j($e.to,ye).then(Ae=>{Vo(Ae,20)&&!ie.delta&&ie.type===Ds.pop&&i.go(-1,!1)}).catch(bs),Promise.reject()):(ie.delta&&i.go(-ie.delta,!1),ce($e,ye,Ie))).then($e=>{$e=$e||G(ye,Ie,!1),$e&&(ie.delta?i.go(-ie.delta,!1):ie.type===Ds.pop&&Vo($e,20)&&i.go(-1,!1)),M(ye,Ie,$e)}).catch(bs)}))}let B=jr(),re=jr(),X;function ce(U,se,ie){Le(U);const ye=re.list();return ye.length?ye.forEach(je=>je(U,se,ie)):console.error(U),Promise.reject(U)}function ge(){return X&&l.value!==jo?Promise.resolve():new Promise((U,se)=>{B.add([U,se])})}function Le(U){return X||(X=!U,q(),B.list().forEach(([se,ie])=>U?ie(U):se()),B.reset()),U}function Be(U,se,ie,ye){const{scrollBehavior:je}=e;if(!tr||!je)return Promise.resolve();const Ie=!ie&&j2(Ch(U.fullPath,0))||(ye||!ie)&&history.state&&history.state.scroll||null;return Yl().then(()=>je(U,se,Ie)).then($e=>$e&&R2($e)).catch($e=>ce($e,U,se))}const pe=U=>i.go(U);let J;const fe=new Set;return{currentRoute:l,addRoute:h,removeRoute:p,hasRoute:g,getRoutes:b,resolve:y,options:e,push:k,replace:$,go:pe,back:()=>pe(-1),forward:()=>pe(1),beforeEach:r.add,beforeResolve:s.add,afterEach:a.add,onError:re.add,isReady:ge,install(U){const se=this;U.component("RouterLink",CC),U.component("RouterView",EC),U.config.globalProperties.$router=se,Object.defineProperty(U.config.globalProperties,"$route",{enumerable:!0,get:()=>cr(l)}),tr&&!J&&l.value===jo&&(J=!0,k(i.location).catch(je=>{}));const ie={};for(const je in jo)ie[je]=Ot(()=>l.value[je]);U.provide(hf,se),U.provide(hv,Fi(ie)),U.provide(Qu,l);const ye=U.unmount;fe.add(U),U.unmount=function(){fe.delete(U),fe.size<1&&(u=jo,R&&R(),R=null,l.value=jo,J=!1,X=!1),ye()}}}}function Hi(e){return e.reduce((t,n)=>t.then(()=>n()),Promise.resolve())}function OC(e,t){const n=[],o=[],i=[],r=Math.max(t.matched.length,e.matched.length);for(let s=0;syr(u,a))?o.push(a):n.push(a));const l=e.matched[s];l&&(t.matched.find(u=>yr(u,l))||i.push(l))}return[n,o,i]}var _e=(e,t)=>{const n=e.__vccOpts||e;for(const[o,i]of t)n[o]=i;return n};const TC={name:"ContentWithHeading",data(){return{options_visible:!1}},mounted(){this.$slots.options&&(this.observer=new IntersectionObserver(this.onElementObserved,{rootMargin:"-82px 0px 0px 0px",threshold:1}),this.observer.observe(this.$refs.options_ref))},methods:{onElementObserved(e){e.forEach(({target:t,isIntersecting:n})=>{this.options_visible=n})},scroll_to_top:function(){window.scrollTo({top:0,behavior:"smooth"})},scroll_to_content:function(){this.$route.meta.has_tabs?this.$scrollTo("#top",{offset:-140}):this.$scrollTo("#top",{offset:-110})},visibilityChanged:function(e){this.options_visible=e}}},PC={class:"section fd-content"},DC={class:"container"},FC={class:"columns is-centered"},IC={class:"column is-four-fifths"},MC={key:0},LC={ref:"options_ref",style:{height:"1px"}},RC={class:"buttons is-centered",style:{"margin-bottom":"6px","margin-top":"16px"}},NC={class:"icon is-small"},jC={class:"icon is-small"},VC={id:"top",class:"level"},BC={class:"level-left"},UC={class:"level-item has-text-centered-mobile"},HC={class:"level-right has-text-centered-mobile"},qC={style:{"margin-top":"16px"}};function GC(e,t,n,o,i,r){const s=P("mdicon");return S(),D("section",PC,[c("div",DC,[c("div",FC,[c("div",IC,[e.$slots.options?(S(),D("section",MC,[c("div",LC,null,512),Ct(e.$slots,"options"),c("nav",RC,[i.options_visible?(S(),D("a",{key:1,class:"button is-small is-white",onClick:t[1]||(t[1]=(...a)=>r.scroll_to_content&&r.scroll_to_content(...a))},[c("span",jC,[x(s,{name:"chevron-up",size:"16"})])])):(S(),D("a",{key:0,class:"button is-small is-white",onClick:t[0]||(t[0]=(...a)=>r.scroll_to_top&&r.scroll_to_top(...a))},[c("span",NC,[x(s,{name:"chevron-down",size:"16"})])]))])])):Q("",!0),c("div",{class:Ye({"fd-content-with-option":e.$slots.options})},[c("nav",VC,[c("div",BC,[c("div",UC,[c("div",null,[Ct(e.$slots,"heading-left")])])]),c("div",HC,[Ct(e.$slots,"heading-right")])]),Ct(e.$slots,"content"),c("div",qC,[Ct(e.$slots,"footer")])],2)])])])])}var ht=_e(TC,[["render",GC]]),an=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{};function zv(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function Sv(e){if(e.__esModule)return e;var t=Object.defineProperty({},"__esModule",{value:!0});return Object.keys(e).forEach(function(n){var o=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,o.get?o:{enumerable:!0,get:function(){return e[n]}})}),t}var bf={exports:{}},$v=function(t,n){return function(){for(var i=new Array(arguments.length),r=0;r0;)r=o[i],s[r]||(t[r]=e[r],s[r]=!0);e=Object.getPrototypeOf(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t}function d3(e,t,n){e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;var o=e.indexOf(t,n);return o!==-1&&o===n}function f3(e){if(!e)return null;var t=e.length;if(Ol(t))return null;for(var n=new Array(t);t-- >0;)n[t]=e[t];return n}var m3=function(e){return function(t){return e&&t instanceof e}}(typeof Uint8Array!="undefined"&&Object.getPrototypeOf(Uint8Array)),tn={isArray:_f,isArrayBuffer:Ev,isBuffer:KC,isFormData:o3,isArrayBufferView:YC,isString:ZC,isNumber:JC,isObject:Av,isPlainObject:al,isUndefined:Ol,isDate:XC,isFile:QC,isBlob:e3,isFunction:yf,isStream:n3,isURLSearchParams:i3,isStandardBrowserEnv:s3,forEach:wf,merge:nd,extend:a3,trim:r3,stripBOM:l3,inherits:c3,toFlatObject:u3,kindOf:vf,kindOfTest:Ri,endsWith:d3,toArray:f3,isTypedArray:m3,isFileList:t3},qi=tn;function Mh(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var Ov=function(t,n,o){if(!n)return t;var i;if(o)i=o(n);else if(qi.isURLSearchParams(n))i=n.toString();else{var r=[];qi.forEach(n,function(l,u){l===null||typeof l=="undefined"||(qi.isArray(l)?u=u+"[]":l=[l],qi.forEach(l,function(m){qi.isDate(m)?m=m.toISOString():qi.isObject(m)&&(m=JSON.stringify(m)),r.push(Mh(u)+"="+Mh(m))}))}),i=r.join("&")}if(i){var s=t.indexOf("#");s!==-1&&(t=t.slice(0,s)),t+=(t.indexOf("?")===-1?"?":"&")+i}return t},h3=tn;function mc(){this.handlers=[]}mc.prototype.use=function(t,n,o){return this.handlers.push({fulfilled:t,rejected:n,synchronous:o?o.synchronous:!1,runWhen:o?o.runWhen:null}),this.handlers.length-1};mc.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)};mc.prototype.forEach=function(t){h3.forEach(this.handlers,function(o){o!==null&&t(o)})};var p3=mc,b3=tn,g3=function(t,n){b3.forEach(t,function(i,r){r!==n&&r.toUpperCase()===n.toUpperCase()&&(t[n]=i,delete t[r])})},Tv=tn;function xr(e,t,n,o,i){Error.call(this),this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),o&&(this.request=o),i&&(this.response=i)}Tv.inherits(xr,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:this.config,code:this.code,status:this.response&&this.response.status?this.response.status:null}}});var Pv=xr.prototype,Dv={};["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"].forEach(function(e){Dv[e]={value:e}});Object.defineProperties(xr,Dv);Object.defineProperty(Pv,"isAxiosError",{value:!0});xr.from=function(e,t,n,o,i,r){var s=Object.create(Pv);return Tv.toFlatObject(e,s,function(l){return l!==Error.prototype}),xr.call(s,e.message,t,n,o,i),s.name=e.name,r&&Object.assign(s,r),s};var Or=xr,Fv={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},Zn=tn;function v3(e,t){t=t||new FormData;var n=[];function o(r){return r===null?"":Zn.isDate(r)?r.toISOString():Zn.isArrayBuffer(r)||Zn.isTypedArray(r)?typeof Blob=="function"?new Blob([r]):Buffer.from(r):r}function i(r,s){if(Zn.isPlainObject(r)||Zn.isArray(r)){if(n.indexOf(r)!==-1)throw Error("Circular reference detected in "+s);n.push(r),Zn.forEach(r,function(l,u){if(!Zn.isUndefined(l)){var d=s?s+"."+u:u,m;if(l&&!s&&typeof l=="object"){if(Zn.endsWith(u,"{}"))l=JSON.stringify(l);else if(Zn.endsWith(u,"[]")&&(m=Zn.toArray(l))){m.forEach(function(f){!Zn.isUndefined(f)&&t.append(d,o(f))});return}}i(l,d)}}),n.pop()}else t.append(s,o(r))}return i(e),t}var Iv=v3,Jc=Or,_3=function(t,n,o){var i=o.config.validateStatus;!o.status||!i||i(o.status)?t(o):n(new Jc("Request failed with status code "+o.status,[Jc.ERR_BAD_REQUEST,Jc.ERR_BAD_RESPONSE][Math.floor(o.status/100)-4],o.config,o.request,o))},ba=tn,y3=ba.isStandardBrowserEnv()?function(){return{write:function(n,o,i,r,s,a){var l=[];l.push(n+"="+encodeURIComponent(o)),ba.isNumber(i)&&l.push("expires="+new Date(i).toGMTString()),ba.isString(r)&&l.push("path="+r),ba.isString(s)&&l.push("domain="+s),a===!0&&l.push("secure"),document.cookie=l.join("; ")},read:function(n){var o=document.cookie.match(new RegExp("(^|;\\s*)("+n+")=([^;]*)"));return o?decodeURIComponent(o[3]):null},remove:function(n){this.write(n,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}(),w3=function(t){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)},x3=function(t,n){return n?t.replace(/\/+$/,"")+"/"+n.replace(/^\/+/,""):t},k3=w3,C3=x3,Mv=function(t,n){return t&&!k3(n)?C3(t,n):n},Xc=tn,z3=["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"],S3=function(t){var n={},o,i,r;return t&&Xc.forEach(t.split(` -`),function(a){if(r=a.indexOf(":"),o=Xc.trim(a.substr(0,r)).toLowerCase(),i=Xc.trim(a.substr(r+1)),o){if(n[o]&&z3.indexOf(o)>=0)return;o==="set-cookie"?n[o]=(n[o]?n[o]:[]).concat([i]):n[o]=n[o]?n[o]+", "+i:i}}),n},Lh=tn,$3=Lh.isStandardBrowserEnv()?function(){var t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a"),o;function i(r){var s=r;return t&&(n.setAttribute("href",s),s=n.href),n.setAttribute("href",s),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return o=i(window.location.href),function(s){var a=Lh.isString(s)?i(s):s;return a.protocol===o.protocol&&a.host===o.host}}():function(){return function(){return!0}}(),od=Or,E3=tn;function Lv(e){od.call(this,e==null?"canceled":e,od.ERR_CANCELED),this.name="CanceledError"}E3.inherits(Lv,od,{__CANCEL__:!0});var hc=Lv,A3=function(t){var n=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return n&&n[1]||""},Vr=tn,O3=_3,T3=y3,P3=Ov,D3=Mv,F3=S3,I3=$3,M3=Fv,ko=Or,L3=hc,R3=A3,Rh=function(t){return new Promise(function(o,i){var r=t.data,s=t.headers,a=t.responseType,l;function u(){t.cancelToken&&t.cancelToken.unsubscribe(l),t.signal&&t.signal.removeEventListener("abort",l)}Vr.isFormData(r)&&Vr.isStandardBrowserEnv()&&delete s["Content-Type"];var d=new XMLHttpRequest;if(t.auth){var m=t.auth.username||"",f=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";s.Authorization="Basic "+btoa(m+":"+f)}var h=D3(t.baseURL,t.url);d.open(t.method.toUpperCase(),P3(h,t.params,t.paramsSerializer),!0),d.timeout=t.timeout;function p(){if(!!d){var y="getAllResponseHeaders"in d?F3(d.getAllResponseHeaders()):null,w=!a||a==="text"||a==="json"?d.responseText:d.response,C={data:w,status:d.status,statusText:d.statusText,headers:y,config:t,request:d};O3(function($){o($),u()},function($){i($),u()},C),d=null}}if("onloadend"in d?d.onloadend=p:d.onreadystatechange=function(){!d||d.readyState!==4||d.status===0&&!(d.responseURL&&d.responseURL.indexOf("file:")===0)||setTimeout(p)},d.onabort=function(){!d||(i(new ko("Request aborted",ko.ECONNABORTED,t,d)),d=null)},d.onerror=function(){i(new ko("Network Error",ko.ERR_NETWORK,t,d,d)),d=null},d.ontimeout=function(){var w=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded",C=t.transitional||M3;t.timeoutErrorMessage&&(w=t.timeoutErrorMessage),i(new ko(w,C.clarifyTimeoutError?ko.ETIMEDOUT:ko.ECONNABORTED,t,d)),d=null},Vr.isStandardBrowserEnv()){var b=(t.withCredentials||I3(h))&&t.xsrfCookieName?T3.read(t.xsrfCookieName):void 0;b&&(s[t.xsrfHeaderName]=b)}"setRequestHeader"in d&&Vr.forEach(s,function(w,C){typeof r=="undefined"&&C.toLowerCase()==="content-type"?delete s[C]:d.setRequestHeader(C,w)}),Vr.isUndefined(t.withCredentials)||(d.withCredentials=!!t.withCredentials),a&&a!=="json"&&(d.responseType=t.responseType),typeof t.onDownloadProgress=="function"&&d.addEventListener("progress",t.onDownloadProgress),typeof t.onUploadProgress=="function"&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),(t.cancelToken||t.signal)&&(l=function(y){!d||(i(!y||y&&y.type?new L3:y),d.abort(),d=null)},t.cancelToken&&t.cancelToken.subscribe(l),t.signal&&(t.signal.aborted?l():t.signal.addEventListener("abort",l))),r||(r=null);var g=R3(h);if(g&&["http","https","file"].indexOf(g)===-1){i(new ko("Unsupported protocol "+g+":",ko.ERR_BAD_REQUEST,t));return}d.send(r)})},N3=null,Jt=tn,Nh=g3,jh=Or,j3=Fv,V3=Iv,B3={"Content-Type":"application/x-www-form-urlencoded"};function Vh(e,t){!Jt.isUndefined(e)&&Jt.isUndefined(e["Content-Type"])&&(e["Content-Type"]=t)}function U3(){var e;return(typeof XMLHttpRequest!="undefined"||typeof process!="undefined"&&Object.prototype.toString.call(process)==="[object process]")&&(e=Rh),e}function H3(e,t,n){if(Jt.isString(e))try{return(t||JSON.parse)(e),Jt.trim(e)}catch(o){if(o.name!=="SyntaxError")throw o}return(n||JSON.stringify)(e)}var pc={transitional:j3,adapter:U3(),transformRequest:[function(t,n){if(Nh(n,"Accept"),Nh(n,"Content-Type"),Jt.isFormData(t)||Jt.isArrayBuffer(t)||Jt.isBuffer(t)||Jt.isStream(t)||Jt.isFile(t)||Jt.isBlob(t))return t;if(Jt.isArrayBufferView(t))return t.buffer;if(Jt.isURLSearchParams(t))return Vh(n,"application/x-www-form-urlencoded;charset=utf-8"),t.toString();var o=Jt.isObject(t),i=n&&n["Content-Type"],r;if((r=Jt.isFileList(t))||o&&i==="multipart/form-data"){var s=this.env&&this.env.FormData;return V3(r?{"files[]":t}:t,s&&new s)}else if(o||i==="application/json")return Vh(n,"application/json"),H3(t);return t}],transformResponse:[function(t){var n=this.transitional||pc.transitional,o=n&&n.silentJSONParsing,i=n&&n.forcedJSONParsing,r=!o&&this.responseType==="json";if(r||i&&Jt.isString(t)&&t.length)try{return JSON.parse(t)}catch(s){if(r)throw s.name==="SyntaxError"?jh.from(s,jh.ERR_BAD_RESPONSE,this,null,this.response):s}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:N3},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};Jt.forEach(["delete","get","head"],function(t){pc.headers[t]={}});Jt.forEach(["post","put","patch"],function(t){pc.headers[t]=Jt.merge(B3)});var xf=pc,q3=tn,G3=xf,W3=function(t,n,o){var i=this||G3;return q3.forEach(o,function(s){t=s.call(i,t,n)}),t},Rv=function(t){return!!(t&&t.__CANCEL__)},Bh=tn,Qc=W3,K3=Rv,Y3=xf,Z3=hc;function eu(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new Z3}var J3=function(t){eu(t),t.headers=t.headers||{},t.data=Qc.call(t,t.data,t.headers,t.transformRequest),t.headers=Bh.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),Bh.forEach(["delete","get","head","post","put","patch","common"],function(i){delete t.headers[i]});var n=t.adapter||Y3.adapter;return n(t).then(function(i){return eu(t),i.data=Qc.call(t,i.data,i.headers,t.transformResponse),i},function(i){return K3(i)||(eu(t),i&&i.response&&(i.response.data=Qc.call(t,i.response.data,i.response.headers,t.transformResponse))),Promise.reject(i)})},En=tn,Nv=function(t,n){n=n||{};var o={};function i(d,m){return En.isPlainObject(d)&&En.isPlainObject(m)?En.merge(d,m):En.isPlainObject(m)?En.merge({},m):En.isArray(m)?m.slice():m}function r(d){if(En.isUndefined(n[d])){if(!En.isUndefined(t[d]))return i(void 0,t[d])}else return i(t[d],n[d])}function s(d){if(!En.isUndefined(n[d]))return i(void 0,n[d])}function a(d){if(En.isUndefined(n[d])){if(!En.isUndefined(t[d]))return i(void 0,t[d])}else return i(void 0,n[d])}function l(d){if(d in n)return i(t[d],n[d]);if(d in t)return i(void 0,t[d])}var u={url:s,method:s,data:s,baseURL:a,transformRequest:a,transformResponse:a,paramsSerializer:a,timeout:a,timeoutMessage:a,withCredentials:a,adapter:a,responseType:a,xsrfCookieName:a,xsrfHeaderName:a,onUploadProgress:a,onDownloadProgress:a,decompress:a,maxContentLength:a,maxBodyLength:a,beforeRedirect:a,transport:a,httpAgent:a,httpsAgent:a,cancelToken:a,socketPath:a,responseEncoding:a,validateStatus:l};return En.forEach(Object.keys(t).concat(Object.keys(n)),function(m){var f=u[m]||r,h=f(m);En.isUndefined(h)&&f!==l||(o[m]=h)}),o},jv={version:"0.27.2"},X3=jv.version,Wo=Or,kf={};["object","boolean","number","function","string","symbol"].forEach(function(e,t){kf[e]=function(o){return typeof o===e||"a"+(t<1?"n ":" ")+e}});var Uh={};kf.transitional=function(t,n,o){function i(r,s){return"[Axios v"+X3+"] Transitional option '"+r+"'"+s+(o?". "+o:"")}return function(r,s,a){if(t===!1)throw new Wo(i(s," has been removed"+(n?" in "+n:"")),Wo.ERR_DEPRECATED);return n&&!Uh[s]&&(Uh[s]=!0,console.warn(i(s," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(r,s,a):!0}};function Q3(e,t,n){if(typeof e!="object")throw new Wo("options must be an object",Wo.ERR_BAD_OPTION_VALUE);for(var o=Object.keys(e),i=o.length;i-- >0;){var r=o[i],s=t[r];if(s){var a=e[r],l=a===void 0||s(a,r,e);if(l!==!0)throw new Wo("option "+r+" must be "+l,Wo.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new Wo("Unknown option "+r,Wo.ERR_BAD_OPTION)}}var e5={assertOptions:Q3,validators:kf},Vv=tn,t5=Ov,Hh=p3,qh=J3,bc=Nv,n5=Mv,Bv=e5,Gi=Bv.validators;function kr(e){this.defaults=e,this.interceptors={request:new Hh,response:new Hh}}kr.prototype.request=function(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=bc(this.defaults,n),n.method?n.method=n.method.toLowerCase():this.defaults.method?n.method=this.defaults.method.toLowerCase():n.method="get";var o=n.transitional;o!==void 0&&Bv.assertOptions(o,{silentJSONParsing:Gi.transitional(Gi.boolean),forcedJSONParsing:Gi.transitional(Gi.boolean),clarifyTimeoutError:Gi.transitional(Gi.boolean)},!1);var i=[],r=!0;this.interceptors.request.forEach(function(h){typeof h.runWhen=="function"&&h.runWhen(n)===!1||(r=r&&h.synchronous,i.unshift(h.fulfilled,h.rejected))});var s=[];this.interceptors.response.forEach(function(h){s.push(h.fulfilled,h.rejected)});var a;if(!r){var l=[qh,void 0];for(Array.prototype.unshift.apply(l,i),l=l.concat(s),a=Promise.resolve(n);l.length;)a=a.then(l.shift(),l.shift());return a}for(var u=n;i.length;){var d=i.shift(),m=i.shift();try{u=d(u)}catch(f){m(f);break}}try{a=qh(u)}catch(f){return Promise.reject(f)}for(;s.length;)a=a.then(s.shift(),s.shift());return a};kr.prototype.getUri=function(t){t=bc(this.defaults,t);var n=n5(t.baseURL,t.url);return t5(n,t.params,t.paramsSerializer)};Vv.forEach(["delete","get","head","options"],function(t){kr.prototype[t]=function(n,o){return this.request(bc(o||{},{method:t,url:n,data:(o||{}).data}))}});Vv.forEach(["post","put","patch"],function(t){function n(o){return function(r,s,a){return this.request(bc(a||{},{method:t,headers:o?{"Content-Type":"multipart/form-data"}:{},url:r,data:s}))}}kr.prototype[t]=n(),kr.prototype[t+"Form"]=n(!0)});var o5=kr,i5=hc;function Cr(e){if(typeof e!="function")throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(i){t=i});var n=this;this.promise.then(function(o){if(!!n._listeners){var i,r=n._listeners.length;for(i=0;i(at.dispatch("add_notification",{text:this.$t("server.appended-tracks",{count:n.data.count}),type:"info",timeout:2e3}),Promise.resolve(n)))},queue_expression_add(e){const t={};return t.expression=e,Oe.post("./api/queue/items/add",void 0,{params:t}).then(n=>(at.dispatch("add_notification",{text:this.$t("server.appended-tracks",{count:n.data.count}),type:"info",timeout:2e3}),Promise.resolve(n)))},queue_expression_add_next(e){const t={};return t.expression=e,t.position=0,at.getters.now_playing&&at.getters.now_playing.id&&(t.position=at.getters.now_playing.position+1),Oe.post("./api/queue/items/add",void 0,{params:t}).then(n=>(at.dispatch("add_notification",{text:this.$t("server.appended-tracks",{count:n.data.count}),type:"info",timeout:2e3}),Promise.resolve(n)))},queue_save_playlist(e){return Oe.post("./api/queue/save",void 0,{params:{name:e}}).then(t=>(at.dispatch("add_notification",{text:this.$t("server.queue-saved",{name:e}),type:"info",timeout:2e3}),Promise.resolve(t)))},player_status(){return Oe.get("./api/player")},player_play_uri(e,t,n=void 0){const o={};return o.uris=e,o.shuffle=t?"true":"false",o.clear="true",o.playback="start",o.playback_from_position=n,Oe.post("./api/queue/items/add",void 0,{params:o})},player_play_expression(e,t,n=void 0){const o={};return o.expression=e,o.shuffle=t?"true":"false",o.clear="true",o.playback="start",o.playback_from_position=n,Oe.post("./api/queue/items/add",void 0,{params:o})},player_play(e={}){return Oe.put("./api/player/play",void 0,{params:e})},player_playpos(e){return Oe.put("./api/player/play?position="+e)},player_playid(e){return Oe.put("./api/player/play?item_id="+e)},player_pause(){return Oe.put("./api/player/pause")},player_stop(){return Oe.put("./api/player/stop")},player_next(){return Oe.put("./api/player/next")},player_previous(){return Oe.put("./api/player/previous")},player_shuffle(e){const t=e?"true":"false";return Oe.put("./api/player/shuffle?state="+t)},player_consume(e){const t=e?"true":"false";return Oe.put("./api/player/consume?state="+t)},player_repeat(e){return Oe.put("./api/player/repeat?state="+e)},player_volume(e){return Oe.put("./api/player/volume?volume="+e)},player_output_volume(e,t){return Oe.put("./api/player/volume?volume="+t+"&output_id="+e)},player_seek_to_pos(e){return Oe.put("./api/player/seek?position_ms="+e)},player_seek(e){return Oe.put("./api/player/seek?seek_ms="+e)},outputs(){return Oe.get("./api/outputs")},output_update(e,t){return Oe.put("./api/outputs/"+e,t)},output_toggle(e){return Oe.put("./api/outputs/"+e+"/toggle")},library_artists(e=void 0){return Oe.get("./api/library/artists",{params:{media_kind:e}})},library_artist(e){return Oe.get("./api/library/artists/"+e)},library_artist_albums(e){return Oe.get("./api/library/artists/"+e+"/albums")},library_albums(e=void 0){return Oe.get("./api/library/albums",{params:{media_kind:e}})},library_album(e){return Oe.get("./api/library/albums/"+e)},library_album_tracks(e,t={limit:-1,offset:0}){return Oe.get("./api/library/albums/"+e+"/tracks",{params:t})},library_album_track_update(e,t){return Oe.put("./api/library/albums/"+e+"/tracks",void 0,{params:t})},library_genres(e=void 0){return Oe.get("./api/library/genres",{params:{media_kind:e}})},library_genre(e){return Oe.get(`./api/library/genres/${encodeURIComponent(e)}`)},library_genre_albums(e){const t={type:"albums",expression:`genre is "${e}" and media_kind is music`};return Oe.get("./api/search",{params:t})},library_genre_tracks(e){const t={type:"tracks",expression:`genre is "${e}" and media_kind is music`};return Oe.get("./api/search",{params:t})},library_radio_streams(){const e={type:"tracks",media_kind:"music",expression:"data_kind is url and song_length = 0"};return Oe.get("./api/search",{params:e})},library_composers(e=void 0){return Oe.get("./api/library/composers",{params:{media_kind:e}})},library_composer(e){return Oe.get(`./api/library/composers/${encodeURIComponent(e)}`)},library_composer_albums(e){const t={type:"albums",expression:`composer is "${e}" and media_kind is music`};return Oe.get("./api/search",{params:t})},library_composer_tracks(e){const t={type:"tracks",expression:`composer is "${e}" and media_kind is music`};return Oe.get("./api/search",{params:t})},library_artist_tracks(e){if(e){const t={type:"tracks",expression:'songartistid is "'+e+'"'};return Oe.get("./api/search",{params:t})}},library_podcasts_new_episodes(){const e={type:"tracks",expression:"media_kind is podcast and play_count = 0 ORDER BY time_added DESC"};return Oe.get("./api/search",{params:e})},library_podcast_episodes(e){const t={type:"tracks",expression:'media_kind is podcast and songalbumid is "'+e+'" ORDER BY date_released DESC'};return Oe.get("./api/search",{params:t})},library_add(e){return Oe.post("./api/library/add",void 0,{params:{url:e}})},library_playlist_delete(e){return Oe.delete("./api/library/playlists/"+e,void 0)},library_playlists(){return Oe.get("./api/library/playlists")},library_playlist_folder(e=0){return Oe.get("./api/library/playlists/"+e+"/playlists")},library_playlist(e){return Oe.get("./api/library/playlists/"+e)},library_playlist_tracks(e){return Oe.get("./api/library/playlists/"+e+"/tracks")},library_track(e){return Oe.get("./api/library/tracks/"+e)},library_track_playlists(e){return Oe.get("./api/library/tracks/"+e+"/playlists")},library_track_update(e,t={}){return Oe.put("./api/library/tracks/"+e,void 0,{params:t})},library_files(e=void 0){const t={directory:e};return Oe.get("./api/library/files",{params:t})},search(e){return Oe.get("./api/search",{params:e})},spotify(){return Oe.get("./api/spotify")},spotify_login(e){return Oe.post("./api/spotify-login",e)},spotify_logout(){return Oe.get("./api/spotify-logout")},lastfm(){return Oe.get("./api/lastfm")},lastfm_login(e){return Oe.post("./api/lastfm-login",e)},lastfm_logout(e){return Oe.get("./api/lastfm-logout")},pairing(){return Oe.get("./api/pairing")},pairing_kickoff(e){return Oe.post("./api/pairing",e)},artwork_url_append_size_params(e,t=600,n=600){return e&&e.startsWith("/")?e.includes("?")?e+"&maxwidth="+t+"&maxheight="+n:e+"?maxwidth="+t+"&maxheight="+n:e}};const f5={name:"ListItemQueueItem",props:["item","position","current_position","show_only_next_items","edit_mode"],computed:{state(){return this.$store.state.player},is_next(){return this.current_position<0||this.position>=this.current_position}},methods:{play:function(){Y.player_play({item_id:this.item.id})}}},m5={key:0,class:"media"},h5={key:0,class:"media-left"},p5={class:"icon has-text-grey fd-is-movable handle"},b5=["textContent"],g5=["textContent"],v5=["textContent"],_5={class:"media-right"};function y5(e,t,n,o,i,r){const s=P("mdicon");return r.is_next||!n.show_only_next_items?(S(),D("div",m5,[n.edit_mode?(S(),D("div",h5,[c("span",p5,[x(s,{name:"drag-horizontal",size:"16"})])])):Q("",!0),c("div",{class:"media-content fd-has-action is-clipped",onClick:t[0]||(t[0]=(...a)=>r.play&&r.play(...a))},[c("h1",{class:Ye(["title is-6",{"has-text-primary":n.item.id===r.state.item_id,"has-text-grey-light":!r.is_next}]),textContent:_(n.item.title)},null,10,b5),c("h2",{class:Ye(["subtitle is-7",{"has-text-primary":n.item.id===r.state.item_id,"has-text-grey-light":!r.is_next,"has-text-grey":r.is_next&&n.item.id!==r.state.item_id}])},[c("b",{textContent:_(n.item.artist)},null,8,g5)],2),c("h2",{class:Ye(["subtitle is-7",{"has-text-primary":n.item.id===r.state.item_id,"has-text-grey-light":!r.is_next,"has-text-grey":r.is_next&&n.item.id!==r.state.item_id}]),textContent:_(n.item.album)},null,10,v5)]),c("div",_5,[Ct(e.$slots,"actions")])])):Q("",!0)}var w5=_e(f5,[["render",y5]]),Hv={exports:{}};(function(e){var t=function(){var n="https://api.spotify.com/v1",o=null,i=null,r=function(f,h){return f.abort=h,f},s=function(f,h){var p;if(i!==null){var b=i.defer();f(function(g){b.resolve(g)},function(g){b.reject(g)}),p=b.promise}else window.Promise&&(p=new window.Promise(f));return p?new r(p,h):null},a=function(){var f=Array.prototype.slice.call(arguments),h=f[0],p=f.slice(1);return h=h||{},p.forEach(function(b){for(var g in b)b.hasOwnProperty(g)&&(h[g]=b[g])}),h},l=function(f,h){var p="";for(var b in h)if(h.hasOwnProperty(b)){var g=h[b];p+=encodeURIComponent(b)+"="+encodeURIComponent(g)+"&"}return p.length>0&&(p=p.substring(0,p.length-1),f=f+"?"+p),f},u=function(f,h){var p=new XMLHttpRequest,b=function(g,y){function w(O){g&&g(O),h&&h(null,O)}function C(){y&&y(p),h&&h(p,null)}var k=f.type||"GET";if(p.open(k,l(f.url,f.params)),o&&p.setRequestHeader("Authorization","Bearer "+o),p.onreadystatechange=function(){if(p.readyState===4){var O=null;try{O=p.responseText?JSON.parse(p.responseText):""}catch(j){console.error(j)}p.status>=200&&p.status<300?w(O):C()}},k==="GET")p.send(null);else{var $=null;f.postData&&(f.contentType==="image/jpeg"?($=f.postData,p.setRequestHeader("Content-Type",f.contentType)):($=JSON.stringify(f.postData),p.setRequestHeader("Content-Type","application/json"))),p.send($)}};return h?(b(),null):s(b,function(){p.abort()})},d=function(f,h,p,b){var g={},y=null;typeof h=="object"?(g=h,y=p):typeof h=="function"&&(y=h);var w=f.type||"GET";return w!=="GET"&&f.postData&&!b?f.postData=a(f.postData,g):f.params=a(f.params,g),u(f,y)},m=function(){};return m.prototype={constructor:t},m.prototype.getGeneric=function(f,h){var p={url:f};return d(p,h)},m.prototype.getMe=function(f,h){var p={url:n+"/me"};return d(p,f,h)},m.prototype.getMySavedTracks=function(f,h){var p={url:n+"/me/tracks"};return d(p,f,h)},m.prototype.addToMySavedTracks=function(f,h,p){var b={url:n+"/me/tracks",type:"PUT",postData:f};return d(b,h,p)},m.prototype.removeFromMySavedTracks=function(f,h,p){var b={url:n+"/me/tracks",type:"DELETE",postData:f};return d(b,h,p)},m.prototype.containsMySavedTracks=function(f,h,p){var b={url:n+"/me/tracks/contains",params:{ids:f.join(",")}};return d(b,h,p)},m.prototype.getMySavedAlbums=function(f,h){var p={url:n+"/me/albums"};return d(p,f,h)},m.prototype.addToMySavedAlbums=function(f,h,p){var b={url:n+"/me/albums",type:"PUT",postData:f};return d(b,h,p)},m.prototype.removeFromMySavedAlbums=function(f,h,p){var b={url:n+"/me/albums",type:"DELETE",postData:f};return d(b,h,p)},m.prototype.containsMySavedAlbums=function(f,h,p){var b={url:n+"/me/albums/contains",params:{ids:f.join(",")}};return d(b,h,p)},m.prototype.getMyTopArtists=function(f,h){var p={url:n+"/me/top/artists"};return d(p,f,h)},m.prototype.getMyTopTracks=function(f,h){var p={url:n+"/me/top/tracks"};return d(p,f,h)},m.prototype.getMyRecentlyPlayedTracks=function(f,h){var p={url:n+"/me/player/recently-played"};return d(p,f,h)},m.prototype.followUsers=function(f,h){var p={url:n+"/me/following/",type:"PUT",params:{ids:f.join(","),type:"user"}};return d(p,h)},m.prototype.followArtists=function(f,h){var p={url:n+"/me/following/",type:"PUT",params:{ids:f.join(","),type:"artist"}};return d(p,h)},m.prototype.followPlaylist=function(f,h,p){var b={url:n+"/playlists/"+f+"/followers",type:"PUT",postData:{}};return d(b,h,p)},m.prototype.unfollowUsers=function(f,h){var p={url:n+"/me/following/",type:"DELETE",params:{ids:f.join(","),type:"user"}};return d(p,h)},m.prototype.unfollowArtists=function(f,h){var p={url:n+"/me/following/",type:"DELETE",params:{ids:f.join(","),type:"artist"}};return d(p,h)},m.prototype.unfollowPlaylist=function(f,h){var p={url:n+"/playlists/"+f+"/followers",type:"DELETE"};return d(p,h)},m.prototype.isFollowingUsers=function(f,h){var p={url:n+"/me/following/contains",type:"GET",params:{ids:f.join(","),type:"user"}};return d(p,h)},m.prototype.isFollowingArtists=function(f,h){var p={url:n+"/me/following/contains",type:"GET",params:{ids:f.join(","),type:"artist"}};return d(p,h)},m.prototype.areFollowingPlaylist=function(f,h,p){var b={url:n+"/playlists/"+f+"/followers/contains",type:"GET",params:{ids:h.join(",")}};return d(b,p)},m.prototype.getFollowedArtists=function(f,h){var p={url:n+"/me/following",type:"GET",params:{type:"artist"}};return d(p,f,h)},m.prototype.getUser=function(f,h,p){var b={url:n+"/users/"+encodeURIComponent(f)};return d(b,h,p)},m.prototype.getUserPlaylists=function(f,h,p){var b;return typeof f=="string"?b={url:n+"/users/"+encodeURIComponent(f)+"/playlists"}:(b={url:n+"/me/playlists"},p=h,h=f),d(b,h,p)},m.prototype.getPlaylist=function(f,h,p){var b={url:n+"/playlists/"+f};return d(b,h,p)},m.prototype.getPlaylistTracks=function(f,h,p){var b={url:n+"/playlists/"+f+"/tracks"};return d(b,h,p)},m.prototype.getPlaylistCoverImage=function(f,h){var p={url:n+"/playlists/"+f+"/images"};return d(p,h)},m.prototype.createPlaylist=function(f,h,p){var b={url:n+"/users/"+encodeURIComponent(f)+"/playlists",type:"POST",postData:h};return d(b,h,p)},m.prototype.changePlaylistDetails=function(f,h,p){var b={url:n+"/playlists/"+f,type:"PUT",postData:h};return d(b,h,p)},m.prototype.addTracksToPlaylist=function(f,h,p,b){var g={url:n+"/playlists/"+f+"/tracks",type:"POST",postData:{uris:h}};return d(g,p,b,!0)},m.prototype.replaceTracksInPlaylist=function(f,h,p){var b={url:n+"/playlists/"+f+"/tracks",type:"PUT",postData:{uris:h}};return d(b,{},p)},m.prototype.reorderTracksInPlaylist=function(f,h,p,b,g){var y={url:n+"/playlists/"+f+"/tracks",type:"PUT",postData:{range_start:h,insert_before:p}};return d(y,b,g)},m.prototype.removeTracksFromPlaylist=function(f,h,p){var b=h.map(function(y){return typeof y=="string"?{uri:y}:y}),g={url:n+"/playlists/"+f+"/tracks",type:"DELETE",postData:{tracks:b}};return d(g,{},p)},m.prototype.removeTracksFromPlaylistWithSnapshotId=function(f,h,p,b){var g=h.map(function(w){return typeof w=="string"?{uri:w}:w}),y={url:n+"/playlists/"+f+"/tracks",type:"DELETE",postData:{tracks:g,snapshot_id:p}};return d(y,{},b)},m.prototype.removeTracksFromPlaylistInPositions=function(f,h,p,b){var g={url:n+"/playlists/"+f+"/tracks",type:"DELETE",postData:{positions:h,snapshot_id:p}};return d(g,{},b)},m.prototype.uploadCustomPlaylistCoverImage=function(f,h,p){var b={url:n+"/playlists/"+f+"/images",type:"PUT",postData:h.replace(/^data:image\/jpeg;base64,/,""),contentType:"image/jpeg"};return d(b,{},p)},m.prototype.getAlbum=function(f,h,p){var b={url:n+"/albums/"+f};return d(b,h,p)},m.prototype.getAlbumTracks=function(f,h,p){var b={url:n+"/albums/"+f+"/tracks"};return d(b,h,p)},m.prototype.getAlbums=function(f,h,p){var b={url:n+"/albums/",params:{ids:f.join(",")}};return d(b,h,p)},m.prototype.getTrack=function(f,h,p){var b={};return b.url=n+"/tracks/"+f,d(b,h,p)},m.prototype.getTracks=function(f,h,p){var b={url:n+"/tracks/",params:{ids:f.join(",")}};return d(b,h,p)},m.prototype.getArtist=function(f,h,p){var b={url:n+"/artists/"+f};return d(b,h,p)},m.prototype.getArtists=function(f,h,p){var b={url:n+"/artists/",params:{ids:f.join(",")}};return d(b,h,p)},m.prototype.getArtistAlbums=function(f,h,p){var b={url:n+"/artists/"+f+"/albums"};return d(b,h,p)},m.prototype.getArtistTopTracks=function(f,h,p,b){var g={url:n+"/artists/"+f+"/top-tracks",params:{country:h}};return d(g,p,b)},m.prototype.getArtistRelatedArtists=function(f,h,p){var b={url:n+"/artists/"+f+"/related-artists"};return d(b,h,p)},m.prototype.getFeaturedPlaylists=function(f,h){var p={url:n+"/browse/featured-playlists"};return d(p,f,h)},m.prototype.getNewReleases=function(f,h){var p={url:n+"/browse/new-releases"};return d(p,f,h)},m.prototype.getCategories=function(f,h){var p={url:n+"/browse/categories"};return d(p,f,h)},m.prototype.getCategory=function(f,h,p){var b={url:n+"/browse/categories/"+f};return d(b,h,p)},m.prototype.getCategoryPlaylists=function(f,h,p){var b={url:n+"/browse/categories/"+f+"/playlists"};return d(b,h,p)},m.prototype.search=function(f,h,p,b){var g={url:n+"/search/",params:{q:f,type:h.join(",")}};return d(g,p,b)},m.prototype.searchAlbums=function(f,h,p){return this.search(f,["album"],h,p)},m.prototype.searchArtists=function(f,h,p){return this.search(f,["artist"],h,p)},m.prototype.searchTracks=function(f,h,p){return this.search(f,["track"],h,p)},m.prototype.searchPlaylists=function(f,h,p){return this.search(f,["playlist"],h,p)},m.prototype.searchShows=function(f,h,p){return this.search(f,["show"],h,p)},m.prototype.searchEpisodes=function(f,h,p){return this.search(f,["episode"],h,p)},m.prototype.getAudioFeaturesForTrack=function(f,h){var p={};return p.url=n+"/audio-features/"+f,d(p,{},h)},m.prototype.getAudioFeaturesForTracks=function(f,h){var p={url:n+"/audio-features",params:{ids:f}};return d(p,{},h)},m.prototype.getAudioAnalysisForTrack=function(f,h){var p={};return p.url=n+"/audio-analysis/"+f,d(p,{},h)},m.prototype.getRecommendations=function(f,h){var p={url:n+"/recommendations"};return d(p,f,h)},m.prototype.getAvailableGenreSeeds=function(f){var h={url:n+"/recommendations/available-genre-seeds"};return d(h,{},f)},m.prototype.getMyDevices=function(f){var h={url:n+"/me/player/devices"};return d(h,{},f)},m.prototype.getMyCurrentPlaybackState=function(f,h){var p={url:n+"/me/player"};return d(p,f,h)},m.prototype.getMyCurrentPlayingTrack=function(f,h){var p={url:n+"/me/player/currently-playing"};return d(p,f,h)},m.prototype.transferMyPlayback=function(f,h,p){var b=h||{};b.device_ids=f;var g={type:"PUT",url:n+"/me/player",postData:b};return d(g,h,p)},m.prototype.play=function(f,h){f=f||{};var p="device_id"in f?{device_id:f.device_id}:null,b={};["context_uri","uris","offset","position_ms"].forEach(function(w){w in f&&(b[w]=f[w])});var g={type:"PUT",url:n+"/me/player/play",params:p,postData:b},y=typeof f=="function"?f:{};return d(g,y,h)},m.prototype.queue=function(f,h,p){h=h||{};var b="device_id"in h?{uri:f,device_id:h.device_id}:{uri:f},g={type:"POST",url:n+"/me/player/queue",params:b};return d(g,h,p)},m.prototype.pause=function(f,h){f=f||{};var p="device_id"in f?{device_id:f.device_id}:null,b={type:"PUT",url:n+"/me/player/pause",params:p};return d(b,f,h)},m.prototype.skipToNext=function(f,h){f=f||{};var p="device_id"in f?{device_id:f.device_id}:null,b={type:"POST",url:n+"/me/player/next",params:p};return d(b,f,h)},m.prototype.skipToPrevious=function(f,h){f=f||{};var p="device_id"in f?{device_id:f.device_id}:null,b={type:"POST",url:n+"/me/player/previous",params:p};return d(b,f,h)},m.prototype.seek=function(f,h,p){h=h||{};var b={position_ms:f};"device_id"in h&&(b.device_id=h.device_id);var g={type:"PUT",url:n+"/me/player/seek",params:b};return d(g,h,p)},m.prototype.setRepeat=function(f,h,p){h=h||{};var b={state:f};"device_id"in h&&(b.device_id=h.device_id);var g={type:"PUT",url:n+"/me/player/repeat",params:b};return d(g,h,p)},m.prototype.setVolume=function(f,h,p){h=h||{};var b={volume_percent:f};"device_id"in h&&(b.device_id=h.device_id);var g={type:"PUT",url:n+"/me/player/volume",params:b};return d(g,h,p)},m.prototype.setShuffle=function(f,h,p){h=h||{};var b={state:f};"device_id"in h&&(b.device_id=h.device_id);var g={type:"PUT",url:n+"/me/player/shuffle",params:b};return d(g,h,p)},m.prototype.getShow=function(f,h,p){var b={};return b.url=n+"/shows/"+f,d(b,h,p)},m.prototype.getShows=function(f,h,p){var b={url:n+"/shows/",params:{ids:f.join(",")}};return d(b,h,p)},m.prototype.getMySavedShows=function(f,h){var p={url:n+"/me/shows"};return d(p,f,h)},m.prototype.addToMySavedShows=function(f,h,p){var b={url:n+"/me/shows",type:"PUT",postData:f};return d(b,h,p)},m.prototype.removeFromMySavedShows=function(f,h,p){var b={url:n+"/me/shows",type:"DELETE",postData:f};return d(b,h,p)},m.prototype.containsMySavedShows=function(f,h,p){var b={url:n+"/me/shows/contains",params:{ids:f.join(",")}};return d(b,h,p)},m.prototype.getShowEpisodes=function(f,h,p){var b={url:n+"/shows/"+f+"/episodes"};return d(b,h,p)},m.prototype.getEpisode=function(f,h,p){var b={};return b.url=n+"/episodes/"+f,d(b,h,p)},m.prototype.getEpisodes=function(f,h,p){var b={url:n+"/episodes/",params:{ids:f.join(",")}};return d(b,h,p)},m.prototype.getAccessToken=function(){return o},m.prototype.setAccessToken=function(f){o=f},m.prototype.setPromiseImplementation=function(f){var h=!1;try{var p=new f(function(b){b()});typeof p.then=="function"&&typeof p.catch=="function"&&(h=!0)}catch(b){console.error(b)}if(h)i=f;else throw new Error("Unsupported implementation of Promises/A+")},m}();e.exports=t})(Hv);var co=Hv.exports;const x5={name:"ModalDialogQueueItem",props:["show","item"],emits:["close"],data(){return{spotify_track:{}}},watch:{item(){if(this.item&&this.item.data_kind==="spotify"){const e=new co;e.setAccessToken(this.$store.state.spotify.webapi_token),e.getTrack(this.item.path.slice(this.item.path.lastIndexOf(":")+1)).then(t=>{this.spotify_track=t})}else this.spotify_track={}}},methods:{remove:function(){this.$emit("close"),Y.queue_remove(this.item.id)},play:function(){this.$emit("close"),Y.player_play({item_id:this.item.id})},open_album:function(){this.media_kind==="podcast"?this.$router.push({path:"/podcasts/"+this.item.album_id}):this.media_kind==="audiobook"?this.$router.push({path:"/audiobooks/"+this.item.album_id}):this.$router.push({path:"/music/albums/"+this.item.album_id})},open_album_artist:function(){this.$router.push({path:"/music/artists/"+this.item.album_artist_id})},open_genre:function(){this.$router.push({name:"Genre",params:{genre:this.item.genre}})},open_spotify_artist:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/artists/"+this.spotify_track.artists[0].id})},open_spotify_album:function(){this.$emit("close"),this.$router.push({path:"/music/spotify/albums/"+this.spotify_track.album.id})}}},k5={key:0,class:"modal is-active"},C5={class:"modal-content fd-modal-card"},z5={class:"card"},S5={class:"card-content"},$5=["textContent"],E5=["textContent"],A5={class:"content is-small"},O5=["textContent"],T5=["textContent"],P5=["textContent"],D5={key:0},F5=["textContent"],I5=["textContent"],M5=["textContent"],L5={key:1},R5=["textContent"],N5=["textContent"],j5={key:2},V5=["textContent"],B5=["textContent"],U5={key:3},H5=["textContent"],q5=["textContent"],G5=["textContent"],W5=["textContent"],K5=["textContent"],Y5=["textContent"],Z5=["textContent"],J5=["textContent"],X5=["textContent"],Q5={class:"title is-6"},e6=["textContent"],t6={key:0,class:"has-text-weight-normal"},n6=_t(" ("),o6=["textContent"],i6=_t(", "),r6=["textContent"],s6=_t(") "),a6=["textContent"],l6={class:"title is-6"},c6=["textContent"],u6=["textContent"],d6=["textContent"],f6=["textContent"],m6={class:"card-footer"},h6={class:"icon"},p6=["textContent"],b6={class:"icon"},g6=["textContent"];function v6(e,t,n,o,i,r){const s=P("mdicon");return S(),D("div",null,[x(Gt,{name:"fade"},{default:T(()=>[n.show?(S(),D("div",k5,[c("div",{class:"modal-background",onClick:t[0]||(t[0]=a=>e.$emit("close"))}),c("div",C5,[c("div",z5,[c("div",S5,[c("p",{class:"title is-4",textContent:_(n.item.title)},null,8,$5),c("p",{class:"subtitle",textContent:_(n.item.artist)},null,8,E5),c("div",A5,[c("p",null,[c("span",{class:"heading",textContent:_(e.$t("dialog.queue-item.album"))},null,8,O5),n.item.album_id?(S(),D("a",{key:0,class:"title is-6 has-text-link",onClick:t[1]||(t[1]=(...a)=>r.open_album&&r.open_album(...a)),textContent:_(n.item.album)},null,8,T5)):(S(),D("span",{key:1,class:"title is-6",textContent:_(n.item.album)},null,8,P5))]),n.item.album_artist?(S(),D("p",D5,[c("span",{class:"heading",textContent:_(e.$t("dialog.queue-item.album-artist"))},null,8,F5),n.item.album_artist_id?(S(),D("a",{key:0,class:"title is-6 has-text-link",onClick:t[2]||(t[2]=(...a)=>r.open_album_artist&&r.open_album_artist(...a)),textContent:_(n.item.album_artist)},null,8,I5)):(S(),D("span",{key:1,class:"title is-6",textContent:_(n.item.album_artist)},null,8,M5))])):Q("",!0),n.item.composer?(S(),D("p",L5,[c("span",{class:"heading",textContent:_(e.$t("dialog.queue-item.composer"))},null,8,R5),c("span",{class:"title is-6",textContent:_(n.item.composer)},null,8,N5)])):Q("",!0),n.item.year>0?(S(),D("p",j5,[c("span",{class:"heading",textContent:_(e.$t("dialog.queue-item.year"))},null,8,V5),c("span",{class:"title is-6",textContent:_(n.item.year)},null,8,B5)])):Q("",!0),n.item.genre?(S(),D("p",U5,[c("span",{class:"heading",textContent:_(e.$t("dialog.queue-item.genre"))},null,8,H5),c("a",{class:"title is-6 has-text-link",onClick:t[3]||(t[3]=(...a)=>r.open_genre&&r.open_genre(...a)),textContent:_(n.item.genre)},null,8,q5)])):Q("",!0),c("p",null,[c("span",{class:"heading",textContent:_(e.$t("dialog.queue-item.position"))},null,8,G5),c("span",{class:"title is-6",textContent:_([n.item.disc_number,n.item.track_number].join(" / "))},null,8,W5)]),c("p",null,[c("span",{class:"heading",textContent:_(e.$t("dialog.queue-item.duration"))},null,8,K5),c("span",{class:"title is-6",textContent:_(e.$filters.durationInHours(n.item.length_ms))},null,8,Y5)]),c("p",null,[c("span",{class:"heading",textContent:_(e.$t("dialog.queue-item.path"))},null,8,Z5),c("span",{class:"title is-6",textContent:_(n.item.path)},null,8,J5)]),c("p",null,[c("span",{class:"heading",textContent:_(e.$t("dialog.queue-item.type"))},null,8,X5),c("span",Q5,[c("span",{textContent:_([n.item.media_kind,n.item.data_kind].join(" - "))},null,8,e6),n.item.data_kind==="spotify"?(S(),D("span",t6,[n6,c("a",{onClick:t[4]||(t[4]=(...a)=>r.open_spotify_artist&&r.open_spotify_artist(...a)),textContent:_(e.$t("dialog.queue-item.spotify-artist"))},null,8,o6),i6,c("a",{onClick:t[5]||(t[5]=(...a)=>r.open_spotify_album&&r.open_spotify_album(...a)),textContent:_(e.$t("dialog.queue-item.spotify-album"))},null,8,r6),s6])):Q("",!0)])]),c("p",null,[c("span",{class:"heading",textContent:_(e.$t("dialog.queue-item.quality"))},null,8,a6),c("span",l6,[c("span",{textContent:_(n.item.type)},null,8,c6),n.item.samplerate?(S(),D("span",{key:0,textContent:_(e.$t("dialog.queue-item.samplerate",{rate:n.item.samplerate}))},null,8,u6)):Q("",!0),n.item.channels?(S(),D("span",{key:1,textContent:_(e.$t("dialog.queue-item.channels",{channels:e.$filters.channels(n.item.channels)}))},null,8,d6)):Q("",!0),n.item.bitrate?(S(),D("span",{key:2,textContent:_(e.$t("dialog.queue-item.bitrate",{rate:n.item.bitrate}))},null,8,f6)):Q("",!0)])])])]),c("footer",m6,[c("a",{class:"card-footer-item has-text-dark",onClick:t[6]||(t[6]=(...a)=>r.remove&&r.remove(...a))},[c("span",h6,[x(s,{name:"delete",size:"16"})]),c("span",{class:"is-size-7",textContent:_(e.$t("dialog.queue-item.remove"))},null,8,p6)]),c("a",{class:"card-footer-item has-text-dark",onClick:t[7]||(t[7]=(...a)=>r.play&&r.play(...a))},[c("span",b6,[x(s,{name:"play",size:"16"})]),c("span",{class:"is-size-7",textContent:_(e.$t("dialog.queue-item.play"))},null,8,g6)])])])]),c("button",{class:"modal-close is-large","aria-label":"close",onClick:t[8]||(t[8]=a=>e.$emit("close"))})])):Q("",!0)]),_:1})])}var qv=_e(x5,[["render",v6]]);const _6={name:"ModalDialogAddUrlStream",props:["show"],emits:["close"],data(){return{url:"",loading:!1}},watch:{show(){this.show&&(this.loading=!1,setTimeout(()=>{this.$refs.url_field.focus()},10))}},methods:{add_stream:function(){this.loading=!0,Y.queue_add(this.url).then(()=>{this.$emit("close"),this.url=""}).catch(()=>{this.loading=!1})},play:function(){this.loading=!0,Y.player_play_uri(this.url,!1).then(()=>{this.$emit("close"),this.url=""}).catch(()=>{this.loading=!1})}}},y6={key:0,class:"modal is-active"},w6={class:"modal-content fd-modal-card"},x6={class:"card"},k6={class:"card-content"},C6=["textContent"],z6={class:"field"},S6={class:"control is-expanded has-icons-left"},$6=["placeholder","disabled"],E6={class:"icon is-left"},A6={key:0,class:"card-footer"},O6={class:"card-footer-item has-text-dark"},T6={class:"icon"},P6=["textContent"],D6={key:1,class:"card-footer"},F6={class:"icon"},I6=["textContent"],M6={class:"icon"},L6=["textContent"],R6={class:"icon"},N6=["textContent"];function j6(e,t,n,o,i,r){const s=P("mdicon");return S(),D("div",null,[x(Gt,{name:"fade"},{default:T(()=>[n.show?(S(),D("div",y6,[c("div",{class:"modal-background",onClick:t[0]||(t[0]=a=>e.$emit("close"))}),c("div",w6,[c("div",x6,[c("div",k6,[c("p",{class:"title is-4",textContent:_(e.$t("dialog.add.stream.title"))},null,8,C6),c("form",{class:"fd-has-margin-bottom",onSubmit:t[2]||(t[2]=bt((...a)=>r.play&&r.play(...a),["prevent"]))},[c("div",z6,[c("p",S6,[zt(c("input",{ref:"url_field","onUpdate:modelValue":t[1]||(t[1]=a=>i.url=a),class:"input is-shadowless",type:"text",placeholder:e.$t("dialog.add.stream.placeholder"),disabled:i.loading},null,8,$6),[[zn,i.url]]),c("span",E6,[x(s,{name:"web",size:"16"})])])])],32)]),i.loading?(S(),D("footer",A6,[c("a",O6,[c("span",T6,[x(s,{name:"web",size:"16"})]),c("span",{class:"is-size-7",textContent:_(e.$t("dialog.add.stream.loading"))},null,8,P6)])])):(S(),D("footer",D6,[c("a",{class:"card-footer-item has-text-danger",onClick:t[3]||(t[3]=a=>e.$emit("close"))},[c("span",F6,[x(s,{name:"cancel",size:"16"})]),c("span",{class:"is-size-7",textContent:_(e.$t("dialog.add.stream.cancel"))},null,8,I6)]),c("a",{class:"card-footer-item has-text-dark",onClick:t[4]||(t[4]=(...a)=>r.add_stream&&r.add_stream(...a))},[c("span",M6,[x(s,{name:"playlist-plus",size:"16"})]),c("span",{class:"is-size-7",textContent:_(e.$t("dialog.add.stream.add"))},null,8,L6)]),c("a",{class:"card-footer-item has-background-info has-text-white has-text-weight-bold",onClick:t[5]||(t[5]=(...a)=>r.play&&r.play(...a))},[c("span",R6,[x(s,{name:"play",size:"16"})]),c("span",{class:"is-size-7",textContent:_(e.$t("dialog.add.stream.play"))},null,8,N6)])]))])]),c("button",{class:"modal-close is-large","aria-label":"close",onClick:t[6]||(t[6]=a=>e.$emit("close"))})])):Q("",!0)]),_:1})])}var V6=_e(_6,[["render",j6]]);const B6={name:"ModalDialogPlaylistSave",props:["show"],emits:["close"],data(){return{playlist_name:"",loading:!1}},watch:{show(){this.show&&(this.loading=!1,setTimeout(()=>{this.$refs.playlist_name_field.focus()},10))}},methods:{save:function(){this.playlist_name.length<1||(this.loading=!0,Y.queue_save_playlist(this.playlist_name).then(()=>{this.$emit("close"),this.playlist_name=""}).catch(()=>{this.loading=!1}))}}},U6={key:0,class:"modal is-active"},H6={class:"modal-content fd-modal-card"},q6={class:"card"},G6={class:"card-content"},W6=["textContent"],K6={class:"field"},Y6={class:"control is-expanded has-icons-left"},Z6=["disabled"],J6={class:"icon is-left"},X6={key:0,class:"card-footer"},Q6={class:"card-footer-item has-text-dark"},e8={class:"icon"},t8=["textContent"],n8={key:1,class:"card-footer"},o8={class:"icon"},i8=["textContent"],r8={class:"icon"},s8=["textContent"];function a8(e,t,n,o,i,r){const s=P("mdicon");return S(),D("div",null,[x(Gt,{name:"fade"},{default:T(()=>[n.show?(S(),D("div",U6,[c("div",{class:"modal-background",onClick:t[0]||(t[0]=a=>e.$emit("close"))}),c("div",H6,[c("div",q6,[c("div",G6,[c("p",{class:"title is-4",textContent:_(e.$t("dialog.playlist.save.title"))},null,8,W6),c("form",{class:"fd-has-margin-bottom",onSubmit:t[2]||(t[2]=bt((...a)=>r.save&&r.save(...a),["prevent"]))},[c("div",K6,[c("p",Y6,[zt(c("input",{ref:"playlist_name_field","onUpdate:modelValue":t[1]||(t[1]=a=>i.playlist_name=a),class:"input is-shadowless",type:"text",placeholder:"Playlist name",disabled:i.loading},null,8,Z6),[[zn,i.playlist_name]]),c("span",J6,[x(s,{name:"file-music",size:"16"})])])])],32)]),i.loading?(S(),D("footer",X6,[c("a",Q6,[c("span",e8,[x(s,{name:"web",size:"16"})]),c("span",{class:"is-size-7",textContent:_(e.$t("dialog.playlist.save.saving"))},null,8,t8)])])):(S(),D("footer",n8,[c("a",{class:"card-footer-item has-text-danger",onClick:t[3]||(t[3]=a=>e.$emit("close"))},[c("span",o8,[x(s,{name:"cancel",size:"16"})]),c("span",{class:"is-size-7",textContent:_(e.$t("dialog.playlist.save.cancel"))},null,8,i8)]),c("a",{class:"card-footer-item has-background-info has-text-white has-text-weight-bold",onClick:t[4]||(t[4]=(...a)=>r.save&&r.save(...a))},[c("span",r8,[x(s,{name:"content-save",size:"16"})]),c("span",{class:"is-size-7",textContent:_(e.$t("dialog.playlist.save.save"))},null,8,s8)])]))])]),c("button",{class:"modal-close is-large","aria-label":"close",onClick:t[5]||(t[5]=a=>e.$emit("close"))})])):Q("",!0)]),_:1})])}var l8=_e(B6,[["render",a8]]),Gv={exports:{}},Cf=Sv(Kx);/**! - * Sortable 1.14.0 - * @author RubaXa - * @author owenm - * @license MIT - */function Wh(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,o)}return n}function _o(e){for(var t=1;t=0)&&(n[i]=e[i]);return n}function d8(e,t){if(e==null)return{};var n=u8(e,t),o,i;if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);for(i=0;i=0)&&(!Object.prototype.propertyIsEnumerable.call(e,o)||(n[o]=e[o]))}return n}function f8(e){return m8(e)||h8(e)||p8(e)||b8()}function m8(e){if(Array.isArray(e))return id(e)}function h8(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function p8(e,t){if(!!e){if(typeof e=="string")return id(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(e);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return id(e,t)}}function id(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,o=new Array(t);n"&&(t=t.substring(1)),e)try{if(e.matches)return e.matches(t);if(e.msMatchesSelector)return e.msMatchesSelector(t);if(e.webkitMatchesSelector)return e.webkitMatchesSelector(t)}catch{return!1}return!1}}function _8(e){return e.host&&e!==document&&e.host.nodeType?e.host:e.parentNode}function to(e,t,n,o){if(e){n=n||document;do{if(t!=null&&(t[0]===">"?e.parentNode===n&&Tl(e,t):Tl(e,t))||o&&e===n)return e;if(e===n)break}while(e=_8(e))}return null}var Yh=/\s+/g;function Et(e,t,n){if(e&&t)if(e.classList)e.classList[n?"add":"remove"](t);else{var o=(" "+e.className+" ").replace(Yh," ").replace(" "+t+" "," ");e.className=(o+(n?" "+t:"")).replace(Yh," ")}}function Ve(e,t,n){var o=e&&e.style;if(o){if(n===void 0)return document.defaultView&&document.defaultView.getComputedStyle?n=document.defaultView.getComputedStyle(e,""):e.currentStyle&&(n=e.currentStyle),t===void 0?n:n[t];!(t in o)&&t.indexOf("webkit")===-1&&(t="-webkit-"+t),o[t]=n+(typeof n=="string"?"":"px")}}function $i(e,t){var n="";if(typeof e=="string")n=e;else do{var o=Ve(e,"transform");o&&o!=="none"&&(n=o+" "+n)}while(!t&&(e=e.parentNode));var i=window.DOMMatrix||window.WebKitCSSMatrix||window.CSSMatrix||window.MSCSSMatrix;return i&&new i(n)}function Yv(e,t,n){if(e){var o=e.getElementsByTagName(t),i=0,r=o.length;if(n)for(;i=r:s=i<=r,!s)return o;if(o===go())break;o=Xo(o,!1)}return!1}function zr(e,t,n,o){for(var i=0,r=0,s=e.children;r2&&arguments[2]!==void 0?arguments[2]:{},i=o.evt,r=d8(o,S8);Ws.pluginEvent.bind(Xe)(t,n,_o({dragEl:ze,parentEl:Dt,ghostEl:ot,rootEl:St,nextEl:_i,lastDownEl:ul,cloneEl:Ft,cloneHidden:Zo,dragStarted:ts,putSortable:Xt,activeSortable:Xe.active,originalEvent:i,oldIndex:rr,oldDraggableIndex:ys,newIndex:On,newDraggableIndex:Ko,hideGhostForTarget:t_,unhideGhostForTarget:n_,cloneNowHidden:function(){Zo=!0},cloneNowShown:function(){Zo=!1},dispatchSortableEvent:function(a){dn({sortable:n,name:a,originalEvent:i})}},r))};function dn(e){es(_o({putSortable:Xt,cloneEl:Ft,targetEl:ze,rootEl:St,oldIndex:rr,oldDraggableIndex:ys,newIndex:On,newDraggableIndex:Ko},e))}var ze,Dt,ot,St,_i,ul,Ft,Zo,rr,On,ys,Ko,ga,Xt,nr=!1,Pl=!1,Dl=[],hi,Jn,iu,ru,Qh,ep,ts,Ki,ws,xs=!1,va=!1,dl,nn,su=[],rd=!1,Fl=[],gc=typeof document!="undefined",_a=Wv,tp=Gs||Fo?"cssFloat":"float",$8=gc&&!v8&&!Wv&&"draggable"in document.createElement("div"),Xv=function(){if(!!gc){if(Fo)return!1;var e=document.createElement("x");return e.style.cssText="pointer-events:auto",e.style.pointerEvents==="auto"}}(),Qv=function(t,n){var o=Ve(t),i=parseInt(o.width)-parseInt(o.paddingLeft)-parseInt(o.paddingRight)-parseInt(o.borderLeftWidth)-parseInt(o.borderRightWidth),r=zr(t,0,n),s=zr(t,1,n),a=r&&Ve(r),l=s&&Ve(s),u=a&&parseInt(a.marginLeft)+parseInt(a.marginRight)+$t(r).width,d=l&&parseInt(l.marginLeft)+parseInt(l.marginRight)+$t(s).width;if(o.display==="flex")return o.flexDirection==="column"||o.flexDirection==="column-reverse"?"vertical":"horizontal";if(o.display==="grid")return o.gridTemplateColumns.split(" ").length<=1?"vertical":"horizontal";if(r&&a.float&&a.float!=="none"){var m=a.float==="left"?"left":"right";return s&&(l.clear==="both"||l.clear===m)?"vertical":"horizontal"}return r&&(a.display==="block"||a.display==="flex"||a.display==="table"||a.display==="grid"||u>=i&&o[tp]==="none"||s&&o[tp]==="none"&&u+d>i)?"vertical":"horizontal"},E8=function(t,n,o){var i=o?t.left:t.top,r=o?t.right:t.bottom,s=o?t.width:t.height,a=o?n.left:n.top,l=o?n.right:n.bottom,u=o?n.width:n.height;return i===a||r===l||i+s/2===a+u/2},A8=function(t,n){var o;return Dl.some(function(i){var r=i[on].options.emptyInsertThreshold;if(!(!r||zf(i))){var s=$t(i),a=t>=s.left-r&&t<=s.right+r,l=n>=s.top-r&&n<=s.bottom+r;if(a&&l)return o=i}}),o},e_=function(t){function n(r,s){return function(a,l,u,d){var m=a.options.group.name&&l.options.group.name&&a.options.group.name===l.options.group.name;if(r==null&&(s||m))return!0;if(r==null||r===!1)return!1;if(s&&r==="clone")return r;if(typeof r=="function")return n(r(a,l,u,d),s)(a,l,u,d);var f=(s?a:l).options.group.name;return r===!0||typeof r=="string"&&r===f||r.join&&r.indexOf(f)>-1}}var o={},i=t.group;(!i||cl(i)!="object")&&(i={name:i}),o.name=i.name,o.checkPull=n(i.pull,!0),o.checkPut=n(i.put),o.revertClone=i.revertClone,t.group=o},t_=function(){!Xv&&ot&&Ve(ot,"display","none")},n_=function(){!Xv&&ot&&Ve(ot,"display","")};gc&&document.addEventListener("click",function(e){if(Pl)return e.preventDefault(),e.stopPropagation&&e.stopPropagation(),e.stopImmediatePropagation&&e.stopImmediatePropagation(),Pl=!1,!1},!0);var pi=function(t){if(ze){t=t.touches?t.touches[0]:t;var n=A8(t.clientX,t.clientY);if(n){var o={};for(var i in t)t.hasOwnProperty(i)&&(o[i]=t[i]);o.target=o.rootEl=n,o.preventDefault=void 0,o.stopPropagation=void 0,n[on]._onDragOver(o)}}},O8=function(t){ze&&ze.parentNode[on]._isOutsideThisEl(t.target)};function Xe(e,t){if(!(e&&e.nodeType&&e.nodeType===1))throw"Sortable: `el` must be an HTMLElement, not ".concat({}.toString.call(e));this.el=e,this.options=t=Wn({},t),e[on]=this;var n={group:null,sort:!0,disabled:!1,store:null,handle:null,draggable:/^[uo]l$/i.test(e.nodeName)?">li":">*",swapThreshold:1,invertSwap:!1,invertedSwapThreshold:null,removeCloneOnHide:!0,direction:function(){return Qv(e,this.options)},ghostClass:"sortable-ghost",chosenClass:"sortable-chosen",dragClass:"sortable-drag",ignore:"a, img",filter:null,preventOnFilter:!0,animation:0,easing:null,setData:function(s,a){s.setData("Text",a.textContent)},dropBubble:!1,dragoverBubble:!1,dataIdAttr:"data-id",delay:0,delayOnTouchOnly:!1,touchStartThreshold:(Number.parseInt?Number:window).parseInt(window.devicePixelRatio,10)||1,forceFallback:!1,fallbackClass:"sortable-fallback",fallbackOnBody:!1,fallbackTolerance:0,fallbackOffset:{x:0,y:0},supportPointer:Xe.supportPointer!==!1&&"PointerEvent"in window&&!vs,emptyInsertThreshold:5};Ws.initializePlugins(this,e,n);for(var o in n)!(o in t)&&(t[o]=n[o]);e_(t);for(var i in this)i.charAt(0)==="_"&&typeof this[i]=="function"&&(this[i]=this[i].bind(this));this.nativeDraggable=t.forceFallback?!1:$8,this.nativeDraggable&&(this.options.touchStartThreshold=1),t.supportPointer?lt(e,"pointerdown",this._onTapStart):(lt(e,"mousedown",this._onTapStart),lt(e,"touchstart",this._onTapStart)),this.nativeDraggable&&(lt(e,"dragover",this),lt(e,"dragenter",this)),Dl.push(this.el),t.store&&t.store.get&&this.sort(t.store.get(this)||[]),Wn(this,k8())}Xe.prototype={constructor:Xe,_isOutsideThisEl:function(t){!this.el.contains(t)&&t!==this.el&&(Ki=null)},_getDirection:function(t,n){return typeof this.options.direction=="function"?this.options.direction.call(this,t,n,ze):this.options.direction},_onTapStart:function(t){if(!!t.cancelable){var n=this,o=this.el,i=this.options,r=i.preventOnFilter,s=t.type,a=t.touches&&t.touches[0]||t.pointerType&&t.pointerType==="touch"&&t,l=(a||t).target,u=t.target.shadowRoot&&(t.path&&t.path[0]||t.composedPath&&t.composedPath()[0])||l,d=i.filter;if(R8(o),!ze&&!(/mousedown|pointerdown/.test(s)&&t.button!==0||i.disabled)&&!u.isContentEditable&&!(!this.nativeDraggable&&vs&&l&&l.tagName.toUpperCase()==="SELECT")&&(l=to(l,i.draggable,o,!1),!(l&&l.animated)&&ul!==l)){if(rr=Lt(l),ys=Lt(l,i.draggable),typeof d=="function"){if(d.call(this,t,l,this)){dn({sortable:n,rootEl:u,name:"filter",targetEl:l,toEl:o,fromEl:o}),vn("filter",n,{evt:t}),r&&t.cancelable&&t.preventDefault();return}}else if(d&&(d=d.split(",").some(function(m){if(m=to(u,m.trim(),o,!1),m)return dn({sortable:n,rootEl:m,name:"filter",targetEl:l,fromEl:o,toEl:o}),vn("filter",n,{evt:t}),!0}),d)){r&&t.cancelable&&t.preventDefault();return}i.handle&&!to(u,i.handle,o,!1)||this._prepareDragStart(t,a,l)}}},_prepareDragStart:function(t,n,o){var i=this,r=i.el,s=i.options,a=r.ownerDocument,l;if(o&&!ze&&o.parentNode===r){var u=$t(o);if(St=r,ze=o,Dt=ze.parentNode,_i=ze.nextSibling,ul=o,ga=s.group,Xe.dragged=ze,hi={target:ze,clientX:(n||t).clientX,clientY:(n||t).clientY},Qh=hi.clientX-u.left,ep=hi.clientY-u.top,this._lastX=(n||t).clientX,this._lastY=(n||t).clientY,ze.style["will-change"]="all",l=function(){if(vn("delayEnded",i,{evt:t}),Xe.eventCanceled){i._onDrop();return}i._disableDelayedDragEvents(),!Kh&&i.nativeDraggable&&(ze.draggable=!0),i._triggerDragStart(t,n),dn({sortable:i,name:"choose",originalEvent:t}),Et(ze,s.chosenClass,!0)},s.ignore.split(",").forEach(function(d){Yv(ze,d.trim(),au)}),lt(a,"dragover",pi),lt(a,"mousemove",pi),lt(a,"touchmove",pi),lt(a,"mouseup",i._onDrop),lt(a,"touchend",i._onDrop),lt(a,"touchcancel",i._onDrop),Kh&&this.nativeDraggable&&(this.options.touchStartThreshold=4,ze.draggable=!0),vn("delayStart",this,{evt:t}),s.delay&&(!s.delayOnTouchOnly||n)&&(!this.nativeDraggable||!(Gs||Fo))){if(Xe.eventCanceled){this._onDrop();return}lt(a,"mouseup",i._disableDelayedDrag),lt(a,"touchend",i._disableDelayedDrag),lt(a,"touchcancel",i._disableDelayedDrag),lt(a,"mousemove",i._delayedDragTouchMoveHandler),lt(a,"touchmove",i._delayedDragTouchMoveHandler),s.supportPointer&<(a,"pointermove",i._delayedDragTouchMoveHandler),i._dragStartTimer=setTimeout(l,s.delay)}else l()}},_delayedDragTouchMoveHandler:function(t){var n=t.touches?t.touches[0]:t;Math.max(Math.abs(n.clientX-this._lastX),Math.abs(n.clientY-this._lastY))>=Math.floor(this.options.touchStartThreshold/(this.nativeDraggable&&window.devicePixelRatio||1))&&this._disableDelayedDrag()},_disableDelayedDrag:function(){ze&&au(ze),clearTimeout(this._dragStartTimer),this._disableDelayedDragEvents()},_disableDelayedDragEvents:function(){var t=this.el.ownerDocument;rt(t,"mouseup",this._disableDelayedDrag),rt(t,"touchend",this._disableDelayedDrag),rt(t,"touchcancel",this._disableDelayedDrag),rt(t,"mousemove",this._delayedDragTouchMoveHandler),rt(t,"touchmove",this._delayedDragTouchMoveHandler),rt(t,"pointermove",this._delayedDragTouchMoveHandler)},_triggerDragStart:function(t,n){n=n||t.pointerType=="touch"&&t,!this.nativeDraggable||n?this.options.supportPointer?lt(document,"pointermove",this._onTouchMove):n?lt(document,"touchmove",this._onTouchMove):lt(document,"mousemove",this._onTouchMove):(lt(ze,"dragend",this),lt(St,"dragstart",this._onDragStart));try{document.selection?fl(function(){document.selection.empty()}):window.getSelection().removeAllRanges()}catch{}},_dragStarted:function(t,n){if(nr=!1,St&&ze){vn("dragStarted",this,{evt:n}),this.nativeDraggable&<(document,"dragover",O8);var o=this.options;!t&&Et(ze,o.dragClass,!1),Et(ze,o.ghostClass,!0),Xe.active=this,t&&this._appendGhost(),dn({sortable:this,name:"start",originalEvent:n})}else this._nulling()},_emulateDragOver:function(){if(Jn){this._lastX=Jn.clientX,this._lastY=Jn.clientY,t_();for(var t=document.elementFromPoint(Jn.clientX,Jn.clientY),n=t;t&&t.shadowRoot&&(t=t.shadowRoot.elementFromPoint(Jn.clientX,Jn.clientY),t!==n);)n=t;if(ze.parentNode[on]._isOutsideThisEl(t),n)do{if(n[on]){var o=void 0;if(o=n[on]._onDragOver({clientX:Jn.clientX,clientY:Jn.clientY,target:t,rootEl:n}),o&&!this.options.dragoverBubble)break}t=n}while(n=n.parentNode);n_()}},_onTouchMove:function(t){if(hi){var n=this.options,o=n.fallbackTolerance,i=n.fallbackOffset,r=t.touches?t.touches[0]:t,s=ot&&$i(ot,!0),a=ot&&s&&s.a,l=ot&&s&&s.d,u=_a&&nn&&Jh(nn),d=(r.clientX-hi.clientX+i.x)/(a||1)+(u?u[0]-su[0]:0)/(a||1),m=(r.clientY-hi.clientY+i.y)/(l||1)+(u?u[1]-su[1]:0)/(l||1);if(!Xe.active&&!nr){if(o&&Math.max(Math.abs(r.clientX-this._lastX),Math.abs(r.clientY-this._lastY))=0&&(dn({rootEl:Dt,name:"add",toEl:Dt,fromEl:St,originalEvent:t}),dn({sortable:this,name:"remove",toEl:Dt,originalEvent:t}),dn({rootEl:Dt,name:"sort",toEl:Dt,fromEl:St,originalEvent:t}),dn({sortable:this,name:"sort",toEl:Dt,originalEvent:t})),Xt&&Xt.save()):On!==rr&&On>=0&&(dn({sortable:this,name:"update",toEl:Dt,originalEvent:t}),dn({sortable:this,name:"sort",toEl:Dt,originalEvent:t})),Xe.active&&((On==null||On===-1)&&(On=rr,Ko=ys),dn({sortable:this,name:"end",toEl:Dt,originalEvent:t}),this.save()))),this._nulling()},_nulling:function(){vn("nulling",this),St=ze=Dt=ot=_i=Ft=ul=Zo=hi=Jn=ts=On=Ko=rr=ys=Ki=ws=Xt=ga=Xe.dragged=Xe.ghost=Xe.clone=Xe.active=null,Fl.forEach(function(t){t.checked=!0}),Fl.length=iu=ru=0},handleEvent:function(t){switch(t.type){case"drop":case"dragend":this._onDrop(t);break;case"dragenter":case"dragover":ze&&(this._onDragOver(t),T8(t));break;case"selectstart":t.preventDefault();break}},toArray:function(){for(var t=[],n,o=this.el.children,i=0,r=o.length,s=this.options;io.right+i||e.clientX<=o.right&&e.clientY>o.bottom&&e.clientX>=o.left:e.clientX>o.right&&e.clientY>o.top||e.clientX<=o.right&&e.clientY>o.bottom+i}function I8(e,t,n,o,i,r,s,a){var l=o?e.clientY:e.clientX,u=o?n.height:n.width,d=o?n.top:n.left,m=o?n.bottom:n.right,f=!1;if(!s){if(a&&dld+u*r/2:lm-dl)return-ws}else if(l>d+u*(1-i)/2&&lm-u*r/2)?l>d+u/2?1:-1:0}function M8(e){return Lt(ze)1&&(nt.forEach(function(a){r.addAnimationState({target:a,rect:_n?$t(a):s}),nu(a),a.fromRect=s,o.removeAnimationState(a)}),_n=!1,U8(!this.options.removeCloneOnHide,i))},dragOverCompleted:function(n){var o=n.sortable,i=n.isOwner,r=n.insertion,s=n.activeSortable,a=n.parentEl,l=n.putSortable,u=this.options;if(r){if(i&&s._hideClone(),Ur=!1,u.animation&&nt.length>1&&(_n||!i&&!s.options.sort&&!l)){var d=$t(kt,!1,!0,!0);nt.forEach(function(f){f!==kt&&(Xh(f,d),a.appendChild(f))}),_n=!0}if(!i)if(_n||xa(),nt.length>1){var m=wa;s._showClone(o),s.options.animation&&!wa&&m&&An.forEach(function(f){s.addAnimationState({target:f,rect:Hr}),f.fromRect=Hr,f.thisAnimationDuration=null})}else s._showClone(o)}},dragOverAnimationCapture:function(n){var o=n.dragRect,i=n.isOwner,r=n.activeSortable;if(nt.forEach(function(a){a.thisAnimationDuration=null}),r.options.animation&&!i&&r.multiDrag.isMultiDrag){Hr=Wn({},o);var s=$i(kt,!0);Hr.top-=s.f,Hr.left-=s.e}},dragOverAnimationComplete:function(){_n&&(_n=!1,xa())},drop:function(n){var o=n.originalEvent,i=n.rootEl,r=n.parentEl,s=n.sortable,a=n.dispatchSortableEvent,l=n.oldIndex,u=n.putSortable,d=u||this.sortable;if(!!o){var m=this.options,f=r.children;if(!Yi)if(m.multiDragKey&&!this.multiDragKeyDown&&this._deselectMultiDrag(),Et(kt,m.selectedClass,!~nt.indexOf(kt)),~nt.indexOf(kt))nt.splice(nt.indexOf(kt),1),Br=null,es({sortable:s,rootEl:i,name:"deselect",targetEl:kt,originalEvt:o});else{if(nt.push(kt),es({sortable:s,rootEl:i,name:"select",targetEl:kt,originalEvt:o}),o.shiftKey&&Br&&s.el.contains(Br)){var h=Lt(Br),p=Lt(kt);if(~h&&~p&&h!==p){var b,g;for(p>h?(g=h,b=p):(g=p,b=h+1);g1){var y=$t(kt),w=Lt(kt,":not(."+this.options.selectedClass+")");if(!Ur&&m.animation&&(kt.thisAnimationDuration=null),d.captureAnimationState(),!Ur&&(m.animation&&(kt.fromRect=y,nt.forEach(function(k){if(k.thisAnimationDuration=null,k!==kt){var $=_n?$t(k):y;k.fromRect=$,d.addAnimationState({target:k,rect:$})}})),xa(),nt.forEach(function(k){f[w]?r.insertBefore(k,f[w]):r.appendChild(k),w++}),l===Lt(kt))){var C=!1;nt.forEach(function(k){if(k.sortableIndex!==Lt(k)){C=!0;return}}),C&&a("update")}nt.forEach(function(k){nu(k)}),d.animateAll()}Xn=d}(i===r||u&&u.lastPutMode!=="clone")&&An.forEach(function(k){k.parentNode&&k.parentNode.removeChild(k)})}},nullingGlobal:function(){this.isMultiDrag=Yi=!1,An.length=0},destroyGlobal:function(){this._deselectMultiDrag(),rt(document,"pointerup",this._deselectMultiDrag),rt(document,"mouseup",this._deselectMultiDrag),rt(document,"touchend",this._deselectMultiDrag),rt(document,"keydown",this._checkKeyDown),rt(document,"keyup",this._checkKeyUp)},_deselectMultiDrag:function(n){if(!(typeof Yi!="undefined"&&Yi)&&Xn===this.sortable&&!(n&&to(n.target,this.options.draggable,this.sortable.el,!1))&&!(n&&n.button!==0))for(;nt.length;){var o=nt[0];Et(o,this.options.selectedClass,!1),nt.shift(),es({sortable:this.sortable,rootEl:this.sortable.el,name:"deselect",targetEl:o,originalEvt:n})}},_checkKeyDown:function(n){n.key===this.options.multiDragKey&&(this.multiDragKeyDown=!0)},_checkKeyUp:function(n){n.key===this.options.multiDragKey&&(this.multiDragKeyDown=!1)}},Wn(e,{pluginName:"multiDrag",utils:{select:function(n){var o=n.parentNode[on];!o||!o.options.multiDrag||~nt.indexOf(n)||(Xn&&Xn!==o&&(Xn.multiDrag._deselectMultiDrag(),Xn=o),Et(n,o.options.selectedClass,!0),nt.push(n))},deselect:function(n){var o=n.parentNode[on],i=nt.indexOf(n);!o||!o.options.multiDrag||!~i||(Et(n,o.options.selectedClass,!1),nt.splice(i,1))}},eventProperties:function(){var n=this,o=[],i=[];return nt.forEach(function(r){o.push({multiDragElement:r,index:r.sortableIndex});var s;_n&&r!==kt?s=-1:_n?s=Lt(r,":not(."+n.options.selectedClass+")"):s=Lt(r),i.push({multiDragElement:r,index:s})}),{items:f8(nt),clones:[].concat(An),oldIndicies:o,newIndicies:i}},optionListeners:{multiDragKey:function(n){return n=n.toLowerCase(),n==="ctrl"?n="Control":n.length>1&&(n=n.charAt(0).toUpperCase()+n.substr(1)),n}}})}function U8(e,t){nt.forEach(function(n,o){var i=t.children[n.sortableIndex+(e?Number(o):0)];i?t.insertBefore(n,i):t.appendChild(n)})}function op(e,t){An.forEach(function(n,o){var i=t.children[n.sortableIndex+(e?Number(o):0)];i?t.insertBefore(n,i):t.appendChild(n)})}function xa(){nt.forEach(function(e){e!==kt&&e.parentNode&&e.parentNode.removeChild(e)})}Xe.mount(new N8);Xe.mount(Ef,$f);var H8=Object.freeze(Object.defineProperty({__proto__:null,default:Xe,MultiDrag:B8,Sortable:Xe,Swap:j8},Symbol.toStringTag,{value:"Module"})),q8=Sv(H8);(function(e,t){(function(o,i){e.exports=i(Cf,q8)})(typeof self!="undefined"?self:an,function(n,o){return function(i){var r={};function s(a){if(r[a])return r[a].exports;var l=r[a]={i:a,l:!1,exports:{}};return i[a].call(l.exports,l,l.exports,s),l.l=!0,l.exports}return s.m=i,s.c=r,s.d=function(a,l,u){s.o(a,l)||Object.defineProperty(a,l,{enumerable:!0,get:u})},s.r=function(a){typeof Symbol!="undefined"&&Symbol.toStringTag&&Object.defineProperty(a,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(a,"__esModule",{value:!0})},s.t=function(a,l){if(l&1&&(a=s(a)),l&8||l&4&&typeof a=="object"&&a&&a.__esModule)return a;var u=Object.create(null);if(s.r(u),Object.defineProperty(u,"default",{enumerable:!0,value:a}),l&2&&typeof a!="string")for(var d in a)s.d(u,d,function(m){return a[m]}.bind(null,d));return u},s.n=function(a){var l=a&&a.__esModule?function(){return a.default}:function(){return a};return s.d(l,"a",l),l},s.o=function(a,l){return Object.prototype.hasOwnProperty.call(a,l)},s.p="",s(s.s="fb15")}({"00ee":function(i,r,s){var a=s("b622"),l=a("toStringTag"),u={};u[l]="z",i.exports=String(u)==="[object z]"},"0366":function(i,r,s){var a=s("1c0b");i.exports=function(l,u,d){if(a(l),u===void 0)return l;switch(d){case 0:return function(){return l.call(u)};case 1:return function(m){return l.call(u,m)};case 2:return function(m,f){return l.call(u,m,f)};case 3:return function(m,f,h){return l.call(u,m,f,h)}}return function(){return l.apply(u,arguments)}}},"057f":function(i,r,s){var a=s("fc6a"),l=s("241c").f,u={}.toString,d=typeof window=="object"&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],m=function(f){try{return l(f)}catch{return d.slice()}};i.exports.f=function(h){return d&&u.call(h)=="[object Window]"?m(h):l(a(h))}},"06cf":function(i,r,s){var a=s("83ab"),l=s("d1e7"),u=s("5c6c"),d=s("fc6a"),m=s("c04e"),f=s("5135"),h=s("0cfb"),p=Object.getOwnPropertyDescriptor;r.f=a?p:function(g,y){if(g=d(g),y=m(y,!0),h)try{return p(g,y)}catch{}if(f(g,y))return u(!l.f.call(g,y),g[y])}},"0cfb":function(i,r,s){var a=s("83ab"),l=s("d039"),u=s("cc12");i.exports=!a&&!l(function(){return Object.defineProperty(u("div"),"a",{get:function(){return 7}}).a!=7})},"13d5":function(i,r,s){var a=s("23e7"),l=s("d58f").left,u=s("a640"),d=s("ae40"),m=u("reduce"),f=d("reduce",{1:0});a({target:"Array",proto:!0,forced:!m||!f},{reduce:function(p){return l(this,p,arguments.length,arguments.length>1?arguments[1]:void 0)}})},"14c3":function(i,r,s){var a=s("c6b6"),l=s("9263");i.exports=function(u,d){var m=u.exec;if(typeof m=="function"){var f=m.call(u,d);if(typeof f!="object")throw TypeError("RegExp exec method returned something other than an Object or null");return f}if(a(u)!=="RegExp")throw TypeError("RegExp#exec called on incompatible receiver");return l.call(u,d)}},"159b":function(i,r,s){var a=s("da84"),l=s("fdbc"),u=s("17c2"),d=s("9112");for(var m in l){var f=a[m],h=f&&f.prototype;if(h&&h.forEach!==u)try{d(h,"forEach",u)}catch{h.forEach=u}}},"17c2":function(i,r,s){var a=s("b727").forEach,l=s("a640"),u=s("ae40"),d=l("forEach"),m=u("forEach");i.exports=!d||!m?function(h){return a(this,h,arguments.length>1?arguments[1]:void 0)}:[].forEach},"1be4":function(i,r,s){var a=s("d066");i.exports=a("document","documentElement")},"1c0b":function(i,r){i.exports=function(s){if(typeof s!="function")throw TypeError(String(s)+" is not a function");return s}},"1c7e":function(i,r,s){var a=s("b622"),l=a("iterator"),u=!1;try{var d=0,m={next:function(){return{done:!!d++}},return:function(){u=!0}};m[l]=function(){return this},Array.from(m,function(){throw 2})}catch{}i.exports=function(f,h){if(!h&&!u)return!1;var p=!1;try{var b={};b[l]=function(){return{next:function(){return{done:p=!0}}}},f(b)}catch{}return p}},"1d80":function(i,r){i.exports=function(s){if(s==null)throw TypeError("Can't call method on "+s);return s}},"1dde":function(i,r,s){var a=s("d039"),l=s("b622"),u=s("2d00"),d=l("species");i.exports=function(m){return u>=51||!a(function(){var f=[],h=f.constructor={};return h[d]=function(){return{foo:1}},f[m](Boolean).foo!==1})}},"23cb":function(i,r,s){var a=s("a691"),l=Math.max,u=Math.min;i.exports=function(d,m){var f=a(d);return f<0?l(f+m,0):u(f,m)}},"23e7":function(i,r,s){var a=s("da84"),l=s("06cf").f,u=s("9112"),d=s("6eeb"),m=s("ce4e"),f=s("e893"),h=s("94ca");i.exports=function(p,b){var g=p.target,y=p.global,w=p.stat,C,k,$,O,j,F;if(y?k=a:w?k=a[g]||m(g,{}):k=(a[g]||{}).prototype,k)for($ in b){if(j=b[$],p.noTargetGet?(F=l(k,$),O=F&&F.value):O=k[$],C=h(y?$:g+(w?".":"#")+$,p.forced),!C&&O!==void 0){if(typeof j==typeof O)continue;f(j,O)}(p.sham||O&&O.sham)&&u(j,"sham",!0),d(k,$,j,p)}}},"241c":function(i,r,s){var a=s("ca84"),l=s("7839"),u=l.concat("length","prototype");r.f=Object.getOwnPropertyNames||function(m){return a(m,u)}},"25f0":function(i,r,s){var a=s("6eeb"),l=s("825a"),u=s("d039"),d=s("ad6d"),m="toString",f=RegExp.prototype,h=f[m],p=u(function(){return h.call({source:"a",flags:"b"})!="/a/b"}),b=h.name!=m;(p||b)&&a(RegExp.prototype,m,function(){var y=l(this),w=String(y.source),C=y.flags,k=String(C===void 0&&y instanceof RegExp&&!("flags"in f)?d.call(y):C);return"/"+w+"/"+k},{unsafe:!0})},"2ca0":function(i,r,s){var a=s("23e7"),l=s("06cf").f,u=s("50c4"),d=s("5a34"),m=s("1d80"),f=s("ab13"),h=s("c430"),p="".startsWith,b=Math.min,g=f("startsWith"),y=!h&&!g&&!!function(){var w=l(String.prototype,"startsWith");return w&&!w.writable}();a({target:"String",proto:!0,forced:!y&&!g},{startsWith:function(C){var k=String(m(this));d(C);var $=u(b(arguments.length>1?arguments[1]:void 0,k.length)),O=String(C);return p?p.call(k,O,$):k.slice($,$+O.length)===O}})},"2d00":function(i,r,s){var a=s("da84"),l=s("342f"),u=a.process,d=u&&u.versions,m=d&&d.v8,f,h;m?(f=m.split("."),h=f[0]+f[1]):l&&(f=l.match(/Edge\/(\d+)/),(!f||f[1]>=74)&&(f=l.match(/Chrome\/(\d+)/),f&&(h=f[1]))),i.exports=h&&+h},"342f":function(i,r,s){var a=s("d066");i.exports=a("navigator","userAgent")||""},"35a1":function(i,r,s){var a=s("f5df"),l=s("3f8c"),u=s("b622"),d=u("iterator");i.exports=function(m){if(m!=null)return m[d]||m["@@iterator"]||l[a(m)]}},"37e8":function(i,r,s){var a=s("83ab"),l=s("9bf2"),u=s("825a"),d=s("df75");i.exports=a?Object.defineProperties:function(f,h){u(f);for(var p=d(h),b=p.length,g=0,y;b>g;)l.f(f,y=p[g++],h[y]);return f}},"3bbe":function(i,r,s){var a=s("861d");i.exports=function(l){if(!a(l)&&l!==null)throw TypeError("Can't set "+String(l)+" as a prototype");return l}},"3ca3":function(i,r,s){var a=s("6547").charAt,l=s("69f3"),u=s("7dd0"),d="String Iterator",m=l.set,f=l.getterFor(d);u(String,"String",function(h){m(this,{type:d,string:String(h),index:0})},function(){var p=f(this),b=p.string,g=p.index,y;return g>=b.length?{value:void 0,done:!0}:(y=a(b,g),p.index+=y.length,{value:y,done:!1})})},"3f8c":function(i,r){i.exports={}},"4160":function(i,r,s){var a=s("23e7"),l=s("17c2");a({target:"Array",proto:!0,forced:[].forEach!=l},{forEach:l})},"428f":function(i,r,s){var a=s("da84");i.exports=a},"44ad":function(i,r,s){var a=s("d039"),l=s("c6b6"),u="".split;i.exports=a(function(){return!Object("z").propertyIsEnumerable(0)})?function(d){return l(d)=="String"?u.call(d,""):Object(d)}:Object},"44d2":function(i,r,s){var a=s("b622"),l=s("7c73"),u=s("9bf2"),d=a("unscopables"),m=Array.prototype;m[d]==null&&u.f(m,d,{configurable:!0,value:l(null)}),i.exports=function(f){m[d][f]=!0}},"44e7":function(i,r,s){var a=s("861d"),l=s("c6b6"),u=s("b622"),d=u("match");i.exports=function(m){var f;return a(m)&&((f=m[d])!==void 0?!!f:l(m)=="RegExp")}},"4930":function(i,r,s){var a=s("d039");i.exports=!!Object.getOwnPropertySymbols&&!a(function(){return!String(Symbol())})},"4d64":function(i,r,s){var a=s("fc6a"),l=s("50c4"),u=s("23cb"),d=function(m){return function(f,h,p){var b=a(f),g=l(b.length),y=u(p,g),w;if(m&&h!=h){for(;g>y;)if(w=b[y++],w!=w)return!0}else for(;g>y;y++)if((m||y in b)&&b[y]===h)return m||y||0;return!m&&-1}};i.exports={includes:d(!0),indexOf:d(!1)}},"4de4":function(i,r,s){var a=s("23e7"),l=s("b727").filter,u=s("1dde"),d=s("ae40"),m=u("filter"),f=d("filter");a({target:"Array",proto:!0,forced:!m||!f},{filter:function(p){return l(this,p,arguments.length>1?arguments[1]:void 0)}})},"4df4":function(i,r,s){var a=s("0366"),l=s("7b0b"),u=s("9bdd"),d=s("e95a"),m=s("50c4"),f=s("8418"),h=s("35a1");i.exports=function(b){var g=l(b),y=typeof this=="function"?this:Array,w=arguments.length,C=w>1?arguments[1]:void 0,k=C!==void 0,$=h(g),O=0,j,F,A,M,G,R;if(k&&(C=a(C,w>2?arguments[2]:void 0,2)),$!=null&&!(y==Array&&d($)))for(M=$.call(g),G=M.next,F=new y;!(A=G.call(M)).done;O++)R=k?u(M,C,[A.value,O],!0):A.value,f(F,O,R);else for(j=m(g.length),F=new y(j);j>O;O++)R=k?C(g[O],O):g[O],f(F,O,R);return F.length=O,F}},"4fad":function(i,r,s){var a=s("23e7"),l=s("6f53").entries;a({target:"Object",stat:!0},{entries:function(d){return l(d)}})},"50c4":function(i,r,s){var a=s("a691"),l=Math.min;i.exports=function(u){return u>0?l(a(u),9007199254740991):0}},"5135":function(i,r){var s={}.hasOwnProperty;i.exports=function(a,l){return s.call(a,l)}},"5319":function(i,r,s){var a=s("d784"),l=s("825a"),u=s("7b0b"),d=s("50c4"),m=s("a691"),f=s("1d80"),h=s("8aa5"),p=s("14c3"),b=Math.max,g=Math.min,y=Math.floor,w=/\$([$&'`]|\d\d?|<[^>]*>)/g,C=/\$([$&'`]|\d\d?)/g,k=function($){return $===void 0?$:String($)};a("replace",2,function($,O,j,F){var A=F.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE,M=F.REPLACE_KEEPS_$0,G=A?"$":"$0";return[function(B,re){var X=f(this),ce=B==null?void 0:B[$];return ce!==void 0?ce.call(B,X,re):O.call(String(X),B,re)},function(q,B){if(!A&&M||typeof B=="string"&&B.indexOf(G)===-1){var re=j(O,q,this,B);if(re.done)return re.value}var X=l(q),ce=String(this),ge=typeof B=="function";ge||(B=String(B));var Le=X.global;if(Le){var Be=X.unicode;X.lastIndex=0}for(var pe=[];;){var J=p(X,ce);if(J===null||(pe.push(J),!Le))break;var fe=String(J[0]);fe===""&&(X.lastIndex=h(ce,d(X.lastIndex),Be))}for(var we="",U=0,se=0;se=U&&(we+=ce.slice(U,ye)+E,U=ye+ie.length)}return we+ce.slice(U)}];function R(q,B,re,X,ce,ge){var Le=re+q.length,Be=X.length,pe=C;return ce!==void 0&&(ce=u(ce),pe=w),O.call(ge,pe,function(J,fe){var we;switch(fe.charAt(0)){case"$":return"$";case"&":return q;case"`":return B.slice(0,re);case"'":return B.slice(Le);case"<":we=ce[fe.slice(1,-1)];break;default:var U=+fe;if(U===0)return J;if(U>Be){var se=y(U/10);return se===0?J:se<=Be?X[se-1]===void 0?fe.charAt(1):X[se-1]+fe.charAt(1):J}we=X[U-1]}return we===void 0?"":we})}})},"5692":function(i,r,s){var a=s("c430"),l=s("c6cd");(i.exports=function(u,d){return l[u]||(l[u]=d!==void 0?d:{})})("versions",[]).push({version:"3.6.5",mode:a?"pure":"global",copyright:"\xA9 2020 Denis Pushkarev (zloirock.ru)"})},"56ef":function(i,r,s){var a=s("d066"),l=s("241c"),u=s("7418"),d=s("825a");i.exports=a("Reflect","ownKeys")||function(f){var h=l.f(d(f)),p=u.f;return p?h.concat(p(f)):h}},"5a34":function(i,r,s){var a=s("44e7");i.exports=function(l){if(a(l))throw TypeError("The method doesn't accept regular expressions");return l}},"5c6c":function(i,r){i.exports=function(s,a){return{enumerable:!(s&1),configurable:!(s&2),writable:!(s&4),value:a}}},"5db7":function(i,r,s){var a=s("23e7"),l=s("a2bf"),u=s("7b0b"),d=s("50c4"),m=s("1c0b"),f=s("65f0");a({target:"Array",proto:!0},{flatMap:function(p){var b=u(this),g=d(b.length),y;return m(p),y=f(b,0),y.length=l(y,b,b,g,0,1,p,arguments.length>1?arguments[1]:void 0),y}})},"6547":function(i,r,s){var a=s("a691"),l=s("1d80"),u=function(d){return function(m,f){var h=String(l(m)),p=a(f),b=h.length,g,y;return p<0||p>=b?d?"":void 0:(g=h.charCodeAt(p),g<55296||g>56319||p+1===b||(y=h.charCodeAt(p+1))<56320||y>57343?d?h.charAt(p):g:d?h.slice(p,p+2):(g-55296<<10)+(y-56320)+65536)}};i.exports={codeAt:u(!1),charAt:u(!0)}},"65f0":function(i,r,s){var a=s("861d"),l=s("e8b5"),u=s("b622"),d=u("species");i.exports=function(m,f){var h;return l(m)&&(h=m.constructor,typeof h=="function"&&(h===Array||l(h.prototype))?h=void 0:a(h)&&(h=h[d],h===null&&(h=void 0))),new(h===void 0?Array:h)(f===0?0:f)}},"69f3":function(i,r,s){var a=s("7f9a"),l=s("da84"),u=s("861d"),d=s("9112"),m=s("5135"),f=s("f772"),h=s("d012"),p=l.WeakMap,b,g,y,w=function(A){return y(A)?g(A):b(A,{})},C=function(A){return function(M){var G;if(!u(M)||(G=g(M)).type!==A)throw TypeError("Incompatible receiver, "+A+" required");return G}};if(a){var k=new p,$=k.get,O=k.has,j=k.set;b=function(A,M){return j.call(k,A,M),M},g=function(A){return $.call(k,A)||{}},y=function(A){return O.call(k,A)}}else{var F=f("state");h[F]=!0,b=function(A,M){return d(A,F,M),M},g=function(A){return m(A,F)?A[F]:{}},y=function(A){return m(A,F)}}i.exports={set:b,get:g,has:y,enforce:w,getterFor:C}},"6eeb":function(i,r,s){var a=s("da84"),l=s("9112"),u=s("5135"),d=s("ce4e"),m=s("8925"),f=s("69f3"),h=f.get,p=f.enforce,b=String(String).split("String");(i.exports=function(g,y,w,C){var k=C?!!C.unsafe:!1,$=C?!!C.enumerable:!1,O=C?!!C.noTargetGet:!1;if(typeof w=="function"&&(typeof y=="string"&&!u(w,"name")&&l(w,"name",y),p(w).source=b.join(typeof y=="string"?y:"")),g===a){$?g[y]=w:d(y,w);return}else k?!O&&g[y]&&($=!0):delete g[y];$?g[y]=w:l(g,y,w)})(Function.prototype,"toString",function(){return typeof this=="function"&&h(this).source||m(this)})},"6f53":function(i,r,s){var a=s("83ab"),l=s("df75"),u=s("fc6a"),d=s("d1e7").f,m=function(f){return function(h){for(var p=u(h),b=l(p),g=b.length,y=0,w=[],C;g>y;)C=b[y++],(!a||d.call(p,C))&&w.push(f?[C,p[C]]:p[C]);return w}};i.exports={entries:m(!0),values:m(!1)}},"73d9":function(i,r,s){var a=s("44d2");a("flatMap")},"7418":function(i,r){r.f=Object.getOwnPropertySymbols},"746f":function(i,r,s){var a=s("428f"),l=s("5135"),u=s("e538"),d=s("9bf2").f;i.exports=function(m){var f=a.Symbol||(a.Symbol={});l(f,m)||d(f,m,{value:u.f(m)})}},"7839":function(i,r){i.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},"7b0b":function(i,r,s){var a=s("1d80");i.exports=function(l){return Object(a(l))}},"7c73":function(i,r,s){var a=s("825a"),l=s("37e8"),u=s("7839"),d=s("d012"),m=s("1be4"),f=s("cc12"),h=s("f772"),p=">",b="<",g="prototype",y="script",w=h("IE_PROTO"),C=function(){},k=function(A){return b+y+p+A+b+"/"+y+p},$=function(A){A.write(k("")),A.close();var M=A.parentWindow.Object;return A=null,M},O=function(){var A=f("iframe"),M="java"+y+":",G;return A.style.display="none",m.appendChild(A),A.src=String(M),G=A.contentWindow.document,G.open(),G.write(k("document.F=Object")),G.close(),G.F},j,F=function(){try{j=document.domain&&new ActiveXObject("htmlfile")}catch{}F=j?$(j):O();for(var A=u.length;A--;)delete F[g][u[A]];return F()};d[w]=!0,i.exports=Object.create||function(M,G){var R;return M!==null?(C[g]=a(M),R=new C,C[g]=null,R[w]=M):R=F(),G===void 0?R:l(R,G)}},"7dd0":function(i,r,s){var a=s("23e7"),l=s("9ed3"),u=s("e163"),d=s("d2bb"),m=s("d44e"),f=s("9112"),h=s("6eeb"),p=s("b622"),b=s("c430"),g=s("3f8c"),y=s("ae93"),w=y.IteratorPrototype,C=y.BUGGY_SAFARI_ITERATORS,k=p("iterator"),$="keys",O="values",j="entries",F=function(){return this};i.exports=function(A,M,G,R,q,B,re){l(G,M,R);var X=function(se){if(se===q&&pe)return pe;if(!C&&se in Le)return Le[se];switch(se){case $:return function(){return new G(this,se)};case O:return function(){return new G(this,se)};case j:return function(){return new G(this,se)}}return function(){return new G(this)}},ce=M+" Iterator",ge=!1,Le=A.prototype,Be=Le[k]||Le["@@iterator"]||q&&Le[q],pe=!C&&Be||X(q),J=M=="Array"&&Le.entries||Be,fe,we,U;if(J&&(fe=u(J.call(new A)),w!==Object.prototype&&fe.next&&(!b&&u(fe)!==w&&(d?d(fe,w):typeof fe[k]!="function"&&f(fe,k,F)),m(fe,ce,!0,!0),b&&(g[ce]=F))),q==O&&Be&&Be.name!==O&&(ge=!0,pe=function(){return Be.call(this)}),(!b||re)&&Le[k]!==pe&&f(Le,k,pe),g[M]=pe,q)if(we={values:X(O),keys:B?pe:X($),entries:X(j)},re)for(U in we)(C||ge||!(U in Le))&&h(Le,U,we[U]);else a({target:M,proto:!0,forced:C||ge},we);return we}},"7f9a":function(i,r,s){var a=s("da84"),l=s("8925"),u=a.WeakMap;i.exports=typeof u=="function"&&/native code/.test(l(u))},"825a":function(i,r,s){var a=s("861d");i.exports=function(l){if(!a(l))throw TypeError(String(l)+" is not an object");return l}},"83ab":function(i,r,s){var a=s("d039");i.exports=!a(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!=7})},"8418":function(i,r,s){var a=s("c04e"),l=s("9bf2"),u=s("5c6c");i.exports=function(d,m,f){var h=a(m);h in d?l.f(d,h,u(0,f)):d[h]=f}},"861d":function(i,r){i.exports=function(s){return typeof s=="object"?s!==null:typeof s=="function"}},"8875":function(i,r,s){var a,l,u;(function(d,m){l=[],a=m,u=typeof a=="function"?a.apply(r,l):a,u!==void 0&&(i.exports=u)})(typeof self!="undefined"?self:this,function(){function d(){var m=Object.getOwnPropertyDescriptor(document,"currentScript");if(!m&&"currentScript"in document&&document.currentScript||m&&m.get!==d&&document.currentScript)return document.currentScript;try{throw new Error}catch(j){var f=/.*at [^(]*\((.*):(.+):(.+)\)$/ig,h=/@([^@]*):(\d+):(\d+)\s*$/ig,p=f.exec(j.stack)||h.exec(j.stack),b=p&&p[1]||!1,g=p&&p[2]||!1,y=document.location.href.replace(document.location.hash,""),w,C,k,$=document.getElementsByTagName("script");b===y&&(w=document.documentElement.outerHTML,C=new RegExp("(?:[^\\n]+?\\n){0,"+(g-2)+"}[^<]* - - - -
- - - diff --git a/htdocs/logo.svg b/htdocs/logo.svg deleted file mode 100644 index 8151f49bf3..0000000000 --- a/htdocs/logo.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/htdocs/mstile-150x150.png b/htdocs/mstile-150x150.png deleted file mode 100644 index 5fdfc08e8e..0000000000 Binary files a/htdocs/mstile-150x150.png and /dev/null differ diff --git a/htdocs/safari-pinned-tab.svg b/htdocs/safari-pinned-tab.svg deleted file mode 100644 index 57bd08bd18..0000000000 --- a/htdocs/safari-pinned-tab.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - -Created by potrace 1.11, written by Peter Selinger 2001-2013 - - - - - - diff --git a/htdocs/site.webmanifest b/htdocs/site.webmanifest deleted file mode 100644 index 203798b538..0000000000 --- a/htdocs/site.webmanifest +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "OwnTone", - "short_name": "OwnTone", - "icons": [ - { - "src": "/android-chrome-192x192.png", - "sizes": "192x192", - "type": "image/png" - }, - { - "src": "/android-chrome-512x512.png", - "sizes": "512x512", - "type": "image/png" - } - ], - "theme_color": "#ffffff", - "background_color": "#ffffff", - "display": "standalone" -} diff --git a/web-src/Makefile.am b/web-src/Makefile.am new file mode 100644 index 0000000000..d1051617fe --- /dev/null +++ b/web-src/Makefile.am @@ -0,0 +1,67 @@ +# +# Makefile for adding the web interface source files to the distribution +# +# Building a Vue.js application with Vite / npm does not support VPATH builds. +# Therefor hooking the "npm build" command into the autotools build results +# in "make distcheck" failing. +# +# This Makefile only adds the source files to the distribution tar file. +# To run the web interface build, special make targets exist in this Makefile +# (and in the root Makefile). The important ones are: +# +# - make web-build: builds the web interface (output files are in ../htdocs) +# - make web-clean: deletes files from ../htdocs that were created by the build +# - make web-dist: creates a tar file for the web interface build output +# - make web-serve: runs a local development server +# +# https://www.gnu.org/software/automake/manual/html_node/Third_002dParty-Makefiles.html +# + +EXTRA_DIST = public \ + src \ + .eslintrc.js \ + .prettierrc.json \ + index.html \ + package.json \ + package-lock.json \ + vite.config.js + +HTDOCS_DIR = ../htdocs + +web-serve: node_modules + npm run serve + +web: node_modules + npm run build + +web-update: + npm update + +web-lint: node_modules + npm run lint + +web-format: node_modules + npm run format + +web-clean: + rm -rf $(HTDOCS_DIR)/assets + rm -f $(HTDOCS_DIR)/android-chrome-192x192.png \ + $(HTDOCS_DIR)/android-chrome-512x512.png \ + $(HTDOCS_DIR)/apple-touch-icon.png \ + $(HTDOCS_DIR)/browserconfig.xml \ + $(HTDOCS_DIR)/favicon.ico \ + $(HTDOCS_DIR)/favicon-16x16.png \ + $(HTDOCS_DIR)/favicon-32x32.png \ + $(HTDOCS_DIR)/index.html \ + $(HTDOCS_DIR)/logo.svg \ + $(HTDOCS_DIR)/mstile-150x150.png \ + $(HTDOCS_DIR)/safari-pinned-tab.svg \ + $(HTDOCS_DIR)/site.webmanifest + +web-clean-all: web-clean + rm -rf node_modules + +node_modules: $(PKG_CONF) + npm clean-install + +.PHONY: web-serve web web-update web-lint web-format web-clean web-clean-all diff --git a/web-src/vite.config.js b/web-src/vite.config.js index 9411b49c28..07b07951f5 100644 --- a/web-src/vite.config.js +++ b/web-src/vite.config.js @@ -10,7 +10,7 @@ import vueI18n from '@intlify/vite-plugin-vue-i18n' // VITE_OWNTONE_URL=https://owntone.local:3689; npm run serve // // will connect the web interface with a remote OwnTone server. -const owntoneUrl = process.env.VITE_OWNTONE_URL ?? 'http://localhost:3689' +const owntoneUrl = process.env.VITE_OWNTONE_URL ? process.env.VITE_OWNTONE_URL : 'http://localhost:3689' // https://vitejs.dev/config/ export default defineConfig({