diff options
Diffstat (limited to 'apps/oauth2')
192 files changed, 3177 insertions, 1613 deletions
diff --git a/apps/oauth2/.l10nignore b/apps/oauth2/.l10nignore index 0844b0dde59..4b3060dbc2c 100644 --- a/apps/oauth2/.l10nignore +++ b/apps/oauth2/.l10nignore @@ -1,2 +1,4 @@ +# SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors +# SPDX-License-Identifier: AGPL-3.0-or-later # compiled vue templates js/ diff --git a/apps/oauth2/appinfo/info.xml b/apps/oauth2/appinfo/info.xml index 2ac01b70f57..6ab30292ab0 100644 --- a/apps/oauth2/appinfo/info.xml +++ b/apps/oauth2/appinfo/info.xml @@ -1,15 +1,18 @@ <?xml version="1.0"?> +<!-- + - SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + - SPDX-License-Identifier: AGPL-3.0-or-later +--> <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd"> <id>oauth2</id> <name>OAuth 2.0</name> <summary>Allows OAuth2 compatible authentication from other web applications.</summary> <description>The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications.</description> - <version>1.9.0</version> + <version>1.20.0</version> <licence>agpl</licence> <author>Lukas Reschke</author> <namespace>OAuth2</namespace> - <default_enable/> <types> <authentication/> </types> @@ -17,15 +20,23 @@ <category>integration</category> <bugs>https://github.com/nextcloud/server/issues</bugs> <dependencies> - <nextcloud min-version="22" max-version="22"/> + <nextcloud min-version="32" max-version="32"/> </dependencies> + <background-jobs> + <job>OCA\OAuth2\BackgroundJob\CleanupExpiredAuthorizationCode</job> + </background-jobs> + <repair-steps> <post-migration> <step>OCA\OAuth2\Migration\SetTokenExpiration</step> </post-migration> </repair-steps> + <commands> + <command>OCA\OAuth2\Command\ImportLegacyOcClient</command> + </commands> + <settings> <admin>OCA\OAuth2\Settings\Admin</admin> </settings> diff --git a/apps/oauth2/appinfo/routes.php b/apps/oauth2/appinfo/routes.php index 55b3c5bc7ff..b34aff05552 100644 --- a/apps/oauth2/appinfo/routes.php +++ b/apps/oauth2/appinfo/routes.php @@ -1,27 +1,9 @@ <?php + /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @author Lukas Reschke <lukas@statuscode.ch> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - return [ 'routes' => [ [ diff --git a/apps/oauth2/composer/autoload.php b/apps/oauth2/composer/autoload.php index 276dedf42c2..02011f1eb55 100644 --- a/apps/oauth2/composer/autoload.php +++ b/apps/oauth2/composer/autoload.php @@ -2,6 +2,24 @@ // autoload.php @generated by Composer +if (PHP_VERSION_ID < 50600) { + if (!headers_sent()) { + header('HTTP/1.1 500 Internal Server Error'); + } + $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL; + if (!ini_get('display_errors')) { + if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { + fwrite(STDERR, $err); + } elseif (!headers_sent()) { + echo $err; + } + } + trigger_error( + $err, + E_USER_ERROR + ); +} + require_once __DIR__ . '/composer/autoload_real.php'; return ComposerAutoloaderInitOAuth2::getLoader(); diff --git a/apps/oauth2/composer/composer.lock b/apps/oauth2/composer/composer.lock new file mode 100644 index 00000000000..fd0bcbcb753 --- /dev/null +++ b/apps/oauth2/composer/composer.lock @@ -0,0 +1,18 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "d751713988987e9331980363e24189ce", + "packages": [], + "packages-dev": [], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": [], + "prefer-stable": false, + "prefer-lowest": false, + "platform": [], + "platform-dev": [], + "plugin-api-version": "2.1.0" +} diff --git a/apps/oauth2/composer/composer/ClassLoader.php b/apps/oauth2/composer/composer/ClassLoader.php index 4d989a212c9..7824d8f7eaf 100644 --- a/apps/oauth2/composer/composer/ClassLoader.php +++ b/apps/oauth2/composer/composer/ClassLoader.php @@ -42,30 +42,76 @@ namespace Composer\Autoload; */ class ClassLoader { + /** @var \Closure(string):void */ + private static $includeFile; + + /** @var string|null */ private $vendorDir; // PSR-4 + /** + * @var array<string, array<string, int>> + */ private $prefixLengthsPsr4 = array(); + /** + * @var array<string, list<string>> + */ private $prefixDirsPsr4 = array(); + /** + * @var list<string> + */ private $fallbackDirsPsr4 = array(); // PSR-0 + /** + * List of PSR-0 prefixes + * + * Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2'))) + * + * @var array<string, array<string, list<string>>> + */ private $prefixesPsr0 = array(); + /** + * @var list<string> + */ private $fallbackDirsPsr0 = array(); + /** @var bool */ private $useIncludePath = false; + + /** + * @var array<string, string> + */ private $classMap = array(); + + /** @var bool */ private $classMapAuthoritative = false; + + /** + * @var array<string, bool> + */ private $missingClasses = array(); + + /** @var string|null */ private $apcuPrefix; + /** + * @var array<string, self> + */ private static $registeredLoaders = array(); + /** + * @param string|null $vendorDir + */ public function __construct($vendorDir = null) { $this->vendorDir = $vendorDir; + self::initializeIncludeClosure(); } + /** + * @return array<string, list<string>> + */ public function getPrefixes() { if (!empty($this->prefixesPsr0)) { @@ -75,28 +121,42 @@ class ClassLoader return array(); } + /** + * @return array<string, list<string>> + */ public function getPrefixesPsr4() { return $this->prefixDirsPsr4; } + /** + * @return list<string> + */ public function getFallbackDirs() { return $this->fallbackDirsPsr0; } + /** + * @return list<string> + */ public function getFallbackDirsPsr4() { return $this->fallbackDirsPsr4; } + /** + * @return array<string, string> Array of classname => path + */ public function getClassMap() { return $this->classMap; } /** - * @param array $classMap Class to filename map + * @param array<string, string> $classMap Class to filename map + * + * @return void */ public function addClassMap(array $classMap) { @@ -111,22 +171,25 @@ class ClassLoader * Registers a set of PSR-0 directories for a given prefix, either * appending or prepending to the ones previously set for this prefix. * - * @param string $prefix The prefix - * @param array|string $paths The PSR-0 root directories - * @param bool $prepend Whether to prepend the directories + * @param string $prefix The prefix + * @param list<string>|string $paths The PSR-0 root directories + * @param bool $prepend Whether to prepend the directories + * + * @return void */ public function add($prefix, $paths, $prepend = false) { + $paths = (array) $paths; if (!$prefix) { if ($prepend) { $this->fallbackDirsPsr0 = array_merge( - (array) $paths, + $paths, $this->fallbackDirsPsr0 ); } else { $this->fallbackDirsPsr0 = array_merge( $this->fallbackDirsPsr0, - (array) $paths + $paths ); } @@ -135,19 +198,19 @@ class ClassLoader $first = $prefix[0]; if (!isset($this->prefixesPsr0[$first][$prefix])) { - $this->prefixesPsr0[$first][$prefix] = (array) $paths; + $this->prefixesPsr0[$first][$prefix] = $paths; return; } if ($prepend) { $this->prefixesPsr0[$first][$prefix] = array_merge( - (array) $paths, + $paths, $this->prefixesPsr0[$first][$prefix] ); } else { $this->prefixesPsr0[$first][$prefix] = array_merge( $this->prefixesPsr0[$first][$prefix], - (array) $paths + $paths ); } } @@ -156,25 +219,28 @@ class ClassLoader * Registers a set of PSR-4 directories for a given namespace, either * appending or prepending to the ones previously set for this namespace. * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param array|string $paths The PSR-4 base directories - * @param bool $prepend Whether to prepend the directories + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param list<string>|string $paths The PSR-4 base directories + * @param bool $prepend Whether to prepend the directories * * @throws \InvalidArgumentException + * + * @return void */ public function addPsr4($prefix, $paths, $prepend = false) { + $paths = (array) $paths; if (!$prefix) { // Register directories for the root namespace. if ($prepend) { $this->fallbackDirsPsr4 = array_merge( - (array) $paths, + $paths, $this->fallbackDirsPsr4 ); } else { $this->fallbackDirsPsr4 = array_merge( $this->fallbackDirsPsr4, - (array) $paths + $paths ); } } elseif (!isset($this->prefixDirsPsr4[$prefix])) { @@ -184,18 +250,18 @@ class ClassLoader throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); } $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; - $this->prefixDirsPsr4[$prefix] = (array) $paths; + $this->prefixDirsPsr4[$prefix] = $paths; } elseif ($prepend) { // Prepend directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( - (array) $paths, + $paths, $this->prefixDirsPsr4[$prefix] ); } else { // Append directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( $this->prefixDirsPsr4[$prefix], - (array) $paths + $paths ); } } @@ -204,8 +270,10 @@ class ClassLoader * Registers a set of PSR-0 directories for a given prefix, * replacing any others previously set for this prefix. * - * @param string $prefix The prefix - * @param array|string $paths The PSR-0 base directories + * @param string $prefix The prefix + * @param list<string>|string $paths The PSR-0 base directories + * + * @return void */ public function set($prefix, $paths) { @@ -220,10 +288,12 @@ class ClassLoader * Registers a set of PSR-4 directories for a given namespace, * replacing any others previously set for this namespace. * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param array|string $paths The PSR-4 base directories + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param list<string>|string $paths The PSR-4 base directories * * @throws \InvalidArgumentException + * + * @return void */ public function setPsr4($prefix, $paths) { @@ -243,6 +313,8 @@ class ClassLoader * Turns on searching the include path for class files. * * @param bool $useIncludePath + * + * @return void */ public function setUseIncludePath($useIncludePath) { @@ -265,6 +337,8 @@ class ClassLoader * that have not been registered with the class map. * * @param bool $classMapAuthoritative + * + * @return void */ public function setClassMapAuthoritative($classMapAuthoritative) { @@ -285,6 +359,8 @@ class ClassLoader * APCu prefix to use to cache found/not-found classes, if the extension is enabled. * * @param string|null $apcuPrefix + * + * @return void */ public function setApcuPrefix($apcuPrefix) { @@ -305,14 +381,18 @@ class ClassLoader * Registers this instance as an autoloader. * * @param bool $prepend Whether to prepend the autoloader or not + * + * @return void */ public function register($prepend = false) { spl_autoload_register(array($this, 'loadClass'), true, $prepend); if (null === $this->vendorDir) { - //no-op - } elseif ($prepend) { + return; + } + + if ($prepend) { self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders; } else { unset(self::$registeredLoaders[$this->vendorDir]); @@ -322,6 +402,8 @@ class ClassLoader /** * Unregisters this instance as an autoloader. + * + * @return void */ public function unregister() { @@ -336,15 +418,18 @@ class ClassLoader * Loads the given class or interface. * * @param string $class The name of the class - * @return bool|null True if loaded, null otherwise + * @return true|null True if loaded, null otherwise */ public function loadClass($class) { if ($file = $this->findFile($class)) { - includeFile($file); + $includeFile = self::$includeFile; + $includeFile($file); return true; } + + return null; } /** @@ -390,15 +475,20 @@ class ClassLoader } /** - * Returns the currently registered loaders indexed by their corresponding vendor directories. + * Returns the currently registered loaders keyed by their corresponding vendor directories. * - * @return self[] + * @return array<string, self> */ public static function getRegisteredLoaders() { return self::$registeredLoaders; } + /** + * @param string $class + * @param string $ext + * @return string|false + */ private function findFileWithExtension($class, $ext) { // PSR-4 lookup @@ -464,14 +554,26 @@ class ClassLoader return false; } -} -/** - * Scope isolated include. - * - * Prevents access to $this/self from included files. - */ -function includeFile($file) -{ - include $file; + /** + * @return void + */ + private static function initializeIncludeClosure() + { + if (self::$includeFile !== null) { + return; + } + + /** + * Scope isolated include. + * + * Prevents access to $this/self from included files. + * + * @param string $file + * @return void + */ + self::$includeFile = \Closure::bind(static function($file) { + include $file; + }, null, null); + } } diff --git a/apps/oauth2/composer/composer/InstalledVersions.php b/apps/oauth2/composer/composer/InstalledVersions.php new file mode 100644 index 00000000000..51e734a774b --- /dev/null +++ b/apps/oauth2/composer/composer/InstalledVersions.php @@ -0,0 +1,359 @@ +<?php + +/* + * This file is part of Composer. + * + * (c) Nils Adermann <naderman@naderman.de> + * Jordi Boggiano <j.boggiano@seld.be> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Composer; + +use Composer\Autoload\ClassLoader; +use Composer\Semver\VersionParser; + +/** + * This class is copied in every Composer installed project and available to all + * + * See also https://getcomposer.org/doc/07-runtime.md#installed-versions + * + * To require its presence, you can require `composer-runtime-api ^2.0` + * + * @final + */ +class InstalledVersions +{ + /** + * @var mixed[]|null + * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null + */ + private static $installed; + + /** + * @var bool|null + */ + private static $canGetVendors; + + /** + * @var array[] + * @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> + */ + private static $installedByVendor = array(); + + /** + * Returns a list of all package names which are present, either by being installed, replaced or provided + * + * @return string[] + * @psalm-return list<string> + */ + public static function getInstalledPackages() + { + $packages = array(); + foreach (self::getInstalled() as $installed) { + $packages[] = array_keys($installed['versions']); + } + + if (1 === \count($packages)) { + return $packages[0]; + } + + return array_keys(array_flip(\call_user_func_array('array_merge', $packages))); + } + + /** + * Returns a list of all package names with a specific type e.g. 'library' + * + * @param string $type + * @return string[] + * @psalm-return list<string> + */ + public static function getInstalledPackagesByType($type) + { + $packagesByType = array(); + + foreach (self::getInstalled() as $installed) { + foreach ($installed['versions'] as $name => $package) { + if (isset($package['type']) && $package['type'] === $type) { + $packagesByType[] = $name; + } + } + } + + return $packagesByType; + } + + /** + * Checks whether the given package is installed + * + * This also returns true if the package name is provided or replaced by another package + * + * @param string $packageName + * @param bool $includeDevRequirements + * @return bool + */ + public static function isInstalled($packageName, $includeDevRequirements = true) + { + foreach (self::getInstalled() as $installed) { + if (isset($installed['versions'][$packageName])) { + return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false; + } + } + + return false; + } + + /** + * Checks whether the given package satisfies a version constraint + * + * e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call: + * + * Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3') + * + * @param VersionParser $parser Install composer/semver to have access to this class and functionality + * @param string $packageName + * @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package + * @return bool + */ + public static function satisfies(VersionParser $parser, $packageName, $constraint) + { + $constraint = $parser->parseConstraints((string) $constraint); + $provided = $parser->parseConstraints(self::getVersionRanges($packageName)); + + return $provided->matches($constraint); + } + + /** + * Returns a version constraint representing all the range(s) which are installed for a given package + * + * It is easier to use this via isInstalled() with the $constraint argument if you need to check + * whether a given version of a package is installed, and not just whether it exists + * + * @param string $packageName + * @return string Version constraint usable with composer/semver + */ + public static function getVersionRanges($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + $ranges = array(); + if (isset($installed['versions'][$packageName]['pretty_version'])) { + $ranges[] = $installed['versions'][$packageName]['pretty_version']; + } + if (array_key_exists('aliases', $installed['versions'][$packageName])) { + $ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']); + } + if (array_key_exists('replaced', $installed['versions'][$packageName])) { + $ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']); + } + if (array_key_exists('provided', $installed['versions'][$packageName])) { + $ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']); + } + + return implode(' || ', $ranges); + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present + */ + public static function getVersion($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + if (!isset($installed['versions'][$packageName]['version'])) { + return null; + } + + return $installed['versions'][$packageName]['version']; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present + */ + public static function getPrettyVersion($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + if (!isset($installed['versions'][$packageName]['pretty_version'])) { + return null; + } + + return $installed['versions'][$packageName]['pretty_version']; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference + */ + public static function getReference($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + if (!isset($installed['versions'][$packageName]['reference'])) { + return null; + } + + return $installed['versions'][$packageName]['reference']; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path. + */ + public static function getInstallPath($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @return array + * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool} + */ + public static function getRootPackage() + { + $installed = self::getInstalled(); + + return $installed[0]['root']; + } + + /** + * Returns the raw installed.php data for custom implementations + * + * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect. + * @return array[] + * @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} + */ + public static function getRawData() + { + @trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED); + + if (null === self::$installed) { + // only require the installed.php file if this file is loaded from its dumped location, + // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 + if (substr(__DIR__, -8, 1) !== 'C') { + self::$installed = include __DIR__ . '/installed.php'; + } else { + self::$installed = array(); + } + } + + return self::$installed; + } + + /** + * Returns the raw data of all installed.php which are currently loaded for custom implementations + * + * @return array[] + * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> + */ + public static function getAllRawData() + { + return self::getInstalled(); + } + + /** + * Lets you reload the static array from another file + * + * This is only useful for complex integrations in which a project needs to use + * this class but then also needs to execute another project's autoloader in process, + * and wants to ensure both projects have access to their version of installed.php. + * + * A typical case would be PHPUnit, where it would need to make sure it reads all + * the data it needs from this class, then call reload() with + * `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure + * the project in which it runs can then also use this class safely, without + * interference between PHPUnit's dependencies and the project's dependencies. + * + * @param array[] $data A vendor/composer/installed.php data set + * @return void + * + * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data + */ + public static function reload($data) + { + self::$installed = $data; + self::$installedByVendor = array(); + } + + /** + * @return array[] + * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> + */ + private static function getInstalled() + { + if (null === self::$canGetVendors) { + self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders'); + } + + $installed = array(); + + if (self::$canGetVendors) { + foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { + if (isset(self::$installedByVendor[$vendorDir])) { + $installed[] = self::$installedByVendor[$vendorDir]; + } elseif (is_file($vendorDir.'/composer/installed.php')) { + /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */ + $required = require $vendorDir.'/composer/installed.php'; + $installed[] = self::$installedByVendor[$vendorDir] = $required; + if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { + self::$installed = $installed[count($installed) - 1]; + } + } + } + } + + if (null === self::$installed) { + // only require the installed.php file if this file is loaded from its dumped location, + // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 + if (substr(__DIR__, -8, 1) !== 'C') { + /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */ + $required = require __DIR__ . '/installed.php'; + self::$installed = $required; + } else { + self::$installed = array(); + } + } + + if (self::$installed !== array()) { + $installed[] = self::$installed; + } + + return $installed; + } +} diff --git a/apps/oauth2/composer/composer/autoload_classmap.php b/apps/oauth2/composer/composer/autoload_classmap.php index 210d5073182..f5fc5bfe251 100644 --- a/apps/oauth2/composer/composer/autoload_classmap.php +++ b/apps/oauth2/composer/composer/autoload_classmap.php @@ -2,11 +2,13 @@ // autoload_classmap.php @generated by Composer -$vendorDir = dirname(dirname(__FILE__)); +$vendorDir = dirname(__DIR__); $baseDir = $vendorDir; return array( 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', + 'OCA\\OAuth2\\BackgroundJob\\CleanupExpiredAuthorizationCode' => $baseDir . '/../lib/BackgroundJob/CleanupExpiredAuthorizationCode.php', + 'OCA\\OAuth2\\Command\\ImportLegacyOcClient' => $baseDir . '/../lib/Command/ImportLegacyOcClient.php', 'OCA\\OAuth2\\Controller\\LoginRedirectorController' => $baseDir . '/../lib/Controller/LoginRedirectorController.php', 'OCA\\OAuth2\\Controller\\OauthApiController' => $baseDir . '/../lib/Controller/OauthApiController.php', 'OCA\\OAuth2\\Controller\\SettingsController' => $baseDir . '/../lib/Controller/SettingsController.php', @@ -19,5 +21,9 @@ return array( 'OCA\\OAuth2\\Migration\\SetTokenExpiration' => $baseDir . '/../lib/Migration/SetTokenExpiration.php', 'OCA\\OAuth2\\Migration\\Version010401Date20181207190718' => $baseDir . '/../lib/Migration/Version010401Date20181207190718.php', 'OCA\\OAuth2\\Migration\\Version010402Date20190107124745' => $baseDir . '/../lib/Migration/Version010402Date20190107124745.php', + 'OCA\\OAuth2\\Migration\\Version011601Date20230522143227' => $baseDir . '/../lib/Migration/Version011601Date20230522143227.php', + 'OCA\\OAuth2\\Migration\\Version011602Date20230613160650' => $baseDir . '/../lib/Migration/Version011602Date20230613160650.php', + 'OCA\\OAuth2\\Migration\\Version011603Date20230620111039' => $baseDir . '/../lib/Migration/Version011603Date20230620111039.php', + 'OCA\\OAuth2\\Migration\\Version011901Date20240829164356' => $baseDir . '/../lib/Migration/Version011901Date20240829164356.php', 'OCA\\OAuth2\\Settings\\Admin' => $baseDir . '/../lib/Settings/Admin.php', ); diff --git a/apps/oauth2/composer/composer/autoload_namespaces.php b/apps/oauth2/composer/composer/autoload_namespaces.php index 71c9e91858d..3f5c9296251 100644 --- a/apps/oauth2/composer/composer/autoload_namespaces.php +++ b/apps/oauth2/composer/composer/autoload_namespaces.php @@ -2,7 +2,7 @@ // autoload_namespaces.php @generated by Composer -$vendorDir = dirname(dirname(__FILE__)); +$vendorDir = dirname(__DIR__); $baseDir = $vendorDir; return array( diff --git a/apps/oauth2/composer/composer/autoload_psr4.php b/apps/oauth2/composer/composer/autoload_psr4.php index 1164638c634..6c3c791a23c 100644 --- a/apps/oauth2/composer/composer/autoload_psr4.php +++ b/apps/oauth2/composer/composer/autoload_psr4.php @@ -2,7 +2,7 @@ // autoload_psr4.php @generated by Composer -$vendorDir = dirname(dirname(__FILE__)); +$vendorDir = dirname(__DIR__); $baseDir = $vendorDir; return array( diff --git a/apps/oauth2/composer/composer/autoload_real.php b/apps/oauth2/composer/composer/autoload_real.php index 7a5c7fdcaf5..0253518be84 100644 --- a/apps/oauth2/composer/composer/autoload_real.php +++ b/apps/oauth2/composer/composer/autoload_real.php @@ -23,20 +23,11 @@ class ComposerAutoloaderInitOAuth2 } spl_autoload_register(array('ComposerAutoloaderInitOAuth2', 'loadClassLoader'), true, true); - self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); + self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); spl_autoload_unregister(array('ComposerAutoloaderInitOAuth2', 'loadClassLoader')); - $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); - if ($useStaticLoader) { - require __DIR__ . '/autoload_static.php'; - - call_user_func(\Composer\Autoload\ComposerStaticInitOAuth2::getInitializer($loader)); - } else { - $classMap = require __DIR__ . '/autoload_classmap.php'; - if ($classMap) { - $loader->addClassMap($classMap); - } - } + require __DIR__ . '/autoload_static.php'; + call_user_func(\Composer\Autoload\ComposerStaticInitOAuth2::getInitializer($loader)); $loader->setClassMapAuthoritative(true); $loader->register(true); diff --git a/apps/oauth2/composer/composer/autoload_static.php b/apps/oauth2/composer/composer/autoload_static.php index c8f3a388c78..c4843fa1990 100644 --- a/apps/oauth2/composer/composer/autoload_static.php +++ b/apps/oauth2/composer/composer/autoload_static.php @@ -22,6 +22,8 @@ class ComposerStaticInitOAuth2 public static $classMap = array ( 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', + 'OCA\\OAuth2\\BackgroundJob\\CleanupExpiredAuthorizationCode' => __DIR__ . '/..' . '/../lib/BackgroundJob/CleanupExpiredAuthorizationCode.php', + 'OCA\\OAuth2\\Command\\ImportLegacyOcClient' => __DIR__ . '/..' . '/../lib/Command/ImportLegacyOcClient.php', 'OCA\\OAuth2\\Controller\\LoginRedirectorController' => __DIR__ . '/..' . '/../lib/Controller/LoginRedirectorController.php', 'OCA\\OAuth2\\Controller\\OauthApiController' => __DIR__ . '/..' . '/../lib/Controller/OauthApiController.php', 'OCA\\OAuth2\\Controller\\SettingsController' => __DIR__ . '/..' . '/../lib/Controller/SettingsController.php', @@ -34,6 +36,10 @@ class ComposerStaticInitOAuth2 'OCA\\OAuth2\\Migration\\SetTokenExpiration' => __DIR__ . '/..' . '/../lib/Migration/SetTokenExpiration.php', 'OCA\\OAuth2\\Migration\\Version010401Date20181207190718' => __DIR__ . '/..' . '/../lib/Migration/Version010401Date20181207190718.php', 'OCA\\OAuth2\\Migration\\Version010402Date20190107124745' => __DIR__ . '/..' . '/../lib/Migration/Version010402Date20190107124745.php', + 'OCA\\OAuth2\\Migration\\Version011601Date20230522143227' => __DIR__ . '/..' . '/../lib/Migration/Version011601Date20230522143227.php', + 'OCA\\OAuth2\\Migration\\Version011602Date20230613160650' => __DIR__ . '/..' . '/../lib/Migration/Version011602Date20230613160650.php', + 'OCA\\OAuth2\\Migration\\Version011603Date20230620111039' => __DIR__ . '/..' . '/../lib/Migration/Version011603Date20230620111039.php', + 'OCA\\OAuth2\\Migration\\Version011901Date20240829164356' => __DIR__ . '/..' . '/../lib/Migration/Version011901Date20240829164356.php', 'OCA\\OAuth2\\Settings\\Admin' => __DIR__ . '/..' . '/../lib/Settings/Admin.php', ); diff --git a/apps/oauth2/composer/composer/installed.json b/apps/oauth2/composer/composer/installed.json new file mode 100644 index 00000000000..f20a6c47c6d --- /dev/null +++ b/apps/oauth2/composer/composer/installed.json @@ -0,0 +1,5 @@ +{ + "packages": [], + "dev": false, + "dev-package-names": [] +} diff --git a/apps/oauth2/composer/composer/installed.php b/apps/oauth2/composer/composer/installed.php new file mode 100644 index 00000000000..1a66c7f2416 --- /dev/null +++ b/apps/oauth2/composer/composer/installed.php @@ -0,0 +1,23 @@ +<?php return array( + 'root' => array( + 'name' => '__root__', + 'pretty_version' => 'dev-master', + 'version' => 'dev-master', + 'reference' => 'b1797842784b250fb01ed5e3bf130705eb94751b', + 'type' => 'library', + 'install_path' => __DIR__ . '/../', + 'aliases' => array(), + 'dev' => false, + ), + 'versions' => array( + '__root__' => array( + 'pretty_version' => 'dev-master', + 'version' => 'dev-master', + 'reference' => 'b1797842784b250fb01ed5e3bf130705eb94751b', + 'type' => 'library', + 'install_path' => __DIR__ . '/../', + 'aliases' => array(), + 'dev_requirement' => false, + ), + ), +); diff --git a/apps/oauth2/js/oauth2.js b/apps/oauth2/js/oauth2.js deleted file mode 100644 index e36d2f901a9..00000000000 --- a/apps/oauth2/js/oauth2.js +++ /dev/null @@ -1,2 +0,0 @@ -!function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)n.d(r,o,function(e){return t[e]}.bind(null,o));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="/js",n(n.s=167)}([function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){var r=n(2),o=n(55),i=n(4),a=n(34),s=n(74),c=n(124),u=o("wks"),l=r.Symbol,f=c?l:l&&l.withoutSetter||a;t.exports=function(t){return i(u,t)||(s&&i(l,t)?u[t]=l[t]:u[t]=f("Symbol."+t)),u[t]}},function(t,e,n){(function(e){var n=function(t){return t&&t.Math==Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof e&&e)||function(){return this}()||Function("return this")()}).call(this,n(15))},function(t,e,n){"use strict";var r=n(61),o=Object.prototype.toString;function i(t){return"[object Array]"===o.call(t)}function a(t){return void 0===t}function s(t){return null!==t&&"object"==typeof t}function c(t){if("[object Object]"!==o.call(t))return!1;var e=Object.getPrototypeOf(t);return null===e||e===Object.prototype}function u(t){return"[object Function]"===o.call(t)}function l(t,e){if(null!=t)if("object"!=typeof t&&(t=[t]),i(t))for(var n=0,r=t.length;n<r;n++)e.call(null,t[n],n,t);else for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&e.call(null,t[o],o,t)}t.exports={isArray:i,isArrayBuffer:function(t){return"[object ArrayBuffer]"===o.call(t)},isBuffer:function(t){return null!==t&&!a(t)&&null!==t.constructor&&!a(t.constructor)&&"function"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t)},isFormData:function(t){return"undefined"!=typeof FormData&&t instanceof FormData},isArrayBufferView:function(t){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(t):t&&t.buffer&&t.buffer instanceof ArrayBuffer},isString:function(t){return"string"==typeof t},isNumber:function(t){return"number"==typeof t},isObject:s,isPlainObject:c,isUndefined:a,isDate:function(t){return"[object Date]"===o.call(t)},isFile:function(t){return"[object File]"===o.call(t)},isBlob:function(t){return"[object Blob]"===o.call(t)},isFunction:u,isStream:function(t){return s(t)&&u(t.pipe)},isURLSearchParams:function(t){return"undefined"!=typeof URLSearchParams&&t instanceof URLSearchParams},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product&&"NativeScript"!==navigator.product&&"NS"!==navigator.product)&&("undefined"!=typeof window&&"undefined"!=typeof document)},forEach:l,merge:function t(){var e={};function n(n,r){c(e[r])&&c(n)?e[r]=t(e[r],n):c(n)?e[r]=t({},n):i(n)?e[r]=n.slice():e[r]=n}for(var r=0,o=arguments.length;r<o;r++)l(arguments[r],n);return e},extend:function(t,e,n){return l(e,(function(e,o){t[o]=n&&"function"==typeof e?r(e,n):e})),t},trim:function(t){return t.replace(/^\s*/,"").replace(/\s*$/,"")},stripBOM:function(t){return 65279===t.charCodeAt(0)&&(t=t.slice(1)),t}}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){var r=n(5);t.exports=function(t){if(!r(t))throw TypeError(String(t)+" is not an object");return t}},function(t,e,n){var r=n(0);t.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},function(t,e,n){var r=n(7),o=n(9),i=n(16);t.exports=r?function(t,e,n){return o.f(t,e,i(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var r=n(7),o=n(52),i=n(6),a=n(29),s=Object.defineProperty;e.f=r?s:function(t,e,n){if(i(t),e=a(e,!0),i(n),o)try{return s(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(t[e]=n.value),t}},function(t,e,n){var r=n(2),o=n(50).f,i=n(8),a=n(11),s=n(30),c=n(97),u=n(59);t.exports=function(t,e){var n,l,f,p,d,h=t.target,v=t.global,m=t.stat;if(n=v?r:m?r[h]||s(h,{}):(r[h]||{}).prototype)for(l in e){if(p=e[l],f=t.noTargetGet?(d=o(n,l))&&d.value:n[l],!u(v?l:h+(m?".":"#")+l,t.forced)&&void 0!==f){if(typeof p==typeof f)continue;c(p,f)}(t.sham||f&&f.sham)&&i(p,"sham",!0),a(n,l,p,t)}}},function(t,e,n){var r=n(2),o=n(8),i=n(4),a=n(30),s=n(54),c=n(20),u=c.get,l=c.enforce,f=String(String).split("String");(t.exports=function(t,e,n,s){var c,u=!!s&&!!s.unsafe,p=!!s&&!!s.enumerable,d=!!s&&!!s.noTargetGet;"function"==typeof n&&("string"!=typeof e||i(n,"name")||o(n,"name",e),(c=l(n)).source||(c.source=f.join("string"==typeof e?e:""))),t!==r?(u?!d&&t[e]&&(p=!0):delete t[e],p?t[e]=n:o(t,e,n)):p?t[e]=n:a(e,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&u(this).source||s(this)}))},function(t,e,n){var r=n(23),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},function(t,e,n){var r=n(19);t.exports=function(t){return Object(r(t))}},function(t,e){t.exports={}},function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var r=n(28),o=n(19);t.exports=function(t){return r(o(t))}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,e,n){var r,o,i,a=n(96),s=n(2),c=n(5),u=n(8),l=n(4),f=n(31),p=n(32),d=n(21),h=s.WeakMap;if(a){var v=f.state||(f.state=new h),m=v.get,y=v.has,g=v.set;r=function(t,e){return e.facade=t,g.call(v,t,e),e},o=function(t){return m.call(v,t)||{}},i=function(t){return y.call(v,t)}}else{var b=p("state");d[b]=!0,r=function(t,e){return e.facade=t,u(t,b,e),e},o=function(t){return l(t,b)?t[b]:{}},i=function(t){return l(t,b)}}t.exports={set:r,get:o,has:i,enforce:function(t){return i(t)?o(t):r(t,{})},getterFor:function(t){return function(e){var n;if(!c(e)||(n=o(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}}},function(t,e){t.exports={}},function(t,e,n){var r=n(99),o=n(2),i=function(t){return"function"==typeof t?t:void 0};t.exports=function(t,e){return arguments.length<2?i(r[t])||i(o[t]):r[t]&&r[t][e]||o[t]&&o[t][e]}},function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},function(t,e,n){"use strict";var r,o=function(){return void 0===r&&(r=Boolean(window&&document&&document.all&&!window.atob)),r},i=function(){var t={};return function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(t){n=null}t[e]=n}return t[e]}}(),a=[];function s(t){for(var e=-1,n=0;n<a.length;n++)if(a[n].identifier===t){e=n;break}return e}function c(t,e){for(var n={},r=[],o=0;o<t.length;o++){var i=t[o],c=e.base?i[0]+e.base:i[0],u=n[c]||0,l="".concat(c," ").concat(u);n[c]=u+1;var f=s(l),p={css:i[1],media:i[2],sourceMap:i[3]};-1!==f?(a[f].references++,a[f].updater(p)):a.push({identifier:l,updater:m(p,e),references:1}),r.push(l)}return r}function u(t){var e=document.createElement("style"),r=t.attributes||{};if(void 0===r.nonce){var o=n.nc;o&&(r.nonce=o)}if(Object.keys(r).forEach((function(t){e.setAttribute(t,r[t])})),"function"==typeof t.insert)t.insert(e);else{var a=i(t.insert||"head");if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(e)}return e}var l,f=(l=[],function(t,e){return l[t]=e,l.filter(Boolean).join("\n")});function p(t,e,n,r){var o=n?"":r.media?"@media ".concat(r.media," {").concat(r.css,"}"):r.css;if(t.styleSheet)t.styleSheet.cssText=f(e,o);else{var i=document.createTextNode(o),a=t.childNodes;a[e]&&t.removeChild(a[e]),a.length?t.insertBefore(i,a[e]):t.appendChild(i)}}function d(t,e,n){var r=n.css,o=n.media,i=n.sourceMap;if(o?t.setAttribute("media",o):t.removeAttribute("media"),i&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),t.styleSheet)t.styleSheet.cssText=r;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(r))}}var h=null,v=0;function m(t,e){var n,r,o;if(e.singleton){var i=v++;n=h||(h=u(e)),r=p.bind(null,n,i,!1),o=p.bind(null,n,i,!0)}else n=u(e),r=d.bind(null,n,e),o=function(){!function(t){if(null===t.parentNode)return!1;t.parentNode.removeChild(t)}(n)};return r(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap)return;r(t=e)}else o()}}t.exports=function(t,e){(e=e||{}).singleton||"boolean"==typeof e.singleton||(e.singleton=o());var n=c(t=t||[],e);return function(t){if(t=t||[],"[object Array]"===Object.prototype.toString.call(t)){for(var r=0;r<n.length;r++){var o=s(n[r]);a[o].references--}for(var i=c(t,e),u=0;u<n.length;u++){var l=s(n[u]);0===a[l].references&&(a[l].updater(),a.splice(l,1))}n=i}}}},function(t,e,n){"use strict";function r(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(t)))return;var n=[],r=!0,o=!1,i=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{r||null==s.return||s.return()}finally{if(o)throw i}}return n}(t,e)||function(t,e){if(!t)return;if("string"==typeof t)return o(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);"Object"===n&&t.constructor&&(n=t.constructor.name);if("Map"===n||"Set"===n)return Array.from(t);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return o(t,e)}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function o(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n<e;n++)r[n]=t[n];return r}t.exports=function(t){var e=r(t,4),n=e[1],o=e[3];if("function"==typeof btoa){var i=btoa(unescape(encodeURIComponent(JSON.stringify(o)))),a="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(i),s="/*# ".concat(a," */"),c=o.sources.map((function(t){return"/*# sourceURL=".concat(o.sourceRoot||"").concat(t," */")}));return[n].concat(c).concat([s]).join("\n")}return[n].join("\n")}},function(t,e,n){"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var n=t(e);return e[2]?"@media ".concat(e[2]," {").concat(n,"}"):n})).join("")},e.i=function(t,n,r){"string"==typeof t&&(t=[[null,t,""]]);var o={};if(r)for(var i=0;i<this.length;i++){var a=this[i][0];null!=a&&(o[a]=!0)}for(var s=0;s<t.length;s++){var c=[].concat(t[s]);r&&o[c[0]]||(n&&(c[2]?c[2]="".concat(n," and ").concat(c[2]):c[2]=n),e.push(c))}},e}},function(t,e,n){"use strict";(function(t,n){var r=Object.freeze({});function o(t){return null==t}function i(t){return null!=t}function a(t){return!0===t}function s(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function c(t){return null!==t&&"object"==typeof t}var u=Object.prototype.toString;function l(t){return"[object Object]"===u.call(t)}function f(t){return"[object RegExp]"===u.call(t)}function p(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function d(t){return i(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function h(t){return null==t?"":Array.isArray(t)||l(t)&&t.toString===u?JSON.stringify(t,null,2):String(t)}function v(t){var e=parseFloat(t);return isNaN(e)?t:e}function m(t,e){for(var n=Object.create(null),r=t.split(","),o=0;o<r.length;o++)n[r[o]]=!0;return e?function(t){return n[t.toLowerCase()]}:function(t){return n[t]}}m("slot,component",!0);var y=m("key,ref,slot,slot-scope,is");function g(t,e){if(t.length){var n=t.indexOf(e);if(n>-1)return t.splice(n,1)}}var b=Object.prototype.hasOwnProperty;function _(t,e){return b.call(t,e)}function E(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var A=/-(\w)/g,x=E((function(t){return t.replace(A,(function(t,e){return e?e.toUpperCase():""}))})),w=E((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),O=/\B([A-Z])/g,C=E((function(t){return t.replace(O,"-$1").toLowerCase()}));var S=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function I(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function T(t,e){for(var n in e)t[n]=e[n];return t}function R(t){for(var e={},n=0;n<t.length;n++)t[n]&&T(e,t[n]);return e}function N(t,e,n){}var k=function(t,e,n){return!1},L=function(t){return t};function j(t,e){if(t===e)return!0;var n=c(t),r=c(e);if(!n||!r)return!n&&!r&&String(t)===String(e);try{var o=Array.isArray(t),i=Array.isArray(e);if(o&&i)return t.length===e.length&&t.every((function(t,n){return j(t,e[n])}));if(t instanceof Date&&e instanceof Date)return t.getTime()===e.getTime();if(o||i)return!1;var a=Object.keys(t),s=Object.keys(e);return a.length===s.length&&a.every((function(n){return j(t[n],e[n])}))}catch(t){return!1}}function $(t,e){for(var n=0;n<t.length;n++)if(j(t[n],e))return n;return-1}function P(t){var e=!1;return function(){e||(e=!0,t.apply(this,arguments))}}var U=["component","directive","filter"],D=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch"],M={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:k,isReservedAttr:k,isUnknownElement:k,getTagNamespace:N,parsePlatformTagName:L,mustUseProp:k,async:!0,_lifecycleHooks:D},F=/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;function B(t,e,n,r){Object.defineProperty(t,e,{value:n,enumerable:!!r,writable:!0,configurable:!0})}var G=new RegExp("[^"+F.source+".$_\\d]");var V,q="__proto__"in{},H="undefined"!=typeof window,X="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,z=X&&WXEnvironment.platform.toLowerCase(),W=H&&window.navigator.userAgent.toLowerCase(),Y=W&&/msie|trident/.test(W),K=W&&W.indexOf("msie 9.0")>0,J=W&&W.indexOf("edge/")>0,Z=(W&&W.indexOf("android"),W&&/iphone|ipad|ipod|ios/.test(W)||"ios"===z),Q=(W&&/chrome\/\d+/.test(W),W&&/phantomjs/.test(W),W&&W.match(/firefox\/(\d+)/)),tt={}.watch,et=!1;if(H)try{var nt={};Object.defineProperty(nt,"passive",{get:function(){et=!0}}),window.addEventListener("test-passive",null,nt)}catch(t){}var rt=function(){return void 0===V&&(V=!H&&!X&&void 0!==t&&(t.process&&"server"===t.process.env.VUE_ENV)),V},ot=H&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function it(t){return"function"==typeof t&&/native code/.test(t.toString())}var at,st="undefined"!=typeof Symbol&&it(Symbol)&&"undefined"!=typeof Reflect&&it(Reflect.ownKeys);at="undefined"!=typeof Set&&it(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var ct=N,ut=0,lt=function(){this.id=ut++,this.subs=[]};lt.prototype.addSub=function(t){this.subs.push(t)},lt.prototype.removeSub=function(t){g(this.subs,t)},lt.prototype.depend=function(){lt.target&<.target.addDep(this)},lt.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e<n;e++)t[e].update()},lt.target=null;var ft=[];function pt(t){ft.push(t),lt.target=t}function dt(){ft.pop(),lt.target=ft[ft.length-1]}var ht=function(t,e,n,r,o,i,a,s){this.tag=t,this.data=e,this.children=n,this.text=r,this.elm=o,this.ns=void 0,this.context=i,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=e&&e.key,this.componentOptions=a,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=s,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1},vt={child:{configurable:!0}};vt.child.get=function(){return this.componentInstance},Object.defineProperties(ht.prototype,vt);var mt=function(t){void 0===t&&(t="");var e=new ht;return e.text=t,e.isComment=!0,e};function yt(t){return new ht(void 0,void 0,void 0,String(t))}function gt(t){var e=new ht(t.tag,t.data,t.children&&t.children.slice(),t.text,t.elm,t.context,t.componentOptions,t.asyncFactory);return e.ns=t.ns,e.isStatic=t.isStatic,e.key=t.key,e.isComment=t.isComment,e.fnContext=t.fnContext,e.fnOptions=t.fnOptions,e.fnScopeId=t.fnScopeId,e.asyncMeta=t.asyncMeta,e.isCloned=!0,e}var bt=Array.prototype,_t=Object.create(bt);["push","pop","shift","unshift","splice","sort","reverse"].forEach((function(t){var e=bt[t];B(_t,t,(function(){for(var n=[],r=arguments.length;r--;)n[r]=arguments[r];var o,i=e.apply(this,n),a=this.__ob__;switch(t){case"push":case"unshift":o=n;break;case"splice":o=n.slice(2)}return o&&a.observeArray(o),a.dep.notify(),i}))}));var Et=Object.getOwnPropertyNames(_t),At=!0;function xt(t){At=t}var wt=function(t){this.value=t,this.dep=new lt,this.vmCount=0,B(t,"__ob__",this),Array.isArray(t)?(q?function(t,e){t.__proto__=e}(t,_t):function(t,e,n){for(var r=0,o=n.length;r<o;r++){var i=n[r];B(t,i,e[i])}}(t,_t,Et),this.observeArray(t)):this.walk(t)};function Ot(t,e){var n;if(c(t)&&!(t instanceof ht))return _(t,"__ob__")&&t.__ob__ instanceof wt?n=t.__ob__:At&&!rt()&&(Array.isArray(t)||l(t))&&Object.isExtensible(t)&&!t._isVue&&(n=new wt(t)),e&&n&&n.vmCount++,n}function Ct(t,e,n,r,o){var i=new lt,a=Object.getOwnPropertyDescriptor(t,e);if(!a||!1!==a.configurable){var s=a&&a.get,c=a&&a.set;s&&!c||2!==arguments.length||(n=t[e]);var u=!o&&Ot(n);Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){var e=s?s.call(t):n;return lt.target&&(i.depend(),u&&(u.dep.depend(),Array.isArray(e)&&Tt(e))),e},set:function(e){var r=s?s.call(t):n;e===r||e!=e&&r!=r||s&&!c||(c?c.call(t,e):n=e,u=!o&&Ot(e),i.notify())}})}}function St(t,e,n){if(Array.isArray(t)&&p(e))return t.length=Math.max(t.length,e),t.splice(e,1,n),n;if(e in t&&!(e in Object.prototype))return t[e]=n,n;var r=t.__ob__;return t._isVue||r&&r.vmCount?n:r?(Ct(r.value,e,n),r.dep.notify(),n):(t[e]=n,n)}function It(t,e){if(Array.isArray(t)&&p(e))t.splice(e,1);else{var n=t.__ob__;t._isVue||n&&n.vmCount||_(t,e)&&(delete t[e],n&&n.dep.notify())}}function Tt(t){for(var e=void 0,n=0,r=t.length;n<r;n++)(e=t[n])&&e.__ob__&&e.__ob__.dep.depend(),Array.isArray(e)&&Tt(e)}wt.prototype.walk=function(t){for(var e=Object.keys(t),n=0;n<e.length;n++)Ct(t,e[n])},wt.prototype.observeArray=function(t){for(var e=0,n=t.length;e<n;e++)Ot(t[e])};var Rt=M.optionMergeStrategies;function Nt(t,e){if(!e)return t;for(var n,r,o,i=st?Reflect.ownKeys(e):Object.keys(e),a=0;a<i.length;a++)"__ob__"!==(n=i[a])&&(r=t[n],o=e[n],_(t,n)?r!==o&&l(r)&&l(o)&&Nt(r,o):St(t,n,o));return t}function kt(t,e,n){return n?function(){var r="function"==typeof e?e.call(n,n):e,o="function"==typeof t?t.call(n,n):t;return r?Nt(r,o):o}:e?t?function(){return Nt("function"==typeof e?e.call(this,this):e,"function"==typeof t?t.call(this,this):t)}:e:t}function Lt(t,e){var n=e?t?t.concat(e):Array.isArray(e)?e:[e]:t;return n?function(t){for(var e=[],n=0;n<t.length;n++)-1===e.indexOf(t[n])&&e.push(t[n]);return e}(n):n}function jt(t,e,n,r){var o=Object.create(t||null);return e?T(o,e):o}Rt.data=function(t,e,n){return n?kt(t,e,n):e&&"function"!=typeof e?t:kt(t,e)},D.forEach((function(t){Rt[t]=Lt})),U.forEach((function(t){Rt[t+"s"]=jt})),Rt.watch=function(t,e,n,r){if(t===tt&&(t=void 0),e===tt&&(e=void 0),!e)return Object.create(t||null);if(!t)return e;var o={};for(var i in T(o,t),e){var a=o[i],s=e[i];a&&!Array.isArray(a)&&(a=[a]),o[i]=a?a.concat(s):Array.isArray(s)?s:[s]}return o},Rt.props=Rt.methods=Rt.inject=Rt.computed=function(t,e,n,r){if(!t)return e;var o=Object.create(null);return T(o,t),e&&T(o,e),o},Rt.provide=kt;var $t=function(t,e){return void 0===e?t:e};function Pt(t,e,n){if("function"==typeof e&&(e=e.options),function(t,e){var n=t.props;if(n){var r,o,i={};if(Array.isArray(n))for(r=n.length;r--;)"string"==typeof(o=n[r])&&(i[x(o)]={type:null});else if(l(n))for(var a in n)o=n[a],i[x(a)]=l(o)?o:{type:o};else 0;t.props=i}}(e),function(t,e){var n=t.inject;if(n){var r=t.inject={};if(Array.isArray(n))for(var o=0;o<n.length;o++)r[n[o]]={from:n[o]};else if(l(n))for(var i in n){var a=n[i];r[i]=l(a)?T({from:i},a):{from:a}}else 0}}(e),function(t){var e=t.directives;if(e)for(var n in e){var r=e[n];"function"==typeof r&&(e[n]={bind:r,update:r})}}(e),!e._base&&(e.extends&&(t=Pt(t,e.extends,n)),e.mixins))for(var r=0,o=e.mixins.length;r<o;r++)t=Pt(t,e.mixins[r],n);var i,a={};for(i in t)s(i);for(i in e)_(t,i)||s(i);function s(r){var o=Rt[r]||$t;a[r]=o(t[r],e[r],n,r)}return a}function Ut(t,e,n,r){if("string"==typeof n){var o=t[e];if(_(o,n))return o[n];var i=x(n);if(_(o,i))return o[i];var a=w(i);return _(o,a)?o[a]:o[n]||o[i]||o[a]}}function Dt(t,e,n,r){var o=e[t],i=!_(n,t),a=n[t],s=Bt(Boolean,o.type);if(s>-1)if(i&&!_(o,"default"))a=!1;else if(""===a||a===C(t)){var c=Bt(String,o.type);(c<0||s<c)&&(a=!0)}if(void 0===a){a=function(t,e,n){if(!_(e,"default"))return;var r=e.default;0;if(t&&t.$options.propsData&&void 0===t.$options.propsData[n]&&void 0!==t._props[n])return t._props[n];return"function"==typeof r&&"Function"!==Mt(e.type)?r.call(t):r}(r,o,t);var u=At;xt(!0),Ot(a),xt(u)}return a}function Mt(t){var e=t&&t.toString().match(/^\s*function (\w+)/);return e?e[1]:""}function Ft(t,e){return Mt(t)===Mt(e)}function Bt(t,e){if(!Array.isArray(e))return Ft(e,t)?0:-1;for(var n=0,r=e.length;n<r;n++)if(Ft(e[n],t))return n;return-1}function Gt(t,e,n){pt();try{if(e)for(var r=e;r=r.$parent;){var o=r.$options.errorCaptured;if(o)for(var i=0;i<o.length;i++)try{if(!1===o[i].call(r,t,e,n))return}catch(t){qt(t,r,"errorCaptured hook")}}qt(t,e,n)}finally{dt()}}function Vt(t,e,n,r,o){var i;try{(i=n?t.apply(e,n):t.call(e))&&!i._isVue&&d(i)&&!i._handled&&(i.catch((function(t){return Gt(t,r,o+" (Promise/async)")})),i._handled=!0)}catch(t){Gt(t,r,o)}return i}function qt(t,e,n){if(M.errorHandler)try{return M.errorHandler.call(null,t,e,n)}catch(e){e!==t&&Ht(e,null,"config.errorHandler")}Ht(t,e,n)}function Ht(t,e,n){if(!H&&!X||"undefined"==typeof console)throw t;console.error(t)}var Xt,zt=!1,Wt=[],Yt=!1;function Kt(){Yt=!1;var t=Wt.slice(0);Wt.length=0;for(var e=0;e<t.length;e++)t[e]()}if("undefined"!=typeof Promise&&it(Promise)){var Jt=Promise.resolve();Xt=function(){Jt.then(Kt),Z&&setTimeout(N)},zt=!0}else if(Y||"undefined"==typeof MutationObserver||!it(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())Xt=void 0!==n&&it(n)?function(){n(Kt)}:function(){setTimeout(Kt,0)};else{var Zt=1,Qt=new MutationObserver(Kt),te=document.createTextNode(String(Zt));Qt.observe(te,{characterData:!0}),Xt=function(){Zt=(Zt+1)%2,te.data=String(Zt)},zt=!0}function ee(t,e){var n;if(Wt.push((function(){if(t)try{t.call(e)}catch(t){Gt(t,e,"nextTick")}else n&&n(e)})),Yt||(Yt=!0,Xt()),!t&&"undefined"!=typeof Promise)return new Promise((function(t){n=t}))}var ne=new at;function re(t){!function t(e,n){var r,o,i=Array.isArray(e);if(!i&&!c(e)||Object.isFrozen(e)||e instanceof ht)return;if(e.__ob__){var a=e.__ob__.dep.id;if(n.has(a))return;n.add(a)}if(i)for(r=e.length;r--;)t(e[r],n);else for(o=Object.keys(e),r=o.length;r--;)t(e[o[r]],n)}(t,ne),ne.clear()}var oe=E((function(t){var e="&"===t.charAt(0),n="~"===(t=e?t.slice(1):t).charAt(0),r="!"===(t=n?t.slice(1):t).charAt(0);return{name:t=r?t.slice(1):t,once:n,capture:r,passive:e}}));function ie(t,e){function n(){var t=arguments,r=n.fns;if(!Array.isArray(r))return Vt(r,null,arguments,e,"v-on handler");for(var o=r.slice(),i=0;i<o.length;i++)Vt(o[i],null,t,e,"v-on handler")}return n.fns=t,n}function ae(t,e,n,r,i,s){var c,u,l,f;for(c in t)u=t[c],l=e[c],f=oe(c),o(u)||(o(l)?(o(u.fns)&&(u=t[c]=ie(u,s)),a(f.once)&&(u=t[c]=i(f.name,u,f.capture)),n(f.name,u,f.capture,f.passive,f.params)):u!==l&&(l.fns=u,t[c]=l));for(c in e)o(t[c])&&r((f=oe(c)).name,e[c],f.capture)}function se(t,e,n){var r;t instanceof ht&&(t=t.data.hook||(t.data.hook={}));var s=t[e];function c(){n.apply(this,arguments),g(r.fns,c)}o(s)?r=ie([c]):i(s.fns)&&a(s.merged)?(r=s).fns.push(c):r=ie([s,c]),r.merged=!0,t[e]=r}function ce(t,e,n,r,o){if(i(e)){if(_(e,n))return t[n]=e[n],o||delete e[n],!0;if(_(e,r))return t[n]=e[r],o||delete e[r],!0}return!1}function ue(t){return s(t)?[yt(t)]:Array.isArray(t)?function t(e,n){var r,c,u,l,f=[];for(r=0;r<e.length;r++)o(c=e[r])||"boolean"==typeof c||(u=f.length-1,l=f[u],Array.isArray(c)?c.length>0&&(le((c=t(c,(n||"")+"_"+r))[0])&&le(l)&&(f[u]=yt(l.text+c[0].text),c.shift()),f.push.apply(f,c)):s(c)?le(l)?f[u]=yt(l.text+c):""!==c&&f.push(yt(c)):le(c)&&le(l)?f[u]=yt(l.text+c.text):(a(e._isVList)&&i(c.tag)&&o(c.key)&&i(n)&&(c.key="__vlist"+n+"_"+r+"__"),f.push(c)));return f}(t):void 0}function le(t){return i(t)&&i(t.text)&&!1===t.isComment}function fe(t,e){if(t){for(var n=Object.create(null),r=st?Reflect.ownKeys(t):Object.keys(t),o=0;o<r.length;o++){var i=r[o];if("__ob__"!==i){for(var a=t[i].from,s=e;s;){if(s._provided&&_(s._provided,a)){n[i]=s._provided[a];break}s=s.$parent}if(!s)if("default"in t[i]){var c=t[i].default;n[i]="function"==typeof c?c.call(e):c}else 0}}return n}}function pe(t,e){if(!t||!t.length)return{};for(var n={},r=0,o=t.length;r<o;r++){var i=t[r],a=i.data;if(a&&a.attrs&&a.attrs.slot&&delete a.attrs.slot,i.context!==e&&i.fnContext!==e||!a||null==a.slot)(n.default||(n.default=[])).push(i);else{var s=a.slot,c=n[s]||(n[s]=[]);"template"===i.tag?c.push.apply(c,i.children||[]):c.push(i)}}for(var u in n)n[u].every(de)&&delete n[u];return n}function de(t){return t.isComment&&!t.asyncFactory||" "===t.text}function he(t,e,n){var o,i=Object.keys(e).length>0,a=t?!!t.$stable:!i,s=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&n&&n!==r&&s===n.$key&&!i&&!n.$hasNormal)return n;for(var c in o={},t)t[c]&&"$"!==c[0]&&(o[c]=ve(e,c,t[c]))}else o={};for(var u in e)u in o||(o[u]=me(e,u));return t&&Object.isExtensible(t)&&(t._normalized=o),B(o,"$stable",a),B(o,"$key",s),B(o,"$hasNormal",i),o}function ve(t,e,n){var r=function(){var t=arguments.length?n.apply(null,arguments):n({});return(t=t&&"object"==typeof t&&!Array.isArray(t)?[t]:ue(t))&&(0===t.length||1===t.length&&t[0].isComment)?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:r,enumerable:!0,configurable:!0}),r}function me(t,e){return function(){return t[e]}}function ye(t,e){var n,r,o,a,s;if(Array.isArray(t)||"string"==typeof t)for(n=new Array(t.length),r=0,o=t.length;r<o;r++)n[r]=e(t[r],r);else if("number"==typeof t)for(n=new Array(t),r=0;r<t;r++)n[r]=e(r+1,r);else if(c(t))if(st&&t[Symbol.iterator]){n=[];for(var u=t[Symbol.iterator](),l=u.next();!l.done;)n.push(e(l.value,n.length)),l=u.next()}else for(a=Object.keys(t),n=new Array(a.length),r=0,o=a.length;r<o;r++)s=a[r],n[r]=e(t[s],s,r);return i(n)||(n=[]),n._isVList=!0,n}function ge(t,e,n,r){var o,i=this.$scopedSlots[t];i?(n=n||{},r&&(n=T(T({},r),n)),o=i(n)||e):o=this.$slots[t]||e;var a=n&&n.slot;return a?this.$createElement("template",{slot:a},o):o}function be(t){return Ut(this.$options,"filters",t)||L}function _e(t,e){return Array.isArray(t)?-1===t.indexOf(e):t!==e}function Ee(t,e,n,r,o){var i=M.keyCodes[e]||n;return o&&r&&!M.keyCodes[e]?_e(o,r):i?_e(i,t):r?C(r)!==e:void 0}function Ae(t,e,n,r,o){if(n)if(c(n)){var i;Array.isArray(n)&&(n=R(n));var a=function(a){if("class"===a||"style"===a||y(a))i=t;else{var s=t.attrs&&t.attrs.type;i=r||M.mustUseProp(e,s,a)?t.domProps||(t.domProps={}):t.attrs||(t.attrs={})}var c=x(a),u=C(a);c in i||u in i||(i[a]=n[a],o&&((t.on||(t.on={}))["update:"+a]=function(t){n[a]=t}))};for(var s in n)a(s)}else;return t}function xe(t,e){var n=this._staticTrees||(this._staticTrees=[]),r=n[t];return r&&!e||Oe(r=n[t]=this.$options.staticRenderFns[t].call(this._renderProxy,null,this),"__static__"+t,!1),r}function we(t,e,n){return Oe(t,"__once__"+e+(n?"_"+n:""),!0),t}function Oe(t,e,n){if(Array.isArray(t))for(var r=0;r<t.length;r++)t[r]&&"string"!=typeof t[r]&&Ce(t[r],e+"_"+r,n);else Ce(t,e,n)}function Ce(t,e,n){t.isStatic=!0,t.key=e,t.isOnce=n}function Se(t,e){if(e)if(l(e)){var n=t.on=t.on?T({},t.on):{};for(var r in e){var o=n[r],i=e[r];n[r]=o?[].concat(o,i):i}}else;return t}function Ie(t,e,n,r){e=e||{$stable:!n};for(var o=0;o<t.length;o++){var i=t[o];Array.isArray(i)?Ie(i,e,n):i&&(i.proxy&&(i.fn.proxy=!0),e[i.key]=i.fn)}return r&&(e.$key=r),e}function Te(t,e){for(var n=0;n<e.length;n+=2){var r=e[n];"string"==typeof r&&r&&(t[e[n]]=e[n+1])}return t}function Re(t,e){return"string"==typeof t?e+t:t}function Ne(t){t._o=we,t._n=v,t._s=h,t._l=ye,t._t=ge,t._q=j,t._i=$,t._m=xe,t._f=be,t._k=Ee,t._b=Ae,t._v=yt,t._e=mt,t._u=Ie,t._g=Se,t._d=Te,t._p=Re}function ke(t,e,n,o,i){var s,c=this,u=i.options;_(o,"_uid")?(s=Object.create(o))._original=o:(s=o,o=o._original);var l=a(u._compiled),f=!l;this.data=t,this.props=e,this.children=n,this.parent=o,this.listeners=t.on||r,this.injections=fe(u.inject,o),this.slots=function(){return c.$slots||he(t.scopedSlots,c.$slots=pe(n,o)),c.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return he(t.scopedSlots,this.slots())}}),l&&(this.$options=u,this.$slots=this.slots(),this.$scopedSlots=he(t.scopedSlots,this.$slots)),u._scopeId?this._c=function(t,e,n,r){var i=Me(s,t,e,n,r,f);return i&&!Array.isArray(i)&&(i.fnScopeId=u._scopeId,i.fnContext=o),i}:this._c=function(t,e,n,r){return Me(s,t,e,n,r,f)}}function Le(t,e,n,r,o){var i=gt(t);return i.fnContext=n,i.fnOptions=r,e.slot&&((i.data||(i.data={})).slot=e.slot),i}function je(t,e){for(var n in e)t[x(n)]=e[n]}Ne(ke.prototype);var $e={init:function(t,e){if(t.componentInstance&&!t.componentInstance._isDestroyed&&t.data.keepAlive){var n=t;$e.prepatch(n,n)}else{(t.componentInstance=function(t,e){var n={_isComponent:!0,_parentVnode:t,parent:e},r=t.data.inlineTemplate;i(r)&&(n.render=r.render,n.staticRenderFns=r.staticRenderFns);return new t.componentOptions.Ctor(n)}(t,Ye)).$mount(e?t.elm:void 0,e)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,o,i){0;var a=o.data.scopedSlots,s=t.$scopedSlots,c=!!(a&&!a.$stable||s!==r&&!s.$stable||a&&t.$scopedSlots.$key!==a.$key),u=!!(i||t.$options._renderChildren||c);t.$options._parentVnode=o,t.$vnode=o,t._vnode&&(t._vnode.parent=o);if(t.$options._renderChildren=i,t.$attrs=o.data.attrs||r,t.$listeners=n||r,e&&t.$options.props){xt(!1);for(var l=t._props,f=t.$options._propKeys||[],p=0;p<f.length;p++){var d=f[p],h=t.$options.props;l[d]=Dt(d,h,e,t)}xt(!0),t.$options.propsData=e}n=n||r;var v=t.$options._parentListeners;t.$options._parentListeners=n,We(t,n,v),u&&(t.$slots=pe(i,o.context),t.$forceUpdate());0}(e.componentInstance=t.componentInstance,n.propsData,n.listeners,e,n.children)},insert:function(t){var e,n=t.context,r=t.componentInstance;r._isMounted||(r._isMounted=!0,Qe(r,"mounted")),t.data.keepAlive&&(n._isMounted?((e=r)._inactive=!1,en.push(e)):Ze(r,!0))},destroy:function(t){var e=t.componentInstance;e._isDestroyed||(t.data.keepAlive?function t(e,n){if(n&&(e._directInactive=!0,Je(e)))return;if(!e._inactive){e._inactive=!0;for(var r=0;r<e.$children.length;r++)t(e.$children[r]);Qe(e,"deactivated")}}(e,!0):e.$destroy())}},Pe=Object.keys($e);function Ue(t,e,n,s,u){if(!o(t)){var l=n.$options._base;if(c(t)&&(t=l.extend(t)),"function"==typeof t){var f;if(o(t.cid)&&void 0===(t=function(t,e){if(a(t.error)&&i(t.errorComp))return t.errorComp;if(i(t.resolved))return t.resolved;var n=Be;n&&i(t.owners)&&-1===t.owners.indexOf(n)&&t.owners.push(n);if(a(t.loading)&&i(t.loadingComp))return t.loadingComp;if(n&&!i(t.owners)){var r=t.owners=[n],s=!0,u=null,l=null;n.$on("hook:destroyed",(function(){return g(r,n)}));var f=function(t){for(var e=0,n=r.length;e<n;e++)r[e].$forceUpdate();t&&(r.length=0,null!==u&&(clearTimeout(u),u=null),null!==l&&(clearTimeout(l),l=null))},p=P((function(n){t.resolved=Ge(n,e),s?r.length=0:f(!0)})),h=P((function(e){i(t.errorComp)&&(t.error=!0,f(!0))})),v=t(p,h);return c(v)&&(d(v)?o(t.resolved)&&v.then(p,h):d(v.component)&&(v.component.then(p,h),i(v.error)&&(t.errorComp=Ge(v.error,e)),i(v.loading)&&(t.loadingComp=Ge(v.loading,e),0===v.delay?t.loading=!0:u=setTimeout((function(){u=null,o(t.resolved)&&o(t.error)&&(t.loading=!0,f(!1))}),v.delay||200)),i(v.timeout)&&(l=setTimeout((function(){l=null,o(t.resolved)&&h(null)}),v.timeout)))),s=!1,t.loading?t.loadingComp:t.resolved}}(f=t,l)))return function(t,e,n,r,o){var i=mt();return i.asyncFactory=t,i.asyncMeta={data:e,context:n,children:r,tag:o},i}(f,e,n,s,u);e=e||{},An(t),i(e.model)&&function(t,e){var n=t.model&&t.model.prop||"value",r=t.model&&t.model.event||"input";(e.attrs||(e.attrs={}))[n]=e.model.value;var o=e.on||(e.on={}),a=o[r],s=e.model.callback;i(a)?(Array.isArray(a)?-1===a.indexOf(s):a!==s)&&(o[r]=[s].concat(a)):o[r]=s}(t.options,e);var p=function(t,e,n){var r=e.options.props;if(!o(r)){var a={},s=t.attrs,c=t.props;if(i(s)||i(c))for(var u in r){var l=C(u);ce(a,c,u,l,!0)||ce(a,s,u,l,!1)}return a}}(e,t);if(a(t.options.functional))return function(t,e,n,o,a){var s=t.options,c={},u=s.props;if(i(u))for(var l in u)c[l]=Dt(l,u,e||r);else i(n.attrs)&&je(c,n.attrs),i(n.props)&&je(c,n.props);var f=new ke(n,c,a,o,t),p=s.render.call(null,f._c,f);if(p instanceof ht)return Le(p,n,f.parent,s,f);if(Array.isArray(p)){for(var d=ue(p)||[],h=new Array(d.length),v=0;v<d.length;v++)h[v]=Le(d[v],n,f.parent,s,f);return h}}(t,p,e,n,s);var h=e.on;if(e.on=e.nativeOn,a(t.options.abstract)){var v=e.slot;e={},v&&(e.slot=v)}!function(t){for(var e=t.hook||(t.hook={}),n=0;n<Pe.length;n++){var r=Pe[n],o=e[r],i=$e[r];o===i||o&&o._merged||(e[r]=o?De(i,o):i)}}(e);var m=t.options.name||u;return new ht("vue-component-"+t.cid+(m?"-"+m:""),e,void 0,void 0,void 0,n,{Ctor:t,propsData:p,listeners:h,tag:u,children:s},f)}}}function De(t,e){var n=function(n,r){t(n,r),e(n,r)};return n._merged=!0,n}function Me(t,e,n,r,u,l){return(Array.isArray(n)||s(n))&&(u=r,r=n,n=void 0),a(l)&&(u=2),function(t,e,n,r,s){if(i(n)&&i(n.__ob__))return mt();i(n)&&i(n.is)&&(e=n.is);if(!e)return mt();0;Array.isArray(r)&&"function"==typeof r[0]&&((n=n||{}).scopedSlots={default:r[0]},r.length=0);2===s?r=ue(r):1===s&&(r=function(t){for(var e=0;e<t.length;e++)if(Array.isArray(t[e]))return Array.prototype.concat.apply([],t);return t}(r));var u,l;if("string"==typeof e){var f;l=t.$vnode&&t.$vnode.ns||M.getTagNamespace(e),u=M.isReservedTag(e)?new ht(M.parsePlatformTagName(e),n,r,void 0,void 0,t):n&&n.pre||!i(f=Ut(t.$options,"components",e))?new ht(e,n,r,void 0,void 0,t):Ue(f,n,t,r,e)}else u=Ue(e,n,t,r);return Array.isArray(u)?u:i(u)?(i(l)&&function t(e,n,r){e.ns=n,"foreignObject"===e.tag&&(n=void 0,r=!0);if(i(e.children))for(var s=0,c=e.children.length;s<c;s++){var u=e.children[s];i(u.tag)&&(o(u.ns)||a(r)&&"svg"!==u.tag)&&t(u,n,r)}}(u,l),i(n)&&function(t){c(t.style)&&re(t.style);c(t.class)&&re(t.class)}(n),u):mt()}(t,e,n,r,u)}var Fe,Be=null;function Ge(t,e){return(t.__esModule||st&&"Module"===t[Symbol.toStringTag])&&(t=t.default),c(t)?e.extend(t):t}function Ve(t){return t.isComment&&t.asyncFactory}function qe(t){if(Array.isArray(t))for(var e=0;e<t.length;e++){var n=t[e];if(i(n)&&(i(n.componentOptions)||Ve(n)))return n}}function He(t,e){Fe.$on(t,e)}function Xe(t,e){Fe.$off(t,e)}function ze(t,e){var n=Fe;return function r(){var o=e.apply(null,arguments);null!==o&&n.$off(t,r)}}function We(t,e,n){Fe=t,ae(e,n||{},He,Xe,ze,t),Fe=void 0}var Ye=null;function Ke(t){var e=Ye;return Ye=t,function(){Ye=e}}function Je(t){for(;t&&(t=t.$parent);)if(t._inactive)return!0;return!1}function Ze(t,e){if(e){if(t._directInactive=!1,Je(t))return}else if(t._directInactive)return;if(t._inactive||null===t._inactive){t._inactive=!1;for(var n=0;n<t.$children.length;n++)Ze(t.$children[n]);Qe(t,"activated")}}function Qe(t,e){pt();var n=t.$options[e],r=e+" hook";if(n)for(var o=0,i=n.length;o<i;o++)Vt(n[o],t,null,t,r);t._hasHookEvent&&t.$emit("hook:"+e),dt()}var tn=[],en=[],nn={},rn=!1,on=!1,an=0;var sn=0,cn=Date.now;if(H&&!Y){var un=window.performance;un&&"function"==typeof un.now&&cn()>document.createEvent("Event").timeStamp&&(cn=function(){return un.now()})}function ln(){var t,e;for(sn=cn(),on=!0,tn.sort((function(t,e){return t.id-e.id})),an=0;an<tn.length;an++)(t=tn[an]).before&&t.before(),e=t.id,nn[e]=null,t.run();var n=en.slice(),r=tn.slice();an=tn.length=en.length=0,nn={},rn=on=!1,function(t){for(var e=0;e<t.length;e++)t[e]._inactive=!0,Ze(t[e],!0)}(n),function(t){var e=t.length;for(;e--;){var n=t[e],r=n.vm;r._watcher===n&&r._isMounted&&!r._isDestroyed&&Qe(r,"updated")}}(r),ot&&M.devtools&&ot.emit("flush")}var fn=0,pn=function(t,e,n,r,o){this.vm=t,o&&(t._watcher=this),t._watchers.push(this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync,this.before=r.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++fn,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new at,this.newDepIds=new at,this.expression="","function"==typeof e?this.getter=e:(this.getter=function(t){if(!G.test(t)){var e=t.split(".");return function(t){for(var n=0;n<e.length;n++){if(!t)return;t=t[e[n]]}return t}}}(e),this.getter||(this.getter=N)),this.value=this.lazy?void 0:this.get()};pn.prototype.get=function(){var t;pt(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(t){if(!this.user)throw t;Gt(t,e,'getter for watcher "'+this.expression+'"')}finally{this.deep&&re(t),dt(),this.cleanupDeps()}return t},pn.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},pn.prototype.cleanupDeps=function(){for(var t=this.deps.length;t--;){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},pn.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():function(t){var e=t.id;if(null==nn[e]){if(nn[e]=!0,on){for(var n=tn.length-1;n>an&&tn[n].id>t.id;)n--;tn.splice(n+1,0,t)}else tn.push(t);rn||(rn=!0,ee(ln))}}(this)},pn.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||c(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){Gt(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},pn.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},pn.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},pn.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var dn={enumerable:!0,configurable:!0,get:N,set:N};function hn(t,e,n){dn.get=function(){return this[e][n]},dn.set=function(t){this[e][n]=t},Object.defineProperty(t,n,dn)}function vn(t){t._watchers=[];var e=t.$options;e.props&&function(t,e){var n=t.$options.propsData||{},r=t._props={},o=t.$options._propKeys=[];t.$parent&&xt(!1);var i=function(i){o.push(i);var a=Dt(i,e,n,t);Ct(r,i,a),i in t||hn(t,"_props",i)};for(var a in e)i(a);xt(!0)}(t,e.props),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]="function"!=typeof e[n]?N:S(e[n],t)}(t,e.methods),e.data?function(t){var e=t.$options.data;l(e=t._data="function"==typeof e?function(t,e){pt();try{return t.call(e,e)}catch(t){return Gt(t,e,"data()"),{}}finally{dt()}}(e,t):e||{})||(e={});var n=Object.keys(e),r=t.$options.props,o=(t.$options.methods,n.length);for(;o--;){var i=n[o];0,r&&_(r,i)||(a=void 0,36!==(a=(i+"").charCodeAt(0))&&95!==a&&hn(t,"_data",i))}var a;Ot(e,!0)}(t):Ot(t._data={},!0),e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),r=rt();for(var o in e){var i=e[o],a="function"==typeof i?i:i.get;0,r||(n[o]=new pn(t,a||N,N,mn)),o in t||yn(t,o,i)}}(t,e.computed),e.watch&&e.watch!==tt&&function(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var o=0;o<r.length;o++)_n(t,n,r[o]);else _n(t,n,r)}}(t,e.watch)}var mn={lazy:!0};function yn(t,e,n){var r=!rt();"function"==typeof n?(dn.get=r?gn(e):bn(n),dn.set=N):(dn.get=n.get?r&&!1!==n.cache?gn(e):bn(n.get):N,dn.set=n.set||N),Object.defineProperty(t,e,dn)}function gn(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),lt.target&&e.depend(),e.value}}function bn(t){return function(){return t.call(this,this)}}function _n(t,e,n,r){return l(n)&&(r=n,n=n.handler),"string"==typeof n&&(n=t[n]),t.$watch(e,n,r)}var En=0;function An(t){var e=t.options;if(t.super){var n=An(t.super);if(n!==t.superOptions){t.superOptions=n;var r=function(t){var e,n=t.options,r=t.sealedOptions;for(var o in n)n[o]!==r[o]&&(e||(e={}),e[o]=n[o]);return e}(t);r&&T(t.extendOptions,r),(e=t.options=Pt(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function xn(t){this._init(t)}function wn(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,o=t._Ctor||(t._Ctor={});if(o[r])return o[r];var i=t.name||n.options.name;var a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=Pt(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)hn(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)yn(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,U.forEach((function(t){a[t]=n[t]})),i&&(a.options.components[i]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=T({},a.options),o[r]=a,a}}function On(t){return t&&(t.Ctor.options.name||t.tag)}function Cn(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!f(t)&&t.test(e)}function Sn(t,e){var n=t.cache,r=t.keys,o=t._vnode;for(var i in n){var a=n[i];if(a){var s=On(a.componentOptions);s&&!e(s)&&In(n,i,r,o)}}}function In(t,e,n,r){var o=t[e];!o||r&&o.tag===r.tag||o.componentInstance.$destroy(),t[e]=null,g(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=En++,e._isVue=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),r=e._parentVnode;n.parent=e.parent,n._parentVnode=r;var o=r.componentOptions;n.propsData=o.propsData,n._parentListeners=o.listeners,n._renderChildren=o.children,n._componentTag=o.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=Pt(An(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&We(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,n=t.$vnode=e._parentVnode,o=n&&n.context;t.$slots=pe(e._renderChildren,o),t.$scopedSlots=r,t._c=function(e,n,r,o){return Me(t,e,n,r,o,!1)},t.$createElement=function(e,n,r,o){return Me(t,e,n,r,o,!0)};var i=n&&n.data;Ct(t,"$attrs",i&&i.attrs||r,null,!0),Ct(t,"$listeners",e._parentListeners||r,null,!0)}(e),Qe(e,"beforeCreate"),function(t){var e=fe(t.$options.inject,t);e&&(xt(!1),Object.keys(e).forEach((function(n){Ct(t,n,e[n])})),xt(!0))}(e),vn(e),function(t){var e=t.$options.provide;e&&(t._provided="function"==typeof e?e.call(t):e)}(e),Qe(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(xn),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=St,t.prototype.$delete=It,t.prototype.$watch=function(t,e,n){if(l(e))return _n(this,t,e,n);(n=n||{}).user=!0;var r=new pn(this,t,e,n);if(n.immediate)try{e.call(this,r.value)}catch(t){Gt(t,this,'callback for immediate watcher "'+r.expression+'"')}return function(){r.teardown()}}}(xn),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){var r=this;if(Array.isArray(t))for(var o=0,i=t.length;o<i;o++)r.$on(t[o],n);else(r._events[t]||(r._events[t]=[])).push(n),e.test(t)&&(r._hasHookEvent=!0);return r},t.prototype.$once=function(t,e){var n=this;function r(){n.$off(t,r),e.apply(n,arguments)}return r.fn=e,n.$on(t,r),n},t.prototype.$off=function(t,e){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(Array.isArray(t)){for(var r=0,o=t.length;r<o;r++)n.$off(t[r],e);return n}var i,a=n._events[t];if(!a)return n;if(!e)return n._events[t]=null,n;for(var s=a.length;s--;)if((i=a[s])===e||i.fn===e){a.splice(s,1);break}return n},t.prototype.$emit=function(t){var e=this,n=e._events[t];if(n){n=n.length>1?I(n):n;for(var r=I(arguments,1),o='event handler for "'+t+'"',i=0,a=n.length;i<a;i++)Vt(n[i],e,r,e,o)}return e}}(xn),function(t){t.prototype._update=function(t,e){var n=this,r=n.$el,o=n._vnode,i=Ke(n);n._vnode=t,n.$el=o?n.__patch__(o,t):n.__patch__(n.$el,t,e,!1),i(),r&&(r.__vue__=null),n.$el&&(n.$el.__vue__=n),n.$vnode&&n.$parent&&n.$vnode===n.$parent._vnode&&(n.$parent.$el=n.$el)},t.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},t.prototype.$destroy=function(){var t=this;if(!t._isBeingDestroyed){Qe(t,"beforeDestroy"),t._isBeingDestroyed=!0;var e=t.$parent;!e||e._isBeingDestroyed||t.$options.abstract||g(e.$children,t),t._watcher&&t._watcher.teardown();for(var n=t._watchers.length;n--;)t._watchers[n].teardown();t._data.__ob__&&t._data.__ob__.vmCount--,t._isDestroyed=!0,t.__patch__(t._vnode,null),Qe(t,"destroyed"),t.$off(),t.$el&&(t.$el.__vue__=null),t.$vnode&&(t.$vnode.parent=null)}}}(xn),function(t){Ne(t.prototype),t.prototype.$nextTick=function(t){return ee(t,this)},t.prototype._render=function(){var t,e=this,n=e.$options,r=n.render,o=n._parentVnode;o&&(e.$scopedSlots=he(o.data.scopedSlots,e.$slots,e.$scopedSlots)),e.$vnode=o;try{Be=e,t=r.call(e._renderProxy,e.$createElement)}catch(n){Gt(n,e,"render"),t=e._vnode}finally{Be=null}return Array.isArray(t)&&1===t.length&&(t=t[0]),t instanceof ht||(t=mt()),t.parent=o,t}}(xn);var Tn=[String,RegExp,Array],Rn={KeepAlive:{name:"keep-alive",abstract:!0,props:{include:Tn,exclude:Tn,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)In(this.cache,t,this.keys)},mounted:function(){var t=this;this.$watch("include",(function(e){Sn(t,(function(t){return Cn(e,t)}))})),this.$watch("exclude",(function(e){Sn(t,(function(t){return!Cn(e,t)}))}))},render:function(){var t=this.$slots.default,e=qe(t),n=e&&e.componentOptions;if(n){var r=On(n),o=this.include,i=this.exclude;if(o&&(!r||!Cn(o,r))||i&&r&&Cn(i,r))return e;var a=this.cache,s=this.keys,c=null==e.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):e.key;a[c]?(e.componentInstance=a[c].componentInstance,g(s,c),s.push(c)):(a[c]=e,s.push(c),this.max&&s.length>parseInt(this.max)&&In(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return M}};Object.defineProperty(t,"config",e),t.util={warn:ct,extend:T,mergeOptions:Pt,defineReactive:Ct},t.set=St,t.delete=It,t.nextTick=ee,t.observable=function(t){return Ot(t),t},t.options=Object.create(null),U.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,T(t.options.components,Rn),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=I(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Pt(this.options,t),this}}(t),wn(t),function(t){U.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&l(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}(t)}(xn),Object.defineProperty(xn.prototype,"$isServer",{get:rt}),Object.defineProperty(xn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(xn,"FunctionalRenderContext",{value:ke}),xn.version="2.6.12";var Nn=m("style,class"),kn=m("input,textarea,option,select,progress"),Ln=m("contenteditable,draggable,spellcheck"),jn=m("events,caret,typing,plaintext-only"),$n=m("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Pn="http://www.w3.org/1999/xlink",Un=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Dn=function(t){return Un(t)?t.slice(6,t.length):""},Mn=function(t){return null==t||!1===t};function Fn(t){for(var e=t.data,n=t,r=t;i(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(e=Bn(r.data,e));for(;i(n=n.parent);)n&&n.data&&(e=Bn(e,n.data));return function(t,e){if(i(t)||i(e))return Gn(t,Vn(e));return""}(e.staticClass,e.class)}function Bn(t,e){return{staticClass:Gn(t.staticClass,e.staticClass),class:i(t.class)?[t.class,e.class]:e.class}}function Gn(t,e){return t?e?t+" "+e:t:e||""}function Vn(t){return Array.isArray(t)?function(t){for(var e,n="",r=0,o=t.length;r<o;r++)i(e=Vn(t[r]))&&""!==e&&(n&&(n+=" "),n+=e);return n}(t):c(t)?function(t){var e="";for(var n in t)t[n]&&(e&&(e+=" "),e+=n);return e}(t):"string"==typeof t?t:""}var qn={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},Hn=m("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),Xn=m("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),zn=function(t){return Hn(t)||Xn(t)};var Wn=Object.create(null);var Yn=m("text,number,password,search,email,tel,url");var Kn=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t||e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n},createElementNS:function(t,e){return document.createElementNS(qn[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setStyleScope:function(t,e){t.setAttribute(e,"")}}),Jn={create:function(t,e){Zn(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Zn(t,!0),Zn(e))},destroy:function(t){Zn(t,!0)}};function Zn(t,e){var n=t.data.ref;if(i(n)){var r=t.context,o=t.componentInstance||t.elm,a=r.$refs;e?Array.isArray(a[n])?g(a[n],o):a[n]===o&&(a[n]=void 0):t.data.refInFor?Array.isArray(a[n])?a[n].indexOf(o)<0&&a[n].push(o):a[n]=[o]:a[n]=o}}var Qn=new ht("",{},[]),tr=["create","activate","update","remove","destroy"];function er(t,e){return t.key===e.key&&(t.tag===e.tag&&t.isComment===e.isComment&&i(t.data)===i(e.data)&&function(t,e){if("input"!==t.tag)return!0;var n,r=i(n=t.data)&&i(n=n.attrs)&&n.type,o=i(n=e.data)&&i(n=n.attrs)&&n.type;return r===o||Yn(r)&&Yn(o)}(t,e)||a(t.isAsyncPlaceholder)&&t.asyncFactory===e.asyncFactory&&o(e.asyncFactory.error))}function nr(t,e,n){var r,o,a={};for(r=e;r<=n;++r)i(o=t[r].key)&&(a[o]=r);return a}var rr={create:or,update:or,destroy:function(t){or(t,Qn)}};function or(t,e){(t.data.directives||e.data.directives)&&function(t,e){var n,r,o,i=t===Qn,a=e===Qn,s=ar(t.data.directives,t.context),c=ar(e.data.directives,e.context),u=[],l=[];for(n in c)r=s[n],o=c[n],r?(o.oldValue=r.value,o.oldArg=r.arg,cr(o,"update",e,t),o.def&&o.def.componentUpdated&&l.push(o)):(cr(o,"bind",e,t),o.def&&o.def.inserted&&u.push(o));if(u.length){var f=function(){for(var n=0;n<u.length;n++)cr(u[n],"inserted",e,t)};i?se(e,"insert",f):f()}l.length&&se(e,"postpatch",(function(){for(var n=0;n<l.length;n++)cr(l[n],"componentUpdated",e,t)}));if(!i)for(n in s)c[n]||cr(s[n],"unbind",t,t,a)}(t,e)}var ir=Object.create(null);function ar(t,e){var n,r,o=Object.create(null);if(!t)return o;for(n=0;n<t.length;n++)(r=t[n]).modifiers||(r.modifiers=ir),o[sr(r)]=r,r.def=Ut(e.$options,"directives",r.name);return o}function sr(t){return t.rawName||t.name+"."+Object.keys(t.modifiers||{}).join(".")}function cr(t,e,n,r,o){var i=t.def&&t.def[e];if(i)try{i(n.elm,t,n,r,o)}catch(r){Gt(r,n.context,"directive "+t.name+" "+e+" hook")}}var ur=[Jn,rr];function lr(t,e){var n=e.componentOptions;if(!(i(n)&&!1===n.Ctor.options.inheritAttrs||o(t.data.attrs)&&o(e.data.attrs))){var r,a,s=e.elm,c=t.data.attrs||{},u=e.data.attrs||{};for(r in i(u.__ob__)&&(u=e.data.attrs=T({},u)),u)a=u[r],c[r]!==a&&fr(s,r,a);for(r in(Y||J)&&u.value!==c.value&&fr(s,"value",u.value),c)o(u[r])&&(Un(r)?s.removeAttributeNS(Pn,Dn(r)):Ln(r)||s.removeAttribute(r))}}function fr(t,e,n){t.tagName.indexOf("-")>-1?pr(t,e,n):$n(e)?Mn(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):Ln(e)?t.setAttribute(e,function(t,e){return Mn(e)||"false"===e?"false":"contenteditable"===t&&jn(e)?e:"true"}(e,n)):Un(e)?Mn(n)?t.removeAttributeNS(Pn,Dn(e)):t.setAttributeNS(Pn,e,n):pr(t,e,n)}function pr(t,e,n){if(Mn(n))t.removeAttribute(e);else{if(Y&&!K&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var dr={create:lr,update:lr};function hr(t,e){var n=e.elm,r=e.data,a=t.data;if(!(o(r.staticClass)&&o(r.class)&&(o(a)||o(a.staticClass)&&o(a.class)))){var s=Fn(e),c=n._transitionClasses;i(c)&&(s=Gn(s,Vn(c))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var vr,mr={create:hr,update:hr};function yr(t,e,n){var r=vr;return function o(){var i=e.apply(null,arguments);null!==i&&_r(t,o,n,r)}}var gr=zt&&!(Q&&Number(Q[1])<=53);function br(t,e,n,r){if(gr){var o=sn,i=e;e=i._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=o||t.timeStamp<=0||t.target.ownerDocument!==document)return i.apply(this,arguments)}}vr.addEventListener(t,e,et?{capture:n,passive:r}:n)}function _r(t,e,n,r){(r||vr).removeEventListener(t,e._wrapper||e,n)}function Er(t,e){if(!o(t.data.on)||!o(e.data.on)){var n=e.data.on||{},r=t.data.on||{};vr=e.elm,function(t){if(i(t.__r)){var e=Y?"change":"input";t[e]=[].concat(t.__r,t[e]||[]),delete t.__r}i(t.__c)&&(t.change=[].concat(t.__c,t.change||[]),delete t.__c)}(n),ae(n,r,br,_r,yr,e.context),vr=void 0}}var Ar,xr={create:Er,update:Er};function wr(t,e){if(!o(t.data.domProps)||!o(e.data.domProps)){var n,r,a=e.elm,s=t.data.domProps||{},c=e.data.domProps||{};for(n in i(c.__ob__)&&(c=e.data.domProps=T({},c)),s)n in c||(a[n]="");for(n in c){if(r=c[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),r===s[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===n&&"PROGRESS"!==a.tagName){a._value=r;var u=o(r)?"":String(r);Or(a,u)&&(a.value=u)}else if("innerHTML"===n&&Xn(a.tagName)&&o(a.innerHTML)){(Ar=Ar||document.createElement("div")).innerHTML="<svg>"+r+"</svg>";for(var l=Ar.firstChild;a.firstChild;)a.removeChild(a.firstChild);for(;l.firstChild;)a.appendChild(l.firstChild)}else if(r!==s[n])try{a[n]=r}catch(t){}}}}function Or(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,r=t._vModifiers;if(i(r)){if(r.number)return v(n)!==v(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var Cr={create:wr,update:wr},Sr=E((function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach((function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}})),e}));function Ir(t){var e=Tr(t.style);return t.staticStyle?T(t.staticStyle,e):e}function Tr(t){return Array.isArray(t)?R(t):"string"==typeof t?Sr(t):t}var Rr,Nr=/^--/,kr=/\s*!important$/,Lr=function(t,e,n){if(Nr.test(e))t.style.setProperty(e,n);else if(kr.test(n))t.style.setProperty(C(e),n.replace(kr,""),"important");else{var r=$r(e);if(Array.isArray(n))for(var o=0,i=n.length;o<i;o++)t.style[r]=n[o];else t.style[r]=n}},jr=["Webkit","Moz","ms"],$r=E((function(t){if(Rr=Rr||document.createElement("div").style,"filter"!==(t=x(t))&&t in Rr)return t;for(var e=t.charAt(0).toUpperCase()+t.slice(1),n=0;n<jr.length;n++){var r=jr[n]+e;if(r in Rr)return r}}));function Pr(t,e){var n=e.data,r=t.data;if(!(o(n.staticStyle)&&o(n.style)&&o(r.staticStyle)&&o(r.style))){var a,s,c=e.elm,u=r.staticStyle,l=r.normalizedStyle||r.style||{},f=u||l,p=Tr(e.data.style)||{};e.data.normalizedStyle=i(p.__ob__)?T({},p):p;var d=function(t,e){var n,r={};if(e)for(var o=t;o.componentInstance;)(o=o.componentInstance._vnode)&&o.data&&(n=Ir(o.data))&&T(r,n);(n=Ir(t.data))&&T(r,n);for(var i=t;i=i.parent;)i.data&&(n=Ir(i.data))&&T(r,n);return r}(e,!0);for(s in f)o(d[s])&&Lr(c,s,"");for(s in d)(a=d[s])!==f[s]&&Lr(c,s,null==a?"":a)}}var Ur={create:Pr,update:Pr},Dr=/\s+/;function Mr(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Dr).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function Fr(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Dr).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function Br(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&T(e,Gr(t.name||"v")),T(e,t),e}return"string"==typeof t?Gr(t):void 0}}var Gr=E((function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}})),Vr=H&&!K,qr="transition",Hr="transitionend",Xr="animation",zr="animationend";Vr&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(qr="WebkitTransition",Hr="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Xr="WebkitAnimation",zr="webkitAnimationEnd"));var Wr=H?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Yr(t){Wr((function(){Wr(t)}))}function Kr(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),Mr(t,e))}function Jr(t,e){t._transitionClasses&&g(t._transitionClasses,e),Fr(t,e)}function Zr(t,e,n){var r=to(t,e),o=r.type,i=r.timeout,a=r.propCount;if(!o)return n();var s="transition"===o?Hr:zr,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout((function(){c<a&&u()}),i+1),t.addEventListener(s,l)}var Qr=/\b(transform|all)(,|$)/;function to(t,e){var n,r=window.getComputedStyle(t),o=(r[qr+"Delay"]||"").split(", "),i=(r[qr+"Duration"]||"").split(", "),a=eo(o,i),s=(r[Xr+"Delay"]||"").split(", "),c=(r[Xr+"Duration"]||"").split(", "),u=eo(s,c),l=0,f=0;return"transition"===e?a>0&&(n="transition",l=a,f=i.length):"animation"===e?u>0&&(n="animation",l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?"transition":"animation":null)?"transition"===n?i.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:"transition"===n&&Qr.test(r[qr+"Property"])}}function eo(t,e){for(;t.length<e.length;)t=t.concat(t);return Math.max.apply(null,e.map((function(e,n){return no(e)+no(t[n])})))}function no(t){return 1e3*Number(t.slice(0,-1).replace(",","."))}function ro(t,e){var n=t.elm;i(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var r=Br(t.data.transition);if(!o(r)&&!i(n._enterCb)&&1===n.nodeType){for(var a=r.css,s=r.type,u=r.enterClass,l=r.enterToClass,f=r.enterActiveClass,p=r.appearClass,d=r.appearToClass,h=r.appearActiveClass,m=r.beforeEnter,y=r.enter,g=r.afterEnter,b=r.enterCancelled,_=r.beforeAppear,E=r.appear,A=r.afterAppear,x=r.appearCancelled,w=r.duration,O=Ye,C=Ye.$vnode;C&&C.parent;)O=C.context,C=C.parent;var S=!O._isMounted||!t.isRootInsert;if(!S||E||""===E){var I=S&&p?p:u,T=S&&h?h:f,R=S&&d?d:l,N=S&&_||m,k=S&&"function"==typeof E?E:y,L=S&&A||g,j=S&&x||b,$=v(c(w)?w.enter:w);0;var U=!1!==a&&!K,D=ao(k),M=n._enterCb=P((function(){U&&(Jr(n,R),Jr(n,T)),M.cancelled?(U&&Jr(n,I),j&&j(n)):L&&L(n),n._enterCb=null}));t.data.show||se(t,"insert",(function(){var e=n.parentNode,r=e&&e._pending&&e._pending[t.key];r&&r.tag===t.tag&&r.elm._leaveCb&&r.elm._leaveCb(),k&&k(n,M)})),N&&N(n),U&&(Kr(n,I),Kr(n,T),Yr((function(){Jr(n,I),M.cancelled||(Kr(n,R),D||(io($)?setTimeout(M,$):Zr(n,s,M)))}))),t.data.show&&(e&&e(),k&&k(n,M)),U||D||M()}}}function oo(t,e){var n=t.elm;i(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var r=Br(t.data.transition);if(o(r)||1!==n.nodeType)return e();if(!i(n._leaveCb)){var a=r.css,s=r.type,u=r.leaveClass,l=r.leaveToClass,f=r.leaveActiveClass,p=r.beforeLeave,d=r.leave,h=r.afterLeave,m=r.leaveCancelled,y=r.delayLeave,g=r.duration,b=!1!==a&&!K,_=ao(d),E=v(c(g)?g.leave:g);0;var A=n._leaveCb=P((function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[t.key]=null),b&&(Jr(n,l),Jr(n,f)),A.cancelled?(b&&Jr(n,u),m&&m(n)):(e(),h&&h(n)),n._leaveCb=null}));y?y(x):x()}function x(){A.cancelled||(!t.data.show&&n.parentNode&&((n.parentNode._pending||(n.parentNode._pending={}))[t.key]=t),p&&p(n),b&&(Kr(n,u),Kr(n,f),Yr((function(){Jr(n,u),A.cancelled||(Kr(n,l),_||(io(E)?setTimeout(A,E):Zr(n,s,A)))}))),d&&d(n,A),b||_||A())}}function io(t){return"number"==typeof t&&!isNaN(t)}function ao(t){if(o(t))return!1;var e=t.fns;return i(e)?ao(Array.isArray(e)?e[0]:e):(t._length||t.length)>1}function so(t,e){!0!==e.data.show&&ro(e)}var co=function(t){var e,n,r={},c=t.modules,u=t.nodeOps;for(e=0;e<tr.length;++e)for(r[tr[e]]=[],n=0;n<c.length;++n)i(c[n][tr[e]])&&r[tr[e]].push(c[n][tr[e]]);function l(t){var e=u.parentNode(t);i(e)&&u.removeChild(e,t)}function f(t,e,n,o,s,c,l){if(i(t.elm)&&i(c)&&(t=c[l]=gt(t)),t.isRootInsert=!s,!function(t,e,n,o){var s=t.data;if(i(s)){var c=i(t.componentInstance)&&s.keepAlive;if(i(s=s.hook)&&i(s=s.init)&&s(t,!1),i(t.componentInstance))return p(t,e),d(n,t.elm,o),a(c)&&function(t,e,n,o){var a,s=t;for(;s.componentInstance;)if(s=s.componentInstance._vnode,i(a=s.data)&&i(a=a.transition)){for(a=0;a<r.activate.length;++a)r.activate[a](Qn,s);e.push(s);break}d(n,t.elm,o)}(t,e,n,o),!0}}(t,e,n,o)){var f=t.data,v=t.children,m=t.tag;i(m)?(t.elm=t.ns?u.createElementNS(t.ns,m):u.createElement(m,t),g(t),h(t,v,e),i(f)&&y(t,e),d(n,t.elm,o)):a(t.isComment)?(t.elm=u.createComment(t.text),d(n,t.elm,o)):(t.elm=u.createTextNode(t.text),d(n,t.elm,o))}}function p(t,e){i(t.data.pendingInsert)&&(e.push.apply(e,t.data.pendingInsert),t.data.pendingInsert=null),t.elm=t.componentInstance.$el,v(t)?(y(t,e),g(t)):(Zn(t),e.push(t))}function d(t,e,n){i(t)&&(i(n)?u.parentNode(n)===t&&u.insertBefore(t,e,n):u.appendChild(t,e))}function h(t,e,n){if(Array.isArray(e)){0;for(var r=0;r<e.length;++r)f(e[r],n,t.elm,null,!0,e,r)}else s(t.text)&&u.appendChild(t.elm,u.createTextNode(String(t.text)))}function v(t){for(;t.componentInstance;)t=t.componentInstance._vnode;return i(t.tag)}function y(t,n){for(var o=0;o<r.create.length;++o)r.create[o](Qn,t);i(e=t.data.hook)&&(i(e.create)&&e.create(Qn,t),i(e.insert)&&n.push(t))}function g(t){var e;if(i(e=t.fnScopeId))u.setStyleScope(t.elm,e);else for(var n=t;n;)i(e=n.context)&&i(e=e.$options._scopeId)&&u.setStyleScope(t.elm,e),n=n.parent;i(e=Ye)&&e!==t.context&&e!==t.fnContext&&i(e=e.$options._scopeId)&&u.setStyleScope(t.elm,e)}function b(t,e,n,r,o,i){for(;r<=o;++r)f(n[r],i,t,e,!1,n,r)}function _(t){var e,n,o=t.data;if(i(o))for(i(e=o.hook)&&i(e=e.destroy)&&e(t),e=0;e<r.destroy.length;++e)r.destroy[e](t);if(i(e=t.children))for(n=0;n<t.children.length;++n)_(t.children[n])}function E(t,e,n){for(;e<=n;++e){var r=t[e];i(r)&&(i(r.tag)?(A(r),_(r)):l(r.elm))}}function A(t,e){if(i(e)||i(t.data)){var n,o=r.remove.length+1;for(i(e)?e.listeners+=o:e=function(t,e){function n(){0==--n.listeners&&l(t)}return n.listeners=e,n}(t.elm,o),i(n=t.componentInstance)&&i(n=n._vnode)&&i(n.data)&&A(n,e),n=0;n<r.remove.length;++n)r.remove[n](t,e);i(n=t.data.hook)&&i(n=n.remove)?n(t,e):e()}else l(t.elm)}function x(t,e,n,r){for(var o=n;o<r;o++){var a=e[o];if(i(a)&&er(t,a))return o}}function w(t,e,n,s,c,l){if(t!==e){i(e.elm)&&i(s)&&(e=s[c]=gt(e));var p=e.elm=t.elm;if(a(t.isAsyncPlaceholder))i(e.asyncFactory.resolved)?S(t.elm,e,n):e.isAsyncPlaceholder=!0;else if(a(e.isStatic)&&a(t.isStatic)&&e.key===t.key&&(a(e.isCloned)||a(e.isOnce)))e.componentInstance=t.componentInstance;else{var d,h=e.data;i(h)&&i(d=h.hook)&&i(d=d.prepatch)&&d(t,e);var m=t.children,y=e.children;if(i(h)&&v(e)){for(d=0;d<r.update.length;++d)r.update[d](t,e);i(d=h.hook)&&i(d=d.update)&&d(t,e)}o(e.text)?i(m)&&i(y)?m!==y&&function(t,e,n,r,a){var s,c,l,p=0,d=0,h=e.length-1,v=e[0],m=e[h],y=n.length-1,g=n[0],_=n[y],A=!a;for(0;p<=h&&d<=y;)o(v)?v=e[++p]:o(m)?m=e[--h]:er(v,g)?(w(v,g,r,n,d),v=e[++p],g=n[++d]):er(m,_)?(w(m,_,r,n,y),m=e[--h],_=n[--y]):er(v,_)?(w(v,_,r,n,y),A&&u.insertBefore(t,v.elm,u.nextSibling(m.elm)),v=e[++p],_=n[--y]):er(m,g)?(w(m,g,r,n,d),A&&u.insertBefore(t,m.elm,v.elm),m=e[--h],g=n[++d]):(o(s)&&(s=nr(e,p,h)),o(c=i(g.key)?s[g.key]:x(g,e,p,h))?f(g,r,t,v.elm,!1,n,d):er(l=e[c],g)?(w(l,g,r,n,d),e[c]=void 0,A&&u.insertBefore(t,l.elm,v.elm)):f(g,r,t,v.elm,!1,n,d),g=n[++d]);p>h?b(t,o(n[y+1])?null:n[y+1].elm,n,d,y,r):d>y&&E(e,p,h)}(p,m,y,n,l):i(y)?(i(t.text)&&u.setTextContent(p,""),b(p,null,y,0,y.length-1,n)):i(m)?E(m,0,m.length-1):i(t.text)&&u.setTextContent(p,""):t.text!==e.text&&u.setTextContent(p,e.text),i(h)&&i(d=h.hook)&&i(d=d.postpatch)&&d(t,e)}}}function O(t,e,n){if(a(n)&&i(t.parent))t.parent.data.pendingInsert=e;else for(var r=0;r<e.length;++r)e[r].data.hook.insert(e[r])}var C=m("attrs,class,staticClass,staticStyle,key");function S(t,e,n,r){var o,s=e.tag,c=e.data,u=e.children;if(r=r||c&&c.pre,e.elm=t,a(e.isComment)&&i(e.asyncFactory))return e.isAsyncPlaceholder=!0,!0;if(i(c)&&(i(o=c.hook)&&i(o=o.init)&&o(e,!0),i(o=e.componentInstance)))return p(e,n),!0;if(i(s)){if(i(u))if(t.hasChildNodes())if(i(o=c)&&i(o=o.domProps)&&i(o=o.innerHTML)){if(o!==t.innerHTML)return!1}else{for(var l=!0,f=t.firstChild,d=0;d<u.length;d++){if(!f||!S(f,u[d],n,r)){l=!1;break}f=f.nextSibling}if(!l||f)return!1}else h(e,u,n);if(i(c)){var v=!1;for(var m in c)if(!C(m)){v=!0,y(e,n);break}!v&&c.class&&re(c.class)}}else t.data!==e.text&&(t.data=e.text);return!0}return function(t,e,n,s){if(!o(e)){var c,l=!1,p=[];if(o(t))l=!0,f(e,p);else{var d=i(t.nodeType);if(!d&&er(t,e))w(t,e,p,null,null,s);else{if(d){if(1===t.nodeType&&t.hasAttribute("data-server-rendered")&&(t.removeAttribute("data-server-rendered"),n=!0),a(n)&&S(t,e,p))return O(e,p,!0),t;c=t,t=new ht(u.tagName(c).toLowerCase(),{},[],void 0,c)}var h=t.elm,m=u.parentNode(h);if(f(e,p,h._leaveCb?null:m,u.nextSibling(h)),i(e.parent))for(var y=e.parent,g=v(e);y;){for(var b=0;b<r.destroy.length;++b)r.destroy[b](y);if(y.elm=e.elm,g){for(var A=0;A<r.create.length;++A)r.create[A](Qn,y);var x=y.data.hook.insert;if(x.merged)for(var C=1;C<x.fns.length;C++)x.fns[C]()}else Zn(y);y=y.parent}i(m)?E([t],0,0):i(t.tag)&&_(t)}}return O(e,p,l),e.elm}i(t)&&_(t)}}({nodeOps:Kn,modules:[dr,mr,xr,Cr,Ur,H?{create:so,activate:so,remove:function(t,e){!0!==t.data.show?oo(t,e):e()}}:{}].concat(ur)});K&&document.addEventListener("selectionchange",(function(){var t=document.activeElement;t&&t.vmodel&&yo(t,"input")}));var uo={inserted:function(t,e,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?se(n,"postpatch",(function(){uo.componentUpdated(t,e,n)})):lo(t,e,n.context),t._vOptions=[].map.call(t.options,ho)):("textarea"===n.tag||Yn(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",vo),t.addEventListener("compositionend",mo),t.addEventListener("change",mo),K&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){lo(t,e,n.context);var r=t._vOptions,o=t._vOptions=[].map.call(t.options,ho);if(o.some((function(t,e){return!j(t,r[e])})))(t.multiple?e.value.some((function(t){return po(t,o)})):e.value!==e.oldValue&&po(e.value,o))&&yo(t,"change")}}};function lo(t,e,n){fo(t,e,n),(Y||J)&&setTimeout((function(){fo(t,e,n)}),0)}function fo(t,e,n){var r=e.value,o=t.multiple;if(!o||Array.isArray(r)){for(var i,a,s=0,c=t.options.length;s<c;s++)if(a=t.options[s],o)i=$(r,ho(a))>-1,a.selected!==i&&(a.selected=i);else if(j(ho(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));o||(t.selectedIndex=-1)}}function po(t,e){return e.every((function(e){return!j(e,t)}))}function ho(t){return"_value"in t?t._value:t.value}function vo(t){t.target.composing=!0}function mo(t){t.target.composing&&(t.target.composing=!1,yo(t.target,"input"))}function yo(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function go(t){return!t.componentInstance||t.data&&t.data.transition?t:go(t.componentInstance._vnode)}var bo={model:uo,show:{bind:function(t,e,n){var r=e.value,o=(n=go(n)).data&&n.data.transition,i=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&o?(n.data.show=!0,ro(n,(function(){t.style.display=i}))):t.style.display=r?i:"none"},update:function(t,e,n){var r=e.value;!r!=!e.oldValue&&((n=go(n)).data&&n.data.transition?(n.data.show=!0,r?ro(n,(function(){t.style.display=t.__vOriginalDisplay})):oo(n,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,r,o){o||(t.style.display=t.__vOriginalDisplay)}}},_o={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function Eo(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Eo(qe(e.children)):t}function Ao(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var o=n._parentListeners;for(var i in o)e[x(i)]=o[i];return e}function xo(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var wo=function(t){return t.tag||Ve(t)},Oo=function(t){return"show"===t.name},Co={name:"transition",props:_o,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(wo)).length){0;var r=this.mode;0;var o=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return o;var i=Eo(o);if(!i)return o;if(this._leaving)return xo(t,o);var a="__transition-"+this._uid+"-";i.key=null==i.key?i.isComment?a+"comment":a+i.tag:s(i.key)?0===String(i.key).indexOf(a)?i.key:a+i.key:i.key;var c=(i.data||(i.data={})).transition=Ao(this),u=this._vnode,l=Eo(u);if(i.data.directives&&i.data.directives.some(Oo)&&(i.data.show=!0),l&&l.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(i,l)&&!Ve(l)&&(!l.componentInstance||!l.componentInstance._vnode.isComment)){var f=l.data.transition=T({},c);if("out-in"===r)return this._leaving=!0,se(f,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),xo(t,o);if("in-out"===r){if(Ve(i))return u;var p,d=function(){p()};se(c,"afterEnter",d),se(c,"enterCancelled",d),se(f,"delayLeave",(function(t){p=t}))}}return o}}},So=T({tag:String,moveClass:String},_o);function Io(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function To(t){t.data.newPos=t.elm.getBoundingClientRect()}function Ro(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,o=e.top-n.top;if(r||o){t.data.moved=!0;var i=t.elm.style;i.transform=i.WebkitTransform="translate("+r+"px,"+o+"px)",i.transitionDuration="0s"}}delete So.mode;var No={Transition:Co,TransitionGroup:{props:So,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var o=Ke(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,o(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,o=this.$slots.default||[],i=this.children=[],a=Ao(this),s=0;s<o.length;s++){var c=o[s];if(c.tag)if(null!=c.key&&0!==String(c.key).indexOf("__vlist"))i.push(c),n[c.key]=c,(c.data||(c.data={})).transition=a;else;}if(r){for(var u=[],l=[],f=0;f<r.length;f++){var p=r[f];p.data.transition=a,p.data.pos=p.elm.getBoundingClientRect(),n[p.key]?u.push(p):l.push(p)}this.kept=t(e,null,u),this.removed=l}return t(e,null,i)},updated:function(){var t=this.prevChildren,e=this.moveClass||(this.name||"v")+"-move";t.length&&this.hasMove(t[0].elm,e)&&(t.forEach(Io),t.forEach(To),t.forEach(Ro),this._reflow=document.body.offsetHeight,t.forEach((function(t){if(t.data.moved){var n=t.elm,r=n.style;Kr(n,e),r.transform=r.WebkitTransform=r.transitionDuration="",n.addEventListener(Hr,n._moveCb=function t(r){r&&r.target!==n||r&&!/transform$/.test(r.propertyName)||(n.removeEventListener(Hr,t),n._moveCb=null,Jr(n,e))})}})))},methods:{hasMove:function(t,e){if(!Vr)return!1;if(this._hasMove)return this._hasMove;var n=t.cloneNode();t._transitionClasses&&t._transitionClasses.forEach((function(t){Fr(n,t)})),Mr(n,e),n.style.display="none",this.$el.appendChild(n);var r=to(n);return this.$el.removeChild(n),this._hasMove=r.hasTransform}}}};xn.config.mustUseProp=function(t,e,n){return"value"===n&&kn(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},xn.config.isReservedTag=zn,xn.config.isReservedAttr=Nn,xn.config.getTagNamespace=function(t){return Xn(t)?"svg":"math"===t?"math":void 0},xn.config.isUnknownElement=function(t){if(!H)return!0;if(zn(t))return!1;if(t=t.toLowerCase(),null!=Wn[t])return Wn[t];var e=document.createElement(t);return t.indexOf("-")>-1?Wn[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Wn[t]=/HTMLUnknownElement/.test(e.toString())},T(xn.options.directives,bo),T(xn.options.components,No),xn.prototype.__patch__=H?co:N,xn.prototype.$mount=function(t,e){return function(t,e,n){var r;return t.$el=e,t.$options.render||(t.$options.render=mt),Qe(t,"beforeMount"),r=function(){t._update(t._render(),n)},new pn(t,r,N,{before:function(){t._isMounted&&!t._isDestroyed&&Qe(t,"beforeUpdate")}},!0),n=!1,null==t.$vnode&&(t._isMounted=!0,Qe(t,"mounted")),t}(this,t=t&&H?function(t){if("string"==typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}(t):void 0,e)},H&&setTimeout((function(){M.devtools&&ot&&ot.emit("init",xn)}),0),e.a=xn}).call(this,n(15),n(165).setImmediate)},function(t,e,n){var r=n(0),o=n(18),i="".split;t.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},function(t,e,n){var r=n(5);t.exports=function(t,e){if(!r(t))return t;var n,o;if(e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;if("function"==typeof(n=t.valueOf)&&!r(o=n.call(t)))return o;if(!e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,e,n){var r=n(2),o=n(8);t.exports=function(t,e){try{o(r,t,e)}catch(n){r[t]=e}return e}},function(t,e,n){var r=n(2),o=n(30),i=r["__core-js_shared__"]||o("__core-js_shared__",{});t.exports=i},function(t,e,n){var r=n(55),o=n(34),i=r("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(t,e){t.exports=!1},function(t,e){var n=0,r=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++n+r).toString(36)}},function(t,e){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,e){var n,r,o=t.exports={};function i(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function s(t){if(n===setTimeout)return setTimeout(t,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(t){n=i}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(t){r=a}}();var c,u=[],l=!1,f=-1;function p(){l&&c&&(l=!1,c.length?u=c.concat(u):f=-1,u.length&&d())}function d(){if(!l){var t=s(p);l=!0;for(var e=u.length;e;){for(c=u,u=[];++f<e;)c&&c[f].run();f=-1,e=u.length}c=null,l=!1,function(t){if(r===clearTimeout)return clearTimeout(t);if((r===a||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(t);try{r(t)}catch(e){try{return r.call(null,t)}catch(e){return r.call(this,t)}}}(t)}}function h(t,e){this.fun=t,this.array=e}function v(){}o.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)e[n-1]=arguments[n];u.push(new h(t,e)),1!==u.length||l||s(d)},h.prototype.run=function(){this.fun.apply(null,this.array)},o.title="browser",o.browser=!0,o.env={},o.argv=[],o.version="",o.versions={},o.on=v,o.addListener=v,o.once=v,o.off=v,o.removeListener=v,o.removeAllListeners=v,o.emit=v,o.prependListener=v,o.prependOnceListener=v,o.listeners=function(t){return[]},o.binding=function(t){throw new Error("process.binding is not supported")},o.cwd=function(){return"/"},o.chdir=function(t){throw new Error("process.chdir is not supported")},o.umask=function(){return 0}},function(t,e,n){var r=n(123);t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 0:return function(){return t.call(e)};case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,o){return t.call(e,n,r,o)}}return function(){return t.apply(e,arguments)}}},function(t,e,n){var r=n(7),o=n(0),i=n(4),a=Object.defineProperty,s={},c=function(t){throw t};t.exports=function(t,e){if(i(s,t))return s[t];e||(e={});var n=[][t],u=!!i(e,"ACCESSORS")&&e.ACCESSORS,l=i(e,0)?e[0]:c,f=i(e,1)?e[1]:void 0;return s[t]=!!n&&!o((function(){if(u&&!r)return!0;var t={length:-1};u?a(t,1,{enumerable:!0,get:c}):t[1]=1,n.call(t,l,f)}))}},function(t,e){var n=Number.MAX_SAFE_INTEGER||9007199254740991;t.exports={SEMVER_SPEC_VERSION:"2.0.0",MAX_LENGTH:256,MAX_SAFE_INTEGER:n,MAX_SAFE_COMPONENT_LENGTH:16}},function(t,e,n){var r,o=n(6),i=n(136),a=n(35),s=n(21),c=n(137),u=n(53),l=n(32),f=l("IE_PROTO"),p=function(){},d=function(t){return"<script>"+t+"<\/script>"},h=function(){try{r=document.domain&&new ActiveXObject("htmlfile")}catch(t){}var t,e;h=r?function(t){t.write(d("")),t.close();var e=t.parentWindow.Object;return t=null,e}(r):((e=u("iframe")).style.display="none",c.appendChild(e),e.src=String("javascript:"),(t=e.contentWindow.document).open(),t.write(d("document.F=Object")),t.close(),t.F);for(var n=a.length;n--;)delete h.prototype[a[n]];return h()};s[f]=!0,t.exports=Object.create||function(t,e){var n;return null!==t?(p.prototype=o(t),n=new p,p.prototype=null,n[f]=t):n=h(),void 0===e?n:i(n,e)}},function(t,e,n){"use strict";var r=n(10),o=n(138),i=n(84),a=n(85),s=n(42),c=n(8),u=n(11),l=n(1),f=n(33),p=n(14),d=n(83),h=d.IteratorPrototype,v=d.BUGGY_SAFARI_ITERATORS,m=l("iterator"),y=function(){return this};t.exports=function(t,e,n,l,d,g,b){o(n,e,l);var _,E,A,x=function(t){if(t===d&&I)return I;if(!v&&t in C)return C[t];switch(t){case"keys":case"values":case"entries":return function(){return new n(this,t)}}return function(){return new n(this)}},w=e+" Iterator",O=!1,C=t.prototype,S=C[m]||C["@@iterator"]||d&&C[d],I=!v&&S||x(d),T="Array"==e&&C.entries||S;if(T&&(_=i(T.call(new t)),h!==Object.prototype&&_.next&&(f||i(_)===h||(a?a(_,h):"function"!=typeof _[m]&&c(_,m,y)),s(_,w,!0,!0),f&&(p[w]=y))),"values"==d&&S&&"values"!==S.name&&(O=!0,I=function(){return S.call(this)}),f&&!b||C[m]===I||c(C,m,I),p[e]=I,d)if(E={values:x("values"),keys:g?I:x("keys"),entries:x("entries")},b)for(A in E)(v||O||!(A in C))&&u(C,A,E[A]);else r({target:e,proto:!0,forced:v||O},E);return E}},function(t,e,n){var r=n(9).f,o=n(4),i=n(1)("toStringTag");t.exports=function(t,e,n){t&&!o(t=n?t:t.prototype,i)&&r(t,i,{configurable:!0,value:e})}},function(t,e,n){var r={};r[n(1)("toStringTag")]="z",t.exports="[object z]"===String(r)},function(t,e,n){"use strict";var r,o,i=n(94),a=n(158),s=RegExp.prototype.exec,c=String.prototype.replace,u=s,l=(r=/a/,o=/b*/g,s.call(r,"a"),s.call(o,"a"),0!==r.lastIndex||0!==o.lastIndex),f=a.UNSUPPORTED_Y||a.BROKEN_CARET,p=void 0!==/()??/.exec("")[1];(l||p||f)&&(u=function(t){var e,n,r,o,a=this,u=f&&a.sticky,d=i.call(a),h=a.source,v=0,m=t;return u&&(-1===(d=d.replace("y","")).indexOf("g")&&(d+="g"),m=String(t).slice(a.lastIndex),a.lastIndex>0&&(!a.multiline||a.multiline&&"\n"!==t[a.lastIndex-1])&&(h="(?: "+h+")",m=" "+m,v++),n=new RegExp("^(?:"+h+")",d)),p&&(n=new RegExp("^"+h+"$(?!\\s)",d)),l&&(e=a.lastIndex),r=s.call(u?n:a,m),u?r?(r.input=r.input.slice(v),r[0]=r[0].slice(v),r.index=a.lastIndex,a.lastIndex+=r[0].length):a.lastIndex=0:l&&r&&(a.lastIndex=a.global?r.index+r[0].length:e),p&&r&&r.length>1&&c.call(r[0],n,(function(){for(o=1;o<arguments.length-2;o++)void 0===arguments[o]&&(r[o]=void 0)})),r}),t.exports=u},function(t,e,n){"use strict";n(49),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r,o=(r=n(103))&&r.__esModule?r:{default:r},i=n(121);var a=o.default.create({headers:{requesttoken:(0,i.getRequestToken)()}}),s=Object.assign(a,{CancelToken:o.default.CancelToken,isCancel:o.default.isCancel});(0,i.onRequestTokenUpdate)((function(t){return a.defaults.headers.requesttoken=t}));var c=s;e.default=c},function(t,e,n){"use strict";var r=n(25),o=n.n(r),i=n(26),a=n.n(i)()(o.a);a.push([t.i,"\n.icon-toggle[data-v-665ff3f1],\n.icon-delete[data-v-665ff3f1] {\n\tdisplay: inline-block;\n\twidth: 16px;\n\theight: 16px;\n\tpadding: 10px;\n\tvertical-align: middle;\n}\ntd code[data-v-665ff3f1] {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n}\ntable.inline td[data-v-665ff3f1] {\n\tborder: none;\n\tpadding: 5px;\n}\n","",{"version":3,"sources":["webpack://./apps/oauth2/src/components/OAuthItem.vue"],"names":[],"mappings":";AAsFA;;CAEA,qBAAA;CACA,WAAA;CACA,YAAA;CACA,aAAA;CACA,sBAAA;AACA;AACA;CACA,qBAAA;CACA,sBAAA;AACA;AACA;CACA,YAAA;CACA,YAAA;AACA","sourcesContent":["\x3c!--\n - @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl>\n -\n - @author Roeland Jago Douma <roeland@famdouma.nl>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n --\x3e\n<template>\n\t<tr>\n\t\t<td>\n\t\t\t<table class=\"inline\">\n\t\t\t\t<tr>\n\t\t\t\t\t<td>{{ t('oauth2', 'Name') }}</td>\n\t\t\t\t\t<td>{{ name }}</td>\n\t\t\t\t</tr>\n\t\t\t\t<tr>\n\t\t\t\t\t<td>{{ t('oauth2', 'Redirection URI') }}</td>\n\t\t\t\t\t<td>{{ redirectUri }}</td>\n\t\t\t\t</tr>\n\t\t\t\t<tr>\n\t\t\t\t\t<td>{{ t('oauth2', 'Client Identifier') }}</td>\n\t\t\t\t\t<td><code>{{ clientId }}</code></td>\n\t\t\t\t</tr>\n\t\t\t\t<tr>\n\t\t\t\t\t<td>{{ t('oauth2', 'Secret') }}</td>\n\t\t\t\t\t<td><code>{{ renderedSecret }}</code><a class=\"icon-toggle has-tooltip\" :title=\"t('oauth2', 'Show client secret')\" @click=\"toggleSecret\" /></td>\n\t\t\t\t</tr>\n\t\t\t</table>\n\t\t</td>\n\t\t<td class=\"action-column\">\n\t\t\t<span><a class=\"icon-delete has-tooltip\" :title=\"t('oauth2', 'Delete')\" @click=\"$emit('delete', id)\" /></span>\n\t\t</td>\n\t</tr>\n</template>\n\n<script>\nexport default {\n\tname: 'OAuthItem',\n\tprops: {\n\t\tclient: {\n\t\t\ttype: Object,\n\t\t\trequired: true,\n\t\t},\n\t},\n\tdata() {\n\t\treturn {\n\t\t\tid: this.client.id,\n\t\t\tname: this.client.name,\n\t\t\tredirectUri: this.client.redirectUri,\n\t\t\tclientId: this.client.clientId,\n\t\t\tclientSecret: this.client.clientSecret,\n\t\t\trenderSecret: false,\n\t\t}\n\t},\n\tcomputed: {\n\t\trenderedSecret() {\n\t\t\tif (this.renderSecret) {\n\t\t\t\treturn this.clientSecret\n\t\t\t} else {\n\t\t\t\treturn '****'\n\t\t\t}\n\t\t},\n\t},\n\tmethods: {\n\t\ttoggleSecret() {\n\t\t\tthis.renderSecret = !this.renderSecret\n\t\t},\n\t},\n}\n<\/script>\n\n<style scoped>\n\t.icon-toggle,\n\t.icon-delete {\n\t\tdisplay: inline-block;\n\t\twidth: 16px;\n\t\theight: 16px;\n\t\tpadding: 10px;\n\t\tvertical-align: middle;\n\t}\n\ttd code {\n\t\tdisplay: inline-block;\n\t\tvertical-align: middle;\n\t}\n\ttable.inline td {\n\t\tborder: none;\n\t\tpadding: 5px;\n\t}\n</style>\n"],"sourceRoot":""}]),e.a=a},function(t,e,n){"use strict";n(157),n(49),n(90),n(93),n(159),n(160),Object.defineProperty(e,"__esModule",{value:!0}),e.getRootUrl=e.generateFilePath=e.imagePath=e.generateUrl=e.generateOcsUrl=e.generateRemoteUrl=e.linkTo=void 0;e.linkTo=function(t,e){return r(t,"",e)};e.generateRemoteUrl=function(t){return window.location.protocol+"//"+window.location.host+function(t){return o()+"/remote.php/"+t}(t)};e.generateOcsUrl=function(t,e){return e=2!==e?1:2,window.location.protocol+"//"+window.location.host+o()+"/ocs/v"+e+".php/"+t+"/"};e.generateUrl=function(t,e,n){var r=Object.assign({escape:!0,noRewrite:!1},n||{}),i=function(t,e){return e=e||{},t.replace(/{([^{}]*)}/g,(function(t,n){var o=e[n];return r.escape?"string"==typeof o||"number"==typeof o?encodeURIComponent(o.toString()):encodeURIComponent(t):"string"==typeof o||"number"==typeof o?o.toString():t}))};return"/"!==t.charAt(0)&&(t="/"+t),!0!==OC.config.modRewriteWorking||r.noRewrite?o()+"/index.php"+i(t,e||{}):o()+i(t,e||{})};e.imagePath=function(t,e){return-1===e.indexOf(".")?r(t,"img",e+".svg"):r(t,"img",e)};var r=function(t,e,n){var r=-1!==OC.coreApps.indexOf(t),i=o();return"php"!==n.substring(n.length-3)||r?"php"===n.substring(n.length-3)||r?(i+="settings"!==t&&"core"!==t&&"search"!==t||"ajax"!==e?"/":"/index.php/",r||(i+="apps/"),""!==t&&(i+=t+="/"),e&&(i+=e+"/"),i+=n):(i=OC.appswebroots[t],e&&(i+="/"+e+"/"),"/"!==i.substring(i.length-1)&&(i+="/"),i+=n):(i+="/index.php/apps/"+t,"index.php"!==n&&(i+="/",e&&(i+=encodeURI(e+"/")),i+=n)),i};e.generateFilePath=r;var o=function(){return OC.webroot};e.getRootUrl=o},function(t,e,n){"use strict";var r=n(25),o=n.n(r),i=n(26),a=n.n(i)()(o.a);a.push([t.i,"\ntable[data-v-0c0547db] {\n\tmax-width: 800px;\n}\n","",{"version":3,"sources":["webpack://./apps/oauth2/src/App.vue"],"names":[],"mappings":";AAyHA;CACA,gBAAA;AACA","sourcesContent":['\x3c!--\n - @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl>\n -\n - @author Roeland Jago Douma <roeland@famdouma.nl>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n --\x3e\n<template>\n\t<div id="oauth2" class="section">\n\t\t<h2>{{ t(\'oauth2\', \'OAuth 2.0 clients\') }}</h2>\n\t\t<p class="settings-hint">\n\t\t\t{{ t(\'oauth2\', \'OAuth 2.0 allows external services to request access to {instanceName}.\', { instanceName: OC.theme.name}) }}\n\t\t</p>\n\t\t<table v-if="clients.length > 0" class="grid">\n\t\t\t<thead>\n\t\t\t\t<tr>\n\t\t\t\t\t<th id="headerContent">\n\n\t\t\t\t\t</th>\n\t\t\t\t\t<th id="headerRemove">\n \n\t\t\t\t\t</th>\n\t\t\t\t</tr>\n\t\t\t</thead>\n\t\t\t<tbody>\n\t\t\t\t<OAuthItem v-for="client in clients"\n\t\t\t\t\t:key="client.id"\n\t\t\t\t\t:client="client"\n\t\t\t\t\t@delete="deleteClient" />\n\t\t\t</tbody>\n\t\t</table>\n\n\t\t<br>\n\t\t<h3>{{ t(\'oauth2\', \'Add client\') }}</h3>\n\t\t<span v-if="newClient.error" class="msg error">{{ newClient.errorMsg }}</span>\n\t\t<form @submit.prevent="addClient">\n\t\t\t<input id="name"\n\t\t\t\tv-model="newClient.name"\n\t\t\t\ttype="text"\n\t\t\t\tname="name"\n\t\t\t\t:placeholder="t(\'oauth2\', \'Name\')">\n\t\t\t<input id="redirectUri"\n\t\t\t\tv-model="newClient.redirectUri"\n\t\t\t\ttype="url"\n\t\t\t\tname="redirectUri"\n\t\t\t\t:placeholder="t(\'oauth2\', \'Redirection URI\')">\n\t\t\t<input type="submit" class="button" :value="t(\'oauth2\', \'Add\')">\n\t\t</form>\n\t</div>\n</template>\n\n<script>\nimport axios from \'@nextcloud/axios\'\nimport OAuthItem from \'./components/OAuthItem\'\nimport { generateUrl } from \'@nextcloud/router\'\n\nexport default {\n\tname: \'App\',\n\tcomponents: {\n\t\tOAuthItem,\n\t},\n\tprops: {\n\t\tclients: {\n\t\t\ttype: Array,\n\t\t\trequired: true,\n\t\t},\n\t},\n\tdata() {\n\t\treturn {\n\t\t\tnewClient: {\n\t\t\t\tname: \'\',\n\t\t\t\tredirectUri: \'\',\n\t\t\t\terrorMsg: \'\',\n\t\t\t\terror: false,\n\t\t\t},\n\t\t}\n\t},\n\tmethods: {\n\t\tdeleteClient(id) {\n\t\t\taxios.delete(generateUrl(\'apps/oauth2/clients/{id}\', { id }))\n\t\t\t\t.then((response) => {\n\t\t\t\t\tthis.clients = this.clients.filter(client => client.id !== id)\n\t\t\t\t})\n\t\t},\n\t\taddClient() {\n\t\t\tthis.newClient.error = false\n\n\t\t\taxios.post(\n\t\t\t\tgenerateUrl(\'apps/oauth2/clients\'),\n\t\t\t\t{\n\t\t\t\t\tname: this.newClient.name,\n\t\t\t\t\tredirectUri: this.newClient.redirectUri,\n\t\t\t\t}\n\t\t\t).then(response => {\n\t\t\t\tthis.clients.push(response.data)\n\n\t\t\t\tthis.newClient.name = \'\'\n\t\t\t\tthis.newClient.redirectUri = \'\'\n\t\t\t}).catch(reason => {\n\t\t\t\tthis.newClient.error = true\n\t\t\t\tthis.newClient.errorMsg = reason.response.data.message\n\t\t\t})\n\t\t},\n\t},\n}\n<\/script>\n<style scoped>\n\ttable {\n\t\tmax-width: 800px;\n\t}\n</style>\n'],"sourceRoot":""}]),e.a=a},function(t,e,n){var r=n(10),o=n(102);r({target:"Object",stat:!0,forced:Object.assign!==o},{assign:o})},function(t,e,n){var r=n(7),o=n(51),i=n(16),a=n(17),s=n(29),c=n(4),u=n(52),l=Object.getOwnPropertyDescriptor;e.f=r?l:function(t,e){if(t=a(t),e=s(e,!0),u)try{return l(t,e)}catch(t){}if(c(t,e))return i(!o.f.call(t,e),t[e])}},function(t,e,n){"use strict";var r={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!r.call({1:2},1);e.f=i?function(t){var e=o(this,t);return!!e&&e.enumerable}:r},function(t,e,n){var r=n(7),o=n(0),i=n(53);t.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},function(t,e,n){var r=n(2),o=n(5),i=r.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},function(t,e,n){var r=n(31),o=Function.toString;"function"!=typeof r.inspectSource&&(r.inspectSource=function(t){return o.call(t)}),t.exports=r.inspectSource},function(t,e,n){var r=n(33),o=n(31);(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.8.3",mode:r?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},function(t,e,n){var r=n(4),o=n(17),i=n(57).indexOf,a=n(21);t.exports=function(t,e){var n,s=o(t),c=0,u=[];for(n in s)!r(a,n)&&r(s,n)&&u.push(n);for(;e.length>c;)r(s,n=e[c++])&&(~i(u,n)||u.push(n));return u}},function(t,e,n){var r=n(17),o=n(12),i=n(101),a=function(t){return function(e,n,a){var s,c=r(e),u=o(c.length),l=i(a,u);if(t&&n!=n){for(;u>l;)if((s=c[l++])!=s)return!0}else for(;u>l;l++)if((t||l in c)&&c[l]===n)return t||l||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var r=n(0),o=/#|\.prototype\./,i=function(t,e){var n=s[a(t)];return n==u||n!=c&&("function"==typeof e?r(e):!!e)},a=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},s=i.data={},c=i.NATIVE="N",u=i.POLYFILL="P";t.exports=i},function(t,e,n){var r=n(56),o=n(35);t.exports=Object.keys||function(t){return r(t,o)}},function(t,e,n){"use strict";t.exports=function(t,e){return function(){for(var n=new Array(arguments.length),r=0;r<n.length;r++)n[r]=arguments[r];return t.apply(e,n)}}},function(t,e,n){"use strict";var r=n(3);function o(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}t.exports=function(t,e,n){if(!e)return t;var i;if(n)i=n(e);else if(r.isURLSearchParams(e))i=e.toString();else{var a=[];r.forEach(e,(function(t,e){null!=t&&(r.isArray(t)?e+="[]":t=[t],r.forEach(t,(function(t){r.isDate(t)?t=t.toISOString():r.isObject(t)&&(t=JSON.stringify(t)),a.push(o(e)+"="+o(t))})))})),i=a.join("&")}if(i){var s=t.indexOf("#");-1!==s&&(t=t.slice(0,s)),t+=(-1===t.indexOf("?")?"?":"&")+i}return t}},function(t,e,n){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e,n){"use strict";(function(e){var r=n(3),o=n(109),i={"Content-Type":"application/x-www-form-urlencoded"};function a(t,e){!r.isUndefined(t)&&r.isUndefined(t["Content-Type"])&&(t["Content-Type"]=e)}var s,c={adapter:(("undefined"!=typeof XMLHttpRequest||void 0!==e&&"[object process]"===Object.prototype.toString.call(e))&&(s=n(65)),s),transformRequest:[function(t,e){return o(e,"Accept"),o(e,"Content-Type"),r.isFormData(t)||r.isArrayBuffer(t)||r.isBuffer(t)||r.isStream(t)||r.isFile(t)||r.isBlob(t)?t:r.isArrayBufferView(t)?t.buffer:r.isURLSearchParams(t)?(a(e,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):r.isObject(t)?(a(e,"application/json;charset=utf-8"),JSON.stringify(t)):t}],transformResponse:[function(t){if("string"==typeof t)try{t=JSON.parse(t)}catch(t){}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(t){return t>=200&&t<300}};c.headers={common:{"Accept":"application/json, text/plain, */*"}},r.forEach(["delete","get","head"],(function(t){c.headers[t]={}})),r.forEach(["post","put","patch"],(function(t){c.headers[t]=r.merge(i)})),t.exports=c}).call(this,n(36))},function(t,e,n){"use strict";var r=n(3),o=n(110),i=n(112),a=n(62),s=n(113),c=n(116),u=n(117),l=n(66);t.exports=function(t){return new Promise((function(e,n){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest;if(t.auth){var h=t.auth.username||"",v=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";p.Authorization="Basic "+btoa(h+":"+v)}var m=s(t.baseURL,t.url);if(d.open(t.method.toUpperCase(),a(m,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d.onreadystatechange=function(){if(d&&4===d.readyState&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var r="getAllResponseHeaders"in d?c(d.getAllResponseHeaders()):null,i={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:d.status,statusText:d.statusText,headers:r,config:t,request:d};o(e,n,i),d=null}},d.onabort=function(){d&&(n(l("Request aborted",t,"ECONNABORTED",d)),d=null)},d.onerror=function(){n(l("Network Error",t,null,d)),d=null},d.ontimeout=function(){var e="timeout of "+t.timeout+"ms exceeded";t.timeoutErrorMessage&&(e=t.timeoutErrorMessage),n(l(e,t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=(t.withCredentials||u(m))&&t.xsrfCookieName?i.read(t.xsrfCookieName):void 0;y&&(p[t.xsrfHeaderName]=y)}if("setRequestHeader"in d&&r.forEach(p,(function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)})),r.isUndefined(t.withCredentials)||(d.withCredentials=!!t.withCredentials),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then((function(t){d&&(d.abort(),n(t),d=null)})),f||(f=null),d.send(f)}))}},function(t,e,n){"use strict";var r=n(111);t.exports=function(t,e,n,o,i){var a=new Error(t);return r(a,e,n,o,i)}},function(t,e,n){"use strict";var r=n(3);t.exports=function(t,e){e=e||{};var n={},o=["url","method","data"],i=["headers","auth","proxy","params"],a=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],s=["validateStatus"];function c(t,e){return r.isPlainObject(t)&&r.isPlainObject(e)?r.merge(t,e):r.isPlainObject(e)?r.merge({},e):r.isArray(e)?e.slice():e}function u(o){r.isUndefined(e[o])?r.isUndefined(t[o])||(n[o]=c(void 0,t[o])):n[o]=c(t[o],e[o])}r.forEach(o,(function(t){r.isUndefined(e[t])||(n[t]=c(void 0,e[t]))})),r.forEach(i,u),r.forEach(a,(function(o){r.isUndefined(e[o])?r.isUndefined(t[o])||(n[o]=c(void 0,t[o])):n[o]=c(void 0,e[o])})),r.forEach(s,(function(r){r in e?n[r]=c(t[r],e[r]):r in t&&(n[r]=c(void 0,t[r]))}));var l=o.concat(i).concat(a).concat(s),f=Object.keys(t).concat(Object.keys(e)).filter((function(t){return-1===l.indexOf(t)}));return r.forEach(f,u),n}},function(t,e,n){"use strict";function r(t){this.message=t}r.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},r.prototype.__CANCEL__=!0,t.exports=r},function(t,e,n){"use strict";var r=n(10),o=n(70);r({target:"Array",proto:!0,forced:[].forEach!=o},{forEach:o})},function(t,e,n){"use strict";var r=n(71).forEach,o=n(75),i=n(38),a=o("forEach"),s=i("forEach");t.exports=a&&s?[].forEach:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}},function(t,e,n){var r=n(37),o=n(28),i=n(13),a=n(12),s=n(72),c=[].push,u=function(t){var e=1==t,n=2==t,u=3==t,l=4==t,f=6==t,p=7==t,d=5==t||f;return function(h,v,m,y){for(var g,b,_=i(h),E=o(_),A=r(v,m,3),x=a(E.length),w=0,O=y||s,C=e?O(h,x):n||p?O(h,0):void 0;x>w;w++)if((d||w in E)&&(b=A(g=E[w],w,_),t))if(e)C[w]=b;else if(b)switch(t){case 3:return!0;case 5:return g;case 6:return w;case 2:c.call(C,g)}else switch(t){case 4:return!1;case 7:c.call(C,g)}return f?-1:u||l?l:C}};t.exports={forEach:u(0),map:u(1),filter:u(2),some:u(3),every:u(4),find:u(5),findIndex:u(6),filterOut:u(7)}},function(t,e,n){var r=n(5),o=n(73),i=n(1)("species");t.exports=function(t,e){var n;return o(t)&&("function"!=typeof(n=t.constructor)||n!==Array&&!o(n.prototype)?r(n)&&null===(n=n[i])&&(n=void 0):n=void 0),new(void 0===n?Array:n)(0===e?0:e)}},function(t,e,n){var r=n(18);t.exports=Array.isArray||function(t){return"Array"==r(t)}},function(t,e,n){var r=n(0);t.exports=!!Object.getOwnPropertySymbols&&!r((function(){return!String(Symbol())}))},function(t,e,n){"use strict";var r=n(0);t.exports=function(t,e){var n=[][t];return!!n&&r((function(){n.call(null,e||function(){throw 1},1)}))}},function(t,e,n){var r=n(39).MAX_SAFE_COMPONENT_LENGTH,o=n(77),i=(e=t.exports={}).re=[],a=e.src=[],s=e.t={},c=0,u=function(t,e,n){var r=c++;o(r,e),s[t]=r,a[r]=e,i[r]=new RegExp(e,n?"g":void 0)};u("NUMERICIDENTIFIER","0|[1-9]\\d*"),u("NUMERICIDENTIFIERLOOSE","[0-9]+"),u("NONNUMERICIDENTIFIER","\\d*[a-zA-Z-][a-zA-Z0-9-]*"),u("MAINVERSION","(".concat(a[s.NUMERICIDENTIFIER],")\\.")+"(".concat(a[s.NUMERICIDENTIFIER],")\\.")+"(".concat(a[s.NUMERICIDENTIFIER],")")),u("MAINVERSIONLOOSE","(".concat(a[s.NUMERICIDENTIFIERLOOSE],")\\.")+"(".concat(a[s.NUMERICIDENTIFIERLOOSE],")\\.")+"(".concat(a[s.NUMERICIDENTIFIERLOOSE],")")),u("PRERELEASEIDENTIFIER","(?:".concat(a[s.NUMERICIDENTIFIER],"|").concat(a[s.NONNUMERICIDENTIFIER],")")),u("PRERELEASEIDENTIFIERLOOSE","(?:".concat(a[s.NUMERICIDENTIFIERLOOSE],"|").concat(a[s.NONNUMERICIDENTIFIER],")")),u("PRERELEASE","(?:-(".concat(a[s.PRERELEASEIDENTIFIER],"(?:\\.").concat(a[s.PRERELEASEIDENTIFIER],")*))")),u("PRERELEASELOOSE","(?:-?(".concat(a[s.PRERELEASEIDENTIFIERLOOSE],"(?:\\.").concat(a[s.PRERELEASEIDENTIFIERLOOSE],")*))")),u("BUILDIDENTIFIER","[0-9A-Za-z-]+"),u("BUILD","(?:\\+(".concat(a[s.BUILDIDENTIFIER],"(?:\\.").concat(a[s.BUILDIDENTIFIER],")*))")),u("FULLPLAIN","v?".concat(a[s.MAINVERSION]).concat(a[s.PRERELEASE],"?").concat(a[s.BUILD],"?")),u("FULL","^".concat(a[s.FULLPLAIN],"$")),u("LOOSEPLAIN","[v=\\s]*".concat(a[s.MAINVERSIONLOOSE]).concat(a[s.PRERELEASELOOSE],"?").concat(a[s.BUILD],"?")),u("LOOSE","^".concat(a[s.LOOSEPLAIN],"$")),u("GTLT","((?:<|>)?=?)"),u("XRANGEIDENTIFIERLOOSE","".concat(a[s.NUMERICIDENTIFIERLOOSE],"|x|X|\\*")),u("XRANGEIDENTIFIER","".concat(a[s.NUMERICIDENTIFIER],"|x|X|\\*")),u("XRANGEPLAIN","[v=\\s]*(".concat(a[s.XRANGEIDENTIFIER],")")+"(?:\\.(".concat(a[s.XRANGEIDENTIFIER],")")+"(?:\\.(".concat(a[s.XRANGEIDENTIFIER],")")+"(?:".concat(a[s.PRERELEASE],")?").concat(a[s.BUILD],"?")+")?)?"),u("XRANGEPLAINLOOSE","[v=\\s]*(".concat(a[s.XRANGEIDENTIFIERLOOSE],")")+"(?:\\.(".concat(a[s.XRANGEIDENTIFIERLOOSE],")")+"(?:\\.(".concat(a[s.XRANGEIDENTIFIERLOOSE],")")+"(?:".concat(a[s.PRERELEASELOOSE],")?").concat(a[s.BUILD],"?")+")?)?"),u("XRANGE","^".concat(a[s.GTLT],"\\s*").concat(a[s.XRANGEPLAIN],"$")),u("XRANGELOOSE","^".concat(a[s.GTLT],"\\s*").concat(a[s.XRANGEPLAINLOOSE],"$")),u("COERCE","".concat("(^|[^\\d])(\\d{1,").concat(r,"})")+"(?:\\.(\\d{1,".concat(r,"}))?")+"(?:\\.(\\d{1,".concat(r,"}))?")+"(?:$|[^\\d])"),u("COERCERTL",a[s.COERCE],!0),u("LONETILDE","(?:~>?)"),u("TILDETRIM","(\\s*)".concat(a[s.LONETILDE],"\\s+"),!0),e.tildeTrimReplace="$1~",u("TILDE","^".concat(a[s.LONETILDE]).concat(a[s.XRANGEPLAIN],"$")),u("TILDELOOSE","^".concat(a[s.LONETILDE]).concat(a[s.XRANGEPLAINLOOSE],"$")),u("LONECARET","(?:\\^)"),u("CARETTRIM","(\\s*)".concat(a[s.LONECARET],"\\s+"),!0),e.caretTrimReplace="$1^",u("CARET","^".concat(a[s.LONECARET]).concat(a[s.XRANGEPLAIN],"$")),u("CARETLOOSE","^".concat(a[s.LONECARET]).concat(a[s.XRANGEPLAINLOOSE],"$")),u("COMPARATORLOOSE","^".concat(a[s.GTLT],"\\s*(").concat(a[s.LOOSEPLAIN],")$|^$")),u("COMPARATOR","^".concat(a[s.GTLT],"\\s*(").concat(a[s.FULLPLAIN],")$|^$")),u("COMPARATORTRIM","(\\s*)".concat(a[s.GTLT],"\\s*(").concat(a[s.LOOSEPLAIN],"|").concat(a[s.XRANGEPLAIN],")"),!0),e.comparatorTrimReplace="$1$2$3",u("HYPHENRANGE","^\\s*(".concat(a[s.XRANGEPLAIN],")")+"\\s+-\\s+"+"(".concat(a[s.XRANGEPLAIN],")")+"\\s*$"),u("HYPHENRANGELOOSE","^\\s*(".concat(a[s.XRANGEPLAINLOOSE],")")+"\\s+-\\s+"+"(".concat(a[s.XRANGEPLAINLOOSE],")")+"\\s*$"),u("STAR","(<|>)?=?\\s*\\*"),u("GTE0","^\\s*>=\\s*0.0.0\\s*$"),u("GTE0PRE","^\\s*>=\\s*0.0.0-0\\s*$")},function(t,e,n){(function(e){function n(t){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var r="object"===(void 0===e?"undefined":n(e))&&e.env&&e.env.NODE_DEBUG&&/\bsemver\b/i.test(e.env.NODE_DEBUG)?function(){for(var t,e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return(t=console).error.apply(t,["SEMVER"].concat(n))}:function(){};t.exports=r}).call(this,n(36))},function(t,e,n){function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}var i=n(77),a=n(39),s=a.MAX_LENGTH,c=a.MAX_SAFE_INTEGER,u=n(76),l=u.re,f=u.t,p=n(129).compareIdentifiers,d=function(){function t(e,n){if(function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),n&&"object"===r(n)||(n={loose:!!n,includePrerelease:!1}),e instanceof t){if(e.loose===!!n.loose&&e.includePrerelease===!!n.includePrerelease)return e;e=e.version}else if("string"!=typeof e)throw new TypeError("Invalid Version: ".concat(e));if(e.length>s)throw new TypeError("version is longer than ".concat(s," characters"));i("SemVer",e,n),this.options=n,this.loose=!!n.loose,this.includePrerelease=!!n.includePrerelease;var o=e.trim().match(n.loose?l[f.LOOSE]:l[f.FULL]);if(!o)throw new TypeError("Invalid Version: ".concat(e));if(this.raw=e,this.major=+o[1],this.minor=+o[2],this.patch=+o[3],this.major>c||this.major<0)throw new TypeError("Invalid major version");if(this.minor>c||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>c||this.patch<0)throw new TypeError("Invalid patch version");o[4]?this.prerelease=o[4].split(".").map((function(t){if(/^[0-9]+$/.test(t)){var e=+t;if(e>=0&&e<c)return e}return t})):this.prerelease=[],this.build=o[5]?o[5].split("."):[],this.format()}var e,n,a;return e=t,(n=[{key:"format",value:function(){return this.version="".concat(this.major,".").concat(this.minor,".").concat(this.patch),this.prerelease.length&&(this.version+="-".concat(this.prerelease.join("."))),this.version}},{key:"toString",value:function(){return this.version}},{key:"compare",value:function(e){if(i("SemVer.compare",this.version,this.options,e),!(e instanceof t)){if("string"==typeof e&&e===this.version)return 0;e=new t(e,this.options)}return e.version===this.version?0:this.compareMain(e)||this.comparePre(e)}},{key:"compareMain",value:function(e){return e instanceof t||(e=new t(e,this.options)),p(this.major,e.major)||p(this.minor,e.minor)||p(this.patch,e.patch)}},{key:"comparePre",value:function(e){if(e instanceof t||(e=new t(e,this.options)),this.prerelease.length&&!e.prerelease.length)return-1;if(!this.prerelease.length&&e.prerelease.length)return 1;if(!this.prerelease.length&&!e.prerelease.length)return 0;var n=0;do{var r=this.prerelease[n],o=e.prerelease[n];if(i("prerelease compare",n,r,o),void 0===r&&void 0===o)return 0;if(void 0===o)return 1;if(void 0===r)return-1;if(r!==o)return p(r,o)}while(++n)}},{key:"compareBuild",value:function(e){e instanceof t||(e=new t(e,this.options));var n=0;do{var r=this.build[n],o=e.build[n];if(i("prerelease compare",n,r,o),void 0===r&&void 0===o)return 0;if(void 0===o)return 1;if(void 0===r)return-1;if(r!==o)return p(r,o)}while(++n)}},{key:"inc",value:function(t,e){switch(t){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",e);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",e);break;case"prepatch":this.prerelease.length=0,this.inc("patch",e),this.inc("pre",e);break;case"prerelease":0===this.prerelease.length&&this.inc("patch",e),this.inc("pre",e);break;case"major":0===this.minor&&0===this.patch&&0!==this.prerelease.length||this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":0===this.patch&&0!==this.prerelease.length||this.minor++,this.patch=0,this.prerelease=[];break;case"patch":0===this.prerelease.length&&this.patch++,this.prerelease=[];break;case"pre":if(0===this.prerelease.length)this.prerelease=[0];else{for(var n=this.prerelease.length;--n>=0;)"number"==typeof this.prerelease[n]&&(this.prerelease[n]++,n=-2);-1===n&&this.prerelease.push(0)}e&&(this.prerelease[0]===e?isNaN(this.prerelease[1])&&(this.prerelease=[e,0]):this.prerelease=[e,0]);break;default:throw new Error("invalid increment argument: ".concat(t))}return this.format(),this.raw=this.version,this}}])&&o(e.prototype,n),a&&o(e,a),t}();t.exports=d},function(t,e,n){"use strict";var r=n(10),o=n(0),i=n(73),a=n(5),s=n(13),c=n(12),u=n(132),l=n(72),f=n(80),p=n(1),d=n(81),h=p("isConcatSpreadable"),v=d>=51||!o((function(){var t=[];return t[h]=!1,t.concat()[0]!==t})),m=f("concat"),y=function(t){if(!a(t))return!1;var e=t[h];return void 0!==e?!!e:i(t)};r({target:"Array",proto:!0,forced:!v||!m},{concat:function(t){var e,n,r,o,i,a=s(this),f=l(a,0),p=0;for(e=-1,r=arguments.length;e<r;e++)if(y(i=-1===e?a:arguments[e])){if(p+(o=c(i.length))>9007199254740991)throw TypeError("Maximum allowed index exceeded");for(n=0;n<o;n++,p++)n in i&&u(f,p,i[n])}else{if(p>=9007199254740991)throw TypeError("Maximum allowed index exceeded");u(f,p++,i)}return f.length=p,f}})},function(t,e,n){var r=n(0),o=n(1),i=n(81),a=o("species");t.exports=function(t){return i>=51||!r((function(){var e=[];return(e.constructor={})[a]=function(){return{foo:1}},1!==e[t](Boolean).foo}))}},function(t,e,n){var r,o,i=n(2),a=n(133),s=i.process,c=s&&s.versions,u=c&&c.v8;u?o=(r=u.split("."))[0]+r[1]:a&&(!(r=a.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=a.match(/Chrome\/(\d+)/))&&(o=r[1]),t.exports=o&&+o},function(t,e,n){"use strict";var r=n(17),o=n(135),i=n(14),a=n(20),s=n(41),c=a.set,u=a.getterFor("Array Iterator");t.exports=s(Array,"Array",(function(t,e){c(this,{type:"Array Iterator",target:r(t),index:0,kind:e})}),(function(){var t=u(this),e=t.target,n=t.kind,r=t.index++;return!e||r>=e.length?(t.target=void 0,{value:void 0,done:!0}):"keys"==n?{value:r,done:!1}:"values"==n?{value:e[r],done:!1}:{value:[r,e[r]],done:!1}}),"values"),i.Arguments=i.Array,o("keys"),o("values"),o("entries")},function(t,e,n){"use strict";var r,o,i,a=n(0),s=n(84),c=n(8),u=n(4),l=n(1),f=n(33),p=l("iterator"),d=!1;[].keys&&("next"in(i=[].keys())?(o=s(s(i)))!==Object.prototype&&(r=o):d=!0);var h=null==r||a((function(){var t={};return r[p].call(t)!==t}));h&&(r={}),f&&!h||u(r,p)||c(r,p,(function(){return this})),t.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:d}},function(t,e,n){var r=n(4),o=n(13),i=n(32),a=n(139),s=i("IE_PROTO"),c=Object.prototype;t.exports=a?Object.getPrototypeOf:function(t){return t=o(t),r(t,s)?t[s]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?c:null}},function(t,e,n){var r=n(6),o=n(140);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,n={};try{(t=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(n,[]),e=n instanceof Array}catch(t){}return function(n,i){return r(n),o(i),e?t.call(n,i):n.__proto__=i,n}}():void 0)},function(t,e,n){var r=n(21),o=n(5),i=n(4),a=n(9).f,s=n(34),c=n(143),u=s("meta"),l=0,f=Object.isExtensible||function(){return!0},p=function(t){a(t,u,{value:{objectID:"O"+ ++l,weakData:{}}})},d=t.exports={REQUIRED:!1,fastKey:function(t,e){if(!o(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!i(t,u)){if(!f(t))return"F";if(!e)return"E";p(t)}return t[u].objectID},getWeakData:function(t,e){if(!i(t,u)){if(!f(t))return!0;if(!e)return!1;p(t)}return t[u].weakData},onFreeze:function(t){return c&&d.REQUIRED&&f(t)&&!i(t,u)&&p(t),t}};r[u]=!0},function(t,e,n){var r=n(6),o=n(144),i=n(12),a=n(37),s=n(145),c=n(146),u=function(t,e){this.stopped=t,this.result=e};t.exports=function(t,e,n){var l,f,p,d,h,v,m,y=n&&n.that,g=!(!n||!n.AS_ENTRIES),b=!(!n||!n.IS_ITERATOR),_=!(!n||!n.INTERRUPTED),E=a(e,y,1+g+_),A=function(t){return l&&c(l),new u(!0,t)},x=function(t){return g?(r(t),_?E(t[0],t[1],A):E(t[0],t[1])):_?E(t,A):E(t)};if(b)l=t;else{if("function"!=typeof(f=s(t)))throw TypeError("Target is not iterable");if(o(f)){for(p=0,d=i(t.length);d>p;p++)if((h=x(t[p]))&&h instanceof u)return h;return new u(!1)}l=f.call(t)}for(v=l.next;!(m=v.call(l)).done;){try{h=x(m.value)}catch(t){throw c(l),t}if("object"==typeof h&&h&&h instanceof u)return h}return new u(!1)}},function(t,e,n){var r=n(43),o=n(18),i=n(1)("toStringTag"),a="Arguments"==o(function(){return arguments}());t.exports=r?o:function(t){var e,n,r;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),i))?n:a?o(e):"Object"==(r=o(e))&&"function"==typeof e.callee?"Arguments":r}},function(t,e){t.exports=function(t,e,n){if(!(t instanceof e))throw TypeError("Incorrect "+(n?n+" ":"")+"invocation");return t}},function(t,e,n){var r=n(43),o=n(11),i=n(152);r||o(Object.prototype,"toString",i,{unsafe:!0})},function(t,e,n){var r=n(23),o=n(19),i=function(t){return function(e,n){var i,a,s=String(o(e)),c=r(n),u=s.length;return c<0||c>=u?t?"":void 0:(i=s.charCodeAt(c))<55296||i>56319||c+1===u||(a=s.charCodeAt(c+1))<56320||a>57343?t?s.charAt(c):i:t?s.slice(c,c+2):a-56320+(i-55296<<10)+65536}};t.exports={codeAt:i(!1),charAt:i(!0)}},function(t,e){t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},function(t,e,n){"use strict";var r=n(10),o=n(44);r({target:"RegExp",proto:!0,forced:/./.exec!==o},{exec:o})},function(t,e,n){"use strict";var r=n(6);t.exports=function(){var t=r(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e}},function(t,e,n){"use strict";n(79),Object.defineProperty(e,"__esModule",{value:!0}),e.loadState=function(t,e,n){var r=document.querySelector("#initial-state-".concat(t,"-").concat(e));if(null===r){if(void 0!==n)return n;throw new Error("Could not find initial state ".concat(e," of ").concat(t))}try{return JSON.parse(atob(r.value))}catch(n){throw new Error("Could not parse initial state ".concat(e," of ").concat(t))}}},function(t,e,n){var r=n(2),o=n(54),i=r.WeakMap;t.exports="function"==typeof i&&/native code/.test(o(i))},function(t,e,n){var r=n(4),o=n(98),i=n(50),a=n(9);t.exports=function(t,e){for(var n=o(e),s=a.f,c=i.f,u=0;u<n.length;u++){var l=n[u];r(t,l)||s(t,l,c(e,l))}}},function(t,e,n){var r=n(22),o=n(100),i=n(58),a=n(6);t.exports=r("Reflect","ownKeys")||function(t){var e=o.f(a(t)),n=i.f;return n?e.concat(n(t)):e}},function(t,e,n){var r=n(2);t.exports=r},function(t,e,n){var r=n(56),o=n(35).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},function(t,e,n){var r=n(23),o=Math.max,i=Math.min;t.exports=function(t,e){var n=r(t);return n<0?o(n+e,0):i(n,e)}},function(t,e,n){"use strict";var r=n(7),o=n(0),i=n(60),a=n(58),s=n(51),c=n(13),u=n(28),l=Object.assign,f=Object.defineProperty;t.exports=!l||o((function(){if(r&&1!==l({b:1},l(f({},"a",{enumerable:!0,get:function(){f(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol();return t[n]=7,"abcdefghijklmnopqrst".split("").forEach((function(t){e[t]=t})),7!=l({},t)[n]||"abcdefghijklmnopqrst"!=i(l({},e)).join("")}))?function(t,e){for(var n=c(t),o=arguments.length,l=1,f=a.f,p=s.f;o>l;)for(var d,h=u(arguments[l++]),v=f?i(h).concat(f(h)):i(h),m=v.length,y=0;m>y;)d=v[y++],r&&!p.call(h,d)||(n[d]=h[d]);return n}:l},function(t,e,n){t.exports=n(104)},function(t,e,n){"use strict";var r=n(3),o=n(61),i=n(105),a=n(67);function s(t){var e=new i(t),n=o(i.prototype.request,e);return r.extend(n,i.prototype,e),r.extend(n,e),n}var c=s(n(64));c.Axios=i,c.create=function(t){return s(a(c.defaults,t))},c.Cancel=n(68),c.CancelToken=n(118),c.isCancel=n(63),c.all=function(t){return Promise.all(t)},c.spread=n(119),c.isAxiosError=n(120),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";var r=n(3),o=n(62),i=n(106),a=n(107),s=n(67);function c(t){this.defaults=t,this.interceptors={request:new i,response:new i}}c.prototype.request=function(t){"string"==typeof t?(t=arguments[1]||{}).url=arguments[0]:t=t||{},(t=s(this.defaults,t)).method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var e=[a,void 0],n=Promise.resolve(t);for(this.interceptors.request.forEach((function(t){e.unshift(t.fulfilled,t.rejected)})),this.interceptors.response.forEach((function(t){e.push(t.fulfilled,t.rejected)}));e.length;)n=n.then(e.shift(),e.shift());return n},c.prototype.getUri=function(t){return t=s(this.defaults,t),o(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")},r.forEach(["delete","get","head","options"],(function(t){c.prototype[t]=function(e,n){return this.request(s(n||{},{method:t,url:e,data:(n||{}).data}))}})),r.forEach(["post","put","patch"],(function(t){c.prototype[t]=function(e,n,r){return this.request(s(r||{},{method:t,url:e,data:n}))}})),t.exports=c},function(t,e,n){"use strict";var r=n(3);function o(){this.handlers=[]}o.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},o.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},o.prototype.forEach=function(t){r.forEach(this.handlers,(function(e){null!==e&&t(e)}))},t.exports=o},function(t,e,n){"use strict";var r=n(3),o=n(108),i=n(63),a=n(64);function s(t){t.cancelToken&&t.cancelToken.throwIfRequested()}t.exports=function(t){return s(t),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=r.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),r.forEach(["delete","get","head","post","put","patch","common"],(function(e){delete t.headers[e]})),(t.adapter||a.adapter)(t).then((function(e){return s(t),e.data=o(e.data,e.headers,t.transformResponse),e}),(function(e){return i(e)||(s(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)}))}},function(t,e,n){"use strict";var r=n(3);t.exports=function(t,e,n){return r.forEach(n,(function(n){t=n(t,e)})),t}},function(t,e,n){"use strict";var r=n(3);t.exports=function(t,e){r.forEach(t,(function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])}))}},function(t,e,n){"use strict";var r=n(66);t.exports=function(t,e,n){var o=n.config.validateStatus;n.status&&o&&!o(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";t.exports=function(t,e,n,r,o){return t.config=e,n&&(t.code=n),t.request=r,t.response=o,t.isAxiosError=!0,t.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}},t}},function(t,e,n){"use strict";var r=n(3);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,o,i,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(o)&&s.push("path="+o),r.isString(i)&&s.push("domain="+i),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";var r=n(114),o=n(115);t.exports=function(t,e){return t&&!r(e)?o(t,e):e}},function(t,e,n){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e,n){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e,n){"use strict";var r=n(3),o=["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"];t.exports=function(t){var e,n,i,a={};return t?(r.forEach(t.split("\n"),(function(t){if(i=t.indexOf(":"),e=r.trim(t.substr(0,i)).toLowerCase(),n=r.trim(t.substr(i+1)),e){if(a[e]&&o.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}})),a):a}},function(t,e,n){"use strict";var r=n(3);t.exports=r.isStandardBrowserEnv()?function(){var t,e=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function o(t){var r=t;return e&&(n.setAttribute("href",r),r=n.href),n.setAttribute("href",r),{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 t=o(window.location.href),function(e){var n=r.isString(e)?o(e):e;return n.protocol===t.protocol&&n.host===t.host}}():function(){return!0}},function(t,e,n){"use strict";var r=n(68);function o(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise((function(t){e=t}));var n=this;t((function(t){n.reason||(n.reason=new r(t),e(n.reason))}))}o.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},o.source=function(){var t;return{token:new o((function(e){t=e})),cancel:t}},t.exports=o},function(t,e,n){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}},function(t,e,n){"use strict";t.exports=function(t){return"object"==typeof t&&!0===t.isAxiosError}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"getRequestToken",{enumerable:!0,get:function(){return r.getRequestToken}}),Object.defineProperty(e,"onRequestTokenUpdate",{enumerable:!0,get:function(){return r.onRequestTokenUpdate}}),Object.defineProperty(e,"getCurrentUser",{enumerable:!0,get:function(){return o.getCurrentUser}});var r=n(122),o=n(156)},function(t,e,n){"use strict";n(69),Object.defineProperty(e,"__esModule",{value:!0}),e.getRequestToken=function(){return i},e.onRequestTokenUpdate=function(t){a.push(t)};var r=n(125),o=document.getElementsByTagName("head")[0],i=o?o.getAttribute("data-requesttoken"):null,a=[];(0,r.subscribe)("csrf-token-update",(function(t){i=t.token,a.forEach((function(e){try{e(t.token)}catch(t){console.error("error updating CSRF token observer",t)}}))}))},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},function(t,e,n){var r=n(74);t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.subscribe=function(t,e){i.subscribe(t,e)},e.unsubscribe=function(t,e){i.unsubscribe(t,e)},e.emit=function(t,e){i.emit(t,e)};var r=n(126),o=n(131);var i=(void 0!==window.OC&&window.OC._eventBus&&void 0===window._nc_event_bus&&(console.warn("found old event bus instance at OC._eventBus. Update your version!"),window._nc_event_bus=window.OC._eventBus),void 0!==window._nc_event_bus?new r.ProxyBus(window._nc_event_bus):window._nc_event_bus=new o.SimpleBus)},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.ProxyBus=void 0;var r=i(n(127)),o=i(n(130));function i(t){return t&&t.__esModule?t:{default:t}}function a(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}var s="1.2.0",c=function(){function t(e){var n,i,a;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),a=void 0,(i="bus")in(n=this)?Object.defineProperty(n,i,{value:a,enumerable:!0,configurable:!0,writable:!0}):n[i]=a,"function"==typeof e.getVersion&&(0,r.default)(e.getVersion())?(0,o.default)(e.getVersion())!==(0,o.default)(this.getVersion())&&console.warn("Proxying an event bus of version "+e.getVersion()+" with "+this.getVersion()):console.warn("Proxying an event bus with an unknown or invalid version"),this.bus=e}var e,n,i;return e=t,(n=[{key:"getVersion",value:function(){return s}},{key:"subscribe",value:function(t,e){this.bus.subscribe(t,e)}},{key:"unsubscribe",value:function(t,e){this.bus.unsubscribe(t,e)}},{key:"emit",value:function(t,e){this.bus.emit(t,e)}}])&&a(e.prototype,n),i&&a(e,i),t}();e.ProxyBus=c},function(t,e,n){var r=n(128);t.exports=function(t,e){var n=r(t,e);return n?n.version:null}},function(t,e,n){function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var o=n(39).MAX_LENGTH,i=n(76),a=i.re,s=i.t,c=n(78);t.exports=function(t,e){if(e&&"object"===r(e)||(e={loose:!!e,includePrerelease:!1}),t instanceof c)return t;if("string"!=typeof t)return null;if(t.length>o)return null;if(!(e.loose?a[s.LOOSE]:a[s.FULL]).test(t))return null;try{return new c(t,e)}catch(t){return null}}},function(t,e){var n=/^[0-9]+$/,r=function(t,e){var r=n.test(t),o=n.test(e);return r&&o&&(t=+t,e=+e),t===e?0:r&&!o?-1:o&&!r?1:t<e?-1:1};t.exports={compareIdentifiers:r,rcompareIdentifiers:function(t,e){return r(e,t)}}},function(t,e,n){var r=n(78);t.exports=function(t,e){return new r(t,e).major}},function(t,e,n){"use strict";function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}n(79),n(134),n(69),n(82),n(141),n(90),n(153),n(154),n(155),Object.defineProperty(e,"__esModule",{value:!0}),e.SimpleBus=void 0;var o="1.2.0",i=function(){function t(){var e,n,r;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),e=this,n="handlers",r=new Map,n in e?Object.defineProperty(e,n,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[n]=r}var e,n,i;return e=t,(n=[{key:"getVersion",value:function(){return o}},{key:"subscribe",value:function(t,e){this.handlers.set(t,(this.handlers.get(t)||[]).concat(e))}},{key:"unsubscribe",value:function(t,e){this.handlers.set(t,(this.handlers.get(t)||[]).filter((function(t){return t!=e})))}},{key:"emit",value:function(t,e){(this.handlers.get(t)||[]).forEach((function(t){try{t(e)}catch(t){console.error("could not invoke event listener",t)}}))}}])&&r(e.prototype,n),i&&r(e,i),t}();e.SimpleBus=i},function(t,e,n){"use strict";var r=n(29),o=n(9),i=n(16);t.exports=function(t,e,n){var a=r(e);a in t?o.f(t,a,i(0,n)):t[a]=n}},function(t,e,n){var r=n(22);t.exports=r("navigator","userAgent")||""},function(t,e,n){"use strict";var r=n(10),o=n(71).filter,i=n(80),a=n(38),s=i("filter"),c=a("filter");r({target:"Array",proto:!0,forced:!s||!c},{filter:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){var r=n(1),o=n(40),i=n(9),a=r("unscopables"),s=Array.prototype;null==s[a]&&i.f(s,a,{configurable:!0,value:o(null)}),t.exports=function(t){s[a][t]=!0}},function(t,e,n){var r=n(7),o=n(9),i=n(6),a=n(60);t.exports=r?Object.defineProperties:function(t,e){i(t);for(var n,r=a(e),s=r.length,c=0;s>c;)o.f(t,n=r[c++],e[n]);return t}},function(t,e,n){var r=n(22);t.exports=r("document","documentElement")},function(t,e,n){"use strict";var r=n(83).IteratorPrototype,o=n(40),i=n(16),a=n(42),s=n(14),c=function(){return this};t.exports=function(t,e,n){var u=e+" Iterator";return t.prototype=o(r,{next:i(1,n)}),a(t,u,!1,!0),s[u]=c,t}},function(t,e,n){var r=n(0);t.exports=!r((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},function(t,e,n){var r=n(5);t.exports=function(t){if(!r(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t}},function(t,e,n){"use strict";var r=n(142),o=n(149);t.exports=r("Map",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),o)},function(t,e,n){"use strict";var r=n(10),o=n(2),i=n(59),a=n(11),s=n(86),c=n(87),u=n(89),l=n(5),f=n(0),p=n(147),d=n(42),h=n(148);t.exports=function(t,e,n){var v=-1!==t.indexOf("Map"),m=-1!==t.indexOf("Weak"),y=v?"set":"add",g=o[t],b=g&&g.prototype,_=g,E={},A=function(t){var e=b[t];a(b,t,"add"==t?function(t){return e.call(this,0===t?0:t),this}:"delete"==t?function(t){return!(m&&!l(t))&&e.call(this,0===t?0:t)}:"get"==t?function(t){return m&&!l(t)?void 0:e.call(this,0===t?0:t)}:"has"==t?function(t){return!(m&&!l(t))&&e.call(this,0===t?0:t)}:function(t,n){return e.call(this,0===t?0:t,n),this})};if(i(t,"function"!=typeof g||!(m||b.forEach&&!f((function(){(new g).entries().next()})))))_=n.getConstructor(e,t,v,y),s.REQUIRED=!0;else if(i(t,!0)){var x=new _,w=x[y](m?{}:-0,1)!=x,O=f((function(){x.has(1)})),C=p((function(t){new g(t)})),S=!m&&f((function(){for(var t=new g,e=5;e--;)t[y](e,e);return!t.has(-0)}));C||((_=e((function(e,n){u(e,_,t);var r=h(new g,e,_);return null!=n&&c(n,r[y],{that:r,AS_ENTRIES:v}),r}))).prototype=b,b.constructor=_),(O||S)&&(A("delete"),A("has"),v&&A("get")),(S||w)&&A(y),m&&b.clear&&delete b.clear}return E[t]=_,r({global:!0,forced:_!=g},E),d(_,t),m||n.setStrong(_,t,v),_}},function(t,e,n){var r=n(0);t.exports=!r((function(){return Object.isExtensible(Object.preventExtensions({}))}))},function(t,e,n){var r=n(1),o=n(14),i=r("iterator"),a=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||a[i]===t)}},function(t,e,n){var r=n(88),o=n(14),i=n(1)("iterator");t.exports=function(t){if(null!=t)return t[i]||t["@@iterator"]||o[r(t)]}},function(t,e,n){var r=n(6);t.exports=function(t){var e=t.return;if(void 0!==e)return r(e.call(t)).value}},function(t,e,n){var r=n(1)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},"return":function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(t){}t.exports=function(t,e){if(!e&&!o)return!1;var n=!1;try{var i={};i[r]=function(){return{next:function(){return{done:n=!0}}}},t(i)}catch(t){}return n}},function(t,e,n){var r=n(5),o=n(85);t.exports=function(t,e,n){var i,a;return o&&"function"==typeof(i=e.constructor)&&i!==n&&r(a=i.prototype)&&a!==n.prototype&&o(t,a),t}},function(t,e,n){"use strict";var r=n(9).f,o=n(40),i=n(150),a=n(37),s=n(89),c=n(87),u=n(41),l=n(151),f=n(7),p=n(86).fastKey,d=n(20),h=d.set,v=d.getterFor;t.exports={getConstructor:function(t,e,n,u){var l=t((function(t,r){s(t,l,e),h(t,{type:e,index:o(null),first:void 0,last:void 0,size:0}),f||(t.size=0),null!=r&&c(r,t[u],{that:t,AS_ENTRIES:n})})),d=v(e),m=function(t,e,n){var r,o,i=d(t),a=y(t,e);return a?a.value=n:(i.last=a={index:o=p(e,!0),key:e,value:n,previous:r=i.last,next:void 0,removed:!1},i.first||(i.first=a),r&&(r.next=a),f?i.size++:t.size++,"F"!==o&&(i.index[o]=a)),t},y=function(t,e){var n,r=d(t),o=p(e);if("F"!==o)return r.index[o];for(n=r.first;n;n=n.next)if(n.key==e)return n};return i(l.prototype,{clear:function(){for(var t=d(this),e=t.index,n=t.first;n;)n.removed=!0,n.previous&&(n.previous=n.previous.next=void 0),delete e[n.index],n=n.next;t.first=t.last=void 0,f?t.size=0:this.size=0},"delete":function(t){var e=d(this),n=y(this,t);if(n){var r=n.next,o=n.previous;delete e.index[n.index],n.removed=!0,o&&(o.next=r),r&&(r.previous=o),e.first==n&&(e.first=r),e.last==n&&(e.last=o),f?e.size--:this.size--}return!!n},forEach:function(t){for(var e,n=d(this),r=a(t,arguments.length>1?arguments[1]:void 0,3);e=e?e.next:n.first;)for(r(e.value,e.key,this);e&&e.removed;)e=e.previous},has:function(t){return!!y(this,t)}}),i(l.prototype,n?{get:function(t){var e=y(this,t);return e&&e.value},set:function(t,e){return m(this,0===t?0:t,e)}}:{add:function(t){return m(this,t=0===t?0:t,t)}}),f&&r(l.prototype,"size",{get:function(){return d(this).size}}),l},setStrong:function(t,e,n){var r=e+" Iterator",o=v(e),i=v(r);u(t,e,(function(t,e){h(this,{type:r,target:t,state:o(t),kind:e,last:void 0})}),(function(){for(var t=i(this),e=t.kind,n=t.last;n&&n.removed;)n=n.previous;return t.target&&(t.last=n=n?n.next:t.state.first)?"keys"==e?{value:n.key,done:!1}:"values"==e?{value:n.value,done:!1}:{value:[n.key,n.value],done:!1}:(t.target=void 0,{value:void 0,done:!0})}),n?"entries":"values",!n,!0),l(e)}}},function(t,e,n){var r=n(11);t.exports=function(t,e,n){for(var o in e)r(t,o,e[o],n);return t}},function(t,e,n){"use strict";var r=n(22),o=n(9),i=n(1),a=n(7),s=i("species");t.exports=function(t){var e=r(t),n=o.f;a&&e&&!e[s]&&n(e,s,{configurable:!0,get:function(){return this}})}},function(t,e,n){"use strict";var r=n(43),o=n(88);t.exports=r?{}.toString:function(){return"[object "+o(this)+"]"}},function(t,e,n){"use strict";var r=n(91).charAt,o=n(20),i=n(41),a=o.set,s=o.getterFor("String Iterator");i(String,"String",(function(t){a(this,{type:"String Iterator",string:String(t),index:0})}),(function(){var t,e=s(this),n=e.string,o=e.index;return o>=n.length?{value:void 0,done:!0}:(t=r(n,o),e.index+=t.length,{value:t,done:!1})}))},function(t,e,n){var r=n(2),o=n(92),i=n(70),a=n(8);for(var s in o){var c=r[s],u=c&&c.prototype;if(u&&u.forEach!==i)try{a(u,"forEach",i)}catch(t){u.forEach=i}}},function(t,e,n){var r=n(2),o=n(92),i=n(82),a=n(8),s=n(1),c=s("iterator"),u=s("toStringTag"),l=i.values;for(var f in o){var p=r[f],d=p&&p.prototype;if(d){if(d[c]!==l)try{a(d,c,l)}catch(t){d[c]=l}if(d[u]||a(d,u,f),o[f])for(var h in i)if(d[h]!==i[h])try{a(d,h,i[h])}catch(t){d[h]=i[h]}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getCurrentUser=function(){if(null===o)return null;return{uid:o,displayName:a,isAdmin:s}};var r=document.getElementsByTagName("head")[0],o=r?r.getAttribute("data-user"):null,i=document.getElementsByTagName("head")[0],a=i?i.getAttribute("data-user-displayname"):null,s="undefined"!=typeof OC&&OC.isUserAdmin()},function(t,e,n){"use strict";var r=n(10),o=n(57).indexOf,i=n(75),a=n(38),s=[].indexOf,c=!!s&&1/[1].indexOf(1,-0)<0,u=i("indexOf"),l=a("indexOf",{ACCESSORS:!0,1:0});r({target:"Array",proto:!0,forced:c||!u||!l},{indexOf:function(t){return c?s.apply(this,arguments)||0:o(this,t,arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){"use strict";var r=n(0);function o(t,e){return RegExp(t,e)}e.UNSUPPORTED_Y=r((function(){var t=o("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),e.BROKEN_CARET=r((function(){var t=o("^r","gy");return t.lastIndex=2,null!=t.exec("str")}))},function(t,e,n){"use strict";var r=n(11),o=n(6),i=n(0),a=n(94),s=RegExp.prototype,c=s.toString,u=i((function(){return"/a/b"!=c.call({source:"a",flags:"b"})})),l="toString"!=c.name;(u||l)&&r(RegExp.prototype,"toString",(function(){var t=o(this),e=String(t.source),n=t.flags;return"/"+e+"/"+String(void 0===n&&t instanceof RegExp&&!("flags"in s)?a.call(t):n)}),{unsafe:!0})},function(t,e,n){"use strict";var r=n(161),o=n(6),i=n(12),a=n(23),s=n(19),c=n(162),u=n(163),l=n(164),f=Math.max,p=Math.min;r("replace",2,(function(t,e,n,r){var d=r.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE,h=r.REPLACE_KEEPS_$0,v=d?"$":"$0";return[function(n,r){var o=s(this),i=null==n?void 0:n[t];return void 0!==i?i.call(n,o,r):e.call(String(o),n,r)},function(t,r){if(!d&&h||"string"==typeof r&&-1===r.indexOf(v)){var s=n(e,t,this,r);if(s.done)return s.value}var m=o(t),y=String(this),g="function"==typeof r;g||(r=String(r));var b=m.global;if(b){var _=m.unicode;m.lastIndex=0}for(var E=[];;){var A=l(m,y);if(null===A)break;if(E.push(A),!b)break;""===String(A[0])&&(m.lastIndex=c(y,i(m.lastIndex),_))}for(var x,w="",O=0,C=0;C<E.length;C++){A=E[C];for(var S=String(A[0]),I=f(p(a(A.index),y.length),0),T=[],R=1;R<A.length;R++)T.push(void 0===(x=A[R])?x:String(x));var N=A.groups;if(g){var k=[S].concat(T,I,y);void 0!==N&&k.push(N);var L=String(r.apply(void 0,k))}else L=u(S,y,I,T,N,r);I>=O&&(w+=y.slice(O,I)+L,O=I+S.length)}return w+y.slice(O)}]}))},function(t,e,n){"use strict";n(93);var r=n(11),o=n(0),i=n(1),a=n(44),s=n(8),c=i("species"),u=!o((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")})),l="$0"==="a".replace(/./,"$0"),f=i("replace"),p=!!/./[f]&&""===/./[f]("a","$0"),d=!o((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n="ab".split(t);return 2!==n.length||"a"!==n[0]||"b"!==n[1]}));t.exports=function(t,e,n,f){var h=i(t),v=!o((function(){var e={};return e[h]=function(){return 7},7!=""[t](e)})),m=v&&!o((function(){var e=!1,n=/a/;return"split"===t&&((n={}).constructor={},n.constructor[c]=function(){return n},n.flags="",n[h]=/./[h]),n.exec=function(){return e=!0,null},n[h](""),!e}));if(!v||!m||"replace"===t&&(!u||!l||p)||"split"===t&&!d){var y=/./[h],g=n(h,""[t],(function(t,e,n,r,o){return e.exec===a?v&&!o?{done:!0,value:y.call(e,n,r)}:{done:!0,value:t.call(n,e,r)}:{done:!1}}),{REPLACE_KEEPS_$0:l,REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE:p}),b=g[0],_=g[1];r(String.prototype,t,b),r(RegExp.prototype,h,2==e?function(t,e){return _.call(t,this,e)}:function(t){return _.call(t,this)})}f&&s(RegExp.prototype[h],"sham",!0)}},function(t,e,n){"use strict";var r=n(91).charAt;t.exports=function(t,e,n){return e+(n?r(t,e).length:1)}},function(t,e,n){var r=n(13),o=Math.floor,i="".replace,a=/\$([$&'`]|\d\d?|<[^>]*>)/g,s=/\$([$&'`]|\d\d?)/g;t.exports=function(t,e,n,c,u,l){var f=n+t.length,p=c.length,d=s;return void 0!==u&&(u=r(u),d=a),i.call(l,d,(function(r,i){var a;switch(i.charAt(0)){case"$":return"$";case"&":return t;case"`":return e.slice(0,n);case"'":return e.slice(f);case"<":a=u[i.slice(1,-1)];break;default:var s=+i;if(0===s)return r;if(s>p){var l=o(s/10);return 0===l?r:l<=p?void 0===c[l-1]?i.charAt(1):c[l-1]+i.charAt(1):r}a=c[s-1]}return void 0===a?"":a}))}},function(t,e,n){var r=n(18),o=n(44);t.exports=function(t,e){var n=t.exec;if("function"==typeof n){var i=n.call(t,e);if("object"!=typeof i)throw TypeError("RegExp exec method returned something other than an Object or null");return i}if("RegExp"!==r(t))throw TypeError("RegExp#exec called on incompatible receiver");return o.call(t,e)}},function(t,e,n){(function(t){var r=void 0!==t&&t||"undefined"!=typeof self&&self||window,o=Function.prototype.apply;function i(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new i(o.call(setTimeout,r,arguments),clearTimeout)},e.setInterval=function(){return new i(o.call(setInterval,r,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},i.prototype.unref=i.prototype.ref=function(){},i.prototype.close=function(){this._clearFn.call(r,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout((function(){t._onTimeout&&t._onTimeout()}),e))},n(166),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==t&&t.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==t&&t.clearImmediate||this&&this.clearImmediate}).call(this,n(15))},function(t,e,n){(function(t,e){!function(t,n){"use strict";if(!t.setImmediate){var r,o,i,a,s,c=1,u={},l=!1,f=t.document,p=Object.getPrototypeOf&&Object.getPrototypeOf(t);p=p&&p.setTimeout?p:t,"[object process]"==={}.toString.call(t.process)?r=function(t){e.nextTick((function(){h(t)}))}:!function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?t.MessageChannel?((i=new MessageChannel).port1.onmessage=function(t){h(t.data)},r=function(t){i.port2.postMessage(t)}):f&&"onreadystatechange"in f.createElement("script")?(o=f.documentElement,r=function(t){var e=f.createElement("script");e.onreadystatechange=function(){h(t),e.onreadystatechange=null,o.removeChild(e),e=null},o.appendChild(e)}):r=function(t){setTimeout(h,0,t)}:(a="setImmediate$"+Math.random()+"$",s=function(e){e.source===t&&"string"==typeof e.data&&0===e.data.indexOf(a)&&h(+e.data.slice(a.length))},t.addEventListener?t.addEventListener("message",s,!1):t.attachEvent("onmessage",s),r=function(e){t.postMessage(a+e,"*")}),p.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),n=0;n<e.length;n++)e[n]=arguments[n+1];var o={callback:t,args:e};return u[c]=o,r(c),c++},p.clearImmediate=d}function d(t){delete u[t]}function h(t){if(l)setTimeout(h,0,t);else{var e=u[t];if(e){l=!0;try{!function(t){var e=t.callback,n=t.args;switch(n.length){case 0:e();break;case 1:e(n[0]);break;case 2:e(n[0],n[1]);break;case 3:e(n[0],n[1],n[2]);break;default:e.apply(void 0,n)}}(e)}finally{d(t),l=!1}}}}}("undefined"==typeof self?void 0===t?this:t:self)}).call(this,n(15),n(36))},function(e,n,r){"use strict";r.r(n);var o=r(27),i=r(45),a=r.n(i),s={name:"OAuthItem",props:{client:{type:Object,required:!0}},data:function(){return{id:this.client.id,name:this.client.name,redirectUri:this.client.redirectUri,clientId:this.client.clientId,clientSecret:this.client.clientSecret,renderSecret:!1}},computed:{renderedSecret:function(){return this.renderSecret?this.clientSecret:"****"}},methods:{toggleSecret:function(){this.renderSecret=!this.renderSecret}}},c=r(24),u=r.n(c),l=r(46),f={insert:"head",singleton:!1};u()(l.a,f),l.a.locals;function p(t,e,n,r,o,i,a,s){var c,u="function"==typeof t?t.options:t;if(e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),i&&(u._scopeId="data-v-"+i),a?(c=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),o&&o.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},u._ssrRegister=c):o&&(c=s?function(){o.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:o),c)if(u.functional){u._injectStyles=c;var l=u.render;u.render=function(t,e){return c.call(e),l(t,e)}}else{var f=u.beforeCreate;u.beforeCreate=f?[].concat(f,c):[c]}return{exports:t,options:u}}var d=p(s,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("tr",[n("td",[n("table",{staticClass:"inline"},[n("tr",[n("td",[t._v(t._s(t.t("oauth2","Name")))]),t._v(" "),n("td",[t._v(t._s(t.name))])]),t._v(" "),n("tr",[n("td",[t._v(t._s(t.t("oauth2","Redirection URI")))]),t._v(" "),n("td",[t._v(t._s(t.redirectUri))])]),t._v(" "),n("tr",[n("td",[t._v(t._s(t.t("oauth2","Client Identifier")))]),t._v(" "),n("td",[n("code",[t._v(t._s(t.clientId))])])]),t._v(" "),n("tr",[n("td",[t._v(t._s(t.t("oauth2","Secret")))]),t._v(" "),n("td",[n("code",[t._v(t._s(t.renderedSecret))]),n("a",{staticClass:"icon-toggle has-tooltip",attrs:{"title":t.t("oauth2","Show client secret")},on:{"click":t.toggleSecret}})])])])]),t._v(" "),n("td",{staticClass:"action-column"},[n("span",[n("a",{staticClass:"icon-delete has-tooltip",attrs:{"title":t.t("oauth2","Delete")},on:{"click":function(e){return t.$emit("delete",t.id)}}})])])])}),[],!1,null,"665ff3f1",null).exports,h=r(47),v={name:"App",components:{OAuthItem:d},props:{clients:{type:Array,required:!0}},data:function(){return{newClient:{name:"",redirectUri:"",errorMsg:"",error:!1}}},methods:{deleteClient:function(t){var e=this;a.a.delete(Object(h.generateUrl)("apps/oauth2/clients/{id}",{id:t})).then((function(n){e.clients=e.clients.filter((function(e){return e.id!==t}))}))},addClient:function(){var t=this;this.newClient.error=!1,a.a.post(Object(h.generateUrl)("apps/oauth2/clients"),{name:this.newClient.name,redirectUri:this.newClient.redirectUri}).then((function(e){t.clients.push(e.data),t.newClient.name="",t.newClient.redirectUri=""})).catch((function(e){t.newClient.error=!0,t.newClient.errorMsg=e.response.data.message}))}}},m=r(48),y={insert:"head",singleton:!1},g=(u()(m.a,y),m.a.locals,p(v,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"section",attrs:{"id":"oauth2"}},[n("h2",[t._v(t._s(t.t("oauth2","OAuth 2.0 clients")))]),t._v(" "),n("p",{staticClass:"settings-hint"},[t._v("\n\t\t\t"+t._s(t.t("oauth2","OAuth 2.0 allows external services to request access to {instanceName}.",{instanceName:t.OC.theme.name}))+"\n\t\t")]),t._v(" "),t.clients.length>0?n("table",{staticClass:"grid"},[t._m(0),t._v(" "),n("tbody",t._l(t.clients,(function(e){return n("OAuthItem",{key:e.id,attrs:{"client":e},on:{"delete":t.deleteClient}})})),1)]):t._e(),t._v(" "),n("br"),t._v(" "),n("h3",[t._v(t._s(t.t("oauth2","Add client")))]),t._v(" "),t.newClient.error?n("span",{staticClass:"msg error"},[t._v(t._s(t.newClient.errorMsg))]):t._e(),t._v(" "),n("form",{on:{"submit":function(e){return e.preventDefault(),t.addClient(e)}}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.newClient.name,expression:"newClient.name"}],attrs:{"id":"name","type":"text","name":"name","placeholder":t.t("oauth2","Name")},domProps:{"value":t.newClient.name},on:{"input":function(e){e.target.composing||t.$set(t.newClient,"name",e.target.value)}}}),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.newClient.redirectUri,expression:"newClient.redirectUri"}],attrs:{"id":"redirectUri","type":"url","name":"redirectUri","placeholder":t.t("oauth2","Redirection URI")},domProps:{"value":t.newClient.redirectUri},on:{"input":function(e){e.target.composing||t.$set(t.newClient,"redirectUri",e.target.value)}}}),t._v(" "),n("input",{staticClass:"button",attrs:{"type":"submit"},domProps:{"value":t.t("oauth2","Add")}})])])}),[function(){var t=this.$createElement,e=this._self._c||t;return e("thead",[e("tr",[e("th",{attrs:{"id":"headerContent"}}),this._v(" "),e("th",{attrs:{"id":"headerRemove"}},[this._v("\n \n\t\t\t\t\t")])])])}],!1,null,"0c0547db",null).exports),b=r(95);o.a.prototype.t=t,o.a.prototype.OC=OC;var _=Object(b.loadState)("oauth2","clients");new(o.a.extend(g))({propsData:{clients:_}}).$mount("#oauth2")}]); -//# sourceMappingURL=oauth2.js.map
\ No newline at end of file diff --git a/apps/oauth2/js/oauth2.js.map b/apps/oauth2/js/oauth2.js.map deleted file mode 100644 index 0db28943cb6..00000000000 --- a/apps/oauth2/js/oauth2.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./node_modules/core-js/internals/fails.js","webpack:///./node_modules/core-js/internals/well-known-symbol.js","webpack:///./node_modules/core-js/internals/global.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/utils.js","webpack:///./node_modules/core-js/internals/has.js","webpack:///./node_modules/core-js/internals/is-object.js","webpack:///./node_modules/core-js/internals/an-object.js","webpack:///./node_modules/core-js/internals/descriptors.js","webpack:///./node_modules/core-js/internals/create-non-enumerable-property.js","webpack:///./node_modules/core-js/internals/object-define-property.js","webpack:///./node_modules/core-js/internals/export.js","webpack:///./node_modules/core-js/internals/redefine.js","webpack:///./node_modules/core-js/internals/to-length.js","webpack:///./node_modules/core-js/internals/to-object.js","webpack:///./node_modules/core-js/internals/iterators.js","webpack:///(webpack)/buildin/global.js","webpack:///./node_modules/core-js/internals/create-property-descriptor.js","webpack:///./node_modules/core-js/internals/to-indexed-object.js","webpack:///./node_modules/core-js/internals/classof-raw.js","webpack:///./node_modules/core-js/internals/require-object-coercible.js","webpack:///./node_modules/core-js/internals/internal-state.js","webpack:///./node_modules/core-js/internals/hidden-keys.js","webpack:///./node_modules/core-js/internals/get-built-in.js","webpack:///./node_modules/core-js/internals/to-integer.js","webpack:///./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","webpack:///./node_modules/css-loader/dist/runtime/cssWithMappingToString.js","webpack:///./node_modules/css-loader/dist/runtime/api.js","webpack:///./node_modules/vue/dist/vue.runtime.esm.js","webpack:///./node_modules/core-js/internals/indexed-object.js","webpack:///./node_modules/core-js/internals/to-primitive.js","webpack:///./node_modules/core-js/internals/set-global.js","webpack:///./node_modules/core-js/internals/shared-store.js","webpack:///./node_modules/core-js/internals/shared-key.js","webpack:///./node_modules/core-js/internals/is-pure.js","webpack:///./node_modules/core-js/internals/uid.js","webpack:///./node_modules/core-js/internals/enum-bug-keys.js","webpack:///./node_modules/process/browser.js","webpack:///./node_modules/core-js/internals/function-bind-context.js","webpack:///./node_modules/core-js/internals/array-method-uses-to-length.js","webpack:///./node_modules/semver/internal/constants.js","webpack:///./node_modules/core-js/internals/object-create.js","webpack:///./node_modules/core-js/internals/define-iterator.js","webpack:///./node_modules/core-js/internals/set-to-string-tag.js","webpack:///./node_modules/core-js/internals/to-string-tag-support.js","webpack:///./node_modules/core-js/internals/regexp-exec.js","webpack:///./node_modules/@nextcloud/axios/dist/index.js","webpack:///./apps/oauth2/src/components/OAuthItem.vue?7c68","webpack:///./node_modules/@nextcloud/router/dist/index.js","webpack:///./apps/oauth2/src/App.vue?199a","webpack:///./node_modules/core-js/modules/es.object.assign.js","webpack:///./node_modules/core-js/internals/object-get-own-property-descriptor.js","webpack:///./node_modules/core-js/internals/object-property-is-enumerable.js","webpack:///./node_modules/core-js/internals/ie8-dom-define.js","webpack:///./node_modules/core-js/internals/document-create-element.js","webpack:///./node_modules/core-js/internals/inspect-source.js","webpack:///./node_modules/core-js/internals/shared.js","webpack:///./node_modules/core-js/internals/object-keys-internal.js","webpack:///./node_modules/core-js/internals/array-includes.js","webpack:///./node_modules/core-js/internals/object-get-own-property-symbols.js","webpack:///./node_modules/core-js/internals/is-forced.js","webpack:///./node_modules/core-js/internals/object-keys.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/bind.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/buildURL.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/cancel/isCancel.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/defaults.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/adapters/xhr.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/createError.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/mergeConfig.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/cancel/Cancel.js","webpack:///./node_modules/core-js/modules/es.array.for-each.js","webpack:///./node_modules/core-js/internals/array-for-each.js","webpack:///./node_modules/core-js/internals/array-iteration.js","webpack:///./node_modules/core-js/internals/array-species-create.js","webpack:///./node_modules/core-js/internals/is-array.js","webpack:///./node_modules/core-js/internals/native-symbol.js","webpack:///./node_modules/core-js/internals/array-method-is-strict.js","webpack:///./node_modules/semver/internal/re.js","webpack:///./node_modules/semver/internal/debug.js","webpack:///./node_modules/semver/classes/semver.js","webpack:///./node_modules/core-js/modules/es.array.concat.js","webpack:///./node_modules/core-js/internals/array-method-has-species-support.js","webpack:///./node_modules/core-js/internals/engine-v8-version.js","webpack:///./node_modules/core-js/modules/es.array.iterator.js","webpack:///./node_modules/core-js/internals/iterators-core.js","webpack:///./node_modules/core-js/internals/object-get-prototype-of.js","webpack:///./node_modules/core-js/internals/object-set-prototype-of.js","webpack:///./node_modules/core-js/internals/internal-metadata.js","webpack:///./node_modules/core-js/internals/iterate.js","webpack:///./node_modules/core-js/internals/classof.js","webpack:///./node_modules/core-js/internals/an-instance.js","webpack:///./node_modules/core-js/modules/es.object.to-string.js","webpack:///./node_modules/core-js/internals/string-multibyte.js","webpack:///./node_modules/core-js/internals/dom-iterables.js","webpack:///./node_modules/core-js/modules/es.regexp.exec.js","webpack:///./node_modules/core-js/internals/regexp-flags.js","webpack:///./node_modules/@nextcloud/initial-state/dist/index.js","webpack:///./node_modules/core-js/internals/native-weak-map.js","webpack:///./node_modules/core-js/internals/copy-constructor-properties.js","webpack:///./node_modules/core-js/internals/own-keys.js","webpack:///./node_modules/core-js/internals/path.js","webpack:///./node_modules/core-js/internals/object-get-own-property-names.js","webpack:///./node_modules/core-js/internals/to-absolute-index.js","webpack:///./node_modules/core-js/internals/object-assign.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/index.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/axios.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/Axios.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/InterceptorManager.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/dispatchRequest.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/transformData.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/normalizeHeaderName.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/settle.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/enhanceError.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/cookies.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/buildFullPath.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/isAbsoluteURL.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/combineURLs.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/parseHeaders.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/isURLSameOrigin.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/cancel/CancelToken.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/spread.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/isAxiosError.js","webpack:///./node_modules/@nextcloud/auth/dist/index.js","webpack:///./node_modules/@nextcloud/auth/dist/requesttoken.js","webpack:///./node_modules/core-js/internals/a-function.js","webpack:///./node_modules/core-js/internals/use-symbol-as-uid.js","webpack:///../lib/index.ts","webpack:///../lib/ProxyBus.ts","webpack:///./node_modules/semver/functions/valid.js","webpack:///./node_modules/semver/functions/parse.js","webpack:///./node_modules/semver/internal/identifiers.js","webpack:///./node_modules/semver/functions/major.js","webpack:///../lib/SimpleBus.ts","webpack:///./node_modules/core-js/internals/create-property.js","webpack:///./node_modules/core-js/internals/engine-user-agent.js","webpack:///./node_modules/core-js/modules/es.array.filter.js","webpack:///./node_modules/core-js/internals/add-to-unscopables.js","webpack:///./node_modules/core-js/internals/object-define-properties.js","webpack:///./node_modules/core-js/internals/html.js","webpack:///./node_modules/core-js/internals/create-iterator-constructor.js","webpack:///./node_modules/core-js/internals/correct-prototype-getter.js","webpack:///./node_modules/core-js/internals/a-possible-prototype.js","webpack:///./node_modules/core-js/modules/es.map.js","webpack:///./node_modules/core-js/internals/collection.js","webpack:///./node_modules/core-js/internals/freezing.js","webpack:///./node_modules/core-js/internals/is-array-iterator-method.js","webpack:///./node_modules/core-js/internals/get-iterator-method.js","webpack:///./node_modules/core-js/internals/iterator-close.js","webpack:///./node_modules/core-js/internals/check-correctness-of-iteration.js","webpack:///./node_modules/core-js/internals/inherit-if-required.js","webpack:///./node_modules/core-js/internals/collection-strong.js","webpack:///./node_modules/core-js/internals/redefine-all.js","webpack:///./node_modules/core-js/internals/set-species.js","webpack:///./node_modules/core-js/internals/object-to-string.js","webpack:///./node_modules/core-js/modules/es.string.iterator.js","webpack:///./node_modules/core-js/modules/web.dom-collections.for-each.js","webpack:///./node_modules/core-js/modules/web.dom-collections.iterator.js","webpack:///./node_modules/@nextcloud/auth/dist/user.js","webpack:///./node_modules/core-js/modules/es.array.index-of.js","webpack:///./node_modules/core-js/internals/regexp-sticky-helpers.js","webpack:///./node_modules/core-js/modules/es.regexp.to-string.js","webpack:///./node_modules/core-js/modules/es.string.replace.js","webpack:///./node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js","webpack:///./node_modules/core-js/internals/advance-string-index.js","webpack:///./node_modules/core-js/internals/get-substitution.js","webpack:///./node_modules/core-js/internals/regexp-exec-abstract.js","webpack:///./node_modules/timers-browserify/main.js","webpack:///./node_modules/setimmediate/setImmediate.js","webpack:///./apps/oauth2/src/components/OAuthItem.vue?0ab9","webpack:///apps/oauth2/src/components/OAuthItem.vue","webpack:///./apps/oauth2/src/components/OAuthItem.vue?d90b","webpack:///./node_modules/vue-loader/lib/runtime/componentNormalizer.js","webpack:///./apps/oauth2/src/components/OAuthItem.vue","webpack:///./apps/oauth2/src/components/OAuthItem.vue?5f8d","webpack:///./apps/oauth2/src/App.vue?6183","webpack:///apps/oauth2/src/App.vue","webpack:///./apps/oauth2/src/App.vue?4f6b","webpack:///./apps/oauth2/src/App.vue","webpack:///./apps/oauth2/src/App.vue?7fba","webpack:///./apps/oauth2/src/main.js"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","exec","error","global","shared","has","uid","NATIVE_SYMBOL","USE_SYMBOL_AS_UID","WellKnownSymbolsStore","createWellKnownSymbol","withoutSetter","it","Math","check","globalThis","window","self","this","Function","toString","isArray","val","isUndefined","isObject","isPlainObject","getPrototypeOf","isFunction","forEach","obj","fn","length","isArrayBuffer","isBuffer","constructor","isFormData","FormData","isArrayBufferView","ArrayBuffer","isView","buffer","isString","isNumber","isDate","isFile","isBlob","isStream","pipe","isURLSearchParams","URLSearchParams","isStandardBrowserEnv","navigator","product","document","merge","result","assignValue","slice","arguments","extend","a","b","thisArg","trim","str","replace","stripBOM","content","charCodeAt","TypeError","String","fails","DESCRIPTORS","definePropertyModule","createPropertyDescriptor","f","IE8_DOM_DEFINE","anObject","toPrimitive","nativeDefineProperty","O","P","Attributes","getOwnPropertyDescriptor","createNonEnumerableProperty","redefine","setGlobal","copyConstructorProperties","isForced","options","source","target","targetProperty","sourceProperty","descriptor","TARGET","GLOBAL","STATIC","stat","noTargetGet","forced","undefined","sham","inspectSource","InternalStateModule","getInternalState","enforceInternalState","enforce","TEMPLATE","split","state","unsafe","simple","join","toInteger","min","argument","requireObjectCoercible","g","e","bitmap","configurable","writable","IndexedObject","set","NATIVE_WEAK_MAP","objectHas","sharedKey","hiddenKeys","WeakMap","store","wmget","wmhas","wmset","metadata","facade","STATE","getterFor","TYPE","type","path","aFunction","variable","namespace","method","ceil","floor","isNaN","memo","isOldIE","Boolean","all","atob","getTarget","styleTarget","querySelector","HTMLIFrameElement","contentDocument","head","stylesInDom","getIndexByIdentifier","identifier","modulesToDom","list","idCountMap","identifiers","item","id","base","count","concat","index","css","media","sourceMap","references","updater","push","addStyle","insertStyleElement","style","createElement","attributes","nonce","keys","setAttribute","insert","Error","appendChild","textStore","replaceText","replacement","filter","applyToSingletonTag","remove","styleSheet","cssText","cssNode","createTextNode","childNodes","removeChild","insertBefore","applyToTag","removeAttribute","btoa","unescape","encodeURIComponent","JSON","stringify","firstChild","singleton","singletonCounter","update","styleIndex","parentNode","removeStyleElement","newObj","lastIdentifiers","newList","newLastIdentifiers","_i","_index","splice","_slicedToArray","arr","Array","_arrayWithHoles","iterator","_arr","_n","_d","_e","_s","next","done","err","_iterableToArrayLimit","minLen","_arrayLikeToArray","from","test","_unsupportedIterableToArray","_nonIterableRest","len","arr2","_item","cssMapping","base64","data","sourceMapping","sourceURLs","sources","map","sourceRoot","cssWithMappingToString","mediaQuery","dedupe","alreadyImportedModules","emptyObject","freeze","isUndef","v","isDef","isTrue","isPrimitive","_toString","isRegExp","isValidArrayIndex","parseFloat","isFinite","isPromise","then","catch","toNumber","makeMap","expectsLowerCase","toLowerCase","isReservedAttribute","indexOf","hasOwn","cached","cache","camelizeRE","camelize","_","toUpperCase","capitalize","charAt","hyphenateRE","hyphenate","ctx","boundFn","apply","_length","toArray","start","ret","to","_from","toObject","res","noop","no","identity","looseEqual","isObjectA","isObjectB","isArrayA","isArrayB","every","Date","getTime","keysA","keysB","looseIndexOf","once","called","ASSET_TYPES","LIFECYCLE_HOOKS","config","optionMergeStrategies","silent","productionTip","devtools","performance","errorHandler","warnHandler","ignoredElements","keyCodes","isReservedTag","isReservedAttr","isUnknownElement","getTagNamespace","parsePlatformTagName","mustUseProp","async","_lifecycleHooks","unicodeRegExp","def","bailRE","RegExp","_isServer","hasProto","inBrowser","inWeex","WXEnvironment","platform","weexPlatform","UA","userAgent","isIE","isIE9","isEdge","isIOS","isFF","match","nativeWatch","watch","supportsPassive","opts","addEventListener","isServerRendering","env","VUE_ENV","__VUE_DEVTOOLS_GLOBAL_HOOK__","isNative","Ctor","_Set","hasSymbol","Reflect","ownKeys","Set","add","clear","warn","Dep","subs","addSub","sub","removeSub","depend","addDep","notify","targetStack","pushTarget","popTarget","pop","VNode","tag","children","text","elm","context","componentOptions","asyncFactory","fnContext","fnOptions","fnScopeId","componentInstance","parent","raw","isStatic","isRootInsert","isComment","isCloned","isOnce","asyncMeta","isAsyncPlaceholder","prototypeAccessors","child","defineProperties","createEmptyVNode","node","createTextVNode","cloneVNode","vnode","cloned","arrayProto","arrayMethods","original","args","inserted","ob","__ob__","observeArray","dep","arrayKeys","getOwnPropertyNames","shouldObserve","toggleObserving","Observer","vmCount","src","__proto__","protoAugment","copyAugment","walk","observe","asRootData","isExtensible","_isVue","defineReactive$$1","customSetter","shallow","setter","childOb","dependArray","newVal","max","del","items","strats","mergeData","toVal","fromVal","mergeDataOrFn","parentVal","childVal","vm","instanceData","defaultData","mergeHook","hooks","dedupeHooks","mergeAssets","hook","key$1","props","methods","inject","computed","provide","defaultStrat","mergeOptions","normalizeProps","normalized","normalizeInject","dirs","directives","def$$1","normalizeDirectives","_base","extends","mixins","mergeField","strat","resolveAsset","warnMissing","assets","camelizedId","PascalCaseId","validateProp","propOptions","propsData","prop","absent","booleanIndex","getTypeIndex","stringIndex","default","$options","_props","getType","getPropDefaultValue","prevShouldObserve","isSameType","expectedTypes","handleError","info","cur","$parent","errorCaptured","globalHandleError","invokeWithErrorHandling","handler","_handled","logError","console","timerFunc","isUsingMicroTask","callbacks","pending","flushCallbacks","copies","Promise","resolve","setTimeout","MutationObserver","setImmediate","counter","observer","textNode","characterData","nextTick","cb","_resolve","seenObjects","traverse","_traverse","seen","isA","isFrozen","depId","normalizeEvent","passive","once$$1","capture","createFnInvoker","fns","invoker","arguments$1","updateListeners","on","oldOn","remove$$1","createOnceHandler","old","event","params","mergeVNodeHook","hookKey","oldHook","wrappedHook","merged","checkProp","hash","altKey","preserve","normalizeChildren","normalizeArrayChildren","nestedIndex","lastIndex","last","isTextNode","shift","_isVList","resolveInject","provideKey","_provided","provideDefault","resolveSlots","slots","attrs","slot","name$1","isWhitespace","normalizeScopedSlots","normalSlots","prevSlots","hasNormalSlots","isStable","$stable","$key","_normalized","$hasNormal","normalizeScopedSlot","key$2","proxyNormalSlot","proxy","renderList","render","renderSlot","fallback","bindObject","nodes","scopedSlotFn","$scopedSlots","$slots","$createElement","resolveFilter","isKeyNotMatch","expect","actual","checkKeyCodes","eventKeyCode","builtInKeyCode","eventKeyName","builtInKeyName","mappedKeyCode","bindObjectProps","asProp","isSync","loop","domProps","camelizedKey","hyphenatedKey","$event","renderStatic","isInFor","_staticTrees","tree","markStatic","staticRenderFns","_renderProxy","markOnce","markStaticNode","bindObjectListeners","existing","ours","resolveScopedSlots","hasDynamicKeys","contentHashKey","bindDynamicKeys","baseObj","values","prependModifier","symbol","installRenderHelpers","_o","_l","_t","_q","_m","_f","_k","_b","_v","_u","_g","_p","FunctionalRenderContext","contextVm","this$1","_original","isCompiled","_compiled","needNormalization","listeners","injections","scopedSlots","_scopeId","_c","cloneAndMarkFunctionalResult","renderContext","clone","mergeProps","componentVNodeHooks","init","hydrating","_isDestroyed","keepAlive","mountedNode","prepatch","_isComponent","_parentVnode","inlineTemplate","createComponentInstanceForVnode","activeInstance","$mount","oldVnode","parentVnode","renderChildren","newScopedSlots","oldScopedSlots","hasDynamicScopedSlot","needsForceUpdate","_renderChildren","$vnode","_vnode","$attrs","$listeners","propKeys","_propKeys","oldListeners","_parentListeners","updateComponentListeners","$forceUpdate","updateChildComponent","_isMounted","callHook","_inactive","activatedChildren","activateChildComponent","destroy","deactivateChildComponent","direct","_directInactive","isInInactiveTree","$children","$destroy","hooksToMerge","createComponent","baseCtor","cid","factory","errorComp","resolved","owner","currentRenderingInstance","owners","loading","loadingComp","sync","timerLoading","timerTimeout","$on","forceRender","renderCompleted","clearTimeout","ensureCtor","reject","reason","component","delay","timeout","resolveAsyncComponent","createAsyncPlaceholder","resolveConstructorOptions","model","callback","transformModel","extractPropsFromVNodeData","functional","vnodes","createFunctionalComponent","nativeOn","abstract","toMerge","_merged","mergeHook$1","installComponentHooks","f1","f2","normalizationType","alwaysNormalize","is","simpleNormalizeChildren","pre","applyNS","force","class","registerDeepBindings","_createElement","comp","getFirstComponentChild","remove$1","$off","_target","onceHandler","setActiveInstance","prevActiveInstance","handlers","j","_hasHookEvent","$emit","queue","waiting","flushing","currentFlushTimestamp","getNow","now","createEvent","timeStamp","flushSchedulerQueue","watcher","sort","before","run","activatedQueue","updatedQueue","callActivatedHooks","_watcher","callUpdatedHooks","emit","uid$2","Watcher","expOrFn","isRenderWatcher","_watchers","deep","user","lazy","active","dirty","deps","newDeps","depIds","newDepIds","expression","segments","parsePath","cleanupDeps","tmp","queueWatcher","oldValue","evaluate","teardown","_isBeingDestroyed","sharedPropertyDefinition","sourceKey","initState","propsOptions","initProps","initMethods","_data","getData","initData","watchers","_computedWatchers","isSSR","userDef","computedWatcherOptions","defineComputed","initComputed","createWatcher","initWatch","shouldCache","createComputedGetter","createGetterInvoker","$watch","uid$3","super","superOptions","modifiedOptions","modified","latest","sealed","sealedOptions","resolveModifiedOptions","extendOptions","components","Vue","_init","initExtend","Super","SuperId","cachedCtors","_Ctor","Sub","Comp","initProps$1","initComputed$1","mixin","use","getComponentName","matches","pattern","pruneCache","keepAliveInstance","cachedNode","pruneCacheEntry","current","cached$$1","_uid","vnodeComponentOptions","_componentTag","initInternalComponent","_self","$root","$refs","initLifecycle","_events","initEvents","parentData","initRender","initInjections","initProvide","el","initMixin","dataDef","propsDef","$set","$delete","immediate","stateMixin","hookRE","$once","i$1","cbs","eventsMixin","_update","prevEl","$el","prevVnode","restoreActiveInstance","__patch__","__vue__","lifecycleMixin","$nextTick","_render","ref","renderMixin","patternTypes","builtInComponents","KeepAlive","include","exclude","Number","created","destroyed","mounted","parseInt","configDef","util","defineReactive","delete","observable","plugin","installedPlugins","_installedPlugins","unshift","install","initUse","initMixin$1","definition","initAssetRegisters","initGlobalAPI","ssrContext","version","acceptValue","isEnumeratedAttr","isValidContentEditableValue","isBooleanAttr","xlinkNS","isXlink","getXlinkProp","isFalsyAttrValue","genClassForVnode","childNode","mergeClassData","staticClass","dynamicClass","stringifyClass","renderClass","stringified","stringifyArray","stringifyObject","namespaceMap","svg","math","isHTMLTag","isSVG","unknownElementCache","isTextInputType","nodeOps","tagName","multiple","createElementNS","createComment","newNode","referenceNode","nextSibling","setTextContent","textContent","setStyleScope","scopeId","registerRef","isRemoval","refs","refInFor","emptyNode","sameVnode","typeA","typeB","sameInputType","createKeyToOldIdx","beginIdx","endIdx","updateDirectives","oldDir","dir","isCreate","isDestroy","oldDirs","normalizeDirectives$1","newDirs","dirsWithInsert","dirsWithPostpatch","oldArg","arg","callHook$1","componentUpdated","callInsert","emptyModifiers","modifiers","getRawDirName","rawName","baseModules","updateAttrs","inheritAttrs","oldAttrs","setAttr","removeAttributeNS","baseSetAttr","convertEnumeratedValue","setAttributeNS","__ieph","blocker","stopImmediatePropagation","removeEventListener","updateClass","oldData","cls","transitionClass","_transitionClasses","_prevClass","target$1","klass","createOnceHandler$1","remove$2","useMicrotaskFix","add$1","attachedTimestamp","_wrapper","currentTarget","ownerDocument","updateDOMListeners","change","normalizeEvents","svgContainer","events","updateDOMProps","oldProps","_value","strCur","shouldUpdateValue","innerHTML","checkVal","composing","notInFocus","activeElement","isNotInFocusAndDirty","_vModifiers","number","isDirtyWithModifiers","parseStyleText","propertyDelimiter","normalizeStyleData","normalizeStyleBinding","staticStyle","bindingStyle","emptyStyle","cssVarRE","importantRE","setProp","setProperty","normalizedName","normalize","vendorNames","capName","updateStyle","oldStaticStyle","oldStyleBinding","normalizedStyle","oldStyle","newStyle","checkChild","styleData","getStyle","whitespaceRE","addClass","classList","getAttribute","removeClass","tar","resolveTransition","autoCssTransition","enterClass","enterToClass","enterActiveClass","leaveClass","leaveToClass","leaveActiveClass","hasTransition","transitionProp","transitionEndEvent","animationProp","animationEndEvent","ontransitionend","onwebkittransitionend","onanimationend","onwebkitanimationend","raf","requestAnimationFrame","nextFrame","addTransitionClass","transitionClasses","removeTransitionClass","whenTransitionEnds","expectedType","getTransitionInfo","propCount","ended","end","onEnd","transformRE","styles","getComputedStyle","transitionDelays","transitionDurations","transitionTimeout","getTimeout","animationDelays","animationDurations","animationTimeout","hasTransform","delays","durations","toMs","enter","toggleDisplay","_leaveCb","cancelled","transition","_enterCb","nodeType","appearClass","appearToClass","appearActiveClass","beforeEnter","afterEnter","enterCancelled","beforeAppear","appear","afterAppear","appearCancelled","duration","transitionNode","isAppear","startClass","activeClass","toClass","beforeEnterHook","enterHook","afterEnterHook","enterCancelledHook","explicitEnterDuration","expectsCSS","userWantsControl","getHookArgumentsLength","show","pendingNode","_pending","isValidDuration","leave","rm","beforeLeave","afterLeave","leaveCancelled","delayLeave","explicitLeaveDuration","performLeave","invokerFns","_enter","patch","backend","removeNode","createElm","insertedVnodeQueue","parentElm","refElm","nested","ownerArray","isReactivated","initComponent","innerNode","activate","reactivateComponent","setScope","createChildren","invokeCreateHooks","pendingInsert","isPatchable","ref$$1","ancestor","addVnodes","startIdx","invokeDestroyHook","removeVnodes","ch","removeAndInvokeRemoveHook","childElm","createRmCb","findIdxInOld","oldCh","patchVnode","removeOnly","hydrate","newCh","oldKeyToIdx","idxInOld","vnodeToMove","oldStartIdx","newStartIdx","oldEndIdx","oldStartVnode","oldEndVnode","newEndIdx","newStartVnode","newEndVnode","canMove","updateChildren","postpatch","invokeInsertHook","initial","isRenderedModule","inVPre","hasChildNodes","childrenMatch","fullInvoke","isInitialPatch","isRealElement","hasAttribute","oldElm","patchable","i$2","createPatchFunction","vmodel","trigger","directive","binding","_vOptions","setSelected","getValue","onCompositionStart","onCompositionEnd","prevOptions","curOptions","some","hasNoMatchingOption","actuallySetSelected","isMultiple","selected","option","selectedIndex","initEvent","dispatchEvent","locateNode","platformDirectives","transition$$1","originalDisplay","__vOriginalDisplay","display","unbind","transitionProps","getRealChild","compOptions","extractTransitionData","placeholder","h","rawChild","isNotTextNode","isVShowDirective","Transition","hasParentTransition","_leaving","oldRawChild","oldChild","isSameChild","delayedLeave","moveClass","callPendingCbs","_moveCb","recordPosition","newPos","getBoundingClientRect","applyTranslation","oldPos","pos","dx","left","dy","top","moved","transform","WebkitTransform","transitionDuration","platformComponents","TransitionGroup","beforeMount","kept","prevChildren","rawChildren","transitionData","removed","c$1","updated","hasMove","_reflow","body","offsetHeight","propertyName","_hasMove","cloneNode","attr","HTMLUnknownElement","HTMLElement","updateComponent","mountComponent","query","classof","propertyIsEnumerable","input","PREFERRED_STRING","valueOf","postfix","random","cachedSetTimeout","cachedClearTimeout","process","defaultSetTimout","defaultClearTimeout","runTimeout","fun","currentQueue","draining","queueIndex","cleanUpNextTick","drainQueue","marker","runClearTimeout","Item","array","title","browser","argv","versions","addListener","off","removeListener","removeAllListeners","prependListener","prependOnceListener","cwd","chdir","umask","that","thrower","METHOD_NAME","ACCESSORS","argument0","argument1","MAX_SAFE_INTEGER","SEMVER_SPEC_VERSION","MAX_LENGTH","MAX_SAFE_COMPONENT_LENGTH","activeXDocument","enumBugKeys","html","documentCreateElement","IE_PROTO","EmptyConstructor","scriptTag","LT","NullProtoObject","domain","ActiveXObject","iframeDocument","iframe","write","close","temp","parentWindow","NullProtoObjectViaActiveX","contentWindow","open","F","Properties","$","createIteratorConstructor","setPrototypeOf","setToStringTag","wellKnownSymbol","IS_PURE","Iterators","IteratorsCore","IteratorPrototype","BUGGY_SAFARI_ITERATORS","ITERATOR","returnThis","Iterable","NAME","IteratorConstructor","DEFAULT","IS_SET","FORCED","CurrentIteratorPrototype","KEY","getIterationMethod","KIND","defaultIterator","IterablePrototype","TO_STRING_TAG","INCORRECT_VALUES_NAME","nativeIterator","anyNativeIterator","entries","proto","TAG","re1","re2","regexpFlags","stickyHelpers","nativeExec","nativeReplace","patchedExec","UPDATES_LAST_INDEX_WRONG","UNSUPPORTED_Y","BROKEN_CARET","NPCG_INCLUDED","reCopy","re","sticky","flags","charsAdded","strCopy","multiline","_axios","_auth","client","headers","requesttoken","getRequestToken","cancelableClient","assign","CancelToken","isCancel","onRequestTokenUpdate","token","defaults","_default","___CSS_LOADER_EXPORT___","getRootUrl","generateFilePath","imagePath","generateUrl","generateOcsUrl","generateRemoteUrl","linkTo","app","file","service","location","protocol","host","linkToRemoteBase","url","allOptions","escape","noRewrite","_build","vars","OC","modRewriteWorking","isCore","coreApps","link","substring","appswebroots","encodeURI","webroot","propertyIsEnumerableModule","toIndexedObject","nativeGetOwnPropertyDescriptor","nativePropertyIsEnumerable","NASHORN_BUG","1","V","EXISTS","functionToString","copyright","names","toLength","toAbsoluteIndex","createMethod","IS_INCLUDES","$this","fromIndex","includes","getOwnPropertySymbols","feature","detection","POLYFILL","NATIVE","string","internalObjectKeys","utils","encode","paramsSerializer","serializedParams","parts","toISOString","hashmarkIndex","__CANCEL__","normalizeHeaderName","DEFAULT_CONTENT_TYPE","setContentTypeIfUnset","adapter","XMLHttpRequest","transformRequest","transformResponse","parse","xsrfCookieName","xsrfHeaderName","maxContentLength","maxBodyLength","validateStatus","status","common","settle","cookies","buildURL","buildFullPath","parseHeaders","isURLSameOrigin","createError","requestData","requestHeaders","request","auth","username","password","Authorization","fullPath","baseURL","onreadystatechange","readyState","responseURL","responseHeaders","getAllResponseHeaders","response","responseType","responseText","statusText","onabort","onerror","ontimeout","timeoutErrorMessage","xsrfValue","withCredentials","read","setRequestHeader","onDownloadProgress","onUploadProgress","upload","cancelToken","promise","cancel","abort","send","enhanceError","message","code","config1","config2","valueFromConfig2Keys","mergeDeepPropertiesKeys","defaultToConfig2Keys","directMergeKeys","getMergedValue","mergeDeepProperties","axiosKeys","otherKeys","Cancel","$forEach","arrayMethodIsStrict","arrayMethodUsesToLength","STRICT_METHOD","USES_TO_LENGTH","callbackfn","arraySpeciesCreate","IS_MAP","IS_FILTER","IS_SOME","IS_EVERY","IS_FIND_INDEX","IS_FILTER_OUT","NO_HOLES","specificCreate","boundFunction","find","findIndex","filterOut","SPECIES","originalArray","C","require","debug","R","createToken","isGlobal","NUMERICIDENTIFIER","NUMERICIDENTIFIERLOOSE","NONNUMERICIDENTIFIER","PRERELEASEIDENTIFIER","PRERELEASEIDENTIFIERLOOSE","BUILDIDENTIFIER","MAINVERSION","PRERELEASE","BUILD","FULLPLAIN","MAINVERSIONLOOSE","PRERELEASELOOSE","LOOSEPLAIN","XRANGEIDENTIFIER","XRANGEIDENTIFIERLOOSE","GTLT","XRANGEPLAIN","XRANGEPLAINLOOSE","COERCE","LONETILDE","tildeTrimReplace","LONECARET","caretTrimReplace","comparatorTrimReplace","NODE_DEBUG","compareIdentifiers","SemVer","loose","includePrerelease","LOOSE","FULL","major","minor","prerelease","num","build","format","other","compareMain","comparePre","release","inc","createProperty","arrayMethodHasSpeciesSupport","V8_VERSION","IS_CONCAT_SPREADABLE","IS_CONCAT_SPREADABLE_SUPPORT","SPECIES_SUPPORT","isConcatSpreadable","spreadable","k","E","A","foo","v8","addToUnscopables","defineIterator","setInternalState","iterated","kind","Arguments","PrototypeOfArrayIteratorPrototype","arrayIterator","NEW_ITERATOR_PROTOTYPE","CORRECT_PROTOTYPE_GETTER","ObjectPrototype","aPossiblePrototype","CORRECT_SETTER","FREEZING","METADATA","setMetadata","objectID","weakData","meta","REQUIRED","fastKey","getWeakData","onFreeze","isArrayIteratorMethod","getIteratorMethod","iteratorClose","Result","stopped","iterable","unboundFunction","iterFn","step","AS_ENTRIES","IS_ITERATOR","INTERRUPTED","stop","condition","callFn","TO_STRING_TAG_SUPPORT","classofRaw","CORRECT_ARGUMENTS","tryGet","callee","Constructor","CONVERT_TO_STRING","first","second","S","position","size","codeAt","CSSRuleList","CSSStyleDeclaration","CSSValueList","ClientRectList","DOMRectList","DOMStringList","DOMTokenList","DataTransferItemList","FileList","HTMLAllCollection","HTMLCollection","HTMLFormElement","HTMLSelectElement","MediaList","MimeTypeArray","NamedNodeMap","NodeList","PaintRequestList","Plugin","PluginArray","SVGLengthList","SVGNumberList","SVGPathSegList","SVGPointList","SVGStringList","SVGTransformList","SourceBufferList","StyleSheetList","TextTrackCueList","TextTrackList","TouchList","ignoreCase","dotAll","unicode","loadState","elem","getOwnPropertyDescriptorModule","getBuiltIn","getOwnPropertyNamesModule","getOwnPropertySymbolsModule","integer","objectKeys","nativeAssign","B","chr","T","argumentsLength","Axios","mergeConfig","createInstance","defaultConfig","instance","axios","instanceConfig","promises","spread","isAxiosError","InterceptorManager","dispatchRequest","interceptors","chain","interceptor","fulfilled","rejected","getUri","eject","transformData","throwIfCancellationRequested","throwIfRequested","toJSON","description","fileName","lineNumber","columnNumber","stack","expires","secure","cookie","toGMTString","decodeURIComponent","isAbsoluteURL","combineURLs","requestedURL","relativeURL","ignoreDuplicateOf","parsed","line","substr","originURL","msie","urlParsingNode","resolveURL","href","search","hostname","port","pathname","requestURL","executor","resolvePromise","payload","_requesttoken","_user","getCurrentUser","observers","_eventBus","tokenElement","getElementsByTagName","subscribe","bus","ProxyBus","SimpleBus","packageJson","er","numeric","anum","bnum","rcompareIdentifiers","Map","propertyKey","$filter","HAS_SPECIES_SUPPORT","UNSCOPABLES","ArrayPrototype","collection","collectionStrong","InternalMetadataModule","iterate","anInstance","checkCorrectnessOfIteration","inheritIfRequired","CONSTRUCTOR_NAME","wrapper","IS_WEAK","ADDER","NativeConstructor","NativePrototype","exported","fixMethod","nativeMethod","getConstructor","HASNT_CHAINING","THROWS_ON_PRIMITIVES","ACCEPT_ITERABLES","BUGGY_ZERO","$instance","dummy","setStrong","preventExtensions","returnMethod","SAFE_CLOSING","iteratorWithReturn","SKIP_CLOSING","ITERATION_SUPPORT","Wrapper","NewTarget","NewTargetPrototype","redefineAll","setSpecies","internalStateGetterFor","define","previous","entry","getEntry","prev","ITERATOR_NAME","getInternalCollectionState","getInternalIteratorState","point","DOMIterables","COLLECTION_NAME","Collection","CollectionPrototype","ArrayIteratorMethods","ArrayValues","displayName","isAdmin","uidElement","displayNameElement","isUserAdmin","$indexOf","nativeIndexOf","NEGATIVE_ZERO","searchElement","RE","RegExpPrototype","nativeToString","NOT_GENERIC","INCORRECT_NAME","rf","fixRegExpWellKnownSymbolLogic","advanceStringIndex","getSubstitution","regExpExec","REPLACE","maybeCallNative","REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE","REPLACE_KEEPS_$0","UNSAFE_SUBSTITUTE","searchValue","replaceValue","replacer","regexp","rx","functionalReplace","fullUnicode","results","accumulatedResult","nextSourcePosition","matched","captures","namedCaptures","groups","replacerArgs","regexpExec","REPLACE_SUPPORTS_NAMED_GROUPS","SPLIT_WORKS_WITH_OVERWRITTEN_EXEC","originalExec","SYMBOL","DELEGATES_TO_SYMBOL","DELEGATES_TO_EXEC","execCalled","nativeRegExpMethod","arg2","forceStringMethod","stringMethod","regexMethod","SUBSTITUTION_SYMBOLS","SUBSTITUTION_SYMBOLS_NO_NAMED","tailPos","symbols","Timeout","clearFn","_id","_clearFn","scope","setInterval","clearInterval","unref","enroll","msecs","_idleTimeoutId","_idleTimeout","unenroll","_unrefActive","_onTimeout","clearImmediate","registerImmediate","channel","messagePrefix","onGlobalMessage","nextHandle","tasksByHandle","currentlyRunningATask","doc","attachTo","handle","runIfPresent","postMessage","importScripts","postMessageIsAsynchronous","oldOnMessage","onmessage","canUsePostMessage","MessageChannel","port1","port2","documentElement","script","attachEvent","task","locals","normalizeComponent","scriptExports","functionalTemplate","injectStyles","moduleIdentifier","shadowMode","__VUE_SSR_CONTEXT__","_registeredComponents","_ssrRegister","shadowRoot","_injectStyles","originalRender","beforeCreate","_vm","_h","redirectUri","clientId","renderedSecret","toggleSecret","instanceName","theme","clients","deleteClient","newClient","errorMsg","preventDefault","addClient","App"],"mappings":"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","file":"oauth2.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/js\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 167);\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","var global = require('../internals/global');\nvar shared = require('../internals/shared');\nvar has = require('../internals/has');\nvar uid = require('../internals/uid');\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar WellKnownSymbolsStore = shared('wks');\nvar Symbol = global.Symbol;\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;\n\nmodule.exports = function (name) {\n if (!has(WellKnownSymbolsStore, name)) {\n if (NATIVE_SYMBOL && has(Symbol, name)) WellKnownSymbolsStore[name] = Symbol[name];\n else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);\n } return WellKnownSymbolsStore[name];\n};\n","var check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line no-undef\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func\n (function () { return this; })() || Function('return this')();\n","'use strict';\n\nvar bind = require('./helpers/bind');\n\n/*global toString:true*/\n\n// utils is a library of generic helper functions non-specific to axios\n\nvar toString = Object.prototype.toString;\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Array, otherwise false\n */\nfunction isArray(val) {\n return toString.call(val) === '[object Array]';\n}\n\n/**\n * Determine if a value is undefined\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nfunction isUndefined(val) {\n return typeof val === 'undefined';\n}\n\n/**\n * Determine if a value is a Buffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Buffer, otherwise false\n */\nfunction isBuffer(val) {\n return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)\n && typeof val.constructor.isBuffer === 'function' && val.constructor.isBuffer(val);\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nfunction isArrayBuffer(val) {\n return toString.call(val) === '[object ArrayBuffer]';\n}\n\n/**\n * Determine if a value is a FormData\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nfunction isFormData(val) {\n return (typeof FormData !== 'undefined') && (val instanceof FormData);\n}\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n var result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (val.buffer instanceof ArrayBuffer);\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a String, otherwise false\n */\nfunction isString(val) {\n return typeof val === 'string';\n}\n\n/**\n * Determine if a value is a Number\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Number, otherwise false\n */\nfunction isNumber(val) {\n return typeof val === 'number';\n}\n\n/**\n * Determine if a value is an Object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Object, otherwise false\n */\nfunction isObject(val) {\n return val !== null && typeof val === 'object';\n}\n\n/**\n * Determine if a value is a plain Object\n *\n * @param {Object} val The value to test\n * @return {boolean} True if value is a plain Object, otherwise false\n */\nfunction isPlainObject(val) {\n if (toString.call(val) !== '[object Object]') {\n return false;\n }\n\n var prototype = Object.getPrototypeOf(val);\n return prototype === null || prototype === Object.prototype;\n}\n\n/**\n * Determine if a value is a Date\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Date, otherwise false\n */\nfunction isDate(val) {\n return toString.call(val) === '[object Date]';\n}\n\n/**\n * Determine if a value is a File\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a File, otherwise false\n */\nfunction isFile(val) {\n return toString.call(val) === '[object File]';\n}\n\n/**\n * Determine if a value is a Blob\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nfunction isBlob(val) {\n return toString.call(val) === '[object Blob]';\n}\n\n/**\n * Determine if a value is a Function\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nfunction isFunction(val) {\n return toString.call(val) === '[object Function]';\n}\n\n/**\n * Determine if a value is a Stream\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nfunction isStream(val) {\n return isObject(val) && isFunction(val.pipe);\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nfunction isURLSearchParams(val) {\n return typeof URLSearchParams !== 'undefined' && val instanceof URLSearchParams;\n}\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n * @returns {String} The String freed of excess whitespace\n */\nfunction trim(str) {\n return str.replace(/^\\s*/, '').replace(/\\s*$/, '');\n}\n\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * navigator.product -> 'ReactNative'\n * nativescript\n * navigator.product -> 'NativeScript' or 'NS'\n */\nfunction isStandardBrowserEnv() {\n if (typeof navigator !== 'undefined' && (navigator.product === 'ReactNative' ||\n navigator.product === 'NativeScript' ||\n navigator.product === 'NS')) {\n return false;\n }\n return (\n typeof window !== 'undefined' &&\n typeof document !== 'undefined'\n );\n}\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n */\nfunction forEach(obj, fn) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (var i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n fn.call(null, obj[key], key, obj);\n }\n }\n }\n}\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n var result = {};\n function assignValue(val, key) {\n if (isPlainObject(result[key]) && isPlainObject(val)) {\n result[key] = merge(result[key], val);\n } else if (isPlainObject(val)) {\n result[key] = merge({}, val);\n } else if (isArray(val)) {\n result[key] = val.slice();\n } else {\n result[key] = val;\n }\n }\n\n for (var i = 0, l = arguments.length; i < l; i++) {\n forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n * @return {Object} The resulting value of object a\n */\nfunction extend(a, b, thisArg) {\n forEach(b, function assignValue(val, key) {\n if (thisArg && typeof val === 'function') {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n });\n return a;\n}\n\n/**\n * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)\n *\n * @param {string} content with BOM\n * @return {string} content value without BOM\n */\nfunction stripBOM(content) {\n if (content.charCodeAt(0) === 0xFEFF) {\n content = content.slice(1);\n }\n return content;\n}\n\nmodule.exports = {\n isArray: isArray,\n isArrayBuffer: isArrayBuffer,\n isBuffer: isBuffer,\n isFormData: isFormData,\n isArrayBufferView: isArrayBufferView,\n isString: isString,\n isNumber: isNumber,\n isObject: isObject,\n isPlainObject: isPlainObject,\n isUndefined: isUndefined,\n isDate: isDate,\n isFile: isFile,\n isBlob: isBlob,\n isFunction: isFunction,\n isStream: isStream,\n isURLSearchParams: isURLSearchParams,\n isStandardBrowserEnv: isStandardBrowserEnv,\n forEach: forEach,\n merge: merge,\n extend: extend,\n trim: trim,\n stripBOM: stripBOM\n};\n","var hasOwnProperty = {}.hasOwnProperty;\n\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it)) {\n throw TypeError(String(it) + ' is not an object');\n } return it;\n};\n","var fails = require('../internals/fails');\n\n// Detect IE8's incomplete defineProperty implementation\nmodule.exports = !fails(function () {\n return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;\n});\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar anObject = require('../internals/an-object');\nvar toPrimitive = require('../internals/to-primitive');\n\nvar nativeDefineProperty = Object.defineProperty;\n\n// `Object.defineProperty` method\n// https://tc39.es/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return nativeDefineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","var global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar setGlobal = require('../internals/set-global');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar isForced = require('../internals/is-forced');\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.noTargetGet - prevent calling a getter on target\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || setGlobal(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.noTargetGet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty === typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n // extend global\n redefine(target, key, sourceProperty, options);\n }\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar setGlobal = require('../internals/set-global');\nvar inspectSource = require('../internals/inspect-source');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar getInternalState = InternalStateModule.get;\nvar enforceInternalState = InternalStateModule.enforce;\nvar TEMPLATE = String(String).split('String');\n\n(module.exports = function (O, key, value, options) {\n var unsafe = options ? !!options.unsafe : false;\n var simple = options ? !!options.enumerable : false;\n var noTargetGet = options ? !!options.noTargetGet : false;\n var state;\n if (typeof value == 'function') {\n if (typeof key == 'string' && !has(value, 'name')) {\n createNonEnumerableProperty(value, 'name', key);\n }\n state = enforceInternalState(value);\n if (!state.source) {\n state.source = TEMPLATE.join(typeof key == 'string' ? key : '');\n }\n }\n if (O === global) {\n if (simple) O[key] = value;\n else setGlobal(key, value);\n return;\n } else if (!unsafe) {\n delete O[key];\n } else if (!noTargetGet && O[key]) {\n simple = true;\n }\n if (simple) O[key] = value;\n else createNonEnumerableProperty(O, key, value);\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, 'toString', function toString() {\n return typeof this == 'function' && getInternalState(this).source || inspectSource(this);\n});\n","var toInteger = require('../internals/to-integer');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.es/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","var requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `ToObject` abstract operation\n// https://tc39.es/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return Object(requireObjectCoercible(argument));\n};\n","module.exports = {};\n","var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || new Function(\"return this\")();\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","// `RequireObjectCoercible` abstract operation\n// https://tc39.es/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar objectHas = require('../internals/has');\nvar shared = require('../internals/shared-store');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP) {\n var store = shared.state || (shared.state = new WeakMap());\n var wmget = store.get;\n var wmhas = store.has;\n var wmset = store.set;\n set = function (it, metadata) {\n metadata.facade = it;\n wmset.call(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget.call(store, it) || {};\n };\n has = function (it) {\n return wmhas.call(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n metadata.facade = it;\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return objectHas(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return objectHas(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","module.exports = {};\n","var path = require('../internals/path');\nvar global = require('../internals/global');\n\nvar aFunction = function (variable) {\n return typeof variable == 'function' ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `ToInteger` abstract operation\n// https://tc39.es/ecma262/#sec-tointeger\nmodule.exports = function (argument) {\n return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\n};\n","\"use strict\";\n\nvar isOldIE = function isOldIE() {\n var memo;\n return function memorize() {\n if (typeof memo === 'undefined') {\n // Test for IE <= 9 as proposed by Browserhacks\n // @see http://browserhacks.com/#hack-e71d8692f65334173fee715c222cb805\n // Tests for existence of standard globals is to allow style-loader\n // to operate correctly into non-standard environments\n // @see https://github.com/webpack-contrib/style-loader/issues/177\n memo = Boolean(window && document && document.all && !window.atob);\n }\n\n return memo;\n };\n}();\n\nvar getTarget = function getTarget() {\n var memo = {};\n return function memorize(target) {\n if (typeof memo[target] === 'undefined') {\n var styleTarget = document.querySelector(target); // Special case to return head of iframe instead of iframe itself\n\n if (window.HTMLIFrameElement && styleTarget instanceof window.HTMLIFrameElement) {\n try {\n // This will throw an exception if access to iframe is blocked\n // due to cross-origin restrictions\n styleTarget = styleTarget.contentDocument.head;\n } catch (e) {\n // istanbul ignore next\n styleTarget = null;\n }\n }\n\n memo[target] = styleTarget;\n }\n\n return memo[target];\n };\n}();\n\nvar stylesInDom = [];\n\nfunction getIndexByIdentifier(identifier) {\n var result = -1;\n\n for (var i = 0; i < stylesInDom.length; i++) {\n if (stylesInDom[i].identifier === identifier) {\n result = i;\n break;\n }\n }\n\n return result;\n}\n\nfunction modulesToDom(list, options) {\n var idCountMap = {};\n var identifiers = [];\n\n for (var i = 0; i < list.length; i++) {\n var item = list[i];\n var id = options.base ? item[0] + options.base : item[0];\n var count = idCountMap[id] || 0;\n var identifier = \"\".concat(id, \" \").concat(count);\n idCountMap[id] = count + 1;\n var index = getIndexByIdentifier(identifier);\n var obj = {\n css: item[1],\n media: item[2],\n sourceMap: item[3]\n };\n\n if (index !== -1) {\n stylesInDom[index].references++;\n stylesInDom[index].updater(obj);\n } else {\n stylesInDom.push({\n identifier: identifier,\n updater: addStyle(obj, options),\n references: 1\n });\n }\n\n identifiers.push(identifier);\n }\n\n return identifiers;\n}\n\nfunction insertStyleElement(options) {\n var style = document.createElement('style');\n var attributes = options.attributes || {};\n\n if (typeof attributes.nonce === 'undefined') {\n var nonce = typeof __webpack_nonce__ !== 'undefined' ? __webpack_nonce__ : null;\n\n if (nonce) {\n attributes.nonce = nonce;\n }\n }\n\n Object.keys(attributes).forEach(function (key) {\n style.setAttribute(key, attributes[key]);\n });\n\n if (typeof options.insert === 'function') {\n options.insert(style);\n } else {\n var target = getTarget(options.insert || 'head');\n\n if (!target) {\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n }\n\n target.appendChild(style);\n }\n\n return style;\n}\n\nfunction removeStyleElement(style) {\n // istanbul ignore if\n if (style.parentNode === null) {\n return false;\n }\n\n style.parentNode.removeChild(style);\n}\n/* istanbul ignore next */\n\n\nvar replaceText = function replaceText() {\n var textStore = [];\n return function replace(index, replacement) {\n textStore[index] = replacement;\n return textStore.filter(Boolean).join('\\n');\n };\n}();\n\nfunction applyToSingletonTag(style, index, remove, obj) {\n var css = remove ? '' : obj.media ? \"@media \".concat(obj.media, \" {\").concat(obj.css, \"}\") : obj.css; // For old IE\n\n /* istanbul ignore if */\n\n if (style.styleSheet) {\n style.styleSheet.cssText = replaceText(index, css);\n } else {\n var cssNode = document.createTextNode(css);\n var childNodes = style.childNodes;\n\n if (childNodes[index]) {\n style.removeChild(childNodes[index]);\n }\n\n if (childNodes.length) {\n style.insertBefore(cssNode, childNodes[index]);\n } else {\n style.appendChild(cssNode);\n }\n }\n}\n\nfunction applyToTag(style, options, obj) {\n var css = obj.css;\n var media = obj.media;\n var sourceMap = obj.sourceMap;\n\n if (media) {\n style.setAttribute('media', media);\n } else {\n style.removeAttribute('media');\n }\n\n if (sourceMap && typeof btoa !== 'undefined') {\n css += \"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), \" */\");\n } // For old IE\n\n /* istanbul ignore if */\n\n\n if (style.styleSheet) {\n style.styleSheet.cssText = css;\n } else {\n while (style.firstChild) {\n style.removeChild(style.firstChild);\n }\n\n style.appendChild(document.createTextNode(css));\n }\n}\n\nvar singleton = null;\nvar singletonCounter = 0;\n\nfunction addStyle(obj, options) {\n var style;\n var update;\n var remove;\n\n if (options.singleton) {\n var styleIndex = singletonCounter++;\n style = singleton || (singleton = insertStyleElement(options));\n update = applyToSingletonTag.bind(null, style, styleIndex, false);\n remove = applyToSingletonTag.bind(null, style, styleIndex, true);\n } else {\n style = insertStyleElement(options);\n update = applyToTag.bind(null, style, options);\n\n remove = function remove() {\n removeStyleElement(style);\n };\n }\n\n update(obj);\n return function updateStyle(newObj) {\n if (newObj) {\n if (newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap) {\n return;\n }\n\n update(obj = newObj);\n } else {\n remove();\n }\n };\n}\n\nmodule.exports = function (list, options) {\n options = options || {}; // Force single-tag solution on IE6-9, which has a hard limit on the # of <style>\n // tags it will allow on a page\n\n if (!options.singleton && typeof options.singleton !== 'boolean') {\n options.singleton = isOldIE();\n }\n\n list = list || [];\n var lastIdentifiers = modulesToDom(list, options);\n return function update(newList) {\n newList = newList || [];\n\n if (Object.prototype.toString.call(newList) !== '[object Array]') {\n return;\n }\n\n for (var i = 0; i < lastIdentifiers.length; i++) {\n var identifier = lastIdentifiers[i];\n var index = getIndexByIdentifier(identifier);\n stylesInDom[index].references--;\n }\n\n var newLastIdentifiers = modulesToDom(newList, options);\n\n for (var _i = 0; _i < lastIdentifiers.length; _i++) {\n var _identifier = lastIdentifiers[_i];\n\n var _index = getIndexByIdentifier(_identifier);\n\n if (stylesInDom[_index].references === 0) {\n stylesInDom[_index].updater();\n\n stylesInDom.splice(_index, 1);\n }\n }\n\n lastIdentifiers = newLastIdentifiers;\n };\n};","\"use strict\";\n\nfunction _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\n\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\nfunction _iterableToArrayLimit(arr, i) { if (typeof Symbol === \"undefined\" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\n\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\n\nmodule.exports = function cssWithMappingToString(item) {\n var _item = _slicedToArray(item, 4),\n content = _item[1],\n cssMapping = _item[3];\n\n if (typeof btoa === 'function') {\n // eslint-disable-next-line no-undef\n var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(cssMapping))));\n var data = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(base64);\n var sourceMapping = \"/*# \".concat(data, \" */\");\n var sourceURLs = cssMapping.sources.map(function (source) {\n return \"/*# sourceURL=\".concat(cssMapping.sourceRoot || '').concat(source, \" */\");\n });\n return [content].concat(sourceURLs).concat([sourceMapping]).join('\\n');\n }\n\n return [content].join('\\n');\n};","\"use strict\";\n\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n*/\n// css base code, injected by the css-loader\n// eslint-disable-next-line func-names\nmodule.exports = function (cssWithMappingToString) {\n var list = []; // return the list of modules as css string\n\n list.toString = function toString() {\n return this.map(function (item) {\n var content = cssWithMappingToString(item);\n\n if (item[2]) {\n return \"@media \".concat(item[2], \" {\").concat(content, \"}\");\n }\n\n return content;\n }).join('');\n }; // import a list of modules into the list\n // eslint-disable-next-line func-names\n\n\n list.i = function (modules, mediaQuery, dedupe) {\n if (typeof modules === 'string') {\n // eslint-disable-next-line no-param-reassign\n modules = [[null, modules, '']];\n }\n\n var alreadyImportedModules = {};\n\n if (dedupe) {\n for (var i = 0; i < this.length; i++) {\n // eslint-disable-next-line prefer-destructuring\n var id = this[i][0];\n\n if (id != null) {\n alreadyImportedModules[id] = true;\n }\n }\n }\n\n for (var _i = 0; _i < modules.length; _i++) {\n var item = [].concat(modules[_i]);\n\n if (dedupe && alreadyImportedModules[item[0]]) {\n // eslint-disable-next-line no-continue\n continue;\n }\n\n if (mediaQuery) {\n if (!item[2]) {\n item[2] = mediaQuery;\n } else {\n item[2] = \"\".concat(mediaQuery, \" and \").concat(item[2]);\n }\n }\n\n list.push(item);\n }\n };\n\n return list;\n};","/*!\n * Vue.js v2.6.12\n * (c) 2014-2020 Evan You\n * Released under the MIT License.\n */\n/* */\n\nvar emptyObject = Object.freeze({});\n\n// These helpers produce better VM code in JS engines due to their\n// explicitness and function inlining.\nfunction isUndef (v) {\n return v === undefined || v === null\n}\n\nfunction isDef (v) {\n return v !== undefined && v !== null\n}\n\nfunction isTrue (v) {\n return v === true\n}\n\nfunction isFalse (v) {\n return v === false\n}\n\n/**\n * Check if value is primitive.\n */\nfunction isPrimitive (value) {\n return (\n typeof value === 'string' ||\n typeof value === 'number' ||\n // $flow-disable-line\n typeof value === 'symbol' ||\n typeof value === 'boolean'\n )\n}\n\n/**\n * Quick object check - this is primarily used to tell\n * Objects from primitive values when we know the value\n * is a JSON-compliant type.\n */\nfunction isObject (obj) {\n return obj !== null && typeof obj === 'object'\n}\n\n/**\n * Get the raw type string of a value, e.g., [object Object].\n */\nvar _toString = Object.prototype.toString;\n\nfunction toRawType (value) {\n return _toString.call(value).slice(8, -1)\n}\n\n/**\n * Strict object type check. Only returns true\n * for plain JavaScript objects.\n */\nfunction isPlainObject (obj) {\n return _toString.call(obj) === '[object Object]'\n}\n\nfunction isRegExp (v) {\n return _toString.call(v) === '[object RegExp]'\n}\n\n/**\n * Check if val is a valid array index.\n */\nfunction isValidArrayIndex (val) {\n var n = parseFloat(String(val));\n return n >= 0 && Math.floor(n) === n && isFinite(val)\n}\n\nfunction isPromise (val) {\n return (\n isDef(val) &&\n typeof val.then === 'function' &&\n typeof val.catch === 'function'\n )\n}\n\n/**\n * Convert a value to a string that is actually rendered.\n */\nfunction toString (val) {\n return val == null\n ? ''\n : Array.isArray(val) || (isPlainObject(val) && val.toString === _toString)\n ? JSON.stringify(val, null, 2)\n : String(val)\n}\n\n/**\n * Convert an input value to a number for persistence.\n * If the conversion fails, return original string.\n */\nfunction toNumber (val) {\n var n = parseFloat(val);\n return isNaN(n) ? val : n\n}\n\n/**\n * Make a map and return a function for checking if a key\n * is in that map.\n */\nfunction makeMap (\n str,\n expectsLowerCase\n) {\n var map = Object.create(null);\n var list = str.split(',');\n for (var i = 0; i < list.length; i++) {\n map[list[i]] = true;\n }\n return expectsLowerCase\n ? function (val) { return map[val.toLowerCase()]; }\n : function (val) { return map[val]; }\n}\n\n/**\n * Check if a tag is a built-in tag.\n */\nvar isBuiltInTag = makeMap('slot,component', true);\n\n/**\n * Check if an attribute is a reserved attribute.\n */\nvar isReservedAttribute = makeMap('key,ref,slot,slot-scope,is');\n\n/**\n * Remove an item from an array.\n */\nfunction remove (arr, item) {\n if (arr.length) {\n var index = arr.indexOf(item);\n if (index > -1) {\n return arr.splice(index, 1)\n }\n }\n}\n\n/**\n * Check whether an object has the property.\n */\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nfunction hasOwn (obj, key) {\n return hasOwnProperty.call(obj, key)\n}\n\n/**\n * Create a cached version of a pure function.\n */\nfunction cached (fn) {\n var cache = Object.create(null);\n return (function cachedFn (str) {\n var hit = cache[str];\n return hit || (cache[str] = fn(str))\n })\n}\n\n/**\n * Camelize a hyphen-delimited string.\n */\nvar camelizeRE = /-(\\w)/g;\nvar camelize = cached(function (str) {\n return str.replace(camelizeRE, function (_, c) { return c ? c.toUpperCase() : ''; })\n});\n\n/**\n * Capitalize a string.\n */\nvar capitalize = cached(function (str) {\n return str.charAt(0).toUpperCase() + str.slice(1)\n});\n\n/**\n * Hyphenate a camelCase string.\n */\nvar hyphenateRE = /\\B([A-Z])/g;\nvar hyphenate = cached(function (str) {\n return str.replace(hyphenateRE, '-$1').toLowerCase()\n});\n\n/**\n * Simple bind polyfill for environments that do not support it,\n * e.g., PhantomJS 1.x. Technically, we don't need this anymore\n * since native bind is now performant enough in most browsers.\n * But removing it would mean breaking code that was able to run in\n * PhantomJS 1.x, so this must be kept for backward compatibility.\n */\n\n/* istanbul ignore next */\nfunction polyfillBind (fn, ctx) {\n function boundFn (a) {\n var l = arguments.length;\n return l\n ? l > 1\n ? fn.apply(ctx, arguments)\n : fn.call(ctx, a)\n : fn.call(ctx)\n }\n\n boundFn._length = fn.length;\n return boundFn\n}\n\nfunction nativeBind (fn, ctx) {\n return fn.bind(ctx)\n}\n\nvar bind = Function.prototype.bind\n ? nativeBind\n : polyfillBind;\n\n/**\n * Convert an Array-like object to a real Array.\n */\nfunction toArray (list, start) {\n start = start || 0;\n var i = list.length - start;\n var ret = new Array(i);\n while (i--) {\n ret[i] = list[i + start];\n }\n return ret\n}\n\n/**\n * Mix properties into target object.\n */\nfunction extend (to, _from) {\n for (var key in _from) {\n to[key] = _from[key];\n }\n return to\n}\n\n/**\n * Merge an Array of Objects into a single Object.\n */\nfunction toObject (arr) {\n var res = {};\n for (var i = 0; i < arr.length; i++) {\n if (arr[i]) {\n extend(res, arr[i]);\n }\n }\n return res\n}\n\n/* eslint-disable no-unused-vars */\n\n/**\n * Perform no operation.\n * Stubbing args to make Flow happy without leaving useless transpiled code\n * with ...rest (https://flow.org/blog/2017/05/07/Strict-Function-Call-Arity/).\n */\nfunction noop (a, b, c) {}\n\n/**\n * Always return false.\n */\nvar no = function (a, b, c) { return false; };\n\n/* eslint-enable no-unused-vars */\n\n/**\n * Return the same value.\n */\nvar identity = function (_) { return _; };\n\n/**\n * Check if two values are loosely equal - that is,\n * if they are plain objects, do they have the same shape?\n */\nfunction looseEqual (a, b) {\n if (a === b) { return true }\n var isObjectA = isObject(a);\n var isObjectB = isObject(b);\n if (isObjectA && isObjectB) {\n try {\n var isArrayA = Array.isArray(a);\n var isArrayB = Array.isArray(b);\n if (isArrayA && isArrayB) {\n return a.length === b.length && a.every(function (e, i) {\n return looseEqual(e, b[i])\n })\n } else if (a instanceof Date && b instanceof Date) {\n return a.getTime() === b.getTime()\n } else if (!isArrayA && !isArrayB) {\n var keysA = Object.keys(a);\n var keysB = Object.keys(b);\n return keysA.length === keysB.length && keysA.every(function (key) {\n return looseEqual(a[key], b[key])\n })\n } else {\n /* istanbul ignore next */\n return false\n }\n } catch (e) {\n /* istanbul ignore next */\n return false\n }\n } else if (!isObjectA && !isObjectB) {\n return String(a) === String(b)\n } else {\n return false\n }\n}\n\n/**\n * Return the first index at which a loosely equal value can be\n * found in the array (if value is a plain object, the array must\n * contain an object of the same shape), or -1 if it is not present.\n */\nfunction looseIndexOf (arr, val) {\n for (var i = 0; i < arr.length; i++) {\n if (looseEqual(arr[i], val)) { return i }\n }\n return -1\n}\n\n/**\n * Ensure a function is called only once.\n */\nfunction once (fn) {\n var called = false;\n return function () {\n if (!called) {\n called = true;\n fn.apply(this, arguments);\n }\n }\n}\n\nvar SSR_ATTR = 'data-server-rendered';\n\nvar ASSET_TYPES = [\n 'component',\n 'directive',\n 'filter'\n];\n\nvar LIFECYCLE_HOOKS = [\n 'beforeCreate',\n 'created',\n 'beforeMount',\n 'mounted',\n 'beforeUpdate',\n 'updated',\n 'beforeDestroy',\n 'destroyed',\n 'activated',\n 'deactivated',\n 'errorCaptured',\n 'serverPrefetch'\n];\n\n/* */\n\n\n\nvar config = ({\n /**\n * Option merge strategies (used in core/util/options)\n */\n // $flow-disable-line\n optionMergeStrategies: Object.create(null),\n\n /**\n * Whether to suppress warnings.\n */\n silent: false,\n\n /**\n * Show production mode tip message on boot?\n */\n productionTip: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to enable devtools\n */\n devtools: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to record perf\n */\n performance: false,\n\n /**\n * Error handler for watcher errors\n */\n errorHandler: null,\n\n /**\n * Warn handler for watcher warns\n */\n warnHandler: null,\n\n /**\n * Ignore certain custom elements\n */\n ignoredElements: [],\n\n /**\n * Custom user key aliases for v-on\n */\n // $flow-disable-line\n keyCodes: Object.create(null),\n\n /**\n * Check if a tag is reserved so that it cannot be registered as a\n * component. This is platform-dependent and may be overwritten.\n */\n isReservedTag: no,\n\n /**\n * Check if an attribute is reserved so that it cannot be used as a component\n * prop. This is platform-dependent and may be overwritten.\n */\n isReservedAttr: no,\n\n /**\n * Check if a tag is an unknown element.\n * Platform-dependent.\n */\n isUnknownElement: no,\n\n /**\n * Get the namespace of an element\n */\n getTagNamespace: noop,\n\n /**\n * Parse the real tag name for the specific platform.\n */\n parsePlatformTagName: identity,\n\n /**\n * Check if an attribute must be bound using property, e.g. value\n * Platform-dependent.\n */\n mustUseProp: no,\n\n /**\n * Perform updates asynchronously. Intended to be used by Vue Test Utils\n * This will significantly reduce performance if set to false.\n */\n async: true,\n\n /**\n * Exposed for legacy reasons\n */\n _lifecycleHooks: LIFECYCLE_HOOKS\n});\n\n/* */\n\n/**\n * unicode letters used for parsing html tags, component names and property paths.\n * using https://www.w3.org/TR/html53/semantics-scripting.html#potentialcustomelementname\n * skipping \\u10000-\\uEFFFF due to it freezing up PhantomJS\n */\nvar unicodeRegExp = /a-zA-Z\\u00B7\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u203F-\\u2040\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD/;\n\n/**\n * Check if a string starts with $ or _\n */\nfunction isReserved (str) {\n var c = (str + '').charCodeAt(0);\n return c === 0x24 || c === 0x5F\n}\n\n/**\n * Define a property.\n */\nfunction def (obj, key, val, enumerable) {\n Object.defineProperty(obj, key, {\n value: val,\n enumerable: !!enumerable,\n writable: true,\n configurable: true\n });\n}\n\n/**\n * Parse simple path.\n */\nvar bailRE = new RegExp((\"[^\" + (unicodeRegExp.source) + \".$_\\\\d]\"));\nfunction parsePath (path) {\n if (bailRE.test(path)) {\n return\n }\n var segments = path.split('.');\n return function (obj) {\n for (var i = 0; i < segments.length; i++) {\n if (!obj) { return }\n obj = obj[segments[i]];\n }\n return obj\n }\n}\n\n/* */\n\n// can we use __proto__?\nvar hasProto = '__proto__' in {};\n\n// Browser environment sniffing\nvar inBrowser = typeof window !== 'undefined';\nvar inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform;\nvar weexPlatform = inWeex && WXEnvironment.platform.toLowerCase();\nvar UA = inBrowser && window.navigator.userAgent.toLowerCase();\nvar isIE = UA && /msie|trident/.test(UA);\nvar isIE9 = UA && UA.indexOf('msie 9.0') > 0;\nvar isEdge = UA && UA.indexOf('edge/') > 0;\nvar isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android');\nvar isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');\nvar isChrome = UA && /chrome\\/\\d+/.test(UA) && !isEdge;\nvar isPhantomJS = UA && /phantomjs/.test(UA);\nvar isFF = UA && UA.match(/firefox\\/(\\d+)/);\n\n// Firefox has a \"watch\" function on Object.prototype...\nvar nativeWatch = ({}).watch;\n\nvar supportsPassive = false;\nif (inBrowser) {\n try {\n var opts = {};\n Object.defineProperty(opts, 'passive', ({\n get: function get () {\n /* istanbul ignore next */\n supportsPassive = true;\n }\n })); // https://github.com/facebook/flow/issues/285\n window.addEventListener('test-passive', null, opts);\n } catch (e) {}\n}\n\n// this needs to be lazy-evaled because vue may be required before\n// vue-server-renderer can set VUE_ENV\nvar _isServer;\nvar isServerRendering = function () {\n if (_isServer === undefined) {\n /* istanbul ignore if */\n if (!inBrowser && !inWeex && typeof global !== 'undefined') {\n // detect presence of vue-server-renderer and avoid\n // Webpack shimming the process\n _isServer = global['process'] && global['process'].env.VUE_ENV === 'server';\n } else {\n _isServer = false;\n }\n }\n return _isServer\n};\n\n// detect devtools\nvar devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__;\n\n/* istanbul ignore next */\nfunction isNative (Ctor) {\n return typeof Ctor === 'function' && /native code/.test(Ctor.toString())\n}\n\nvar hasSymbol =\n typeof Symbol !== 'undefined' && isNative(Symbol) &&\n typeof Reflect !== 'undefined' && isNative(Reflect.ownKeys);\n\nvar _Set;\n/* istanbul ignore if */ // $flow-disable-line\nif (typeof Set !== 'undefined' && isNative(Set)) {\n // use native Set when available.\n _Set = Set;\n} else {\n // a non-standard Set polyfill that only works with primitive keys.\n _Set = /*@__PURE__*/(function () {\n function Set () {\n this.set = Object.create(null);\n }\n Set.prototype.has = function has (key) {\n return this.set[key] === true\n };\n Set.prototype.add = function add (key) {\n this.set[key] = true;\n };\n Set.prototype.clear = function clear () {\n this.set = Object.create(null);\n };\n\n return Set;\n }());\n}\n\n/* */\n\nvar warn = noop;\nvar tip = noop;\nvar generateComponentTrace = (noop); // work around flow check\nvar formatComponentName = (noop);\n\nif (process.env.NODE_ENV !== 'production') {\n var hasConsole = typeof console !== 'undefined';\n var classifyRE = /(?:^|[-_])(\\w)/g;\n var classify = function (str) { return str\n .replace(classifyRE, function (c) { return c.toUpperCase(); })\n .replace(/[-_]/g, ''); };\n\n warn = function (msg, vm) {\n var trace = vm ? generateComponentTrace(vm) : '';\n\n if (config.warnHandler) {\n config.warnHandler.call(null, msg, vm, trace);\n } else if (hasConsole && (!config.silent)) {\n console.error((\"[Vue warn]: \" + msg + trace));\n }\n };\n\n tip = function (msg, vm) {\n if (hasConsole && (!config.silent)) {\n console.warn(\"[Vue tip]: \" + msg + (\n vm ? generateComponentTrace(vm) : ''\n ));\n }\n };\n\n formatComponentName = function (vm, includeFile) {\n if (vm.$root === vm) {\n return '<Root>'\n }\n var options = typeof vm === 'function' && vm.cid != null\n ? vm.options\n : vm._isVue\n ? vm.$options || vm.constructor.options\n : vm;\n var name = options.name || options._componentTag;\n var file = options.__file;\n if (!name && file) {\n var match = file.match(/([^/\\\\]+)\\.vue$/);\n name = match && match[1];\n }\n\n return (\n (name ? (\"<\" + (classify(name)) + \">\") : \"<Anonymous>\") +\n (file && includeFile !== false ? (\" at \" + file) : '')\n )\n };\n\n var repeat = function (str, n) {\n var res = '';\n while (n) {\n if (n % 2 === 1) { res += str; }\n if (n > 1) { str += str; }\n n >>= 1;\n }\n return res\n };\n\n generateComponentTrace = function (vm) {\n if (vm._isVue && vm.$parent) {\n var tree = [];\n var currentRecursiveSequence = 0;\n while (vm) {\n if (tree.length > 0) {\n var last = tree[tree.length - 1];\n if (last.constructor === vm.constructor) {\n currentRecursiveSequence++;\n vm = vm.$parent;\n continue\n } else if (currentRecursiveSequence > 0) {\n tree[tree.length - 1] = [last, currentRecursiveSequence];\n currentRecursiveSequence = 0;\n }\n }\n tree.push(vm);\n vm = vm.$parent;\n }\n return '\\n\\nfound in\\n\\n' + tree\n .map(function (vm, i) { return (\"\" + (i === 0 ? '---> ' : repeat(' ', 5 + i * 2)) + (Array.isArray(vm)\n ? ((formatComponentName(vm[0])) + \"... (\" + (vm[1]) + \" recursive calls)\")\n : formatComponentName(vm))); })\n .join('\\n')\n } else {\n return (\"\\n\\n(found in \" + (formatComponentName(vm)) + \")\")\n }\n };\n}\n\n/* */\n\nvar uid = 0;\n\n/**\n * A dep is an observable that can have multiple\n * directives subscribing to it.\n */\nvar Dep = function Dep () {\n this.id = uid++;\n this.subs = [];\n};\n\nDep.prototype.addSub = function addSub (sub) {\n this.subs.push(sub);\n};\n\nDep.prototype.removeSub = function removeSub (sub) {\n remove(this.subs, sub);\n};\n\nDep.prototype.depend = function depend () {\n if (Dep.target) {\n Dep.target.addDep(this);\n }\n};\n\nDep.prototype.notify = function notify () {\n // stabilize the subscriber list first\n var subs = this.subs.slice();\n if (process.env.NODE_ENV !== 'production' && !config.async) {\n // subs aren't sorted in scheduler if not running async\n // we need to sort them now to make sure they fire in correct\n // order\n subs.sort(function (a, b) { return a.id - b.id; });\n }\n for (var i = 0, l = subs.length; i < l; i++) {\n subs[i].update();\n }\n};\n\n// The current target watcher being evaluated.\n// This is globally unique because only one watcher\n// can be evaluated at a time.\nDep.target = null;\nvar targetStack = [];\n\nfunction pushTarget (target) {\n targetStack.push(target);\n Dep.target = target;\n}\n\nfunction popTarget () {\n targetStack.pop();\n Dep.target = targetStack[targetStack.length - 1];\n}\n\n/* */\n\nvar VNode = function VNode (\n tag,\n data,\n children,\n text,\n elm,\n context,\n componentOptions,\n asyncFactory\n) {\n this.tag = tag;\n this.data = data;\n this.children = children;\n this.text = text;\n this.elm = elm;\n this.ns = undefined;\n this.context = context;\n this.fnContext = undefined;\n this.fnOptions = undefined;\n this.fnScopeId = undefined;\n this.key = data && data.key;\n this.componentOptions = componentOptions;\n this.componentInstance = undefined;\n this.parent = undefined;\n this.raw = false;\n this.isStatic = false;\n this.isRootInsert = true;\n this.isComment = false;\n this.isCloned = false;\n this.isOnce = false;\n this.asyncFactory = asyncFactory;\n this.asyncMeta = undefined;\n this.isAsyncPlaceholder = false;\n};\n\nvar prototypeAccessors = { child: { configurable: true } };\n\n// DEPRECATED: alias for componentInstance for backwards compat.\n/* istanbul ignore next */\nprototypeAccessors.child.get = function () {\n return this.componentInstance\n};\n\nObject.defineProperties( VNode.prototype, prototypeAccessors );\n\nvar createEmptyVNode = function (text) {\n if ( text === void 0 ) text = '';\n\n var node = new VNode();\n node.text = text;\n node.isComment = true;\n return node\n};\n\nfunction createTextVNode (val) {\n return new VNode(undefined, undefined, undefined, String(val))\n}\n\n// optimized shallow clone\n// used for static nodes and slot nodes because they may be reused across\n// multiple renders, cloning them avoids errors when DOM manipulations rely\n// on their elm reference.\nfunction cloneVNode (vnode) {\n var cloned = new VNode(\n vnode.tag,\n vnode.data,\n // #7975\n // clone children array to avoid mutating original in case of cloning\n // a child.\n vnode.children && vnode.children.slice(),\n vnode.text,\n vnode.elm,\n vnode.context,\n vnode.componentOptions,\n vnode.asyncFactory\n );\n cloned.ns = vnode.ns;\n cloned.isStatic = vnode.isStatic;\n cloned.key = vnode.key;\n cloned.isComment = vnode.isComment;\n cloned.fnContext = vnode.fnContext;\n cloned.fnOptions = vnode.fnOptions;\n cloned.fnScopeId = vnode.fnScopeId;\n cloned.asyncMeta = vnode.asyncMeta;\n cloned.isCloned = true;\n return cloned\n}\n\n/*\n * not type checking this file because flow doesn't play well with\n * dynamically accessing methods on Array prototype\n */\n\nvar arrayProto = Array.prototype;\nvar arrayMethods = Object.create(arrayProto);\n\nvar methodsToPatch = [\n 'push',\n 'pop',\n 'shift',\n 'unshift',\n 'splice',\n 'sort',\n 'reverse'\n];\n\n/**\n * Intercept mutating methods and emit events\n */\nmethodsToPatch.forEach(function (method) {\n // cache original method\n var original = arrayProto[method];\n def(arrayMethods, method, function mutator () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n var result = original.apply(this, args);\n var ob = this.__ob__;\n var inserted;\n switch (method) {\n case 'push':\n case 'unshift':\n inserted = args;\n break\n case 'splice':\n inserted = args.slice(2);\n break\n }\n if (inserted) { ob.observeArray(inserted); }\n // notify change\n ob.dep.notify();\n return result\n });\n});\n\n/* */\n\nvar arrayKeys = Object.getOwnPropertyNames(arrayMethods);\n\n/**\n * In some cases we may want to disable observation inside a component's\n * update computation.\n */\nvar shouldObserve = true;\n\nfunction toggleObserving (value) {\n shouldObserve = value;\n}\n\n/**\n * Observer class that is attached to each observed\n * object. Once attached, the observer converts the target\n * object's property keys into getter/setters that\n * collect dependencies and dispatch updates.\n */\nvar Observer = function Observer (value) {\n this.value = value;\n this.dep = new Dep();\n this.vmCount = 0;\n def(value, '__ob__', this);\n if (Array.isArray(value)) {\n if (hasProto) {\n protoAugment(value, arrayMethods);\n } else {\n copyAugment(value, arrayMethods, arrayKeys);\n }\n this.observeArray(value);\n } else {\n this.walk(value);\n }\n};\n\n/**\n * Walk through all properties and convert them into\n * getter/setters. This method should only be called when\n * value type is Object.\n */\nObserver.prototype.walk = function walk (obj) {\n var keys = Object.keys(obj);\n for (var i = 0; i < keys.length; i++) {\n defineReactive$$1(obj, keys[i]);\n }\n};\n\n/**\n * Observe a list of Array items.\n */\nObserver.prototype.observeArray = function observeArray (items) {\n for (var i = 0, l = items.length; i < l; i++) {\n observe(items[i]);\n }\n};\n\n// helpers\n\n/**\n * Augment a target Object or Array by intercepting\n * the prototype chain using __proto__\n */\nfunction protoAugment (target, src) {\n /* eslint-disable no-proto */\n target.__proto__ = src;\n /* eslint-enable no-proto */\n}\n\n/**\n * Augment a target Object or Array by defining\n * hidden properties.\n */\n/* istanbul ignore next */\nfunction copyAugment (target, src, keys) {\n for (var i = 0, l = keys.length; i < l; i++) {\n var key = keys[i];\n def(target, key, src[key]);\n }\n}\n\n/**\n * Attempt to create an observer instance for a value,\n * returns the new observer if successfully observed,\n * or the existing observer if the value already has one.\n */\nfunction observe (value, asRootData) {\n if (!isObject(value) || value instanceof VNode) {\n return\n }\n var ob;\n if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {\n ob = value.__ob__;\n } else if (\n shouldObserve &&\n !isServerRendering() &&\n (Array.isArray(value) || isPlainObject(value)) &&\n Object.isExtensible(value) &&\n !value._isVue\n ) {\n ob = new Observer(value);\n }\n if (asRootData && ob) {\n ob.vmCount++;\n }\n return ob\n}\n\n/**\n * Define a reactive property on an Object.\n */\nfunction defineReactive$$1 (\n obj,\n key,\n val,\n customSetter,\n shallow\n) {\n var dep = new Dep();\n\n var property = Object.getOwnPropertyDescriptor(obj, key);\n if (property && property.configurable === false) {\n return\n }\n\n // cater for pre-defined getter/setters\n var getter = property && property.get;\n var setter = property && property.set;\n if ((!getter || setter) && arguments.length === 2) {\n val = obj[key];\n }\n\n var childOb = !shallow && observe(val);\n Object.defineProperty(obj, key, {\n enumerable: true,\n configurable: true,\n get: function reactiveGetter () {\n var value = getter ? getter.call(obj) : val;\n if (Dep.target) {\n dep.depend();\n if (childOb) {\n childOb.dep.depend();\n if (Array.isArray(value)) {\n dependArray(value);\n }\n }\n }\n return value\n },\n set: function reactiveSetter (newVal) {\n var value = getter ? getter.call(obj) : val;\n /* eslint-disable no-self-compare */\n if (newVal === value || (newVal !== newVal && value !== value)) {\n return\n }\n /* eslint-enable no-self-compare */\n if (process.env.NODE_ENV !== 'production' && customSetter) {\n customSetter();\n }\n // #7981: for accessor properties without setter\n if (getter && !setter) { return }\n if (setter) {\n setter.call(obj, newVal);\n } else {\n val = newVal;\n }\n childOb = !shallow && observe(newVal);\n dep.notify();\n }\n });\n}\n\n/**\n * Set a property on an object. Adds the new property and\n * triggers change notification if the property doesn't\n * already exist.\n */\nfunction set (target, key, val) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot set reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.length = Math.max(target.length, key);\n target.splice(key, 1, val);\n return val\n }\n if (key in target && !(key in Object.prototype)) {\n target[key] = val;\n return val\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid adding reactive properties to a Vue instance or its root $data ' +\n 'at runtime - declare it upfront in the data option.'\n );\n return val\n }\n if (!ob) {\n target[key] = val;\n return val\n }\n defineReactive$$1(ob.value, key, val);\n ob.dep.notify();\n return val\n}\n\n/**\n * Delete a property and trigger change if necessary.\n */\nfunction del (target, key) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot delete reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.splice(key, 1);\n return\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid deleting properties on a Vue instance or its root $data ' +\n '- just set it to null.'\n );\n return\n }\n if (!hasOwn(target, key)) {\n return\n }\n delete target[key];\n if (!ob) {\n return\n }\n ob.dep.notify();\n}\n\n/**\n * Collect dependencies on array elements when the array is touched, since\n * we cannot intercept array element access like property getters.\n */\nfunction dependArray (value) {\n for (var e = (void 0), i = 0, l = value.length; i < l; i++) {\n e = value[i];\n e && e.__ob__ && e.__ob__.dep.depend();\n if (Array.isArray(e)) {\n dependArray(e);\n }\n }\n}\n\n/* */\n\n/**\n * Option overwriting strategies are functions that handle\n * how to merge a parent option value and a child option\n * value into the final value.\n */\nvar strats = config.optionMergeStrategies;\n\n/**\n * Options with restrictions\n */\nif (process.env.NODE_ENV !== 'production') {\n strats.el = strats.propsData = function (parent, child, vm, key) {\n if (!vm) {\n warn(\n \"option \\\"\" + key + \"\\\" can only be used during instance \" +\n 'creation with the `new` keyword.'\n );\n }\n return defaultStrat(parent, child)\n };\n}\n\n/**\n * Helper that recursively merges two data objects together.\n */\nfunction mergeData (to, from) {\n if (!from) { return to }\n var key, toVal, fromVal;\n\n var keys = hasSymbol\n ? Reflect.ownKeys(from)\n : Object.keys(from);\n\n for (var i = 0; i < keys.length; i++) {\n key = keys[i];\n // in case the object is already observed...\n if (key === '__ob__') { continue }\n toVal = to[key];\n fromVal = from[key];\n if (!hasOwn(to, key)) {\n set(to, key, fromVal);\n } else if (\n toVal !== fromVal &&\n isPlainObject(toVal) &&\n isPlainObject(fromVal)\n ) {\n mergeData(toVal, fromVal);\n }\n }\n return to\n}\n\n/**\n * Data\n */\nfunction mergeDataOrFn (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n // in a Vue.extend merge, both should be functions\n if (!childVal) {\n return parentVal\n }\n if (!parentVal) {\n return childVal\n }\n // when parentVal & childVal are both present,\n // we need to return a function that returns the\n // merged result of both functions... no need to\n // check if parentVal is a function here because\n // it has to be a function to pass previous merges.\n return function mergedDataFn () {\n return mergeData(\n typeof childVal === 'function' ? childVal.call(this, this) : childVal,\n typeof parentVal === 'function' ? parentVal.call(this, this) : parentVal\n )\n }\n } else {\n return function mergedInstanceDataFn () {\n // instance merge\n var instanceData = typeof childVal === 'function'\n ? childVal.call(vm, vm)\n : childVal;\n var defaultData = typeof parentVal === 'function'\n ? parentVal.call(vm, vm)\n : parentVal;\n if (instanceData) {\n return mergeData(instanceData, defaultData)\n } else {\n return defaultData\n }\n }\n }\n}\n\nstrats.data = function (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n if (childVal && typeof childVal !== 'function') {\n process.env.NODE_ENV !== 'production' && warn(\n 'The \"data\" option should be a function ' +\n 'that returns a per-instance value in component ' +\n 'definitions.',\n vm\n );\n\n return parentVal\n }\n return mergeDataOrFn(parentVal, childVal)\n }\n\n return mergeDataOrFn(parentVal, childVal, vm)\n};\n\n/**\n * Hooks and props are merged as arrays.\n */\nfunction mergeHook (\n parentVal,\n childVal\n) {\n var res = childVal\n ? parentVal\n ? parentVal.concat(childVal)\n : Array.isArray(childVal)\n ? childVal\n : [childVal]\n : parentVal;\n return res\n ? dedupeHooks(res)\n : res\n}\n\nfunction dedupeHooks (hooks) {\n var res = [];\n for (var i = 0; i < hooks.length; i++) {\n if (res.indexOf(hooks[i]) === -1) {\n res.push(hooks[i]);\n }\n }\n return res\n}\n\nLIFECYCLE_HOOKS.forEach(function (hook) {\n strats[hook] = mergeHook;\n});\n\n/**\n * Assets\n *\n * When a vm is present (instance creation), we need to do\n * a three-way merge between constructor options, instance\n * options and parent options.\n */\nfunction mergeAssets (\n parentVal,\n childVal,\n vm,\n key\n) {\n var res = Object.create(parentVal || null);\n if (childVal) {\n process.env.NODE_ENV !== 'production' && assertObjectType(key, childVal, vm);\n return extend(res, childVal)\n } else {\n return res\n }\n}\n\nASSET_TYPES.forEach(function (type) {\n strats[type + 's'] = mergeAssets;\n});\n\n/**\n * Watchers.\n *\n * Watchers hashes should not overwrite one\n * another, so we merge them as arrays.\n */\nstrats.watch = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n // work around Firefox's Object.prototype.watch...\n if (parentVal === nativeWatch) { parentVal = undefined; }\n if (childVal === nativeWatch) { childVal = undefined; }\n /* istanbul ignore if */\n if (!childVal) { return Object.create(parentVal || null) }\n if (process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = {};\n extend(ret, parentVal);\n for (var key$1 in childVal) {\n var parent = ret[key$1];\n var child = childVal[key$1];\n if (parent && !Array.isArray(parent)) {\n parent = [parent];\n }\n ret[key$1] = parent\n ? parent.concat(child)\n : Array.isArray(child) ? child : [child];\n }\n return ret\n};\n\n/**\n * Other object hashes.\n */\nstrats.props =\nstrats.methods =\nstrats.inject =\nstrats.computed = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n if (childVal && process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = Object.create(null);\n extend(ret, parentVal);\n if (childVal) { extend(ret, childVal); }\n return ret\n};\nstrats.provide = mergeDataOrFn;\n\n/**\n * Default strategy.\n */\nvar defaultStrat = function (parentVal, childVal) {\n return childVal === undefined\n ? parentVal\n : childVal\n};\n\n/**\n * Validate component names\n */\nfunction checkComponents (options) {\n for (var key in options.components) {\n validateComponentName(key);\n }\n}\n\nfunction validateComponentName (name) {\n if (!new RegExp((\"^[a-zA-Z][\\\\-\\\\.0-9_\" + (unicodeRegExp.source) + \"]*$\")).test(name)) {\n warn(\n 'Invalid component name: \"' + name + '\". Component names ' +\n 'should conform to valid custom element name in html5 specification.'\n );\n }\n if (isBuiltInTag(name) || config.isReservedTag(name)) {\n warn(\n 'Do not use built-in or reserved HTML elements as component ' +\n 'id: ' + name\n );\n }\n}\n\n/**\n * Ensure all props option syntax are normalized into the\n * Object-based format.\n */\nfunction normalizeProps (options, vm) {\n var props = options.props;\n if (!props) { return }\n var res = {};\n var i, val, name;\n if (Array.isArray(props)) {\n i = props.length;\n while (i--) {\n val = props[i];\n if (typeof val === 'string') {\n name = camelize(val);\n res[name] = { type: null };\n } else if (process.env.NODE_ENV !== 'production') {\n warn('props must be strings when using array syntax.');\n }\n }\n } else if (isPlainObject(props)) {\n for (var key in props) {\n val = props[key];\n name = camelize(key);\n res[name] = isPlainObject(val)\n ? val\n : { type: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"props\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(props)) + \".\",\n vm\n );\n }\n options.props = res;\n}\n\n/**\n * Normalize all injections into Object-based format\n */\nfunction normalizeInject (options, vm) {\n var inject = options.inject;\n if (!inject) { return }\n var normalized = options.inject = {};\n if (Array.isArray(inject)) {\n for (var i = 0; i < inject.length; i++) {\n normalized[inject[i]] = { from: inject[i] };\n }\n } else if (isPlainObject(inject)) {\n for (var key in inject) {\n var val = inject[key];\n normalized[key] = isPlainObject(val)\n ? extend({ from: key }, val)\n : { from: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"inject\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(inject)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Normalize raw function directives into object format.\n */\nfunction normalizeDirectives (options) {\n var dirs = options.directives;\n if (dirs) {\n for (var key in dirs) {\n var def$$1 = dirs[key];\n if (typeof def$$1 === 'function') {\n dirs[key] = { bind: def$$1, update: def$$1 };\n }\n }\n }\n}\n\nfunction assertObjectType (name, value, vm) {\n if (!isPlainObject(value)) {\n warn(\n \"Invalid value for option \\\"\" + name + \"\\\": expected an Object, \" +\n \"but got \" + (toRawType(value)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Merge two option objects into a new one.\n * Core utility used in both instantiation and inheritance.\n */\nfunction mergeOptions (\n parent,\n child,\n vm\n) {\n if (process.env.NODE_ENV !== 'production') {\n checkComponents(child);\n }\n\n if (typeof child === 'function') {\n child = child.options;\n }\n\n normalizeProps(child, vm);\n normalizeInject(child, vm);\n normalizeDirectives(child);\n\n // Apply extends and mixins on the child options,\n // but only if it is a raw options object that isn't\n // the result of another mergeOptions call.\n // Only merged options has the _base property.\n if (!child._base) {\n if (child.extends) {\n parent = mergeOptions(parent, child.extends, vm);\n }\n if (child.mixins) {\n for (var i = 0, l = child.mixins.length; i < l; i++) {\n parent = mergeOptions(parent, child.mixins[i], vm);\n }\n }\n }\n\n var options = {};\n var key;\n for (key in parent) {\n mergeField(key);\n }\n for (key in child) {\n if (!hasOwn(parent, key)) {\n mergeField(key);\n }\n }\n function mergeField (key) {\n var strat = strats[key] || defaultStrat;\n options[key] = strat(parent[key], child[key], vm, key);\n }\n return options\n}\n\n/**\n * Resolve an asset.\n * This function is used because child instances need access\n * to assets defined in its ancestor chain.\n */\nfunction resolveAsset (\n options,\n type,\n id,\n warnMissing\n) {\n /* istanbul ignore if */\n if (typeof id !== 'string') {\n return\n }\n var assets = options[type];\n // check local registration variations first\n if (hasOwn(assets, id)) { return assets[id] }\n var camelizedId = camelize(id);\n if (hasOwn(assets, camelizedId)) { return assets[camelizedId] }\n var PascalCaseId = capitalize(camelizedId);\n if (hasOwn(assets, PascalCaseId)) { return assets[PascalCaseId] }\n // fallback to prototype chain\n var res = assets[id] || assets[camelizedId] || assets[PascalCaseId];\n if (process.env.NODE_ENV !== 'production' && warnMissing && !res) {\n warn(\n 'Failed to resolve ' + type.slice(0, -1) + ': ' + id,\n options\n );\n }\n return res\n}\n\n/* */\n\n\n\nfunction validateProp (\n key,\n propOptions,\n propsData,\n vm\n) {\n var prop = propOptions[key];\n var absent = !hasOwn(propsData, key);\n var value = propsData[key];\n // boolean casting\n var booleanIndex = getTypeIndex(Boolean, prop.type);\n if (booleanIndex > -1) {\n if (absent && !hasOwn(prop, 'default')) {\n value = false;\n } else if (value === '' || value === hyphenate(key)) {\n // only cast empty string / same name to boolean if\n // boolean has higher priority\n var stringIndex = getTypeIndex(String, prop.type);\n if (stringIndex < 0 || booleanIndex < stringIndex) {\n value = true;\n }\n }\n }\n // check default value\n if (value === undefined) {\n value = getPropDefaultValue(vm, prop, key);\n // since the default value is a fresh copy,\n // make sure to observe it.\n var prevShouldObserve = shouldObserve;\n toggleObserving(true);\n observe(value);\n toggleObserving(prevShouldObserve);\n }\n if (\n process.env.NODE_ENV !== 'production' &&\n // skip validation for weex recycle-list child component props\n !(false)\n ) {\n assertProp(prop, key, value, vm, absent);\n }\n return value\n}\n\n/**\n * Get the default value of a prop.\n */\nfunction getPropDefaultValue (vm, prop, key) {\n // no default, return undefined\n if (!hasOwn(prop, 'default')) {\n return undefined\n }\n var def = prop.default;\n // warn against non-factory defaults for Object & Array\n if (process.env.NODE_ENV !== 'production' && isObject(def)) {\n warn(\n 'Invalid default value for prop \"' + key + '\": ' +\n 'Props with type Object/Array must use a factory function ' +\n 'to return the default value.',\n vm\n );\n }\n // the raw prop value was also undefined from previous render,\n // return previous default value to avoid unnecessary watcher trigger\n if (vm && vm.$options.propsData &&\n vm.$options.propsData[key] === undefined &&\n vm._props[key] !== undefined\n ) {\n return vm._props[key]\n }\n // call factory function for non-Function types\n // a value is Function if its prototype is function even across different execution context\n return typeof def === 'function' && getType(prop.type) !== 'Function'\n ? def.call(vm)\n : def\n}\n\n/**\n * Assert whether a prop is valid.\n */\nfunction assertProp (\n prop,\n name,\n value,\n vm,\n absent\n) {\n if (prop.required && absent) {\n warn(\n 'Missing required prop: \"' + name + '\"',\n vm\n );\n return\n }\n if (value == null && !prop.required) {\n return\n }\n var type = prop.type;\n var valid = !type || type === true;\n var expectedTypes = [];\n if (type) {\n if (!Array.isArray(type)) {\n type = [type];\n }\n for (var i = 0; i < type.length && !valid; i++) {\n var assertedType = assertType(value, type[i]);\n expectedTypes.push(assertedType.expectedType || '');\n valid = assertedType.valid;\n }\n }\n\n if (!valid) {\n warn(\n getInvalidTypeMessage(name, value, expectedTypes),\n vm\n );\n return\n }\n var validator = prop.validator;\n if (validator) {\n if (!validator(value)) {\n warn(\n 'Invalid prop: custom validator check failed for prop \"' + name + '\".',\n vm\n );\n }\n }\n}\n\nvar simpleCheckRE = /^(String|Number|Boolean|Function|Symbol)$/;\n\nfunction assertType (value, type) {\n var valid;\n var expectedType = getType(type);\n if (simpleCheckRE.test(expectedType)) {\n var t = typeof value;\n valid = t === expectedType.toLowerCase();\n // for primitive wrapper objects\n if (!valid && t === 'object') {\n valid = value instanceof type;\n }\n } else if (expectedType === 'Object') {\n valid = isPlainObject(value);\n } else if (expectedType === 'Array') {\n valid = Array.isArray(value);\n } else {\n valid = value instanceof type;\n }\n return {\n valid: valid,\n expectedType: expectedType\n }\n}\n\n/**\n * Use function string name to check built-in types,\n * because a simple equality check will fail when running\n * across different vms / iframes.\n */\nfunction getType (fn) {\n var match = fn && fn.toString().match(/^\\s*function (\\w+)/);\n return match ? match[1] : ''\n}\n\nfunction isSameType (a, b) {\n return getType(a) === getType(b)\n}\n\nfunction getTypeIndex (type, expectedTypes) {\n if (!Array.isArray(expectedTypes)) {\n return isSameType(expectedTypes, type) ? 0 : -1\n }\n for (var i = 0, len = expectedTypes.length; i < len; i++) {\n if (isSameType(expectedTypes[i], type)) {\n return i\n }\n }\n return -1\n}\n\nfunction getInvalidTypeMessage (name, value, expectedTypes) {\n var message = \"Invalid prop: type check failed for prop \\\"\" + name + \"\\\".\" +\n \" Expected \" + (expectedTypes.map(capitalize).join(', '));\n var expectedType = expectedTypes[0];\n var receivedType = toRawType(value);\n var expectedValue = styleValue(value, expectedType);\n var receivedValue = styleValue(value, receivedType);\n // check if we need to specify expected value\n if (expectedTypes.length === 1 &&\n isExplicable(expectedType) &&\n !isBoolean(expectedType, receivedType)) {\n message += \" with value \" + expectedValue;\n }\n message += \", got \" + receivedType + \" \";\n // check if we need to specify received value\n if (isExplicable(receivedType)) {\n message += \"with value \" + receivedValue + \".\";\n }\n return message\n}\n\nfunction styleValue (value, type) {\n if (type === 'String') {\n return (\"\\\"\" + value + \"\\\"\")\n } else if (type === 'Number') {\n return (\"\" + (Number(value)))\n } else {\n return (\"\" + value)\n }\n}\n\nfunction isExplicable (value) {\n var explicitTypes = ['string', 'number', 'boolean'];\n return explicitTypes.some(function (elem) { return value.toLowerCase() === elem; })\n}\n\nfunction isBoolean () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n return args.some(function (elem) { return elem.toLowerCase() === 'boolean'; })\n}\n\n/* */\n\nfunction handleError (err, vm, info) {\n // Deactivate deps tracking while processing error handler to avoid possible infinite rendering.\n // See: https://github.com/vuejs/vuex/issues/1505\n pushTarget();\n try {\n if (vm) {\n var cur = vm;\n while ((cur = cur.$parent)) {\n var hooks = cur.$options.errorCaptured;\n if (hooks) {\n for (var i = 0; i < hooks.length; i++) {\n try {\n var capture = hooks[i].call(cur, err, vm, info) === false;\n if (capture) { return }\n } catch (e) {\n globalHandleError(e, cur, 'errorCaptured hook');\n }\n }\n }\n }\n }\n globalHandleError(err, vm, info);\n } finally {\n popTarget();\n }\n}\n\nfunction invokeWithErrorHandling (\n handler,\n context,\n args,\n vm,\n info\n) {\n var res;\n try {\n res = args ? handler.apply(context, args) : handler.call(context);\n if (res && !res._isVue && isPromise(res) && !res._handled) {\n res.catch(function (e) { return handleError(e, vm, info + \" (Promise/async)\"); });\n // issue #9511\n // avoid catch triggering multiple times when nested calls\n res._handled = true;\n }\n } catch (e) {\n handleError(e, vm, info);\n }\n return res\n}\n\nfunction globalHandleError (err, vm, info) {\n if (config.errorHandler) {\n try {\n return config.errorHandler.call(null, err, vm, info)\n } catch (e) {\n // if the user intentionally throws the original error in the handler,\n // do not log it twice\n if (e !== err) {\n logError(e, null, 'config.errorHandler');\n }\n }\n }\n logError(err, vm, info);\n}\n\nfunction logError (err, vm, info) {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Error in \" + info + \": \\\"\" + (err.toString()) + \"\\\"\"), vm);\n }\n /* istanbul ignore else */\n if ((inBrowser || inWeex) && typeof console !== 'undefined') {\n console.error(err);\n } else {\n throw err\n }\n}\n\n/* */\n\nvar isUsingMicroTask = false;\n\nvar callbacks = [];\nvar pending = false;\n\nfunction flushCallbacks () {\n pending = false;\n var copies = callbacks.slice(0);\n callbacks.length = 0;\n for (var i = 0; i < copies.length; i++) {\n copies[i]();\n }\n}\n\n// Here we have async deferring wrappers using microtasks.\n// In 2.5 we used (macro) tasks (in combination with microtasks).\n// However, it has subtle problems when state is changed right before repaint\n// (e.g. #6813, out-in transitions).\n// Also, using (macro) tasks in event handler would cause some weird behaviors\n// that cannot be circumvented (e.g. #7109, #7153, #7546, #7834, #8109).\n// So we now use microtasks everywhere, again.\n// A major drawback of this tradeoff is that there are some scenarios\n// where microtasks have too high a priority and fire in between supposedly\n// sequential events (e.g. #4521, #6690, which have workarounds)\n// or even between bubbling of the same event (#6566).\nvar timerFunc;\n\n// The nextTick behavior leverages the microtask queue, which can be accessed\n// via either native Promise.then or MutationObserver.\n// MutationObserver has wider support, however it is seriously bugged in\n// UIWebView in iOS >= 9.3.3 when triggered in touch event handlers. It\n// completely stops working after triggering a few times... so, if native\n// Promise is available, we will use it:\n/* istanbul ignore next, $flow-disable-line */\nif (typeof Promise !== 'undefined' && isNative(Promise)) {\n var p = Promise.resolve();\n timerFunc = function () {\n p.then(flushCallbacks);\n // In problematic UIWebViews, Promise.then doesn't completely break, but\n // it can get stuck in a weird state where callbacks are pushed into the\n // microtask queue but the queue isn't being flushed, until the browser\n // needs to do some other work, e.g. handle a timer. Therefore we can\n // \"force\" the microtask queue to be flushed by adding an empty timer.\n if (isIOS) { setTimeout(noop); }\n };\n isUsingMicroTask = true;\n} else if (!isIE && typeof MutationObserver !== 'undefined' && (\n isNative(MutationObserver) ||\n // PhantomJS and iOS 7.x\n MutationObserver.toString() === '[object MutationObserverConstructor]'\n)) {\n // Use MutationObserver where native Promise is not available,\n // e.g. PhantomJS, iOS7, Android 4.4\n // (#6466 MutationObserver is unreliable in IE11)\n var counter = 1;\n var observer = new MutationObserver(flushCallbacks);\n var textNode = document.createTextNode(String(counter));\n observer.observe(textNode, {\n characterData: true\n });\n timerFunc = function () {\n counter = (counter + 1) % 2;\n textNode.data = String(counter);\n };\n isUsingMicroTask = true;\n} else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {\n // Fallback to setImmediate.\n // Technically it leverages the (macro) task queue,\n // but it is still a better choice than setTimeout.\n timerFunc = function () {\n setImmediate(flushCallbacks);\n };\n} else {\n // Fallback to setTimeout.\n timerFunc = function () {\n setTimeout(flushCallbacks, 0);\n };\n}\n\nfunction nextTick (cb, ctx) {\n var _resolve;\n callbacks.push(function () {\n if (cb) {\n try {\n cb.call(ctx);\n } catch (e) {\n handleError(e, ctx, 'nextTick');\n }\n } else if (_resolve) {\n _resolve(ctx);\n }\n });\n if (!pending) {\n pending = true;\n timerFunc();\n }\n // $flow-disable-line\n if (!cb && typeof Promise !== 'undefined') {\n return new Promise(function (resolve) {\n _resolve = resolve;\n })\n }\n}\n\n/* */\n\n/* not type checking this file because flow doesn't play well with Proxy */\n\nvar initProxy;\n\nif (process.env.NODE_ENV !== 'production') {\n var allowedGlobals = makeMap(\n 'Infinity,undefined,NaN,isFinite,isNaN,' +\n 'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' +\n 'Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,' +\n 'require' // for Webpack/Browserify\n );\n\n var warnNonPresent = function (target, key) {\n warn(\n \"Property or method \\\"\" + key + \"\\\" is not defined on the instance but \" +\n 'referenced during render. Make sure that this property is reactive, ' +\n 'either in the data option, or for class-based components, by ' +\n 'initializing the property. ' +\n 'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.',\n target\n );\n };\n\n var warnReservedPrefix = function (target, key) {\n warn(\n \"Property \\\"\" + key + \"\\\" must be accessed with \\\"$data.\" + key + \"\\\" because \" +\n 'properties starting with \"$\" or \"_\" are not proxied in the Vue instance to ' +\n 'prevent conflicts with Vue internals. ' +\n 'See: https://vuejs.org/v2/api/#data',\n target\n );\n };\n\n var hasProxy =\n typeof Proxy !== 'undefined' && isNative(Proxy);\n\n if (hasProxy) {\n var isBuiltInModifier = makeMap('stop,prevent,self,ctrl,shift,alt,meta,exact');\n config.keyCodes = new Proxy(config.keyCodes, {\n set: function set (target, key, value) {\n if (isBuiltInModifier(key)) {\n warn((\"Avoid overwriting built-in modifier in config.keyCodes: .\" + key));\n return false\n } else {\n target[key] = value;\n return true\n }\n }\n });\n }\n\n var hasHandler = {\n has: function has (target, key) {\n var has = key in target;\n var isAllowed = allowedGlobals(key) ||\n (typeof key === 'string' && key.charAt(0) === '_' && !(key in target.$data));\n if (!has && !isAllowed) {\n if (key in target.$data) { warnReservedPrefix(target, key); }\n else { warnNonPresent(target, key); }\n }\n return has || !isAllowed\n }\n };\n\n var getHandler = {\n get: function get (target, key) {\n if (typeof key === 'string' && !(key in target)) {\n if (key in target.$data) { warnReservedPrefix(target, key); }\n else { warnNonPresent(target, key); }\n }\n return target[key]\n }\n };\n\n initProxy = function initProxy (vm) {\n if (hasProxy) {\n // determine which proxy handler to use\n var options = vm.$options;\n var handlers = options.render && options.render._withStripped\n ? getHandler\n : hasHandler;\n vm._renderProxy = new Proxy(vm, handlers);\n } else {\n vm._renderProxy = vm;\n }\n };\n}\n\n/* */\n\nvar seenObjects = new _Set();\n\n/**\n * Recursively traverse an object to evoke all converted\n * getters, so that every nested property inside the object\n * is collected as a \"deep\" dependency.\n */\nfunction traverse (val) {\n _traverse(val, seenObjects);\n seenObjects.clear();\n}\n\nfunction _traverse (val, seen) {\n var i, keys;\n var isA = Array.isArray(val);\n if ((!isA && !isObject(val)) || Object.isFrozen(val) || val instanceof VNode) {\n return\n }\n if (val.__ob__) {\n var depId = val.__ob__.dep.id;\n if (seen.has(depId)) {\n return\n }\n seen.add(depId);\n }\n if (isA) {\n i = val.length;\n while (i--) { _traverse(val[i], seen); }\n } else {\n keys = Object.keys(val);\n i = keys.length;\n while (i--) { _traverse(val[keys[i]], seen); }\n }\n}\n\nvar mark;\nvar measure;\n\nif (process.env.NODE_ENV !== 'production') {\n var perf = inBrowser && window.performance;\n /* istanbul ignore if */\n if (\n perf &&\n perf.mark &&\n perf.measure &&\n perf.clearMarks &&\n perf.clearMeasures\n ) {\n mark = function (tag) { return perf.mark(tag); };\n measure = function (name, startTag, endTag) {\n perf.measure(name, startTag, endTag);\n perf.clearMarks(startTag);\n perf.clearMarks(endTag);\n // perf.clearMeasures(name)\n };\n }\n}\n\n/* */\n\nvar normalizeEvent = cached(function (name) {\n var passive = name.charAt(0) === '&';\n name = passive ? name.slice(1) : name;\n var once$$1 = name.charAt(0) === '~'; // Prefixed last, checked first\n name = once$$1 ? name.slice(1) : name;\n var capture = name.charAt(0) === '!';\n name = capture ? name.slice(1) : name;\n return {\n name: name,\n once: once$$1,\n capture: capture,\n passive: passive\n }\n});\n\nfunction createFnInvoker (fns, vm) {\n function invoker () {\n var arguments$1 = arguments;\n\n var fns = invoker.fns;\n if (Array.isArray(fns)) {\n var cloned = fns.slice();\n for (var i = 0; i < cloned.length; i++) {\n invokeWithErrorHandling(cloned[i], null, arguments$1, vm, \"v-on handler\");\n }\n } else {\n // return handler return value for single handlers\n return invokeWithErrorHandling(fns, null, arguments, vm, \"v-on handler\")\n }\n }\n invoker.fns = fns;\n return invoker\n}\n\nfunction updateListeners (\n on,\n oldOn,\n add,\n remove$$1,\n createOnceHandler,\n vm\n) {\n var name, def$$1, cur, old, event;\n for (name in on) {\n def$$1 = cur = on[name];\n old = oldOn[name];\n event = normalizeEvent(name);\n if (isUndef(cur)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Invalid handler for event \\\"\" + (event.name) + \"\\\": got \" + String(cur),\n vm\n );\n } else if (isUndef(old)) {\n if (isUndef(cur.fns)) {\n cur = on[name] = createFnInvoker(cur, vm);\n }\n if (isTrue(event.once)) {\n cur = on[name] = createOnceHandler(event.name, cur, event.capture);\n }\n add(event.name, cur, event.capture, event.passive, event.params);\n } else if (cur !== old) {\n old.fns = cur;\n on[name] = old;\n }\n }\n for (name in oldOn) {\n if (isUndef(on[name])) {\n event = normalizeEvent(name);\n remove$$1(event.name, oldOn[name], event.capture);\n }\n }\n}\n\n/* */\n\nfunction mergeVNodeHook (def, hookKey, hook) {\n if (def instanceof VNode) {\n def = def.data.hook || (def.data.hook = {});\n }\n var invoker;\n var oldHook = def[hookKey];\n\n function wrappedHook () {\n hook.apply(this, arguments);\n // important: remove merged hook to ensure it's called only once\n // and prevent memory leak\n remove(invoker.fns, wrappedHook);\n }\n\n if (isUndef(oldHook)) {\n // no existing hook\n invoker = createFnInvoker([wrappedHook]);\n } else {\n /* istanbul ignore if */\n if (isDef(oldHook.fns) && isTrue(oldHook.merged)) {\n // already a merged invoker\n invoker = oldHook;\n invoker.fns.push(wrappedHook);\n } else {\n // existing plain hook\n invoker = createFnInvoker([oldHook, wrappedHook]);\n }\n }\n\n invoker.merged = true;\n def[hookKey] = invoker;\n}\n\n/* */\n\nfunction extractPropsFromVNodeData (\n data,\n Ctor,\n tag\n) {\n // we are only extracting raw values here.\n // validation and default values are handled in the child\n // component itself.\n var propOptions = Ctor.options.props;\n if (isUndef(propOptions)) {\n return\n }\n var res = {};\n var attrs = data.attrs;\n var props = data.props;\n if (isDef(attrs) || isDef(props)) {\n for (var key in propOptions) {\n var altKey = hyphenate(key);\n if (process.env.NODE_ENV !== 'production') {\n var keyInLowerCase = key.toLowerCase();\n if (\n key !== keyInLowerCase &&\n attrs && hasOwn(attrs, keyInLowerCase)\n ) {\n tip(\n \"Prop \\\"\" + keyInLowerCase + \"\\\" is passed to component \" +\n (formatComponentName(tag || Ctor)) + \", but the declared prop name is\" +\n \" \\\"\" + key + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and camelCased \" +\n \"props need to use their kebab-case equivalents when using in-DOM \" +\n \"templates. You should probably use \\\"\" + altKey + \"\\\" instead of \\\"\" + key + \"\\\".\"\n );\n }\n }\n checkProp(res, props, key, altKey, true) ||\n checkProp(res, attrs, key, altKey, false);\n }\n }\n return res\n}\n\nfunction checkProp (\n res,\n hash,\n key,\n altKey,\n preserve\n) {\n if (isDef(hash)) {\n if (hasOwn(hash, key)) {\n res[key] = hash[key];\n if (!preserve) {\n delete hash[key];\n }\n return true\n } else if (hasOwn(hash, altKey)) {\n res[key] = hash[altKey];\n if (!preserve) {\n delete hash[altKey];\n }\n return true\n }\n }\n return false\n}\n\n/* */\n\n// The template compiler attempts to minimize the need for normalization by\n// statically analyzing the template at compile time.\n//\n// For plain HTML markup, normalization can be completely skipped because the\n// generated render function is guaranteed to return Array<VNode>. There are\n// two cases where extra normalization is needed:\n\n// 1. When the children contains components - because a functional component\n// may return an Array instead of a single root. In this case, just a simple\n// normalization is needed - if any child is an Array, we flatten the whole\n// thing with Array.prototype.concat. It is guaranteed to be only 1-level deep\n// because functional components already normalize their own children.\nfunction simpleNormalizeChildren (children) {\n for (var i = 0; i < children.length; i++) {\n if (Array.isArray(children[i])) {\n return Array.prototype.concat.apply([], children)\n }\n }\n return children\n}\n\n// 2. When the children contains constructs that always generated nested Arrays,\n// e.g. <template>, <slot>, v-for, or when the children is provided by user\n// with hand-written render functions / JSX. In such cases a full normalization\n// is needed to cater to all possible types of children values.\nfunction normalizeChildren (children) {\n return isPrimitive(children)\n ? [createTextVNode(children)]\n : Array.isArray(children)\n ? normalizeArrayChildren(children)\n : undefined\n}\n\nfunction isTextNode (node) {\n return isDef(node) && isDef(node.text) && isFalse(node.isComment)\n}\n\nfunction normalizeArrayChildren (children, nestedIndex) {\n var res = [];\n var i, c, lastIndex, last;\n for (i = 0; i < children.length; i++) {\n c = children[i];\n if (isUndef(c) || typeof c === 'boolean') { continue }\n lastIndex = res.length - 1;\n last = res[lastIndex];\n // nested\n if (Array.isArray(c)) {\n if (c.length > 0) {\n c = normalizeArrayChildren(c, ((nestedIndex || '') + \"_\" + i));\n // merge adjacent text nodes\n if (isTextNode(c[0]) && isTextNode(last)) {\n res[lastIndex] = createTextVNode(last.text + (c[0]).text);\n c.shift();\n }\n res.push.apply(res, c);\n }\n } else if (isPrimitive(c)) {\n if (isTextNode(last)) {\n // merge adjacent text nodes\n // this is necessary for SSR hydration because text nodes are\n // essentially merged when rendered to HTML strings\n res[lastIndex] = createTextVNode(last.text + c);\n } else if (c !== '') {\n // convert primitive to vnode\n res.push(createTextVNode(c));\n }\n } else {\n if (isTextNode(c) && isTextNode(last)) {\n // merge adjacent text nodes\n res[lastIndex] = createTextVNode(last.text + c.text);\n } else {\n // default key for nested array children (likely generated by v-for)\n if (isTrue(children._isVList) &&\n isDef(c.tag) &&\n isUndef(c.key) &&\n isDef(nestedIndex)) {\n c.key = \"__vlist\" + nestedIndex + \"_\" + i + \"__\";\n }\n res.push(c);\n }\n }\n }\n return res\n}\n\n/* */\n\nfunction initProvide (vm) {\n var provide = vm.$options.provide;\n if (provide) {\n vm._provided = typeof provide === 'function'\n ? provide.call(vm)\n : provide;\n }\n}\n\nfunction initInjections (vm) {\n var result = resolveInject(vm.$options.inject, vm);\n if (result) {\n toggleObserving(false);\n Object.keys(result).forEach(function (key) {\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive$$1(vm, key, result[key], function () {\n warn(\n \"Avoid mutating an injected value directly since the changes will be \" +\n \"overwritten whenever the provided component re-renders. \" +\n \"injection being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n });\n } else {\n defineReactive$$1(vm, key, result[key]);\n }\n });\n toggleObserving(true);\n }\n}\n\nfunction resolveInject (inject, vm) {\n if (inject) {\n // inject is :any because flow is not smart enough to figure out cached\n var result = Object.create(null);\n var keys = hasSymbol\n ? Reflect.ownKeys(inject)\n : Object.keys(inject);\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n // #6574 in case the inject object is observed...\n if (key === '__ob__') { continue }\n var provideKey = inject[key].from;\n var source = vm;\n while (source) {\n if (source._provided && hasOwn(source._provided, provideKey)) {\n result[key] = source._provided[provideKey];\n break\n }\n source = source.$parent;\n }\n if (!source) {\n if ('default' in inject[key]) {\n var provideDefault = inject[key].default;\n result[key] = typeof provideDefault === 'function'\n ? provideDefault.call(vm)\n : provideDefault;\n } else if (process.env.NODE_ENV !== 'production') {\n warn((\"Injection \\\"\" + key + \"\\\" not found\"), vm);\n }\n }\n }\n return result\n }\n}\n\n/* */\n\n\n\n/**\n * Runtime helper for resolving raw children VNodes into a slot object.\n */\nfunction resolveSlots (\n children,\n context\n) {\n if (!children || !children.length) {\n return {}\n }\n var slots = {};\n for (var i = 0, l = children.length; i < l; i++) {\n var child = children[i];\n var data = child.data;\n // remove slot attribute if the node is resolved as a Vue slot node\n if (data && data.attrs && data.attrs.slot) {\n delete data.attrs.slot;\n }\n // named slots should only be respected if the vnode was rendered in the\n // same context.\n if ((child.context === context || child.fnContext === context) &&\n data && data.slot != null\n ) {\n var name = data.slot;\n var slot = (slots[name] || (slots[name] = []));\n if (child.tag === 'template') {\n slot.push.apply(slot, child.children || []);\n } else {\n slot.push(child);\n }\n } else {\n (slots.default || (slots.default = [])).push(child);\n }\n }\n // ignore slots that contains only whitespace\n for (var name$1 in slots) {\n if (slots[name$1].every(isWhitespace)) {\n delete slots[name$1];\n }\n }\n return slots\n}\n\nfunction isWhitespace (node) {\n return (node.isComment && !node.asyncFactory) || node.text === ' '\n}\n\n/* */\n\nfunction normalizeScopedSlots (\n slots,\n normalSlots,\n prevSlots\n) {\n var res;\n var hasNormalSlots = Object.keys(normalSlots).length > 0;\n var isStable = slots ? !!slots.$stable : !hasNormalSlots;\n var key = slots && slots.$key;\n if (!slots) {\n res = {};\n } else if (slots._normalized) {\n // fast path 1: child component re-render only, parent did not change\n return slots._normalized\n } else if (\n isStable &&\n prevSlots &&\n prevSlots !== emptyObject &&\n key === prevSlots.$key &&\n !hasNormalSlots &&\n !prevSlots.$hasNormal\n ) {\n // fast path 2: stable scoped slots w/ no normal slots to proxy,\n // only need to normalize once\n return prevSlots\n } else {\n res = {};\n for (var key$1 in slots) {\n if (slots[key$1] && key$1[0] !== '$') {\n res[key$1] = normalizeScopedSlot(normalSlots, key$1, slots[key$1]);\n }\n }\n }\n // expose normal slots on scopedSlots\n for (var key$2 in normalSlots) {\n if (!(key$2 in res)) {\n res[key$2] = proxyNormalSlot(normalSlots, key$2);\n }\n }\n // avoriaz seems to mock a non-extensible $scopedSlots object\n // and when that is passed down this would cause an error\n if (slots && Object.isExtensible(slots)) {\n (slots)._normalized = res;\n }\n def(res, '$stable', isStable);\n def(res, '$key', key);\n def(res, '$hasNormal', hasNormalSlots);\n return res\n}\n\nfunction normalizeScopedSlot(normalSlots, key, fn) {\n var normalized = function () {\n var res = arguments.length ? fn.apply(null, arguments) : fn({});\n res = res && typeof res === 'object' && !Array.isArray(res)\n ? [res] // single vnode\n : normalizeChildren(res);\n return res && (\n res.length === 0 ||\n (res.length === 1 && res[0].isComment) // #9658\n ) ? undefined\n : res\n };\n // this is a slot using the new v-slot syntax without scope. although it is\n // compiled as a scoped slot, render fn users would expect it to be present\n // on this.$slots because the usage is semantically a normal slot.\n if (fn.proxy) {\n Object.defineProperty(normalSlots, key, {\n get: normalized,\n enumerable: true,\n configurable: true\n });\n }\n return normalized\n}\n\nfunction proxyNormalSlot(slots, key) {\n return function () { return slots[key]; }\n}\n\n/* */\n\n/**\n * Runtime helper for rendering v-for lists.\n */\nfunction renderList (\n val,\n render\n) {\n var ret, i, l, keys, key;\n if (Array.isArray(val) || typeof val === 'string') {\n ret = new Array(val.length);\n for (i = 0, l = val.length; i < l; i++) {\n ret[i] = render(val[i], i);\n }\n } else if (typeof val === 'number') {\n ret = new Array(val);\n for (i = 0; i < val; i++) {\n ret[i] = render(i + 1, i);\n }\n } else if (isObject(val)) {\n if (hasSymbol && val[Symbol.iterator]) {\n ret = [];\n var iterator = val[Symbol.iterator]();\n var result = iterator.next();\n while (!result.done) {\n ret.push(render(result.value, ret.length));\n result = iterator.next();\n }\n } else {\n keys = Object.keys(val);\n ret = new Array(keys.length);\n for (i = 0, l = keys.length; i < l; i++) {\n key = keys[i];\n ret[i] = render(val[key], key, i);\n }\n }\n }\n if (!isDef(ret)) {\n ret = [];\n }\n (ret)._isVList = true;\n return ret\n}\n\n/* */\n\n/**\n * Runtime helper for rendering <slot>\n */\nfunction renderSlot (\n name,\n fallback,\n props,\n bindObject\n) {\n var scopedSlotFn = this.$scopedSlots[name];\n var nodes;\n if (scopedSlotFn) { // scoped slot\n props = props || {};\n if (bindObject) {\n if (process.env.NODE_ENV !== 'production' && !isObject(bindObject)) {\n warn(\n 'slot v-bind without argument expects an Object',\n this\n );\n }\n props = extend(extend({}, bindObject), props);\n }\n nodes = scopedSlotFn(props) || fallback;\n } else {\n nodes = this.$slots[name] || fallback;\n }\n\n var target = props && props.slot;\n if (target) {\n return this.$createElement('template', { slot: target }, nodes)\n } else {\n return nodes\n }\n}\n\n/* */\n\n/**\n * Runtime helper for resolving filters\n */\nfunction resolveFilter (id) {\n return resolveAsset(this.$options, 'filters', id, true) || identity\n}\n\n/* */\n\nfunction isKeyNotMatch (expect, actual) {\n if (Array.isArray(expect)) {\n return expect.indexOf(actual) === -1\n } else {\n return expect !== actual\n }\n}\n\n/**\n * Runtime helper for checking keyCodes from config.\n * exposed as Vue.prototype._k\n * passing in eventKeyName as last argument separately for backwards compat\n */\nfunction checkKeyCodes (\n eventKeyCode,\n key,\n builtInKeyCode,\n eventKeyName,\n builtInKeyName\n) {\n var mappedKeyCode = config.keyCodes[key] || builtInKeyCode;\n if (builtInKeyName && eventKeyName && !config.keyCodes[key]) {\n return isKeyNotMatch(builtInKeyName, eventKeyName)\n } else if (mappedKeyCode) {\n return isKeyNotMatch(mappedKeyCode, eventKeyCode)\n } else if (eventKeyName) {\n return hyphenate(eventKeyName) !== key\n }\n}\n\n/* */\n\n/**\n * Runtime helper for merging v-bind=\"object\" into a VNode's data.\n */\nfunction bindObjectProps (\n data,\n tag,\n value,\n asProp,\n isSync\n) {\n if (value) {\n if (!isObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-bind without argument expects an Object or Array value',\n this\n );\n } else {\n if (Array.isArray(value)) {\n value = toObject(value);\n }\n var hash;\n var loop = function ( key ) {\n if (\n key === 'class' ||\n key === 'style' ||\n isReservedAttribute(key)\n ) {\n hash = data;\n } else {\n var type = data.attrs && data.attrs.type;\n hash = asProp || config.mustUseProp(tag, type, key)\n ? data.domProps || (data.domProps = {})\n : data.attrs || (data.attrs = {});\n }\n var camelizedKey = camelize(key);\n var hyphenatedKey = hyphenate(key);\n if (!(camelizedKey in hash) && !(hyphenatedKey in hash)) {\n hash[key] = value[key];\n\n if (isSync) {\n var on = data.on || (data.on = {});\n on[(\"update:\" + key)] = function ($event) {\n value[key] = $event;\n };\n }\n }\n };\n\n for (var key in value) loop( key );\n }\n }\n return data\n}\n\n/* */\n\n/**\n * Runtime helper for rendering static trees.\n */\nfunction renderStatic (\n index,\n isInFor\n) {\n var cached = this._staticTrees || (this._staticTrees = []);\n var tree = cached[index];\n // if has already-rendered static tree and not inside v-for,\n // we can reuse the same tree.\n if (tree && !isInFor) {\n return tree\n }\n // otherwise, render a fresh tree.\n tree = cached[index] = this.$options.staticRenderFns[index].call(\n this._renderProxy,\n null,\n this // for render fns generated for functional component templates\n );\n markStatic(tree, (\"__static__\" + index), false);\n return tree\n}\n\n/**\n * Runtime helper for v-once.\n * Effectively it means marking the node as static with a unique key.\n */\nfunction markOnce (\n tree,\n index,\n key\n) {\n markStatic(tree, (\"__once__\" + index + (key ? (\"_\" + key) : \"\")), true);\n return tree\n}\n\nfunction markStatic (\n tree,\n key,\n isOnce\n) {\n if (Array.isArray(tree)) {\n for (var i = 0; i < tree.length; i++) {\n if (tree[i] && typeof tree[i] !== 'string') {\n markStaticNode(tree[i], (key + \"_\" + i), isOnce);\n }\n }\n } else {\n markStaticNode(tree, key, isOnce);\n }\n}\n\nfunction markStaticNode (node, key, isOnce) {\n node.isStatic = true;\n node.key = key;\n node.isOnce = isOnce;\n}\n\n/* */\n\nfunction bindObjectListeners (data, value) {\n if (value) {\n if (!isPlainObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-on without argument expects an Object value',\n this\n );\n } else {\n var on = data.on = data.on ? extend({}, data.on) : {};\n for (var key in value) {\n var existing = on[key];\n var ours = value[key];\n on[key] = existing ? [].concat(existing, ours) : ours;\n }\n }\n }\n return data\n}\n\n/* */\n\nfunction resolveScopedSlots (\n fns, // see flow/vnode\n res,\n // the following are added in 2.6\n hasDynamicKeys,\n contentHashKey\n) {\n res = res || { $stable: !hasDynamicKeys };\n for (var i = 0; i < fns.length; i++) {\n var slot = fns[i];\n if (Array.isArray(slot)) {\n resolveScopedSlots(slot, res, hasDynamicKeys);\n } else if (slot) {\n // marker for reverse proxying v-slot without scope on this.$slots\n if (slot.proxy) {\n slot.fn.proxy = true;\n }\n res[slot.key] = slot.fn;\n }\n }\n if (contentHashKey) {\n (res).$key = contentHashKey;\n }\n return res\n}\n\n/* */\n\nfunction bindDynamicKeys (baseObj, values) {\n for (var i = 0; i < values.length; i += 2) {\n var key = values[i];\n if (typeof key === 'string' && key) {\n baseObj[values[i]] = values[i + 1];\n } else if (process.env.NODE_ENV !== 'production' && key !== '' && key !== null) {\n // null is a special value for explicitly removing a binding\n warn(\n (\"Invalid value for dynamic directive argument (expected string or null): \" + key),\n this\n );\n }\n }\n return baseObj\n}\n\n// helper to dynamically append modifier runtime markers to event names.\n// ensure only append when value is already string, otherwise it will be cast\n// to string and cause the type check to miss.\nfunction prependModifier (value, symbol) {\n return typeof value === 'string' ? symbol + value : value\n}\n\n/* */\n\nfunction installRenderHelpers (target) {\n target._o = markOnce;\n target._n = toNumber;\n target._s = toString;\n target._l = renderList;\n target._t = renderSlot;\n target._q = looseEqual;\n target._i = looseIndexOf;\n target._m = renderStatic;\n target._f = resolveFilter;\n target._k = checkKeyCodes;\n target._b = bindObjectProps;\n target._v = createTextVNode;\n target._e = createEmptyVNode;\n target._u = resolveScopedSlots;\n target._g = bindObjectListeners;\n target._d = bindDynamicKeys;\n target._p = prependModifier;\n}\n\n/* */\n\nfunction FunctionalRenderContext (\n data,\n props,\n children,\n parent,\n Ctor\n) {\n var this$1 = this;\n\n var options = Ctor.options;\n // ensure the createElement function in functional components\n // gets a unique context - this is necessary for correct named slot check\n var contextVm;\n if (hasOwn(parent, '_uid')) {\n contextVm = Object.create(parent);\n // $flow-disable-line\n contextVm._original = parent;\n } else {\n // the context vm passed in is a functional context as well.\n // in this case we want to make sure we are able to get a hold to the\n // real context instance.\n contextVm = parent;\n // $flow-disable-line\n parent = parent._original;\n }\n var isCompiled = isTrue(options._compiled);\n var needNormalization = !isCompiled;\n\n this.data = data;\n this.props = props;\n this.children = children;\n this.parent = parent;\n this.listeners = data.on || emptyObject;\n this.injections = resolveInject(options.inject, parent);\n this.slots = function () {\n if (!this$1.$slots) {\n normalizeScopedSlots(\n data.scopedSlots,\n this$1.$slots = resolveSlots(children, parent)\n );\n }\n return this$1.$slots\n };\n\n Object.defineProperty(this, 'scopedSlots', ({\n enumerable: true,\n get: function get () {\n return normalizeScopedSlots(data.scopedSlots, this.slots())\n }\n }));\n\n // support for compiled functional template\n if (isCompiled) {\n // exposing $options for renderStatic()\n this.$options = options;\n // pre-resolve slots for renderSlot()\n this.$slots = this.slots();\n this.$scopedSlots = normalizeScopedSlots(data.scopedSlots, this.$slots);\n }\n\n if (options._scopeId) {\n this._c = function (a, b, c, d) {\n var vnode = createElement(contextVm, a, b, c, d, needNormalization);\n if (vnode && !Array.isArray(vnode)) {\n vnode.fnScopeId = options._scopeId;\n vnode.fnContext = parent;\n }\n return vnode\n };\n } else {\n this._c = function (a, b, c, d) { return createElement(contextVm, a, b, c, d, needNormalization); };\n }\n}\n\ninstallRenderHelpers(FunctionalRenderContext.prototype);\n\nfunction createFunctionalComponent (\n Ctor,\n propsData,\n data,\n contextVm,\n children\n) {\n var options = Ctor.options;\n var props = {};\n var propOptions = options.props;\n if (isDef(propOptions)) {\n for (var key in propOptions) {\n props[key] = validateProp(key, propOptions, propsData || emptyObject);\n }\n } else {\n if (isDef(data.attrs)) { mergeProps(props, data.attrs); }\n if (isDef(data.props)) { mergeProps(props, data.props); }\n }\n\n var renderContext = new FunctionalRenderContext(\n data,\n props,\n children,\n contextVm,\n Ctor\n );\n\n var vnode = options.render.call(null, renderContext._c, renderContext);\n\n if (vnode instanceof VNode) {\n return cloneAndMarkFunctionalResult(vnode, data, renderContext.parent, options, renderContext)\n } else if (Array.isArray(vnode)) {\n var vnodes = normalizeChildren(vnode) || [];\n var res = new Array(vnodes.length);\n for (var i = 0; i < vnodes.length; i++) {\n res[i] = cloneAndMarkFunctionalResult(vnodes[i], data, renderContext.parent, options, renderContext);\n }\n return res\n }\n}\n\nfunction cloneAndMarkFunctionalResult (vnode, data, contextVm, options, renderContext) {\n // #7817 clone node before setting fnContext, otherwise if the node is reused\n // (e.g. it was from a cached normal slot) the fnContext causes named slots\n // that should not be matched to match.\n var clone = cloneVNode(vnode);\n clone.fnContext = contextVm;\n clone.fnOptions = options;\n if (process.env.NODE_ENV !== 'production') {\n (clone.devtoolsMeta = clone.devtoolsMeta || {}).renderContext = renderContext;\n }\n if (data.slot) {\n (clone.data || (clone.data = {})).slot = data.slot;\n }\n return clone\n}\n\nfunction mergeProps (to, from) {\n for (var key in from) {\n to[camelize(key)] = from[key];\n }\n}\n\n/* */\n\n/* */\n\n/* */\n\n/* */\n\n// inline hooks to be invoked on component VNodes during patch\nvar componentVNodeHooks = {\n init: function init (vnode, hydrating) {\n if (\n vnode.componentInstance &&\n !vnode.componentInstance._isDestroyed &&\n vnode.data.keepAlive\n ) {\n // kept-alive components, treat as a patch\n var mountedNode = vnode; // work around flow\n componentVNodeHooks.prepatch(mountedNode, mountedNode);\n } else {\n var child = vnode.componentInstance = createComponentInstanceForVnode(\n vnode,\n activeInstance\n );\n child.$mount(hydrating ? vnode.elm : undefined, hydrating);\n }\n },\n\n prepatch: function prepatch (oldVnode, vnode) {\n var options = vnode.componentOptions;\n var child = vnode.componentInstance = oldVnode.componentInstance;\n updateChildComponent(\n child,\n options.propsData, // updated props\n options.listeners, // updated listeners\n vnode, // new parent vnode\n options.children // new children\n );\n },\n\n insert: function insert (vnode) {\n var context = vnode.context;\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isMounted) {\n componentInstance._isMounted = true;\n callHook(componentInstance, 'mounted');\n }\n if (vnode.data.keepAlive) {\n if (context._isMounted) {\n // vue-router#1212\n // During updates, a kept-alive component's child components may\n // change, so directly walking the tree here may call activated hooks\n // on incorrect children. Instead we push them into a queue which will\n // be processed after the whole patch process ended.\n queueActivatedComponent(componentInstance);\n } else {\n activateChildComponent(componentInstance, true /* direct */);\n }\n }\n },\n\n destroy: function destroy (vnode) {\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isDestroyed) {\n if (!vnode.data.keepAlive) {\n componentInstance.$destroy();\n } else {\n deactivateChildComponent(componentInstance, true /* direct */);\n }\n }\n }\n};\n\nvar hooksToMerge = Object.keys(componentVNodeHooks);\n\nfunction createComponent (\n Ctor,\n data,\n context,\n children,\n tag\n) {\n if (isUndef(Ctor)) {\n return\n }\n\n var baseCtor = context.$options._base;\n\n // plain options object: turn it into a constructor\n if (isObject(Ctor)) {\n Ctor = baseCtor.extend(Ctor);\n }\n\n // if at this stage it's not a constructor or an async component factory,\n // reject.\n if (typeof Ctor !== 'function') {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Invalid Component definition: \" + (String(Ctor))), context);\n }\n return\n }\n\n // async component\n var asyncFactory;\n if (isUndef(Ctor.cid)) {\n asyncFactory = Ctor;\n Ctor = resolveAsyncComponent(asyncFactory, baseCtor);\n if (Ctor === undefined) {\n // return a placeholder node for async component, which is rendered\n // as a comment node but preserves all the raw information for the node.\n // the information will be used for async server-rendering and hydration.\n return createAsyncPlaceholder(\n asyncFactory,\n data,\n context,\n children,\n tag\n )\n }\n }\n\n data = data || {};\n\n // resolve constructor options in case global mixins are applied after\n // component constructor creation\n resolveConstructorOptions(Ctor);\n\n // transform component v-model data into props & events\n if (isDef(data.model)) {\n transformModel(Ctor.options, data);\n }\n\n // extract props\n var propsData = extractPropsFromVNodeData(data, Ctor, tag);\n\n // functional component\n if (isTrue(Ctor.options.functional)) {\n return createFunctionalComponent(Ctor, propsData, data, context, children)\n }\n\n // extract listeners, since these needs to be treated as\n // child component listeners instead of DOM listeners\n var listeners = data.on;\n // replace with listeners with .native modifier\n // so it gets processed during parent component patch.\n data.on = data.nativeOn;\n\n if (isTrue(Ctor.options.abstract)) {\n // abstract components do not keep anything\n // other than props & listeners & slot\n\n // work around flow\n var slot = data.slot;\n data = {};\n if (slot) {\n data.slot = slot;\n }\n }\n\n // install component management hooks onto the placeholder node\n installComponentHooks(data);\n\n // return a placeholder vnode\n var name = Ctor.options.name || tag;\n var vnode = new VNode(\n (\"vue-component-\" + (Ctor.cid) + (name ? (\"-\" + name) : '')),\n data, undefined, undefined, undefined, context,\n { Ctor: Ctor, propsData: propsData, listeners: listeners, tag: tag, children: children },\n asyncFactory\n );\n\n return vnode\n}\n\nfunction createComponentInstanceForVnode (\n vnode, // we know it's MountedComponentVNode but flow doesn't\n parent // activeInstance in lifecycle state\n) {\n var options = {\n _isComponent: true,\n _parentVnode: vnode,\n parent: parent\n };\n // check inline-template render functions\n var inlineTemplate = vnode.data.inlineTemplate;\n if (isDef(inlineTemplate)) {\n options.render = inlineTemplate.render;\n options.staticRenderFns = inlineTemplate.staticRenderFns;\n }\n return new vnode.componentOptions.Ctor(options)\n}\n\nfunction installComponentHooks (data) {\n var hooks = data.hook || (data.hook = {});\n for (var i = 0; i < hooksToMerge.length; i++) {\n var key = hooksToMerge[i];\n var existing = hooks[key];\n var toMerge = componentVNodeHooks[key];\n if (existing !== toMerge && !(existing && existing._merged)) {\n hooks[key] = existing ? mergeHook$1(toMerge, existing) : toMerge;\n }\n }\n}\n\nfunction mergeHook$1 (f1, f2) {\n var merged = function (a, b) {\n // flow complains about extra args which is why we use any\n f1(a, b);\n f2(a, b);\n };\n merged._merged = true;\n return merged\n}\n\n// transform component v-model info (value and callback) into\n// prop and event handler respectively.\nfunction transformModel (options, data) {\n var prop = (options.model && options.model.prop) || 'value';\n var event = (options.model && options.model.event) || 'input'\n ;(data.attrs || (data.attrs = {}))[prop] = data.model.value;\n var on = data.on || (data.on = {});\n var existing = on[event];\n var callback = data.model.callback;\n if (isDef(existing)) {\n if (\n Array.isArray(existing)\n ? existing.indexOf(callback) === -1\n : existing !== callback\n ) {\n on[event] = [callback].concat(existing);\n }\n } else {\n on[event] = callback;\n }\n}\n\n/* */\n\nvar SIMPLE_NORMALIZE = 1;\nvar ALWAYS_NORMALIZE = 2;\n\n// wrapper function for providing a more flexible interface\n// without getting yelled at by flow\nfunction createElement (\n context,\n tag,\n data,\n children,\n normalizationType,\n alwaysNormalize\n) {\n if (Array.isArray(data) || isPrimitive(data)) {\n normalizationType = children;\n children = data;\n data = undefined;\n }\n if (isTrue(alwaysNormalize)) {\n normalizationType = ALWAYS_NORMALIZE;\n }\n return _createElement(context, tag, data, children, normalizationType)\n}\n\nfunction _createElement (\n context,\n tag,\n data,\n children,\n normalizationType\n) {\n if (isDef(data) && isDef((data).__ob__)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Avoid using observed data object as vnode data: \" + (JSON.stringify(data)) + \"\\n\" +\n 'Always create fresh vnode data objects in each render!',\n context\n );\n return createEmptyVNode()\n }\n // object syntax in v-bind\n if (isDef(data) && isDef(data.is)) {\n tag = data.is;\n }\n if (!tag) {\n // in case of component :is set to falsy value\n return createEmptyVNode()\n }\n // warn against non-primitive key\n if (process.env.NODE_ENV !== 'production' &&\n isDef(data) && isDef(data.key) && !isPrimitive(data.key)\n ) {\n {\n warn(\n 'Avoid using non-primitive value as key, ' +\n 'use string/number value instead.',\n context\n );\n }\n }\n // support single function children as default scoped slot\n if (Array.isArray(children) &&\n typeof children[0] === 'function'\n ) {\n data = data || {};\n data.scopedSlots = { default: children[0] };\n children.length = 0;\n }\n if (normalizationType === ALWAYS_NORMALIZE) {\n children = normalizeChildren(children);\n } else if (normalizationType === SIMPLE_NORMALIZE) {\n children = simpleNormalizeChildren(children);\n }\n var vnode, ns;\n if (typeof tag === 'string') {\n var Ctor;\n ns = (context.$vnode && context.$vnode.ns) || config.getTagNamespace(tag);\n if (config.isReservedTag(tag)) {\n // platform built-in elements\n if (process.env.NODE_ENV !== 'production' && isDef(data) && isDef(data.nativeOn)) {\n warn(\n (\"The .native modifier for v-on is only valid on components but it was used on <\" + tag + \">.\"),\n context\n );\n }\n vnode = new VNode(\n config.parsePlatformTagName(tag), data, children,\n undefined, undefined, context\n );\n } else if ((!data || !data.pre) && isDef(Ctor = resolveAsset(context.$options, 'components', tag))) {\n // component\n vnode = createComponent(Ctor, data, context, children, tag);\n } else {\n // unknown or unlisted namespaced elements\n // check at runtime because it may get assigned a namespace when its\n // parent normalizes children\n vnode = new VNode(\n tag, data, children,\n undefined, undefined, context\n );\n }\n } else {\n // direct component options / constructor\n vnode = createComponent(tag, data, context, children);\n }\n if (Array.isArray(vnode)) {\n return vnode\n } else if (isDef(vnode)) {\n if (isDef(ns)) { applyNS(vnode, ns); }\n if (isDef(data)) { registerDeepBindings(data); }\n return vnode\n } else {\n return createEmptyVNode()\n }\n}\n\nfunction applyNS (vnode, ns, force) {\n vnode.ns = ns;\n if (vnode.tag === 'foreignObject') {\n // use default namespace inside foreignObject\n ns = undefined;\n force = true;\n }\n if (isDef(vnode.children)) {\n for (var i = 0, l = vnode.children.length; i < l; i++) {\n var child = vnode.children[i];\n if (isDef(child.tag) && (\n isUndef(child.ns) || (isTrue(force) && child.tag !== 'svg'))) {\n applyNS(child, ns, force);\n }\n }\n }\n}\n\n// ref #5318\n// necessary to ensure parent re-render when deep bindings like :style and\n// :class are used on slot nodes\nfunction registerDeepBindings (data) {\n if (isObject(data.style)) {\n traverse(data.style);\n }\n if (isObject(data.class)) {\n traverse(data.class);\n }\n}\n\n/* */\n\nfunction initRender (vm) {\n vm._vnode = null; // the root of the child tree\n vm._staticTrees = null; // v-once cached trees\n var options = vm.$options;\n var parentVnode = vm.$vnode = options._parentVnode; // the placeholder node in parent tree\n var renderContext = parentVnode && parentVnode.context;\n vm.$slots = resolveSlots(options._renderChildren, renderContext);\n vm.$scopedSlots = emptyObject;\n // bind the createElement fn to this instance\n // so that we get proper render context inside it.\n // args order: tag, data, children, normalizationType, alwaysNormalize\n // internal version is used by render functions compiled from templates\n vm._c = function (a, b, c, d) { return createElement(vm, a, b, c, d, false); };\n // normalization is always applied for the public version, used in\n // user-written render functions.\n vm.$createElement = function (a, b, c, d) { return createElement(vm, a, b, c, d, true); };\n\n // $attrs & $listeners are exposed for easier HOC creation.\n // they need to be reactive so that HOCs using them are always updated\n var parentData = parentVnode && parentVnode.data;\n\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive$$1(vm, '$attrs', parentData && parentData.attrs || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$attrs is readonly.\", vm);\n }, true);\n defineReactive$$1(vm, '$listeners', options._parentListeners || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$listeners is readonly.\", vm);\n }, true);\n } else {\n defineReactive$$1(vm, '$attrs', parentData && parentData.attrs || emptyObject, null, true);\n defineReactive$$1(vm, '$listeners', options._parentListeners || emptyObject, null, true);\n }\n}\n\nvar currentRenderingInstance = null;\n\nfunction renderMixin (Vue) {\n // install runtime convenience helpers\n installRenderHelpers(Vue.prototype);\n\n Vue.prototype.$nextTick = function (fn) {\n return nextTick(fn, this)\n };\n\n Vue.prototype._render = function () {\n var vm = this;\n var ref = vm.$options;\n var render = ref.render;\n var _parentVnode = ref._parentVnode;\n\n if (_parentVnode) {\n vm.$scopedSlots = normalizeScopedSlots(\n _parentVnode.data.scopedSlots,\n vm.$slots,\n vm.$scopedSlots\n );\n }\n\n // set parent vnode. this allows render functions to have access\n // to the data on the placeholder node.\n vm.$vnode = _parentVnode;\n // render self\n var vnode;\n try {\n // There's no need to maintain a stack because all render fns are called\n // separately from one another. Nested component's render fns are called\n // when parent component is patched.\n currentRenderingInstance = vm;\n vnode = render.call(vm._renderProxy, vm.$createElement);\n } catch (e) {\n handleError(e, vm, \"render\");\n // return error render result,\n // or previous vnode to prevent render error causing blank component\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production' && vm.$options.renderError) {\n try {\n vnode = vm.$options.renderError.call(vm._renderProxy, vm.$createElement, e);\n } catch (e) {\n handleError(e, vm, \"renderError\");\n vnode = vm._vnode;\n }\n } else {\n vnode = vm._vnode;\n }\n } finally {\n currentRenderingInstance = null;\n }\n // if the returned array contains only a single node, allow it\n if (Array.isArray(vnode) && vnode.length === 1) {\n vnode = vnode[0];\n }\n // return empty vnode in case the render function errored out\n if (!(vnode instanceof VNode)) {\n if (process.env.NODE_ENV !== 'production' && Array.isArray(vnode)) {\n warn(\n 'Multiple root nodes returned from render function. Render function ' +\n 'should return a single root node.',\n vm\n );\n }\n vnode = createEmptyVNode();\n }\n // set parent\n vnode.parent = _parentVnode;\n return vnode\n };\n}\n\n/* */\n\nfunction ensureCtor (comp, base) {\n if (\n comp.__esModule ||\n (hasSymbol && comp[Symbol.toStringTag] === 'Module')\n ) {\n comp = comp.default;\n }\n return isObject(comp)\n ? base.extend(comp)\n : comp\n}\n\nfunction createAsyncPlaceholder (\n factory,\n data,\n context,\n children,\n tag\n) {\n var node = createEmptyVNode();\n node.asyncFactory = factory;\n node.asyncMeta = { data: data, context: context, children: children, tag: tag };\n return node\n}\n\nfunction resolveAsyncComponent (\n factory,\n baseCtor\n) {\n if (isTrue(factory.error) && isDef(factory.errorComp)) {\n return factory.errorComp\n }\n\n if (isDef(factory.resolved)) {\n return factory.resolved\n }\n\n var owner = currentRenderingInstance;\n if (owner && isDef(factory.owners) && factory.owners.indexOf(owner) === -1) {\n // already pending\n factory.owners.push(owner);\n }\n\n if (isTrue(factory.loading) && isDef(factory.loadingComp)) {\n return factory.loadingComp\n }\n\n if (owner && !isDef(factory.owners)) {\n var owners = factory.owners = [owner];\n var sync = true;\n var timerLoading = null;\n var timerTimeout = null\n\n ;(owner).$on('hook:destroyed', function () { return remove(owners, owner); });\n\n var forceRender = function (renderCompleted) {\n for (var i = 0, l = owners.length; i < l; i++) {\n (owners[i]).$forceUpdate();\n }\n\n if (renderCompleted) {\n owners.length = 0;\n if (timerLoading !== null) {\n clearTimeout(timerLoading);\n timerLoading = null;\n }\n if (timerTimeout !== null) {\n clearTimeout(timerTimeout);\n timerTimeout = null;\n }\n }\n };\n\n var resolve = once(function (res) {\n // cache resolved\n factory.resolved = ensureCtor(res, baseCtor);\n // invoke callbacks only if this is not a synchronous resolve\n // (async resolves are shimmed as synchronous during SSR)\n if (!sync) {\n forceRender(true);\n } else {\n owners.length = 0;\n }\n });\n\n var reject = once(function (reason) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed to resolve async component: \" + (String(factory)) +\n (reason ? (\"\\nReason: \" + reason) : '')\n );\n if (isDef(factory.errorComp)) {\n factory.error = true;\n forceRender(true);\n }\n });\n\n var res = factory(resolve, reject);\n\n if (isObject(res)) {\n if (isPromise(res)) {\n // () => Promise\n if (isUndef(factory.resolved)) {\n res.then(resolve, reject);\n }\n } else if (isPromise(res.component)) {\n res.component.then(resolve, reject);\n\n if (isDef(res.error)) {\n factory.errorComp = ensureCtor(res.error, baseCtor);\n }\n\n if (isDef(res.loading)) {\n factory.loadingComp = ensureCtor(res.loading, baseCtor);\n if (res.delay === 0) {\n factory.loading = true;\n } else {\n timerLoading = setTimeout(function () {\n timerLoading = null;\n if (isUndef(factory.resolved) && isUndef(factory.error)) {\n factory.loading = true;\n forceRender(false);\n }\n }, res.delay || 200);\n }\n }\n\n if (isDef(res.timeout)) {\n timerTimeout = setTimeout(function () {\n timerTimeout = null;\n if (isUndef(factory.resolved)) {\n reject(\n process.env.NODE_ENV !== 'production'\n ? (\"timeout (\" + (res.timeout) + \"ms)\")\n : null\n );\n }\n }, res.timeout);\n }\n }\n }\n\n sync = false;\n // return in case resolved synchronously\n return factory.loading\n ? factory.loadingComp\n : factory.resolved\n }\n}\n\n/* */\n\nfunction isAsyncPlaceholder (node) {\n return node.isComment && node.asyncFactory\n}\n\n/* */\n\nfunction getFirstComponentChild (children) {\n if (Array.isArray(children)) {\n for (var i = 0; i < children.length; i++) {\n var c = children[i];\n if (isDef(c) && (isDef(c.componentOptions) || isAsyncPlaceholder(c))) {\n return c\n }\n }\n }\n}\n\n/* */\n\n/* */\n\nfunction initEvents (vm) {\n vm._events = Object.create(null);\n vm._hasHookEvent = false;\n // init parent attached events\n var listeners = vm.$options._parentListeners;\n if (listeners) {\n updateComponentListeners(vm, listeners);\n }\n}\n\nvar target;\n\nfunction add (event, fn) {\n target.$on(event, fn);\n}\n\nfunction remove$1 (event, fn) {\n target.$off(event, fn);\n}\n\nfunction createOnceHandler (event, fn) {\n var _target = target;\n return function onceHandler () {\n var res = fn.apply(null, arguments);\n if (res !== null) {\n _target.$off(event, onceHandler);\n }\n }\n}\n\nfunction updateComponentListeners (\n vm,\n listeners,\n oldListeners\n) {\n target = vm;\n updateListeners(listeners, oldListeners || {}, add, remove$1, createOnceHandler, vm);\n target = undefined;\n}\n\nfunction eventsMixin (Vue) {\n var hookRE = /^hook:/;\n Vue.prototype.$on = function (event, fn) {\n var vm = this;\n if (Array.isArray(event)) {\n for (var i = 0, l = event.length; i < l; i++) {\n vm.$on(event[i], fn);\n }\n } else {\n (vm._events[event] || (vm._events[event] = [])).push(fn);\n // optimize hook:event cost by using a boolean flag marked at registration\n // instead of a hash lookup\n if (hookRE.test(event)) {\n vm._hasHookEvent = true;\n }\n }\n return vm\n };\n\n Vue.prototype.$once = function (event, fn) {\n var vm = this;\n function on () {\n vm.$off(event, on);\n fn.apply(vm, arguments);\n }\n on.fn = fn;\n vm.$on(event, on);\n return vm\n };\n\n Vue.prototype.$off = function (event, fn) {\n var vm = this;\n // all\n if (!arguments.length) {\n vm._events = Object.create(null);\n return vm\n }\n // array of events\n if (Array.isArray(event)) {\n for (var i$1 = 0, l = event.length; i$1 < l; i$1++) {\n vm.$off(event[i$1], fn);\n }\n return vm\n }\n // specific event\n var cbs = vm._events[event];\n if (!cbs) {\n return vm\n }\n if (!fn) {\n vm._events[event] = null;\n return vm\n }\n // specific handler\n var cb;\n var i = cbs.length;\n while (i--) {\n cb = cbs[i];\n if (cb === fn || cb.fn === fn) {\n cbs.splice(i, 1);\n break\n }\n }\n return vm\n };\n\n Vue.prototype.$emit = function (event) {\n var vm = this;\n if (process.env.NODE_ENV !== 'production') {\n var lowerCaseEvent = event.toLowerCase();\n if (lowerCaseEvent !== event && vm._events[lowerCaseEvent]) {\n tip(\n \"Event \\\"\" + lowerCaseEvent + \"\\\" is emitted in component \" +\n (formatComponentName(vm)) + \" but the handler is registered for \\\"\" + event + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and you cannot use \" +\n \"v-on to listen to camelCase events when using in-DOM templates. \" +\n \"You should probably use \\\"\" + (hyphenate(event)) + \"\\\" instead of \\\"\" + event + \"\\\".\"\n );\n }\n }\n var cbs = vm._events[event];\n if (cbs) {\n cbs = cbs.length > 1 ? toArray(cbs) : cbs;\n var args = toArray(arguments, 1);\n var info = \"event handler for \\\"\" + event + \"\\\"\";\n for (var i = 0, l = cbs.length; i < l; i++) {\n invokeWithErrorHandling(cbs[i], vm, args, vm, info);\n }\n }\n return vm\n };\n}\n\n/* */\n\nvar activeInstance = null;\nvar isUpdatingChildComponent = false;\n\nfunction setActiveInstance(vm) {\n var prevActiveInstance = activeInstance;\n activeInstance = vm;\n return function () {\n activeInstance = prevActiveInstance;\n }\n}\n\nfunction initLifecycle (vm) {\n var options = vm.$options;\n\n // locate first non-abstract parent\n var parent = options.parent;\n if (parent && !options.abstract) {\n while (parent.$options.abstract && parent.$parent) {\n parent = parent.$parent;\n }\n parent.$children.push(vm);\n }\n\n vm.$parent = parent;\n vm.$root = parent ? parent.$root : vm;\n\n vm.$children = [];\n vm.$refs = {};\n\n vm._watcher = null;\n vm._inactive = null;\n vm._directInactive = false;\n vm._isMounted = false;\n vm._isDestroyed = false;\n vm._isBeingDestroyed = false;\n}\n\nfunction lifecycleMixin (Vue) {\n Vue.prototype._update = function (vnode, hydrating) {\n var vm = this;\n var prevEl = vm.$el;\n var prevVnode = vm._vnode;\n var restoreActiveInstance = setActiveInstance(vm);\n vm._vnode = vnode;\n // Vue.prototype.__patch__ is injected in entry points\n // based on the rendering backend used.\n if (!prevVnode) {\n // initial render\n vm.$el = vm.__patch__(vm.$el, vnode, hydrating, false /* removeOnly */);\n } else {\n // updates\n vm.$el = vm.__patch__(prevVnode, vnode);\n }\n restoreActiveInstance();\n // update __vue__ reference\n if (prevEl) {\n prevEl.__vue__ = null;\n }\n if (vm.$el) {\n vm.$el.__vue__ = vm;\n }\n // if parent is an HOC, update its $el as well\n if (vm.$vnode && vm.$parent && vm.$vnode === vm.$parent._vnode) {\n vm.$parent.$el = vm.$el;\n }\n // updated hook is called by the scheduler to ensure that children are\n // updated in a parent's updated hook.\n };\n\n Vue.prototype.$forceUpdate = function () {\n var vm = this;\n if (vm._watcher) {\n vm._watcher.update();\n }\n };\n\n Vue.prototype.$destroy = function () {\n var vm = this;\n if (vm._isBeingDestroyed) {\n return\n }\n callHook(vm, 'beforeDestroy');\n vm._isBeingDestroyed = true;\n // remove self from parent\n var parent = vm.$parent;\n if (parent && !parent._isBeingDestroyed && !vm.$options.abstract) {\n remove(parent.$children, vm);\n }\n // teardown watchers\n if (vm._watcher) {\n vm._watcher.teardown();\n }\n var i = vm._watchers.length;\n while (i--) {\n vm._watchers[i].teardown();\n }\n // remove reference from data ob\n // frozen object may not have observer.\n if (vm._data.__ob__) {\n vm._data.__ob__.vmCount--;\n }\n // call the last hook...\n vm._isDestroyed = true;\n // invoke destroy hooks on current rendered tree\n vm.__patch__(vm._vnode, null);\n // fire destroyed hook\n callHook(vm, 'destroyed');\n // turn off all instance listeners.\n vm.$off();\n // remove __vue__ reference\n if (vm.$el) {\n vm.$el.__vue__ = null;\n }\n // release circular reference (#6759)\n if (vm.$vnode) {\n vm.$vnode.parent = null;\n }\n };\n}\n\nfunction mountComponent (\n vm,\n el,\n hydrating\n) {\n vm.$el = el;\n if (!vm.$options.render) {\n vm.$options.render = createEmptyVNode;\n if (process.env.NODE_ENV !== 'production') {\n /* istanbul ignore if */\n if ((vm.$options.template && vm.$options.template.charAt(0) !== '#') ||\n vm.$options.el || el) {\n warn(\n 'You are using the runtime-only build of Vue where the template ' +\n 'compiler is not available. Either pre-compile the templates into ' +\n 'render functions, or use the compiler-included build.',\n vm\n );\n } else {\n warn(\n 'Failed to mount component: template or render function not defined.',\n vm\n );\n }\n }\n }\n callHook(vm, 'beforeMount');\n\n var updateComponent;\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n updateComponent = function () {\n var name = vm._name;\n var id = vm._uid;\n var startTag = \"vue-perf-start:\" + id;\n var endTag = \"vue-perf-end:\" + id;\n\n mark(startTag);\n var vnode = vm._render();\n mark(endTag);\n measure((\"vue \" + name + \" render\"), startTag, endTag);\n\n mark(startTag);\n vm._update(vnode, hydrating);\n mark(endTag);\n measure((\"vue \" + name + \" patch\"), startTag, endTag);\n };\n } else {\n updateComponent = function () {\n vm._update(vm._render(), hydrating);\n };\n }\n\n // we set this to vm._watcher inside the watcher's constructor\n // since the watcher's initial patch may call $forceUpdate (e.g. inside child\n // component's mounted hook), which relies on vm._watcher being already defined\n new Watcher(vm, updateComponent, noop, {\n before: function before () {\n if (vm._isMounted && !vm._isDestroyed) {\n callHook(vm, 'beforeUpdate');\n }\n }\n }, true /* isRenderWatcher */);\n hydrating = false;\n\n // manually mounted instance, call mounted on self\n // mounted is called for render-created child components in its inserted hook\n if (vm.$vnode == null) {\n vm._isMounted = true;\n callHook(vm, 'mounted');\n }\n return vm\n}\n\nfunction updateChildComponent (\n vm,\n propsData,\n listeners,\n parentVnode,\n renderChildren\n) {\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = true;\n }\n\n // determine whether component has slot children\n // we need to do this before overwriting $options._renderChildren.\n\n // check if there are dynamic scopedSlots (hand-written or compiled but with\n // dynamic slot names). Static scoped slots compiled from template has the\n // \"$stable\" marker.\n var newScopedSlots = parentVnode.data.scopedSlots;\n var oldScopedSlots = vm.$scopedSlots;\n var hasDynamicScopedSlot = !!(\n (newScopedSlots && !newScopedSlots.$stable) ||\n (oldScopedSlots !== emptyObject && !oldScopedSlots.$stable) ||\n (newScopedSlots && vm.$scopedSlots.$key !== newScopedSlots.$key)\n );\n\n // Any static slot children from the parent may have changed during parent's\n // update. Dynamic scoped slots may also have changed. In such cases, a forced\n // update is necessary to ensure correctness.\n var needsForceUpdate = !!(\n renderChildren || // has new static slots\n vm.$options._renderChildren || // has old static slots\n hasDynamicScopedSlot\n );\n\n vm.$options._parentVnode = parentVnode;\n vm.$vnode = parentVnode; // update vm's placeholder node without re-render\n\n if (vm._vnode) { // update child tree's parent\n vm._vnode.parent = parentVnode;\n }\n vm.$options._renderChildren = renderChildren;\n\n // update $attrs and $listeners hash\n // these are also reactive so they may trigger child update if the child\n // used them during render\n vm.$attrs = parentVnode.data.attrs || emptyObject;\n vm.$listeners = listeners || emptyObject;\n\n // update props\n if (propsData && vm.$options.props) {\n toggleObserving(false);\n var props = vm._props;\n var propKeys = vm.$options._propKeys || [];\n for (var i = 0; i < propKeys.length; i++) {\n var key = propKeys[i];\n var propOptions = vm.$options.props; // wtf flow?\n props[key] = validateProp(key, propOptions, propsData, vm);\n }\n toggleObserving(true);\n // keep a copy of raw propsData\n vm.$options.propsData = propsData;\n }\n\n // update listeners\n listeners = listeners || emptyObject;\n var oldListeners = vm.$options._parentListeners;\n vm.$options._parentListeners = listeners;\n updateComponentListeners(vm, listeners, oldListeners);\n\n // resolve slots + force update if has children\n if (needsForceUpdate) {\n vm.$slots = resolveSlots(renderChildren, parentVnode.context);\n vm.$forceUpdate();\n }\n\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = false;\n }\n}\n\nfunction isInInactiveTree (vm) {\n while (vm && (vm = vm.$parent)) {\n if (vm._inactive) { return true }\n }\n return false\n}\n\nfunction activateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = false;\n if (isInInactiveTree(vm)) {\n return\n }\n } else if (vm._directInactive) {\n return\n }\n if (vm._inactive || vm._inactive === null) {\n vm._inactive = false;\n for (var i = 0; i < vm.$children.length; i++) {\n activateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'activated');\n }\n}\n\nfunction deactivateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = true;\n if (isInInactiveTree(vm)) {\n return\n }\n }\n if (!vm._inactive) {\n vm._inactive = true;\n for (var i = 0; i < vm.$children.length; i++) {\n deactivateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'deactivated');\n }\n}\n\nfunction callHook (vm, hook) {\n // #7573 disable dep collection when invoking lifecycle hooks\n pushTarget();\n var handlers = vm.$options[hook];\n var info = hook + \" hook\";\n if (handlers) {\n for (var i = 0, j = handlers.length; i < j; i++) {\n invokeWithErrorHandling(handlers[i], vm, null, vm, info);\n }\n }\n if (vm._hasHookEvent) {\n vm.$emit('hook:' + hook);\n }\n popTarget();\n}\n\n/* */\n\nvar MAX_UPDATE_COUNT = 100;\n\nvar queue = [];\nvar activatedChildren = [];\nvar has = {};\nvar circular = {};\nvar waiting = false;\nvar flushing = false;\nvar index = 0;\n\n/**\n * Reset the scheduler's state.\n */\nfunction resetSchedulerState () {\n index = queue.length = activatedChildren.length = 0;\n has = {};\n if (process.env.NODE_ENV !== 'production') {\n circular = {};\n }\n waiting = flushing = false;\n}\n\n// Async edge case #6566 requires saving the timestamp when event listeners are\n// attached. However, calling performance.now() has a perf overhead especially\n// if the page has thousands of event listeners. Instead, we take a timestamp\n// every time the scheduler flushes and use that for all event listeners\n// attached during that flush.\nvar currentFlushTimestamp = 0;\n\n// Async edge case fix requires storing an event listener's attach timestamp.\nvar getNow = Date.now;\n\n// Determine what event timestamp the browser is using. Annoyingly, the\n// timestamp can either be hi-res (relative to page load) or low-res\n// (relative to UNIX epoch), so in order to compare time we have to use the\n// same timestamp type when saving the flush timestamp.\n// All IE versions use low-res event timestamps, and have problematic clock\n// implementations (#9632)\nif (inBrowser && !isIE) {\n var performance = window.performance;\n if (\n performance &&\n typeof performance.now === 'function' &&\n getNow() > document.createEvent('Event').timeStamp\n ) {\n // if the event timestamp, although evaluated AFTER the Date.now(), is\n // smaller than it, it means the event is using a hi-res timestamp,\n // and we need to use the hi-res version for event listener timestamps as\n // well.\n getNow = function () { return performance.now(); };\n }\n}\n\n/**\n * Flush both queues and run the watchers.\n */\nfunction flushSchedulerQueue () {\n currentFlushTimestamp = getNow();\n flushing = true;\n var watcher, id;\n\n // Sort queue before flush.\n // This ensures that:\n // 1. Components are updated from parent to child. (because parent is always\n // created before the child)\n // 2. A component's user watchers are run before its render watcher (because\n // user watchers are created before the render watcher)\n // 3. If a component is destroyed during a parent component's watcher run,\n // its watchers can be skipped.\n queue.sort(function (a, b) { return a.id - b.id; });\n\n // do not cache length because more watchers might be pushed\n // as we run existing watchers\n for (index = 0; index < queue.length; index++) {\n watcher = queue[index];\n if (watcher.before) {\n watcher.before();\n }\n id = watcher.id;\n has[id] = null;\n watcher.run();\n // in dev build, check and stop circular updates.\n if (process.env.NODE_ENV !== 'production' && has[id] != null) {\n circular[id] = (circular[id] || 0) + 1;\n if (circular[id] > MAX_UPDATE_COUNT) {\n warn(\n 'You may have an infinite update loop ' + (\n watcher.user\n ? (\"in watcher with expression \\\"\" + (watcher.expression) + \"\\\"\")\n : \"in a component render function.\"\n ),\n watcher.vm\n );\n break\n }\n }\n }\n\n // keep copies of post queues before resetting state\n var activatedQueue = activatedChildren.slice();\n var updatedQueue = queue.slice();\n\n resetSchedulerState();\n\n // call component updated and activated hooks\n callActivatedHooks(activatedQueue);\n callUpdatedHooks(updatedQueue);\n\n // devtool hook\n /* istanbul ignore if */\n if (devtools && config.devtools) {\n devtools.emit('flush');\n }\n}\n\nfunction callUpdatedHooks (queue) {\n var i = queue.length;\n while (i--) {\n var watcher = queue[i];\n var vm = watcher.vm;\n if (vm._watcher === watcher && vm._isMounted && !vm._isDestroyed) {\n callHook(vm, 'updated');\n }\n }\n}\n\n/**\n * Queue a kept-alive component that was activated during patch.\n * The queue will be processed after the entire tree has been patched.\n */\nfunction queueActivatedComponent (vm) {\n // setting _inactive to false here so that a render function can\n // rely on checking whether it's in an inactive tree (e.g. router-view)\n vm._inactive = false;\n activatedChildren.push(vm);\n}\n\nfunction callActivatedHooks (queue) {\n for (var i = 0; i < queue.length; i++) {\n queue[i]._inactive = true;\n activateChildComponent(queue[i], true /* true */);\n }\n}\n\n/**\n * Push a watcher into the watcher queue.\n * Jobs with duplicate IDs will be skipped unless it's\n * pushed when the queue is being flushed.\n */\nfunction queueWatcher (watcher) {\n var id = watcher.id;\n if (has[id] == null) {\n has[id] = true;\n if (!flushing) {\n queue.push(watcher);\n } else {\n // if already flushing, splice the watcher based on its id\n // if already past its id, it will be run next immediately.\n var i = queue.length - 1;\n while (i > index && queue[i].id > watcher.id) {\n i--;\n }\n queue.splice(i + 1, 0, watcher);\n }\n // queue the flush\n if (!waiting) {\n waiting = true;\n\n if (process.env.NODE_ENV !== 'production' && !config.async) {\n flushSchedulerQueue();\n return\n }\n nextTick(flushSchedulerQueue);\n }\n }\n}\n\n/* */\n\n\n\nvar uid$2 = 0;\n\n/**\n * A watcher parses an expression, collects dependencies,\n * and fires callback when the expression value changes.\n * This is used for both the $watch() api and directives.\n */\nvar Watcher = function Watcher (\n vm,\n expOrFn,\n cb,\n options,\n isRenderWatcher\n) {\n this.vm = vm;\n if (isRenderWatcher) {\n vm._watcher = this;\n }\n vm._watchers.push(this);\n // options\n if (options) {\n this.deep = !!options.deep;\n this.user = !!options.user;\n this.lazy = !!options.lazy;\n this.sync = !!options.sync;\n this.before = options.before;\n } else {\n this.deep = this.user = this.lazy = this.sync = false;\n }\n this.cb = cb;\n this.id = ++uid$2; // uid for batching\n this.active = true;\n this.dirty = this.lazy; // for lazy watchers\n this.deps = [];\n this.newDeps = [];\n this.depIds = new _Set();\n this.newDepIds = new _Set();\n this.expression = process.env.NODE_ENV !== 'production'\n ? expOrFn.toString()\n : '';\n // parse expression for getter\n if (typeof expOrFn === 'function') {\n this.getter = expOrFn;\n } else {\n this.getter = parsePath(expOrFn);\n if (!this.getter) {\n this.getter = noop;\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed watching path: \\\"\" + expOrFn + \"\\\" \" +\n 'Watcher only accepts simple dot-delimited paths. ' +\n 'For full control, use a function instead.',\n vm\n );\n }\n }\n this.value = this.lazy\n ? undefined\n : this.get();\n};\n\n/**\n * Evaluate the getter, and re-collect dependencies.\n */\nWatcher.prototype.get = function get () {\n pushTarget(this);\n var value;\n var vm = this.vm;\n try {\n value = this.getter.call(vm, vm);\n } catch (e) {\n if (this.user) {\n handleError(e, vm, (\"getter for watcher \\\"\" + (this.expression) + \"\\\"\"));\n } else {\n throw e\n }\n } finally {\n // \"touch\" every property so they are all tracked as\n // dependencies for deep watching\n if (this.deep) {\n traverse(value);\n }\n popTarget();\n this.cleanupDeps();\n }\n return value\n};\n\n/**\n * Add a dependency to this directive.\n */\nWatcher.prototype.addDep = function addDep (dep) {\n var id = dep.id;\n if (!this.newDepIds.has(id)) {\n this.newDepIds.add(id);\n this.newDeps.push(dep);\n if (!this.depIds.has(id)) {\n dep.addSub(this);\n }\n }\n};\n\n/**\n * Clean up for dependency collection.\n */\nWatcher.prototype.cleanupDeps = function cleanupDeps () {\n var i = this.deps.length;\n while (i--) {\n var dep = this.deps[i];\n if (!this.newDepIds.has(dep.id)) {\n dep.removeSub(this);\n }\n }\n var tmp = this.depIds;\n this.depIds = this.newDepIds;\n this.newDepIds = tmp;\n this.newDepIds.clear();\n tmp = this.deps;\n this.deps = this.newDeps;\n this.newDeps = tmp;\n this.newDeps.length = 0;\n};\n\n/**\n * Subscriber interface.\n * Will be called when a dependency changes.\n */\nWatcher.prototype.update = function update () {\n /* istanbul ignore else */\n if (this.lazy) {\n this.dirty = true;\n } else if (this.sync) {\n this.run();\n } else {\n queueWatcher(this);\n }\n};\n\n/**\n * Scheduler job interface.\n * Will be called by the scheduler.\n */\nWatcher.prototype.run = function run () {\n if (this.active) {\n var value = this.get();\n if (\n value !== this.value ||\n // Deep watchers and watchers on Object/Arrays should fire even\n // when the value is the same, because the value may\n // have mutated.\n isObject(value) ||\n this.deep\n ) {\n // set new value\n var oldValue = this.value;\n this.value = value;\n if (this.user) {\n try {\n this.cb.call(this.vm, value, oldValue);\n } catch (e) {\n handleError(e, this.vm, (\"callback for watcher \\\"\" + (this.expression) + \"\\\"\"));\n }\n } else {\n this.cb.call(this.vm, value, oldValue);\n }\n }\n }\n};\n\n/**\n * Evaluate the value of the watcher.\n * This only gets called for lazy watchers.\n */\nWatcher.prototype.evaluate = function evaluate () {\n this.value = this.get();\n this.dirty = false;\n};\n\n/**\n * Depend on all deps collected by this watcher.\n */\nWatcher.prototype.depend = function depend () {\n var i = this.deps.length;\n while (i--) {\n this.deps[i].depend();\n }\n};\n\n/**\n * Remove self from all dependencies' subscriber list.\n */\nWatcher.prototype.teardown = function teardown () {\n if (this.active) {\n // remove self from vm's watcher list\n // this is a somewhat expensive operation so we skip it\n // if the vm is being destroyed.\n if (!this.vm._isBeingDestroyed) {\n remove(this.vm._watchers, this);\n }\n var i = this.deps.length;\n while (i--) {\n this.deps[i].removeSub(this);\n }\n this.active = false;\n }\n};\n\n/* */\n\nvar sharedPropertyDefinition = {\n enumerable: true,\n configurable: true,\n get: noop,\n set: noop\n};\n\nfunction proxy (target, sourceKey, key) {\n sharedPropertyDefinition.get = function proxyGetter () {\n return this[sourceKey][key]\n };\n sharedPropertyDefinition.set = function proxySetter (val) {\n this[sourceKey][key] = val;\n };\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction initState (vm) {\n vm._watchers = [];\n var opts = vm.$options;\n if (opts.props) { initProps(vm, opts.props); }\n if (opts.methods) { initMethods(vm, opts.methods); }\n if (opts.data) {\n initData(vm);\n } else {\n observe(vm._data = {}, true /* asRootData */);\n }\n if (opts.computed) { initComputed(vm, opts.computed); }\n if (opts.watch && opts.watch !== nativeWatch) {\n initWatch(vm, opts.watch);\n }\n}\n\nfunction initProps (vm, propsOptions) {\n var propsData = vm.$options.propsData || {};\n var props = vm._props = {};\n // cache prop keys so that future props updates can iterate using Array\n // instead of dynamic object key enumeration.\n var keys = vm.$options._propKeys = [];\n var isRoot = !vm.$parent;\n // root instance props should be converted\n if (!isRoot) {\n toggleObserving(false);\n }\n var loop = function ( key ) {\n keys.push(key);\n var value = validateProp(key, propsOptions, propsData, vm);\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n var hyphenatedKey = hyphenate(key);\n if (isReservedAttribute(hyphenatedKey) ||\n config.isReservedAttr(hyphenatedKey)) {\n warn(\n (\"\\\"\" + hyphenatedKey + \"\\\" is a reserved attribute and cannot be used as component prop.\"),\n vm\n );\n }\n defineReactive$$1(props, key, value, function () {\n if (!isRoot && !isUpdatingChildComponent) {\n warn(\n \"Avoid mutating a prop directly since the value will be \" +\n \"overwritten whenever the parent component re-renders. \" +\n \"Instead, use a data or computed property based on the prop's \" +\n \"value. Prop being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n }\n });\n } else {\n defineReactive$$1(props, key, value);\n }\n // static props are already proxied on the component's prototype\n // during Vue.extend(). We only need to proxy props defined at\n // instantiation here.\n if (!(key in vm)) {\n proxy(vm, \"_props\", key);\n }\n };\n\n for (var key in propsOptions) loop( key );\n toggleObserving(true);\n}\n\nfunction initData (vm) {\n var data = vm.$options.data;\n data = vm._data = typeof data === 'function'\n ? getData(data, vm)\n : data || {};\n if (!isPlainObject(data)) {\n data = {};\n process.env.NODE_ENV !== 'production' && warn(\n 'data functions should return an object:\\n' +\n 'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function',\n vm\n );\n }\n // proxy data on instance\n var keys = Object.keys(data);\n var props = vm.$options.props;\n var methods = vm.$options.methods;\n var i = keys.length;\n while (i--) {\n var key = keys[i];\n if (process.env.NODE_ENV !== 'production') {\n if (methods && hasOwn(methods, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a data property.\"),\n vm\n );\n }\n }\n if (props && hasOwn(props, key)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"The data property \\\"\" + key + \"\\\" is already declared as a prop. \" +\n \"Use prop default value instead.\",\n vm\n );\n } else if (!isReserved(key)) {\n proxy(vm, \"_data\", key);\n }\n }\n // observe data\n observe(data, true /* asRootData */);\n}\n\nfunction getData (data, vm) {\n // #7573 disable dep collection when invoking data getters\n pushTarget();\n try {\n return data.call(vm, vm)\n } catch (e) {\n handleError(e, vm, \"data()\");\n return {}\n } finally {\n popTarget();\n }\n}\n\nvar computedWatcherOptions = { lazy: true };\n\nfunction initComputed (vm, computed) {\n // $flow-disable-line\n var watchers = vm._computedWatchers = Object.create(null);\n // computed properties are just getters during SSR\n var isSSR = isServerRendering();\n\n for (var key in computed) {\n var userDef = computed[key];\n var getter = typeof userDef === 'function' ? userDef : userDef.get;\n if (process.env.NODE_ENV !== 'production' && getter == null) {\n warn(\n (\"Getter is missing for computed property \\\"\" + key + \"\\\".\"),\n vm\n );\n }\n\n if (!isSSR) {\n // create internal watcher for the computed property.\n watchers[key] = new Watcher(\n vm,\n getter || noop,\n noop,\n computedWatcherOptions\n );\n }\n\n // component-defined computed properties are already defined on the\n // component prototype. We only need to define computed properties defined\n // at instantiation here.\n if (!(key in vm)) {\n defineComputed(vm, key, userDef);\n } else if (process.env.NODE_ENV !== 'production') {\n if (key in vm.$data) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined in data.\"), vm);\n } else if (vm.$options.props && key in vm.$options.props) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined as a prop.\"), vm);\n }\n }\n }\n}\n\nfunction defineComputed (\n target,\n key,\n userDef\n) {\n var shouldCache = !isServerRendering();\n if (typeof userDef === 'function') {\n sharedPropertyDefinition.get = shouldCache\n ? createComputedGetter(key)\n : createGetterInvoker(userDef);\n sharedPropertyDefinition.set = noop;\n } else {\n sharedPropertyDefinition.get = userDef.get\n ? shouldCache && userDef.cache !== false\n ? createComputedGetter(key)\n : createGetterInvoker(userDef.get)\n : noop;\n sharedPropertyDefinition.set = userDef.set || noop;\n }\n if (process.env.NODE_ENV !== 'production' &&\n sharedPropertyDefinition.set === noop) {\n sharedPropertyDefinition.set = function () {\n warn(\n (\"Computed property \\\"\" + key + \"\\\" was assigned to but it has no setter.\"),\n this\n );\n };\n }\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction createComputedGetter (key) {\n return function computedGetter () {\n var watcher = this._computedWatchers && this._computedWatchers[key];\n if (watcher) {\n if (watcher.dirty) {\n watcher.evaluate();\n }\n if (Dep.target) {\n watcher.depend();\n }\n return watcher.value\n }\n }\n}\n\nfunction createGetterInvoker(fn) {\n return function computedGetter () {\n return fn.call(this, this)\n }\n}\n\nfunction initMethods (vm, methods) {\n var props = vm.$options.props;\n for (var key in methods) {\n if (process.env.NODE_ENV !== 'production') {\n if (typeof methods[key] !== 'function') {\n warn(\n \"Method \\\"\" + key + \"\\\" has type \\\"\" + (typeof methods[key]) + \"\\\" in the component definition. \" +\n \"Did you reference the function correctly?\",\n vm\n );\n }\n if (props && hasOwn(props, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a prop.\"),\n vm\n );\n }\n if ((key in vm) && isReserved(key)) {\n warn(\n \"Method \\\"\" + key + \"\\\" conflicts with an existing Vue instance method. \" +\n \"Avoid defining component methods that start with _ or $.\"\n );\n }\n }\n vm[key] = typeof methods[key] !== 'function' ? noop : bind(methods[key], vm);\n }\n}\n\nfunction initWatch (vm, watch) {\n for (var key in watch) {\n var handler = watch[key];\n if (Array.isArray(handler)) {\n for (var i = 0; i < handler.length; i++) {\n createWatcher(vm, key, handler[i]);\n }\n } else {\n createWatcher(vm, key, handler);\n }\n }\n}\n\nfunction createWatcher (\n vm,\n expOrFn,\n handler,\n options\n) {\n if (isPlainObject(handler)) {\n options = handler;\n handler = handler.handler;\n }\n if (typeof handler === 'string') {\n handler = vm[handler];\n }\n return vm.$watch(expOrFn, handler, options)\n}\n\nfunction stateMixin (Vue) {\n // flow somehow has problems with directly declared definition object\n // when using Object.defineProperty, so we have to procedurally build up\n // the object here.\n var dataDef = {};\n dataDef.get = function () { return this._data };\n var propsDef = {};\n propsDef.get = function () { return this._props };\n if (process.env.NODE_ENV !== 'production') {\n dataDef.set = function () {\n warn(\n 'Avoid replacing instance root $data. ' +\n 'Use nested data properties instead.',\n this\n );\n };\n propsDef.set = function () {\n warn(\"$props is readonly.\", this);\n };\n }\n Object.defineProperty(Vue.prototype, '$data', dataDef);\n Object.defineProperty(Vue.prototype, '$props', propsDef);\n\n Vue.prototype.$set = set;\n Vue.prototype.$delete = del;\n\n Vue.prototype.$watch = function (\n expOrFn,\n cb,\n options\n ) {\n var vm = this;\n if (isPlainObject(cb)) {\n return createWatcher(vm, expOrFn, cb, options)\n }\n options = options || {};\n options.user = true;\n var watcher = new Watcher(vm, expOrFn, cb, options);\n if (options.immediate) {\n try {\n cb.call(vm, watcher.value);\n } catch (error) {\n handleError(error, vm, (\"callback for immediate watcher \\\"\" + (watcher.expression) + \"\\\"\"));\n }\n }\n return function unwatchFn () {\n watcher.teardown();\n }\n };\n}\n\n/* */\n\nvar uid$3 = 0;\n\nfunction initMixin (Vue) {\n Vue.prototype._init = function (options) {\n var vm = this;\n // a uid\n vm._uid = uid$3++;\n\n var startTag, endTag;\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n startTag = \"vue-perf-start:\" + (vm._uid);\n endTag = \"vue-perf-end:\" + (vm._uid);\n mark(startTag);\n }\n\n // a flag to avoid this being observed\n vm._isVue = true;\n // merge options\n if (options && options._isComponent) {\n // optimize internal component instantiation\n // since dynamic options merging is pretty slow, and none of the\n // internal component options needs special treatment.\n initInternalComponent(vm, options);\n } else {\n vm.$options = mergeOptions(\n resolveConstructorOptions(vm.constructor),\n options || {},\n vm\n );\n }\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n initProxy(vm);\n } else {\n vm._renderProxy = vm;\n }\n // expose real self\n vm._self = vm;\n initLifecycle(vm);\n initEvents(vm);\n initRender(vm);\n callHook(vm, 'beforeCreate');\n initInjections(vm); // resolve injections before data/props\n initState(vm);\n initProvide(vm); // resolve provide after data/props\n callHook(vm, 'created');\n\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n vm._name = formatComponentName(vm, false);\n mark(endTag);\n measure((\"vue \" + (vm._name) + \" init\"), startTag, endTag);\n }\n\n if (vm.$options.el) {\n vm.$mount(vm.$options.el);\n }\n };\n}\n\nfunction initInternalComponent (vm, options) {\n var opts = vm.$options = Object.create(vm.constructor.options);\n // doing this because it's faster than dynamic enumeration.\n var parentVnode = options._parentVnode;\n opts.parent = options.parent;\n opts._parentVnode = parentVnode;\n\n var vnodeComponentOptions = parentVnode.componentOptions;\n opts.propsData = vnodeComponentOptions.propsData;\n opts._parentListeners = vnodeComponentOptions.listeners;\n opts._renderChildren = vnodeComponentOptions.children;\n opts._componentTag = vnodeComponentOptions.tag;\n\n if (options.render) {\n opts.render = options.render;\n opts.staticRenderFns = options.staticRenderFns;\n }\n}\n\nfunction resolveConstructorOptions (Ctor) {\n var options = Ctor.options;\n if (Ctor.super) {\n var superOptions = resolveConstructorOptions(Ctor.super);\n var cachedSuperOptions = Ctor.superOptions;\n if (superOptions !== cachedSuperOptions) {\n // super option changed,\n // need to resolve new options.\n Ctor.superOptions = superOptions;\n // check if there are any late-modified/attached options (#4976)\n var modifiedOptions = resolveModifiedOptions(Ctor);\n // update base extend options\n if (modifiedOptions) {\n extend(Ctor.extendOptions, modifiedOptions);\n }\n options = Ctor.options = mergeOptions(superOptions, Ctor.extendOptions);\n if (options.name) {\n options.components[options.name] = Ctor;\n }\n }\n }\n return options\n}\n\nfunction resolveModifiedOptions (Ctor) {\n var modified;\n var latest = Ctor.options;\n var sealed = Ctor.sealedOptions;\n for (var key in latest) {\n if (latest[key] !== sealed[key]) {\n if (!modified) { modified = {}; }\n modified[key] = latest[key];\n }\n }\n return modified\n}\n\nfunction Vue (options) {\n if (process.env.NODE_ENV !== 'production' &&\n !(this instanceof Vue)\n ) {\n warn('Vue is a constructor and should be called with the `new` keyword');\n }\n this._init(options);\n}\n\ninitMixin(Vue);\nstateMixin(Vue);\neventsMixin(Vue);\nlifecycleMixin(Vue);\nrenderMixin(Vue);\n\n/* */\n\nfunction initUse (Vue) {\n Vue.use = function (plugin) {\n var installedPlugins = (this._installedPlugins || (this._installedPlugins = []));\n if (installedPlugins.indexOf(plugin) > -1) {\n return this\n }\n\n // additional parameters\n var args = toArray(arguments, 1);\n args.unshift(this);\n if (typeof plugin.install === 'function') {\n plugin.install.apply(plugin, args);\n } else if (typeof plugin === 'function') {\n plugin.apply(null, args);\n }\n installedPlugins.push(plugin);\n return this\n };\n}\n\n/* */\n\nfunction initMixin$1 (Vue) {\n Vue.mixin = function (mixin) {\n this.options = mergeOptions(this.options, mixin);\n return this\n };\n}\n\n/* */\n\nfunction initExtend (Vue) {\n /**\n * Each instance constructor, including Vue, has a unique\n * cid. This enables us to create wrapped \"child\n * constructors\" for prototypal inheritance and cache them.\n */\n Vue.cid = 0;\n var cid = 1;\n\n /**\n * Class inheritance\n */\n Vue.extend = function (extendOptions) {\n extendOptions = extendOptions || {};\n var Super = this;\n var SuperId = Super.cid;\n var cachedCtors = extendOptions._Ctor || (extendOptions._Ctor = {});\n if (cachedCtors[SuperId]) {\n return cachedCtors[SuperId]\n }\n\n var name = extendOptions.name || Super.options.name;\n if (process.env.NODE_ENV !== 'production' && name) {\n validateComponentName(name);\n }\n\n var Sub = function VueComponent (options) {\n this._init(options);\n };\n Sub.prototype = Object.create(Super.prototype);\n Sub.prototype.constructor = Sub;\n Sub.cid = cid++;\n Sub.options = mergeOptions(\n Super.options,\n extendOptions\n );\n Sub['super'] = Super;\n\n // For props and computed properties, we define the proxy getters on\n // the Vue instances at extension time, on the extended prototype. This\n // avoids Object.defineProperty calls for each instance created.\n if (Sub.options.props) {\n initProps$1(Sub);\n }\n if (Sub.options.computed) {\n initComputed$1(Sub);\n }\n\n // allow further extension/mixin/plugin usage\n Sub.extend = Super.extend;\n Sub.mixin = Super.mixin;\n Sub.use = Super.use;\n\n // create asset registers, so extended classes\n // can have their private assets too.\n ASSET_TYPES.forEach(function (type) {\n Sub[type] = Super[type];\n });\n // enable recursive self-lookup\n if (name) {\n Sub.options.components[name] = Sub;\n }\n\n // keep a reference to the super options at extension time.\n // later at instantiation we can check if Super's options have\n // been updated.\n Sub.superOptions = Super.options;\n Sub.extendOptions = extendOptions;\n Sub.sealedOptions = extend({}, Sub.options);\n\n // cache constructor\n cachedCtors[SuperId] = Sub;\n return Sub\n };\n}\n\nfunction initProps$1 (Comp) {\n var props = Comp.options.props;\n for (var key in props) {\n proxy(Comp.prototype, \"_props\", key);\n }\n}\n\nfunction initComputed$1 (Comp) {\n var computed = Comp.options.computed;\n for (var key in computed) {\n defineComputed(Comp.prototype, key, computed[key]);\n }\n}\n\n/* */\n\nfunction initAssetRegisters (Vue) {\n /**\n * Create asset registration methods.\n */\n ASSET_TYPES.forEach(function (type) {\n Vue[type] = function (\n id,\n definition\n ) {\n if (!definition) {\n return this.options[type + 's'][id]\n } else {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && type === 'component') {\n validateComponentName(id);\n }\n if (type === 'component' && isPlainObject(definition)) {\n definition.name = definition.name || id;\n definition = this.options._base.extend(definition);\n }\n if (type === 'directive' && typeof definition === 'function') {\n definition = { bind: definition, update: definition };\n }\n this.options[type + 's'][id] = definition;\n return definition\n }\n };\n });\n}\n\n/* */\n\n\n\nfunction getComponentName (opts) {\n return opts && (opts.Ctor.options.name || opts.tag)\n}\n\nfunction matches (pattern, name) {\n if (Array.isArray(pattern)) {\n return pattern.indexOf(name) > -1\n } else if (typeof pattern === 'string') {\n return pattern.split(',').indexOf(name) > -1\n } else if (isRegExp(pattern)) {\n return pattern.test(name)\n }\n /* istanbul ignore next */\n return false\n}\n\nfunction pruneCache (keepAliveInstance, filter) {\n var cache = keepAliveInstance.cache;\n var keys = keepAliveInstance.keys;\n var _vnode = keepAliveInstance._vnode;\n for (var key in cache) {\n var cachedNode = cache[key];\n if (cachedNode) {\n var name = getComponentName(cachedNode.componentOptions);\n if (name && !filter(name)) {\n pruneCacheEntry(cache, key, keys, _vnode);\n }\n }\n }\n}\n\nfunction pruneCacheEntry (\n cache,\n key,\n keys,\n current\n) {\n var cached$$1 = cache[key];\n if (cached$$1 && (!current || cached$$1.tag !== current.tag)) {\n cached$$1.componentInstance.$destroy();\n }\n cache[key] = null;\n remove(keys, key);\n}\n\nvar patternTypes = [String, RegExp, Array];\n\nvar KeepAlive = {\n name: 'keep-alive',\n abstract: true,\n\n props: {\n include: patternTypes,\n exclude: patternTypes,\n max: [String, Number]\n },\n\n created: function created () {\n this.cache = Object.create(null);\n this.keys = [];\n },\n\n destroyed: function destroyed () {\n for (var key in this.cache) {\n pruneCacheEntry(this.cache, key, this.keys);\n }\n },\n\n mounted: function mounted () {\n var this$1 = this;\n\n this.$watch('include', function (val) {\n pruneCache(this$1, function (name) { return matches(val, name); });\n });\n this.$watch('exclude', function (val) {\n pruneCache(this$1, function (name) { return !matches(val, name); });\n });\n },\n\n render: function render () {\n var slot = this.$slots.default;\n var vnode = getFirstComponentChild(slot);\n var componentOptions = vnode && vnode.componentOptions;\n if (componentOptions) {\n // check pattern\n var name = getComponentName(componentOptions);\n var ref = this;\n var include = ref.include;\n var exclude = ref.exclude;\n if (\n // not included\n (include && (!name || !matches(include, name))) ||\n // excluded\n (exclude && name && matches(exclude, name))\n ) {\n return vnode\n }\n\n var ref$1 = this;\n var cache = ref$1.cache;\n var keys = ref$1.keys;\n var key = vnode.key == null\n // same constructor may get registered as different local components\n // so cid alone is not enough (#3269)\n ? componentOptions.Ctor.cid + (componentOptions.tag ? (\"::\" + (componentOptions.tag)) : '')\n : vnode.key;\n if (cache[key]) {\n vnode.componentInstance = cache[key].componentInstance;\n // make current key freshest\n remove(keys, key);\n keys.push(key);\n } else {\n cache[key] = vnode;\n keys.push(key);\n // prune oldest entry\n if (this.max && keys.length > parseInt(this.max)) {\n pruneCacheEntry(cache, keys[0], keys, this._vnode);\n }\n }\n\n vnode.data.keepAlive = true;\n }\n return vnode || (slot && slot[0])\n }\n};\n\nvar builtInComponents = {\n KeepAlive: KeepAlive\n};\n\n/* */\n\nfunction initGlobalAPI (Vue) {\n // config\n var configDef = {};\n configDef.get = function () { return config; };\n if (process.env.NODE_ENV !== 'production') {\n configDef.set = function () {\n warn(\n 'Do not replace the Vue.config object, set individual fields instead.'\n );\n };\n }\n Object.defineProperty(Vue, 'config', configDef);\n\n // exposed util methods.\n // NOTE: these are not considered part of the public API - avoid relying on\n // them unless you are aware of the risk.\n Vue.util = {\n warn: warn,\n extend: extend,\n mergeOptions: mergeOptions,\n defineReactive: defineReactive$$1\n };\n\n Vue.set = set;\n Vue.delete = del;\n Vue.nextTick = nextTick;\n\n // 2.6 explicit observable API\n Vue.observable = function (obj) {\n observe(obj);\n return obj\n };\n\n Vue.options = Object.create(null);\n ASSET_TYPES.forEach(function (type) {\n Vue.options[type + 's'] = Object.create(null);\n });\n\n // this is used to identify the \"base\" constructor to extend all plain-object\n // components with in Weex's multi-instance scenarios.\n Vue.options._base = Vue;\n\n extend(Vue.options.components, builtInComponents);\n\n initUse(Vue);\n initMixin$1(Vue);\n initExtend(Vue);\n initAssetRegisters(Vue);\n}\n\ninitGlobalAPI(Vue);\n\nObject.defineProperty(Vue.prototype, '$isServer', {\n get: isServerRendering\n});\n\nObject.defineProperty(Vue.prototype, '$ssrContext', {\n get: function get () {\n /* istanbul ignore next */\n return this.$vnode && this.$vnode.ssrContext\n }\n});\n\n// expose FunctionalRenderContext for ssr runtime helper installation\nObject.defineProperty(Vue, 'FunctionalRenderContext', {\n value: FunctionalRenderContext\n});\n\nVue.version = '2.6.12';\n\n/* */\n\n// these are reserved for web because they are directly compiled away\n// during template compilation\nvar isReservedAttr = makeMap('style,class');\n\n// attributes that should be using props for binding\nvar acceptValue = makeMap('input,textarea,option,select,progress');\nvar mustUseProp = function (tag, type, attr) {\n return (\n (attr === 'value' && acceptValue(tag)) && type !== 'button' ||\n (attr === 'selected' && tag === 'option') ||\n (attr === 'checked' && tag === 'input') ||\n (attr === 'muted' && tag === 'video')\n )\n};\n\nvar isEnumeratedAttr = makeMap('contenteditable,draggable,spellcheck');\n\nvar isValidContentEditableValue = makeMap('events,caret,typing,plaintext-only');\n\nvar convertEnumeratedValue = function (key, value) {\n return isFalsyAttrValue(value) || value === 'false'\n ? 'false'\n // allow arbitrary string value for contenteditable\n : key === 'contenteditable' && isValidContentEditableValue(value)\n ? value\n : 'true'\n};\n\nvar isBooleanAttr = makeMap(\n 'allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,' +\n 'default,defaultchecked,defaultmuted,defaultselected,defer,disabled,' +\n 'enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,' +\n 'muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,' +\n 'required,reversed,scoped,seamless,selected,sortable,translate,' +\n 'truespeed,typemustmatch,visible'\n);\n\nvar xlinkNS = 'http://www.w3.org/1999/xlink';\n\nvar isXlink = function (name) {\n return name.charAt(5) === ':' && name.slice(0, 5) === 'xlink'\n};\n\nvar getXlinkProp = function (name) {\n return isXlink(name) ? name.slice(6, name.length) : ''\n};\n\nvar isFalsyAttrValue = function (val) {\n return val == null || val === false\n};\n\n/* */\n\nfunction genClassForVnode (vnode) {\n var data = vnode.data;\n var parentNode = vnode;\n var childNode = vnode;\n while (isDef(childNode.componentInstance)) {\n childNode = childNode.componentInstance._vnode;\n if (childNode && childNode.data) {\n data = mergeClassData(childNode.data, data);\n }\n }\n while (isDef(parentNode = parentNode.parent)) {\n if (parentNode && parentNode.data) {\n data = mergeClassData(data, parentNode.data);\n }\n }\n return renderClass(data.staticClass, data.class)\n}\n\nfunction mergeClassData (child, parent) {\n return {\n staticClass: concat(child.staticClass, parent.staticClass),\n class: isDef(child.class)\n ? [child.class, parent.class]\n : parent.class\n }\n}\n\nfunction renderClass (\n staticClass,\n dynamicClass\n) {\n if (isDef(staticClass) || isDef(dynamicClass)) {\n return concat(staticClass, stringifyClass(dynamicClass))\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction concat (a, b) {\n return a ? b ? (a + ' ' + b) : a : (b || '')\n}\n\nfunction stringifyClass (value) {\n if (Array.isArray(value)) {\n return stringifyArray(value)\n }\n if (isObject(value)) {\n return stringifyObject(value)\n }\n if (typeof value === 'string') {\n return value\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction stringifyArray (value) {\n var res = '';\n var stringified;\n for (var i = 0, l = value.length; i < l; i++) {\n if (isDef(stringified = stringifyClass(value[i])) && stringified !== '') {\n if (res) { res += ' '; }\n res += stringified;\n }\n }\n return res\n}\n\nfunction stringifyObject (value) {\n var res = '';\n for (var key in value) {\n if (value[key]) {\n if (res) { res += ' '; }\n res += key;\n }\n }\n return res\n}\n\n/* */\n\nvar namespaceMap = {\n svg: 'http://www.w3.org/2000/svg',\n math: 'http://www.w3.org/1998/Math/MathML'\n};\n\nvar isHTMLTag = makeMap(\n 'html,body,base,head,link,meta,style,title,' +\n 'address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,' +\n 'div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,' +\n 'a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,' +\n 's,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,' +\n 'embed,object,param,source,canvas,script,noscript,del,ins,' +\n 'caption,col,colgroup,table,thead,tbody,td,th,tr,' +\n 'button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,' +\n 'output,progress,select,textarea,' +\n 'details,dialog,menu,menuitem,summary,' +\n 'content,element,shadow,template,blockquote,iframe,tfoot'\n);\n\n// this map is intentionally selective, only covering SVG elements that may\n// contain child elements.\nvar isSVG = makeMap(\n 'svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,' +\n 'foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,' +\n 'polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view',\n true\n);\n\nvar isReservedTag = function (tag) {\n return isHTMLTag(tag) || isSVG(tag)\n};\n\nfunction getTagNamespace (tag) {\n if (isSVG(tag)) {\n return 'svg'\n }\n // basic support for MathML\n // note it doesn't support other MathML elements being component roots\n if (tag === 'math') {\n return 'math'\n }\n}\n\nvar unknownElementCache = Object.create(null);\nfunction isUnknownElement (tag) {\n /* istanbul ignore if */\n if (!inBrowser) {\n return true\n }\n if (isReservedTag(tag)) {\n return false\n }\n tag = tag.toLowerCase();\n /* istanbul ignore if */\n if (unknownElementCache[tag] != null) {\n return unknownElementCache[tag]\n }\n var el = document.createElement(tag);\n if (tag.indexOf('-') > -1) {\n // http://stackoverflow.com/a/28210364/1070244\n return (unknownElementCache[tag] = (\n el.constructor === window.HTMLUnknownElement ||\n el.constructor === window.HTMLElement\n ))\n } else {\n return (unknownElementCache[tag] = /HTMLUnknownElement/.test(el.toString()))\n }\n}\n\nvar isTextInputType = makeMap('text,number,password,search,email,tel,url');\n\n/* */\n\n/**\n * Query an element selector if it's not an element already.\n */\nfunction query (el) {\n if (typeof el === 'string') {\n var selected = document.querySelector(el);\n if (!selected) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Cannot find element: ' + el\n );\n return document.createElement('div')\n }\n return selected\n } else {\n return el\n }\n}\n\n/* */\n\nfunction createElement$1 (tagName, vnode) {\n var elm = document.createElement(tagName);\n if (tagName !== 'select') {\n return elm\n }\n // false or null will remove the attribute but undefined will not\n if (vnode.data && vnode.data.attrs && vnode.data.attrs.multiple !== undefined) {\n elm.setAttribute('multiple', 'multiple');\n }\n return elm\n}\n\nfunction createElementNS (namespace, tagName) {\n return document.createElementNS(namespaceMap[namespace], tagName)\n}\n\nfunction createTextNode (text) {\n return document.createTextNode(text)\n}\n\nfunction createComment (text) {\n return document.createComment(text)\n}\n\nfunction insertBefore (parentNode, newNode, referenceNode) {\n parentNode.insertBefore(newNode, referenceNode);\n}\n\nfunction removeChild (node, child) {\n node.removeChild(child);\n}\n\nfunction appendChild (node, child) {\n node.appendChild(child);\n}\n\nfunction parentNode (node) {\n return node.parentNode\n}\n\nfunction nextSibling (node) {\n return node.nextSibling\n}\n\nfunction tagName (node) {\n return node.tagName\n}\n\nfunction setTextContent (node, text) {\n node.textContent = text;\n}\n\nfunction setStyleScope (node, scopeId) {\n node.setAttribute(scopeId, '');\n}\n\nvar nodeOps = /*#__PURE__*/Object.freeze({\n createElement: createElement$1,\n createElementNS: createElementNS,\n createTextNode: createTextNode,\n createComment: createComment,\n insertBefore: insertBefore,\n removeChild: removeChild,\n appendChild: appendChild,\n parentNode: parentNode,\n nextSibling: nextSibling,\n tagName: tagName,\n setTextContent: setTextContent,\n setStyleScope: setStyleScope\n});\n\n/* */\n\nvar ref = {\n create: function create (_, vnode) {\n registerRef(vnode);\n },\n update: function update (oldVnode, vnode) {\n if (oldVnode.data.ref !== vnode.data.ref) {\n registerRef(oldVnode, true);\n registerRef(vnode);\n }\n },\n destroy: function destroy (vnode) {\n registerRef(vnode, true);\n }\n};\n\nfunction registerRef (vnode, isRemoval) {\n var key = vnode.data.ref;\n if (!isDef(key)) { return }\n\n var vm = vnode.context;\n var ref = vnode.componentInstance || vnode.elm;\n var refs = vm.$refs;\n if (isRemoval) {\n if (Array.isArray(refs[key])) {\n remove(refs[key], ref);\n } else if (refs[key] === ref) {\n refs[key] = undefined;\n }\n } else {\n if (vnode.data.refInFor) {\n if (!Array.isArray(refs[key])) {\n refs[key] = [ref];\n } else if (refs[key].indexOf(ref) < 0) {\n // $flow-disable-line\n refs[key].push(ref);\n }\n } else {\n refs[key] = ref;\n }\n }\n}\n\n/**\n * Virtual DOM patching algorithm based on Snabbdom by\n * Simon Friis Vindum (@paldepind)\n * Licensed under the MIT License\n * https://github.com/paldepind/snabbdom/blob/master/LICENSE\n *\n * modified by Evan You (@yyx990803)\n *\n * Not type-checking this because this file is perf-critical and the cost\n * of making flow understand it is not worth it.\n */\n\nvar emptyNode = new VNode('', {}, []);\n\nvar hooks = ['create', 'activate', 'update', 'remove', 'destroy'];\n\nfunction sameVnode (a, b) {\n return (\n a.key === b.key && (\n (\n a.tag === b.tag &&\n a.isComment === b.isComment &&\n isDef(a.data) === isDef(b.data) &&\n sameInputType(a, b)\n ) || (\n isTrue(a.isAsyncPlaceholder) &&\n a.asyncFactory === b.asyncFactory &&\n isUndef(b.asyncFactory.error)\n )\n )\n )\n}\n\nfunction sameInputType (a, b) {\n if (a.tag !== 'input') { return true }\n var i;\n var typeA = isDef(i = a.data) && isDef(i = i.attrs) && i.type;\n var typeB = isDef(i = b.data) && isDef(i = i.attrs) && i.type;\n return typeA === typeB || isTextInputType(typeA) && isTextInputType(typeB)\n}\n\nfunction createKeyToOldIdx (children, beginIdx, endIdx) {\n var i, key;\n var map = {};\n for (i = beginIdx; i <= endIdx; ++i) {\n key = children[i].key;\n if (isDef(key)) { map[key] = i; }\n }\n return map\n}\n\nfunction createPatchFunction (backend) {\n var i, j;\n var cbs = {};\n\n var modules = backend.modules;\n var nodeOps = backend.nodeOps;\n\n for (i = 0; i < hooks.length; ++i) {\n cbs[hooks[i]] = [];\n for (j = 0; j < modules.length; ++j) {\n if (isDef(modules[j][hooks[i]])) {\n cbs[hooks[i]].push(modules[j][hooks[i]]);\n }\n }\n }\n\n function emptyNodeAt (elm) {\n return new VNode(nodeOps.tagName(elm).toLowerCase(), {}, [], undefined, elm)\n }\n\n function createRmCb (childElm, listeners) {\n function remove$$1 () {\n if (--remove$$1.listeners === 0) {\n removeNode(childElm);\n }\n }\n remove$$1.listeners = listeners;\n return remove$$1\n }\n\n function removeNode (el) {\n var parent = nodeOps.parentNode(el);\n // element may have already been removed due to v-html / v-text\n if (isDef(parent)) {\n nodeOps.removeChild(parent, el);\n }\n }\n\n function isUnknownElement$$1 (vnode, inVPre) {\n return (\n !inVPre &&\n !vnode.ns &&\n !(\n config.ignoredElements.length &&\n config.ignoredElements.some(function (ignore) {\n return isRegExp(ignore)\n ? ignore.test(vnode.tag)\n : ignore === vnode.tag\n })\n ) &&\n config.isUnknownElement(vnode.tag)\n )\n }\n\n var creatingElmInVPre = 0;\n\n function createElm (\n vnode,\n insertedVnodeQueue,\n parentElm,\n refElm,\n nested,\n ownerArray,\n index\n ) {\n if (isDef(vnode.elm) && isDef(ownerArray)) {\n // This vnode was used in a previous render!\n // now it's used as a new node, overwriting its elm would cause\n // potential patch errors down the road when it's used as an insertion\n // reference node. Instead, we clone the node on-demand before creating\n // associated DOM element for it.\n vnode = ownerArray[index] = cloneVNode(vnode);\n }\n\n vnode.isRootInsert = !nested; // for transition enter check\n if (createComponent(vnode, insertedVnodeQueue, parentElm, refElm)) {\n return\n }\n\n var data = vnode.data;\n var children = vnode.children;\n var tag = vnode.tag;\n if (isDef(tag)) {\n if (process.env.NODE_ENV !== 'production') {\n if (data && data.pre) {\n creatingElmInVPre++;\n }\n if (isUnknownElement$$1(vnode, creatingElmInVPre)) {\n warn(\n 'Unknown custom element: <' + tag + '> - did you ' +\n 'register the component correctly? For recursive components, ' +\n 'make sure to provide the \"name\" option.',\n vnode.context\n );\n }\n }\n\n vnode.elm = vnode.ns\n ? nodeOps.createElementNS(vnode.ns, tag)\n : nodeOps.createElement(tag, vnode);\n setScope(vnode);\n\n /* istanbul ignore if */\n {\n createChildren(vnode, children, insertedVnodeQueue);\n if (isDef(data)) {\n invokeCreateHooks(vnode, insertedVnodeQueue);\n }\n insert(parentElm, vnode.elm, refElm);\n }\n\n if (process.env.NODE_ENV !== 'production' && data && data.pre) {\n creatingElmInVPre--;\n }\n } else if (isTrue(vnode.isComment)) {\n vnode.elm = nodeOps.createComment(vnode.text);\n insert(parentElm, vnode.elm, refElm);\n } else {\n vnode.elm = nodeOps.createTextNode(vnode.text);\n insert(parentElm, vnode.elm, refElm);\n }\n }\n\n function createComponent (vnode, insertedVnodeQueue, parentElm, refElm) {\n var i = vnode.data;\n if (isDef(i)) {\n var isReactivated = isDef(vnode.componentInstance) && i.keepAlive;\n if (isDef(i = i.hook) && isDef(i = i.init)) {\n i(vnode, false /* hydrating */);\n }\n // after calling the init hook, if the vnode is a child component\n // it should've created a child instance and mounted it. the child\n // component also has set the placeholder vnode's elm.\n // in that case we can just return the element and be done.\n if (isDef(vnode.componentInstance)) {\n initComponent(vnode, insertedVnodeQueue);\n insert(parentElm, vnode.elm, refElm);\n if (isTrue(isReactivated)) {\n reactivateComponent(vnode, insertedVnodeQueue, parentElm, refElm);\n }\n return true\n }\n }\n }\n\n function initComponent (vnode, insertedVnodeQueue) {\n if (isDef(vnode.data.pendingInsert)) {\n insertedVnodeQueue.push.apply(insertedVnodeQueue, vnode.data.pendingInsert);\n vnode.data.pendingInsert = null;\n }\n vnode.elm = vnode.componentInstance.$el;\n if (isPatchable(vnode)) {\n invokeCreateHooks(vnode, insertedVnodeQueue);\n setScope(vnode);\n } else {\n // empty component root.\n // skip all element-related modules except for ref (#3455)\n registerRef(vnode);\n // make sure to invoke the insert hook\n insertedVnodeQueue.push(vnode);\n }\n }\n\n function reactivateComponent (vnode, insertedVnodeQueue, parentElm, refElm) {\n var i;\n // hack for #4339: a reactivated component with inner transition\n // does not trigger because the inner node's created hooks are not called\n // again. It's not ideal to involve module-specific logic in here but\n // there doesn't seem to be a better way to do it.\n var innerNode = vnode;\n while (innerNode.componentInstance) {\n innerNode = innerNode.componentInstance._vnode;\n if (isDef(i = innerNode.data) && isDef(i = i.transition)) {\n for (i = 0; i < cbs.activate.length; ++i) {\n cbs.activate[i](emptyNode, innerNode);\n }\n insertedVnodeQueue.push(innerNode);\n break\n }\n }\n // unlike a newly created component,\n // a reactivated keep-alive component doesn't insert itself\n insert(parentElm, vnode.elm, refElm);\n }\n\n function insert (parent, elm, ref$$1) {\n if (isDef(parent)) {\n if (isDef(ref$$1)) {\n if (nodeOps.parentNode(ref$$1) === parent) {\n nodeOps.insertBefore(parent, elm, ref$$1);\n }\n } else {\n nodeOps.appendChild(parent, elm);\n }\n }\n }\n\n function createChildren (vnode, children, insertedVnodeQueue) {\n if (Array.isArray(children)) {\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(children);\n }\n for (var i = 0; i < children.length; ++i) {\n createElm(children[i], insertedVnodeQueue, vnode.elm, null, true, children, i);\n }\n } else if (isPrimitive(vnode.text)) {\n nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(String(vnode.text)));\n }\n }\n\n function isPatchable (vnode) {\n while (vnode.componentInstance) {\n vnode = vnode.componentInstance._vnode;\n }\n return isDef(vnode.tag)\n }\n\n function invokeCreateHooks (vnode, insertedVnodeQueue) {\n for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {\n cbs.create[i$1](emptyNode, vnode);\n }\n i = vnode.data.hook; // Reuse variable\n if (isDef(i)) {\n if (isDef(i.create)) { i.create(emptyNode, vnode); }\n if (isDef(i.insert)) { insertedVnodeQueue.push(vnode); }\n }\n }\n\n // set scope id attribute for scoped CSS.\n // this is implemented as a special case to avoid the overhead\n // of going through the normal attribute patching process.\n function setScope (vnode) {\n var i;\n if (isDef(i = vnode.fnScopeId)) {\n nodeOps.setStyleScope(vnode.elm, i);\n } else {\n var ancestor = vnode;\n while (ancestor) {\n if (isDef(i = ancestor.context) && isDef(i = i.$options._scopeId)) {\n nodeOps.setStyleScope(vnode.elm, i);\n }\n ancestor = ancestor.parent;\n }\n }\n // for slot content they should also get the scopeId from the host instance.\n if (isDef(i = activeInstance) &&\n i !== vnode.context &&\n i !== vnode.fnContext &&\n isDef(i = i.$options._scopeId)\n ) {\n nodeOps.setStyleScope(vnode.elm, i);\n }\n }\n\n function addVnodes (parentElm, refElm, vnodes, startIdx, endIdx, insertedVnodeQueue) {\n for (; startIdx <= endIdx; ++startIdx) {\n createElm(vnodes[startIdx], insertedVnodeQueue, parentElm, refElm, false, vnodes, startIdx);\n }\n }\n\n function invokeDestroyHook (vnode) {\n var i, j;\n var data = vnode.data;\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.destroy)) { i(vnode); }\n for (i = 0; i < cbs.destroy.length; ++i) { cbs.destroy[i](vnode); }\n }\n if (isDef(i = vnode.children)) {\n for (j = 0; j < vnode.children.length; ++j) {\n invokeDestroyHook(vnode.children[j]);\n }\n }\n }\n\n function removeVnodes (vnodes, startIdx, endIdx) {\n for (; startIdx <= endIdx; ++startIdx) {\n var ch = vnodes[startIdx];\n if (isDef(ch)) {\n if (isDef(ch.tag)) {\n removeAndInvokeRemoveHook(ch);\n invokeDestroyHook(ch);\n } else { // Text node\n removeNode(ch.elm);\n }\n }\n }\n }\n\n function removeAndInvokeRemoveHook (vnode, rm) {\n if (isDef(rm) || isDef(vnode.data)) {\n var i;\n var listeners = cbs.remove.length + 1;\n if (isDef(rm)) {\n // we have a recursively passed down rm callback\n // increase the listeners count\n rm.listeners += listeners;\n } else {\n // directly removing\n rm = createRmCb(vnode.elm, listeners);\n }\n // recursively invoke hooks on child component root node\n if (isDef(i = vnode.componentInstance) && isDef(i = i._vnode) && isDef(i.data)) {\n removeAndInvokeRemoveHook(i, rm);\n }\n for (i = 0; i < cbs.remove.length; ++i) {\n cbs.remove[i](vnode, rm);\n }\n if (isDef(i = vnode.data.hook) && isDef(i = i.remove)) {\n i(vnode, rm);\n } else {\n rm();\n }\n } else {\n removeNode(vnode.elm);\n }\n }\n\n function updateChildren (parentElm, oldCh, newCh, insertedVnodeQueue, removeOnly) {\n var oldStartIdx = 0;\n var newStartIdx = 0;\n var oldEndIdx = oldCh.length - 1;\n var oldStartVnode = oldCh[0];\n var oldEndVnode = oldCh[oldEndIdx];\n var newEndIdx = newCh.length - 1;\n var newStartVnode = newCh[0];\n var newEndVnode = newCh[newEndIdx];\n var oldKeyToIdx, idxInOld, vnodeToMove, refElm;\n\n // removeOnly is a special flag used only by <transition-group>\n // to ensure removed elements stay in correct relative positions\n // during leaving transitions\n var canMove = !removeOnly;\n\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(newCh);\n }\n\n while (oldStartIdx <= oldEndIdx && newStartIdx <= newEndIdx) {\n if (isUndef(oldStartVnode)) {\n oldStartVnode = oldCh[++oldStartIdx]; // Vnode has been moved left\n } else if (isUndef(oldEndVnode)) {\n oldEndVnode = oldCh[--oldEndIdx];\n } else if (sameVnode(oldStartVnode, newStartVnode)) {\n patchVnode(oldStartVnode, newStartVnode, insertedVnodeQueue, newCh, newStartIdx);\n oldStartVnode = oldCh[++oldStartIdx];\n newStartVnode = newCh[++newStartIdx];\n } else if (sameVnode(oldEndVnode, newEndVnode)) {\n patchVnode(oldEndVnode, newEndVnode, insertedVnodeQueue, newCh, newEndIdx);\n oldEndVnode = oldCh[--oldEndIdx];\n newEndVnode = newCh[--newEndIdx];\n } else if (sameVnode(oldStartVnode, newEndVnode)) { // Vnode moved right\n patchVnode(oldStartVnode, newEndVnode, insertedVnodeQueue, newCh, newEndIdx);\n canMove && nodeOps.insertBefore(parentElm, oldStartVnode.elm, nodeOps.nextSibling(oldEndVnode.elm));\n oldStartVnode = oldCh[++oldStartIdx];\n newEndVnode = newCh[--newEndIdx];\n } else if (sameVnode(oldEndVnode, newStartVnode)) { // Vnode moved left\n patchVnode(oldEndVnode, newStartVnode, insertedVnodeQueue, newCh, newStartIdx);\n canMove && nodeOps.insertBefore(parentElm, oldEndVnode.elm, oldStartVnode.elm);\n oldEndVnode = oldCh[--oldEndIdx];\n newStartVnode = newCh[++newStartIdx];\n } else {\n if (isUndef(oldKeyToIdx)) { oldKeyToIdx = createKeyToOldIdx(oldCh, oldStartIdx, oldEndIdx); }\n idxInOld = isDef(newStartVnode.key)\n ? oldKeyToIdx[newStartVnode.key]\n : findIdxInOld(newStartVnode, oldCh, oldStartIdx, oldEndIdx);\n if (isUndef(idxInOld)) { // New element\n createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx);\n } else {\n vnodeToMove = oldCh[idxInOld];\n if (sameVnode(vnodeToMove, newStartVnode)) {\n patchVnode(vnodeToMove, newStartVnode, insertedVnodeQueue, newCh, newStartIdx);\n oldCh[idxInOld] = undefined;\n canMove && nodeOps.insertBefore(parentElm, vnodeToMove.elm, oldStartVnode.elm);\n } else {\n // same key but different element. treat as new element\n createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx);\n }\n }\n newStartVnode = newCh[++newStartIdx];\n }\n }\n if (oldStartIdx > oldEndIdx) {\n refElm = isUndef(newCh[newEndIdx + 1]) ? null : newCh[newEndIdx + 1].elm;\n addVnodes(parentElm, refElm, newCh, newStartIdx, newEndIdx, insertedVnodeQueue);\n } else if (newStartIdx > newEndIdx) {\n removeVnodes(oldCh, oldStartIdx, oldEndIdx);\n }\n }\n\n function checkDuplicateKeys (children) {\n var seenKeys = {};\n for (var i = 0; i < children.length; i++) {\n var vnode = children[i];\n var key = vnode.key;\n if (isDef(key)) {\n if (seenKeys[key]) {\n warn(\n (\"Duplicate keys detected: '\" + key + \"'. This may cause an update error.\"),\n vnode.context\n );\n } else {\n seenKeys[key] = true;\n }\n }\n }\n }\n\n function findIdxInOld (node, oldCh, start, end) {\n for (var i = start; i < end; i++) {\n var c = oldCh[i];\n if (isDef(c) && sameVnode(node, c)) { return i }\n }\n }\n\n function patchVnode (\n oldVnode,\n vnode,\n insertedVnodeQueue,\n ownerArray,\n index,\n removeOnly\n ) {\n if (oldVnode === vnode) {\n return\n }\n\n if (isDef(vnode.elm) && isDef(ownerArray)) {\n // clone reused vnode\n vnode = ownerArray[index] = cloneVNode(vnode);\n }\n\n var elm = vnode.elm = oldVnode.elm;\n\n if (isTrue(oldVnode.isAsyncPlaceholder)) {\n if (isDef(vnode.asyncFactory.resolved)) {\n hydrate(oldVnode.elm, vnode, insertedVnodeQueue);\n } else {\n vnode.isAsyncPlaceholder = true;\n }\n return\n }\n\n // reuse element for static trees.\n // note we only do this if the vnode is cloned -\n // if the new node is not cloned it means the render functions have been\n // reset by the hot-reload-api and we need to do a proper re-render.\n if (isTrue(vnode.isStatic) &&\n isTrue(oldVnode.isStatic) &&\n vnode.key === oldVnode.key &&\n (isTrue(vnode.isCloned) || isTrue(vnode.isOnce))\n ) {\n vnode.componentInstance = oldVnode.componentInstance;\n return\n }\n\n var i;\n var data = vnode.data;\n if (isDef(data) && isDef(i = data.hook) && isDef(i = i.prepatch)) {\n i(oldVnode, vnode);\n }\n\n var oldCh = oldVnode.children;\n var ch = vnode.children;\n if (isDef(data) && isPatchable(vnode)) {\n for (i = 0; i < cbs.update.length; ++i) { cbs.update[i](oldVnode, vnode); }\n if (isDef(i = data.hook) && isDef(i = i.update)) { i(oldVnode, vnode); }\n }\n if (isUndef(vnode.text)) {\n if (isDef(oldCh) && isDef(ch)) {\n if (oldCh !== ch) { updateChildren(elm, oldCh, ch, insertedVnodeQueue, removeOnly); }\n } else if (isDef(ch)) {\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(ch);\n }\n if (isDef(oldVnode.text)) { nodeOps.setTextContent(elm, ''); }\n addVnodes(elm, null, ch, 0, ch.length - 1, insertedVnodeQueue);\n } else if (isDef(oldCh)) {\n removeVnodes(oldCh, 0, oldCh.length - 1);\n } else if (isDef(oldVnode.text)) {\n nodeOps.setTextContent(elm, '');\n }\n } else if (oldVnode.text !== vnode.text) {\n nodeOps.setTextContent(elm, vnode.text);\n }\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.postpatch)) { i(oldVnode, vnode); }\n }\n }\n\n function invokeInsertHook (vnode, queue, initial) {\n // delay insert hooks for component root nodes, invoke them after the\n // element is really inserted\n if (isTrue(initial) && isDef(vnode.parent)) {\n vnode.parent.data.pendingInsert = queue;\n } else {\n for (var i = 0; i < queue.length; ++i) {\n queue[i].data.hook.insert(queue[i]);\n }\n }\n }\n\n var hydrationBailed = false;\n // list of modules that can skip create hook during hydration because they\n // are already rendered on the client or has no need for initialization\n // Note: style is excluded because it relies on initial clone for future\n // deep updates (#7063).\n var isRenderedModule = makeMap('attrs,class,staticClass,staticStyle,key');\n\n // Note: this is a browser-only function so we can assume elms are DOM nodes.\n function hydrate (elm, vnode, insertedVnodeQueue, inVPre) {\n var i;\n var tag = vnode.tag;\n var data = vnode.data;\n var children = vnode.children;\n inVPre = inVPre || (data && data.pre);\n vnode.elm = elm;\n\n if (isTrue(vnode.isComment) && isDef(vnode.asyncFactory)) {\n vnode.isAsyncPlaceholder = true;\n return true\n }\n // assert node match\n if (process.env.NODE_ENV !== 'production') {\n if (!assertNodeMatch(elm, vnode, inVPre)) {\n return false\n }\n }\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.init)) { i(vnode, true /* hydrating */); }\n if (isDef(i = vnode.componentInstance)) {\n // child component. it should have hydrated its own tree.\n initComponent(vnode, insertedVnodeQueue);\n return true\n }\n }\n if (isDef(tag)) {\n if (isDef(children)) {\n // empty element, allow client to pick up and populate children\n if (!elm.hasChildNodes()) {\n createChildren(vnode, children, insertedVnodeQueue);\n } else {\n // v-html and domProps: innerHTML\n if (isDef(i = data) && isDef(i = i.domProps) && isDef(i = i.innerHTML)) {\n if (i !== elm.innerHTML) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' &&\n typeof console !== 'undefined' &&\n !hydrationBailed\n ) {\n hydrationBailed = true;\n console.warn('Parent: ', elm);\n console.warn('server innerHTML: ', i);\n console.warn('client innerHTML: ', elm.innerHTML);\n }\n return false\n }\n } else {\n // iterate and compare children lists\n var childrenMatch = true;\n var childNode = elm.firstChild;\n for (var i$1 = 0; i$1 < children.length; i$1++) {\n if (!childNode || !hydrate(childNode, children[i$1], insertedVnodeQueue, inVPre)) {\n childrenMatch = false;\n break\n }\n childNode = childNode.nextSibling;\n }\n // if childNode is not null, it means the actual childNodes list is\n // longer than the virtual children list.\n if (!childrenMatch || childNode) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' &&\n typeof console !== 'undefined' &&\n !hydrationBailed\n ) {\n hydrationBailed = true;\n console.warn('Parent: ', elm);\n console.warn('Mismatching childNodes vs. VNodes: ', elm.childNodes, children);\n }\n return false\n }\n }\n }\n }\n if (isDef(data)) {\n var fullInvoke = false;\n for (var key in data) {\n if (!isRenderedModule(key)) {\n fullInvoke = true;\n invokeCreateHooks(vnode, insertedVnodeQueue);\n break\n }\n }\n if (!fullInvoke && data['class']) {\n // ensure collecting deps for deep class bindings for future updates\n traverse(data['class']);\n }\n }\n } else if (elm.data !== vnode.text) {\n elm.data = vnode.text;\n }\n return true\n }\n\n function assertNodeMatch (node, vnode, inVPre) {\n if (isDef(vnode.tag)) {\n return vnode.tag.indexOf('vue-component') === 0 || (\n !isUnknownElement$$1(vnode, inVPre) &&\n vnode.tag.toLowerCase() === (node.tagName && node.tagName.toLowerCase())\n )\n } else {\n return node.nodeType === (vnode.isComment ? 8 : 3)\n }\n }\n\n return function patch (oldVnode, vnode, hydrating, removeOnly) {\n if (isUndef(vnode)) {\n if (isDef(oldVnode)) { invokeDestroyHook(oldVnode); }\n return\n }\n\n var isInitialPatch = false;\n var insertedVnodeQueue = [];\n\n if (isUndef(oldVnode)) {\n // empty mount (likely as component), create new root element\n isInitialPatch = true;\n createElm(vnode, insertedVnodeQueue);\n } else {\n var isRealElement = isDef(oldVnode.nodeType);\n if (!isRealElement && sameVnode(oldVnode, vnode)) {\n // patch existing root node\n patchVnode(oldVnode, vnode, insertedVnodeQueue, null, null, removeOnly);\n } else {\n if (isRealElement) {\n // mounting to a real element\n // check if this is server-rendered content and if we can perform\n // a successful hydration.\n if (oldVnode.nodeType === 1 && oldVnode.hasAttribute(SSR_ATTR)) {\n oldVnode.removeAttribute(SSR_ATTR);\n hydrating = true;\n }\n if (isTrue(hydrating)) {\n if (hydrate(oldVnode, vnode, insertedVnodeQueue)) {\n invokeInsertHook(vnode, insertedVnodeQueue, true);\n return oldVnode\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n 'The client-side rendered virtual DOM tree is not matching ' +\n 'server-rendered content. This is likely caused by incorrect ' +\n 'HTML markup, for example nesting block-level elements inside ' +\n '<p>, or missing <tbody>. Bailing hydration and performing ' +\n 'full client-side render.'\n );\n }\n }\n // either not server-rendered, or hydration failed.\n // create an empty node and replace it\n oldVnode = emptyNodeAt(oldVnode);\n }\n\n // replacing existing element\n var oldElm = oldVnode.elm;\n var parentElm = nodeOps.parentNode(oldElm);\n\n // create new node\n createElm(\n vnode,\n insertedVnodeQueue,\n // extremely rare edge case: do not insert if old element is in a\n // leaving transition. Only happens when combining transition +\n // keep-alive + HOCs. (#4590)\n oldElm._leaveCb ? null : parentElm,\n nodeOps.nextSibling(oldElm)\n );\n\n // update parent placeholder node element, recursively\n if (isDef(vnode.parent)) {\n var ancestor = vnode.parent;\n var patchable = isPatchable(vnode);\n while (ancestor) {\n for (var i = 0; i < cbs.destroy.length; ++i) {\n cbs.destroy[i](ancestor);\n }\n ancestor.elm = vnode.elm;\n if (patchable) {\n for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {\n cbs.create[i$1](emptyNode, ancestor);\n }\n // #6513\n // invoke insert hooks that may have been merged by create hooks.\n // e.g. for directives that uses the \"inserted\" hook.\n var insert = ancestor.data.hook.insert;\n if (insert.merged) {\n // start at index 1 to avoid re-invoking component mounted hook\n for (var i$2 = 1; i$2 < insert.fns.length; i$2++) {\n insert.fns[i$2]();\n }\n }\n } else {\n registerRef(ancestor);\n }\n ancestor = ancestor.parent;\n }\n }\n\n // destroy old node\n if (isDef(parentElm)) {\n removeVnodes([oldVnode], 0, 0);\n } else if (isDef(oldVnode.tag)) {\n invokeDestroyHook(oldVnode);\n }\n }\n }\n\n invokeInsertHook(vnode, insertedVnodeQueue, isInitialPatch);\n return vnode.elm\n }\n}\n\n/* */\n\nvar directives = {\n create: updateDirectives,\n update: updateDirectives,\n destroy: function unbindDirectives (vnode) {\n updateDirectives(vnode, emptyNode);\n }\n};\n\nfunction updateDirectives (oldVnode, vnode) {\n if (oldVnode.data.directives || vnode.data.directives) {\n _update(oldVnode, vnode);\n }\n}\n\nfunction _update (oldVnode, vnode) {\n var isCreate = oldVnode === emptyNode;\n var isDestroy = vnode === emptyNode;\n var oldDirs = normalizeDirectives$1(oldVnode.data.directives, oldVnode.context);\n var newDirs = normalizeDirectives$1(vnode.data.directives, vnode.context);\n\n var dirsWithInsert = [];\n var dirsWithPostpatch = [];\n\n var key, oldDir, dir;\n for (key in newDirs) {\n oldDir = oldDirs[key];\n dir = newDirs[key];\n if (!oldDir) {\n // new directive, bind\n callHook$1(dir, 'bind', vnode, oldVnode);\n if (dir.def && dir.def.inserted) {\n dirsWithInsert.push(dir);\n }\n } else {\n // existing directive, update\n dir.oldValue = oldDir.value;\n dir.oldArg = oldDir.arg;\n callHook$1(dir, 'update', vnode, oldVnode);\n if (dir.def && dir.def.componentUpdated) {\n dirsWithPostpatch.push(dir);\n }\n }\n }\n\n if (dirsWithInsert.length) {\n var callInsert = function () {\n for (var i = 0; i < dirsWithInsert.length; i++) {\n callHook$1(dirsWithInsert[i], 'inserted', vnode, oldVnode);\n }\n };\n if (isCreate) {\n mergeVNodeHook(vnode, 'insert', callInsert);\n } else {\n callInsert();\n }\n }\n\n if (dirsWithPostpatch.length) {\n mergeVNodeHook(vnode, 'postpatch', function () {\n for (var i = 0; i < dirsWithPostpatch.length; i++) {\n callHook$1(dirsWithPostpatch[i], 'componentUpdated', vnode, oldVnode);\n }\n });\n }\n\n if (!isCreate) {\n for (key in oldDirs) {\n if (!newDirs[key]) {\n // no longer present, unbind\n callHook$1(oldDirs[key], 'unbind', oldVnode, oldVnode, isDestroy);\n }\n }\n }\n}\n\nvar emptyModifiers = Object.create(null);\n\nfunction normalizeDirectives$1 (\n dirs,\n vm\n) {\n var res = Object.create(null);\n if (!dirs) {\n // $flow-disable-line\n return res\n }\n var i, dir;\n for (i = 0; i < dirs.length; i++) {\n dir = dirs[i];\n if (!dir.modifiers) {\n // $flow-disable-line\n dir.modifiers = emptyModifiers;\n }\n res[getRawDirName(dir)] = dir;\n dir.def = resolveAsset(vm.$options, 'directives', dir.name, true);\n }\n // $flow-disable-line\n return res\n}\n\nfunction getRawDirName (dir) {\n return dir.rawName || ((dir.name) + \".\" + (Object.keys(dir.modifiers || {}).join('.')))\n}\n\nfunction callHook$1 (dir, hook, vnode, oldVnode, isDestroy) {\n var fn = dir.def && dir.def[hook];\n if (fn) {\n try {\n fn(vnode.elm, dir, vnode, oldVnode, isDestroy);\n } catch (e) {\n handleError(e, vnode.context, (\"directive \" + (dir.name) + \" \" + hook + \" hook\"));\n }\n }\n}\n\nvar baseModules = [\n ref,\n directives\n];\n\n/* */\n\nfunction updateAttrs (oldVnode, vnode) {\n var opts = vnode.componentOptions;\n if (isDef(opts) && opts.Ctor.options.inheritAttrs === false) {\n return\n }\n if (isUndef(oldVnode.data.attrs) && isUndef(vnode.data.attrs)) {\n return\n }\n var key, cur, old;\n var elm = vnode.elm;\n var oldAttrs = oldVnode.data.attrs || {};\n var attrs = vnode.data.attrs || {};\n // clone observed objects, as the user probably wants to mutate it\n if (isDef(attrs.__ob__)) {\n attrs = vnode.data.attrs = extend({}, attrs);\n }\n\n for (key in attrs) {\n cur = attrs[key];\n old = oldAttrs[key];\n if (old !== cur) {\n setAttr(elm, key, cur);\n }\n }\n // #4391: in IE9, setting type can reset value for input[type=radio]\n // #6666: IE/Edge forces progress value down to 1 before setting a max\n /* istanbul ignore if */\n if ((isIE || isEdge) && attrs.value !== oldAttrs.value) {\n setAttr(elm, 'value', attrs.value);\n }\n for (key in oldAttrs) {\n if (isUndef(attrs[key])) {\n if (isXlink(key)) {\n elm.removeAttributeNS(xlinkNS, getXlinkProp(key));\n } else if (!isEnumeratedAttr(key)) {\n elm.removeAttribute(key);\n }\n }\n }\n}\n\nfunction setAttr (el, key, value) {\n if (el.tagName.indexOf('-') > -1) {\n baseSetAttr(el, key, value);\n } else if (isBooleanAttr(key)) {\n // set attribute for blank value\n // e.g. <option disabled>Select one</option>\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key);\n } else {\n // technically allowfullscreen is a boolean attribute for <iframe>,\n // but Flash expects a value of \"true\" when used on <embed> tag\n value = key === 'allowfullscreen' && el.tagName === 'EMBED'\n ? 'true'\n : key;\n el.setAttribute(key, value);\n }\n } else if (isEnumeratedAttr(key)) {\n el.setAttribute(key, convertEnumeratedValue(key, value));\n } else if (isXlink(key)) {\n if (isFalsyAttrValue(value)) {\n el.removeAttributeNS(xlinkNS, getXlinkProp(key));\n } else {\n el.setAttributeNS(xlinkNS, key, value);\n }\n } else {\n baseSetAttr(el, key, value);\n }\n}\n\nfunction baseSetAttr (el, key, value) {\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key);\n } else {\n // #7138: IE10 & 11 fires input event when setting placeholder on\n // <textarea>... block the first input event and remove the blocker\n // immediately.\n /* istanbul ignore if */\n if (\n isIE && !isIE9 &&\n el.tagName === 'TEXTAREA' &&\n key === 'placeholder' && value !== '' && !el.__ieph\n ) {\n var blocker = function (e) {\n e.stopImmediatePropagation();\n el.removeEventListener('input', blocker);\n };\n el.addEventListener('input', blocker);\n // $flow-disable-line\n el.__ieph = true; /* IE placeholder patched */\n }\n el.setAttribute(key, value);\n }\n}\n\nvar attrs = {\n create: updateAttrs,\n update: updateAttrs\n};\n\n/* */\n\nfunction updateClass (oldVnode, vnode) {\n var el = vnode.elm;\n var data = vnode.data;\n var oldData = oldVnode.data;\n if (\n isUndef(data.staticClass) &&\n isUndef(data.class) && (\n isUndef(oldData) || (\n isUndef(oldData.staticClass) &&\n isUndef(oldData.class)\n )\n )\n ) {\n return\n }\n\n var cls = genClassForVnode(vnode);\n\n // handle transition classes\n var transitionClass = el._transitionClasses;\n if (isDef(transitionClass)) {\n cls = concat(cls, stringifyClass(transitionClass));\n }\n\n // set the class\n if (cls !== el._prevClass) {\n el.setAttribute('class', cls);\n el._prevClass = cls;\n }\n}\n\nvar klass = {\n create: updateClass,\n update: updateClass\n};\n\n/* */\n\n/* */\n\n/* */\n\n/* */\n\n// in some cases, the event used has to be determined at runtime\n// so we used some reserved tokens during compile.\nvar RANGE_TOKEN = '__r';\nvar CHECKBOX_RADIO_TOKEN = '__c';\n\n/* */\n\n// normalize v-model event tokens that can only be determined at runtime.\n// it's important to place the event as the first in the array because\n// the whole point is ensuring the v-model callback gets called before\n// user-attached handlers.\nfunction normalizeEvents (on) {\n /* istanbul ignore if */\n if (isDef(on[RANGE_TOKEN])) {\n // IE input[type=range] only supports `change` event\n var event = isIE ? 'change' : 'input';\n on[event] = [].concat(on[RANGE_TOKEN], on[event] || []);\n delete on[RANGE_TOKEN];\n }\n // This was originally intended to fix #4521 but no longer necessary\n // after 2.5. Keeping it for backwards compat with generated code from < 2.4\n /* istanbul ignore if */\n if (isDef(on[CHECKBOX_RADIO_TOKEN])) {\n on.change = [].concat(on[CHECKBOX_RADIO_TOKEN], on.change || []);\n delete on[CHECKBOX_RADIO_TOKEN];\n }\n}\n\nvar target$1;\n\nfunction createOnceHandler$1 (event, handler, capture) {\n var _target = target$1; // save current target element in closure\n return function onceHandler () {\n var res = handler.apply(null, arguments);\n if (res !== null) {\n remove$2(event, onceHandler, capture, _target);\n }\n }\n}\n\n// #9446: Firefox <= 53 (in particular, ESR 52) has incorrect Event.timeStamp\n// implementation and does not fire microtasks in between event propagation, so\n// safe to exclude.\nvar useMicrotaskFix = isUsingMicroTask && !(isFF && Number(isFF[1]) <= 53);\n\nfunction add$1 (\n name,\n handler,\n capture,\n passive\n) {\n // async edge case #6566: inner click event triggers patch, event handler\n // attached to outer element during patch, and triggered again. This\n // happens because browsers fire microtask ticks between event propagation.\n // the solution is simple: we save the timestamp when a handler is attached,\n // and the handler would only fire if the event passed to it was fired\n // AFTER it was attached.\n if (useMicrotaskFix) {\n var attachedTimestamp = currentFlushTimestamp;\n var original = handler;\n handler = original._wrapper = function (e) {\n if (\n // no bubbling, should always fire.\n // this is just a safety net in case event.timeStamp is unreliable in\n // certain weird environments...\n e.target === e.currentTarget ||\n // event is fired after handler attachment\n e.timeStamp >= attachedTimestamp ||\n // bail for environments that have buggy event.timeStamp implementations\n // #9462 iOS 9 bug: event.timeStamp is 0 after history.pushState\n // #9681 QtWebEngine event.timeStamp is negative value\n e.timeStamp <= 0 ||\n // #9448 bail if event is fired in another document in a multi-page\n // electron/nw.js app, since event.timeStamp will be using a different\n // starting reference\n e.target.ownerDocument !== document\n ) {\n return original.apply(this, arguments)\n }\n };\n }\n target$1.addEventListener(\n name,\n handler,\n supportsPassive\n ? { capture: capture, passive: passive }\n : capture\n );\n}\n\nfunction remove$2 (\n name,\n handler,\n capture,\n _target\n) {\n (_target || target$1).removeEventListener(\n name,\n handler._wrapper || handler,\n capture\n );\n}\n\nfunction updateDOMListeners (oldVnode, vnode) {\n if (isUndef(oldVnode.data.on) && isUndef(vnode.data.on)) {\n return\n }\n var on = vnode.data.on || {};\n var oldOn = oldVnode.data.on || {};\n target$1 = vnode.elm;\n normalizeEvents(on);\n updateListeners(on, oldOn, add$1, remove$2, createOnceHandler$1, vnode.context);\n target$1 = undefined;\n}\n\nvar events = {\n create: updateDOMListeners,\n update: updateDOMListeners\n};\n\n/* */\n\nvar svgContainer;\n\nfunction updateDOMProps (oldVnode, vnode) {\n if (isUndef(oldVnode.data.domProps) && isUndef(vnode.data.domProps)) {\n return\n }\n var key, cur;\n var elm = vnode.elm;\n var oldProps = oldVnode.data.domProps || {};\n var props = vnode.data.domProps || {};\n // clone observed objects, as the user probably wants to mutate it\n if (isDef(props.__ob__)) {\n props = vnode.data.domProps = extend({}, props);\n }\n\n for (key in oldProps) {\n if (!(key in props)) {\n elm[key] = '';\n }\n }\n\n for (key in props) {\n cur = props[key];\n // ignore children if the node has textContent or innerHTML,\n // as these will throw away existing DOM nodes and cause removal errors\n // on subsequent patches (#3360)\n if (key === 'textContent' || key === 'innerHTML') {\n if (vnode.children) { vnode.children.length = 0; }\n if (cur === oldProps[key]) { continue }\n // #6601 work around Chrome version <= 55 bug where single textNode\n // replaced by innerHTML/textContent retains its parentNode property\n if (elm.childNodes.length === 1) {\n elm.removeChild(elm.childNodes[0]);\n }\n }\n\n if (key === 'value' && elm.tagName !== 'PROGRESS') {\n // store value as _value as well since\n // non-string values will be stringified\n elm._value = cur;\n // avoid resetting cursor position when value is the same\n var strCur = isUndef(cur) ? '' : String(cur);\n if (shouldUpdateValue(elm, strCur)) {\n elm.value = strCur;\n }\n } else if (key === 'innerHTML' && isSVG(elm.tagName) && isUndef(elm.innerHTML)) {\n // IE doesn't support innerHTML for SVG elements\n svgContainer = svgContainer || document.createElement('div');\n svgContainer.innerHTML = \"<svg>\" + cur + \"</svg>\";\n var svg = svgContainer.firstChild;\n while (elm.firstChild) {\n elm.removeChild(elm.firstChild);\n }\n while (svg.firstChild) {\n elm.appendChild(svg.firstChild);\n }\n } else if (\n // skip the update if old and new VDOM state is the same.\n // `value` is handled separately because the DOM value may be temporarily\n // out of sync with VDOM state due to focus, composition and modifiers.\n // This #4521 by skipping the unnecessary `checked` update.\n cur !== oldProps[key]\n ) {\n // some property updates can throw\n // e.g. `value` on <progress> w/ non-finite value\n try {\n elm[key] = cur;\n } catch (e) {}\n }\n }\n}\n\n// check platforms/web/util/attrs.js acceptValue\n\n\nfunction shouldUpdateValue (elm, checkVal) {\n return (!elm.composing && (\n elm.tagName === 'OPTION' ||\n isNotInFocusAndDirty(elm, checkVal) ||\n isDirtyWithModifiers(elm, checkVal)\n ))\n}\n\nfunction isNotInFocusAndDirty (elm, checkVal) {\n // return true when textbox (.number and .trim) loses focus and its value is\n // not equal to the updated value\n var notInFocus = true;\n // #6157\n // work around IE bug when accessing document.activeElement in an iframe\n try { notInFocus = document.activeElement !== elm; } catch (e) {}\n return notInFocus && elm.value !== checkVal\n}\n\nfunction isDirtyWithModifiers (elm, newVal) {\n var value = elm.value;\n var modifiers = elm._vModifiers; // injected by v-model runtime\n if (isDef(modifiers)) {\n if (modifiers.number) {\n return toNumber(value) !== toNumber(newVal)\n }\n if (modifiers.trim) {\n return value.trim() !== newVal.trim()\n }\n }\n return value !== newVal\n}\n\nvar domProps = {\n create: updateDOMProps,\n update: updateDOMProps\n};\n\n/* */\n\nvar parseStyleText = cached(function (cssText) {\n var res = {};\n var listDelimiter = /;(?![^(]*\\))/g;\n var propertyDelimiter = /:(.+)/;\n cssText.split(listDelimiter).forEach(function (item) {\n if (item) {\n var tmp = item.split(propertyDelimiter);\n tmp.length > 1 && (res[tmp[0].trim()] = tmp[1].trim());\n }\n });\n return res\n});\n\n// merge static and dynamic style data on the same vnode\nfunction normalizeStyleData (data) {\n var style = normalizeStyleBinding(data.style);\n // static style is pre-processed into an object during compilation\n // and is always a fresh object, so it's safe to merge into it\n return data.staticStyle\n ? extend(data.staticStyle, style)\n : style\n}\n\n// normalize possible array / string values into Object\nfunction normalizeStyleBinding (bindingStyle) {\n if (Array.isArray(bindingStyle)) {\n return toObject(bindingStyle)\n }\n if (typeof bindingStyle === 'string') {\n return parseStyleText(bindingStyle)\n }\n return bindingStyle\n}\n\n/**\n * parent component style should be after child's\n * so that parent component's style could override it\n */\nfunction getStyle (vnode, checkChild) {\n var res = {};\n var styleData;\n\n if (checkChild) {\n var childNode = vnode;\n while (childNode.componentInstance) {\n childNode = childNode.componentInstance._vnode;\n if (\n childNode && childNode.data &&\n (styleData = normalizeStyleData(childNode.data))\n ) {\n extend(res, styleData);\n }\n }\n }\n\n if ((styleData = normalizeStyleData(vnode.data))) {\n extend(res, styleData);\n }\n\n var parentNode = vnode;\n while ((parentNode = parentNode.parent)) {\n if (parentNode.data && (styleData = normalizeStyleData(parentNode.data))) {\n extend(res, styleData);\n }\n }\n return res\n}\n\n/* */\n\nvar cssVarRE = /^--/;\nvar importantRE = /\\s*!important$/;\nvar setProp = function (el, name, val) {\n /* istanbul ignore if */\n if (cssVarRE.test(name)) {\n el.style.setProperty(name, val);\n } else if (importantRE.test(val)) {\n el.style.setProperty(hyphenate(name), val.replace(importantRE, ''), 'important');\n } else {\n var normalizedName = normalize(name);\n if (Array.isArray(val)) {\n // Support values array created by autoprefixer, e.g.\n // {display: [\"-webkit-box\", \"-ms-flexbox\", \"flex\"]}\n // Set them one by one, and the browser will only set those it can recognize\n for (var i = 0, len = val.length; i < len; i++) {\n el.style[normalizedName] = val[i];\n }\n } else {\n el.style[normalizedName] = val;\n }\n }\n};\n\nvar vendorNames = ['Webkit', 'Moz', 'ms'];\n\nvar emptyStyle;\nvar normalize = cached(function (prop) {\n emptyStyle = emptyStyle || document.createElement('div').style;\n prop = camelize(prop);\n if (prop !== 'filter' && (prop in emptyStyle)) {\n return prop\n }\n var capName = prop.charAt(0).toUpperCase() + prop.slice(1);\n for (var i = 0; i < vendorNames.length; i++) {\n var name = vendorNames[i] + capName;\n if (name in emptyStyle) {\n return name\n }\n }\n});\n\nfunction updateStyle (oldVnode, vnode) {\n var data = vnode.data;\n var oldData = oldVnode.data;\n\n if (isUndef(data.staticStyle) && isUndef(data.style) &&\n isUndef(oldData.staticStyle) && isUndef(oldData.style)\n ) {\n return\n }\n\n var cur, name;\n var el = vnode.elm;\n var oldStaticStyle = oldData.staticStyle;\n var oldStyleBinding = oldData.normalizedStyle || oldData.style || {};\n\n // if static style exists, stylebinding already merged into it when doing normalizeStyleData\n var oldStyle = oldStaticStyle || oldStyleBinding;\n\n var style = normalizeStyleBinding(vnode.data.style) || {};\n\n // store normalized style under a different key for next diff\n // make sure to clone it if it's reactive, since the user likely wants\n // to mutate it.\n vnode.data.normalizedStyle = isDef(style.__ob__)\n ? extend({}, style)\n : style;\n\n var newStyle = getStyle(vnode, true);\n\n for (name in oldStyle) {\n if (isUndef(newStyle[name])) {\n setProp(el, name, '');\n }\n }\n for (name in newStyle) {\n cur = newStyle[name];\n if (cur !== oldStyle[name]) {\n // ie9 setting to null has no effect, must use empty string\n setProp(el, name, cur == null ? '' : cur);\n }\n }\n}\n\nvar style = {\n create: updateStyle,\n update: updateStyle\n};\n\n/* */\n\nvar whitespaceRE = /\\s+/;\n\n/**\n * Add class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\nfunction addClass (el, cls) {\n /* istanbul ignore if */\n if (!cls || !(cls = cls.trim())) {\n return\n }\n\n /* istanbul ignore else */\n if (el.classList) {\n if (cls.indexOf(' ') > -1) {\n cls.split(whitespaceRE).forEach(function (c) { return el.classList.add(c); });\n } else {\n el.classList.add(cls);\n }\n } else {\n var cur = \" \" + (el.getAttribute('class') || '') + \" \";\n if (cur.indexOf(' ' + cls + ' ') < 0) {\n el.setAttribute('class', (cur + cls).trim());\n }\n }\n}\n\n/**\n * Remove class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\nfunction removeClass (el, cls) {\n /* istanbul ignore if */\n if (!cls || !(cls = cls.trim())) {\n return\n }\n\n /* istanbul ignore else */\n if (el.classList) {\n if (cls.indexOf(' ') > -1) {\n cls.split(whitespaceRE).forEach(function (c) { return el.classList.remove(c); });\n } else {\n el.classList.remove(cls);\n }\n if (!el.classList.length) {\n el.removeAttribute('class');\n }\n } else {\n var cur = \" \" + (el.getAttribute('class') || '') + \" \";\n var tar = ' ' + cls + ' ';\n while (cur.indexOf(tar) >= 0) {\n cur = cur.replace(tar, ' ');\n }\n cur = cur.trim();\n if (cur) {\n el.setAttribute('class', cur);\n } else {\n el.removeAttribute('class');\n }\n }\n}\n\n/* */\n\nfunction resolveTransition (def$$1) {\n if (!def$$1) {\n return\n }\n /* istanbul ignore else */\n if (typeof def$$1 === 'object') {\n var res = {};\n if (def$$1.css !== false) {\n extend(res, autoCssTransition(def$$1.name || 'v'));\n }\n extend(res, def$$1);\n return res\n } else if (typeof def$$1 === 'string') {\n return autoCssTransition(def$$1)\n }\n}\n\nvar autoCssTransition = cached(function (name) {\n return {\n enterClass: (name + \"-enter\"),\n enterToClass: (name + \"-enter-to\"),\n enterActiveClass: (name + \"-enter-active\"),\n leaveClass: (name + \"-leave\"),\n leaveToClass: (name + \"-leave-to\"),\n leaveActiveClass: (name + \"-leave-active\")\n }\n});\n\nvar hasTransition = inBrowser && !isIE9;\nvar TRANSITION = 'transition';\nvar ANIMATION = 'animation';\n\n// Transition property/event sniffing\nvar transitionProp = 'transition';\nvar transitionEndEvent = 'transitionend';\nvar animationProp = 'animation';\nvar animationEndEvent = 'animationend';\nif (hasTransition) {\n /* istanbul ignore if */\n if (window.ontransitionend === undefined &&\n window.onwebkittransitionend !== undefined\n ) {\n transitionProp = 'WebkitTransition';\n transitionEndEvent = 'webkitTransitionEnd';\n }\n if (window.onanimationend === undefined &&\n window.onwebkitanimationend !== undefined\n ) {\n animationProp = 'WebkitAnimation';\n animationEndEvent = 'webkitAnimationEnd';\n }\n}\n\n// binding to window is necessary to make hot reload work in IE in strict mode\nvar raf = inBrowser\n ? window.requestAnimationFrame\n ? window.requestAnimationFrame.bind(window)\n : setTimeout\n : /* istanbul ignore next */ function (fn) { return fn(); };\n\nfunction nextFrame (fn) {\n raf(function () {\n raf(fn);\n });\n}\n\nfunction addTransitionClass (el, cls) {\n var transitionClasses = el._transitionClasses || (el._transitionClasses = []);\n if (transitionClasses.indexOf(cls) < 0) {\n transitionClasses.push(cls);\n addClass(el, cls);\n }\n}\n\nfunction removeTransitionClass (el, cls) {\n if (el._transitionClasses) {\n remove(el._transitionClasses, cls);\n }\n removeClass(el, cls);\n}\n\nfunction whenTransitionEnds (\n el,\n expectedType,\n cb\n) {\n var ref = getTransitionInfo(el, expectedType);\n var type = ref.type;\n var timeout = ref.timeout;\n var propCount = ref.propCount;\n if (!type) { return cb() }\n var event = type === TRANSITION ? transitionEndEvent : animationEndEvent;\n var ended = 0;\n var end = function () {\n el.removeEventListener(event, onEnd);\n cb();\n };\n var onEnd = function (e) {\n if (e.target === el) {\n if (++ended >= propCount) {\n end();\n }\n }\n };\n setTimeout(function () {\n if (ended < propCount) {\n end();\n }\n }, timeout + 1);\n el.addEventListener(event, onEnd);\n}\n\nvar transformRE = /\\b(transform|all)(,|$)/;\n\nfunction getTransitionInfo (el, expectedType) {\n var styles = window.getComputedStyle(el);\n // JSDOM may return undefined for transition properties\n var transitionDelays = (styles[transitionProp + 'Delay'] || '').split(', ');\n var transitionDurations = (styles[transitionProp + 'Duration'] || '').split(', ');\n var transitionTimeout = getTimeout(transitionDelays, transitionDurations);\n var animationDelays = (styles[animationProp + 'Delay'] || '').split(', ');\n var animationDurations = (styles[animationProp + 'Duration'] || '').split(', ');\n var animationTimeout = getTimeout(animationDelays, animationDurations);\n\n var type;\n var timeout = 0;\n var propCount = 0;\n /* istanbul ignore if */\n if (expectedType === TRANSITION) {\n if (transitionTimeout > 0) {\n type = TRANSITION;\n timeout = transitionTimeout;\n propCount = transitionDurations.length;\n }\n } else if (expectedType === ANIMATION) {\n if (animationTimeout > 0) {\n type = ANIMATION;\n timeout = animationTimeout;\n propCount = animationDurations.length;\n }\n } else {\n timeout = Math.max(transitionTimeout, animationTimeout);\n type = timeout > 0\n ? transitionTimeout > animationTimeout\n ? TRANSITION\n : ANIMATION\n : null;\n propCount = type\n ? type === TRANSITION\n ? transitionDurations.length\n : animationDurations.length\n : 0;\n }\n var hasTransform =\n type === TRANSITION &&\n transformRE.test(styles[transitionProp + 'Property']);\n return {\n type: type,\n timeout: timeout,\n propCount: propCount,\n hasTransform: hasTransform\n }\n}\n\nfunction getTimeout (delays, durations) {\n /* istanbul ignore next */\n while (delays.length < durations.length) {\n delays = delays.concat(delays);\n }\n\n return Math.max.apply(null, durations.map(function (d, i) {\n return toMs(d) + toMs(delays[i])\n }))\n}\n\n// Old versions of Chromium (below 61.0.3163.100) formats floating pointer numbers\n// in a locale-dependent way, using a comma instead of a dot.\n// If comma is not replaced with a dot, the input will be rounded down (i.e. acting\n// as a floor function) causing unexpected behaviors\nfunction toMs (s) {\n return Number(s.slice(0, -1).replace(',', '.')) * 1000\n}\n\n/* */\n\nfunction enter (vnode, toggleDisplay) {\n var el = vnode.elm;\n\n // call leave callback now\n if (isDef(el._leaveCb)) {\n el._leaveCb.cancelled = true;\n el._leaveCb();\n }\n\n var data = resolveTransition(vnode.data.transition);\n if (isUndef(data)) {\n return\n }\n\n /* istanbul ignore if */\n if (isDef(el._enterCb) || el.nodeType !== 1) {\n return\n }\n\n var css = data.css;\n var type = data.type;\n var enterClass = data.enterClass;\n var enterToClass = data.enterToClass;\n var enterActiveClass = data.enterActiveClass;\n var appearClass = data.appearClass;\n var appearToClass = data.appearToClass;\n var appearActiveClass = data.appearActiveClass;\n var beforeEnter = data.beforeEnter;\n var enter = data.enter;\n var afterEnter = data.afterEnter;\n var enterCancelled = data.enterCancelled;\n var beforeAppear = data.beforeAppear;\n var appear = data.appear;\n var afterAppear = data.afterAppear;\n var appearCancelled = data.appearCancelled;\n var duration = data.duration;\n\n // activeInstance will always be the <transition> component managing this\n // transition. One edge case to check is when the <transition> is placed\n // as the root node of a child component. In that case we need to check\n // <transition>'s parent for appear check.\n var context = activeInstance;\n var transitionNode = activeInstance.$vnode;\n while (transitionNode && transitionNode.parent) {\n context = transitionNode.context;\n transitionNode = transitionNode.parent;\n }\n\n var isAppear = !context._isMounted || !vnode.isRootInsert;\n\n if (isAppear && !appear && appear !== '') {\n return\n }\n\n var startClass = isAppear && appearClass\n ? appearClass\n : enterClass;\n var activeClass = isAppear && appearActiveClass\n ? appearActiveClass\n : enterActiveClass;\n var toClass = isAppear && appearToClass\n ? appearToClass\n : enterToClass;\n\n var beforeEnterHook = isAppear\n ? (beforeAppear || beforeEnter)\n : beforeEnter;\n var enterHook = isAppear\n ? (typeof appear === 'function' ? appear : enter)\n : enter;\n var afterEnterHook = isAppear\n ? (afterAppear || afterEnter)\n : afterEnter;\n var enterCancelledHook = isAppear\n ? (appearCancelled || enterCancelled)\n : enterCancelled;\n\n var explicitEnterDuration = toNumber(\n isObject(duration)\n ? duration.enter\n : duration\n );\n\n if (process.env.NODE_ENV !== 'production' && explicitEnterDuration != null) {\n checkDuration(explicitEnterDuration, 'enter', vnode);\n }\n\n var expectsCSS = css !== false && !isIE9;\n var userWantsControl = getHookArgumentsLength(enterHook);\n\n var cb = el._enterCb = once(function () {\n if (expectsCSS) {\n removeTransitionClass(el, toClass);\n removeTransitionClass(el, activeClass);\n }\n if (cb.cancelled) {\n if (expectsCSS) {\n removeTransitionClass(el, startClass);\n }\n enterCancelledHook && enterCancelledHook(el);\n } else {\n afterEnterHook && afterEnterHook(el);\n }\n el._enterCb = null;\n });\n\n if (!vnode.data.show) {\n // remove pending leave element on enter by injecting an insert hook\n mergeVNodeHook(vnode, 'insert', function () {\n var parent = el.parentNode;\n var pendingNode = parent && parent._pending && parent._pending[vnode.key];\n if (pendingNode &&\n pendingNode.tag === vnode.tag &&\n pendingNode.elm._leaveCb\n ) {\n pendingNode.elm._leaveCb();\n }\n enterHook && enterHook(el, cb);\n });\n }\n\n // start enter transition\n beforeEnterHook && beforeEnterHook(el);\n if (expectsCSS) {\n addTransitionClass(el, startClass);\n addTransitionClass(el, activeClass);\n nextFrame(function () {\n removeTransitionClass(el, startClass);\n if (!cb.cancelled) {\n addTransitionClass(el, toClass);\n if (!userWantsControl) {\n if (isValidDuration(explicitEnterDuration)) {\n setTimeout(cb, explicitEnterDuration);\n } else {\n whenTransitionEnds(el, type, cb);\n }\n }\n }\n });\n }\n\n if (vnode.data.show) {\n toggleDisplay && toggleDisplay();\n enterHook && enterHook(el, cb);\n }\n\n if (!expectsCSS && !userWantsControl) {\n cb();\n }\n}\n\nfunction leave (vnode, rm) {\n var el = vnode.elm;\n\n // call enter callback now\n if (isDef(el._enterCb)) {\n el._enterCb.cancelled = true;\n el._enterCb();\n }\n\n var data = resolveTransition(vnode.data.transition);\n if (isUndef(data) || el.nodeType !== 1) {\n return rm()\n }\n\n /* istanbul ignore if */\n if (isDef(el._leaveCb)) {\n return\n }\n\n var css = data.css;\n var type = data.type;\n var leaveClass = data.leaveClass;\n var leaveToClass = data.leaveToClass;\n var leaveActiveClass = data.leaveActiveClass;\n var beforeLeave = data.beforeLeave;\n var leave = data.leave;\n var afterLeave = data.afterLeave;\n var leaveCancelled = data.leaveCancelled;\n var delayLeave = data.delayLeave;\n var duration = data.duration;\n\n var expectsCSS = css !== false && !isIE9;\n var userWantsControl = getHookArgumentsLength(leave);\n\n var explicitLeaveDuration = toNumber(\n isObject(duration)\n ? duration.leave\n : duration\n );\n\n if (process.env.NODE_ENV !== 'production' && isDef(explicitLeaveDuration)) {\n checkDuration(explicitLeaveDuration, 'leave', vnode);\n }\n\n var cb = el._leaveCb = once(function () {\n if (el.parentNode && el.parentNode._pending) {\n el.parentNode._pending[vnode.key] = null;\n }\n if (expectsCSS) {\n removeTransitionClass(el, leaveToClass);\n removeTransitionClass(el, leaveActiveClass);\n }\n if (cb.cancelled) {\n if (expectsCSS) {\n removeTransitionClass(el, leaveClass);\n }\n leaveCancelled && leaveCancelled(el);\n } else {\n rm();\n afterLeave && afterLeave(el);\n }\n el._leaveCb = null;\n });\n\n if (delayLeave) {\n delayLeave(performLeave);\n } else {\n performLeave();\n }\n\n function performLeave () {\n // the delayed leave may have already been cancelled\n if (cb.cancelled) {\n return\n }\n // record leaving element\n if (!vnode.data.show && el.parentNode) {\n (el.parentNode._pending || (el.parentNode._pending = {}))[(vnode.key)] = vnode;\n }\n beforeLeave && beforeLeave(el);\n if (expectsCSS) {\n addTransitionClass(el, leaveClass);\n addTransitionClass(el, leaveActiveClass);\n nextFrame(function () {\n removeTransitionClass(el, leaveClass);\n if (!cb.cancelled) {\n addTransitionClass(el, leaveToClass);\n if (!userWantsControl) {\n if (isValidDuration(explicitLeaveDuration)) {\n setTimeout(cb, explicitLeaveDuration);\n } else {\n whenTransitionEnds(el, type, cb);\n }\n }\n }\n });\n }\n leave && leave(el, cb);\n if (!expectsCSS && !userWantsControl) {\n cb();\n }\n }\n}\n\n// only used in dev mode\nfunction checkDuration (val, name, vnode) {\n if (typeof val !== 'number') {\n warn(\n \"<transition> explicit \" + name + \" duration is not a valid number - \" +\n \"got \" + (JSON.stringify(val)) + \".\",\n vnode.context\n );\n } else if (isNaN(val)) {\n warn(\n \"<transition> explicit \" + name + \" duration is NaN - \" +\n 'the duration expression might be incorrect.',\n vnode.context\n );\n }\n}\n\nfunction isValidDuration (val) {\n return typeof val === 'number' && !isNaN(val)\n}\n\n/**\n * Normalize a transition hook's argument length. The hook may be:\n * - a merged hook (invoker) with the original in .fns\n * - a wrapped component method (check ._length)\n * - a plain function (.length)\n */\nfunction getHookArgumentsLength (fn) {\n if (isUndef(fn)) {\n return false\n }\n var invokerFns = fn.fns;\n if (isDef(invokerFns)) {\n // invoker\n return getHookArgumentsLength(\n Array.isArray(invokerFns)\n ? invokerFns[0]\n : invokerFns\n )\n } else {\n return (fn._length || fn.length) > 1\n }\n}\n\nfunction _enter (_, vnode) {\n if (vnode.data.show !== true) {\n enter(vnode);\n }\n}\n\nvar transition = inBrowser ? {\n create: _enter,\n activate: _enter,\n remove: function remove$$1 (vnode, rm) {\n /* istanbul ignore else */\n if (vnode.data.show !== true) {\n leave(vnode, rm);\n } else {\n rm();\n }\n }\n} : {};\n\nvar platformModules = [\n attrs,\n klass,\n events,\n domProps,\n style,\n transition\n];\n\n/* */\n\n// the directive module should be applied last, after all\n// built-in modules have been applied.\nvar modules = platformModules.concat(baseModules);\n\nvar patch = createPatchFunction({ nodeOps: nodeOps, modules: modules });\n\n/**\n * Not type checking this file because flow doesn't like attaching\n * properties to Elements.\n */\n\n/* istanbul ignore if */\nif (isIE9) {\n // http://www.matts411.com/post/internet-explorer-9-oninput/\n document.addEventListener('selectionchange', function () {\n var el = document.activeElement;\n if (el && el.vmodel) {\n trigger(el, 'input');\n }\n });\n}\n\nvar directive = {\n inserted: function inserted (el, binding, vnode, oldVnode) {\n if (vnode.tag === 'select') {\n // #6903\n if (oldVnode.elm && !oldVnode.elm._vOptions) {\n mergeVNodeHook(vnode, 'postpatch', function () {\n directive.componentUpdated(el, binding, vnode);\n });\n } else {\n setSelected(el, binding, vnode.context);\n }\n el._vOptions = [].map.call(el.options, getValue);\n } else if (vnode.tag === 'textarea' || isTextInputType(el.type)) {\n el._vModifiers = binding.modifiers;\n if (!binding.modifiers.lazy) {\n el.addEventListener('compositionstart', onCompositionStart);\n el.addEventListener('compositionend', onCompositionEnd);\n // Safari < 10.2 & UIWebView doesn't fire compositionend when\n // switching focus before confirming composition choice\n // this also fixes the issue where some browsers e.g. iOS Chrome\n // fires \"change\" instead of \"input\" on autocomplete.\n el.addEventListener('change', onCompositionEnd);\n /* istanbul ignore if */\n if (isIE9) {\n el.vmodel = true;\n }\n }\n }\n },\n\n componentUpdated: function componentUpdated (el, binding, vnode) {\n if (vnode.tag === 'select') {\n setSelected(el, binding, vnode.context);\n // in case the options rendered by v-for have changed,\n // it's possible that the value is out-of-sync with the rendered options.\n // detect such cases and filter out values that no longer has a matching\n // option in the DOM.\n var prevOptions = el._vOptions;\n var curOptions = el._vOptions = [].map.call(el.options, getValue);\n if (curOptions.some(function (o, i) { return !looseEqual(o, prevOptions[i]); })) {\n // trigger change event if\n // no matching option found for at least one value\n var needReset = el.multiple\n ? binding.value.some(function (v) { return hasNoMatchingOption(v, curOptions); })\n : binding.value !== binding.oldValue && hasNoMatchingOption(binding.value, curOptions);\n if (needReset) {\n trigger(el, 'change');\n }\n }\n }\n }\n};\n\nfunction setSelected (el, binding, vm) {\n actuallySetSelected(el, binding, vm);\n /* istanbul ignore if */\n if (isIE || isEdge) {\n setTimeout(function () {\n actuallySetSelected(el, binding, vm);\n }, 0);\n }\n}\n\nfunction actuallySetSelected (el, binding, vm) {\n var value = binding.value;\n var isMultiple = el.multiple;\n if (isMultiple && !Array.isArray(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"<select multiple v-model=\\\"\" + (binding.expression) + \"\\\"> \" +\n \"expects an Array value for its binding, but got \" + (Object.prototype.toString.call(value).slice(8, -1)),\n vm\n );\n return\n }\n var selected, option;\n for (var i = 0, l = el.options.length; i < l; i++) {\n option = el.options[i];\n if (isMultiple) {\n selected = looseIndexOf(value, getValue(option)) > -1;\n if (option.selected !== selected) {\n option.selected = selected;\n }\n } else {\n if (looseEqual(getValue(option), value)) {\n if (el.selectedIndex !== i) {\n el.selectedIndex = i;\n }\n return\n }\n }\n }\n if (!isMultiple) {\n el.selectedIndex = -1;\n }\n}\n\nfunction hasNoMatchingOption (value, options) {\n return options.every(function (o) { return !looseEqual(o, value); })\n}\n\nfunction getValue (option) {\n return '_value' in option\n ? option._value\n : option.value\n}\n\nfunction onCompositionStart (e) {\n e.target.composing = true;\n}\n\nfunction onCompositionEnd (e) {\n // prevent triggering an input event for no reason\n if (!e.target.composing) { return }\n e.target.composing = false;\n trigger(e.target, 'input');\n}\n\nfunction trigger (el, type) {\n var e = document.createEvent('HTMLEvents');\n e.initEvent(type, true, true);\n el.dispatchEvent(e);\n}\n\n/* */\n\n// recursively search for possible transition defined inside the component root\nfunction locateNode (vnode) {\n return vnode.componentInstance && (!vnode.data || !vnode.data.transition)\n ? locateNode(vnode.componentInstance._vnode)\n : vnode\n}\n\nvar show = {\n bind: function bind (el, ref, vnode) {\n var value = ref.value;\n\n vnode = locateNode(vnode);\n var transition$$1 = vnode.data && vnode.data.transition;\n var originalDisplay = el.__vOriginalDisplay =\n el.style.display === 'none' ? '' : el.style.display;\n if (value && transition$$1) {\n vnode.data.show = true;\n enter(vnode, function () {\n el.style.display = originalDisplay;\n });\n } else {\n el.style.display = value ? originalDisplay : 'none';\n }\n },\n\n update: function update (el, ref, vnode) {\n var value = ref.value;\n var oldValue = ref.oldValue;\n\n /* istanbul ignore if */\n if (!value === !oldValue) { return }\n vnode = locateNode(vnode);\n var transition$$1 = vnode.data && vnode.data.transition;\n if (transition$$1) {\n vnode.data.show = true;\n if (value) {\n enter(vnode, function () {\n el.style.display = el.__vOriginalDisplay;\n });\n } else {\n leave(vnode, function () {\n el.style.display = 'none';\n });\n }\n } else {\n el.style.display = value ? el.__vOriginalDisplay : 'none';\n }\n },\n\n unbind: function unbind (\n el,\n binding,\n vnode,\n oldVnode,\n isDestroy\n ) {\n if (!isDestroy) {\n el.style.display = el.__vOriginalDisplay;\n }\n }\n};\n\nvar platformDirectives = {\n model: directive,\n show: show\n};\n\n/* */\n\nvar transitionProps = {\n name: String,\n appear: Boolean,\n css: Boolean,\n mode: String,\n type: String,\n enterClass: String,\n leaveClass: String,\n enterToClass: String,\n leaveToClass: String,\n enterActiveClass: String,\n leaveActiveClass: String,\n appearClass: String,\n appearActiveClass: String,\n appearToClass: String,\n duration: [Number, String, Object]\n};\n\n// in case the child is also an abstract component, e.g. <keep-alive>\n// we want to recursively retrieve the real component to be rendered\nfunction getRealChild (vnode) {\n var compOptions = vnode && vnode.componentOptions;\n if (compOptions && compOptions.Ctor.options.abstract) {\n return getRealChild(getFirstComponentChild(compOptions.children))\n } else {\n return vnode\n }\n}\n\nfunction extractTransitionData (comp) {\n var data = {};\n var options = comp.$options;\n // props\n for (var key in options.propsData) {\n data[key] = comp[key];\n }\n // events.\n // extract listeners and pass them directly to the transition methods\n var listeners = options._parentListeners;\n for (var key$1 in listeners) {\n data[camelize(key$1)] = listeners[key$1];\n }\n return data\n}\n\nfunction placeholder (h, rawChild) {\n if (/\\d-keep-alive$/.test(rawChild.tag)) {\n return h('keep-alive', {\n props: rawChild.componentOptions.propsData\n })\n }\n}\n\nfunction hasParentTransition (vnode) {\n while ((vnode = vnode.parent)) {\n if (vnode.data.transition) {\n return true\n }\n }\n}\n\nfunction isSameChild (child, oldChild) {\n return oldChild.key === child.key && oldChild.tag === child.tag\n}\n\nvar isNotTextNode = function (c) { return c.tag || isAsyncPlaceholder(c); };\n\nvar isVShowDirective = function (d) { return d.name === 'show'; };\n\nvar Transition = {\n name: 'transition',\n props: transitionProps,\n abstract: true,\n\n render: function render (h) {\n var this$1 = this;\n\n var children = this.$slots.default;\n if (!children) {\n return\n }\n\n // filter out text nodes (possible whitespaces)\n children = children.filter(isNotTextNode);\n /* istanbul ignore if */\n if (!children.length) {\n return\n }\n\n // warn multiple elements\n if (process.env.NODE_ENV !== 'production' && children.length > 1) {\n warn(\n '<transition> can only be used on a single element. Use ' +\n '<transition-group> for lists.',\n this.$parent\n );\n }\n\n var mode = this.mode;\n\n // warn invalid mode\n if (process.env.NODE_ENV !== 'production' &&\n mode && mode !== 'in-out' && mode !== 'out-in'\n ) {\n warn(\n 'invalid <transition> mode: ' + mode,\n this.$parent\n );\n }\n\n var rawChild = children[0];\n\n // if this is a component root node and the component's\n // parent container node also has transition, skip.\n if (hasParentTransition(this.$vnode)) {\n return rawChild\n }\n\n // apply transition data to child\n // use getRealChild() to ignore abstract components e.g. keep-alive\n var child = getRealChild(rawChild);\n /* istanbul ignore if */\n if (!child) {\n return rawChild\n }\n\n if (this._leaving) {\n return placeholder(h, rawChild)\n }\n\n // ensure a key that is unique to the vnode type and to this transition\n // component instance. This key will be used to remove pending leaving nodes\n // during entering.\n var id = \"__transition-\" + (this._uid) + \"-\";\n child.key = child.key == null\n ? child.isComment\n ? id + 'comment'\n : id + child.tag\n : isPrimitive(child.key)\n ? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)\n : child.key;\n\n var data = (child.data || (child.data = {})).transition = extractTransitionData(this);\n var oldRawChild = this._vnode;\n var oldChild = getRealChild(oldRawChild);\n\n // mark v-show\n // so that the transition module can hand over the control to the directive\n if (child.data.directives && child.data.directives.some(isVShowDirective)) {\n child.data.show = true;\n }\n\n if (\n oldChild &&\n oldChild.data &&\n !isSameChild(child, oldChild) &&\n !isAsyncPlaceholder(oldChild) &&\n // #6687 component root is a comment node\n !(oldChild.componentInstance && oldChild.componentInstance._vnode.isComment)\n ) {\n // replace old child transition data with fresh one\n // important for dynamic transitions!\n var oldData = oldChild.data.transition = extend({}, data);\n // handle transition mode\n if (mode === 'out-in') {\n // return placeholder node and queue update when leave finishes\n this._leaving = true;\n mergeVNodeHook(oldData, 'afterLeave', function () {\n this$1._leaving = false;\n this$1.$forceUpdate();\n });\n return placeholder(h, rawChild)\n } else if (mode === 'in-out') {\n if (isAsyncPlaceholder(child)) {\n return oldRawChild\n }\n var delayedLeave;\n var performLeave = function () { delayedLeave(); };\n mergeVNodeHook(data, 'afterEnter', performLeave);\n mergeVNodeHook(data, 'enterCancelled', performLeave);\n mergeVNodeHook(oldData, 'delayLeave', function (leave) { delayedLeave = leave; });\n }\n }\n\n return rawChild\n }\n};\n\n/* */\n\nvar props = extend({\n tag: String,\n moveClass: String\n}, transitionProps);\n\ndelete props.mode;\n\nvar TransitionGroup = {\n props: props,\n\n beforeMount: function beforeMount () {\n var this$1 = this;\n\n var update = this._update;\n this._update = function (vnode, hydrating) {\n var restoreActiveInstance = setActiveInstance(this$1);\n // force removing pass\n this$1.__patch__(\n this$1._vnode,\n this$1.kept,\n false, // hydrating\n true // removeOnly (!important, avoids unnecessary moves)\n );\n this$1._vnode = this$1.kept;\n restoreActiveInstance();\n update.call(this$1, vnode, hydrating);\n };\n },\n\n render: function render (h) {\n var tag = this.tag || this.$vnode.data.tag || 'span';\n var map = Object.create(null);\n var prevChildren = this.prevChildren = this.children;\n var rawChildren = this.$slots.default || [];\n var children = this.children = [];\n var transitionData = extractTransitionData(this);\n\n for (var i = 0; i < rawChildren.length; i++) {\n var c = rawChildren[i];\n if (c.tag) {\n if (c.key != null && String(c.key).indexOf('__vlist') !== 0) {\n children.push(c);\n map[c.key] = c\n ;(c.data || (c.data = {})).transition = transitionData;\n } else if (process.env.NODE_ENV !== 'production') {\n var opts = c.componentOptions;\n var name = opts ? (opts.Ctor.options.name || opts.tag || '') : c.tag;\n warn((\"<transition-group> children must be keyed: <\" + name + \">\"));\n }\n }\n }\n\n if (prevChildren) {\n var kept = [];\n var removed = [];\n for (var i$1 = 0; i$1 < prevChildren.length; i$1++) {\n var c$1 = prevChildren[i$1];\n c$1.data.transition = transitionData;\n c$1.data.pos = c$1.elm.getBoundingClientRect();\n if (map[c$1.key]) {\n kept.push(c$1);\n } else {\n removed.push(c$1);\n }\n }\n this.kept = h(tag, null, kept);\n this.removed = removed;\n }\n\n return h(tag, null, children)\n },\n\n updated: function updated () {\n var children = this.prevChildren;\n var moveClass = this.moveClass || ((this.name || 'v') + '-move');\n if (!children.length || !this.hasMove(children[0].elm, moveClass)) {\n return\n }\n\n // we divide the work into three loops to avoid mixing DOM reads and writes\n // in each iteration - which helps prevent layout thrashing.\n children.forEach(callPendingCbs);\n children.forEach(recordPosition);\n children.forEach(applyTranslation);\n\n // force reflow to put everything in position\n // assign to this to avoid being removed in tree-shaking\n // $flow-disable-line\n this._reflow = document.body.offsetHeight;\n\n children.forEach(function (c) {\n if (c.data.moved) {\n var el = c.elm;\n var s = el.style;\n addTransitionClass(el, moveClass);\n s.transform = s.WebkitTransform = s.transitionDuration = '';\n el.addEventListener(transitionEndEvent, el._moveCb = function cb (e) {\n if (e && e.target !== el) {\n return\n }\n if (!e || /transform$/.test(e.propertyName)) {\n el.removeEventListener(transitionEndEvent, cb);\n el._moveCb = null;\n removeTransitionClass(el, moveClass);\n }\n });\n }\n });\n },\n\n methods: {\n hasMove: function hasMove (el, moveClass) {\n /* istanbul ignore if */\n if (!hasTransition) {\n return false\n }\n /* istanbul ignore if */\n if (this._hasMove) {\n return this._hasMove\n }\n // Detect whether an element with the move class applied has\n // CSS transitions. Since the element may be inside an entering\n // transition at this very moment, we make a clone of it and remove\n // all other transition classes applied to ensure only the move class\n // is applied.\n var clone = el.cloneNode();\n if (el._transitionClasses) {\n el._transitionClasses.forEach(function (cls) { removeClass(clone, cls); });\n }\n addClass(clone, moveClass);\n clone.style.display = 'none';\n this.$el.appendChild(clone);\n var info = getTransitionInfo(clone);\n this.$el.removeChild(clone);\n return (this._hasMove = info.hasTransform)\n }\n }\n};\n\nfunction callPendingCbs (c) {\n /* istanbul ignore if */\n if (c.elm._moveCb) {\n c.elm._moveCb();\n }\n /* istanbul ignore if */\n if (c.elm._enterCb) {\n c.elm._enterCb();\n }\n}\n\nfunction recordPosition (c) {\n c.data.newPos = c.elm.getBoundingClientRect();\n}\n\nfunction applyTranslation (c) {\n var oldPos = c.data.pos;\n var newPos = c.data.newPos;\n var dx = oldPos.left - newPos.left;\n var dy = oldPos.top - newPos.top;\n if (dx || dy) {\n c.data.moved = true;\n var s = c.elm.style;\n s.transform = s.WebkitTransform = \"translate(\" + dx + \"px,\" + dy + \"px)\";\n s.transitionDuration = '0s';\n }\n}\n\nvar platformComponents = {\n Transition: Transition,\n TransitionGroup: TransitionGroup\n};\n\n/* */\n\n// install platform specific utils\nVue.config.mustUseProp = mustUseProp;\nVue.config.isReservedTag = isReservedTag;\nVue.config.isReservedAttr = isReservedAttr;\nVue.config.getTagNamespace = getTagNamespace;\nVue.config.isUnknownElement = isUnknownElement;\n\n// install platform runtime directives & components\nextend(Vue.options.directives, platformDirectives);\nextend(Vue.options.components, platformComponents);\n\n// install platform patch function\nVue.prototype.__patch__ = inBrowser ? patch : noop;\n\n// public mount method\nVue.prototype.$mount = function (\n el,\n hydrating\n) {\n el = el && inBrowser ? query(el) : undefined;\n return mountComponent(this, el, hydrating)\n};\n\n// devtools global hook\n/* istanbul ignore next */\nif (inBrowser) {\n setTimeout(function () {\n if (config.devtools) {\n if (devtools) {\n devtools.emit('init', Vue);\n } else if (\n process.env.NODE_ENV !== 'production' &&\n process.env.NODE_ENV !== 'test'\n ) {\n console[console.info ? 'info' : 'log'](\n 'Download the Vue Devtools extension for a better development experience:\\n' +\n 'https://github.com/vuejs/vue-devtools'\n );\n }\n }\n if (process.env.NODE_ENV !== 'production' &&\n process.env.NODE_ENV !== 'test' &&\n config.productionTip !== false &&\n typeof console !== 'undefined'\n ) {\n console[console.info ? 'info' : 'log'](\n \"You are running Vue in development mode.\\n\" +\n \"Make sure to turn on production mode when deploying for production.\\n\" +\n \"See more tips at https://vuejs.org/guide/deployment.html\"\n );\n }\n }, 0);\n}\n\n/* */\n\nexport default Vue;\n","var fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar split = ''.split;\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins\n return !Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split.call(it, '') : Object(it);\n} : Object;\n","var isObject = require('../internals/is-object');\n\n// `ToPrimitive` abstract operation\n// https://tc39.es/ecma262/#sec-toprimitive\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (input, PREFERRED_STRING) {\n if (!isObject(input)) return input;\n var fn, val;\n if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;\n if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nmodule.exports = function (key, value) {\n try {\n createNonEnumerableProperty(global, key, value);\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","var global = require('../internals/global');\nvar setGlobal = require('../internals/set-global');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || setGlobal(SHARED, {});\n\nmodule.exports = store;\n","var shared = require('../internals/shared');\nvar uid = require('../internals/uid');\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n","module.exports = false;\n","var id = 0;\nvar postfix = Math.random();\n\nmodule.exports = function (key) {\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\n};\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","// shim for using process in browser\nvar process = module.exports = {};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break things. But we need to wrap it in a try catch in case it is\n// wrapped in strict mode code which doesn't define any globals. It's inside a\n// function because try/catches deoptimize in certain engines.\n\nvar cachedSetTimeout;\nvar cachedClearTimeout;\n\nfunction defaultSetTimout() {\n throw new Error('setTimeout has not been defined');\n}\nfunction defaultClearTimeout () {\n throw new Error('clearTimeout has not been defined');\n}\n(function () {\n try {\n if (typeof setTimeout === 'function') {\n cachedSetTimeout = setTimeout;\n } else {\n cachedSetTimeout = defaultSetTimout;\n }\n } catch (e) {\n cachedSetTimeout = defaultSetTimout;\n }\n try {\n if (typeof clearTimeout === 'function') {\n cachedClearTimeout = clearTimeout;\n } else {\n cachedClearTimeout = defaultClearTimeout;\n }\n } catch (e) {\n cachedClearTimeout = defaultClearTimeout;\n }\n} ())\nfunction runTimeout(fun) {\n if (cachedSetTimeout === setTimeout) {\n //normal enviroments in sane situations\n return setTimeout(fun, 0);\n }\n // if setTimeout wasn't available but was latter defined\n if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n cachedSetTimeout = setTimeout;\n return setTimeout(fun, 0);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedSetTimeout(fun, 0);\n } catch(e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedSetTimeout.call(null, fun, 0);\n } catch(e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n return cachedSetTimeout.call(this, fun, 0);\n }\n }\n\n\n}\nfunction runClearTimeout(marker) {\n if (cachedClearTimeout === clearTimeout) {\n //normal enviroments in sane situations\n return clearTimeout(marker);\n }\n // if clearTimeout wasn't available but was latter defined\n if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n cachedClearTimeout = clearTimeout;\n return clearTimeout(marker);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedClearTimeout(marker);\n } catch (e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedClearTimeout.call(null, marker);\n } catch (e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n return cachedClearTimeout.call(this, marker);\n }\n }\n\n\n\n}\nvar queue = [];\nvar draining = false;\nvar currentQueue;\nvar queueIndex = -1;\n\nfunction cleanUpNextTick() {\n if (!draining || !currentQueue) {\n return;\n }\n draining = false;\n if (currentQueue.length) {\n queue = currentQueue.concat(queue);\n } else {\n queueIndex = -1;\n }\n if (queue.length) {\n drainQueue();\n }\n}\n\nfunction drainQueue() {\n if (draining) {\n return;\n }\n var timeout = runTimeout(cleanUpNextTick);\n draining = true;\n\n var len = queue.length;\n while(len) {\n currentQueue = queue;\n queue = [];\n while (++queueIndex < len) {\n if (currentQueue) {\n currentQueue[queueIndex].run();\n }\n }\n queueIndex = -1;\n len = queue.length;\n }\n currentQueue = null;\n draining = false;\n runClearTimeout(timeout);\n}\n\nprocess.nextTick = function (fun) {\n var args = new Array(arguments.length - 1);\n if (arguments.length > 1) {\n for (var i = 1; i < arguments.length; i++) {\n args[i - 1] = arguments[i];\n }\n }\n queue.push(new Item(fun, args));\n if (queue.length === 1 && !draining) {\n runTimeout(drainQueue);\n }\n};\n\n// v8 likes predictible objects\nfunction Item(fun, array) {\n this.fun = fun;\n this.array = array;\n}\nItem.prototype.run = function () {\n this.fun.apply(null, this.array);\n};\nprocess.title = 'browser';\nprocess.browser = true;\nprocess.env = {};\nprocess.argv = [];\nprocess.version = ''; // empty string to avoid regexp issues\nprocess.versions = {};\n\nfunction noop() {}\n\nprocess.on = noop;\nprocess.addListener = noop;\nprocess.once = noop;\nprocess.off = noop;\nprocess.removeListener = noop;\nprocess.removeAllListeners = noop;\nprocess.emit = noop;\nprocess.prependListener = noop;\nprocess.prependOnceListener = noop;\n\nprocess.listeners = function (name) { return [] }\n\nprocess.binding = function (name) {\n throw new Error('process.binding is not supported');\n};\n\nprocess.cwd = function () { return '/' };\nprocess.chdir = function (dir) {\n throw new Error('process.chdir is not supported');\n};\nprocess.umask = function() { return 0; };\n","var aFunction = require('../internals/a-function');\n\n// optional / simple context binding\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 0: return function () {\n return fn.call(that);\n };\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar has = require('../internals/has');\n\nvar defineProperty = Object.defineProperty;\nvar cache = {};\n\nvar thrower = function (it) { throw it; };\n\nmodule.exports = function (METHOD_NAME, options) {\n if (has(cache, METHOD_NAME)) return cache[METHOD_NAME];\n if (!options) options = {};\n var method = [][METHOD_NAME];\n var ACCESSORS = has(options, 'ACCESSORS') ? options.ACCESSORS : false;\n var argument0 = has(options, 0) ? options[0] : thrower;\n var argument1 = has(options, 1) ? options[1] : undefined;\n\n return cache[METHOD_NAME] = !!method && !fails(function () {\n if (ACCESSORS && !DESCRIPTORS) return true;\n var O = { length: -1 };\n\n if (ACCESSORS) defineProperty(O, 1, { enumerable: true, get: thrower });\n else O[1] = 1;\n\n method.call(O, argument0, argument1);\n });\n};\n","// Note: this is the semver.org version of the spec that it implements\n// Not necessarily the package version of this code.\nconst SEMVER_SPEC_VERSION = '2.0.0'\n\nconst MAX_LENGTH = 256\nconst MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER ||\n /* istanbul ignore next */ 9007199254740991\n\n// Max safe segment length for coercion.\nconst MAX_SAFE_COMPONENT_LENGTH = 16\n\nmodule.exports = {\n SEMVER_SPEC_VERSION,\n MAX_LENGTH,\n MAX_SAFE_INTEGER,\n MAX_SAFE_COMPONENT_LENGTH\n}\n","var anObject = require('../internals/an-object');\nvar defineProperties = require('../internals/object-define-properties');\nvar enumBugKeys = require('../internals/enum-bug-keys');\nvar hiddenKeys = require('../internals/hidden-keys');\nvar html = require('../internals/html');\nvar documentCreateElement = require('../internals/document-create-element');\nvar sharedKey = require('../internals/shared-key');\n\nvar GT = '>';\nvar LT = '<';\nvar PROTOTYPE = 'prototype';\nvar SCRIPT = 'script';\nvar IE_PROTO = sharedKey('IE_PROTO');\n\nvar EmptyConstructor = function () { /* empty */ };\n\nvar scriptTag = function (content) {\n return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;\n};\n\n// Create object with fake `null` prototype: use ActiveX Object with cleared prototype\nvar NullProtoObjectViaActiveX = function (activeXDocument) {\n activeXDocument.write(scriptTag(''));\n activeXDocument.close();\n var temp = activeXDocument.parentWindow.Object;\n activeXDocument = null; // avoid memory leak\n return temp;\n};\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar NullProtoObjectViaIFrame = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = documentCreateElement('iframe');\n var JS = 'java' + SCRIPT + ':';\n var iframeDocument;\n iframe.style.display = 'none';\n html.appendChild(iframe);\n // https://github.com/zloirock/core-js/issues/475\n iframe.src = String(JS);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(scriptTag('document.F=Object'));\n iframeDocument.close();\n return iframeDocument.F;\n};\n\n// Check for document.domain and active x support\n// No need to use active x approach when document.domain is not set\n// see https://github.com/es-shims/es5-shim/issues/150\n// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346\n// avoid IE GC bug\nvar activeXDocument;\nvar NullProtoObject = function () {\n try {\n /* global ActiveXObject */\n activeXDocument = document.domain && new ActiveXObject('htmlfile');\n } catch (error) { /* ignore */ }\n NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();\n var length = enumBugKeys.length;\n while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];\n return NullProtoObject();\n};\n\nhiddenKeys[IE_PROTO] = true;\n\n// `Object.create` method\n// https://tc39.es/ecma262/#sec-object.create\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n EmptyConstructor[PROTOTYPE] = anObject(O);\n result = new EmptyConstructor();\n EmptyConstructor[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = NullProtoObject();\n return Properties === undefined ? result : defineProperties(result, Properties);\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar createIteratorConstructor = require('../internals/create-iterator-constructor');\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\nvar Iterators = require('../internals/iterators');\nvar IteratorsCore = require('../internals/iterators-core');\n\nvar IteratorPrototype = IteratorsCore.IteratorPrototype;\nvar BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;\nvar ITERATOR = wellKnownSymbol('iterator');\nvar KEYS = 'keys';\nvar VALUES = 'values';\nvar ENTRIES = 'entries';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {\n createIteratorConstructor(IteratorConstructor, NAME, next);\n\n var getIterationMethod = function (KIND) {\n if (KIND === DEFAULT && defaultIterator) return defaultIterator;\n if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];\n switch (KIND) {\n case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };\n case VALUES: return function values() { return new IteratorConstructor(this, KIND); };\n case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };\n } return function () { return new IteratorConstructor(this); };\n };\n\n var TO_STRING_TAG = NAME + ' Iterator';\n var INCORRECT_VALUES_NAME = false;\n var IterablePrototype = Iterable.prototype;\n var nativeIterator = IterablePrototype[ITERATOR]\n || IterablePrototype['@@iterator']\n || DEFAULT && IterablePrototype[DEFAULT];\n var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);\n var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;\n var CurrentIteratorPrototype, methods, KEY;\n\n // fix native\n if (anyNativeIterator) {\n CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));\n if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {\n if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {\n if (setPrototypeOf) {\n setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);\n } else if (typeof CurrentIteratorPrototype[ITERATOR] != 'function') {\n createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR, returnThis);\n }\n }\n // Set @@toStringTag to native iterators\n setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);\n if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;\n }\n }\n\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {\n INCORRECT_VALUES_NAME = true;\n defaultIterator = function values() { return nativeIterator.call(this); };\n }\n\n // define iterator\n if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {\n createNonEnumerableProperty(IterablePrototype, ITERATOR, defaultIterator);\n }\n Iterators[NAME] = defaultIterator;\n\n // export additional methods\n if (DEFAULT) {\n methods = {\n values: getIterationMethod(VALUES),\n keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),\n entries: getIterationMethod(ENTRIES)\n };\n if (FORCED) for (KEY in methods) {\n if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {\n redefine(IterablePrototype, KEY, methods[KEY]);\n }\n } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);\n }\n\n return methods;\n};\n","var defineProperty = require('../internals/object-define-property').f;\nvar has = require('../internals/has');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n\nmodule.exports = function (it, TAG, STATIC) {\n if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {\n defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG });\n }\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar test = {};\n\ntest[TO_STRING_TAG] = 'z';\n\nmodule.exports = String(test) === '[object z]';\n","'use strict';\nvar regexpFlags = require('./regexp-flags');\nvar stickyHelpers = require('./regexp-sticky-helpers');\n\nvar nativeExec = RegExp.prototype.exec;\n// This always refers to the native implementation, because the\n// String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js,\n// which loads this file before patching the method.\nvar nativeReplace = String.prototype.replace;\n\nvar patchedExec = nativeExec;\n\nvar UPDATES_LAST_INDEX_WRONG = (function () {\n var re1 = /a/;\n var re2 = /b*/g;\n nativeExec.call(re1, 'a');\n nativeExec.call(re2, 'a');\n return re1.lastIndex !== 0 || re2.lastIndex !== 0;\n})();\n\nvar UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y || stickyHelpers.BROKEN_CARET;\n\n// nonparticipating capturing group, copied from es5-shim's String#split patch.\nvar NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;\n\nvar PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y;\n\nif (PATCH) {\n patchedExec = function exec(str) {\n var re = this;\n var lastIndex, reCopy, match, i;\n var sticky = UNSUPPORTED_Y && re.sticky;\n var flags = regexpFlags.call(re);\n var source = re.source;\n var charsAdded = 0;\n var strCopy = str;\n\n if (sticky) {\n flags = flags.replace('y', '');\n if (flags.indexOf('g') === -1) {\n flags += 'g';\n }\n\n strCopy = String(str).slice(re.lastIndex);\n // Support anchored sticky behavior.\n if (re.lastIndex > 0 && (!re.multiline || re.multiline && str[re.lastIndex - 1] !== '\\n')) {\n source = '(?: ' + source + ')';\n strCopy = ' ' + strCopy;\n charsAdded++;\n }\n // ^(? + rx + ) is needed, in combination with some str slicing, to\n // simulate the 'y' flag.\n reCopy = new RegExp('^(?:' + source + ')', flags);\n }\n\n if (NPCG_INCLUDED) {\n reCopy = new RegExp('^' + source + '$(?!\\\\s)', flags);\n }\n if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;\n\n match = nativeExec.call(sticky ? reCopy : re, strCopy);\n\n if (sticky) {\n if (match) {\n match.input = match.input.slice(charsAdded);\n match[0] = match[0].slice(charsAdded);\n match.index = re.lastIndex;\n re.lastIndex += match[0].length;\n } else re.lastIndex = 0;\n } else if (UPDATES_LAST_INDEX_WRONG && match) {\n re.lastIndex = re.global ? match.index + match[0].length : lastIndex;\n }\n if (NPCG_INCLUDED && match && match.length > 1) {\n // Fix browsers whose `exec` methods don't consistently return `undefined`\n // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/\n nativeReplace.call(match[0], reCopy, function () {\n for (i = 1; i < arguments.length - 2; i++) {\n if (arguments[i] === undefined) match[i] = undefined;\n }\n });\n }\n\n return match;\n };\n}\n\nmodule.exports = patchedExec;\n","\"use strict\";\n\nrequire(\"core-js/modules/es.object.assign.js\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _axios = _interopRequireDefault(require(\"axios\"));\n\nvar _auth = require(\"@nextcloud/auth\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar client = _axios.default.create({\n headers: {\n requesttoken: (0, _auth.getRequestToken)()\n }\n});\n\nvar cancelableClient = Object.assign(client, {\n CancelToken: _axios.default.CancelToken,\n isCancel: _axios.default.isCancel\n});\n(0, _auth.onRequestTokenUpdate)(function (token) {\n return client.defaults.headers.requesttoken = token;\n});\nvar _default = cancelableClient;\nexports.default = _default;\n//# sourceMappingURL=index.js.map","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/cssWithMappingToString.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \"\\n.icon-toggle[data-v-665ff3f1],\\n.icon-delete[data-v-665ff3f1] {\\n\\tdisplay: inline-block;\\n\\twidth: 16px;\\n\\theight: 16px;\\n\\tpadding: 10px;\\n\\tvertical-align: middle;\\n}\\ntd code[data-v-665ff3f1] {\\n\\tdisplay: inline-block;\\n\\tvertical-align: middle;\\n}\\ntable.inline td[data-v-665ff3f1] {\\n\\tborder: none;\\n\\tpadding: 5px;\\n}\\n\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/oauth2/src/components/OAuthItem.vue\"],\"names\":[],\"mappings\":\";AAsFA;;CAEA,qBAAA;CACA,WAAA;CACA,YAAA;CACA,aAAA;CACA,sBAAA;AACA;AACA;CACA,qBAAA;CACA,sBAAA;AACA;AACA;CACA,YAAA;CACA,YAAA;AACA\",\"sourcesContent\":[\"<!--\\n - @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl>\\n -\\n - @author Roeland Jago Douma <roeland@famdouma.nl>\\n -\\n - @license GNU AGPL version 3 or any later version\\n -\\n - This program is free software: you can redistribute it and/or modify\\n - it under the terms of the GNU Affero General Public License as\\n - published by the Free Software Foundation, either version 3 of the\\n - License, or (at your option) any later version.\\n -\\n - This program is distributed in the hope that it will be useful,\\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\\n - GNU Affero General Public License for more details.\\n -\\n - You should have received a copy of the GNU Affero General Public License\\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\\n -\\n -->\\n<template>\\n\\t<tr>\\n\\t\\t<td>\\n\\t\\t\\t<table class=\\\"inline\\\">\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>{{ t('oauth2', 'Name') }}</td>\\n\\t\\t\\t\\t\\t<td>{{ name }}</td>\\n\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>{{ t('oauth2', 'Redirection URI') }}</td>\\n\\t\\t\\t\\t\\t<td>{{ redirectUri }}</td>\\n\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>{{ t('oauth2', 'Client Identifier') }}</td>\\n\\t\\t\\t\\t\\t<td><code>{{ clientId }}</code></td>\\n\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>{{ t('oauth2', 'Secret') }}</td>\\n\\t\\t\\t\\t\\t<td><code>{{ renderedSecret }}</code><a class=\\\"icon-toggle has-tooltip\\\" :title=\\\"t('oauth2', 'Show client secret')\\\" @click=\\\"toggleSecret\\\" /></td>\\n\\t\\t\\t\\t</tr>\\n\\t\\t\\t</table>\\n\\t\\t</td>\\n\\t\\t<td class=\\\"action-column\\\">\\n\\t\\t\\t<span><a class=\\\"icon-delete has-tooltip\\\" :title=\\\"t('oauth2', 'Delete')\\\" @click=\\\"$emit('delete', id)\\\" /></span>\\n\\t\\t</td>\\n\\t</tr>\\n</template>\\n\\n<script>\\nexport default {\\n\\tname: 'OAuthItem',\\n\\tprops: {\\n\\t\\tclient: {\\n\\t\\t\\ttype: Object,\\n\\t\\t\\trequired: true,\\n\\t\\t},\\n\\t},\\n\\tdata() {\\n\\t\\treturn {\\n\\t\\t\\tid: this.client.id,\\n\\t\\t\\tname: this.client.name,\\n\\t\\t\\tredirectUri: this.client.redirectUri,\\n\\t\\t\\tclientId: this.client.clientId,\\n\\t\\t\\tclientSecret: this.client.clientSecret,\\n\\t\\t\\trenderSecret: false,\\n\\t\\t}\\n\\t},\\n\\tcomputed: {\\n\\t\\trenderedSecret() {\\n\\t\\t\\tif (this.renderSecret) {\\n\\t\\t\\t\\treturn this.clientSecret\\n\\t\\t\\t} else {\\n\\t\\t\\t\\treturn '****'\\n\\t\\t\\t}\\n\\t\\t},\\n\\t},\\n\\tmethods: {\\n\\t\\ttoggleSecret() {\\n\\t\\t\\tthis.renderSecret = !this.renderSecret\\n\\t\\t},\\n\\t},\\n}\\n</script>\\n\\n<style scoped>\\n\\t.icon-toggle,\\n\\t.icon-delete {\\n\\t\\tdisplay: inline-block;\\n\\t\\twidth: 16px;\\n\\t\\theight: 16px;\\n\\t\\tpadding: 10px;\\n\\t\\tvertical-align: middle;\\n\\t}\\n\\ttd code {\\n\\t\\tdisplay: inline-block;\\n\\t\\tvertical-align: middle;\\n\\t}\\n\\ttable.inline td {\\n\\t\\tborder: none;\\n\\t\\tpadding: 5px;\\n\\t}\\n</style>\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","\"use strict\";\n\nrequire(\"core-js/modules/es.array.index-of\");\n\nrequire(\"core-js/modules/es.object.assign\");\n\nrequire(\"core-js/modules/es.object.to-string\");\n\nrequire(\"core-js/modules/es.regexp.exec\");\n\nrequire(\"core-js/modules/es.regexp.to-string\");\n\nrequire(\"core-js/modules/es.string.replace\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getRootUrl = exports.generateFilePath = exports.imagePath = exports.generateUrl = exports.generateOcsUrl = exports.generateRemoteUrl = exports.linkTo = void 0;\n\n/// <reference types=\"@nextcloud/typings\" />\n\n/**\n * Get an absolute url to a file in an app\n *\n * @param {string} app the id of the app the file belongs to\n * @param {string} file the file path relative to the app folder\n * @return {string} Absolute URL to a file\n */\nvar linkTo = function linkTo(app, file) {\n return generateFilePath(app, '', file);\n};\n/**\n * Creates a relative url for remote use\n *\n * @param {string} service id\n * @return {string} the url\n */\n\n\nexports.linkTo = linkTo;\n\nvar linkToRemoteBase = function linkToRemoteBase(service) {\n return getRootUrl() + '/remote.php/' + service;\n};\n/**\n * @brief Creates an absolute url for remote use\n * @param {string} service id\n * @return {string} the url\n */\n\n\nvar generateRemoteUrl = function generateRemoteUrl(service) {\n return window.location.protocol + '//' + window.location.host + linkToRemoteBase(service);\n};\n/**\n * Get the base path for the given OCS API service\n *\n * @param {string} service name\n * @param {int} version OCS API version\n * @return {string} OCS API base path\n */\n\n\nexports.generateRemoteUrl = generateRemoteUrl;\n\nvar generateOcsUrl = function generateOcsUrl(service, version) {\n version = version !== 2 ? 1 : 2;\n return window.location.protocol + '//' + window.location.host + getRootUrl() + '/ocs/v' + version + '.php/' + service + '/';\n};\n\nexports.generateOcsUrl = generateOcsUrl;\n\n/**\n * Generate the absolute url for the given relative url, which can contain parameters\n *\n * Parameters will be URL encoded automatically\n *\n * @return {string} Absolute URL for the given relative URL\n */\nvar generateUrl = function generateUrl(url, params, options) {\n var allOptions = Object.assign({\n escape: true,\n noRewrite: false\n }, options || {});\n\n var _build = function _build(text, vars) {\n vars = vars || {};\n return text.replace(/{([^{}]*)}/g, function (a, b) {\n var r = vars[b];\n\n if (allOptions.escape) {\n return typeof r === 'string' || typeof r === 'number' ? encodeURIComponent(r.toString()) : encodeURIComponent(a);\n } else {\n return typeof r === 'string' || typeof r === 'number' ? r.toString() : a;\n }\n });\n };\n\n if (url.charAt(0) !== '/') {\n url = '/' + url;\n }\n\n if (OC.config.modRewriteWorking === true && !allOptions.noRewrite) {\n return getRootUrl() + _build(url, params || {});\n }\n\n return getRootUrl() + '/index.php' + _build(url, params || {});\n};\n/**\n * Get the absolute path to an image file\n * if no extension is given for the image, it will automatically decide\n * between .png and .svg based on what the browser supports\n *\n * @param {string} app the app id to which the image belongs\n * @param {string} file the name of the image file\n * @return {string}\n */\n\n\nexports.generateUrl = generateUrl;\n\nvar imagePath = function imagePath(app, file) {\n if (file.indexOf('.') === -1) {\n //if no extension is given, use svg\n return generateFilePath(app, 'img', file + '.svg');\n }\n\n return generateFilePath(app, 'img', file);\n};\n/**\n * Get the absolute url for a file in an app\n *\n * @param {string} app the id of the app\n * @param {string} type the type of the file to link to (e.g. css,img,ajax.template)\n * @param {string} file the filename\n * @return {string} Absolute URL for a file in an app\n */\n\n\nexports.imagePath = imagePath;\n\nvar generateFilePath = function generateFilePath(app, type, file) {\n var isCore = OC.coreApps.indexOf(app) !== -1;\n var link = getRootUrl();\n\n if (file.substring(file.length - 3) === 'php' && !isCore) {\n link += '/index.php/apps/' + app;\n\n if (file !== 'index.php') {\n link += '/';\n\n if (type) {\n link += encodeURI(type + '/');\n }\n\n link += file;\n }\n } else if (file.substring(file.length - 3) !== 'php' && !isCore) {\n link = OC.appswebroots[app];\n\n if (type) {\n link += '/' + type + '/';\n }\n\n if (link.substring(link.length - 1) !== '/') {\n link += '/';\n }\n\n link += file;\n } else {\n if ((app === 'settings' || app === 'core' || app === 'search') && type === 'ajax') {\n link += '/index.php/';\n } else {\n link += '/';\n }\n\n if (!isCore) {\n link += 'apps/';\n }\n\n if (app !== '') {\n app += '/';\n link += app;\n }\n\n if (type) {\n link += type + '/';\n }\n\n link += file;\n }\n\n return link;\n};\n/**\n * Return the web root path where this Nextcloud instance\n * is accessible, with a leading slash.\n * For example \"/nextcloud\".\n *\n * @return {string} web root path\n */\n\n\nexports.generateFilePath = generateFilePath;\n\nvar getRootUrl = function getRootUrl() {\n return OC.webroot;\n};\n\nexports.getRootUrl = getRootUrl;\n//# sourceMappingURL=index.js.map","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../node_modules/css-loader/dist/runtime/cssWithMappingToString.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \"\\ntable[data-v-0c0547db] {\\n\\tmax-width: 800px;\\n}\\n\", \"\",{\"version\":3,\"sources\":[\"webpack://./apps/oauth2/src/App.vue\"],\"names\":[],\"mappings\":\";AAyHA;CACA,gBAAA;AACA\",\"sourcesContent\":[\"<!--\\n - @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl>\\n -\\n - @author Roeland Jago Douma <roeland@famdouma.nl>\\n -\\n - @license GNU AGPL version 3 or any later version\\n -\\n - This program is free software: you can redistribute it and/or modify\\n - it under the terms of the GNU Affero General Public License as\\n - published by the Free Software Foundation, either version 3 of the\\n - License, or (at your option) any later version.\\n -\\n - This program is distributed in the hope that it will be useful,\\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\\n - GNU Affero General Public License for more details.\\n -\\n - You should have received a copy of the GNU Affero General Public License\\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\\n -\\n -->\\n<template>\\n\\t<div id=\\\"oauth2\\\" class=\\\"section\\\">\\n\\t\\t<h2>{{ t('oauth2', 'OAuth 2.0 clients') }}</h2>\\n\\t\\t<p class=\\\"settings-hint\\\">\\n\\t\\t\\t{{ t('oauth2', 'OAuth 2.0 allows external services to request access to {instanceName}.', { instanceName: OC.theme.name}) }}\\n\\t\\t</p>\\n\\t\\t<table v-if=\\\"clients.length > 0\\\" class=\\\"grid\\\">\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th id=\\\"headerContent\\\">\\n\\n\\t\\t\\t\\t\\t</th>\\n\\t\\t\\t\\t\\t<th id=\\\"headerRemove\\\">\\n \\n\\t\\t\\t\\t\\t</th>\\n\\t\\t\\t\\t</tr>\\n\\t\\t\\t</thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<OAuthItem v-for=\\\"client in clients\\\"\\n\\t\\t\\t\\t\\t:key=\\\"client.id\\\"\\n\\t\\t\\t\\t\\t:client=\\\"client\\\"\\n\\t\\t\\t\\t\\t@delete=\\\"deleteClient\\\" />\\n\\t\\t\\t</tbody>\\n\\t\\t</table>\\n\\n\\t\\t<br>\\n\\t\\t<h3>{{ t('oauth2', 'Add client') }}</h3>\\n\\t\\t<span v-if=\\\"newClient.error\\\" class=\\\"msg error\\\">{{ newClient.errorMsg }}</span>\\n\\t\\t<form @submit.prevent=\\\"addClient\\\">\\n\\t\\t\\t<input id=\\\"name\\\"\\n\\t\\t\\t\\tv-model=\\\"newClient.name\\\"\\n\\t\\t\\t\\ttype=\\\"text\\\"\\n\\t\\t\\t\\tname=\\\"name\\\"\\n\\t\\t\\t\\t:placeholder=\\\"t('oauth2', 'Name')\\\">\\n\\t\\t\\t<input id=\\\"redirectUri\\\"\\n\\t\\t\\t\\tv-model=\\\"newClient.redirectUri\\\"\\n\\t\\t\\t\\ttype=\\\"url\\\"\\n\\t\\t\\t\\tname=\\\"redirectUri\\\"\\n\\t\\t\\t\\t:placeholder=\\\"t('oauth2', 'Redirection URI')\\\">\\n\\t\\t\\t<input type=\\\"submit\\\" class=\\\"button\\\" :value=\\\"t('oauth2', 'Add')\\\">\\n\\t\\t</form>\\n\\t</div>\\n</template>\\n\\n<script>\\nimport axios from '@nextcloud/axios'\\nimport OAuthItem from './components/OAuthItem'\\nimport { generateUrl } from '@nextcloud/router'\\n\\nexport default {\\n\\tname: 'App',\\n\\tcomponents: {\\n\\t\\tOAuthItem,\\n\\t},\\n\\tprops: {\\n\\t\\tclients: {\\n\\t\\t\\ttype: Array,\\n\\t\\t\\trequired: true,\\n\\t\\t},\\n\\t},\\n\\tdata() {\\n\\t\\treturn {\\n\\t\\t\\tnewClient: {\\n\\t\\t\\t\\tname: '',\\n\\t\\t\\t\\tredirectUri: '',\\n\\t\\t\\t\\terrorMsg: '',\\n\\t\\t\\t\\terror: false,\\n\\t\\t\\t},\\n\\t\\t}\\n\\t},\\n\\tmethods: {\\n\\t\\tdeleteClient(id) {\\n\\t\\t\\taxios.delete(generateUrl('apps/oauth2/clients/{id}', { id }))\\n\\t\\t\\t\\t.then((response) => {\\n\\t\\t\\t\\t\\tthis.clients = this.clients.filter(client => client.id !== id)\\n\\t\\t\\t\\t})\\n\\t\\t},\\n\\t\\taddClient() {\\n\\t\\t\\tthis.newClient.error = false\\n\\n\\t\\t\\taxios.post(\\n\\t\\t\\t\\tgenerateUrl('apps/oauth2/clients'),\\n\\t\\t\\t\\t{\\n\\t\\t\\t\\t\\tname: this.newClient.name,\\n\\t\\t\\t\\t\\tredirectUri: this.newClient.redirectUri,\\n\\t\\t\\t\\t}\\n\\t\\t\\t).then(response => {\\n\\t\\t\\t\\tthis.clients.push(response.data)\\n\\n\\t\\t\\t\\tthis.newClient.name = ''\\n\\t\\t\\t\\tthis.newClient.redirectUri = ''\\n\\t\\t\\t}).catch(reason => {\\n\\t\\t\\t\\tthis.newClient.error = true\\n\\t\\t\\t\\tthis.newClient.errorMsg = reason.response.data.message\\n\\t\\t\\t})\\n\\t\\t},\\n\\t},\\n}\\n</script>\\n<style scoped>\\n\\ttable {\\n\\t\\tmax-width: 800px;\\n\\t}\\n</style>\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","var $ = require('../internals/export');\nvar assign = require('../internals/object-assign');\n\n// `Object.assign` method\n// https://tc39.es/ecma262/#sec-object.assign\n$({ target: 'Object', stat: true, forced: Object.assign !== assign }, {\n assign: assign\n});\n","var DESCRIPTORS = require('../internals/descriptors');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPrimitive = require('../internals/to-primitive');\nvar has = require('../internals/has');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return nativeGetOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\n};\n","'use strict';\nvar nativePropertyIsEnumerable = {}.propertyIsEnumerable;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : nativePropertyIsEnumerable;\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","var store = require('../internals/shared-store');\n\nvar functionToString = Function.toString;\n\n// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\nif (typeof store.inspectSource != 'function') {\n store.inspectSource = function (it) {\n return functionToString.call(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","var IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.8.3',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2021 Denis Pushkarev (zloirock.ru)'\n});\n","var has = require('../internals/has');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar indexOf = require('../internals/array-includes').indexOf;\nvar hiddenKeys = require('../internals/hidden-keys');\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~indexOf(result, key) || result.push(key);\n }\n return result;\n};\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toLength = require('../internals/to-length');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.es/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.es/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","exports.f = Object.getOwnPropertySymbols;\n","var fails = require('../internals/fails');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : typeof detection == 'function' ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\n// `Object.keys` method\n// https://tc39.es/ecma262/#sec-object.keys\nmodule.exports = Object.keys || function keys(O) {\n return internalObjectKeys(O, enumBugKeys);\n};\n","'use strict';\n\nmodule.exports = function bind(fn, thisArg) {\n return function wrap() {\n var args = new Array(arguments.length);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i];\n }\n return fn.apply(thisArg, args);\n };\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @returns {string} The formatted url\n */\nmodule.exports = function buildURL(url, params, paramsSerializer) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n\n var serializedParams;\n if (paramsSerializer) {\n serializedParams = paramsSerializer(params);\n } else if (utils.isURLSearchParams(params)) {\n serializedParams = params.toString();\n } else {\n var parts = [];\n\n utils.forEach(params, function serialize(val, key) {\n if (val === null || typeof val === 'undefined') {\n return;\n }\n\n if (utils.isArray(val)) {\n key = key + '[]';\n } else {\n val = [val];\n }\n\n utils.forEach(val, function parseValue(v) {\n if (utils.isDate(v)) {\n v = v.toISOString();\n } else if (utils.isObject(v)) {\n v = JSON.stringify(v);\n }\n parts.push(encode(key) + '=' + encode(v));\n });\n });\n\n serializedParams = parts.join('&');\n }\n\n if (serializedParams) {\n var hashmarkIndex = url.indexOf('#');\n if (hashmarkIndex !== -1) {\n url = url.slice(0, hashmarkIndex);\n }\n\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;\n }\n\n return url;\n};\n","'use strict';\n\nmodule.exports = function isCancel(value) {\n return !!(value && value.__CANCEL__);\n};\n","'use strict';\n\nvar utils = require('./utils');\nvar normalizeHeaderName = require('./helpers/normalizeHeaderName');\n\nvar DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\nfunction setContentTypeIfUnset(headers, value) {\n if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) {\n headers['Content-Type'] = value;\n }\n}\n\nfunction getDefaultAdapter() {\n var adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = require('./adapters/xhr');\n } else if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') {\n // For node use HTTP adapter\n adapter = require('./adapters/http');\n }\n return adapter;\n}\n\nvar defaults = {\n adapter: getDefaultAdapter(),\n\n transformRequest: [function transformRequest(data, headers) {\n normalizeHeaderName(headers, 'Accept');\n normalizeHeaderName(headers, 'Content-Type');\n if (utils.isFormData(data) ||\n utils.isArrayBuffer(data) ||\n utils.isBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8');\n return data.toString();\n }\n if (utils.isObject(data)) {\n setContentTypeIfUnset(headers, 'application/json;charset=utf-8');\n return JSON.stringify(data);\n }\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n /*eslint no-param-reassign:0*/\n if (typeof data === 'string') {\n try {\n data = JSON.parse(data);\n } catch (e) { /* Ignore */ }\n }\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n maxBodyLength: -1,\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n }\n};\n\ndefaults.headers = {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n};\n\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\n\nmodule.exports = defaults;\n","'use strict';\n\nvar utils = require('./../utils');\nvar settle = require('./../core/settle');\nvar cookies = require('./../helpers/cookies');\nvar buildURL = require('./../helpers/buildURL');\nvar buildFullPath = require('../core/buildFullPath');\nvar parseHeaders = require('./../helpers/parseHeaders');\nvar isURLSameOrigin = require('./../helpers/isURLSameOrigin');\nvar createError = require('../core/createError');\n\nmodule.exports = function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n var requestData = config.data;\n var requestHeaders = config.headers;\n\n if (utils.isFormData(requestData)) {\n delete requestHeaders['Content-Type']; // Let the browser set it\n }\n\n var request = new XMLHttpRequest();\n\n // HTTP basic authentication\n if (config.auth) {\n var username = config.auth.username || '';\n var password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';\n requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);\n }\n\n var fullPath = buildFullPath(config.baseURL, config.url);\n request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n // Listen for ready state\n request.onreadystatechange = function handleLoad() {\n if (!request || request.readyState !== 4) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n\n // Prepare the response\n var responseHeaders = 'getAllResponseHeaders' in request ? parseHeaders(request.getAllResponseHeaders()) : null;\n var responseData = !config.responseType || config.responseType === 'text' ? request.responseText : request.response;\n var response = {\n data: responseData,\n status: request.status,\n statusText: request.statusText,\n headers: responseHeaders,\n config: config,\n request: request\n };\n\n settle(resolve, reject, response);\n\n // Clean up request\n request = null;\n };\n\n // Handle browser request cancellation (as opposed to a manual cancellation)\n request.onabort = function handleAbort() {\n if (!request) {\n return;\n }\n\n reject(createError('Request aborted', config, 'ECONNABORTED', request));\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(createError('Network Error', config, null, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n var timeoutErrorMessage = 'timeout of ' + config.timeout + 'ms exceeded';\n if (config.timeoutErrorMessage) {\n timeoutErrorMessage = config.timeoutErrorMessage;\n }\n reject(createError(timeoutErrorMessage, config, 'ECONNABORTED',\n request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if (utils.isStandardBrowserEnv()) {\n // Add xsrf header\n var xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName ?\n cookies.read(config.xsrfCookieName) :\n undefined;\n\n if (xsrfValue) {\n requestHeaders[config.xsrfHeaderName] = xsrfValue;\n }\n }\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders, function setRequestHeader(val, key) {\n if (typeof requestData === 'undefined' && key.toLowerCase() === 'content-type') {\n // Remove Content-Type if data is undefined\n delete requestHeaders[key];\n } else {\n // Otherwise add header to the request\n request.setRequestHeader(key, val);\n }\n });\n }\n\n // Add withCredentials to request if needed\n if (!utils.isUndefined(config.withCredentials)) {\n request.withCredentials = !!config.withCredentials;\n }\n\n // Add responseType to request if needed\n if (config.responseType) {\n try {\n request.responseType = config.responseType;\n } catch (e) {\n // Expected DOMException thrown by browsers not compatible XMLHttpRequest Level 2.\n // But, this can be suppressed for 'json' type as it can be parsed by default 'transformResponse' function.\n if (config.responseType !== 'json') {\n throw e;\n }\n }\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', config.onDownloadProgress);\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', config.onUploadProgress);\n }\n\n if (config.cancelToken) {\n // Handle cancellation\n config.cancelToken.promise.then(function onCanceled(cancel) {\n if (!request) {\n return;\n }\n\n request.abort();\n reject(cancel);\n // Clean up request\n request = null;\n });\n }\n\n if (!requestData) {\n requestData = null;\n }\n\n // Send the request\n request.send(requestData);\n });\n};\n","'use strict';\n\nvar enhanceError = require('./enhanceError');\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The created error.\n */\nmodule.exports = function createError(message, config, code, request, response) {\n var error = new Error(message);\n return enhanceError(error, config, code, request, response);\n};\n","'use strict';\n\nvar utils = require('../utils');\n\n/**\n * Config-specific merge-function which creates a new config-object\n * by merging two configuration objects together.\n *\n * @param {Object} config1\n * @param {Object} config2\n * @returns {Object} New object resulting from merging config2 to config1\n */\nmodule.exports = function mergeConfig(config1, config2) {\n // eslint-disable-next-line no-param-reassign\n config2 = config2 || {};\n var config = {};\n\n var valueFromConfig2Keys = ['url', 'method', 'data'];\n var mergeDeepPropertiesKeys = ['headers', 'auth', 'proxy', 'params'];\n var defaultToConfig2Keys = [\n 'baseURL', 'transformRequest', 'transformResponse', 'paramsSerializer',\n 'timeout', 'timeoutMessage', 'withCredentials', 'adapter', 'responseType', 'xsrfCookieName',\n 'xsrfHeaderName', 'onUploadProgress', 'onDownloadProgress', 'decompress',\n 'maxContentLength', 'maxBodyLength', 'maxRedirects', 'transport', 'httpAgent',\n 'httpsAgent', 'cancelToken', 'socketPath', 'responseEncoding'\n ];\n var directMergeKeys = ['validateStatus'];\n\n function getMergedValue(target, source) {\n if (utils.isPlainObject(target) && utils.isPlainObject(source)) {\n return utils.merge(target, source);\n } else if (utils.isPlainObject(source)) {\n return utils.merge({}, source);\n } else if (utils.isArray(source)) {\n return source.slice();\n }\n return source;\n }\n\n function mergeDeepProperties(prop) {\n if (!utils.isUndefined(config2[prop])) {\n config[prop] = getMergedValue(config1[prop], config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n config[prop] = getMergedValue(undefined, config1[prop]);\n }\n }\n\n utils.forEach(valueFromConfig2Keys, function valueFromConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n config[prop] = getMergedValue(undefined, config2[prop]);\n }\n });\n\n utils.forEach(mergeDeepPropertiesKeys, mergeDeepProperties);\n\n utils.forEach(defaultToConfig2Keys, function defaultToConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n config[prop] = getMergedValue(undefined, config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n config[prop] = getMergedValue(undefined, config1[prop]);\n }\n });\n\n utils.forEach(directMergeKeys, function merge(prop) {\n if (prop in config2) {\n config[prop] = getMergedValue(config1[prop], config2[prop]);\n } else if (prop in config1) {\n config[prop] = getMergedValue(undefined, config1[prop]);\n }\n });\n\n var axiosKeys = valueFromConfig2Keys\n .concat(mergeDeepPropertiesKeys)\n .concat(defaultToConfig2Keys)\n .concat(directMergeKeys);\n\n var otherKeys = Object\n .keys(config1)\n .concat(Object.keys(config2))\n .filter(function filterAxiosKeys(key) {\n return axiosKeys.indexOf(key) === -1;\n });\n\n utils.forEach(otherKeys, mergeDeepProperties);\n\n return config;\n};\n","'use strict';\n\n/**\n * A `Cancel` is an object that is thrown when an operation is canceled.\n *\n * @class\n * @param {string=} message The message.\n */\nfunction Cancel(message) {\n this.message = message;\n}\n\nCancel.prototype.toString = function toString() {\n return 'Cancel' + (this.message ? ': ' + this.message : '');\n};\n\nCancel.prototype.__CANCEL__ = true;\n\nmodule.exports = Cancel;\n","'use strict';\nvar $ = require('../internals/export');\nvar forEach = require('../internals/array-for-each');\n\n// `Array.prototype.forEach` method\n// https://tc39.es/ecma262/#sec-array.prototype.foreach\n$({ target: 'Array', proto: true, forced: [].forEach != forEach }, {\n forEach: forEach\n});\n","'use strict';\nvar $forEach = require('../internals/array-iteration').forEach;\nvar arrayMethodIsStrict = require('../internals/array-method-is-strict');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar STRICT_METHOD = arrayMethodIsStrict('forEach');\nvar USES_TO_LENGTH = arrayMethodUsesToLength('forEach');\n\n// `Array.prototype.forEach` method implementation\n// https://tc39.es/ecma262/#sec-array.prototype.foreach\nmodule.exports = (!STRICT_METHOD || !USES_TO_LENGTH) ? function forEach(callbackfn /* , thisArg */) {\n return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n} : [].forEach;\n","var bind = require('../internals/function-bind-context');\nvar IndexedObject = require('../internals/indexed-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar arraySpeciesCreate = require('../internals/array-species-create');\n\nvar push = [].push;\n\n// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterOut }` methods implementation\nvar createMethod = function (TYPE) {\n var IS_MAP = TYPE == 1;\n var IS_FILTER = TYPE == 2;\n var IS_SOME = TYPE == 3;\n var IS_EVERY = TYPE == 4;\n var IS_FIND_INDEX = TYPE == 6;\n var IS_FILTER_OUT = TYPE == 7;\n var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;\n return function ($this, callbackfn, that, specificCreate) {\n var O = toObject($this);\n var self = IndexedObject(O);\n var boundFunction = bind(callbackfn, that, 3);\n var length = toLength(self.length);\n var index = 0;\n var create = specificCreate || arraySpeciesCreate;\n var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_OUT ? create($this, 0) : undefined;\n var value, result;\n for (;length > index; index++) if (NO_HOLES || index in self) {\n value = self[index];\n result = boundFunction(value, index, O);\n if (TYPE) {\n if (IS_MAP) target[index] = result; // map\n else if (result) switch (TYPE) {\n case 3: return true; // some\n case 5: return value; // find\n case 6: return index; // findIndex\n case 2: push.call(target, value); // filter\n } else switch (TYPE) {\n case 4: return false; // every\n case 7: push.call(target, value); // filterOut\n }\n }\n }\n return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.forEach` method\n // https://tc39.es/ecma262/#sec-array.prototype.foreach\n forEach: createMethod(0),\n // `Array.prototype.map` method\n // https://tc39.es/ecma262/#sec-array.prototype.map\n map: createMethod(1),\n // `Array.prototype.filter` method\n // https://tc39.es/ecma262/#sec-array.prototype.filter\n filter: createMethod(2),\n // `Array.prototype.some` method\n // https://tc39.es/ecma262/#sec-array.prototype.some\n some: createMethod(3),\n // `Array.prototype.every` method\n // https://tc39.es/ecma262/#sec-array.prototype.every\n every: createMethod(4),\n // `Array.prototype.find` method\n // https://tc39.es/ecma262/#sec-array.prototype.find\n find: createMethod(5),\n // `Array.prototype.findIndex` method\n // https://tc39.es/ecma262/#sec-array.prototype.findIndex\n findIndex: createMethod(6),\n // `Array.prototype.filterOut` method\n // https://github.com/tc39/proposal-array-filtering\n filterOut: createMethod(7)\n};\n","var isObject = require('../internals/is-object');\nvar isArray = require('../internals/is-array');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar SPECIES = wellKnownSymbol('species');\n\n// `ArraySpeciesCreate` abstract operation\n// https://tc39.es/ecma262/#sec-arrayspeciescreate\nmodule.exports = function (originalArray, length) {\n var C;\n if (isArray(originalArray)) {\n C = originalArray.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n else if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);\n};\n","var classof = require('../internals/classof-raw');\n\n// `IsArray` abstract operation\n// https://tc39.es/ecma262/#sec-isarray\nmodule.exports = Array.isArray || function isArray(arg) {\n return classof(arg) == 'Array';\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n // Chrome 38 Symbol has incorrect toString conversion\n // eslint-disable-next-line no-undef\n return !String(Symbol());\n});\n","'use strict';\nvar fails = require('../internals/fails');\n\nmodule.exports = function (METHOD_NAME, argument) {\n var method = [][METHOD_NAME];\n return !!method && fails(function () {\n // eslint-disable-next-line no-useless-call,no-throw-literal\n method.call(null, argument || function () { throw 1; }, 1);\n });\n};\n","const { MAX_SAFE_COMPONENT_LENGTH } = require('./constants')\nconst debug = require('./debug')\nexports = module.exports = {}\n\n// The actual regexps go on exports.re\nconst re = exports.re = []\nconst src = exports.src = []\nconst t = exports.t = {}\nlet R = 0\n\nconst createToken = (name, value, isGlobal) => {\n const index = R++\n debug(index, value)\n t[name] = index\n src[index] = value\n re[index] = new RegExp(value, isGlobal ? 'g' : undefined)\n}\n\n// The following Regular Expressions can be used for tokenizing,\n// validating, and parsing SemVer version strings.\n\n// ## Numeric Identifier\n// A single `0`, or a non-zero digit followed by zero or more digits.\n\ncreateToken('NUMERICIDENTIFIER', '0|[1-9]\\\\d*')\ncreateToken('NUMERICIDENTIFIERLOOSE', '[0-9]+')\n\n// ## Non-numeric Identifier\n// Zero or more digits, followed by a letter or hyphen, and then zero or\n// more letters, digits, or hyphens.\n\ncreateToken('NONNUMERICIDENTIFIER', '\\\\d*[a-zA-Z-][a-zA-Z0-9-]*')\n\n// ## Main Version\n// Three dot-separated numeric identifiers.\n\ncreateToken('MAINVERSION', `(${src[t.NUMERICIDENTIFIER]})\\\\.` +\n `(${src[t.NUMERICIDENTIFIER]})\\\\.` +\n `(${src[t.NUMERICIDENTIFIER]})`)\n\ncreateToken('MAINVERSIONLOOSE', `(${src[t.NUMERICIDENTIFIERLOOSE]})\\\\.` +\n `(${src[t.NUMERICIDENTIFIERLOOSE]})\\\\.` +\n `(${src[t.NUMERICIDENTIFIERLOOSE]})`)\n\n// ## Pre-release Version Identifier\n// A numeric identifier, or a non-numeric identifier.\n\ncreateToken('PRERELEASEIDENTIFIER', `(?:${src[t.NUMERICIDENTIFIER]\n}|${src[t.NONNUMERICIDENTIFIER]})`)\n\ncreateToken('PRERELEASEIDENTIFIERLOOSE', `(?:${src[t.NUMERICIDENTIFIERLOOSE]\n}|${src[t.NONNUMERICIDENTIFIER]})`)\n\n// ## Pre-release Version\n// Hyphen, followed by one or more dot-separated pre-release version\n// identifiers.\n\ncreateToken('PRERELEASE', `(?:-(${src[t.PRERELEASEIDENTIFIER]\n}(?:\\\\.${src[t.PRERELEASEIDENTIFIER]})*))`)\n\ncreateToken('PRERELEASELOOSE', `(?:-?(${src[t.PRERELEASEIDENTIFIERLOOSE]\n}(?:\\\\.${src[t.PRERELEASEIDENTIFIERLOOSE]})*))`)\n\n// ## Build Metadata Identifier\n// Any combination of digits, letters, or hyphens.\n\ncreateToken('BUILDIDENTIFIER', '[0-9A-Za-z-]+')\n\n// ## Build Metadata\n// Plus sign, followed by one or more period-separated build metadata\n// identifiers.\n\ncreateToken('BUILD', `(?:\\\\+(${src[t.BUILDIDENTIFIER]\n}(?:\\\\.${src[t.BUILDIDENTIFIER]})*))`)\n\n// ## Full Version String\n// A main version, followed optionally by a pre-release version and\n// build metadata.\n\n// Note that the only major, minor, patch, and pre-release sections of\n// the version string are capturing groups. The build metadata is not a\n// capturing group, because it should not ever be used in version\n// comparison.\n\ncreateToken('FULLPLAIN', `v?${src[t.MAINVERSION]\n}${src[t.PRERELEASE]}?${\n src[t.BUILD]}?`)\n\ncreateToken('FULL', `^${src[t.FULLPLAIN]}$`)\n\n// like full, but allows v1.2.3 and =1.2.3, which people do sometimes.\n// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty\n// common in the npm registry.\ncreateToken('LOOSEPLAIN', `[v=\\\\s]*${src[t.MAINVERSIONLOOSE]\n}${src[t.PRERELEASELOOSE]}?${\n src[t.BUILD]}?`)\n\ncreateToken('LOOSE', `^${src[t.LOOSEPLAIN]}$`)\n\ncreateToken('GTLT', '((?:<|>)?=?)')\n\n// Something like \"2.*\" or \"1.2.x\".\n// Note that \"x.x\" is a valid xRange identifer, meaning \"any version\"\n// Only the first item is strictly required.\ncreateToken('XRANGEIDENTIFIERLOOSE', `${src[t.NUMERICIDENTIFIERLOOSE]}|x|X|\\\\*`)\ncreateToken('XRANGEIDENTIFIER', `${src[t.NUMERICIDENTIFIER]}|x|X|\\\\*`)\n\ncreateToken('XRANGEPLAIN', `[v=\\\\s]*(${src[t.XRANGEIDENTIFIER]})` +\n `(?:\\\\.(${src[t.XRANGEIDENTIFIER]})` +\n `(?:\\\\.(${src[t.XRANGEIDENTIFIER]})` +\n `(?:${src[t.PRERELEASE]})?${\n src[t.BUILD]}?` +\n `)?)?`)\n\ncreateToken('XRANGEPLAINLOOSE', `[v=\\\\s]*(${src[t.XRANGEIDENTIFIERLOOSE]})` +\n `(?:\\\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` +\n `(?:\\\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` +\n `(?:${src[t.PRERELEASELOOSE]})?${\n src[t.BUILD]}?` +\n `)?)?`)\n\ncreateToken('XRANGE', `^${src[t.GTLT]}\\\\s*${src[t.XRANGEPLAIN]}$`)\ncreateToken('XRANGELOOSE', `^${src[t.GTLT]}\\\\s*${src[t.XRANGEPLAINLOOSE]}$`)\n\n// Coercion.\n// Extract anything that could conceivably be a part of a valid semver\ncreateToken('COERCE', `${'(^|[^\\\\d])' +\n '(\\\\d{1,'}${MAX_SAFE_COMPONENT_LENGTH}})` +\n `(?:\\\\.(\\\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?` +\n `(?:\\\\.(\\\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?` +\n `(?:$|[^\\\\d])`)\ncreateToken('COERCERTL', src[t.COERCE], true)\n\n// Tilde ranges.\n// Meaning is \"reasonably at or greater than\"\ncreateToken('LONETILDE', '(?:~>?)')\n\ncreateToken('TILDETRIM', `(\\\\s*)${src[t.LONETILDE]}\\\\s+`, true)\nexports.tildeTrimReplace = '$1~'\n\ncreateToken('TILDE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAIN]}$`)\ncreateToken('TILDELOOSE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAINLOOSE]}$`)\n\n// Caret ranges.\n// Meaning is \"at least and backwards compatible with\"\ncreateToken('LONECARET', '(?:\\\\^)')\n\ncreateToken('CARETTRIM', `(\\\\s*)${src[t.LONECARET]}\\\\s+`, true)\nexports.caretTrimReplace = '$1^'\n\ncreateToken('CARET', `^${src[t.LONECARET]}${src[t.XRANGEPLAIN]}$`)\ncreateToken('CARETLOOSE', `^${src[t.LONECARET]}${src[t.XRANGEPLAINLOOSE]}$`)\n\n// A simple gt/lt/eq thing, or just \"\" to indicate \"any version\"\ncreateToken('COMPARATORLOOSE', `^${src[t.GTLT]}\\\\s*(${src[t.LOOSEPLAIN]})$|^$`)\ncreateToken('COMPARATOR', `^${src[t.GTLT]}\\\\s*(${src[t.FULLPLAIN]})$|^$`)\n\n// An expression to strip any whitespace between the gtlt and the thing\n// it modifies, so that `> 1.2.3` ==> `>1.2.3`\ncreateToken('COMPARATORTRIM', `(\\\\s*)${src[t.GTLT]\n}\\\\s*(${src[t.LOOSEPLAIN]}|${src[t.XRANGEPLAIN]})`, true)\nexports.comparatorTrimReplace = '$1$2$3'\n\n// Something like `1.2.3 - 1.2.4`\n// Note that these all use the loose form, because they'll be\n// checked against either the strict or loose comparator form\n// later.\ncreateToken('HYPHENRANGE', `^\\\\s*(${src[t.XRANGEPLAIN]})` +\n `\\\\s+-\\\\s+` +\n `(${src[t.XRANGEPLAIN]})` +\n `\\\\s*$`)\n\ncreateToken('HYPHENRANGELOOSE', `^\\\\s*(${src[t.XRANGEPLAINLOOSE]})` +\n `\\\\s+-\\\\s+` +\n `(${src[t.XRANGEPLAINLOOSE]})` +\n `\\\\s*$`)\n\n// Star ranges basically just allow anything at all.\ncreateToken('STAR', '(<|>)?=?\\\\s*\\\\*')\n// >=0.0.0 is like a star\ncreateToken('GTE0', '^\\\\s*>=\\\\s*0\\.0\\.0\\\\s*$')\ncreateToken('GTE0PRE', '^\\\\s*>=\\\\s*0\\.0\\.0-0\\\\s*$')\n","const debug = (\n typeof process === 'object' &&\n process.env &&\n process.env.NODE_DEBUG &&\n /\\bsemver\\b/i.test(process.env.NODE_DEBUG)\n) ? (...args) => console.error('SEMVER', ...args)\n : () => {}\n\nmodule.exports = debug\n","const debug = require('../internal/debug')\nconst { MAX_LENGTH, MAX_SAFE_INTEGER } = require('../internal/constants')\nconst { re, t } = require('../internal/re')\n\nconst { compareIdentifiers } = require('../internal/identifiers')\nclass SemVer {\n constructor (version, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n if (version instanceof SemVer) {\n if (version.loose === !!options.loose &&\n version.includePrerelease === !!options.includePrerelease) {\n return version\n } else {\n version = version.version\n }\n } else if (typeof version !== 'string') {\n throw new TypeError(`Invalid Version: ${version}`)\n }\n\n if (version.length > MAX_LENGTH) {\n throw new TypeError(\n `version is longer than ${MAX_LENGTH} characters`\n )\n }\n\n debug('SemVer', version, options)\n this.options = options\n this.loose = !!options.loose\n // this isn't actually relevant for versions, but keep it so that we\n // don't run into trouble passing this.options around.\n this.includePrerelease = !!options.includePrerelease\n\n const m = version.trim().match(options.loose ? re[t.LOOSE] : re[t.FULL])\n\n if (!m) {\n throw new TypeError(`Invalid Version: ${version}`)\n }\n\n this.raw = version\n\n // these are actually numbers\n this.major = +m[1]\n this.minor = +m[2]\n this.patch = +m[3]\n\n if (this.major > MAX_SAFE_INTEGER || this.major < 0) {\n throw new TypeError('Invalid major version')\n }\n\n if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) {\n throw new TypeError('Invalid minor version')\n }\n\n if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) {\n throw new TypeError('Invalid patch version')\n }\n\n // numberify any prerelease numeric ids\n if (!m[4]) {\n this.prerelease = []\n } else {\n this.prerelease = m[4].split('.').map((id) => {\n if (/^[0-9]+$/.test(id)) {\n const num = +id\n if (num >= 0 && num < MAX_SAFE_INTEGER) {\n return num\n }\n }\n return id\n })\n }\n\n this.build = m[5] ? m[5].split('.') : []\n this.format()\n }\n\n format () {\n this.version = `${this.major}.${this.minor}.${this.patch}`\n if (this.prerelease.length) {\n this.version += `-${this.prerelease.join('.')}`\n }\n return this.version\n }\n\n toString () {\n return this.version\n }\n\n compare (other) {\n debug('SemVer.compare', this.version, this.options, other)\n if (!(other instanceof SemVer)) {\n if (typeof other === 'string' && other === this.version) {\n return 0\n }\n other = new SemVer(other, this.options)\n }\n\n if (other.version === this.version) {\n return 0\n }\n\n return this.compareMain(other) || this.comparePre(other)\n }\n\n compareMain (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n return (\n compareIdentifiers(this.major, other.major) ||\n compareIdentifiers(this.minor, other.minor) ||\n compareIdentifiers(this.patch, other.patch)\n )\n }\n\n comparePre (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n // NOT having a prerelease is > having one\n if (this.prerelease.length && !other.prerelease.length) {\n return -1\n } else if (!this.prerelease.length && other.prerelease.length) {\n return 1\n } else if (!this.prerelease.length && !other.prerelease.length) {\n return 0\n }\n\n let i = 0\n do {\n const a = this.prerelease[i]\n const b = other.prerelease[i]\n debug('prerelease compare', i, a, b)\n if (a === undefined && b === undefined) {\n return 0\n } else if (b === undefined) {\n return 1\n } else if (a === undefined) {\n return -1\n } else if (a === b) {\n continue\n } else {\n return compareIdentifiers(a, b)\n }\n } while (++i)\n }\n\n compareBuild (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n let i = 0\n do {\n const a = this.build[i]\n const b = other.build[i]\n debug('prerelease compare', i, a, b)\n if (a === undefined && b === undefined) {\n return 0\n } else if (b === undefined) {\n return 1\n } else if (a === undefined) {\n return -1\n } else if (a === b) {\n continue\n } else {\n return compareIdentifiers(a, b)\n }\n } while (++i)\n }\n\n // preminor will bump the version up to the next minor release, and immediately\n // down to pre-release. premajor and prepatch work the same way.\n inc (release, identifier) {\n switch (release) {\n case 'premajor':\n this.prerelease.length = 0\n this.patch = 0\n this.minor = 0\n this.major++\n this.inc('pre', identifier)\n break\n case 'preminor':\n this.prerelease.length = 0\n this.patch = 0\n this.minor++\n this.inc('pre', identifier)\n break\n case 'prepatch':\n // If this is already a prerelease, it will bump to the next version\n // drop any prereleases that might already exist, since they are not\n // relevant at this point.\n this.prerelease.length = 0\n this.inc('patch', identifier)\n this.inc('pre', identifier)\n break\n // If the input is a non-prerelease version, this acts the same as\n // prepatch.\n case 'prerelease':\n if (this.prerelease.length === 0) {\n this.inc('patch', identifier)\n }\n this.inc('pre', identifier)\n break\n\n case 'major':\n // If this is a pre-major version, bump up to the same major version.\n // Otherwise increment major.\n // 1.0.0-5 bumps to 1.0.0\n // 1.1.0 bumps to 2.0.0\n if (\n this.minor !== 0 ||\n this.patch !== 0 ||\n this.prerelease.length === 0\n ) {\n this.major++\n }\n this.minor = 0\n this.patch = 0\n this.prerelease = []\n break\n case 'minor':\n // If this is a pre-minor version, bump up to the same minor version.\n // Otherwise increment minor.\n // 1.2.0-5 bumps to 1.2.0\n // 1.2.1 bumps to 1.3.0\n if (this.patch !== 0 || this.prerelease.length === 0) {\n this.minor++\n }\n this.patch = 0\n this.prerelease = []\n break\n case 'patch':\n // If this is not a pre-release version, it will increment the patch.\n // If it is a pre-release it will bump up to the same patch version.\n // 1.2.0-5 patches to 1.2.0\n // 1.2.0 patches to 1.2.1\n if (this.prerelease.length === 0) {\n this.patch++\n }\n this.prerelease = []\n break\n // This probably shouldn't be used publicly.\n // 1.0.0 'pre' would become 1.0.0-0 which is the wrong direction.\n case 'pre':\n if (this.prerelease.length === 0) {\n this.prerelease = [0]\n } else {\n let i = this.prerelease.length\n while (--i >= 0) {\n if (typeof this.prerelease[i] === 'number') {\n this.prerelease[i]++\n i = -2\n }\n }\n if (i === -1) {\n // didn't increment anything\n this.prerelease.push(0)\n }\n }\n if (identifier) {\n // 1.2.0-beta.1 bumps to 1.2.0-beta.2,\n // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0\n if (this.prerelease[0] === identifier) {\n if (isNaN(this.prerelease[1])) {\n this.prerelease = [identifier, 0]\n }\n } else {\n this.prerelease = [identifier, 0]\n }\n }\n break\n\n default:\n throw new Error(`invalid increment argument: ${release}`)\n }\n this.format()\n this.raw = this.version\n return this\n }\n}\n\nmodule.exports = SemVer\n","'use strict';\nvar $ = require('../internals/export');\nvar fails = require('../internals/fails');\nvar isArray = require('../internals/is-array');\nvar isObject = require('../internals/is-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar createProperty = require('../internals/create-property');\nvar arraySpeciesCreate = require('../internals/array-species-create');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/engine-v8-version');\n\nvar IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');\nvar MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;\nvar MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';\n\n// We can't use this feature detection in V8 since it causes\n// deoptimization and serious performance degradation\n// https://github.com/zloirock/core-js/issues/679\nvar IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () {\n var array = [];\n array[IS_CONCAT_SPREADABLE] = false;\n return array.concat()[0] !== array;\n});\n\nvar SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');\n\nvar isConcatSpreadable = function (O) {\n if (!isObject(O)) return false;\n var spreadable = O[IS_CONCAT_SPREADABLE];\n return spreadable !== undefined ? !!spreadable : isArray(O);\n};\n\nvar FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;\n\n// `Array.prototype.concat` method\n// https://tc39.es/ecma262/#sec-array.prototype.concat\n// with adding support of @@isConcatSpreadable and @@species\n$({ target: 'Array', proto: true, forced: FORCED }, {\n concat: function concat(arg) { // eslint-disable-line no-unused-vars\n var O = toObject(this);\n var A = arraySpeciesCreate(O, 0);\n var n = 0;\n var i, k, length, len, E;\n for (i = -1, length = arguments.length; i < length; i++) {\n E = i === -1 ? O : arguments[i];\n if (isConcatSpreadable(E)) {\n len = toLength(E.length);\n if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);\n } else {\n if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n createProperty(A, n++, E);\n }\n }\n A.length = n;\n return A;\n }\n});\n","var fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/engine-v8-version');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (METHOD_NAME) {\n // We can't use this feature detection in V8 since it causes\n // deoptimization and serious performance degradation\n // https://github.com/zloirock/core-js/issues/677\n return V8_VERSION >= 51 || !fails(function () {\n var array = [];\n var constructor = array.constructor = {};\n constructor[SPECIES] = function () {\n return { foo: 1 };\n };\n return array[METHOD_NAME](Boolean).foo !== 1;\n });\n};\n","var global = require('../internals/global');\nvar userAgent = require('../internals/engine-user-agent');\n\nvar process = global.process;\nvar versions = process && process.versions;\nvar v8 = versions && versions.v8;\nvar match, version;\n\nif (v8) {\n match = v8.split('.');\n version = match[0] + match[1];\n} else if (userAgent) {\n match = userAgent.match(/Edge\\/(\\d+)/);\n if (!match || match[1] >= 74) {\n match = userAgent.match(/Chrome\\/(\\d+)/);\n if (match) version = match[1];\n }\n}\n\nmodule.exports = version && +version;\n","'use strict';\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar addToUnscopables = require('../internals/add-to-unscopables');\nvar Iterators = require('../internals/iterators');\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar ARRAY_ITERATOR = 'Array Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR);\n\n// `Array.prototype.entries` method\n// https://tc39.es/ecma262/#sec-array.prototype.entries\n// `Array.prototype.keys` method\n// https://tc39.es/ecma262/#sec-array.prototype.keys\n// `Array.prototype.values` method\n// https://tc39.es/ecma262/#sec-array.prototype.values\n// `Array.prototype[@@iterator]` method\n// https://tc39.es/ecma262/#sec-array.prototype-@@iterator\n// `CreateArrayIterator` internal method\n// https://tc39.es/ecma262/#sec-createarrayiterator\nmodule.exports = defineIterator(Array, 'Array', function (iterated, kind) {\n setInternalState(this, {\n type: ARRAY_ITERATOR,\n target: toIndexedObject(iterated), // target\n index: 0, // next index\n kind: kind // kind\n });\n// `%ArrayIteratorPrototype%.next` method\n// https://tc39.es/ecma262/#sec-%arrayiteratorprototype%.next\n}, function () {\n var state = getInternalState(this);\n var target = state.target;\n var kind = state.kind;\n var index = state.index++;\n if (!target || index >= target.length) {\n state.target = undefined;\n return { value: undefined, done: true };\n }\n if (kind == 'keys') return { value: index, done: false };\n if (kind == 'values') return { value: target[index], done: false };\n return { value: [index, target[index]], done: false };\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values%\n// https://tc39.es/ecma262/#sec-createunmappedargumentsobject\n// https://tc39.es/ecma262/#sec-createmappedargumentsobject\nIterators.Arguments = Iterators.Array;\n\n// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n","'use strict';\nvar fails = require('../internals/fails');\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar BUGGY_SAFARI_ITERATORS = false;\n\nvar returnThis = function () { return this; };\n\n// `%IteratorPrototype%` object\n// https://tc39.es/ecma262/#sec-%iteratorprototype%-object\nvar IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;\n\nif ([].keys) {\n arrayIterator = [].keys();\n // Safari 8 has buggy iterators w/o `next`\n if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;\n else {\n PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));\n if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;\n }\n}\n\nvar NEW_ITERATOR_PROTOTYPE = IteratorPrototype == undefined || fails(function () {\n var test = {};\n // FF44- legacy iterators case\n return IteratorPrototype[ITERATOR].call(test) !== test;\n});\n\nif (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nif ((!IS_PURE || NEW_ITERATOR_PROTOTYPE) && !has(IteratorPrototype, ITERATOR)) {\n createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis);\n}\n\nmodule.exports = {\n IteratorPrototype: IteratorPrototype,\n BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS\n};\n","var has = require('../internals/has');\nvar toObject = require('../internals/to-object');\nvar sharedKey = require('../internals/shared-key');\nvar CORRECT_PROTOTYPE_GETTER = require('../internals/correct-prototype-getter');\n\nvar IE_PROTO = sharedKey('IE_PROTO');\nvar ObjectPrototype = Object.prototype;\n\n// `Object.getPrototypeOf` method\n// https://tc39.es/ecma262/#sec-object.getprototypeof\nmodule.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectPrototype : null;\n};\n","var anObject = require('../internals/an-object');\nvar aPossiblePrototype = require('../internals/a-possible-prototype');\n\n// `Object.setPrototypeOf` method\n// https://tc39.es/ecma262/#sec-object.setprototypeof\n// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nmodule.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {\n var CORRECT_SETTER = false;\n var test = {};\n var setter;\n try {\n setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;\n setter.call(test, []);\n CORRECT_SETTER = test instanceof Array;\n } catch (error) { /* empty */ }\n return function setPrototypeOf(O, proto) {\n anObject(O);\n aPossiblePrototype(proto);\n if (CORRECT_SETTER) setter.call(O, proto);\n else O.__proto__ = proto;\n return O;\n };\n}() : undefined);\n","var hiddenKeys = require('../internals/hidden-keys');\nvar isObject = require('../internals/is-object');\nvar has = require('../internals/has');\nvar defineProperty = require('../internals/object-define-property').f;\nvar uid = require('../internals/uid');\nvar FREEZING = require('../internals/freezing');\n\nvar METADATA = uid('meta');\nvar id = 0;\n\nvar isExtensible = Object.isExtensible || function () {\n return true;\n};\n\nvar setMetadata = function (it) {\n defineProperty(it, METADATA, { value: {\n objectID: 'O' + ++id, // object ID\n weakData: {} // weak collections IDs\n } });\n};\n\nvar fastKey = function (it, create) {\n // return a primitive with prefix\n if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return 'F';\n // not necessary to add metadata\n if (!create) return 'E';\n // add missing metadata\n setMetadata(it);\n // return object ID\n } return it[METADATA].objectID;\n};\n\nvar getWeakData = function (it, create) {\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return true;\n // not necessary to add metadata\n if (!create) return false;\n // add missing metadata\n setMetadata(it);\n // return the store of weak collections IDs\n } return it[METADATA].weakData;\n};\n\n// add metadata on freeze-family methods calling\nvar onFreeze = function (it) {\n if (FREEZING && meta.REQUIRED && isExtensible(it) && !has(it, METADATA)) setMetadata(it);\n return it;\n};\n\nvar meta = module.exports = {\n REQUIRED: false,\n fastKey: fastKey,\n getWeakData: getWeakData,\n onFreeze: onFreeze\n};\n\nhiddenKeys[METADATA] = true;\n","var anObject = require('../internals/an-object');\nvar isArrayIteratorMethod = require('../internals/is-array-iterator-method');\nvar toLength = require('../internals/to-length');\nvar bind = require('../internals/function-bind-context');\nvar getIteratorMethod = require('../internals/get-iterator-method');\nvar iteratorClose = require('../internals/iterator-close');\n\nvar Result = function (stopped, result) {\n this.stopped = stopped;\n this.result = result;\n};\n\nmodule.exports = function (iterable, unboundFunction, options) {\n var that = options && options.that;\n var AS_ENTRIES = !!(options && options.AS_ENTRIES);\n var IS_ITERATOR = !!(options && options.IS_ITERATOR);\n var INTERRUPTED = !!(options && options.INTERRUPTED);\n var fn = bind(unboundFunction, that, 1 + AS_ENTRIES + INTERRUPTED);\n var iterator, iterFn, index, length, result, next, step;\n\n var stop = function (condition) {\n if (iterator) iteratorClose(iterator);\n return new Result(true, condition);\n };\n\n var callFn = function (value) {\n if (AS_ENTRIES) {\n anObject(value);\n return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);\n } return INTERRUPTED ? fn(value, stop) : fn(value);\n };\n\n if (IS_ITERATOR) {\n iterator = iterable;\n } else {\n iterFn = getIteratorMethod(iterable);\n if (typeof iterFn != 'function') throw TypeError('Target is not iterable');\n // optimisation for array iterators\n if (isArrayIteratorMethod(iterFn)) {\n for (index = 0, length = toLength(iterable.length); length > index; index++) {\n result = callFn(iterable[index]);\n if (result && result instanceof Result) return result;\n } return new Result(false);\n }\n iterator = iterFn.call(iterable);\n }\n\n next = iterator.next;\n while (!(step = next.call(iterator)).done) {\n try {\n result = callFn(step.value);\n } catch (error) {\n iteratorClose(iterator);\n throw error;\n }\n if (typeof result == 'object' && result && result instanceof Result) return result;\n } return new Result(false);\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classofRaw = require('../internals/classof-raw');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n// ES3 wrong here\nvar CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (error) { /* empty */ }\n};\n\n// getting tag from ES6+ `Object.prototype.toString`\nmodule.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {\n var O, tag, result;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag\n // builtinTag case\n : CORRECT_ARGUMENTS ? classofRaw(O)\n // ES3 arguments fallback\n : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;\n};\n","module.exports = function (it, Constructor, name) {\n if (!(it instanceof Constructor)) {\n throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');\n } return it;\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar redefine = require('../internals/redefine');\nvar toString = require('../internals/object-to-string');\n\n// `Object.prototype.toString` method\n// https://tc39.es/ecma262/#sec-object.prototype.tostring\nif (!TO_STRING_TAG_SUPPORT) {\n redefine(Object.prototype, 'toString', toString, { unsafe: true });\n}\n","var toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `String.prototype.{ codePointAt, at }` methods implementation\nvar createMethod = function (CONVERT_TO_STRING) {\n return function ($this, pos) {\n var S = String(requireObjectCoercible($this));\n var position = toInteger(pos);\n var size = S.length;\n var first, second;\n if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;\n first = S.charCodeAt(position);\n return first < 0xD800 || first > 0xDBFF || position + 1 === size\n || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF\n ? CONVERT_TO_STRING ? S.charAt(position) : first\n : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;\n };\n};\n\nmodule.exports = {\n // `String.prototype.codePointAt` method\n // https://tc39.es/ecma262/#sec-string.prototype.codepointat\n codeAt: createMethod(false),\n // `String.prototype.at` method\n // https://github.com/mathiasbynens/String.prototype.at\n charAt: createMethod(true)\n};\n","// iterable DOM collections\n// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods\nmodule.exports = {\n CSSRuleList: 0,\n CSSStyleDeclaration: 0,\n CSSValueList: 0,\n ClientRectList: 0,\n DOMRectList: 0,\n DOMStringList: 0,\n DOMTokenList: 1,\n DataTransferItemList: 0,\n FileList: 0,\n HTMLAllCollection: 0,\n HTMLCollection: 0,\n HTMLFormElement: 0,\n HTMLSelectElement: 0,\n MediaList: 0,\n MimeTypeArray: 0,\n NamedNodeMap: 0,\n NodeList: 1,\n PaintRequestList: 0,\n Plugin: 0,\n PluginArray: 0,\n SVGLengthList: 0,\n SVGNumberList: 0,\n SVGPathSegList: 0,\n SVGPointList: 0,\n SVGStringList: 0,\n SVGTransformList: 0,\n SourceBufferList: 0,\n StyleSheetList: 0,\n TextTrackCueList: 0,\n TextTrackList: 0,\n TouchList: 0\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar exec = require('../internals/regexp-exec');\n\n// `RegExp.prototype.exec` method\n// https://tc39.es/ecma262/#sec-regexp.prototype.exec\n$({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, {\n exec: exec\n});\n","'use strict';\nvar anObject = require('../internals/an-object');\n\n// `RegExp.prototype.flags` getter implementation\n// https://tc39.es/ecma262/#sec-get-regexp.prototype.flags\nmodule.exports = function () {\n var that = anObject(this);\n var result = '';\n if (that.global) result += 'g';\n if (that.ignoreCase) result += 'i';\n if (that.multiline) result += 'm';\n if (that.dotAll) result += 's';\n if (that.unicode) result += 'u';\n if (that.sticky) result += 'y';\n return result;\n};\n","\"use strict\";\n\nrequire(\"core-js/modules/es.array.concat\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.loadState = loadState;\n\n/**\n * @param app app ID, e.g. \"mail\"\n * @param key name of the property\n * @param fallback optional parameter to use as default value\n * @throws if the key can't be found\n */\nfunction loadState(app, key, fallback) {\n var elem = document.querySelector(\"#initial-state-\".concat(app, \"-\").concat(key));\n\n if (elem === null) {\n if (fallback !== undefined) {\n return fallback;\n }\n\n throw new Error(\"Could not find initial state \".concat(key, \" of \").concat(app));\n }\n\n try {\n return JSON.parse(atob(elem.value));\n } catch (e) {\n throw new Error(\"Could not parse initial state \".concat(key, \" of \").concat(app));\n }\n}\n//# sourceMappingURL=index.js.map","var global = require('../internals/global');\nvar inspectSource = require('../internals/inspect-source');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));\n","var has = require('../internals/has');\nvar ownKeys = require('../internals/own-keys');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\n\nmodule.exports = function (target, source) {\n var keys = ownKeys(source);\n var defineProperty = definePropertyModule.f;\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));\n }\n};\n","var getBuiltIn = require('../internals/get-built-in');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;\n};\n","var global = require('../internals/global');\n\nmodule.exports = global;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.es/ecma262/#sec-object.getownpropertynames\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","var toInteger = require('../internals/to-integer');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toInteger(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar objectKeys = require('../internals/object-keys');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar toObject = require('../internals/to-object');\nvar IndexedObject = require('../internals/indexed-object');\n\nvar nativeAssign = Object.assign;\nvar defineProperty = Object.defineProperty;\n\n// `Object.assign` method\n// https://tc39.es/ecma262/#sec-object.assign\nmodule.exports = !nativeAssign || fails(function () {\n // should have correct order of operations (Edge bug)\n if (DESCRIPTORS && nativeAssign({ b: 1 }, nativeAssign(defineProperty({}, 'a', {\n enumerable: true,\n get: function () {\n defineProperty(this, 'b', {\n value: 3,\n enumerable: false\n });\n }\n }), { b: 2 })).b !== 1) return true;\n // should work with symbols and should have deterministic property order (V8 bug)\n var A = {};\n var B = {};\n // eslint-disable-next-line no-undef\n var symbol = Symbol();\n var alphabet = 'abcdefghijklmnopqrst';\n A[symbol] = 7;\n alphabet.split('').forEach(function (chr) { B[chr] = chr; });\n return nativeAssign({}, A)[symbol] != 7 || objectKeys(nativeAssign({}, B)).join('') != alphabet;\n}) ? function assign(target, source) { // eslint-disable-line no-unused-vars\n var T = toObject(target);\n var argumentsLength = arguments.length;\n var index = 1;\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n var propertyIsEnumerable = propertyIsEnumerableModule.f;\n while (argumentsLength > index) {\n var S = IndexedObject(arguments[index++]);\n var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S);\n var length = keys.length;\n var j = 0;\n var key;\n while (length > j) {\n key = keys[j++];\n if (!DESCRIPTORS || propertyIsEnumerable.call(S, key)) T[key] = S[key];\n }\n } return T;\n} : nativeAssign;\n","module.exports = require('./lib/axios');","'use strict';\n\nvar utils = require('./utils');\nvar bind = require('./helpers/bind');\nvar Axios = require('./core/Axios');\nvar mergeConfig = require('./core/mergeConfig');\nvar defaults = require('./defaults');\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n * @return {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n var context = new Axios(defaultConfig);\n var instance = bind(Axios.prototype.request, context);\n\n // Copy axios.prototype to instance\n utils.extend(instance, Axios.prototype, context);\n\n // Copy context to instance\n utils.extend(instance, context);\n\n return instance;\n}\n\n// Create the default instance to be exported\nvar axios = createInstance(defaults);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = Axios;\n\n// Factory for creating new instances\naxios.create = function create(instanceConfig) {\n return createInstance(mergeConfig(axios.defaults, instanceConfig));\n};\n\n// Expose Cancel & CancelToken\naxios.Cancel = require('./cancel/Cancel');\naxios.CancelToken = require('./cancel/CancelToken');\naxios.isCancel = require('./cancel/isCancel');\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\naxios.spread = require('./helpers/spread');\n\n// Expose isAxiosError\naxios.isAxiosError = require('./helpers/isAxiosError');\n\nmodule.exports = axios;\n\n// Allow use of default import syntax in TypeScript\nmodule.exports.default = axios;\n","'use strict';\n\nvar utils = require('./../utils');\nvar buildURL = require('../helpers/buildURL');\nvar InterceptorManager = require('./InterceptorManager');\nvar dispatchRequest = require('./dispatchRequest');\nvar mergeConfig = require('./mergeConfig');\n\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n */\nfunction Axios(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new InterceptorManager(),\n response: new InterceptorManager()\n };\n}\n\n/**\n * Dispatch a request\n *\n * @param {Object} config The config specific for this request (merged with this.defaults)\n */\nAxios.prototype.request = function request(config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof config === 'string') {\n config = arguments[1] || {};\n config.url = arguments[0];\n } else {\n config = config || {};\n }\n\n config = mergeConfig(this.defaults, config);\n\n // Set config.method\n if (config.method) {\n config.method = config.method.toLowerCase();\n } else if (this.defaults.method) {\n config.method = this.defaults.method.toLowerCase();\n } else {\n config.method = 'get';\n }\n\n // Hook up interceptors middleware\n var chain = [dispatchRequest, undefined];\n var promise = Promise.resolve(config);\n\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n chain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n chain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n while (chain.length) {\n promise = promise.then(chain.shift(), chain.shift());\n }\n\n return promise;\n};\n\nAxios.prototype.getUri = function getUri(config) {\n config = mergeConfig(this.defaults, config);\n return buildURL(config.url, config.params, config.paramsSerializer).replace(/^\\?/, '');\n};\n\n// Provide aliases for supported request methods\nutils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(mergeConfig(config || {}, {\n method: method,\n url: url,\n data: (config || {}).data\n }));\n };\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, data, config) {\n return this.request(mergeConfig(config || {}, {\n method: method,\n url: url,\n data: data\n }));\n };\n});\n\nmodule.exports = Axios;\n","'use strict';\n\nvar utils = require('./../utils');\n\nfunction InterceptorManager() {\n this.handlers = [];\n}\n\n/**\n * Add a new interceptor to the stack\n *\n * @param {Function} fulfilled The function to handle `then` for a `Promise`\n * @param {Function} rejected The function to handle `reject` for a `Promise`\n *\n * @return {Number} An ID used to remove interceptor later\n */\nInterceptorManager.prototype.use = function use(fulfilled, rejected) {\n this.handlers.push({\n fulfilled: fulfilled,\n rejected: rejected\n });\n return this.handlers.length - 1;\n};\n\n/**\n * Remove an interceptor from the stack\n *\n * @param {Number} id The ID that was returned by `use`\n */\nInterceptorManager.prototype.eject = function eject(id) {\n if (this.handlers[id]) {\n this.handlers[id] = null;\n }\n};\n\n/**\n * Iterate over all the registered interceptors\n *\n * This method is particularly useful for skipping over any\n * interceptors that may have become `null` calling `eject`.\n *\n * @param {Function} fn The function to call for each interceptor\n */\nInterceptorManager.prototype.forEach = function forEach(fn) {\n utils.forEach(this.handlers, function forEachHandler(h) {\n if (h !== null) {\n fn(h);\n }\n });\n};\n\nmodule.exports = InterceptorManager;\n","'use strict';\n\nvar utils = require('./../utils');\nvar transformData = require('./transformData');\nvar isCancel = require('../cancel/isCancel');\nvar defaults = require('../defaults');\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n * @returns {Promise} The Promise to be fulfilled\n */\nmodule.exports = function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n // Ensure headers exist\n config.headers = config.headers || {};\n\n // Transform request data\n config.data = transformData(\n config.data,\n config.headers,\n config.transformRequest\n );\n\n // Flatten headers\n config.headers = utils.merge(\n config.headers.common || {},\n config.headers[config.method] || {},\n config.headers\n );\n\n utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n function cleanHeaderConfig(method) {\n delete config.headers[method];\n }\n );\n\n var adapter = config.adapter || defaults.adapter;\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData(\n response.data,\n response.headers,\n config.transformResponse\n );\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData(\n reason.response.data,\n reason.response.headers,\n config.transformResponse\n );\n }\n }\n\n return Promise.reject(reason);\n });\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\n/**\n * Transform the data for a request or a response\n *\n * @param {Object|String} data The data to be transformed\n * @param {Array} headers The headers for the request or response\n * @param {Array|Function} fns A single function or Array of functions\n * @returns {*} The resulting transformed data\n */\nmodule.exports = function transformData(data, headers, fns) {\n /*eslint no-param-reassign:0*/\n utils.forEach(fns, function transform(fn) {\n data = fn(data, headers);\n });\n\n return data;\n};\n","'use strict';\n\nvar utils = require('../utils');\n\nmodule.exports = function normalizeHeaderName(headers, normalizedName) {\n utils.forEach(headers, function processHeader(value, name) {\n if (name !== normalizedName && name.toUpperCase() === normalizedName.toUpperCase()) {\n headers[normalizedName] = value;\n delete headers[name];\n }\n });\n};\n","'use strict';\n\nvar createError = require('./createError');\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n */\nmodule.exports = function settle(resolve, reject, response) {\n var validateStatus = response.config.validateStatus;\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(createError(\n 'Request failed with status code ' + response.status,\n response.config,\n null,\n response.request,\n response\n ));\n }\n};\n","'use strict';\n\n/**\n * Update an Error with the specified config, error code, and response.\n *\n * @param {Error} error The error to update.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The error.\n */\nmodule.exports = function enhanceError(error, config, code, request, response) {\n error.config = config;\n if (code) {\n error.code = code;\n }\n\n error.request = request;\n error.response = response;\n error.isAxiosError = true;\n\n error.toJSON = function toJSON() {\n return {\n // Standard\n message: this.message,\n name: this.name,\n // Microsoft\n description: this.description,\n number: this.number,\n // Mozilla\n fileName: this.fileName,\n lineNumber: this.lineNumber,\n columnNumber: this.columnNumber,\n stack: this.stack,\n // Axios\n config: this.config,\n code: this.code\n };\n };\n return error;\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs support document.cookie\n (function standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n var cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n\n read: function read(name) {\n var match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n })() :\n\n // Non standard browser env (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() { return null; },\n remove: function remove() {}\n };\n })()\n);\n","'use strict';\n\nvar isAbsoluteURL = require('../helpers/isAbsoluteURL');\nvar combineURLs = require('../helpers/combineURLs');\n\n/**\n * Creates a new URL by combining the baseURL with the requestedURL,\n * only when the requestedURL is not already an absolute URL.\n * If the requestURL is absolute, this function returns the requestedURL untouched.\n *\n * @param {string} baseURL The base URL\n * @param {string} requestedURL Absolute or relative URL to combine\n * @returns {string} The combined full path\n */\nmodule.exports = function buildFullPath(baseURL, requestedURL) {\n if (baseURL && !isAbsoluteURL(requestedURL)) {\n return combineURLs(baseURL, requestedURL);\n }\n return requestedURL;\n};\n","'use strict';\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nmodule.exports = function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"<scheme>://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d\\+\\-\\.]*:)?\\/\\//i.test(url);\n};\n","'use strict';\n\n/**\n * Creates a new URL by combining the specified URLs\n *\n * @param {string} baseURL The base URL\n * @param {string} relativeURL The relative URL\n * @returns {string} The combined URL\n */\nmodule.exports = function combineURLs(baseURL, relativeURL) {\n return relativeURL\n ? baseURL.replace(/\\/+$/, '') + '/' + relativeURL.replace(/^\\/+/, '')\n : baseURL;\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\n// Headers whose duplicates are ignored by node\n// c.f. https://nodejs.org/api/http.html#http_message_headers\nvar ignoreDuplicateOf = [\n 'age', 'authorization', 'content-length', 'content-type', 'etag',\n 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',\n 'last-modified', 'location', 'max-forwards', 'proxy-authorization',\n 'referer', 'retry-after', 'user-agent'\n];\n\n/**\n * Parse headers into an object\n *\n * ```\n * Date: Wed, 27 Aug 2014 08:58:49 GMT\n * Content-Type: application/json\n * Connection: keep-alive\n * Transfer-Encoding: chunked\n * ```\n *\n * @param {String} headers Headers needing to be parsed\n * @returns {Object} Headers parsed into an object\n */\nmodule.exports = function parseHeaders(headers) {\n var parsed = {};\n var key;\n var val;\n var i;\n\n if (!headers) { return parsed; }\n\n utils.forEach(headers.split('\\n'), function parser(line) {\n i = line.indexOf(':');\n key = utils.trim(line.substr(0, i)).toLowerCase();\n val = utils.trim(line.substr(i + 1));\n\n if (key) {\n if (parsed[key] && ignoreDuplicateOf.indexOf(key) >= 0) {\n return;\n }\n if (key === 'set-cookie') {\n parsed[key] = (parsed[key] ? parsed[key] : []).concat([val]);\n } else {\n parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n }\n }\n });\n\n return parsed;\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs have full support of the APIs needed to test\n // whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n var msie = /(msie|trident)/i.test(navigator.userAgent);\n var urlParsingNode = document.createElement('a');\n var originURL;\n\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n var href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })()\n);\n","'use strict';\n\nvar Cancel = require('./Cancel');\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @class\n * @param {Function} executor The executor function.\n */\nfunction CancelToken(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n var resolvePromise;\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n var token = this;\n executor(function cancel(message) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new Cancel(message);\n resolvePromise(token.reason);\n });\n}\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nCancelToken.prototype.throwIfRequested = function throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n};\n\n/**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\nCancelToken.source = function source() {\n var cancel;\n var token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token: token,\n cancel: cancel\n };\n};\n\nmodule.exports = CancelToken;\n","'use strict';\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n * @returns {Function}\n */\nmodule.exports = function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n};\n","'use strict';\n\n/**\n * Determines whether the payload is an error thrown by Axios\n *\n * @param {*} payload The value to test\n * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false\n */\nmodule.exports = function isAxiosError(payload) {\n return (typeof payload === 'object') && (payload.isAxiosError === true);\n};\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nObject.defineProperty(exports, \"getRequestToken\", {\n enumerable: true,\n get: function get() {\n return _requesttoken.getRequestToken;\n }\n});\nObject.defineProperty(exports, \"onRequestTokenUpdate\", {\n enumerable: true,\n get: function get() {\n return _requesttoken.onRequestTokenUpdate;\n }\n});\nObject.defineProperty(exports, \"getCurrentUser\", {\n enumerable: true,\n get: function get() {\n return _user.getCurrentUser;\n }\n});\n\nvar _requesttoken = require(\"./requesttoken\");\n\nvar _user = require(\"./user\");\n//# sourceMappingURL=index.js.map","\"use strict\";\n\nrequire(\"core-js/modules/es.array.for-each\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getRequestToken = getRequestToken;\nexports.onRequestTokenUpdate = onRequestTokenUpdate;\n\nvar _eventBus = require(\"@nextcloud/event-bus\");\n\nvar tokenElement = document.getElementsByTagName('head')[0];\nvar token = tokenElement ? tokenElement.getAttribute('data-requesttoken') : null;\nvar observers = [];\n\nfunction getRequestToken() {\n return token;\n}\n\nfunction onRequestTokenUpdate(observer) {\n observers.push(observer);\n} // Listen to server event and keep token in sync\n\n\n(0, _eventBus.subscribe)('csrf-token-update', function (e) {\n token = e.token;\n observers.forEach(function (observer) {\n try {\n observer(e.token);\n } catch (e) {\n console.error('error updating CSRF token observer', e);\n }\n });\n});\n//# sourceMappingURL=requesttoken.js.map","module.exports = function (it) {\n if (typeof it != 'function') {\n throw TypeError(String(it) + ' is not a function');\n } return it;\n};\n","var NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n // eslint-disable-next-line no-undef\n && !Symbol.sham\n // eslint-disable-next-line no-undef\n && typeof Symbol.iterator == 'symbol';\n","import { EventBus } from \"./EventBus\"\nimport { ProxyBus } from \"./ProxyBus\"\nimport { SimpleBus } from \"./SimpleBus\"\n\ndeclare global {\n interface Window {\n OC: any\n _nc_event_bus: any\n }\n}\n\nfunction getBus(): EventBus {\n if ((typeof window.OC !== 'undefined') && window.OC._eventBus && typeof window._nc_event_bus === 'undefined') {\n console.warn('found old event bus instance at OC._eventBus. Update your version!')\n window._nc_event_bus = window.OC._eventBus\n }\n\n // Either use an existing event bus instance or create one\n if (typeof window._nc_event_bus !== 'undefined') {\n return new ProxyBus(window._nc_event_bus)\n } else {\n return window._nc_event_bus = new SimpleBus()\n }\n}\n\nconst bus = getBus()\n\n/**\n * Register an event listener\n *\n * @param name name of the event\n * @param handler callback invoked for every matching event emitted on the bus\n */\nexport function subscribe(name: string, handler: (string) => void): void {\n bus.subscribe(name, handler)\n}\n\n/**\n * Unregister a previously registered event listener\n *\n * Note: doesn't work with anonymous functions (closures). Use method of an object or store listener function in variable.\n *\n * @param name name of the event\n * @param handler callback passed to `subscribed`\n */\nexport function unsubscribe(name: string, handler: (string) => void): void {\n bus.unsubscribe(name, handler)\n}\n\n/**\n * Emit an event\n *\n * @param name name of the event\n * @param event event payload\n */\nexport function emit(name: string, event: object): void {\n bus.emit(name, event)\n}\n","import valid from \"semver/functions/valid\";\nimport major from \"semver/functions/major\";\n\nimport packageJson from \"../package.json\";\nimport { Event } from \"./Event.js\";\nimport { EventBus } from \"./EventBus.js\";\nimport { EventHandler } from \"./EventHandler.js\";\n\nexport class ProxyBus implements EventBus {\n\n private bus: EventBus;\n\n constructor(bus: EventBus) {\n if (typeof bus.getVersion !== 'function' || !valid(bus.getVersion())) {\n console.warn('Proxying an event bus with an unknown or invalid version')\n } else if (major(bus.getVersion()) !== major(this.getVersion())) {\n console.warn('Proxying an event bus of version ' + bus.getVersion() + ' with ' + this.getVersion())\n }\n\n this.bus = bus;\n }\n\n getVersion(): string {\n return packageJson.version\n }\n\n subscribe(name: string, handler: EventHandler): void {\n this.bus.subscribe(name, handler);\n }\n\n unsubscribe(name: string, handler: EventHandler): void {\n this.bus.unsubscribe(name, handler);\n }\n\n emit(name: string, event: Event): void {\n this.bus.emit(name, event);\n }\n\n}\n","const parse = require('./parse')\nconst valid = (version, options) => {\n const v = parse(version, options)\n return v ? v.version : null\n}\nmodule.exports = valid\n","const {MAX_LENGTH} = require('../internal/constants')\nconst { re, t } = require('../internal/re')\nconst SemVer = require('../classes/semver')\n\nconst parse = (version, options) => {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n if (version instanceof SemVer) {\n return version\n }\n\n if (typeof version !== 'string') {\n return null\n }\n\n if (version.length > MAX_LENGTH) {\n return null\n }\n\n const r = options.loose ? re[t.LOOSE] : re[t.FULL]\n if (!r.test(version)) {\n return null\n }\n\n try {\n return new SemVer(version, options)\n } catch (er) {\n return null\n }\n}\n\nmodule.exports = parse\n","const numeric = /^[0-9]+$/\nconst compareIdentifiers = (a, b) => {\n const anum = numeric.test(a)\n const bnum = numeric.test(b)\n\n if (anum && bnum) {\n a = +a\n b = +b\n }\n\n return a === b ? 0\n : (anum && !bnum) ? -1\n : (bnum && !anum) ? 1\n : a < b ? -1\n : 1\n}\n\nconst rcompareIdentifiers = (a, b) => compareIdentifiers(b, a)\n\nmodule.exports = {\n compareIdentifiers,\n rcompareIdentifiers\n}\n","const SemVer = require('../classes/semver')\nconst major = (a, loose) => new SemVer(a, loose).major\nmodule.exports = major\n","import packageJson from \"../package.json\";\nimport { Event } from \"./Event.js\";\nimport { EventBus } from \"./EventBus.js\";\nimport { EventHandler } from \"./EventHandler.js\";\n\nexport class SimpleBus implements EventBus {\n\n private handlers = new Map<string, EventHandler[]>();\n\n getVersion(): string {\n return packageJson.version\n }\n\n subscribe(name: string, handler: EventHandler): void {\n this.handlers.set(name, (this.handlers.get(name) || []).concat(handler));\n }\n\n unsubscribe(name: string, handler: EventHandler): void {\n this.handlers.set(name, (this.handlers.get(name) || []).filter(h => h != handler));\n }\n\n emit(name: string, event: Event): void {\n (this.handlers.get(name) || []).forEach(h => {\n try {\n h(event)\n } catch (e) {\n console.error('could not invoke event listener', e)\n }\n })\n }\n\n}\n","'use strict';\nvar toPrimitive = require('../internals/to-primitive');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = function (object, key, value) {\n var propertyKey = toPrimitive(key);\n if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));\n else object[propertyKey] = value;\n};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';\n","'use strict';\nvar $ = require('../internals/export');\nvar $filter = require('../internals/array-iteration').filter;\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('filter');\n// Edge 14- issue\nvar USES_TO_LENGTH = arrayMethodUsesToLength('filter');\n\n// `Array.prototype.filter` method\n// https://tc39.es/ecma262/#sec-array.prototype.filter\n// with adding support of @@species\n$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, {\n filter: function filter(callbackfn /* , thisArg */) {\n return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar create = require('../internals/object-create');\nvar definePropertyModule = require('../internals/object-define-property');\n\nvar UNSCOPABLES = wellKnownSymbol('unscopables');\nvar ArrayPrototype = Array.prototype;\n\n// Array.prototype[@@unscopables]\n// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables\nif (ArrayPrototype[UNSCOPABLES] == undefined) {\n definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {\n configurable: true,\n value: create(null)\n });\n}\n\n// add a key to Array.prototype[@@unscopables]\nmodule.exports = function (key) {\n ArrayPrototype[UNSCOPABLES][key] = true;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar anObject = require('../internals/an-object');\nvar objectKeys = require('../internals/object-keys');\n\n// `Object.defineProperties` method\n// https://tc39.es/ecma262/#sec-object.defineproperties\nmodule.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = objectKeys(Properties);\n var length = keys.length;\n var index = 0;\n var key;\n while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]);\n return O;\n};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('document', 'documentElement');\n","'use strict';\nvar IteratorPrototype = require('../internals/iterators-core').IteratorPrototype;\nvar create = require('../internals/object-create');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar Iterators = require('../internals/iterators');\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (IteratorConstructor, NAME, next) {\n var TO_STRING_TAG = NAME + ' Iterator';\n IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) });\n setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);\n Iterators[TO_STRING_TAG] = returnThis;\n return IteratorConstructor;\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n function F() { /* empty */ }\n F.prototype.constructor = null;\n return Object.getPrototypeOf(new F()) !== F.prototype;\n});\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it) && it !== null) {\n throw TypeError(\"Can't set \" + String(it) + ' as a prototype');\n } return it;\n};\n","'use strict';\nvar collection = require('../internals/collection');\nvar collectionStrong = require('../internals/collection-strong');\n\n// `Map` constructor\n// https://tc39.es/ecma262/#sec-map-objects\nmodule.exports = collection('Map', function (init) {\n return function Map() { return init(this, arguments.length ? arguments[0] : undefined); };\n}, collectionStrong);\n","'use strict';\nvar $ = require('../internals/export');\nvar global = require('../internals/global');\nvar isForced = require('../internals/is-forced');\nvar redefine = require('../internals/redefine');\nvar InternalMetadataModule = require('../internals/internal-metadata');\nvar iterate = require('../internals/iterate');\nvar anInstance = require('../internals/an-instance');\nvar isObject = require('../internals/is-object');\nvar fails = require('../internals/fails');\nvar checkCorrectnessOfIteration = require('../internals/check-correctness-of-iteration');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar inheritIfRequired = require('../internals/inherit-if-required');\n\nmodule.exports = function (CONSTRUCTOR_NAME, wrapper, common) {\n var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;\n var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1;\n var ADDER = IS_MAP ? 'set' : 'add';\n var NativeConstructor = global[CONSTRUCTOR_NAME];\n var NativePrototype = NativeConstructor && NativeConstructor.prototype;\n var Constructor = NativeConstructor;\n var exported = {};\n\n var fixMethod = function (KEY) {\n var nativeMethod = NativePrototype[KEY];\n redefine(NativePrototype, KEY,\n KEY == 'add' ? function add(value) {\n nativeMethod.call(this, value === 0 ? 0 : value);\n return this;\n } : KEY == 'delete' ? function (key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'get' ? function get(key) {\n return IS_WEAK && !isObject(key) ? undefined : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'has' ? function has(key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : function set(key, value) {\n nativeMethod.call(this, key === 0 ? 0 : key, value);\n return this;\n }\n );\n };\n\n // eslint-disable-next-line max-len\n if (isForced(CONSTRUCTOR_NAME, typeof NativeConstructor != 'function' || !(IS_WEAK || NativePrototype.forEach && !fails(function () {\n new NativeConstructor().entries().next();\n })))) {\n // create collection constructor\n Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER);\n InternalMetadataModule.REQUIRED = true;\n } else if (isForced(CONSTRUCTOR_NAME, true)) {\n var instance = new Constructor();\n // early implementations not supports chaining\n var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;\n // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false\n var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });\n // most early implementations doesn't supports iterables, most modern - not close it correctly\n // eslint-disable-next-line no-new\n var ACCEPT_ITERABLES = checkCorrectnessOfIteration(function (iterable) { new NativeConstructor(iterable); });\n // for early implementations -0 and +0 not the same\n var BUGGY_ZERO = !IS_WEAK && fails(function () {\n // V8 ~ Chromium 42- fails only with 5+ elements\n var $instance = new NativeConstructor();\n var index = 5;\n while (index--) $instance[ADDER](index, index);\n return !$instance.has(-0);\n });\n\n if (!ACCEPT_ITERABLES) {\n Constructor = wrapper(function (dummy, iterable) {\n anInstance(dummy, Constructor, CONSTRUCTOR_NAME);\n var that = inheritIfRequired(new NativeConstructor(), dummy, Constructor);\n if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });\n return that;\n });\n Constructor.prototype = NativePrototype;\n NativePrototype.constructor = Constructor;\n }\n\n if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {\n fixMethod('delete');\n fixMethod('has');\n IS_MAP && fixMethod('get');\n }\n\n if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER);\n\n // weak collections should not contains .clear method\n if (IS_WEAK && NativePrototype.clear) delete NativePrototype.clear;\n }\n\n exported[CONSTRUCTOR_NAME] = Constructor;\n $({ global: true, forced: Constructor != NativeConstructor }, exported);\n\n setToStringTag(Constructor, CONSTRUCTOR_NAME);\n\n if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP);\n\n return Constructor;\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n return Object.isExtensible(Object.preventExtensions({}));\n});\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar Iterators = require('../internals/iterators');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar ArrayPrototype = Array.prototype;\n\n// check on default Array iterator\nmodule.exports = function (it) {\n return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);\n};\n","var classof = require('../internals/classof');\nvar Iterators = require('../internals/iterators');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\n\nmodule.exports = function (it) {\n if (it != undefined) return it[ITERATOR]\n || it['@@iterator']\n || Iterators[classof(it)];\n};\n","var anObject = require('../internals/an-object');\n\nmodule.exports = function (iterator) {\n var returnMethod = iterator['return'];\n if (returnMethod !== undefined) {\n return anObject(returnMethod.call(iterator)).value;\n }\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar SAFE_CLOSING = false;\n\ntry {\n var called = 0;\n var iteratorWithReturn = {\n next: function () {\n return { done: !!called++ };\n },\n 'return': function () {\n SAFE_CLOSING = true;\n }\n };\n iteratorWithReturn[ITERATOR] = function () {\n return this;\n };\n // eslint-disable-next-line no-throw-literal\n Array.from(iteratorWithReturn, function () { throw 2; });\n} catch (error) { /* empty */ }\n\nmodule.exports = function (exec, SKIP_CLOSING) {\n if (!SKIP_CLOSING && !SAFE_CLOSING) return false;\n var ITERATION_SUPPORT = false;\n try {\n var object = {};\n object[ITERATOR] = function () {\n return {\n next: function () {\n return { done: ITERATION_SUPPORT = true };\n }\n };\n };\n exec(object);\n } catch (error) { /* empty */ }\n return ITERATION_SUPPORT;\n};\n","var isObject = require('../internals/is-object');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\n\n// makes subclassing work correct for wrapped built-ins\nmodule.exports = function ($this, dummy, Wrapper) {\n var NewTarget, NewTargetPrototype;\n if (\n // it can work only with native `setPrototypeOf`\n setPrototypeOf &&\n // we haven't completely correct pre-ES6 way for getting `new.target`, so use this\n typeof (NewTarget = dummy.constructor) == 'function' &&\n NewTarget !== Wrapper &&\n isObject(NewTargetPrototype = NewTarget.prototype) &&\n NewTargetPrototype !== Wrapper.prototype\n ) setPrototypeOf($this, NewTargetPrototype);\n return $this;\n};\n","'use strict';\nvar defineProperty = require('../internals/object-define-property').f;\nvar create = require('../internals/object-create');\nvar redefineAll = require('../internals/redefine-all');\nvar bind = require('../internals/function-bind-context');\nvar anInstance = require('../internals/an-instance');\nvar iterate = require('../internals/iterate');\nvar defineIterator = require('../internals/define-iterator');\nvar setSpecies = require('../internals/set-species');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fastKey = require('../internals/internal-metadata').fastKey;\nvar InternalStateModule = require('../internals/internal-state');\n\nvar setInternalState = InternalStateModule.set;\nvar internalStateGetterFor = InternalStateModule.getterFor;\n\nmodule.exports = {\n getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, CONSTRUCTOR_NAME);\n setInternalState(that, {\n type: CONSTRUCTOR_NAME,\n index: create(null),\n first: undefined,\n last: undefined,\n size: 0\n });\n if (!DESCRIPTORS) that.size = 0;\n if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });\n });\n\n var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);\n\n var define = function (that, key, value) {\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n var previous, index;\n // change existing entry\n if (entry) {\n entry.value = value;\n // create new entry\n } else {\n state.last = entry = {\n index: index = fastKey(key, true),\n key: key,\n value: value,\n previous: previous = state.last,\n next: undefined,\n removed: false\n };\n if (!state.first) state.first = entry;\n if (previous) previous.next = entry;\n if (DESCRIPTORS) state.size++;\n else that.size++;\n // add to index\n if (index !== 'F') state.index[index] = entry;\n } return that;\n };\n\n var getEntry = function (that, key) {\n var state = getInternalState(that);\n // fast case\n var index = fastKey(key);\n var entry;\n if (index !== 'F') return state.index[index];\n // frozen object case\n for (entry = state.first; entry; entry = entry.next) {\n if (entry.key == key) return entry;\n }\n };\n\n redefineAll(C.prototype, {\n // 23.1.3.1 Map.prototype.clear()\n // 23.2.3.2 Set.prototype.clear()\n clear: function clear() {\n var that = this;\n var state = getInternalState(that);\n var data = state.index;\n var entry = state.first;\n while (entry) {\n entry.removed = true;\n if (entry.previous) entry.previous = entry.previous.next = undefined;\n delete data[entry.index];\n entry = entry.next;\n }\n state.first = state.last = undefined;\n if (DESCRIPTORS) state.size = 0;\n else that.size = 0;\n },\n // 23.1.3.3 Map.prototype.delete(key)\n // 23.2.3.4 Set.prototype.delete(value)\n 'delete': function (key) {\n var that = this;\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n if (entry) {\n var next = entry.next;\n var prev = entry.previous;\n delete state.index[entry.index];\n entry.removed = true;\n if (prev) prev.next = next;\n if (next) next.previous = prev;\n if (state.first == entry) state.first = next;\n if (state.last == entry) state.last = prev;\n if (DESCRIPTORS) state.size--;\n else that.size--;\n } return !!entry;\n },\n // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)\n // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)\n forEach: function forEach(callbackfn /* , that = undefined */) {\n var state = getInternalState(this);\n var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);\n var entry;\n while (entry = entry ? entry.next : state.first) {\n boundFunction(entry.value, entry.key, this);\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n }\n },\n // 23.1.3.7 Map.prototype.has(key)\n // 23.2.3.7 Set.prototype.has(value)\n has: function has(key) {\n return !!getEntry(this, key);\n }\n });\n\n redefineAll(C.prototype, IS_MAP ? {\n // 23.1.3.6 Map.prototype.get(key)\n get: function get(key) {\n var entry = getEntry(this, key);\n return entry && entry.value;\n },\n // 23.1.3.9 Map.prototype.set(key, value)\n set: function set(key, value) {\n return define(this, key === 0 ? 0 : key, value);\n }\n } : {\n // 23.2.3.1 Set.prototype.add(value)\n add: function add(value) {\n return define(this, value = value === 0 ? 0 : value, value);\n }\n });\n if (DESCRIPTORS) defineProperty(C.prototype, 'size', {\n get: function () {\n return getInternalState(this).size;\n }\n });\n return C;\n },\n setStrong: function (C, CONSTRUCTOR_NAME, IS_MAP) {\n var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator';\n var getInternalCollectionState = internalStateGetterFor(CONSTRUCTOR_NAME);\n var getInternalIteratorState = internalStateGetterFor(ITERATOR_NAME);\n // add .keys, .values, .entries, [@@iterator]\n // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11\n defineIterator(C, CONSTRUCTOR_NAME, function (iterated, kind) {\n setInternalState(this, {\n type: ITERATOR_NAME,\n target: iterated,\n state: getInternalCollectionState(iterated),\n kind: kind,\n last: undefined\n });\n }, function () {\n var state = getInternalIteratorState(this);\n var kind = state.kind;\n var entry = state.last;\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n // get next entry\n if (!state.target || !(state.last = entry = entry ? entry.next : state.state.first)) {\n // or finish the iteration\n state.target = undefined;\n return { value: undefined, done: true };\n }\n // return step by kind\n if (kind == 'keys') return { value: entry.key, done: false };\n if (kind == 'values') return { value: entry.value, done: false };\n return { value: [entry.key, entry.value], done: false };\n }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);\n\n // add [@@species], 23.1.2.2, 23.2.2.2\n setSpecies(CONSTRUCTOR_NAME);\n }\n};\n","var redefine = require('../internals/redefine');\n\nmodule.exports = function (target, src, options) {\n for (var key in src) redefine(target, key, src[key], options);\n return target;\n};\n","'use strict';\nvar getBuiltIn = require('../internals/get-built-in');\nvar definePropertyModule = require('../internals/object-define-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar DESCRIPTORS = require('../internals/descriptors');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (CONSTRUCTOR_NAME) {\n var Constructor = getBuiltIn(CONSTRUCTOR_NAME);\n var defineProperty = definePropertyModule.f;\n\n if (DESCRIPTORS && Constructor && !Constructor[SPECIES]) {\n defineProperty(Constructor, SPECIES, {\n configurable: true,\n get: function () { return this; }\n });\n }\n};\n","'use strict';\nvar TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classof = require('../internals/classof');\n\n// `Object.prototype.toString` method implementation\n// https://tc39.es/ecma262/#sec-object.prototype.tostring\nmodule.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {\n return '[object ' + classof(this) + ']';\n};\n","'use strict';\nvar charAt = require('../internals/string-multibyte').charAt;\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar STRING_ITERATOR = 'String Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(STRING_ITERATOR);\n\n// `String.prototype[@@iterator]` method\n// https://tc39.es/ecma262/#sec-string.prototype-@@iterator\ndefineIterator(String, 'String', function (iterated) {\n setInternalState(this, {\n type: STRING_ITERATOR,\n string: String(iterated),\n index: 0\n });\n// `%StringIteratorPrototype%.next` method\n// https://tc39.es/ecma262/#sec-%stringiteratorprototype%.next\n}, function next() {\n var state = getInternalState(this);\n var string = state.string;\n var index = state.index;\n var point;\n if (index >= string.length) return { value: undefined, done: true };\n point = charAt(string, index);\n state.index += point.length;\n return { value: point, done: false };\n});\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar forEach = require('../internals/array-for-each');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try {\n createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach);\n } catch (error) {\n CollectionPrototype.forEach = forEach;\n }\n}\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar ArrayIteratorMethods = require('../modules/es.array.iterator');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar ArrayValues = ArrayIteratorMethods.values;\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n if (CollectionPrototype) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[ITERATOR] !== ArrayValues) try {\n createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);\n } catch (error) {\n CollectionPrototype[ITERATOR] = ArrayValues;\n }\n if (!CollectionPrototype[TO_STRING_TAG]) {\n createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);\n }\n if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {\n createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);\n } catch (error) {\n CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];\n }\n }\n }\n}\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getCurrentUser = getCurrentUser;\n/// <reference types=\"@nextcloud/typings\" />\nvar uidElement = document.getElementsByTagName('head')[0];\nvar uid = uidElement ? uidElement.getAttribute('data-user') : null;\nvar displayNameElement = document.getElementsByTagName('head')[0];\nvar displayName = displayNameElement ? displayNameElement.getAttribute('data-user-displayname') : null;\nvar isAdmin = typeof OC === 'undefined' ? false : OC.isUserAdmin();\n\nfunction getCurrentUser() {\n if (uid === null) {\n return null;\n }\n\n return {\n uid: uid,\n displayName: displayName,\n isAdmin: isAdmin\n };\n}\n//# sourceMappingURL=user.js.map","'use strict';\nvar $ = require('../internals/export');\nvar $indexOf = require('../internals/array-includes').indexOf;\nvar arrayMethodIsStrict = require('../internals/array-method-is-strict');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar nativeIndexOf = [].indexOf;\n\nvar NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0;\nvar STRICT_METHOD = arrayMethodIsStrict('indexOf');\nvar USES_TO_LENGTH = arrayMethodUsesToLength('indexOf', { ACCESSORS: true, 1: 0 });\n\n// `Array.prototype.indexOf` method\n// https://tc39.es/ecma262/#sec-array.prototype.indexof\n$({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || !STRICT_METHOD || !USES_TO_LENGTH }, {\n indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {\n return NEGATIVE_ZERO\n // convert -0 to +0\n ? nativeIndexOf.apply(this, arguments) || 0\n : $indexOf(this, searchElement, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","'use strict';\n\nvar fails = require('./fails');\n\n// babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError,\n// so we use an intermediate function.\nfunction RE(s, f) {\n return RegExp(s, f);\n}\n\nexports.UNSUPPORTED_Y = fails(function () {\n // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError\n var re = RE('a', 'y');\n re.lastIndex = 2;\n return re.exec('abcd') != null;\n});\n\nexports.BROKEN_CARET = fails(function () {\n // https://bugzilla.mozilla.org/show_bug.cgi?id=773687\n var re = RE('^r', 'gy');\n re.lastIndex = 2;\n return re.exec('str') != null;\n});\n","'use strict';\nvar redefine = require('../internals/redefine');\nvar anObject = require('../internals/an-object');\nvar fails = require('../internals/fails');\nvar flags = require('../internals/regexp-flags');\n\nvar TO_STRING = 'toString';\nvar RegExpPrototype = RegExp.prototype;\nvar nativeToString = RegExpPrototype[TO_STRING];\n\nvar NOT_GENERIC = fails(function () { return nativeToString.call({ source: 'a', flags: 'b' }) != '/a/b'; });\n// FF44- RegExp#toString has a wrong name\nvar INCORRECT_NAME = nativeToString.name != TO_STRING;\n\n// `RegExp.prototype.toString` method\n// https://tc39.es/ecma262/#sec-regexp.prototype.tostring\nif (NOT_GENERIC || INCORRECT_NAME) {\n redefine(RegExp.prototype, TO_STRING, function toString() {\n var R = anObject(this);\n var p = String(R.source);\n var rf = R.flags;\n var f = String(rf === undefined && R instanceof RegExp && !('flags' in RegExpPrototype) ? flags.call(R) : rf);\n return '/' + p + '/' + f;\n }, { unsafe: true });\n}\n","'use strict';\nvar fixRegExpWellKnownSymbolLogic = require('../internals/fix-regexp-well-known-symbol-logic');\nvar anObject = require('../internals/an-object');\nvar toLength = require('../internals/to-length');\nvar toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\nvar advanceStringIndex = require('../internals/advance-string-index');\nvar getSubstitution = require('../internals/get-substitution');\nvar regExpExec = require('../internals/regexp-exec-abstract');\n\nvar max = Math.max;\nvar min = Math.min;\n\nvar maybeToString = function (it) {\n return it === undefined ? it : String(it);\n};\n\n// @@replace logic\nfixRegExpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, maybeCallNative, reason) {\n var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = reason.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE;\n var REPLACE_KEEPS_$0 = reason.REPLACE_KEEPS_$0;\n var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0';\n\n return [\n // `String.prototype.replace` method\n // https://tc39.es/ecma262/#sec-string.prototype.replace\n function replace(searchValue, replaceValue) {\n var O = requireObjectCoercible(this);\n var replacer = searchValue == undefined ? undefined : searchValue[REPLACE];\n return replacer !== undefined\n ? replacer.call(searchValue, O, replaceValue)\n : nativeReplace.call(String(O), searchValue, replaceValue);\n },\n // `RegExp.prototype[@@replace]` method\n // https://tc39.es/ecma262/#sec-regexp.prototype-@@replace\n function (regexp, replaceValue) {\n if (\n (!REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE && REPLACE_KEEPS_$0) ||\n (typeof replaceValue === 'string' && replaceValue.indexOf(UNSAFE_SUBSTITUTE) === -1)\n ) {\n var res = maybeCallNative(nativeReplace, regexp, this, replaceValue);\n if (res.done) return res.value;\n }\n\n var rx = anObject(regexp);\n var S = String(this);\n\n var functionalReplace = typeof replaceValue === 'function';\n if (!functionalReplace) replaceValue = String(replaceValue);\n\n var global = rx.global;\n if (global) {\n var fullUnicode = rx.unicode;\n rx.lastIndex = 0;\n }\n var results = [];\n while (true) {\n var result = regExpExec(rx, S);\n if (result === null) break;\n\n results.push(result);\n if (!global) break;\n\n var matchStr = String(result[0]);\n if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);\n }\n\n var accumulatedResult = '';\n var nextSourcePosition = 0;\n for (var i = 0; i < results.length; i++) {\n result = results[i];\n\n var matched = String(result[0]);\n var position = max(min(toInteger(result.index), S.length), 0);\n var captures = [];\n // NOTE: This is equivalent to\n // captures = result.slice(1).map(maybeToString)\n // but for some reason `nativeSlice.call(result, 1, result.length)` (called in\n // the slice polyfill when slicing native arrays) \"doesn't work\" in safari 9 and\n // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.\n for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));\n var namedCaptures = result.groups;\n if (functionalReplace) {\n var replacerArgs = [matched].concat(captures, position, S);\n if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);\n var replacement = String(replaceValue.apply(undefined, replacerArgs));\n } else {\n replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);\n }\n if (position >= nextSourcePosition) {\n accumulatedResult += S.slice(nextSourcePosition, position) + replacement;\n nextSourcePosition = position + matched.length;\n }\n }\n return accumulatedResult + S.slice(nextSourcePosition);\n }\n ];\n});\n","'use strict';\n// TODO: Remove from `core-js@4` since it's moved to entry points\nrequire('../modules/es.regexp.exec');\nvar redefine = require('../internals/redefine');\nvar fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar regexpExec = require('../internals/regexp-exec');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nvar SPECIES = wellKnownSymbol('species');\n\nvar REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {\n // #replace needs built-in support for named groups.\n // #match works fine because it just return the exec results, even if it has\n // a \"grops\" property.\n var re = /./;\n re.exec = function () {\n var result = [];\n result.groups = { a: '7' };\n return result;\n };\n return ''.replace(re, '$<a>') !== '7';\n});\n\n// IE <= 11 replaces $0 with the whole match, as if it was $&\n// https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0\nvar REPLACE_KEEPS_$0 = (function () {\n return 'a'.replace(/./, '$0') === '$0';\n})();\n\nvar REPLACE = wellKnownSymbol('replace');\n// Safari <= 13.0.3(?) substitutes nth capture where n>m with an empty string\nvar REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = (function () {\n if (/./[REPLACE]) {\n return /./[REPLACE]('a', '$0') === '';\n }\n return false;\n})();\n\n// Chrome 51 has a buggy \"split\" implementation when RegExp#exec !== nativeExec\n// Weex JS has frozen built-in prototypes, so use try / catch wrapper\nvar SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {\n var re = /(?:)/;\n var originalExec = re.exec;\n re.exec = function () { return originalExec.apply(this, arguments); };\n var result = 'ab'.split(re);\n return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';\n});\n\nmodule.exports = function (KEY, length, exec, sham) {\n var SYMBOL = wellKnownSymbol(KEY);\n\n var DELEGATES_TO_SYMBOL = !fails(function () {\n // String methods call symbol-named RegEp methods\n var O = {};\n O[SYMBOL] = function () { return 7; };\n return ''[KEY](O) != 7;\n });\n\n var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {\n // Symbol-named RegExp methods call .exec\n var execCalled = false;\n var re = /a/;\n\n if (KEY === 'split') {\n // We can't use real regex here since it causes deoptimization\n // and serious performance degradation in V8\n // https://github.com/zloirock/core-js/issues/306\n re = {};\n // RegExp[@@split] doesn't call the regex's exec method, but first creates\n // a new one. We need to return the patched regex when creating the new one.\n re.constructor = {};\n re.constructor[SPECIES] = function () { return re; };\n re.flags = '';\n re[SYMBOL] = /./[SYMBOL];\n }\n\n re.exec = function () { execCalled = true; return null; };\n\n re[SYMBOL]('');\n return !execCalled;\n });\n\n if (\n !DELEGATES_TO_SYMBOL ||\n !DELEGATES_TO_EXEC ||\n (KEY === 'replace' && !(\n REPLACE_SUPPORTS_NAMED_GROUPS &&\n REPLACE_KEEPS_$0 &&\n !REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE\n )) ||\n (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC)\n ) {\n var nativeRegExpMethod = /./[SYMBOL];\n var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {\n if (regexp.exec === regexpExec) {\n if (DELEGATES_TO_SYMBOL && !forceStringMethod) {\n // The native String method already delegates to @@method (this\n // polyfilled function), leasing to infinite recursion.\n // We avoid it by directly calling the native @@method method.\n return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };\n }\n return { done: true, value: nativeMethod.call(str, regexp, arg2) };\n }\n return { done: false };\n }, {\n REPLACE_KEEPS_$0: REPLACE_KEEPS_$0,\n REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE: REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE\n });\n var stringMethod = methods[0];\n var regexMethod = methods[1];\n\n redefine(String.prototype, KEY, stringMethod);\n redefine(RegExp.prototype, SYMBOL, length == 2\n // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)\n // 21.2.5.11 RegExp.prototype[@@split](string, limit)\n ? function (string, arg) { return regexMethod.call(string, this, arg); }\n // 21.2.5.6 RegExp.prototype[@@match](string)\n // 21.2.5.9 RegExp.prototype[@@search](string)\n : function (string) { return regexMethod.call(string, this); }\n );\n }\n\n if (sham) createNonEnumerableProperty(RegExp.prototype[SYMBOL], 'sham', true);\n};\n","'use strict';\nvar charAt = require('../internals/string-multibyte').charAt;\n\n// `AdvanceStringIndex` abstract operation\n// https://tc39.es/ecma262/#sec-advancestringindex\nmodule.exports = function (S, index, unicode) {\n return index + (unicode ? charAt(S, index).length : 1);\n};\n","var toObject = require('../internals/to-object');\n\nvar floor = Math.floor;\nvar replace = ''.replace;\nvar SUBSTITUTION_SYMBOLS = /\\$([$&'`]|\\d\\d?|<[^>]*>)/g;\nvar SUBSTITUTION_SYMBOLS_NO_NAMED = /\\$([$&'`]|\\d\\d?)/g;\n\n// https://tc39.es/ecma262/#sec-getsubstitution\nmodule.exports = function (matched, str, position, captures, namedCaptures, replacement) {\n var tailPos = position + matched.length;\n var m = captures.length;\n var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;\n if (namedCaptures !== undefined) {\n namedCaptures = toObject(namedCaptures);\n symbols = SUBSTITUTION_SYMBOLS;\n }\n return replace.call(replacement, symbols, function (match, ch) {\n var capture;\n switch (ch.charAt(0)) {\n case '$': return '$';\n case '&': return matched;\n case '`': return str.slice(0, position);\n case \"'\": return str.slice(tailPos);\n case '<':\n capture = namedCaptures[ch.slice(1, -1)];\n break;\n default: // \\d\\d?\n var n = +ch;\n if (n === 0) return match;\n if (n > m) {\n var f = floor(n / 10);\n if (f === 0) return match;\n if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);\n return match;\n }\n capture = captures[n - 1];\n }\n return capture === undefined ? '' : capture;\n });\n};\n","var classof = require('./classof-raw');\nvar regexpExec = require('./regexp-exec');\n\n// `RegExpExec` abstract operation\n// https://tc39.es/ecma262/#sec-regexpexec\nmodule.exports = function (R, S) {\n var exec = R.exec;\n if (typeof exec === 'function') {\n var result = exec.call(R, S);\n if (typeof result !== 'object') {\n throw TypeError('RegExp exec method returned something other than an Object or null');\n }\n return result;\n }\n\n if (classof(R) !== 'RegExp') {\n throw TypeError('RegExp#exec called on incompatible receiver');\n }\n\n return regexpExec.call(R, S);\n};\n\n","var scope = (typeof global !== \"undefined\" && global) ||\n (typeof self !== \"undefined\" && self) ||\n window;\nvar apply = Function.prototype.apply;\n\n// DOM APIs, for completeness\n\nexports.setTimeout = function() {\n return new Timeout(apply.call(setTimeout, scope, arguments), clearTimeout);\n};\nexports.setInterval = function() {\n return new Timeout(apply.call(setInterval, scope, arguments), clearInterval);\n};\nexports.clearTimeout =\nexports.clearInterval = function(timeout) {\n if (timeout) {\n timeout.close();\n }\n};\n\nfunction Timeout(id, clearFn) {\n this._id = id;\n this._clearFn = clearFn;\n}\nTimeout.prototype.unref = Timeout.prototype.ref = function() {};\nTimeout.prototype.close = function() {\n this._clearFn.call(scope, this._id);\n};\n\n// Does not start the time, just sets up the members needed.\nexports.enroll = function(item, msecs) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = msecs;\n};\n\nexports.unenroll = function(item) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = -1;\n};\n\nexports._unrefActive = exports.active = function(item) {\n clearTimeout(item._idleTimeoutId);\n\n var msecs = item._idleTimeout;\n if (msecs >= 0) {\n item._idleTimeoutId = setTimeout(function onTimeout() {\n if (item._onTimeout)\n item._onTimeout();\n }, msecs);\n }\n};\n\n// setimmediate attaches itself to the global object\nrequire(\"setimmediate\");\n// On some exotic environments, it's not clear which object `setimmediate` was\n// able to install onto. Search each possibility in the same order as the\n// `setimmediate` library.\nexports.setImmediate = (typeof self !== \"undefined\" && self.setImmediate) ||\n (typeof global !== \"undefined\" && global.setImmediate) ||\n (this && this.setImmediate);\nexports.clearImmediate = (typeof self !== \"undefined\" && self.clearImmediate) ||\n (typeof global !== \"undefined\" && global.clearImmediate) ||\n (this && this.clearImmediate);\n","(function (global, undefined) {\n \"use strict\";\n\n if (global.setImmediate) {\n return;\n }\n\n var nextHandle = 1; // Spec says greater than zero\n var tasksByHandle = {};\n var currentlyRunningATask = false;\n var doc = global.document;\n var registerImmediate;\n\n function setImmediate(callback) {\n // Callback can either be a function or a string\n if (typeof callback !== \"function\") {\n callback = new Function(\"\" + callback);\n }\n // Copy function arguments\n var args = new Array(arguments.length - 1);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i + 1];\n }\n // Store and register the task\n var task = { callback: callback, args: args };\n tasksByHandle[nextHandle] = task;\n registerImmediate(nextHandle);\n return nextHandle++;\n }\n\n function clearImmediate(handle) {\n delete tasksByHandle[handle];\n }\n\n function run(task) {\n var callback = task.callback;\n var args = task.args;\n switch (args.length) {\n case 0:\n callback();\n break;\n case 1:\n callback(args[0]);\n break;\n case 2:\n callback(args[0], args[1]);\n break;\n case 3:\n callback(args[0], args[1], args[2]);\n break;\n default:\n callback.apply(undefined, args);\n break;\n }\n }\n\n function runIfPresent(handle) {\n // From the spec: \"Wait until any invocations of this algorithm started before this one have completed.\"\n // So if we're currently running a task, we'll need to delay this invocation.\n if (currentlyRunningATask) {\n // Delay by doing a setTimeout. setImmediate was tried instead, but in Firefox 7 it generated a\n // \"too much recursion\" error.\n setTimeout(runIfPresent, 0, handle);\n } else {\n var task = tasksByHandle[handle];\n if (task) {\n currentlyRunningATask = true;\n try {\n run(task);\n } finally {\n clearImmediate(handle);\n currentlyRunningATask = false;\n }\n }\n }\n }\n\n function installNextTickImplementation() {\n registerImmediate = function(handle) {\n process.nextTick(function () { runIfPresent(handle); });\n };\n }\n\n function canUsePostMessage() {\n // The test against `importScripts` prevents this implementation from being installed inside a web worker,\n // where `global.postMessage` means something completely different and can't be used for this purpose.\n if (global.postMessage && !global.importScripts) {\n var postMessageIsAsynchronous = true;\n var oldOnMessage = global.onmessage;\n global.onmessage = function() {\n postMessageIsAsynchronous = false;\n };\n global.postMessage(\"\", \"*\");\n global.onmessage = oldOnMessage;\n return postMessageIsAsynchronous;\n }\n }\n\n function installPostMessageImplementation() {\n // Installs an event handler on `global` for the `message` event: see\n // * https://developer.mozilla.org/en/DOM/window.postMessage\n // * http://www.whatwg.org/specs/web-apps/current-work/multipage/comms.html#crossDocumentMessages\n\n var messagePrefix = \"setImmediate$\" + Math.random() + \"$\";\n var onGlobalMessage = function(event) {\n if (event.source === global &&\n typeof event.data === \"string\" &&\n event.data.indexOf(messagePrefix) === 0) {\n runIfPresent(+event.data.slice(messagePrefix.length));\n }\n };\n\n if (global.addEventListener) {\n global.addEventListener(\"message\", onGlobalMessage, false);\n } else {\n global.attachEvent(\"onmessage\", onGlobalMessage);\n }\n\n registerImmediate = function(handle) {\n global.postMessage(messagePrefix + handle, \"*\");\n };\n }\n\n function installMessageChannelImplementation() {\n var channel = new MessageChannel();\n channel.port1.onmessage = function(event) {\n var handle = event.data;\n runIfPresent(handle);\n };\n\n registerImmediate = function(handle) {\n channel.port2.postMessage(handle);\n };\n }\n\n function installReadyStateChangeImplementation() {\n var html = doc.documentElement;\n registerImmediate = function(handle) {\n // Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted\n // into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.\n var script = doc.createElement(\"script\");\n script.onreadystatechange = function () {\n runIfPresent(handle);\n script.onreadystatechange = null;\n html.removeChild(script);\n script = null;\n };\n html.appendChild(script);\n };\n }\n\n function installSetTimeoutImplementation() {\n registerImmediate = function(handle) {\n setTimeout(runIfPresent, 0, handle);\n };\n }\n\n // If supported, we should attach to the prototype of global, since that is where setTimeout et al. live.\n var attachTo = Object.getPrototypeOf && Object.getPrototypeOf(global);\n attachTo = attachTo && attachTo.setTimeout ? attachTo : global;\n\n // Don't get fooled by e.g. browserify environments.\n if ({}.toString.call(global.process) === \"[object process]\") {\n // For Node.js before 0.9\n installNextTickImplementation();\n\n } else if (canUsePostMessage()) {\n // For non-IE10 modern browsers\n installPostMessageImplementation();\n\n } else if (global.MessageChannel) {\n // For web workers, where supported\n installMessageChannelImplementation();\n\n } else if (doc && \"onreadystatechange\" in doc.createElement(\"script\")) {\n // For IE 6–8\n installReadyStateChangeImplementation();\n\n } else {\n // For older browsers\n installSetTimeoutImplementation();\n }\n\n attachTo.setImmediate = setImmediate;\n attachTo.clearImmediate = clearImmediate;\n}(typeof self === \"undefined\" ? typeof global === \"undefined\" ? this : global : self));\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./OAuthItem.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./OAuthItem.vue?vue&type=script&lang=js&\"","<!--\n - @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl>\n -\n - @author Roeland Jago Douma <roeland@famdouma.nl>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n<template>\n\t<tr>\n\t\t<td>\n\t\t\t<table class=\"inline\">\n\t\t\t\t<tr>\n\t\t\t\t\t<td>{{ t('oauth2', 'Name') }}</td>\n\t\t\t\t\t<td>{{ name }}</td>\n\t\t\t\t</tr>\n\t\t\t\t<tr>\n\t\t\t\t\t<td>{{ t('oauth2', 'Redirection URI') }}</td>\n\t\t\t\t\t<td>{{ redirectUri }}</td>\n\t\t\t\t</tr>\n\t\t\t\t<tr>\n\t\t\t\t\t<td>{{ t('oauth2', 'Client Identifier') }}</td>\n\t\t\t\t\t<td><code>{{ clientId }}</code></td>\n\t\t\t\t</tr>\n\t\t\t\t<tr>\n\t\t\t\t\t<td>{{ t('oauth2', 'Secret') }}</td>\n\t\t\t\t\t<td><code>{{ renderedSecret }}</code><a class=\"icon-toggle has-tooltip\" :title=\"t('oauth2', 'Show client secret')\" @click=\"toggleSecret\" /></td>\n\t\t\t\t</tr>\n\t\t\t</table>\n\t\t</td>\n\t\t<td class=\"action-column\">\n\t\t\t<span><a class=\"icon-delete has-tooltip\" :title=\"t('oauth2', 'Delete')\" @click=\"$emit('delete', id)\" /></span>\n\t\t</td>\n\t</tr>\n</template>\n\n<script>\nexport default {\n\tname: 'OAuthItem',\n\tprops: {\n\t\tclient: {\n\t\t\ttype: Object,\n\t\t\trequired: true,\n\t\t},\n\t},\n\tdata() {\n\t\treturn {\n\t\t\tid: this.client.id,\n\t\t\tname: this.client.name,\n\t\t\tredirectUri: this.client.redirectUri,\n\t\t\tclientId: this.client.clientId,\n\t\t\tclientSecret: this.client.clientSecret,\n\t\t\trenderSecret: false,\n\t\t}\n\t},\n\tcomputed: {\n\t\trenderedSecret() {\n\t\t\tif (this.renderSecret) {\n\t\t\t\treturn this.clientSecret\n\t\t\t} else {\n\t\t\t\treturn '****'\n\t\t\t}\n\t\t},\n\t},\n\tmethods: {\n\t\ttoggleSecret() {\n\t\t\tthis.renderSecret = !this.renderSecret\n\t\t},\n\t},\n}\n</script>\n\n<style scoped>\n\t.icon-toggle,\n\t.icon-delete {\n\t\tdisplay: inline-block;\n\t\twidth: 16px;\n\t\theight: 16px;\n\t\tpadding: 10px;\n\t\tvertical-align: middle;\n\t}\n\ttd code {\n\t\tdisplay: inline-block;\n\t\tvertical-align: middle;\n\t}\n\ttable.inline td {\n\t\tborder: none;\n\t\tpadding: 5px;\n\t}\n</style>\n","import api from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import content from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./OAuthItem.vue?vue&type=style&index=0&id=665ff3f1&scoped=true&lang=css&\";\n\nvar options = {};\n\noptions.insert = \"head\";\noptions.singleton = false;\n\nvar update = api(content, options);\n\n\n\nexport default content.locals || {};","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () {\n injectStyles.call(\n this,\n (options.functional ? this.parent : this).$root.$options.shadowRoot\n )\n }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functional component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","import { render, staticRenderFns } from \"./OAuthItem.vue?vue&type=template&id=665ff3f1&scoped=true&\"\nimport script from \"./OAuthItem.vue?vue&type=script&lang=js&\"\nexport * from \"./OAuthItem.vue?vue&type=script&lang=js&\"\nimport style0 from \"./OAuthItem.vue?vue&type=style&index=0&id=665ff3f1&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"665ff3f1\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('tr',[_c('td',[_c('table',{staticClass:\"inline\"},[_c('tr',[_c('td',[_vm._v(_vm._s(_vm.t('oauth2', 'Name')))]),_vm._v(\" \"),_c('td',[_vm._v(_vm._s(_vm.name))])]),_vm._v(\" \"),_c('tr',[_c('td',[_vm._v(_vm._s(_vm.t('oauth2', 'Redirection URI')))]),_vm._v(\" \"),_c('td',[_vm._v(_vm._s(_vm.redirectUri))])]),_vm._v(\" \"),_c('tr',[_c('td',[_vm._v(_vm._s(_vm.t('oauth2', 'Client Identifier')))]),_vm._v(\" \"),_c('td',[_c('code',[_vm._v(_vm._s(_vm.clientId))])])]),_vm._v(\" \"),_c('tr',[_c('td',[_vm._v(_vm._s(_vm.t('oauth2', 'Secret')))]),_vm._v(\" \"),_c('td',[_c('code',[_vm._v(_vm._s(_vm.renderedSecret))]),_c('a',{staticClass:\"icon-toggle has-tooltip\",attrs:{\"title\":_vm.t('oauth2', 'Show client secret')},on:{\"click\":_vm.toggleSecret}})])])])]),_vm._v(\" \"),_c('td',{staticClass:\"action-column\"},[_c('span',[_c('a',{staticClass:\"icon-delete has-tooltip\",attrs:{\"title\":_vm.t('oauth2', 'Delete')},on:{\"click\":function($event){return _vm.$emit('delete', _vm.id)}}})])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"","<!--\n - @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl>\n -\n - @author Roeland Jago Douma <roeland@famdouma.nl>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n<template>\n\t<div id=\"oauth2\" class=\"section\">\n\t\t<h2>{{ t('oauth2', 'OAuth 2.0 clients') }}</h2>\n\t\t<p class=\"settings-hint\">\n\t\t\t{{ t('oauth2', 'OAuth 2.0 allows external services to request access to {instanceName}.', { instanceName: OC.theme.name}) }}\n\t\t</p>\n\t\t<table v-if=\"clients.length > 0\" class=\"grid\">\n\t\t\t<thead>\n\t\t\t\t<tr>\n\t\t\t\t\t<th id=\"headerContent\">\n\n\t\t\t\t\t</th>\n\t\t\t\t\t<th id=\"headerRemove\">\n \n\t\t\t\t\t</th>\n\t\t\t\t</tr>\n\t\t\t</thead>\n\t\t\t<tbody>\n\t\t\t\t<OAuthItem v-for=\"client in clients\"\n\t\t\t\t\t:key=\"client.id\"\n\t\t\t\t\t:client=\"client\"\n\t\t\t\t\t@delete=\"deleteClient\" />\n\t\t\t</tbody>\n\t\t</table>\n\n\t\t<br>\n\t\t<h3>{{ t('oauth2', 'Add client') }}</h3>\n\t\t<span v-if=\"newClient.error\" class=\"msg error\">{{ newClient.errorMsg }}</span>\n\t\t<form @submit.prevent=\"addClient\">\n\t\t\t<input id=\"name\"\n\t\t\t\tv-model=\"newClient.name\"\n\t\t\t\ttype=\"text\"\n\t\t\t\tname=\"name\"\n\t\t\t\t:placeholder=\"t('oauth2', 'Name')\">\n\t\t\t<input id=\"redirectUri\"\n\t\t\t\tv-model=\"newClient.redirectUri\"\n\t\t\t\ttype=\"url\"\n\t\t\t\tname=\"redirectUri\"\n\t\t\t\t:placeholder=\"t('oauth2', 'Redirection URI')\">\n\t\t\t<input type=\"submit\" class=\"button\" :value=\"t('oauth2', 'Add')\">\n\t\t</form>\n\t</div>\n</template>\n\n<script>\nimport axios from '@nextcloud/axios'\nimport OAuthItem from './components/OAuthItem'\nimport { generateUrl } from '@nextcloud/router'\n\nexport default {\n\tname: 'App',\n\tcomponents: {\n\t\tOAuthItem,\n\t},\n\tprops: {\n\t\tclients: {\n\t\t\ttype: Array,\n\t\t\trequired: true,\n\t\t},\n\t},\n\tdata() {\n\t\treturn {\n\t\t\tnewClient: {\n\t\t\t\tname: '',\n\t\t\t\tredirectUri: '',\n\t\t\t\terrorMsg: '',\n\t\t\t\terror: false,\n\t\t\t},\n\t\t}\n\t},\n\tmethods: {\n\t\tdeleteClient(id) {\n\t\t\taxios.delete(generateUrl('apps/oauth2/clients/{id}', { id }))\n\t\t\t\t.then((response) => {\n\t\t\t\t\tthis.clients = this.clients.filter(client => client.id !== id)\n\t\t\t\t})\n\t\t},\n\t\taddClient() {\n\t\t\tthis.newClient.error = false\n\n\t\t\taxios.post(\n\t\t\t\tgenerateUrl('apps/oauth2/clients'),\n\t\t\t\t{\n\t\t\t\t\tname: this.newClient.name,\n\t\t\t\t\tredirectUri: this.newClient.redirectUri,\n\t\t\t\t}\n\t\t\t).then(response => {\n\t\t\t\tthis.clients.push(response.data)\n\n\t\t\t\tthis.newClient.name = ''\n\t\t\t\tthis.newClient.redirectUri = ''\n\t\t\t}).catch(reason => {\n\t\t\t\tthis.newClient.error = true\n\t\t\t\tthis.newClient.errorMsg = reason.response.data.message\n\t\t\t})\n\t\t},\n\t},\n}\n</script>\n<style scoped>\n\ttable {\n\t\tmax-width: 800px;\n\t}\n</style>\n","import api from \"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import content from \"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=style&index=0&id=0c0547db&scoped=true&lang=css&\";\n\nvar options = {};\n\noptions.insert = \"head\";\noptions.singleton = false;\n\nvar update = api(content, options);\n\n\n\nexport default content.locals || {};","import { render, staticRenderFns } from \"./App.vue?vue&type=template&id=0c0547db&scoped=true&\"\nimport script from \"./App.vue?vue&type=script&lang=js&\"\nexport * from \"./App.vue?vue&type=script&lang=js&\"\nimport style0 from \"./App.vue?vue&type=style&index=0&id=0c0547db&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"0c0547db\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"section\",attrs:{\"id\":\"oauth2\"}},[_c('h2',[_vm._v(_vm._s(_vm.t('oauth2', 'OAuth 2.0 clients')))]),_vm._v(\" \"),_c('p',{staticClass:\"settings-hint\"},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('oauth2', 'OAuth 2.0 allows external services to request access to {instanceName}.', { instanceName: _vm.OC.theme.name}))+\"\\n\\t\\t\")]),_vm._v(\" \"),(_vm.clients.length > 0)?_c('table',{staticClass:\"grid\"},[_vm._m(0),_vm._v(\" \"),_c('tbody',_vm._l((_vm.clients),function(client){return _c('OAuthItem',{key:client.id,attrs:{\"client\":client},on:{\"delete\":_vm.deleteClient}})}),1)]):_vm._e(),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(_vm._s(_vm.t('oauth2', 'Add client')))]),_vm._v(\" \"),(_vm.newClient.error)?_c('span',{staticClass:\"msg error\"},[_vm._v(_vm._s(_vm.newClient.errorMsg))]):_vm._e(),_vm._v(\" \"),_c('form',{on:{\"submit\":function($event){$event.preventDefault();return _vm.addClient($event)}}},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.newClient.name),expression:\"newClient.name\"}],attrs:{\"id\":\"name\",\"type\":\"text\",\"name\":\"name\",\"placeholder\":_vm.t('oauth2', 'Name')},domProps:{\"value\":(_vm.newClient.name)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.newClient, \"name\", $event.target.value)}}}),_vm._v(\" \"),_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.newClient.redirectUri),expression:\"newClient.redirectUri\"}],attrs:{\"id\":\"redirectUri\",\"type\":\"url\",\"name\":\"redirectUri\",\"placeholder\":_vm.t('oauth2', 'Redirection URI')},domProps:{\"value\":(_vm.newClient.redirectUri)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.newClient, \"redirectUri\", $event.target.value)}}}),_vm._v(\" \"),_c('input',{staticClass:\"button\",attrs:{\"type\":\"submit\"},domProps:{\"value\":_vm.t('oauth2', 'Add')}})])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('thead',[_c('tr',[_c('th',{attrs:{\"id\":\"headerContent\"}}),_vm._v(\" \"),_c('th',{attrs:{\"id\":\"headerRemove\"}},[_vm._v(\"\\n \\n\\t\\t\\t\\t\\t\")])])])}]\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl>\n *\n * @author Roeland Jago Douma <roeland@famdouma.nl>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nimport Vue from 'vue'\nimport App from './App.vue'\nimport { loadState } from '@nextcloud/initial-state'\n\nVue.prototype.t = t\nVue.prototype.OC = OC\n\nconst clients = loadState('oauth2', 'clients')\n\nconst View = Vue.extend(App)\nconst oauth = new View({\n\tpropsData: {\n\t\tclients,\n\t},\n})\noauth.$mount('#oauth2')\n"],"sourceRoot":""}
\ No newline at end of file diff --git a/apps/oauth2/l10n/af.js b/apps/oauth2/l10n/af.js deleted file mode 100644 index cf981459f20..00000000000 --- a/apps/oauth2/l10n/af.js +++ /dev/null @@ -1,14 +0,0 @@ -OC.L10N.register( - "oauth2", - { - "OAuth 2.0" : "OAuth 2.0", - "OAuth 2.0 clients" : "OAuth 2.0-kliënte", - "Add client" : "Voeg kliënt toe", - "Name" : "Naam", - "Redirection URI" : "Herverwysings-URI", - "Add" : "Voeg toe", - "Client Identifier" : "Kliëntidentifiseerder", - "Secret" : "Geheim", - "Delete" : "Skrap" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/af.json b/apps/oauth2/l10n/af.json deleted file mode 100644 index c60dc073b9e..00000000000 --- a/apps/oauth2/l10n/af.json +++ /dev/null @@ -1,12 +0,0 @@ -{ "translations": { - "OAuth 2.0" : "OAuth 2.0", - "OAuth 2.0 clients" : "OAuth 2.0-kliënte", - "Add client" : "Voeg kliënt toe", - "Name" : "Naam", - "Redirection URI" : "Herverwysings-URI", - "Add" : "Voeg toe", - "Client Identifier" : "Kliëntidentifiseerder", - "Secret" : "Geheim", - "Delete" : "Skrap" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/apps/oauth2/l10n/ar.js b/apps/oauth2/l10n/ar.js index 9771d514540..0ccccefa3b1 100644 --- a/apps/oauth2/l10n/ar.js +++ b/apps/oauth2/l10n/ar.js @@ -1,11 +1,23 @@ OC.L10N.register( "oauth2", { - "Name" : "الإسم", + "Your client is not authorized to connect. Please inform the administrator of your client." : "عميلك ليس مُخوّلاً بالربط. رجاءً، أبلغ مسؤول النظام.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "عنوان URL المُعاد توجيهه يجب أن يكون عنواناً كاملاً كما في المثال التالي: https://yourdomain.com/path", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "يسمح بالتحقّق من الهويّة عن طريق تطبيقات وب أخرى متوافقة مع OAuth2.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "التطبيق OAuth2 يسمح لمسؤولي النظام بتهيئة الإجراء الأساسي للتحقّق من الهويّةبحيث يسمح بالتحقّق من الهويّة عن طريق تطبيقات ويب أخرى متوافقة مع OAuth2.", + "OAuth 2.0 clients" : "عملاء OAuth2.0", + "OAuth 2.0 allows external services to request access to {instanceName}." : "يسمح OAuth2.0 لخدمات خارجية بطلب الوصول إلى {instanceName}", + "Name" : "الاسم", "Redirection URI" : "رابط إعادة التوجيه", "Client Identifier" : "مُعرِّف العميل", - "Secret" : "السر", + "Secret key" : "المفتاح السّرّي", + "Delete client" : "حذف عميل ", + "Make sure you store the secret key, it cannot be recovered." : "تأكد من تخزين المفتاح السري، إذ أنه لا يمكن استعادته.", "Add client" : "إضافة عميل", - "Add" : "إضافة" + "Add" : "إضافة", + "Show client secret" : "عرض كلمة سر العميل", + "Hide client secret" : "إخْفِ سِرَّ العميل", + "Delete" : "حذف" }, "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"); diff --git a/apps/oauth2/l10n/ar.json b/apps/oauth2/l10n/ar.json index bfa7e0487ea..a7ea13b979f 100644 --- a/apps/oauth2/l10n/ar.json +++ b/apps/oauth2/l10n/ar.json @@ -1,9 +1,21 @@ { "translations": { - "Name" : "الإسم", + "Your client is not authorized to connect. Please inform the administrator of your client." : "عميلك ليس مُخوّلاً بالربط. رجاءً، أبلغ مسؤول النظام.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "عنوان URL المُعاد توجيهه يجب أن يكون عنواناً كاملاً كما في المثال التالي: https://yourdomain.com/path", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "يسمح بالتحقّق من الهويّة عن طريق تطبيقات وب أخرى متوافقة مع OAuth2.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "التطبيق OAuth2 يسمح لمسؤولي النظام بتهيئة الإجراء الأساسي للتحقّق من الهويّةبحيث يسمح بالتحقّق من الهويّة عن طريق تطبيقات ويب أخرى متوافقة مع OAuth2.", + "OAuth 2.0 clients" : "عملاء OAuth2.0", + "OAuth 2.0 allows external services to request access to {instanceName}." : "يسمح OAuth2.0 لخدمات خارجية بطلب الوصول إلى {instanceName}", + "Name" : "الاسم", "Redirection URI" : "رابط إعادة التوجيه", "Client Identifier" : "مُعرِّف العميل", - "Secret" : "السر", + "Secret key" : "المفتاح السّرّي", + "Delete client" : "حذف عميل ", + "Make sure you store the secret key, it cannot be recovered." : "تأكد من تخزين المفتاح السري، إذ أنه لا يمكن استعادته.", "Add client" : "إضافة عميل", - "Add" : "إضافة" + "Add" : "إضافة", + "Show client secret" : "عرض كلمة سر العميل", + "Hide client secret" : "إخْفِ سِرَّ العميل", + "Delete" : "حذف" },"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/ast.js b/apps/oauth2/l10n/ast.js index 055ebe101f3..5a71f29b226 100644 --- a/apps/oauth2/l10n/ast.js +++ b/apps/oauth2/l10n/ast.js @@ -1,14 +1,22 @@ OC.L10N.register( "oauth2", { + "Your client is not authorized to connect. Please inform the administrator of your client." : "El veceru nun tien autorización pa conectase. Informa al alministrador de l'aplicación.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "La URL de redireición tien de ser una URL completa, por exemplu: https://dominiu.com/camin", "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Permite l'autenticación compatible con OAuth2 dende otres aplicaciones web.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'aplicación OAuth2 permite a l'alministración configurar el fluxu de trabayu d'autenticación integráu pa que tamién permita l'autenticación compatible con OAuth2 dende otres aplicaciones web.", "OAuth 2.0 clients" : "Veceros d'OAuth 2.0", - "Add client" : "Amestar veceru", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permite que los servicios esternos soliciten l'accesu a «{instanceName}».", "Name" : "Nome", "Redirection URI" : "URI de redireición", - "Add" : "Amestar", "Client Identifier" : "Identificador del veceru", - "Secret" : "Secretu", + "Secret key" : "Clave del secretu", + "Delete client" : "Desaniciar el veceru", + "Add client" : "Amestar el veceru", + "Add" : "Amestar", + "Show client secret" : "Amosar el secretu del veceru", + "Hide client secret" : "Anubrir el secretu del veceru", "Delete" : "Desaniciar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/ast.json b/apps/oauth2/l10n/ast.json index a07a2b71f74..07995fc9268 100644 --- a/apps/oauth2/l10n/ast.json +++ b/apps/oauth2/l10n/ast.json @@ -1,12 +1,20 @@ { "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "El veceru nun tien autorización pa conectase. Informa al alministrador de l'aplicación.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "La URL de redireición tien de ser una URL completa, por exemplu: https://dominiu.com/camin", "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Permite l'autenticación compatible con OAuth2 dende otres aplicaciones web.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'aplicación OAuth2 permite a l'alministración configurar el fluxu de trabayu d'autenticación integráu pa que tamién permita l'autenticación compatible con OAuth2 dende otres aplicaciones web.", "OAuth 2.0 clients" : "Veceros d'OAuth 2.0", - "Add client" : "Amestar veceru", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permite que los servicios esternos soliciten l'accesu a «{instanceName}».", "Name" : "Nome", "Redirection URI" : "URI de redireición", - "Add" : "Amestar", "Client Identifier" : "Identificador del veceru", - "Secret" : "Secretu", + "Secret key" : "Clave del secretu", + "Delete client" : "Desaniciar el veceru", + "Add client" : "Amestar el veceru", + "Add" : "Amestar", + "Show client secret" : "Amosar el secretu del veceru", + "Hide client secret" : "Anubrir el secretu del veceru", "Delete" : "Desaniciar" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/bg.js b/apps/oauth2/l10n/bg.js new file mode 100644 index 00000000000..c5bdfa109f5 --- /dev/null +++ b/apps/oauth2/l10n/bg.js @@ -0,0 +1,20 @@ +OC.L10N.register( + "oauth2", + { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Вашият клиент не е упълномощен да се свързва. Моля, информирайте администратора на вашия клиент.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Вашият URL за пренасочване трябва да е пълен URL, например: https://yourdomain.com/path", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Позволява удостоверяване от други уеб приложения, съвместими с OAuth2 .", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Приложението OAuth2 позволява на администраторите да конфигурират вградения работен поток за удостоверяване, за да позволят и удостоверяване от други уеб приложения, съвместими с OAuth2 .", + "OAuth 2.0 clients" : "OAuth 2.0 клиенти", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 позволява на външни услуги да изискват достъп до {instanceName}.", + "Name" : "Име", + "Redirection URI" : "URI за пренасочване", + "Client Identifier" : "Идентификатор на клиента", + "Secret key" : "Секретен ключ", + "Add client" : "Добавяне на клиент", + "Add" : "Добавяне", + "Show client secret" : "Покажете тайната на клиента", + "Delete" : "Изтриване" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/bg.json b/apps/oauth2/l10n/bg.json new file mode 100644 index 00000000000..5a11b54b85b --- /dev/null +++ b/apps/oauth2/l10n/bg.json @@ -0,0 +1,18 @@ +{ "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Вашият клиент не е упълномощен да се свързва. Моля, информирайте администратора на вашия клиент.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Вашият URL за пренасочване трябва да е пълен URL, например: https://yourdomain.com/path", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Позволява удостоверяване от други уеб приложения, съвместими с OAuth2 .", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Приложението OAuth2 позволява на администраторите да конфигурират вградения работен поток за удостоверяване, за да позволят и удостоверяване от други уеб приложения, съвместими с OAuth2 .", + "OAuth 2.0 clients" : "OAuth 2.0 клиенти", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 позволява на външни услуги да изискват достъп до {instanceName}.", + "Name" : "Име", + "Redirection URI" : "URI за пренасочване", + "Client Identifier" : "Идентификатор на клиента", + "Secret key" : "Секретен ключ", + "Add client" : "Добавяне на клиент", + "Add" : "Добавяне", + "Show client secret" : "Покажете тайната на клиента", + "Delete" : "Изтриване" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +}
\ No newline at end of file diff --git a/apps/oauth2/l10n/br.js b/apps/oauth2/l10n/br.js index c15795cf851..d04244a3353 100644 --- a/apps/oauth2/l10n/br.js +++ b/apps/oauth2/l10n/br.js @@ -8,12 +8,12 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Aotreant a raio ar meziant OAuth 2.0 ar merour da arventennoù evit an dilesa red-labour e-barzh evit aotreañ an dilesa a glot gant OAuth 2.0 eus meziantoù web all.", "OAuth 2.0 clients" : "Kliant OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "Aotreañ a ra OAuth 2.0 ar servijourienn diavaez da goulenn tizhout {instanceName}.", - "Add client" : "Ouzhoennañ kliant", "Name" : "Anv", "Redirection URI" : "Adhent URL", - "Add" : "Ouzhpennañ", "Client Identifier" : "Anavezer Kliant", - "Secret" : "Sekret", + "Secret key" : "Alc'hwez sekred", + "Add client" : "Ouzhoennañ kliant", + "Add" : "Ouzhpennañ", "Show client secret" : "Diskouez sekret ar kliant", "Delete" : "Dilemel" }, diff --git a/apps/oauth2/l10n/br.json b/apps/oauth2/l10n/br.json index e346ee2917d..f55e5b3f1ac 100644 --- a/apps/oauth2/l10n/br.json +++ b/apps/oauth2/l10n/br.json @@ -6,12 +6,12 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Aotreant a raio ar meziant OAuth 2.0 ar merour da arventennoù evit an dilesa red-labour e-barzh evit aotreañ an dilesa a glot gant OAuth 2.0 eus meziantoù web all.", "OAuth 2.0 clients" : "Kliant OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "Aotreañ a ra OAuth 2.0 ar servijourienn diavaez da goulenn tizhout {instanceName}.", - "Add client" : "Ouzhoennañ kliant", "Name" : "Anv", "Redirection URI" : "Adhent URL", - "Add" : "Ouzhpennañ", "Client Identifier" : "Anavezer Kliant", - "Secret" : "Sekret", + "Secret key" : "Alc'hwez sekred", + "Add client" : "Ouzhoennañ kliant", + "Add" : "Ouzhpennañ", "Show client secret" : "Diskouez sekret ar kliant", "Delete" : "Dilemel" },"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);" diff --git a/apps/oauth2/l10n/ca.js b/apps/oauth2/l10n/ca.js index 3cfc1b0059b..cb74993c9fd 100644 --- a/apps/oauth2/l10n/ca.js +++ b/apps/oauth2/l10n/ca.js @@ -1,20 +1,23 @@ OC.L10N.register( "oauth2", { - "Your client is not authorized to connect. Please inform the administrator of your client." : "El vostre client no està autoritzat a connectar-se. Informeu a l’administrador del vostre client.", - "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "El vostre URL redirigit ha de ser un URL complet, per exemple: https://elvostredomini.com/path", + "Your client is not authorized to connect. Please inform the administrator of your client." : "El vostre client no té autorització per a connectar-se. Informeu-ne a l'administrador del client.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "L'URL de redirecció ha de ser un URL complet, com ara: https://domini.com/camí", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Permet autenticació compatible amb OAuth2 des d'altres aplicacions web.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L’aplicació OAuth2 permet als administradors configurar el flux de treball d'autenticació integrada per també permetre l'autenticació compatible amb OAuth2 des d'altres aplicacions web.", + "Allows OAuth2 compatible authentication from other web applications." : "Permet l'autenticació compatible amb OAuth2 des d'altres aplicacions web.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'aplicació OAuth2 permet als administradors configurar el flux de treball d'autenticació integrat perquè també permeti l'autenticació compatible amb OAuth2 des d'altres aplicacions web.", "OAuth 2.0 clients" : "Clients OAuth 2.0", - "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permet als serveis externs sol·licitar accés a {instanceName}.", - "Add client" : "Afegeix un client", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permet que serveis externs sol·licitin accés a {instanceName}.", "Name" : "Nom", - "Redirection URI" : "Redirigeix a l'URI", + "Redirection URI" : "URI de redirecció", + "Client Identifier" : "Identificador del client", + "Secret key" : "Clau secreta", + "Delete client" : "Suprimeix el client", + "Make sure you store the secret key, it cannot be recovered." : "Assegureu-vos d'emmagatzemar la clau secreta, no es pot recuperar.", + "Add client" : "Afegeix un client", "Add" : "Afegeix", - "Client Identifier" : "Identificador de client", - "Secret" : "Secret", "Show client secret" : "Mostra el secret del client", + "Hide client secret" : "Amaga el secret del client", "Delete" : "Suprimeix" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/ca.json b/apps/oauth2/l10n/ca.json index 99d2377e6d3..3a064e3639e 100644 --- a/apps/oauth2/l10n/ca.json +++ b/apps/oauth2/l10n/ca.json @@ -1,18 +1,21 @@ { "translations": { - "Your client is not authorized to connect. Please inform the administrator of your client." : "El vostre client no està autoritzat a connectar-se. Informeu a l’administrador del vostre client.", - "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "El vostre URL redirigit ha de ser un URL complet, per exemple: https://elvostredomini.com/path", + "Your client is not authorized to connect. Please inform the administrator of your client." : "El vostre client no té autorització per a connectar-se. Informeu-ne a l'administrador del client.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "L'URL de redirecció ha de ser un URL complet, com ara: https://domini.com/camí", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Permet autenticació compatible amb OAuth2 des d'altres aplicacions web.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L’aplicació OAuth2 permet als administradors configurar el flux de treball d'autenticació integrada per també permetre l'autenticació compatible amb OAuth2 des d'altres aplicacions web.", + "Allows OAuth2 compatible authentication from other web applications." : "Permet l'autenticació compatible amb OAuth2 des d'altres aplicacions web.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'aplicació OAuth2 permet als administradors configurar el flux de treball d'autenticació integrat perquè també permeti l'autenticació compatible amb OAuth2 des d'altres aplicacions web.", "OAuth 2.0 clients" : "Clients OAuth 2.0", - "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permet als serveis externs sol·licitar accés a {instanceName}.", - "Add client" : "Afegeix un client", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permet que serveis externs sol·licitin accés a {instanceName}.", "Name" : "Nom", - "Redirection URI" : "Redirigeix a l'URI", + "Redirection URI" : "URI de redirecció", + "Client Identifier" : "Identificador del client", + "Secret key" : "Clau secreta", + "Delete client" : "Suprimeix el client", + "Make sure you store the secret key, it cannot be recovered." : "Assegureu-vos d'emmagatzemar la clau secreta, no es pot recuperar.", + "Add client" : "Afegeix un client", "Add" : "Afegeix", - "Client Identifier" : "Identificador de client", - "Secret" : "Secret", "Show client secret" : "Mostra el secret del client", + "Hide client secret" : "Amaga el secret del client", "Delete" : "Suprimeix" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/cs.js b/apps/oauth2/l10n/cs.js index 0a80e3afb40..008e1627780 100644 --- a/apps/oauth2/l10n/cs.js +++ b/apps/oauth2/l10n/cs.js @@ -8,13 +8,16 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Aplikace OAuth2 umožňuje správcům nastavit vestavěný postup ověřování tak, aby podporoval také OAuth2 kompatibilní ověřování z ostatních webových aplikací.", "OAuth 2.0 clients" : "OAuth 2.0 klienti", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 umožňuje externím službám vyžádat si přístup k {instanceName}.", - "Add client" : "Přidat klienta", "Name" : "Název", "Redirection URI" : "URL pro přesměrování", - "Add" : "Přidat", "Client Identifier" : "Identifikátor klienta", - "Secret" : "Tajemství", + "Secret key" : "Tajný klíč", + "Delete client" : "Smazat klienta", + "Make sure you store the secret key, it cannot be recovered." : "Nezapomeňte si uložit tajný klíč – není možné ho obnovit.", + "Add client" : "Přidat klienta", + "Add" : "Přidat", "Show client secret" : "Zobrazit klientské tajemství", + "Hide client secret" : "Skrýt tajemství klienta", "Delete" : "Smazat" }, "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"); diff --git a/apps/oauth2/l10n/cs.json b/apps/oauth2/l10n/cs.json index 657bf4abcfe..75f5586ca80 100644 --- a/apps/oauth2/l10n/cs.json +++ b/apps/oauth2/l10n/cs.json @@ -6,13 +6,16 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Aplikace OAuth2 umožňuje správcům nastavit vestavěný postup ověřování tak, aby podporoval také OAuth2 kompatibilní ověřování z ostatních webových aplikací.", "OAuth 2.0 clients" : "OAuth 2.0 klienti", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 umožňuje externím službám vyžádat si přístup k {instanceName}.", - "Add client" : "Přidat klienta", "Name" : "Název", "Redirection URI" : "URL pro přesměrování", - "Add" : "Přidat", "Client Identifier" : "Identifikátor klienta", - "Secret" : "Tajemství", + "Secret key" : "Tajný klíč", + "Delete client" : "Smazat klienta", + "Make sure you store the secret key, it cannot be recovered." : "Nezapomeňte si uložit tajný klíč – není možné ho obnovit.", + "Add client" : "Přidat klienta", + "Add" : "Přidat", "Show client secret" : "Zobrazit klientské tajemství", + "Hide client secret" : "Skrýt tajemství klienta", "Delete" : "Smazat" },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/da.js b/apps/oauth2/l10n/da.js index d51f01bed87..981fd99ab1c 100644 --- a/apps/oauth2/l10n/da.js +++ b/apps/oauth2/l10n/da.js @@ -1,14 +1,23 @@ OC.L10N.register( "oauth2", { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Din klient er ikke autoriseret til at oprette forbindelse. Informer venligst din klients administrator.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Din omdirigerings-URL skal være en fuld URL, for eksempel: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Tillader OAuth2-kompatibel godkendelse fra andre webapplikationer.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2-appen tillader administratorer mulighed for at konfigurere den indbyggede godkendelsesworkflow til også at tillade OAuth2-kompatibel godkendelse fra andre webapplikationer.", "OAuth 2.0 clients" : "OAuth 2.0 klienter", - "Add client" : "Tilføj klient", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 tillader eksterne tjenester at anmode om adgang til {instanceName}.", "Name" : "Navn", "Redirection URI" : "Viderestilling URI", - "Add" : "Tilføj", "Client Identifier" : "Klient ID", - "Secret" : "Hemmelighed", + "Secret key" : "Hemmelig nøgle", + "Delete client" : "Slet klient", + "Make sure you store the secret key, it cannot be recovered." : "Sørg for at gemme den hemmelige nøgle, den kan ikke gendannes.", + "Add client" : "Tilføj klient", + "Add" : "Tilføj", + "Show client secret" : "Vis klient hemmelighed", + "Hide client secret" : "Skjul klient hemmelighed", "Delete" : "Slet" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/da.json b/apps/oauth2/l10n/da.json index 1a987ba153d..289737290fe 100644 --- a/apps/oauth2/l10n/da.json +++ b/apps/oauth2/l10n/da.json @@ -1,12 +1,21 @@ { "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Din klient er ikke autoriseret til at oprette forbindelse. Informer venligst din klients administrator.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Din omdirigerings-URL skal være en fuld URL, for eksempel: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Tillader OAuth2-kompatibel godkendelse fra andre webapplikationer.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2-appen tillader administratorer mulighed for at konfigurere den indbyggede godkendelsesworkflow til også at tillade OAuth2-kompatibel godkendelse fra andre webapplikationer.", "OAuth 2.0 clients" : "OAuth 2.0 klienter", - "Add client" : "Tilføj klient", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 tillader eksterne tjenester at anmode om adgang til {instanceName}.", "Name" : "Navn", "Redirection URI" : "Viderestilling URI", - "Add" : "Tilføj", "Client Identifier" : "Klient ID", - "Secret" : "Hemmelighed", + "Secret key" : "Hemmelig nøgle", + "Delete client" : "Slet klient", + "Make sure you store the secret key, it cannot be recovered." : "Sørg for at gemme den hemmelige nøgle, den kan ikke gendannes.", + "Add client" : "Tilføj klient", + "Add" : "Tilføj", + "Show client secret" : "Vis klient hemmelighed", + "Hide client secret" : "Skjul klient hemmelighed", "Delete" : "Slet" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/de.js b/apps/oauth2/l10n/de.js index 30e5afee87f..20d0e79912a 100644 --- a/apps/oauth2/l10n/de.js +++ b/apps/oauth2/l10n/de.js @@ -1,20 +1,23 @@ OC.L10N.register( "oauth2", { - "Your client is not authorized to connect. Please inform the administrator of your client." : "Dein Client ist nicht berechtigt, eine Verbindung herzustellen. Bitte informiere den Administrator Deines Clients.", + "Your client is not authorized to connect. Please inform the administrator of your client." : "Dein Client ist nicht berechtigt, eine Verbindung herzustellen. Bitte informiere die Administration deines Clients.", "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Die Weiterleitungs-URL muss eine vollständige URL sein. Beispiel: https://deinedomain.com/pfad", "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "Ermöglicht OAuth2 komplatible Authentifizierung durch andere Web-Anwendungen.", "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren den eingebauten Authenztifizierungsablauf dahingehend zu konfigurieren, das auch ein OAuth2 komplatible Authentifizierung von anderen Web-Anwendungen aus möglich ist. ", "OAuth 2.0 clients" : "OAuth 2.0-Clients", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 ermöglicht es externen Diensten, Zugriff auf {instanceName} anzufordern.", - "Add client" : "Client hinzufügen", "Name" : "Name", "Redirection URI" : "Weiterleitungs-URI", - "Add" : "Hinzufügen", "Client Identifier" : "Client-Identifikationsmerkmal", - "Secret" : "Geheimnis", + "Secret key" : "Geheimer Schlüssel", + "Delete client" : "Client löschen", + "Make sure you store the secret key, it cannot be recovered." : "Bewahre den geheimen Schlüssel unbedingt auf, er kann nicht wiederhergestellt werden.", + "Add client" : "Client hinzufügen", + "Add" : "Hinzufügen", "Show client secret" : "Geheime Zeichenkette des Clients anzeigen", + "Hide client secret" : "Geheime Zeichenkette des Clients ausblenden", "Delete" : " Löschen" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/de.json b/apps/oauth2/l10n/de.json index d7a10fbc24f..60c835a800f 100644 --- a/apps/oauth2/l10n/de.json +++ b/apps/oauth2/l10n/de.json @@ -1,18 +1,21 @@ { "translations": { - "Your client is not authorized to connect. Please inform the administrator of your client." : "Dein Client ist nicht berechtigt, eine Verbindung herzustellen. Bitte informiere den Administrator Deines Clients.", + "Your client is not authorized to connect. Please inform the administrator of your client." : "Dein Client ist nicht berechtigt, eine Verbindung herzustellen. Bitte informiere die Administration deines Clients.", "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Die Weiterleitungs-URL muss eine vollständige URL sein. Beispiel: https://deinedomain.com/pfad", "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "Ermöglicht OAuth2 komplatible Authentifizierung durch andere Web-Anwendungen.", "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren den eingebauten Authenztifizierungsablauf dahingehend zu konfigurieren, das auch ein OAuth2 komplatible Authentifizierung von anderen Web-Anwendungen aus möglich ist. ", "OAuth 2.0 clients" : "OAuth 2.0-Clients", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 ermöglicht es externen Diensten, Zugriff auf {instanceName} anzufordern.", - "Add client" : "Client hinzufügen", "Name" : "Name", "Redirection URI" : "Weiterleitungs-URI", - "Add" : "Hinzufügen", "Client Identifier" : "Client-Identifikationsmerkmal", - "Secret" : "Geheimnis", + "Secret key" : "Geheimer Schlüssel", + "Delete client" : "Client löschen", + "Make sure you store the secret key, it cannot be recovered." : "Bewahre den geheimen Schlüssel unbedingt auf, er kann nicht wiederhergestellt werden.", + "Add client" : "Client hinzufügen", + "Add" : "Hinzufügen", "Show client secret" : "Geheime Zeichenkette des Clients anzeigen", + "Hide client secret" : "Geheime Zeichenkette des Clients ausblenden", "Delete" : " Löschen" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/de_DE.js b/apps/oauth2/l10n/de_DE.js index 1aa41461848..941b430bcb4 100644 --- a/apps/oauth2/l10n/de_DE.js +++ b/apps/oauth2/l10n/de_DE.js @@ -1,20 +1,23 @@ OC.L10N.register( "oauth2", { - "Your client is not authorized to connect. Please inform the administrator of your client." : "Ihr Client ist nicht berechtigt, eine Verbindung herzustellen. Bitte informieren Sie den Administrator Ihres Clients.", + "Your client is not authorized to connect. Please inform the administrator of your client." : "Ihr Client ist nicht berechtigt, eine Verbindung herzustellen. Bitte informieren Sie die Administration Ihres Clients.", "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Die Weiterleitungs-URL muss eine vollständige URL sein. Beispiel: https://ihredomain.com/pfad", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Ermöglicht OAuth2 komplatible Authentifizierung durch andere Web-Anwendungen.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren den eingebauten Authenztifizierungsablauf dahingehend zu konfigurieren, das auch ein OAuth2 komplatible Authentifizierung von anderen Web-Anwendungen aus möglich ist. ", + "Allows OAuth2 compatible authentication from other web applications." : "Ermöglicht OAuth2-kompatible Authentifizierung durch andere Web-Anwendungen.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren, den eingebauten Authentifizierungsablauf dahingehend zu konfigurieren, dass auch eine OAuth2-kompatible Authentifizierung durch andere Web-Anwendungen möglich ist. ", "OAuth 2.0 clients" : "OAuth 2.0-Clients", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 ermöglicht es externen Diensten, Zugriff auf {instanceName} anzufordern.", - "Add client" : "Client hinzufügen", "Name" : "Name", "Redirection URI" : "Weiterleitungs-URI", - "Add" : "Hinzufügen", "Client Identifier" : "Client-Identifikationsmerkmal", - "Secret" : "Geheimnis", + "Secret key" : "Geheimer Schlüssel", + "Delete client" : "Client löschen", + "Make sure you store the secret key, it cannot be recovered." : "Bewahren Sie den geheimen Schlüssel unbedingt auf, er kann nicht wiederhergestellt werden.", + "Add client" : "Client hinzufügen", + "Add" : "Hinzufügen", "Show client secret" : "Geheime Zeichenkette des Clients anzeigen", + "Hide client secret" : "Geheime Zeichenkette des Clients ausblenden", "Delete" : "Löschen" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/de_DE.json b/apps/oauth2/l10n/de_DE.json index cc53415b70b..b2be0a4dfb4 100644 --- a/apps/oauth2/l10n/de_DE.json +++ b/apps/oauth2/l10n/de_DE.json @@ -1,18 +1,21 @@ { "translations": { - "Your client is not authorized to connect. Please inform the administrator of your client." : "Ihr Client ist nicht berechtigt, eine Verbindung herzustellen. Bitte informieren Sie den Administrator Ihres Clients.", + "Your client is not authorized to connect. Please inform the administrator of your client." : "Ihr Client ist nicht berechtigt, eine Verbindung herzustellen. Bitte informieren Sie die Administration Ihres Clients.", "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Die Weiterleitungs-URL muss eine vollständige URL sein. Beispiel: https://ihredomain.com/pfad", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Ermöglicht OAuth2 komplatible Authentifizierung durch andere Web-Anwendungen.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren den eingebauten Authenztifizierungsablauf dahingehend zu konfigurieren, das auch ein OAuth2 komplatible Authentifizierung von anderen Web-Anwendungen aus möglich ist. ", + "Allows OAuth2 compatible authentication from other web applications." : "Ermöglicht OAuth2-kompatible Authentifizierung durch andere Web-Anwendungen.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren, den eingebauten Authentifizierungsablauf dahingehend zu konfigurieren, dass auch eine OAuth2-kompatible Authentifizierung durch andere Web-Anwendungen möglich ist. ", "OAuth 2.0 clients" : "OAuth 2.0-Clients", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 ermöglicht es externen Diensten, Zugriff auf {instanceName} anzufordern.", - "Add client" : "Client hinzufügen", "Name" : "Name", "Redirection URI" : "Weiterleitungs-URI", - "Add" : "Hinzufügen", "Client Identifier" : "Client-Identifikationsmerkmal", - "Secret" : "Geheimnis", + "Secret key" : "Geheimer Schlüssel", + "Delete client" : "Client löschen", + "Make sure you store the secret key, it cannot be recovered." : "Bewahren Sie den geheimen Schlüssel unbedingt auf, er kann nicht wiederhergestellt werden.", + "Add client" : "Client hinzufügen", + "Add" : "Hinzufügen", "Show client secret" : "Geheime Zeichenkette des Clients anzeigen", + "Hide client secret" : "Geheime Zeichenkette des Clients ausblenden", "Delete" : "Löschen" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/el.js b/apps/oauth2/l10n/el.js index f550304ebfa..d576b821c94 100644 --- a/apps/oauth2/l10n/el.js +++ b/apps/oauth2/l10n/el.js @@ -8,12 +8,12 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Η εφαρμογή OAuth2 επιτρέπει στους διαχειριστές να ρυθμίζουν τις παραμέτρους της ενσωματωμένης ροής εργασιών ελέγχου ταυτότητας για να επιτρέπουν επίσης τον έλεγχο ταυτότητας OAuth2 από άλλες εφαρμογές ιστού.", "OAuth 2.0 clients" : "Πελάτες OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "Το OAuth 2.0 επιτρέπει στις εξωτερικές υπηρεσίες να ζητούν πρόσβαση στο {instanceName}.", - "Add client" : "Προσθήκη πελάτη", "Name" : "Όνομα", "Redirection URI" : "URI ανακατεύθυνσης", - "Add" : "Προσθήκη", "Client Identifier" : "Αναγνωριστικό πελάτη", - "Secret" : "Μυστικό", + "Secret key" : "Μυστικό κλειδί", + "Add client" : "Προσθήκη πελάτη", + "Add" : "Προσθήκη", "Show client secret" : "Εμφάνιση μυστικού εφαρμογής υπολογιστή", "Delete" : "Διαγραφή" }, diff --git a/apps/oauth2/l10n/el.json b/apps/oauth2/l10n/el.json index d698467a48e..dd771839bc0 100644 --- a/apps/oauth2/l10n/el.json +++ b/apps/oauth2/l10n/el.json @@ -6,12 +6,12 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Η εφαρμογή OAuth2 επιτρέπει στους διαχειριστές να ρυθμίζουν τις παραμέτρους της ενσωματωμένης ροής εργασιών ελέγχου ταυτότητας για να επιτρέπουν επίσης τον έλεγχο ταυτότητας OAuth2 από άλλες εφαρμογές ιστού.", "OAuth 2.0 clients" : "Πελάτες OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "Το OAuth 2.0 επιτρέπει στις εξωτερικές υπηρεσίες να ζητούν πρόσβαση στο {instanceName}.", - "Add client" : "Προσθήκη πελάτη", "Name" : "Όνομα", "Redirection URI" : "URI ανακατεύθυνσης", - "Add" : "Προσθήκη", "Client Identifier" : "Αναγνωριστικό πελάτη", - "Secret" : "Μυστικό", + "Secret key" : "Μυστικό κλειδί", + "Add client" : "Προσθήκη πελάτη", + "Add" : "Προσθήκη", "Show client secret" : "Εμφάνιση μυστικού εφαρμογής υπολογιστή", "Delete" : "Διαγραφή" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/apps/oauth2/l10n/en_GB.js b/apps/oauth2/l10n/en_GB.js index 6975397c902..fb42df933ca 100644 --- a/apps/oauth2/l10n/en_GB.js +++ b/apps/oauth2/l10n/en_GB.js @@ -8,13 +8,16 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications.", "OAuth 2.0 clients" : "OAuth 2.0 clients", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 allows external services to request access to {instanceName}.", - "Add client" : "Add client", "Name" : "Name", "Redirection URI" : "Redirection URI", - "Add" : "Add", "Client Identifier" : "Client Identifier", - "Secret" : "Secret", + "Secret key" : "Secret key", + "Delete client" : "Delete client", + "Make sure you store the secret key, it cannot be recovered." : "Make sure you store the secret key, it cannot be recovered.", + "Add client" : "Add client", + "Add" : "Add", "Show client secret" : "Show client secret", + "Hide client secret" : "Hide client secret", "Delete" : "Delete" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/en_GB.json b/apps/oauth2/l10n/en_GB.json index 22b6d8fc607..85029055a07 100644 --- a/apps/oauth2/l10n/en_GB.json +++ b/apps/oauth2/l10n/en_GB.json @@ -6,13 +6,16 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications.", "OAuth 2.0 clients" : "OAuth 2.0 clients", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 allows external services to request access to {instanceName}.", - "Add client" : "Add client", "Name" : "Name", "Redirection URI" : "Redirection URI", - "Add" : "Add", "Client Identifier" : "Client Identifier", - "Secret" : "Secret", + "Secret key" : "Secret key", + "Delete client" : "Delete client", + "Make sure you store the secret key, it cannot be recovered." : "Make sure you store the secret key, it cannot be recovered.", + "Add client" : "Add client", + "Add" : "Add", "Show client secret" : "Show client secret", + "Hide client secret" : "Hide client secret", "Delete" : "Delete" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es.js b/apps/oauth2/l10n/es.js index cc88c192d68..2c7e76a2cbb 100644 --- a/apps/oauth2/l10n/es.js +++ b/apps/oauth2/l10n/es.js @@ -8,13 +8,16 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "La app OAuth2 permite a los administradores configurar el flujo de trabajo de autenticación incorporado para permitir también autenticación compatible con OAuth2 desde otras aplicaciones web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permite a servicios externos solicitar acceso a {instanceName}", - "Add client" : "Añadir cliente", "Name" : "Nombre", "Redirection URI" : "URI de redirección", - "Add" : "Añadir", "Client Identifier" : "Identificador de cliente", - "Secret" : "Secreto", + "Secret key" : "Clave secreta", + "Delete client" : "Eliminar cliente", + "Make sure you store the secret key, it cannot be recovered." : "Asegúrese de guardar la clave secreta, ya que no podrá ser recuperada.", + "Add client" : "Añadir cliente", + "Add" : "Añadir", "Show client secret" : "Mostrar secreto del cliente", + "Hide client secret" : "Ocultar secreto del cliente", "Delete" : "Eliminar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/oauth2/l10n/es.json b/apps/oauth2/l10n/es.json index c98f8bdb766..9854ba3aa83 100644 --- a/apps/oauth2/l10n/es.json +++ b/apps/oauth2/l10n/es.json @@ -6,13 +6,16 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "La app OAuth2 permite a los administradores configurar el flujo de trabajo de autenticación incorporado para permitir también autenticación compatible con OAuth2 desde otras aplicaciones web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permite a servicios externos solicitar acceso a {instanceName}", - "Add client" : "Añadir cliente", "Name" : "Nombre", "Redirection URI" : "URI de redirección", - "Add" : "Añadir", "Client Identifier" : "Identificador de cliente", - "Secret" : "Secreto", + "Secret key" : "Clave secreta", + "Delete client" : "Eliminar cliente", + "Make sure you store the secret key, it cannot be recovered." : "Asegúrese de guardar la clave secreta, ya que no podrá ser recuperada.", + "Add client" : "Añadir cliente", + "Add" : "Añadir", "Show client secret" : "Mostrar secreto del cliente", + "Hide client secret" : "Ocultar secreto del cliente", "Delete" : "Eliminar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_419.js b/apps/oauth2/l10n/es_419.js deleted file mode 100644 index c5703ae79c8..00000000000 --- a/apps/oauth2/l10n/es_419.js +++ /dev/null @@ -1,13 +0,0 @@ -OC.L10N.register( - "oauth2", - { - "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", - "Name" : "Nombre", - "Redirection URI" : "URI para redirección", - "Add" : "Agregar", - "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", - "Delete" : "Borrar" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_419.json b/apps/oauth2/l10n/es_419.json deleted file mode 100644 index 3a272b8f2b5..00000000000 --- a/apps/oauth2/l10n/es_419.json +++ /dev/null @@ -1,11 +0,0 @@ -{ "translations": { - "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", - "Name" : "Nombre", - "Redirection URI" : "URI para redirección", - "Add" : "Agregar", - "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", - "Delete" : "Borrar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_AR.js b/apps/oauth2/l10n/es_AR.js index 196db20b818..ec54aae2bea 100644 --- a/apps/oauth2/l10n/es_AR.js +++ b/apps/oauth2/l10n/es_AR.js @@ -3,12 +3,12 @@ OC.L10N.register( { "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", "Name" : "Nombre", "Redirection URI" : "URI de redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Add client" : "Agregar cliente", + "Add" : "Agregar", "Delete" : "Eliminar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/oauth2/l10n/es_AR.json b/apps/oauth2/l10n/es_AR.json index e6c9d759bfe..31ae3db82be 100644 --- a/apps/oauth2/l10n/es_AR.json +++ b/apps/oauth2/l10n/es_AR.json @@ -1,12 +1,12 @@ { "translations": { "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", "Name" : "Nombre", "Redirection URI" : "URI de redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Add client" : "Agregar cliente", + "Add" : "Agregar", "Delete" : "Eliminar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_CL.js b/apps/oauth2/l10n/es_CL.js index 00ba6a40669..079b21192fd 100644 --- a/apps/oauth2/l10n/es_CL.js +++ b/apps/oauth2/l10n/es_CL.js @@ -3,12 +3,12 @@ OC.L10N.register( { "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", "Name" : "Nombre", "Redirection URI" : "URI para redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Add client" : "Agregar cliente", + "Add" : "Agregar", "Delete" : "Borrar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/oauth2/l10n/es_CL.json b/apps/oauth2/l10n/es_CL.json index e252779a553..40b679cc951 100644 --- a/apps/oauth2/l10n/es_CL.json +++ b/apps/oauth2/l10n/es_CL.json @@ -1,12 +1,12 @@ { "translations": { "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", "Name" : "Nombre", "Redirection URI" : "URI para redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Add client" : "Agregar cliente", + "Add" : "Agregar", "Delete" : "Borrar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_CO.js b/apps/oauth2/l10n/es_CO.js index 00ba6a40669..079b21192fd 100644 --- a/apps/oauth2/l10n/es_CO.js +++ b/apps/oauth2/l10n/es_CO.js @@ -3,12 +3,12 @@ OC.L10N.register( { "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", "Name" : "Nombre", "Redirection URI" : "URI para redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Add client" : "Agregar cliente", + "Add" : "Agregar", "Delete" : "Borrar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/oauth2/l10n/es_CO.json b/apps/oauth2/l10n/es_CO.json index e252779a553..40b679cc951 100644 --- a/apps/oauth2/l10n/es_CO.json +++ b/apps/oauth2/l10n/es_CO.json @@ -1,12 +1,12 @@ { "translations": { "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", "Name" : "Nombre", "Redirection URI" : "URI para redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Add client" : "Agregar cliente", + "Add" : "Agregar", "Delete" : "Borrar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_CR.js b/apps/oauth2/l10n/es_CR.js index 00ba6a40669..079b21192fd 100644 --- a/apps/oauth2/l10n/es_CR.js +++ b/apps/oauth2/l10n/es_CR.js @@ -3,12 +3,12 @@ OC.L10N.register( { "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", "Name" : "Nombre", "Redirection URI" : "URI para redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Add client" : "Agregar cliente", + "Add" : "Agregar", "Delete" : "Borrar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/oauth2/l10n/es_CR.json b/apps/oauth2/l10n/es_CR.json index e252779a553..40b679cc951 100644 --- a/apps/oauth2/l10n/es_CR.json +++ b/apps/oauth2/l10n/es_CR.json @@ -1,12 +1,12 @@ { "translations": { "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", "Name" : "Nombre", "Redirection URI" : "URI para redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Add client" : "Agregar cliente", + "Add" : "Agregar", "Delete" : "Borrar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_DO.js b/apps/oauth2/l10n/es_DO.js index 00ba6a40669..079b21192fd 100644 --- a/apps/oauth2/l10n/es_DO.js +++ b/apps/oauth2/l10n/es_DO.js @@ -3,12 +3,12 @@ OC.L10N.register( { "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", "Name" : "Nombre", "Redirection URI" : "URI para redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Add client" : "Agregar cliente", + "Add" : "Agregar", "Delete" : "Borrar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/oauth2/l10n/es_DO.json b/apps/oauth2/l10n/es_DO.json index e252779a553..40b679cc951 100644 --- a/apps/oauth2/l10n/es_DO.json +++ b/apps/oauth2/l10n/es_DO.json @@ -1,12 +1,12 @@ { "translations": { "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", "Name" : "Nombre", "Redirection URI" : "URI para redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Add client" : "Agregar cliente", + "Add" : "Agregar", "Delete" : "Borrar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_EC.js b/apps/oauth2/l10n/es_EC.js index 00ba6a40669..38fab4a83a6 100644 --- a/apps/oauth2/l10n/es_EC.js +++ b/apps/oauth2/l10n/es_EC.js @@ -1,14 +1,20 @@ OC.L10N.register( "oauth2", { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Tu cliente no está autorizado para conectarse. Por favor, informa al administrador de tu cliente.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Tu URL de redirección debe ser una URL completa, por ejemplo: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Permite la autenticación compatible con OAuth2 desde otras aplicaciones web.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "La aplicación OAuth2 permite a los administradores configurar el flujo de autenticación integrado para permitir la autenticación compatible con OAuth2 desde otras aplicaciones web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permite a servicios externos solicitar acceso a {instanceName}.", "Name" : "Nombre", "Redirection URI" : "URI para redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "Show client secret" : "Mostrar el secreto del cliente", "Delete" : "Borrar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/oauth2/l10n/es_EC.json b/apps/oauth2/l10n/es_EC.json index e252779a553..3dd48dcdcd2 100644 --- a/apps/oauth2/l10n/es_EC.json +++ b/apps/oauth2/l10n/es_EC.json @@ -1,12 +1,18 @@ { "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Tu cliente no está autorizado para conectarse. Por favor, informa al administrador de tu cliente.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Tu URL de redirección debe ser una URL completa, por ejemplo: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Permite la autenticación compatible con OAuth2 desde otras aplicaciones web.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "La aplicación OAuth2 permite a los administradores configurar el flujo de autenticación integrado para permitir la autenticación compatible con OAuth2 desde otras aplicaciones web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permite a servicios externos solicitar acceso a {instanceName}.", "Name" : "Nombre", "Redirection URI" : "URI para redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "Show client secret" : "Mostrar el secreto del cliente", "Delete" : "Borrar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_GT.js b/apps/oauth2/l10n/es_GT.js index 00ba6a40669..38f9a9c8eff 100644 --- a/apps/oauth2/l10n/es_GT.js +++ b/apps/oauth2/l10n/es_GT.js @@ -1,14 +1,20 @@ OC.L10N.register( "oauth2", { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Su cliente no está autorizado para conectarse. Por favor informe al administrador de su cliente.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Su URL de redireccionamiento debe ser una URL completa, por ejemplo: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Permite la autenticación compatible con OAuth2 desde otras aplicaciones web.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "La aplicación OAuth2 permite a los administradores configurar el flujo de trabajo de autenticación incorporado para permitir también la autenticación compatible con OAuth2 desde otras aplicaciones web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permite que los servicios externos soliciten acceso a {instanceName}.", "Name" : "Nombre", "Redirection URI" : "URI para redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "Show client secret" : "Mostrar secreto del cliente", "Delete" : "Borrar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/oauth2/l10n/es_GT.json b/apps/oauth2/l10n/es_GT.json index e252779a553..fea09081d1d 100644 --- a/apps/oauth2/l10n/es_GT.json +++ b/apps/oauth2/l10n/es_GT.json @@ -1,12 +1,18 @@ { "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Su cliente no está autorizado para conectarse. Por favor informe al administrador de su cliente.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Su URL de redireccionamiento debe ser una URL completa, por ejemplo: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Permite la autenticación compatible con OAuth2 desde otras aplicaciones web.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "La aplicación OAuth2 permite a los administradores configurar el flujo de trabajo de autenticación incorporado para permitir también la autenticación compatible con OAuth2 desde otras aplicaciones web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permite que los servicios externos soliciten acceso a {instanceName}.", "Name" : "Nombre", "Redirection URI" : "URI para redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "Show client secret" : "Mostrar secreto del cliente", "Delete" : "Borrar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_HN.js b/apps/oauth2/l10n/es_HN.js deleted file mode 100644 index c5703ae79c8..00000000000 --- a/apps/oauth2/l10n/es_HN.js +++ /dev/null @@ -1,13 +0,0 @@ -OC.L10N.register( - "oauth2", - { - "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", - "Name" : "Nombre", - "Redirection URI" : "URI para redirección", - "Add" : "Agregar", - "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", - "Delete" : "Borrar" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_HN.json b/apps/oauth2/l10n/es_HN.json deleted file mode 100644 index 3a272b8f2b5..00000000000 --- a/apps/oauth2/l10n/es_HN.json +++ /dev/null @@ -1,11 +0,0 @@ -{ "translations": { - "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", - "Name" : "Nombre", - "Redirection URI" : "URI para redirección", - "Add" : "Agregar", - "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", - "Delete" : "Borrar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_MX.js b/apps/oauth2/l10n/es_MX.js index 0384f36efad..ac9270bc6af 100644 --- a/apps/oauth2/l10n/es_MX.js +++ b/apps/oauth2/l10n/es_MX.js @@ -1,16 +1,22 @@ OC.L10N.register( "oauth2", { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Su cliente no está autorizado para conectarse. Por favor, informe al administrador de su cliente.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Su URL de redireccionamiento debe ser una URL completa, por ejemplo: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "Permite autenticación compatible con OAuth2 desde otras aplicaciones web.", "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "La aplicación OAuth2 le permite a los administradores configurar el flujo de autenticación integrado para también permitir la autenticación OAuth2 de otras aplicaciones web compatibles. ", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permite que servicios externos soliciten acceso a {instanceName}.", "Name" : "Nombre", "Redirection URI" : "URI para redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Delete client" : "Eliminar cliente", + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "Show client secret" : "Mostrar el secreto del cliente", + "Hide client secret" : "Ocultar el secreto del cliente", "Delete" : "Borrar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/oauth2/l10n/es_MX.json b/apps/oauth2/l10n/es_MX.json index 0f20c80bdf9..6f0d19e414a 100644 --- a/apps/oauth2/l10n/es_MX.json +++ b/apps/oauth2/l10n/es_MX.json @@ -1,14 +1,20 @@ { "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Su cliente no está autorizado para conectarse. Por favor, informe al administrador de su cliente.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Su URL de redireccionamiento debe ser una URL completa, por ejemplo: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "Permite autenticación compatible con OAuth2 desde otras aplicaciones web.", "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "La aplicación OAuth2 le permite a los administradores configurar el flujo de autenticación integrado para también permitir la autenticación OAuth2 de otras aplicaciones web compatibles. ", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permite que servicios externos soliciten acceso a {instanceName}.", "Name" : "Nombre", "Redirection URI" : "URI para redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Delete client" : "Eliminar cliente", + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "Show client secret" : "Mostrar el secreto del cliente", + "Hide client secret" : "Ocultar el secreto del cliente", "Delete" : "Borrar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_NI.js b/apps/oauth2/l10n/es_NI.js deleted file mode 100644 index c5703ae79c8..00000000000 --- a/apps/oauth2/l10n/es_NI.js +++ /dev/null @@ -1,13 +0,0 @@ -OC.L10N.register( - "oauth2", - { - "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", - "Name" : "Nombre", - "Redirection URI" : "URI para redirección", - "Add" : "Agregar", - "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", - "Delete" : "Borrar" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_NI.json b/apps/oauth2/l10n/es_NI.json deleted file mode 100644 index 3a272b8f2b5..00000000000 --- a/apps/oauth2/l10n/es_NI.json +++ /dev/null @@ -1,11 +0,0 @@ -{ "translations": { - "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", - "Name" : "Nombre", - "Redirection URI" : "URI para redirección", - "Add" : "Agregar", - "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", - "Delete" : "Borrar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_PA.js b/apps/oauth2/l10n/es_PA.js deleted file mode 100644 index c5703ae79c8..00000000000 --- a/apps/oauth2/l10n/es_PA.js +++ /dev/null @@ -1,13 +0,0 @@ -OC.L10N.register( - "oauth2", - { - "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", - "Name" : "Nombre", - "Redirection URI" : "URI para redirección", - "Add" : "Agregar", - "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", - "Delete" : "Borrar" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_PA.json b/apps/oauth2/l10n/es_PA.json deleted file mode 100644 index 3a272b8f2b5..00000000000 --- a/apps/oauth2/l10n/es_PA.json +++ /dev/null @@ -1,11 +0,0 @@ -{ "translations": { - "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", - "Name" : "Nombre", - "Redirection URI" : "URI para redirección", - "Add" : "Agregar", - "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", - "Delete" : "Borrar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_PE.js b/apps/oauth2/l10n/es_PE.js deleted file mode 100644 index c5703ae79c8..00000000000 --- a/apps/oauth2/l10n/es_PE.js +++ /dev/null @@ -1,13 +0,0 @@ -OC.L10N.register( - "oauth2", - { - "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", - "Name" : "Nombre", - "Redirection URI" : "URI para redirección", - "Add" : "Agregar", - "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", - "Delete" : "Borrar" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_PE.json b/apps/oauth2/l10n/es_PE.json deleted file mode 100644 index 3a272b8f2b5..00000000000 --- a/apps/oauth2/l10n/es_PE.json +++ /dev/null @@ -1,11 +0,0 @@ -{ "translations": { - "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", - "Name" : "Nombre", - "Redirection URI" : "URI para redirección", - "Add" : "Agregar", - "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", - "Delete" : "Borrar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_PR.js b/apps/oauth2/l10n/es_PR.js deleted file mode 100644 index c5703ae79c8..00000000000 --- a/apps/oauth2/l10n/es_PR.js +++ /dev/null @@ -1,13 +0,0 @@ -OC.L10N.register( - "oauth2", - { - "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", - "Name" : "Nombre", - "Redirection URI" : "URI para redirección", - "Add" : "Agregar", - "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", - "Delete" : "Borrar" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_PR.json b/apps/oauth2/l10n/es_PR.json deleted file mode 100644 index 3a272b8f2b5..00000000000 --- a/apps/oauth2/l10n/es_PR.json +++ /dev/null @@ -1,11 +0,0 @@ -{ "translations": { - "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", - "Name" : "Nombre", - "Redirection URI" : "URI para redirección", - "Add" : "Agregar", - "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", - "Delete" : "Borrar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_PY.js b/apps/oauth2/l10n/es_PY.js deleted file mode 100644 index c5703ae79c8..00000000000 --- a/apps/oauth2/l10n/es_PY.js +++ /dev/null @@ -1,13 +0,0 @@ -OC.L10N.register( - "oauth2", - { - "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", - "Name" : "Nombre", - "Redirection URI" : "URI para redirección", - "Add" : "Agregar", - "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", - "Delete" : "Borrar" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_PY.json b/apps/oauth2/l10n/es_PY.json deleted file mode 100644 index 3a272b8f2b5..00000000000 --- a/apps/oauth2/l10n/es_PY.json +++ /dev/null @@ -1,11 +0,0 @@ -{ "translations": { - "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", - "Name" : "Nombre", - "Redirection URI" : "URI para redirección", - "Add" : "Agregar", - "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", - "Delete" : "Borrar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_SV.js b/apps/oauth2/l10n/es_SV.js index 00ba6a40669..079b21192fd 100644 --- a/apps/oauth2/l10n/es_SV.js +++ b/apps/oauth2/l10n/es_SV.js @@ -3,12 +3,12 @@ OC.L10N.register( { "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", "Name" : "Nombre", "Redirection URI" : "URI para redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Add client" : "Agregar cliente", + "Add" : "Agregar", "Delete" : "Borrar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/oauth2/l10n/es_SV.json b/apps/oauth2/l10n/es_SV.json index e252779a553..40b679cc951 100644 --- a/apps/oauth2/l10n/es_SV.json +++ b/apps/oauth2/l10n/es_SV.json @@ -1,12 +1,12 @@ { "translations": { "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", "Name" : "Nombre", "Redirection URI" : "URI para redirección", - "Add" : "Agregar", "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", + "Secret key" : "Llave secreta", + "Add client" : "Agregar cliente", + "Add" : "Agregar", "Delete" : "Borrar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_UY.js b/apps/oauth2/l10n/es_UY.js deleted file mode 100644 index c5703ae79c8..00000000000 --- a/apps/oauth2/l10n/es_UY.js +++ /dev/null @@ -1,13 +0,0 @@ -OC.L10N.register( - "oauth2", - { - "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", - "Name" : "Nombre", - "Redirection URI" : "URI para redirección", - "Add" : "Agregar", - "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", - "Delete" : "Borrar" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_UY.json b/apps/oauth2/l10n/es_UY.json deleted file mode 100644 index 3a272b8f2b5..00000000000 --- a/apps/oauth2/l10n/es_UY.json +++ /dev/null @@ -1,11 +0,0 @@ -{ "translations": { - "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "Add client" : "Agregar cliente", - "Name" : "Nombre", - "Redirection URI" : "URI para redirección", - "Add" : "Agregar", - "Client Identifier" : "Identificador del cliente", - "Secret" : "Secreto", - "Delete" : "Borrar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/apps/oauth2/l10n/et_EE.js b/apps/oauth2/l10n/et_EE.js index e2f54d13feb..93a7c7e97bf 100644 --- a/apps/oauth2/l10n/et_EE.js +++ b/apps/oauth2/l10n/et_EE.js @@ -1,13 +1,23 @@ OC.L10N.register( "oauth2", { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Su klient ei ole ühenduseks autoriseeritud. Palun teavita oma kliendi peakasutajat.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Ümbersuunamise URL peab olema täis URL, näiteks: https://sinudomeen.com/asukoht", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Võimaldab OAuth2-ga ühilduvat autentimist teistest veebirakendustest.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Rakendus OAuth2 võimaldab administraatoritel konfigureerida sisseehitatud autentimise töövoogu, et võimaldada ka OAuth2-ga ühilduvat autentimist teistest veebirakendustest.", "OAuth 2.0 clients" : "OAuth 2.0 kliendid", - "Add client" : "Lisa klient", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 võimaldab välisteenustel taotleda juurdepääsu {instanceName}ile", "Name" : "Nimi", "Redirection URI" : "Suunamise URI", - "Add" : "Lisa", "Client Identifier" : "Kliendi identifikaator", - "Secret" : "Saladus", + "Secret key" : "Salavõti", + "Delete client" : "Kustuta klient", + "Make sure you store the secret key, it cannot be recovered." : "Salvesta salajane võti, seda ei saa taastada.", + "Add client" : "Lisa klient", + "Add" : "Lisa", + "Show client secret" : "Näita kliendi salakoodi", + "Hide client secret" : "Peida kliendi salakood", "Delete" : "Kustuta" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/et_EE.json b/apps/oauth2/l10n/et_EE.json index 8ee807ed375..0ddc97bea45 100644 --- a/apps/oauth2/l10n/et_EE.json +++ b/apps/oauth2/l10n/et_EE.json @@ -1,11 +1,21 @@ { "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Su klient ei ole ühenduseks autoriseeritud. Palun teavita oma kliendi peakasutajat.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Ümbersuunamise URL peab olema täis URL, näiteks: https://sinudomeen.com/asukoht", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Võimaldab OAuth2-ga ühilduvat autentimist teistest veebirakendustest.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Rakendus OAuth2 võimaldab administraatoritel konfigureerida sisseehitatud autentimise töövoogu, et võimaldada ka OAuth2-ga ühilduvat autentimist teistest veebirakendustest.", "OAuth 2.0 clients" : "OAuth 2.0 kliendid", - "Add client" : "Lisa klient", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 võimaldab välisteenustel taotleda juurdepääsu {instanceName}ile", "Name" : "Nimi", "Redirection URI" : "Suunamise URI", - "Add" : "Lisa", "Client Identifier" : "Kliendi identifikaator", - "Secret" : "Saladus", + "Secret key" : "Salavõti", + "Delete client" : "Kustuta klient", + "Make sure you store the secret key, it cannot be recovered." : "Salvesta salajane võti, seda ei saa taastada.", + "Add client" : "Lisa klient", + "Add" : "Lisa", + "Show client secret" : "Näita kliendi salakoodi", + "Hide client secret" : "Peida kliendi salakood", "Delete" : "Kustuta" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/eu.js b/apps/oauth2/l10n/eu.js index 71b0a2a1475..e195a1ef3ac 100644 --- a/apps/oauth2/l10n/eu.js +++ b/apps/oauth2/l10n/eu.js @@ -1,20 +1,23 @@ OC.L10N.register( "oauth2", { - "Your client is not authorized to connect. Please inform the administrator of your client." : "Zure bezeroak ez du konektatzeko baimenik. Esan iezaiozu zure bezeroaren kudeatzaileari.", + "Your client is not authorized to connect. Please inform the administrator of your client." : "Zure bezeroak ez du konektatzeko baimenik. Esan iezaiozu zure bezeroaren administratzaileari.", "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Berbideraketa egiteko URLa URL oso bat izan behar da, adibidez: https://zuredomeinua.eus/karpeta", "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "Beste web aplikazio batzuen bidez egindako OAuth2 erako autentikazioa egitea baimentzen du", "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 aplikazioak, zerbitzu hori eskaintzen duten beste web aplikazio batzuen bidez autentikazioa egiten konfiguratzeko aukera eskaintzen die sistemaren kudeatzaileei.", - "OAuth 2.0 clients" : "OAuth 2.0-en bezeroak", + "OAuth 2.0 clients" : "OAuth 2.0 bezeroak", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0k kanpo zerbitzuei {instanceName} instantziara sartzeko baimena eskatzea baimentzen die.", - "Add client" : "Bezeroa gehitu", "Name" : "Izena", "Redirection URI" : "Birbideraketaren URI", - "Add" : "Gehitu", "Client Identifier" : "Bezeroaren Identifikadorea", - "Secret" : "Sekretua", + "Secret key" : "Gako sekretua", + "Delete client" : "Ezabatu bezeroa", + "Make sure you store the secret key, it cannot be recovered." : "Ziurtatu gako sekretua gordetzen duzula, ezin da berreskuratu.", + "Add client" : "Gehitu bezeroa", + "Add" : "Gehitu", "Show client secret" : "Erakutsi bezeroaren sekretua", + "Hide client secret" : "Ezkutatu bezeroaren sekretua", "Delete" : "Ezabatu" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/eu.json b/apps/oauth2/l10n/eu.json index ed8de4a9f35..ddfcd437650 100644 --- a/apps/oauth2/l10n/eu.json +++ b/apps/oauth2/l10n/eu.json @@ -1,18 +1,21 @@ { "translations": { - "Your client is not authorized to connect. Please inform the administrator of your client." : "Zure bezeroak ez du konektatzeko baimenik. Esan iezaiozu zure bezeroaren kudeatzaileari.", + "Your client is not authorized to connect. Please inform the administrator of your client." : "Zure bezeroak ez du konektatzeko baimenik. Esan iezaiozu zure bezeroaren administratzaileari.", "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Berbideraketa egiteko URLa URL oso bat izan behar da, adibidez: https://zuredomeinua.eus/karpeta", "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "Beste web aplikazio batzuen bidez egindako OAuth2 erako autentikazioa egitea baimentzen du", "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 aplikazioak, zerbitzu hori eskaintzen duten beste web aplikazio batzuen bidez autentikazioa egiten konfiguratzeko aukera eskaintzen die sistemaren kudeatzaileei.", - "OAuth 2.0 clients" : "OAuth 2.0-en bezeroak", + "OAuth 2.0 clients" : "OAuth 2.0 bezeroak", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0k kanpo zerbitzuei {instanceName} instantziara sartzeko baimena eskatzea baimentzen die.", - "Add client" : "Bezeroa gehitu", "Name" : "Izena", "Redirection URI" : "Birbideraketaren URI", - "Add" : "Gehitu", "Client Identifier" : "Bezeroaren Identifikadorea", - "Secret" : "Sekretua", + "Secret key" : "Gako sekretua", + "Delete client" : "Ezabatu bezeroa", + "Make sure you store the secret key, it cannot be recovered." : "Ziurtatu gako sekretua gordetzen duzula, ezin da berreskuratu.", + "Add client" : "Gehitu bezeroa", + "Add" : "Gehitu", "Show client secret" : "Erakutsi bezeroaren sekretua", + "Hide client secret" : "Ezkutatu bezeroaren sekretua", "Delete" : "Ezabatu" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/fa.js b/apps/oauth2/l10n/fa.js index 9e65ce59c94..4f21d887051 100644 --- a/apps/oauth2/l10n/fa.js +++ b/apps/oauth2/l10n/fa.js @@ -8,12 +8,12 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "برنامه OAuth2 به مدیران اجازه می دهد تا گردش کار داخلی تأیید اعتبار را پیکربندی کنند ، همچنین اجازه تأیید هویت سازگار OAuth2 را از دیگر برنامه های وب فراهم می کند.", "OAuth 2.0 clients" : "مشتری OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth تأیید 2.0 اجازه می دهد تا خدمات خارجی به درخواست دسترسی به {} instanceName.", - "Add client" : "افزودن مشتری", "Name" : "نام", "Redirection URI" : "تغییر مسیر URI", - "Add" : "افزودن", "Client Identifier" : "شناسه مشتری", - "Secret" : "راز", + "Secret key" : "کلید مخفی", + "Add client" : "افزودن مشتری", + "Add" : "افزودن", "Show client secret" : "راز مشتری را نشان دهید", "Delete" : "حذف" }, diff --git a/apps/oauth2/l10n/fa.json b/apps/oauth2/l10n/fa.json index 69f7ea5f0c7..f7091f5c83e 100644 --- a/apps/oauth2/l10n/fa.json +++ b/apps/oauth2/l10n/fa.json @@ -6,12 +6,12 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "برنامه OAuth2 به مدیران اجازه می دهد تا گردش کار داخلی تأیید اعتبار را پیکربندی کنند ، همچنین اجازه تأیید هویت سازگار OAuth2 را از دیگر برنامه های وب فراهم می کند.", "OAuth 2.0 clients" : "مشتری OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth تأیید 2.0 اجازه می دهد تا خدمات خارجی به درخواست دسترسی به {} instanceName.", - "Add client" : "افزودن مشتری", "Name" : "نام", "Redirection URI" : "تغییر مسیر URI", - "Add" : "افزودن", "Client Identifier" : "شناسه مشتری", - "Secret" : "راز", + "Secret key" : "کلید مخفی", + "Add client" : "افزودن مشتری", + "Add" : "افزودن", "Show client secret" : "راز مشتری را نشان دهید", "Delete" : "حذف" },"pluralForm" :"nplurals=2; plural=(n > 1);" diff --git a/apps/oauth2/l10n/fi.js b/apps/oauth2/l10n/fi.js index 717e64be267..c7ad237bc72 100644 --- a/apps/oauth2/l10n/fi.js +++ b/apps/oauth2/l10n/fi.js @@ -1,15 +1,20 @@ OC.L10N.register( "oauth2", { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Asiakastasi ei ole valtuutettu yhdistämään. Ilmoita ylläpidolle asiakkaastasi.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Uudelleenohjauksen URL-osoitteen on oltava täydellinen URL-osoite, esimerkiksi: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "Sallii OAuth2-yhteensopivan tunnistautumisen muista verkkosovelluksista.", "OAuth 2.0 clients" : "OAuth 2.0 -asiakkaat", - "Add client" : "Lisää asiakas", "Name" : "Nimi", "Redirection URI" : "Uudelleenohjaus URI", - "Add" : "Lisää", "Client Identifier" : "Asiakkaan tunniste", - "Secret" : "Salaisuus", + "Secret key" : "Salainen avain", + "Delete client" : "Poista asiakas", + "Add client" : "Lisää asiakas", + "Add" : "Lisää", + "Show client secret" : "Näytä asiakkaan salaisuus", + "Hide client secret" : "Piilota asiakkaan salaisuus", "Delete" : "Poista" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/fi.json b/apps/oauth2/l10n/fi.json index f1f13f280c1..c74e11bef5e 100644 --- a/apps/oauth2/l10n/fi.json +++ b/apps/oauth2/l10n/fi.json @@ -1,13 +1,18 @@ { "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Asiakastasi ei ole valtuutettu yhdistämään. Ilmoita ylläpidolle asiakkaastasi.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Uudelleenohjauksen URL-osoitteen on oltava täydellinen URL-osoite, esimerkiksi: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "Sallii OAuth2-yhteensopivan tunnistautumisen muista verkkosovelluksista.", "OAuth 2.0 clients" : "OAuth 2.0 -asiakkaat", - "Add client" : "Lisää asiakas", "Name" : "Nimi", "Redirection URI" : "Uudelleenohjaus URI", - "Add" : "Lisää", "Client Identifier" : "Asiakkaan tunniste", - "Secret" : "Salaisuus", + "Secret key" : "Salainen avain", + "Delete client" : "Poista asiakas", + "Add client" : "Lisää asiakas", + "Add" : "Lisää", + "Show client secret" : "Näytä asiakkaan salaisuus", + "Hide client secret" : "Piilota asiakkaan salaisuus", "Delete" : "Poista" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/fr.js b/apps/oauth2/l10n/fr.js index c8080f0319d..a60dc05f74c 100644 --- a/apps/oauth2/l10n/fr.js +++ b/apps/oauth2/l10n/fr.js @@ -1,20 +1,23 @@ OC.L10N.register( "oauth2", { - "Your client is not authorized to connect. Please inform the administrator of your client." : "Votre client n'est pas autoriser à se connecter. Veuillez informer l'administrateur de votre client.", + "Your client is not authorized to connect. Please inform the administrator of your client." : "Votre client n'est pas autorisé à se connecter. Veuillez en informer l'administrateur.", "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Votre adresse de redirection doit être une URL complète, par exemple: https://example.com/chemin", "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "Autoriser l'authentification compatible OAuth2 depuis d'autres applications web.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'application OAuth2 permet aux administrateurs de configurer le processus d'authentification intégrée afin d'autoriser l'authentification compatible OAuth2 depuis d'autres applications web.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'application OAuth2 permet aux administrateurs de configurer le processus d'authentification intégré afin d'autoriser une authentification compatible OAuth2 depuis d'autres applications web.", "OAuth 2.0 clients" : "Clients OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permet à des services externes de demander l'accès à {instanceName}.", - "Add client" : "Ajouter un client", "Name" : "Nom", "Redirection URI" : "URI de redirection", - "Add" : "Ajouter", "Client Identifier" : "Identifiant du client", - "Secret" : "Secret", - "Show client secret" : "Afficher client secret", + "Secret key" : "Clé secrète", + "Delete client" : "Supprimer le client", + "Make sure you store the secret key, it cannot be recovered." : "Assurez-vous de stocker la clé secrète, elle ne peut pas être re récupérée.", + "Add client" : "Ajouter un client", + "Add" : "Ajouter", + "Show client secret" : "Afficher le code secret du client", + "Hide client secret" : "Masquer le secret du client", "Delete" : "Supprimer" }, -"nplurals=2; plural=(n > 1);"); +"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/oauth2/l10n/fr.json b/apps/oauth2/l10n/fr.json index 9f079bd9ad2..9be9ea0d408 100644 --- a/apps/oauth2/l10n/fr.json +++ b/apps/oauth2/l10n/fr.json @@ -1,18 +1,21 @@ { "translations": { - "Your client is not authorized to connect. Please inform the administrator of your client." : "Votre client n'est pas autoriser à se connecter. Veuillez informer l'administrateur de votre client.", + "Your client is not authorized to connect. Please inform the administrator of your client." : "Votre client n'est pas autorisé à se connecter. Veuillez en informer l'administrateur.", "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Votre adresse de redirection doit être une URL complète, par exemple: https://example.com/chemin", "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "Autoriser l'authentification compatible OAuth2 depuis d'autres applications web.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'application OAuth2 permet aux administrateurs de configurer le processus d'authentification intégrée afin d'autoriser l'authentification compatible OAuth2 depuis d'autres applications web.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'application OAuth2 permet aux administrateurs de configurer le processus d'authentification intégré afin d'autoriser une authentification compatible OAuth2 depuis d'autres applications web.", "OAuth 2.0 clients" : "Clients OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permet à des services externes de demander l'accès à {instanceName}.", - "Add client" : "Ajouter un client", "Name" : "Nom", "Redirection URI" : "URI de redirection", - "Add" : "Ajouter", "Client Identifier" : "Identifiant du client", - "Secret" : "Secret", - "Show client secret" : "Afficher client secret", + "Secret key" : "Clé secrète", + "Delete client" : "Supprimer le client", + "Make sure you store the secret key, it cannot be recovered." : "Assurez-vous de stocker la clé secrète, elle ne peut pas être re récupérée.", + "Add client" : "Ajouter un client", + "Add" : "Ajouter", + "Show client secret" : "Afficher le code secret du client", + "Hide client secret" : "Masquer le secret du client", "Delete" : "Supprimer" -},"pluralForm" :"nplurals=2; plural=(n > 1);" +},"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/ga.js b/apps/oauth2/l10n/ga.js new file mode 100644 index 00000000000..45199e91f97 --- /dev/null +++ b/apps/oauth2/l10n/ga.js @@ -0,0 +1,23 @@ +OC.L10N.register( + "oauth2", + { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Níl do chliant údaraithe chun nascadh. Cuir do chliant ar an eolas do riarthóir.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Ní mór do URL athsheolaidh a bheith ina URL iomlán mar shampla: https://yourdomain.com/path", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Ceadaíonn sé fíordheimhniú comhoiriúnach OAuth2 ó fheidhmchláir ghréasáin eile.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Ligeann an aip OAuth2 do riarthóirí an sreabhadh oibre fíordheimhnithe ionsuite a chumrú chun fíordheimhniú comhoiriúnach OAuth2 a cheadú ó fheidhmchláir ghréasáin eile.", + "OAuth 2.0 clients" : "Cliant OAuth 2.0", + "OAuth 2.0 allows external services to request access to {instanceName}." : "Ligeann OAuth 2.0 do sheirbhísí seachtracha rochtain a iarraidh ar {instanceName}.", + "Name" : "Ainm", + "Redirection URI" : "Atreo URI", + "Client Identifier" : "Aitheantóir Cliant", + "Secret key" : "Eochair rúnda", + "Delete client" : "Scrios cliant", + "Make sure you store the secret key, it cannot be recovered." : "Déan cinnte go stórálann tú an eochair rúnda, ní féidir í a aisghabháil.", + "Add client" : "Cuir cliant leis", + "Add" : "Cuir", + "Show client secret" : "Taispeáin rún an chliaint", + "Hide client secret" : "Folaigh rún an chliaint", + "Delete" : "Scrios" +}, +"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);"); diff --git a/apps/oauth2/l10n/ga.json b/apps/oauth2/l10n/ga.json new file mode 100644 index 00000000000..a85a372dc24 --- /dev/null +++ b/apps/oauth2/l10n/ga.json @@ -0,0 +1,21 @@ +{ "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Níl do chliant údaraithe chun nascadh. Cuir do chliant ar an eolas do riarthóir.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Ní mór do URL athsheolaidh a bheith ina URL iomlán mar shampla: https://yourdomain.com/path", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Ceadaíonn sé fíordheimhniú comhoiriúnach OAuth2 ó fheidhmchláir ghréasáin eile.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Ligeann an aip OAuth2 do riarthóirí an sreabhadh oibre fíordheimhnithe ionsuite a chumrú chun fíordheimhniú comhoiriúnach OAuth2 a cheadú ó fheidhmchláir ghréasáin eile.", + "OAuth 2.0 clients" : "Cliant OAuth 2.0", + "OAuth 2.0 allows external services to request access to {instanceName}." : "Ligeann OAuth 2.0 do sheirbhísí seachtracha rochtain a iarraidh ar {instanceName}.", + "Name" : "Ainm", + "Redirection URI" : "Atreo URI", + "Client Identifier" : "Aitheantóir Cliant", + "Secret key" : "Eochair rúnda", + "Delete client" : "Scrios cliant", + "Make sure you store the secret key, it cannot be recovered." : "Déan cinnte go stórálann tú an eochair rúnda, ní féidir í a aisghabháil.", + "Add client" : "Cuir cliant leis", + "Add" : "Cuir", + "Show client secret" : "Taispeáin rún an chliaint", + "Hide client secret" : "Folaigh rún an chliaint", + "Delete" : "Scrios" +},"pluralForm" :"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);" +}
\ No newline at end of file diff --git a/apps/oauth2/l10n/gl.js b/apps/oauth2/l10n/gl.js index 5badcc477d7..3aaa35e0b00 100644 --- a/apps/oauth2/l10n/gl.js +++ b/apps/oauth2/l10n/gl.js @@ -1,20 +1,23 @@ OC.L10N.register( "oauth2", { - "Your client is not authorized to connect. Please inform the administrator of your client." : "O seu cliente non ten autorización para conectarse. Informe do seu cliente ao administrador.", + "Your client is not authorized to connect. Please inform the administrator of your client." : "O seu cliente non ten autorización para conectarse. Informe do seu cliente á administración da instancia", "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "o seu URL de redirección debe ser un URL completo, por exemplo: https://omeudominio.com/ruta", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Permite a autenticación compatíbel con OAuth2 dende outras aplicacións web.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "A aplicación OAuth2 permítelle aos administradores configurar o fluxo de traballo de autenticación incorporado para permitir tamén autenticación compatíbel con OAuth2 dende outras aplicacións web.", + "Allows OAuth2 compatible authentication from other web applications." : "Permite a autenticación compatíbel con OAuth2 desde outras aplicacións web.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "A aplicación OAuth2 permítelle aos administradores configurar o fluxo de traballo de autenticación integrado para permitir tamén autenticación compatíbel con OAuth2 desde outras aplicacións web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permítelle aos servizos externos solicitar acceso a {instanceName}.", - "Add client" : "Engadir cliente", "Name" : "Nome", "Redirection URI" : "URI de redireccionamento", - "Add" : "Engadir", "Client Identifier" : "Identificador do cliente", - "Secret" : "Segredo", + "Secret key" : "Chave secreta", + "Delete client" : "Eliminar cliente", + "Make sure you store the secret key, it cannot be recovered." : "Asegúrese de gardar a chave secreta, non é posíbel recuperala.", + "Add client" : "Engadir cliente", + "Add" : "Engadir", "Show client secret" : "Amosar o segredo do cliente", + "Hide client secret" : "Agochar o segredo do cliente", "Delete" : "Eliminar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/gl.json b/apps/oauth2/l10n/gl.json index fcbf78cb6cb..3401883d361 100644 --- a/apps/oauth2/l10n/gl.json +++ b/apps/oauth2/l10n/gl.json @@ -1,18 +1,21 @@ { "translations": { - "Your client is not authorized to connect. Please inform the administrator of your client." : "O seu cliente non ten autorización para conectarse. Informe do seu cliente ao administrador.", + "Your client is not authorized to connect. Please inform the administrator of your client." : "O seu cliente non ten autorización para conectarse. Informe do seu cliente á administración da instancia", "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "o seu URL de redirección debe ser un URL completo, por exemplo: https://omeudominio.com/ruta", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Permite a autenticación compatíbel con OAuth2 dende outras aplicacións web.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "A aplicación OAuth2 permítelle aos administradores configurar o fluxo de traballo de autenticación incorporado para permitir tamén autenticación compatíbel con OAuth2 dende outras aplicacións web.", + "Allows OAuth2 compatible authentication from other web applications." : "Permite a autenticación compatíbel con OAuth2 desde outras aplicacións web.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "A aplicación OAuth2 permítelle aos administradores configurar o fluxo de traballo de autenticación integrado para permitir tamén autenticación compatíbel con OAuth2 desde outras aplicacións web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permítelle aos servizos externos solicitar acceso a {instanceName}.", - "Add client" : "Engadir cliente", "Name" : "Nome", "Redirection URI" : "URI de redireccionamento", - "Add" : "Engadir", "Client Identifier" : "Identificador do cliente", - "Secret" : "Segredo", + "Secret key" : "Chave secreta", + "Delete client" : "Eliminar cliente", + "Make sure you store the secret key, it cannot be recovered." : "Asegúrese de gardar a chave secreta, non é posíbel recuperala.", + "Add client" : "Engadir cliente", + "Add" : "Engadir", "Show client secret" : "Amosar o segredo do cliente", + "Hide client secret" : "Agochar o segredo do cliente", "Delete" : "Eliminar" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/he.js b/apps/oauth2/l10n/he.js index 2b0cee6bbe7..2d32792f86e 100644 --- a/apps/oauth2/l10n/he.js +++ b/apps/oauth2/l10n/he.js @@ -8,13 +8,13 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "יישומון OAuth2 מאפשר למנהלים להגדיר את הסדר האימות המובנה כדי לאפשר אימות תואם OAuth2 מיישומים אחרים.", "OAuth 2.0 clients" : "לקוחות OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 מאפשר לשירותים חיצוניים לבקש גישה אל {instanceName}.", - "Add client" : "הוספת לקוחי", "Name" : "שם", "Redirection URI" : "כתובת הפנייה", - "Add" : "הוספה", "Client Identifier" : "זיהוי לקו", - "Secret" : "סוד", + "Secret key" : "מפתח סודי", + "Add client" : "הוספת לקוחי", + "Add" : "הוספה", "Show client secret" : "הצגת סוד לקוח", "Delete" : "מחיקה" }, -"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"); +"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;"); diff --git a/apps/oauth2/l10n/he.json b/apps/oauth2/l10n/he.json index 27ea4625363..d46ae0195f4 100644 --- a/apps/oauth2/l10n/he.json +++ b/apps/oauth2/l10n/he.json @@ -6,13 +6,13 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "יישומון OAuth2 מאפשר למנהלים להגדיר את הסדר האימות המובנה כדי לאפשר אימות תואם OAuth2 מיישומים אחרים.", "OAuth 2.0 clients" : "לקוחות OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 מאפשר לשירותים חיצוניים לבקש גישה אל {instanceName}.", - "Add client" : "הוספת לקוחי", "Name" : "שם", "Redirection URI" : "כתובת הפנייה", - "Add" : "הוספה", "Client Identifier" : "זיהוי לקו", - "Secret" : "סוד", + "Secret key" : "מפתח סודי", + "Add client" : "הוספת לקוחי", + "Add" : "הוספה", "Show client secret" : "הצגת סוד לקוח", "Delete" : "מחיקה" -},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;" +},"pluralForm" :"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/hr.js b/apps/oauth2/l10n/hr.js index 8e1ab442d54..396209ee36b 100644 --- a/apps/oauth2/l10n/hr.js +++ b/apps/oauth2/l10n/hr.js @@ -8,12 +8,12 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Aplikacija OAuth2 omogućuje administratorima da konfiguriraju ugrađeni tijek autentifikacije kako bi također omogućili autentifikaciju kompatibilnu s OAuth2 iz drugih web aplikacija.", "OAuth 2.0 clients" : "OAuth 2.0 klijenti", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 omogućuje vanjskim servisima da zahtijevaju pristup {instanceName}.", - "Add client" : "Dodaj klijenta", "Name" : "Naziv", "Redirection URI" : "URL za preusmjeravanje", - "Add" : "Dodaj", "Client Identifier" : "Identifikator klijenta", - "Secret" : "Tajno", + "Secret key" : "Tajni ključ", + "Add client" : "Dodaj klijenta", + "Add" : "Dodaj", "Show client secret" : "Prikaži tajni ključ klijenta", "Delete" : "Izbriši" }, diff --git a/apps/oauth2/l10n/hr.json b/apps/oauth2/l10n/hr.json index ad5fa8ebe28..79303555b6b 100644 --- a/apps/oauth2/l10n/hr.json +++ b/apps/oauth2/l10n/hr.json @@ -6,12 +6,12 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Aplikacija OAuth2 omogućuje administratorima da konfiguriraju ugrađeni tijek autentifikacije kako bi također omogućili autentifikaciju kompatibilnu s OAuth2 iz drugih web aplikacija.", "OAuth 2.0 clients" : "OAuth 2.0 klijenti", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 omogućuje vanjskim servisima da zahtijevaju pristup {instanceName}.", - "Add client" : "Dodaj klijenta", "Name" : "Naziv", "Redirection URI" : "URL za preusmjeravanje", - "Add" : "Dodaj", "Client Identifier" : "Identifikator klijenta", - "Secret" : "Tajno", + "Secret key" : "Tajni ključ", + "Add client" : "Dodaj klijenta", + "Add" : "Dodaj", "Show client secret" : "Prikaži tajni ključ klijenta", "Delete" : "Izbriši" },"pluralForm" :"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;" diff --git a/apps/oauth2/l10n/hu.js b/apps/oauth2/l10n/hu.js index 562eebc4170..eddb2928651 100644 --- a/apps/oauth2/l10n/hu.js +++ b/apps/oauth2/l10n/hu.js @@ -1,20 +1,23 @@ OC.L10N.register( "oauth2", { - "Your client is not authorized to connect. Please inform the administrator of your client." : "Az ön ügyfélalkalmazásának nem engedélyezték a kapcsolódást. Kérem, értesítse az alkalmazás rendszergazdáját.", - "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Az átirányított URL címe teljes URL címnek kell lennie, mint például: https://yourdomain.com/path", + "Your client is not authorized to connect. Please inform the administrator of your client." : "Az Ön kliensalkalmazása számára nem engedélyezett a kapcsolódás. Értesítse a kliense rendszergazdáját.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Az átirányítási URL-jének teljes URL-nek kell lennie, például: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "OAuth2 kompatibilis azonosítás engedélyezése más web alkalmazásokból.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Az OAuth2 alkalmazás megengedi az adminisztrátoroknak, hogy beállíthassák a beépített azonosítási munkafolyamat számára az OAuth2 kompatibilis azonosítás engedélyezését is más web alkalmazásokból.", + "Allows OAuth2 compatible authentication from other web applications." : "Lehetővé teszi az OAuth2 kompatibilis hitelesítést más webalkalmazásokból.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Az OAuth2 alkalmazás lehetővé teszi a rendszergazdák számára, hogy beállíthassák a beépített azonosítási munkafolyamat számára az OAuth2 kompatibilis hitelesítést más webalkalmazásokból.", "OAuth 2.0 clients" : "OAuth 2.0 kliensek", - "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 engedélyezi a külső szolgáltatások hozzáférési kérelmét a következőhöz: {instanceName}.", - "Add client" : "Ügyfél hozzáadás", + "OAuth 2.0 allows external services to request access to {instanceName}." : "Az OAuth 2.0 engedélyezi, hogy külső szolgáltatások hozzáférést kérjenek a következőhöz: {instanceName}.", "Name" : "Név", - "Redirection URI" : "Átirányítési URI", + "Redirection URI" : "Átirányítási URI", + "Client Identifier" : "Ügyfélazonosító", + "Secret key" : "Titkos kulcs", + "Delete client" : "Kliens törlése", + "Make sure you store the secret key, it cannot be recovered." : "Győződjön meg róla tárolja a titkos kulcsot, mert nem nyerhető vissza.", + "Add client" : "Kliens hozzáadása", "Add" : "Hozzáadás", - "Client Identifier" : "Ügyfél azonosító", - "Secret" : "Titok", - "Show client secret" : "Kliens titkosítási kulcs mutatása", + "Show client secret" : "Klienstitok megjelenítése", + "Hide client secret" : "Klienstitok elrejtése", "Delete" : "Törlés" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/hu.json b/apps/oauth2/l10n/hu.json index 623efd4dfa5..2e0a9c4de02 100644 --- a/apps/oauth2/l10n/hu.json +++ b/apps/oauth2/l10n/hu.json @@ -1,18 +1,21 @@ { "translations": { - "Your client is not authorized to connect. Please inform the administrator of your client." : "Az ön ügyfélalkalmazásának nem engedélyezték a kapcsolódást. Kérem, értesítse az alkalmazás rendszergazdáját.", - "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Az átirányított URL címe teljes URL címnek kell lennie, mint például: https://yourdomain.com/path", + "Your client is not authorized to connect. Please inform the administrator of your client." : "Az Ön kliensalkalmazása számára nem engedélyezett a kapcsolódás. Értesítse a kliense rendszergazdáját.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Az átirányítási URL-jének teljes URL-nek kell lennie, például: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "OAuth2 kompatibilis azonosítás engedélyezése más web alkalmazásokból.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Az OAuth2 alkalmazás megengedi az adminisztrátoroknak, hogy beállíthassák a beépített azonosítási munkafolyamat számára az OAuth2 kompatibilis azonosítás engedélyezését is más web alkalmazásokból.", + "Allows OAuth2 compatible authentication from other web applications." : "Lehetővé teszi az OAuth2 kompatibilis hitelesítést más webalkalmazásokból.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Az OAuth2 alkalmazás lehetővé teszi a rendszergazdák számára, hogy beállíthassák a beépített azonosítási munkafolyamat számára az OAuth2 kompatibilis hitelesítést más webalkalmazásokból.", "OAuth 2.0 clients" : "OAuth 2.0 kliensek", - "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 engedélyezi a külső szolgáltatások hozzáférési kérelmét a következőhöz: {instanceName}.", - "Add client" : "Ügyfél hozzáadás", + "OAuth 2.0 allows external services to request access to {instanceName}." : "Az OAuth 2.0 engedélyezi, hogy külső szolgáltatások hozzáférést kérjenek a következőhöz: {instanceName}.", "Name" : "Név", - "Redirection URI" : "Átirányítési URI", + "Redirection URI" : "Átirányítási URI", + "Client Identifier" : "Ügyfélazonosító", + "Secret key" : "Titkos kulcs", + "Delete client" : "Kliens törlése", + "Make sure you store the secret key, it cannot be recovered." : "Győződjön meg róla tárolja a titkos kulcsot, mert nem nyerhető vissza.", + "Add client" : "Kliens hozzáadása", "Add" : "Hozzáadás", - "Client Identifier" : "Ügyfél azonosító", - "Secret" : "Titok", - "Show client secret" : "Kliens titkosítási kulcs mutatása", + "Show client secret" : "Klienstitok megjelenítése", + "Hide client secret" : "Klienstitok elrejtése", "Delete" : "Törlés" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/id.js b/apps/oauth2/l10n/id.js deleted file mode 100644 index 79f05d1b1b2..00000000000 --- a/apps/oauth2/l10n/id.js +++ /dev/null @@ -1,13 +0,0 @@ -OC.L10N.register( - "oauth2", - { - "OAuth 2.0 clients" : "Klien OAuth 2.0", - "Add client" : "Tambah klien", - "Name" : "Nama", - "Redirection URI" : "URI Pengalihan", - "Add" : "Tambah", - "Client Identifier" : "Identifier klien", - "Secret" : "Rahasia", - "Delete" : "Hapus" -}, -"nplurals=1; plural=0;"); diff --git a/apps/oauth2/l10n/id.json b/apps/oauth2/l10n/id.json deleted file mode 100644 index d593b145a06..00000000000 --- a/apps/oauth2/l10n/id.json +++ /dev/null @@ -1,11 +0,0 @@ -{ "translations": { - "OAuth 2.0 clients" : "Klien OAuth 2.0", - "Add client" : "Tambah klien", - "Name" : "Nama", - "Redirection URI" : "URI Pengalihan", - "Add" : "Tambah", - "Client Identifier" : "Identifier klien", - "Secret" : "Rahasia", - "Delete" : "Hapus" -},"pluralForm" :"nplurals=1; plural=0;" -}
\ No newline at end of file diff --git a/apps/oauth2/l10n/is.js b/apps/oauth2/l10n/is.js index 56181b4808d..e786a1e409d 100644 --- a/apps/oauth2/l10n/is.js +++ b/apps/oauth2/l10n/is.js @@ -8,13 +8,16 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2-forritið gerir kerfisstjórum kleift að stilla innbyggða auðkenningarferlið þannig að einnig sé hægt að nota OAuth2-samhæfða auðkenningu frá öðrum vefforritum.", "OAuth 2.0 clients" : "OAuth 2.0 biðlarar", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 gerir utanaðkomandi þjónustum kleift að biðja um aðgang að {instanceName}.", - "Add client" : "Bæta við biðlara", "Name" : "Nafn", "Redirection URI" : "Endurbeiningarslóð", - "Add" : "Bæta við", "Client Identifier" : "Biðlaraauðkenni", - "Secret" : "Leynilykill", + "Secret key" : "Leynilykill", + "Delete client" : "Eyða biðlara", + "Make sure you store the secret key, it cannot be recovered." : "Vertu viss um að geyma leynilykilinn á góðum stað, henn er ekki hægt að endurheimta.", + "Add client" : "Bæta við biðlara", + "Add" : "Bæta við", "Show client secret" : "Sýna leynilykil biðlara", + "Hide client secret" : "Fela leynilykil biðlara", "Delete" : "Eyða" }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/oauth2/l10n/is.json b/apps/oauth2/l10n/is.json index d4afe27b1b2..573b3a496a4 100644 --- a/apps/oauth2/l10n/is.json +++ b/apps/oauth2/l10n/is.json @@ -6,13 +6,16 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2-forritið gerir kerfisstjórum kleift að stilla innbyggða auðkenningarferlið þannig að einnig sé hægt að nota OAuth2-samhæfða auðkenningu frá öðrum vefforritum.", "OAuth 2.0 clients" : "OAuth 2.0 biðlarar", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 gerir utanaðkomandi þjónustum kleift að biðja um aðgang að {instanceName}.", - "Add client" : "Bæta við biðlara", "Name" : "Nafn", "Redirection URI" : "Endurbeiningarslóð", - "Add" : "Bæta við", "Client Identifier" : "Biðlaraauðkenni", - "Secret" : "Leynilykill", + "Secret key" : "Leynilykill", + "Delete client" : "Eyða biðlara", + "Make sure you store the secret key, it cannot be recovered." : "Vertu viss um að geyma leynilykilinn á góðum stað, henn er ekki hægt að endurheimta.", + "Add client" : "Bæta við biðlara", + "Add" : "Bæta við", "Show client secret" : "Sýna leynilykil biðlara", + "Hide client secret" : "Fela leynilykil biðlara", "Delete" : "Eyða" },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/it.js b/apps/oauth2/l10n/it.js index 291c3a815fa..f6365b013d0 100644 --- a/apps/oauth2/l10n/it.js +++ b/apps/oauth2/l10n/it.js @@ -8,13 +8,16 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'applicazione OAuth2 consente agli amministratori di configurare la procedura di autenticazione integrata per consentire anche l'autenticazione compatibile con OAuth2 da altre applicazioni web.", "OAuth 2.0 clients" : "Client OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 consente a servizi esterni di richiedere accesso a {instanceName}.", - "Add client" : "Aggiungi client", "Name" : "Nome", "Redirection URI" : "URI di redirezione", - "Add" : "Aggiungi", "Client Identifier" : "Identificatore client", - "Secret" : "Segreto", + "Secret key" : "Chiave segreta", + "Delete client" : "Elimina client", + "Make sure you store the secret key, it cannot be recovered." : "Assicurati di salvare la chiave segreta, non può essere recuperata.", + "Add client" : "Aggiungi client", + "Add" : "Aggiungi", "Show client secret" : "Mostra segreto del client", + "Hide client secret" : "Nascondi segreto del client", "Delete" : "Elimina" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/oauth2/l10n/it.json b/apps/oauth2/l10n/it.json index 69a455109d5..d7db0bbe00d 100644 --- a/apps/oauth2/l10n/it.json +++ b/apps/oauth2/l10n/it.json @@ -6,13 +6,16 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'applicazione OAuth2 consente agli amministratori di configurare la procedura di autenticazione integrata per consentire anche l'autenticazione compatibile con OAuth2 da altre applicazioni web.", "OAuth 2.0 clients" : "Client OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 consente a servizi esterni di richiedere accesso a {instanceName}.", - "Add client" : "Aggiungi client", "Name" : "Nome", "Redirection URI" : "URI di redirezione", - "Add" : "Aggiungi", "Client Identifier" : "Identificatore client", - "Secret" : "Segreto", + "Secret key" : "Chiave segreta", + "Delete client" : "Elimina client", + "Make sure you store the secret key, it cannot be recovered." : "Assicurati di salvare la chiave segreta, non può essere recuperata.", + "Add client" : "Aggiungi client", + "Add" : "Aggiungi", "Show client secret" : "Mostra segreto del client", + "Hide client secret" : "Nascondi segreto del client", "Delete" : "Elimina" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/ja.js b/apps/oauth2/l10n/ja.js index 95e326a8ddb..c1418fb2021 100644 --- a/apps/oauth2/l10n/ja.js +++ b/apps/oauth2/l10n/ja.js @@ -8,13 +8,16 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2アプリは、他のWebサービスからOAuth2互換の認証に接続し、管理者が認証の流れを設定できるようにするものです。", "OAuth 2.0 clients" : "OAuth 2.0クライアント", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0により {instanceName} へのアクセス要求を外部サービスに許可します。", - "Add client" : "クライアントの追加", "Name" : "名前", "Redirection URI" : "リダイレクトURI", - "Add" : "追加", "Client Identifier" : "クライアントID", - "Secret" : "シークレットキー", + "Secret key" : "シークレットキー", + "Delete client" : "クライアントを削除", + "Make sure you store the secret key, it cannot be recovered." : "秘密鍵は復元できないので、必ず保管してください。", + "Add client" : "クライアントの追加", + "Add" : "追加", "Show client secret" : "クライアントシークレットキーを表示", + "Hide client secret" : "クライアントのシークレットキーを隠す", "Delete" : "削除" }, "nplurals=1; plural=0;"); diff --git a/apps/oauth2/l10n/ja.json b/apps/oauth2/l10n/ja.json index e27b5aad745..09357aca90f 100644 --- a/apps/oauth2/l10n/ja.json +++ b/apps/oauth2/l10n/ja.json @@ -6,13 +6,16 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2アプリは、他のWebサービスからOAuth2互換の認証に接続し、管理者が認証の流れを設定できるようにするものです。", "OAuth 2.0 clients" : "OAuth 2.0クライアント", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0により {instanceName} へのアクセス要求を外部サービスに許可します。", - "Add client" : "クライアントの追加", "Name" : "名前", "Redirection URI" : "リダイレクトURI", - "Add" : "追加", "Client Identifier" : "クライアントID", - "Secret" : "シークレットキー", + "Secret key" : "シークレットキー", + "Delete client" : "クライアントを削除", + "Make sure you store the secret key, it cannot be recovered." : "秘密鍵は復元できないので、必ず保管してください。", + "Add client" : "クライアントの追加", + "Add" : "追加", "Show client secret" : "クライアントシークレットキーを表示", + "Hide client secret" : "クライアントのシークレットキーを隠す", "Delete" : "削除" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/ka.js b/apps/oauth2/l10n/ka.js new file mode 100644 index 00000000000..c3a7a9385ba --- /dev/null +++ b/apps/oauth2/l10n/ka.js @@ -0,0 +1,22 @@ +OC.L10N.register( + "oauth2", + { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Your client is not authorized to connect. Please inform the administrator of your client.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Allows OAuth2 compatible authentication from other web applications.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications.", + "OAuth 2.0 clients" : "OAuth 2.0 clients", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 allows external services to request access to {instanceName}.", + "Name" : "Name", + "Redirection URI" : "Redirection URI", + "Client Identifier" : "Client Identifier", + "Secret key" : "Secret key", + "Delete client" : "Delete client", + "Add client" : "Add client", + "Add" : "Add", + "Show client secret" : "Show client secret", + "Hide client secret" : "Hide client secret", + "Delete" : "Delete" +}, +"nplurals=2; plural=(n!=1);"); diff --git a/apps/oauth2/l10n/ka.json b/apps/oauth2/l10n/ka.json new file mode 100644 index 00000000000..9d634320a17 --- /dev/null +++ b/apps/oauth2/l10n/ka.json @@ -0,0 +1,20 @@ +{ "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Your client is not authorized to connect. Please inform the administrator of your client.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Allows OAuth2 compatible authentication from other web applications.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications.", + "OAuth 2.0 clients" : "OAuth 2.0 clients", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 allows external services to request access to {instanceName}.", + "Name" : "Name", + "Redirection URI" : "Redirection URI", + "Client Identifier" : "Client Identifier", + "Secret key" : "Secret key", + "Delete client" : "Delete client", + "Add client" : "Add client", + "Add" : "Add", + "Show client secret" : "Show client secret", + "Hide client secret" : "Hide client secret", + "Delete" : "Delete" +},"pluralForm" :"nplurals=2; plural=(n!=1);" +}
\ No newline at end of file diff --git a/apps/oauth2/l10n/ka_GE.js b/apps/oauth2/l10n/ka_GE.js index 4527d27e1b9..a94015e4803 100644 --- a/apps/oauth2/l10n/ka_GE.js +++ b/apps/oauth2/l10n/ka_GE.js @@ -3,12 +3,13 @@ OC.L10N.register( { "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 კლიენტები", - "Add client" : "კლიენტის დამატება", "Name" : "სახელი", "Redirection URI" : "გადამისამართების URI", - "Add" : "დამატება", "Client Identifier" : "კლიენტის იდენტიფიკატორი", - "Secret" : "საიდუმლო", + "Secret key" : "საიდუმლო გასაღები", + "Add client" : "კლიენტის დამატება", + "Add" : "დამატება", + "Show client secret" : "გამოაჩინე კლიენტის საიდუმლო", "Delete" : "წაშლა" }, "nplurals=2; plural=(n!=1);"); diff --git a/apps/oauth2/l10n/ka_GE.json b/apps/oauth2/l10n/ka_GE.json index 87134c91ad8..186b5570c7f 100644 --- a/apps/oauth2/l10n/ka_GE.json +++ b/apps/oauth2/l10n/ka_GE.json @@ -1,12 +1,13 @@ { "translations": { "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 კლიენტები", - "Add client" : "კლიენტის დამატება", "Name" : "სახელი", "Redirection URI" : "გადამისამართების URI", - "Add" : "დამატება", "Client Identifier" : "კლიენტის იდენტიფიკატორი", - "Secret" : "საიდუმლო", + "Secret key" : "საიდუმლო გასაღები", + "Add client" : "კლიენტის დამატება", + "Add" : "დამატება", + "Show client secret" : "გამოაჩინე კლიენტის საიდუმლო", "Delete" : "წაშლა" },"pluralForm" :"nplurals=2; plural=(n!=1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/ko.js b/apps/oauth2/l10n/ko.js index 68f94352a0b..8a9da68e958 100644 --- a/apps/oauth2/l10n/ko.js +++ b/apps/oauth2/l10n/ko.js @@ -8,12 +8,12 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 앱을 사용하면 관리자가 기본 인증 작업 과정을 통해서 다른 웹 애플리케이션에서 OAuth2 호환 인증을 허용합니다.", "OAuth 2.0 clients" : "OAuth 2.0 클라이언트", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0을 사용하여 외부 서비스에서 {instanceName}에 접근할 수 있습니다.", - "Add client" : "클라이언트 추가", "Name" : "이름", "Redirection URI" : "전환될 URI", - "Add" : "추가", "Client Identifier" : "클라이언트 식별자", - "Secret" : "비밀 값", + "Secret key" : "비밀 키", + "Add client" : "클라이언트 추가", + "Add" : "추가", "Show client secret" : "클라이언트 비밀 값 표시", "Delete" : "삭제" }, diff --git a/apps/oauth2/l10n/ko.json b/apps/oauth2/l10n/ko.json index 012361acb7c..fd689b591f7 100644 --- a/apps/oauth2/l10n/ko.json +++ b/apps/oauth2/l10n/ko.json @@ -6,12 +6,12 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 앱을 사용하면 관리자가 기본 인증 작업 과정을 통해서 다른 웹 애플리케이션에서 OAuth2 호환 인증을 허용합니다.", "OAuth 2.0 clients" : "OAuth 2.0 클라이언트", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0을 사용하여 외부 서비스에서 {instanceName}에 접근할 수 있습니다.", - "Add client" : "클라이언트 추가", "Name" : "이름", "Redirection URI" : "전환될 URI", - "Add" : "추가", "Client Identifier" : "클라이언트 식별자", - "Secret" : "비밀 값", + "Secret key" : "비밀 키", + "Add client" : "클라이언트 추가", + "Add" : "추가", "Show client secret" : "클라이언트 비밀 값 표시", "Delete" : "삭제" },"pluralForm" :"nplurals=1; plural=0;" diff --git a/apps/oauth2/l10n/lt_LT.js b/apps/oauth2/l10n/lt_LT.js index c042b7ede04..d6ba78db8e1 100644 --- a/apps/oauth2/l10n/lt_LT.js +++ b/apps/oauth2/l10n/lt_LT.js @@ -1,15 +1,17 @@ OC.L10N.register( "oauth2", { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Jūsų kliento programa nėra įgaliota prisijungti. Informuokite administratorių apie savo kliento programą.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Jūsų nukreipimo adresas (redirect URL) turi būti pilnas, pavyzdžiui: https://jusuadresas.com/path", "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 klientai", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 leidžia išorinėms tarnyboms užklausti prieigą prie {instanceName}.", - "Add client" : "Pridėti klientą", "Name" : "Pavadinimas", "Redirection URI" : "Peradresavimo URI", - "Add" : "Pridėti", "Client Identifier" : "Kliento identifikatorius", - "Secret" : "Paslaptis", + "Secret key" : "Slaptasis raktas", + "Add client" : "Pridėti klientą", + "Add" : "Pridėti", "Delete" : "Ištrinti" }, "nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"); diff --git a/apps/oauth2/l10n/lt_LT.json b/apps/oauth2/l10n/lt_LT.json index c104c9de6b2..fed347c6a89 100644 --- a/apps/oauth2/l10n/lt_LT.json +++ b/apps/oauth2/l10n/lt_LT.json @@ -1,13 +1,15 @@ { "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Jūsų kliento programa nėra įgaliota prisijungti. Informuokite administratorių apie savo kliento programą.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Jūsų nukreipimo adresas (redirect URL) turi būti pilnas, pavyzdžiui: https://jusuadresas.com/path", "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 klientai", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 leidžia išorinėms tarnyboms užklausti prieigą prie {instanceName}.", - "Add client" : "Pridėti klientą", "Name" : "Pavadinimas", "Redirection URI" : "Peradresavimo URI", - "Add" : "Pridėti", "Client Identifier" : "Kliento identifikatorius", - "Secret" : "Paslaptis", + "Secret key" : "Slaptasis raktas", + "Add client" : "Pridėti klientą", + "Add" : "Pridėti", "Delete" : "Ištrinti" },"pluralForm" :"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/lv.js b/apps/oauth2/l10n/lv.js index 67a71ce5eb8..a6df308f198 100644 --- a/apps/oauth2/l10n/lv.js +++ b/apps/oauth2/l10n/lv.js @@ -4,14 +4,14 @@ OC.L10N.register( "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Tavam pārvirzīšanas URL ir jābūt pilnam URL, piemēram https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "Ļauj OAuth2 saderīgu autentifikāciju citām tīmekļa lietotnēm.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 lietotne ļauj administratoriem konfigurēt iebūvēto autentifikācijas darbplūsmu un ļauj OAuth2 saderīgu autentifikāciju citām web lietotnēm.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 lietotne ļauj pārvaldītājiem konfigurēt iebūvēto autentificēšanās darbplūsmu un ļauj ar OAuth2 saderīgu autentificēšanos no citām tīmekļa lietotnēm.", "OAuth 2.0 clients" : "OAuth 2.0 klients", - "Add client" : "Pievienot klientu", "Name" : "Nosaukums", "Redirection URI" : "Pārvirzāmais URI", - "Add" : "Pievienot", "Client Identifier" : "Klienta identifikators", - "Secret" : "Noslēpums", - "Delete" : "Dzēst" + "Secret key" : "Slepenā atslēga", + "Add client" : "Pievienot klientu", + "Add" : "Pievienot", + "Delete" : "Izdzēst" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/apps/oauth2/l10n/lv.json b/apps/oauth2/l10n/lv.json index 4b9e711dd88..3fddb2506ac 100644 --- a/apps/oauth2/l10n/lv.json +++ b/apps/oauth2/l10n/lv.json @@ -2,14 +2,14 @@ "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Tavam pārvirzīšanas URL ir jābūt pilnam URL, piemēram https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "Ļauj OAuth2 saderīgu autentifikāciju citām tīmekļa lietotnēm.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 lietotne ļauj administratoriem konfigurēt iebūvēto autentifikācijas darbplūsmu un ļauj OAuth2 saderīgu autentifikāciju citām web lietotnēm.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 lietotne ļauj pārvaldītājiem konfigurēt iebūvēto autentificēšanās darbplūsmu un ļauj ar OAuth2 saderīgu autentificēšanos no citām tīmekļa lietotnēm.", "OAuth 2.0 clients" : "OAuth 2.0 klients", - "Add client" : "Pievienot klientu", "Name" : "Nosaukums", "Redirection URI" : "Pārvirzāmais URI", - "Add" : "Pievienot", "Client Identifier" : "Klienta identifikators", - "Secret" : "Noslēpums", - "Delete" : "Dzēst" + "Secret key" : "Slepenā atslēga", + "Add client" : "Pievienot klientu", + "Add" : "Pievienot", + "Delete" : "Izdzēst" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/mk.js b/apps/oauth2/l10n/mk.js index 2dfb7f302dc..3ef703ea529 100644 --- a/apps/oauth2/l10n/mk.js +++ b/apps/oauth2/l10n/mk.js @@ -8,12 +8,12 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 апликацијата им овозможува на администраторите да конфигурираат вграден проток за автентификација, истотака дозволува OAuth2 компатибилна автентификација од други веб апликации.", "OAuth 2.0 clients" : "OAuth 2.0 клиенти", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 овозможува на надворешни сервиси да побараат пристап на {instanceName}.", - "Add client" : "Додади клиент", "Name" : "Име", "Redirection URI" : "Пренасочено URI", - "Add" : "Додади", "Client Identifier" : "Идентификатор на клиент", - "Secret" : "Тајна", + "Secret key" : "Таен клуч", + "Add client" : "Додади клиент", + "Add" : "Додади", "Show client secret" : "Прикажи тајна на клиент", "Delete" : "Избриши" }, diff --git a/apps/oauth2/l10n/mk.json b/apps/oauth2/l10n/mk.json index b043358ef7e..993f4112fb1 100644 --- a/apps/oauth2/l10n/mk.json +++ b/apps/oauth2/l10n/mk.json @@ -6,12 +6,12 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 апликацијата им овозможува на администраторите да конфигурираат вграден проток за автентификација, истотака дозволува OAuth2 компатибилна автентификација од други веб апликации.", "OAuth 2.0 clients" : "OAuth 2.0 клиенти", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 овозможува на надворешни сервиси да побараат пристап на {instanceName}.", - "Add client" : "Додади клиент", "Name" : "Име", "Redirection URI" : "Пренасочено URI", - "Add" : "Додади", "Client Identifier" : "Идентификатор на клиент", - "Secret" : "Тајна", + "Secret key" : "Таен клуч", + "Add client" : "Додади клиент", + "Add" : "Додади", "Show client secret" : "Прикажи тајна на клиент", "Delete" : "Избриши" },"pluralForm" :"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;" diff --git a/apps/oauth2/l10n/nb.js b/apps/oauth2/l10n/nb.js index cc06892be99..9cf61c0eed0 100644 --- a/apps/oauth2/l10n/nb.js +++ b/apps/oauth2/l10n/nb.js @@ -1,15 +1,23 @@ OC.L10N.register( "oauth2", { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Din klient er ikke autorisert til å koble til. Vennligst informer din klients administrator.", "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "URL for videresending må være en fullstendig URL. For eksempel https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Tillater OAuth2-kompatibel autentisering fra andre nettapplikasjoner.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2-appen gir administratorer mulighet til å konfigurere den innebygde arbeidsflyten for autentisering til å også tillate OAuth2-kompatibel autentisering fra andre nett-applikasjoner.", "OAuth 2.0 clients" : "OAuth 2.0-klienter", - "Add client" : "Legg til klient", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 gir eksterne tjenester tillatelse til å be om tilgang til {instanceName}.", "Name" : "Navn", "Redirection URI" : "Videresendings-URI", - "Add" : "Legg til", "Client Identifier" : "Klient-identifikator", - "Secret" : "Hemmelighet", + "Secret key" : "Hemmelig nøkkel", + "Delete client" : "Slett klient", + "Make sure you store the secret key, it cannot be recovered." : "Pass på at du oppbevarer den hemmelige nøkkelen, den kan ikke gjenopprettes.", + "Add client" : "Legg til klient", + "Add" : "Legg til", + "Show client secret" : "Vis klients hemmelighet", + "Hide client secret" : "Skjul klienthemmelighet", "Delete" : "Slett" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/nb.json b/apps/oauth2/l10n/nb.json index c7bdb2f0f36..70154349c8b 100644 --- a/apps/oauth2/l10n/nb.json +++ b/apps/oauth2/l10n/nb.json @@ -1,13 +1,21 @@ { "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Din klient er ikke autorisert til å koble til. Vennligst informer din klients administrator.", "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "URL for videresending må være en fullstendig URL. For eksempel https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Tillater OAuth2-kompatibel autentisering fra andre nettapplikasjoner.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2-appen gir administratorer mulighet til å konfigurere den innebygde arbeidsflyten for autentisering til å også tillate OAuth2-kompatibel autentisering fra andre nett-applikasjoner.", "OAuth 2.0 clients" : "OAuth 2.0-klienter", - "Add client" : "Legg til klient", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 gir eksterne tjenester tillatelse til å be om tilgang til {instanceName}.", "Name" : "Navn", "Redirection URI" : "Videresendings-URI", - "Add" : "Legg til", "Client Identifier" : "Klient-identifikator", - "Secret" : "Hemmelighet", + "Secret key" : "Hemmelig nøkkel", + "Delete client" : "Slett klient", + "Make sure you store the secret key, it cannot be recovered." : "Pass på at du oppbevarer den hemmelige nøkkelen, den kan ikke gjenopprettes.", + "Add client" : "Legg til klient", + "Add" : "Legg til", + "Show client secret" : "Vis klients hemmelighet", + "Hide client secret" : "Skjul klienthemmelighet", "Delete" : "Slett" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/nl.js b/apps/oauth2/l10n/nl.js index acd2e4b303f..f27d2a062d8 100644 --- a/apps/oauth2/l10n/nl.js +++ b/apps/oauth2/l10n/nl.js @@ -8,13 +8,16 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "De OAuth2 app laat beheerders de ingebouwde inlog-workflow configureren om ook OAuth2 compatible authenticatie vanaf andere web applicaties mogelijk te maken.", "OAuth 2.0 clients" : "OAuth 2.0 Clients", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 staat externe services toe om toegang te vragen bij {instanceName}.", - "Add client" : "Voeg client toe", "Name" : "Naam", "Redirection URI" : "Omeiding URI", - "Add" : "Toevoegen", "Client Identifier" : "Client identificatie", - "Secret" : "Geheim", - "Show client secret" : "Tonen client secret", + "Secret key" : "Geheime sleutel", + "Delete client" : "Client verwijderen", + "Make sure you store the secret key, it cannot be recovered." : "Zorg ervoor dat je de geheime sleutel opslaat, deze kan niet worden hersteld.", + "Add client" : "Voeg client toe", + "Add" : "Toevoegen", + "Show client secret" : "Geheime sleutel van cliënt weergeven", + "Hide client secret" : "Geheime sleutel van cliënt verbergen", "Delete" : "verwijderen" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/nl.json b/apps/oauth2/l10n/nl.json index 7ba5c900ddc..c66631b5750 100644 --- a/apps/oauth2/l10n/nl.json +++ b/apps/oauth2/l10n/nl.json @@ -6,13 +6,16 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "De OAuth2 app laat beheerders de ingebouwde inlog-workflow configureren om ook OAuth2 compatible authenticatie vanaf andere web applicaties mogelijk te maken.", "OAuth 2.0 clients" : "OAuth 2.0 Clients", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 staat externe services toe om toegang te vragen bij {instanceName}.", - "Add client" : "Voeg client toe", "Name" : "Naam", "Redirection URI" : "Omeiding URI", - "Add" : "Toevoegen", "Client Identifier" : "Client identificatie", - "Secret" : "Geheim", - "Show client secret" : "Tonen client secret", + "Secret key" : "Geheime sleutel", + "Delete client" : "Client verwijderen", + "Make sure you store the secret key, it cannot be recovered." : "Zorg ervoor dat je de geheime sleutel opslaat, deze kan niet worden hersteld.", + "Add client" : "Voeg client toe", + "Add" : "Toevoegen", + "Show client secret" : "Geheime sleutel van cliënt weergeven", + "Hide client secret" : "Geheime sleutel van cliënt verbergen", "Delete" : "verwijderen" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/oc.js b/apps/oauth2/l10n/oc.js new file mode 100644 index 00000000000..8b114800cd1 --- /dev/null +++ b/apps/oauth2/l10n/oc.js @@ -0,0 +1,17 @@ +OC.L10N.register( + "oauth2", + { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Vòstre client es pas autorizat a se connectar. Mercés d’informar l’administrator de vòstre client.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Vòstra URL de redireccion deu èsser una URL complèta per exemple : https://vostredomeni.com/path", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Permet l’autentificacion compatibla OAuth2 a partir d’autras aplicacions web", + "OAuth 2.0 clients" : "clients OAuth 2.0", + "Name" : "Nom", + "Redirection URI" : "URI de redireccion", + "Client Identifier" : "Identificador client", + "Add client" : "Apondre un client", + "Add" : "Apondre", + "Show client secret" : "Afichar lo secret del client", + "Delete" : "Suprimir" +}, +"nplurals=2; plural=(n > 1);"); diff --git a/apps/oauth2/l10n/oc.json b/apps/oauth2/l10n/oc.json new file mode 100644 index 00000000000..cee27e15d72 --- /dev/null +++ b/apps/oauth2/l10n/oc.json @@ -0,0 +1,15 @@ +{ "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Vòstre client es pas autorizat a se connectar. Mercés d’informar l’administrator de vòstre client.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Vòstra URL de redireccion deu èsser una URL complèta per exemple : https://vostredomeni.com/path", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Permet l’autentificacion compatibla OAuth2 a partir d’autras aplicacions web", + "OAuth 2.0 clients" : "clients OAuth 2.0", + "Name" : "Nom", + "Redirection URI" : "URI de redireccion", + "Client Identifier" : "Identificador client", + "Add client" : "Apondre un client", + "Add" : "Apondre", + "Show client secret" : "Afichar lo secret del client", + "Delete" : "Suprimir" +},"pluralForm" :"nplurals=2; plural=(n > 1);" +}
\ No newline at end of file diff --git a/apps/oauth2/l10n/pl.js b/apps/oauth2/l10n/pl.js index 3478cd5fc43..50a5f361808 100644 --- a/apps/oauth2/l10n/pl.js +++ b/apps/oauth2/l10n/pl.js @@ -8,13 +8,16 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Aplikacja OAuth2 umożliwia administratorom modyfikację wbudowanego uwierzytelnienia, pozwalając na korzystanie z OAuth2 innych aplikacji internetowych.", "OAuth 2.0 clients" : "Klienci OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 pozwala zewnętrznym serwisom na korzystanie z dostępu do {instanceName}.", - "Add client" : "Dodaj klienta", "Name" : "Nazwa", "Redirection URI" : "URI przekierowania", - "Add" : "Dodaj", "Client Identifier" : "Identyfikator Klienta", - "Secret" : "Sekretny klucz", - "Show client secret" : "Pokaż sekretny klucz klienta", + "Secret key" : "Tajny klucz", + "Delete client" : "Usuń klienta", + "Make sure you store the secret key, it cannot be recovered." : "Upewnij się, że przechowujesz klucz tajny, gdyż nie będzie można go odzyskać.", + "Add client" : "Dodaj klienta", + "Add" : "Dodaj", + "Show client secret" : "Pokaż tajny klucz klienta", + "Hide client secret" : "Ukryj tajny klucz klienta", "Delete" : "Usuń" }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/oauth2/l10n/pl.json b/apps/oauth2/l10n/pl.json index a7468d739a6..09ac52e38c7 100644 --- a/apps/oauth2/l10n/pl.json +++ b/apps/oauth2/l10n/pl.json @@ -6,13 +6,16 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Aplikacja OAuth2 umożliwia administratorom modyfikację wbudowanego uwierzytelnienia, pozwalając na korzystanie z OAuth2 innych aplikacji internetowych.", "OAuth 2.0 clients" : "Klienci OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 pozwala zewnętrznym serwisom na korzystanie z dostępu do {instanceName}.", - "Add client" : "Dodaj klienta", "Name" : "Nazwa", "Redirection URI" : "URI przekierowania", - "Add" : "Dodaj", "Client Identifier" : "Identyfikator Klienta", - "Secret" : "Sekretny klucz", - "Show client secret" : "Pokaż sekretny klucz klienta", + "Secret key" : "Tajny klucz", + "Delete client" : "Usuń klienta", + "Make sure you store the secret key, it cannot be recovered." : "Upewnij się, że przechowujesz klucz tajny, gdyż nie będzie można go odzyskać.", + "Add client" : "Dodaj klienta", + "Add" : "Dodaj", + "Show client secret" : "Pokaż tajny klucz klienta", + "Hide client secret" : "Ukryj tajny klucz klienta", "Delete" : "Usuń" },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/pt_BR.js b/apps/oauth2/l10n/pt_BR.js index a0ab3bcec15..4d390ef783e 100644 --- a/apps/oauth2/l10n/pt_BR.js +++ b/apps/oauth2/l10n/pt_BR.js @@ -8,13 +8,16 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "O aplicativo OAuth2 permite que os administradores configurem o fluxo de trabalho de autenticação integrado para permitir também a autenticação compatível com OAuth2 de outros aplicativos da Web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permite que serviços externos solicitem acesso a {instanceName}.", - "Add client" : "Adicionar cliente", "Name" : "Nome", "Redirection URI" : "Redirecionamento URI", - "Add" : "Adicionar", "Client Identifier" : "Identificador do Cliente", - "Secret" : "Secreto", + "Secret key" : "Chave secreta", + "Delete client" : "Excluir cliente", + "Make sure you store the secret key, it cannot be recovered." : "Certifique-se de armazenar a chave secreta, ela não pode ser recuperada.", + "Add client" : "Adicionar cliente", + "Add" : "Adicionar", "Show client secret" : "Mostra senha do cliente", + "Hide client secret" : "Ocultar segredo do cliente", "Delete" : "Excluir" }, -"nplurals=2; plural=(n > 1);"); +"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/oauth2/l10n/pt_BR.json b/apps/oauth2/l10n/pt_BR.json index a7f11ef34fc..4407ca4c591 100644 --- a/apps/oauth2/l10n/pt_BR.json +++ b/apps/oauth2/l10n/pt_BR.json @@ -6,13 +6,16 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "O aplicativo OAuth2 permite que os administradores configurem o fluxo de trabalho de autenticação integrado para permitir também a autenticação compatível com OAuth2 de outros aplicativos da Web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permite que serviços externos solicitem acesso a {instanceName}.", - "Add client" : "Adicionar cliente", "Name" : "Nome", "Redirection URI" : "Redirecionamento URI", - "Add" : "Adicionar", "Client Identifier" : "Identificador do Cliente", - "Secret" : "Secreto", + "Secret key" : "Chave secreta", + "Delete client" : "Excluir cliente", + "Make sure you store the secret key, it cannot be recovered." : "Certifique-se de armazenar a chave secreta, ela não pode ser recuperada.", + "Add client" : "Adicionar cliente", + "Add" : "Adicionar", "Show client secret" : "Mostra senha do cliente", + "Hide client secret" : "Ocultar segredo do cliente", "Delete" : "Excluir" -},"pluralForm" :"nplurals=2; plural=(n > 1);" +},"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/pt_PT.js b/apps/oauth2/l10n/pt_PT.js index f096bc7a483..09f9f952d30 100644 --- a/apps/oauth2/l10n/pt_PT.js +++ b/apps/oauth2/l10n/pt_PT.js @@ -8,13 +8,13 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "A app OAuth2 permite que os administradores configurem o fluxo de autenticação para também permitir autenticação compatível com OAuth2 de outras aplicações web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth2.0 permite que dispositivos externos peçam acesso a {instanceName}.", - "Add client" : "Adicionar cliente", "Name" : "Nome", - "Redirection URI" : "URI de redireccionamento", - "Add" : "Adicionar", + "Redirection URI" : "URI de redirecionamento", "Client Identifier" : "Identificador de Cliente", - "Secret" : "Segredo", + "Secret key" : "Código secreto", + "Add client" : "Adicionar cliente", + "Add" : "Adicionar", "Show client secret" : "Mostrar segredo do cliente", "Delete" : "Apagar" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/oauth2/l10n/pt_PT.json b/apps/oauth2/l10n/pt_PT.json index f61fbddc66a..37b9ea94e98 100644 --- a/apps/oauth2/l10n/pt_PT.json +++ b/apps/oauth2/l10n/pt_PT.json @@ -6,13 +6,13 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "A app OAuth2 permite que os administradores configurem o fluxo de autenticação para também permitir autenticação compatível com OAuth2 de outras aplicações web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth2.0 permite que dispositivos externos peçam acesso a {instanceName}.", - "Add client" : "Adicionar cliente", "Name" : "Nome", - "Redirection URI" : "URI de redireccionamento", - "Add" : "Adicionar", + "Redirection URI" : "URI de redirecionamento", "Client Identifier" : "Identificador de Cliente", - "Secret" : "Segredo", + "Secret key" : "Código secreto", + "Add client" : "Adicionar cliente", + "Add" : "Adicionar", "Show client secret" : "Mostrar segredo do cliente", "Delete" : "Apagar" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/ru.js b/apps/oauth2/l10n/ru.js index ed653d32bbd..0566016ee23 100644 --- a/apps/oauth2/l10n/ru.js +++ b/apps/oauth2/l10n/ru.js @@ -8,13 +8,16 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Приложение OAuth2 позволяет администраторам настроить встроенный процесс проверки подлинности, чтобы также обеспечить совместимость OAuth2 с другими веб-приложениями.", "OAuth 2.0 clients" : "Клиенты OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 позволяет внешним службам запрашивать доступ к {instanceName}.", - "Add client" : "Добавить клиента", "Name" : "Имя", "Redirection URI" : "URI перенаправления", - "Add" : "Добавить", "Client Identifier" : "Идентификатор клиента", - "Secret" : "Секрет", + "Secret key" : "Секретный ключ", + "Delete client" : "Удалить клиент", + "Make sure you store the secret key, it cannot be recovered." : "Убедитесь, что вы сохранили секретный ключ, он не может быть восстановлен.", + "Add client" : "Добавить клиент", + "Add" : "Добавить", "Show client secret" : "Показать секретный ключ клиента", + "Hide client secret" : "Скрыть секрет клиента", "Delete" : "Удалить" }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/apps/oauth2/l10n/ru.json b/apps/oauth2/l10n/ru.json index d0f7b24ab93..0e34793a1a1 100644 --- a/apps/oauth2/l10n/ru.json +++ b/apps/oauth2/l10n/ru.json @@ -6,13 +6,16 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Приложение OAuth2 позволяет администраторам настроить встроенный процесс проверки подлинности, чтобы также обеспечить совместимость OAuth2 с другими веб-приложениями.", "OAuth 2.0 clients" : "Клиенты OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 позволяет внешним службам запрашивать доступ к {instanceName}.", - "Add client" : "Добавить клиента", "Name" : "Имя", "Redirection URI" : "URI перенаправления", - "Add" : "Добавить", "Client Identifier" : "Идентификатор клиента", - "Secret" : "Секрет", + "Secret key" : "Секретный ключ", + "Delete client" : "Удалить клиент", + "Make sure you store the secret key, it cannot be recovered." : "Убедитесь, что вы сохранили секретный ключ, он не может быть восстановлен.", + "Add client" : "Добавить клиент", + "Add" : "Добавить", "Show client secret" : "Показать секретный ключ клиента", + "Hide client secret" : "Скрыть секрет клиента", "Delete" : "Удалить" },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/sc.js b/apps/oauth2/l10n/sc.js new file mode 100644 index 00000000000..833214ed6d7 --- /dev/null +++ b/apps/oauth2/l10n/sc.js @@ -0,0 +1,20 @@ +OC.L10N.register( + "oauth2", + { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Su cliente tuo no est autorizadu a si connètere. Pro praghere, informa s'amministradore de su cliente tuo.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : " S'URL tuo pro torrare a deretare tocat chi siat unu URL cumpretu, pro nàrrere: https://sudomìniutuo.com/caminu", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Cunsenti s'autenticatzione cumpatìbile cun OAuth2 dae àteras aplicatziones in sa rete.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "S'aplicatzione OAuth2 cunsentit a is amministradores de cunfigurare sa protzedura de autenticatzione integrada pro cunsentire fintzas s'autenticatzione cumpatìbile cun OAuth2 dae àteras aplicatziones in sa rete.", + "OAuth 2.0 clients" : "Clientes de OAuth 2.0 ", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 cunsentit a is zservìtzios de foras de pedire s'atzessu a {instanceName}.", + "Name" : "Nùmene", + "Redirection URI" : "URI de torrada a deretare", + "Client Identifier" : "Identificadore cliente", + "Secret key" : "Crae segreta", + "Add client" : "Agiunghe cliente", + "Add" : "Agiunghe", + "Show client secret" : "Mustra su segretu de su cliente", + "Delete" : "Cantzella" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/sc.json b/apps/oauth2/l10n/sc.json new file mode 100644 index 00000000000..61e866c2a39 --- /dev/null +++ b/apps/oauth2/l10n/sc.json @@ -0,0 +1,18 @@ +{ "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Su cliente tuo no est autorizadu a si connètere. Pro praghere, informa s'amministradore de su cliente tuo.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : " S'URL tuo pro torrare a deretare tocat chi siat unu URL cumpretu, pro nàrrere: https://sudomìniutuo.com/caminu", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Cunsenti s'autenticatzione cumpatìbile cun OAuth2 dae àteras aplicatziones in sa rete.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "S'aplicatzione OAuth2 cunsentit a is amministradores de cunfigurare sa protzedura de autenticatzione integrada pro cunsentire fintzas s'autenticatzione cumpatìbile cun OAuth2 dae àteras aplicatziones in sa rete.", + "OAuth 2.0 clients" : "Clientes de OAuth 2.0 ", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 cunsentit a is zservìtzios de foras de pedire s'atzessu a {instanceName}.", + "Name" : "Nùmene", + "Redirection URI" : "URI de torrada a deretare", + "Client Identifier" : "Identificadore cliente", + "Secret key" : "Crae segreta", + "Add client" : "Agiunghe cliente", + "Add" : "Agiunghe", + "Show client secret" : "Mustra su segretu de su cliente", + "Delete" : "Cantzella" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +}
\ No newline at end of file diff --git a/apps/oauth2/l10n/si.js b/apps/oauth2/l10n/si.js index 72272829cef..6dc3386f6ae 100644 --- a/apps/oauth2/l10n/si.js +++ b/apps/oauth2/l10n/si.js @@ -7,11 +7,11 @@ OC.L10N.register( "Allows OAuth2 compatible authentication from other web applications." : "වෙනත් වියමන යෙදුම් වලින් OAuth2 අනුකූල සත්යාපනය සඳහා ඉඩ ලබා දේ.", "OAuth 2.0 clients" : "OAuth 2.0 අනුග්රාහකයින්", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 බාහිර සේවාවන්ට {instanceName} වෙත ප්රවේශය ඉල්ලීමට ඉඩ දෙයි.", - "Add client" : "අනුග්රාහකයක් එකතු කරන්න", "Name" : "නම", - "Add" : "එකතු කරන්න", "Client Identifier" : "අනුග්රාහක හඳුන්වනය", - "Secret" : "රහස", + "Secret key" : "රහස්ය යතුර", + "Add client" : "අනුග්රාහකයක් එකතු කරන්න", + "Add" : "එකතු කරන්න", "Show client secret" : "අනුග්රාහකයේ රහස්යතාව පෙන්වන්න" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/si.json b/apps/oauth2/l10n/si.json index 82ba8d9ae98..335d13c7a0c 100644 --- a/apps/oauth2/l10n/si.json +++ b/apps/oauth2/l10n/si.json @@ -5,11 +5,11 @@ "Allows OAuth2 compatible authentication from other web applications." : "වෙනත් වියමන යෙදුම් වලින් OAuth2 අනුකූල සත්යාපනය සඳහා ඉඩ ලබා දේ.", "OAuth 2.0 clients" : "OAuth 2.0 අනුග්රාහකයින්", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 බාහිර සේවාවන්ට {instanceName} වෙත ප්රවේශය ඉල්ලීමට ඉඩ දෙයි.", - "Add client" : "අනුග්රාහකයක් එකතු කරන්න", "Name" : "නම", - "Add" : "එකතු කරන්න", "Client Identifier" : "අනුග්රාහක හඳුන්වනය", - "Secret" : "රහස", + "Secret key" : "රහස්ය යතුර", + "Add client" : "අනුග්රාහකයක් එකතු කරන්න", + "Add" : "එකතු කරන්න", "Show client secret" : "අනුග්රාහකයේ රහස්යතාව පෙන්වන්න" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/sk.js b/apps/oauth2/l10n/sk.js index fec9a26f73a..5bd63fde0ff 100644 --- a/apps/oauth2/l10n/sk.js +++ b/apps/oauth2/l10n/sk.js @@ -6,15 +6,18 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "Povoliť overenie kompatibilné s OAuth2 iných webových aplikácií.", "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Aplikácia OAuth2 umožňuje správcom nakonfigurovať vstavaný postup overovania tak, aby povolil autentifikáciu kompatibilnú s protokolom OAuth2 aj z iných webových aplikácií.", - "OAuth 2.0 clients" : "klienti OAuth 2.0", + "OAuth 2.0 clients" : "Klienti OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 umožňuje externým službám požiadať o prístup k {instanceName}.", - "Add client" : "Pridať klienta", "Name" : "Názov", "Redirection URI" : "URI presmerovania", - "Add" : "Pridať", "Client Identifier" : "Identifikátor klienta", - "Secret" : "Tajný kľúč", + "Secret key" : "Tajný kľúč", + "Delete client" : "Odstrániť klienta", + "Make sure you store the secret key, it cannot be recovered." : "Uistite sa, že ste uložili tajný kľúč. Nedá sa obnoviť.", + "Add client" : "Pridať klienta", + "Add" : "Pridať", "Show client secret" : "Zobraziť tajomstvo klienta", + "Hide client secret" : "Skryť klienta", "Delete" : "Zmazať" }, "nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"); diff --git a/apps/oauth2/l10n/sk.json b/apps/oauth2/l10n/sk.json index 641a2cdbbdf..f7f9ac19229 100644 --- a/apps/oauth2/l10n/sk.json +++ b/apps/oauth2/l10n/sk.json @@ -4,15 +4,18 @@ "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "Povoliť overenie kompatibilné s OAuth2 iných webových aplikácií.", "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Aplikácia OAuth2 umožňuje správcom nakonfigurovať vstavaný postup overovania tak, aby povolil autentifikáciu kompatibilnú s protokolom OAuth2 aj z iných webových aplikácií.", - "OAuth 2.0 clients" : "klienti OAuth 2.0", + "OAuth 2.0 clients" : "Klienti OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 umožňuje externým službám požiadať o prístup k {instanceName}.", - "Add client" : "Pridať klienta", "Name" : "Názov", "Redirection URI" : "URI presmerovania", - "Add" : "Pridať", "Client Identifier" : "Identifikátor klienta", - "Secret" : "Tajný kľúč", + "Secret key" : "Tajný kľúč", + "Delete client" : "Odstrániť klienta", + "Make sure you store the secret key, it cannot be recovered." : "Uistite sa, že ste uložili tajný kľúč. Nedá sa obnoviť.", + "Add client" : "Pridať klienta", + "Add" : "Pridať", "Show client secret" : "Zobraziť tajomstvo klienta", + "Hide client secret" : "Skryť klienta", "Delete" : "Zmazať" },"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/sl.js b/apps/oauth2/l10n/sl.js index 76656e59d8e..5786c7d8b36 100644 --- a/apps/oauth2/l10n/sl.js +++ b/apps/oauth2/l10n/sl.js @@ -8,12 +8,12 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Program OAuth2 omogoča skrbnikom nastavitev vgrajenega sistema overitve za skladnost z drugimi spletnimi programi.", "OAuth 2.0 clients" : "Odjemalci OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "Program OAuth 2.0 omogoča zunanjim storitvam odobritev dostopa do {instanceName}.", - "Add client" : "Dodaj odjemalca", "Name" : "Ime", "Redirection URI" : "Preusmeritveni naslov URI", - "Add" : "Dodaj", "Client Identifier" : "ID odjemalca", - "Secret" : "Skrivna koda", + "Secret key" : "Skrivni ključ", + "Add client" : "Dodaj odjemalca", + "Add" : "Dodaj", "Show client secret" : "Pokaži skrivno kodo odjemalca", "Delete" : "Izbriši" }, diff --git a/apps/oauth2/l10n/sl.json b/apps/oauth2/l10n/sl.json index aa40e2e1564..a419d4c3263 100644 --- a/apps/oauth2/l10n/sl.json +++ b/apps/oauth2/l10n/sl.json @@ -6,12 +6,12 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Program OAuth2 omogoča skrbnikom nastavitev vgrajenega sistema overitve za skladnost z drugimi spletnimi programi.", "OAuth 2.0 clients" : "Odjemalci OAuth 2.0", "OAuth 2.0 allows external services to request access to {instanceName}." : "Program OAuth 2.0 omogoča zunanjim storitvam odobritev dostopa do {instanceName}.", - "Add client" : "Dodaj odjemalca", "Name" : "Ime", "Redirection URI" : "Preusmeritveni naslov URI", - "Add" : "Dodaj", "Client Identifier" : "ID odjemalca", - "Secret" : "Skrivna koda", + "Secret key" : "Skrivni ključ", + "Add client" : "Dodaj odjemalca", + "Add" : "Dodaj", "Show client secret" : "Pokaži skrivno kodo odjemalca", "Delete" : "Izbriši" },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" diff --git a/apps/oauth2/l10n/sq.js b/apps/oauth2/l10n/sq.js index 81df5d3dc84..fe81fb5069d 100644 --- a/apps/oauth2/l10n/sq.js +++ b/apps/oauth2/l10n/sq.js @@ -3,12 +3,12 @@ OC.L10N.register( { "OAuth 2.0" : "O.Auth 2.0", "OAuth 2.0 clients" : "Klientë OAuth 2.0", - "Add client" : "Shto klient", "Name" : "Emri", "Redirection URI" : "URI Ridrejtimi", - "Add" : "Shto ", "Client Identifier" : "Identifikues Klienti", - "Secret" : "Sekret", + "Secret key" : "Kyç i fshehtë", + "Add client" : "Shto klient", + "Add" : "Shto ", "Delete" : "Delete" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/sq.json b/apps/oauth2/l10n/sq.json index 8701c5a0552..c6623df185a 100644 --- a/apps/oauth2/l10n/sq.json +++ b/apps/oauth2/l10n/sq.json @@ -1,12 +1,12 @@ { "translations": { "OAuth 2.0" : "O.Auth 2.0", "OAuth 2.0 clients" : "Klientë OAuth 2.0", - "Add client" : "Shto klient", "Name" : "Emri", "Redirection URI" : "URI Ridrejtimi", - "Add" : "Shto ", "Client Identifier" : "Identifikues Klienti", - "Secret" : "Sekret", + "Secret key" : "Kyç i fshehtë", + "Add client" : "Shto klient", + "Add" : "Shto ", "Delete" : "Delete" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/sr.js b/apps/oauth2/l10n/sr.js index 0cfe2ca684a..9ec881c1a2a 100644 --- a/apps/oauth2/l10n/sr.js +++ b/apps/oauth2/l10n/sr.js @@ -8,13 +8,16 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 апликација дозвољава администраторима да подесе уграђени след индетификације тако да дозвољава и OAuth2 компатибилну идентификацију са других веб апликација.", "OAuth 2.0 clients" : "OAuth 2.0 клијенти", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 омогућава спољним сервисима да захтевају приступ инстанци {instanceName}.", - "Add client" : "Додај клијента", "Name" : "Име", "Redirection URI" : "Адреса за преусмеравање", - "Add" : "Додај", "Client Identifier" : "Идентификација клијента", - "Secret" : "Тајна", + "Secret key" : "Тајни кључ ", + "Delete client" : "Обриши клијента", + "Make sure you store the secret key, it cannot be recovered." : "Сачувајте тајни кључ, нећете моћи поново да му приступите.", + "Add client" : "Додај клијента", + "Add" : "Додај", "Show client secret" : "Прикажи клијентску лозинку", + "Hide client secret" : "Сакриј клијентску тајну", "Delete" : "Обриши" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/oauth2/l10n/sr.json b/apps/oauth2/l10n/sr.json index ae7a17a037d..815e73ada5a 100644 --- a/apps/oauth2/l10n/sr.json +++ b/apps/oauth2/l10n/sr.json @@ -6,13 +6,16 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 апликација дозвољава администраторима да подесе уграђени след индетификације тако да дозвољава и OAuth2 компатибилну идентификацију са других веб апликација.", "OAuth 2.0 clients" : "OAuth 2.0 клијенти", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 омогућава спољним сервисима да захтевају приступ инстанци {instanceName}.", - "Add client" : "Додај клијента", "Name" : "Име", "Redirection URI" : "Адреса за преусмеравање", - "Add" : "Додај", "Client Identifier" : "Идентификација клијента", - "Secret" : "Тајна", + "Secret key" : "Тајни кључ ", + "Delete client" : "Обриши клијента", + "Make sure you store the secret key, it cannot be recovered." : "Сачувајте тајни кључ, нећете моћи поново да му приступите.", + "Add client" : "Додај клијента", + "Add" : "Додај", "Show client secret" : "Прикажи клијентску лозинку", + "Hide client secret" : "Сакриј клијентску тајну", "Delete" : "Обриши" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/sv.js b/apps/oauth2/l10n/sv.js index 343e7516b6b..4d55cf91c3a 100644 --- a/apps/oauth2/l10n/sv.js +++ b/apps/oauth2/l10n/sv.js @@ -8,13 +8,16 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "I appen OAuth2 kan administratörer konfigurera det inbyggda autentiseringsflödet för att även tillåta OAuth2-kompatibel autentisering från andra webbapplikationer.", "OAuth 2.0 clients" : "OAuth 2.0 klienter", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 tillåter externa tjänster att begära åtkomst till {instanceName}.", - "Add client" : "Lägg till klient", "Name" : "Namn", "Redirection URI" : "Omdirigerings-URI", - "Add" : "Lägg till", "Client Identifier" : "Klientidentifierare", - "Secret" : "Hemlighet", + "Secret key" : "Hemlig nyckel", + "Delete client" : "Ta bort klient", + "Make sure you store the secret key, it cannot be recovered." : "Se till att du lagrar den hemliga nyckeln, den kan inte återställas.", + "Add client" : "Lägg till klient", + "Add" : "Lägg till", "Show client secret" : "Visa klienthemlighet", + "Hide client secret" : "Dölj klienthemlighet", "Delete" : "Ta bort" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/sv.json b/apps/oauth2/l10n/sv.json index 1e02310573e..064e6923f96 100644 --- a/apps/oauth2/l10n/sv.json +++ b/apps/oauth2/l10n/sv.json @@ -6,13 +6,16 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "I appen OAuth2 kan administratörer konfigurera det inbyggda autentiseringsflödet för att även tillåta OAuth2-kompatibel autentisering från andra webbapplikationer.", "OAuth 2.0 clients" : "OAuth 2.0 klienter", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 tillåter externa tjänster att begära åtkomst till {instanceName}.", - "Add client" : "Lägg till klient", "Name" : "Namn", "Redirection URI" : "Omdirigerings-URI", - "Add" : "Lägg till", "Client Identifier" : "Klientidentifierare", - "Secret" : "Hemlighet", + "Secret key" : "Hemlig nyckel", + "Delete client" : "Ta bort klient", + "Make sure you store the secret key, it cannot be recovered." : "Se till att du lagrar den hemliga nyckeln, den kan inte återställas.", + "Add client" : "Lägg till klient", + "Add" : "Lägg till", "Show client secret" : "Visa klienthemlighet", + "Hide client secret" : "Dölj klienthemlighet", "Delete" : "Ta bort" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/sw.js b/apps/oauth2/l10n/sw.js new file mode 100644 index 00000000000..44e346ffa4f --- /dev/null +++ b/apps/oauth2/l10n/sw.js @@ -0,0 +1,23 @@ +OC.L10N.register( + "oauth2", + { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Mteja wako hajaidhinishwa kuunganisha. Tafadhali mjulishe msimamizi wa mteja wako.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "URL yako ya kuelekeza kwingine inahitaji kuwa URL kamili kwa mfano: https://yourdomain.com/path", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Huruhusu uthibitishaji tangamanifu wa OAuth2 kutoka kwa programu zingine za wavuti.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Programu ya OAuth2 huruhusu wasimamizi kusanidi utendakazi wa uthibitishaji uliojengewa ndani ili kuruhusu pia uthibitishaji unaooana na OAuth2 kutoka kwa programu zingine za wavuti.", + "OAuth 2.0 clients" : "OAuth 2.0 clients", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 inaruhusu huduma za nje kuomba ufikiaji {instanceName}.", + "Name" : "Jina", + "Redirection URI" : "URI ya kuelekeza kwingine", + "Client Identifier" : "Kitambulisho cha Mteja", + "Secret key" : "Ufunguo wa siri", + "Delete client" : "Futa mteja", + "Make sure you store the secret key, it cannot be recovered." : "Hakikisha umehifadhi ufunguo wa siri, hauwezi kurejeshwa.", + "Add client" : "Ongeza mteja", + "Add" : "Ongeza", + "Show client secret" : "Onyesha siri ya mteja", + "Hide client secret" : "Ficha siri ya mteja", + "Delete" : "Futa" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/sw.json b/apps/oauth2/l10n/sw.json new file mode 100644 index 00000000000..0bdbdd3a440 --- /dev/null +++ b/apps/oauth2/l10n/sw.json @@ -0,0 +1,21 @@ +{ "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Mteja wako hajaidhinishwa kuunganisha. Tafadhali mjulishe msimamizi wa mteja wako.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "URL yako ya kuelekeza kwingine inahitaji kuwa URL kamili kwa mfano: https://yourdomain.com/path", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Huruhusu uthibitishaji tangamanifu wa OAuth2 kutoka kwa programu zingine za wavuti.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Programu ya OAuth2 huruhusu wasimamizi kusanidi utendakazi wa uthibitishaji uliojengewa ndani ili kuruhusu pia uthibitishaji unaooana na OAuth2 kutoka kwa programu zingine za wavuti.", + "OAuth 2.0 clients" : "OAuth 2.0 clients", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 inaruhusu huduma za nje kuomba ufikiaji {instanceName}.", + "Name" : "Jina", + "Redirection URI" : "URI ya kuelekeza kwingine", + "Client Identifier" : "Kitambulisho cha Mteja", + "Secret key" : "Ufunguo wa siri", + "Delete client" : "Futa mteja", + "Make sure you store the secret key, it cannot be recovered." : "Hakikisha umehifadhi ufunguo wa siri, hauwezi kurejeshwa.", + "Add client" : "Ongeza mteja", + "Add" : "Ongeza", + "Show client secret" : "Onyesha siri ya mteja", + "Hide client secret" : "Ficha siri ya mteja", + "Delete" : "Futa" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +}
\ No newline at end of file diff --git a/apps/oauth2/l10n/tr.js b/apps/oauth2/l10n/tr.js index 3cd9ced7616..eb672477de8 100644 --- a/apps/oauth2/l10n/tr.js +++ b/apps/oauth2/l10n/tr.js @@ -2,19 +2,22 @@ OC.L10N.register( "oauth2", { "Your client is not authorized to connect. Please inform the administrator of your client." : "İstemcinizin bağlanma izni yok. Lütfen BT yöneticinize istemciniz ile ilgili bilgi verin.", - "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Yönlendirme adresi https://websitem.com/yol gibi tam bir adres olmalıdır", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Yönlendirme adresi https://sitem.com/yol gibi tam bir adres olmalıdır", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Diğer web uygulamaları için OAuth2 uyumlu kimlik doğrulaması sağlar.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 uygulaması, BT yöneticilerinin iç kimlik doğrulama iş akışını yapılandırabilmesini ve diğer web uygulamaları için OAuth2 uyumlu kimlik doğrulaması kullanılabilmesini sağlar.", + "Allows OAuth2 compatible authentication from other web applications." : "Diğer site uygulamaları için OAuth2 uyumlu kimlik doğrulaması sağlar.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 uygulaması, BT yöneticilerinin iç kimlik doğrulama iş akışını yapılandırabilmesini ve diğer site uygulamaları için OAuth2 uyumlu kimlik doğrulaması kullanılabilmesini sağlar.", "OAuth 2.0 clients" : "OAuth 2.0 istemcileri", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 dış hizmetlerin {instanceName} için erişim isteğinde bulunmasını sağlar.", - "Add client" : "İstemci Ekle", "Name" : "Ad", - "Redirection URI" : "Yönlendirme Adresi", + "Redirection URI" : "Yönlendirme adresi", + "Client Identifier" : "İstemci belirteci", + "Secret key" : "Gizli anahtar", + "Delete client" : "İstemciyi sil", + "Make sure you store the secret key, it cannot be recovered." : "Yeniden öğrenilemeyeceği için gizli anahtarı kaydettiğinizden emin olun.", + "Add client" : "İstemci ekle", "Add" : "Ekle", - "Client Identifier" : "İstemci Belirteci", - "Secret" : "Parola", "Show client secret" : "İstemci parolasını görüntüle", + "Hide client secret" : "İstemci parolasını gizle", "Delete" : "Sil" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/oauth2/l10n/tr.json b/apps/oauth2/l10n/tr.json index 6a48310f11a..ec9e8fc1e83 100644 --- a/apps/oauth2/l10n/tr.json +++ b/apps/oauth2/l10n/tr.json @@ -1,18 +1,21 @@ { "translations": { "Your client is not authorized to connect. Please inform the administrator of your client." : "İstemcinizin bağlanma izni yok. Lütfen BT yöneticinize istemciniz ile ilgili bilgi verin.", - "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Yönlendirme adresi https://websitem.com/yol gibi tam bir adres olmalıdır", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Yönlendirme adresi https://sitem.com/yol gibi tam bir adres olmalıdır", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Diğer web uygulamaları için OAuth2 uyumlu kimlik doğrulaması sağlar.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 uygulaması, BT yöneticilerinin iç kimlik doğrulama iş akışını yapılandırabilmesini ve diğer web uygulamaları için OAuth2 uyumlu kimlik doğrulaması kullanılabilmesini sağlar.", + "Allows OAuth2 compatible authentication from other web applications." : "Diğer site uygulamaları için OAuth2 uyumlu kimlik doğrulaması sağlar.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 uygulaması, BT yöneticilerinin iç kimlik doğrulama iş akışını yapılandırabilmesini ve diğer site uygulamaları için OAuth2 uyumlu kimlik doğrulaması kullanılabilmesini sağlar.", "OAuth 2.0 clients" : "OAuth 2.0 istemcileri", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 dış hizmetlerin {instanceName} için erişim isteğinde bulunmasını sağlar.", - "Add client" : "İstemci Ekle", "Name" : "Ad", - "Redirection URI" : "Yönlendirme Adresi", + "Redirection URI" : "Yönlendirme adresi", + "Client Identifier" : "İstemci belirteci", + "Secret key" : "Gizli anahtar", + "Delete client" : "İstemciyi sil", + "Make sure you store the secret key, it cannot be recovered." : "Yeniden öğrenilemeyeceği için gizli anahtarı kaydettiğinizden emin olun.", + "Add client" : "İstemci ekle", "Add" : "Ekle", - "Client Identifier" : "İstemci Belirteci", - "Secret" : "Parola", "Show client secret" : "İstemci parolasını görüntüle", + "Hide client secret" : "İstemci parolasını gizle", "Delete" : "Sil" },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/ug.js b/apps/oauth2/l10n/ug.js new file mode 100644 index 00000000000..89db1a948ef --- /dev/null +++ b/apps/oauth2/l10n/ug.js @@ -0,0 +1,23 @@ +OC.L10N.register( + "oauth2", + { + "Your client is not authorized to connect. Please inform the administrator of your client." : "خېرىدارىڭىزنىڭ ئۇلىنىش ھوقۇقى يوق. خېرىدارىڭىزنىڭ باشقۇرغۇچىغا خەۋەر قىلىڭ.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "قايتا نىشانلانغان URL ئادرېسىڭىز تولۇق URL بولۇشى كېرەك: https://yourdomain.com/path", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "باشقا تور پروگراممىلىرىدىن OAuth2 ماسلاشتۇرۇلغان دەلىللەشكە يول قويىدۇ.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 دېتالى باشقۇرغۇچىنىڭ ئىچىگە دەلىللەش خىزمەت ئېقىمىنى سەپلەپ ، باشقا تور قوللىنىشچان پروگراممىلىرىنىڭ OAuth2 ماسلاشتۇرۇلغان دەلىللىشىگە يول قويىدۇ.", + "OAuth 2.0 clients" : "OAuth 2.0 خېرىدارى", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 سىرتقى مۇلازىمەتلەرنىڭ {instanceName} access نى زىيارەت قىلىشىنى تەلەپ قىلىدۇ.", + "Name" : "ئاتى", + "Redirection URI" : "قايتا نىشانلاش URI", + "Client Identifier" : "Client Identifier", + "Secret key" : "مەخپىي ئاچقۇچ", + "Delete client" : "خېرىدارنى ئۆچۈرۈڭ", + "Make sure you store the secret key, it cannot be recovered." : "مەخپىي ئاچقۇچنى ساقلىغانلىقىڭىزنى جەزملەشتۈرۈڭ ، ئەسلىگە كەلتۈرگىلى بولمايدۇ.", + "Add client" : "خېرىدار قوشۇڭ", + "Add" : "قوش", + "Show client secret" : "خېرىدارلارنىڭ مەخپىيىتىنى كۆرسىتىڭ", + "Hide client secret" : "خېرىدارلارنىڭ مەخپىيىتىنى يوشۇرۇش", + "Delete" : "ئۆچۈر" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/ug.json b/apps/oauth2/l10n/ug.json new file mode 100644 index 00000000000..4dac11f85c2 --- /dev/null +++ b/apps/oauth2/l10n/ug.json @@ -0,0 +1,21 @@ +{ "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "خېرىدارىڭىزنىڭ ئۇلىنىش ھوقۇقى يوق. خېرىدارىڭىزنىڭ باشقۇرغۇچىغا خەۋەر قىلىڭ.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "قايتا نىشانلانغان URL ئادرېسىڭىز تولۇق URL بولۇشى كېرەك: https://yourdomain.com/path", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "باشقا تور پروگراممىلىرىدىن OAuth2 ماسلاشتۇرۇلغان دەلىللەشكە يول قويىدۇ.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 دېتالى باشقۇرغۇچىنىڭ ئىچىگە دەلىللەش خىزمەت ئېقىمىنى سەپلەپ ، باشقا تور قوللىنىشچان پروگراممىلىرىنىڭ OAuth2 ماسلاشتۇرۇلغان دەلىللىشىگە يول قويىدۇ.", + "OAuth 2.0 clients" : "OAuth 2.0 خېرىدارى", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 سىرتقى مۇلازىمەتلەرنىڭ {instanceName} access نى زىيارەت قىلىشىنى تەلەپ قىلىدۇ.", + "Name" : "ئاتى", + "Redirection URI" : "قايتا نىشانلاش URI", + "Client Identifier" : "Client Identifier", + "Secret key" : "مەخپىي ئاچقۇچ", + "Delete client" : "خېرىدارنى ئۆچۈرۈڭ", + "Make sure you store the secret key, it cannot be recovered." : "مەخپىي ئاچقۇچنى ساقلىغانلىقىڭىزنى جەزملەشتۈرۈڭ ، ئەسلىگە كەلتۈرگىلى بولمايدۇ.", + "Add client" : "خېرىدار قوشۇڭ", + "Add" : "قوش", + "Show client secret" : "خېرىدارلارنىڭ مەخپىيىتىنى كۆرسىتىڭ", + "Hide client secret" : "خېرىدارلارنىڭ مەخپىيىتىنى يوشۇرۇش", + "Delete" : "ئۆچۈر" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +}
\ No newline at end of file diff --git a/apps/oauth2/l10n/uk.js b/apps/oauth2/l10n/uk.js new file mode 100644 index 00000000000..8c3b6433b20 --- /dev/null +++ b/apps/oauth2/l10n/uk.js @@ -0,0 +1,23 @@ +OC.L10N.register( + "oauth2", + { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Ваш клієнт не авторизований для підключення. Будь ласка, повідомте адміністратора вашого клієнта.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Ваша URL-адреса переспрямування має бути повною URL-адресою, наприклад: https://yourdomain.com/path", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Дозволяє авторизацію OAuth2, яка підтримується іншими вебзастосунками.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Застосунок OAuth2 дозволяє адміністраторам налаштувати вбудований процес авторизації, який дозволить використовувати сумісний з OAuth2 метод авторизації для сторонніз вебзастосунків.", + "OAuth 2.0 clients" : "Клієнти OAuth 2.0", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 дозволяє зовнішнім службам запитувати доступ до {instanceName}.", + "Name" : "Ім'я", + "Redirection URI" : "URI перенаправлення", + "Client Identifier" : "Ідентифікатор клієнта", + "Secret key" : "Пароль", + "Delete client" : "Вилучити клієнта", + "Make sure you store the secret key, it cannot be recovered." : "Обов'язково збережіть секретний ключ, його неможливо відновити.", + "Add client" : "Додати клієнта", + "Add" : "Додати", + "Show client secret" : "Показати ключ клієнта", + "Hide client secret" : "Приховати ключ клієнта", + "Delete" : "Вилучити" +}, +"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);"); diff --git a/apps/oauth2/l10n/uk.json b/apps/oauth2/l10n/uk.json new file mode 100644 index 00000000000..ad7906e1795 --- /dev/null +++ b/apps/oauth2/l10n/uk.json @@ -0,0 +1,21 @@ +{ "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Ваш клієнт не авторизований для підключення. Будь ласка, повідомте адміністратора вашого клієнта.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Ваша URL-адреса переспрямування має бути повною URL-адресою, наприклад: https://yourdomain.com/path", + "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Дозволяє авторизацію OAuth2, яка підтримується іншими вебзастосунками.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Застосунок OAuth2 дозволяє адміністраторам налаштувати вбудований процес авторизації, який дозволить використовувати сумісний з OAuth2 метод авторизації для сторонніз вебзастосунків.", + "OAuth 2.0 clients" : "Клієнти OAuth 2.0", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 дозволяє зовнішнім службам запитувати доступ до {instanceName}.", + "Name" : "Ім'я", + "Redirection URI" : "URI перенаправлення", + "Client Identifier" : "Ідентифікатор клієнта", + "Secret key" : "Пароль", + "Delete client" : "Вилучити клієнта", + "Make sure you store the secret key, it cannot be recovered." : "Обов'язково збережіть секретний ключ, його неможливо відновити.", + "Add client" : "Додати клієнта", + "Add" : "Додати", + "Show client secret" : "Показати ключ клієнта", + "Hide client secret" : "Приховати ключ клієнта", + "Delete" : "Вилучити" +},"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);" +}
\ No newline at end of file diff --git a/apps/oauth2/l10n/vi.js b/apps/oauth2/l10n/vi.js index 60f9ec1d214..3800d4efd5f 100644 --- a/apps/oauth2/l10n/vi.js +++ b/apps/oauth2/l10n/vi.js @@ -1,13 +1,19 @@ OC.L10N.register( "oauth2", { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Ứng dụng khách của bạn không được ủy quyền để kết nối. Vui lòng thông báo cho quản trị viên của ứng dụng khách.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "URl chuyển hướng của bạn phải là URL đầy đủ, vd: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Cho phép xác thực tương thích với OAuth2 từ các ứng dụng web khác.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Ứng dụng OAuth2 cho phép các quản trị viên thiết lập dòng chảy công việc xác thực để cũng cho phép xác thực tương thích với OAuth2 từ các ứng dụng web khác.", "OAuth 2.0 clients" : "kết nối OAuth 2.0", - "Add client" : "Thêm kết nối", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 cho phép các dịch vụ ở ngoài yêu cầu quyền truy cập vào {instanceName}.", "Name" : "Tên", "Redirection URI" : "Liên kết chuyển tiếp", + "Client Identifier" : "Mã định danh ứng dụng khách", + "Add client" : "Thêm kết nối", "Add" : "Thêm", - "Secret" : "Mật khẩu", + "Show client secret" : "Hiện bí mật ứng dụng khách", "Delete" : "Xóa" }, "nplurals=1; plural=0;"); diff --git a/apps/oauth2/l10n/vi.json b/apps/oauth2/l10n/vi.json index 9546bd55d33..c845ec0e30d 100644 --- a/apps/oauth2/l10n/vi.json +++ b/apps/oauth2/l10n/vi.json @@ -1,11 +1,17 @@ { "translations": { + "Your client is not authorized to connect. Please inform the administrator of your client." : "Ứng dụng khách của bạn không được ủy quyền để kết nối. Vui lòng thông báo cho quản trị viên của ứng dụng khách.", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "URl chuyển hướng của bạn phải là URL đầy đủ, vd: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", + "Allows OAuth2 compatible authentication from other web applications." : "Cho phép xác thực tương thích với OAuth2 từ các ứng dụng web khác.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Ứng dụng OAuth2 cho phép các quản trị viên thiết lập dòng chảy công việc xác thực để cũng cho phép xác thực tương thích với OAuth2 từ các ứng dụng web khác.", "OAuth 2.0 clients" : "kết nối OAuth 2.0", - "Add client" : "Thêm kết nối", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 cho phép các dịch vụ ở ngoài yêu cầu quyền truy cập vào {instanceName}.", "Name" : "Tên", "Redirection URI" : "Liên kết chuyển tiếp", + "Client Identifier" : "Mã định danh ứng dụng khách", + "Add client" : "Thêm kết nối", "Add" : "Thêm", - "Secret" : "Mật khẩu", + "Show client secret" : "Hiện bí mật ứng dụng khách", "Delete" : "Xóa" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/zh_CN.js b/apps/oauth2/l10n/zh_CN.js index 3d76f2f4bff..5f2ee894089 100644 --- a/apps/oauth2/l10n/zh_CN.js +++ b/apps/oauth2/l10n/zh_CN.js @@ -8,13 +8,16 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 应用允许管理员配置内置的验证工作流,同时允许其它网站应用的OAuth2 兼容验证。", "OAuth 2.0 clients" : "OAuth 2.0 客户端", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 允许外部服务请求访问 {instanceName}。", - "Add client" : "添加客户端", "Name" : "名称", "Redirection URI" : "跳转URI", + "Client Identifier" : "客户端标识", + "Secret key" : "密钥", + "Delete client" : "删除客户端", + "Make sure you store the secret key, it cannot be recovered." : "请确保您存储了密钥,它无法恢复。", + "Add client" : "添加客户端", "Add" : "添加", - "Client Identifier" : "客户端 ID", - "Secret" : "密钥", "Show client secret" : "显示客户端密钥", + "Hide client secret" : "隐藏客户端密钥", "Delete" : "删除" }, "nplurals=1; plural=0;"); diff --git a/apps/oauth2/l10n/zh_CN.json b/apps/oauth2/l10n/zh_CN.json index 2f2c812cf3a..4b1c4270e48 100644 --- a/apps/oauth2/l10n/zh_CN.json +++ b/apps/oauth2/l10n/zh_CN.json @@ -6,13 +6,16 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 应用允许管理员配置内置的验证工作流,同时允许其它网站应用的OAuth2 兼容验证。", "OAuth 2.0 clients" : "OAuth 2.0 客户端", "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 允许外部服务请求访问 {instanceName}。", - "Add client" : "添加客户端", "Name" : "名称", "Redirection URI" : "跳转URI", + "Client Identifier" : "客户端标识", + "Secret key" : "密钥", + "Delete client" : "删除客户端", + "Make sure you store the secret key, it cannot be recovered." : "请确保您存储了密钥,它无法恢复。", + "Add client" : "添加客户端", "Add" : "添加", - "Client Identifier" : "客户端 ID", - "Secret" : "密钥", "Show client secret" : "显示客户端密钥", + "Hide client secret" : "隐藏客户端密钥", "Delete" : "删除" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/zh_HK.js b/apps/oauth2/l10n/zh_HK.js index eac6a0c90c5..727019e492c 100644 --- a/apps/oauth2/l10n/zh_HK.js +++ b/apps/oauth2/l10n/zh_HK.js @@ -1,20 +1,23 @@ OC.L10N.register( "oauth2", { - "Your client is not authorized to connect. Please inform the administrator of your client." : "此應用程式無權連結,請通知此應用程式的管理員。", - "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "重導向RUL必須為完整的URL,如範例所示:https://yourdomain.com/path", + "Your client is not authorized to connect. Please inform the administrator of your client." : "此客戶端無權連結,請通知此客戶端的管理員。", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "重導向 URL 必須為完整的 URL,如範例所示:https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "允許相容於Oauth2的外部網頁應用程式驗證。", "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 APPs允許管理員為其他支援OAuth2的網頁應用程式啟用原生的驗證流程。", "OAuth 2.0 clients" : "OAuth 2.0 客戶端", - "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0授權機制允許外部服務向{instanceName}請求授權。", - "Add client" : "新增第三方應用程式", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 允許外部服務要求存取 {instanceName}。", "Name" : "名稱", "Redirection URI" : "重導向 URI", - "Add" : "新增", "Client Identifier" : "用戶識別", - "Secret" : "密鑰", - "Show client secret" : "顯示密鑰", + "Secret key" : "私密密鑰", + "Delete client" : "刪除客戶端", + "Make sure you store the secret key, it cannot be recovered." : "請確保妥善保存密鑰,因為它無法復得。", + "Add client" : "新增第三方應用程式", + "Add" : "新增", + "Show client secret" : "顯示客戶端密碼", + "Hide client secret" : "隱藏客戶端密碼", "Delete" : "刪除" }, "nplurals=1; plural=0;"); diff --git a/apps/oauth2/l10n/zh_HK.json b/apps/oauth2/l10n/zh_HK.json index 89998f95120..1773d8ec559 100644 --- a/apps/oauth2/l10n/zh_HK.json +++ b/apps/oauth2/l10n/zh_HK.json @@ -1,18 +1,21 @@ { "translations": { - "Your client is not authorized to connect. Please inform the administrator of your client." : "此應用程式無權連結,請通知此應用程式的管理員。", - "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "重導向RUL必須為完整的URL,如範例所示:https://yourdomain.com/path", + "Your client is not authorized to connect. Please inform the administrator of your client." : "此客戶端無權連結,請通知此客戶端的管理員。", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "重導向 URL 必須為完整的 URL,如範例所示:https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "允許相容於Oauth2的外部網頁應用程式驗證。", "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 APPs允許管理員為其他支援OAuth2的網頁應用程式啟用原生的驗證流程。", "OAuth 2.0 clients" : "OAuth 2.0 客戶端", - "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0授權機制允許外部服務向{instanceName}請求授權。", - "Add client" : "新增第三方應用程式", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 允許外部服務要求存取 {instanceName}。", "Name" : "名稱", "Redirection URI" : "重導向 URI", - "Add" : "新增", "Client Identifier" : "用戶識別", - "Secret" : "密鑰", - "Show client secret" : "顯示密鑰", + "Secret key" : "私密密鑰", + "Delete client" : "刪除客戶端", + "Make sure you store the secret key, it cannot be recovered." : "請確保妥善保存密鑰,因為它無法復得。", + "Add client" : "新增第三方應用程式", + "Add" : "新增", + "Show client secret" : "顯示客戶端密碼", + "Hide client secret" : "隱藏客戶端密碼", "Delete" : "刪除" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/zh_TW.js b/apps/oauth2/l10n/zh_TW.js index ccf40cc11ef..e61fe31d36b 100644 --- a/apps/oauth2/l10n/zh_TW.js +++ b/apps/oauth2/l10n/zh_TW.js @@ -1,20 +1,23 @@ OC.L10N.register( "oauth2", { - "Your client is not authorized to connect. Please inform the administrator of your client." : "此應用程式無權連結,請通知此應用程式的管理員。", - "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "重導向RUL必須為完整的URL,如範例所示:https://yourdomain.com/path", + "Your client is not authorized to connect. Please inform the administrator of your client." : "您的客戶端無連線授權。請通知您客戶端的管理員。", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "您的重新導向 URL 必須為完整的 URL,例如:https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "允許相容於Oauth2的外部網頁應用程式驗證。", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 APPs允許管理員為其他支援OAuth2的網頁應用程式啟用原生的驗證流程。", - "OAuth 2.0 clients" : "OAuth 2.0 第三方應用程式", - "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0授權機制允許外部服務向{instanceName}請求授權。", - "Add client" : "新增第三方應用程式", + "Allows OAuth2 compatible authentication from other web applications." : "允許來自其他網路應用程式的 OAuth2 相容身份認證。", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 應用程式讓管理員可以設定內建的身份認證工作流程,以讓其他網路應用程式可以進行相容於 OAuth2 的身份認證。", + "OAuth 2.0 clients" : "OAuth 2.0 客戶端", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 讓外部服務請求能存取 {instanceName}。", "Name" : "名稱", - "Redirection URI" : "重導向 URI", + "Redirection URI" : "重新導向 URI", + "Client Identifier" : "客戶端識別", + "Secret key" : "私密金鑰", + "Delete client" : "刪除客戶端", + "Make sure you store the secret key, it cannot be recovered." : "請確定您儲存了私鑰,其無法還原。", + "Add client" : "新增客戶端", "Add" : "新增", - "Client Identifier" : "用戶識別", - "Secret" : "密鑰", - "Show client secret" : "顯示密鑰", + "Show client secret" : "顯示客戶端密碼", + "Hide client secret" : "隱藏客戶端密碼", "Delete" : "刪除" }, "nplurals=1; plural=0;"); diff --git a/apps/oauth2/l10n/zh_TW.json b/apps/oauth2/l10n/zh_TW.json index a3b1b298a1e..ba0a879f152 100644 --- a/apps/oauth2/l10n/zh_TW.json +++ b/apps/oauth2/l10n/zh_TW.json @@ -1,18 +1,21 @@ { "translations": { - "Your client is not authorized to connect. Please inform the administrator of your client." : "此應用程式無權連結,請通知此應用程式的管理員。", - "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "重導向RUL必須為完整的URL,如範例所示:https://yourdomain.com/path", + "Your client is not authorized to connect. Please inform the administrator of your client." : "您的客戶端無連線授權。請通知您客戶端的管理員。", + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "您的重新導向 URL 必須為完整的 URL,例如:https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "允許相容於Oauth2的外部網頁應用程式驗證。", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 APPs允許管理員為其他支援OAuth2的網頁應用程式啟用原生的驗證流程。", - "OAuth 2.0 clients" : "OAuth 2.0 第三方應用程式", - "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0授權機制允許外部服務向{instanceName}請求授權。", - "Add client" : "新增第三方應用程式", + "Allows OAuth2 compatible authentication from other web applications." : "允許來自其他網路應用程式的 OAuth2 相容身份認證。", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 應用程式讓管理員可以設定內建的身份認證工作流程,以讓其他網路應用程式可以進行相容於 OAuth2 的身份認證。", + "OAuth 2.0 clients" : "OAuth 2.0 客戶端", + "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 讓外部服務請求能存取 {instanceName}。", "Name" : "名稱", - "Redirection URI" : "重導向 URI", + "Redirection URI" : "重新導向 URI", + "Client Identifier" : "客戶端識別", + "Secret key" : "私密金鑰", + "Delete client" : "刪除客戶端", + "Make sure you store the secret key, it cannot be recovered." : "請確定您儲存了私鑰,其無法還原。", + "Add client" : "新增客戶端", "Add" : "新增", - "Client Identifier" : "用戶識別", - "Secret" : "密鑰", - "Show client secret" : "顯示密鑰", + "Show client secret" : "顯示客戶端密碼", + "Hide client secret" : "隱藏客戶端密碼", "Delete" : "刪除" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/oauth2/lib/BackgroundJob/CleanupExpiredAuthorizationCode.php b/apps/oauth2/lib/BackgroundJob/CleanupExpiredAuthorizationCode.php new file mode 100644 index 00000000000..b819a45ace2 --- /dev/null +++ b/apps/oauth2/lib/BackgroundJob/CleanupExpiredAuthorizationCode.php @@ -0,0 +1,43 @@ +<?php + +declare(strict_types=1); + +/** + * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + + +namespace OCA\OAuth2\BackgroundJob; + +use OCA\OAuth2\Db\AccessTokenMapper; +use OCP\AppFramework\Utility\ITimeFactory; +use OCP\BackgroundJob\TimedJob; +use OCP\DB\Exception; +use Psr\Log\LoggerInterface; + +class CleanupExpiredAuthorizationCode extends TimedJob { + + public function __construct( + ITimeFactory $timeFactory, + private AccessTokenMapper $accessTokenMapper, + private LoggerInterface $logger, + ) { + parent::__construct($timeFactory); + // 30 days + $this->setInterval(60 * 60 * 24 * 30); + $this->setTimeSensitivity(self::TIME_INSENSITIVE); + } + + /** + * @param mixed $argument + * @inheritDoc + */ + protected function run($argument): void { + try { + $this->accessTokenMapper->cleanupExpiredAuthorizationCode(); + } catch (Exception $e) { + $this->logger->warning('Failed to cleanup tokens with expired authorization code', ['exception' => $e]); + } + } +} diff --git a/apps/oauth2/lib/Command/ImportLegacyOcClient.php b/apps/oauth2/lib/Command/ImportLegacyOcClient.php new file mode 100644 index 00000000000..acdc57cf991 --- /dev/null +++ b/apps/oauth2/lib/Command/ImportLegacyOcClient.php @@ -0,0 +1,76 @@ +<?php + +declare(strict_types=1); + +/** + * SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +namespace OCA\OAuth2\Command; + +use OCA\OAuth2\Db\Client; +use OCA\OAuth2\Db\ClientMapper; +use OCP\IConfig; +use OCP\Security\ICrypto; +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputArgument; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class ImportLegacyOcClient extends Command { + private const ARGUMENT_CLIENT_ID = 'client-id'; + private const ARGUMENT_CLIENT_SECRET = 'client-secret'; + + public function __construct( + private readonly IConfig $config, + private readonly ICrypto $crypto, + private readonly ClientMapper $clientMapper, + ) { + parent::__construct(); + } + + protected function configure(): void { + $this->setName('oauth2:import-legacy-oc-client'); + $this->setDescription('This command is only required to be run on instances which were migrated from ownCloud without the oauth2.enable_oc_clients system config! Import a legacy Oauth2 client from an ownCloud instance and migrate it. The data is expected to be straight out of the database table oc_oauth2_clients.'); + $this->addArgument( + self::ARGUMENT_CLIENT_ID, + InputArgument::REQUIRED, + 'Value of the "identifier" column', + ); + $this->addArgument( + self::ARGUMENT_CLIENT_SECRET, + InputArgument::REQUIRED, + 'Value of the "secret" column', + ); + } + + public function isEnabled(): bool { + return $this->config->getSystemValueBool('oauth2.enable_oc_clients', false); + } + + protected function execute(InputInterface $input, OutputInterface $output): int { + /** @var string $clientId */ + $clientId = $input->getArgument(self::ARGUMENT_CLIENT_ID); + + /** @var string $clientSecret */ + $clientSecret = $input->getArgument(self::ARGUMENT_CLIENT_SECRET); + + // Should not happen but just to be sure + if (empty($clientId) || empty($clientSecret)) { + return 1; + } + + $hashedClientSecret = bin2hex($this->crypto->calculateHMAC($clientSecret)); + + $client = new Client(); + $client->setName('ownCloud Desktop Client'); + $client->setRedirectUri('http://localhost:*'); + $client->setClientIdentifier($clientId); + $client->setSecret($hashedClientSecret); + $this->clientMapper->insert($client); + + $output->writeln('<info>Client imported successfully</info>'); + return 0; + } +} diff --git a/apps/oauth2/lib/Controller/LoginRedirectorController.php b/apps/oauth2/lib/Controller/LoginRedirectorController.php index 4254c9880bc..7241b35cdcf 100644 --- a/apps/oauth2/lib/Controller/LoginRedirectorController.php +++ b/apps/oauth2/lib/Controller/LoginRedirectorController.php @@ -3,52 +3,32 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @author Daniel Kesselberg <mail@danielkesselberg.de> - * @author Lukas Reschke <lukas@statuscode.ch> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Controller; +use OC\Core\Controller\ClientFlowLoginController; use OCA\OAuth2\Db\ClientMapper; use OCA\OAuth2\Exceptions\ClientNotFoundException; use OCP\AppFramework\Controller; +use OCP\AppFramework\Http; +use OCP\AppFramework\Http\Attribute\NoCSRFRequired; +use OCP\AppFramework\Http\Attribute\OpenAPI; +use OCP\AppFramework\Http\Attribute\PublicPage; +use OCP\AppFramework\Http\Attribute\UseSession; use OCP\AppFramework\Http\RedirectResponse; -use OCP\AppFramework\Http\Response; use OCP\AppFramework\Http\TemplateResponse; +use OCP\IAppConfig; +use OCP\IConfig; use OCP\IL10N; use OCP\IRequest; use OCP\ISession; use OCP\IURLGenerator; +use OCP\Security\ISecureRandom; +#[OpenAPI(scope: OpenAPI::SCOPE_DEFAULT)] class LoginRedirectorController extends Controller { - /** @var IURLGenerator */ - private $urlGenerator; - /** @var ClientMapper */ - private $clientMapper; - /** @var ISession */ - private $session; - /** @var IL10N */ - private $l; - /** * @param string $appName * @param IRequest $request @@ -57,32 +37,39 @@ class LoginRedirectorController extends Controller { * @param ISession $session * @param IL10N $l */ - public function __construct(string $appName, - IRequest $request, - IURLGenerator $urlGenerator, - ClientMapper $clientMapper, - ISession $session, - IL10N $l) { + public function __construct( + string $appName, + IRequest $request, + private IURLGenerator $urlGenerator, + private ClientMapper $clientMapper, + private ISession $session, + private IL10N $l, + private ISecureRandom $random, + private IAppConfig $appConfig, + private IConfig $config, + ) { parent::__construct($appName, $request); - $this->urlGenerator = $urlGenerator; - $this->clientMapper = $clientMapper; - $this->session = $session; - $this->l = $l; } /** - * @PublicPage - * @NoCSRFRequired - * @UseSession + * Authorize the user * - * @param string $client_id - * @param string $state - * @param string $response_type - * @return Response + * @param string $client_id Client ID + * @param string $state State of the flow + * @param string $response_type Response type for the flow + * @param string $redirect_uri URI to redirect to after the flow (is only used for legacy ownCloud clients) + * @return TemplateResponse<Http::STATUS_OK, array{}>|RedirectResponse<Http::STATUS_SEE_OTHER, array{}> + * + * 200: Client not found + * 303: Redirect to login URL */ + #[PublicPage] + #[NoCSRFRequired] + #[UseSession] public function authorize($client_id, - $state, - $response_type): Response { + $state, + $response_type, + string $redirect_uri = ''): TemplateResponse|RedirectResponse { try { $client = $this->clientMapper->getByIdentifier($client_id); } catch (ClientNotFoundException $e) { @@ -98,14 +85,39 @@ class LoginRedirectorController extends Controller { return new RedirectResponse($url); } + $enableOcClients = $this->config->getSystemValueBool('oauth2.enable_oc_clients', false); + + $providedRedirectUri = ''; + if ($enableOcClients && $client->getRedirectUri() === 'http://localhost:*') { + $providedRedirectUri = $redirect_uri; + } + $this->session->set('oauth.state', $state); - $targetUrl = $this->urlGenerator->linkToRouteAbsolute( - 'core.ClientFlowLogin.showAuthPickerPage', - [ - 'clientIdentifier' => $client->getClientIdentifier(), - ] - ); + if (in_array($client->getName(), $this->appConfig->getValueArray('oauth2', 'skipAuthPickerApplications', []))) { + /** @see ClientFlowLoginController::showAuthPickerPage **/ + $stateToken = $this->random->generate( + 64, + ISecureRandom::CHAR_LOWER . ISecureRandom::CHAR_UPPER . ISecureRandom::CHAR_DIGITS + ); + $this->session->set(ClientFlowLoginController::STATE_NAME, $stateToken); + $targetUrl = $this->urlGenerator->linkToRouteAbsolute( + 'core.ClientFlowLogin.grantPage', + [ + 'stateToken' => $stateToken, + 'clientIdentifier' => $client->getClientIdentifier(), + 'providedRedirectUri' => $providedRedirectUri, + ] + ); + } else { + $targetUrl = $this->urlGenerator->linkToRouteAbsolute( + 'core.ClientFlowLogin.showAuthPickerPage', + [ + 'clientIdentifier' => $client->getClientIdentifier(), + 'providedRedirectUri' => $providedRedirectUri, + ] + ); + } return new RedirectResponse($targetUrl); } } diff --git a/apps/oauth2/lib/Controller/OauthApiController.php b/apps/oauth2/lib/Controller/OauthApiController.php index 2fbaf456263..11f17fda4bf 100644 --- a/apps/oauth2/lib/Controller/OauthApiController.php +++ b/apps/oauth2/lib/Controller/OauthApiController.php @@ -3,100 +3,83 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Lukas Reschke <lukas@statuscode.ch> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Controller; -use OC\Authentication\Exceptions\ExpiredTokenException; -use OC\Authentication\Exceptions\InvalidTokenException; use OC\Authentication\Token\IProvider as TokenProvider; -use OC\Security\Bruteforce\Throttler; use OCA\OAuth2\Db\AccessTokenMapper; use OCA\OAuth2\Db\ClientMapper; use OCA\OAuth2\Exceptions\AccessTokenNotFoundException; use OCA\OAuth2\Exceptions\ClientNotFoundException; use OCP\AppFramework\Controller; use OCP\AppFramework\Http; +use OCP\AppFramework\Http\Attribute\BruteForceProtection; +use OCP\AppFramework\Http\Attribute\NoCSRFRequired; +use OCP\AppFramework\Http\Attribute\OpenAPI; +use OCP\AppFramework\Http\Attribute\PublicPage; use OCP\AppFramework\Http\JSONResponse; use OCP\AppFramework\Utility\ITimeFactory; +use OCP\Authentication\Exceptions\ExpiredTokenException; +use OCP\Authentication\Exceptions\InvalidTokenException; +use OCP\DB\Exception; use OCP\IRequest; +use OCP\Security\Bruteforce\IThrottler; use OCP\Security\ICrypto; use OCP\Security\ISecureRandom; +use Psr\Log\LoggerInterface; +#[OpenAPI(scope: OpenAPI::SCOPE_DEFAULT)] class OauthApiController extends Controller { - /** @var AccessTokenMapper */ - private $accessTokenMapper; - /** @var ClientMapper */ - private $clientMapper; - /** @var ICrypto */ - private $crypto; - /** @var TokenProvider */ - private $tokenProvider; - /** @var ISecureRandom */ - private $secureRandom; - /** @var ITimeFactory */ - private $time; - /** @var Throttler */ - private $throttler; - - public function __construct(string $appName, - IRequest $request, - ICrypto $crypto, - AccessTokenMapper $accessTokenMapper, - ClientMapper $clientMapper, - TokenProvider $tokenProvider, - ISecureRandom $secureRandom, - ITimeFactory $time, - Throttler $throttler) { + // the authorization code expires after 10 minutes + public const AUTHORIZATION_CODE_EXPIRES_AFTER = 10 * 60; + + public function __construct( + string $appName, + IRequest $request, + private ICrypto $crypto, + private AccessTokenMapper $accessTokenMapper, + private ClientMapper $clientMapper, + private TokenProvider $tokenProvider, + private ISecureRandom $secureRandom, + private ITimeFactory $time, + private LoggerInterface $logger, + private IThrottler $throttler, + private ITimeFactory $timeFactory, + ) { parent::__construct($appName, $request); - $this->crypto = $crypto; - $this->accessTokenMapper = $accessTokenMapper; - $this->clientMapper = $clientMapper; - $this->tokenProvider = $tokenProvider; - $this->secureRandom = $secureRandom; - $this->time = $time; - $this->throttler = $throttler; } /** - * @PublicPage - * @NoCSRFRequired + * Get a token + * + * @param string $grant_type Token type that should be granted + * @param ?string $code Code of the flow + * @param ?string $refresh_token Refresh token + * @param ?string $client_id Client ID + * @param ?string $client_secret Client secret + * @throws Exception + * @return JSONResponse<Http::STATUS_OK, array{access_token: string, token_type: string, expires_in: int, refresh_token: string, user_id: string}, array{}>|JSONResponse<Http::STATUS_BAD_REQUEST, array{error: string}, array{}> * - * @param string $grant_type - * @param string $code - * @param string $refresh_token - * @param string $client_id - * @param string $client_secret - * @return JSONResponse + * 200: Token returned + * 400: Getting token is not possible */ - public function getToken($grant_type, $code, $refresh_token, $client_id, $client_secret): JSONResponse { + #[PublicPage] + #[NoCSRFRequired] + #[BruteForceProtection(action: 'oauth2GetToken')] + public function getToken( + string $grant_type, ?string $code, ?string $refresh_token, + ?string $client_id, ?string $client_secret, + ): JSONResponse { // We only handle two types if ($grant_type !== 'authorization_code' && $grant_type !== 'refresh_token') { - return new JSONResponse([ + $response = new JSONResponse([ 'error' => 'invalid_grant', ], Http::STATUS_BAD_REQUEST); + $response->throttle(['invalid_grant' => $grant_type]); + return $response; } // We handle the initial and refresh tokens the same way @@ -107,17 +90,48 @@ class OauthApiController extends Controller { try { $accessToken = $this->accessTokenMapper->getByCode($code); } catch (AccessTokenNotFoundException $e) { - return new JSONResponse([ + $response = new JSONResponse([ 'error' => 'invalid_request', ], Http::STATUS_BAD_REQUEST); + $response->throttle(['invalid_request' => 'token not found', 'code' => $code]); + return $response; + } + + if ($grant_type === 'authorization_code') { + // check this token is in authorization code state + $deliveredTokenCount = $accessToken->getTokenCount(); + if ($deliveredTokenCount > 0) { + $response = new JSONResponse([ + 'error' => 'invalid_request', + ], Http::STATUS_BAD_REQUEST); + $response->throttle(['invalid_request' => 'authorization_code_received_for_active_token']); + return $response; + } + + // check authorization code expiration + $now = $this->timeFactory->now()->getTimestamp(); + $codeCreatedAt = $accessToken->getCodeCreatedAt(); + if ($codeCreatedAt < $now - self::AUTHORIZATION_CODE_EXPIRES_AFTER) { + // we know this token is not useful anymore + $this->accessTokenMapper->delete($accessToken); + + $response = new JSONResponse([ + 'error' => 'invalid_request', + ], Http::STATUS_BAD_REQUEST); + $expiredSince = $now - self::AUTHORIZATION_CODE_EXPIRES_AFTER - $codeCreatedAt; + $response->throttle(['invalid_request' => 'authorization_code_expired', 'expired_since' => $expiredSince]); + return $response; + } } try { $client = $this->clientMapper->getByUid($accessToken->getClientId()); } catch (ClientNotFoundException $e) { - return new JSONResponse([ + $response = new JSONResponse([ 'error' => 'invalid_request', ], Http::STATUS_BAD_REQUEST); + $response->throttle(['invalid_request' => 'client not found', 'client_id' => $accessToken->getClientId()]); + return $response; } if (isset($this->request->server['PHP_AUTH_USER'])) { @@ -125,16 +139,28 @@ class OauthApiController extends Controller { $client_secret = $this->request->server['PHP_AUTH_PW']; } - // The client id and secret must match. Else we don't provide an access token! - if ($client->getClientIdentifier() !== $client_id || $client->getSecret() !== $client_secret) { + try { + $storedClientSecretHash = $client->getSecret(); + $clientSecretHash = bin2hex($this->crypto->calculateHMAC($client_secret)); + } catch (\Exception $e) { + $this->logger->error('OAuth client secret decryption error', ['exception' => $e]); + // we don't throttle here because it might not be a bruteforce attack return new JSONResponse([ 'error' => 'invalid_client', ], Http::STATUS_BAD_REQUEST); } + // The client id and secret must match. Else we don't provide an access token! + if ($client->getClientIdentifier() !== $client_id || $storedClientSecretHash !== $clientSecretHash) { + $response = new JSONResponse([ + 'error' => 'invalid_client', + ], Http::STATUS_BAD_REQUEST); + $response->throttle(['invalid_client' => 'client ID or secret does not match']); + return $response; + } $decryptedToken = $this->crypto->decrypt($accessToken->getEncryptedToken(), $code); - // Obtain the appToken assoicated + // Obtain the appToken associated try { $appToken = $this->tokenProvider->getTokenById($accessToken->getTokenId()); } catch (ExpiredTokenException $e) { @@ -142,13 +168,15 @@ class OauthApiController extends Controller { } catch (InvalidTokenException $e) { //We can't do anything... $this->accessTokenMapper->delete($accessToken); - return new JSONResponse([ + $response = new JSONResponse([ 'error' => 'invalid_request', ], Http::STATUS_BAD_REQUEST); + $response->throttle(['invalid_request' => 'token is invalid']); + return $response; } // Rotate the apptoken (so the old one becomes invalid basically) - $newToken = $this->secureRandom->generate(72, ISecureRandom::CHAR_UPPER.ISecureRandom::CHAR_LOWER.ISecureRandom::CHAR_DIGITS); + $newToken = $this->secureRandom->generate(72, ISecureRandom::CHAR_ALPHANUMERIC); $appToken = $this->tokenProvider->rotate( $appToken, @@ -161,9 +189,14 @@ class OauthApiController extends Controller { $this->tokenProvider->updateToken($appToken); // Generate a new refresh token and encrypt the new apptoken in the DB - $newCode = $this->secureRandom->generate(128, ISecureRandom::CHAR_UPPER.ISecureRandom::CHAR_LOWER.ISecureRandom::CHAR_DIGITS); + $newCode = $this->secureRandom->generate(128, ISecureRandom::CHAR_ALPHANUMERIC); $accessToken->setHashedCode(hash('sha512', $newCode)); $accessToken->setEncryptedToken($this->crypto->encrypt($newToken, $newCode)); + // increase the number of delivered oauth token + // this helps with cleaning up DB access token when authorization code has expired + // and it never delivered any oauth token + $tokenCount = $accessToken->getTokenCount(); + $accessToken->setTokenCount($tokenCount + 1); $this->accessTokenMapper->update($accessToken); $this->throttler->resetDelay($this->request->getRemoteAddress(), 'login', ['user' => $appToken->getUID()]); diff --git a/apps/oauth2/lib/Controller/SettingsController.php b/apps/oauth2/lib/Controller/SettingsController.php index 00d16ce4976..9bd02c8a2cd 100644 --- a/apps/oauth2/lib/Controller/SettingsController.php +++ b/apps/oauth2/lib/Controller/SettingsController.php @@ -3,85 +3,45 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @author Bjoern Schiessle <bjoern@schiessle.org> - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Lukas Reschke <lukas@statuscode.ch> - * @author Patrik Kernstock <info@pkern.at> - * @author rakekniven <mark.ziegler@rakekniven.de> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Controller; -use OC\Authentication\Token\DefaultTokenMapper; use OCA\OAuth2\Db\AccessTokenMapper; use OCA\OAuth2\Db\Client; use OCA\OAuth2\Db\ClientMapper; use OCP\AppFramework\Controller; use OCP\AppFramework\Http; use OCP\AppFramework\Http\JSONResponse; +use OCP\Authentication\Token\IProvider as IAuthTokenProvider; use OCP\IL10N; use OCP\IRequest; +use OCP\IUser; +use OCP\IUserManager; +use OCP\Security\ICrypto; use OCP\Security\ISecureRandom; class SettingsController extends Controller { - /** @var ClientMapper */ - private $clientMapper; - /** @var ISecureRandom */ - private $secureRandom; - /** @var AccessTokenMapper */ - private $accessTokenMapper; - /** @var DefaultTokenMapper */ - private $defaultTokenMapper; - /** @var IL10N */ - private $l; public const validChars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; - /** - * @param string $appName - * @param IRequest $request - * @param ClientMapper $clientMapper - * @param ISecureRandom $secureRandom - * @param AccessTokenMapper $accessTokenMapper - * @param DefaultTokenMapper $defaultTokenMapper - */ - public function __construct(string $appName, - IRequest $request, - ClientMapper $clientMapper, - ISecureRandom $secureRandom, - AccessTokenMapper $accessTokenMapper, - DefaultTokenMapper $defaultTokenMapper, - IL10N $l + public function __construct( + string $appName, + IRequest $request, + private ClientMapper $clientMapper, + private ISecureRandom $secureRandom, + private AccessTokenMapper $accessTokenMapper, + private IL10N $l, + private IAuthTokenProvider $tokenProvider, + private IUserManager $userManager, + private ICrypto $crypto, ) { parent::__construct($appName, $request); - $this->secureRandom = $secureRandom; - $this->clientMapper = $clientMapper; - $this->accessTokenMapper = $accessTokenMapper; - $this->defaultTokenMapper = $defaultTokenMapper; - $this->l = $l; } public function addClient(string $name, - string $redirectUri): JSONResponse { + string $redirectUri): JSONResponse { if (filter_var($redirectUri, FILTER_VALIDATE_URL) === false) { return new JSONResponse(['message' => $this->l->t('Your redirect URL needs to be a full URL for example: https://yourdomain.com/path')], Http::STATUS_BAD_REQUEST); } @@ -89,7 +49,9 @@ class SettingsController extends Controller { $client = new Client(); $client->setName($name); $client->setRedirectUri($redirectUri); - $client->setSecret($this->secureRandom->generate(64, self::validChars)); + $secret = $this->secureRandom->generate(64, self::validChars); + $hashedSecret = bin2hex($this->crypto->calculateHMAC($secret)); + $client->setSecret($hashedSecret); $client->setClientIdentifier($this->secureRandom->generate(64, self::validChars)); $client = $this->clientMapper->insert($client); @@ -98,7 +60,7 @@ class SettingsController extends Controller { 'name' => $client->getName(), 'redirectUri' => $client->getRedirectUri(), 'clientId' => $client->getClientIdentifier(), - 'clientSecret' => $client->getSecret(), + 'clientSecret' => $secret, ]; return new JSONResponse($result); @@ -106,8 +68,12 @@ class SettingsController extends Controller { public function deleteClient(int $id): JSONResponse { $client = $this->clientMapper->getByUid($id); + + $this->userManager->callForSeenUsers(function (IUser $user) use ($client): void { + $this->tokenProvider->invalidateTokensOfUser($user->getUID(), $client->getName()); + }); + $this->accessTokenMapper->deleteByClientId($id); - $this->defaultTokenMapper->deleteByName($client->getName()); $this->clientMapper->delete($client); return new JSONResponse([]); } diff --git a/apps/oauth2/lib/Db/AccessToken.php b/apps/oauth2/lib/Db/AccessToken.php index f033cf616bb..34adc4f4797 100644 --- a/apps/oauth2/lib/Db/AccessToken.php +++ b/apps/oauth2/lib/Db/AccessToken.php @@ -1,30 +1,13 @@ <?php + /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @author Lukas Reschke <lukas@statuscode.ch> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Db; use OCP\AppFramework\Db\Entity; +use OCP\DB\Types; /** * @method int getTokenId() @@ -35,6 +18,10 @@ use OCP\AppFramework\Db\Entity; * @method void setEncryptedToken(string $token) * @method string getHashedCode() * @method void setHashedCode(string $token) + * @method int getCodeCreatedAt() + * @method void setCodeCreatedAt(int $createdAt) + * @method int getTokenCount() + * @method void setTokenCount(int $tokenCount) */ class AccessToken extends Entity { /** @var int */ @@ -45,12 +32,18 @@ class AccessToken extends Entity { protected $hashedCode; /** @var string */ protected $encryptedToken; + /** @var int */ + protected $codeCreatedAt; + /** @var int */ + protected $tokenCount; public function __construct() { - $this->addType('id', 'int'); - $this->addType('tokenId', 'int'); - $this->addType('clientId', 'int'); + $this->addType('id', Types::INTEGER); + $this->addType('tokenId', Types::INTEGER); + $this->addType('clientId', Types::INTEGER); $this->addType('hashedCode', 'string'); $this->addType('encryptedToken', 'string'); + $this->addType('codeCreatedAt', Types::INTEGER); + $this->addType('tokenCount', Types::INTEGER); } } diff --git a/apps/oauth2/lib/Db/AccessTokenMapper.php b/apps/oauth2/lib/Db/AccessTokenMapper.php index a748159a754..8d5f6cf1da1 100644 --- a/apps/oauth2/lib/Db/AccessTokenMapper.php +++ b/apps/oauth2/lib/Db/AccessTokenMapper.php @@ -3,43 +3,29 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @author Bjoern Schiessle <bjoern@schiessle.org> - * @author Lukas Reschke <lukas@statuscode.ch> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Db; +use OCA\OAuth2\Controller\OauthApiController; use OCA\OAuth2\Exceptions\AccessTokenNotFoundException; use OCP\AppFramework\Db\IMapperException; use OCP\AppFramework\Db\QBMapper; +use OCP\AppFramework\Utility\ITimeFactory; +use OCP\DB\Exception; use OCP\DB\QueryBuilder\IQueryBuilder; use OCP\IDBConnection; +/** + * @template-extends QBMapper<AccessToken> + */ class AccessTokenMapper extends QBMapper { - /** - * @param IDBConnection $db - */ - public function __construct(IDBConnection $db) { + public function __construct( + IDBConnection $db, + private ITimeFactory $timeFactory, + ) { parent::__construct($db, 'oauth2_access_tokens'); } @@ -74,6 +60,26 @@ class AccessTokenMapper extends QBMapper { $qb ->delete($this->tableName) ->where($qb->expr()->eq('client_id', $qb->createNamedParameter($id, IQueryBuilder::PARAM_INT))); - $qb->execute(); + $qb->executeStatement(); + } + + /** + * Delete access tokens that have an expired authorization code + * -> those that are old enough + * and which never delivered any oauth token (still in authorization state) + * + * @return void + * @throws Exception + */ + public function cleanupExpiredAuthorizationCode(): void { + $now = $this->timeFactory->now()->getTimestamp(); + $maxTokenCreationTs = $now - OauthApiController::AUTHORIZATION_CODE_EXPIRES_AFTER; + + $qb = $this->db->getQueryBuilder(); + $qb + ->delete($this->tableName) + ->where($qb->expr()->eq('token_count', $qb->createNamedParameter(0, IQueryBuilder::PARAM_INT))) + ->andWhere($qb->expr()->lt('code_created_at', $qb->createNamedParameter($maxTokenCreationTs, IQueryBuilder::PARAM_INT))); + $qb->executeStatement(); } } diff --git a/apps/oauth2/lib/Db/Client.php b/apps/oauth2/lib/Db/Client.php index 87559f89cee..8fce0040c96 100644 --- a/apps/oauth2/lib/Db/Client.php +++ b/apps/oauth2/lib/Db/Client.php @@ -1,29 +1,13 @@ <?php + /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @author Lukas Reschke <lukas@statuscode.ch> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Db; use OCP\AppFramework\Db\Entity; +use OCP\DB\Types; /** * @method string getClientIdentifier() @@ -46,10 +30,10 @@ class Client extends Entity { protected $secret; public function __construct() { - $this->addType('id', 'int'); + $this->addType('id', Types::INTEGER); $this->addType('name', 'string'); - $this->addType('redirect_uri', 'string'); - $this->addType('client_identifier', 'string'); + $this->addType('redirectUri', 'string'); + $this->addType('clientIdentifier', 'string'); $this->addType('secret', 'string'); } } diff --git a/apps/oauth2/lib/Db/ClientMapper.php b/apps/oauth2/lib/Db/ClientMapper.php index 85c99e80a5e..c5ca2989d0f 100644 --- a/apps/oauth2/lib/Db/ClientMapper.php +++ b/apps/oauth2/lib/Db/ClientMapper.php @@ -3,29 +3,9 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @author Bjoern Schiessle <bjoern@schiessle.org> - * @author Lukas Reschke <lukas@statuscode.ch> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Db; use OCA\OAuth2\Exceptions\ClientNotFoundException; @@ -34,6 +14,9 @@ use OCP\AppFramework\Db\QBMapper; use OCP\DB\QueryBuilder\IQueryBuilder; use OCP\IDBConnection; +/** + * @template-extends QBMapper<Client> + */ class ClientMapper extends QBMapper { /** @@ -58,7 +41,7 @@ class ClientMapper extends QBMapper { try { $client = $this->findEntity($qb); } catch (IMapperException $e) { - throw new ClientNotFoundException('could not find client '.$clientIdentifier, 0, $e); + throw new ClientNotFoundException('could not find client ' . $clientIdentifier, 0, $e); } return $client; } @@ -78,7 +61,7 @@ class ClientMapper extends QBMapper { try { $client = $this->findEntity($qb); } catch (IMapperException $e) { - throw new ClientNotFoundException('could not find client with id '.$id, 0, $e); + throw new ClientNotFoundException('could not find client with id ' . $id, 0, $e); } return $client; } diff --git a/apps/oauth2/lib/Exceptions/AccessTokenNotFoundException.php b/apps/oauth2/lib/Exceptions/AccessTokenNotFoundException.php index 079f7a9beee..809598e258e 100644 --- a/apps/oauth2/lib/Exceptions/AccessTokenNotFoundException.php +++ b/apps/oauth2/lib/Exceptions/AccessTokenNotFoundException.php @@ -3,28 +3,9 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Lukas Reschke <lukas@statuscode.ch> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Exceptions; class AccessTokenNotFoundException extends \Exception { diff --git a/apps/oauth2/lib/Exceptions/ClientNotFoundException.php b/apps/oauth2/lib/Exceptions/ClientNotFoundException.php index 77c7c6687ca..cec7a24e22d 100644 --- a/apps/oauth2/lib/Exceptions/ClientNotFoundException.php +++ b/apps/oauth2/lib/Exceptions/ClientNotFoundException.php @@ -3,28 +3,9 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Lukas Reschke <lukas@statuscode.ch> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Exceptions; class ClientNotFoundException extends \Exception { diff --git a/apps/oauth2/lib/Migration/SetTokenExpiration.php b/apps/oauth2/lib/Migration/SetTokenExpiration.php index 93f879d8e87..dc925e26bb2 100644 --- a/apps/oauth2/lib/Migration/SetTokenExpiration.php +++ b/apps/oauth2/lib/Migration/SetTokenExpiration.php @@ -3,55 +3,26 @@ declare(strict_types=1); /** - * @copyright Copyright 2018, Roeland Jago Douma <roeland@famdouma.nl> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Migration; -use OC\Authentication\Exceptions\InvalidTokenException; use OC\Authentication\Token\IProvider as TokenProvider; use OCA\OAuth2\Db\AccessToken; use OCP\AppFramework\Utility\ITimeFactory; +use OCP\Authentication\Exceptions\InvalidTokenException; use OCP\IDBConnection; use OCP\Migration\IOutput; use OCP\Migration\IRepairStep; class SetTokenExpiration implements IRepairStep { - /** @var IDBConnection */ - private $connection; - - /** @var ITimeFactory */ - private $time; - - /** @var TokenProvider */ - private $tokenProvider; - - public function __construct(IDBConnection $connection, - ITimeFactory $timeFactory, - TokenProvider $tokenProvider) { - $this->connection = $connection; - $this->time = $timeFactory; - $this->tokenProvider = $tokenProvider; + public function __construct( + private IDBConnection $connection, + private ITimeFactory $time, + private TokenProvider $tokenProvider, + ) { } public function getName(): string { @@ -63,7 +34,7 @@ class SetTokenExpiration implements IRepairStep { $qb->select('*') ->from('oauth2_access_tokens'); - $cursor = $qb->execute(); + $cursor = $qb->executeQuery(); while ($row = $cursor->fetch()) { $token = AccessToken::fromRow($row); diff --git a/apps/oauth2/lib/Migration/Version010401Date20181207190718.php b/apps/oauth2/lib/Migration/Version010401Date20181207190718.php index 311c07d84c2..8648826d53c 100644 --- a/apps/oauth2/lib/Migration/Version010401Date20181207190718.php +++ b/apps/oauth2/lib/Migration/Version010401Date20181207190718.php @@ -3,27 +3,9 @@ declare(strict_types=1); /** - * @copyright Copyright 2018, Roeland Jago Douma <roeland@famdouma.nl> - * - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Migration; use Closure; diff --git a/apps/oauth2/lib/Migration/Version010402Date20190107124745.php b/apps/oauth2/lib/Migration/Version010402Date20190107124745.php index 837d9c1937d..08099c625f7 100644 --- a/apps/oauth2/lib/Migration/Version010402Date20190107124745.php +++ b/apps/oauth2/lib/Migration/Version010402Date20190107124745.php @@ -3,27 +3,9 @@ declare(strict_types=1); /** - * @copyright Copyright 2018, Roeland Jago Douma <roeland@famdouma.nl> - * - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Migration; use Closure; @@ -43,9 +25,12 @@ class Version010402Date20190107124745 extends SimpleMigrationStep { /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); - $table = $schema->getTable('oauth2_clients'); - $table->dropIndex('oauth2_client_id_idx'); - $table->addUniqueIndex(['client_identifier'], 'oauth2_client_id_idx'); - return $schema; + // During an ownCloud migration, the client_identifier column identifier might not exist yet. + if ($schema->getTable('oauth2_clients')->hasColumn('client_identifier')) { + $table = $schema->getTable('oauth2_clients'); + $table->dropIndex('oauth2_client_id_idx'); + $table->addUniqueIndex(['client_identifier'], 'oauth2_client_id_idx'); + return $schema; + } } } diff --git a/apps/oauth2/lib/Migration/Version011601Date20230522143227.php b/apps/oauth2/lib/Migration/Version011601Date20230522143227.php new file mode 100644 index 00000000000..f2998202e02 --- /dev/null +++ b/apps/oauth2/lib/Migration/Version011601Date20230522143227.php @@ -0,0 +1,65 @@ +<?php + +declare(strict_types=1); + +/** + * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +namespace OCA\OAuth2\Migration; + +use Closure; +use OCP\DB\ISchemaWrapper; +use OCP\DB\QueryBuilder\IQueryBuilder; +use OCP\IDBConnection; +use OCP\Migration\IOutput; +use OCP\Migration\SimpleMigrationStep; +use OCP\Security\ICrypto; + +class Version011601Date20230522143227 extends SimpleMigrationStep { + + public function __construct( + private IDBConnection $connection, + private ICrypto $crypto, + ) { + } + + public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) { + /** @var ISchemaWrapper $schema */ + $schema = $schemaClosure(); + + if ($schema->hasTable('oauth2_clients')) { + $table = $schema->getTable('oauth2_clients'); + if ($table->hasColumn('secret')) { + $column = $table->getColumn('secret'); + $column->setLength(512); + return $schema; + } + } + + return null; + } + + public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options) { + $qbUpdate = $this->connection->getQueryBuilder(); + $qbUpdate->update('oauth2_clients') + ->set('secret', $qbUpdate->createParameter('updateSecret')) + ->where( + $qbUpdate->expr()->eq('id', $qbUpdate->createParameter('updateId')) + ); + + $qbSelect = $this->connection->getQueryBuilder(); + $qbSelect->select('id', 'secret') + ->from('oauth2_clients'); + $req = $qbSelect->executeQuery(); + while ($row = $req->fetch()) { + $id = $row['id']; + $secret = $row['secret']; + $encryptedSecret = $this->crypto->encrypt($secret); + $qbUpdate->setParameter('updateSecret', $encryptedSecret, IQueryBuilder::PARAM_STR); + $qbUpdate->setParameter('updateId', $id, IQueryBuilder::PARAM_INT); + $qbUpdate->executeStatement(); + } + $req->closeCursor(); + } +} diff --git a/apps/oauth2/lib/Migration/Version011602Date20230613160650.php b/apps/oauth2/lib/Migration/Version011602Date20230613160650.php new file mode 100644 index 00000000000..06efce324b2 --- /dev/null +++ b/apps/oauth2/lib/Migration/Version011602Date20230613160650.php @@ -0,0 +1,39 @@ +<?php + +declare(strict_types=1); + +/** + * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +namespace OCA\OAuth2\Migration; + +use Closure; +use OCP\DB\ISchemaWrapper; +use OCP\Migration\IOutput; +use OCP\Migration\SimpleMigrationStep; + +class Version011602Date20230613160650 extends SimpleMigrationStep { + + public function __construct( + ) { + } + + public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) { + /** @var ISchemaWrapper $schema */ + $schema = $schemaClosure(); + + if ($schema->hasTable('oauth2_clients')) { + $table = $schema->getTable('oauth2_clients'); + if ($table->hasColumn('secret')) { + $column = $table->getColumn('secret'); + // we still change the column length in case Version011601Date20230522143227 + // has run before it was changed to set the length to 512 + $column->setLength(512); + return $schema; + } + } + + return null; + } +} diff --git a/apps/oauth2/lib/Migration/Version011603Date20230620111039.php b/apps/oauth2/lib/Migration/Version011603Date20230620111039.php new file mode 100644 index 00000000000..853eacd2873 --- /dev/null +++ b/apps/oauth2/lib/Migration/Version011603Date20230620111039.php @@ -0,0 +1,69 @@ +<?php + +declare(strict_types=1); + +/** + * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +namespace OCA\OAuth2\Migration; + +use Closure; +use OCP\DB\ISchemaWrapper; +use OCP\DB\QueryBuilder\IQueryBuilder; +use OCP\DB\Types; +use OCP\IDBConnection; +use OCP\Migration\IOutput; +use OCP\Migration\SimpleMigrationStep; + +class Version011603Date20230620111039 extends SimpleMigrationStep { + + public function __construct( + private IDBConnection $connection, + ) { + } + + public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper { + /** @var ISchemaWrapper $schema */ + $schema = $schemaClosure(); + + if ($schema->hasTable('oauth2_access_tokens')) { + $table = $schema->getTable('oauth2_access_tokens'); + $dbChanged = false; + if (!$table->hasColumn('code_created_at')) { + $table->addColumn('code_created_at', Types::BIGINT, [ + 'notnull' => true, + 'default' => 0, + 'unsigned' => true, + ]); + $dbChanged = true; + } + if (!$table->hasColumn('token_count')) { + $table->addColumn('token_count', Types::BIGINT, [ + 'notnull' => true, + 'default' => 0, + 'unsigned' => true, + ]); + $dbChanged = true; + } + if (!$table->hasIndex('oauth2_tk_c_created_idx')) { + $table->addIndex(['token_count', 'code_created_at'], 'oauth2_tk_c_created_idx'); + $dbChanged = true; + } + if ($dbChanged) { + return $schema; + } + } + + return null; + } + + public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void { + // we consider that existing access_tokens have already produced at least one oauth token + // which prevents cleaning them up + $qbUpdate = $this->connection->getQueryBuilder(); + $qbUpdate->update('oauth2_access_tokens') + ->set('token_count', $qbUpdate->createNamedParameter(1, IQueryBuilder::PARAM_INT)); + $qbUpdate->executeStatement(); + } +} diff --git a/apps/oauth2/lib/Migration/Version011901Date20240829164356.php b/apps/oauth2/lib/Migration/Version011901Date20240829164356.php new file mode 100644 index 00000000000..20f5754bf11 --- /dev/null +++ b/apps/oauth2/lib/Migration/Version011901Date20240829164356.php @@ -0,0 +1,49 @@ +<?php + +declare(strict_types=1); + +/** + * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +namespace OCA\OAuth2\Migration; + +use Closure; +use OCP\DB\QueryBuilder\IQueryBuilder; +use OCP\IDBConnection; +use OCP\Migration\IOutput; +use OCP\Migration\SimpleMigrationStep; +use OCP\Security\ICrypto; + +class Version011901Date20240829164356 extends SimpleMigrationStep { + + public function __construct( + private IDBConnection $connection, + private ICrypto $crypto, + ) { + } + + public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void { + $qbUpdate = $this->connection->getQueryBuilder(); + $qbUpdate->update('oauth2_clients') + ->set('secret', $qbUpdate->createParameter('updateSecret')) + ->where( + $qbUpdate->expr()->eq('id', $qbUpdate->createParameter('updateId')) + ); + + $qbSelect = $this->connection->getQueryBuilder(); + $qbSelect->select('id', 'secret') + ->from('oauth2_clients'); + $req = $qbSelect->executeQuery(); + while ($row = $req->fetch()) { + $id = $row['id']; + $storedEncryptedSecret = $row['secret']; + $secret = $this->crypto->decrypt($storedEncryptedSecret); + $hashedSecret = bin2hex($this->crypto->calculateHMAC($secret)); + $qbUpdate->setParameter('updateSecret', $hashedSecret, IQueryBuilder::PARAM_STR); + $qbUpdate->setParameter('updateId', $id, IQueryBuilder::PARAM_INT); + $qbUpdate->executeStatement(); + } + $req->closeCursor(); + } +} diff --git a/apps/oauth2/lib/Settings/Admin.php b/apps/oauth2/lib/Settings/Admin.php index 154643255f4..93b6b7bcc3f 100644 --- a/apps/oauth2/lib/Settings/Admin.php +++ b/apps/oauth2/lib/Settings/Admin.php @@ -3,47 +3,26 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @author Lukas Reschke <lukas@statuscode.ch> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Settings; use OCA\OAuth2\Db\ClientMapper; use OCP\AppFramework\Http\TemplateResponse; -use OCP\IInitialStateService; +use OCP\AppFramework\Services\IInitialState; +use OCP\IURLGenerator; use OCP\Settings\ISettings; +use Psr\Log\LoggerInterface; class Admin implements ISettings { - /** @var IInitialStateService */ - private $initialStateService; - - /** @var ClientMapper */ - private $clientMapper; - - public function __construct(IInitialStateService $initialStateService, - ClientMapper $clientMapper) { - $this->initialStateService = $initialStateService; - $this->clientMapper = $clientMapper; + public function __construct( + private IInitialState $initialState, + private ClientMapper $clientMapper, + private IURLGenerator $urlGenerator, + private LoggerInterface $logger, + ) { } public function getForm(): TemplateResponse { @@ -51,15 +30,20 @@ class Admin implements ISettings { $result = []; foreach ($clients as $client) { - $result[] = [ - 'id' => $client->getId(), - 'name' => $client->getName(), - 'redirectUri' => $client->getRedirectUri(), - 'clientId' => $client->getClientIdentifier(), - 'clientSecret' => $client->getSecret(), - ]; + try { + $result[] = [ + 'id' => $client->getId(), + 'name' => $client->getName(), + 'redirectUri' => $client->getRedirectUri(), + 'clientId' => $client->getClientIdentifier(), + 'clientSecret' => '', + ]; + } catch (\Exception $e) { + $this->logger->error('[Settings] OAuth client secret decryption error', ['exception' => $e]); + } } - $this->initialStateService->provideInitialState('oauth2', 'clients', $result); + $this->initialState->provideInitialState('clients', $result); + $this->initialState->provideInitialState('oauth2-doc-link', $this->urlGenerator->linkToDocs('admin-oauth2')); return new TemplateResponse( 'oauth2', diff --git a/apps/oauth2/openapi.json b/apps/oauth2/openapi.json new file mode 100644 index 00000000000..76cd2da3150 --- /dev/null +++ b/apps/oauth2/openapi.json @@ -0,0 +1,227 @@ +{ + "openapi": "3.0.3", + "info": { + "title": "oauth2", + "version": "0.0.1", + "description": "Allows OAuth2 compatible authentication from other web applications.", + "license": { + "name": "agpl" + } + }, + "components": { + "securitySchemes": { + "basic_auth": { + "type": "http", + "scheme": "basic" + }, + "bearer_auth": { + "type": "http", + "scheme": "bearer" + } + }, + "schemas": {} + }, + "paths": { + "/index.php/apps/oauth2/authorize": { + "get": { + "operationId": "login_redirector-authorize", + "summary": "Authorize the user", + "tags": [ + "login_redirector" + ], + "security": [ + {}, + { + "bearer_auth": [] + }, + { + "basic_auth": [] + } + ], + "parameters": [ + { + "name": "client_id", + "in": "query", + "description": "Client ID", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "state", + "in": "query", + "description": "State of the flow", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "response_type", + "in": "query", + "description": "Response type for the flow", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "redirect_uri", + "in": "query", + "description": "URI to redirect to after the flow (is only used for legacy ownCloud clients)", + "schema": { + "type": "string", + "default": "" + } + } + ], + "responses": { + "200": { + "description": "Client not found", + "content": { + "text/html": { + "schema": { + "type": "string" + } + } + } + }, + "303": { + "description": "Redirect to login URL", + "headers": { + "Location": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, + "/index.php/apps/oauth2/api/v1/token": { + "post": { + "operationId": "oauth_api-get-token", + "summary": "Get a token", + "tags": [ + "oauth_api" + ], + "security": [ + {}, + { + "bearer_auth": [] + }, + { + "basic_auth": [] + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "grant_type" + ], + "properties": { + "grant_type": { + "type": "string", + "description": "Token type that should be granted" + }, + "code": { + "type": "string", + "nullable": true, + "description": "Code of the flow" + }, + "refresh_token": { + "type": "string", + "nullable": true, + "description": "Refresh token" + }, + "client_id": { + "type": "string", + "nullable": true, + "description": "Client ID" + }, + "client_secret": { + "type": "string", + "nullable": true, + "description": "Client secret" + } + } + } + } + } + }, + "responses": { + "500": { + "description": "", + "content": { + "text/plain": { + "schema": { + "type": "string" + } + } + } + }, + "200": { + "description": "Token returned", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "access_token", + "token_type", + "expires_in", + "refresh_token", + "user_id" + ], + "properties": { + "access_token": { + "type": "string" + }, + "token_type": { + "type": "string" + }, + "expires_in": { + "type": "integer", + "format": "int64" + }, + "refresh_token": { + "type": "string" + }, + "user_id": { + "type": "string" + } + } + } + } + } + }, + "400": { + "description": "Getting token is not possible", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "error" + ], + "properties": { + "error": { + "type": "string" + } + } + } + } + } + } + } + } + } + }, + "tags": [] +} diff --git a/apps/oauth2/openapi.json.license b/apps/oauth2/openapi.json.license new file mode 100644 index 00000000000..83559daa9dc --- /dev/null +++ b/apps/oauth2/openapi.json.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors +SPDX-License-Identifier: AGPL-3.0-or-later
\ No newline at end of file diff --git a/apps/oauth2/src/App.vue b/apps/oauth2/src/App.vue index 86243b63ee6..941317a3e64 100644 --- a/apps/oauth2/src/App.vue +++ b/apps/oauth2/src/App.vue @@ -1,38 +1,28 @@ <!-- - - @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl> - - - - @author Roeland Jago Douma <roeland@famdouma.nl> - - - - @license GNU AGPL version 3 or any later version - - - - This program is free software: you can redistribute it and/or modify - - it under the terms of the GNU Affero General Public License as - - published by the Free Software Foundation, either version 3 of the - - License, or (at your option) any later version. - - - - This program is distributed in the hope that it will be useful, - - but WITHOUT ANY WARRANTY; without even the implied warranty of - - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - - GNU Affero General Public License for more details. - - - - You should have received a copy of the GNU Affero General Public License - - along with this program. If not, see <http://www.gnu.org/licenses/>. - - - --> + - SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + - SPDX-License-Identifier: AGPL-3.0-or-later +--> <template> - <div id="oauth2" class="section"> - <h2>{{ t('oauth2', 'OAuth 2.0 clients') }}</h2> - <p class="settings-hint"> - {{ t('oauth2', 'OAuth 2.0 allows external services to request access to {instanceName}.', { instanceName: OC.theme.name}) }} - </p> + <NcSettingsSection :name="t('oauth2', 'OAuth 2.0 clients')" + :description="t('oauth2', 'OAuth 2.0 allows external services to request access to {instanceName}.', { instanceName })" + :doc-url="oauthDocLink"> <table v-if="clients.length > 0" class="grid"> <thead> <tr> - <th id="headerContent"> - + <th> + {{ t('oauth2', 'Name') }} + </th> + <th> + {{ t('oauth2', 'Redirection URI') }} + </th> + <th> + {{ t('oauth2', 'Client Identifier') }} </th> - <th id="headerRemove"> - + <th> + {{ t('oauth2', 'Secret key') }} + </th> + <th> + {{ t('oauth2', 'Delete client') }} </th> </tr> </thead> @@ -43,35 +33,55 @@ @delete="deleteClient" /> </tbody> </table> + <NcNoteCard v-if="showSecretWarning" + type="warning"> + {{ t('oauth2', 'Make sure you store the secret key, it cannot be recovered.') }} + </NcNoteCard> <br> <h3>{{ t('oauth2', 'Add client') }}</h3> <span v-if="newClient.error" class="msg error">{{ newClient.errorMsg }}</span> - <form @submit.prevent="addClient"> - <input id="name" - v-model="newClient.name" + <form class="oauth2-form" @submit.prevent="addClient"> + <NcTextField id="name" + :value.sync="newClient.name" type="text" + class="oauth2-form--input" name="name" - :placeholder="t('oauth2', 'Name')"> - <input id="redirectUri" - v-model="newClient.redirectUri" + :label="t('oauth2', 'Name')" + :placeholder="t('oauth2', 'Name')" /> + <NcTextField id="redirectUri" + :value.sync="newClient.redirectUri" type="url" + class="oauth2-form--input" name="redirectUri" - :placeholder="t('oauth2', 'Redirection URI')"> - <input type="submit" class="button" :value="t('oauth2', 'Add')"> + :label="t('oauth2', 'Redirection URI')" + :placeholder="t('oauth2', 'Redirection URI')" /> + <NcButton native-type="submit" class="inline-button"> + {{ t('oauth2', 'Add') }} + </NcButton> </form> - </div> + </NcSettingsSection> </template> <script> import axios from '@nextcloud/axios' -import OAuthItem from './components/OAuthItem' +import OAuthItem from './components/OAuthItem.vue' import { generateUrl } from '@nextcloud/router' +import { getCapabilities } from '@nextcloud/capabilities' +import NcSettingsSection from '@nextcloud/vue/components/NcSettingsSection' +import NcButton from '@nextcloud/vue/components/NcButton' +import NcNoteCard from '@nextcloud/vue/components/NcNoteCard' +import { loadState } from '@nextcloud/initial-state' +import NcTextField from '@nextcloud/vue/components/NcTextField' export default { name: 'App', components: { OAuthItem, + NcSettingsSection, + NcButton, + NcTextField, + NcNoteCard, }, props: { clients: { @@ -87,12 +97,20 @@ export default { errorMsg: '', error: false, }, + oauthDocLink: loadState('oauth2', 'oauth2-doc-link'), + showSecretWarning: false, } }, + computed: { + instanceName() { + return getCapabilities().theming.name + }, + }, methods: { deleteClient(id) { axios.delete(generateUrl('apps/oauth2/clients/{id}', { id })) - .then((response) => { + .then(() => { + // eslint-disable-next-line vue/no-mutating-props this.clients = this.clients.filter(client => client.id !== id) }) }, @@ -104,9 +122,11 @@ export default { { name: this.newClient.name, redirectUri: this.newClient.redirectUri, - } + }, ).then(response => { + // eslint-disable-next-line vue/no-mutating-props this.clients.push(response.data) + this.showSecretWarning = true this.newClient.name = '' this.newClient.redirectUri = '' @@ -122,4 +142,20 @@ export default { table { max-width: 800px; } + + /** Overwrite button height and position to be aligned with the text input */ + .inline-button { + min-height: 34px !important; + display: inline-flex !important; + } + + .oauth2-form { + display: flex; + flex-direction: row; + } + + .oauth2-form--input { + max-width: 200px; + margin-inline-end: 10px; + } </style> diff --git a/apps/oauth2/src/components/OAuthItem.vue b/apps/oauth2/src/components/OAuthItem.vue index 72d04d2aac3..5a8f1556203 100644 --- a/apps/oauth2/src/components/OAuthItem.vue +++ b/apps/oauth2/src/components/OAuthItem.vue @@ -1,55 +1,51 @@ <!-- - - @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl> - - - - @author Roeland Jago Douma <roeland@famdouma.nl> - - - - @license GNU AGPL version 3 or any later version - - - - This program is free software: you can redistribute it and/or modify - - it under the terms of the GNU Affero General Public License as - - published by the Free Software Foundation, either version 3 of the - - License, or (at your option) any later version. - - - - This program is distributed in the hope that it will be useful, - - but WITHOUT ANY WARRANTY; without even the implied warranty of - - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - - GNU Affero General Public License for more details. - - - - You should have received a copy of the GNU Affero General Public License - - along with this program. If not, see <http://www.gnu.org/licenses/>. - - - --> + - SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + - SPDX-License-Identifier: AGPL-3.0-or-later +--> <template> <tr> + <td>{{ name }}</td> + <td>{{ redirectUri }}</td> + <td><code>{{ clientId }}</code></td> <td> - <table class="inline"> - <tr> - <td>{{ t('oauth2', 'Name') }}</td> - <td>{{ name }}</td> - </tr> - <tr> - <td>{{ t('oauth2', 'Redirection URI') }}</td> - <td>{{ redirectUri }}</td> - </tr> - <tr> - <td>{{ t('oauth2', 'Client Identifier') }}</td> - <td><code>{{ clientId }}</code></td> - </tr> - <tr> - <td>{{ t('oauth2', 'Secret') }}</td> - <td><code>{{ renderedSecret }}</code><a class="icon-toggle has-tooltip" :title="t('oauth2', 'Show client secret')" @click="toggleSecret" /></td> - </tr> - </table> + <div class="action-secret"> + <code>{{ renderedSecret }}</code> + <NcButton v-if="clientSecret !== ''" + type="tertiary-no-background" + :aria-label="toggleAriaLabel" + @click="toggleSecret"> + <template #icon> + <EyeOutline :size="20" /> + </template> + </NcButton> + </div> </td> <td class="action-column"> - <span><a class="icon-delete has-tooltip" :title="t('oauth2', 'Delete')" @click="$emit('delete', id)" /></span> + <NcButton type="tertiary-no-background" + :aria-label="t('oauth2', 'Delete')" + @click="$emit('delete', id)"> + <template #icon> + <Delete :size="20" + :title="t('oauth2', 'Delete')" /> + </template> + </NcButton> </td> </tr> </template> <script> + +import Delete from 'vue-material-design-icons/DeleteOutline.vue' +import EyeOutline from 'vue-material-design-icons/EyeOutline.vue' +import NcButton from '@nextcloud/vue/components/NcButton' + export default { name: 'OAuthItem', + components: { + Delete, + NcButton, + EyeOutline, + }, props: { client: { type: Object, @@ -74,6 +70,12 @@ export default { return '****' } }, + toggleAriaLabel() { + if (!this.renderSecret) { + return t('oauth2', 'Show client secret') + } + return t('oauth2', 'Hide client secret') + }, }, methods: { toggleSecret() { @@ -84,20 +86,28 @@ export default { </script> <style scoped> - .icon-toggle, - .icon-delete { - display: inline-block; - width: 16px; - height: 16px; - padding: 10px; - vertical-align: middle; + .action-secret { + display: flex; + align-items: center; } + + .action-secret code { + padding-top: 5px; + } + td code { display: inline-block; vertical-align: middle; } + table.inline td { border: none; padding: 5px; } + + .action-column { + display: flex; + justify-content: flex-end; + padding-inline-end: 0; + } </style> diff --git a/apps/oauth2/src/main.js b/apps/oauth2/src/main.js index 42fcb522eca..10d537455df 100644 --- a/apps/oauth2/src/main.js +++ b/apps/oauth2/src/main.js @@ -1,23 +1,6 @@ /** - * @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl> - * - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ import Vue from 'vue' diff --git a/apps/oauth2/templates/admin.php b/apps/oauth2/templates/admin.php index 284a52231e9..844eeee2c08 100644 --- a/apps/oauth2/templates/admin.php +++ b/apps/oauth2/templates/admin.php @@ -1,25 +1,10 @@ <?php /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ -script('oauth2', 'oauth2'); +\OCP\Util::addScript('oauth2', 'oauth2', 'core'); ?> diff --git a/apps/oauth2/tests/Controller/LoginRedirectorControllerTest.php b/apps/oauth2/tests/Controller/LoginRedirectorControllerTest.php index c3dfa4114b3..04ac0bfbd28 100644 --- a/apps/oauth2/tests/Controller/LoginRedirectorControllerTest.php +++ b/apps/oauth2/tests/Controller/LoginRedirectorControllerTest.php @@ -1,59 +1,42 @@ <?php + /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @author Daniel Kesselberg <mail@danielkesselberg.de> - * @author Lukas Reschke <lukas@statuscode.ch> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Tests\Controller; +use OC\Core\Controller\ClientFlowLoginController; use OCA\OAuth2\Controller\LoginRedirectorController; use OCA\OAuth2\Db\Client; use OCA\OAuth2\Db\ClientMapper; use OCA\OAuth2\Exceptions\ClientNotFoundException; use OCP\AppFramework\Http\RedirectResponse; use OCP\AppFramework\Http\TemplateResponse; +use OCP\IAppConfig; +use OCP\IConfig; use OCP\IL10N; use OCP\IRequest; use OCP\ISession; use OCP\IURLGenerator; +use OCP\Security\ISecureRandom; +use PHPUnit\Framework\MockObject\MockObject; use Test\TestCase; /** * @group DB */ class LoginRedirectorControllerTest extends TestCase { - /** @var IRequest|\PHPUnit\Framework\MockObject\MockObject */ - private $request; - /** @var IURLGenerator|\PHPUnit\Framework\MockObject\MockObject */ - private $urlGenerator; - /** @var ClientMapper|\PHPUnit\Framework\MockObject\MockObject */ - private $clientMapper; - /** @var ISession|\PHPUnit\Framework\MockObject\MockObject */ - private $session; - /** @var LoginRedirectorController */ - private $loginRedirectorController; - /** @var IL10N */ - private $l; + private IRequest&MockObject $request; + private IURLGenerator&MockObject $urlGenerator; + private ClientMapper&MockObject $clientMapper; + private ISession&MockObject $session; + private IL10N&MockObject $l; + private ISecureRandom&MockObject $random; + private IAppConfig&MockObject $appConfig; + private IConfig&MockObject $config; + + private LoginRedirectorController $loginRedirectorController; protected function setUp(): void { parent::setUp(); @@ -63,6 +46,9 @@ class LoginRedirectorControllerTest extends TestCase { $this->clientMapper = $this->createMock(ClientMapper::class); $this->session = $this->createMock(ISession::class); $this->l = $this->createMock(IL10N::class); + $this->random = $this->createMock(ISecureRandom::class); + $this->appConfig = $this->createMock(IAppConfig::class); + $this->config = $this->createMock(IConfig::class); $this->loginRedirectorController = new LoginRedirectorController( 'oauth2', @@ -70,11 +56,14 @@ class LoginRedirectorControllerTest extends TestCase { $this->urlGenerator, $this->clientMapper, $this->session, - $this->l + $this->l, + $this->random, + $this->appConfig, + $this->config, ); } - public function testAuthorize() { + public function testAuthorize(): void { $client = new Client(); $client->setClientIdentifier('MyClientIdentifier'); $this->clientMapper @@ -93,15 +82,74 @@ class LoginRedirectorControllerTest extends TestCase { 'core.ClientFlowLogin.showAuthPickerPage', [ 'clientIdentifier' => 'MyClientIdentifier', + 'providedRedirectUri' => '', + ] + ) + ->willReturn('https://example.com/?clientIdentifier=foo'); + $this->config + ->expects($this->once()) + ->method('getSystemValueBool') + ->with('oauth2.enable_oc_clients', false) + ->willReturn(false); + + $expected = new RedirectResponse('https://example.com/?clientIdentifier=foo'); + $this->assertEquals($expected, $this->loginRedirectorController->authorize('MyClientId', 'MyState', 'code')); + } + + public function testAuthorizeSkipPicker(): void { + $client = new Client(); + $client->setName('MyClientName'); + $client->setClientIdentifier('MyClientIdentifier'); + $this->clientMapper + ->expects($this->once()) + ->method('getByIdentifier') + ->with('MyClientId') + ->willReturn($client); + $this->session + ->expects(static::exactly(2)) + ->method('set') + ->willReturnCallback(function (string $key, string $value): void { + switch ([$key, $value]) { + case ['oauth.state', 'MyState']: + case [ClientFlowLoginController::STATE_NAME, 'MyStateToken']: + /* Expected */ + break; + default: + throw new LogicException(); + } + }); + $this->appConfig + ->expects(static::once()) + ->method('getValueArray') + ->with('oauth2', 'skipAuthPickerApplications', []) + ->willReturn(['MyClientName']); + $this->random + ->expects(static::once()) + ->method('generate') + ->willReturn('MyStateToken'); + $this->urlGenerator + ->expects($this->once()) + ->method('linkToRouteAbsolute') + ->with( + 'core.ClientFlowLogin.grantPage', + [ + 'stateToken' => 'MyStateToken', + 'clientIdentifier' => 'MyClientIdentifier', + 'providedRedirectUri' => '', ] ) ->willReturn('https://example.com/?clientIdentifier=foo'); + $this->config + ->expects($this->once()) + ->method('getSystemValueBool') + ->with('oauth2.enable_oc_clients', false) + ->willReturn(false); $expected = new RedirectResponse('https://example.com/?clientIdentifier=foo'); $this->assertEquals($expected, $this->loginRedirectorController->authorize('MyClientId', 'MyState', 'code')); } - public function testAuthorizeWrongResponseType() { + public function testAuthorizeWrongResponseType(): void { $client = new Client(); $client->setClientIdentifier('MyClientIdentifier'); $client->setRedirectUri('http://foo.bar'); @@ -119,7 +167,75 @@ class LoginRedirectorControllerTest extends TestCase { $this->assertEquals($expected, $this->loginRedirectorController->authorize('MyClientId', 'MyState', 'wrongcode')); } - public function testClientNotFound() { + public function testAuthorizeWithLegacyOcClient(): void { + $client = new Client(); + $client->setClientIdentifier('MyClientIdentifier'); + $client->setRedirectUri('http://localhost:*'); + $this->clientMapper + ->expects($this->once()) + ->method('getByIdentifier') + ->with('MyClientId') + ->willReturn($client); + $this->session + ->expects($this->once()) + ->method('set') + ->with('oauth.state', 'MyState'); + $this->urlGenerator + ->expects($this->once()) + ->method('linkToRouteAbsolute') + ->with( + 'core.ClientFlowLogin.showAuthPickerPage', + [ + 'clientIdentifier' => 'MyClientIdentifier', + 'providedRedirectUri' => 'http://localhost:30000', + ] + ) + ->willReturn('https://example.com/?clientIdentifier=foo&providedRedirectUri=http://localhost:30000'); + $this->config + ->expects($this->once()) + ->method('getSystemValueBool') + ->with('oauth2.enable_oc_clients', false) + ->willReturn(true); + + $expected = new RedirectResponse('https://example.com/?clientIdentifier=foo&providedRedirectUri=http://localhost:30000'); + $this->assertEquals($expected, $this->loginRedirectorController->authorize('MyClientId', 'MyState', 'code', 'http://localhost:30000')); + } + + public function testAuthorizeNotForwardingUntrustedURIs(): void { + $client = new Client(); + $client->setClientIdentifier('MyClientIdentifier'); + $this->clientMapper + ->expects($this->once()) + ->method('getByIdentifier') + ->with('MyClientId') + ->willReturn($client); + $this->session + ->expects($this->once()) + ->method('set') + ->with('oauth.state', 'MyState'); + $this->urlGenerator + ->expects($this->once()) + ->method('linkToRouteAbsolute') + ->with( + 'core.ClientFlowLogin.showAuthPickerPage', + [ + 'clientIdentifier' => 'MyClientIdentifier', + 'providedRedirectUri' => '', + ] + ) + ->willReturn('https://example.com/?clientIdentifier=foo'); + $this->config + ->expects($this->once()) + ->method('getSystemValueBool') + ->with('oauth2.enable_oc_clients', false) + ->willReturn(false); + + $expected = new RedirectResponse('https://example.com/?clientIdentifier=foo'); + $this->assertEquals($expected, $this->loginRedirectorController->authorize('MyClientId', 'MyState', 'code', 'http://untrusted-uri.com')); + } + + + public function testClientNotFound(): void { $clientNotFound = new ClientNotFoundException('could not find client test123', 0); $this->clientMapper ->expects($this->once()) diff --git a/apps/oauth2/tests/Controller/OauthApiControllerTest.php b/apps/oauth2/tests/Controller/OauthApiControllerTest.php index 414bcd3e432..53dd8549196 100644 --- a/apps/oauth2/tests/Controller/OauthApiControllerTest.php +++ b/apps/oauth2/tests/Controller/OauthApiControllerTest.php @@ -1,36 +1,15 @@ <?php + /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Lukas Reschke <lukas@statuscode.ch> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Tests\Controller; use OC\Authentication\Exceptions\ExpiredTokenException; use OC\Authentication\Exceptions\InvalidTokenException; -use OC\Authentication\Token\DefaultToken; use OC\Authentication\Token\IProvider as TokenProvider; -use OC\Security\Bruteforce\Throttler; +use OC\Authentication\Token\PublicKeyToken; use OCA\OAuth2\Controller\OauthApiController; use OCA\OAuth2\Db\AccessToken; use OCA\OAuth2\Db\AccessTokenMapper; @@ -42,10 +21,17 @@ use OCP\AppFramework\Http; use OCP\AppFramework\Http\JSONResponse; use OCP\AppFramework\Utility\ITimeFactory; use OCP\IRequest; +use OCP\Security\Bruteforce\IThrottler; use OCP\Security\ICrypto; use OCP\Security\ISecureRandom; +use Psr\Log\LoggerInterface; use Test\TestCase; +/* We have to use this to add a property to the mocked request and avoid warnings about dynamic properties on PHP>=8.2 */ +abstract class RequestMock implements IRequest { + public array $server = []; +} + class OauthApiControllerTest extends TestCase { /** @var IRequest|\PHPUnit\Framework\MockObject\MockObject */ private $request; @@ -61,22 +47,28 @@ class OauthApiControllerTest extends TestCase { private $secureRandom; /** @var ITimeFactory|\PHPUnit\Framework\MockObject\MockObject */ private $time; - /** @var Throttler|\PHPUnit\Framework\MockObject\MockObject */ + /** @var IThrottler|\PHPUnit\Framework\MockObject\MockObject */ private $throttler; + /** @var LoggerInterface|\PHPUnit\Framework\MockObject\MockObject */ + private $logger; + /** @var ITimeFactory|\PHPUnit\Framework\MockObject\MockObject */ + private $timeFactory; /** @var OauthApiController */ private $oauthApiController; protected function setUp(): void { parent::setUp(); - $this->request = $this->createMock(IRequest::class); + $this->request = $this->createMock(RequestMock::class); $this->crypto = $this->createMock(ICrypto::class); $this->accessTokenMapper = $this->createMock(AccessTokenMapper::class); $this->clientMapper = $this->createMock(ClientMapper::class); $this->tokenProvider = $this->createMock(TokenProvider::class); $this->secureRandom = $this->createMock(ISecureRandom::class); $this->time = $this->createMock(ITimeFactory::class); - $this->throttler = $this->createMock(Throttler::class); + $this->throttler = $this->createMock(IThrottler::class); + $this->logger = $this->createMock(LoggerInterface::class); + $this->timeFactory = $this->createMock(ITimeFactory::class); $this->oauthApiController = new OauthApiController( 'oauth2', @@ -87,22 +79,26 @@ class OauthApiControllerTest extends TestCase { $this->tokenProvider, $this->secureRandom, $this->time, - $this->throttler + $this->logger, + $this->throttler, + $this->timeFactory ); } - public function testGetTokenInvalidGrantType() { + public function testGetTokenInvalidGrantType(): void { $expected = new JSONResponse([ 'error' => 'invalid_grant', ], Http::STATUS_BAD_REQUEST); + $expected->throttle(['invalid_grant' => 'foo']); $this->assertEquals($expected, $this->oauthApiController->getToken('foo', null, null, null, null)); } - public function testGetTokenInvalidCode() { + public function testGetTokenInvalidCode(): void { $expected = new JSONResponse([ 'error' => 'invalid_request', ], Http::STATUS_BAD_REQUEST); + $expected->throttle(['invalid_request' => 'token not found', 'code' => 'invalidcode']); $this->accessTokenMapper->method('getByCode') ->with('invalidcode') @@ -111,10 +107,94 @@ class OauthApiControllerTest extends TestCase { $this->assertEquals($expected, $this->oauthApiController->getToken('authorization_code', 'invalidcode', null, null, null)); } - public function testGetTokenInvalidRefreshToken() { + public function testGetTokenExpiredCode(): void { + $codeCreatedAt = 100; + $expiredSince = 123; + $expected = new JSONResponse([ 'error' => 'invalid_request', ], Http::STATUS_BAD_REQUEST); + $expected->throttle(['invalid_request' => 'authorization_code_expired', 'expired_since' => $expiredSince]); + + $accessToken = new AccessToken(); + $accessToken->setClientId(42); + $accessToken->setCodeCreatedAt($codeCreatedAt); + + $this->accessTokenMapper->method('getByCode') + ->with('validcode') + ->willReturn($accessToken); + + $tsNow = $codeCreatedAt + OauthApiController::AUTHORIZATION_CODE_EXPIRES_AFTER + $expiredSince; + $dateNow = (new \DateTimeImmutable())->setTimestamp($tsNow); + $this->timeFactory->method('now') + ->willReturn($dateNow); + + $this->assertEquals($expected, $this->oauthApiController->getToken('authorization_code', 'validcode', null, null, null)); + } + + public function testGetTokenWithCodeForActiveToken(): void { + // if a token has already delivered oauth tokens, + // it should not be possible to get a new oauth token from a valid authorization code + $codeCreatedAt = 100; + + $expected = new JSONResponse([ + 'error' => 'invalid_request', + ], Http::STATUS_BAD_REQUEST); + $expected->throttle(['invalid_request' => 'authorization_code_received_for_active_token']); + + $accessToken = new AccessToken(); + $accessToken->setClientId(42); + $accessToken->setCodeCreatedAt($codeCreatedAt); + $accessToken->setTokenCount(1); + + $this->accessTokenMapper->method('getByCode') + ->with('validcode') + ->willReturn($accessToken); + + $tsNow = $codeCreatedAt + 1; + $dateNow = (new \DateTimeImmutable())->setTimestamp($tsNow); + $this->timeFactory->method('now') + ->willReturn($dateNow); + + $this->assertEquals($expected, $this->oauthApiController->getToken('authorization_code', 'validcode', null, null, null)); + } + + public function testGetTokenClientDoesNotExist(): void { + // In this test, the token's authorization code is valid and has not expired + // and we check what happens when the associated Oauth client does not exist + $codeCreatedAt = 100; + + $expected = new JSONResponse([ + 'error' => 'invalid_request', + ], Http::STATUS_BAD_REQUEST); + $expected->throttle(['invalid_request' => 'client not found', 'client_id' => 42]); + + $accessToken = new AccessToken(); + $accessToken->setClientId(42); + $accessToken->setCodeCreatedAt($codeCreatedAt); + + $this->accessTokenMapper->method('getByCode') + ->with('validcode') + ->willReturn($accessToken); + + // 'now' is before the token's authorization code expiration + $tsNow = $codeCreatedAt + OauthApiController::AUTHORIZATION_CODE_EXPIRES_AFTER - 1; + $dateNow = (new \DateTimeImmutable())->setTimestamp($tsNow); + $this->timeFactory->method('now') + ->willReturn($dateNow); + + $this->clientMapper->method('getByUid') + ->with(42) + ->willThrowException(new ClientNotFoundException()); + + $this->assertEquals($expected, $this->oauthApiController->getToken('authorization_code', 'validcode', null, null, null)); + } + + public function testRefreshTokenInvalidRefreshToken(): void { + $expected = new JSONResponse([ + 'error' => 'invalid_request', + ], Http::STATUS_BAD_REQUEST); + $expected->throttle(['invalid_request' => 'token not found', 'code' => 'invalidrefresh']); $this->accessTokenMapper->method('getByCode') ->with('invalidrefresh') @@ -123,10 +203,11 @@ class OauthApiControllerTest extends TestCase { $this->assertEquals($expected, $this->oauthApiController->getToken('refresh_token', null, 'invalidrefresh', null, null)); } - public function testGetTokenClientDoesNotExist() { + public function testRefreshTokenClientDoesNotExist(): void { $expected = new JSONResponse([ 'error' => 'invalid_request', ], Http::STATUS_BAD_REQUEST); + $expected->throttle(['invalid_request' => 'client not found', 'client_id' => 42]); $accessToken = new AccessToken(); $accessToken->setClientId(42); @@ -142,7 +223,7 @@ class OauthApiControllerTest extends TestCase { $this->assertEquals($expected, $this->oauthApiController->getToken('refresh_token', null, 'validrefresh', null, null)); } - public function invalidClientProvider() { + public static function invalidClientProvider() { return [ ['invalidClientId', 'invalidClientSecret'], ['clientId', 'invalidClientSecret'], @@ -151,15 +232,16 @@ class OauthApiControllerTest extends TestCase { } /** - * @dataProvider invalidClientProvider * * @param string $clientId * @param string $clientSecret */ - public function testGetTokenInvalidClient($clientId, $clientSecret) { + #[\PHPUnit\Framework\Attributes\DataProvider('invalidClientProvider')] + public function testRefreshTokenInvalidClient($clientId, $clientSecret): void { $expected = new JSONResponse([ 'error' => 'invalid_client', ], Http::STATUS_BAD_REQUEST); + $expected->throttle(['invalid_client' => 'client ID or secret does not match']); $accessToken = new AccessToken(); $accessToken->setClientId(42); @@ -168,9 +250,20 @@ class OauthApiControllerTest extends TestCase { ->with('validrefresh') ->willReturn($accessToken); + $this->crypto + ->method('calculateHMAC') + ->with($this->callback(function (string $text) { + return $text === 'clientSecret' || $text === 'invalidClientSecret'; + })) + ->willReturnCallback(function (string $text) { + return $text === 'clientSecret' + ? 'hashedClientSecret' + : 'hashedInvalidClientSecret'; + }); + $client = new Client(); $client->setClientIdentifier('clientId'); - $client->setSecret('clientSecret'); + $client->setSecret(bin2hex('hashedClientSecret')); $this->clientMapper->method('getByUid') ->with(42) ->willReturn($client); @@ -178,10 +271,11 @@ class OauthApiControllerTest extends TestCase { $this->assertEquals($expected, $this->oauthApiController->getToken('refresh_token', null, 'validrefresh', $clientId, $clientSecret)); } - public function testGetTokenInvalidAppToken() { + public function testRefreshTokenInvalidAppToken(): void { $expected = new JSONResponse([ 'error' => 'invalid_request', ], Http::STATUS_BAD_REQUEST); + $expected->throttle(['invalid_request' => 'token is invalid']); $accessToken = new AccessToken(); $accessToken->setClientId(42); @@ -194,16 +288,20 @@ class OauthApiControllerTest extends TestCase { $client = new Client(); $client->setClientIdentifier('clientId'); - $client->setSecret('clientSecret'); + $client->setSecret(bin2hex('hashedClientSecret')); $this->clientMapper->method('getByUid') ->with(42) ->willReturn($client); - $this->crypto->method('decrypt') - ->with( - 'encryptedToken', - 'validrefresh' - )->willReturn('decryptedToken'); + $this->crypto + ->method('decrypt') + ->with('encryptedToken') + ->willReturn('decryptedToken'); + + $this->crypto + ->method('calculateHMAC') + ->with('clientSecret') + ->willReturn('hashedClientSecret'); $this->tokenProvider->method('getTokenById') ->with(1337) @@ -216,7 +314,7 @@ class OauthApiControllerTest extends TestCase { $this->assertEquals($expected, $this->oauthApiController->getToken('refresh_token', null, 'validrefresh', 'clientId', 'clientSecret')); } - public function testGetTokenValidAppToken() { + public function testRefreshTokenValidAppToken(): void { $accessToken = new AccessToken(); $accessToken->setClientId(42); $accessToken->setTokenId(1337); @@ -228,18 +326,22 @@ class OauthApiControllerTest extends TestCase { $client = new Client(); $client->setClientIdentifier('clientId'); - $client->setSecret('clientSecret'); + $client->setSecret(bin2hex('hashedClientSecret')); $this->clientMapper->method('getByUid') ->with(42) ->willReturn($client); - $this->crypto->method('decrypt') - ->with( - 'encryptedToken', - 'validrefresh' - )->willReturn('decryptedToken'); + $this->crypto + ->method('decrypt') + ->with('encryptedToken') + ->willReturn('decryptedToken'); - $appToken = new DefaultToken(); + $this->crypto + ->method('calculateHMAC') + ->with('clientSecret') + ->willReturn('hashedClientSecret'); + + $appToken = new PublicKeyToken(); $appToken->setUid('userId'); $this->tokenProvider->method('getTokenById') ->with(1337) @@ -251,7 +353,7 @@ class OauthApiControllerTest extends TestCase { $this->secureRandom->method('generate') ->willReturnCallback(function ($len) { - return 'random'.$len; + return 'random' . $len; }); $this->tokenProvider->expects($this->once()) @@ -268,7 +370,7 @@ class OauthApiControllerTest extends TestCase { $this->tokenProvider->expects($this->once()) ->method('updateToken') ->with( - $this->callback(function (DefaultToken $token) { + $this->callback(function (PublicKeyToken $token) { return $token->getExpires() === 4600; }) ); @@ -281,8 +383,8 @@ class OauthApiControllerTest extends TestCase { ->method('update') ->with( $this->callback(function (AccessToken $token) { - return $token->getHashedCode() === hash('sha512', 'random128') && - $token->getEncryptedToken() === 'newEncryptedToken'; + return $token->getHashedCode() === hash('sha512', 'random128') + && $token->getEncryptedToken() === 'newEncryptedToken'; }) ); @@ -308,7 +410,7 @@ class OauthApiControllerTest extends TestCase { $this->assertEquals($expected, $this->oauthApiController->getToken('refresh_token', null, 'validrefresh', 'clientId', 'clientSecret')); } - public function testGetTokenValidAppTokenBasicAuth() { + public function testRefreshTokenValidAppTokenBasicAuth(): void { $accessToken = new AccessToken(); $accessToken->setClientId(42); $accessToken->setTokenId(1337); @@ -320,18 +422,22 @@ class OauthApiControllerTest extends TestCase { $client = new Client(); $client->setClientIdentifier('clientId'); - $client->setSecret('clientSecret'); + $client->setSecret(bin2hex('hashedClientSecret')); $this->clientMapper->method('getByUid') ->with(42) ->willReturn($client); - $this->crypto->method('decrypt') - ->with( - 'encryptedToken', - 'validrefresh' - )->willReturn('decryptedToken'); + $this->crypto + ->method('decrypt') + ->with('encryptedToken') + ->willReturn('decryptedToken'); - $appToken = new DefaultToken(); + $this->crypto + ->method('calculateHMAC') + ->with('clientSecret') + ->willReturn('hashedClientSecret'); + + $appToken = new PublicKeyToken(); $appToken->setUid('userId'); $this->tokenProvider->method('getTokenById') ->with(1337) @@ -343,7 +449,7 @@ class OauthApiControllerTest extends TestCase { $this->secureRandom->method('generate') ->willReturnCallback(function ($len) { - return 'random'.$len; + return 'random' . $len; }); $this->tokenProvider->expects($this->once()) @@ -360,7 +466,7 @@ class OauthApiControllerTest extends TestCase { $this->tokenProvider->expects($this->once()) ->method('updateToken') ->with( - $this->callback(function (DefaultToken $token) { + $this->callback(function (PublicKeyToken $token) { return $token->getExpires() === 4600; }) ); @@ -373,8 +479,8 @@ class OauthApiControllerTest extends TestCase { ->method('update') ->with( $this->callback(function (AccessToken $token) { - return $token->getHashedCode() === hash('sha512', 'random128') && - $token->getEncryptedToken() === 'newEncryptedToken'; + return $token->getHashedCode() === hash('sha512', 'random128') + && $token->getEncryptedToken() === 'newEncryptedToken'; }) ); @@ -403,7 +509,7 @@ class OauthApiControllerTest extends TestCase { $this->assertEquals($expected, $this->oauthApiController->getToken('refresh_token', null, 'validrefresh', null, null)); } - public function testGetTokenExpiredAppToken() { + public function testRefreshTokenExpiredAppToken(): void { $accessToken = new AccessToken(); $accessToken->setClientId(42); $accessToken->setTokenId(1337); @@ -415,18 +521,22 @@ class OauthApiControllerTest extends TestCase { $client = new Client(); $client->setClientIdentifier('clientId'); - $client->setSecret('clientSecret'); + $client->setSecret(bin2hex('hashedClientSecret')); $this->clientMapper->method('getByUid') ->with(42) ->willReturn($client); - $this->crypto->method('decrypt') - ->with( - 'encryptedToken', - 'validrefresh' - )->willReturn('decryptedToken'); + $this->crypto + ->method('decrypt') + ->with('encryptedToken') + ->willReturn('decryptedToken'); + + $this->crypto + ->method('calculateHMAC') + ->with('clientSecret') + ->willReturn('hashedClientSecret'); - $appToken = new DefaultToken(); + $appToken = new PublicKeyToken(); $appToken->setUid('userId'); $this->tokenProvider->method('getTokenById') ->with(1337) @@ -438,7 +548,7 @@ class OauthApiControllerTest extends TestCase { $this->secureRandom->method('generate') ->willReturnCallback(function ($len) { - return 'random'.$len; + return 'random' . $len; }); $this->tokenProvider->expects($this->once()) @@ -455,7 +565,7 @@ class OauthApiControllerTest extends TestCase { $this->tokenProvider->expects($this->once()) ->method('updateToken') ->with( - $this->callback(function (DefaultToken $token) { + $this->callback(function (PublicKeyToken $token) { return $token->getExpires() === 4600; }) ); @@ -468,8 +578,8 @@ class OauthApiControllerTest extends TestCase { ->method('update') ->with( $this->callback(function (AccessToken $token) { - return $token->getHashedCode() === hash('sha512', 'random128') && - $token->getEncryptedToken() === 'newEncryptedToken'; + return $token->getHashedCode() === hash('sha512', 'random128') + && $token->getEncryptedToken() === 'newEncryptedToken'; }) ); diff --git a/apps/oauth2/tests/Controller/SettingsControllerTest.php b/apps/oauth2/tests/Controller/SettingsControllerTest.php index f539e3f1c1b..030a220e3d7 100644 --- a/apps/oauth2/tests/Controller/SettingsControllerTest.php +++ b/apps/oauth2/tests/Controller/SettingsControllerTest.php @@ -1,44 +1,30 @@ <?php + /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Lukas Reschke <lukas@statuscode.ch> - * @author Morris Jobke <hey@morrisjobke.de> - * @author rakekniven <mark.ziegler@rakekniven.de> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Tests\Controller; -use OC\Authentication\Token\DefaultTokenMapper; use OCA\OAuth2\Controller\SettingsController; use OCA\OAuth2\Db\AccessTokenMapper; use OCA\OAuth2\Db\Client; use OCA\OAuth2\Db\ClientMapper; use OCP\AppFramework\Http; use OCP\AppFramework\Http\JSONResponse; +use OCP\Authentication\Token\IProvider as IAuthTokenProvider; use OCP\IL10N; use OCP\IRequest; +use OCP\IUser; +use OCP\IUserManager; +use OCP\Security\ICrypto; use OCP\Security\ISecureRandom; +use OCP\Server; use Test\TestCase; +/** + * @group DB + */ class SettingsControllerTest extends TestCase { /** @var IRequest|\PHPUnit\Framework\MockObject\MockObject */ private $request; @@ -48,10 +34,16 @@ class SettingsControllerTest extends TestCase { private $secureRandom; /** @var AccessTokenMapper|\PHPUnit\Framework\MockObject\MockObject */ private $accessTokenMapper; - /** @var DefaultTokenMapper|\PHPUnit\Framework\MockObject\MockObject */ - private $defaultTokenMapper; + /** @var IAuthTokenProvider|\PHPUnit\Framework\MockObject\MockObject */ + private $authTokenProvider; + /** @var IUserManager|\PHPUnit\Framework\MockObject\MockObject */ + private $userManager; /** @var SettingsController */ private $settingsController; + /** @var IL10N|\PHPUnit\Framework\MockObject\MockObject */ + private $l; + /** @var ICrypto|\PHPUnit\Framework\MockObject\MockObject */ + private $crypto; protected function setUp(): void { parent::setUp(); @@ -60,48 +52,54 @@ class SettingsControllerTest extends TestCase { $this->clientMapper = $this->createMock(ClientMapper::class); $this->secureRandom = $this->createMock(ISecureRandom::class); $this->accessTokenMapper = $this->createMock(AccessTokenMapper::class); - $this->defaultTokenMapper = $this->createMock(DefaultTokenMapper::class); - $l = $this->createMock(IL10N::class); - $l->method('t') + $this->authTokenProvider = $this->createMock(IAuthTokenProvider::class); + $this->userManager = $this->createMock(IUserManager::class); + $this->crypto = $this->createMock(ICrypto::class); + $this->l = $this->createMock(IL10N::class); + $this->l->method('t') ->willReturnArgument(0); - $this->settingsController = new SettingsController( 'oauth2', $this->request, $this->clientMapper, $this->secureRandom, $this->accessTokenMapper, - $this->defaultTokenMapper, - $l + $this->l, + $this->authTokenProvider, + $this->userManager, + $this->crypto ); + } - public function testAddClient() { + public function testAddClient(): void { $this->secureRandom - ->expects($this->at(0)) + ->expects($this->exactly(2)) ->method('generate') ->with(64, 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789') - ->willReturn('MySecret'); - $this->secureRandom - ->expects($this->at(1)) - ->method('generate') - ->with(64, 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789') - ->willReturn('MyClientIdentifier'); + ->willReturnOnConsecutiveCalls( + 'MySecret', + 'MyClientIdentifier'); + + $this->crypto + ->expects($this->once()) + ->method('calculateHMAC') + ->willReturn('MyHashedSecret'); $client = new Client(); $client->setName('My Client Name'); $client->setRedirectUri('https://example.com/'); - $client->setSecret('MySecret'); + $client->setSecret(bin2hex('MyHashedSecret')); $client->setClientIdentifier('MyClientIdentifier'); $this->clientMapper ->expects($this->once()) ->method('insert') ->with($this->callback(function (Client $c) { - return $c->getName() === 'My Client Name' && - $c->getRedirectUri() === 'https://example.com/' && - $c->getSecret() === 'MySecret' && - $c->getClientIdentifier() === 'MyClientIdentifier'; + return $c->getName() === 'My Client Name' + && $c->getRedirectUri() === 'https://example.com/' + && $c->getSecret() === bin2hex('MyHashedSecret') + && $c->getClientIdentifier() === 'MyClientIdentifier'; }))->willReturnCallback(function (Client $c) { $c->setId(42); return $c; @@ -121,12 +119,32 @@ class SettingsControllerTest extends TestCase { ], $data); } - public function testDeleteClient() { + public function testDeleteClient(): void { + + $userManager = Server::get(IUserManager::class); + // count other users in the db before adding our own + $count = 0; + $function = function (IUser $user) use (&$count): void { + if ($user->getLastLogin() > 0) { + $count++; + } + }; + $userManager->callForAllUsers($function); + $user1 = $userManager->createUser('test101', 'test101'); + $user1->updateLastLoginTimestamp(); + $tokenProviderMock = $this->getMockBuilder(IAuthTokenProvider::class)->getMock(); + + // expect one call per user and ensure the correct client name + $tokenProviderMock + ->expects($this->exactly($count + 1)) + ->method('invalidateTokensOfUser') + ->with($this->isType('string'), 'My Client Name'); + $client = new Client(); $client->setId(123); $client->setName('My Client Name'); $client->setRedirectUri('https://example.com/'); - $client->setSecret('MySecret'); + $client->setSecret(bin2hex('MyHashedSecret')); $client->setClientIdentifier('MyClientIdentifier'); $this->clientMapper @@ -137,20 +155,31 @@ class SettingsControllerTest extends TestCase { ->expects($this->once()) ->method('deleteByClientId') ->with(123); - $this->defaultTokenMapper - ->expects($this->once()) - ->method('deleteByName') - ->with('My Client Name'); $this->clientMapper + ->expects($this->once()) ->method('delete') ->with($client); - $result = $this->settingsController->deleteClient(123); + $settingsController = new SettingsController( + 'oauth2', + $this->request, + $this->clientMapper, + $this->secureRandom, + $this->accessTokenMapper, + $this->l, + $tokenProviderMock, + $userManager, + $this->crypto + ); + + $result = $settingsController->deleteClient(123); $this->assertInstanceOf(JSONResponse::class, $result); $this->assertEquals([], $result->getData()); + + $user1->delete(); } - public function testInvalidRedirectUri() { + public function testInvalidRedirectUri(): void { $result = $this->settingsController->addClient('test', 'invalidurl'); $this->assertEquals(Http::STATUS_BAD_REQUEST, $result->getStatus()); diff --git a/apps/oauth2/tests/Db/AccessTokenMapperTest.php b/apps/oauth2/tests/Db/AccessTokenMapperTest.php index cdbd563a677..41a79fe725b 100644 --- a/apps/oauth2/tests/Db/AccessTokenMapperTest.php +++ b/apps/oauth2/tests/Db/AccessTokenMapperTest.php @@ -1,31 +1,17 @@ <?php + /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @author Lukas Reschke <lukas@statuscode.ch> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Tests\Db; use OCA\OAuth2\Db\AccessToken; use OCA\OAuth2\Db\AccessTokenMapper; +use OCA\OAuth2\Exceptions\AccessTokenNotFoundException; +use OCP\AppFramework\Utility\ITimeFactory; +use OCP\IDBConnection; +use OCP\Server; use Test\TestCase; /** @@ -37,10 +23,10 @@ class AccessTokenMapperTest extends TestCase { protected function setUp(): void { parent::setUp(); - $this->accessTokenMapper = new AccessTokenMapper(\OC::$server->getDatabaseConnection()); + $this->accessTokenMapper = new AccessTokenMapper(Server::get(IDBConnection::class), Server::get(ITimeFactory::class)); } - public function testGetByCode() { + public function testGetByCode(): void { $this->accessTokenMapper->deleteByClientId(1234); $token = new AccessToken(); $token->setClientId(1234); @@ -55,9 +41,9 @@ class AccessTokenMapperTest extends TestCase { $this->accessTokenMapper->delete($token); } - - public function testDeleteByClientId() { - $this->expectException(\OCA\OAuth2\Exceptions\AccessTokenNotFoundException::class); + + public function testDeleteByClientId(): void { + $this->expectException(AccessTokenNotFoundException::class); $this->accessTokenMapper->deleteByClientId(1234); $token = new AccessToken(); diff --git a/apps/oauth2/tests/Db/ClientMapperTest.php b/apps/oauth2/tests/Db/ClientMapperTest.php index 219f3cddf25..2e8d20ad200 100644 --- a/apps/oauth2/tests/Db/ClientMapperTest.php +++ b/apps/oauth2/tests/Db/ClientMapperTest.php @@ -1,32 +1,16 @@ <?php + /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @author Joas Schilling <coding@schilljs.com> - * @author Lukas Reschke <lukas@statuscode.ch> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Tests\Db; use OCA\OAuth2\Db\Client; use OCA\OAuth2\Db\ClientMapper; +use OCA\OAuth2\Exceptions\ClientNotFoundException; +use OCP\IDBConnection; +use OCP\Server; use Test\TestCase; /** @@ -38,17 +22,17 @@ class ClientMapperTest extends TestCase { protected function setUp(): void { parent::setUp(); - $this->clientMapper = new ClientMapper(\OC::$server->getDatabaseConnection()); + $this->clientMapper = new ClientMapper(Server::get(IDBConnection::class)); } protected function tearDown(): void { - $query = \OC::$server->getDatabaseConnection()->getQueryBuilder(); + $query = Server::get(IDBConnection::class)->getQueryBuilder(); $query->delete('oauth2_clients')->execute(); parent::tearDown(); } - public function testGetByIdentifier() { + public function testGetByIdentifier(): void { $client = new Client(); $client->setClientIdentifier('MyAwesomeClientIdentifier'); $client->setName('Client Name'); @@ -59,13 +43,13 @@ class ClientMapperTest extends TestCase { $this->assertEquals($client, $this->clientMapper->getByIdentifier('MyAwesomeClientIdentifier')); } - public function testGetByIdentifierNotExisting() { - $this->expectException(\OCA\OAuth2\Exceptions\ClientNotFoundException::class); + public function testGetByIdentifierNotExisting(): void { + $this->expectException(ClientNotFoundException::class); $this->clientMapper->getByIdentifier('MyTotallyNotExistingClient'); } - public function testGetByUid() { + public function testGetByUid(): void { $client = new Client(); $client->setClientIdentifier('MyNewClient'); $client->setName('Client Name'); @@ -76,13 +60,23 @@ class ClientMapperTest extends TestCase { $this->assertEquals($client, $this->clientMapper->getByUid($client->getId())); } - public function testGetByUidNotExisting() { - $this->expectException(\OCA\OAuth2\Exceptions\ClientNotFoundException::class); + public function testGetByUidNotExisting(): void { + $this->expectException(ClientNotFoundException::class); $this->clientMapper->getByUid(1234); } - public function testGetClients() { + public function testGetClients(): void { $this->assertSame('array', gettype($this->clientMapper->getClients())); } + + public function testInsertLongEncryptedSecret(): void { + $client = new Client(); + $client->setClientIdentifier('MyNewClient'); + $client->setName('Client Name'); + $client->setRedirectUri('https://example.com/'); + $client->setSecret('b81dc8e2dc178817bf28ca7b37265aa96559ca02e6dcdeb74b42221d096ed5ef63681e836ae0ba1077b5fb5e6c2fa7748c78463f66fe0110c8dcb8dd7eb0305b16d0cd993e2ae275879994a2abf88c68|e466d9befa6b0102341458e45ecd551a|013af9e277374483123437f180a3b0371a411ad4f34c451547909769181a7d7cc191f0f5c2de78376d124dd7751b8c9660aabdd913f5e071fc6b819ba2e3d919|3'); + $this->clientMapper->insert($client); + $this->assertTrue(true); + } } diff --git a/apps/oauth2/tests/Settings/AdminTest.php b/apps/oauth2/tests/Settings/AdminTest.php index fa1a5a2cda8..0f08bb30276 100644 --- a/apps/oauth2/tests/Settings/AdminTest.php +++ b/apps/oauth2/tests/Settings/AdminTest.php @@ -1,34 +1,18 @@ <?php + /** - * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> - * - * @author Lukas Reschke <lukas@statuscode.ch> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ - namespace OCA\OAuth2\Tests\Settings; use OCA\OAuth2\Db\ClientMapper; use OCA\OAuth2\Settings\Admin; use OCP\AppFramework\Http\TemplateResponse; -use OCP\IInitialStateService; +use OCP\AppFramework\Services\IInitialState; +use OCP\IURLGenerator; use PHPUnit\Framework\MockObject\MockObject; +use Psr\Log\LoggerInterface; use Test\TestCase; class AdminTest extends TestCase { @@ -36,8 +20,8 @@ class AdminTest extends TestCase { /** @var Admin|MockObject */ private $admin; - /** @var IInitialStateService|MockObject */ - private $initialStateService; + /** @var IInitialState|MockObject */ + private $initialState; /** @var ClientMapper|MockObject */ private $clientMapper; @@ -45,13 +29,18 @@ class AdminTest extends TestCase { protected function setUp(): void { parent::setUp(); - $this->initialStateService = $this->createMock(IInitialStateService::class); + $this->initialState = $this->createMock(IInitialState::class); $this->clientMapper = $this->createMock(ClientMapper::class); - $this->admin = new Admin($this->initialStateService, $this->clientMapper); + $this->admin = new Admin( + $this->initialState, + $this->clientMapper, + $this->createMock(IURLGenerator::class), + $this->createMock(LoggerInterface::class) + ); } - public function testGetForm() { + public function testGetForm(): void { $expected = new TemplateResponse( 'oauth2', 'admin', @@ -61,11 +50,11 @@ class AdminTest extends TestCase { $this->assertEquals($expected, $this->admin->getForm()); } - public function testGetSection() { + public function testGetSection(): void { $this->assertSame('security', $this->admin->getSection()); } - public function testGetPriority() { + public function testGetPriority(): void { $this->assertSame(100, $this->admin->getPriority()); } } diff --git a/apps/oauth2/webpack.js b/apps/oauth2/webpack.js deleted file mode 100644 index 23b9b76b31b..00000000000 --- a/apps/oauth2/webpack.js +++ /dev/null @@ -1,11 +0,0 @@ -const path = require('path') - -module.exports = { - entry: path.join(__dirname, 'src', 'main.js'), - output: { - path: path.resolve(__dirname, './js'), - publicPath: '/js', - filename: 'oauth2.js', - jsonpFunction: 'webpackJsonpOauth' - } -} |