diff options
88 files changed, 3979 insertions, 1565 deletions
diff --git a/.travis.yml b/.travis.yml index 9d7fd3a0..ac64839d 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -67,6 +67,8 @@ script: | |||
67 | - make fixtures | 67 | - make fixtures |
68 | 68 | ||
69 | - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then SYMFONY_PHPUNIT_VERSION=6.5 ./bin/simple-phpunit -v ; fi; | 69 | - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then SYMFONY_PHPUNIT_VERSION=6.5 ./bin/simple-phpunit -v ; fi; |
70 | # PHPStan needs PHPUnit to be installed and cache app to be generated | ||
71 | - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then php bin/phpstan analyse src tests --no-progress --level 1 ; fi; | ||
70 | - if [[ $CS_FIXER = run ]]; then php bin/php-cs-fixer fix --verbose --dry-run ; fi; | 72 | - if [[ $CS_FIXER = run ]]; then php bin/php-cs-fixer fix --verbose --dry-run ; fi; |
71 | - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml src/Wallabag/CoreBundle/Resources/translations -v ; fi; | 73 | - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml src/Wallabag/CoreBundle/Resources/translations -v ; fi; |
72 | - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml app/Resources/CraueConfigBundle/translations -v ; fi; | 74 | - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml app/Resources/CraueConfigBundle/translations -v ; fi; |
diff --git a/CHANGELOG.md b/CHANGELOG.md index eb2c3084..c116efb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md | |||
@@ -1,5 +1,32 @@ | |||
1 | # Changelog | 1 | # Changelog |
2 | 2 | ||
3 | ## [2.3.6](https://github.com/wallabag/wallabag/tree/2.3.6) | ||
4 | [Full Changelog](https://github.com/wallabag/wallabag/compare/2.3.5...2.3.6) | ||
5 | |||
6 | ### Fixes | ||
7 | |||
8 | - Jump to 2.3.6-dev and update release process [#3814](https://github.com/wallabag/wallabag/pull/3814) | ||
9 | - Fix tag API leak [#3823](https://github.com/wallabag/wallabag/pull/3823) | ||
10 | - Validate imported entry to avoid error on import [#3816](https://github.com/wallabag/wallabag/pull/3816) | ||
11 | - Fix incorrect reading time calculation for entries with CJK characters [#3820](https://github.com/wallabag/wallabag/pull/3820) | ||
12 | - EntriesExport/epub: replace epub identifier with unique urn [#3827](https://github.com/wallabag/wallabag/pull/3827) | ||
13 | - Fix settings field inverted [#3833](https://github.com/wallabag/wallabag/pull/3833) | ||
14 | - Cast client id to avoid PG error [#3831](https://github.com/wallabag/wallabag/pull/3831) | ||
15 | - Rework of EPUB/PDF exports [#3826](https://github.com/wallabag/wallabag/pull/3826) | ||
16 | |||
17 | ## [2.3.5](https://github.com/wallabag/wallabag/tree/2.3.5) | ||
18 | [Full Changelog](https://github.com/wallabag/wallabag/compare/2.3.4...2.3.5) | ||
19 | |||
20 | ### Fixes | ||
21 | |||
22 | - Jump to 2.3.5-dev and update release process [#3778](https://github.com/wallabag/wallabag/pull/3778) | ||
23 | - Remove preview picture from single entry view page [#3765](https://github.com/wallabag/wallabag/pull/3765) | ||
24 | - Fix Android app login issue [#3784](https://github.com/wallabag/wallabag/pull/3784) | ||
25 | - material: fix missing thumbnail on list view [#3782](https://github.com/wallabag/wallabag/pull/3782) | ||
26 | - material: decrease size of tags on list view [#3783](https://github.com/wallabag/wallabag/pull/3783) | ||
27 | - build: upgrade yarn dependencies, update prod assets [#3781](https://github.com/wallabag/wallabag/pull/3781) | ||
28 | - No more dev for guzzle-site-authenticator [#3810](https://github.com/wallabag/wallabag/pull/3810) | ||
29 | |||
3 | ## [2.3.4](https://github.com/wallabag/wallabag/tree/2.3.4) | 30 | ## [2.3.4](https://github.com/wallabag/wallabag/tree/2.3.4) |
4 | [Full Changelog](https://github.com/wallabag/wallabag/compare/2.3.3...2.3.4) | 31 | [Full Changelog](https://github.com/wallabag/wallabag/compare/2.3.3...2.3.4) |
5 | 32 | ||
diff --git a/RELEASE_PROCESS.md b/RELEASE_PROCESS.md index 38dd5a7c..829f8390 100644 --- a/RELEASE_PROCESS.md +++ b/RELEASE_PROCESS.md | |||
@@ -4,14 +4,17 @@ A release is mostly a git tag of http://github.com/wallabag/wallabag, following | |||
4 | 4 | ||
5 | ### Steps to release | 5 | ### Steps to release |
6 | 6 | ||
7 | During this documentation, we assume the release is `$LAST_WALLABAG_RELEASE`. | 7 | During this documentation, we assume the release is `$LAST_WALLABAG_RELEASE` (like 2.3.4). |
8 | 8 | ||
9 | #### Files to edit | 9 | #### Prepare the release |
10 | 10 | ||
11 | - `app/config/wallabag.yml` (`wallabag_core.version`) | 11 | - Update these files with new information |
12 | - `CHANGELOG.md` | 12 | - `app/config/wallabag.yml` (`wallabag_core.version`) |
13 | - `CHANGELOG.md` | ||
14 | - Create a PR named "Prepare $LAST_WALLABAG_RELEASE release". | ||
15 | - Wait for test to be ok, merge it. | ||
13 | 16 | ||
14 | #### Create release on GitHub | 17 | #### Create a new release on GitHub |
15 | 18 | ||
16 | - Run these commands to create the tag: | 19 | - Run these commands to create the tag: |
17 | 20 | ||
@@ -26,8 +29,8 @@ SYMFONY_ENV=prod composer up --no-dev | |||
26 | 29 | ||
27 | ```diff | 30 | ```diff |
28 | script: | 31 | script: |
29 | - - travis_wait bash composer install -o --no-interaction --no-progress --prefer-dist | 32 | - - travis_wait bash composer install -o --no-interaction --no-progress --prefer-dist |
30 | + - travis_wait composer update --no-interaction --no-progress | 33 | + - travis_wait bash composer update -o --no-interaction --no-progress --prefer-dist |
31 | ``` | 34 | ``` |
32 | 35 | ||
33 | - Then continue with these commands: | 36 | - Then continue with these commands: |
@@ -42,16 +45,15 @@ git push origin release-$LAST_WALLABAG_RELEASE | |||
42 | - Run these command to create the package: | 45 | - Run these command to create the package: |
43 | 46 | ||
44 | ``` | 47 | ``` |
45 | make release master /tmp wllbg-release prod | 48 | make release VERSION=$LAST_WALLABAG_RELEASE |
46 | ``` | 49 | ``` |
47 | 50 | ||
48 | - [Create the new release on GitHub](https://github.com/wallabag/wallabag/releases/new). You have to upload on this page the package. | 51 | - [Create the new release on GitHub](https://github.com/wallabag/wallabag/releases/new) by targetting the `release-$LAST_WALLABAG_RELEASE` branch. You have to upload the package (generated previously). |
49 | - Delete the `release-$LAST_WALLABAG_RELEASE` branch and close the pull request (**DO NOT MERGE IT**). | 52 | - Close the previously created pull request (**DO NOT MERGE IT**) and delete the `release-$LAST_WALLABAG_RELEASE` branch. |
50 | - Update the URL shortener (used on `wllbg.org` to generate links like `https://wllbg.org/latest-v2-package` or `http://wllbg.org/latest-v2`) | 53 | - Update the URL shortener (used on `wllbg.org` to generate links like `https://wllbg.org/latest-v2-package` or `http://wllbg.org/latest-v2`) |
51 | - Update [the downloads page](https://github.com/wallabag/wallabag.org/blob/master/content/pages/download.md) on the website (MD5 sum, release date) | ||
52 | - Update Dockerfile https://github.com/wallabag/docker (and create a new tag) | 54 | - Update Dockerfile https://github.com/wallabag/docker (and create a new tag) |
53 | - Update wallabag.org website (downloads, releases and new blog post) | 55 | - Update wallabag.org website (downloads, MD5 sum, releases and new blog post) |
54 | - Put the next patch version suffixed with `-dev` in `app/config/config.yml` (`wallabag_core.version`) | 56 | - Put the next patch version suffixed with `-dev` in `app/config/wallabag.yml` (`wallabag_core.version`) |
55 | - Drink a :beer:! | 57 | - Drink a :beer:! |
56 | 58 | ||
57 | ### `composer.lock` | 59 | ### `composer.lock` |
diff --git a/app/DoctrineMigrations/Version20190117131816.php b/app/DoctrineMigrations/Version20190117131816.php new file mode 100644 index 00000000..6548b9fa --- /dev/null +++ b/app/DoctrineMigrations/Version20190117131816.php | |||
@@ -0,0 +1,32 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Application\Migrations; | ||
4 | |||
5 | use Doctrine\DBAL\Schema\Schema; | ||
6 | use Wallabag\CoreBundle\Doctrine\WallabagMigration; | ||
7 | |||
8 | /** | ||
9 | * Add updated_at fields to site_credential table. | ||
10 | */ | ||
11 | final class Version20190117131816 extends WallabagMigration | ||
12 | { | ||
13 | public function up(Schema $schema): void | ||
14 | { | ||
15 | $siteCredentialTable = $schema->getTable($this->getTable('site_credential')); | ||
16 | |||
17 | $this->skipIf($siteCredentialTable->hasColumn('updated_at'), 'It seems that you already played this migration.'); | ||
18 | |||
19 | $siteCredentialTable->addColumn('updated_at', 'datetime', [ | ||
20 | 'notnull' => false, | ||
21 | ]); | ||
22 | } | ||
23 | |||
24 | public function down(Schema $schema): void | ||
25 | { | ||
26 | $siteCredentialTable = $schema->getTable($this->getTable('site_credential')); | ||
27 | |||
28 | $this->skipIf(!$siteCredentialTable->hasColumn('updated_at'), 'It seems that you already played this migration.'); | ||
29 | |||
30 | $siteCredentialTable->dropColumn('updated_at'); | ||
31 | } | ||
32 | } | ||
diff --git a/app/Resources/static/themes/material/css/cards.scss b/app/Resources/static/themes/material/css/cards.scss index 52872220..1acc03dc 100644 --- a/app/Resources/static/themes/material/css/cards.scss +++ b/app/Resources/static/themes/material/css/cards.scss | |||
@@ -116,18 +116,6 @@ main { | |||
116 | height: 13.5em; | 116 | height: 13.5em; |
117 | } | 117 | } |
118 | 118 | ||
119 | .card-image .preview, | ||
120 | .card-fullimage .preview { | ||
121 | height: 100%; | ||
122 | background: no-repeat 50%/cover; | ||
123 | background-color: #efefef; | ||
124 | display: block; | ||
125 | |||
126 | &--default { | ||
127 | background-size: contain; | ||
128 | } | ||
129 | } | ||
130 | |||
131 | &.sw { | 119 | &.sw { |
132 | max-width: 370px; | 120 | max-width: 370px; |
133 | margin-left: auto; | 121 | margin-left: auto; |
@@ -142,6 +130,19 @@ a.original:not(.waves-effect) { | |||
142 | display: block; | 130 | display: block; |
143 | } | 131 | } |
144 | 132 | ||
133 | .card .card-image .preview, | ||
134 | .card .card-fullimage .preview, | ||
135 | .card-stacked .preview { | ||
136 | height: 100%; | ||
137 | background: no-repeat 50%/cover; | ||
138 | background-color: #efefef; | ||
139 | display: block; | ||
140 | |||
141 | &--default { | ||
142 | background-size: contain; | ||
143 | } | ||
144 | } | ||
145 | |||
145 | .card-entry-labels li, | 146 | .card-entry-labels li, |
146 | .card-tag-labels li { | 147 | .card-tag-labels li { |
147 | margin: 10px 10px 10px auto; | 148 | margin: 10px 10px 10px auto; |
@@ -221,24 +222,21 @@ a.original:not(.waves-effect) { | |||
221 | text-align: right; | 222 | text-align: right; |
222 | } | 223 | } |
223 | 224 | ||
224 | .preview { | 225 | .card-preview { |
225 | max-width: 100px; | 226 | max-width: 100px; |
226 | height: auto; | 227 | max-height: 50px; |
227 | margin-right: 10px; | 228 | margin-right: 10px; |
228 | flex: 1; | 229 | flex: 1; |
229 | |||
230 | img { | ||
231 | max-width: 100%; | ||
232 | max-height: 100%; | ||
233 | } | ||
234 | } | 230 | } |
235 | 231 | ||
236 | div.metadata { | 232 | div.metadata { |
237 | .chip { | 233 | .chip { |
238 | background-color: $blueAccentColor; | 234 | background-color: $blueAccentColor; |
239 | padding: 0 15px 0 10px; | 235 | padding: 0 7px; |
240 | margin: auto 2px; | 236 | margin: auto 2px; |
241 | border-radius: 6px; | 237 | border-radius: 6px; |
238 | line-height: 22px; | ||
239 | height: 22px; | ||
242 | 240 | ||
243 | a, | 241 | a, |
244 | i { | 242 | i { |
diff --git a/app/config/security.yml b/app/config/security.yml index 0318fce1..96489e26 100644 --- a/app/config/security.yml +++ b/app/config/security.yml | |||
@@ -57,9 +57,7 @@ security: | |||
57 | target: / | 57 | target: / |
58 | 58 | ||
59 | access_control: | 59 | access_control: |
60 | - { path: ^/api/doc, roles: IS_AUTHENTICATED_ANONYMOUSLY } | 60 | - { path: ^/api/(doc|version|info|user), roles: IS_AUTHENTICATED_ANONYMOUSLY } |
61 | - { path: ^/api/version, roles: IS_AUTHENTICATED_ANONYMOUSLY } | ||
62 | - { path: ^/api/user, roles: IS_AUTHENTICATED_ANONYMOUSLY } | ||
63 | - { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY } | 61 | - { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY } |
64 | - { path: ^/register, role: IS_AUTHENTICATED_ANONYMOUSLY } | 62 | - { path: ^/register, role: IS_AUTHENTICATED_ANONYMOUSLY } |
65 | - { path: ^/resetting, role: IS_AUTHENTICATED_ANONYMOUSLY } | 63 | - { path: ^/resetting, role: IS_AUTHENTICATED_ANONYMOUSLY } |
diff --git a/app/config/wallabag.yml b/app/config/wallabag.yml index 6354b22f..09b2f3a2 100644 --- a/app/config/wallabag.yml +++ b/app/config/wallabag.yml | |||
@@ -1,5 +1,5 @@ | |||
1 | wallabag_core: | 1 | wallabag_core: |
2 | version: 2.3.4 | 2 | version: 2.3.7-dev |
3 | paypal_url: "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9UBA65LG3FX9Y&lc=gb" | 3 | paypal_url: "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9UBA65LG3FX9Y&lc=gb" |
4 | languages: | 4 | languages: |
5 | en: 'English' | 5 | en: 'English' |
diff --git a/composer.json b/composer.json index 5394442d..21d71b74 100644 --- a/composer.json +++ b/composer.json | |||
@@ -85,17 +85,21 @@ | |||
85 | "javibravo/simpleue": "^2.0", | 85 | "javibravo/simpleue": "^2.0", |
86 | "symfony/dom-crawler": "^3.4", | 86 | "symfony/dom-crawler": "^3.4", |
87 | "friendsofsymfony/jsrouting-bundle": "^2.2", | 87 | "friendsofsymfony/jsrouting-bundle": "^2.2", |
88 | "bdunogier/guzzle-site-authenticator": "^1.0.0@dev", | 88 | "bdunogier/guzzle-site-authenticator": "^1.0.0", |
89 | "defuse/php-encryption": "^2.1", | 89 | "defuse/php-encryption": "^2.1", |
90 | "html2text/html2text": "^4.1" | 90 | "html2text/html2text": "^4.1" |
91 | }, | 91 | }, |
92 | "require-dev": { | 92 | "require-dev": { |
93 | "doctrine/doctrine-fixtures-bundle": "~3.0", | 93 | "doctrine/doctrine-fixtures-bundle": "~3.0", |
94 | "sensio/generator-bundle": "^3.0", | 94 | "sensio/generator-bundle": "^3.0", |
95 | "symfony/phpunit-bridge": "^3.4", | 95 | "symfony/phpunit-bridge": "^4.2", |
96 | "friendsofphp/php-cs-fixer": "~2.13", | 96 | "friendsofphp/php-cs-fixer": "~2.13", |
97 | "m6web/redis-mock": "^4.1", | 97 | "m6web/redis-mock": "^4.1", |
98 | "dama/doctrine-test-bundle": "^5.0" | 98 | "dama/doctrine-test-bundle": "^5.0", |
99 | "phpstan/phpstan": "^0.11.0", | ||
100 | "phpstan/phpstan-phpunit": "^0.11.0", | ||
101 | "phpstan/phpstan-symfony": "^0.11.0", | ||
102 | "phpstan/phpstan-doctrine": "^0.11.0" | ||
99 | }, | 103 | }, |
100 | "scripts": { | 104 | "scripts": { |
101 | "post-cmd": [ | 105 | "post-cmd": [ |
diff --git a/phpstan.neon b/phpstan.neon new file mode 100644 index 00000000..dfbc97ac --- /dev/null +++ b/phpstan.neon | |||
@@ -0,0 +1,13 @@ | |||
1 | includes: | ||
2 | - vendor/phpstan/phpstan-phpunit/extension.neon | ||
3 | - vendor/phpstan/phpstan-symfony/extension.neon | ||
4 | - vendor/phpstan/phpstan-doctrine/extension.neon | ||
5 | - vendor/phpstan/phpstan-phpunit/rules.neon | ||
6 | |||
7 | parameters: | ||
8 | symfony: | ||
9 | container_xml_path: %rootDir%/../../../var/cache/test/appTestDebugProjectContainer.xml | ||
10 | |||
11 | # https://github.com/phpstan/phpstan/issues/694#issuecomment-350724288 | ||
12 | autoload_files: | ||
13 | - vendor/bin/.phpunit/phpunit-6.5/vendor/autoload.php | ||
diff --git a/scripts/release.sh b/scripts/release.sh index 6186a486..ee08a688 100755 --- a/scripts/release.sh +++ b/scripts/release.sh | |||
@@ -9,9 +9,9 @@ ENV=$4 | |||
9 | 9 | ||
10 | rm -rf $TMP_FOLDER/$RELEASE_FOLDER | 10 | rm -rf $TMP_FOLDER/$RELEASE_FOLDER |
11 | mkdir $TMP_FOLDER/$RELEASE_FOLDER | 11 | mkdir $TMP_FOLDER/$RELEASE_FOLDER |
12 | git clone git@github.com:wallabag/wallabag.git -b $VERSION $TMP_FOLDER/$RELEASE_FOLDER/$VERSION | 12 | git clone git@github.com:wallabag/wallabag.git -b release-$VERSION $TMP_FOLDER/$RELEASE_FOLDER/$VERSION |
13 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && SYMFONY_ENV=$ENV COMPOSER_MEMORY_LIMIT=-1 composer up -n --no-dev | 13 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && SYMFONY_ENV=$ENV COMPOSER_MEMORY_LIMIT=-1 composer up -n --no-dev |
14 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && php bin/console wallabag:install --env=$ENV | 14 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && php bin/console wallabag:install --env=$ENV -n |
15 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && php bin/console assets:install --env=$ENV --symlink --relative | 15 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && php bin/console assets:install --env=$ENV --symlink --relative |
16 | cd $TMP_FOLDER/$RELEASE_FOLDER && tar czf wallabag-$VERSION.tar.gz --exclude="var/cache/*" --exclude="var/logs/*" --exclude="var/sessions/*" --exclude=".git" $VERSION | 16 | cd $TMP_FOLDER/$RELEASE_FOLDER && tar czf wallabag-$VERSION.tar.gz --exclude="var/cache/*" --exclude="var/logs/*" --exclude="var/sessions/*" --exclude=".git" $VERSION |
17 | echo "MD5 checksum of the package for wallabag $VERSION" | 17 | echo "MD5 checksum of the package for wallabag $VERSION" |
diff --git a/src/Wallabag/ApiBundle/Controller/EntryRestController.php b/src/Wallabag/ApiBundle/Controller/EntryRestController.php index 5882aaee..f792aaf2 100644 --- a/src/Wallabag/ApiBundle/Controller/EntryRestController.php +++ b/src/Wallabag/ApiBundle/Controller/EntryRestController.php | |||
@@ -9,6 +9,7 @@ use Nelmio\ApiDocBundle\Annotation\ApiDoc; | |||
9 | use Symfony\Component\HttpFoundation\JsonResponse; | 9 | use Symfony\Component\HttpFoundation\JsonResponse; |
10 | use Symfony\Component\HttpFoundation\Request; | 10 | use Symfony\Component\HttpFoundation\Request; |
11 | use Symfony\Component\HttpFoundation\Response; | 11 | use Symfony\Component\HttpFoundation\Response; |
12 | use Symfony\Component\HttpKernel\Exception\BadRequestHttpException; | ||
12 | use Symfony\Component\HttpKernel\Exception\HttpException; | 13 | use Symfony\Component\HttpKernel\Exception\HttpException; |
13 | use Symfony\Component\Routing\Generator\UrlGeneratorInterface; | 14 | use Symfony\Component\Routing\Generator\UrlGeneratorInterface; |
14 | use Wallabag\CoreBundle\Entity\Entry; | 15 | use Wallabag\CoreBundle\Entity\Entry; |
@@ -98,24 +99,28 @@ class EntryRestController extends WallabagRestController | |||
98 | $isArchived = (null === $request->query->get('archive')) ? null : (bool) $request->query->get('archive'); | 99 | $isArchived = (null === $request->query->get('archive')) ? null : (bool) $request->query->get('archive'); |
99 | $isStarred = (null === $request->query->get('starred')) ? null : (bool) $request->query->get('starred'); | 100 | $isStarred = (null === $request->query->get('starred')) ? null : (bool) $request->query->get('starred'); |
100 | $isPublic = (null === $request->query->get('public')) ? null : (bool) $request->query->get('public'); | 101 | $isPublic = (null === $request->query->get('public')) ? null : (bool) $request->query->get('public'); |
101 | $sort = $request->query->get('sort', 'created'); | 102 | $sort = strtolower($request->query->get('sort', 'created')); |
102 | $order = $request->query->get('order', 'desc'); | 103 | $order = strtolower($request->query->get('order', 'desc')); |
103 | $page = (int) $request->query->get('page', 1); | 104 | $page = (int) $request->query->get('page', 1); |
104 | $perPage = (int) $request->query->get('perPage', 30); | 105 | $perPage = (int) $request->query->get('perPage', 30); |
105 | $tags = \is_array($request->query->get('tags')) ? '' : (string) $request->query->get('tags', ''); | 106 | $tags = \is_array($request->query->get('tags')) ? '' : (string) $request->query->get('tags', ''); |
106 | $since = $request->query->get('since', 0); | 107 | $since = $request->query->get('since', 0); |
107 | 108 | ||
108 | /** @var \Pagerfanta\Pagerfanta $pager */ | 109 | try { |
109 | $pager = $this->get('wallabag_core.entry_repository')->findEntries( | 110 | /** @var \Pagerfanta\Pagerfanta $pager */ |
110 | $this->getUser()->getId(), | 111 | $pager = $this->get('wallabag_core.entry_repository')->findEntries( |
111 | $isArchived, | 112 | $this->getUser()->getId(), |
112 | $isStarred, | 113 | $isArchived, |
113 | $isPublic, | 114 | $isStarred, |
114 | $sort, | 115 | $isPublic, |
115 | $order, | 116 | $sort, |
116 | $since, | 117 | $order, |
117 | $tags | 118 | $since, |
118 | ); | 119 | $tags |
120 | ); | ||
121 | } catch (\Exception $e) { | ||
122 | throw new BadRequestHttpException($e->getMessage()); | ||
123 | } | ||
119 | 124 | ||
120 | $pager->setMaxPerPage($perPage); | 125 | $pager->setMaxPerPage($perPage); |
121 | $pager->setCurrentPage($page); | 126 | $pager->setCurrentPage($page); |
diff --git a/src/Wallabag/ApiBundle/Controller/TagRestController.php b/src/Wallabag/ApiBundle/Controller/TagRestController.php index c6d6df6a..f3498f55 100644 --- a/src/Wallabag/ApiBundle/Controller/TagRestController.php +++ b/src/Wallabag/ApiBundle/Controller/TagRestController.php | |||
@@ -46,12 +46,14 @@ class TagRestController extends WallabagRestController | |||
46 | $this->validateAuthentication(); | 46 | $this->validateAuthentication(); |
47 | $label = $request->get('tag', ''); | 47 | $label = $request->get('tag', ''); |
48 | 48 | ||
49 | $tag = $this->getDoctrine()->getRepository('WallabagCoreBundle:Tag')->findOneByLabel($label); | 49 | $tags = $this->getDoctrine()->getRepository('WallabagCoreBundle:Tag')->findByLabelsAndUser([$label], $this->getUser()->getId()); |
50 | 50 | ||
51 | if (empty($tag)) { | 51 | if (empty($tags)) { |
52 | throw $this->createNotFoundException('Tag not found'); | 52 | throw $this->createNotFoundException('Tag not found'); |
53 | } | 53 | } |
54 | 54 | ||
55 | $tag = $tags[0]; | ||
56 | |||
55 | $this->getDoctrine() | 57 | $this->getDoctrine() |
56 | ->getRepository('WallabagCoreBundle:Entry') | 58 | ->getRepository('WallabagCoreBundle:Entry') |
57 | ->removeTag($this->getUser()->getId(), $tag); | 59 | ->removeTag($this->getUser()->getId(), $tag); |
@@ -80,15 +82,7 @@ class TagRestController extends WallabagRestController | |||
80 | 82 | ||
81 | $tagsLabels = $request->get('tags', ''); | 83 | $tagsLabels = $request->get('tags', ''); |
82 | 84 | ||
83 | $tags = []; | 85 | $tags = $this->getDoctrine()->getRepository('WallabagCoreBundle:Tag')->findByLabelsAndUser(explode(',', $tagsLabels), $this->getUser()->getId()); |
84 | |||
85 | foreach (explode(',', $tagsLabels) as $tagLabel) { | ||
86 | $tagEntity = $this->getDoctrine()->getRepository('WallabagCoreBundle:Tag')->findOneByLabel($tagLabel); | ||
87 | |||
88 | if (!empty($tagEntity)) { | ||
89 | $tags[] = $tagEntity; | ||
90 | } | ||
91 | } | ||
92 | 86 | ||
93 | if (empty($tags)) { | 87 | if (empty($tags)) { |
94 | throw $this->createNotFoundException('Tags not found'); | 88 | throw $this->createNotFoundException('Tags not found'); |
@@ -120,6 +114,12 @@ class TagRestController extends WallabagRestController | |||
120 | { | 114 | { |
121 | $this->validateAuthentication(); | 115 | $this->validateAuthentication(); |
122 | 116 | ||
117 | $tagFromDb = $this->getDoctrine()->getRepository('WallabagCoreBundle:Tag')->findByLabelsAndUser([$tag->getLabel()], $this->getUser()->getId()); | ||
118 | |||
119 | if (empty($tagFromDb)) { | ||
120 | throw $this->createNotFoundException('Tag not found'); | ||
121 | } | ||
122 | |||
123 | $this->getDoctrine() | 123 | $this->getDoctrine() |
124 | ->getRepository('WallabagCoreBundle:Entry') | 124 | ->getRepository('WallabagCoreBundle:Entry') |
125 | ->removeTag($this->getUser()->getId(), $tag); | 125 | ->removeTag($this->getUser()->getId(), $tag); |
diff --git a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php index 7d8cfbba..3c7ad0cf 100644 --- a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php +++ b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php | |||
@@ -14,6 +14,8 @@ class WallabagRestController extends FOSRestController | |||
14 | * | 14 | * |
15 | * @ApiDoc() | 15 | * @ApiDoc() |
16 | * | 16 | * |
17 | * @deprecated Should use info endpoint instead | ||
18 | * | ||
17 | * @return JsonResponse | 19 | * @return JsonResponse |
18 | */ | 20 | */ |
19 | public function getVersionAction() | 21 | public function getVersionAction() |
@@ -24,6 +26,24 @@ class WallabagRestController extends FOSRestController | |||
24 | return (new JsonResponse())->setJson($json); | 26 | return (new JsonResponse())->setJson($json); |
25 | } | 27 | } |
26 | 28 | ||
29 | /** | ||
30 | * Retrieve information about the wallabag instance. | ||
31 | * | ||
32 | * @ApiDoc() | ||
33 | * | ||
34 | * @return JsonResponse | ||
35 | */ | ||
36 | public function getInfoAction() | ||
37 | { | ||
38 | $info = [ | ||
39 | 'appname' => 'wallabag', | ||
40 | 'version' => $this->container->getParameter('wallabag_core.version'), | ||
41 | 'allowed_registration' => $this->container->getParameter('wallabag_user.registration_enabled'), | ||
42 | ]; | ||
43 | |||
44 | return (new JsonResponse())->setJson($this->get('jms_serializer')->serialize($info, 'json')); | ||
45 | } | ||
46 | |||
27 | protected function validateAuthentication() | 47 | protected function validateAuthentication() |
28 | { | 48 | { |
29 | if (false === $this->get('security.authorization_checker')->isGranted('IS_AUTHENTICATED_FULLY')) { | 49 | if (false === $this->get('security.authorization_checker')->isGranted('IS_AUTHENTICATED_FULLY')) { |
diff --git a/src/Wallabag/ApiBundle/Entity/Client.php b/src/Wallabag/ApiBundle/Entity/Client.php index e6f98f98..78349820 100644 --- a/src/Wallabag/ApiBundle/Entity/Client.php +++ b/src/Wallabag/ApiBundle/Entity/Client.php | |||
@@ -11,7 +11,7 @@ use Wallabag\UserBundle\Entity\User; | |||
11 | 11 | ||
12 | /** | 12 | /** |
13 | * @ORM\Table("oauth2_clients") | 13 | * @ORM\Table("oauth2_clients") |
14 | * @ORM\Entity | 14 | * @ORM\Entity(repositoryClass="Wallabag\ApiBundle\Repository\ClientRepository") |
15 | */ | 15 | */ |
16 | class Client extends BaseClient | 16 | class Client extends BaseClient |
17 | { | 17 | { |
diff --git a/src/Wallabag/ApiBundle/Repository/ClientRepository.php b/src/Wallabag/ApiBundle/Repository/ClientRepository.php new file mode 100644 index 00000000..fc14262e --- /dev/null +++ b/src/Wallabag/ApiBundle/Repository/ClientRepository.php | |||
@@ -0,0 +1,19 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\ApiBundle\Repository; | ||
4 | |||
5 | use Doctrine\ORM\EntityRepository; | ||
6 | |||
7 | class ClientRepository extends EntityRepository | ||
8 | { | ||
9 | public function findOneBy(array $criteria, array $orderBy = null) | ||
10 | { | ||
11 | if (!empty($criteria['id'])) { | ||
12 | // cast client id to be an integer to avoid postgres error: | ||
13 | // "invalid input syntax for integer" | ||
14 | $criteria['id'] = (int) $criteria['id']; | ||
15 | } | ||
16 | |||
17 | return parent::findOneBy($criteria, $orderBy); | ||
18 | } | ||
19 | } | ||
diff --git a/src/Wallabag/CoreBundle/Command/InstallCommand.php b/src/Wallabag/CoreBundle/Command/InstallCommand.php index 3c76545c..49c84178 100644 --- a/src/Wallabag/CoreBundle/Command/InstallCommand.php +++ b/src/Wallabag/CoreBundle/Command/InstallCommand.php | |||
@@ -94,8 +94,9 @@ class InstallCommand extends ContainerAwareCommand | |||
94 | $status = '<info>OK!</info>'; | 94 | $status = '<info>OK!</info>'; |
95 | $help = ''; | 95 | $help = ''; |
96 | 96 | ||
97 | $conn = $this->getContainer()->get('doctrine')->getManager()->getConnection(); | ||
98 | |||
97 | try { | 99 | try { |
98 | $conn = $this->getContainer()->get('doctrine')->getManager()->getConnection(); | ||
99 | $conn->connect(); | 100 | $conn->connect(); |
100 | } catch (\Exception $e) { | 101 | } catch (\Exception $e) { |
101 | if (false === strpos($e->getMessage(), 'Unknown database') | 102 | if (false === strpos($e->getMessage(), 'Unknown database') |
diff --git a/src/Wallabag/CoreBundle/Controller/ExportController.php b/src/Wallabag/CoreBundle/Controller/ExportController.php index 0d2b15c5..9ff35ff5 100644 --- a/src/Wallabag/CoreBundle/Controller/ExportController.php +++ b/src/Wallabag/CoreBundle/Controller/ExportController.php | |||
@@ -58,6 +58,7 @@ class ExportController extends Controller | |||
58 | $method = ucfirst($category); | 58 | $method = ucfirst($category); |
59 | $methodBuilder = 'getBuilderFor' . $method . 'ByUser'; | 59 | $methodBuilder = 'getBuilderFor' . $method . 'ByUser'; |
60 | $repository = $this->get('wallabag_core.entry_repository'); | 60 | $repository = $this->get('wallabag_core.entry_repository'); |
61 | $title = $method; | ||
61 | 62 | ||
62 | if ('tag_entries' === $category) { | 63 | if ('tag_entries' === $category) { |
63 | $tag = $this->get('wallabag_core.tag_repository')->findOneBySlug($request->query->get('tag')); | 64 | $tag = $this->get('wallabag_core.tag_repository')->findOneBySlug($request->query->get('tag')); |
@@ -66,6 +67,8 @@ class ExportController extends Controller | |||
66 | $this->getUser()->getId(), | 67 | $this->getUser()->getId(), |
67 | $tag->getId() | 68 | $tag->getId() |
68 | ); | 69 | ); |
70 | |||
71 | $title = 'Tag ' . $tag->getLabel(); | ||
69 | } else { | 72 | } else { |
70 | $entries = $repository | 73 | $entries = $repository |
71 | ->$methodBuilder($this->getUser()->getId()) | 74 | ->$methodBuilder($this->getUser()->getId()) |
@@ -76,7 +79,7 @@ class ExportController extends Controller | |||
76 | try { | 79 | try { |
77 | return $this->get('wallabag_core.helper.entries_export') | 80 | return $this->get('wallabag_core.helper.entries_export') |
78 | ->setEntries($entries) | 81 | ->setEntries($entries) |
79 | ->updateTitle($method) | 82 | ->updateTitle($title) |
80 | ->updateAuthor($method) | 83 | ->updateAuthor($method) |
81 | ->exportAs($format); | 84 | ->exportAs($format); |
82 | } catch (\InvalidArgumentException $e) { | 85 | } catch (\InvalidArgumentException $e) { |
diff --git a/src/Wallabag/CoreBundle/DataFixtures/EntryFixtures.php b/src/Wallabag/CoreBundle/DataFixtures/EntryFixtures.php index 0bd58487..024fcfdc 100644 --- a/src/Wallabag/CoreBundle/DataFixtures/EntryFixtures.php +++ b/src/Wallabag/CoreBundle/DataFixtures/EntryFixtures.php | |||
@@ -15,97 +15,112 @@ class EntryFixtures extends Fixture implements DependentFixtureInterface | |||
15 | */ | 15 | */ |
16 | public function load(ObjectManager $manager) | 16 | public function load(ObjectManager $manager) |
17 | { | 17 | { |
18 | $entry1 = new Entry($this->getReference('admin-user')); | 18 | $entries = [ |
19 | $entry1->setUrl('http://0.0.0.0/entry1'); | 19 | 'entry1' => [ |
20 | $entry1->setReadingTime(11); | 20 | 'user' => 'admin-user', |
21 | $entry1->setDomainName('domain.io'); | 21 | 'url' => 'http://0.0.0.0/entry1', |
22 | $entry1->setMimetype('text/html'); | 22 | 'reading_time' => 11, |
23 | $entry1->setTitle('test title entry1'); | 23 | 'domain' => 'domain.io', |
24 | $entry1->setContent('This is my content /o/'); | 24 | 'mime' => 'text/html', |
25 | $entry1->setLanguage('en'); | 25 | 'title' => 'test title entry1', |
26 | 26 | 'content' => 'This is my content /o/', | |
27 | $entry1->addTag($this->getReference('foo-tag')); | 27 | 'language' => 'en', |
28 | $entry1->addTag($this->getReference('baz-tag')); | 28 | 'tags' => ['foo-tag', 'baz-tag'], |
29 | 29 | ], | |
30 | $manager->persist($entry1); | 30 | 'entry2' => [ |
31 | 31 | 'user' => 'admin-user', | |
32 | $this->addReference('entry1', $entry1); | 32 | 'url' => 'http://0.0.0.0/entry2', |
33 | 33 | 'reading_time' => 1, | |
34 | $entry2 = new Entry($this->getReference('admin-user')); | 34 | 'domain' => 'domain.io', |
35 | $entry2->setUrl('http://0.0.0.0/entry2'); | 35 | 'mime' => 'text/html', |
36 | $entry2->setReadingTime(1); | 36 | 'title' => 'test title entry2', |
37 | $entry2->setDomainName('domain.io'); | 37 | 'content' => 'This is my content /o/', |
38 | $entry2->setMimetype('text/html'); | 38 | 'origin' => 'ftp://oneftp.tld', |
39 | $entry2->setTitle('test title entry2'); | 39 | 'language' => 'fr', |
40 | $entry2->setContent('This is my content /o/'); | 40 | ], |
41 | $entry2->setOriginUrl('ftp://oneftp.tld'); | 41 | 'entry3' => [ |
42 | $entry2->setLanguage('fr'); | 42 | 'user' => 'bob-user', |
43 | 43 | 'url' => 'http://0.0.0.0/entry3', | |
44 | $manager->persist($entry2); | 44 | 'reading_time' => 1, |
45 | 45 | 'domain' => 'domain.io', | |
46 | $this->addReference('entry2', $entry2); | 46 | 'mime' => 'text/html', |
47 | 47 | 'title' => 'test title entry3', | |
48 | $entry3 = new Entry($this->getReference('bob-user')); | 48 | 'content' => 'This is my content /o/', |
49 | $entry3->setUrl('http://0.0.0.0/entry3'); | 49 | 'language' => 'en', |
50 | $entry3->setReadingTime(1); | 50 | 'tags' => ['foo-tag', 'bar-tag', 'bob-tag'], |
51 | $entry3->setDomainName('domain.io'); | 51 | ], |
52 | $entry3->setMimetype('text/html'); | 52 | 'entry4' => [ |
53 | $entry3->setTitle('test title entry3'); | 53 | 'user' => 'admin-user', |
54 | $entry3->setContent('This is my content /o/'); | 54 | 'url' => 'http://0.0.0.0/entry4', |
55 | $entry3->setLanguage('en'); | 55 | 'reading_time' => 12, |
56 | 56 | 'domain' => 'domain.io', | |
57 | $entry3->addTag($this->getReference('foo-tag')); | 57 | 'mime' => 'text/html', |
58 | $entry3->addTag($this->getReference('bar-tag')); | 58 | 'title' => 'test title entry4', |
59 | 59 | 'content' => 'This is my content /o/', | |
60 | $manager->persist($entry3); | 60 | 'language' => 'en', |
61 | 61 | 'tags' => ['foo-tag', 'bar-tag'], | |
62 | $this->addReference('entry3', $entry3); | 62 | ], |
63 | 63 | 'entry5' => [ | |
64 | $entry4 = new Entry($this->getReference('admin-user')); | 64 | 'user' => 'admin-user', |
65 | $entry4->setUrl('http://0.0.0.0/entry4'); | 65 | 'url' => 'http://0.0.0.0/entry5', |
66 | $entry4->setReadingTime(12); | 66 | 'reading_time' => 12, |
67 | $entry4->setDomainName('domain.io'); | 67 | 'domain' => 'domain.io', |
68 | $entry4->setMimetype('text/html'); | 68 | 'mime' => 'text/html', |
69 | $entry4->setTitle('test title entry4'); | 69 | 'title' => 'test title entry5', |
70 | $entry4->setContent('This is my content /o/'); | 70 | 'content' => 'This is my content /o/', |
71 | $entry4->setLanguage('en'); | 71 | 'language' => 'fr', |
72 | 72 | 'starred' => true, | |
73 | $entry4->addTag($this->getReference('foo-tag')); | 73 | 'preview' => 'http://0.0.0.0/image.jpg', |
74 | $entry4->addTag($this->getReference('bar-tag')); | 74 | ], |
75 | 75 | 'entry6' => [ | |
76 | $manager->persist($entry4); | 76 | 'user' => 'admin-user', |
77 | 77 | 'url' => 'http://0.0.0.0/entry6', | |
78 | $this->addReference('entry4', $entry4); | 78 | 'reading_time' => 12, |
79 | 79 | 'domain' => 'domain.io', | |
80 | $entry5 = new Entry($this->getReference('admin-user')); | 80 | 'mime' => 'text/html', |
81 | $entry5->setUrl('http://0.0.0.0/entry5'); | 81 | 'title' => 'test title entry6', |
82 | $entry5->setReadingTime(12); | 82 | 'content' => 'This is my content /o/', |
83 | $entry5->setDomainName('domain.io'); | 83 | 'language' => 'de', |
84 | $entry5->setMimetype('text/html'); | 84 | 'archived' => true, |
85 | $entry5->setTitle('test title entry5'); | 85 | 'tags' => ['bar-tag'], |
86 | $entry5->setContent('This is my content /o/'); | 86 | ], |
87 | $entry5->setStarred(true); | 87 | ]; |
88 | $entry5->setLanguage('fr'); | ||
89 | $entry5->setPreviewPicture('http://0.0.0.0/image.jpg'); | ||
90 | |||
91 | $manager->persist($entry5); | ||
92 | |||
93 | $this->addReference('entry5', $entry5); | ||
94 | |||
95 | $entry6 = new Entry($this->getReference('admin-user')); | ||
96 | $entry6->setUrl('http://0.0.0.0/entry6'); | ||
97 | $entry6->setReadingTime(12); | ||
98 | $entry6->setDomainName('domain.io'); | ||
99 | $entry6->setMimetype('text/html'); | ||
100 | $entry6->setTitle('test title entry6'); | ||
101 | $entry6->setContent('This is my content /o/'); | ||
102 | $entry6->updateArchived(true); | ||
103 | $entry6->setLanguage('de'); | ||
104 | $entry6->addTag($this->getReference('bar-tag')); | ||
105 | |||
106 | $manager->persist($entry6); | ||
107 | 88 | ||
108 | $this->addReference('entry6', $entry6); | 89 | foreach ($entries as $reference => $item) { |
90 | $entry = new Entry($this->getReference($item['user'])); | ||
91 | $entry->setUrl($item['url']); | ||
92 | $entry->setReadingTime($item['reading_time']); | ||
93 | $entry->setDomainName($item['domain']); | ||
94 | $entry->setMimetype($item['mime']); | ||
95 | $entry->setTitle($item['title']); | ||
96 | $entry->setContent($item['content']); | ||
97 | $entry->setLanguage($item['language']); | ||
98 | |||
99 | if (isset($item['tags'])) { | ||
100 | foreach ($item['tags'] as $tag) { | ||
101 | $entry->addTag($this->getReference($tag)); | ||
102 | } | ||
103 | } | ||
104 | |||
105 | if (isset($item['origin'])) { | ||
106 | $entry->setOriginUrl($item['origin']); | ||
107 | } | ||
108 | |||
109 | if (isset($item['starred'])) { | ||
110 | $entry->setStarred($item['starred']); | ||
111 | } | ||
112 | |||
113 | if (isset($item['archived'])) { | ||
114 | $entry->setArchived($item['archived']); | ||
115 | } | ||
116 | |||
117 | if (isset($item['preview'])) { | ||
118 | $entry->setPreviewPicture($item['preview']); | ||
119 | } | ||
120 | |||
121 | $manager->persist($entry); | ||
122 | $this->addReference($reference, $entry); | ||
123 | } | ||
109 | 124 | ||
110 | $manager->flush(); | 125 | $manager->flush(); |
111 | } | 126 | } |
diff --git a/src/Wallabag/CoreBundle/DataFixtures/TagFixtures.php b/src/Wallabag/CoreBundle/DataFixtures/TagFixtures.php index d78dd0b8..58a0d799 100644 --- a/src/Wallabag/CoreBundle/DataFixtures/TagFixtures.php +++ b/src/Wallabag/CoreBundle/DataFixtures/TagFixtures.php | |||
@@ -13,33 +13,22 @@ class TagFixtures extends Fixture | |||
13 | */ | 13 | */ |
14 | public function load(ObjectManager $manager) | 14 | public function load(ObjectManager $manager) |
15 | { | 15 | { |
16 | $tag1 = new Tag(); | 16 | $tags = [ |
17 | $tag1->setLabel('foo bar'); | 17 | 'foo-bar-tag' => 'foo bar', //tag used for EntryControllerTest |
18 | 18 | 'bar-tag' => 'bar', | |
19 | $manager->persist($tag1); | 19 | 'baz-tag' => 'baz', // tag used for ExportControllerTest |
20 | 20 | 'foo-tag' => 'foo', | |
21 | $this->addReference('foo-bar-tag', $tag1); | 21 | 'bob-tag' => 'bob', // tag used for TagRestControllerTest |
22 | 22 | ]; | |
23 | $tag2 = new Tag(); | 23 | |
24 | $tag2->setLabel('bar'); | 24 | foreach ($tags as $reference => $label) { |
25 | 25 | $tag = new Tag(); | |
26 | $manager->persist($tag2); | 26 | $tag->setLabel($label); |
27 | 27 | ||
28 | $this->addReference('bar-tag', $tag2); | 28 | $manager->persist($tag); |
29 | 29 | ||
30 | $tag3 = new Tag(); | 30 | $this->addReference($reference, $tag); |
31 | $tag3->setLabel('baz'); | 31 | } |
32 | |||
33 | $manager->persist($tag3); | ||
34 | |||
35 | $this->addReference('baz-tag', $tag3); | ||
36 | |||
37 | $tag4 = new Tag(); | ||
38 | $tag4->setLabel('foo'); | ||
39 | |||
40 | $manager->persist($tag4); | ||
41 | |||
42 | $this->addReference('foo-tag', $tag4); | ||
43 | 32 | ||
44 | $manager->flush(); | 33 | $manager->flush(); |
45 | } | 34 | } |
diff --git a/src/Wallabag/CoreBundle/Entity/SiteCredential.php b/src/Wallabag/CoreBundle/Entity/SiteCredential.php index ac714359..dee48fd5 100644 --- a/src/Wallabag/CoreBundle/Entity/SiteCredential.php +++ b/src/Wallabag/CoreBundle/Entity/SiteCredential.php | |||
@@ -60,6 +60,13 @@ class SiteCredential | |||
60 | private $createdAt; | 60 | private $createdAt; |
61 | 61 | ||
62 | /** | 62 | /** |
63 | * @var \DateTime | ||
64 | * | ||
65 | * @ORM\Column(name="updated_at", type="datetime") | ||
66 | */ | ||
67 | private $updatedAt; | ||
68 | |||
69 | /** | ||
63 | * @ORM\ManyToOne(targetEntity="Wallabag\UserBundle\Entity\User", inversedBy="siteCredentials") | 70 | * @ORM\ManyToOne(targetEntity="Wallabag\UserBundle\Entity\User", inversedBy="siteCredentials") |
64 | */ | 71 | */ |
65 | private $user; | 72 | private $user; |
@@ -179,6 +186,16 @@ class SiteCredential | |||
179 | } | 186 | } |
180 | 187 | ||
181 | /** | 188 | /** |
189 | * Get updatedAt. | ||
190 | * | ||
191 | * @return \DateTime | ||
192 | */ | ||
193 | public function getUpdatedAt() | ||
194 | { | ||
195 | return $this->updatedAt; | ||
196 | } | ||
197 | |||
198 | /** | ||
182 | * @return User | 199 | * @return User |
183 | */ | 200 | */ |
184 | public function getUser() | 201 | public function getUser() |
diff --git a/src/Wallabag/CoreBundle/Helper/EntriesExport.php b/src/Wallabag/CoreBundle/Helper/EntriesExport.php index cbf1037b..64591687 100644 --- a/src/Wallabag/CoreBundle/Helper/EntriesExport.php +++ b/src/Wallabag/CoreBundle/Helper/EntriesExport.php | |||
@@ -85,7 +85,7 @@ class EntriesExport | |||
85 | public function updateAuthor($method) | 85 | public function updateAuthor($method) |
86 | { | 86 | { |
87 | if ('entry' !== $method) { | 87 | if ('entry' !== $method) { |
88 | $this->author = $method . ' authors'; | 88 | $this->author = 'Various authors'; |
89 | 89 | ||
90 | return $this; | 90 | return $this; |
91 | } | 91 | } |
@@ -150,8 +150,6 @@ class EntriesExport | |||
150 | */ | 150 | */ |
151 | 151 | ||
152 | $book->setTitle($this->title); | 152 | $book->setTitle($this->title); |
153 | // Could also be the ISBN number, prefered for published books, or a UUID. | ||
154 | $book->setIdentifier($this->title, EPub::IDENTIFIER_URI); | ||
155 | // Not needed, but included for the example, Language is mandatory, but EPub defaults to "en". Use RFC3066 Language codes, such as "en", "da", "fr" etc. | 153 | // Not needed, but included for the example, Language is mandatory, but EPub defaults to "en". Use RFC3066 Language codes, such as "en", "da", "fr" etc. |
156 | $book->setLanguage($this->language); | 154 | $book->setLanguage($this->language); |
157 | $book->setDescription('Some articles saved on my wallabag'); | 155 | $book->setDescription('Some articles saved on my wallabag'); |
@@ -174,27 +172,49 @@ class EntriesExport | |||
174 | $book->setCoverImage('Cover.png', file_get_contents($this->logoPath), 'image/png'); | 172 | $book->setCoverImage('Cover.png', file_get_contents($this->logoPath), 'image/png'); |
175 | } | 173 | } |
176 | 174 | ||
175 | $entryIds = []; | ||
176 | $entryCount = \count($this->entries); | ||
177 | $i = 0; | ||
178 | |||
177 | /* | 179 | /* |
178 | * Adding actual entries | 180 | * Adding actual entries |
179 | */ | 181 | */ |
180 | 182 | ||
181 | // set tags as subjects | 183 | // set tags as subjects |
182 | foreach ($this->entries as $entry) { | 184 | foreach ($this->entries as $entry) { |
185 | ++$i; | ||
183 | foreach ($entry->getTags() as $tag) { | 186 | foreach ($entry->getTags() as $tag) { |
184 | $book->setSubject($tag->getLabel()); | 187 | $book->setSubject($tag->getLabel()); |
185 | } | 188 | } |
189 | $filename = sha1($entry->getTitle()); | ||
186 | 190 | ||
187 | // the reader in Kobo Devices doesn't likes special caracters | 191 | $publishedBy = $entry->getPublishedBy(); |
188 | // in filenames, we limit to A-z/0-9 | 192 | $authors = $this->translator->trans('export.unknown'); |
189 | $filename = preg_replace('/[^A-Za-z0-9\-]/', '', $entry->getTitle()); | 193 | if (!empty($publishedBy)) { |
194 | $authors = implode(',', $publishedBy); | ||
195 | } | ||
190 | 196 | ||
191 | $titlepage = $content_start . '<h1>' . $entry->getTitle() . '</h1>' . $this->getExportInformation('PHPePub') . $bookEnd; | 197 | $titlepage = $content_start . |
192 | $book->addChapter('Title', 'Title.html', $titlepage, true, EPub::EXTERNAL_REF_ADD); | 198 | '<h1>' . $entry->getTitle() . '</h1>' . |
199 | '<dl>' . | ||
200 | '<dt>' . $this->translator->trans('entry.view.published_by') . '</dt><dd>' . $authors . '</dd>' . | ||
201 | '<dt>' . $this->translator->trans('entry.metadata.reading_time') . '</dt><dd>' . $this->translator->trans('entry.metadata.reading_time_minutes_short', ['%readingTime%' => $entry->getReadingTime()]) . '</dd>' . | ||
202 | '<dt>' . $this->translator->trans('entry.metadata.added_on') . '</dt><dd>' . $entry->getCreatedAt()->format('Y-m-d') . '</dd>' . | ||
203 | '<dt>' . $this->translator->trans('entry.metadata.address') . '</dt><dd><a href="' . $entry->getUrl() . '">' . $entry->getUrl() . '</a></dd>' . | ||
204 | '</dl>' . | ||
205 | $bookEnd; | ||
206 | $book->addChapter("Entry {$i} of {$entryCount}", "{$filename}_cover.html", $titlepage, true, EPub::EXTERNAL_REF_ADD); | ||
193 | $chapter = $content_start . $entry->getContent() . $bookEnd; | 207 | $chapter = $content_start . $entry->getContent() . $bookEnd; |
194 | $book->addChapter($entry->getTitle(), htmlspecialchars($filename) . '.html', $chapter, true, EPub::EXTERNAL_REF_ADD); | 208 | |
209 | $entryIds[] = $entry->getId(); | ||
210 | $book->addChapter($entry->getTitle(), "{$filename}.html", $chapter, true, EPub::EXTERNAL_REF_ADD); | ||
195 | } | 211 | } |
196 | 212 | ||
197 | $book->buildTOC(); | 213 | $book->addChapter('Notices', 'Cover2.html', $content_start . $this->getExportInformation('PHPePub') . $bookEnd); |
214 | |||
215 | // Could also be the ISBN number, prefered for published books, or a UUID. | ||
216 | $hash = sha1(sprintf('%s:%s', $this->wallabagUrl, implode(',', $entryIds))); | ||
217 | $book->setIdentifier(sprintf('urn:wallabag:%s', $hash), EPub::IDENTIFIER_URI); | ||
198 | 218 | ||
199 | return Response::create( | 219 | return Response::create( |
200 | $book->getBook(), | 220 | $book->getBook(), |
@@ -202,7 +222,7 @@ class EntriesExport | |||
202 | [ | 222 | [ |
203 | 'Content-Description' => 'File Transfer', | 223 | 'Content-Description' => 'File Transfer', |
204 | 'Content-type' => 'application/epub+zip', | 224 | 'Content-type' => 'application/epub+zip', |
205 | 'Content-Disposition' => 'attachment; filename="' . $this->title . '.epub"', | 225 | 'Content-Disposition' => 'attachment; filename="' . $this->getSanitizedFilename() . '.epub"', |
206 | 'Content-Transfer-Encoding' => 'binary', | 226 | 'Content-Transfer-Encoding' => 'binary', |
207 | ] | 227 | ] |
208 | ); | 228 | ); |
@@ -244,9 +264,6 @@ class EntriesExport | |||
244 | } | 264 | } |
245 | $mobi->setContentProvider($content); | 265 | $mobi->setContentProvider($content); |
246 | 266 | ||
247 | // the browser inside Kindle Devices doesn't likes special caracters either, we limit to A-z/0-9 | ||
248 | $this->title = preg_replace('/[^A-Za-z0-9\-]/', '', $this->title); | ||
249 | |||
250 | return Response::create( | 267 | return Response::create( |
251 | $mobi->toString(), | 268 | $mobi->toString(), |
252 | 200, | 269 | 200, |
@@ -254,7 +271,7 @@ class EntriesExport | |||
254 | 'Accept-Ranges' => 'bytes', | 271 | 'Accept-Ranges' => 'bytes', |
255 | 'Content-Description' => 'File Transfer', | 272 | 'Content-Description' => 'File Transfer', |
256 | 'Content-type' => 'application/x-mobipocket-ebook', | 273 | 'Content-type' => 'application/x-mobipocket-ebook', |
257 | 'Content-Disposition' => 'attachment; filename="' . $this->title . '.mobi"', | 274 | 'Content-Disposition' => 'attachment; filename="' . $this->getSanitizedFilename() . '.mobi"', |
258 | 'Content-Transfer-Encoding' => 'binary', | 275 | 'Content-Transfer-Encoding' => 'binary', |
259 | ] | 276 | ] |
260 | ); | 277 | ); |
@@ -279,14 +296,6 @@ class EntriesExport | |||
279 | $pdf->SetKeywords('wallabag'); | 296 | $pdf->SetKeywords('wallabag'); |
280 | 297 | ||
281 | /* | 298 | /* |
282 | * Front page | ||
283 | */ | ||
284 | $pdf->AddPage(); | ||
285 | $intro = '<h1>' . $this->title . '</h1>' . $this->getExportInformation('tcpdf'); | ||
286 | |||
287 | $pdf->writeHTMLCell(0, 0, '', '', $intro, 0, 1, 0, true, '', true); | ||
288 | |||
289 | /* | ||
290 | * Adding actual entries | 299 | * Adding actual entries |
291 | */ | 300 | */ |
292 | foreach ($this->entries as $entry) { | 301 | foreach ($this->entries as $entry) { |
@@ -294,6 +303,22 @@ class EntriesExport | |||
294 | $pdf->SetKeywords($tag->getLabel()); | 303 | $pdf->SetKeywords($tag->getLabel()); |
295 | } | 304 | } |
296 | 305 | ||
306 | $publishedBy = $entry->getPublishedBy(); | ||
307 | $authors = $this->translator->trans('export.unknown'); | ||
308 | if (!empty($publishedBy)) { | ||
309 | $authors = implode(',', $publishedBy); | ||
310 | } | ||
311 | |||
312 | $pdf->addPage(); | ||
313 | $html = '<h1>' . $entry->getTitle() . '</h1>' . | ||
314 | '<dl>' . | ||
315 | '<dt>' . $this->translator->trans('entry.view.published_by') . '</dt><dd>' . $authors . '</dd>' . | ||
316 | '<dt>' . $this->translator->trans('entry.metadata.reading_time') . '</dt><dd>' . $this->translator->trans('entry.metadata.reading_time_minutes_short', ['%readingTime%' => $entry->getReadingTime()]) . '</dd>' . | ||
317 | '<dt>' . $this->translator->trans('entry.metadata.added_on') . '</dt><dd>' . $entry->getCreatedAt()->format('Y-m-d') . '</dd>' . | ||
318 | '<dt>' . $this->translator->trans('entry.metadata.address') . '</dt><dd><a href="' . $entry->getUrl() . '">' . $entry->getUrl() . '</a></dd>' . | ||
319 | '</dl>'; | ||
320 | $pdf->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true); | ||
321 | |||
297 | $pdf->AddPage(); | 322 | $pdf->AddPage(); |
298 | $html = '<h1>' . $entry->getTitle() . '</h1>'; | 323 | $html = '<h1>' . $entry->getTitle() . '</h1>'; |
299 | $html .= $entry->getContent(); | 324 | $html .= $entry->getContent(); |
@@ -301,6 +326,14 @@ class EntriesExport | |||
301 | $pdf->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true); | 326 | $pdf->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true); |
302 | } | 327 | } |
303 | 328 | ||
329 | /* | ||
330 | * Last page | ||
331 | */ | ||
332 | $pdf->AddPage(); | ||
333 | $html = $this->getExportInformation('tcpdf'); | ||
334 | |||
335 | $pdf->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true); | ||
336 | |||
304 | // set image scale factor | 337 | // set image scale factor |
305 | $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO); | 338 | $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO); |
306 | 339 | ||
@@ -310,7 +343,7 @@ class EntriesExport | |||
310 | [ | 343 | [ |
311 | 'Content-Description' => 'File Transfer', | 344 | 'Content-Description' => 'File Transfer', |
312 | 'Content-type' => 'application/pdf', | 345 | 'Content-type' => 'application/pdf', |
313 | 'Content-Disposition' => 'attachment; filename="' . $this->title . '.pdf"', | 346 | 'Content-Disposition' => 'attachment; filename="' . $this->getSanitizedFilename() . '.pdf"', |
314 | 'Content-Transfer-Encoding' => 'binary', | 347 | 'Content-Transfer-Encoding' => 'binary', |
315 | ] | 348 | ] |
316 | ); | 349 | ); |
@@ -356,7 +389,7 @@ class EntriesExport | |||
356 | 200, | 389 | 200, |
357 | [ | 390 | [ |
358 | 'Content-type' => 'application/csv', | 391 | 'Content-type' => 'application/csv', |
359 | 'Content-Disposition' => 'attachment; filename="' . $this->title . '.csv"', | 392 | 'Content-Disposition' => 'attachment; filename="' . $this->getSanitizedFilename() . '.csv"', |
360 | 'Content-Transfer-Encoding' => 'UTF-8', | 393 | 'Content-Transfer-Encoding' => 'UTF-8', |
361 | ] | 394 | ] |
362 | ); | 395 | ); |
@@ -374,7 +407,7 @@ class EntriesExport | |||
374 | 200, | 407 | 200, |
375 | [ | 408 | [ |
376 | 'Content-type' => 'application/json', | 409 | 'Content-type' => 'application/json', |
377 | 'Content-Disposition' => 'attachment; filename="' . $this->title . '.json"', | 410 | 'Content-Disposition' => 'attachment; filename="' . $this->getSanitizedFilename() . '.json"', |
378 | 'Content-Transfer-Encoding' => 'UTF-8', | 411 | 'Content-Transfer-Encoding' => 'UTF-8', |
379 | ] | 412 | ] |
380 | ); | 413 | ); |
@@ -392,7 +425,7 @@ class EntriesExport | |||
392 | 200, | 425 | 200, |
393 | [ | 426 | [ |
394 | 'Content-type' => 'application/xml', | 427 | 'Content-type' => 'application/xml', |
395 | 'Content-Disposition' => 'attachment; filename="' . $this->title . '.xml"', | 428 | 'Content-Disposition' => 'attachment; filename="' . $this->getSanitizedFilename() . '.xml"', |
396 | 'Content-Transfer-Encoding' => 'UTF-8', | 429 | 'Content-Transfer-Encoding' => 'UTF-8', |
397 | ] | 430 | ] |
398 | ); | 431 | ); |
@@ -418,7 +451,7 @@ class EntriesExport | |||
418 | 200, | 451 | 200, |
419 | [ | 452 | [ |
420 | 'Content-type' => 'text/plain', | 453 | 'Content-type' => 'text/plain', |
421 | 'Content-Disposition' => 'attachment; filename="' . $this->title . '.txt"', | 454 | 'Content-Disposition' => 'attachment; filename="' . $this->getSanitizedFilename() . '.txt"', |
422 | 'Content-Transfer-Encoding' => 'UTF-8', | 455 | 'Content-Transfer-Encoding' => 'UTF-8', |
423 | ] | 456 | ] |
424 | ); | 457 | ); |
@@ -461,4 +494,15 @@ class EntriesExport | |||
461 | 494 | ||
462 | return str_replace('%IMAGE%', '', $info); | 495 | return str_replace('%IMAGE%', '', $info); |
463 | } | 496 | } |
497 | |||
498 | /** | ||
499 | * Return a sanitized version of the title by applying translit iconv | ||
500 | * and removing non alphanumeric characters, - and space. | ||
501 | * | ||
502 | * @return string Sanitized filename | ||
503 | */ | ||
504 | private function getSanitizedFilename() | ||
505 | { | ||
506 | return preg_replace('/[^A-Za-z0-9\- \']/', '', iconv('utf-8', 'us-ascii//TRANSLIT', $this->title)); | ||
507 | } | ||
464 | } | 508 | } |
diff --git a/src/Wallabag/CoreBundle/Helper/RuleBasedTagger.php b/src/Wallabag/CoreBundle/Helper/RuleBasedTagger.php index 63f65067..fbdf2ac7 100644 --- a/src/Wallabag/CoreBundle/Helper/RuleBasedTagger.php +++ b/src/Wallabag/CoreBundle/Helper/RuleBasedTagger.php | |||
@@ -6,6 +6,7 @@ use Psr\Log\LoggerInterface; | |||
6 | use RulerZ\RulerZ; | 6 | use RulerZ\RulerZ; |
7 | use Wallabag\CoreBundle\Entity\Entry; | 7 | use Wallabag\CoreBundle\Entity\Entry; |
8 | use Wallabag\CoreBundle\Entity\Tag; | 8 | use Wallabag\CoreBundle\Entity\Tag; |
9 | use Wallabag\CoreBundle\Entity\TaggingRule; | ||
9 | use Wallabag\CoreBundle\Repository\EntryRepository; | 10 | use Wallabag\CoreBundle\Repository\EntryRepository; |
10 | use Wallabag\CoreBundle\Repository\TagRepository; | 11 | use Wallabag\CoreBundle\Repository\TagRepository; |
11 | use Wallabag\UserBundle\Entity\User; | 12 | use Wallabag\UserBundle\Entity\User; |
diff --git a/src/Wallabag/CoreBundle/Repository/EntryRepository.php b/src/Wallabag/CoreBundle/Repository/EntryRepository.php index 93c630c0..8b6cf443 100644 --- a/src/Wallabag/CoreBundle/Repository/EntryRepository.php +++ b/src/Wallabag/CoreBundle/Repository/EntryRepository.php | |||
@@ -142,7 +142,7 @@ class EntryRepository extends EntityRepository | |||
142 | * | 142 | * |
143 | * @return Pagerfanta | 143 | * @return Pagerfanta |
144 | */ | 144 | */ |
145 | public function findEntries($userId, $isArchived = null, $isStarred = null, $isPublic = null, $sort = 'created', $order = 'ASC', $since = 0, $tags = '') | 145 | public function findEntries($userId, $isArchived = null, $isStarred = null, $isPublic = null, $sort = 'created', $order = 'asc', $since = 0, $tags = '') |
146 | { | 146 | { |
147 | $qb = $this->createQueryBuilder('e') | 147 | $qb = $this->createQueryBuilder('e') |
148 | ->leftJoin('e.tags', 't') | 148 | ->leftJoin('e.tags', 't') |
@@ -185,6 +185,10 @@ class EntryRepository extends EntityRepository | |||
185 | } | 185 | } |
186 | } | 186 | } |
187 | 187 | ||
188 | if (!\in_array(strtolower($order), ['asc', 'desc'], true)) { | ||
189 | throw new \Exception('Order "' . $order . '" parameter is wrong, allowed: asc or desc'); | ||
190 | } | ||
191 | |||
188 | if ('created' === $sort) { | 192 | if ('created' === $sort) { |
189 | $qb->orderBy('e.id', $order); | 193 | $qb->orderBy('e.id', $order); |
190 | } elseif ('updated' === $sort) { | 194 | } elseif ('updated' === $sort) { |
diff --git a/src/Wallabag/CoreBundle/Repository/TagRepository.php b/src/Wallabag/CoreBundle/Repository/TagRepository.php index 3ae9d414..8464a6a5 100644 --- a/src/Wallabag/CoreBundle/Repository/TagRepository.php +++ b/src/Wallabag/CoreBundle/Repository/TagRepository.php | |||
@@ -3,6 +3,7 @@ | |||
3 | namespace Wallabag\CoreBundle\Repository; | 3 | namespace Wallabag\CoreBundle\Repository; |
4 | 4 | ||
5 | use Doctrine\ORM\EntityRepository; | 5 | use Doctrine\ORM\EntityRepository; |
6 | use Doctrine\ORM\QueryBuilder; | ||
6 | use Wallabag\CoreBundle\Entity\Tag; | 7 | use Wallabag\CoreBundle\Entity\Tag; |
7 | 8 | ||
8 | class TagRepository extends EntityRepository | 9 | class TagRepository extends EntityRepository |
@@ -45,12 +46,8 @@ class TagRepository extends EntityRepository | |||
45 | */ | 46 | */ |
46 | public function findAllTags($userId) | 47 | public function findAllTags($userId) |
47 | { | 48 | { |
48 | $ids = $this->createQueryBuilder('t') | 49 | $ids = $this->getQueryBuilderByUser($userId) |
49 | ->select('t.id') | 50 | ->select('t.id') |
50 | ->leftJoin('t.entries', 'e') | ||
51 | ->where('e.user = :userId')->setParameter('userId', $userId) | ||
52 | ->groupBy('t.id') | ||
53 | ->orderBy('t.slug') | ||
54 | ->getQuery() | 51 | ->getQuery() |
55 | ->getArrayResult(); | 52 | ->getArrayResult(); |
56 | 53 | ||
@@ -71,18 +68,30 @@ class TagRepository extends EntityRepository | |||
71 | */ | 68 | */ |
72 | public function findAllFlatTagsWithNbEntries($userId) | 69 | public function findAllFlatTagsWithNbEntries($userId) |
73 | { | 70 | { |
74 | return $this->createQueryBuilder('t') | 71 | return $this->getQueryBuilderByUser($userId) |
75 | ->select('t.id, t.label, t.slug, count(e.id) as nbEntries') | 72 | ->select('t.id, t.label, t.slug, count(e.id) as nbEntries') |
76 | ->distinct(true) | 73 | ->distinct(true) |
77 | ->leftJoin('t.entries', 'e') | ||
78 | ->where('e.user = :userId') | ||
79 | ->groupBy('t.id') | ||
80 | ->orderBy('t.slug') | ||
81 | ->setParameter('userId', $userId) | ||
82 | ->getQuery() | 74 | ->getQuery() |
83 | ->getArrayResult(); | 75 | ->getArrayResult(); |
84 | } | 76 | } |
85 | 77 | ||
78 | public function findByLabelsAndUser($labels, $userId) | ||
79 | { | ||
80 | $qb = $this->getQueryBuilderByUser($userId) | ||
81 | ->select('t.id'); | ||
82 | |||
83 | $ids = $qb->andWhere($qb->expr()->in('t.label', $labels)) | ||
84 | ->getQuery() | ||
85 | ->getArrayResult(); | ||
86 | |||
87 | $tags = []; | ||
88 | foreach ($ids as $id) { | ||
89 | $tags[] = $this->find($id); | ||
90 | } | ||
91 | |||
92 | return $tags; | ||
93 | } | ||
94 | |||
86 | /** | 95 | /** |
87 | * Used only in test case to get a tag for our entry. | 96 | * Used only in test case to get a tag for our entry. |
88 | * | 97 | * |
@@ -101,13 +110,9 @@ class TagRepository extends EntityRepository | |||
101 | 110 | ||
102 | public function findForArchivedArticlesByUser($userId) | 111 | public function findForArchivedArticlesByUser($userId) |
103 | { | 112 | { |
104 | $ids = $this->createQueryBuilder('t') | 113 | $ids = $this->getQueryBuilderByUser($userId) |
105 | ->select('t.id') | 114 | ->select('t.id') |
106 | ->leftJoin('t.entries', 'e') | ||
107 | ->where('e.user = :userId')->setParameter('userId', $userId) | ||
108 | ->andWhere('e.isArchived = true') | 115 | ->andWhere('e.isArchived = true') |
109 | ->groupBy('t.id') | ||
110 | ->orderBy('t.slug') | ||
111 | ->getQuery() | 116 | ->getQuery() |
112 | ->getArrayResult(); | 117 | ->getArrayResult(); |
113 | 118 | ||
@@ -118,4 +123,20 @@ class TagRepository extends EntityRepository | |||
118 | 123 | ||
119 | return $tags; | 124 | return $tags; |
120 | } | 125 | } |
126 | |||
127 | /** | ||
128 | * Retrieve a sorted list of tags used by a user. | ||
129 | * | ||
130 | * @param int $userId | ||
131 | * | ||
132 | * @return QueryBuilder | ||
133 | */ | ||
134 | private function getQueryBuilderByUser($userId) | ||
135 | { | ||
136 | return $this->createQueryBuilder('t') | ||
137 | ->leftJoin('t.entries', 'e') | ||
138 | ->where('e.user = :userId')->setParameter('userId', $userId) | ||
139 | ->groupBy('t.id') | ||
140 | ->orderBy('t.slug'); | ||
141 | } | ||
121 | } | 142 | } |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.da.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.da.yml index c6a1ff05..4cf69916 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.da.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.da.yml | |||
@@ -253,6 +253,11 @@ entry: | |||
253 | confirm: | 253 | confirm: |
254 | # delete: "Are you sure you want to remove that article?" | 254 | # delete: "Are you sure you want to remove that article?" |
255 | # delete_tag: "Are you sure you want to remove that tag from that article?" | 255 | # delete_tag: "Are you sure you want to remove that tag from that article?" |
256 | metadata: | ||
257 | # reading_time: "Estimated reading time" | ||
258 | # reading_time_minutes_short: "%readingTime% min" | ||
259 | # address: "Address" | ||
260 | # added_on: "Added on" | ||
256 | 261 | ||
257 | about: | 262 | about: |
258 | page_title: 'Om' | 263 | page_title: 'Om' |
@@ -404,6 +409,7 @@ tag: | |||
404 | 409 | ||
405 | # export: | 410 | # export: |
406 | # footer_template: '<div style="text-align:center;"><p>Produced by wallabag with %method%</p><p>Please open <a href="https://github.com/wallabag/wallabag/issues">an issue</a> if you have trouble with the display of this E-Book on your device.</p></div>' | 411 | # footer_template: '<div style="text-align:center;"><p>Produced by wallabag with %method%</p><p>Please open <a href="https://github.com/wallabag/wallabag/issues">an issue</a> if you have trouble with the display of this E-Book on your device.</p></div>' |
412 | # unknown: 'Unknown' | ||
407 | 413 | ||
408 | import: | 414 | import: |
409 | # page_title: 'Import' | 415 | # page_title: 'Import' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.de.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.de.yml index 888d9b39..10981788 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.de.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.de.yml | |||
@@ -253,6 +253,11 @@ entry: | |||
253 | confirm: | 253 | confirm: |
254 | delete: 'Bist du sicher, dass du diesen Artikel löschen möchtest?' | 254 | delete: 'Bist du sicher, dass du diesen Artikel löschen möchtest?' |
255 | delete_tag: 'Bist du sicher, dass du diesen Tag vom Artikel entfernen möchtest?' | 255 | delete_tag: 'Bist du sicher, dass du diesen Tag vom Artikel entfernen möchtest?' |
256 | metadata: | ||
257 | # reading_time: "Estimated reading time" | ||
258 | # reading_time_minutes_short: "%readingTime% min" | ||
259 | # address: "Address" | ||
260 | # added_on: "Added on" | ||
256 | 261 | ||
257 | about: | 262 | about: |
258 | page_title: 'Über' | 263 | page_title: 'Über' |
@@ -404,6 +409,7 @@ tag: | |||
404 | 409 | ||
405 | export: | 410 | export: |
406 | footer_template: '<div style="text-align:center;"><p>Generiert von wallabag mit Hilfe von %method%</p><p>Bitte öffne <a href="https://github.com/wallabag/wallabag/issues">ein Ticket</a> wenn du ein Problem mit der Darstellung von diesem E-Book auf deinem Gerät hast.</p></div>' | 411 | footer_template: '<div style="text-align:center;"><p>Generiert von wallabag mit Hilfe von %method%</p><p>Bitte öffne <a href="https://github.com/wallabag/wallabag/issues">ein Ticket</a> wenn du ein Problem mit der Darstellung von diesem E-Book auf deinem Gerät hast.</p></div>' |
412 | # unknown: 'Unknown' | ||
407 | 413 | ||
408 | import: | 414 | import: |
409 | page_title: 'Importieren' | 415 | page_title: 'Importieren' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.en.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.en.yml index e13987ae..95e10faf 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.en.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.en.yml | |||
@@ -253,6 +253,11 @@ entry: | |||
253 | confirm: | 253 | confirm: |
254 | delete: "Are you sure you want to remove that article?" | 254 | delete: "Are you sure you want to remove that article?" |
255 | delete_tag: "Are you sure you want to remove that tag from that article?" | 255 | delete_tag: "Are you sure you want to remove that tag from that article?" |
256 | metadata: | ||
257 | reading_time: "Estimated reading time" | ||
258 | reading_time_minutes_short: "%readingTime% min" | ||
259 | address: "Address" | ||
260 | added_on: "Added on" | ||
256 | 261 | ||
257 | about: | 262 | about: |
258 | page_title: 'About' | 263 | page_title: 'About' |
@@ -404,6 +409,7 @@ tag: | |||
404 | 409 | ||
405 | export: | 410 | export: |
406 | footer_template: '<div style="text-align:center;"><p>Produced by wallabag with %method%</p><p>Please open <a href="https://github.com/wallabag/wallabag/issues">an issue</a> if you have trouble with the display of this E-Book on your device.</p></div>' | 411 | footer_template: '<div style="text-align:center;"><p>Produced by wallabag with %method%</p><p>Please open <a href="https://github.com/wallabag/wallabag/issues">an issue</a> if you have trouble with the display of this E-Book on your device.</p></div>' |
412 | unknown: 'Unknown' | ||
407 | 413 | ||
408 | import: | 414 | import: |
409 | page_title: 'Import' | 415 | page_title: 'Import' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.es.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.es.yml index ef4b278a..c95bee5b 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.es.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.es.yml | |||
@@ -253,6 +253,11 @@ entry: | |||
253 | confirm: | 253 | confirm: |
254 | # delete: "Are you sure you want to remove that article?" | 254 | # delete: "Are you sure you want to remove that article?" |
255 | # delete_tag: "Are you sure you want to remove that tag from that article?" | 255 | # delete_tag: "Are you sure you want to remove that tag from that article?" |
256 | metadata: | ||
257 | # reading_time: "Estimated reading time" | ||
258 | # reading_time_minutes_short: "%readingTime% min" | ||
259 | # address: "Address" | ||
260 | # added_on: "Added on" | ||
256 | 261 | ||
257 | about: | 262 | about: |
258 | page_title: 'Acerca de' | 263 | page_title: 'Acerca de' |
@@ -404,6 +409,7 @@ tag: | |||
404 | 409 | ||
405 | # export: | 410 | # export: |
406 | # footer_template: '<div style="text-align:center;"><p>Produced by wallabag with %method%</p><p>Please open <a href="https://github.com/wallabag/wallabag/issues">an issue</a> if you have trouble with the display of this E-Book on your device.</p></div>' | 411 | # footer_template: '<div style="text-align:center;"><p>Produced by wallabag with %method%</p><p>Please open <a href="https://github.com/wallabag/wallabag/issues">an issue</a> if you have trouble with the display of this E-Book on your device.</p></div>' |
412 | # unknown: 'Unknown' | ||
407 | 413 | ||
408 | import: | 414 | import: |
409 | page_title: 'Importar' | 415 | page_title: 'Importar' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.fa.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.fa.yml index a13b6668..4fde53dd 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.fa.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.fa.yml | |||
@@ -253,6 +253,11 @@ entry: | |||
253 | confirm: | 253 | confirm: |
254 | # delete: "Are you sure you want to remove that article?" | 254 | # delete: "Are you sure you want to remove that article?" |
255 | # delete_tag: "Are you sure you want to remove that tag from that article?" | 255 | # delete_tag: "Are you sure you want to remove that tag from that article?" |
256 | metadata: | ||
257 | # reading_time: "Estimated reading time" | ||
258 | # reading_time_minutes_short: "%readingTime% min" | ||
259 | # address: "Address" | ||
260 | # added_on: "Added on" | ||
256 | 261 | ||
257 | about: | 262 | about: |
258 | page_title: 'درباره' | 263 | page_title: 'درباره' |
@@ -404,6 +409,7 @@ tag: | |||
404 | 409 | ||
405 | # export: | 410 | # export: |
406 | # footer_template: '<div style="text-align:center;"><p>Produced by wallabag with %method%</p><p>Please open <a href="https://github.com/wallabag/wallabag/issues">an issue</a> if you have trouble with the display of this E-Book on your device.</p></div>' | 411 | # footer_template: '<div style="text-align:center;"><p>Produced by wallabag with %method%</p><p>Please open <a href="https://github.com/wallabag/wallabag/issues">an issue</a> if you have trouble with the display of this E-Book on your device.</p></div>' |
412 | # unknown: 'Unknown' | ||
407 | 413 | ||
408 | import: | 414 | import: |
409 | page_title: 'درونریزی' | 415 | page_title: 'درونریزی' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml index 2d4d0acd..edf3ac35 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml | |||
@@ -253,6 +253,11 @@ entry: | |||
253 | confirm: | 253 | confirm: |
254 | delete: "Voulez-vous vraiment supprimer cet article ?" | 254 | delete: "Voulez-vous vraiment supprimer cet article ?" |
255 | delete_tag: "Voulez-vous vraiment supprimer ce tag de cet article ?" | 255 | delete_tag: "Voulez-vous vraiment supprimer ce tag de cet article ?" |
256 | metadata: | ||
257 | reading_time: "Durée de lecture estimée" | ||
258 | reading_time_minutes_short: "%readingTime% min" | ||
259 | address: "Adresse" | ||
260 | added_on: "Ajouté le" | ||
256 | 261 | ||
257 | about: | 262 | about: |
258 | page_title: "À propos" | 263 | page_title: "À propos" |
@@ -404,6 +409,7 @@ tag: | |||
404 | 409 | ||
405 | export: | 410 | export: |
406 | footer_template: '<div style="text-align:center;"><p>Généré par wallabag with %method%</p><p>Merci d''ouvrir <a href="https://github.com/wallabag/wallabag/issues">un ticket</a> si vous rencontrez des soucis d''affichage avec ce document sur votre support.</p></div>' | 411 | footer_template: '<div style="text-align:center;"><p>Généré par wallabag with %method%</p><p>Merci d''ouvrir <a href="https://github.com/wallabag/wallabag/issues">un ticket</a> si vous rencontrez des soucis d''affichage avec ce document sur votre support.</p></div>' |
412 | unknown: 'Inconnu' | ||
407 | 413 | ||
408 | import: | 414 | import: |
409 | page_title: "Importer" | 415 | page_title: "Importer" |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.it.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.it.yml index e854c323..f178ddbf 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.it.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.it.yml | |||
@@ -253,6 +253,11 @@ entry: | |||
253 | confirm: | 253 | confirm: |
254 | delete: "Vuoi veramente rimuovere quell'articolo?" | 254 | delete: "Vuoi veramente rimuovere quell'articolo?" |
255 | delete_tag: "Vuoi veramente rimuovere quell'etichetta da quell'articolo?" | 255 | delete_tag: "Vuoi veramente rimuovere quell'etichetta da quell'articolo?" |
256 | metadata: | ||
257 | # reading_time: "Estimated reading time" | ||
258 | # reading_time_minutes_short: "%readingTime% min" | ||
259 | # address: "Address" | ||
260 | # added_on: "Added on" | ||
256 | 261 | ||
257 | about: | 262 | about: |
258 | page_title: 'A proposito' | 263 | page_title: 'A proposito' |
@@ -404,6 +409,7 @@ tag: | |||
404 | 409 | ||
405 | # export: | 410 | # export: |
406 | # footer_template: '<div style="text-align:center;"><p>Produced by wallabag with %method%</p><p>Please open <a href="https://github.com/wallabag/wallabag/issues">an issue</a> if you have trouble with the display of this E-Book on your device.</p></div>' | 411 | # footer_template: '<div style="text-align:center;"><p>Produced by wallabag with %method%</p><p>Please open <a href="https://github.com/wallabag/wallabag/issues">an issue</a> if you have trouble with the display of this E-Book on your device.</p></div>' |
412 | # unknown: 'Unknown' | ||
407 | 413 | ||
408 | import: | 414 | import: |
409 | page_title: 'Importa' | 415 | page_title: 'Importa' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml index 9e9f8a2f..a1220f52 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml | |||
@@ -253,6 +253,11 @@ entry: | |||
253 | confirm: | 253 | confirm: |
254 | delete: "Sètz segur de voler suprimir aqueste article ?" | 254 | delete: "Sètz segur de voler suprimir aqueste article ?" |
255 | delete_tag: "Sètz segur de voler levar aquesta etiqueta de l'article ?" | 255 | delete_tag: "Sètz segur de voler levar aquesta etiqueta de l'article ?" |
256 | metadata: | ||
257 | # reading_time: "Estimated reading time" | ||
258 | # reading_time_minutes_short: "%readingTime% min" | ||
259 | # address: "Address" | ||
260 | # added_on: "Added on" | ||
256 | 261 | ||
257 | about: | 262 | about: |
258 | page_title: 'A prepaus' | 263 | page_title: 'A prepaus' |
@@ -404,6 +409,7 @@ tag: | |||
404 | 409 | ||
405 | export: | 410 | export: |
406 | footer_template: '<div style="text-align:center;"><p>Produch per wallabag amb %method%</p><p>Mercés de dobrir <a href="https://github.com/wallabag/wallabag/issues">una sollicitacion</a> s’avètz de problèmas amb l’afichatge d’aqueste E-Book sus vòstre periferic.</p></div>' | 411 | footer_template: '<div style="text-align:center;"><p>Produch per wallabag amb %method%</p><p>Mercés de dobrir <a href="https://github.com/wallabag/wallabag/issues">una sollicitacion</a> s’avètz de problèmas amb l’afichatge d’aqueste E-Book sus vòstre periferic.</p></div>' |
412 | # unknown: 'Unknown' | ||
407 | 413 | ||
408 | import: | 414 | import: |
409 | page_title: 'Importar' | 415 | page_title: 'Importar' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml index 83f6d2e6..b6f7faf7 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml | |||
@@ -253,6 +253,11 @@ entry: | |||
253 | confirm: | 253 | confirm: |
254 | delete: "Czy jesteś pewien, że chcesz usunąć ten artykuł?" | 254 | delete: "Czy jesteś pewien, że chcesz usunąć ten artykuł?" |
255 | delete_tag: "Czy jesteś pewien, że chcesz usunąć ten tag, z tego artykułu?" | 255 | delete_tag: "Czy jesteś pewien, że chcesz usunąć ten tag, z tego artykułu?" |
256 | metadata: | ||
257 | # reading_time: "Estimated reading time" | ||
258 | # reading_time_minutes_short: "%readingTime% min" | ||
259 | # address: "Address" | ||
260 | # added_on: "Added on" | ||
256 | 261 | ||
257 | about: | 262 | about: |
258 | page_title: 'O nas' | 263 | page_title: 'O nas' |
@@ -403,7 +408,8 @@ tag: | |||
403 | placeholder: 'Możesz zaktualizować nazwę taga.' | 408 | placeholder: 'Możesz zaktualizować nazwę taga.' |
404 | 409 | ||
405 | export: | 410 | export: |
406 | footer_template: '<div style="text-align:center;"><p>Stworzone przez wallabag z %method%</p><p>Proszę zgłoś <a href="https://github.com/wallabag/wallabag/issues">sprawę</a>, jeżeli masz problem z wyświetleniem tego e-booka na swoim urządzeniu.</p></div>' | 411 | footer_template: '<div style="text-align:center;"><p>Stworzone przez wallabag z %method%</p><p>Proszę zgłoś <a href="https://github.com/wallabag/wallabag/issues">sprawę</a>, jeżeli masz problem z wyświetleniem tego e-booka na swoim urządzeniu.</p></div>' |
412 | # unknown: 'Unknown' | ||
407 | 413 | ||
408 | import: | 414 | import: |
409 | page_title: 'Import' | 415 | page_title: 'Import' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.pt.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.pt.yml index db5830d2..78df254f 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.pt.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.pt.yml | |||
@@ -253,6 +253,11 @@ entry: | |||
253 | confirm: | 253 | confirm: |
254 | # delete: "Are you sure you want to remove that article?" | 254 | # delete: "Are you sure you want to remove that article?" |
255 | # delete_tag: "Are you sure you want to remove that tag from that article?" | 255 | # delete_tag: "Are you sure you want to remove that tag from that article?" |
256 | metadata: | ||
257 | # reading_time: "Estimated reading time" | ||
258 | # reading_time_minutes_short: "%readingTime% min" | ||
259 | # address: "Address" | ||
260 | # added_on: "Added on" | ||
256 | 261 | ||
257 | about: | 262 | about: |
258 | page_title: 'Sobre' | 263 | page_title: 'Sobre' |
@@ -404,6 +409,7 @@ tag: | |||
404 | 409 | ||
405 | # export: | 410 | # export: |
406 | # footer_template: '<div style="text-align:center;"><p>Produced by wallabag with %method%</p><p>Please open <a href="https://github.com/wallabag/wallabag/issues">an issue</a> if you have trouble with the display of this E-Book on your device.</p></div>' | 411 | # footer_template: '<div style="text-align:center;"><p>Produced by wallabag with %method%</p><p>Please open <a href="https://github.com/wallabag/wallabag/issues">an issue</a> if you have trouble with the display of this E-Book on your device.</p></div>' |
412 | # unknown: 'Unknown' | ||
407 | 413 | ||
408 | import: | 414 | import: |
409 | page_title: 'Importar' | 415 | page_title: 'Importar' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml index e7daf880..8312ca15 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml | |||
@@ -253,6 +253,11 @@ entry: | |||
253 | confirm: | 253 | confirm: |
254 | # delete: "Are you sure you want to remove that article?" | 254 | # delete: "Are you sure you want to remove that article?" |
255 | # delete_tag: "Are you sure you want to remove that tag from that article?" | 255 | # delete_tag: "Are you sure you want to remove that tag from that article?" |
256 | metadata: | ||
257 | # reading_time: "Estimated reading time" | ||
258 | # reading_time_minutes_short: "%readingTime% min" | ||
259 | # address: "Address" | ||
260 | # added_on: "Added on" | ||
256 | 261 | ||
257 | about: | 262 | about: |
258 | page_title: 'Despre' | 263 | page_title: 'Despre' |
@@ -404,6 +409,7 @@ tag: | |||
404 | 409 | ||
405 | # export: | 410 | # export: |
406 | # footer_template: '<div style="text-align:center;"><p>Produced by wallabag with %method%</p><p>Please open <a href="https://github.com/wallabag/wallabag/issues">an issue</a> if you have trouble with the display of this E-Book on your device.</p></div>' | 411 | # footer_template: '<div style="text-align:center;"><p>Produced by wallabag with %method%</p><p>Please open <a href="https://github.com/wallabag/wallabag/issues">an issue</a> if you have trouble with the display of this E-Book on your device.</p></div>' |
412 | # unknown: 'Unknown' | ||
407 | 413 | ||
408 | import: | 414 | import: |
409 | # page_title: 'Import' | 415 | # page_title: 'Import' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.ru.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.ru.yml index d713f13f..f14aad12 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.ru.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.ru.yml | |||
@@ -241,6 +241,11 @@ entry: | |||
241 | save_label: 'Сохранить' | 241 | save_label: 'Сохранить' |
242 | public: | 242 | public: |
243 | shared_by_wallabag: "Запись была опубликована <a href='%wallabag_instance%'>wallabag</a>" | 243 | shared_by_wallabag: "Запись была опубликована <a href='%wallabag_instance%'>wallabag</a>" |
244 | metadata: | ||
245 | # reading_time: "Estimated reading time" | ||
246 | # reading_time_minutes_short: "%readingTime% min" | ||
247 | # address: "Address" | ||
248 | # added_on: "Added on" | ||
244 | 249 | ||
245 | about: | 250 | about: |
246 | page_title: 'О' | 251 | page_title: 'О' |
@@ -390,6 +395,10 @@ tag: | |||
390 | rename: | 395 | rename: |
391 | # placeholder: 'You can update tag name.' | 396 | # placeholder: 'You can update tag name.' |
392 | 397 | ||
398 | # export: | ||
399 | # footer_template: '<div style="text-align:center;"><p>Produced by wallabag with %method%</p><p>Please open <a href="https://github.com/wallabag/wallabag/issues">an issue</a> if you have trouble with the display of this E-Book on your device.</p></div>' | ||
400 | # unknown: 'Unknown' | ||
401 | |||
393 | import: | 402 | import: |
394 | page_title: 'Импорт' | 403 | page_title: 'Импорт' |
395 | page_description: 'Добро пожаловать в импортер wallabag. Выберите сервис, из которого вы хотите перенести данные.' | 404 | page_description: 'Добро пожаловать в импортер wallabag. Выберите сервис, из которого вы хотите перенести данные.' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.th.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.th.yml index 78e0f0ee..7dbb1399 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.th.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.th.yml | |||
@@ -251,6 +251,11 @@ entry: | |||
251 | confirm: | 251 | confirm: |
252 | delete: "คุณแน่ใจหรือไม่ว่าคุณต้องการลบบทความนี้?" | 252 | delete: "คุณแน่ใจหรือไม่ว่าคุณต้องการลบบทความนี้?" |
253 | delete_tag: "คุณแน่ใจหรือไม่ว่าคุณต้องการลบแท็กจากบทความนี้?" | 253 | delete_tag: "คุณแน่ใจหรือไม่ว่าคุณต้องการลบแท็กจากบทความนี้?" |
254 | metadata: | ||
255 | # reading_time: "Estimated reading time" | ||
256 | # reading_time_minutes_short: "%readingTime% min" | ||
257 | # address: "Address" | ||
258 | # added_on: "Added on" | ||
254 | 259 | ||
255 | about: | 260 | about: |
256 | page_title: 'เกี่ยวกับ' | 261 | page_title: 'เกี่ยวกับ' |
@@ -402,6 +407,7 @@ tag: | |||
402 | 407 | ||
403 | export: | 408 | export: |
404 | footer_template: '<div style="text-align:center;"><p>ผลิตโดย wallabag กับ %method%</p><p>ให้ทำการเปิด <a href="https://github.com/wallabag/wallabag/issues">ฉบับนี้</a> ถ้าคุณมีข้อบกพร่องif you have trouble with the display of this E-Book on your device.</p></div>' | 409 | footer_template: '<div style="text-align:center;"><p>ผลิตโดย wallabag กับ %method%</p><p>ให้ทำการเปิด <a href="https://github.com/wallabag/wallabag/issues">ฉบับนี้</a> ถ้าคุณมีข้อบกพร่องif you have trouble with the display of this E-Book on your device.</p></div>' |
410 | # unknown: 'Unknown' | ||
405 | 411 | ||
406 | import: | 412 | import: |
407 | page_title: 'นำข้อมูลเช้า' | 413 | page_title: 'นำข้อมูลเช้า' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml index edb1ce7c..b4bc04d0 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml | |||
@@ -251,6 +251,11 @@ entry: | |||
251 | confirm: | 251 | confirm: |
252 | # delete: "Are you sure you want to remove that article?" | 252 | # delete: "Are you sure you want to remove that article?" |
253 | # delete_tag: "Are you sure you want to remove that tag from that article?" | 253 | # delete_tag: "Are you sure you want to remove that tag from that article?" |
254 | metadata: | ||
255 | # reading_time: "Estimated reading time" | ||
256 | # reading_time_minutes_short: "%readingTime% min" | ||
257 | # address: "Address" | ||
258 | # added_on: "Added on" | ||
254 | 259 | ||
255 | about: | 260 | about: |
256 | page_title: 'Hakkımızda' | 261 | page_title: 'Hakkımızda' |
@@ -402,6 +407,7 @@ tag: | |||
402 | 407 | ||
403 | # export: | 408 | # export: |
404 | # footer_template: '<div style="text-align:center;"><p>Produced by wallabag with %method%</p><p>Please open <a href="https://github.com/wallabag/wallabag/issues">an issue</a> if you have trouble with the display of this E-Book on your device.</p></div>' | 409 | # footer_template: '<div style="text-align:center;"><p>Produced by wallabag with %method%</p><p>Please open <a href="https://github.com/wallabag/wallabag/issues">an issue</a> if you have trouble with the display of this E-Book on your device.</p></div>' |
410 | # unknown: 'Unknown' | ||
405 | 411 | ||
406 | import: | 412 | import: |
407 | page_title: 'İçe Aktar' | 413 | page_title: 'İçe Aktar' |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig index cfc6644b..832112be 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig | |||
@@ -99,8 +99,8 @@ | |||
99 | {% if craue_setting('export_epub') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'epub', 'tag' : currentTag }) }}">EPUB</a></li>{% endif %} | 99 | {% if craue_setting('export_epub') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'epub', 'tag' : currentTag }) }}">EPUB</a></li>{% endif %} |
100 | {% if craue_setting('export_mobi') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'mobi', 'tag' : currentTag }) }}">MOBI</a></li>{% endif %} | 100 | {% if craue_setting('export_mobi') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'mobi', 'tag' : currentTag }) }}">MOBI</a></li>{% endif %} |
101 | {% if craue_setting('export_pdf') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'pdf', 'tag' : currentTag }) }}">PDF</a></li>{% endif %} | 101 | {% if craue_setting('export_pdf') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'pdf', 'tag' : currentTag }) }}">PDF</a></li>{% endif %} |
102 | {% if craue_setting('export_csv') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'json', 'tag' : currentTag }) }}">JSON</a></li>{% endif %} | 102 | {% if craue_setting('export_json') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'json', 'tag' : currentTag }) }}">JSON</a></li>{% endif %} |
103 | {% if craue_setting('export_json') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'csv', 'tag' : currentTag }) }}">CSV</a></li>{% endif %} | 103 | {% if craue_setting('export_csv') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'csv', 'tag' : currentTag }) }}">CSV</a></li>{% endif %} |
104 | {% if craue_setting('export_txt') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'txt', 'tag' : currentTag }) }}">TXT</a></li>{% endif %} | 104 | {% if craue_setting('export_txt') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'txt', 'tag' : currentTag }) }}">TXT</a></li>{% endif %} |
105 | {% if craue_setting('export_xml') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'xml', 'tag' : currentTag }) }}">XML</a></li>{% endif %} | 105 | {% if craue_setting('export_xml') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'xml', 'tag' : currentTag }) }}">XML</a></li>{% endif %} |
106 | </ul> | 106 | </ul> |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entry.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entry.html.twig index 48866f6e..e7d42b3d 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entry.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entry.html.twig | |||
@@ -96,9 +96,6 @@ | |||
96 | </div> | 96 | </div> |
97 | </aside> | 97 | </aside> |
98 | </div> | 98 | </div> |
99 | {% if entry.previewPicture is not null %} | ||
100 | <div><img class="preview" src="{{ entry.previewPicture }}" alt="{{ entry.title|e|raw }}" /></div> | ||
101 | {% endif %} | ||
102 | <article> | 99 | <article> |
103 | {{ entry.content | raw }} | 100 | {{ entry.content | raw }} |
104 | </article> | 101 | </article> |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig index 7c83c3bb..1c00f2fa 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_list.html.twig | |||
@@ -1,10 +1,9 @@ | |||
1 | <div class="card-stacked"> | 1 | <div class="card-stacked"> |
2 | <div class="preview"> | 2 | <div class="card-preview"> |
3 | {% if entry.previewPicture is not null %} | 3 | <a href="{{ path('view', { 'id': entry.id }) }}"> |
4 | <a href="{{ path('view', { 'id': entry.id }) }}"> | 4 | {% set previewClassModifier = entry.previewPicture ? '' : ' preview--default' %} |
5 | <img src="{{ entry.previewPicture }}" /> | 5 | <span class="preview{{ previewClassModifier }}" style="background-image: url({{ entry.previewPicture | default(asset('wallassets/themes/_global/img/logo-square.svg')) }})"></span> |
6 | </a> | 6 | </a> |
7 | {% endif %} | ||
8 | </div> | 7 | </div> |
9 | {% include "@WallabagCore/themes/material/Entry/Card/_content.html.twig" with {'entry': entry, 'withTags': true, 'subClass': 'metadata'} only %} | 8 | {% include "@WallabagCore/themes/material/Entry/Card/_content.html.twig" with {'entry': entry, 'withTags': true, 'subClass': 'metadata'} only %} |
10 | <ul class="tools-list hide-on-small-only"> | 9 | <ul class="tools-list hide-on-small-only"> |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig index a137f3c3..742dd330 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig | |||
@@ -68,8 +68,8 @@ | |||
68 | {% if craue_setting('export_epub') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'epub', 'tag' : currentTag }) }}">EPUB</a></li>{% endif %} | 68 | {% if craue_setting('export_epub') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'epub', 'tag' : currentTag }) }}">EPUB</a></li>{% endif %} |
69 | {% if craue_setting('export_mobi') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'mobi', 'tag' : currentTag }) }}">MOBI</a></li>{% endif %} | 69 | {% if craue_setting('export_mobi') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'mobi', 'tag' : currentTag }) }}">MOBI</a></li>{% endif %} |
70 | {% if craue_setting('export_pdf') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'pdf', 'tag' : currentTag }) }}">PDF</a></li>{% endif %} | 70 | {% if craue_setting('export_pdf') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'pdf', 'tag' : currentTag }) }}">PDF</a></li>{% endif %} |
71 | {% if craue_setting('export_csv') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'json', 'tag' : currentTag }) }}">JSON</a></li>{% endif %} | 71 | {% if craue_setting('export_json') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'json', 'tag' : currentTag }) }}">JSON</a></li>{% endif %} |
72 | {% if craue_setting('export_json') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'csv', 'tag' : currentTag }) }}">CSV</a></li>{% endif %} | 72 | {% if craue_setting('export_csv') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'csv', 'tag' : currentTag }) }}">CSV</a></li>{% endif %} |
73 | {% if craue_setting('export_txt') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'txt', 'tag' : currentTag }) }}">TXT</a></li>{% endif %} | 73 | {% if craue_setting('export_txt') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'txt', 'tag' : currentTag }) }}">TXT</a></li>{% endif %} |
74 | {% if craue_setting('export_xml') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'xml', 'tag' : currentTag }) }}">XML</a></li>{% endif %} | 74 | {% if craue_setting('export_xml') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'xml', 'tag' : currentTag }) }}">XML</a></li>{% endif %} |
75 | </ul> | 75 | </ul> |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig index 9ae6e73e..c6c19de6 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig | |||
@@ -275,10 +275,6 @@ | |||
275 | {{ render(controller( "WallabagCoreBundle:Tag:addTagForm", { 'id': entry.id } )) }} | 275 | {{ render(controller( "WallabagCoreBundle:Tag:addTagForm", { 'id': entry.id } )) }} |
276 | </div> | 276 | </div> |
277 | 277 | ||
278 | {% if entry.previewPicture is not null %} | ||
279 | <div><img class="preview" src="{{ entry.previewPicture }}" alt="{{ entry.title|striptags|default('entry.default_title'|trans)|raw }}" /></div> | ||
280 | {% endif %} | ||
281 | |||
282 | </aside> | 278 | </aside> |
283 | <article> | 279 | <article> |
284 | {{ entry.content | raw }} | 280 | {{ entry.content | raw }} |
diff --git a/src/Wallabag/CoreBundle/Tools/Utils.php b/src/Wallabag/CoreBundle/Tools/Utils.php index 46bb1dc5..e56e251e 100644 --- a/src/Wallabag/CoreBundle/Tools/Utils.php +++ b/src/Wallabag/CoreBundle/Tools/Utils.php | |||
@@ -20,15 +20,14 @@ class Utils | |||
20 | } | 20 | } |
21 | 21 | ||
22 | /** | 22 | /** |
23 | * For a given text, we calculate reading time for an article | 23 | * For a given text, we calculate reading time for an article based on 200 words per minute. |
24 | * based on 200 words per minute. | ||
25 | * | 24 | * |
26 | * @param $text | 25 | * @param string $text |
27 | * | 26 | * |
28 | * @return float | 27 | * @return float |
29 | */ | 28 | */ |
30 | public static function getReadingTime($text) | 29 | public static function getReadingTime($text) |
31 | { | 30 | { |
32 | return floor(\count(preg_split('~[^\p{L}\p{N}\']+~u', strip_tags($text))) / 200); | 31 | return floor(\count(preg_split('~([^\p{L}\p{N}\']+|(\p{Han}|\p{Hiragana}|\p{Katakana}|\p{Hangul}){1,2})~u', strip_tags($text))) / 200); |
33 | } | 32 | } |
34 | } | 33 | } |
diff --git a/src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php b/src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php index b035f5cc..e4bfbdf0 100644 --- a/src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php +++ b/src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php | |||
@@ -52,6 +52,13 @@ abstract class AbstractConsumer | |||
52 | 52 | ||
53 | $this->import->setUser($user); | 53 | $this->import->setUser($user); |
54 | 54 | ||
55 | if (false === $this->import->validateEntry($storedEntry)) { | ||
56 | $this->logger->warning('Entry is invalid', ['entry' => $storedEntry]); | ||
57 | |||
58 | // return true to skip message | ||
59 | return true; | ||
60 | } | ||
61 | |||
55 | $entry = $this->import->parseEntry($storedEntry); | 62 | $entry = $this->import->parseEntry($storedEntry); |
56 | 63 | ||
57 | if (null === $entry) { | 64 | if (null === $entry) { |
diff --git a/src/Wallabag/ImportBundle/Import/AbstractImport.php b/src/Wallabag/ImportBundle/Import/AbstractImport.php index 58a234f4..d39d71b6 100644 --- a/src/Wallabag/ImportBundle/Import/AbstractImport.php +++ b/src/Wallabag/ImportBundle/Import/AbstractImport.php | |||
@@ -119,6 +119,15 @@ abstract class AbstractImport implements ImportInterface | |||
119 | abstract public function parseEntry(array $importedEntry); | 119 | abstract public function parseEntry(array $importedEntry); |
120 | 120 | ||
121 | /** | 121 | /** |
122 | * Validate that an entry is valid (like has some required keys, etc.). | ||
123 | * | ||
124 | * @param array $importedEntry | ||
125 | * | ||
126 | * @return bool | ||
127 | */ | ||
128 | abstract public function validateEntry(array $importedEntry); | ||
129 | |||
130 | /** | ||
122 | * Fetch content from the ContentProxy (using graby). | 131 | * Fetch content from the ContentProxy (using graby). |
123 | * If it fails return the given entry to be saved in all case (to avoid user to loose the content). | 132 | * If it fails return the given entry to be saved in all case (to avoid user to loose the content). |
124 | * | 133 | * |
@@ -141,9 +150,9 @@ abstract class AbstractImport implements ImportInterface | |||
141 | /** | 150 | /** |
142 | * Parse and insert all given entries. | 151 | * Parse and insert all given entries. |
143 | * | 152 | * |
144 | * @param $entries | 153 | * @param array $entries |
145 | */ | 154 | */ |
146 | protected function parseEntries($entries) | 155 | protected function parseEntries(array $entries) |
147 | { | 156 | { |
148 | $i = 1; | 157 | $i = 1; |
149 | $entryToBeFlushed = []; | 158 | $entryToBeFlushed = []; |
@@ -153,6 +162,10 @@ abstract class AbstractImport implements ImportInterface | |||
153 | $importedEntry = $this->setEntryAsRead($importedEntry); | 162 | $importedEntry = $this->setEntryAsRead($importedEntry); |
154 | } | 163 | } |
155 | 164 | ||
165 | if (false === $this->validateEntry($importedEntry)) { | ||
166 | continue; | ||
167 | } | ||
168 | |||
156 | $entry = $this->parseEntry($importedEntry); | 169 | $entry = $this->parseEntry($importedEntry); |
157 | 170 | ||
158 | if (null === $entry) { | 171 | if (null === $entry) { |
diff --git a/src/Wallabag/ImportBundle/Import/BrowserImport.php b/src/Wallabag/ImportBundle/Import/BrowserImport.php index 614386cb..804bc6cd 100644 --- a/src/Wallabag/ImportBundle/Import/BrowserImport.php +++ b/src/Wallabag/ImportBundle/Import/BrowserImport.php | |||
@@ -149,9 +149,9 @@ abstract class BrowserImport extends AbstractImport | |||
149 | /** | 149 | /** |
150 | * Parse and insert all given entries. | 150 | * Parse and insert all given entries. |
151 | * | 151 | * |
152 | * @param $entries | 152 | * @param array $entries |
153 | */ | 153 | */ |
154 | protected function parseEntries($entries) | 154 | protected function parseEntries(array $entries) |
155 | { | 155 | { |
156 | $i = 1; | 156 | $i = 1; |
157 | $entryToBeFlushed = []; | 157 | $entryToBeFlushed = []; |
diff --git a/src/Wallabag/ImportBundle/Import/ChromeImport.php b/src/Wallabag/ImportBundle/Import/ChromeImport.php index 09183abe..eccee698 100644 --- a/src/Wallabag/ImportBundle/Import/ChromeImport.php +++ b/src/Wallabag/ImportBundle/Import/ChromeImport.php | |||
@@ -33,6 +33,18 @@ class ChromeImport extends BrowserImport | |||
33 | /** | 33 | /** |
34 | * {@inheritdoc} | 34 | * {@inheritdoc} |
35 | */ | 35 | */ |
36 | public function validateEntry(array $importedEntry) | ||
37 | { | ||
38 | if (empty($importedEntry['url'])) { | ||
39 | return false; | ||
40 | } | ||
41 | |||
42 | return true; | ||
43 | } | ||
44 | |||
45 | /** | ||
46 | * {@inheritdoc} | ||
47 | */ | ||
36 | protected function prepareEntry(array $entry = []) | 48 | protected function prepareEntry(array $entry = []) |
37 | { | 49 | { |
38 | $data = [ | 50 | $data = [ |
diff --git a/src/Wallabag/ImportBundle/Import/FirefoxImport.php b/src/Wallabag/ImportBundle/Import/FirefoxImport.php index 73269fe1..8999e3f3 100644 --- a/src/Wallabag/ImportBundle/Import/FirefoxImport.php +++ b/src/Wallabag/ImportBundle/Import/FirefoxImport.php | |||
@@ -33,6 +33,18 @@ class FirefoxImport extends BrowserImport | |||
33 | /** | 33 | /** |
34 | * {@inheritdoc} | 34 | * {@inheritdoc} |
35 | */ | 35 | */ |
36 | public function validateEntry(array $importedEntry) | ||
37 | { | ||
38 | if (empty($importedEntry['uri'])) { | ||
39 | return false; | ||
40 | } | ||
41 | |||
42 | return true; | ||
43 | } | ||
44 | |||
45 | /** | ||
46 | * {@inheritdoc} | ||
47 | */ | ||
36 | protected function prepareEntry(array $entry = []) | 48 | protected function prepareEntry(array $entry = []) |
37 | { | 49 | { |
38 | $data = [ | 50 | $data = [ |
diff --git a/src/Wallabag/ImportBundle/Import/InstapaperImport.php b/src/Wallabag/ImportBundle/Import/InstapaperImport.php index a12af758..44c034f8 100644 --- a/src/Wallabag/ImportBundle/Import/InstapaperImport.php +++ b/src/Wallabag/ImportBundle/Import/InstapaperImport.php | |||
@@ -108,6 +108,18 @@ class InstapaperImport extends AbstractImport | |||
108 | /** | 108 | /** |
109 | * {@inheritdoc} | 109 | * {@inheritdoc} |
110 | */ | 110 | */ |
111 | public function validateEntry(array $importedEntry) | ||
112 | { | ||
113 | if (empty($importedEntry['url'])) { | ||
114 | return false; | ||
115 | } | ||
116 | |||
117 | return true; | ||
118 | } | ||
119 | |||
120 | /** | ||
121 | * {@inheritdoc} | ||
122 | */ | ||
111 | public function parseEntry(array $importedEntry) | 123 | public function parseEntry(array $importedEntry) |
112 | { | 124 | { |
113 | $existingEntry = $this->em | 125 | $existingEntry = $this->em |
diff --git a/src/Wallabag/ImportBundle/Import/PinboardImport.php b/src/Wallabag/ImportBundle/Import/PinboardImport.php index 9a5e8cb6..202eb1b3 100644 --- a/src/Wallabag/ImportBundle/Import/PinboardImport.php +++ b/src/Wallabag/ImportBundle/Import/PinboardImport.php | |||
@@ -83,6 +83,18 @@ class PinboardImport extends AbstractImport | |||
83 | /** | 83 | /** |
84 | * {@inheritdoc} | 84 | * {@inheritdoc} |
85 | */ | 85 | */ |
86 | public function validateEntry(array $importedEntry) | ||
87 | { | ||
88 | if (empty($importedEntry['href'])) { | ||
89 | return false; | ||
90 | } | ||
91 | |||
92 | return true; | ||
93 | } | ||
94 | |||
95 | /** | ||
96 | * {@inheritdoc} | ||
97 | */ | ||
86 | public function parseEntry(array $importedEntry) | 98 | public function parseEntry(array $importedEntry) |
87 | { | 99 | { |
88 | $existingEntry = $this->em | 100 | $existingEntry = $this->em |
diff --git a/src/Wallabag/ImportBundle/Import/PocketImport.php b/src/Wallabag/ImportBundle/Import/PocketImport.php index 4b1ad1d7..f2e59183 100644 --- a/src/Wallabag/ImportBundle/Import/PocketImport.php +++ b/src/Wallabag/ImportBundle/Import/PocketImport.php | |||
@@ -170,6 +170,18 @@ class PocketImport extends AbstractImport | |||
170 | 170 | ||
171 | /** | 171 | /** |
172 | * {@inheritdoc} | 172 | * {@inheritdoc} |
173 | */ | ||
174 | public function validateEntry(array $importedEntry) | ||
175 | { | ||
176 | if (empty($importedEntry['resolved_url']) && empty($importedEntry['given_url'])) { | ||
177 | return false; | ||
178 | } | ||
179 | |||
180 | return true; | ||
181 | } | ||
182 | |||
183 | /** | ||
184 | * {@inheritdoc} | ||
173 | * | 185 | * |
174 | * @see https://getpocket.com/developer/docs/v3/retrieve | 186 | * @see https://getpocket.com/developer/docs/v3/retrieve |
175 | */ | 187 | */ |
diff --git a/src/Wallabag/ImportBundle/Import/ReadabilityImport.php b/src/Wallabag/ImportBundle/Import/ReadabilityImport.php index d6777582..c5abf189 100644 --- a/src/Wallabag/ImportBundle/Import/ReadabilityImport.php +++ b/src/Wallabag/ImportBundle/Import/ReadabilityImport.php | |||
@@ -83,6 +83,18 @@ class ReadabilityImport extends AbstractImport | |||
83 | /** | 83 | /** |
84 | * {@inheritdoc} | 84 | * {@inheritdoc} |
85 | */ | 85 | */ |
86 | public function validateEntry(array $importedEntry) | ||
87 | { | ||
88 | if (empty($importedEntry['article__url'])) { | ||
89 | return false; | ||
90 | } | ||
91 | |||
92 | return true; | ||
93 | } | ||
94 | |||
95 | /** | ||
96 | * {@inheritdoc} | ||
97 | */ | ||
86 | public function parseEntry(array $importedEntry) | 98 | public function parseEntry(array $importedEntry) |
87 | { | 99 | { |
88 | $existingEntry = $this->em | 100 | $existingEntry = $this->em |
diff --git a/src/Wallabag/ImportBundle/Import/WallabagImport.php b/src/Wallabag/ImportBundle/Import/WallabagImport.php index 916137f1..c3a142b9 100644 --- a/src/Wallabag/ImportBundle/Import/WallabagImport.php +++ b/src/Wallabag/ImportBundle/Import/WallabagImport.php | |||
@@ -89,6 +89,18 @@ abstract class WallabagImport extends AbstractImport | |||
89 | /** | 89 | /** |
90 | * {@inheritdoc} | 90 | * {@inheritdoc} |
91 | */ | 91 | */ |
92 | public function validateEntry(array $importedEntry) | ||
93 | { | ||
94 | if (empty($importedEntry['url'])) { | ||
95 | return false; | ||
96 | } | ||
97 | |||
98 | return true; | ||
99 | } | ||
100 | |||
101 | /** | ||
102 | * {@inheritdoc} | ||
103 | */ | ||
92 | public function parseEntry(array $importedEntry) | 104 | public function parseEntry(array $importedEntry) |
93 | { | 105 | { |
94 | $existingEntry = $this->em | 106 | $existingEntry = $this->em |
diff --git a/src/Wallabag/UserBundle/Resources/views/layout.html.twig b/src/Wallabag/UserBundle/Resources/views/layout.html.twig index b53f8746..a47b31d0 100644 --- a/src/Wallabag/UserBundle/Resources/views/layout.html.twig +++ b/src/Wallabag/UserBundle/Resources/views/layout.html.twig | |||
@@ -11,7 +11,7 @@ | |||
11 | <main class="valign-wrapper"> | 11 | <main class="valign-wrapper"> |
12 | <div class="valign row"> | 12 | <div class="valign row"> |
13 | <div class="card sw"> | 13 | <div class="card sw"> |
14 | <div class="center"><img src="{{ asset('wallassets/themes/_global/img/logo-wallabag.svg') }}" alt="wallabag logo" class="typo-logo" /></div> | 14 | <div class="center"><img src="{{ asset('wallassets/themes/_global/img/logo-wallabag.svg') }}" class="typo-logo" alt="wallabag logo" /></div> |
15 | {% block fos_user_content %} | 15 | {% block fos_user_content %} |
16 | {% endblock fos_user_content %} | 16 | {% endblock fos_user_content %} |
17 | </div> | 17 | </div> |
diff --git a/tests/Wallabag/AnnotationBundle/Controller/AnnotationControllerTest.php b/tests/Wallabag/AnnotationBundle/Controller/AnnotationControllerTest.php index 537283f2..2c46e0a1 100644 --- a/tests/Wallabag/AnnotationBundle/Controller/AnnotationControllerTest.php +++ b/tests/Wallabag/AnnotationBundle/Controller/AnnotationControllerTest.php | |||
@@ -1,6 +1,6 @@ | |||
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | namespace Tests\AnnotationBundle\Controller; | 3 | namespace Tests\Wallabag\AnnotationBundle\Controller; |
4 | 4 | ||
5 | use Tests\Wallabag\AnnotationBundle\WallabagAnnotationTestCase; | 5 | use Tests\Wallabag\AnnotationBundle\WallabagAnnotationTestCase; |
6 | use Wallabag\AnnotationBundle\Entity\Annotation; | 6 | use Wallabag\AnnotationBundle\Entity\Annotation; |
diff --git a/tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php b/tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php index 090155d7..5586c70d 100644 --- a/tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php +++ b/tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php | |||
@@ -56,6 +56,20 @@ class DeveloperControllerTest extends WallabagCoreTestCase | |||
56 | $this->assertArrayHasKey('refresh_token', $data); | 56 | $this->assertArrayHasKey('refresh_token', $data); |
57 | } | 57 | } |
58 | 58 | ||
59 | public function testCreateTokenWithBadClientId() | ||
60 | { | ||
61 | $client = $this->getClient(); | ||
62 | $client->request('POST', '/oauth/v2/token', [ | ||
63 | 'grant_type' => 'password', | ||
64 | 'client_id' => '$WALLABAG_CLIENT_ID', | ||
65 | 'client_secret' => 'secret', | ||
66 | 'username' => 'admin', | ||
67 | 'password' => 'mypassword', | ||
68 | ]); | ||
69 | |||
70 | $this->assertSame(400, $client->getResponse()->getStatusCode()); | ||
71 | } | ||
72 | |||
59 | public function testListingClient() | 73 | public function testListingClient() |
60 | { | 74 | { |
61 | $this->logInAs('admin'); | 75 | $this->logInAs('admin'); |
diff --git a/tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php b/tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php index 3696f8f9..0b0c0276 100644 --- a/tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php +++ b/tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php | |||
@@ -242,6 +242,15 @@ class EntryRestControllerTest extends WallabagApiTestCase | |||
242 | $this->assertSame(2, $content['limit']); | 242 | $this->assertSame(2, $content['limit']); |
243 | } | 243 | } |
244 | 244 | ||
245 | public function testGetStarredEntriesWithBadSort() | ||
246 | { | ||
247 | $this->client->request('GET', '/api/entries', ['starred' => 1, 'sort' => 'updated', 'order' => 'unknown']); | ||
248 | |||
249 | $this->assertSame(400, $this->client->getResponse()->getStatusCode()); | ||
250 | |||
251 | $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type')); | ||
252 | } | ||
253 | |||
245 | public function testGetStarredEntries() | 254 | public function testGetStarredEntries() |
246 | { | 255 | { |
247 | $this->client->request('GET', '/api/entries', ['starred' => 1, 'sort' => 'updated']); | 256 | $this->client->request('GET', '/api/entries', ['starred' => 1, 'sort' => 'updated']); |
@@ -785,7 +794,7 @@ class EntryRestControllerTest extends WallabagApiTestCase | |||
785 | $content = json_decode($this->client->getResponse()->getContent(), true); | 794 | $content = json_decode($this->client->getResponse()->getContent(), true); |
786 | 795 | ||
787 | $this->assertArrayHasKey('tags', $content); | 796 | $this->assertArrayHasKey('tags', $content); |
788 | $this->assertSame($nbTags + 3, \count($content['tags'])); | 797 | $this->assertCount($nbTags + 3, $content['tags']); |
789 | 798 | ||
790 | $entryDB = $this->client->getContainer() | 799 | $entryDB = $this->client->getContainer() |
791 | ->get('doctrine.orm.entity_manager') | 800 | ->get('doctrine.orm.entity_manager') |
@@ -825,7 +834,7 @@ class EntryRestControllerTest extends WallabagApiTestCase | |||
825 | $content = json_decode($this->client->getResponse()->getContent(), true); | 834 | $content = json_decode($this->client->getResponse()->getContent(), true); |
826 | 835 | ||
827 | $this->assertArrayHasKey('tags', $content); | 836 | $this->assertArrayHasKey('tags', $content); |
828 | $this->assertSame($nbTags - 1, \count($content['tags'])); | 837 | $this->assertCount($nbTags - 1, $content['tags']); |
829 | } | 838 | } |
830 | 839 | ||
831 | public function testSaveIsArchivedAfterPost() | 840 | public function testSaveIsArchivedAfterPost() |
diff --git a/tests/Wallabag/ApiBundle/Controller/TagRestControllerTest.php b/tests/Wallabag/ApiBundle/Controller/TagRestControllerTest.php index 430e548d..9daa94cd 100644 --- a/tests/Wallabag/ApiBundle/Controller/TagRestControllerTest.php +++ b/tests/Wallabag/ApiBundle/Controller/TagRestControllerTest.php | |||
@@ -7,6 +7,8 @@ use Wallabag\CoreBundle\Entity\Tag; | |||
7 | 7 | ||
8 | class TagRestControllerTest extends WallabagApiTestCase | 8 | class TagRestControllerTest extends WallabagApiTestCase |
9 | { | 9 | { |
10 | private $otherUserTagLabel = 'bob'; | ||
11 | |||
10 | public function testGetUserTags() | 12 | public function testGetUserTags() |
11 | { | 13 | { |
12 | $this->client->request('GET', '/api/tags.json'); | 14 | $this->client->request('GET', '/api/tags.json'); |
@@ -19,17 +21,33 @@ class TagRestControllerTest extends WallabagApiTestCase | |||
19 | $this->assertArrayHasKey('id', $content[0]); | 21 | $this->assertArrayHasKey('id', $content[0]); |
20 | $this->assertArrayHasKey('label', $content[0]); | 22 | $this->assertArrayHasKey('label', $content[0]); |
21 | 23 | ||
24 | $tagLabels = array_map(function ($i) { | ||
25 | return $i['label']; | ||
26 | }, $content); | ||
27 | |||
28 | $this->assertNotContains($this->otherUserTagLabel, $tagLabels, 'There is a possible tag leak'); | ||
29 | |||
22 | return end($content); | 30 | return end($content); |
23 | } | 31 | } |
24 | 32 | ||
25 | public function testDeleteUserTag() | 33 | public function testDeleteUserTag() |
26 | { | 34 | { |
35 | $em = $this->client->getContainer()->get('doctrine.orm.entity_manager'); | ||
36 | $entry = $this->client->getContainer() | ||
37 | ->get('doctrine.orm.entity_manager') | ||
38 | ->getRepository('WallabagCoreBundle:Entry') | ||
39 | ->findOneWithTags($this->user->getId()); | ||
40 | |||
41 | $entry = $entry[0]; | ||
42 | |||
27 | $tagLabel = 'tagtest'; | 43 | $tagLabel = 'tagtest'; |
28 | $tag = new Tag(); | 44 | $tag = new Tag(); |
29 | $tag->setLabel($tagLabel); | 45 | $tag->setLabel($tagLabel); |
30 | |||
31 | $em = $this->client->getContainer()->get('doctrine.orm.entity_manager'); | ||
32 | $em->persist($tag); | 46 | $em->persist($tag); |
47 | |||
48 | $entry->addTag($tag); | ||
49 | |||
50 | $em->persist($entry); | ||
33 | $em->flush(); | 51 | $em->flush(); |
34 | $em->clear(); | 52 | $em->clear(); |
35 | 53 | ||
@@ -53,6 +71,16 @@ class TagRestControllerTest extends WallabagApiTestCase | |||
53 | $this->assertNull($tag, $tagLabel . ' was removed because it begun an orphan tag'); | 71 | $this->assertNull($tag, $tagLabel . ' was removed because it begun an orphan tag'); |
54 | } | 72 | } |
55 | 73 | ||
74 | public function testDeleteOtherUserTag() | ||
75 | { | ||
76 | $em = $this->client->getContainer()->get('doctrine.orm.entity_manager'); | ||
77 | $tag = $em->getRepository('WallabagCoreBundle:Tag')->findOneByLabel($this->otherUserTagLabel); | ||
78 | |||
79 | $this->client->request('DELETE', '/api/tags/' . $tag->getId() . '.json'); | ||
80 | |||
81 | $this->assertSame(404, $this->client->getResponse()->getStatusCode()); | ||
82 | } | ||
83 | |||
56 | public function dataForDeletingTagByLabel() | 84 | public function dataForDeletingTagByLabel() |
57 | { | 85 | { |
58 | return [ | 86 | return [ |
@@ -112,6 +140,13 @@ class TagRestControllerTest extends WallabagApiTestCase | |||
112 | $this->assertSame(404, $this->client->getResponse()->getStatusCode()); | 140 | $this->assertSame(404, $this->client->getResponse()->getStatusCode()); |
113 | } | 141 | } |
114 | 142 | ||
143 | public function testDeleteTagByLabelOtherUser() | ||
144 | { | ||
145 | $this->client->request('DELETE', '/api/tag/label.json', ['tag' => $this->otherUserTagLabel]); | ||
146 | |||
147 | $this->assertSame(404, $this->client->getResponse()->getStatusCode()); | ||
148 | } | ||
149 | |||
115 | /** | 150 | /** |
116 | * @dataProvider dataForDeletingTagByLabel | 151 | * @dataProvider dataForDeletingTagByLabel |
117 | */ | 152 | */ |
@@ -180,4 +215,11 @@ class TagRestControllerTest extends WallabagApiTestCase | |||
180 | 215 | ||
181 | $this->assertSame(404, $this->client->getResponse()->getStatusCode()); | 216 | $this->assertSame(404, $this->client->getResponse()->getStatusCode()); |
182 | } | 217 | } |
218 | |||
219 | public function testDeleteTagsByLabelOtherUser() | ||
220 | { | ||
221 | $this->client->request('DELETE', '/api/tags/label.json', ['tags' => $this->otherUserTagLabel]); | ||
222 | |||
223 | $this->assertSame(404, $this->client->getResponse()->getStatusCode()); | ||
224 | } | ||
183 | } | 225 | } |
diff --git a/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php b/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php index ac4d6cdc..8b49c0ae 100644 --- a/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php +++ b/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php | |||
@@ -18,4 +18,21 @@ class WallabagRestControllerTest extends WallabagApiTestCase | |||
18 | 18 | ||
19 | $this->assertSame($client->getContainer()->getParameter('wallabag_core.version'), $content); | 19 | $this->assertSame($client->getContainer()->getParameter('wallabag_core.version'), $content); |
20 | } | 20 | } |
21 | |||
22 | public function testGetInfo() | ||
23 | { | ||
24 | // create a new client instead of using $this->client to be sure client isn't authenticated | ||
25 | $client = static::createClient(); | ||
26 | $client->request('GET', '/api/info'); | ||
27 | |||
28 | $this->assertSame(200, $client->getResponse()->getStatusCode()); | ||
29 | |||
30 | $content = json_decode($client->getResponse()->getContent(), true); | ||
31 | |||
32 | $this->assertArrayHasKey('appname', $content); | ||
33 | $this->assertArrayHasKey('version', $content); | ||
34 | $this->assertArrayHasKey('allowed_registration', $content); | ||
35 | |||
36 | $this->assertSame('wallabag', $content['appname']); | ||
37 | } | ||
21 | } | 38 | } |
diff --git a/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php b/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php index cf9f1e97..c9dbbaa3 100644 --- a/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php +++ b/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php | |||
@@ -1,6 +1,6 @@ | |||
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | namespace tests\Wallabag\CoreBundle\Controller; | 3 | namespace Tests\Wallabag\CoreBundle\Controller; |
4 | 4 | ||
5 | use Tests\Wallabag\CoreBundle\WallabagCoreTestCase; | 5 | use Tests\Wallabag\CoreBundle\WallabagCoreTestCase; |
6 | use Wallabag\AnnotationBundle\Entity\Annotation; | 6 | use Wallabag\AnnotationBundle\Entity\Annotation; |
diff --git a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php index 006ca330..005296ff 100644 --- a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php +++ b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php | |||
@@ -522,9 +522,12 @@ class EntryControllerTest extends WallabagCoreTestCase | |||
522 | 522 | ||
523 | $crawler = $client->followRedirect(); | 523 | $crawler = $client->followRedirect(); |
524 | 524 | ||
525 | $this->assertGreaterThan(1, $title = $crawler->filter('div[id=article] h1')->extract(['_text'])); | 525 | $title = $crawler->filter('div[id=article] h1')->extract(['_text']); |
526 | $this->assertGreaterThan(1, $title); | ||
526 | $this->assertContains('My updated title hehe :)', $title[0]); | 527 | $this->assertContains('My updated title hehe :)', $title[0]); |
527 | $this->assertSame(1, \count($stats = $crawler->filter('div[class=tools] ul[class=stats] li a[class=tool]')->extract(['_text']))); | 528 | |
529 | $stats = $crawler->filter('div[class=tools] ul[class=stats] li a[class=tool]')->extract(['_text']); | ||
530 | $this->assertCount(1, $stats); | ||
528 | $this->assertNotContains('example.io', trim($stats[0])); | 531 | $this->assertNotContains('example.io', trim($stats[0])); |
529 | } | 532 | } |
530 | 533 | ||
@@ -1327,10 +1330,6 @@ class EntryControllerTest extends WallabagCoreTestCase | |||
1327 | 'http://www.hao123.com/shequ?__noscript__-=1', | 1330 | 'http://www.hao123.com/shequ?__noscript__-=1', |
1328 | 'zh_CN', | 1331 | 'zh_CN', |
1329 | ], | 1332 | ], |
1330 | 'ru' => [ | ||
1331 | 'https://www.kp.ru/daily/26879.7/3921982/', | ||
1332 | 'ru', | ||
1333 | ], | ||
1334 | 'pt_BR' => [ | 1333 | 'pt_BR' => [ |
1335 | 'https://politica.estadao.com.br/noticias/eleicoes,campanha-catatonica,70002491983', | 1334 | 'https://politica.estadao.com.br/noticias/eleicoes,campanha-catatonica,70002491983', |
1336 | 'pt_BR', | 1335 | 'pt_BR', |
diff --git a/tests/Wallabag/CoreBundle/Controller/ExportControllerTest.php b/tests/Wallabag/CoreBundle/Controller/ExportControllerTest.php index 6f3308e5..d7ce7c45 100644 --- a/tests/Wallabag/CoreBundle/Controller/ExportControllerTest.php +++ b/tests/Wallabag/CoreBundle/Controller/ExportControllerTest.php | |||
@@ -98,7 +98,7 @@ class ExportControllerTest extends WallabagCoreTestCase | |||
98 | 98 | ||
99 | $headers = $client->getResponse()->headers; | 99 | $headers = $client->getResponse()->headers; |
100 | $this->assertSame('application/x-mobipocket-ebook', $headers->get('content-type')); | 100 | $this->assertSame('application/x-mobipocket-ebook', $headers->get('content-type')); |
101 | $this->assertSame('attachment; filename="' . preg_replace('/[^A-Za-z0-9\-]/', '', $content->getTitle()) . '.mobi"', $headers->get('content-disposition')); | 101 | $this->assertSame('attachment; filename="' . $this->getSanitizedFilename($content->getTitle()) . '.mobi"', $headers->get('content-disposition')); |
102 | $this->assertSame('binary', $headers->get('content-transfer-encoding')); | 102 | $this->assertSame('binary', $headers->get('content-transfer-encoding')); |
103 | } | 103 | } |
104 | 104 | ||
@@ -126,7 +126,7 @@ class ExportControllerTest extends WallabagCoreTestCase | |||
126 | 126 | ||
127 | $headers = $client->getResponse()->headers; | 127 | $headers = $client->getResponse()->headers; |
128 | $this->assertSame('application/pdf', $headers->get('content-type')); | 128 | $this->assertSame('application/pdf', $headers->get('content-type')); |
129 | $this->assertSame('attachment; filename="Tag_entries articles.pdf"', $headers->get('content-disposition')); | 129 | $this->assertSame('attachment; filename="Tag foo bar articles.pdf"', $headers->get('content-disposition')); |
130 | $this->assertSame('binary', $headers->get('content-transfer-encoding')); | 130 | $this->assertSame('binary', $headers->get('content-transfer-encoding')); |
131 | } | 131 | } |
132 | 132 | ||
@@ -180,7 +180,7 @@ class ExportControllerTest extends WallabagCoreTestCase | |||
180 | 180 | ||
181 | $this->assertGreaterThan(1, $csv); | 181 | $this->assertGreaterThan(1, $csv); |
182 | // +1 for title line | 182 | // +1 for title line |
183 | $this->assertSame(\count($contentInDB) + 1, \count($csv)); | 183 | $this->assertCount(\count($contentInDB) + 1, $csv); |
184 | $this->assertSame('Title;URL;Content;Tags;"MIME Type";Language;"Creation date"', $csv[0]); | 184 | $this->assertSame('Title;URL;Content;Tags;"MIME Type";Language;"Creation date"', $csv[0]); |
185 | $this->assertContains($contentInDB[0]['title'], $csv[1]); | 185 | $this->assertContains($contentInDB[0]['title'], $csv[1]); |
186 | $this->assertContains($contentInDB[0]['url'], $csv[1]); | 186 | $this->assertContains($contentInDB[0]['url'], $csv[1]); |
@@ -212,7 +212,7 @@ class ExportControllerTest extends WallabagCoreTestCase | |||
212 | 212 | ||
213 | $headers = $client->getResponse()->headers; | 213 | $headers = $client->getResponse()->headers; |
214 | $this->assertSame('application/json', $headers->get('content-type')); | 214 | $this->assertSame('application/json', $headers->get('content-type')); |
215 | $this->assertSame('attachment; filename="' . $contentInDB->getTitle() . '.json"', $headers->get('content-disposition')); | 215 | $this->assertSame('attachment; filename="' . $this->getSanitizedFilename($contentInDB->getTitle()) . '.json"', $headers->get('content-disposition')); |
216 | $this->assertSame('UTF-8', $headers->get('content-transfer-encoding')); | 216 | $this->assertSame('UTF-8', $headers->get('content-transfer-encoding')); |
217 | 217 | ||
218 | $content = json_decode($client->getResponse()->getContent(), true); | 218 | $content = json_decode($client->getResponse()->getContent(), true); |
@@ -281,4 +281,9 @@ class ExportControllerTest extends WallabagCoreTestCase | |||
281 | $this->assertNotEmpty('created_at', (string) $content->entry[0]->created_at); | 281 | $this->assertNotEmpty('created_at', (string) $content->entry[0]->created_at); |
282 | $this->assertNotEmpty('updated_at', (string) $content->entry[0]->updated_at); | 282 | $this->assertNotEmpty('updated_at', (string) $content->entry[0]->updated_at); |
283 | } | 283 | } |
284 | |||
285 | private function getSanitizedFilename($title) | ||
286 | { | ||
287 | return preg_replace('/[^A-Za-z0-9\- \']/', '', iconv('utf-8', 'us-ascii//TRANSLIT', $title)); | ||
288 | } | ||
284 | } | 289 | } |
diff --git a/tests/Wallabag/CoreBundle/Controller/RssControllerTest.php b/tests/Wallabag/CoreBundle/Controller/RssControllerTest.php index 2af6e14f..afa90621 100644 --- a/tests/Wallabag/CoreBundle/Controller/RssControllerTest.php +++ b/tests/Wallabag/CoreBundle/Controller/RssControllerTest.php | |||
@@ -11,7 +11,7 @@ class RssControllerTest extends WallabagCoreTestCase | |||
11 | $doc = new \DOMDocument(); | 11 | $doc = new \DOMDocument(); |
12 | $doc->loadXML($xml); | 12 | $doc->loadXML($xml); |
13 | 13 | ||
14 | $xpath = new \DOMXpath($doc); | 14 | $xpath = new \DOMXPath($doc); |
15 | 15 | ||
16 | if (null === $nb) { | 16 | if (null === $nb) { |
17 | $this->assertGreaterThan(0, $xpath->query('//item')->length); | 17 | $this->assertGreaterThan(0, $xpath->query('//item')->length); |
diff --git a/tests/Wallabag/CoreBundle/Helper/RedirectTest.php b/tests/Wallabag/CoreBundle/Helper/RedirectTest.php index 04e1a59c..29e12cbe 100644 --- a/tests/Wallabag/CoreBundle/Helper/RedirectTest.php +++ b/tests/Wallabag/CoreBundle/Helper/RedirectTest.php | |||
@@ -17,6 +17,9 @@ class RedirectTest extends TestCase | |||
17 | /** @var Redirect */ | 17 | /** @var Redirect */ |
18 | private $redirect; | 18 | private $redirect; |
19 | 19 | ||
20 | /** @var UsernamePasswordToken */ | ||
21 | private $token; | ||
22 | |||
20 | public function setUp() | 23 | public function setUp() |
21 | { | 24 | { |
22 | $this->routerMock = $this->getMockBuilder('Symfony\Component\Routing\Router') | 25 | $this->routerMock = $this->getMockBuilder('Symfony\Component\Routing\Router') |
diff --git a/tests/Wallabag/CoreBundle/ParamConverter/UsernameRssTokenConverterTest.php b/tests/Wallabag/CoreBundle/ParamConverter/UsernameRssTokenConverterTest.php index b044a700..800af5c9 100644 --- a/tests/Wallabag/CoreBundle/ParamConverter/UsernameRssTokenConverterTest.php +++ b/tests/Wallabag/CoreBundle/ParamConverter/UsernameRssTokenConverterTest.php | |||
@@ -1,6 +1,6 @@ | |||
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | namespace Tests\Wallabag\CoreBundle\Command; | 3 | namespace Tests\Wallabag\CoreBundle\ParamConverter; |
4 | 4 | ||
5 | use PHPUnit\Framework\TestCase; | 5 | use PHPUnit\Framework\TestCase; |
6 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter; | 6 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter; |
diff --git a/tests/Wallabag/CoreBundle/Tools/UtilsTest.php b/tests/Wallabag/CoreBundle/Tools/UtilsTest.php index 952d076d..c6ed74f0 100644 --- a/tests/Wallabag/CoreBundle/Tools/UtilsTest.php +++ b/tests/Wallabag/CoreBundle/Tools/UtilsTest.php | |||
@@ -11,9 +11,9 @@ class UtilsTest extends TestCase | |||
11 | /** | 11 | /** |
12 | * @dataProvider examples | 12 | * @dataProvider examples |
13 | */ | 13 | */ |
14 | public function testCorrectWordsCountForDifferentLanguages($text, $expectedCount) | 14 | public function testCorrectWordsCountForDifferentLanguages($filename, $text, $expectedCount) |
15 | { | 15 | { |
16 | static::assertSame((float) $expectedCount, Utils::getReadingTime($text)); | 16 | static::assertSame((float) $expectedCount, Utils::getReadingTime($text), 'Reading time for: ' . $filename); |
17 | } | 17 | } |
18 | 18 | ||
19 | public function examples() | 19 | public function examples() |
@@ -21,7 +21,17 @@ class UtilsTest extends TestCase | |||
21 | $examples = []; | 21 | $examples = []; |
22 | $finder = (new Finder())->in(__DIR__ . '/samples'); | 22 | $finder = (new Finder())->in(__DIR__ . '/samples'); |
23 | foreach ($finder->getIterator() as $file) { | 23 | foreach ($finder->getIterator() as $file) { |
24 | $examples[] = [$file->getContents(), 1]; | 24 | preg_match('/-----CONTENT-----\s*(.*?)\s*-----READING_TIME-----\s*(.*)/sx', $file->getContents(), $match); |
25 | |||
26 | if (3 !== \count($match)) { | ||
27 | throw new \Exception('Sample file "' . $file->getRelativePathname() . '" as wrong definition, see README.'); | ||
28 | } | ||
29 | |||
30 | $examples[] = [ | ||
31 | $file->getRelativePathname(), | ||
32 | $match[1], // content | ||
33 | $match[2], // reading time | ||
34 | ]; | ||
25 | } | 35 | } |
26 | 36 | ||
27 | return $examples; | 37 | return $examples; |
diff --git a/tests/Wallabag/CoreBundle/Tools/samples/README b/tests/Wallabag/CoreBundle/Tools/samples/README new file mode 100644 index 00000000..e8f946c0 --- /dev/null +++ b/tests/Wallabag/CoreBundle/Tools/samples/README | |||
@@ -0,0 +1,5 @@ | |||
1 | Defined language sample should use the following structure: | ||
2 | |||
3 | -----CONTENT----- | ||
4 | |||
5 | -----READING_TIME----- | ||
diff --git a/tests/Wallabag/CoreBundle/Tools/samples/chinese.txt b/tests/Wallabag/CoreBundle/Tools/samples/chinese.txt new file mode 100644 index 00000000..864603cb --- /dev/null +++ b/tests/Wallabag/CoreBundle/Tools/samples/chinese.txt | |||
@@ -0,0 +1,10 @@ | |||
1 | -----CONTENT----- | ||
2 | 职然问讲念谷月挂大报住本読能录要褐込。料士纸木陈与兴组静终図问有。今観深车相环学俳健越増职県県多券报。雪月批导掲稿家缝城间真中崩図人连。前担写治芸面毎作似水州稿注球戦頃。済方宮安目垣強入料会先呼略。計定設負財作覧経己員事田事球岡示差学。最院書模婚金回禁朝船教任分禁検理慮宿。 | ||
3 | |||
4 | 変送调指式真気交现上様女限宅复。禁业稿者普视想来木残止者済断式安。万致相领鉄再改界逮由竹式元最台変。済问活助库脳部风政京転说区変。文図化仙政常地里芸上褒前読望误记温政信土。惑育候当人万部逮重申結標番業望般。断瀬後社天打日資交献秀世覧第。補当編里身社記利件部夜中心掲大。 | ||
5 | |||
6 | 时大栗夜测署市要纯京挙化済负品。天最场情算掲放故手茨指岛然渡活民年。第纯交一特问明室试賛际者建。论铜所常縄一広気特秋提公茶可満编旅相変権。 | ||
7 | |||
8 | 兵线済来先决模入供定树希逮技鉄多连写塩。着刊禁浩歩人仕设谢争关周徒今高。十育幕桂球门载任快毎社洋着道育纸格幻末。关机高害通方纳狱社州要北相持中表。郎市真提里过何连地更重都山割周。 | ||
9 | -----READING_TIME----- | ||
10 | 1 | ||
diff --git a/tests/Wallabag/CoreBundle/Tools/samples/cyrillic.txt b/tests/Wallabag/CoreBundle/Tools/samples/cyrillic.txt index 7b904da4..90906d04 100644 --- a/tests/Wallabag/CoreBundle/Tools/samples/cyrillic.txt +++ b/tests/Wallabag/CoreBundle/Tools/samples/cyrillic.txt | |||
@@ -1,7 +1,10 @@ | |||
1 | -----CONTENT----- | ||
1 | Лорем ипсум долор сит амет, ех цум иллуд деленит, пер регионе фацилис те. Еи мел видит саепе интеллегам, яуас маиестатис цонституам яуо ат, цивибус реформиданс нецесситатибус ид яуи. Импетус тациматес пертинах ад еум. Усу еу легере бландит. | 2 | Лорем ипсум долор сит амет, ех цум иллуд деленит, пер регионе фацилис те. Еи мел видит саепе интеллегам, яуас маиестатис цонституам яуо ат, цивибус реформиданс нецесситатибус ид яуи. Импетус тациматес пертинах ад еум. Усу еу легере бландит. |
2 | 3 | ||
3 | Ан меа тритани иуварет, иллум сцаевола легендос ат меа, дебитис импедит нусяуам ест ад. Не маиорум молестие цотидиеяуе вис. Иисяуе цонцлудатуряуе меи еу, татион цонсецтетуер еи про. Либер риденс ид хас, ид цонсул сенсерит пертинациа меа. Фацер молестиае цомпрехенсам ад еум, ин хис апеириан вивендум. Яуи аудире епицуреи иудицабит ат, веро хабео вертерем ад иус. Бонорум плацерат ин вис, сеа но оцурререт принципес интерессет, хас ет дицерет диспутандо. | 4 | Ан меа тритани иуварет, иллум сцаевола легендос ат меа, дебитис импедит нусяуам ест ад. Не маиорум молестие цотидиеяуе вис. Иисяуе цонцлудатуряуе меи еу, татион цонсецтетуер еи про. Либер риденс ид хас, ид цонсул сенсерит пертинациа меа. Фацер молестиае цомпрехенсам ад еум, ин хис апеириан вивендум. Яуи аудире епицуреи иудицабит ат, веро хабео вертерем ад иус. Бонорум плацерат ин вис, сеа но оцурререт принципес интерессет, хас ет дицерет диспутандо. |
4 | 5 | ||
5 | Яуо цу цлита оцурререт. Сонет менандри ин сеа. Еум те нонумы вертерем. Вирис еяуидем фацилиси ет вим, делицата интеллегат иус ин. Ид дицат суммо витае вел, алияуип делецтус те дуо, цу вих хинц дуис видиссе. Нец цу фацилис урбанитас, алиа инсоленс ассуеверит при ут. | 6 | Яуо цу цлита оцурререт. Сонет менандри ин сеа. Еум те нонумы вертерем. Вирис еяуидем фацилиси ет вим, делицата интеллегат иус ин. Ид дицат суммо витае вел, алияуип делецтус те дуо, цу вих хинц дуис видиссе. Нец цу фацилис урбанитас, алиа инсоленс ассуеверит при ут. |
6 | 7 | ||
7 | Яуаеяуе абхорреант инцоррупте не сеа, еу еирмод ерудити вих. Вел оптион тритани цоррумпит те. Поссе сусципит губергрен ут мел, ет еос ириуре менандри еффициенди. Те сале нулла цонсецтетуер сеа, меа не прима алиенум еффициантур. При ет воцибус реформиданс, темпор албуциус сед ан. Еи утрояуе волумус иус, атяуи цонгуе но меи. \ No newline at end of file | 8 | Яуаеяуе абхорреант инцоррупте не сеа, еу еирмод ерудити вих. Вел оптион тритани цоррумпит те. Поссе сусципит губергрен ут мел, ет еос ириуре менандри еффициенди. Те сале нулла цонсецтетуер сеа, меа не прима алиенум еффициантур. При ет воцибус реформиданс, темпор албуциус сед ан. Еи утрояуе волумус иус, атяуи цонгуе но меи. |
9 | -----READING_TIME----- | ||
10 | 1 | ||
diff --git a/tests/Wallabag/CoreBundle/Tools/samples/greek.txt b/tests/Wallabag/CoreBundle/Tools/samples/greek.txt index 59f15b8b..f8ade0d7 100644 --- a/tests/Wallabag/CoreBundle/Tools/samples/greek.txt +++ b/tests/Wallabag/CoreBundle/Tools/samples/greek.txt | |||
@@ -1,3 +1,4 @@ | |||
1 | -----CONTENT----- | ||
1 | Λορεμ ιπσθμ δολορ σιτ αμετ, ηασ νο θταμθρ qθαεqθε ρεπρεηενδθντ. Ναμ λατινε προμπτα qθαερενδθμ ιδ. Νεc ει φαcερ cονcλθδατθρqθε, vολθπτθα vολθπταρια εφφιcιενδι αδ προ, νε σεα ασσεντιορ δεφινιεβασ. Μεα αγαμ ειθσ δολορε ετ, ηισ ει cορπορα περφεcτο. Vιξ cιβο δελενιτ νε, jθστο ριδενσ οπορτερε σεδ ιδ. | 2 | Λορεμ ιπσθμ δολορ σιτ αμετ, ηασ νο θταμθρ qθαεqθε ρεπρεηενδθντ. Ναμ λατινε προμπτα qθαερενδθμ ιδ. Νεc ει φαcερ cονcλθδατθρqθε, vολθπτθα vολθπταρια εφφιcιενδι αδ προ, νε σεα ασσεντιορ δεφινιεβασ. Μεα αγαμ ειθσ δολορε ετ, ηισ ει cορπορα περφεcτο. Vιξ cιβο δελενιτ νε, jθστο ριδενσ οπορτερε σεδ ιδ. |
2 | 3 | ||
3 | Ηισ νισλ ιθvαρετ γθβεργρεν εξ. Εθμ ιμπεδιτ δετραξιτ ινιμιcθσ ατ, αλια βλανδιτ δθο εα, μεα ιλλθδ επιcθρι cονσετετθρ αδ. Ιλλθδ γραεcε δελενιτι ηισ νο. Νεc ιδ ριδενσ εθισμοδ περιcθλισ, vισ αδ λαβοραμθσ περσεcθτι. Ιθσ εα λθπτατθμ αλιqθανδο δισπθτανδο. | 4 | Ηισ νισλ ιθvαρετ γθβεργρεν εξ. Εθμ ιμπεδιτ δετραξιτ ινιμιcθσ ατ, αλια βλανδιτ δθο εα, μεα ιλλθδ επιcθρι cονσετετθρ αδ. Ιλλθδ γραεcε δελενιτι ηισ νο. Νεc ιδ ριδενσ εθισμοδ περιcθλισ, vισ αδ λαβοραμθσ περσεcθτι. Ιθσ εα λθπτατθμ αλιqθανδο δισπθτανδο. |
@@ -6,4 +7,6 @@ | |||
6 | 7 | ||
7 | Cθ σεδ αλβθcιθσ ποστθλαντ. Vιξ ιδ ηομερο περcιπιτ cονcεπταμ. Ιν vιμ λιβρισ vιδερερ, εξ vισ αλιι ερρορ. Vιξ λοβορτισ ασσεντιορ cοντεντιονεσ τε, νε ηασ δεcορε περcιπιτθρ. Εστ εξ δισπθτατιονι δεφινιτιονεμ, qθοδ πηαεδρθμ προ εθ, εξ ηασ ιντεγρε ελιγενδι cονσεcτετθερ. | 8 | Cθ σεδ αλβθcιθσ ποστθλαντ. Vιξ ιδ ηομερο περcιπιτ cονcεπταμ. Ιν vιμ λιβρισ vιδερερ, εξ vισ αλιι ερρορ. Vιξ λοβορτισ ασσεντιορ cοντεντιονεσ τε, νε ηασ δεcορε περcιπιτθρ. Εστ εξ δισπθτατιονι δεφινιτιονεμ, qθοδ πηαεδρθμ προ εθ, εξ ηασ ιντεγρε ελιγενδι cονσεcτετθερ. |
8 | 9 | ||
9 | Ιθσ μολλισ ειρμοδ νο, vιξ νοστρθμ cονσετετθρ ει. Ιθδιcο vερτερεμ λθcιλιθσ qθι τε, νε προμπτα θτροqθε αccομμοδαρε περ. Φαcετε μανδαμθσ ηασ εξ, λιβερ δεβετ εθμ εξ, vιξ ιδ διcερετ σιγνιφερθμqθε. Εθ vιξ vοcεντ. \ No newline at end of file | 10 | Ιθσ μολλισ ειρμοδ νο, vιξ νοστρθμ cονσετετθρ ει. Ιθδιcο vερτερεμ λθcιλιθσ qθι τε, νε προμπτα θτροqθε αccομμοδαρε περ. Φαcετε μανδαμθσ ηασ εξ, λιβερ δεβετ εθμ εξ, vιξ ιδ διcερετ σιγνιφερθμqθε. Εθ vιξ vοcεντ. |
11 | -----READING_TIME----- | ||
12 | 1 | ||
diff --git a/tests/Wallabag/CoreBundle/Tools/samples/japanese.txt b/tests/Wallabag/CoreBundle/Tools/samples/japanese.txt new file mode 100644 index 00000000..013a8d74 --- /dev/null +++ b/tests/Wallabag/CoreBundle/Tools/samples/japanese.txt | |||
@@ -0,0 +1,10 @@ | |||
1 | -----CONTENT----- | ||
2 | 聞7配なク時初かきぴ触整ヨ国鴨覧女ミ将増3部ゅ見荷や言企まげやラ千第ロル企族リた期寄け。戦ト理載コミチヒ芸面だ会入テヒロソ一期ナトヒ試鮮せお天出並ぞる体森ヘツノ決市ね地各ナク強町ず前目とまなを活直オ携握湯りよ。 | ||
3 | |||
4 | 流ムワ作大禁ヒフ断日ヱ断千ね消諸もとぐろ中勧リ配年リ文7茅ろへりめ辺渡フ三負安ぼ国撮ライム以逃めじット州67棋うきゃ。催キケ者乗フヒソツ染64崎ク捉示よぴふら道世へび属品おく西捕ニレ交重イフ式買散ル展五めづっイ鎧属ざごび数開キハツ聞続表クシタ補球ソウ禁源託ひれも。 | ||
5 | |||
6 | 季手ッがふ挙思メ勢1使すけねげ日熱争らあふか位義エコ望桑安く決管ーひ広間キヱ皇北ょはこ養山ミ放見負さぞて故携訃畑港ひわン。著支にふみ意豊ラだ球監トクユ馬惨が抱審リヒ労厚ゅぽひ継貸ミノ果疑文キヤ闘府兼ユカシト多不っあ財責エ速訴径猶げすぽ。 | ||
7 | |||
8 | 了摘見いぶころ会料へゆぱ法利コツハリ統財千りイ伝年りぜ提社ロ片追ごー合作イカシニ感山よち真器敗香レれさ。視シ探大イ令69真ケトヱ便都ケホワナ境号ヱカオハ一助む関念ろんび幼脚要だ客投ヱハイ針教ヒノウラ階担うスりね袖陸ょげけ同講ノ料全ヤ催宮補ゆ徳就画圧愛め。 | ||
9 | -----READING_TIME----- | ||
10 | 1 | ||
diff --git a/tests/Wallabag/CoreBundle/Tools/samples/korean.txt b/tests/Wallabag/CoreBundle/Tools/samples/korean.txt new file mode 100644 index 00000000..e3ef2af6 --- /dev/null +++ b/tests/Wallabag/CoreBundle/Tools/samples/korean.txt | |||
@@ -0,0 +1,10 @@ | |||
1 | -----CONTENT----- | ||
2 | 국군은 국가의 안전보장과 국토방위의 신성한 의무를 수행함을 사명으로 하며, 대통령이 임시회의 집회를 요구할 때에는 기간과 집회요구의 이유를 명시하여야 한다. 정당의 목적이나 활동이 민주적 기본질서에 위배될 때에는 정부는 헌법재판소에 그 해산을 제소할 수 있고. 감사위원은 원장의 제청으로 대통령이 임명하고. | ||
3 | |||
4 | 대한민국의 주권은 국민에게 있고, 국회는 국민의 보통·평등·직접·비밀선거에 의하여 선출된 국회의원으로 구성한다. 국가는 농업 및 어업을 보호·육성하기 위하여 농·어촌종합개발과 그 지원등 필요한 계획을 수립·시행하여야 한다. 대통령의 임기연장 또는 중임변경을 위한 헌법개정은 그 헌법개정 제안 당시의 대통령에 대하여는 효력이 없다. | ||
5 | |||
6 | 국회가 재적의원 과반수의 찬성으로 계엄의 해제를 요구한 때에는 대통령은 이를 해제하여야 한다, 선거에 관한 경비는 법률이 정하는 경우를 제외하고는 정당 또는 후보자에게 부담시킬 수 없다. 그 정치적 중립성은 준수된다. 헌법개정안은 국회가 의결한 후 30일 이내에 국민투표에 붙여 국회의원선거권자 과반수의 투표와 투표자 과반수의 찬성을 얻어야 한다. | ||
7 | |||
8 | 내부규율과 사무처리에 관한 규칙을 제정할 수 있다. 대통령에 대한 탄핵소추는 국회재적의원 과반수의 발의와 국회재적의원 3분의 2 이상의 찬성이 있어야 한다. 대통령은 국가의 원수이며. 대통령이 궐위된 때 또는 대통령 당선자가 사망하거나 판결 기타의 사유로 그 자격을 상실한 때에는 60일 이내에 후임자를 선거한다. | ||
9 | -----READING_TIME----- | ||
10 | 2 | ||
diff --git a/tests/Wallabag/CoreBundle/Tools/samples/latin.txt b/tests/Wallabag/CoreBundle/Tools/samples/latin.txt index 605cc40e..27988597 100644 --- a/tests/Wallabag/CoreBundle/Tools/samples/latin.txt +++ b/tests/Wallabag/CoreBundle/Tools/samples/latin.txt | |||
@@ -1,3 +1,4 @@ | |||
1 | -----CONTENT----- | ||
1 | Lorem ipsum dolor sit amet, pro vivendo oporteat pertinacia ei. Vim fabellas molestiae cu, vel nibh legimus ea, in qui atomorum democritum. Ius ne agam soluta ignota, his sale aperiri complectitur te, omnis volumus accusam an eos. Ut mentitum appetere mel, minim temporibus eloquentiam sea ea. | 2 | Lorem ipsum dolor sit amet, pro vivendo oporteat pertinacia ei. Vim fabellas molestiae cu, vel nibh legimus ea, in qui atomorum democritum. Ius ne agam soluta ignota, his sale aperiri complectitur te, omnis volumus accusam an eos. Ut mentitum appetere mel, minim temporibus eloquentiam sea ea. |
2 | 3 | ||
3 | Tation nominati pro ad. Pri eros eloquentiam reformidans ea, et liber epicurei erroribus pro, pri patrioque repudiandae et. Cetero perfecto at eam. Eros hendrerit constituto vix at, brute aperiri adolescens pro eu. Vix lucilius consulatu ei, ullum tantas munere vel in, regione feugiat eligendi at eam. | 4 | Tation nominati pro ad. Pri eros eloquentiam reformidans ea, et liber epicurei erroribus pro, pri patrioque repudiandae et. Cetero perfecto at eam. Eros hendrerit constituto vix at, brute aperiri adolescens pro eu. Vix lucilius consulatu ei, ullum tantas munere vel in, regione feugiat eligendi at eam. |
@@ -6,4 +7,6 @@ Eam an lucilius iracundia, audire diceret facilisi his in, ex paulo pertinacia p | |||
6 | 7 | ||
7 | Nec ut quod probo eligendi, cu dico iriure aperiam vis. Augue causae abhorreant per ut, iriure repudiandae no nam, exerci equidem deleniti nam te. Et duo saperet debitis adipiscing, quo odio audiam no, ex iudico delenit propriae duo. Eu eum eros abhorreant, an tractatos expetendis est. | 8 | Nec ut quod probo eligendi, cu dico iriure aperiam vis. Augue causae abhorreant per ut, iriure repudiandae no nam, exerci equidem deleniti nam te. Et duo saperet debitis adipiscing, quo odio audiam no, ex iudico delenit propriae duo. Eu eum eros abhorreant, an tractatos expetendis est. |
8 | 9 | ||
9 | Vix. \ No newline at end of file | 10 | Vix. |
11 | -----READING_TIME----- | ||
12 | 1 | ||
diff --git a/tests/Wallabag/ImportBundle/Consumer/AMQPEntryConsumerTest.php b/tests/Wallabag/ImportBundle/Consumer/AMQPEntryConsumerTest.php index b2141c04..b7f6192d 100644 --- a/tests/Wallabag/ImportBundle/Consumer/AMQPEntryConsumerTest.php +++ b/tests/Wallabag/ImportBundle/Consumer/AMQPEntryConsumerTest.php | |||
@@ -1,6 +1,6 @@ | |||
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | namespace Tests\Wallabag\ImportBundle\Consumer\AMQP; | 3 | namespace Tests\Wallabag\ImportBundle\Consumer; |
4 | 4 | ||
5 | use PhpAmqpLib\Message\AMQPMessage; | 5 | use PhpAmqpLib\Message\AMQPMessage; |
6 | use PHPUnit\Framework\TestCase; | 6 | use PHPUnit\Framework\TestCase; |
diff --git a/tests/Wallabag/ImportBundle/Consumer/RedisEntryConsumerTest.php b/tests/Wallabag/ImportBundle/Consumer/RedisEntryConsumerTest.php index 61337e47..e1bd8827 100644 --- a/tests/Wallabag/ImportBundle/Consumer/RedisEntryConsumerTest.php +++ b/tests/Wallabag/ImportBundle/Consumer/RedisEntryConsumerTest.php | |||
@@ -1,6 +1,6 @@ | |||
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | namespace Tests\Wallabag\ImportBundle\Consumer\AMQP; | 3 | namespace Tests\Wallabag\ImportBundle\Consumer; |
4 | 4 | ||
5 | use PHPUnit\Framework\TestCase; | 5 | use PHPUnit\Framework\TestCase; |
6 | use Wallabag\CoreBundle\Entity\Entry; | 6 | use Wallabag\CoreBundle\Entity\Entry; |
diff --git a/tests/Wallabag/ImportBundle/Controller/ChromeControllerTest.php b/tests/Wallabag/ImportBundle/Controller/ChromeControllerTest.php index cd3e41e9..d3ffbb6d 100644 --- a/tests/Wallabag/ImportBundle/Controller/ChromeControllerTest.php +++ b/tests/Wallabag/ImportBundle/Controller/ChromeControllerTest.php | |||
@@ -121,7 +121,7 @@ class ChromeControllerTest extends WallabagCoreTestCase | |||
121 | $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content); | 121 | $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content); |
122 | $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for http://www.usinenouvelle.com is ok'); | 122 | $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for http://www.usinenouvelle.com is ok'); |
123 | $this->assertNotEmpty($content->getLanguage(), 'Language for http://www.usinenouvelle.com is ok'); | 123 | $this->assertNotEmpty($content->getLanguage(), 'Language for http://www.usinenouvelle.com is ok'); |
124 | $this->assertSame(1, \count($content->getTags())); | 124 | $this->assertCount(1, $content->getTags()); |
125 | 125 | ||
126 | $createdAt = $content->getCreatedAt(); | 126 | $createdAt = $content->getCreatedAt(); |
127 | $this->assertSame('2011', $createdAt->format('Y')); | 127 | $this->assertSame('2011', $createdAt->format('Y')); |
diff --git a/tests/Wallabag/ImportBundle/Controller/FirefoxControllerTest.php b/tests/Wallabag/ImportBundle/Controller/FirefoxControllerTest.php index dc5ed6d0..3e64f2e5 100644 --- a/tests/Wallabag/ImportBundle/Controller/FirefoxControllerTest.php +++ b/tests/Wallabag/ImportBundle/Controller/FirefoxControllerTest.php | |||
@@ -122,7 +122,7 @@ class FirefoxControllerTest extends WallabagCoreTestCase | |||
122 | $this->assertNotEmpty($content->getMimetype(), 'Mimetype for http://lexpansion.lexpress.fr is ok'); | 122 | $this->assertNotEmpty($content->getMimetype(), 'Mimetype for http://lexpansion.lexpress.fr is ok'); |
123 | $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for http://lexpansion.lexpress.fr is ok'); | 123 | $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for http://lexpansion.lexpress.fr is ok'); |
124 | $this->assertNotEmpty($content->getLanguage(), 'Language for http://lexpansion.lexpress.fr is ok'); | 124 | $this->assertNotEmpty($content->getLanguage(), 'Language for http://lexpansion.lexpress.fr is ok'); |
125 | $this->assertSame(3, \count($content->getTags())); | 125 | $this->assertCount(3, $content->getTags()); |
126 | 126 | ||
127 | $content = $client->getContainer() | 127 | $content = $client->getContainer() |
128 | ->get('doctrine.orm.entity_manager') | 128 | ->get('doctrine.orm.entity_manager') |
diff --git a/tests/Wallabag/ImportBundle/Controller/InstapaperControllerTest.php b/tests/Wallabag/ImportBundle/Controller/InstapaperControllerTest.php index 7390fa88..05347767 100644 --- a/tests/Wallabag/ImportBundle/Controller/InstapaperControllerTest.php +++ b/tests/Wallabag/ImportBundle/Controller/InstapaperControllerTest.php | |||
@@ -124,7 +124,7 @@ class InstapaperControllerTest extends WallabagCoreTestCase | |||
124 | $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for https://www.liberation.fr is ok'); | 124 | $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for https://www.liberation.fr is ok'); |
125 | $this->assertNotEmpty($content->getLanguage(), 'Language for https://www.liberation.fr is ok'); | 125 | $this->assertNotEmpty($content->getLanguage(), 'Language for https://www.liberation.fr is ok'); |
126 | $this->assertContains('foot', $content->getTags(), 'It includes the "foot" tag'); | 126 | $this->assertContains('foot', $content->getTags(), 'It includes the "foot" tag'); |
127 | $this->assertSame(1, \count($content->getTags())); | 127 | $this->assertCount(1, $content->getTags()); |
128 | $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt()); | 128 | $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt()); |
129 | 129 | ||
130 | $content = $client->getContainer() | 130 | $content = $client->getContainer() |
@@ -138,7 +138,7 @@ class InstapaperControllerTest extends WallabagCoreTestCase | |||
138 | $this->assertContains('foot', $content->getTags()); | 138 | $this->assertContains('foot', $content->getTags()); |
139 | $this->assertContains('test_tag', $content->getTags()); | 139 | $this->assertContains('test_tag', $content->getTags()); |
140 | 140 | ||
141 | $this->assertSame(2, \count($content->getTags())); | 141 | $this->assertCount(2, $content->getTags()); |
142 | } | 142 | } |
143 | 143 | ||
144 | public function testImportInstapaperWithFileAndMarkAllAsRead() | 144 | public function testImportInstapaperWithFileAndMarkAllAsRead() |
diff --git a/tests/Wallabag/ImportBundle/Controller/PinboardControllerTest.php b/tests/Wallabag/ImportBundle/Controller/PinboardControllerTest.php index 80819f45..15646d55 100644 --- a/tests/Wallabag/ImportBundle/Controller/PinboardControllerTest.php +++ b/tests/Wallabag/ImportBundle/Controller/PinboardControllerTest.php | |||
@@ -127,7 +127,7 @@ class PinboardControllerTest extends WallabagCoreTestCase | |||
127 | $this->assertContains('foot', $tags, 'It includes the "foot" tag'); | 127 | $this->assertContains('foot', $tags, 'It includes the "foot" tag'); |
128 | $this->assertContains('varnish', $tags, 'It includes the "varnish" tag'); | 128 | $this->assertContains('varnish', $tags, 'It includes the "varnish" tag'); |
129 | $this->assertContains('php', $tags, 'It includes the "php" tag'); | 129 | $this->assertContains('php', $tags, 'It includes the "php" tag'); |
130 | $this->assertSame(3, \count($tags)); | 130 | $this->assertCount(3, $tags); |
131 | 131 | ||
132 | $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt()); | 132 | $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt()); |
133 | $this->assertSame('2016-10-26', $content->getCreatedAt()->format('Y-m-d')); | 133 | $this->assertSame('2016-10-26', $content->getCreatedAt()->format('Y-m-d')); |
diff --git a/tests/Wallabag/ImportBundle/Controller/ReadabilityControllerTest.php b/tests/Wallabag/ImportBundle/Controller/ReadabilityControllerTest.php index 5619659a..4f2f4053 100644 --- a/tests/Wallabag/ImportBundle/Controller/ReadabilityControllerTest.php +++ b/tests/Wallabag/ImportBundle/Controller/ReadabilityControllerTest.php | |||
@@ -125,7 +125,7 @@ class ReadabilityControllerTest extends WallabagCoreTestCase | |||
125 | 125 | ||
126 | $tags = $content->getTags(); | 126 | $tags = $content->getTags(); |
127 | $this->assertContains('foot', $tags, 'It includes the "foot" tag'); | 127 | $this->assertContains('foot', $tags, 'It includes the "foot" tag'); |
128 | $this->assertSame(1, \count($tags)); | 128 | $this->assertCount(1, $tags); |
129 | 129 | ||
130 | $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt()); | 130 | $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt()); |
131 | $this->assertSame('2016-09-08', $content->getCreatedAt()->format('Y-m-d')); | 131 | $this->assertSame('2016-09-08', $content->getCreatedAt()->format('Y-m-d')); |
diff --git a/tests/Wallabag/ImportBundle/Controller/WallabagV1ControllerTest.php b/tests/Wallabag/ImportBundle/Controller/WallabagV1ControllerTest.php index c67941a7..1f57939d 100644 --- a/tests/Wallabag/ImportBundle/Controller/WallabagV1ControllerTest.php +++ b/tests/Wallabag/ImportBundle/Controller/WallabagV1ControllerTest.php | |||
@@ -127,7 +127,7 @@ class WallabagV1ControllerTest extends WallabagCoreTestCase | |||
127 | $tags = $content->getTags(); | 127 | $tags = $content->getTags(); |
128 | $this->assertContains('foot', $tags, 'It includes the "foot" tag'); | 128 | $this->assertContains('foot', $tags, 'It includes the "foot" tag'); |
129 | $this->assertContains('framabag', $tags, 'It includes the "framabag" tag'); | 129 | $this->assertContains('framabag', $tags, 'It includes the "framabag" tag'); |
130 | $this->assertSame(2, \count($tags)); | 130 | $this->assertCount(2, $tags); |
131 | 131 | ||
132 | $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt()); | 132 | $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt()); |
133 | } | 133 | } |
diff --git a/tests/Wallabag/ImportBundle/Controller/WallabagV2ControllerTest.php b/tests/Wallabag/ImportBundle/Controller/WallabagV2ControllerTest.php index 822656ba..b606e26a 100644 --- a/tests/Wallabag/ImportBundle/Controller/WallabagV2ControllerTest.php +++ b/tests/Wallabag/ImportBundle/Controller/WallabagV2ControllerTest.php | |||
@@ -128,7 +128,7 @@ class WallabagV2ControllerTest extends WallabagCoreTestCase | |||
128 | 128 | ||
129 | $tags = $content->getTags(); | 129 | $tags = $content->getTags(); |
130 | $this->assertContains('foot', $tags, 'It includes the "foot" tag'); | 130 | $this->assertContains('foot', $tags, 'It includes the "foot" tag'); |
131 | $this->assertSame(1, \count($tags)); | 131 | $this->assertCount(1, $tags); |
132 | 132 | ||
133 | $content = $client->getContainer() | 133 | $content = $client->getContainer() |
134 | ->get('doctrine.orm.entity_manager') | 134 | ->get('doctrine.orm.entity_manager') |
@@ -147,7 +147,7 @@ class WallabagV2ControllerTest extends WallabagCoreTestCase | |||
147 | $this->assertContains('foot', $tags, 'It includes the "foot" tag'); | 147 | $this->assertContains('foot', $tags, 'It includes the "foot" tag'); |
148 | $this->assertContains('mediapart', $tags, 'It includes the "mediapart" tag'); | 148 | $this->assertContains('mediapart', $tags, 'It includes the "mediapart" tag'); |
149 | $this->assertContains('blog', $tags, 'It includes the "blog" tag'); | 149 | $this->assertContains('blog', $tags, 'It includes the "blog" tag'); |
150 | $this->assertSame(3, \count($tags)); | 150 | $this->assertCount(3, $tags); |
151 | 151 | ||
152 | $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt()); | 152 | $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt()); |
153 | $this->assertSame('2016-09-08', $content->getCreatedAt()->format('Y-m-d')); | 153 | $this->assertSame('2016-09-08', $content->getCreatedAt()->format('Y-m-d')); |
diff --git a/tests/Wallabag/UserBundle/Controller/ManageControllerTest.php b/tests/Wallabag/UserBundle/Controller/ManageControllerTest.php index adc2cf09..f44e6fbf 100644 --- a/tests/Wallabag/UserBundle/Controller/ManageControllerTest.php +++ b/tests/Wallabag/UserBundle/Controller/ManageControllerTest.php | |||
@@ -1,6 +1,6 @@ | |||
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | namespace Wallabag\UserBundle\Tests\Controller; | 3 | namespace Tests\Wallabag\UserBundle\Controller; |
4 | 4 | ||
5 | use Tests\Wallabag\CoreBundle\WallabagCoreTestCase; | 5 | use Tests\Wallabag\CoreBundle\WallabagCoreTestCase; |
6 | 6 | ||
diff --git a/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php b/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php index aa176068..e34e13a8 100644 --- a/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php +++ b/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php | |||
@@ -6,22 +6,6 @@ use PHPUnit\Framework\TestCase; | |||
6 | use Wallabag\UserBundle\Entity\User; | 6 | use Wallabag\UserBundle\Entity\User; |
7 | use Wallabag\UserBundle\Mailer\AuthCodeMailer; | 7 | use Wallabag\UserBundle\Mailer\AuthCodeMailer; |
8 | 8 | ||
9 | /** | ||
10 | * @see https://www.pmg.com/blog/integration-testing-swift-mailer/ | ||
11 | */ | ||
12 | final class CountableMemorySpool extends \Swift_MemorySpool implements \Countable | ||
13 | { | ||
14 | public function count() | ||
15 | { | ||
16 | return \count($this->messages); | ||
17 | } | ||
18 | |||
19 | public function getMessages() | ||
20 | { | ||
21 | return $this->messages; | ||
22 | } | ||
23 | } | ||
24 | |||
25 | class AuthCodeMailerTest extends TestCase | 9 | class AuthCodeMailerTest extends TestCase |
26 | { | 10 | { |
27 | protected $mailer; | 11 | protected $mailer; |
diff --git a/tests/Wallabag/UserBundle/Mailer/CountableMemorySpool.php b/tests/Wallabag/UserBundle/Mailer/CountableMemorySpool.php new file mode 100644 index 00000000..53f240a1 --- /dev/null +++ b/tests/Wallabag/UserBundle/Mailer/CountableMemorySpool.php | |||
@@ -0,0 +1,19 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Tests\Wallabag\UserBundle\Mailer; | ||
4 | |||
5 | /** | ||
6 | * @see https://www.pmg.com/blog/integration-testing-swift-mailer/ | ||
7 | */ | ||
8 | final class CountableMemorySpool extends \Swift_MemorySpool implements \Countable | ||
9 | { | ||
10 | public function count() | ||
11 | { | ||
12 | return \count($this->messages); | ||
13 | } | ||
14 | |||
15 | public function getMessages() | ||
16 | { | ||
17 | return $this->messages; | ||
18 | } | ||
19 | } | ||
diff --git a/web/wallassets/material.css b/web/wallassets/material.css index f5610e15..63820595 100644 --- a/web/wallassets/material.css +++ b/web/wallassets/material.css | |||
@@ -1,2 +1,2 @@ | |||
1 | .materialize-red{background-color:#e51c23!important}.materialize-red-text{color:#e51c23!important}.materialize-red.lighten-5{background-color:#fdeaeb!important}.materialize-red-text.text-lighten-5{color:#fdeaeb!important}.materialize-red.lighten-4{background-color:#f8c1c3!important}.materialize-red-text.text-lighten-4{color:#f8c1c3!important}.materialize-red.lighten-3{background-color:#f3989b!important}.materialize-red-text.text-lighten-3{color:#f3989b!important}.materialize-red.lighten-2{background-color:#ee6e73!important}.materialize-red-text.text-lighten-2{color:#ee6e73!important}.materialize-red.lighten-1{background-color:#ea454b!important}.materialize-red-text.text-lighten-1{color:#ea454b!important}.materialize-red.darken-1{background-color:#d0181e!important}.materialize-red-text.text-darken-1{color:#d0181e!important}.materialize-red.darken-2{background-color:#b9151b!important}.materialize-red-text.text-darken-2{color:#b9151b!important}.materialize-red.darken-3{background-color:#a21318!important}.materialize-red-text.text-darken-3{color:#a21318!important}.materialize-red.darken-4{background-color:#8b1014!important}.materialize-red-text.text-darken-4{color:#8b1014!important}.red{background-color:#f44336!important}.red-text{color:#f44336!important}.red.lighten-5{background-color:#ffebee!important}.red-text.text-lighten-5{color:#ffebee!important}.red.lighten-4{background-color:#ffcdd2!important}.red-text.text-lighten-4{color:#ffcdd2!important}.red.lighten-3{background-color:#ef9a9a!important}.red-text.text-lighten-3{color:#ef9a9a!important}.red.lighten-2{background-color:#e57373!important}.red-text.text-lighten-2{color:#e57373!important}.red.lighten-1{background-color:#ef5350!important}.red-text.text-lighten-1{color:#ef5350!important}.red.darken-1{background-color:#e53935!important}.red-text.text-darken-1{color:#e53935!important}.red.darken-2{background-color:#d32f2f!important}.red-text.text-darken-2{color:#d32f2f!important}.red.darken-3{background-color:#c62828!important}.red-text.text-darken-3{color:#c62828!important}.red.darken-4{background-color:#b71c1c!important}.red-text.text-darken-4{color:#b71c1c!important}.red.accent-1{background-color:#ff8a80!important}.red-text.text-accent-1{color:#ff8a80!important}.red.accent-2{background-color:#ff5252!important}.red-text.text-accent-2{color:#ff5252!important}.red.accent-3{background-color:#ff1744!important}.red-text.text-accent-3{color:#ff1744!important}.red.accent-4{background-color:#d50000!important}.red-text.text-accent-4{color:#d50000!important}.pink{background-color:#e91e63!important}.pink-text{color:#e91e63!important}.pink.lighten-5{background-color:#fce4ec!important}.pink-text.text-lighten-5{color:#fce4ec!important}.pink.lighten-4{background-color:#f8bbd0!important}.pink-text.text-lighten-4{color:#f8bbd0!important}.pink.lighten-3{background-color:#f48fb1!important}.pink-text.text-lighten-3{color:#f48fb1!important}.pink.lighten-2{background-color:#f06292!important}.pink-text.text-lighten-2{color:#f06292!important}.pink.lighten-1{background-color:#ec407a!important}.pink-text.text-lighten-1{color:#ec407a!important}.pink.darken-1{background-color:#d81b60!important}.pink-text.text-darken-1{color:#d81b60!important}.pink.darken-2{background-color:#c2185b!important}.pink-text.text-darken-2{color:#c2185b!important}.pink.darken-3{background-color:#ad1457!important}.pink-text.text-darken-3{color:#ad1457!important}.pink.darken-4{background-color:#880e4f!important}.pink-text.text-darken-4{color:#880e4f!important}.pink.accent-1{background-color:#ff80ab!important}.pink-text.text-accent-1{color:#ff80ab!important}.pink.accent-2{background-color:#ff4081!important}.pink-text.text-accent-2{color:#ff4081!important}.pink.accent-3{background-color:#f50057!important}.pink-text.text-accent-3{color:#f50057!important}.pink.accent-4{background-color:#c51162!important}.pink-text.text-accent-4{color:#c51162!important}.purple{background-color:#9c27b0!important}.purple-text{color:#9c27b0!important}.purple.lighten-5{background-color:#f3e5f5!important}.purple-text.text-lighten-5{color:#f3e5f5!important}.purple.lighten-4{background-color:#e1bee7!important}.purple-text.text-lighten-4{color:#e1bee7!important}.purple.lighten-3{background-color:#ce93d8!important}.purple-text.text-lighten-3{color:#ce93d8!important}.purple.lighten-2{background-color:#ba68c8!important}.purple-text.text-lighten-2{color:#ba68c8!important}.purple.lighten-1{background-color:#ab47bc!important}.purple-text.text-lighten-1{color:#ab47bc!important}.purple.darken-1{background-color:#8e24aa!important}.purple-text.text-darken-1{color:#8e24aa!important}.purple.darken-2{background-color:#7b1fa2!important}.purple-text.text-darken-2{color:#7b1fa2!important}.purple.darken-3{background-color:#6a1b9a!important}.purple-text.text-darken-3{color:#6a1b9a!important}.purple.darken-4{background-color:#4a148c!important}.purple-text.text-darken-4{color:#4a148c!important}.purple.accent-1{background-color:#ea80fc!important}.purple-text.text-accent-1{color:#ea80fc!important}.purple.accent-2{background-color:#e040fb!important}.purple-text.text-accent-2{color:#e040fb!important}.purple.accent-3{background-color:#d500f9!important}.purple-text.text-accent-3{color:#d500f9!important}.purple.accent-4{background-color:#a0f!important}.purple-text.text-accent-4{color:#a0f!important}.deep-purple{background-color:#673ab7!important}.deep-purple-text{color:#673ab7!important}.deep-purple.lighten-5{background-color:#ede7f6!important}.deep-purple-text.text-lighten-5{color:#ede7f6!important}.deep-purple.lighten-4{background-color:#d1c4e9!important}.deep-purple-text.text-lighten-4{color:#d1c4e9!important}.deep-purple.lighten-3{background-color:#b39ddb!important}.deep-purple-text.text-lighten-3{color:#b39ddb!important}.deep-purple.lighten-2{background-color:#9575cd!important}.deep-purple-text.text-lighten-2{color:#9575cd!important}.deep-purple.lighten-1{background-color:#7e57c2!important}.deep-purple-text.text-lighten-1{color:#7e57c2!important}.deep-purple.darken-1{background-color:#5e35b1!important}.deep-purple-text.text-darken-1{color:#5e35b1!important}.deep-purple.darken-2{background-color:#512da8!important}.deep-purple-text.text-darken-2{color:#512da8!important}.deep-purple.darken-3{background-color:#4527a0!important}.deep-purple-text.text-darken-3{color:#4527a0!important}.deep-purple.darken-4{background-color:#311b92!important}.deep-purple-text.text-darken-4{color:#311b92!important}.deep-purple.accent-1{background-color:#b388ff!important}.deep-purple-text.text-accent-1{color:#b388ff!important}.deep-purple.accent-2{background-color:#7c4dff!important}.deep-purple-text.text-accent-2{color:#7c4dff!important}.deep-purple.accent-3{background-color:#651fff!important}.deep-purple-text.text-accent-3{color:#651fff!important}.deep-purple.accent-4{background-color:#6200ea!important}.deep-purple-text.text-accent-4{color:#6200ea!important}.indigo{background-color:#3f51b5!important}.indigo-text{color:#3f51b5!important}.indigo.lighten-5{background-color:#e8eaf6!important}.indigo-text.text-lighten-5{color:#e8eaf6!important}.indigo.lighten-4{background-color:#c5cae9!important}.indigo-text.text-lighten-4{color:#c5cae9!important}.indigo.lighten-3{background-color:#9fa8da!important}.indigo-text.text-lighten-3{color:#9fa8da!important}.indigo.lighten-2{background-color:#7986cb!important}.indigo-text.text-lighten-2{color:#7986cb!important}.indigo.lighten-1{background-color:#5c6bc0!important}.indigo-text.text-lighten-1{color:#5c6bc0!important}.indigo.darken-1{background-color:#3949ab!important}.indigo-text.text-darken-1{color:#3949ab!important}.indigo.darken-2{background-color:#303f9f!important}.indigo-text.text-darken-2{color:#303f9f!important}.indigo.darken-3{background-color:#283593!important}.indigo-text.text-darken-3{color:#283593!important}.indigo.darken-4{background-color:#1a237e!important}.indigo-text.text-darken-4{color:#1a237e!important}.indigo.accent-1{background-color:#8c9eff!important}.indigo-text.text-accent-1{color:#8c9eff!important}.indigo.accent-2{background-color:#536dfe!important}.indigo-text.text-accent-2{color:#536dfe!important}.indigo.accent-3{background-color:#3d5afe!important}.indigo-text.text-accent-3{color:#3d5afe!important}.indigo.accent-4{background-color:#304ffe!important}.indigo-text.text-accent-4{color:#304ffe!important}.blue{background-color:#2196f3!important}.blue-text{color:#2196f3!important}.blue.lighten-5{background-color:#e3f2fd!important}.blue-text.text-lighten-5{color:#e3f2fd!important}.blue.lighten-4{background-color:#bbdefb!important}.blue-text.text-lighten-4{color:#bbdefb!important}.blue.lighten-3{background-color:#90caf9!important}.blue-text.text-lighten-3{color:#90caf9!important}.blue.lighten-2{background-color:#64b5f6!important}.blue-text.text-lighten-2{color:#64b5f6!important}.blue.lighten-1{background-color:#42a5f5!important}.blue-text.text-lighten-1{color:#42a5f5!important}.blue.darken-1{background-color:#1e88e5!important}.blue-text.text-darken-1{color:#1e88e5!important}.blue.darken-2{background-color:#1976d2!important}.blue-text.text-darken-2{color:#1976d2!important}.blue.darken-3{background-color:#1565c0!important}.blue-text.text-darken-3{color:#1565c0!important}.blue.darken-4{background-color:#0d47a1!important}.blue-text.text-darken-4{color:#0d47a1!important}.blue.accent-1{background-color:#82b1ff!important}.blue-text.text-accent-1{color:#82b1ff!important}.blue.accent-2{background-color:#448aff!important}.blue-text.text-accent-2{color:#448aff!important}.blue.accent-3{background-color:#2979ff!important}.blue-text.text-accent-3{color:#2979ff!important}.blue.accent-4{background-color:#2962ff!important}.blue-text.text-accent-4{color:#2962ff!important}.light-blue{background-color:#03a9f4!important}.light-blue-text{color:#03a9f4!important}.light-blue.lighten-5{background-color:#e1f5fe!important}.light-blue-text.text-lighten-5{color:#e1f5fe!important}.light-blue.lighten-4{background-color:#b3e5fc!important}.light-blue-text.text-lighten-4{color:#b3e5fc!important}.light-blue.lighten-3{background-color:#81d4fa!important}.light-blue-text.text-lighten-3{color:#81d4fa!important}.light-blue.lighten-2{background-color:#4fc3f7!important}.light-blue-text.text-lighten-2{color:#4fc3f7!important}.light-blue.lighten-1{background-color:#29b6f6!important}.light-blue-text.text-lighten-1{color:#29b6f6!important}.light-blue.darken-1{background-color:#039be5!important}.light-blue-text.text-darken-1{color:#039be5!important}.light-blue.darken-2{background-color:#0288d1!important}.light-blue-text.text-darken-2{color:#0288d1!important}.light-blue.darken-3{background-color:#0277bd!important}.light-blue-text.text-darken-3{color:#0277bd!important}.light-blue.darken-4{background-color:#01579b!important}.light-blue-text.text-darken-4{color:#01579b!important}.light-blue.accent-1{background-color:#80d8ff!important}.light-blue-text.text-accent-1{color:#80d8ff!important}.light-blue.accent-2{background-color:#40c4ff!important}.light-blue-text.text-accent-2{color:#40c4ff!important}.light-blue.accent-3{background-color:#00b0ff!important}.light-blue-text.text-accent-3{color:#00b0ff!important}.light-blue.accent-4{background-color:#0091ea!important}.light-blue-text.text-accent-4{color:#0091ea!important}.cyan{background-color:#00bcd4!important}.cyan-text{color:#00bcd4!important}.cyan.lighten-5{background-color:#e0f7fa!important}.cyan-text.text-lighten-5{color:#e0f7fa!important}.cyan.lighten-4{background-color:#b2ebf2!important}.cyan-text.text-lighten-4{color:#b2ebf2!important}.cyan.lighten-3{background-color:#80deea!important}.cyan-text.text-lighten-3{color:#80deea!important}.cyan.lighten-2{background-color:#4dd0e1!important}.cyan-text.text-lighten-2{color:#4dd0e1!important}.cyan.lighten-1{background-color:#26c6da!important}.cyan-text.text-lighten-1{color:#26c6da!important}.cyan.darken-1{background-color:#00acc1!important}.cyan-text.text-darken-1{color:#00acc1!important}.cyan.darken-2{background-color:#0097a7!important}.cyan-text.text-darken-2{color:#0097a7!important}.cyan.darken-3{background-color:#00838f!important}.cyan-text.text-darken-3{color:#00838f!important}.cyan.darken-4{background-color:#006064!important}.cyan-text.text-darken-4{color:#006064!important}.cyan.accent-1{background-color:#84ffff!important}.cyan-text.text-accent-1{color:#84ffff!important}.cyan.accent-2{background-color:#18ffff!important}.cyan-text.text-accent-2{color:#18ffff!important}.cyan.accent-3{background-color:#00e5ff!important}.cyan-text.text-accent-3{color:#00e5ff!important}.cyan.accent-4{background-color:#00b8d4!important}.cyan-text.text-accent-4{color:#00b8d4!important}.teal{background-color:#009688!important}.teal-text{color:#009688!important}.teal.lighten-5{background-color:#e0f2f1!important}.teal-text.text-lighten-5{color:#e0f2f1!important}.teal.lighten-4{background-color:#b2dfdb!important}.teal-text.text-lighten-4{color:#b2dfdb!important}.teal.lighten-3{background-color:#80cbc4!important}.teal-text.text-lighten-3{color:#80cbc4!important}.teal.lighten-2{background-color:#4db6ac!important}.teal-text.text-lighten-2{color:#4db6ac!important}.teal.lighten-1{background-color:#26a69a!important}.teal-text.text-lighten-1{color:#26a69a!important}.teal.darken-1{background-color:#00897b!important}.teal-text.text-darken-1{color:#00897b!important}.teal.darken-2{background-color:#00796b!important}.teal-text.text-darken-2{color:#00796b!important}.teal.darken-3{background-color:#00695c!important}.teal-text.text-darken-3{color:#00695c!important}.teal.darken-4{background-color:#004d40!important}.teal-text.text-darken-4{color:#004d40!important}.teal.accent-1{background-color:#a7ffeb!important}.teal-text.text-accent-1{color:#a7ffeb!important}.teal.accent-2{background-color:#64ffda!important}.teal-text.text-accent-2{color:#64ffda!important}.teal.accent-3{background-color:#1de9b6!important}.teal-text.text-accent-3{color:#1de9b6!important}.teal.accent-4{background-color:#00bfa5!important}.teal-text.text-accent-4{color:#00bfa5!important}.green{background-color:#4caf50!important}.green-text{color:#4caf50!important}.green.lighten-5{background-color:#e8f5e9!important}.green-text.text-lighten-5{color:#e8f5e9!important}.green.lighten-4{background-color:#c8e6c9!important}.green-text.text-lighten-4{color:#c8e6c9!important}.green.lighten-3{background-color:#a5d6a7!important}.green-text.text-lighten-3{color:#a5d6a7!important}.green.lighten-2{background-color:#81c784!important}.green-text.text-lighten-2{color:#81c784!important}.green.lighten-1{background-color:#66bb6a!important}.green-text.text-lighten-1{color:#66bb6a!important}.green.darken-1{background-color:#43a047!important}.green-text.text-darken-1{color:#43a047!important}.green.darken-2{background-color:#388e3c!important}.green-text.text-darken-2{color:#388e3c!important}.green.darken-3{background-color:#2e7d32!important}.green-text.text-darken-3{color:#2e7d32!important}.green.darken-4{background-color:#1b5e20!important}.green-text.text-darken-4{color:#1b5e20!important}.green.accent-1{background-color:#b9f6ca!important}.green-text.text-accent-1{color:#b9f6ca!important}.green.accent-2{background-color:#69f0ae!important}.green-text.text-accent-2{color:#69f0ae!important}.green.accent-3{background-color:#00e676!important}.green-text.text-accent-3{color:#00e676!important}.green.accent-4{background-color:#00c853!important}.green-text.text-accent-4{color:#00c853!important}.light-green{background-color:#8bc34a!important}.light-green-text{color:#8bc34a!important}.light-green.lighten-5{background-color:#f1f8e9!important}.light-green-text.text-lighten-5{color:#f1f8e9!important}.light-green.lighten-4{background-color:#dcedc8!important}.light-green-text.text-lighten-4{color:#dcedc8!important}.light-green.lighten-3{background-color:#c5e1a5!important}.light-green-text.text-lighten-3{color:#c5e1a5!important}.light-green.lighten-2{background-color:#aed581!important}.light-green-text.text-lighten-2{color:#aed581!important}.light-green.lighten-1{background-color:#9ccc65!important}.light-green-text.text-lighten-1{color:#9ccc65!important}.light-green.darken-1{background-color:#7cb342!important}.light-green-text.text-darken-1{color:#7cb342!important}.light-green.darken-2{background-color:#689f38!important}.light-green-text.text-darken-2{color:#689f38!important}.light-green.darken-3{background-color:#558b2f!important}.light-green-text.text-darken-3{color:#558b2f!important}.light-green.darken-4{background-color:#33691e!important}.light-green-text.text-darken-4{color:#33691e!important}.light-green.accent-1{background-color:#ccff90!important}.light-green-text.text-accent-1{color:#ccff90!important}.light-green.accent-2{background-color:#b2ff59!important}.light-green-text.text-accent-2{color:#b2ff59!important}.light-green.accent-3{background-color:#76ff03!important}.light-green-text.text-accent-3{color:#76ff03!important}.light-green.accent-4{background-color:#64dd17!important}.light-green-text.text-accent-4{color:#64dd17!important}.lime{background-color:#cddc39!important}.lime-text{color:#cddc39!important}.lime.lighten-5{background-color:#f9fbe7!important}.lime-text.text-lighten-5{color:#f9fbe7!important}.lime.lighten-4{background-color:#f0f4c3!important}.lime-text.text-lighten-4{color:#f0f4c3!important}.lime.lighten-3{background-color:#e6ee9c!important}.lime-text.text-lighten-3{color:#e6ee9c!important}.lime.lighten-2{background-color:#dce775!important}.lime-text.text-lighten-2{color:#dce775!important}.lime.lighten-1{background-color:#d4e157!important}.lime-text.text-lighten-1{color:#d4e157!important}.lime.darken-1{background-color:#c0ca33!important}.lime-text.text-darken-1{color:#c0ca33!important}.lime.darken-2{background-color:#afb42b!important}.lime-text.text-darken-2{color:#afb42b!important}.lime.darken-3{background-color:#9e9d24!important}.lime-text.text-darken-3{color:#9e9d24!important}.lime.darken-4{background-color:#827717!important}.lime-text.text-darken-4{color:#827717!important}.lime.accent-1{background-color:#f4ff81!important}.lime-text.text-accent-1{color:#f4ff81!important}.lime.accent-2{background-color:#eeff41!important}.lime-text.text-accent-2{color:#eeff41!important}.lime.accent-3{background-color:#c6ff00!important}.lime-text.text-accent-3{color:#c6ff00!important}.lime.accent-4{background-color:#aeea00!important}.lime-text.text-accent-4{color:#aeea00!important}.yellow{background-color:#ffeb3b!important}.yellow-text{color:#ffeb3b!important}.yellow.lighten-5{background-color:#fffde7!important}.yellow-text.text-lighten-5{color:#fffde7!important}.yellow.lighten-4{background-color:#fff9c4!important}.yellow-text.text-lighten-4{color:#fff9c4!important}.yellow.lighten-3{background-color:#fff59d!important}.yellow-text.text-lighten-3{color:#fff59d!important}.yellow.lighten-2{background-color:#fff176!important}.yellow-text.text-lighten-2{color:#fff176!important}.yellow.lighten-1{background-color:#ffee58!important}.yellow-text.text-lighten-1{color:#ffee58!important}.yellow.darken-1{background-color:#fdd835!important}.yellow-text.text-darken-1{color:#fdd835!important}.yellow.darken-2{background-color:#fbc02d!important}.yellow-text.text-darken-2{color:#fbc02d!important}.yellow.darken-3{background-color:#f9a825!important}.yellow-text.text-darken-3{color:#f9a825!important}.yellow.darken-4{background-color:#f57f17!important}.yellow-text.text-darken-4{color:#f57f17!important}.yellow.accent-1{background-color:#ffff8d!important}.yellow-text.text-accent-1{color:#ffff8d!important}.yellow.accent-2{background-color:#ff0!important}.yellow-text.text-accent-2{color:#ff0!important}.yellow.accent-3{background-color:#ffea00!important}.yellow-text.text-accent-3{color:#ffea00!important}.yellow.accent-4{background-color:#ffd600!important}.yellow-text.text-accent-4{color:#ffd600!important}.amber{background-color:#ffc107!important}.amber-text{color:#ffc107!important}.amber.lighten-5{background-color:#fff8e1!important}.amber-text.text-lighten-5{color:#fff8e1!important}.amber.lighten-4{background-color:#ffecb3!important}.amber-text.text-lighten-4{color:#ffecb3!important}.amber.lighten-3{background-color:#ffe082!important}.amber-text.text-lighten-3{color:#ffe082!important}.amber.lighten-2{background-color:#ffd54f!important}.amber-text.text-lighten-2{color:#ffd54f!important}.amber.lighten-1{background-color:#ffca28!important}.amber-text.text-lighten-1{color:#ffca28!important}.amber.darken-1{background-color:#ffb300!important}.amber-text.text-darken-1{color:#ffb300!important}.amber.darken-2{background-color:#ffa000!important}.amber-text.text-darken-2{color:#ffa000!important}.amber.darken-3{background-color:#ff8f00!important}.amber-text.text-darken-3{color:#ff8f00!important}.amber.darken-4{background-color:#ff6f00!important}.amber-text.text-darken-4{color:#ff6f00!important}.amber.accent-1{background-color:#ffe57f!important}.amber-text.text-accent-1{color:#ffe57f!important}.amber.accent-2{background-color:#ffd740!important}.amber-text.text-accent-2{color:#ffd740!important}.amber.accent-3{background-color:#ffc400!important}.amber-text.text-accent-3{color:#ffc400!important}.amber.accent-4{background-color:#ffab00!important}.amber-text.text-accent-4{color:#ffab00!important}.orange{background-color:#ff9800!important}.orange-text{color:#ff9800!important}.orange.lighten-5{background-color:#fff3e0!important}.orange-text.text-lighten-5{color:#fff3e0!important}.orange.lighten-4{background-color:#ffe0b2!important}.orange-text.text-lighten-4{color:#ffe0b2!important}.orange.lighten-3{background-color:#ffcc80!important}.orange-text.text-lighten-3{color:#ffcc80!important}.orange.lighten-2{background-color:#ffb74d!important}.orange-text.text-lighten-2{color:#ffb74d!important}.orange.lighten-1{background-color:#ffa726!important}.orange-text.text-lighten-1{color:#ffa726!important}.orange.darken-1{background-color:#fb8c00!important}.orange-text.text-darken-1{color:#fb8c00!important}.orange.darken-2{background-color:#f57c00!important}.orange-text.text-darken-2{color:#f57c00!important}.orange.darken-3{background-color:#ef6c00!important}.orange-text.text-darken-3{color:#ef6c00!important}.orange.darken-4{background-color:#e65100!important}.orange-text.text-darken-4{color:#e65100!important}.orange.accent-1{background-color:#ffd180!important}.orange-text.text-accent-1{color:#ffd180!important}.orange.accent-2{background-color:#ffab40!important}.orange-text.text-accent-2{color:#ffab40!important}.orange.accent-3{background-color:#ff9100!important}.orange-text.text-accent-3{color:#ff9100!important}.orange.accent-4{background-color:#ff6d00!important}.orange-text.text-accent-4{color:#ff6d00!important}.deep-orange{background-color:#ff5722!important}.deep-orange-text{color:#ff5722!important}.deep-orange.lighten-5{background-color:#fbe9e7!important}.deep-orange-text.text-lighten-5{color:#fbe9e7!important}.deep-orange.lighten-4{background-color:#ffccbc!important}.deep-orange-text.text-lighten-4{color:#ffccbc!important}.deep-orange.lighten-3{background-color:#ffab91!important}.deep-orange-text.text-lighten-3{color:#ffab91!important}.deep-orange.lighten-2{background-color:#ff8a65!important}.deep-orange-text.text-lighten-2{color:#ff8a65!important}.deep-orange.lighten-1{background-color:#ff7043!important}.deep-orange-text.text-lighten-1{color:#ff7043!important}.deep-orange.darken-1{background-color:#f4511e!important}.deep-orange-text.text-darken-1{color:#f4511e!important}.deep-orange.darken-2{background-color:#e64a19!important}.deep-orange-text.text-darken-2{color:#e64a19!important}.deep-orange.darken-3{background-color:#d84315!important}.deep-orange-text.text-darken-3{color:#d84315!important}.deep-orange.darken-4{background-color:#bf360c!important}.deep-orange-text.text-darken-4{color:#bf360c!important}.deep-orange.accent-1{background-color:#ff9e80!important}.deep-orange-text.text-accent-1{color:#ff9e80!important}.deep-orange.accent-2{background-color:#ff6e40!important}.deep-orange-text.text-accent-2{color:#ff6e40!important}.deep-orange.accent-3{background-color:#ff3d00!important}.deep-orange-text.text-accent-3{color:#ff3d00!important}.deep-orange.accent-4{background-color:#dd2c00!important}.deep-orange-text.text-accent-4{color:#dd2c00!important}.brown{background-color:#795548!important}.brown-text{color:#795548!important}.brown.lighten-5{background-color:#efebe9!important}.brown-text.text-lighten-5{color:#efebe9!important}.brown.lighten-4{background-color:#d7ccc8!important}.brown-text.text-lighten-4{color:#d7ccc8!important}.brown.lighten-3{background-color:#bcaaa4!important}.brown-text.text-lighten-3{color:#bcaaa4!important}.brown.lighten-2{background-color:#a1887f!important}.brown-text.text-lighten-2{color:#a1887f!important}.brown.lighten-1{background-color:#8d6e63!important}.brown-text.text-lighten-1{color:#8d6e63!important}.brown.darken-1{background-color:#6d4c41!important}.brown-text.text-darken-1{color:#6d4c41!important}.brown.darken-2{background-color:#5d4037!important}.brown-text.text-darken-2{color:#5d4037!important}.brown.darken-3{background-color:#4e342e!important}.brown-text.text-darken-3{color:#4e342e!important}.brown.darken-4{background-color:#3e2723!important}.brown-text.text-darken-4{color:#3e2723!important}.blue-grey{background-color:#607d8b!important}.blue-grey-text{color:#607d8b!important}.blue-grey.lighten-5{background-color:#eceff1!important}.blue-grey-text.text-lighten-5{color:#eceff1!important}.blue-grey.lighten-4{background-color:#cfd8dc!important}.blue-grey-text.text-lighten-4{color:#cfd8dc!important}.blue-grey.lighten-3{background-color:#b0bec5!important}.blue-grey-text.text-lighten-3{color:#b0bec5!important}.blue-grey.lighten-2{background-color:#90a4ae!important}.blue-grey-text.text-lighten-2{color:#90a4ae!important}.blue-grey.lighten-1{background-color:#78909c!important}.blue-grey-text.text-lighten-1{color:#78909c!important}.blue-grey.darken-1{background-color:#546e7a!important}.blue-grey-text.text-darken-1{color:#546e7a!important}.blue-grey.darken-2{background-color:#455a64!important}.blue-grey-text.text-darken-2{color:#455a64!important}.blue-grey.darken-3{background-color:#37474f!important}.blue-grey-text.text-darken-3{color:#37474f!important}.blue-grey.darken-4{background-color:#263238!important}.blue-grey-text.text-darken-4{color:#263238!important}.grey{background-color:#9e9e9e!important}.grey-text{color:#9e9e9e!important}.grey.lighten-5{background-color:#fafafa!important}.grey-text.text-lighten-5{color:#fafafa!important}.grey.lighten-4{background-color:#f5f5f5!important}.grey-text.text-lighten-4{color:#f5f5f5!important}.grey.lighten-3{background-color:#eee!important}.grey-text.text-lighten-3{color:#eee!important}.grey.lighten-2{background-color:#e0e0e0!important}.grey-text.text-lighten-2{color:#e0e0e0!important}.grey.lighten-1{background-color:#bdbdbd!important}.grey-text.text-lighten-1{color:#bdbdbd!important}.grey.darken-1{background-color:#757575!important}.grey-text.text-darken-1{color:#757575!important}.grey.darken-2{background-color:#616161!important}.grey-text.text-darken-2{color:#616161!important}.grey.darken-3{background-color:#424242!important}.grey-text.text-darken-3{color:#424242!important}.grey.darken-4{background-color:#212121!important}.grey-text.text-darken-4{color:#212121!important}.black{background-color:#000!important}.black-text{color:#000!important}.white{background-color:#fff!important}.white-text{color:#fff!important}.transparent{background-color:transparent!important}.transparent-text{color:transparent!important}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}ul:not(.browser-default){padding-left:0;list-style-type:none}ul:not(.browser-default) li{list-style-type:none}a{color:#039be5;-webkit-tap-highlight-color:transparent}.valign-wrapper{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.clearfix{clear:both}.z-depth-0{box-shadow:none!important}.btn,.btn-floating,.btn-large,.card,.card-panel,.collapsible,.dropdown-content,.side-nav,.toast,.z-depth-1,nav{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2)}.btn-floating:hover,.btn-large:hover,.btn:hover,.z-depth-1-half{box-shadow:0 3px 3px 0 rgba(0,0,0,.14),0 1px 7px 0 rgba(0,0,0,.12),0 3px 1px -1px rgba(0,0,0,.2)}.z-depth-2{box-shadow:0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.3)}.z-depth-3{box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.3)}.modal,.z-depth-4{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.3)}.z-depth-5{box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.3)}.hoverable{transition:box-shadow .25s;box-shadow:0}.hoverable:hover{transition:box-shadow .25s;box-shadow:0 8px 17px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)}.divider{height:1px;overflow:hidden;background-color:#e0e0e0}blockquote{margin:20px 0;padding-left:1.5rem;border-left:5px solid #ee6e73}i{line-height:inherit}i.left{float:left;margin-right:15px}i.right{float:right;margin-left:15px}i.tiny{font-size:1rem}i.small{font-size:2rem}i.medium{font-size:4rem}i.large{font-size:6rem}img.responsive-img,video.responsive-video{max-width:100%;height:auto}.pagination li{display:inline-block;border-radius:2px;text-align:center;vertical-align:top;height:30px}.pagination li a{color:#444;display:inline-block;font-size:1.2rem;padding:0 10px;line-height:30px}.pagination li.active a{color:#fff}.pagination li.active{background-color:#ee6e73}.pagination li.disabled a{cursor:default;color:#999}.pagination li i{font-size:2rem}.pagination li.pages ul li{display:inline-block;float:none}@media only screen and (max-width:992px){.pagination{width:100%}.pagination li.next,.pagination li.prev{width:10%}.pagination li.pages{width:80%;overflow:hidden;white-space:nowrap}}.breadcrumb{font-size:18px;color:hsla(0,0%,100%,.7)}.breadcrumb [class*=mdi-],.breadcrumb [class^=mdi-],.breadcrumb i,.breadcrumb i.material-icons{display:inline-block;float:left;font-size:24px}.breadcrumb:before{content:"\E5CC";color:hsla(0,0%,100%,.7);vertical-align:top;display:inline-block;font-family:Material Icons;font-weight:400;font-style:normal;font-size:25px;margin:0 10px 0 8px;-webkit-font-smoothing:antialiased}.breadcrumb:first-child:before{display:none}.breadcrumb:last-child{color:#fff}.parallax-container{position:relative;overflow:hidden;height:500px}.parallax{top:0;left:0;right:0;z-index:-1}.parallax,.parallax img{position:absolute;bottom:0}.parallax img{display:none;left:50%;min-width:100%;min-height:100%;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transform:translateX(-50%);transform:translateX(-50%)}.pin-bottom,.pin-top{position:relative}.pinned{position:fixed!important}.fade-in,ul.staggered-list li{opacity:0}.fade-in{-webkit-transform-origin:0 50%;transform-origin:0 50%}@media only screen and (max-width:600px){.hide-on-small-and-down,.hide-on-small-only{display:none!important}}@media only screen and (max-width:992px){.hide-on-med-and-down{display:none!important}}@media only screen and (min-width:601px){.hide-on-med-and-up{display:none!important}}@media only screen and (min-width:600px) and (max-width:992px){.hide-on-med-only{display:none!important}}@media only screen and (min-width:993px){.hide-on-large-only{display:none!important}}@media only screen and (min-width:993px){.show-on-large{display:block!important}}@media only screen and (min-width:600px) and (max-width:992px){.show-on-medium{display:block!important}}@media only screen and (max-width:600px){.show-on-small{display:block!important}}@media only screen and (min-width:601px){.show-on-medium-and-up{display:block!important}}@media only screen and (max-width:992px){.show-on-medium-and-down{display:block!important}}@media only screen and (max-width:600px){.center-on-small-only{text-align:center}}.page-footer{padding-top:20px;background-color:#ee6e73}.page-footer .footer-copyright{overflow:hidden;min-height:50px;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center;padding:10px 0;color:hsla(0,0%,100%,.8);background-color:rgba(51,51,51,.08)}table,td,th{border:none}table{width:100%;display:table}table.bordered>tbody>tr,table.bordered>thead>tr{border-bottom:1px solid #d0d0d0}table.striped>tbody>tr:nth-child(odd){background-color:#f2f2f2}table.striped>tbody>tr>td{border-radius:0}table.highlight>tbody>tr{transition:background-color .25s ease}table.highlight>tbody>tr:hover{background-color:#f2f2f2}table.centered tbody tr td,table.centered thead tr th{text-align:center}thead{border-bottom:1px solid #d0d0d0}td,th{padding:15px 5px;display:table-cell;text-align:left;vertical-align:middle;border-radius:2px}@media only screen and (max-width:992px){table.responsive-table{width:100%;border-collapse:collapse;border-spacing:0;display:block;position:relative}table.responsive-table td:empty:before{content:"\A0"}table.responsive-table td,table.responsive-table th{margin:0;vertical-align:top}table.responsive-table th{text-align:left}table.responsive-table thead{display:block;float:left}table.responsive-table thead tr{display:block;padding:0 10px 0 0}table.responsive-table thead tr th:before{content:"\A0"}table.responsive-table tbody{display:block;width:auto;position:relative;overflow-x:auto;white-space:nowrap}table.responsive-table tbody tr{display:inline-block;vertical-align:top}table.responsive-table th{display:block;text-align:right}table.responsive-table td{display:block;min-height:1.25em;text-align:left}table.responsive-table tr{padding:0 10px}table.responsive-table thead{border:0;border-right:1px solid #d0d0d0}table.responsive-table.bordered th{border-bottom:0;border-left:0}table.responsive-table.bordered td{border-left:0;border-right:0;border-bottom:0}table.responsive-table.bordered tr{border:0}table.responsive-table.bordered tbody tr{border-right:1px solid #d0d0d0}}.collection{margin:.5rem 0 1rem;border:1px solid #e0e0e0;border-radius:2px;overflow:hidden;position:relative}.collection .collection-item{background-color:#fff;line-height:1.5rem;padding:10px 20px;margin:0;border-bottom:1px solid #e0e0e0}.collection .collection-item.avatar{min-height:84px;padding-left:72px;position:relative}.collection .collection-item.avatar .circle{position:absolute;width:42px;height:42px;overflow:hidden;left:15px;display:inline-block;vertical-align:middle}.collection .collection-item.avatar i.circle{font-size:18px;line-height:42px;color:#fff;background-color:#999;text-align:center}.collection .collection-item.avatar .title{font-size:16px}.collection .collection-item.avatar p{margin:0}.collection .collection-item.avatar .secondary-content{position:absolute;top:16px;right:16px}.collection .collection-item:last-child{border-bottom:none}.collection .collection-item.active{background-color:#26a69a;color:#eafaf9}.collection .collection-item.active .secondary-content{color:#fff}.collection a.collection-item{display:block;transition:.25s;color:#26a69a}.collection a.collection-item:not(.active):hover{background-color:#ddd}.collection.with-header .collection-header{background-color:#fff;border-bottom:1px solid #e0e0e0;padding:10px 20px}.collection.with-header .collection-item{padding-left:30px}.collection.with-header .collection-item.avatar{padding-left:72px}.secondary-content{float:right;color:#26a69a}.collapsible .collection{margin:0;border:none}.video-container{position:relative;padding-bottom:56.25%;height:0;overflow:hidden}.video-container embed,.video-container iframe,.video-container object{position:absolute;top:0;left:0;width:100%;height:100%}.progress{position:relative;height:4px;display:block;width:100%;background-color:#acece6;border-radius:2px;margin:.5rem 0 1rem;overflow:hidden}.progress .determinate{position:absolute;top:0;left:0;bottom:0;transition:width .3s linear}.progress .determinate,.progress .indeterminate{background-color:#26a69a}.progress .indeterminate:before{-webkit-animation:indeterminate 2.1s cubic-bezier(.65,.815,.735,.395) infinite;animation:indeterminate 2.1s cubic-bezier(.65,.815,.735,.395) infinite}.progress .indeterminate:after,.progress .indeterminate:before{content:"";position:absolute;background-color:inherit;top:0;left:0;bottom:0;will-change:left,right}.progress .indeterminate:after{-webkit-animation:indeterminate-short 2.1s cubic-bezier(.165,.84,.44,1) infinite;animation:indeterminate-short 2.1s cubic-bezier(.165,.84,.44,1) infinite;-webkit-animation-delay:1.15s;animation-delay:1.15s}@-webkit-keyframes indeterminate{0%{left:-35%;right:100%}60%{left:100%;right:-90%}to{left:100%;right:-90%}}@keyframes indeterminate{0%{left:-35%;right:100%}60%{left:100%;right:-90%}to{left:100%;right:-90%}}@-webkit-keyframes indeterminate-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}to{left:107%;right:-8%}}@keyframes indeterminate-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}to{left:107%;right:-8%}}.hide{display:none!important}.left-align{text-align:left}.right-align{text-align:right}.center,.center-align{text-align:center}.left{float:left!important}.right{float:right!important}.no-select,input[type=range],input[type=range]+.thumb{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.circle{border-radius:50%}.center-block{display:block;margin-left:auto;margin-right:auto}.truncate{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.no-padding{padding:0!important}span.badge{min-width:3rem;padding:0 6px;margin-left:14px;text-align:center;font-size:1rem;line-height:22px;height:22px;color:#757575;float:right;box-sizing:border-box}span.badge.new{font-weight:300;font-size:.8rem;color:#fff;background-color:#26a69a;border-radius:2px}span.badge.new:after{content:" new"}span.badge[data-badge-caption]:after{content:" " attr(data-badge-caption)}nav ul a span.badge{display:inline-block;float:none;margin-left:4px;line-height:22px;height:22px}.collection-item span.badge{margin-top:calc(.75rem - 11px)}.collapsible span.badge{margin-top:calc(1.5rem - 11px)}.side-nav span.badge{margin-top:13px}.material-icons{text-rendering:optimizeLegibility;-webkit-font-feature-settings:"liga";-moz-font-feature-settings:"liga";font-feature-settings:"liga"}.container{margin:0 auto;max-width:1280px;width:90%}@media only screen and (min-width:601px){.container{width:85%}}@media only screen and (min-width:993px){.container{width:70%}}.container .row{margin-left:-.75rem;margin-right:-.75rem}.section{padding-top:1rem;padding-bottom:1rem}.section.no-pad{padding:0}.section.no-pad-bot{padding-bottom:0}.section.no-pad-top{padding-top:0}.row{margin-left:auto;margin-right:auto;margin-bottom:20px}.row:after{content:"";display:table;clear:both}.row .col{float:left;box-sizing:border-box;padding:0 .75rem;min-height:1px}.row .col[class*=pull-],.row .col[class*=push-]{position:relative}.row .col.s1{width:8.3333333333%}.row .col.s1,.row .col.s2{margin-left:auto;left:auto;right:auto}.row .col.s2{width:16.6666666667%}.row .col.s3{width:25%}.row .col.s3,.row .col.s4{margin-left:auto;left:auto;right:auto}.row .col.s4{width:33.3333333333%}.row .col.s5{width:41.6666666667%}.row .col.s5,.row .col.s6{margin-left:auto;left:auto;right:auto}.row .col.s6{width:50%}.row .col.s7{width:58.3333333333%}.row .col.s7,.row .col.s8{margin-left:auto;left:auto;right:auto}.row .col.s8{width:66.6666666667%}.row .col.s9{width:75%}.row .col.s9,.row .col.s10{margin-left:auto;left:auto;right:auto}.row .col.s10{width:83.3333333333%}.row .col.s11{width:91.6666666667%}.row .col.s11,.row .col.s12{margin-left:auto;left:auto;right:auto}.row .col.s12{width:100%}.row .col.offset-s1{margin-left:8.3333333333%}.row .col.pull-s1{right:8.3333333333%}.row .col.push-s1{left:8.3333333333%}.row .col.offset-s2{margin-left:16.6666666667%}.row .col.pull-s2{right:16.6666666667%}.row .col.push-s2{left:16.6666666667%}.row .col.offset-s3{margin-left:25%}.row .col.pull-s3{right:25%}.row .col.push-s3{left:25%}.row .col.offset-s4{margin-left:33.3333333333%}.row .col.pull-s4{right:33.3333333333%}.row .col.push-s4{left:33.3333333333%}.row .col.offset-s5{margin-left:41.6666666667%}.row .col.pull-s5{right:41.6666666667%}.row .col.push-s5{left:41.6666666667%}.row .col.offset-s6{margin-left:50%}.row .col.pull-s6{right:50%}.row .col.push-s6{left:50%}.row .col.offset-s7{margin-left:58.3333333333%}.row .col.pull-s7{right:58.3333333333%}.row .col.push-s7{left:58.3333333333%}.row .col.offset-s8{margin-left:66.6666666667%}.row .col.pull-s8{right:66.6666666667%}.row .col.push-s8{left:66.6666666667%}.row .col.offset-s9{margin-left:75%}.row .col.pull-s9{right:75%}.row .col.push-s9{left:75%}.row .col.offset-s10{margin-left:83.3333333333%}.row .col.pull-s10{right:83.3333333333%}.row .col.push-s10{left:83.3333333333%}.row .col.offset-s11{margin-left:91.6666666667%}.row .col.pull-s11{right:91.6666666667%}.row .col.push-s11{left:91.6666666667%}.row .col.offset-s12{margin-left:100%}.row .col.pull-s12{right:100%}.row .col.push-s12{left:100%}@media only screen and (min-width:601px){.row .col.m1{width:8.3333333333%}.row .col.m1,.row .col.m2{margin-left:auto;left:auto;right:auto}.row .col.m2{width:16.6666666667%}.row .col.m3{width:25%}.row .col.m3,.row .col.m4{margin-left:auto;left:auto;right:auto}.row .col.m4{width:33.3333333333%}.row .col.m5{width:41.6666666667%}.row .col.m5,.row .col.m6{margin-left:auto;left:auto;right:auto}.row .col.m6{width:50%}.row .col.m7{width:58.3333333333%}.row .col.m7,.row .col.m8{margin-left:auto;left:auto;right:auto}.row .col.m8{width:66.6666666667%}.row .col.m9{width:75%}.row .col.m9,.row .col.m10{margin-left:auto;left:auto;right:auto}.row .col.m10{width:83.3333333333%}.row .col.m11{width:91.6666666667%}.row .col.m11,.row .col.m12{margin-left:auto;left:auto;right:auto}.row .col.m12{width:100%}.row .col.offset-m1{margin-left:8.3333333333%}.row .col.pull-m1{right:8.3333333333%}.row .col.push-m1{left:8.3333333333%}.row .col.offset-m2{margin-left:16.6666666667%}.row .col.pull-m2{right:16.6666666667%}.row .col.push-m2{left:16.6666666667%}.row .col.offset-m3{margin-left:25%}.row .col.pull-m3{right:25%}.row .col.push-m3{left:25%}.row .col.offset-m4{margin-left:33.3333333333%}.row .col.pull-m4{right:33.3333333333%}.row .col.push-m4{left:33.3333333333%}.row .col.offset-m5{margin-left:41.6666666667%}.row .col.pull-m5{right:41.6666666667%}.row .col.push-m5{left:41.6666666667%}.row .col.offset-m6{margin-left:50%}.row .col.pull-m6{right:50%}.row .col.push-m6{left:50%}.row .col.offset-m7{margin-left:58.3333333333%}.row .col.pull-m7{right:58.3333333333%}.row .col.push-m7{left:58.3333333333%}.row .col.offset-m8{margin-left:66.6666666667%}.row .col.pull-m8{right:66.6666666667%}.row .col.push-m8{left:66.6666666667%}.row .col.offset-m9{margin-left:75%}.row .col.pull-m9{right:75%}.row .col.push-m9{left:75%}.row .col.offset-m10{margin-left:83.3333333333%}.row .col.pull-m10{right:83.3333333333%}.row .col.push-m10{left:83.3333333333%}.row .col.offset-m11{margin-left:91.6666666667%}.row .col.pull-m11{right:91.6666666667%}.row .col.push-m11{left:91.6666666667%}.row .col.offset-m12{margin-left:100%}.row .col.pull-m12{right:100%}.row .col.push-m12{left:100%}}@media only screen and (min-width:993px){.row .col.l1{width:8.3333333333%}.row .col.l1,.row .col.l2{margin-left:auto;left:auto;right:auto}.row .col.l2{width:16.6666666667%}.row .col.l3{width:25%}.row .col.l3,.row .col.l4{margin-left:auto;left:auto;right:auto}.row .col.l4{width:33.3333333333%}.row .col.l5{width:41.6666666667%}.row .col.l5,.row .col.l6{margin-left:auto;left:auto;right:auto}.row .col.l6{width:50%}.row .col.l7{width:58.3333333333%}.row .col.l7,.row .col.l8{margin-left:auto;left:auto;right:auto}.row .col.l8{width:66.6666666667%}.row .col.l9{width:75%}.row .col.l9,.row .col.l10{margin-left:auto;left:auto;right:auto}.row .col.l10{width:83.3333333333%}.row .col.l11{width:91.6666666667%}.row .col.l11,.row .col.l12{margin-left:auto;left:auto;right:auto}.row .col.l12{width:100%}.row .col.offset-l1{margin-left:8.3333333333%}.row .col.pull-l1{right:8.3333333333%}.row .col.push-l1{left:8.3333333333%}.row .col.offset-l2{margin-left:16.6666666667%}.row .col.pull-l2{right:16.6666666667%}.row .col.push-l2{left:16.6666666667%}.row .col.offset-l3{margin-left:25%}.row .col.pull-l3{right:25%}.row .col.push-l3{left:25%}.row .col.offset-l4{margin-left:33.3333333333%}.row .col.pull-l4{right:33.3333333333%}.row .col.push-l4{left:33.3333333333%}.row .col.offset-l5{margin-left:41.6666666667%}.row .col.pull-l5{right:41.6666666667%}.row .col.push-l5{left:41.6666666667%}.row .col.offset-l6{margin-left:50%}.row .col.pull-l6{right:50%}.row .col.push-l6{left:50%}.row .col.offset-l7{margin-left:58.3333333333%}.row .col.pull-l7{right:58.3333333333%}.row .col.push-l7{left:58.3333333333%}.row .col.offset-l8{margin-left:66.6666666667%}.row .col.pull-l8{right:66.6666666667%}.row .col.push-l8{left:66.6666666667%}.row .col.offset-l9{margin-left:75%}.row .col.pull-l9{right:75%}.row .col.push-l9{left:75%}.row .col.offset-l10{margin-left:83.3333333333%}.row .col.pull-l10{right:83.3333333333%}.row .col.push-l10{left:83.3333333333%}.row .col.offset-l11{margin-left:91.6666666667%}.row .col.pull-l11{right:91.6666666667%}.row .col.push-l11{left:91.6666666667%}.row .col.offset-l12{margin-left:100%}.row .col.pull-l12{right:100%}.row .col.push-l12{left:100%}}@media only screen and (min-width:1201px){.row .col.xl1{width:8.3333333333%}.row .col.xl1,.row .col.xl2{margin-left:auto;left:auto;right:auto}.row .col.xl2{width:16.6666666667%}.row .col.xl3{width:25%}.row .col.xl3,.row .col.xl4{margin-left:auto;left:auto;right:auto}.row .col.xl4{width:33.3333333333%}.row .col.xl5{width:41.6666666667%}.row .col.xl5,.row .col.xl6{margin-left:auto;left:auto;right:auto}.row .col.xl6{width:50%}.row .col.xl7{width:58.3333333333%}.row .col.xl7,.row .col.xl8{margin-left:auto;left:auto;right:auto}.row .col.xl8{width:66.6666666667%}.row .col.xl9{width:75%}.row .col.xl9,.row .col.xl10{margin-left:auto;left:auto;right:auto}.row .col.xl10{width:83.3333333333%}.row .col.xl11{width:91.6666666667%}.row .col.xl11,.row .col.xl12{margin-left:auto;left:auto;right:auto}.row .col.xl12{width:100%}.row .col.offset-xl1{margin-left:8.3333333333%}.row .col.pull-xl1{right:8.3333333333%}.row .col.push-xl1{left:8.3333333333%}.row .col.offset-xl2{margin-left:16.6666666667%}.row .col.pull-xl2{right:16.6666666667%}.row .col.push-xl2{left:16.6666666667%}.row .col.offset-xl3{margin-left:25%}.row .col.pull-xl3{right:25%}.row .col.push-xl3{left:25%}.row .col.offset-xl4{margin-left:33.3333333333%}.row .col.pull-xl4{right:33.3333333333%}.row .col.push-xl4{left:33.3333333333%}.row .col.offset-xl5{margin-left:41.6666666667%}.row .col.pull-xl5{right:41.6666666667%}.row .col.push-xl5{left:41.6666666667%}.row .col.offset-xl6{margin-left:50%}.row .col.pull-xl6{right:50%}.row .col.push-xl6{left:50%}.row .col.offset-xl7{margin-left:58.3333333333%}.row .col.pull-xl7{right:58.3333333333%}.row .col.push-xl7{left:58.3333333333%}.row .col.offset-xl8{margin-left:66.6666666667%}.row .col.pull-xl8{right:66.6666666667%}.row .col.push-xl8{left:66.6666666667%}.row .col.offset-xl9{margin-left:75%}.row .col.pull-xl9{right:75%}.row .col.push-xl9{left:75%}.row .col.offset-xl10{margin-left:83.3333333333%}.row .col.pull-xl10{right:83.3333333333%}.row .col.push-xl10{left:83.3333333333%}.row .col.offset-xl11{margin-left:91.6666666667%}.row .col.pull-xl11{right:91.6666666667%}.row .col.push-xl11{left:91.6666666667%}.row .col.offset-xl12{margin-left:100%}.row .col.pull-xl12{right:100%}.row .col.push-xl12{left:100%}}nav{color:#fff;background-color:#ee6e73;width:100%;height:56px;line-height:56px}nav.nav-extended{height:auto}nav.nav-extended .nav-wrapper{min-height:56px;height:auto}nav.nav-extended .nav-content{position:relative;line-height:normal}nav a{color:#fff}nav [class*=mdi-],nav [class^=mdi-],nav i,nav i.material-icons{display:block;font-size:24px;height:56px;line-height:56px}nav .nav-wrapper{position:relative;height:100%}@media only screen and (min-width:993px){nav a.button-collapse{display:none}}nav .button-collapse{float:left;position:relative;z-index:1;height:56px;margin:0 18px}nav .button-collapse i{height:56px;line-height:56px}nav .brand-logo{position:absolute;color:#fff;display:inline-block;font-size:2.1rem;padding:0;white-space:nowrap}nav .brand-logo.center{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}@media only screen and (max-width:992px){nav .brand-logo{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}nav .brand-logo.left,nav .brand-logo.right{padding:0;-webkit-transform:none;transform:none}nav .brand-logo.left{left:.5rem}nav .brand-logo.right{right:.5rem;left:auto}}nav .brand-logo.right{right:.5rem;padding:0}nav .brand-logo [class*=mdi-],nav .brand-logo [class^=mdi-],nav .brand-logo i,nav .brand-logo i.material-icons{float:left;margin-right:15px}nav .nav-title{display:inline-block;font-size:32px;padding:28px 0}nav ul{margin:0}nav ul li{transition:background-color .3s;float:left;padding:0}nav ul li.active{background-color:rgba(0,0,0,.1)}nav ul a{transition:background-color .3s;font-size:1rem;color:#fff;display:block;padding:0 15px;cursor:pointer}nav ul a.btn,nav ul a.btn-flat,nav ul a.btn-floating,nav ul a.btn-large{margin-top:-2px;margin-left:15px;margin-right:15px}nav ul a.btn-flat>.material-icons,nav ul a.btn-floating>.material-icons,nav ul a.btn-large>.material-icons,nav ul a.btn>.material-icons{height:inherit;line-height:inherit}nav ul a:hover{background-color:rgba(0,0,0,.1)}nav ul.left{float:left}nav form{height:100%}nav .input-field{margin:0;height:100%}nav .input-field input{height:100%;font-size:1.2rem;border:none;padding-left:2rem}nav .input-field input:focus,nav .input-field input[type=date]:valid,nav .input-field input[type=email]:valid,nav .input-field input[type=password]:valid,nav .input-field input[type=text]:valid,nav .input-field input[type=url]:valid{border:none;box-shadow:none}nav .input-field label{top:0;left:0}nav .input-field label i{color:hsla(0,0%,100%,.7);transition:color .3s}nav .input-field label.active i{color:#fff}.navbar-fixed{position:relative;height:56px;z-index:997}.navbar-fixed nav{position:fixed}@media only screen and (min-width:601px){nav.nav-extended .nav-wrapper{min-height:64px}nav,nav .nav-wrapper i,nav a.button-collapse,nav a.button-collapse i{height:64px;line-height:64px}.navbar-fixed{height:64px}}@font-face{font-family:Roboto;src:local(Roboto Thin),url(fonts/Roboto-Thin.woff2) format("woff2"),url(fonts/Roboto-Thin.woff) format("woff");font-weight:100}@font-face{font-family:Roboto;src:local(Roboto Light),url(fonts/Roboto-Light.woff2) format("woff2"),url(fonts/Roboto-Light.woff) format("woff");font-weight:300}@font-face{font-family:Roboto;src:local(Roboto Regular),url(fonts/Roboto-Regular.woff2) format("woff2"),url(fonts/Roboto-Regular.woff) format("woff");font-weight:400}@font-face{font-family:Roboto;src:local(Roboto Medium),url(fonts/Roboto-Medium.woff2) format("woff2"),url(fonts/Roboto-Medium.woff) format("woff");font-weight:500}@font-face{font-family:Roboto;src:local(Roboto Bold),url(fonts/Roboto-Bold.woff2) format("woff2"),url(fonts/Roboto-Bold.woff) format("woff");font-weight:700}a{text-decoration:none}html{line-height:1.5;font-family:Roboto,sans-serif;font-weight:400;color:rgba(0,0,0,.87)}@media only screen and (min-width:0){html{font-size:14px}}@media only screen and (min-width:992px){html{font-size:14.5px}}@media only screen and (min-width:1200px){html{font-size:15px}}h1,h2,h3,h4,h5,h6{font-weight:400;line-height:1.1}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{font-weight:inherit}h1{font-size:4.2rem;margin:2.1rem 0 1.68rem}h1,h2{line-height:110%}h2{font-size:3.56rem;margin:1.78rem 0 1.424rem}h3{font-size:2.92rem;margin:1.46rem 0 1.168rem}h3,h4{line-height:110%}h4{font-size:2.28rem;margin:1.14rem 0 .912rem}h5{font-size:1.64rem;margin:.82rem 0 .656rem}h5,h6{line-height:110%}h6{font-size:1rem;margin:.5rem 0 .4rem}em{font-style:italic}strong{font-weight:500}small{font-size:75%}.light,.page-footer .footer-copyright{font-weight:300}.thin{font-weight:200}.flow-text{font-weight:300}@media only screen and (min-width:360px){.flow-text{font-size:1.2rem}}@media only screen and (min-width:390px){.flow-text{font-size:1.224rem}}@media only screen and (min-width:420px){.flow-text{font-size:1.248rem}}@media only screen and (min-width:450px){.flow-text{font-size:1.272rem}}@media only screen and (min-width:480px){.flow-text{font-size:1.296rem}}@media only screen and (min-width:510px){.flow-text{font-size:1.32rem}}@media only screen and (min-width:540px){.flow-text{font-size:1.344rem}}@media only screen and (min-width:570px){.flow-text{font-size:1.368rem}}@media only screen and (min-width:600px){.flow-text{font-size:1.392rem}}@media only screen and (min-width:630px){.flow-text{font-size:1.416rem}}@media only screen and (min-width:660px){.flow-text{font-size:1.44rem}}@media only screen and (min-width:690px){.flow-text{font-size:1.464rem}}@media only screen and (min-width:720px){.flow-text{font-size:1.488rem}}@media only screen and (min-width:750px){.flow-text{font-size:1.512rem}}@media only screen and (min-width:780px){.flow-text{font-size:1.536rem}}@media only screen and (min-width:810px){.flow-text{font-size:1.56rem}}@media only screen and (min-width:840px){.flow-text{font-size:1.584rem}}@media only screen and (min-width:870px){.flow-text{font-size:1.608rem}}@media only screen and (min-width:900px){.flow-text{font-size:1.632rem}}@media only screen and (min-width:930px){.flow-text{font-size:1.656rem}}@media only screen and (min-width:960px){.flow-text{font-size:1.68rem}}@media only screen and (max-width:360px){.flow-text{font-size:1.2rem}}.scale-transition{transition:-webkit-transform .3s cubic-bezier(.53,.01,.36,1.63)!important;transition:transform .3s cubic-bezier(.53,.01,.36,1.63)!important;transition:transform .3s cubic-bezier(.53,.01,.36,1.63),-webkit-transform .3s cubic-bezier(.53,.01,.36,1.63)!important}.scale-transition.scale-out{-webkit-transform:scale(0);transform:scale(0);transition:-webkit-transform .2s!important;transition:transform .2s!important;transition:transform .2s,-webkit-transform .2s!important}.scale-transition.scale-in{-webkit-transform:scale(1);transform:scale(1)}.card-panel{padding:24px}.card,.card-panel{transition:box-shadow .25s;margin:.5rem 0 1rem;border-radius:2px;background-color:#fff}.card{position:relative}.card .card-title{font-size:24px;font-weight:300}.card .card-title.activator{cursor:pointer}.card.large,.card.medium,.card.small{position:relative}.card.large .card-image,.card.medium .card-image,.card.small .card-image{max-height:60%;overflow:hidden}.card.large .card-image+.card-content,.card.medium .card-image+.card-content,.card.small .card-image+.card-content{max-height:40%}.card.large .card-content,.card.medium .card-content,.card.small .card-content{max-height:100%;overflow:hidden}.card.large .card-action,.card.medium .card-action,.card.small .card-action{position:absolute;bottom:0;left:0;right:0}.card.small{height:300px}.card.medium{height:400px}.card.large{height:500px}.card.horizontal{display:-webkit-flex;display:-ms-flexbox;display:flex}.card.horizontal.large .card-image,.card.horizontal.medium .card-image,.card.horizontal.small .card-image{height:100%;max-height:none;overflow:visible}.card.horizontal.large .card-image img,.card.horizontal.medium .card-image img,.card.horizontal.small .card-image img{height:100%}.card.horizontal .card-image{max-width:50%}.card.horizontal .card-image img{border-radius:2px 0 0 2px;max-width:100%;width:auto}.card.horizontal .card-stacked{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-flex:1;-ms-flex:1;flex:1;position:relative}.card.horizontal .card-stacked .card-content{-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.card.sticky-action .card-action{z-index:2}.card.sticky-action .card-reveal{z-index:1;padding-bottom:64px}.card .card-image{position:relative}.card .card-image img{display:block;border-radius:2px 2px 0 0;position:relative;left:0;right:0;top:0;bottom:0;width:100%}.card .card-image .card-title{color:#fff;position:absolute;bottom:0;left:0;max-width:100%;padding:24px}.card .card-content{padding:24px;border-radius:0 0 2px 2px}.card .card-content p{margin:0;color:inherit}.card .card-content .card-title{display:block;line-height:32px;margin-bottom:8px}.card .card-content .card-title i{line-height:32px}.card .card-action{position:relative;background-color:inherit;border-top:1px solid hsla(0,0%,63%,.2);padding:16px 24px}.card .card-action:last-child{border-radius:0 0 2px 2px}.card .card-action a:not(.btn):not(.btn-large):not(.btn-large):not(.btn-floating){color:#ffab40;margin-right:24px;transition:color .3s ease;text-transform:uppercase}.card .card-action a:not(.btn):not(.btn-large):not(.btn-large):not(.btn-floating):hover{color:#ffd8a6}.card .card-reveal{padding:24px;position:absolute;background-color:#fff;width:100%;overflow-y:auto;left:0;top:100%;height:100%;z-index:3;display:none}.card .card-reveal .card-title{cursor:pointer;display:block}#toast-container{display:block;position:fixed;z-index:10000}@media only screen and (max-width:600px){#toast-container{min-width:100%;bottom:0}}@media only screen and (min-width:601px) and (max-width:992px){#toast-container{left:5%;bottom:7%;max-width:90%}}@media only screen and (min-width:993px){#toast-container{top:10%;right:7%;max-width:86%}}.toast{border-radius:2px;top:35px;width:auto;clear:both;margin-top:10px;position:relative;max-width:100%;height:auto;min-height:48px;line-height:1.5em;word-break:break-all;background-color:#323232;padding:10px 25px;font-size:1.1rem;font-weight:300;color:#fff;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.toast .btn,.toast .btn-flat,.toast .btn-large{margin:0;margin-left:3rem}.toast.rounded{border-radius:24px}@media only screen and (max-width:600px){.toast{width:100%;border-radius:0}}@media only screen and (min-width:601px) and (max-width:992px){.toast{float:left}}@media only screen and (min-width:993px){.toast{float:right}}.tabs{position:relative;overflow-x:auto;overflow-y:hidden;height:48px;width:100%;background-color:#fff;margin:0 auto;white-space:nowrap}.tabs.tabs-transparent{background-color:transparent}.tabs.tabs-transparent .tab.disabled a,.tabs.tabs-transparent .tab.disabled a:hover,.tabs.tabs-transparent .tab a{color:hsla(0,0%,100%,.7)}.tabs.tabs-transparent .tab a.active,.tabs.tabs-transparent .tab a:hover{color:#fff}.tabs.tabs-transparent .indicator{background-color:#fff}.tabs.tabs-fixed-width{display:-webkit-flex;display:-ms-flexbox;display:flex}.tabs.tabs-fixed-width .tab{-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.tabs .tab{display:inline-block;text-align:center;line-height:48px;height:48px;padding:0;margin:0;text-transform:uppercase}.tabs .tab a{color:rgba(238,110,115,.7);display:block;width:100%;height:100%;padding:0 24px;font-size:14px;text-overflow:ellipsis;overflow:hidden;transition:color .28s ease}.tabs .tab a.active,.tabs .tab a:hover{background-color:transparent;color:#ee6e73}.tabs .tab.disabled a,.tabs .tab.disabled a:hover{color:rgba(238,110,115,.7);cursor:default}.tabs .indicator{position:absolute;bottom:0;height:2px;background-color:#f6b2b5;will-change:left,right}@media only screen and (max-width:992px){.tabs{display:-webkit-flex;display:-ms-flexbox;display:flex}.tabs .tab{-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.tabs .tab a{padding:0 12px}}.material-tooltip{padding:10px 8px;font-size:1rem;z-index:2000;background-color:transparent;border-radius:2px;color:#fff;min-height:36px;line-height:120%;text-align:center;max-width:calc(100% - 4px);overflow:hidden;left:0;top:0;pointer-events:none}.backdrop,.material-tooltip{opacity:0;position:absolute;visibility:hidden}.backdrop{height:7px;width:14px;border-radius:0 0 50% 50%;background-color:#323232;z-index:-1;-webkit-transform-origin:50% 0;transform-origin:50% 0}.btn,.btn-flat,.btn-large{border:none;border-radius:2px;display:inline-block;height:36px;line-height:36px;padding:0 2rem;text-transform:uppercase;vertical-align:middle;-webkit-tap-highlight-color:transparent}.btn-flat.disabled,.btn-flat:disabled,.btn-flat[disabled],.btn-floating.disabled,.btn-floating:disabled,.btn-floating[disabled],.btn-large.disabled,.btn-large:disabled,.btn-large[disabled],.btn.disabled,.btn:disabled,.btn[disabled],.disabled.btn-large,[disabled].btn-large{pointer-events:none;background-color:#dfdfdf!important;box-shadow:none;color:#9f9f9f!important;cursor:default}.btn-flat.disabled:hover,.btn-flat:disabled:hover,.btn-flat[disabled]:hover,.btn-floating.disabled:hover,.btn-floating:disabled:hover,.btn-floating[disabled]:hover,.btn-large.disabled:hover,.btn-large:disabled:hover,.btn-large[disabled]:hover,.btn.disabled:hover,.btn:disabled:hover,.btn[disabled]:hover,.disabled.btn-large:hover,[disabled].btn-large:hover{background-color:#dfdfdf!important;color:#9f9f9f!important}.btn,.btn-flat,.btn-floating,.btn-large{font-size:1rem;outline:0}.btn-flat i,.btn-floating i,.btn-large i,.btn i{font-size:1.3rem;line-height:inherit}.btn-floating:focus,.btn-large:focus,.btn:focus{background-color:#1d7d74}.btn,.btn-large{text-decoration:none;color:#fff;background-color:#26a69a;text-align:center;letter-spacing:.5px;transition:.2s ease-out;cursor:pointer}.btn-large:hover,.btn:hover{background-color:#2bbbad}.btn-floating{display:inline-block;color:#fff;position:relative;overflow:hidden;z-index:1;width:40px;height:40px;line-height:40px;padding:0;border-radius:50%;transition:.3s;cursor:pointer;vertical-align:middle}.btn-floating,.btn-floating:hover{background-color:#26a69a}.btn-floating:before{border-radius:0}.btn-floating.btn-large{width:56px;height:56px}.btn-floating.btn-large.halfway-fab{bottom:-28px}.btn-floating.btn-large i{line-height:56px}.btn-floating.halfway-fab{position:absolute;right:24px;bottom:-20px}.btn-floating.halfway-fab.left{right:auto;left:24px}.btn-floating i{width:inherit;display:inline-block;text-align:center;color:#fff;font-size:1.6rem;line-height:40px}button.btn-floating{border:none}.fixed-action-btn{position:fixed;right:23px;bottom:23px;padding-top:15px;margin-bottom:0;z-index:998}.fixed-action-btn.active ul{visibility:visible}.fixed-action-btn.horizontal{padding:0 0 0 15px}.fixed-action-btn.horizontal ul{text-align:right;right:64px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);height:100%;left:auto;width:500px}.fixed-action-btn.horizontal ul li{display:inline-block;margin:15px 15px 0 0}.fixed-action-btn.toolbar{padding:0;height:56px}.fixed-action-btn.toolbar.active>a i{opacity:0}.fixed-action-btn.toolbar ul{display:-webkit-flex;display:-ms-flexbox;display:flex;top:0;bottom:0}.fixed-action-btn.toolbar ul li{-webkit-flex:1;-ms-flex:1;flex:1;display:inline-block;margin:0;height:100%;transition:none}.fixed-action-btn.toolbar ul li a{display:block;overflow:hidden;position:relative;width:100%;height:100%;background-color:transparent;box-shadow:none;color:#fff;line-height:56px;z-index:1}.fixed-action-btn.toolbar ul li a i{line-height:inherit}.fixed-action-btn ul{left:0;right:0;text-align:center;position:absolute;bottom:64px;margin:0;visibility:hidden}.fixed-action-btn ul li{margin-bottom:15px}.fixed-action-btn ul a.btn-floating{opacity:0}.fixed-action-btn .fab-backdrop{position:absolute;top:0;left:0;z-index:-1;width:40px;height:40px;background-color:#26a69a;border-radius:50%;-webkit-transform:scale(0);transform:scale(0)}.btn-flat{box-shadow:none;color:#343434;cursor:pointer;transition:background-color .2s}.btn-flat,.btn-flat:active,.btn-flat:focus{background-color:transparent}.btn-flat:focus,.btn-flat:hover{background-color:rgba(0,0,0,.1);box-shadow:none}.btn-flat:active{background-color:rgba(0,0,0,.2)}.btn-flat.disabled{background-color:transparent!important;color:#b3b3b3!important;cursor:default}.btn-large{height:54px;line-height:54px}.btn-large i{font-size:1.6rem}.btn-block{display:block}.dropdown-content{background-color:#fff;margin:0;display:none;min-width:100px;max-height:650px;overflow-y:auto;opacity:0;position:absolute;z-index:999;will-change:width,height}.dropdown-content li{clear:both;color:rgba(0,0,0,.87);cursor:pointer;min-height:50px;line-height:1.5rem;width:100%;text-align:left;text-transform:none}.dropdown-content li.active,.dropdown-content li.selected,.dropdown-content li:hover{background-color:#eee}.dropdown-content li.active.selected{background-color:#e1e1e1}.dropdown-content li.divider{min-height:0;height:1px}.dropdown-content li>a,.dropdown-content li>span{font-size:16px;color:#26a69a;display:block;line-height:22px;padding:14px 16px}.dropdown-content li>span>label{top:1px;left:0;height:18px}.dropdown-content li>a>i{height:inherit;line-height:inherit;float:left;margin:0 24px 0 0;width:24px}.input-field.col .dropdown-content [type=checkbox]+label{top:1px;left:0;height:18px}.waves-effect{position:relative;cursor:pointer;display:inline-block;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;vertical-align:middle;z-index:1;transition:.3s ease-out}.waves-effect .waves-ripple{position:absolute;border-radius:50%;width:20px;height:20px;margin-top:-10px;margin-left:-10px;opacity:0;background:rgba(0,0,0,.2);transition:all .7s ease-out;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;-webkit-transform:scale(0);transform:scale(0);pointer-events:none}.waves-effect.waves-light .waves-ripple{background-color:hsla(0,0%,100%,.45)}.waves-effect.waves-red .waves-ripple{background-color:rgba(244,67,54,.7)}.waves-effect.waves-yellow .waves-ripple{background-color:rgba(255,235,59,.7)}.waves-effect.waves-orange .waves-ripple{background-color:rgba(255,152,0,.7)}.waves-effect.waves-purple .waves-ripple{background-color:rgba(156,39,176,.7)}.waves-effect.waves-green .waves-ripple{background-color:rgba(76,175,80,.7)}.waves-effect.waves-teal .waves-ripple{background-color:rgba(0,150,136,.7)}.waves-effect input[type=button],.waves-effect input[type=reset],.waves-effect input[type=submit]{border:0;font-style:normal;font-size:inherit;text-transform:inherit;background:none}.waves-effect img{position:relative;z-index:-1}.waves-notransition{transition:none!important}.waves-circle{-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-mask-image:-webkit-radial-gradient(circle,#fff 100%,#000 0)}.waves-input-wrapper{border-radius:.2em;vertical-align:bottom}.waves-input-wrapper .waves-button-input{position:relative;top:0;left:0;z-index:1}.waves-circle{text-align:center;width:2.5em;height:2.5em;line-height:2.5em;border-radius:50%;-webkit-mask-image:none}.waves-block{display:block}.waves-effect .waves-ripple{z-index:-1}.modal{display:none;position:fixed;left:0;right:0;background-color:#fafafa;padding:0;max-height:70%;width:55%;margin:auto;overflow-y:auto;border-radius:2px;will-change:top,opacity}@media only screen and (max-width:992px){.modal{width:80%}}.modal h1,.modal h2,.modal h3,.modal h4{margin-top:0}.modal .modal-content{padding:24px}.modal .modal-close{cursor:pointer}.modal .modal-footer{border-radius:0 0 2px 2px;background-color:#fafafa;padding:4px 6px;height:56px;width:100%}.modal .modal-footer .btn,.modal .modal-footer .btn-flat,.modal .modal-footer .btn-large{float:right;margin:6px 0}.modal-overlay{position:fixed;z-index:999;top:-100px;left:0;bottom:0;right:0;height:125%;width:100%;background:#000;display:none;will-change:opacity}.modal.modal-fixed-footer{padding:0;height:70%}.modal.modal-fixed-footer .modal-content{position:absolute;height:calc(100% - 56px);max-height:100%;width:100%;overflow-y:auto}.modal.modal-fixed-footer .modal-footer{border-top:1px solid rgba(0,0,0,.1);position:absolute;bottom:0}.modal.bottom-sheet{top:auto;bottom:-100%;margin:0;width:100%;max-height:45%;border-radius:0;will-change:bottom,opacity}.collapsible{border-top:1px solid #ddd;border-right:1px solid #ddd;border-left:1px solid #ddd;margin:.5rem 0 1rem}.collapsible-header{display:block;cursor:pointer;min-height:3rem;line-height:3rem;padding:0 1rem;background-color:#fff;border-bottom:1px solid #ddd}.collapsible-header i{width:2rem;font-size:1.6rem;line-height:3rem;display:block;float:left;text-align:center;margin-right:1rem}.collapsible-body{display:none;border-bottom:1px solid #ddd;box-sizing:border-box;padding:2rem}.side-nav .collapsible,.side-nav.fixed .collapsible{border:none;box-shadow:none}.side-nav .collapsible li,.side-nav.fixed .collapsible li{padding:0}.side-nav .collapsible-header,.side-nav.fixed .collapsible-header{background-color:transparent;border:none;line-height:inherit;height:inherit;padding:0 16px}.side-nav .collapsible-header:hover,.side-nav.fixed .collapsible-header:hover{background-color:rgba(0,0,0,.05)}.side-nav .collapsible-header i,.side-nav.fixed .collapsible-header i{line-height:inherit}.side-nav .collapsible-body,.side-nav.fixed .collapsible-body{border:0;background-color:#fff}.side-nav .collapsible-body li a,.side-nav.fixed .collapsible-body li a{padding:0 23.5px 0 31px}.collapsible.popout{border:none;box-shadow:none}.collapsible.popout>li{box-shadow:0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);margin:0 24px;transition:margin .35s cubic-bezier(.25,.46,.45,.94)}.collapsible.popout>li.active{box-shadow:0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15);margin:16px 0}.chip{display:inline-block;height:32px;font-size:13px;font-weight:500;color:rgba(0,0,0,.6);line-height:32px;padding:0 12px;border-radius:16px;background-color:#e4e4e4;margin-bottom:5px;margin-right:5px}.chip>img{float:left;margin:0 8px 0 -12px;height:32px;width:32px;border-radius:50%}.chip .close{cursor:pointer;float:right;font-size:16px;line-height:32px;padding-left:8px}.chips{border:none;border-bottom:1px solid #9e9e9e;box-shadow:none;margin:0 0 20px;min-height:45px;outline:none;transition:all .3s}.chips.focus{border-bottom:1px solid #26a69a;box-shadow:0 1px 0 0 #26a69a}.chips:hover{cursor:text}.chips .chip.selected{background-color:#26a69a;color:#fff}.chips .input{background:none;border:0;color:rgba(0,0,0,.6);display:inline-block;font-size:1rem;height:3rem;line-height:32px;outline:0;margin:0;padding:0!important;width:120px!important}.chips .input:focus{border:0!important;box-shadow:none!important}.chips .autocomplete-content{margin-top:0}.prefix~.chips{margin-left:3rem;width:92%;width:calc(100% - 3rem)}.chips:empty~label{font-size:.8rem;-webkit-transform:translateY(-140%);transform:translateY(-140%)}.materialboxed{display:block;cursor:-webkit-zoom-in;cursor:zoom-in;position:relative;transition:opacity .4s;-webkit-backface-visibility:hidden}.materialboxed:hover:not(.active){opacity:.8}.materialboxed.active{cursor:-webkit-zoom-out;cursor:zoom-out}#materialbox-overlay{top:0;right:0;background-color:#292929;will-change:opacity}#materialbox-overlay,.materialbox-caption{position:fixed;bottom:0;left:0;z-index:1000}.materialbox-caption{display:none;color:#fff;line-height:50px;width:100%;text-align:center;padding:0 15%;height:50px;-webkit-font-smoothing:antialiased}select:focus{outline:1px solid #c9f3ef}button:focus{outline:none;background-color:#2ab7a9}label{font-size:.8rem;color:#9e9e9e}::-webkit-input-placeholder{color:#d1d1d1}:-moz-placeholder,::-moz-placeholder{color:#d1d1d1}:-ms-input-placeholder{color:#d1d1d1}input:not([type]),input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],textarea.materialize-textarea{background-color:transparent;border:none;border-bottom:1px solid #9e9e9e;border-radius:0;outline:none;height:3rem;width:100%;font-size:1rem;margin:0 0 20px;padding:0;box-shadow:none;box-sizing:content-box;transition:all .3s}input:not([type]):disabled,input:not([type])[readonly=readonly],input[type=date]:disabled,input[type=date][readonly=readonly],input[type=datetime-local]:disabled,input[type=datetime-local][readonly=readonly],input[type=datetime]:disabled,input[type=datetime][readonly=readonly],input[type=email]:disabled,input[type=email][readonly=readonly],input[type=number]:disabled,input[type=number][readonly=readonly],input[type=password]:disabled,input[type=password][readonly=readonly],input[type=search]:disabled,input[type=search][readonly=readonly],input[type=tel]:disabled,input[type=tel][readonly=readonly],input[type=text]:disabled,input[type=text][readonly=readonly],input[type=time]:disabled,input[type=time][readonly=readonly],input[type=url]:disabled,input[type=url][readonly=readonly],textarea.materialize-textarea:disabled,textarea.materialize-textarea[readonly=readonly]{color:rgba(0,0,0,.26);border-bottom:1px dotted rgba(0,0,0,.26)}input:not([type]):disabled+label,input:not([type])[readonly=readonly]+label,input[type=date]:disabled+label,input[type=date][readonly=readonly]+label,input[type=datetime-local]:disabled+label,input[type=datetime-local][readonly=readonly]+label,input[type=datetime]:disabled+label,input[type=datetime][readonly=readonly]+label,input[type=email]:disabled+label,input[type=email][readonly=readonly]+label,input[type=number]:disabled+label,input[type=number][readonly=readonly]+label,input[type=password]:disabled+label,input[type=password][readonly=readonly]+label,input[type=search]:disabled+label,input[type=search][readonly=readonly]+label,input[type=tel]:disabled+label,input[type=tel][readonly=readonly]+label,input[type=text]:disabled+label,input[type=text][readonly=readonly]+label,input[type=time]:disabled+label,input[type=time][readonly=readonly]+label,input[type=url]:disabled+label,input[type=url][readonly=readonly]+label,textarea.materialize-textarea:disabled+label,textarea.materialize-textarea[readonly=readonly]+label{color:rgba(0,0,0,.26)}input:not([type]):focus:not([readonly]),input[type=date]:focus:not([readonly]),input[type=datetime-local]:focus:not([readonly]),input[type=datetime]:focus:not([readonly]),input[type=email]:focus:not([readonly]),input[type=number]:focus:not([readonly]),input[type=password]:focus:not([readonly]),input[type=search]:focus:not([readonly]),input[type=tel]:focus:not([readonly]),input[type=text]:focus:not([readonly]),input[type=time]:focus:not([readonly]),input[type=url]:focus:not([readonly]),textarea.materialize-textarea:focus:not([readonly]){border-bottom:1px solid #26a69a;box-shadow:0 1px 0 0 #26a69a}input:not([type]):focus:not([readonly])+label,input[type=date]:focus:not([readonly])+label,input[type=datetime-local]:focus:not([readonly])+label,input[type=datetime]:focus:not([readonly])+label,input[type=email]:focus:not([readonly])+label,input[type=number]:focus:not([readonly])+label,input[type=password]:focus:not([readonly])+label,input[type=search]:focus:not([readonly])+label,input[type=tel]:focus:not([readonly])+label,input[type=text]:focus:not([readonly])+label,input[type=time]:focus:not([readonly])+label,input[type=url]:focus:not([readonly])+label,textarea.materialize-textarea:focus:not([readonly])+label{color:#26a69a}input:not([type]).valid,input:not([type]):focus.valid,input[type=date].valid,input[type=date]:focus.valid,input[type=datetime-local].valid,input[type=datetime-local]:focus.valid,input[type=datetime].valid,input[type=datetime]:focus.valid,input[type=email].valid,input[type=email]:focus.valid,input[type=number].valid,input[type=number]:focus.valid,input[type=password].valid,input[type=password]:focus.valid,input[type=search].valid,input[type=search]:focus.valid,input[type=tel].valid,input[type=tel]:focus.valid,input[type=text].valid,input[type=text]:focus.valid,input[type=time].valid,input[type=time]:focus.valid,input[type=url].valid,input[type=url]:focus.valid,textarea.materialize-textarea.valid,textarea.materialize-textarea:focus.valid{border-bottom:1px solid #4caf50;box-shadow:0 1px 0 0 #4caf50}input:not([type]).valid+label:after,input:not([type]):focus.valid+label:after,input[type=date].valid+label:after,input[type=date]:focus.valid+label:after,input[type=datetime-local].valid+label:after,input[type=datetime-local]:focus.valid+label:after,input[type=datetime].valid+label:after,input[type=datetime]:focus.valid+label:after,input[type=email].valid+label:after,input[type=email]:focus.valid+label:after,input[type=number].valid+label:after,input[type=number]:focus.valid+label:after,input[type=password].valid+label:after,input[type=password]:focus.valid+label:after,input[type=search].valid+label:after,input[type=search]:focus.valid+label:after,input[type=tel].valid+label:after,input[type=tel]:focus.valid+label:after,input[type=text].valid+label:after,input[type=text]:focus.valid+label:after,input[type=time].valid+label:after,input[type=time]:focus.valid+label:after,input[type=url].valid+label:after,input[type=url]:focus.valid+label:after,textarea.materialize-textarea.valid+label:after,textarea.materialize-textarea:focus.valid+label:after{content:attr(data-success);color:#4caf50;opacity:1}input:not([type]).invalid,input:not([type]):focus.invalid,input[type=date].invalid,input[type=date]:focus.invalid,input[type=datetime-local].invalid,input[type=datetime-local]:focus.invalid,input[type=datetime].invalid,input[type=datetime]:focus.invalid,input[type=email].invalid,input[type=email]:focus.invalid,input[type=number].invalid,input[type=number]:focus.invalid,input[type=password].invalid,input[type=password]:focus.invalid,input[type=search].invalid,input[type=search]:focus.invalid,input[type=tel].invalid,input[type=tel]:focus.invalid,input[type=text].invalid,input[type=text]:focus.invalid,input[type=time].invalid,input[type=time]:focus.invalid,input[type=url].invalid,input[type=url]:focus.invalid,textarea.materialize-textarea.invalid,textarea.materialize-textarea:focus.invalid{border-bottom:1px solid #f44336;box-shadow:0 1px 0 0 #f44336}input:not([type]).invalid+label:after,input:not([type]):focus.invalid+label:after,input[type=date].invalid+label:after,input[type=date]:focus.invalid+label:after,input[type=datetime-local].invalid+label:after,input[type=datetime-local]:focus.invalid+label:after,input[type=datetime].invalid+label:after,input[type=datetime]:focus.invalid+label:after,input[type=email].invalid+label:after,input[type=email]:focus.invalid+label:after,input[type=number].invalid+label:after,input[type=number]:focus.invalid+label:after,input[type=password].invalid+label:after,input[type=password]:focus.invalid+label:after,input[type=search].invalid+label:after,input[type=search]:focus.invalid+label:after,input[type=tel].invalid+label:after,input[type=tel]:focus.invalid+label:after,input[type=text].invalid+label:after,input[type=text]:focus.invalid+label:after,input[type=time].invalid+label:after,input[type=time]:focus.invalid+label:after,input[type=url].invalid+label:after,input[type=url]:focus.invalid+label:after,textarea.materialize-textarea.invalid+label:after,textarea.materialize-textarea:focus.invalid+label:after{content:attr(data-error);color:#f44336;opacity:1}input:not([type]).validate+label,input[type=date].validate+label,input[type=datetime-local].validate+label,input[type=datetime].validate+label,input[type=email].validate+label,input[type=number].validate+label,input[type=password].validate+label,input[type=search].validate+label,input[type=tel].validate+label,input[type=text].validate+label,input[type=time].validate+label,input[type=url].validate+label,textarea.materialize-textarea.validate+label{width:100%;pointer-events:none}input:not([type])+label:after,input[type=date]+label:after,input[type=datetime-local]+label:after,input[type=datetime]+label:after,input[type=email]+label:after,input[type=number]+label:after,input[type=password]+label:after,input[type=search]+label:after,input[type=tel]+label:after,input[type=text]+label:after,input[type=time]+label:after,input[type=url]+label:after,textarea.materialize-textarea+label:after{display:block;content:"";position:absolute;top:60px;opacity:0;transition:opacity .2s ease-out,color .2s ease-out}.input-field{position:relative;margin-top:1rem}.input-field.inline{display:inline-block;vertical-align:middle;margin-left:5px}.input-field.inline .select-dropdown,.input-field.inline input{margin-bottom:1rem}.input-field.col label{left:.75rem}.input-field.col .prefix~.validate~label,.input-field.col .prefix~label{width:calc(100% - 3rem - 1.5rem)}.input-field label{color:#9e9e9e;position:absolute;top:.8rem;left:0;font-size:1rem;cursor:text;transition:.2s ease-out;text-align:initial}.input-field label:not(.label-icon).active{font-size:.8rem;-webkit-transform:translateY(-140%);transform:translateY(-140%)}.input-field .prefix{position:absolute;width:3rem;font-size:2rem;transition:color .2s}.input-field .prefix.active{color:#26a69a}.input-field .prefix~.autocomplete-content,.input-field .prefix~.validate~label,.input-field .prefix~input,.input-field .prefix~label,.input-field .prefix~textarea{margin-left:3rem;width:92%;width:calc(100% - 3rem)}.input-field .prefix~label{margin-left:3rem}@media only screen and (max-width:992px){.input-field .prefix~input{width:86%;width:calc(100% - 3rem)}}@media only screen and (max-width:600px){.input-field .prefix~input{width:80%;width:calc(100% - 3rem)}}.input-field input[type=search]{display:block;line-height:inherit;padding-left:4rem;width:calc(100% - 4rem)}.input-field input[type=search]:focus{background-color:#fff;border:0;box-shadow:none;color:#444}.input-field input[type=search]:focus+label i,.input-field input[type=search]:focus~.material-icons,.input-field input[type=search]:focus~.mdi-navigation-close{color:#444}.input-field input[type=search]+label{left:1rem}.input-field input[type=search]~.material-icons,.input-field input[type=search]~.mdi-navigation-close{position:absolute;top:0;right:1rem;color:transparent;cursor:pointer;font-size:2rem;transition:color .3s}textarea{width:100%;height:3rem;background-color:transparent}textarea.materialize-textarea{overflow-y:hidden;padding:.8rem 0 1.6rem;resize:none;min-height:3rem}.hiddendiv{display:none;white-space:pre-wrap;word-wrap:break-word;overflow-wrap:break-word;padding-top:1.2rem;position:absolute;top:0}.autocomplete-content{margin-top:-20px;display:block;opacity:1;position:static}.autocomplete-content li .highlight{color:#444}.autocomplete-content li img{height:40px;width:40px;margin:5px 15px}[type=radio]:checked,[type=radio]:not(:checked){position:absolute;left:-9999px;opacity:0}[type=radio]:checked+label,[type=radio]:not(:checked)+label{position:relative;padding-left:35px;cursor:pointer;display:inline-block;height:25px;line-height:25px;font-size:1rem;transition:.28s ease;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}[type=radio]+label:after,[type=radio]+label:before{content:"";position:absolute;left:0;top:0;margin:4px;width:16px;height:16px;z-index:0;transition:.28s ease}[type=radio].with-gap:checked+label:after,[type=radio].with-gap:checked+label:before,[type=radio]:checked+label:after,[type=radio]:checked+label:before,[type=radio]:not(:checked)+label:after,[type=radio]:not(:checked)+label:before{border-radius:50%}[type=radio]:not(:checked)+label:after,[type=radio]:not(:checked)+label:before{border:2px solid #5a5a5a}[type=radio]:not(:checked)+label:after{-webkit-transform:scale(0);transform:scale(0)}[type=radio]:checked+label:before{border:2px solid transparent}[type=radio].with-gap:checked+label:after,[type=radio].with-gap:checked+label:before,[type=radio]:checked+label:after{border:2px solid #26a69a}[type=radio].with-gap:checked+label:after,[type=radio]:checked+label:after{background-color:#26a69a}[type=radio]:checked+label:after{-webkit-transform:scale(1.02);transform:scale(1.02)}[type=radio].with-gap:checked+label:after{-webkit-transform:scale(.5);transform:scale(.5)}[type=radio].tabbed:focus+label:before{box-shadow:0 0 0 10px rgba(0,0,0,.1)}[type=radio].with-gap:disabled:checked+label:before{border:2px solid rgba(0,0,0,.26)}[type=radio].with-gap:disabled:checked+label:after{border:none;background-color:rgba(0,0,0,.26)}[type=radio]:disabled:checked+label:before,[type=radio]:disabled:not(:checked)+label:before{background-color:transparent;border-color:rgba(0,0,0,.26)}[type=radio]:disabled+label{color:rgba(0,0,0,.26)}[type=radio]:disabled:not(:checked)+label:before{border-color:rgba(0,0,0,.26)}[type=radio]:disabled:checked+label:after{background-color:rgba(0,0,0,.26);border-color:#bdbdbd}form p{margin-bottom:10px;text-align:left}form p:last-child{margin-bottom:0}[type=checkbox]:checked,[type=checkbox]:not(:checked){position:absolute;left:-9999px;opacity:0}[type=checkbox]+label{position:relative;padding-left:35px;cursor:pointer;display:inline-block;height:25px;line-height:25px;font-size:1rem;-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}[type=checkbox]+label:before,[type=checkbox]:not(.filled-in)+label:after{content:"";position:absolute;top:0;left:0;width:18px;height:18px;z-index:0;border:2px solid #5a5a5a;border-radius:1px;margin-top:2px;transition:.2s}[type=checkbox]:not(.filled-in)+label:after{border:0;-webkit-transform:scale(0);transform:scale(0)}[type=checkbox]:not(:checked):disabled+label:before{border:none;background-color:rgba(0,0,0,.26)}[type=checkbox].tabbed:focus+label:after{-webkit-transform:scale(1);transform:scale(1);border:0;border-radius:50%;box-shadow:0 0 0 10px rgba(0,0,0,.1);background-color:rgba(0,0,0,.1)}[type=checkbox]:checked+label:before{top:-4px;left:-5px;width:12px;height:22px;border-top:2px solid transparent;border-left:2px solid transparent;border-right:2px solid #26a69a;border-bottom:2px solid #26a69a;-webkit-transform:rotate(40deg);transform:rotate(40deg);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-origin:100% 100%;transform-origin:100% 100%}[type=checkbox]:checked:disabled+label:before{border-right:2px solid rgba(0,0,0,.26);border-bottom:2px solid rgba(0,0,0,.26)}[type=checkbox]:indeterminate+label:before{top:-11px;left:-12px;width:10px;height:22px;border-top:none;border-left:none;border-right:2px solid #26a69a;border-bottom:none;-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-origin:100% 100%;transform-origin:100% 100%}[type=checkbox]:indeterminate:disabled+label:before{border-right:2px solid rgba(0,0,0,.26);background-color:transparent}[type=checkbox].filled-in+label:after{border-radius:2px}[type=checkbox].filled-in+label:after,[type=checkbox].filled-in+label:before{content:"";left:0;position:absolute;transition:border .25s,background-color .25s,width .2s .1s,height .2s .1s,top .2s .1s,left .2s .1s;z-index:1}[type=checkbox].filled-in:not(:checked)+label:before{width:0;height:0;border:3px solid transparent;left:6px;top:10px;-webkit-transform:rotate(37deg);transform:rotate(37deg);-webkit-transform-origin:20% 40%;transform-origin:100% 100%}[type=checkbox].filled-in:not(:checked)+label:after{height:20px;width:20px;background-color:transparent;border:2px solid #5a5a5a;top:0;z-index:0}[type=checkbox].filled-in:checked+label:before{top:0;left:1px;width:8px;height:13px;border-top:2px solid transparent;border-left:2px solid transparent;border-right:2px solid #fff;border-bottom:2px solid #fff;-webkit-transform:rotate(37deg);transform:rotate(37deg);-webkit-transform-origin:100% 100%;transform-origin:100% 100%}[type=checkbox].filled-in:checked+label:after{top:0;width:20px;height:20px;border:2px solid #26a69a;background-color:#26a69a;z-index:0}[type=checkbox].filled-in.tabbed:focus+label:after{border-radius:2px;border-color:#5a5a5a;background-color:rgba(0,0,0,.1)}[type=checkbox].filled-in.tabbed:checked:focus+label:after{border-radius:2px;background-color:#26a69a;border-color:#26a69a}[type=checkbox].filled-in:disabled:not(:checked)+label:before{background-color:transparent;border:2px solid transparent}[type=checkbox].filled-in:disabled:not(:checked)+label:after{border-color:transparent;background-color:#bdbdbd}[type=checkbox].filled-in:disabled:checked+label:before{background-color:transparent}[type=checkbox].filled-in:disabled:checked+label:after{background-color:#bdbdbd;border-color:#bdbdbd}.switch,.switch *{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.switch label{cursor:pointer}.switch label input[type=checkbox]{opacity:0;width:0;height:0}.switch label input[type=checkbox]:checked+.lever{background-color:#84c7c1}.switch label input[type=checkbox]:checked+.lever:after{background-color:#26a69a;left:24px}.switch label .lever{content:"";display:inline-block;position:relative;width:40px;height:15px;background-color:#818181;border-radius:15px;margin-right:10px;transition:background .3s ease;vertical-align:middle;margin:0 16px}.switch label .lever:after{content:"";position:absolute;display:inline-block;width:21px;height:21px;background-color:#f1f1f1;border-radius:21px;box-shadow:0 1px 3px 1px rgba(0,0,0,.4);left:-5px;top:-3px;transition:left .3s ease,background .3s ease,box-shadow .1s ease}input[type=checkbox]:checked:not(:disabled).tabbed:focus~.lever:after,input[type=checkbox]:checked:not(:disabled)~.lever:active:after{box-shadow:0 1px 3px 1px rgba(0,0,0,.4),0 0 0 15px rgba(38,166,154,.1)}input[type=checkbox]:not(:disabled).tabbed:focus~.lever:after,input[type=checkbox]:not(:disabled)~.lever:active:after{box-shadow:0 1px 3px 1px rgba(0,0,0,.4),0 0 0 15px rgba(0,0,0,.08)}.switch input[type=checkbox][disabled]+.lever{cursor:default}.switch label input[type=checkbox][disabled]+.lever:after,.switch label input[type=checkbox][disabled]:checked+.lever:after{background-color:#bdbdbd}select{display:none}select.browser-default{display:block}select{background-color:hsla(0,0%,100%,.9);width:100%;padding:5px;border:1px solid #f2f2f2;border-radius:2px;height:3rem}.select-label{position:absolute}.select-wrapper{position:relative}.select-wrapper input.select-dropdown{position:relative;cursor:pointer;background-color:transparent;border:none;border-bottom:1px solid #9e9e9e;outline:none;height:3rem;line-height:3rem;width:100%;font-size:1rem;margin:0 0 20px;padding:0;display:block}.select-wrapper span.caret{color:initial;position:absolute;right:0;top:0;bottom:0;height:10px;margin:auto 0;font-size:10px;line-height:10px}.select-wrapper span.caret.disabled{color:rgba(0,0,0,.26)}.select-wrapper+label{position:absolute;top:-14px;font-size:.8rem}select:disabled{color:rgba(0,0,0,.3)}.select-wrapper input.select-dropdown:disabled{color:rgba(0,0,0,.3);cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;border-bottom:1px solid rgba(0,0,0,.3)}.select-wrapper i{color:rgba(0,0,0,.3)}.select-dropdown li.disabled,.select-dropdown li.disabled>span,.select-dropdown li.optgroup{color:rgba(0,0,0,.3);background-color:transparent}.prefix~.select-wrapper{margin-left:3rem;width:92%;width:calc(100% - 3rem)}.prefix~label{margin-left:3rem}.select-dropdown li img{height:40px;width:40px;margin:5px 15px;float:right}.select-dropdown li.optgroup{border-top:1px solid #eee}.select-dropdown li.optgroup.selected>span{color:rgba(0,0,0,.7)}.select-dropdown li.optgroup>span{color:rgba(0,0,0,.4)}.select-dropdown li.optgroup~li.optgroup-option{padding-left:1rem}.file-field{position:relative}.file-field .file-path-wrapper{overflow:hidden;padding-left:10px}.file-field input.file-path{width:100%}.file-field .btn,.file-field .btn-large{float:left;height:3rem;line-height:3rem}.file-field span{cursor:pointer}.file-field input[type=file]{position:absolute;top:0;right:0;left:0;bottom:0;width:100%;margin:0;padding:0;font-size:20px;cursor:pointer;opacity:0;filter:alpha(opacity=0)}.range-field{position:relative}input[type=range],input[type=range]+.thumb{cursor:pointer}input[type=range]{position:relative;background-color:transparent;border:none;outline:none;width:100%;margin:15px 0;padding:0}input[type=range]:focus{outline:none}input[type=range]+.thumb{position:absolute;top:10px;left:0;border:none;height:0;width:0;border-radius:50%;background-color:#26a69a;margin-left:7px;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}input[type=range]+.thumb .value{display:block;width:30px;text-align:center;color:#26a69a;font-size:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}input[type=range]+.thumb.active{border-radius:50% 50% 50% 0}input[type=range]+.thumb.active .value{color:#fff;margin-left:-1px;margin-top:8px;font-size:10px}input[type=range]{-webkit-appearance:none}input[type=range]::-webkit-slider-runnable-track{height:3px;background:#c2c0c2;border:none}input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;border:none;height:14px;width:14px;border-radius:50%;background-color:#26a69a;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;margin:-5px 0 0;transition:.3s}input[type=range]:focus::-webkit-slider-runnable-track{background:#ccc}input[type=range]{border:1px solid #fff}input[type=range]::-moz-range-track{height:3px;background:#ddd;border:none}input[type=range]::-moz-range-thumb{border:none;height:14px;width:14px;border-radius:50%;background:#26a69a;margin-top:-5px}input[type=range]:-moz-focusring{outline:1px solid #fff;outline-offset:-1px}input[type=range]:focus::-moz-range-track{background:#ccc}input[type=range]::-ms-track{height:3px;background:transparent;border-color:transparent;border-width:6px 0;color:transparent}input[type=range]::-ms-fill-lower{background:#777}input[type=range]::-ms-fill-upper{background:#ddd}input[type=range]::-ms-thumb{border:none;height:14px;width:14px;border-radius:50%;background:#26a69a}input[type=range]:focus::-ms-fill-lower{background:#888}input[type=range]:focus::-ms-fill-upper{background:#ccc}.table-of-contents.fixed{position:fixed}.table-of-contents li{padding:2px 0}.table-of-contents a{font-weight:300;color:#757575;padding-left:20px;height:1.5rem;line-height:1.5rem;letter-spacing:.4;display:inline-block}.table-of-contents a:hover{color:#a8a8a8;padding-left:19px;border-left:1px solid #ee6e73}.table-of-contents a.active{font-weight:500;padding-left:18px;border-left:2px solid #ee6e73}.side-nav{position:fixed;width:300px;left:0;top:0;margin:0;-webkit-transform:translateX(-100%);transform:translateX(-100%);height:calc(100% + 60px);height:100%;padding-bottom:60px;background-color:#fff;z-index:999;overflow-y:auto;will-change:transform;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateX(-105%);transform:translateX(-105%)}.side-nav.right-aligned{right:0;-webkit-transform:translateX(105%);transform:translateX(105%);left:auto;-webkit-transform:translateX(100%);transform:translateX(100%)}.side-nav .collapsible{margin:0}.side-nav li{float:none;line-height:48px}.side-nav li.active{background-color:rgba(0,0,0,.05)}.side-nav li>a{color:rgba(0,0,0,.87);display:block;font-size:14px;font-weight:500;height:48px;line-height:48px;padding:0 32px}.side-nav li>a:hover{background-color:rgba(0,0,0,.05)}.side-nav li>a.btn,.side-nav li>a.btn-flat,.side-nav li>a.btn-floating,.side-nav li>a.btn-large{margin:10px 15px}.side-nav li>a.btn,.side-nav li>a.btn-floating,.side-nav li>a.btn-large{color:#fff}.side-nav li>a.btn-flat{color:#343434}.side-nav li>a.btn-large:hover,.side-nav li>a.btn:hover{background-color:#2bbbad}.side-nav li>a.btn-floating:hover{background-color:#26a69a}.side-nav li>a>[class^=mdi-],.side-nav li>a>i,.side-nav li>a>i.material-icons,.side-nav li>a li>a>[class*=mdi-]{float:left;height:48px;line-height:48px;margin:0 32px 0 0;width:24px;color:rgba(0,0,0,.54)}.side-nav .divider{margin:8px 0 0}.side-nav .subheader{cursor:auto;pointer-events:none;color:rgba(0,0,0,.54);font-size:14px;font-weight:500;line-height:48px}.side-nav .subheader:hover{background-color:transparent}.side-nav .userView{position:relative;padding:32px 32px 0;margin-bottom:8px}.side-nav .userView>a{height:auto;padding:0}.side-nav .userView>a:hover{background-color:transparent}.side-nav .userView .background{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.side-nav .userView .circle,.side-nav .userView .email,.side-nav .userView .name{display:block}.side-nav .userView .circle{height:64px;width:64px}.side-nav .userView .email,.side-nav .userView .name{font-size:14px;line-height:24px}.side-nav .userView .name{margin-top:16px;font-weight:500}.side-nav .userView .email{padding-bottom:16px;font-weight:400}.drag-target{height:100%;width:10px;position:fixed;top:0;z-index:998}.side-nav.fixed{left:0;-webkit-transform:translateX(0);transform:translateX(0);position:fixed}.side-nav.fixed.right-aligned{right:0;left:auto}@media only screen and (max-width:992px){.side-nav.fixed{-webkit-transform:translateX(-105%);transform:translateX(-105%)}.side-nav.fixed.right-aligned{-webkit-transform:translateX(105%);transform:translateX(105%)}.side-nav a{padding:0 16px}.side-nav .userView{padding:16px 16px 0}}.side-nav .collapsible-body>ul:not(.collapsible)>li.active,.side-nav.fixed .collapsible-body>ul:not(.collapsible)>li.active{background-color:#ee6e73}.side-nav .collapsible-body>ul:not(.collapsible)>li.active a,.side-nav.fixed .collapsible-body>ul:not(.collapsible)>li.active a{color:#fff}.side-nav .collapsible-body{padding:0}#sidenav-overlay{position:fixed;top:0;left:0;right:0;height:120vh;background-color:rgba(0,0,0,.5);z-index:997;will-change:opacity}.preloader-wrapper{display:inline-block;position:relative;width:50px;height:50px}.preloader-wrapper.small{width:36px;height:36px}.preloader-wrapper.big{width:64px;height:64px}.preloader-wrapper.active{-webkit-animation:container-rotate 1568ms linear infinite;animation:container-rotate 1568ms linear infinite}@-webkit-keyframes container-rotate{to{-webkit-transform:rotate(1turn)}}@keyframes container-rotate{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.spinner-layer{position:absolute;width:100%;height:100%;opacity:0;border-color:#26a69a}.spinner-blue,.spinner-blue-only{border-color:#4285f4}.spinner-red,.spinner-red-only{border-color:#db4437}.spinner-yellow,.spinner-yellow-only{border-color:#f4b400}.spinner-green,.spinner-green-only{border-color:#0f9d58}.active .spinner-layer.spinner-blue{-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,blue-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,blue-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both}.active .spinner-layer.spinner-red{-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,red-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,red-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both}.active .spinner-layer.spinner-yellow{-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,yellow-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,yellow-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both}.active .spinner-layer.spinner-green{-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,green-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,green-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both}.active .spinner-layer,.active .spinner-layer.spinner-blue-only,.active .spinner-layer.spinner-green-only,.active .spinner-layer.spinner-red-only,.active .spinner-layer.spinner-yellow-only{opacity:1;-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both}@-webkit-keyframes fill-unfill-rotate{12.5%{-webkit-transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg)}to{-webkit-transform:rotate(3turn)}}@keyframes fill-unfill-rotate{12.5%{-webkit-transform:rotate(135deg);transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg);transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg);transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg);transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg);transform:rotate(945deg)}to{-webkit-transform:rotate(3turn);transform:rotate(3turn)}}@-webkit-keyframes blue-fade-in-out{0%{opacity:1}25%{opacity:1}26%{opacity:0}89%{opacity:0}90%{opacity:1}to{opacity:1}}@keyframes blue-fade-in-out{0%{opacity:1}25%{opacity:1}26%{opacity:0}89%{opacity:0}90%{opacity:1}to{opacity:1}}@-webkit-keyframes red-fade-in-out{0%{opacity:0}15%{opacity:0}25%{opacity:1}50%{opacity:1}51%{opacity:0}}@keyframes red-fade-in-out{0%{opacity:0}15%{opacity:0}25%{opacity:1}50%{opacity:1}51%{opacity:0}}@-webkit-keyframes yellow-fade-in-out{0%{opacity:0}40%{opacity:0}50%{opacity:1}75%{opacity:1}76%{opacity:0}}@keyframes yellow-fade-in-out{0%{opacity:0}40%{opacity:0}50%{opacity:1}75%{opacity:1}76%{opacity:0}}@-webkit-keyframes green-fade-in-out{0%{opacity:0}65%{opacity:0}75%{opacity:1}90%{opacity:1}to{opacity:0}}@keyframes green-fade-in-out{0%{opacity:0}65%{opacity:0}75%{opacity:1}90%{opacity:1}to{opacity:0}}.gap-patch{position:absolute;top:0;left:45%;width:10%;height:100%;overflow:hidden;border-color:inherit}.gap-patch .circle{width:1000%;left:-450%}.circle-clipper{display:inline-block;position:relative;width:50%;height:100%;overflow:hidden;border-color:inherit}.circle-clipper .circle{width:200%;height:100%;border-width:3px;border-style:solid;border-color:inherit;border-bottom-color:transparent!important;border-radius:50%;-webkit-animation:none;animation:none;position:absolute;top:0;right:0;bottom:0}.circle-clipper.left .circle{left:0;border-right-color:transparent!important;-webkit-transform:rotate(129deg);transform:rotate(129deg)}.circle-clipper.right .circle{left:-100%;border-left-color:transparent!important;-webkit-transform:rotate(-129deg);transform:rotate(-129deg)}.active .circle-clipper.left .circle{-webkit-animation:left-spin 1333ms cubic-bezier(.4,0,.2,1) infinite both;animation:left-spin 1333ms cubic-bezier(.4,0,.2,1) infinite both}.active .circle-clipper.right .circle{-webkit-animation:right-spin 1333ms cubic-bezier(.4,0,.2,1) infinite both;animation:right-spin 1333ms cubic-bezier(.4,0,.2,1) infinite both}@-webkit-keyframes left-spin{0%{-webkit-transform:rotate(130deg)}50%{-webkit-transform:rotate(-5deg)}to{-webkit-transform:rotate(130deg)}}@keyframes left-spin{0%{-webkit-transform:rotate(130deg);transform:rotate(130deg)}50%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(130deg);transform:rotate(130deg)}}@-webkit-keyframes right-spin{0%{-webkit-transform:rotate(-130deg)}50%{-webkit-transform:rotate(5deg)}to{-webkit-transform:rotate(-130deg)}}@keyframes right-spin{0%{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}50%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}to{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}}#spinnerContainer.cooldown{-webkit-animation:container-rotate 1568ms linear infinite,fade-out .4s cubic-bezier(.4,0,.2,1);animation:container-rotate 1568ms linear infinite,fade-out .4s cubic-bezier(.4,0,.2,1)}@-webkit-keyframes fade-out{0%{opacity:1}to{opacity:0}}@keyframes fade-out{0%{opacity:1}to{opacity:0}}.slider{position:relative;height:400px;width:100%}.slider.fullscreen{height:100%;width:100%;position:absolute;top:0;left:0;right:0;bottom:0}.slider.fullscreen ul.slides{height:100%}.slider.fullscreen ul.indicators{z-index:2;bottom:30px}.slider .slides{background-color:#9e9e9e;margin:0;height:400px}.slider .slides li{opacity:0;position:absolute;top:0;left:0;z-index:1;width:100%;height:inherit;overflow:hidden}.slider .slides li img{height:100%;width:100%;background-size:cover;background-position:50%}.slider .slides li .caption{color:#fff;position:absolute;top:15%;left:15%;width:70%;opacity:0}.slider .slides li .caption p{color:#e0e0e0}.slider .slides li.active{z-index:2}.slider .indicators{position:absolute;text-align:center;left:0;right:0;bottom:0;margin:0}.slider .indicators .indicator-item{display:inline-block;position:relative;cursor:pointer;height:16px;width:16px;margin:0 12px;background-color:#e0e0e0;transition:background-color .3s;border-radius:50%}.slider .indicators .indicator-item.active{background-color:#4caf50}.carousel{overflow:hidden;position:relative;width:100%;height:400px;-webkit-perspective:500px;perspective:500px;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform-origin:0 50%;transform-origin:0 50%}.carousel.carousel-slider{top:0;left:0;height:0}.carousel.carousel-slider .carousel-fixed-item{position:absolute;left:0;right:0;bottom:20px;z-index:1}.carousel.carousel-slider .carousel-fixed-item.with-indicators{bottom:68px}.carousel.carousel-slider .carousel-item{width:100%;height:100%;min-height:400px;position:absolute;top:0;left:0}.carousel.carousel-slider .carousel-item h2{font-size:24px;font-weight:500;line-height:32px}.carousel.carousel-slider .carousel-item p{font-size:15px}.carousel .carousel-item{display:none;width:200px;height:200px;position:absolute;top:0;left:0}.carousel .carousel-item>img{width:100%}.carousel .indicators{position:absolute;text-align:center;left:0;right:0;bottom:0;margin:0}.carousel .indicators .indicator-item{display:inline-block;position:relative;cursor:pointer;height:8px;width:8px;margin:24px 4px;background-color:hsla(0,0%,100%,.5);transition:background-color .3s;border-radius:50%}.carousel .indicators .indicator-item.active{background-color:#fff}.carousel .carousel-item:not(.active) .materialboxed,.carousel.scrolling .carousel-item .materialboxed{pointer-events:none}.tap-target-wrapper{width:800px;height:800px;position:fixed;z-index:1000;visibility:hidden;transition:visibility 0s .3s}.tap-target-wrapper.open{visibility:visible;transition:visibility 0s}.tap-target-wrapper.open .tap-target{opacity:.95;transition:opacity .3s ease-in-out,-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out,opacity .3s ease-in-out;transition:transform .3s ease-in-out,opacity .3s ease-in-out,-webkit-transform .3s ease-in-out}.tap-target-wrapper.open .tap-target,.tap-target-wrapper.open .tap-target-wave:before{-webkit-transform:scale(1);transform:scale(1)}.tap-target-wrapper.open .tap-target-wave:after{visibility:visible;-webkit-animation:pulse-animation 1s cubic-bezier(.24,0,.38,1) infinite;animation:pulse-animation 1s cubic-bezier(.24,0,.38,1) infinite;transition:opacity .3s,visibility 0s 1s,-webkit-transform .3s;transition:opacity .3s,transform .3s,visibility 0s 1s;transition:opacity .3s,transform .3s,visibility 0s 1s,-webkit-transform .3s}.tap-target{position:absolute;font-size:1rem;border-radius:50%;background-color:#ee6e73;box-shadow:0 20px 20px 0 rgba(0,0,0,.14),0 10px 50px 0 rgba(0,0,0,.12),0 30px 10px -20px rgba(0,0,0,.2);width:100%;height:100%;opacity:0;-webkit-transform:scale(0);transform:scale(0);transition:opacity .3s ease-in-out,-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out,opacity .3s ease-in-out;transition:transform .3s ease-in-out,opacity .3s ease-in-out,-webkit-transform .3s ease-in-out}.tap-target-content{position:relative;display:table-cell}.tap-target-wave{position:absolute;border-radius:50%;z-index:10001}.tap-target-wave:after,.tap-target-wave:before{content:"";display:block;position:absolute;width:100%;height:100%;border-radius:50%;background-color:#fff}.tap-target-wave:before{-webkit-transform:scale(0);transform:scale(0);transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s}.tap-target-wave:after{visibility:hidden;transition:opacity .3s,visibility 0s,-webkit-transform .3s;transition:opacity .3s,transform .3s,visibility 0s;transition:opacity .3s,transform .3s,visibility 0s,-webkit-transform .3s;z-index:-1}.tap-target-origin{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);z-index:10002;position:absolute!important}.tap-target-origin:not(.btn):not(.btn-large),.tap-target-origin:not(.btn):not(.btn-large):hover{background:none}@media only screen and (max-width:600px){.tap-target,.tap-target-wrapper{width:600px;height:600px}}.pulse{overflow:initial;position:relative}.pulse:before{content:"";display:block;position:absolute;width:100%;height:100%;top:0;left:0;background-color:inherit;border-radius:inherit;transition:opacity .3s,-webkit-transform .3s;transition:opacity .3s,transform .3s;transition:opacity .3s,transform .3s,-webkit-transform .3s;-webkit-animation:pulse-animation 1s cubic-bezier(.24,0,.38,1) infinite;animation:pulse-animation 1s cubic-bezier(.24,0,.38,1) infinite;z-index:-1}@-webkit-keyframes pulse-animation{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}50%{opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}to{opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}@keyframes pulse-animation{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}50%{opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}to{opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}.picker{font-size:16px;text-align:left;line-height:1.2;color:#000;position:absolute;z-index:10000;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.picker__input{cursor:default}.picker__input.picker__input--active{border-color:#0089ec}.picker__holder{width:100%;overflow-y:auto;-webkit-overflow-scrolling:touch}.picker__frame,.picker__holder{bottom:0;left:0;right:0;top:100%}.picker__holder{position:fixed;transition:background .15s ease-out,top 0s .15s;-webkit-backface-visibility:hidden}.picker__frame{position:absolute;min-width:256px;width:300px;max-height:350px;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);-moz-opacity:0;opacity:0;transition:all .15s ease-out}@media (min-height:28.875em){.picker__frame{overflow:visible;top:auto;bottom:-100%;max-height:80%}}@media (min-height:40.125em){.picker__frame{margin-bottom:7.5%}}.picker__wrap{display:table;width:100%;height:100%}@media (min-height:28.875em){.picker__wrap{display:block}}.picker__box{background:#fff;display:table-cell;vertical-align:middle}@media (min-height:28.875em){.picker__box{display:block;border:1px solid #777;border-top-color:#898989;border-bottom-width:0;border-radius:5px 5px 0 0;box-shadow:0 12px 36px 16px rgba(0,0,0,.24)}}.picker--opened .picker__holder{top:0;background:transparent;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";zoom:1;background:rgba(0,0,0,.32);transition:background .15s ease-out}.picker--opened .picker__frame{top:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);-moz-opacity:1;opacity:1}@media (min-height:35.875em){.picker--opened .picker__frame{top:10%;bottom:auto}}.picker__input.picker__input--active{border-color:#e3f2fd}.picker__frame{margin:0 auto;max-width:325px}@media (min-height:38.875em){.picker--opened .picker__frame{top:10%;bottom:auto}}.picker__box{padding:0 1em}.picker__header{text-align:center;position:relative;margin-top:.75em}.picker__month,.picker__year{display:inline-block;margin-left:.25em;margin-right:.25em}.picker__select--month,.picker__select--year{height:2em;padding:0;margin-left:.25em;margin-right:.25em}.picker__select--month.browser-default{display:inline;background-color:#fff;width:40%}.picker__select--year.browser-default{display:inline;background-color:#fff;width:26%}.picker__select--month:focus,.picker__select--year:focus{border-color:rgba(0,0,0,.05)}.picker__nav--next,.picker__nav--prev{position:absolute;padding:.5em 1.25em;width:1em;height:1em;box-sizing:content-box;top:-.25em}.picker__nav--prev{left:-1em;padding-right:1.25em}.picker__nav--next{right:-1em;padding-left:1.25em}.picker__nav--disabled,.picker__nav--disabled:before,.picker__nav--disabled:before:hover,.picker__nav--disabled:hover{cursor:default;background:none;border-right-color:#f5f5f5;border-left-color:#f5f5f5}.picker__table{border-collapse:collapse;border-spacing:0;table-layout:fixed;font-size:1rem;width:100%;margin-top:.75em}.picker__table,.picker__table td,.picker__table th{text-align:center}.picker__table td{margin:0;padding:0}.picker__weekday{width:14.285714286%;font-size:.75em;padding-bottom:.25em;color:#999;font-weight:500}@media (min-height:33.875em){.picker__weekday{padding-bottom:.5em}}.picker__day--today{position:relative;color:#595959;letter-spacing:-.3;padding:.75rem 0;font-weight:400;border:1px solid transparent}.picker__day--disabled:before{border-top-color:#aaa}.picker__day--infocus:hover{cursor:pointer;color:#000;font-weight:500}.picker__day--outfocus{display:none;padding:.75rem 0;color:#fff}.picker__day--outfocus:hover{cursor:pointer;color:#ddd;font-weight:500}.picker--focused .picker__day--highlighted,.picker__day--highlighted:hover{cursor:pointer}.picker--focused .picker__day--selected,.picker__day--selected,.picker__day--selected:hover{-webkit-transform:scale(.75);transform:scale(.75);background:#0089ec}.picker--focused .picker__day--disabled,.picker__day--disabled,.picker__day--disabled:hover{background:#f5f5f5;border-color:#f5f5f5;color:#ddd;cursor:default}.picker__day--highlighted.picker__day--disabled,.picker__day--highlighted.picker__day--disabled:hover{background:#bbb}.picker__footer{text-align:center;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.picker__button--clear,.picker__button--close,.picker__button--today{border:1px solid #fff;background:#fff;font-size:.8em;padding:.66em 0;font-weight:700;width:33%;display:inline-block;vertical-align:bottom}.picker__button--clear:hover,.picker__button--close:hover,.picker__button--today:hover{cursor:pointer;color:#000;background:#b1dcfb;border-bottom-color:#b1dcfb}.picker__button--clear:focus,.picker__button--close:focus,.picker__button--today:focus{background:#b1dcfb;border-color:rgba(0,0,0,.05);outline:none}.picker__button--clear:before,.picker__button--close:before,.picker__button--today:before{position:relative;display:inline-block;height:0}.picker__button--clear:before,.picker__button--today:before{content:" ";margin-right:.45em}.picker__button--today:before{top:-.05em;width:0;border-top:.66em solid #0059bc;border-left:.66em solid transparent}.picker__button--clear:before{top:-.25em;width:.66em;border-top:3px solid #e20}.picker__button--close:before{content:"\D7";top:-.1em;vertical-align:top;font-size:1.1em;margin-right:.35em;color:#777}.picker__button--today[disabled],.picker__button--today[disabled]:hover{background:#f5f5f5;border-color:#f5f5f5;color:#ddd;cursor:default}.picker__button--today[disabled]:before{border-top-color:#aaa}.picker__box{border-radius:2px;overflow:hidden}.picker__date-display{text-align:center;background-color:#26a69a;color:#fff;padding-bottom:15px;font-weight:300}.picker__nav--next:hover,.picker__nav--prev:hover{cursor:pointer;color:#000;background:#a1ded8}.picker__weekday-display{background-color:#1f897f;padding:10px;font-weight:200;letter-spacing:.5;font-size:1rem;margin-bottom:15px}.picker__month-display{text-transform:uppercase;font-size:2rem}.picker__day-display{font-size:4.5rem;font-weight:400}.picker__year-display{font-size:1.8rem;color:hsla(0,0%,100%,.4)}.picker__box{padding:0}.picker__calendar-container{padding:0 1rem}.picker__calendar-container thead{border:none}.picker__table{margin-top:0;margin-bottom:.5em}.picker__day--infocus{color:#595959;letter-spacing:-.3;padding:.75rem 0;font-weight:400;border:1px solid transparent}.picker__day.picker__day--today{color:#26a69a}.picker__day.picker__day--today.picker__day--selected{color:#fff}.picker__weekday{font-size:.9rem}.picker--focused .picker__day--selected,.picker__day--selected,.picker__day--selected:hover{border-radius:50%;-webkit-transform:scale(.9);transform:scale(.9);background-color:#26a69a;color:#fff}.picker--focused .picker__day--selected.picker__day--outfocus,.picker__day--selected.picker__day--outfocus,.picker__day--selected:hover.picker__day--outfocus{background-color:#a1ded8}.picker__footer{text-align:right;padding:5px 10px}.picker__close,.picker__today{font-size:1.1rem;padding:0 1rem;color:#26a69a}.picker__nav--next:before,.picker__nav--prev:before{content:" ";border-top:.5em solid transparent;border-bottom:.5em solid transparent;border-right:.75em solid #676767;width:0;height:0;display:block;margin:0 auto}.picker__nav--next:before{border-right:0;border-left:.75em solid #676767}button.picker__clear:focus,button.picker__close:focus,button.picker__today:focus{background-color:#a1ded8}.picker__list{list-style:none;padding:.75em 0 4.2em;margin:0}.picker__list-item{border-bottom:1px solid #ddd;border-top:1px solid #ddd;margin-bottom:-1px;position:relative;background:#fff;padding:.75em 1.25em}@media (min-height:46.75em){.picker__list-item{padding:.5em 1em}}.picker__list-item:hover{cursor:pointer;color:#000;background:#b1dcfb}.picker__list-item--highlighted,.picker__list-item:hover{border-color:#0089ec;z-index:10}.picker--focused .picker__list-item--highlighted,.picker__list-item--highlighted:hover{cursor:pointer;color:#000;background:#b1dcfb}.picker--focused .picker__list-item--selected,.picker__list-item--selected,.picker__list-item--selected:hover{background:#0089ec;color:#fff;z-index:10}.picker--focused .picker__list-item--disabled,.picker__list-item--disabled,.picker__list-item--disabled:hover{background:#f5f5f5;border-color:#f5f5f5;color:#ddd;cursor:default;border-color:#ddd;z-index:auto}.picker--time .picker__button--clear{display:block;width:80%;margin:1em auto 0;padding:1em 1.25em;background:none;border:0;font-weight:500;font-size:.67em;text-align:center;text-transform:uppercase;color:#666}.picker--time .picker__button--clear:focus,.picker--time .picker__button--clear:hover{color:#000;background:#b1dcfb;background:#e20;border-color:#e20;cursor:pointer;color:#fff;outline:none}.picker--time .picker__button--clear:before{top:-.25em;color:#666;font-size:1.25em;font-weight:700}.picker--time .picker__button--clear:focus:before,.picker--time .picker__button--clear:hover:before{color:#fff}.picker--time .picker__frame{min-width:256px;max-width:320px}.picker--time .picker__box{font-size:1em;background:#f2f2f2;padding:0}@media (min-height:40.125em){.picker--time .picker__box{margin-bottom:5em}}.annotator-filter *,.annotator-notice,.annotator-widget *{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-weight:400;text-align:left;margin:0;padding:0;background:none;-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;-moz-box-shadow:none;-webkit-box-shadow:none;-o-box-shadow:none;box-shadow:none;color:#909090}.annotator-adder{background-image:url(img/annotator-icon-sprite.png);background-repeat:no-repeat}.annotator-editor a:after,.annotator-filter .annotator-filter-navigation button:after,.annotator-filter .annotator-filter-property .annotator-filter-clear,.annotator-resize,.annotator-viewer .annotator-controls a,.annotator-viewer .annotator-controls button,.annotator-widget:after{background-image:url(img/annotator-glyph-sprite.png);background-repeat:no-repeat}.annotator-hl{background:#ffff0a;background:rgba(255,255,10,.3);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#4DFFFF0A, endColorstr=#4DFFFF0A)"}.annotator-hl-temporary{background:#007cff;background:rgba(0,124,255,.3);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#4D007CFF, endColorstr=#4D007CFF)"}.annotator-wrapper{position:relative}.annotator-adder,.annotator-notice,.annotator-outer{z-index:1020}.annotator-filter{z-index:1010}.annotator-adder,.annotator-notice,.annotator-outer,.annotator-widget{position:absolute;font-size:10px;line-height:1}.annotator-hide{display:none;visibility:hidden}.annotator-adder{margin-top:-48px;margin-left:-24px;width:48px;height:48px;background-position:0 0}.annotator-adder:hover{background-position:top}.annotator-adder:active{background-position:100%}.annotator-adder button{display:block;width:36px;height:41px;margin:0 auto;border:none;background:none;text-indent:-999em;cursor:pointer}.annotator-outer{width:0;height:0}.annotator-widget{margin:0;padding:0;bottom:15px;left:-18px;min-width:265px;background-color:#fbfbfb;background-color:hsla(0,0%,98%,.98);border:1px solid #7a7a7a;border:1px solid hsla(0,0%,48%,.6);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.2);-moz-box-shadow:0 5px 15px rgba(0,0,0,.2);-o-box-shadow:0 5px 15px rgba(0,0,0,.2);box-shadow:0 5px 15px rgba(0,0,0,.2)}.annotator-invert-x .annotator-widget{left:auto;right:-18px}.annotator-invert-y .annotator-widget{bottom:auto;top:8px}.annotator-widget strong{font-weight:700}.annotator-widget .annotator-item,.annotator-widget .annotator-listing{padding:0;margin:0;list-style:none}.annotator-widget:after{content:"";display:block;width:18px;height:10px;background-position:0 0;position:absolute;bottom:-10px;left:8px}.annotator-invert-x .annotator-widget:after{left:auto;right:8px}.annotator-invert-y .annotator-widget:after{background-position:0 -15px;bottom:auto;top:-9px}.annotator-editor .annotator-item input,.annotator-editor .annotator-item textarea,.annotator-widget .annotator-item{position:relative;font-size:12px}.annotator-viewer .annotator-item{border-top:2px solid #7a7a7a;border-top:2px solid hsla(0,0%,48%,.2)}.annotator-widget .annotator-item:first-child{border-top:none}.annotator-editor .annotator-item,.annotator-viewer div{border-top:1px solid #858585;border-top:1px solid hsla(0,0%,52%,.11)}.annotator-viewer div{padding:6px}.annotator-viewer .annotator-item ol,.annotator-viewer .annotator-item ul{padding:4px 16px}.annotator-editor .annotator-item:first-child textarea,.annotator-viewer div:first-of-type{padding-top:12px;padding-bottom:12px;color:#3c3c3c;font-size:13px;font-style:italic;line-height:1.3;border-top:none}.annotator-viewer .annotator-controls{position:relative;top:5px;right:5px;padding-left:5px;opacity:0;-webkit-transition:opacity .2s ease-in;-moz-transition:opacity .2s ease-in;-o-transition:opacity .2s ease-in;transition:opacity .2s ease-in;float:right}.annotator-viewer li .annotator-controls.annotator-visible,.annotator-viewer li:hover .annotator-controls{opacity:1}.annotator-viewer .annotator-controls a,.annotator-viewer .annotator-controls button{cursor:pointer;display:inline-block;width:13px;height:13px;margin-left:2px;border:none;opacity:.2;text-indent:-900em;background-color:transparent;outline:none}.annotator-viewer .annotator-controls a:focus,.annotator-viewer .annotator-controls a:hover,.annotator-viewer .annotator-controls button:focus,.annotator-viewer .annotator-controls button:hover{opacity:.9}.annotator-viewer .annotator-controls a:active,.annotator-viewer .annotator-controls button:active{opacity:1}.annotator-viewer .annotator-controls button[disabled]{display:none}.annotator-viewer .annotator-controls .annotator-edit{background-position:0 -60px}.annotator-viewer .annotator-controls .annotator-delete{background-position:0 -75px}.annotator-viewer .annotator-controls .annotator-link{background-position:0 -270px}.annotator-editor .annotator-item{position:relative}.annotator-editor .annotator-item label{top:0;display:inline;cursor:pointer;font-size:12px}.annotator-editor .annotator-item input,.annotator-editor .annotator-item textarea{display:block;min-width:100%;padding:10px 8px;border:none;margin:0;color:#3c3c3c;background:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;resize:none}.annotator-editor .annotator-item textarea::-webkit-scrollbar{height:8px;width:8px}.annotator-editor .annotator-item textarea::-webkit-scrollbar-track-piece{margin:13px 0 3px;background-color:#e5e5e5;-webkit-border-radius:4px}.annotator-editor .annotator-item textarea::-webkit-scrollbar-thumb:vertical{height:25px;background-color:#ccc;-webkit-border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1)}.annotator-editor .annotator-item textarea::-webkit-scrollbar-thumb:horizontal{width:25px;background-color:#ccc;-webkit-border-radius:4px}.annotator-editor .annotator-item:first-child textarea{min-height:5.5em;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-o-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.annotator-editor .annotator-item input:focus,.annotator-editor .annotator-item textarea:focus{background-color:#f3f3f3;outline:none}.annotator-editor .annotator-item input[type=checkbox],.annotator-editor .annotator-item input[type=radio]{width:auto;min-width:0;padding:0;display:inline;margin:0 4px 0 0;cursor:pointer}.annotator-editor .annotator-checkbox{padding:8px 6px}.annotator-editor .annotator-controls,.annotator-filter,.annotator-filter .annotator-filter-navigation button{text-align:right;padding:3px;border-top:1px solid #d4d4d4;background-color:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),color-stop(.6,#dcdcdc),to(#d2d2d2));background-image:-moz-linear-gradient(to bottom,#f5f5f5,#dcdcdc 60%,#d2d2d2);background-image:-webkit-linear-gradient(180deg,#f5f5f5,#dcdcdc 60%,#d2d2d2);background-image:linear-gradient(180deg,#f5f5f5,#dcdcdc 60%,#d2d2d2);-webkit-box-shadow:inset 1px 0 0 hsla(0,0%,100%,.7),inset -1px 0 0 hsla(0,0%,100%,.7),inset 0 1px 0 hsla(0,0%,100%,.7);-moz-box-shadow:inset 1px 0 0 hsla(0,0%,100%,.7),inset -1px 0 0 hsla(0,0%,100%,.7),inset 0 1px 0 hsla(0,0%,100%,.7);-o-box-shadow:inset 1px 0 0 hsla(0,0%,100%,.7),inset -1px 0 0 hsla(0,0%,100%,.7),inset 0 1px 0 hsla(0,0%,100%,.7);box-shadow:inset 1px 0 0 hsla(0,0%,100%,.7),inset -1px 0 0 hsla(0,0%,100%,.7),inset 0 1px 0 hsla(0,0%,100%,.7);-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;-o-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px}.annotator-editor.annotator-invert-y .annotator-controls{border-top:none;border-bottom:1px solid #b4b4b4;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-o-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.annotator-editor a,.annotator-filter .annotator-filter-property label{position:relative;display:inline-block;padding:0 6px 0 22px;color:#363636;text-shadow:0 1px 0 hsla(0,0%,100%,.75);text-decoration:none;line-height:24px;font-size:12px;font-weight:700;border:1px solid #a2a2a2;background-color:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),color-stop(.5,#d2d2d2),color-stop(.5,#bebebe),to(#d2d2d2));background-image:-moz-linear-gradient(to bottom,#f5f5f5,#d2d2d2 50%,#bebebe 50%,#d2d2d2);background-image:-webkit-linear-gradient(180deg,#f5f5f5,#d2d2d2 50%,#bebebe 0,#d2d2d2);background-image:linear-gradient(180deg,#f5f5f5,#d2d2d2 50%,#bebebe 0,#d2d2d2);-webkit-box-shadow:inset 0 0 5px hsla(0,0%,100%,.2),inset 0 0 1px hsla(0,0%,100%,.8);-moz-box-shadow:inset 0 0 5px hsla(0,0%,100%,.2),inset 0 0 1px hsla(0,0%,100%,.8);-o-box-shadow:inset 0 0 5px hsla(0,0%,100%,.2),inset 0 0 1px hsla(0,0%,100%,.8);box-shadow:inset 0 0 5px hsla(0,0%,100%,.2),inset 0 0 1px hsla(0,0%,100%,.8);-webkit-border-radius:5px;-moz-border-radius:5px;-o-border-radius:5px;border-radius:5px}.annotator-editor a:after{position:absolute;top:50%;left:5px;display:block;content:"";width:15px;height:15px;margin-top:-7px;background-position:0 -90px}.annotator-editor a.annotator-focus,.annotator-editor a:focus,.annotator-editor a:hover,.annotator-filter .annotator-filter-active label,.annotator-filter .annotator-filter-navigation button:hover{outline:none;border-color:#435aa0;background-color:#3865f9;background-image:-webkit-gradient(linear,left top,left bottom,from(#7691fb),color-stop(.5,#5075fb),color-stop(.5,#3865f9),to(#3665fa));background-image:-moz-linear-gradient(to bottom,#7691fb,#5075fb 50%,#3865f9 50%,#3665fa);background-image:-webkit-linear-gradient(180deg,#7691fb,#5075fb 50%,#3865f9 0,#3665fa);background-image:linear-gradient(180deg,#7691fb,#5075fb 50%,#3865f9 0,#3665fa);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.42)}.annotator-editor a:focus:after,.annotator-editor a:hover:after{margin-top:-8px;background-position:0 -105px}.annotator-editor a:active,.annotator-filter .annotator-filter-navigation button:active{border-color:#700c49;background-color:#d12e8e;background-image:-webkit-gradient(linear,left top,left bottom,from(#fc7cca),color-stop(.5,#e85db2),color-stop(.5,#d12e8e),to(#ff009c));background-image:-moz-linear-gradient(to bottom,#fc7cca,#e85db2 50%,#d12e8e 50%,#ff009c);background-image:-webkit-linear-gradient(180deg,#fc7cca,#e85db2 50%,#d12e8e 0,#ff009c);background-image:linear-gradient(180deg,#fc7cca,#e85db2 50%,#d12e8e 0,#ff009c)}.annotator-editor a.annotator-save:after{background-position:0 -120px}.annotator-editor a.annotator-save.annotator-focus:after,.annotator-editor a.annotator-save:focus:after,.annotator-editor a.annotator-save:hover:after{margin-top:-8px;background-position:0 -135px}.annotator-editor .annotator-widget:after{background-position:0 -30px}.annotator-editor.annotator-invert-y .annotator-widget .annotator-controls{background-color:#f2f2f2}.annotator-editor.annotator-invert-y .annotator-widget:after{background-position:0 -45px;height:11px}.annotator-resize{position:absolute;top:0;right:0;width:12px;height:12px;background-position:2px -150px}.annotator-invert-x .annotator-resize{right:auto;left:0;background-position:0 -195px}.annotator-invert-y .annotator-resize{top:auto;bottom:0;background-position:2px -165px}.annotator-invert-y.annotator-invert-x .annotator-resize{background-position:0 -180px}.annotator-notice{color:#fff;position:fixed;top:-54px;left:0;width:100%;font-size:14px;line-height:50px;text-align:center;background:#000;background:rgba(0,0,0,.9);border-bottom:4px solid #d4d4d4;-webkit-transition:top .4s ease-out;-moz-transition:top .4s ease-out;-o-transition:top .4s ease-out;transition:top .4s ease-out}.annotator-notice-success{border-color:#3665f9}.annotator-notice-error{border-color:#ff7e00}.annotator-notice p{margin:0}.annotator-notice a{color:#fff}.annotator-notice-show{top:0}.annotator-tags{margin-bottom:-2px}.annotator-tags .annotator-tag{display:inline-block;padding:0 8px;margin-bottom:2px;line-height:1.6;font-weight:700;background-color:#e6e6e6;-webkit-border-radius:8px;-moz-border-radius:8px;-o-border-radius:8px;border-radius:8px}.annotator-filter{position:fixed;top:0;right:0;left:0;text-align:left;line-height:0;border:none;border-bottom:1px solid #878787;padding-left:10px;padding-right:10px;-webkit-border-radius:0;-moz-border-radius:0;-o-border-radius:0;border-radius:0;-webkit-box-shadow:inset 0 -1px 0 hsla(0,0%,100%,.3);-moz-box-shadow:inset 0 -1px 0 hsla(0,0%,100%,.3);-o-box-shadow:inset 0 -1px 0 hsla(0,0%,100%,.3);box-shadow:inset 0 -1px 0 hsla(0,0%,100%,.3)}.annotator-filter strong{font-size:12px;font-weight:700;color:#3c3c3c;text-shadow:0 1px 0 hsla(0,0%,100%,.7);position:relative;top:-9px}.annotator-filter .annotator-filter-navigation,.annotator-filter .annotator-filter-property{position:relative;display:inline-block;overflow:hidden;line-height:10px;padding:2px 0;margin-right:8px}.annotator-filter .annotator-filter-navigation button,.annotator-filter .annotator-filter-property label{text-align:left;display:block;float:left;line-height:20px;-webkit-border-radius:10px 0 0 10px;-moz-border-radius:10px 0 0 10px;-o-border-radius:10px 0 0 10px;border-radius:10px 0 0 10px}.annotator-filter .annotator-filter-property label{padding-left:8px}.annotator-filter .annotator-filter-property input{display:block;float:right;-webkit-appearance:none;background-color:#fff;border:1px solid #878787;border-left:none;padding:2px 4px;line-height:16px;min-height:16px;font-size:12px;width:150px;color:#333;background-color:#f8f8f8;-webkit-border-radius:0 10px 10px 0;-moz-border-radius:0 10px 10px 0;-o-border-radius:0 10px 10px 0;border-radius:0 10px 10px 0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.2);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.2);-o-box-shadow:inset 0 1px 1px rgba(0,0,0,.2);box-shadow:inset 0 1px 1px rgba(0,0,0,.2)}.annotator-filter .annotator-filter-property input:focus{outline:none;background-color:#fff}.annotator-filter .annotator-filter-clear{position:absolute;right:3px;top:6px;border:none;text-indent:-900em;width:15px;height:15px;background-position:0 -90px;opacity:.4}.annotator-filter .annotator-filter-clear:focus,.annotator-filter .annotator-filter-clear:hover{opacity:.8}.annotator-filter .annotator-filter-clear:active{opacity:1}.annotator-filter .annotator-filter-navigation button{border:1px solid #a2a2a2;padding:0;text-indent:-900px;width:20px;min-height:22px;-webkit-box-shadow:inset 0 0 5px hsla(0,0%,100%,.2),inset 0 0 1px hsla(0,0%,100%,.8);-moz-box-shadow:inset 0 0 5px hsla(0,0%,100%,.2),inset 0 0 1px hsla(0,0%,100%,.8);-o-box-shadow:inset 0 0 5px hsla(0,0%,100%,.2),inset 0 0 1px hsla(0,0%,100%,.8);box-shadow:inset 0 0 5px hsla(0,0%,100%,.2),inset 0 0 1px hsla(0,0%,100%,.8)}.annotator-filter .annotator-filter-navigation button,.annotator-filter .annotator-filter-navigation button:focus,.annotator-filter .annotator-filter-navigation button:hover{color:transparent}.annotator-filter .annotator-filter-navigation button:after{position:absolute;top:8px;left:8px;content:"";display:block;width:9px;height:9px;background-position:0 -210px}.annotator-filter .annotator-filter-navigation button:hover:after{background-position:0 -225px}.annotator-filter .annotator-filter-navigation .annotator-filter-next{-webkit-border-radius:0 10px 10px 0;-moz-border-radius:0 10px 10px 0;-o-border-radius:0 10px 10px 0;border-radius:0 10px 10px 0;border-left:none}.annotator-filter .annotator-filter-navigation .annotator-filter-next:after{left:auto;right:7px;background-position:0 -240px}.annotator-filter .annotator-filter-navigation .annotator-filter-next:hover:after{background-position:0 -255px}.annotator-hl-active{background:#ffff0a;background:rgba(255,255,10,.8);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCFFFF0A, endColorstr=#CCFFFF0A)"}.annotator-hl-filtered{background-color:transparent}@font-face{font-family:Material Icons;font-style:normal;font-weight:400;src:url(fonts/MaterialIcons-Regular.eot);src:local("Material Icons"),local("MaterialIcons-Regular"),url(fonts/MaterialIcons-Regular.woff2) format("woff2"),url(fonts/MaterialIcons-Regular.woff) format("woff"),url(fonts/MaterialIcons-Regular.ttf) format("truetype")}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;font-size:24px;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:"liga"}@font-face{font-family:Lato;font-weight:100;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-hairline.woff2) format("woff2"),url(fonts/lato-hairline.woff) format("woff")}@font-face{font-family:Lato;font-weight:100;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-hairline-italic.woff2) format("woff2"),url(fonts/lato-hairline-italic.woff) format("woff")}@font-face{font-family:Lato;font-weight:200;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-thin.woff2) format("woff2"),url(fonts/lato-thin.woff) format("woff")}@font-face{font-family:Lato;font-weight:200;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-thin-italic.woff2) format("woff2"),url(fonts/lato-thin-italic.woff) format("woff")}@font-face{font-family:Lato;font-weight:300;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-light.woff2) format("woff2"),url(fonts/lato-light.woff) format("woff")}@font-face{font-family:Lato;font-weight:300;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-light-italic.woff2) format("woff2"),url(fonts/lato-light-italic.woff) format("woff")}@font-face{font-family:Lato;font-weight:400;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-normal.woff2) format("woff2"),url(fonts/lato-normal.woff) format("woff")}@font-face{font-family:Lato;font-weight:400;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-normal-italic.woff2) format("woff2"),url(fonts/lato-normal-italic.woff) format("woff")}@font-face{font-family:Lato Medium;font-weight:400;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-medium.woff2) format("woff2"),url(fonts/lato-medium.woff) format("woff")}@font-face{font-family:Lato Medium;font-weight:400;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-medium-italic.woff2) format("woff2"),url(fonts/lato-medium-italic.woff) format("woff")}@font-face{font-family:Lato;font-weight:500;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-semibold.woff2) format("woff2"),url(fonts/lato-semibold.woff) format("woff")}@font-face{font-family:Lato;font-weight:500;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-semibold-italic.woff2) format("woff2"),url(fonts/lato-semibold-italic.woff) format("woff")}@font-face{font-family:Lato;font-weight:600;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-bold.woff2) format("woff2"),url(fonts/lato-bold.woff) format("woff")}@font-face{font-family:Lato;font-weight:600;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-bold-italic.woff2) format("woff2"),url(fonts/lato-bold-italic.woff) format("woff")}@font-face{font-family:Lato;font-weight:800;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-heavy.woff2) format("woff2"),url(fonts/lato-heavy.woff) format("woff")}@font-face{font-family:Lato;font-weight:800;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-heavy-italic.woff2) format("woff2"),url(fonts/lato-heavy-italic.woff) format("woff")}@font-face{font-family:Lato;font-weight:900;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-black.woff2) format("woff2"),url(fonts/lato-black.woff) format("woff")}@font-face{font-family:Lato;font-weight:900;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-black-italic.woff2) format("woff2"),url(fonts/lato-black-italic.woff) format("woff")}.material-icons.md-18{font-size:18px}.material-icons.md-24{font-size:24px}.material-icons.md-36{font-size:36px}.material-icons.md-48{font-size:48px}.material-icons.md-dark{color:rgba(0,0,0,.54)}.material-icons.md-dark.md-inactive{color:rgba(0,0,0,.26)}.material-icons.md-light{color:#fff}.material-icons.md-light.md-inactive{color:hsla(0,0%,100%,.3)}.hljs{display:block;overflow-x:auto;padding:.5em;color:#383a42;background:#fafafa}.hljs-comment,.hljs-quote{color:#a0a1a7;font-style:italic}.hljs-doctag,.hljs-formula,.hljs-keyword{color:#a626a4}.hljs-deletion,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-subst{color:#e45649}.hljs-literal{color:#0184bb}.hljs-addition,.hljs-attribute,.hljs-meta-string,.hljs-regexp,.hljs-string{color:#50a14f}.hljs-built_in,.hljs-class .hljs-title{color:#c18401}.hljs-attr,.hljs-number,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-pseudo,.hljs-template-variable,.hljs-type,.hljs-variable{color:#986801}.hljs-bullet,.hljs-link,.hljs-meta,.hljs-selector-id,.hljs-symbol,.hljs-title{color:#4078f2}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}.hljs-link{text-decoration:underline}#article{font-size:20px;margin:0 auto;max-width:45em}#article article{color:#424242;font-size:18px;line-height:1.7em;overflow-wrap:break-word}#article article h1,#article article h2,#article article h3,#article article h4,#article article h5,#article article h6{color:#212121}#article article h1 strong,#article article h2 strong,#article article h3 strong,#article article h4 strong,#article article h5 strong,#article article h6 strong{font-weight:500}#article article h6{font-size:1.2rem}#article article h5{font-size:1.6rem}#article article h4{font-size:1.9rem}#article article h3{font-size:2.2rem}#article article h2{font-size:2.5rem}#article article h1{font-size:2.7rem}#article article a{border-bottom:1px dotted #03a9f4;text-decoration:none}#article article a:hover{border-bottom-style:solid}#article article ul{padding-left:30px}#article article ul,#article article ul li{list-style-type:disc}#article article blockquote{font-style:italic}#article article strong{font-weight:700}#article figure,#article img{max-width:100%;height:auto}#article pre{box-sizing:border-box;margin:0 0 1.75em;border:1px solid #e3f2fd;width:100%;padding:10px;font-family:monospace;font-size:.8em;white-space:pre;overflow:auto;background:#f5f5f5;border-radius:3px}#article>header>h1{font-size:2em;margin:2.1rem 0 .68rem}#article aside .tools{display:flex;flex-flow:row wrap}#article aside .tools .stats{font-size:.8em;margin:8px 5px 5px}#article aside .tools .stats li{display:inline-flex;vertical-align:middle;margin:3px 5px}#article aside .tools .stats li i.material-icons{color:#3e3e3e;margin-right:3px}#article aside .tools .stats a{color:#000;text-decoration:none}#article aside .tools .tags{float:right;margin:5px 15px 10px}#article aside .chip{background-color:rgba(0,151,167,.85);padding:0 15px 0 10px;margin:auto 2px;border-radius:6px}#article aside .chip a,#article aside .chip i{color:#fff}#article aside .chip i.material-icons{float:right;font-size:20px;line-height:32px;padding-left:8px}.reader-mode{width:70px!important;transition:width .2s ease}.reader-mode .collapsible-body{height:0;overflow:hidden}.reader-mode span{opacity:0;transition:opacity .2s ease}.reader-mode:hover{width:260px!important}.reader-mode:hover .collapsible-body{height:auto}.reader-mode:hover .collapsible-body li a i.material-icons{margin:auto 5px auto -8px}.reader-mode:hover span{opacity:1}.progress{position:fixed;top:0;width:100%;height:3px;margin:0;z-index:9999}main #content{padding:0 .5rem}main ul.row{margin:.4rem 0 0;padding:0 .75rem}.data .card .card-body{height:19em;overflow:hidden}.card .card-content .card-title,.card .card-reveal .card-title{line-height:22.8px;max-height:80px;font-size:19px;font-family:roberto,Helvetica Neue,Helvetica,Arial,sans-serif}.card .card-stacked .card-content .card-title{display:inline-block}.card .card-content .activator,.card .card-reveal .activator{cursor:pointer;font-family:Material Icons}.card .card-content i.right,.card .card-reveal i.right{margin-left:0}.card .card-content .original{line-height:24px;font-size:15px}.card .card-entry-labels{position:absolute;top:10px;z-index:90;max-width:50%}.card .card-entry-labels-hidden{margin:2.5px auto}.card .card-entry-labels-hidden li{display:inline-block;background-color:rgba(0,151,167,.85);margin:0 5px;padding:5px 12px;border-radius:3px;color:#fff;max-height:2em;max-width:calc(100% - 15px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.card .card-content .estimatedTime{margin-bottom:10px}.card .card-action{padding:10px 5px 10px 15px}.card .card-action ul.links{margin:0;font-size:24px;line-height:24px}.card .card-action a{color:#fff;margin:0}.card .card-action a:hover{color:#fff}.card .card-action ul.tools li a.tool{margin-right:5px!important}.card .card-action .reading-time{display:inline-flex;vertical-align:middle}.card .card-action .reading-time span{margin-right:5px}.card .card-image{height:10em}.card .card-fullimage{height:13.5em}.card .card-fullimage .preview,.card .card-image .preview{height:100%;background:no-repeat 50%/cover;background-color:#efefef;display:block}.card .card-fullimage .preview--default,.card .card-image .preview--default{background-size:contain}.card.sw{max-width:370px;margin-left:auto;margin-right:auto}a.original:not(.waves-effect){text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:block}.card-entry-labels li,.card-tag-labels li{margin:10px 10px 10px auto;padding:5px 12px 5px 16px!important;background-color:rgba(0,151,167,.85);border-radius:3px;color:#fff;cursor:default}.card-entry-labels li{text-overflow:ellipsis;white-space:nowrap;border-radius:0 3px 3px 0;overflow:hidden}.card-tag-labels li{display:flex;justify-content:space-between}#list .chip a,.card-entry-labels-hidden a,.card-entry-labels a,.card-entry-tags a,.card-tag-labels a{text-decoration:none;font-weight:400;color:#fff}.card-tag-labels a{height:100%;align-items:center}.card-tag-form,.card-tag-link{display:flex;min-width:100px;flex-grow:1}.card-tag-form input{margin-bottom:0;height:2rem}.card-tag-rss{display:flex}.card-tag-labels{display:flex;flex-wrap:wrap}.card-tag-labels li{margin:10px;flex-basis:19%;flex-grow:1;align-items:center}.card-stacked{display:flex;flex-flow:row wrap}.card-stacked:hover ul.tools-list{display:inline;text-align:right}.card-stacked .preview{max-width:100px;height:auto;margin-right:10px;flex:1}.card-stacked .preview img{max-width:100%;max-height:100%}.card-stacked div.metadata .chip{background-color:rgba(0,151,167,.85);padding:0 15px 0 10px;margin:auto 2px;border-radius:6px}.card-stacked div.metadata .chip a,.card-stacked div.metadata .chip i{color:#fff}.card-stacked div.metadata .chip i.material-icons{float:right;font-size:20px;line-height:32px;padding-left:8px}.card-stacked div.card-content{flex:4}.card-stacked ul.tools-list{flex:1;display:none;flex-basis:5em;align-self:flex-end;float:right;max-width:6em}.card-stacked .tags{display:inline-block}#content .collection .collection-item{min-height:65px;height:auto}.quickstart .card .card-action a,.quickstart .card .card-action a:hover{color:#fff!important}.settings .div_tabs{padding-bottom:15px}@media only screen and (min-width:992px){.card-tag-labels li{max-width:50%}}.collection{margin:15px 15px 0}.collection .collection-item{padding:7px;height:65px}.results{display:flex;padding:1rem 1rem 0;flex-wrap:wrap;justify-content:space-between}.results .nb-results{display:inline-flex}.results a{color:#444}.pagination ul{display:flex;margin:0;flex-wrap:wrap;justify-content:space-around}.pagination ul .next.disabled,.pagination ul .prev.disabled{display:none}.pagination li{padding:0}.pagination a,.pagination span{padding:0 10px;height:30px;display:block;line-height:30px}.pagination .disabled{margin-right:10px;margin-left:10px}.pagination li.active span{padding:0 10px;height:30px;display:block;color:#fff}.footer-text{margin:.7rem .5rem}.hidden,.picker__date-display{display:none}footer.page-footer{margin-top:10px;padding-top:0}footer .row{margin-bottom:10px}#filters button{padding:0;width:100%}#filters div.with-checkbox{height:3rem;margin-top:0}body{display:flex;min-height:100vh;flex-direction:column;background:#fafafa}body.login main{padding:0;min-height:100vh}.border-bottom{border-bottom:1px solid #ddd}#content,.valign-wrapper,main{height:100%}.typo-logo{max-width:150px}#main{flex:1 0 auto}#main .logo a{height:100pt}#main .logo img{height:100pt;width:100pt}#main .logo:hover{background:transparent}nav{height:auto;line-height:normal}nav input{color:#aaa}nav ul a:hover{background-color:initial}.nav-panel-item .button-collapse{margin-left:0;margin-right:.5rem;padding:0 .5rem;height:auto;line-height:1;background-color:transparent;border:none}.nav-panel-item{display:flex;padding:.6rem .4rem .6rem .75rem;flex-wrap:wrap;justify-content:space-between;align-items:center}.nav-panel-item .material-icons{height:46px;line-height:46px}.nav-input{display:none}.nav-panel-buttom{display:flex;flex-grow:1;justify-content:flex-end}.nav-panel-item .add,.nav-panel-item .search,.nav-panels .close{color:#444!important}.nav-panels{transition:background .2s ease}.nav-panels .action{margin:0;font-size:2.1rem}.nav-panels .input-field input{display:block;line-height:inherit;height:3rem}.nav-panels .input-field input:focus{background-color:#fff;border:0;box-shadow:none;color:#444}.nav-panel-top{display:flex;align-items:center}.input-field.nav-panel-item label{left:1rem}.input-field.nav-panel-item .close{color:transparent;cursor:pointer;font-size:2rem;transition:color .3s}.input-field.nav-panel-item{display:flex;flex:1;flex-wrap:nowrap;align-items:center}.input-field.nav-panel-add.disabled,.input-field.nav-panel-add.disabled input{background-color:#f5f5f5}.nav-form-button{padding:0;background-color:transparent;border:none}.nav-form-button:focus{background-color:inherit}.nav-form-button,.nav-panel-item .close{margin:0 1%}#button_export,#button_filters{display:none}@media (min-width:993px){.button-collapse{display:none}}.side-nav{width:240px}.side-nav li{padding:0}.side-nav li.logo>a:hover{background:initial}.side-nav a{margin:0}.side-nav.fixed a{font-size:13px;line-height:44px;height:44px}.side-nav .collapsible-header,.side-nav.fixed .collapsible-header{height:45px;line-height:44px;padding:0 20px}.side-nav>li.logo{line-height:0;text-align:center}.bold>a{font-weight:700}span.numberItems{float:right}div.settings div.file-field div,div.settings div.file-field ul{margin-top:40px}div.settings div.file-field div{margin-top:inherit}.input-field label.active{font-size:1rem}nav .input-field input{margin:0;padding-left:.5rem}.tabs{display:flex}.tab{flex:1}@font-face{font-family:icomoon;src:url(fonts/IcoMoon-Free.ttf);font-weight:400;font-style:normal}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;font-size:24px;width:1em;height:1em;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:"liga"}.material-icons .md-18{font-size:18px}.material-icons .md-24{font-size:24px}.material-icons .md-36{font-size:36px}.material-icons .md-48{font-size:48px}.material-icons .md-dark{color:rgba(0,0,0,.54)}.material-icons .md-dark .md-inactive{color:rgba(0,0,0,.26)}.material-icons .md-light{color:#fff}.material-icons .md-light .md-inactive{color:hsla(0,0%,100%,.3)}[class*=" icon-"]:before,[class^=icon-]:before{font-family:icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;background-size:24px;letter-spacing:0;font-feature-settings:"liga"}.icon-eye:before{content:"\E9CE"}.icon-no-eye:before{content:"\E9D1"}.icon-calendar:before{content:"\E953"}.icon-mail:before{content:"\EA86"}.icon-time:before{content:"\E952"}a.icon-image{background-repeat:no-repeat;padding-right:.4em!important;padding-left:0!important;margin-left:25px}a.icon-image:before{content:"";display:block;width:24px;height:24px;float:left;margin:7px 1.5px 0 0}a.icon-image.carrot:before{background:url(themes/_global/img/icons/carrot-icon--black.png) no-repeat 50%/90%}a.icon-image.diaspora:before{background:url(themes/_global/img/icons/diaspora-icon--black.png) no-repeat 50%/80%}a.icon-image.unmark:before{background:url(themes/_global/img/icons/unmark-icon--black.png) no-repeat 50%/80%}a.icon-image.shaarli:before{background:url(themes/_global/img/icons/shaarli.png) no-repeat 50%/80%}a.icon-image.scuttle:before{background:url(themes/_global/img/icons/scuttle.png) no-repeat 50%/80%}.icon-google-plus2:before{content:"\EA89"}.icon-facebook2:before{content:"\EA8D"}.icon-twitter:before{content:"\EA96"}.icon-apple:before{content:"\EABF"}.icon-android:before{content:"\EAC1"}.icon-chrome:before{content:"\EAE5"}.icon-firefox:before{content:"\EAE6"}.icon-link:before{content:"\E9CB"}footer [class*=" icon-"],footer [class^=icon-]{font-size:2em;transition:text-shadow .2s ease;padding-right:10px}footer [class*=" icon-"]:hover,footer [class^=icon-]:hover{text-shadow:0 0 10px rgba(0,0,0,.3)}@media print{body{font-family:Serif;background-color:#fff}@page{margin:1cm}img{max-width:100%!important}#article .mbm a,#article>aside,#article_toolbar,#links,#slide-out,#sort,.entry+.results,.hide-on-large-only,.messages,.progress,.top_link,body>footer,body>header,div.tools,header div{display:none!important}main{padding-left:0!important}#article{margin:inherit!important}article{border:none!important}.vieworiginal a:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.pagination span.current{border-style:dashed}#main{margin:0;padding:0}#article,#main{width:100%}}@media only screen and (min-width:992px){body:not(.entry):not(.login) main,footer,nav{padding-left:240px}.pagination{margin-left:auto}}@media only screen and (max-width:992px){footer,header,main,nav{padding-left:0}table{display:block;overflow:auto}iframe{max-width:100%;height:auto}.nav-panels .action{padding-right:.75rem}.nav-panel-buttom{justify-content:space-between}#article{max-width:35em;margin-left:auto;margin-right:auto;font-size:18px}#article>header>h1{font-size:1.33em}.reader-mode{width:240px!important}.reader-mode span{opacity:1}.tabs{display:inline-block;height:auto}.tab{min-width:100%}.indicator{display:none}.pagination li{margin-bottom:.5rem}.pagination li.next,.pagination li.prev{width:auto}.drag-target+.drag-target{height:50%}.drag-target+.drag-target+.drag-target{top:50%}}@media only screen and (min-width:1200px) and (max-width:1650px){.row .col.l3{width:33.33333%;margin-left:0}}@media only screen and (min-width:993px) and (max-width:1200px){.row .col.l1{width:25%;margin-left:0}.row .col.l2{width:33.33333%;margin-left:0}.row .col.l3{width:41.66667%;margin-left:0}.row .col.l4{width:50%;margin-left:0}.row .col.l5{width:58.33333%;margin-left:0}.row .col.l6{width:66.66667%;margin-left:0}.row .col.l7{width:75%;margin-left:0}.row .col.l8{width:83.33333%;margin-left:0}.row .col.l9{width:91.66667%;margin-left:0}.row .col.l10{width:100%;margin-left:0}}@media only screen and (max-width:350px){.nb-results{display:none}.row .col,main ul.row{padding:0}} | 1 | .materialize-red{background-color:#e51c23!important}.materialize-red-text{color:#e51c23!important}.materialize-red.lighten-5{background-color:#fdeaeb!important}.materialize-red-text.text-lighten-5{color:#fdeaeb!important}.materialize-red.lighten-4{background-color:#f8c1c3!important}.materialize-red-text.text-lighten-4{color:#f8c1c3!important}.materialize-red.lighten-3{background-color:#f3989b!important}.materialize-red-text.text-lighten-3{color:#f3989b!important}.materialize-red.lighten-2{background-color:#ee6e73!important}.materialize-red-text.text-lighten-2{color:#ee6e73!important}.materialize-red.lighten-1{background-color:#ea454b!important}.materialize-red-text.text-lighten-1{color:#ea454b!important}.materialize-red.darken-1{background-color:#d0181e!important}.materialize-red-text.text-darken-1{color:#d0181e!important}.materialize-red.darken-2{background-color:#b9151b!important}.materialize-red-text.text-darken-2{color:#b9151b!important}.materialize-red.darken-3{background-color:#a21318!important}.materialize-red-text.text-darken-3{color:#a21318!important}.materialize-red.darken-4{background-color:#8b1014!important}.materialize-red-text.text-darken-4{color:#8b1014!important}.red{background-color:#f44336!important}.red-text{color:#f44336!important}.red.lighten-5{background-color:#ffebee!important}.red-text.text-lighten-5{color:#ffebee!important}.red.lighten-4{background-color:#ffcdd2!important}.red-text.text-lighten-4{color:#ffcdd2!important}.red.lighten-3{background-color:#ef9a9a!important}.red-text.text-lighten-3{color:#ef9a9a!important}.red.lighten-2{background-color:#e57373!important}.red-text.text-lighten-2{color:#e57373!important}.red.lighten-1{background-color:#ef5350!important}.red-text.text-lighten-1{color:#ef5350!important}.red.darken-1{background-color:#e53935!important}.red-text.text-darken-1{color:#e53935!important}.red.darken-2{background-color:#d32f2f!important}.red-text.text-darken-2{color:#d32f2f!important}.red.darken-3{background-color:#c62828!important}.red-text.text-darken-3{color:#c62828!important}.red.darken-4{background-color:#b71c1c!important}.red-text.text-darken-4{color:#b71c1c!important}.red.accent-1{background-color:#ff8a80!important}.red-text.text-accent-1{color:#ff8a80!important}.red.accent-2{background-color:#ff5252!important}.red-text.text-accent-2{color:#ff5252!important}.red.accent-3{background-color:#ff1744!important}.red-text.text-accent-3{color:#ff1744!important}.red.accent-4{background-color:#d50000!important}.red-text.text-accent-4{color:#d50000!important}.pink{background-color:#e91e63!important}.pink-text{color:#e91e63!important}.pink.lighten-5{background-color:#fce4ec!important}.pink-text.text-lighten-5{color:#fce4ec!important}.pink.lighten-4{background-color:#f8bbd0!important}.pink-text.text-lighten-4{color:#f8bbd0!important}.pink.lighten-3{background-color:#f48fb1!important}.pink-text.text-lighten-3{color:#f48fb1!important}.pink.lighten-2{background-color:#f06292!important}.pink-text.text-lighten-2{color:#f06292!important}.pink.lighten-1{background-color:#ec407a!important}.pink-text.text-lighten-1{color:#ec407a!important}.pink.darken-1{background-color:#d81b60!important}.pink-text.text-darken-1{color:#d81b60!important}.pink.darken-2{background-color:#c2185b!important}.pink-text.text-darken-2{color:#c2185b!important}.pink.darken-3{background-color:#ad1457!important}.pink-text.text-darken-3{color:#ad1457!important}.pink.darken-4{background-color:#880e4f!important}.pink-text.text-darken-4{color:#880e4f!important}.pink.accent-1{background-color:#ff80ab!important}.pink-text.text-accent-1{color:#ff80ab!important}.pink.accent-2{background-color:#ff4081!important}.pink-text.text-accent-2{color:#ff4081!important}.pink.accent-3{background-color:#f50057!important}.pink-text.text-accent-3{color:#f50057!important}.pink.accent-4{background-color:#c51162!important}.pink-text.text-accent-4{color:#c51162!important}.purple{background-color:#9c27b0!important}.purple-text{color:#9c27b0!important}.purple.lighten-5{background-color:#f3e5f5!important}.purple-text.text-lighten-5{color:#f3e5f5!important}.purple.lighten-4{background-color:#e1bee7!important}.purple-text.text-lighten-4{color:#e1bee7!important}.purple.lighten-3{background-color:#ce93d8!important}.purple-text.text-lighten-3{color:#ce93d8!important}.purple.lighten-2{background-color:#ba68c8!important}.purple-text.text-lighten-2{color:#ba68c8!important}.purple.lighten-1{background-color:#ab47bc!important}.purple-text.text-lighten-1{color:#ab47bc!important}.purple.darken-1{background-color:#8e24aa!important}.purple-text.text-darken-1{color:#8e24aa!important}.purple.darken-2{background-color:#7b1fa2!important}.purple-text.text-darken-2{color:#7b1fa2!important}.purple.darken-3{background-color:#6a1b9a!important}.purple-text.text-darken-3{color:#6a1b9a!important}.purple.darken-4{background-color:#4a148c!important}.purple-text.text-darken-4{color:#4a148c!important}.purple.accent-1{background-color:#ea80fc!important}.purple-text.text-accent-1{color:#ea80fc!important}.purple.accent-2{background-color:#e040fb!important}.purple-text.text-accent-2{color:#e040fb!important}.purple.accent-3{background-color:#d500f9!important}.purple-text.text-accent-3{color:#d500f9!important}.purple.accent-4{background-color:#a0f!important}.purple-text.text-accent-4{color:#a0f!important}.deep-purple{background-color:#673ab7!important}.deep-purple-text{color:#673ab7!important}.deep-purple.lighten-5{background-color:#ede7f6!important}.deep-purple-text.text-lighten-5{color:#ede7f6!important}.deep-purple.lighten-4{background-color:#d1c4e9!important}.deep-purple-text.text-lighten-4{color:#d1c4e9!important}.deep-purple.lighten-3{background-color:#b39ddb!important}.deep-purple-text.text-lighten-3{color:#b39ddb!important}.deep-purple.lighten-2{background-color:#9575cd!important}.deep-purple-text.text-lighten-2{color:#9575cd!important}.deep-purple.lighten-1{background-color:#7e57c2!important}.deep-purple-text.text-lighten-1{color:#7e57c2!important}.deep-purple.darken-1{background-color:#5e35b1!important}.deep-purple-text.text-darken-1{color:#5e35b1!important}.deep-purple.darken-2{background-color:#512da8!important}.deep-purple-text.text-darken-2{color:#512da8!important}.deep-purple.darken-3{background-color:#4527a0!important}.deep-purple-text.text-darken-3{color:#4527a0!important}.deep-purple.darken-4{background-color:#311b92!important}.deep-purple-text.text-darken-4{color:#311b92!important}.deep-purple.accent-1{background-color:#b388ff!important}.deep-purple-text.text-accent-1{color:#b388ff!important}.deep-purple.accent-2{background-color:#7c4dff!important}.deep-purple-text.text-accent-2{color:#7c4dff!important}.deep-purple.accent-3{background-color:#651fff!important}.deep-purple-text.text-accent-3{color:#651fff!important}.deep-purple.accent-4{background-color:#6200ea!important}.deep-purple-text.text-accent-4{color:#6200ea!important}.indigo{background-color:#3f51b5!important}.indigo-text{color:#3f51b5!important}.indigo.lighten-5{background-color:#e8eaf6!important}.indigo-text.text-lighten-5{color:#e8eaf6!important}.indigo.lighten-4{background-color:#c5cae9!important}.indigo-text.text-lighten-4{color:#c5cae9!important}.indigo.lighten-3{background-color:#9fa8da!important}.indigo-text.text-lighten-3{color:#9fa8da!important}.indigo.lighten-2{background-color:#7986cb!important}.indigo-text.text-lighten-2{color:#7986cb!important}.indigo.lighten-1{background-color:#5c6bc0!important}.indigo-text.text-lighten-1{color:#5c6bc0!important}.indigo.darken-1{background-color:#3949ab!important}.indigo-text.text-darken-1{color:#3949ab!important}.indigo.darken-2{background-color:#303f9f!important}.indigo-text.text-darken-2{color:#303f9f!important}.indigo.darken-3{background-color:#283593!important}.indigo-text.text-darken-3{color:#283593!important}.indigo.darken-4{background-color:#1a237e!important}.indigo-text.text-darken-4{color:#1a237e!important}.indigo.accent-1{background-color:#8c9eff!important}.indigo-text.text-accent-1{color:#8c9eff!important}.indigo.accent-2{background-color:#536dfe!important}.indigo-text.text-accent-2{color:#536dfe!important}.indigo.accent-3{background-color:#3d5afe!important}.indigo-text.text-accent-3{color:#3d5afe!important}.indigo.accent-4{background-color:#304ffe!important}.indigo-text.text-accent-4{color:#304ffe!important}.blue{background-color:#2196f3!important}.blue-text{color:#2196f3!important}.blue.lighten-5{background-color:#e3f2fd!important}.blue-text.text-lighten-5{color:#e3f2fd!important}.blue.lighten-4{background-color:#bbdefb!important}.blue-text.text-lighten-4{color:#bbdefb!important}.blue.lighten-3{background-color:#90caf9!important}.blue-text.text-lighten-3{color:#90caf9!important}.blue.lighten-2{background-color:#64b5f6!important}.blue-text.text-lighten-2{color:#64b5f6!important}.blue.lighten-1{background-color:#42a5f5!important}.blue-text.text-lighten-1{color:#42a5f5!important}.blue.darken-1{background-color:#1e88e5!important}.blue-text.text-darken-1{color:#1e88e5!important}.blue.darken-2{background-color:#1976d2!important}.blue-text.text-darken-2{color:#1976d2!important}.blue.darken-3{background-color:#1565c0!important}.blue-text.text-darken-3{color:#1565c0!important}.blue.darken-4{background-color:#0d47a1!important}.blue-text.text-darken-4{color:#0d47a1!important}.blue.accent-1{background-color:#82b1ff!important}.blue-text.text-accent-1{color:#82b1ff!important}.blue.accent-2{background-color:#448aff!important}.blue-text.text-accent-2{color:#448aff!important}.blue.accent-3{background-color:#2979ff!important}.blue-text.text-accent-3{color:#2979ff!important}.blue.accent-4{background-color:#2962ff!important}.blue-text.text-accent-4{color:#2962ff!important}.light-blue{background-color:#03a9f4!important}.light-blue-text{color:#03a9f4!important}.light-blue.lighten-5{background-color:#e1f5fe!important}.light-blue-text.text-lighten-5{color:#e1f5fe!important}.light-blue.lighten-4{background-color:#b3e5fc!important}.light-blue-text.text-lighten-4{color:#b3e5fc!important}.light-blue.lighten-3{background-color:#81d4fa!important}.light-blue-text.text-lighten-3{color:#81d4fa!important}.light-blue.lighten-2{background-color:#4fc3f7!important}.light-blue-text.text-lighten-2{color:#4fc3f7!important}.light-blue.lighten-1{background-color:#29b6f6!important}.light-blue-text.text-lighten-1{color:#29b6f6!important}.light-blue.darken-1{background-color:#039be5!important}.light-blue-text.text-darken-1{color:#039be5!important}.light-blue.darken-2{background-color:#0288d1!important}.light-blue-text.text-darken-2{color:#0288d1!important}.light-blue.darken-3{background-color:#0277bd!important}.light-blue-text.text-darken-3{color:#0277bd!important}.light-blue.darken-4{background-color:#01579b!important}.light-blue-text.text-darken-4{color:#01579b!important}.light-blue.accent-1{background-color:#80d8ff!important}.light-blue-text.text-accent-1{color:#80d8ff!important}.light-blue.accent-2{background-color:#40c4ff!important}.light-blue-text.text-accent-2{color:#40c4ff!important}.light-blue.accent-3{background-color:#00b0ff!important}.light-blue-text.text-accent-3{color:#00b0ff!important}.light-blue.accent-4{background-color:#0091ea!important}.light-blue-text.text-accent-4{color:#0091ea!important}.cyan{background-color:#00bcd4!important}.cyan-text{color:#00bcd4!important}.cyan.lighten-5{background-color:#e0f7fa!important}.cyan-text.text-lighten-5{color:#e0f7fa!important}.cyan.lighten-4{background-color:#b2ebf2!important}.cyan-text.text-lighten-4{color:#b2ebf2!important}.cyan.lighten-3{background-color:#80deea!important}.cyan-text.text-lighten-3{color:#80deea!important}.cyan.lighten-2{background-color:#4dd0e1!important}.cyan-text.text-lighten-2{color:#4dd0e1!important}.cyan.lighten-1{background-color:#26c6da!important}.cyan-text.text-lighten-1{color:#26c6da!important}.cyan.darken-1{background-color:#00acc1!important}.cyan-text.text-darken-1{color:#00acc1!important}.cyan.darken-2{background-color:#0097a7!important}.cyan-text.text-darken-2{color:#0097a7!important}.cyan.darken-3{background-color:#00838f!important}.cyan-text.text-darken-3{color:#00838f!important}.cyan.darken-4{background-color:#006064!important}.cyan-text.text-darken-4{color:#006064!important}.cyan.accent-1{background-color:#84ffff!important}.cyan-text.text-accent-1{color:#84ffff!important}.cyan.accent-2{background-color:#18ffff!important}.cyan-text.text-accent-2{color:#18ffff!important}.cyan.accent-3{background-color:#00e5ff!important}.cyan-text.text-accent-3{color:#00e5ff!important}.cyan.accent-4{background-color:#00b8d4!important}.cyan-text.text-accent-4{color:#00b8d4!important}.teal{background-color:#009688!important}.teal-text{color:#009688!important}.teal.lighten-5{background-color:#e0f2f1!important}.teal-text.text-lighten-5{color:#e0f2f1!important}.teal.lighten-4{background-color:#b2dfdb!important}.teal-text.text-lighten-4{color:#b2dfdb!important}.teal.lighten-3{background-color:#80cbc4!important}.teal-text.text-lighten-3{color:#80cbc4!important}.teal.lighten-2{background-color:#4db6ac!important}.teal-text.text-lighten-2{color:#4db6ac!important}.teal.lighten-1{background-color:#26a69a!important}.teal-text.text-lighten-1{color:#26a69a!important}.teal.darken-1{background-color:#00897b!important}.teal-text.text-darken-1{color:#00897b!important}.teal.darken-2{background-color:#00796b!important}.teal-text.text-darken-2{color:#00796b!important}.teal.darken-3{background-color:#00695c!important}.teal-text.text-darken-3{color:#00695c!important}.teal.darken-4{background-color:#004d40!important}.teal-text.text-darken-4{color:#004d40!important}.teal.accent-1{background-color:#a7ffeb!important}.teal-text.text-accent-1{color:#a7ffeb!important}.teal.accent-2{background-color:#64ffda!important}.teal-text.text-accent-2{color:#64ffda!important}.teal.accent-3{background-color:#1de9b6!important}.teal-text.text-accent-3{color:#1de9b6!important}.teal.accent-4{background-color:#00bfa5!important}.teal-text.text-accent-4{color:#00bfa5!important}.green{background-color:#4caf50!important}.green-text{color:#4caf50!important}.green.lighten-5{background-color:#e8f5e9!important}.green-text.text-lighten-5{color:#e8f5e9!important}.green.lighten-4{background-color:#c8e6c9!important}.green-text.text-lighten-4{color:#c8e6c9!important}.green.lighten-3{background-color:#a5d6a7!important}.green-text.text-lighten-3{color:#a5d6a7!important}.green.lighten-2{background-color:#81c784!important}.green-text.text-lighten-2{color:#81c784!important}.green.lighten-1{background-color:#66bb6a!important}.green-text.text-lighten-1{color:#66bb6a!important}.green.darken-1{background-color:#43a047!important}.green-text.text-darken-1{color:#43a047!important}.green.darken-2{background-color:#388e3c!important}.green-text.text-darken-2{color:#388e3c!important}.green.darken-3{background-color:#2e7d32!important}.green-text.text-darken-3{color:#2e7d32!important}.green.darken-4{background-color:#1b5e20!important}.green-text.text-darken-4{color:#1b5e20!important}.green.accent-1{background-color:#b9f6ca!important}.green-text.text-accent-1{color:#b9f6ca!important}.green.accent-2{background-color:#69f0ae!important}.green-text.text-accent-2{color:#69f0ae!important}.green.accent-3{background-color:#00e676!important}.green-text.text-accent-3{color:#00e676!important}.green.accent-4{background-color:#00c853!important}.green-text.text-accent-4{color:#00c853!important}.light-green{background-color:#8bc34a!important}.light-green-text{color:#8bc34a!important}.light-green.lighten-5{background-color:#f1f8e9!important}.light-green-text.text-lighten-5{color:#f1f8e9!important}.light-green.lighten-4{background-color:#dcedc8!important}.light-green-text.text-lighten-4{color:#dcedc8!important}.light-green.lighten-3{background-color:#c5e1a5!important}.light-green-text.text-lighten-3{color:#c5e1a5!important}.light-green.lighten-2{background-color:#aed581!important}.light-green-text.text-lighten-2{color:#aed581!important}.light-green.lighten-1{background-color:#9ccc65!important}.light-green-text.text-lighten-1{color:#9ccc65!important}.light-green.darken-1{background-color:#7cb342!important}.light-green-text.text-darken-1{color:#7cb342!important}.light-green.darken-2{background-color:#689f38!important}.light-green-text.text-darken-2{color:#689f38!important}.light-green.darken-3{background-color:#558b2f!important}.light-green-text.text-darken-3{color:#558b2f!important}.light-green.darken-4{background-color:#33691e!important}.light-green-text.text-darken-4{color:#33691e!important}.light-green.accent-1{background-color:#ccff90!important}.light-green-text.text-accent-1{color:#ccff90!important}.light-green.accent-2{background-color:#b2ff59!important}.light-green-text.text-accent-2{color:#b2ff59!important}.light-green.accent-3{background-color:#76ff03!important}.light-green-text.text-accent-3{color:#76ff03!important}.light-green.accent-4{background-color:#64dd17!important}.light-green-text.text-accent-4{color:#64dd17!important}.lime{background-color:#cddc39!important}.lime-text{color:#cddc39!important}.lime.lighten-5{background-color:#f9fbe7!important}.lime-text.text-lighten-5{color:#f9fbe7!important}.lime.lighten-4{background-color:#f0f4c3!important}.lime-text.text-lighten-4{color:#f0f4c3!important}.lime.lighten-3{background-color:#e6ee9c!important}.lime-text.text-lighten-3{color:#e6ee9c!important}.lime.lighten-2{background-color:#dce775!important}.lime-text.text-lighten-2{color:#dce775!important}.lime.lighten-1{background-color:#d4e157!important}.lime-text.text-lighten-1{color:#d4e157!important}.lime.darken-1{background-color:#c0ca33!important}.lime-text.text-darken-1{color:#c0ca33!important}.lime.darken-2{background-color:#afb42b!important}.lime-text.text-darken-2{color:#afb42b!important}.lime.darken-3{background-color:#9e9d24!important}.lime-text.text-darken-3{color:#9e9d24!important}.lime.darken-4{background-color:#827717!important}.lime-text.text-darken-4{color:#827717!important}.lime.accent-1{background-color:#f4ff81!important}.lime-text.text-accent-1{color:#f4ff81!important}.lime.accent-2{background-color:#eeff41!important}.lime-text.text-accent-2{color:#eeff41!important}.lime.accent-3{background-color:#c6ff00!important}.lime-text.text-accent-3{color:#c6ff00!important}.lime.accent-4{background-color:#aeea00!important}.lime-text.text-accent-4{color:#aeea00!important}.yellow{background-color:#ffeb3b!important}.yellow-text{color:#ffeb3b!important}.yellow.lighten-5{background-color:#fffde7!important}.yellow-text.text-lighten-5{color:#fffde7!important}.yellow.lighten-4{background-color:#fff9c4!important}.yellow-text.text-lighten-4{color:#fff9c4!important}.yellow.lighten-3{background-color:#fff59d!important}.yellow-text.text-lighten-3{color:#fff59d!important}.yellow.lighten-2{background-color:#fff176!important}.yellow-text.text-lighten-2{color:#fff176!important}.yellow.lighten-1{background-color:#ffee58!important}.yellow-text.text-lighten-1{color:#ffee58!important}.yellow.darken-1{background-color:#fdd835!important}.yellow-text.text-darken-1{color:#fdd835!important}.yellow.darken-2{background-color:#fbc02d!important}.yellow-text.text-darken-2{color:#fbc02d!important}.yellow.darken-3{background-color:#f9a825!important}.yellow-text.text-darken-3{color:#f9a825!important}.yellow.darken-4{background-color:#f57f17!important}.yellow-text.text-darken-4{color:#f57f17!important}.yellow.accent-1{background-color:#ffff8d!important}.yellow-text.text-accent-1{color:#ffff8d!important}.yellow.accent-2{background-color:#ff0!important}.yellow-text.text-accent-2{color:#ff0!important}.yellow.accent-3{background-color:#ffea00!important}.yellow-text.text-accent-3{color:#ffea00!important}.yellow.accent-4{background-color:#ffd600!important}.yellow-text.text-accent-4{color:#ffd600!important}.amber{background-color:#ffc107!important}.amber-text{color:#ffc107!important}.amber.lighten-5{background-color:#fff8e1!important}.amber-text.text-lighten-5{color:#fff8e1!important}.amber.lighten-4{background-color:#ffecb3!important}.amber-text.text-lighten-4{color:#ffecb3!important}.amber.lighten-3{background-color:#ffe082!important}.amber-text.text-lighten-3{color:#ffe082!important}.amber.lighten-2{background-color:#ffd54f!important}.amber-text.text-lighten-2{color:#ffd54f!important}.amber.lighten-1{background-color:#ffca28!important}.amber-text.text-lighten-1{color:#ffca28!important}.amber.darken-1{background-color:#ffb300!important}.amber-text.text-darken-1{color:#ffb300!important}.amber.darken-2{background-color:#ffa000!important}.amber-text.text-darken-2{color:#ffa000!important}.amber.darken-3{background-color:#ff8f00!important}.amber-text.text-darken-3{color:#ff8f00!important}.amber.darken-4{background-color:#ff6f00!important}.amber-text.text-darken-4{color:#ff6f00!important}.amber.accent-1{background-color:#ffe57f!important}.amber-text.text-accent-1{color:#ffe57f!important}.amber.accent-2{background-color:#ffd740!important}.amber-text.text-accent-2{color:#ffd740!important}.amber.accent-3{background-color:#ffc400!important}.amber-text.text-accent-3{color:#ffc400!important}.amber.accent-4{background-color:#ffab00!important}.amber-text.text-accent-4{color:#ffab00!important}.orange{background-color:#ff9800!important}.orange-text{color:#ff9800!important}.orange.lighten-5{background-color:#fff3e0!important}.orange-text.text-lighten-5{color:#fff3e0!important}.orange.lighten-4{background-color:#ffe0b2!important}.orange-text.text-lighten-4{color:#ffe0b2!important}.orange.lighten-3{background-color:#ffcc80!important}.orange-text.text-lighten-3{color:#ffcc80!important}.orange.lighten-2{background-color:#ffb74d!important}.orange-text.text-lighten-2{color:#ffb74d!important}.orange.lighten-1{background-color:#ffa726!important}.orange-text.text-lighten-1{color:#ffa726!important}.orange.darken-1{background-color:#fb8c00!important}.orange-text.text-darken-1{color:#fb8c00!important}.orange.darken-2{background-color:#f57c00!important}.orange-text.text-darken-2{color:#f57c00!important}.orange.darken-3{background-color:#ef6c00!important}.orange-text.text-darken-3{color:#ef6c00!important}.orange.darken-4{background-color:#e65100!important}.orange-text.text-darken-4{color:#e65100!important}.orange.accent-1{background-color:#ffd180!important}.orange-text.text-accent-1{color:#ffd180!important}.orange.accent-2{background-color:#ffab40!important}.orange-text.text-accent-2{color:#ffab40!important}.orange.accent-3{background-color:#ff9100!important}.orange-text.text-accent-3{color:#ff9100!important}.orange.accent-4{background-color:#ff6d00!important}.orange-text.text-accent-4{color:#ff6d00!important}.deep-orange{background-color:#ff5722!important}.deep-orange-text{color:#ff5722!important}.deep-orange.lighten-5{background-color:#fbe9e7!important}.deep-orange-text.text-lighten-5{color:#fbe9e7!important}.deep-orange.lighten-4{background-color:#ffccbc!important}.deep-orange-text.text-lighten-4{color:#ffccbc!important}.deep-orange.lighten-3{background-color:#ffab91!important}.deep-orange-text.text-lighten-3{color:#ffab91!important}.deep-orange.lighten-2{background-color:#ff8a65!important}.deep-orange-text.text-lighten-2{color:#ff8a65!important}.deep-orange.lighten-1{background-color:#ff7043!important}.deep-orange-text.text-lighten-1{color:#ff7043!important}.deep-orange.darken-1{background-color:#f4511e!important}.deep-orange-text.text-darken-1{color:#f4511e!important}.deep-orange.darken-2{background-color:#e64a19!important}.deep-orange-text.text-darken-2{color:#e64a19!important}.deep-orange.darken-3{background-color:#d84315!important}.deep-orange-text.text-darken-3{color:#d84315!important}.deep-orange.darken-4{background-color:#bf360c!important}.deep-orange-text.text-darken-4{color:#bf360c!important}.deep-orange.accent-1{background-color:#ff9e80!important}.deep-orange-text.text-accent-1{color:#ff9e80!important}.deep-orange.accent-2{background-color:#ff6e40!important}.deep-orange-text.text-accent-2{color:#ff6e40!important}.deep-orange.accent-3{background-color:#ff3d00!important}.deep-orange-text.text-accent-3{color:#ff3d00!important}.deep-orange.accent-4{background-color:#dd2c00!important}.deep-orange-text.text-accent-4{color:#dd2c00!important}.brown{background-color:#795548!important}.brown-text{color:#795548!important}.brown.lighten-5{background-color:#efebe9!important}.brown-text.text-lighten-5{color:#efebe9!important}.brown.lighten-4{background-color:#d7ccc8!important}.brown-text.text-lighten-4{color:#d7ccc8!important}.brown.lighten-3{background-color:#bcaaa4!important}.brown-text.text-lighten-3{color:#bcaaa4!important}.brown.lighten-2{background-color:#a1887f!important}.brown-text.text-lighten-2{color:#a1887f!important}.brown.lighten-1{background-color:#8d6e63!important}.brown-text.text-lighten-1{color:#8d6e63!important}.brown.darken-1{background-color:#6d4c41!important}.brown-text.text-darken-1{color:#6d4c41!important}.brown.darken-2{background-color:#5d4037!important}.brown-text.text-darken-2{color:#5d4037!important}.brown.darken-3{background-color:#4e342e!important}.brown-text.text-darken-3{color:#4e342e!important}.brown.darken-4{background-color:#3e2723!important}.brown-text.text-darken-4{color:#3e2723!important}.blue-grey{background-color:#607d8b!important}.blue-grey-text{color:#607d8b!important}.blue-grey.lighten-5{background-color:#eceff1!important}.blue-grey-text.text-lighten-5{color:#eceff1!important}.blue-grey.lighten-4{background-color:#cfd8dc!important}.blue-grey-text.text-lighten-4{color:#cfd8dc!important}.blue-grey.lighten-3{background-color:#b0bec5!important}.blue-grey-text.text-lighten-3{color:#b0bec5!important}.blue-grey.lighten-2{background-color:#90a4ae!important}.blue-grey-text.text-lighten-2{color:#90a4ae!important}.blue-grey.lighten-1{background-color:#78909c!important}.blue-grey-text.text-lighten-1{color:#78909c!important}.blue-grey.darken-1{background-color:#546e7a!important}.blue-grey-text.text-darken-1{color:#546e7a!important}.blue-grey.darken-2{background-color:#455a64!important}.blue-grey-text.text-darken-2{color:#455a64!important}.blue-grey.darken-3{background-color:#37474f!important}.blue-grey-text.text-darken-3{color:#37474f!important}.blue-grey.darken-4{background-color:#263238!important}.blue-grey-text.text-darken-4{color:#263238!important}.grey{background-color:#9e9e9e!important}.grey-text{color:#9e9e9e!important}.grey.lighten-5{background-color:#fafafa!important}.grey-text.text-lighten-5{color:#fafafa!important}.grey.lighten-4{background-color:#f5f5f5!important}.grey-text.text-lighten-4{color:#f5f5f5!important}.grey.lighten-3{background-color:#eee!important}.grey-text.text-lighten-3{color:#eee!important}.grey.lighten-2{background-color:#e0e0e0!important}.grey-text.text-lighten-2{color:#e0e0e0!important}.grey.lighten-1{background-color:#bdbdbd!important}.grey-text.text-lighten-1{color:#bdbdbd!important}.grey.darken-1{background-color:#757575!important}.grey-text.text-darken-1{color:#757575!important}.grey.darken-2{background-color:#616161!important}.grey-text.text-darken-2{color:#616161!important}.grey.darken-3{background-color:#424242!important}.grey-text.text-darken-3{color:#424242!important}.grey.darken-4{background-color:#212121!important}.grey-text.text-darken-4{color:#212121!important}.black{background-color:#000!important}.black-text{color:#000!important}.white{background-color:#fff!important}.white-text{color:#fff!important}.transparent{background-color:transparent!important}.transparent-text{color:transparent!important}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}ul:not(.browser-default){padding-left:0;list-style-type:none}ul:not(.browser-default) li{list-style-type:none}a{color:#039be5;-webkit-tap-highlight-color:transparent}.valign-wrapper{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.clearfix{clear:both}.z-depth-0{box-shadow:none!important}.btn,.btn-floating,.btn-large,.card,.card-panel,.collapsible,.dropdown-content,.side-nav,.toast,.z-depth-1,nav{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2)}.btn-floating:hover,.btn-large:hover,.btn:hover,.z-depth-1-half{box-shadow:0 3px 3px 0 rgba(0,0,0,.14),0 1px 7px 0 rgba(0,0,0,.12),0 3px 1px -1px rgba(0,0,0,.2)}.z-depth-2{box-shadow:0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.3)}.z-depth-3{box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.3)}.modal,.z-depth-4{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.3)}.z-depth-5{box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.3)}.hoverable{transition:box-shadow .25s;box-shadow:0}.hoverable:hover{transition:box-shadow .25s;box-shadow:0 8px 17px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)}.divider{height:1px;overflow:hidden;background-color:#e0e0e0}blockquote{margin:20px 0;padding-left:1.5rem;border-left:5px solid #ee6e73}i{line-height:inherit}i.left{float:left;margin-right:15px}i.right{float:right;margin-left:15px}i.tiny{font-size:1rem}i.small{font-size:2rem}i.medium{font-size:4rem}i.large{font-size:6rem}img.responsive-img,video.responsive-video{max-width:100%;height:auto}.pagination li{display:inline-block;border-radius:2px;text-align:center;vertical-align:top;height:30px}.pagination li a{color:#444;display:inline-block;font-size:1.2rem;padding:0 10px;line-height:30px}.pagination li.active a{color:#fff}.pagination li.active{background-color:#ee6e73}.pagination li.disabled a{cursor:default;color:#999}.pagination li i{font-size:2rem}.pagination li.pages ul li{display:inline-block;float:none}@media only screen and (max-width:992px){.pagination{width:100%}.pagination li.next,.pagination li.prev{width:10%}.pagination li.pages{width:80%;overflow:hidden;white-space:nowrap}}.breadcrumb{font-size:18px;color:hsla(0,0%,100%,.7)}.breadcrumb [class*=mdi-],.breadcrumb [class^=mdi-],.breadcrumb i,.breadcrumb i.material-icons{display:inline-block;float:left;font-size:24px}.breadcrumb:before{content:"\E5CC";color:hsla(0,0%,100%,.7);vertical-align:top;display:inline-block;font-family:Material Icons;font-weight:400;font-style:normal;font-size:25px;margin:0 10px 0 8px;-webkit-font-smoothing:antialiased}.breadcrumb:first-child:before{display:none}.breadcrumb:last-child{color:#fff}.parallax-container{position:relative;overflow:hidden;height:500px}.parallax{top:0;left:0;right:0;z-index:-1}.parallax,.parallax img{position:absolute;bottom:0}.parallax img{display:none;left:50%;min-width:100%;min-height:100%;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transform:translateX(-50%);transform:translateX(-50%)}.pin-bottom,.pin-top{position:relative}.pinned{position:fixed!important}.fade-in,ul.staggered-list li{opacity:0}.fade-in{-webkit-transform-origin:0 50%;transform-origin:0 50%}@media only screen and (max-width:600px){.hide-on-small-and-down,.hide-on-small-only{display:none!important}}@media only screen and (max-width:992px){.hide-on-med-and-down{display:none!important}}@media only screen and (min-width:601px){.hide-on-med-and-up{display:none!important}}@media only screen and (min-width:600px) and (max-width:992px){.hide-on-med-only{display:none!important}}@media only screen and (min-width:993px){.hide-on-large-only{display:none!important}}@media only screen and (min-width:993px){.show-on-large{display:block!important}}@media only screen and (min-width:600px) and (max-width:992px){.show-on-medium{display:block!important}}@media only screen and (max-width:600px){.show-on-small{display:block!important}}@media only screen and (min-width:601px){.show-on-medium-and-up{display:block!important}}@media only screen and (max-width:992px){.show-on-medium-and-down{display:block!important}}@media only screen and (max-width:600px){.center-on-small-only{text-align:center}}.page-footer{padding-top:20px;background-color:#ee6e73}.page-footer .footer-copyright{overflow:hidden;min-height:50px;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center;padding:10px 0;color:hsla(0,0%,100%,.8);background-color:rgba(51,51,51,.08)}table,td,th{border:none}table{width:100%;display:table}table.bordered>tbody>tr,table.bordered>thead>tr{border-bottom:1px solid #d0d0d0}table.striped>tbody>tr:nth-child(odd){background-color:#f2f2f2}table.striped>tbody>tr>td{border-radius:0}table.highlight>tbody>tr{transition:background-color .25s ease}table.highlight>tbody>tr:hover{background-color:#f2f2f2}table.centered tbody tr td,table.centered thead tr th{text-align:center}thead{border-bottom:1px solid #d0d0d0}td,th{padding:15px 5px;display:table-cell;text-align:left;vertical-align:middle;border-radius:2px}@media only screen and (max-width:992px){table.responsive-table{width:100%;border-collapse:collapse;border-spacing:0;display:block;position:relative}table.responsive-table td:empty:before{content:"\A0"}table.responsive-table td,table.responsive-table th{margin:0;vertical-align:top}table.responsive-table th{text-align:left}table.responsive-table thead{display:block;float:left}table.responsive-table thead tr{display:block;padding:0 10px 0 0}table.responsive-table thead tr th:before{content:"\A0"}table.responsive-table tbody{display:block;width:auto;position:relative;overflow-x:auto;white-space:nowrap}table.responsive-table tbody tr{display:inline-block;vertical-align:top}table.responsive-table th{display:block;text-align:right}table.responsive-table td{display:block;min-height:1.25em;text-align:left}table.responsive-table tr{padding:0 10px}table.responsive-table thead{border:0;border-right:1px solid #d0d0d0}table.responsive-table.bordered th{border-bottom:0;border-left:0}table.responsive-table.bordered td{border-left:0;border-right:0;border-bottom:0}table.responsive-table.bordered tr{border:0}table.responsive-table.bordered tbody tr{border-right:1px solid #d0d0d0}}.collection{margin:.5rem 0 1rem;border:1px solid #e0e0e0;border-radius:2px;overflow:hidden;position:relative}.collection .collection-item{background-color:#fff;line-height:1.5rem;padding:10px 20px;margin:0;border-bottom:1px solid #e0e0e0}.collection .collection-item.avatar{min-height:84px;padding-left:72px;position:relative}.collection .collection-item.avatar .circle{position:absolute;width:42px;height:42px;overflow:hidden;left:15px;display:inline-block;vertical-align:middle}.collection .collection-item.avatar i.circle{font-size:18px;line-height:42px;color:#fff;background-color:#999;text-align:center}.collection .collection-item.avatar .title{font-size:16px}.collection .collection-item.avatar p{margin:0}.collection .collection-item.avatar .secondary-content{position:absolute;top:16px;right:16px}.collection .collection-item:last-child{border-bottom:none}.collection .collection-item.active{background-color:#26a69a;color:#eafaf9}.collection .collection-item.active .secondary-content{color:#fff}.collection a.collection-item{display:block;transition:.25s;color:#26a69a}.collection a.collection-item:not(.active):hover{background-color:#ddd}.collection.with-header .collection-header{background-color:#fff;border-bottom:1px solid #e0e0e0;padding:10px 20px}.collection.with-header .collection-item{padding-left:30px}.collection.with-header .collection-item.avatar{padding-left:72px}.secondary-content{float:right;color:#26a69a}.collapsible .collection{margin:0;border:none}.video-container{position:relative;padding-bottom:56.25%;height:0;overflow:hidden}.video-container embed,.video-container iframe,.video-container object{position:absolute;top:0;left:0;width:100%;height:100%}.progress{position:relative;height:4px;display:block;width:100%;background-color:#acece6;border-radius:2px;margin:.5rem 0 1rem;overflow:hidden}.progress .determinate{position:absolute;top:0;left:0;bottom:0;transition:width .3s linear}.progress .determinate,.progress .indeterminate{background-color:#26a69a}.progress .indeterminate:before{-webkit-animation:indeterminate 2.1s cubic-bezier(.65,.815,.735,.395) infinite;animation:indeterminate 2.1s cubic-bezier(.65,.815,.735,.395) infinite}.progress .indeterminate:after,.progress .indeterminate:before{content:"";position:absolute;background-color:inherit;top:0;left:0;bottom:0;will-change:left,right}.progress .indeterminate:after{-webkit-animation:indeterminate-short 2.1s cubic-bezier(.165,.84,.44,1) infinite;animation:indeterminate-short 2.1s cubic-bezier(.165,.84,.44,1) infinite;-webkit-animation-delay:1.15s;animation-delay:1.15s}@-webkit-keyframes indeterminate{0%{left:-35%;right:100%}60%{left:100%;right:-90%}to{left:100%;right:-90%}}@keyframes indeterminate{0%{left:-35%;right:100%}60%{left:100%;right:-90%}to{left:100%;right:-90%}}@-webkit-keyframes indeterminate-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}to{left:107%;right:-8%}}@keyframes indeterminate-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}to{left:107%;right:-8%}}.hide{display:none!important}.left-align{text-align:left}.right-align{text-align:right}.center,.center-align{text-align:center}.left{float:left!important}.right{float:right!important}.no-select,input[type=range],input[type=range]+.thumb{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.circle{border-radius:50%}.center-block{display:block;margin-left:auto;margin-right:auto}.truncate{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.no-padding{padding:0!important}span.badge{min-width:3rem;padding:0 6px;margin-left:14px;text-align:center;font-size:1rem;line-height:22px;height:22px;color:#757575;float:right;box-sizing:border-box}span.badge.new{font-weight:300;font-size:.8rem;color:#fff;background-color:#26a69a;border-radius:2px}span.badge.new:after{content:" new"}span.badge[data-badge-caption]:after{content:" " attr(data-badge-caption)}nav ul a span.badge{display:inline-block;float:none;margin-left:4px;line-height:22px;height:22px}.collection-item span.badge{margin-top:calc(.75rem - 11px)}.collapsible span.badge{margin-top:calc(1.5rem - 11px)}.side-nav span.badge{margin-top:13px}.material-icons{text-rendering:optimizeLegibility;-webkit-font-feature-settings:"liga";-moz-font-feature-settings:"liga";font-feature-settings:"liga"}.container{margin:0 auto;max-width:1280px;width:90%}@media only screen and (min-width:601px){.container{width:85%}}@media only screen and (min-width:993px){.container{width:70%}}.container .row{margin-left:-.75rem;margin-right:-.75rem}.section{padding-top:1rem;padding-bottom:1rem}.section.no-pad{padding:0}.section.no-pad-bot{padding-bottom:0}.section.no-pad-top{padding-top:0}.row{margin-left:auto;margin-right:auto;margin-bottom:20px}.row:after{content:"";display:table;clear:both}.row .col{float:left;box-sizing:border-box;padding:0 .75rem;min-height:1px}.row .col[class*=pull-],.row .col[class*=push-]{position:relative}.row .col.s1{width:8.3333333333%}.row .col.s1,.row .col.s2{margin-left:auto;left:auto;right:auto}.row .col.s2{width:16.6666666667%}.row .col.s3{width:25%}.row .col.s3,.row .col.s4{margin-left:auto;left:auto;right:auto}.row .col.s4{width:33.3333333333%}.row .col.s5{width:41.6666666667%}.row .col.s5,.row .col.s6{margin-left:auto;left:auto;right:auto}.row .col.s6{width:50%}.row .col.s7{width:58.3333333333%}.row .col.s7,.row .col.s8{margin-left:auto;left:auto;right:auto}.row .col.s8{width:66.6666666667%}.row .col.s9{width:75%}.row .col.s9,.row .col.s10{margin-left:auto;left:auto;right:auto}.row .col.s10{width:83.3333333333%}.row .col.s11{width:91.6666666667%}.row .col.s11,.row .col.s12{margin-left:auto;left:auto;right:auto}.row .col.s12{width:100%}.row .col.offset-s1{margin-left:8.3333333333%}.row .col.pull-s1{right:8.3333333333%}.row .col.push-s1{left:8.3333333333%}.row .col.offset-s2{margin-left:16.6666666667%}.row .col.pull-s2{right:16.6666666667%}.row .col.push-s2{left:16.6666666667%}.row .col.offset-s3{margin-left:25%}.row .col.pull-s3{right:25%}.row .col.push-s3{left:25%}.row .col.offset-s4{margin-left:33.3333333333%}.row .col.pull-s4{right:33.3333333333%}.row .col.push-s4{left:33.3333333333%}.row .col.offset-s5{margin-left:41.6666666667%}.row .col.pull-s5{right:41.6666666667%}.row .col.push-s5{left:41.6666666667%}.row .col.offset-s6{margin-left:50%}.row .col.pull-s6{right:50%}.row .col.push-s6{left:50%}.row .col.offset-s7{margin-left:58.3333333333%}.row .col.pull-s7{right:58.3333333333%}.row .col.push-s7{left:58.3333333333%}.row .col.offset-s8{margin-left:66.6666666667%}.row .col.pull-s8{right:66.6666666667%}.row .col.push-s8{left:66.6666666667%}.row .col.offset-s9{margin-left:75%}.row .col.pull-s9{right:75%}.row .col.push-s9{left:75%}.row .col.offset-s10{margin-left:83.3333333333%}.row .col.pull-s10{right:83.3333333333%}.row .col.push-s10{left:83.3333333333%}.row .col.offset-s11{margin-left:91.6666666667%}.row .col.pull-s11{right:91.6666666667%}.row .col.push-s11{left:91.6666666667%}.row .col.offset-s12{margin-left:100%}.row .col.pull-s12{right:100%}.row .col.push-s12{left:100%}@media only screen and (min-width:601px){.row .col.m1{width:8.3333333333%}.row .col.m1,.row .col.m2{margin-left:auto;left:auto;right:auto}.row .col.m2{width:16.6666666667%}.row .col.m3{width:25%}.row .col.m3,.row .col.m4{margin-left:auto;left:auto;right:auto}.row .col.m4{width:33.3333333333%}.row .col.m5{width:41.6666666667%}.row .col.m5,.row .col.m6{margin-left:auto;left:auto;right:auto}.row .col.m6{width:50%}.row .col.m7{width:58.3333333333%}.row .col.m7,.row .col.m8{margin-left:auto;left:auto;right:auto}.row .col.m8{width:66.6666666667%}.row .col.m9{width:75%}.row .col.m9,.row .col.m10{margin-left:auto;left:auto;right:auto}.row .col.m10{width:83.3333333333%}.row .col.m11{width:91.6666666667%}.row .col.m11,.row .col.m12{margin-left:auto;left:auto;right:auto}.row .col.m12{width:100%}.row .col.offset-m1{margin-left:8.3333333333%}.row .col.pull-m1{right:8.3333333333%}.row .col.push-m1{left:8.3333333333%}.row .col.offset-m2{margin-left:16.6666666667%}.row .col.pull-m2{right:16.6666666667%}.row .col.push-m2{left:16.6666666667%}.row .col.offset-m3{margin-left:25%}.row .col.pull-m3{right:25%}.row .col.push-m3{left:25%}.row .col.offset-m4{margin-left:33.3333333333%}.row .col.pull-m4{right:33.3333333333%}.row .col.push-m4{left:33.3333333333%}.row .col.offset-m5{margin-left:41.6666666667%}.row .col.pull-m5{right:41.6666666667%}.row .col.push-m5{left:41.6666666667%}.row .col.offset-m6{margin-left:50%}.row .col.pull-m6{right:50%}.row .col.push-m6{left:50%}.row .col.offset-m7{margin-left:58.3333333333%}.row .col.pull-m7{right:58.3333333333%}.row .col.push-m7{left:58.3333333333%}.row .col.offset-m8{margin-left:66.6666666667%}.row .col.pull-m8{right:66.6666666667%}.row .col.push-m8{left:66.6666666667%}.row .col.offset-m9{margin-left:75%}.row .col.pull-m9{right:75%}.row .col.push-m9{left:75%}.row .col.offset-m10{margin-left:83.3333333333%}.row .col.pull-m10{right:83.3333333333%}.row .col.push-m10{left:83.3333333333%}.row .col.offset-m11{margin-left:91.6666666667%}.row .col.pull-m11{right:91.6666666667%}.row .col.push-m11{left:91.6666666667%}.row .col.offset-m12{margin-left:100%}.row .col.pull-m12{right:100%}.row .col.push-m12{left:100%}}@media only screen and (min-width:993px){.row .col.l1{width:8.3333333333%}.row .col.l1,.row .col.l2{margin-left:auto;left:auto;right:auto}.row .col.l2{width:16.6666666667%}.row .col.l3{width:25%}.row .col.l3,.row .col.l4{margin-left:auto;left:auto;right:auto}.row .col.l4{width:33.3333333333%}.row .col.l5{width:41.6666666667%}.row .col.l5,.row .col.l6{margin-left:auto;left:auto;right:auto}.row .col.l6{width:50%}.row .col.l7{width:58.3333333333%}.row .col.l7,.row .col.l8{margin-left:auto;left:auto;right:auto}.row .col.l8{width:66.6666666667%}.row .col.l9{width:75%}.row .col.l9,.row .col.l10{margin-left:auto;left:auto;right:auto}.row .col.l10{width:83.3333333333%}.row .col.l11{width:91.6666666667%}.row .col.l11,.row .col.l12{margin-left:auto;left:auto;right:auto}.row .col.l12{width:100%}.row .col.offset-l1{margin-left:8.3333333333%}.row .col.pull-l1{right:8.3333333333%}.row .col.push-l1{left:8.3333333333%}.row .col.offset-l2{margin-left:16.6666666667%}.row .col.pull-l2{right:16.6666666667%}.row .col.push-l2{left:16.6666666667%}.row .col.offset-l3{margin-left:25%}.row .col.pull-l3{right:25%}.row .col.push-l3{left:25%}.row .col.offset-l4{margin-left:33.3333333333%}.row .col.pull-l4{right:33.3333333333%}.row .col.push-l4{left:33.3333333333%}.row .col.offset-l5{margin-left:41.6666666667%}.row .col.pull-l5{right:41.6666666667%}.row .col.push-l5{left:41.6666666667%}.row .col.offset-l6{margin-left:50%}.row .col.pull-l6{right:50%}.row .col.push-l6{left:50%}.row .col.offset-l7{margin-left:58.3333333333%}.row .col.pull-l7{right:58.3333333333%}.row .col.push-l7{left:58.3333333333%}.row .col.offset-l8{margin-left:66.6666666667%}.row .col.pull-l8{right:66.6666666667%}.row .col.push-l8{left:66.6666666667%}.row .col.offset-l9{margin-left:75%}.row .col.pull-l9{right:75%}.row .col.push-l9{left:75%}.row .col.offset-l10{margin-left:83.3333333333%}.row .col.pull-l10{right:83.3333333333%}.row .col.push-l10{left:83.3333333333%}.row .col.offset-l11{margin-left:91.6666666667%}.row .col.pull-l11{right:91.6666666667%}.row .col.push-l11{left:91.6666666667%}.row .col.offset-l12{margin-left:100%}.row .col.pull-l12{right:100%}.row .col.push-l12{left:100%}}@media only screen and (min-width:1201px){.row .col.xl1{width:8.3333333333%}.row .col.xl1,.row .col.xl2{margin-left:auto;left:auto;right:auto}.row .col.xl2{width:16.6666666667%}.row .col.xl3{width:25%}.row .col.xl3,.row .col.xl4{margin-left:auto;left:auto;right:auto}.row .col.xl4{width:33.3333333333%}.row .col.xl5{width:41.6666666667%}.row .col.xl5,.row .col.xl6{margin-left:auto;left:auto;right:auto}.row .col.xl6{width:50%}.row .col.xl7{width:58.3333333333%}.row .col.xl7,.row .col.xl8{margin-left:auto;left:auto;right:auto}.row .col.xl8{width:66.6666666667%}.row .col.xl9{width:75%}.row .col.xl9,.row .col.xl10{margin-left:auto;left:auto;right:auto}.row .col.xl10{width:83.3333333333%}.row .col.xl11{width:91.6666666667%}.row .col.xl11,.row .col.xl12{margin-left:auto;left:auto;right:auto}.row .col.xl12{width:100%}.row .col.offset-xl1{margin-left:8.3333333333%}.row .col.pull-xl1{right:8.3333333333%}.row .col.push-xl1{left:8.3333333333%}.row .col.offset-xl2{margin-left:16.6666666667%}.row .col.pull-xl2{right:16.6666666667%}.row .col.push-xl2{left:16.6666666667%}.row .col.offset-xl3{margin-left:25%}.row .col.pull-xl3{right:25%}.row .col.push-xl3{left:25%}.row .col.offset-xl4{margin-left:33.3333333333%}.row .col.pull-xl4{right:33.3333333333%}.row .col.push-xl4{left:33.3333333333%}.row .col.offset-xl5{margin-left:41.6666666667%}.row .col.pull-xl5{right:41.6666666667%}.row .col.push-xl5{left:41.6666666667%}.row .col.offset-xl6{margin-left:50%}.row .col.pull-xl6{right:50%}.row .col.push-xl6{left:50%}.row .col.offset-xl7{margin-left:58.3333333333%}.row .col.pull-xl7{right:58.3333333333%}.row .col.push-xl7{left:58.3333333333%}.row .col.offset-xl8{margin-left:66.6666666667%}.row .col.pull-xl8{right:66.6666666667%}.row .col.push-xl8{left:66.6666666667%}.row .col.offset-xl9{margin-left:75%}.row .col.pull-xl9{right:75%}.row .col.push-xl9{left:75%}.row .col.offset-xl10{margin-left:83.3333333333%}.row .col.pull-xl10{right:83.3333333333%}.row .col.push-xl10{left:83.3333333333%}.row .col.offset-xl11{margin-left:91.6666666667%}.row .col.pull-xl11{right:91.6666666667%}.row .col.push-xl11{left:91.6666666667%}.row .col.offset-xl12{margin-left:100%}.row .col.pull-xl12{right:100%}.row .col.push-xl12{left:100%}}nav{color:#fff;background-color:#ee6e73;width:100%;height:56px;line-height:56px}nav.nav-extended{height:auto}nav.nav-extended .nav-wrapper{min-height:56px;height:auto}nav.nav-extended .nav-content{position:relative;line-height:normal}nav a{color:#fff}nav [class*=mdi-],nav [class^=mdi-],nav i,nav i.material-icons{display:block;font-size:24px;height:56px;line-height:56px}nav .nav-wrapper{position:relative;height:100%}@media only screen and (min-width:993px){nav a.button-collapse{display:none}}nav .button-collapse{float:left;position:relative;z-index:1;height:56px;margin:0 18px}nav .button-collapse i{height:56px;line-height:56px}nav .brand-logo{position:absolute;color:#fff;display:inline-block;font-size:2.1rem;padding:0;white-space:nowrap}nav .brand-logo.center{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}@media only screen and (max-width:992px){nav .brand-logo{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}nav .brand-logo.left,nav .brand-logo.right{padding:0;-webkit-transform:none;transform:none}nav .brand-logo.left{left:.5rem}nav .brand-logo.right{right:.5rem;left:auto}}nav .brand-logo.right{right:.5rem;padding:0}nav .brand-logo [class*=mdi-],nav .brand-logo [class^=mdi-],nav .brand-logo i,nav .brand-logo i.material-icons{float:left;margin-right:15px}nav .nav-title{display:inline-block;font-size:32px;padding:28px 0}nav ul{margin:0}nav ul li{transition:background-color .3s;float:left;padding:0}nav ul li.active{background-color:rgba(0,0,0,.1)}nav ul a{transition:background-color .3s;font-size:1rem;color:#fff;display:block;padding:0 15px;cursor:pointer}nav ul a.btn,nav ul a.btn-flat,nav ul a.btn-floating,nav ul a.btn-large{margin-top:-2px;margin-left:15px;margin-right:15px}nav ul a.btn-flat>.material-icons,nav ul a.btn-floating>.material-icons,nav ul a.btn-large>.material-icons,nav ul a.btn>.material-icons{height:inherit;line-height:inherit}nav ul a:hover{background-color:rgba(0,0,0,.1)}nav ul.left{float:left}nav form{height:100%}nav .input-field{margin:0;height:100%}nav .input-field input{height:100%;font-size:1.2rem;border:none;padding-left:2rem}nav .input-field input:focus,nav .input-field input[type=date]:valid,nav .input-field input[type=email]:valid,nav .input-field input[type=password]:valid,nav .input-field input[type=text]:valid,nav .input-field input[type=url]:valid{border:none;box-shadow:none}nav .input-field label{top:0;left:0}nav .input-field label i{color:hsla(0,0%,100%,.7);transition:color .3s}nav .input-field label.active i{color:#fff}.navbar-fixed{position:relative;height:56px;z-index:997}.navbar-fixed nav{position:fixed}@media only screen and (min-width:601px){nav.nav-extended .nav-wrapper{min-height:64px}nav,nav .nav-wrapper i,nav a.button-collapse,nav a.button-collapse i{height:64px;line-height:64px}.navbar-fixed{height:64px}}@font-face{font-family:Roboto;src:local(Roboto Thin),url(fonts/Roboto-Thin.woff2) format("woff2"),url(fonts/Roboto-Thin.woff) format("woff");font-weight:100}@font-face{font-family:Roboto;src:local(Roboto Light),url(fonts/Roboto-Light.woff2) format("woff2"),url(fonts/Roboto-Light.woff) format("woff");font-weight:300}@font-face{font-family:Roboto;src:local(Roboto Regular),url(fonts/Roboto-Regular.woff2) format("woff2"),url(fonts/Roboto-Regular.woff) format("woff");font-weight:400}@font-face{font-family:Roboto;src:local(Roboto Medium),url(fonts/Roboto-Medium.woff2) format("woff2"),url(fonts/Roboto-Medium.woff) format("woff");font-weight:500}@font-face{font-family:Roboto;src:local(Roboto Bold),url(fonts/Roboto-Bold.woff2) format("woff2"),url(fonts/Roboto-Bold.woff) format("woff");font-weight:700}a{text-decoration:none}html{line-height:1.5;font-family:Roboto,sans-serif;font-weight:400;color:rgba(0,0,0,.87)}@media only screen and (min-width:0){html{font-size:14px}}@media only screen and (min-width:992px){html{font-size:14.5px}}@media only screen and (min-width:1200px){html{font-size:15px}}h1,h2,h3,h4,h5,h6{font-weight:400;line-height:1.1}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{font-weight:inherit}h1{font-size:4.2rem;margin:2.1rem 0 1.68rem}h1,h2{line-height:110%}h2{font-size:3.56rem;margin:1.78rem 0 1.424rem}h3{font-size:2.92rem;margin:1.46rem 0 1.168rem}h3,h4{line-height:110%}h4{font-size:2.28rem;margin:1.14rem 0 .912rem}h5{font-size:1.64rem;margin:.82rem 0 .656rem}h5,h6{line-height:110%}h6{font-size:1rem;margin:.5rem 0 .4rem}em{font-style:italic}strong{font-weight:500}small{font-size:75%}.light,.page-footer .footer-copyright{font-weight:300}.thin{font-weight:200}.flow-text{font-weight:300}@media only screen and (min-width:360px){.flow-text{font-size:1.2rem}}@media only screen and (min-width:390px){.flow-text{font-size:1.224rem}}@media only screen and (min-width:420px){.flow-text{font-size:1.248rem}}@media only screen and (min-width:450px){.flow-text{font-size:1.272rem}}@media only screen and (min-width:480px){.flow-text{font-size:1.296rem}}@media only screen and (min-width:510px){.flow-text{font-size:1.32rem}}@media only screen and (min-width:540px){.flow-text{font-size:1.344rem}}@media only screen and (min-width:570px){.flow-text{font-size:1.368rem}}@media only screen and (min-width:600px){.flow-text{font-size:1.392rem}}@media only screen and (min-width:630px){.flow-text{font-size:1.416rem}}@media only screen and (min-width:660px){.flow-text{font-size:1.44rem}}@media only screen and (min-width:690px){.flow-text{font-size:1.464rem}}@media only screen and (min-width:720px){.flow-text{font-size:1.488rem}}@media only screen and (min-width:750px){.flow-text{font-size:1.512rem}}@media only screen and (min-width:780px){.flow-text{font-size:1.536rem}}@media only screen and (min-width:810px){.flow-text{font-size:1.56rem}}@media only screen and (min-width:840px){.flow-text{font-size:1.584rem}}@media only screen and (min-width:870px){.flow-text{font-size:1.608rem}}@media only screen and (min-width:900px){.flow-text{font-size:1.632rem}}@media only screen and (min-width:930px){.flow-text{font-size:1.656rem}}@media only screen and (min-width:960px){.flow-text{font-size:1.68rem}}@media only screen and (max-width:360px){.flow-text{font-size:1.2rem}}.scale-transition{transition:-webkit-transform .3s cubic-bezier(.53,.01,.36,1.63)!important;transition:transform .3s cubic-bezier(.53,.01,.36,1.63)!important;transition:transform .3s cubic-bezier(.53,.01,.36,1.63),-webkit-transform .3s cubic-bezier(.53,.01,.36,1.63)!important}.scale-transition.scale-out{-webkit-transform:scale(0);transform:scale(0);transition:-webkit-transform .2s!important;transition:transform .2s!important;transition:transform .2s,-webkit-transform .2s!important}.scale-transition.scale-in{-webkit-transform:scale(1);transform:scale(1)}.card-panel{padding:24px}.card,.card-panel{transition:box-shadow .25s;margin:.5rem 0 1rem;border-radius:2px;background-color:#fff}.card{position:relative}.card .card-title{font-size:24px;font-weight:300}.card .card-title.activator{cursor:pointer}.card.large,.card.medium,.card.small{position:relative}.card.large .card-image,.card.medium .card-image,.card.small .card-image{max-height:60%;overflow:hidden}.card.large .card-image+.card-content,.card.medium .card-image+.card-content,.card.small .card-image+.card-content{max-height:40%}.card.large .card-content,.card.medium .card-content,.card.small .card-content{max-height:100%;overflow:hidden}.card.large .card-action,.card.medium .card-action,.card.small .card-action{position:absolute;bottom:0;left:0;right:0}.card.small{height:300px}.card.medium{height:400px}.card.large{height:500px}.card.horizontal{display:-webkit-flex;display:-ms-flexbox;display:flex}.card.horizontal.large .card-image,.card.horizontal.medium .card-image,.card.horizontal.small .card-image{height:100%;max-height:none;overflow:visible}.card.horizontal.large .card-image img,.card.horizontal.medium .card-image img,.card.horizontal.small .card-image img{height:100%}.card.horizontal .card-image{max-width:50%}.card.horizontal .card-image img{border-radius:2px 0 0 2px;max-width:100%;width:auto}.card.horizontal .card-stacked{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-flex:1;-ms-flex:1;flex:1;position:relative}.card.horizontal .card-stacked .card-content{-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.card.sticky-action .card-action{z-index:2}.card.sticky-action .card-reveal{z-index:1;padding-bottom:64px}.card .card-image{position:relative}.card .card-image img{display:block;border-radius:2px 2px 0 0;position:relative;left:0;right:0;top:0;bottom:0;width:100%}.card .card-image .card-title{color:#fff;position:absolute;bottom:0;left:0;max-width:100%;padding:24px}.card .card-content{padding:24px;border-radius:0 0 2px 2px}.card .card-content p{margin:0;color:inherit}.card .card-content .card-title{display:block;line-height:32px;margin-bottom:8px}.card .card-content .card-title i{line-height:32px}.card .card-action{position:relative;background-color:inherit;border-top:1px solid hsla(0,0%,63%,.2);padding:16px 24px}.card .card-action:last-child{border-radius:0 0 2px 2px}.card .card-action a:not(.btn):not(.btn-large):not(.btn-large):not(.btn-floating){color:#ffab40;margin-right:24px;transition:color .3s ease;text-transform:uppercase}.card .card-action a:not(.btn):not(.btn-large):not(.btn-large):not(.btn-floating):hover{color:#ffd8a6}.card .card-reveal{padding:24px;position:absolute;background-color:#fff;width:100%;overflow-y:auto;left:0;top:100%;height:100%;z-index:3;display:none}.card .card-reveal .card-title{cursor:pointer;display:block}#toast-container{display:block;position:fixed;z-index:10000}@media only screen and (max-width:600px){#toast-container{min-width:100%;bottom:0}}@media only screen and (min-width:601px) and (max-width:992px){#toast-container{left:5%;bottom:7%;max-width:90%}}@media only screen and (min-width:993px){#toast-container{top:10%;right:7%;max-width:86%}}.toast{border-radius:2px;top:35px;width:auto;clear:both;margin-top:10px;position:relative;max-width:100%;height:auto;min-height:48px;line-height:1.5em;word-break:break-all;background-color:#323232;padding:10px 25px;font-size:1.1rem;font-weight:300;color:#fff;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.toast .btn,.toast .btn-flat,.toast .btn-large{margin:0;margin-left:3rem}.toast.rounded{border-radius:24px}@media only screen and (max-width:600px){.toast{width:100%;border-radius:0}}@media only screen and (min-width:601px) and (max-width:992px){.toast{float:left}}@media only screen and (min-width:993px){.toast{float:right}}.tabs{position:relative;overflow-x:auto;overflow-y:hidden;height:48px;width:100%;background-color:#fff;margin:0 auto;white-space:nowrap}.tabs.tabs-transparent{background-color:transparent}.tabs.tabs-transparent .tab.disabled a,.tabs.tabs-transparent .tab.disabled a:hover,.tabs.tabs-transparent .tab a{color:hsla(0,0%,100%,.7)}.tabs.tabs-transparent .tab a.active,.tabs.tabs-transparent .tab a:hover{color:#fff}.tabs.tabs-transparent .indicator{background-color:#fff}.tabs.tabs-fixed-width{display:-webkit-flex;display:-ms-flexbox;display:flex}.tabs.tabs-fixed-width .tab{-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.tabs .tab{display:inline-block;text-align:center;line-height:48px;height:48px;padding:0;margin:0;text-transform:uppercase}.tabs .tab a{color:rgba(238,110,115,.7);display:block;width:100%;height:100%;padding:0 24px;font-size:14px;text-overflow:ellipsis;overflow:hidden;transition:color .28s ease}.tabs .tab a.active,.tabs .tab a:hover{background-color:transparent;color:#ee6e73}.tabs .tab.disabled a,.tabs .tab.disabled a:hover{color:rgba(238,110,115,.7);cursor:default}.tabs .indicator{position:absolute;bottom:0;height:2px;background-color:#f6b2b5;will-change:left,right}@media only screen and (max-width:992px){.tabs{display:-webkit-flex;display:-ms-flexbox;display:flex}.tabs .tab{-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.tabs .tab a{padding:0 12px}}.material-tooltip{padding:10px 8px;font-size:1rem;z-index:2000;background-color:transparent;border-radius:2px;color:#fff;min-height:36px;line-height:120%;text-align:center;max-width:calc(100% - 4px);overflow:hidden;left:0;top:0;pointer-events:none}.backdrop,.material-tooltip{opacity:0;position:absolute;visibility:hidden}.backdrop{height:7px;width:14px;border-radius:0 0 50% 50%;background-color:#323232;z-index:-1;-webkit-transform-origin:50% 0;transform-origin:50% 0}.btn,.btn-flat,.btn-large{border:none;border-radius:2px;display:inline-block;height:36px;line-height:36px;padding:0 2rem;text-transform:uppercase;vertical-align:middle;-webkit-tap-highlight-color:transparent}.btn-flat.disabled,.btn-flat:disabled,.btn-flat[disabled],.btn-floating.disabled,.btn-floating:disabled,.btn-floating[disabled],.btn-large.disabled,.btn-large:disabled,.btn-large[disabled],.btn.disabled,.btn:disabled,.btn[disabled],.disabled.btn-large,[disabled].btn-large{pointer-events:none;background-color:#dfdfdf!important;box-shadow:none;color:#9f9f9f!important;cursor:default}.btn-flat.disabled:hover,.btn-flat:disabled:hover,.btn-flat[disabled]:hover,.btn-floating.disabled:hover,.btn-floating:disabled:hover,.btn-floating[disabled]:hover,.btn-large.disabled:hover,.btn-large:disabled:hover,.btn-large[disabled]:hover,.btn.disabled:hover,.btn:disabled:hover,.btn[disabled]:hover,.disabled.btn-large:hover,[disabled].btn-large:hover{background-color:#dfdfdf!important;color:#9f9f9f!important}.btn,.btn-flat,.btn-floating,.btn-large{font-size:1rem;outline:0}.btn-flat i,.btn-floating i,.btn-large i,.btn i{font-size:1.3rem;line-height:inherit}.btn-floating:focus,.btn-large:focus,.btn:focus{background-color:#1d7d74}.btn,.btn-large{text-decoration:none;color:#fff;background-color:#26a69a;text-align:center;letter-spacing:.5px;transition:.2s ease-out;cursor:pointer}.btn-large:hover,.btn:hover{background-color:#2bbbad}.btn-floating{display:inline-block;color:#fff;position:relative;overflow:hidden;z-index:1;width:40px;height:40px;line-height:40px;padding:0;border-radius:50%;transition:.3s;cursor:pointer;vertical-align:middle}.btn-floating,.btn-floating:hover{background-color:#26a69a}.btn-floating:before{border-radius:0}.btn-floating.btn-large{width:56px;height:56px}.btn-floating.btn-large.halfway-fab{bottom:-28px}.btn-floating.btn-large i{line-height:56px}.btn-floating.halfway-fab{position:absolute;right:24px;bottom:-20px}.btn-floating.halfway-fab.left{right:auto;left:24px}.btn-floating i{width:inherit;display:inline-block;text-align:center;color:#fff;font-size:1.6rem;line-height:40px}button.btn-floating{border:none}.fixed-action-btn{position:fixed;right:23px;bottom:23px;padding-top:15px;margin-bottom:0;z-index:998}.fixed-action-btn.active ul{visibility:visible}.fixed-action-btn.horizontal{padding:0 0 0 15px}.fixed-action-btn.horizontal ul{text-align:right;right:64px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);height:100%;left:auto;width:500px}.fixed-action-btn.horizontal ul li{display:inline-block;margin:15px 15px 0 0}.fixed-action-btn.toolbar{padding:0;height:56px}.fixed-action-btn.toolbar.active>a i{opacity:0}.fixed-action-btn.toolbar ul{display:-webkit-flex;display:-ms-flexbox;display:flex;top:0;bottom:0}.fixed-action-btn.toolbar ul li{-webkit-flex:1;-ms-flex:1;flex:1;display:inline-block;margin:0;height:100%;transition:none}.fixed-action-btn.toolbar ul li a{display:block;overflow:hidden;position:relative;width:100%;height:100%;background-color:transparent;box-shadow:none;color:#fff;line-height:56px;z-index:1}.fixed-action-btn.toolbar ul li a i{line-height:inherit}.fixed-action-btn ul{left:0;right:0;text-align:center;position:absolute;bottom:64px;margin:0;visibility:hidden}.fixed-action-btn ul li{margin-bottom:15px}.fixed-action-btn ul a.btn-floating{opacity:0}.fixed-action-btn .fab-backdrop{position:absolute;top:0;left:0;z-index:-1;width:40px;height:40px;background-color:#26a69a;border-radius:50%;-webkit-transform:scale(0);transform:scale(0)}.btn-flat{box-shadow:none;color:#343434;cursor:pointer;transition:background-color .2s}.btn-flat,.btn-flat:active,.btn-flat:focus{background-color:transparent}.btn-flat:focus,.btn-flat:hover{background-color:rgba(0,0,0,.1);box-shadow:none}.btn-flat:active{background-color:rgba(0,0,0,.2)}.btn-flat.disabled{background-color:transparent!important;color:#b3b3b3!important;cursor:default}.btn-large{height:54px;line-height:54px}.btn-large i{font-size:1.6rem}.btn-block{display:block}.dropdown-content{background-color:#fff;margin:0;display:none;min-width:100px;max-height:650px;overflow-y:auto;opacity:0;position:absolute;z-index:999;will-change:width,height}.dropdown-content li{clear:both;color:rgba(0,0,0,.87);cursor:pointer;min-height:50px;line-height:1.5rem;width:100%;text-align:left;text-transform:none}.dropdown-content li.active,.dropdown-content li.selected,.dropdown-content li:hover{background-color:#eee}.dropdown-content li.active.selected{background-color:#e1e1e1}.dropdown-content li.divider{min-height:0;height:1px}.dropdown-content li>a,.dropdown-content li>span{font-size:16px;color:#26a69a;display:block;line-height:22px;padding:14px 16px}.dropdown-content li>span>label{top:1px;left:0;height:18px}.dropdown-content li>a>i{height:inherit;line-height:inherit;float:left;margin:0 24px 0 0;width:24px}.input-field.col .dropdown-content [type=checkbox]+label{top:1px;left:0;height:18px}.waves-effect{position:relative;cursor:pointer;display:inline-block;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;vertical-align:middle;z-index:1;transition:.3s ease-out}.waves-effect .waves-ripple{position:absolute;border-radius:50%;width:20px;height:20px;margin-top:-10px;margin-left:-10px;opacity:0;background:rgba(0,0,0,.2);transition:all .7s ease-out;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;-webkit-transform:scale(0);transform:scale(0);pointer-events:none}.waves-effect.waves-light .waves-ripple{background-color:hsla(0,0%,100%,.45)}.waves-effect.waves-red .waves-ripple{background-color:rgba(244,67,54,.7)}.waves-effect.waves-yellow .waves-ripple{background-color:rgba(255,235,59,.7)}.waves-effect.waves-orange .waves-ripple{background-color:rgba(255,152,0,.7)}.waves-effect.waves-purple .waves-ripple{background-color:rgba(156,39,176,.7)}.waves-effect.waves-green .waves-ripple{background-color:rgba(76,175,80,.7)}.waves-effect.waves-teal .waves-ripple{background-color:rgba(0,150,136,.7)}.waves-effect input[type=button],.waves-effect input[type=reset],.waves-effect input[type=submit]{border:0;font-style:normal;font-size:inherit;text-transform:inherit;background:none}.waves-effect img{position:relative;z-index:-1}.waves-notransition{transition:none!important}.waves-circle{-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-mask-image:-webkit-radial-gradient(circle,#fff 100%,#000 0)}.waves-input-wrapper{border-radius:.2em;vertical-align:bottom}.waves-input-wrapper .waves-button-input{position:relative;top:0;left:0;z-index:1}.waves-circle{text-align:center;width:2.5em;height:2.5em;line-height:2.5em;border-radius:50%;-webkit-mask-image:none}.waves-block{display:block}.waves-effect .waves-ripple{z-index:-1}.modal{display:none;position:fixed;left:0;right:0;background-color:#fafafa;padding:0;max-height:70%;width:55%;margin:auto;overflow-y:auto;border-radius:2px;will-change:top,opacity}@media only screen and (max-width:992px){.modal{width:80%}}.modal h1,.modal h2,.modal h3,.modal h4{margin-top:0}.modal .modal-content{padding:24px}.modal .modal-close{cursor:pointer}.modal .modal-footer{border-radius:0 0 2px 2px;background-color:#fafafa;padding:4px 6px;height:56px;width:100%}.modal .modal-footer .btn,.modal .modal-footer .btn-flat,.modal .modal-footer .btn-large{float:right;margin:6px 0}.modal-overlay{position:fixed;z-index:999;top:-100px;left:0;bottom:0;right:0;height:125%;width:100%;background:#000;display:none;will-change:opacity}.modal.modal-fixed-footer{padding:0;height:70%}.modal.modal-fixed-footer .modal-content{position:absolute;height:calc(100% - 56px);max-height:100%;width:100%;overflow-y:auto}.modal.modal-fixed-footer .modal-footer{border-top:1px solid rgba(0,0,0,.1);position:absolute;bottom:0}.modal.bottom-sheet{top:auto;bottom:-100%;margin:0;width:100%;max-height:45%;border-radius:0;will-change:bottom,opacity}.collapsible{border-top:1px solid #ddd;border-right:1px solid #ddd;border-left:1px solid #ddd;margin:.5rem 0 1rem}.collapsible-header{display:block;cursor:pointer;min-height:3rem;line-height:3rem;padding:0 1rem;background-color:#fff;border-bottom:1px solid #ddd}.collapsible-header i{width:2rem;font-size:1.6rem;line-height:3rem;display:block;float:left;text-align:center;margin-right:1rem}.collapsible-body{display:none;border-bottom:1px solid #ddd;box-sizing:border-box;padding:2rem}.side-nav .collapsible,.side-nav.fixed .collapsible{border:none;box-shadow:none}.side-nav .collapsible li,.side-nav.fixed .collapsible li{padding:0}.side-nav .collapsible-header,.side-nav.fixed .collapsible-header{background-color:transparent;border:none;line-height:inherit;height:inherit;padding:0 16px}.side-nav .collapsible-header:hover,.side-nav.fixed .collapsible-header:hover{background-color:rgba(0,0,0,.05)}.side-nav .collapsible-header i,.side-nav.fixed .collapsible-header i{line-height:inherit}.side-nav .collapsible-body,.side-nav.fixed .collapsible-body{border:0;background-color:#fff}.side-nav .collapsible-body li a,.side-nav.fixed .collapsible-body li a{padding:0 23.5px 0 31px}.collapsible.popout{border:none;box-shadow:none}.collapsible.popout>li{box-shadow:0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);margin:0 24px;transition:margin .35s cubic-bezier(.25,.46,.45,.94)}.collapsible.popout>li.active{box-shadow:0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15);margin:16px 0}.chip{display:inline-block;height:32px;font-size:13px;font-weight:500;color:rgba(0,0,0,.6);line-height:32px;padding:0 12px;border-radius:16px;background-color:#e4e4e4;margin-bottom:5px;margin-right:5px}.chip>img{float:left;margin:0 8px 0 -12px;height:32px;width:32px;border-radius:50%}.chip .close{cursor:pointer;float:right;font-size:16px;line-height:32px;padding-left:8px}.chips{border:none;border-bottom:1px solid #9e9e9e;box-shadow:none;margin:0 0 20px;min-height:45px;outline:none;transition:all .3s}.chips.focus{border-bottom:1px solid #26a69a;box-shadow:0 1px 0 0 #26a69a}.chips:hover{cursor:text}.chips .chip.selected{background-color:#26a69a;color:#fff}.chips .input{background:none;border:0;color:rgba(0,0,0,.6);display:inline-block;font-size:1rem;height:3rem;line-height:32px;outline:0;margin:0;padding:0!important;width:120px!important}.chips .input:focus{border:0!important;box-shadow:none!important}.chips .autocomplete-content{margin-top:0}.prefix~.chips{margin-left:3rem;width:92%;width:calc(100% - 3rem)}.chips:empty~label{font-size:.8rem;-webkit-transform:translateY(-140%);transform:translateY(-140%)}.materialboxed{display:block;cursor:-webkit-zoom-in;cursor:zoom-in;position:relative;transition:opacity .4s;-webkit-backface-visibility:hidden}.materialboxed:hover:not(.active){opacity:.8}.materialboxed.active{cursor:-webkit-zoom-out;cursor:zoom-out}#materialbox-overlay{top:0;right:0;background-color:#292929;will-change:opacity}#materialbox-overlay,.materialbox-caption{position:fixed;bottom:0;left:0;z-index:1000}.materialbox-caption{display:none;color:#fff;line-height:50px;width:100%;text-align:center;padding:0 15%;height:50px;-webkit-font-smoothing:antialiased}select:focus{outline:1px solid #c9f3ef}button:focus{outline:none;background-color:#2ab7a9}label{font-size:.8rem;color:#9e9e9e}::-webkit-input-placeholder{color:#d1d1d1}:-moz-placeholder,::-moz-placeholder{color:#d1d1d1}:-ms-input-placeholder{color:#d1d1d1}input:not([type]),input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],textarea.materialize-textarea{background-color:transparent;border:none;border-bottom:1px solid #9e9e9e;border-radius:0;outline:none;height:3rem;width:100%;font-size:1rem;margin:0 0 20px;padding:0;box-shadow:none;box-sizing:content-box;transition:all .3s}input:not([type]):disabled,input:not([type])[readonly=readonly],input[type=date]:disabled,input[type=date][readonly=readonly],input[type=datetime-local]:disabled,input[type=datetime-local][readonly=readonly],input[type=datetime]:disabled,input[type=datetime][readonly=readonly],input[type=email]:disabled,input[type=email][readonly=readonly],input[type=number]:disabled,input[type=number][readonly=readonly],input[type=password]:disabled,input[type=password][readonly=readonly],input[type=search]:disabled,input[type=search][readonly=readonly],input[type=tel]:disabled,input[type=tel][readonly=readonly],input[type=text]:disabled,input[type=text][readonly=readonly],input[type=time]:disabled,input[type=time][readonly=readonly],input[type=url]:disabled,input[type=url][readonly=readonly],textarea.materialize-textarea:disabled,textarea.materialize-textarea[readonly=readonly]{color:rgba(0,0,0,.26);border-bottom:1px dotted rgba(0,0,0,.26)}input:not([type]):disabled+label,input:not([type])[readonly=readonly]+label,input[type=date]:disabled+label,input[type=date][readonly=readonly]+label,input[type=datetime-local]:disabled+label,input[type=datetime-local][readonly=readonly]+label,input[type=datetime]:disabled+label,input[type=datetime][readonly=readonly]+label,input[type=email]:disabled+label,input[type=email][readonly=readonly]+label,input[type=number]:disabled+label,input[type=number][readonly=readonly]+label,input[type=password]:disabled+label,input[type=password][readonly=readonly]+label,input[type=search]:disabled+label,input[type=search][readonly=readonly]+label,input[type=tel]:disabled+label,input[type=tel][readonly=readonly]+label,input[type=text]:disabled+label,input[type=text][readonly=readonly]+label,input[type=time]:disabled+label,input[type=time][readonly=readonly]+label,input[type=url]:disabled+label,input[type=url][readonly=readonly]+label,textarea.materialize-textarea:disabled+label,textarea.materialize-textarea[readonly=readonly]+label{color:rgba(0,0,0,.26)}input:not([type]):focus:not([readonly]),input[type=date]:focus:not([readonly]),input[type=datetime-local]:focus:not([readonly]),input[type=datetime]:focus:not([readonly]),input[type=email]:focus:not([readonly]),input[type=number]:focus:not([readonly]),input[type=password]:focus:not([readonly]),input[type=search]:focus:not([readonly]),input[type=tel]:focus:not([readonly]),input[type=text]:focus:not([readonly]),input[type=time]:focus:not([readonly]),input[type=url]:focus:not([readonly]),textarea.materialize-textarea:focus:not([readonly]){border-bottom:1px solid #26a69a;box-shadow:0 1px 0 0 #26a69a}input:not([type]):focus:not([readonly])+label,input[type=date]:focus:not([readonly])+label,input[type=datetime-local]:focus:not([readonly])+label,input[type=datetime]:focus:not([readonly])+label,input[type=email]:focus:not([readonly])+label,input[type=number]:focus:not([readonly])+label,input[type=password]:focus:not([readonly])+label,input[type=search]:focus:not([readonly])+label,input[type=tel]:focus:not([readonly])+label,input[type=text]:focus:not([readonly])+label,input[type=time]:focus:not([readonly])+label,input[type=url]:focus:not([readonly])+label,textarea.materialize-textarea:focus:not([readonly])+label{color:#26a69a}input:not([type]).valid,input:not([type]):focus.valid,input[type=date].valid,input[type=date]:focus.valid,input[type=datetime-local].valid,input[type=datetime-local]:focus.valid,input[type=datetime].valid,input[type=datetime]:focus.valid,input[type=email].valid,input[type=email]:focus.valid,input[type=number].valid,input[type=number]:focus.valid,input[type=password].valid,input[type=password]:focus.valid,input[type=search].valid,input[type=search]:focus.valid,input[type=tel].valid,input[type=tel]:focus.valid,input[type=text].valid,input[type=text]:focus.valid,input[type=time].valid,input[type=time]:focus.valid,input[type=url].valid,input[type=url]:focus.valid,textarea.materialize-textarea.valid,textarea.materialize-textarea:focus.valid{border-bottom:1px solid #4caf50;box-shadow:0 1px 0 0 #4caf50}input:not([type]).valid+label:after,input:not([type]):focus.valid+label:after,input[type=date].valid+label:after,input[type=date]:focus.valid+label:after,input[type=datetime-local].valid+label:after,input[type=datetime-local]:focus.valid+label:after,input[type=datetime].valid+label:after,input[type=datetime]:focus.valid+label:after,input[type=email].valid+label:after,input[type=email]:focus.valid+label:after,input[type=number].valid+label:after,input[type=number]:focus.valid+label:after,input[type=password].valid+label:after,input[type=password]:focus.valid+label:after,input[type=search].valid+label:after,input[type=search]:focus.valid+label:after,input[type=tel].valid+label:after,input[type=tel]:focus.valid+label:after,input[type=text].valid+label:after,input[type=text]:focus.valid+label:after,input[type=time].valid+label:after,input[type=time]:focus.valid+label:after,input[type=url].valid+label:after,input[type=url]:focus.valid+label:after,textarea.materialize-textarea.valid+label:after,textarea.materialize-textarea:focus.valid+label:after{content:attr(data-success);color:#4caf50;opacity:1}input:not([type]).invalid,input:not([type]):focus.invalid,input[type=date].invalid,input[type=date]:focus.invalid,input[type=datetime-local].invalid,input[type=datetime-local]:focus.invalid,input[type=datetime].invalid,input[type=datetime]:focus.invalid,input[type=email].invalid,input[type=email]:focus.invalid,input[type=number].invalid,input[type=number]:focus.invalid,input[type=password].invalid,input[type=password]:focus.invalid,input[type=search].invalid,input[type=search]:focus.invalid,input[type=tel].invalid,input[type=tel]:focus.invalid,input[type=text].invalid,input[type=text]:focus.invalid,input[type=time].invalid,input[type=time]:focus.invalid,input[type=url].invalid,input[type=url]:focus.invalid,textarea.materialize-textarea.invalid,textarea.materialize-textarea:focus.invalid{border-bottom:1px solid #f44336;box-shadow:0 1px 0 0 #f44336}input:not([type]).invalid+label:after,input:not([type]):focus.invalid+label:after,input[type=date].invalid+label:after,input[type=date]:focus.invalid+label:after,input[type=datetime-local].invalid+label:after,input[type=datetime-local]:focus.invalid+label:after,input[type=datetime].invalid+label:after,input[type=datetime]:focus.invalid+label:after,input[type=email].invalid+label:after,input[type=email]:focus.invalid+label:after,input[type=number].invalid+label:after,input[type=number]:focus.invalid+label:after,input[type=password].invalid+label:after,input[type=password]:focus.invalid+label:after,input[type=search].invalid+label:after,input[type=search]:focus.invalid+label:after,input[type=tel].invalid+label:after,input[type=tel]:focus.invalid+label:after,input[type=text].invalid+label:after,input[type=text]:focus.invalid+label:after,input[type=time].invalid+label:after,input[type=time]:focus.invalid+label:after,input[type=url].invalid+label:after,input[type=url]:focus.invalid+label:after,textarea.materialize-textarea.invalid+label:after,textarea.materialize-textarea:focus.invalid+label:after{content:attr(data-error);color:#f44336;opacity:1}input:not([type]).validate+label,input[type=date].validate+label,input[type=datetime-local].validate+label,input[type=datetime].validate+label,input[type=email].validate+label,input[type=number].validate+label,input[type=password].validate+label,input[type=search].validate+label,input[type=tel].validate+label,input[type=text].validate+label,input[type=time].validate+label,input[type=url].validate+label,textarea.materialize-textarea.validate+label{width:100%;pointer-events:none}input:not([type])+label:after,input[type=date]+label:after,input[type=datetime-local]+label:after,input[type=datetime]+label:after,input[type=email]+label:after,input[type=number]+label:after,input[type=password]+label:after,input[type=search]+label:after,input[type=tel]+label:after,input[type=text]+label:after,input[type=time]+label:after,input[type=url]+label:after,textarea.materialize-textarea+label:after{display:block;content:"";position:absolute;top:60px;opacity:0;transition:opacity .2s ease-out,color .2s ease-out}.input-field{position:relative;margin-top:1rem}.input-field.inline{display:inline-block;vertical-align:middle;margin-left:5px}.input-field.inline .select-dropdown,.input-field.inline input{margin-bottom:1rem}.input-field.col label{left:.75rem}.input-field.col .prefix~.validate~label,.input-field.col .prefix~label{width:calc(100% - 3rem - 1.5rem)}.input-field label{color:#9e9e9e;position:absolute;top:.8rem;left:0;font-size:1rem;cursor:text;transition:.2s ease-out;text-align:initial}.input-field label:not(.label-icon).active{font-size:.8rem;-webkit-transform:translateY(-140%);transform:translateY(-140%)}.input-field .prefix{position:absolute;width:3rem;font-size:2rem;transition:color .2s}.input-field .prefix.active{color:#26a69a}.input-field .prefix~.autocomplete-content,.input-field .prefix~.validate~label,.input-field .prefix~input,.input-field .prefix~label,.input-field .prefix~textarea{margin-left:3rem;width:92%;width:calc(100% - 3rem)}.input-field .prefix~label{margin-left:3rem}@media only screen and (max-width:992px){.input-field .prefix~input{width:86%;width:calc(100% - 3rem)}}@media only screen and (max-width:600px){.input-field .prefix~input{width:80%;width:calc(100% - 3rem)}}.input-field input[type=search]{display:block;line-height:inherit;padding-left:4rem;width:calc(100% - 4rem)}.input-field input[type=search]:focus{background-color:#fff;border:0;box-shadow:none;color:#444}.input-field input[type=search]:focus+label i,.input-field input[type=search]:focus~.material-icons,.input-field input[type=search]:focus~.mdi-navigation-close{color:#444}.input-field input[type=search]+label{left:1rem}.input-field input[type=search]~.material-icons,.input-field input[type=search]~.mdi-navigation-close{position:absolute;top:0;right:1rem;color:transparent;cursor:pointer;font-size:2rem;transition:color .3s}textarea{width:100%;height:3rem;background-color:transparent}textarea.materialize-textarea{overflow-y:hidden;padding:.8rem 0 1.6rem;resize:none;min-height:3rem}.hiddendiv{display:none;white-space:pre-wrap;word-wrap:break-word;overflow-wrap:break-word;padding-top:1.2rem;position:absolute;top:0}.autocomplete-content{margin-top:-20px;display:block;opacity:1;position:static}.autocomplete-content li .highlight{color:#444}.autocomplete-content li img{height:40px;width:40px;margin:5px 15px}[type=radio]:checked,[type=radio]:not(:checked){position:absolute;left:-9999px;opacity:0}[type=radio]:checked+label,[type=radio]:not(:checked)+label{position:relative;padding-left:35px;cursor:pointer;display:inline-block;height:25px;line-height:25px;font-size:1rem;transition:.28s ease;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}[type=radio]+label:after,[type=radio]+label:before{content:"";position:absolute;left:0;top:0;margin:4px;width:16px;height:16px;z-index:0;transition:.28s ease}[type=radio].with-gap:checked+label:after,[type=radio].with-gap:checked+label:before,[type=radio]:checked+label:after,[type=radio]:checked+label:before,[type=radio]:not(:checked)+label:after,[type=radio]:not(:checked)+label:before{border-radius:50%}[type=radio]:not(:checked)+label:after,[type=radio]:not(:checked)+label:before{border:2px solid #5a5a5a}[type=radio]:not(:checked)+label:after{-webkit-transform:scale(0);transform:scale(0)}[type=radio]:checked+label:before{border:2px solid transparent}[type=radio].with-gap:checked+label:after,[type=radio].with-gap:checked+label:before,[type=radio]:checked+label:after{border:2px solid #26a69a}[type=radio].with-gap:checked+label:after,[type=radio]:checked+label:after{background-color:#26a69a}[type=radio]:checked+label:after{-webkit-transform:scale(1.02);transform:scale(1.02)}[type=radio].with-gap:checked+label:after{-webkit-transform:scale(.5);transform:scale(.5)}[type=radio].tabbed:focus+label:before{box-shadow:0 0 0 10px rgba(0,0,0,.1)}[type=radio].with-gap:disabled:checked+label:before{border:2px solid rgba(0,0,0,.26)}[type=radio].with-gap:disabled:checked+label:after{border:none;background-color:rgba(0,0,0,.26)}[type=radio]:disabled:checked+label:before,[type=radio]:disabled:not(:checked)+label:before{background-color:transparent;border-color:rgba(0,0,0,.26)}[type=radio]:disabled+label{color:rgba(0,0,0,.26)}[type=radio]:disabled:not(:checked)+label:before{border-color:rgba(0,0,0,.26)}[type=radio]:disabled:checked+label:after{background-color:rgba(0,0,0,.26);border-color:#bdbdbd}form p{margin-bottom:10px;text-align:left}form p:last-child{margin-bottom:0}[type=checkbox]:checked,[type=checkbox]:not(:checked){position:absolute;left:-9999px;opacity:0}[type=checkbox]+label{position:relative;padding-left:35px;cursor:pointer;display:inline-block;height:25px;line-height:25px;font-size:1rem;-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}[type=checkbox]+label:before,[type=checkbox]:not(.filled-in)+label:after{content:"";position:absolute;top:0;left:0;width:18px;height:18px;z-index:0;border:2px solid #5a5a5a;border-radius:1px;margin-top:2px;transition:.2s}[type=checkbox]:not(.filled-in)+label:after{border:0;-webkit-transform:scale(0);transform:scale(0)}[type=checkbox]:not(:checked):disabled+label:before{border:none;background-color:rgba(0,0,0,.26)}[type=checkbox].tabbed:focus+label:after{-webkit-transform:scale(1);transform:scale(1);border:0;border-radius:50%;box-shadow:0 0 0 10px rgba(0,0,0,.1);background-color:rgba(0,0,0,.1)}[type=checkbox]:checked+label:before{top:-4px;left:-5px;width:12px;height:22px;border-top:2px solid transparent;border-left:2px solid transparent;border-right:2px solid #26a69a;border-bottom:2px solid #26a69a;-webkit-transform:rotate(40deg);transform:rotate(40deg);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-origin:100% 100%;transform-origin:100% 100%}[type=checkbox]:checked:disabled+label:before{border-right:2px solid rgba(0,0,0,.26);border-bottom:2px solid rgba(0,0,0,.26)}[type=checkbox]:indeterminate+label:before{top:-11px;left:-12px;width:10px;height:22px;border-top:none;border-left:none;border-right:2px solid #26a69a;border-bottom:none;-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-origin:100% 100%;transform-origin:100% 100%}[type=checkbox]:indeterminate:disabled+label:before{border-right:2px solid rgba(0,0,0,.26);background-color:transparent}[type=checkbox].filled-in+label:after{border-radius:2px}[type=checkbox].filled-in+label:after,[type=checkbox].filled-in+label:before{content:"";left:0;position:absolute;transition:border .25s,background-color .25s,width .2s .1s,height .2s .1s,top .2s .1s,left .2s .1s;z-index:1}[type=checkbox].filled-in:not(:checked)+label:before{width:0;height:0;border:3px solid transparent;left:6px;top:10px;-webkit-transform:rotate(37deg);transform:rotate(37deg);-webkit-transform-origin:20% 40%;transform-origin:100% 100%}[type=checkbox].filled-in:not(:checked)+label:after{height:20px;width:20px;background-color:transparent;border:2px solid #5a5a5a;top:0;z-index:0}[type=checkbox].filled-in:checked+label:before{top:0;left:1px;width:8px;height:13px;border-top:2px solid transparent;border-left:2px solid transparent;border-right:2px solid #fff;border-bottom:2px solid #fff;-webkit-transform:rotate(37deg);transform:rotate(37deg);-webkit-transform-origin:100% 100%;transform-origin:100% 100%}[type=checkbox].filled-in:checked+label:after{top:0;width:20px;height:20px;border:2px solid #26a69a;background-color:#26a69a;z-index:0}[type=checkbox].filled-in.tabbed:focus+label:after{border-radius:2px;border-color:#5a5a5a;background-color:rgba(0,0,0,.1)}[type=checkbox].filled-in.tabbed:checked:focus+label:after{border-radius:2px;background-color:#26a69a;border-color:#26a69a}[type=checkbox].filled-in:disabled:not(:checked)+label:before{background-color:transparent;border:2px solid transparent}[type=checkbox].filled-in:disabled:not(:checked)+label:after{border-color:transparent;background-color:#bdbdbd}[type=checkbox].filled-in:disabled:checked+label:before{background-color:transparent}[type=checkbox].filled-in:disabled:checked+label:after{background-color:#bdbdbd;border-color:#bdbdbd}.switch,.switch *{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.switch label{cursor:pointer}.switch label input[type=checkbox]{opacity:0;width:0;height:0}.switch label input[type=checkbox]:checked+.lever{background-color:#84c7c1}.switch label input[type=checkbox]:checked+.lever:after{background-color:#26a69a;left:24px}.switch label .lever{content:"";display:inline-block;position:relative;width:40px;height:15px;background-color:#818181;border-radius:15px;margin-right:10px;transition:background .3s ease;vertical-align:middle;margin:0 16px}.switch label .lever:after{content:"";position:absolute;display:inline-block;width:21px;height:21px;background-color:#f1f1f1;border-radius:21px;box-shadow:0 1px 3px 1px rgba(0,0,0,.4);left:-5px;top:-3px;transition:left .3s ease,background .3s ease,box-shadow .1s ease}input[type=checkbox]:checked:not(:disabled).tabbed:focus~.lever:after,input[type=checkbox]:checked:not(:disabled)~.lever:active:after{box-shadow:0 1px 3px 1px rgba(0,0,0,.4),0 0 0 15px rgba(38,166,154,.1)}input[type=checkbox]:not(:disabled).tabbed:focus~.lever:after,input[type=checkbox]:not(:disabled)~.lever:active:after{box-shadow:0 1px 3px 1px rgba(0,0,0,.4),0 0 0 15px rgba(0,0,0,.08)}.switch input[type=checkbox][disabled]+.lever{cursor:default}.switch label input[type=checkbox][disabled]+.lever:after,.switch label input[type=checkbox][disabled]:checked+.lever:after{background-color:#bdbdbd}select{display:none}select.browser-default{display:block}select{background-color:hsla(0,0%,100%,.9);width:100%;padding:5px;border:1px solid #f2f2f2;border-radius:2px;height:3rem}.select-label{position:absolute}.select-wrapper{position:relative}.select-wrapper input.select-dropdown{position:relative;cursor:pointer;background-color:transparent;border:none;border-bottom:1px solid #9e9e9e;outline:none;height:3rem;line-height:3rem;width:100%;font-size:1rem;margin:0 0 20px;padding:0;display:block}.select-wrapper span.caret{color:initial;position:absolute;right:0;top:0;bottom:0;height:10px;margin:auto 0;font-size:10px;line-height:10px}.select-wrapper span.caret.disabled{color:rgba(0,0,0,.26)}.select-wrapper+label{position:absolute;top:-14px;font-size:.8rem}select:disabled{color:rgba(0,0,0,.3)}.select-wrapper input.select-dropdown:disabled{color:rgba(0,0,0,.3);cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;border-bottom:1px solid rgba(0,0,0,.3)}.select-wrapper i{color:rgba(0,0,0,.3)}.select-dropdown li.disabled,.select-dropdown li.disabled>span,.select-dropdown li.optgroup{color:rgba(0,0,0,.3);background-color:transparent}.prefix~.select-wrapper{margin-left:3rem;width:92%;width:calc(100% - 3rem)}.prefix~label{margin-left:3rem}.select-dropdown li img{height:40px;width:40px;margin:5px 15px;float:right}.select-dropdown li.optgroup{border-top:1px solid #eee}.select-dropdown li.optgroup.selected>span{color:rgba(0,0,0,.7)}.select-dropdown li.optgroup>span{color:rgba(0,0,0,.4)}.select-dropdown li.optgroup~li.optgroup-option{padding-left:1rem}.file-field{position:relative}.file-field .file-path-wrapper{overflow:hidden;padding-left:10px}.file-field input.file-path{width:100%}.file-field .btn,.file-field .btn-large{float:left;height:3rem;line-height:3rem}.file-field span{cursor:pointer}.file-field input[type=file]{position:absolute;top:0;right:0;left:0;bottom:0;width:100%;margin:0;padding:0;font-size:20px;cursor:pointer;opacity:0;filter:alpha(opacity=0)}.range-field{position:relative}input[type=range],input[type=range]+.thumb{cursor:pointer}input[type=range]{position:relative;background-color:transparent;border:none;outline:none;width:100%;margin:15px 0;padding:0}input[type=range]:focus{outline:none}input[type=range]+.thumb{position:absolute;top:10px;left:0;border:none;height:0;width:0;border-radius:50%;background-color:#26a69a;margin-left:7px;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}input[type=range]+.thumb .value{display:block;width:30px;text-align:center;color:#26a69a;font-size:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}input[type=range]+.thumb.active{border-radius:50% 50% 50% 0}input[type=range]+.thumb.active .value{color:#fff;margin-left:-1px;margin-top:8px;font-size:10px}input[type=range]{-webkit-appearance:none}input[type=range]::-webkit-slider-runnable-track{height:3px;background:#c2c0c2;border:none}input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;border:none;height:14px;width:14px;border-radius:50%;background-color:#26a69a;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;margin:-5px 0 0;transition:.3s}input[type=range]:focus::-webkit-slider-runnable-track{background:#ccc}input[type=range]{border:1px solid #fff}input[type=range]::-moz-range-track{height:3px;background:#ddd;border:none}input[type=range]::-moz-range-thumb{border:none;height:14px;width:14px;border-radius:50%;background:#26a69a;margin-top:-5px}input[type=range]:-moz-focusring{outline:1px solid #fff;outline-offset:-1px}input[type=range]:focus::-moz-range-track{background:#ccc}input[type=range]::-ms-track{height:3px;background:transparent;border-color:transparent;border-width:6px 0;color:transparent}input[type=range]::-ms-fill-lower{background:#777}input[type=range]::-ms-fill-upper{background:#ddd}input[type=range]::-ms-thumb{border:none;height:14px;width:14px;border-radius:50%;background:#26a69a}input[type=range]:focus::-ms-fill-lower{background:#888}input[type=range]:focus::-ms-fill-upper{background:#ccc}.table-of-contents.fixed{position:fixed}.table-of-contents li{padding:2px 0}.table-of-contents a{font-weight:300;color:#757575;padding-left:20px;height:1.5rem;line-height:1.5rem;letter-spacing:.4;display:inline-block}.table-of-contents a:hover{color:#a8a8a8;padding-left:19px;border-left:1px solid #ee6e73}.table-of-contents a.active{font-weight:500;padding-left:18px;border-left:2px solid #ee6e73}.side-nav{position:fixed;width:300px;left:0;top:0;margin:0;-webkit-transform:translateX(-100%);transform:translateX(-100%);height:calc(100% + 60px);height:100%;padding-bottom:60px;background-color:#fff;z-index:999;overflow-y:auto;will-change:transform;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateX(-105%);transform:translateX(-105%)}.side-nav.right-aligned{right:0;-webkit-transform:translateX(105%);transform:translateX(105%);left:auto;-webkit-transform:translateX(100%);transform:translateX(100%)}.side-nav .collapsible{margin:0}.side-nav li{float:none;line-height:48px}.side-nav li.active{background-color:rgba(0,0,0,.05)}.side-nav li>a{color:rgba(0,0,0,.87);display:block;font-size:14px;font-weight:500;height:48px;line-height:48px;padding:0 32px}.side-nav li>a:hover{background-color:rgba(0,0,0,.05)}.side-nav li>a.btn,.side-nav li>a.btn-flat,.side-nav li>a.btn-floating,.side-nav li>a.btn-large{margin:10px 15px}.side-nav li>a.btn,.side-nav li>a.btn-floating,.side-nav li>a.btn-large{color:#fff}.side-nav li>a.btn-flat{color:#343434}.side-nav li>a.btn-large:hover,.side-nav li>a.btn:hover{background-color:#2bbbad}.side-nav li>a.btn-floating:hover{background-color:#26a69a}.side-nav li>a>[class^=mdi-],.side-nav li>a>i,.side-nav li>a>i.material-icons,.side-nav li>a li>a>[class*=mdi-]{float:left;height:48px;line-height:48px;margin:0 32px 0 0;width:24px;color:rgba(0,0,0,.54)}.side-nav .divider{margin:8px 0 0}.side-nav .subheader{cursor:auto;pointer-events:none;color:rgba(0,0,0,.54);font-size:14px;font-weight:500;line-height:48px}.side-nav .subheader:hover{background-color:transparent}.side-nav .userView{position:relative;padding:32px 32px 0;margin-bottom:8px}.side-nav .userView>a{height:auto;padding:0}.side-nav .userView>a:hover{background-color:transparent}.side-nav .userView .background{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.side-nav .userView .circle,.side-nav .userView .email,.side-nav .userView .name{display:block}.side-nav .userView .circle{height:64px;width:64px}.side-nav .userView .email,.side-nav .userView .name{font-size:14px;line-height:24px}.side-nav .userView .name{margin-top:16px;font-weight:500}.side-nav .userView .email{padding-bottom:16px;font-weight:400}.drag-target{height:100%;width:10px;position:fixed;top:0;z-index:998}.side-nav.fixed{left:0;-webkit-transform:translateX(0);transform:translateX(0);position:fixed}.side-nav.fixed.right-aligned{right:0;left:auto}@media only screen and (max-width:992px){.side-nav.fixed{-webkit-transform:translateX(-105%);transform:translateX(-105%)}.side-nav.fixed.right-aligned{-webkit-transform:translateX(105%);transform:translateX(105%)}.side-nav a{padding:0 16px}.side-nav .userView{padding:16px 16px 0}}.side-nav .collapsible-body>ul:not(.collapsible)>li.active,.side-nav.fixed .collapsible-body>ul:not(.collapsible)>li.active{background-color:#ee6e73}.side-nav .collapsible-body>ul:not(.collapsible)>li.active a,.side-nav.fixed .collapsible-body>ul:not(.collapsible)>li.active a{color:#fff}.side-nav .collapsible-body{padding:0}#sidenav-overlay{position:fixed;top:0;left:0;right:0;height:120vh;background-color:rgba(0,0,0,.5);z-index:997;will-change:opacity}.preloader-wrapper{display:inline-block;position:relative;width:50px;height:50px}.preloader-wrapper.small{width:36px;height:36px}.preloader-wrapper.big{width:64px;height:64px}.preloader-wrapper.active{-webkit-animation:container-rotate 1568ms linear infinite;animation:container-rotate 1568ms linear infinite}@-webkit-keyframes container-rotate{to{-webkit-transform:rotate(1turn)}}@keyframes container-rotate{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.spinner-layer{position:absolute;width:100%;height:100%;opacity:0;border-color:#26a69a}.spinner-blue,.spinner-blue-only{border-color:#4285f4}.spinner-red,.spinner-red-only{border-color:#db4437}.spinner-yellow,.spinner-yellow-only{border-color:#f4b400}.spinner-green,.spinner-green-only{border-color:#0f9d58}.active .spinner-layer.spinner-blue{-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,blue-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,blue-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both}.active .spinner-layer.spinner-red{-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,red-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,red-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both}.active .spinner-layer.spinner-yellow{-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,yellow-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,yellow-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both}.active .spinner-layer.spinner-green{-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,green-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,green-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both}.active .spinner-layer,.active .spinner-layer.spinner-blue-only,.active .spinner-layer.spinner-green-only,.active .spinner-layer.spinner-red-only,.active .spinner-layer.spinner-yellow-only{opacity:1;-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both}@-webkit-keyframes fill-unfill-rotate{12.5%{-webkit-transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg)}to{-webkit-transform:rotate(3turn)}}@keyframes fill-unfill-rotate{12.5%{-webkit-transform:rotate(135deg);transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg);transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg);transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg);transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg);transform:rotate(945deg)}to{-webkit-transform:rotate(3turn);transform:rotate(3turn)}}@-webkit-keyframes blue-fade-in-out{0%{opacity:1}25%{opacity:1}26%{opacity:0}89%{opacity:0}90%{opacity:1}to{opacity:1}}@keyframes blue-fade-in-out{0%{opacity:1}25%{opacity:1}26%{opacity:0}89%{opacity:0}90%{opacity:1}to{opacity:1}}@-webkit-keyframes red-fade-in-out{0%{opacity:0}15%{opacity:0}25%{opacity:1}50%{opacity:1}51%{opacity:0}}@keyframes red-fade-in-out{0%{opacity:0}15%{opacity:0}25%{opacity:1}50%{opacity:1}51%{opacity:0}}@-webkit-keyframes yellow-fade-in-out{0%{opacity:0}40%{opacity:0}50%{opacity:1}75%{opacity:1}76%{opacity:0}}@keyframes yellow-fade-in-out{0%{opacity:0}40%{opacity:0}50%{opacity:1}75%{opacity:1}76%{opacity:0}}@-webkit-keyframes green-fade-in-out{0%{opacity:0}65%{opacity:0}75%{opacity:1}90%{opacity:1}to{opacity:0}}@keyframes green-fade-in-out{0%{opacity:0}65%{opacity:0}75%{opacity:1}90%{opacity:1}to{opacity:0}}.gap-patch{position:absolute;top:0;left:45%;width:10%;height:100%;overflow:hidden;border-color:inherit}.gap-patch .circle{width:1000%;left:-450%}.circle-clipper{display:inline-block;position:relative;width:50%;height:100%;overflow:hidden;border-color:inherit}.circle-clipper .circle{width:200%;height:100%;border-width:3px;border-style:solid;border-color:inherit;border-bottom-color:transparent!important;border-radius:50%;-webkit-animation:none;animation:none;position:absolute;top:0;right:0;bottom:0}.circle-clipper.left .circle{left:0;border-right-color:transparent!important;-webkit-transform:rotate(129deg);transform:rotate(129deg)}.circle-clipper.right .circle{left:-100%;border-left-color:transparent!important;-webkit-transform:rotate(-129deg);transform:rotate(-129deg)}.active .circle-clipper.left .circle{-webkit-animation:left-spin 1333ms cubic-bezier(.4,0,.2,1) infinite both;animation:left-spin 1333ms cubic-bezier(.4,0,.2,1) infinite both}.active .circle-clipper.right .circle{-webkit-animation:right-spin 1333ms cubic-bezier(.4,0,.2,1) infinite both;animation:right-spin 1333ms cubic-bezier(.4,0,.2,1) infinite both}@-webkit-keyframes left-spin{0%{-webkit-transform:rotate(130deg)}50%{-webkit-transform:rotate(-5deg)}to{-webkit-transform:rotate(130deg)}}@keyframes left-spin{0%{-webkit-transform:rotate(130deg);transform:rotate(130deg)}50%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(130deg);transform:rotate(130deg)}}@-webkit-keyframes right-spin{0%{-webkit-transform:rotate(-130deg)}50%{-webkit-transform:rotate(5deg)}to{-webkit-transform:rotate(-130deg)}}@keyframes right-spin{0%{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}50%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}to{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}}#spinnerContainer.cooldown{-webkit-animation:container-rotate 1568ms linear infinite,fade-out .4s cubic-bezier(.4,0,.2,1);animation:container-rotate 1568ms linear infinite,fade-out .4s cubic-bezier(.4,0,.2,1)}@-webkit-keyframes fade-out{0%{opacity:1}to{opacity:0}}@keyframes fade-out{0%{opacity:1}to{opacity:0}}.slider{position:relative;height:400px;width:100%}.slider.fullscreen{height:100%;width:100%;position:absolute;top:0;left:0;right:0;bottom:0}.slider.fullscreen ul.slides{height:100%}.slider.fullscreen ul.indicators{z-index:2;bottom:30px}.slider .slides{background-color:#9e9e9e;margin:0;height:400px}.slider .slides li{opacity:0;position:absolute;top:0;left:0;z-index:1;width:100%;height:inherit;overflow:hidden}.slider .slides li img{height:100%;width:100%;background-size:cover;background-position:50%}.slider .slides li .caption{color:#fff;position:absolute;top:15%;left:15%;width:70%;opacity:0}.slider .slides li .caption p{color:#e0e0e0}.slider .slides li.active{z-index:2}.slider .indicators{position:absolute;text-align:center;left:0;right:0;bottom:0;margin:0}.slider .indicators .indicator-item{display:inline-block;position:relative;cursor:pointer;height:16px;width:16px;margin:0 12px;background-color:#e0e0e0;transition:background-color .3s;border-radius:50%}.slider .indicators .indicator-item.active{background-color:#4caf50}.carousel{overflow:hidden;position:relative;width:100%;height:400px;-webkit-perspective:500px;perspective:500px;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform-origin:0 50%;transform-origin:0 50%}.carousel.carousel-slider{top:0;left:0;height:0}.carousel.carousel-slider .carousel-fixed-item{position:absolute;left:0;right:0;bottom:20px;z-index:1}.carousel.carousel-slider .carousel-fixed-item.with-indicators{bottom:68px}.carousel.carousel-slider .carousel-item{width:100%;height:100%;min-height:400px;position:absolute;top:0;left:0}.carousel.carousel-slider .carousel-item h2{font-size:24px;font-weight:500;line-height:32px}.carousel.carousel-slider .carousel-item p{font-size:15px}.carousel .carousel-item{display:none;width:200px;height:200px;position:absolute;top:0;left:0}.carousel .carousel-item>img{width:100%}.carousel .indicators{position:absolute;text-align:center;left:0;right:0;bottom:0;margin:0}.carousel .indicators .indicator-item{display:inline-block;position:relative;cursor:pointer;height:8px;width:8px;margin:24px 4px;background-color:hsla(0,0%,100%,.5);transition:background-color .3s;border-radius:50%}.carousel .indicators .indicator-item.active{background-color:#fff}.carousel .carousel-item:not(.active) .materialboxed,.carousel.scrolling .carousel-item .materialboxed{pointer-events:none}.tap-target-wrapper{width:800px;height:800px;position:fixed;z-index:1000;visibility:hidden;transition:visibility 0s .3s}.tap-target-wrapper.open{visibility:visible;transition:visibility 0s}.tap-target-wrapper.open .tap-target{opacity:.95;transition:opacity .3s ease-in-out,-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out,opacity .3s ease-in-out;transition:transform .3s ease-in-out,opacity .3s ease-in-out,-webkit-transform .3s ease-in-out}.tap-target-wrapper.open .tap-target,.tap-target-wrapper.open .tap-target-wave:before{-webkit-transform:scale(1);transform:scale(1)}.tap-target-wrapper.open .tap-target-wave:after{visibility:visible;-webkit-animation:pulse-animation 1s cubic-bezier(.24,0,.38,1) infinite;animation:pulse-animation 1s cubic-bezier(.24,0,.38,1) infinite;transition:opacity .3s,visibility 0s 1s,-webkit-transform .3s;transition:opacity .3s,transform .3s,visibility 0s 1s;transition:opacity .3s,transform .3s,visibility 0s 1s,-webkit-transform .3s}.tap-target{position:absolute;font-size:1rem;border-radius:50%;background-color:#ee6e73;box-shadow:0 20px 20px 0 rgba(0,0,0,.14),0 10px 50px 0 rgba(0,0,0,.12),0 30px 10px -20px rgba(0,0,0,.2);width:100%;height:100%;opacity:0;-webkit-transform:scale(0);transform:scale(0);transition:opacity .3s ease-in-out,-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out,opacity .3s ease-in-out;transition:transform .3s ease-in-out,opacity .3s ease-in-out,-webkit-transform .3s ease-in-out}.tap-target-content{position:relative;display:table-cell}.tap-target-wave{position:absolute;border-radius:50%;z-index:10001}.tap-target-wave:after,.tap-target-wave:before{content:"";display:block;position:absolute;width:100%;height:100%;border-radius:50%;background-color:#fff}.tap-target-wave:before{-webkit-transform:scale(0);transform:scale(0);transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s}.tap-target-wave:after{visibility:hidden;transition:opacity .3s,visibility 0s,-webkit-transform .3s;transition:opacity .3s,transform .3s,visibility 0s;transition:opacity .3s,transform .3s,visibility 0s,-webkit-transform .3s;z-index:-1}.tap-target-origin{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);z-index:10002;position:absolute!important}.tap-target-origin:not(.btn):not(.btn-large),.tap-target-origin:not(.btn):not(.btn-large):hover{background:none}@media only screen and (max-width:600px){.tap-target,.tap-target-wrapper{width:600px;height:600px}}.pulse{overflow:initial;position:relative}.pulse:before{content:"";display:block;position:absolute;width:100%;height:100%;top:0;left:0;background-color:inherit;border-radius:inherit;transition:opacity .3s,-webkit-transform .3s;transition:opacity .3s,transform .3s;transition:opacity .3s,transform .3s,-webkit-transform .3s;-webkit-animation:pulse-animation 1s cubic-bezier(.24,0,.38,1) infinite;animation:pulse-animation 1s cubic-bezier(.24,0,.38,1) infinite;z-index:-1}@-webkit-keyframes pulse-animation{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}50%{opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}to{opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}@keyframes pulse-animation{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}50%{opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}to{opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}.picker{font-size:16px;text-align:left;line-height:1.2;color:#000;position:absolute;z-index:10000;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.picker__input{cursor:default}.picker__input.picker__input--active{border-color:#0089ec}.picker__holder{width:100%;overflow-y:auto;-webkit-overflow-scrolling:touch}.picker__frame,.picker__holder{bottom:0;left:0;right:0;top:100%}.picker__holder{position:fixed;transition:background .15s ease-out,top 0s .15s;-webkit-backface-visibility:hidden}.picker__frame{position:absolute;min-width:256px;width:300px;max-height:350px;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);-moz-opacity:0;opacity:0;transition:all .15s ease-out}@media (min-height:28.875em){.picker__frame{overflow:visible;top:auto;bottom:-100%;max-height:80%}}@media (min-height:40.125em){.picker__frame{margin-bottom:7.5%}}.picker__wrap{display:table;width:100%;height:100%}@media (min-height:28.875em){.picker__wrap{display:block}}.picker__box{background:#fff;display:table-cell;vertical-align:middle}@media (min-height:28.875em){.picker__box{display:block;border:1px solid #777;border-top-color:#898989;border-bottom-width:0;border-radius:5px 5px 0 0;box-shadow:0 12px 36px 16px rgba(0,0,0,.24)}}.picker--opened .picker__holder{top:0;background:transparent;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";zoom:1;background:rgba(0,0,0,.32);transition:background .15s ease-out}.picker--opened .picker__frame{top:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);-moz-opacity:1;opacity:1}@media (min-height:35.875em){.picker--opened .picker__frame{top:10%;bottom:auto}}.picker__input.picker__input--active{border-color:#e3f2fd}.picker__frame{margin:0 auto;max-width:325px}@media (min-height:38.875em){.picker--opened .picker__frame{top:10%;bottom:auto}}.picker__box{padding:0 1em}.picker__header{text-align:center;position:relative;margin-top:.75em}.picker__month,.picker__year{display:inline-block;margin-left:.25em;margin-right:.25em}.picker__select--month,.picker__select--year{height:2em;padding:0;margin-left:.25em;margin-right:.25em}.picker__select--month.browser-default{display:inline;background-color:#fff;width:40%}.picker__select--year.browser-default{display:inline;background-color:#fff;width:26%}.picker__select--month:focus,.picker__select--year:focus{border-color:rgba(0,0,0,.05)}.picker__nav--next,.picker__nav--prev{position:absolute;padding:.5em 1.25em;width:1em;height:1em;box-sizing:content-box;top:-.25em}.picker__nav--prev{left:-1em;padding-right:1.25em}.picker__nav--next{right:-1em;padding-left:1.25em}.picker__nav--disabled,.picker__nav--disabled:before,.picker__nav--disabled:before:hover,.picker__nav--disabled:hover{cursor:default;background:none;border-right-color:#f5f5f5;border-left-color:#f5f5f5}.picker__table{border-collapse:collapse;border-spacing:0;table-layout:fixed;font-size:1rem;width:100%;margin-top:.75em}.picker__table,.picker__table td,.picker__table th{text-align:center}.picker__table td{margin:0;padding:0}.picker__weekday{width:14.285714286%;font-size:.75em;padding-bottom:.25em;color:#999;font-weight:500}@media (min-height:33.875em){.picker__weekday{padding-bottom:.5em}}.picker__day--today{position:relative;color:#595959;letter-spacing:-.3;padding:.75rem 0;font-weight:400;border:1px solid transparent}.picker__day--disabled:before{border-top-color:#aaa}.picker__day--infocus:hover{cursor:pointer;color:#000;font-weight:500}.picker__day--outfocus{display:none;padding:.75rem 0;color:#fff}.picker__day--outfocus:hover{cursor:pointer;color:#ddd;font-weight:500}.picker--focused .picker__day--highlighted,.picker__day--highlighted:hover{cursor:pointer}.picker--focused .picker__day--selected,.picker__day--selected,.picker__day--selected:hover{-webkit-transform:scale(.75);transform:scale(.75);background:#0089ec}.picker--focused .picker__day--disabled,.picker__day--disabled,.picker__day--disabled:hover{background:#f5f5f5;border-color:#f5f5f5;color:#ddd;cursor:default}.picker__day--highlighted.picker__day--disabled,.picker__day--highlighted.picker__day--disabled:hover{background:#bbb}.picker__footer{text-align:center;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.picker__button--clear,.picker__button--close,.picker__button--today{border:1px solid #fff;background:#fff;font-size:.8em;padding:.66em 0;font-weight:700;width:33%;display:inline-block;vertical-align:bottom}.picker__button--clear:hover,.picker__button--close:hover,.picker__button--today:hover{cursor:pointer;color:#000;background:#b1dcfb;border-bottom-color:#b1dcfb}.picker__button--clear:focus,.picker__button--close:focus,.picker__button--today:focus{background:#b1dcfb;border-color:rgba(0,0,0,.05);outline:none}.picker__button--clear:before,.picker__button--close:before,.picker__button--today:before{position:relative;display:inline-block;height:0}.picker__button--clear:before,.picker__button--today:before{content:" ";margin-right:.45em}.picker__button--today:before{top:-.05em;width:0;border-top:.66em solid #0059bc;border-left:.66em solid transparent}.picker__button--clear:before{top:-.25em;width:.66em;border-top:3px solid #e20}.picker__button--close:before{content:"\D7";top:-.1em;vertical-align:top;font-size:1.1em;margin-right:.35em;color:#777}.picker__button--today[disabled],.picker__button--today[disabled]:hover{background:#f5f5f5;border-color:#f5f5f5;color:#ddd;cursor:default}.picker__button--today[disabled]:before{border-top-color:#aaa}.picker__box{border-radius:2px;overflow:hidden}.picker__date-display{text-align:center;background-color:#26a69a;color:#fff;padding-bottom:15px;font-weight:300}.picker__nav--next:hover,.picker__nav--prev:hover{cursor:pointer;color:#000;background:#a1ded8}.picker__weekday-display{background-color:#1f897f;padding:10px;font-weight:200;letter-spacing:.5;font-size:1rem;margin-bottom:15px}.picker__month-display{text-transform:uppercase;font-size:2rem}.picker__day-display{font-size:4.5rem;font-weight:400}.picker__year-display{font-size:1.8rem;color:hsla(0,0%,100%,.4)}.picker__box{padding:0}.picker__calendar-container{padding:0 1rem}.picker__calendar-container thead{border:none}.picker__table{margin-top:0;margin-bottom:.5em}.picker__day--infocus{color:#595959;letter-spacing:-.3;padding:.75rem 0;font-weight:400;border:1px solid transparent}.picker__day.picker__day--today{color:#26a69a}.picker__day.picker__day--today.picker__day--selected{color:#fff}.picker__weekday{font-size:.9rem}.picker--focused .picker__day--selected,.picker__day--selected,.picker__day--selected:hover{border-radius:50%;-webkit-transform:scale(.9);transform:scale(.9);background-color:#26a69a;color:#fff}.picker--focused .picker__day--selected.picker__day--outfocus,.picker__day--selected.picker__day--outfocus,.picker__day--selected:hover.picker__day--outfocus{background-color:#a1ded8}.picker__footer{text-align:right;padding:5px 10px}.picker__close,.picker__today{font-size:1.1rem;padding:0 1rem;color:#26a69a}.picker__nav--next:before,.picker__nav--prev:before{content:" ";border-top:.5em solid transparent;border-bottom:.5em solid transparent;border-right:.75em solid #676767;width:0;height:0;display:block;margin:0 auto}.picker__nav--next:before{border-right:0;border-left:.75em solid #676767}button.picker__clear:focus,button.picker__close:focus,button.picker__today:focus{background-color:#a1ded8}.picker__list{list-style:none;padding:.75em 0 4.2em;margin:0}.picker__list-item{border-bottom:1px solid #ddd;border-top:1px solid #ddd;margin-bottom:-1px;position:relative;background:#fff;padding:.75em 1.25em}@media (min-height:46.75em){.picker__list-item{padding:.5em 1em}}.picker__list-item:hover{cursor:pointer;color:#000;background:#b1dcfb}.picker__list-item--highlighted,.picker__list-item:hover{border-color:#0089ec;z-index:10}.picker--focused .picker__list-item--highlighted,.picker__list-item--highlighted:hover{cursor:pointer;color:#000;background:#b1dcfb}.picker--focused .picker__list-item--selected,.picker__list-item--selected,.picker__list-item--selected:hover{background:#0089ec;color:#fff;z-index:10}.picker--focused .picker__list-item--disabled,.picker__list-item--disabled,.picker__list-item--disabled:hover{background:#f5f5f5;border-color:#f5f5f5;color:#ddd;cursor:default;border-color:#ddd;z-index:auto}.picker--time .picker__button--clear{display:block;width:80%;margin:1em auto 0;padding:1em 1.25em;background:none;border:0;font-weight:500;font-size:.67em;text-align:center;text-transform:uppercase;color:#666}.picker--time .picker__button--clear:focus,.picker--time .picker__button--clear:hover{color:#000;background:#b1dcfb;background:#e20;border-color:#e20;cursor:pointer;color:#fff;outline:none}.picker--time .picker__button--clear:before{top:-.25em;color:#666;font-size:1.25em;font-weight:700}.picker--time .picker__button--clear:focus:before,.picker--time .picker__button--clear:hover:before{color:#fff}.picker--time .picker__frame{min-width:256px;max-width:320px}.picker--time .picker__box{font-size:1em;background:#f2f2f2;padding:0}@media (min-height:40.125em){.picker--time .picker__box{margin-bottom:5em}}.annotator-filter *,.annotator-notice,.annotator-widget *{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-weight:400;text-align:left;margin:0;padding:0;background:none;-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;-moz-box-shadow:none;-webkit-box-shadow:none;-o-box-shadow:none;box-shadow:none;color:#909090}.annotator-adder{background-image:url(img/annotator-icon-sprite.png);background-repeat:no-repeat}.annotator-editor a:after,.annotator-filter .annotator-filter-navigation button:after,.annotator-filter .annotator-filter-property .annotator-filter-clear,.annotator-resize,.annotator-viewer .annotator-controls a,.annotator-viewer .annotator-controls button,.annotator-widget:after{background-image:url(img/annotator-glyph-sprite.png);background-repeat:no-repeat}.annotator-hl{background:#ffff0a;background:rgba(255,255,10,.3);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#4DFFFF0A, endColorstr=#4DFFFF0A)"}.annotator-hl-temporary{background:#007cff;background:rgba(0,124,255,.3);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#4D007CFF, endColorstr=#4D007CFF)"}.annotator-wrapper{position:relative}.annotator-adder,.annotator-notice,.annotator-outer{z-index:1020}.annotator-filter{z-index:1010}.annotator-adder,.annotator-notice,.annotator-outer,.annotator-widget{position:absolute;font-size:10px;line-height:1}.annotator-hide{display:none;visibility:hidden}.annotator-adder{margin-top:-48px;margin-left:-24px;width:48px;height:48px;background-position:0 0}.annotator-adder:hover{background-position:top}.annotator-adder:active{background-position:100%}.annotator-adder button{display:block;width:36px;height:41px;margin:0 auto;border:none;background:none;text-indent:-999em;cursor:pointer}.annotator-outer{width:0;height:0}.annotator-widget{margin:0;padding:0;bottom:15px;left:-18px;min-width:265px;background-color:#fbfbfb;background-color:hsla(0,0%,98%,.98);border:1px solid #7a7a7a;border:1px solid hsla(0,0%,48%,.6);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.2);-moz-box-shadow:0 5px 15px rgba(0,0,0,.2);-o-box-shadow:0 5px 15px rgba(0,0,0,.2);box-shadow:0 5px 15px rgba(0,0,0,.2)}.annotator-invert-x .annotator-widget{left:auto;right:-18px}.annotator-invert-y .annotator-widget{bottom:auto;top:8px}.annotator-widget strong{font-weight:700}.annotator-widget .annotator-item,.annotator-widget .annotator-listing{padding:0;margin:0;list-style:none}.annotator-widget:after{content:"";display:block;width:18px;height:10px;background-position:0 0;position:absolute;bottom:-10px;left:8px}.annotator-invert-x .annotator-widget:after{left:auto;right:8px}.annotator-invert-y .annotator-widget:after{background-position:0 -15px;bottom:auto;top:-9px}.annotator-editor .annotator-item input,.annotator-editor .annotator-item textarea,.annotator-widget .annotator-item{position:relative;font-size:12px}.annotator-viewer .annotator-item{border-top:2px solid #7a7a7a;border-top:2px solid hsla(0,0%,48%,.2)}.annotator-widget .annotator-item:first-child{border-top:none}.annotator-editor .annotator-item,.annotator-viewer div{border-top:1px solid #858585;border-top:1px solid hsla(0,0%,52%,.11)}.annotator-viewer div{padding:6px}.annotator-viewer .annotator-item ol,.annotator-viewer .annotator-item ul{padding:4px 16px}.annotator-editor .annotator-item:first-child textarea,.annotator-viewer div:first-of-type{padding-top:12px;padding-bottom:12px;color:#3c3c3c;font-size:13px;font-style:italic;line-height:1.3;border-top:none}.annotator-viewer .annotator-controls{position:relative;top:5px;right:5px;padding-left:5px;opacity:0;-webkit-transition:opacity .2s ease-in;-moz-transition:opacity .2s ease-in;-o-transition:opacity .2s ease-in;transition:opacity .2s ease-in;float:right}.annotator-viewer li .annotator-controls.annotator-visible,.annotator-viewer li:hover .annotator-controls{opacity:1}.annotator-viewer .annotator-controls a,.annotator-viewer .annotator-controls button{cursor:pointer;display:inline-block;width:13px;height:13px;margin-left:2px;border:none;opacity:.2;text-indent:-900em;background-color:transparent;outline:none}.annotator-viewer .annotator-controls a:focus,.annotator-viewer .annotator-controls a:hover,.annotator-viewer .annotator-controls button:focus,.annotator-viewer .annotator-controls button:hover{opacity:.9}.annotator-viewer .annotator-controls a:active,.annotator-viewer .annotator-controls button:active{opacity:1}.annotator-viewer .annotator-controls button[disabled]{display:none}.annotator-viewer .annotator-controls .annotator-edit{background-position:0 -60px}.annotator-viewer .annotator-controls .annotator-delete{background-position:0 -75px}.annotator-viewer .annotator-controls .annotator-link{background-position:0 -270px}.annotator-editor .annotator-item{position:relative}.annotator-editor .annotator-item label{top:0;display:inline;cursor:pointer;font-size:12px}.annotator-editor .annotator-item input,.annotator-editor .annotator-item textarea{display:block;min-width:100%;padding:10px 8px;border:none;margin:0;color:#3c3c3c;background:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;resize:none}.annotator-editor .annotator-item textarea::-webkit-scrollbar{height:8px;width:8px}.annotator-editor .annotator-item textarea::-webkit-scrollbar-track-piece{margin:13px 0 3px;background-color:#e5e5e5;-webkit-border-radius:4px}.annotator-editor .annotator-item textarea::-webkit-scrollbar-thumb:vertical{height:25px;background-color:#ccc;-webkit-border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1)}.annotator-editor .annotator-item textarea::-webkit-scrollbar-thumb:horizontal{width:25px;background-color:#ccc;-webkit-border-radius:4px}.annotator-editor .annotator-item:first-child textarea{min-height:5.5em;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-o-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.annotator-editor .annotator-item input:focus,.annotator-editor .annotator-item textarea:focus{background-color:#f3f3f3;outline:none}.annotator-editor .annotator-item input[type=checkbox],.annotator-editor .annotator-item input[type=radio]{width:auto;min-width:0;padding:0;display:inline;margin:0 4px 0 0;cursor:pointer}.annotator-editor .annotator-checkbox{padding:8px 6px}.annotator-editor .annotator-controls,.annotator-filter,.annotator-filter .annotator-filter-navigation button{text-align:right;padding:3px;border-top:1px solid #d4d4d4;background-color:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),color-stop(.6,#dcdcdc),to(#d2d2d2));background-image:-moz-linear-gradient(to bottom,#f5f5f5,#dcdcdc 60%,#d2d2d2);background-image:-webkit-linear-gradient(180deg,#f5f5f5,#dcdcdc 60%,#d2d2d2);background-image:linear-gradient(180deg,#f5f5f5,#dcdcdc 60%,#d2d2d2);-webkit-box-shadow:inset 1px 0 0 hsla(0,0%,100%,.7),inset -1px 0 0 hsla(0,0%,100%,.7),inset 0 1px 0 hsla(0,0%,100%,.7);-moz-box-shadow:inset 1px 0 0 hsla(0,0%,100%,.7),inset -1px 0 0 hsla(0,0%,100%,.7),inset 0 1px 0 hsla(0,0%,100%,.7);-o-box-shadow:inset 1px 0 0 hsla(0,0%,100%,.7),inset -1px 0 0 hsla(0,0%,100%,.7),inset 0 1px 0 hsla(0,0%,100%,.7);box-shadow:inset 1px 0 0 hsla(0,0%,100%,.7),inset -1px 0 0 hsla(0,0%,100%,.7),inset 0 1px 0 hsla(0,0%,100%,.7);-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;-o-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px}.annotator-editor.annotator-invert-y .annotator-controls{border-top:none;border-bottom:1px solid #b4b4b4;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-o-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.annotator-editor a,.annotator-filter .annotator-filter-property label{position:relative;display:inline-block;padding:0 6px 0 22px;color:#363636;text-shadow:0 1px 0 hsla(0,0%,100%,.75);text-decoration:none;line-height:24px;font-size:12px;font-weight:700;border:1px solid #a2a2a2;background-color:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),color-stop(.5,#d2d2d2),color-stop(.5,#bebebe),to(#d2d2d2));background-image:-moz-linear-gradient(to bottom,#f5f5f5,#d2d2d2 50%,#bebebe 50%,#d2d2d2);background-image:-webkit-linear-gradient(180deg,#f5f5f5,#d2d2d2 50%,#bebebe 0,#d2d2d2);background-image:linear-gradient(180deg,#f5f5f5,#d2d2d2 50%,#bebebe 0,#d2d2d2);-webkit-box-shadow:inset 0 0 5px hsla(0,0%,100%,.2),inset 0 0 1px hsla(0,0%,100%,.8);-moz-box-shadow:inset 0 0 5px hsla(0,0%,100%,.2),inset 0 0 1px hsla(0,0%,100%,.8);-o-box-shadow:inset 0 0 5px hsla(0,0%,100%,.2),inset 0 0 1px hsla(0,0%,100%,.8);box-shadow:inset 0 0 5px hsla(0,0%,100%,.2),inset 0 0 1px hsla(0,0%,100%,.8);-webkit-border-radius:5px;-moz-border-radius:5px;-o-border-radius:5px;border-radius:5px}.annotator-editor a:after{position:absolute;top:50%;left:5px;display:block;content:"";width:15px;height:15px;margin-top:-7px;background-position:0 -90px}.annotator-editor a.annotator-focus,.annotator-editor a:focus,.annotator-editor a:hover,.annotator-filter .annotator-filter-active label,.annotator-filter .annotator-filter-navigation button:hover{outline:none;border-color:#435aa0;background-color:#3865f9;background-image:-webkit-gradient(linear,left top,left bottom,from(#7691fb),color-stop(.5,#5075fb),color-stop(.5,#3865f9),to(#3665fa));background-image:-moz-linear-gradient(to bottom,#7691fb,#5075fb 50%,#3865f9 50%,#3665fa);background-image:-webkit-linear-gradient(180deg,#7691fb,#5075fb 50%,#3865f9 0,#3665fa);background-image:linear-gradient(180deg,#7691fb,#5075fb 50%,#3865f9 0,#3665fa);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.42)}.annotator-editor a:focus:after,.annotator-editor a:hover:after{margin-top:-8px;background-position:0 -105px}.annotator-editor a:active,.annotator-filter .annotator-filter-navigation button:active{border-color:#700c49;background-color:#d12e8e;background-image:-webkit-gradient(linear,left top,left bottom,from(#fc7cca),color-stop(.5,#e85db2),color-stop(.5,#d12e8e),to(#ff009c));background-image:-moz-linear-gradient(to bottom,#fc7cca,#e85db2 50%,#d12e8e 50%,#ff009c);background-image:-webkit-linear-gradient(180deg,#fc7cca,#e85db2 50%,#d12e8e 0,#ff009c);background-image:linear-gradient(180deg,#fc7cca,#e85db2 50%,#d12e8e 0,#ff009c)}.annotator-editor a.annotator-save:after{background-position:0 -120px}.annotator-editor a.annotator-save.annotator-focus:after,.annotator-editor a.annotator-save:focus:after,.annotator-editor a.annotator-save:hover:after{margin-top:-8px;background-position:0 -135px}.annotator-editor .annotator-widget:after{background-position:0 -30px}.annotator-editor.annotator-invert-y .annotator-widget .annotator-controls{background-color:#f2f2f2}.annotator-editor.annotator-invert-y .annotator-widget:after{background-position:0 -45px;height:11px}.annotator-resize{position:absolute;top:0;right:0;width:12px;height:12px;background-position:2px -150px}.annotator-invert-x .annotator-resize{right:auto;left:0;background-position:0 -195px}.annotator-invert-y .annotator-resize{top:auto;bottom:0;background-position:2px -165px}.annotator-invert-y.annotator-invert-x .annotator-resize{background-position:0 -180px}.annotator-notice{color:#fff;position:fixed;top:-54px;left:0;width:100%;font-size:14px;line-height:50px;text-align:center;background:#000;background:rgba(0,0,0,.9);border-bottom:4px solid #d4d4d4;-webkit-transition:top .4s ease-out;-moz-transition:top .4s ease-out;-o-transition:top .4s ease-out;transition:top .4s ease-out}.annotator-notice-success{border-color:#3665f9}.annotator-notice-error{border-color:#ff7e00}.annotator-notice p{margin:0}.annotator-notice a{color:#fff}.annotator-notice-show{top:0}.annotator-tags{margin-bottom:-2px}.annotator-tags .annotator-tag{display:inline-block;padding:0 8px;margin-bottom:2px;line-height:1.6;font-weight:700;background-color:#e6e6e6;-webkit-border-radius:8px;-moz-border-radius:8px;-o-border-radius:8px;border-radius:8px}.annotator-filter{position:fixed;top:0;right:0;left:0;text-align:left;line-height:0;border:none;border-bottom:1px solid #878787;padding-left:10px;padding-right:10px;-webkit-border-radius:0;-moz-border-radius:0;-o-border-radius:0;border-radius:0;-webkit-box-shadow:inset 0 -1px 0 hsla(0,0%,100%,.3);-moz-box-shadow:inset 0 -1px 0 hsla(0,0%,100%,.3);-o-box-shadow:inset 0 -1px 0 hsla(0,0%,100%,.3);box-shadow:inset 0 -1px 0 hsla(0,0%,100%,.3)}.annotator-filter strong{font-size:12px;font-weight:700;color:#3c3c3c;text-shadow:0 1px 0 hsla(0,0%,100%,.7);position:relative;top:-9px}.annotator-filter .annotator-filter-navigation,.annotator-filter .annotator-filter-property{position:relative;display:inline-block;overflow:hidden;line-height:10px;padding:2px 0;margin-right:8px}.annotator-filter .annotator-filter-navigation button,.annotator-filter .annotator-filter-property label{text-align:left;display:block;float:left;line-height:20px;-webkit-border-radius:10px 0 0 10px;-moz-border-radius:10px 0 0 10px;-o-border-radius:10px 0 0 10px;border-radius:10px 0 0 10px}.annotator-filter .annotator-filter-property label{padding-left:8px}.annotator-filter .annotator-filter-property input{display:block;float:right;-webkit-appearance:none;background-color:#fff;border:1px solid #878787;border-left:none;padding:2px 4px;line-height:16px;min-height:16px;font-size:12px;width:150px;color:#333;background-color:#f8f8f8;-webkit-border-radius:0 10px 10px 0;-moz-border-radius:0 10px 10px 0;-o-border-radius:0 10px 10px 0;border-radius:0 10px 10px 0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.2);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.2);-o-box-shadow:inset 0 1px 1px rgba(0,0,0,.2);box-shadow:inset 0 1px 1px rgba(0,0,0,.2)}.annotator-filter .annotator-filter-property input:focus{outline:none;background-color:#fff}.annotator-filter .annotator-filter-clear{position:absolute;right:3px;top:6px;border:none;text-indent:-900em;width:15px;height:15px;background-position:0 -90px;opacity:.4}.annotator-filter .annotator-filter-clear:focus,.annotator-filter .annotator-filter-clear:hover{opacity:.8}.annotator-filter .annotator-filter-clear:active{opacity:1}.annotator-filter .annotator-filter-navigation button{border:1px solid #a2a2a2;padding:0;text-indent:-900px;width:20px;min-height:22px;-webkit-box-shadow:inset 0 0 5px hsla(0,0%,100%,.2),inset 0 0 1px hsla(0,0%,100%,.8);-moz-box-shadow:inset 0 0 5px hsla(0,0%,100%,.2),inset 0 0 1px hsla(0,0%,100%,.8);-o-box-shadow:inset 0 0 5px hsla(0,0%,100%,.2),inset 0 0 1px hsla(0,0%,100%,.8);box-shadow:inset 0 0 5px hsla(0,0%,100%,.2),inset 0 0 1px hsla(0,0%,100%,.8)}.annotator-filter .annotator-filter-navigation button,.annotator-filter .annotator-filter-navigation button:focus,.annotator-filter .annotator-filter-navigation button:hover{color:transparent}.annotator-filter .annotator-filter-navigation button:after{position:absolute;top:8px;left:8px;content:"";display:block;width:9px;height:9px;background-position:0 -210px}.annotator-filter .annotator-filter-navigation button:hover:after{background-position:0 -225px}.annotator-filter .annotator-filter-navigation .annotator-filter-next{-webkit-border-radius:0 10px 10px 0;-moz-border-radius:0 10px 10px 0;-o-border-radius:0 10px 10px 0;border-radius:0 10px 10px 0;border-left:none}.annotator-filter .annotator-filter-navigation .annotator-filter-next:after{left:auto;right:7px;background-position:0 -240px}.annotator-filter .annotator-filter-navigation .annotator-filter-next:hover:after{background-position:0 -255px}.annotator-hl-active{background:#ffff0a;background:rgba(255,255,10,.8);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCFFFF0A, endColorstr=#CCFFFF0A)"}.annotator-hl-filtered{background-color:transparent}@font-face{font-family:Material Icons;font-style:normal;font-weight:400;src:url(fonts/MaterialIcons-Regular.eot);src:local("Material Icons"),local("MaterialIcons-Regular"),url(fonts/MaterialIcons-Regular.woff2) format("woff2"),url(fonts/MaterialIcons-Regular.woff) format("woff"),url(fonts/MaterialIcons-Regular.ttf) format("truetype")}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;font-size:24px;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:"liga"}@font-face{font-family:Lato;font-weight:100;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-hairline.woff2) format("woff2"),url(fonts/lato-hairline.woff) format("woff")}@font-face{font-family:Lato;font-weight:100;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-hairline-italic.woff2) format("woff2"),url(fonts/lato-hairline-italic.woff) format("woff")}@font-face{font-family:Lato;font-weight:200;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-thin.woff2) format("woff2"),url(fonts/lato-thin.woff) format("woff")}@font-face{font-family:Lato;font-weight:200;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-thin-italic.woff2) format("woff2"),url(fonts/lato-thin-italic.woff) format("woff")}@font-face{font-family:Lato;font-weight:300;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-light.woff2) format("woff2"),url(fonts/lato-light.woff) format("woff")}@font-face{font-family:Lato;font-weight:300;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-light-italic.woff2) format("woff2"),url(fonts/lato-light-italic.woff) format("woff")}@font-face{font-family:Lato;font-weight:400;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-normal.woff2) format("woff2"),url(fonts/lato-normal.woff) format("woff")}@font-face{font-family:Lato;font-weight:400;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-normal-italic.woff2) format("woff2"),url(fonts/lato-normal-italic.woff) format("woff")}@font-face{font-family:Lato Medium;font-weight:400;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-medium.woff2) format("woff2"),url(fonts/lato-medium.woff) format("woff")}@font-face{font-family:Lato Medium;font-weight:400;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-medium-italic.woff2) format("woff2"),url(fonts/lato-medium-italic.woff) format("woff")}@font-face{font-family:Lato;font-weight:500;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-semibold.woff2) format("woff2"),url(fonts/lato-semibold.woff) format("woff")}@font-face{font-family:Lato;font-weight:500;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-semibold-italic.woff2) format("woff2"),url(fonts/lato-semibold-italic.woff) format("woff")}@font-face{font-family:Lato;font-weight:600;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-bold.woff2) format("woff2"),url(fonts/lato-bold.woff) format("woff")}@font-face{font-family:Lato;font-weight:600;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-bold-italic.woff2) format("woff2"),url(fonts/lato-bold-italic.woff) format("woff")}@font-face{font-family:Lato;font-weight:800;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-heavy.woff2) format("woff2"),url(fonts/lato-heavy.woff) format("woff")}@font-face{font-family:Lato;font-weight:800;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-heavy-italic.woff2) format("woff2"),url(fonts/lato-heavy-italic.woff) format("woff")}@font-face{font-family:Lato;font-weight:900;font-style:normal;text-rendering:optimizeLegibility;src:url(fonts/lato-black.woff2) format("woff2"),url(fonts/lato-black.woff) format("woff")}@font-face{font-family:Lato;font-weight:900;font-style:italic;text-rendering:optimizeLegibility;src:url(fonts/lato-black-italic.woff2) format("woff2"),url(fonts/lato-black-italic.woff) format("woff")}.material-icons.md-18{font-size:18px}.material-icons.md-24{font-size:24px}.material-icons.md-36{font-size:36px}.material-icons.md-48{font-size:48px}.material-icons.md-dark{color:rgba(0,0,0,.54)}.material-icons.md-dark.md-inactive{color:rgba(0,0,0,.26)}.material-icons.md-light{color:#fff}.material-icons.md-light.md-inactive{color:hsla(0,0%,100%,.3)}.hljs{display:block;overflow-x:auto;padding:.5em;color:#383a42;background:#fafafa}.hljs-comment,.hljs-quote{color:#a0a1a7;font-style:italic}.hljs-doctag,.hljs-formula,.hljs-keyword{color:#a626a4}.hljs-deletion,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-subst{color:#e45649}.hljs-literal{color:#0184bb}.hljs-addition,.hljs-attribute,.hljs-meta-string,.hljs-regexp,.hljs-string{color:#50a14f}.hljs-built_in,.hljs-class .hljs-title{color:#c18401}.hljs-attr,.hljs-number,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-pseudo,.hljs-template-variable,.hljs-type,.hljs-variable{color:#986801}.hljs-bullet,.hljs-link,.hljs-meta,.hljs-selector-id,.hljs-symbol,.hljs-title{color:#4078f2}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}.hljs-link{text-decoration:underline}#article{font-size:20px;margin:0 auto;max-width:45em}#article article{color:#424242;font-size:18px;line-height:1.7em;overflow-wrap:break-word}#article article h1,#article article h2,#article article h3,#article article h4,#article article h5,#article article h6{color:#212121}#article article h1 strong,#article article h2 strong,#article article h3 strong,#article article h4 strong,#article article h5 strong,#article article h6 strong{font-weight:500}#article article h6{font-size:1.2rem}#article article h5{font-size:1.6rem}#article article h4{font-size:1.9rem}#article article h3{font-size:2.2rem}#article article h2{font-size:2.5rem}#article article h1{font-size:2.7rem}#article article a{border-bottom:1px dotted #03a9f4;text-decoration:none}#article article a:hover{border-bottom-style:solid}#article article ul{padding-left:30px}#article article ul,#article article ul li{list-style-type:disc}#article article blockquote{font-style:italic}#article article strong{font-weight:700}#article figure,#article img{max-width:100%;height:auto}#article pre{box-sizing:border-box;margin:0 0 1.75em;border:1px solid #e3f2fd;width:100%;padding:10px;font-family:monospace;font-size:.8em;white-space:pre;overflow:auto;background:#f5f5f5;border-radius:3px}#article>header>h1{font-size:2em;margin:2.1rem 0 .68rem}#article aside .tools{display:flex;flex-flow:row wrap}#article aside .tools .stats{font-size:.8em;margin:8px 5px 5px}#article aside .tools .stats li{display:inline-flex;vertical-align:middle;margin:3px 5px}#article aside .tools .stats li i.material-icons{color:#3e3e3e;margin-right:3px}#article aside .tools .stats a{color:#000;text-decoration:none}#article aside .tools .tags{float:right;margin:5px 15px 10px}#article aside .chip{background-color:rgba(0,151,167,.85);padding:0 15px 0 10px;margin:auto 2px;border-radius:6px}#article aside .chip a,#article aside .chip i{color:#fff}#article aside .chip i.material-icons{float:right;font-size:20px;line-height:32px;padding-left:8px}.reader-mode{width:70px!important;transition:width .2s ease}.reader-mode .collapsible-body{height:0;overflow:hidden}.reader-mode span{opacity:0;transition:opacity .2s ease}.reader-mode:hover{width:260px!important}.reader-mode:hover .collapsible-body{height:auto}.reader-mode:hover .collapsible-body li a i.material-icons{margin:auto 5px auto -8px}.reader-mode:hover span{opacity:1}.progress{position:fixed;top:0;width:100%;height:3px;margin:0;z-index:9999}main #content{padding:0 .5rem}main ul.row{margin:.4rem 0 0;padding:0 .75rem}.data .card .card-body{height:19em;overflow:hidden}.card .card-content .card-title,.card .card-reveal .card-title{line-height:22.8px;max-height:80px;font-size:19px;font-family:roberto,Helvetica Neue,Helvetica,Arial,sans-serif}.card .card-stacked .card-content .card-title{display:inline-block}.card .card-content .activator,.card .card-reveal .activator{cursor:pointer;font-family:Material Icons}.card .card-content i.right,.card .card-reveal i.right{margin-left:0}.card .card-content .original{line-height:24px;font-size:15px}.card .card-entry-labels{position:absolute;top:10px;z-index:90;max-width:50%}.card .card-entry-labels-hidden{margin:2.5px auto}.card .card-entry-labels-hidden li{display:inline-block;background-color:rgba(0,151,167,.85);margin:0 5px;padding:5px 12px;border-radius:3px;color:#fff;max-height:2em;max-width:calc(100% - 15px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.card .card-content .estimatedTime{margin-bottom:10px}.card .card-action{padding:10px 5px 10px 15px}.card .card-action ul.links{margin:0;font-size:24px;line-height:24px}.card .card-action a{color:#fff;margin:0}.card .card-action a:hover{color:#fff}.card .card-action ul.tools li a.tool{margin-right:5px!important}.card .card-action .reading-time{display:inline-flex;vertical-align:middle}.card .card-action .reading-time span{margin-right:5px}.card .card-image{height:10em}.card .card-fullimage{height:13.5em}.card.sw{max-width:370px;margin-left:auto;margin-right:auto}a.original:not(.waves-effect){text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:block}.card-stacked .preview,.card .card-fullimage .preview,.card .card-image .preview{height:100%;background:no-repeat 50%/cover;background-color:#efefef;display:block}.card-stacked .preview--default,.card .card-fullimage .preview--default,.card .card-image .preview--default{background-size:contain}.card-entry-labels li,.card-tag-labels li{margin:10px 10px 10px auto;padding:5px 12px 5px 16px!important;background-color:rgba(0,151,167,.85);border-radius:3px;color:#fff;cursor:default}.card-entry-labels li{text-overflow:ellipsis;white-space:nowrap;border-radius:0 3px 3px 0;overflow:hidden}.card-tag-labels li{display:flex;justify-content:space-between}#list .chip a,.card-entry-labels-hidden a,.card-entry-labels a,.card-entry-tags a,.card-tag-labels a{text-decoration:none;font-weight:400;color:#fff}.card-tag-labels a{height:100%;align-items:center}.card-tag-form,.card-tag-link{display:flex;min-width:100px;flex-grow:1}.card-tag-form input{margin-bottom:0;height:2rem}.card-tag-rss{display:flex}.card-tag-labels{display:flex;flex-wrap:wrap}.card-tag-labels li{margin:10px;flex-basis:19%;flex-grow:1;align-items:center}.card-stacked{display:flex;flex-flow:row wrap}.card-stacked:hover ul.tools-list{display:inline;text-align:right}.card-stacked .card-preview{max-width:100px;max-height:50px;margin-right:10px;flex:1}.card-stacked div.metadata .chip{background-color:rgba(0,151,167,.85);padding:0 7px;margin:auto 2px;border-radius:6px;line-height:22px;height:22px}.card-stacked div.metadata .chip a,.card-stacked div.metadata .chip i{color:#fff}.card-stacked div.metadata .chip i.material-icons{float:right;font-size:20px;line-height:32px;padding-left:8px}.card-stacked div.card-content{flex:4}.card-stacked ul.tools-list{flex:1;display:none;flex-basis:5em;align-self:flex-end;float:right;max-width:6em}.card-stacked .tags{display:inline-block}#content .collection .collection-item{min-height:65px;height:auto}.quickstart .card .card-action a,.quickstart .card .card-action a:hover{color:#fff!important}.settings .div_tabs{padding-bottom:15px}@media only screen and (min-width:992px){.card-tag-labels li{max-width:50%}}.collection{margin:15px 15px 0}.collection .collection-item{padding:7px;height:65px}.results{display:flex;padding:1rem 1rem 0;flex-wrap:wrap;justify-content:space-between}.results .nb-results{display:inline-flex}.results a{color:#444}.pagination ul{display:flex;margin:0;flex-wrap:wrap;justify-content:space-around}.pagination ul .next.disabled,.pagination ul .prev.disabled{display:none}.pagination li{padding:0}.pagination a,.pagination span{padding:0 10px;height:30px;display:block;line-height:30px}.pagination .disabled{margin-right:10px;margin-left:10px}.pagination li.active span{padding:0 10px;height:30px;display:block;color:#fff}.footer-text{margin:.7rem .5rem}.hidden,.picker__date-display{display:none}footer.page-footer{margin-top:10px;padding-top:0}footer .row{margin-bottom:10px}#filters button{padding:0;width:100%}#filters div.with-checkbox{height:3rem;margin-top:0}body{display:flex;min-height:100vh;flex-direction:column;background:#fafafa}body.login main{padding:0;min-height:100vh}.border-bottom{border-bottom:1px solid #ddd}#content,.valign-wrapper,main{height:100%}.typo-logo{max-width:150px}#main{flex:1 0 auto}#main .logo a{height:100pt}#main .logo img{height:100pt;width:100pt}#main .logo:hover{background:transparent}nav{height:auto;line-height:normal}nav input{color:#aaa}nav ul a:hover{background-color:initial}.nav-panel-item .button-collapse{margin-left:0;margin-right:.5rem;padding:0 .5rem;height:auto;line-height:1;background-color:transparent;border:none}.nav-panel-item{display:flex;padding:.6rem .4rem .6rem .75rem;flex-wrap:wrap;justify-content:space-between;align-items:center}.nav-panel-item .material-icons{height:46px;line-height:46px}.nav-input{display:none}.nav-panel-buttom{display:flex;flex-grow:1;justify-content:flex-end}.nav-panel-item .add,.nav-panel-item .search,.nav-panels .close{color:#444!important}.nav-panels{transition:background .2s ease}.nav-panels .action{margin:0;font-size:2.1rem}.nav-panels .input-field input{display:block;line-height:inherit;height:3rem}.nav-panels .input-field input:focus{background-color:#fff;border:0;box-shadow:none;color:#444}.nav-panel-top{display:flex;align-items:center}.input-field.nav-panel-item label{left:1rem}.input-field.nav-panel-item .close{color:transparent;cursor:pointer;font-size:2rem;transition:color .3s}.input-field.nav-panel-item{display:flex;flex:1;flex-wrap:nowrap;align-items:center}.input-field.nav-panel-add.disabled,.input-field.nav-panel-add.disabled input{background-color:#f5f5f5}.nav-form-button{padding:0;background-color:transparent;border:none}.nav-form-button:focus{background-color:inherit}.nav-form-button,.nav-panel-item .close{margin:0 1%}#button_export,#button_filters{display:none}@media (min-width:993px){.button-collapse{display:none}}.side-nav{width:240px}.side-nav li{padding:0}.side-nav li.logo>a:hover{background:initial}.side-nav a{margin:0}.side-nav.fixed a{font-size:13px;line-height:44px;height:44px}.side-nav .collapsible-header,.side-nav.fixed .collapsible-header{height:45px;line-height:44px;padding:0 20px}.side-nav>li.logo{line-height:0;text-align:center}.bold>a{font-weight:700}span.numberItems{float:right}div.settings div.file-field div,div.settings div.file-field ul{margin-top:40px}div.settings div.file-field div{margin-top:inherit}.input-field label.active{font-size:1rem}nav .input-field input{margin:0;padding-left:.5rem}.tabs{display:flex}.tab{flex:1}@font-face{font-family:icomoon;src:url(fonts/IcoMoon-Free.ttf);font-weight:400;font-style:normal}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;font-size:24px;width:1em;height:1em;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:"liga"}.material-icons .md-18{font-size:18px}.material-icons .md-24{font-size:24px}.material-icons .md-36{font-size:36px}.material-icons .md-48{font-size:48px}.material-icons .md-dark{color:rgba(0,0,0,.54)}.material-icons .md-dark .md-inactive{color:rgba(0,0,0,.26)}.material-icons .md-light{color:#fff}.material-icons .md-light .md-inactive{color:hsla(0,0%,100%,.3)}[class*=" icon-"]:before,[class^=icon-]:before{font-family:icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;background-size:24px;letter-spacing:0;font-feature-settings:"liga"}.icon-eye:before{content:"\E9CE"}.icon-no-eye:before{content:"\E9D1"}.icon-calendar:before{content:"\E953"}.icon-mail:before{content:"\EA86"}.icon-time:before{content:"\E952"}a.icon-image{background-repeat:no-repeat;padding-right:.4em!important;padding-left:0!important;margin-left:25px}a.icon-image:before{content:"";display:block;width:24px;height:24px;float:left;margin:7px 1.5px 0 0}a.icon-image.carrot:before{background:url(themes/_global/img/icons/carrot-icon--black.png) no-repeat 50%/90%}a.icon-image.diaspora:before{background:url(themes/_global/img/icons/diaspora-icon--black.png) no-repeat 50%/80%}a.icon-image.unmark:before{background:url(themes/_global/img/icons/unmark-icon--black.png) no-repeat 50%/80%}a.icon-image.shaarli:before{background:url(themes/_global/img/icons/shaarli.png) no-repeat 50%/80%}a.icon-image.scuttle:before{background:url(themes/_global/img/icons/scuttle.png) no-repeat 50%/80%}.icon-google-plus2:before{content:"\EA89"}.icon-facebook2:before{content:"\EA8D"}.icon-twitter:before{content:"\EA96"}.icon-apple:before{content:"\EABF"}.icon-android:before{content:"\EAC1"}.icon-chrome:before{content:"\EAE5"}.icon-firefox:before{content:"\EAE6"}.icon-link:before{content:"\E9CB"}footer [class*=" icon-"],footer [class^=icon-]{font-size:2em;transition:text-shadow .2s ease;padding-right:10px}footer [class*=" icon-"]:hover,footer [class^=icon-]:hover{text-shadow:0 0 10px rgba(0,0,0,.3)}@media print{body{font-family:Serif;background-color:#fff}@page{margin:1cm}img{max-width:100%!important}#article .mbm a,#article>aside,#article_toolbar,#links,#slide-out,#sort,.entry+.results,.hide-on-large-only,.messages,.progress,.top_link,body>footer,body>header,div.tools,header div{display:none!important}main{padding-left:0!important}#article{margin:inherit!important}article{border:none!important}.vieworiginal a:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.pagination span.current{border-style:dashed}#main{margin:0;padding:0}#article,#main{width:100%}}@media only screen and (min-width:992px){body:not(.entry):not(.login) main,footer,nav{padding-left:240px}.pagination{margin-left:auto}}@media only screen and (max-width:992px){footer,header,main,nav{padding-left:0}table{display:block;overflow:auto}iframe{max-width:100%;height:auto}.nav-panels .action{padding-right:.75rem}.nav-panel-buttom{justify-content:space-between}#article{max-width:35em;margin-left:auto;margin-right:auto;font-size:18px}#article>header>h1{font-size:1.33em}.reader-mode{width:240px!important}.reader-mode span{opacity:1}.tabs{display:inline-block;height:auto}.tab{min-width:100%}.indicator{display:none}.pagination li{margin-bottom:.5rem}.pagination li.next,.pagination li.prev{width:auto}.drag-target+.drag-target{height:50%}.drag-target+.drag-target+.drag-target{top:50%}}@media only screen and (min-width:1200px) and (max-width:1650px){.row .col.l3{width:33.33333%;margin-left:0}}@media only screen and (min-width:993px) and (max-width:1200px){.row .col.l1{width:25%;margin-left:0}.row .col.l2{width:33.33333%;margin-left:0}.row .col.l3{width:41.66667%;margin-left:0}.row .col.l4{width:50%;margin-left:0}.row .col.l5{width:58.33333%;margin-left:0}.row .col.l6{width:66.66667%;margin-left:0}.row .col.l7{width:75%;margin-left:0}.row .col.l8{width:83.33333%;margin-left:0}.row .col.l9{width:91.66667%;margin-left:0}.row .col.l10{width:100%;margin-left:0}}@media only screen and (max-width:350px){.nb-results{display:none}.row .col,main ul.row{padding:0}} |
2 | /*# sourceMappingURL=material.css.map*/ \ No newline at end of file | 2 | /*# sourceMappingURL=material.css.map*/ \ No newline at end of file |
@@ -5,66 +5,100 @@ | |||
5 | JSONStream@^0.8.4: | 5 | JSONStream@^0.8.4: |
6 | version "0.8.4" | 6 | version "0.8.4" |
7 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-0.8.4.tgz#91657dfe6ff857483066132b4618b62e8f4887bd" | 7 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-0.8.4.tgz#91657dfe6ff857483066132b4618b62e8f4887bd" |
8 | integrity sha1-kWV9/m/4V0gwZhMrRhi2Lo9Ih70= | ||
8 | dependencies: | 9 | dependencies: |
9 | jsonparse "0.0.5" | 10 | jsonparse "0.0.5" |
10 | through ">=2.2.7 <3" | 11 | through ">=2.2.7 <3" |
11 | 12 | ||
12 | abbrev@1: | 13 | abbrev@1: |
13 | version "1.1.0" | 14 | version "1.1.1" |
14 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" | 15 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" |
16 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== | ||
15 | 17 | ||
16 | accepts@~1.3.3: | 18 | accepts@~1.3.4, accepts@~1.3.5: |
17 | version "1.3.3" | 19 | version "1.3.5" |
18 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" | 20 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2" |
21 | integrity sha1-63d99gEXI6OxTopywIBcjoZ0a9I= | ||
19 | dependencies: | 22 | dependencies: |
20 | mime-types "~2.1.11" | 23 | mime-types "~2.1.18" |
21 | negotiator "0.6.1" | 24 | negotiator "0.6.1" |
22 | 25 | ||
23 | acorn-dynamic-import@^2.0.0: | 26 | acorn-dynamic-import@^2.0.0: |
24 | version "2.0.2" | 27 | version "2.0.2" |
25 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" | 28 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" |
29 | integrity sha1-x1K9IQvvZ5UBtsbLf8hPj0cVjMQ= | ||
26 | dependencies: | 30 | dependencies: |
27 | acorn "^4.0.3" | 31 | acorn "^4.0.3" |
28 | 32 | ||
29 | acorn-jsx@^3.0.0: | 33 | acorn-jsx@^3.0.0: |
30 | version "3.0.1" | 34 | version "3.0.1" |
31 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" | 35 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" |
36 | integrity sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s= | ||
32 | dependencies: | 37 | dependencies: |
33 | acorn "^3.0.4" | 38 | acorn "^3.0.4" |
34 | 39 | ||
35 | acorn@^3.0.4: | 40 | acorn@^3.0.4: |
36 | version "3.3.0" | 41 | version "3.3.0" |
37 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" | 42 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" |
43 | integrity sha1-ReN/s56No/JbruP/U2niu18iAXo= | ||
38 | 44 | ||
39 | acorn@^4.0.3: | 45 | acorn@^4.0.3: |
40 | version "4.0.13" | 46 | version "4.0.13" |
41 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" | 47 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" |
48 | integrity sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c= | ||
42 | 49 | ||
43 | acorn@^5.0.0, acorn@^5.0.1: | 50 | acorn@^5.0.0, acorn@^5.5.0: |
44 | version "5.0.3" | 51 | version "5.7.3" |
45 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" | 52 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" |
53 | integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== | ||
46 | 54 | ||
47 | ajv-keywords@^1.0.0, ajv-keywords@^1.1.1: | 55 | ajv-keywords@^1.1.1: |
48 | version "1.5.1" | 56 | version "1.5.1" |
49 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" | 57 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" |
58 | integrity sha1-MU3QpLM2j609/NxU7eYXG4htrzw= | ||
50 | 59 | ||
51 | ajv@^4.7.0, ajv@^4.9.1: | 60 | ajv-keywords@^2.1.0: |
61 | version "2.1.1" | ||
62 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" | ||
63 | integrity sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I= | ||
64 | |||
65 | ajv-keywords@^3.0.0, ajv-keywords@^3.1.0: | ||
66 | version "3.2.0" | ||
67 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.2.0.tgz#e86b819c602cf8821ad637413698f1dec021847a" | ||
68 | integrity sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo= | ||
69 | |||
70 | ajv@^4.7.0: | ||
52 | version "4.11.8" | 71 | version "4.11.8" |
53 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" | 72 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" |
73 | integrity sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY= | ||
54 | dependencies: | 74 | dependencies: |
55 | co "^4.6.0" | 75 | co "^4.6.0" |
56 | json-stable-stringify "^1.0.1" | 76 | json-stable-stringify "^1.0.1" |
57 | 77 | ||
58 | ajv@^5.0.0: | 78 | ajv@^5.0.0, ajv@^5.2.3, ajv@^5.3.0: |
59 | version "5.1.5" | 79 | version "5.5.2" |
60 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.1.5.tgz#8734931b601f00d4feef7c65738d77d1b65d1f68" | 80 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" |
81 | integrity sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU= | ||
61 | dependencies: | 82 | dependencies: |
62 | co "^4.6.0" | 83 | co "^4.6.0" |
63 | json-stable-stringify "^1.0.1" | 84 | fast-deep-equal "^1.0.0" |
85 | fast-json-stable-stringify "^2.0.0" | ||
86 | json-schema-traverse "^0.3.0" | ||
87 | |||
88 | ajv@^6.0.1, ajv@^6.1.0, ajv@^6.5.5: | ||
89 | version "6.5.5" | ||
90 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.5.tgz#cf97cdade71c6399a92c6d6c4177381291b781a1" | ||
91 | integrity sha512-7q7gtRQDJSyuEHjuVgHoUa2VuemFiCMrfQc9Tc08XTAc4Zj/5U1buQJ0HU6i7fKjXU09SVgSmxa4sLvuvS8Iyg== | ||
92 | dependencies: | ||
93 | fast-deep-equal "^2.0.1" | ||
94 | fast-json-stable-stringify "^2.0.0" | ||
95 | json-schema-traverse "^0.4.1" | ||
96 | uri-js "^4.2.2" | ||
64 | 97 | ||
65 | align-text@^0.1.1, align-text@^0.1.3: | 98 | align-text@^0.1.1, align-text@^0.1.3: |
66 | version "0.1.4" | 99 | version "0.1.4" |
67 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" | 100 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" |
101 | integrity sha1-DNkKVhCT810KmSVsIrcGlDP60Rc= | ||
68 | dependencies: | 102 | dependencies: |
69 | kind-of "^3.0.2" | 103 | kind-of "^3.0.2" |
70 | longest "^1.0.1" | 104 | longest "^1.0.1" |
@@ -73,10 +107,12 @@ align-text@^0.1.1, align-text@^0.1.3: | |||
73 | alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: | 107 | alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: |
74 | version "1.0.2" | 108 | version "1.0.2" |
75 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" | 109 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" |
110 | integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= | ||
76 | 111 | ||
77 | amdefine@>=0.0.4: | 112 | amdefine@>=0.0.4: |
78 | version "1.0.1" | 113 | version "1.0.1" |
79 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" | 114 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" |
115 | integrity sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU= | ||
80 | 116 | ||
81 | "annotator@git://github.com/wallabag/annotator.git#0f076c7d371ed25eb0793346f46982d90f2c4c85": | 117 | "annotator@git://github.com/wallabag/annotator.git#0f076c7d371ed25eb0793346f46982d90f2c4c85": |
82 | version "2.0.0-alpha.3" | 118 | version "2.0.0-alpha.3" |
@@ -90,137 +126,212 @@ amdefine@>=0.0.4: | |||
90 | jquery "^1.11.3" | 126 | jquery "^1.11.3" |
91 | xpath-range "0.0.5" | 127 | xpath-range "0.0.5" |
92 | 128 | ||
93 | ansi-escapes@^2.0.0: | 129 | ansi-escapes@^3.0.0: |
94 | version "2.0.0" | 130 | version "3.1.0" |
95 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" | 131 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" |
132 | integrity sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw== | ||
96 | 133 | ||
97 | ansi-html@0.0.7: | 134 | ansi-html@0.0.7: |
98 | version "0.0.7" | 135 | version "0.0.7" |
99 | resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" | 136 | resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" |
137 | integrity sha1-gTWEAhliqenm/QOflA0S9WynhZ4= | ||
100 | 138 | ||
101 | ansi-regex@^2.0.0: | 139 | ansi-regex@^2.0.0: |
102 | version "2.1.1" | 140 | version "2.1.1" |
103 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" | 141 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" |
142 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= | ||
143 | |||
144 | ansi-regex@^3.0.0: | ||
145 | version "3.0.0" | ||
146 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" | ||
147 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= | ||
104 | 148 | ||
105 | ansi-styles@^2.2.1: | 149 | ansi-styles@^2.2.1: |
106 | version "2.2.1" | 150 | version "2.2.1" |
107 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" | 151 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" |
152 | integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= | ||
108 | 153 | ||
109 | anymatch@^1.3.0: | 154 | ansi-styles@^3.2.1: |
110 | version "1.3.0" | 155 | version "3.2.1" |
111 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" | 156 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" |
157 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== | ||
112 | dependencies: | 158 | dependencies: |
113 | arrify "^1.0.0" | 159 | color-convert "^1.9.0" |
114 | micromatch "^2.1.5" | 160 | |
161 | anymatch@^2.0.0: | ||
162 | version "2.0.0" | ||
163 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" | ||
164 | integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== | ||
165 | dependencies: | ||
166 | micromatch "^3.1.4" | ||
167 | normalize-path "^2.1.1" | ||
115 | 168 | ||
116 | aproba@^1.0.3: | 169 | aproba@^1.0.3: |
117 | version "1.1.2" | 170 | version "1.2.0" |
118 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" | 171 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" |
172 | integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== | ||
119 | 173 | ||
120 | are-we-there-yet@~1.1.2: | 174 | are-we-there-yet@~1.1.2: |
121 | version "1.1.4" | 175 | version "1.1.5" |
122 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" | 176 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" |
177 | integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== | ||
123 | dependencies: | 178 | dependencies: |
124 | delegates "^1.0.0" | 179 | delegates "^1.0.0" |
125 | readable-stream "^2.0.6" | 180 | readable-stream "^2.0.6" |
126 | 181 | ||
127 | argparse@^1.0.7: | 182 | argparse@^1.0.7: |
128 | version "1.0.9" | 183 | version "1.0.10" |
129 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" | 184 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" |
185 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== | ||
130 | dependencies: | 186 | dependencies: |
131 | sprintf-js "~1.0.2" | 187 | sprintf-js "~1.0.2" |
132 | 188 | ||
133 | arr-diff@^2.0.0: | 189 | arr-diff@^2.0.0: |
134 | version "2.0.0" | 190 | version "2.0.0" |
135 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" | 191 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" |
192 | integrity sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8= | ||
136 | dependencies: | 193 | dependencies: |
137 | arr-flatten "^1.0.1" | 194 | arr-flatten "^1.0.1" |
138 | 195 | ||
139 | arr-flatten@^1.0.1: | 196 | arr-diff@^4.0.0: |
140 | version "1.0.3" | 197 | version "4.0.0" |
141 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" | 198 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" |
199 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= | ||
200 | |||
201 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: | ||
202 | version "1.1.0" | ||
203 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" | ||
204 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== | ||
205 | |||
206 | arr-union@^3.1.0: | ||
207 | version "3.1.0" | ||
208 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" | ||
209 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= | ||
142 | 210 | ||
143 | array-differ@^1.0.0: | 211 | array-differ@^1.0.0: |
144 | version "1.0.0" | 212 | version "1.0.0" |
145 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" | 213 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" |
214 | integrity sha1-7/UuN1gknTO+QCuLuOVkuytdQDE= | ||
146 | 215 | ||
147 | array-find-index@^1.0.1: | 216 | array-find-index@^1.0.1: |
148 | version "1.0.2" | 217 | version "1.0.2" |
149 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" | 218 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" |
219 | integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= | ||
150 | 220 | ||
151 | array-flatten@1.1.1: | 221 | array-flatten@1.1.1: |
152 | version "1.1.1" | 222 | version "1.1.1" |
153 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" | 223 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" |
224 | integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= | ||
225 | |||
226 | array-flatten@^2.1.0: | ||
227 | version "2.1.1" | ||
228 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.1.tgz#426bb9da84090c1838d812c8150af20a8331e296" | ||
229 | integrity sha1-Qmu52oQJDBg42BLIFQryCoMx4pY= | ||
230 | |||
231 | array-includes@^3.0.3: | ||
232 | version "3.0.3" | ||
233 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" | ||
234 | integrity sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0= | ||
235 | dependencies: | ||
236 | define-properties "^1.1.2" | ||
237 | es-abstract "^1.7.0" | ||
154 | 238 | ||
155 | array-union@^1.0.1: | 239 | array-union@^1.0.1: |
156 | version "1.0.2" | 240 | version "1.0.2" |
157 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" | 241 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" |
242 | integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= | ||
158 | dependencies: | 243 | dependencies: |
159 | array-uniq "^1.0.1" | 244 | array-uniq "^1.0.1" |
160 | 245 | ||
161 | array-uniq@^1.0.1: | 246 | array-uniq@^1.0.1: |
162 | version "1.0.3" | 247 | version "1.0.3" |
163 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" | 248 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" |
249 | integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= | ||
164 | 250 | ||
165 | array-unique@^0.2.1: | 251 | array-unique@^0.2.1: |
166 | version "0.2.1" | 252 | version "0.2.1" |
167 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" | 253 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" |
254 | integrity sha1-odl8yvy8JiXMcPrc6zalDFiwGlM= | ||
255 | |||
256 | array-unique@^0.3.2: | ||
257 | version "0.3.2" | ||
258 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" | ||
259 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= | ||
168 | 260 | ||
169 | arrify@^1.0.0, arrify@^1.0.1: | 261 | arrify@^1.0.0, arrify@^1.0.1: |
170 | version "1.0.1" | 262 | version "1.0.1" |
171 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" | 263 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" |
264 | integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= | ||
172 | 265 | ||
173 | asn1.js@^4.0.0: | 266 | asn1.js@^4.0.0: |
174 | version "4.9.1" | 267 | version "4.10.1" |
175 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" | 268 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" |
269 | integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== | ||
176 | dependencies: | 270 | dependencies: |
177 | bn.js "^4.0.0" | 271 | bn.js "^4.0.0" |
178 | inherits "^2.0.1" | 272 | inherits "^2.0.1" |
179 | minimalistic-assert "^1.0.0" | 273 | minimalistic-assert "^1.0.0" |
180 | 274 | ||
181 | asn1@~0.2.3: | 275 | asn1@~0.2.3: |
182 | version "0.2.3" | 276 | version "0.2.4" |
183 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" | 277 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" |
278 | integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== | ||
279 | dependencies: | ||
280 | safer-buffer "~2.1.0" | ||
184 | 281 | ||
185 | assert-plus@1.0.0, assert-plus@^1.0.0: | 282 | assert-plus@1.0.0, assert-plus@^1.0.0: |
186 | version "1.0.0" | 283 | version "1.0.0" |
187 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" | 284 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" |
188 | 285 | integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= | |
189 | assert-plus@^0.2.0: | ||
190 | version "0.2.0" | ||
191 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" | ||
192 | 286 | ||
193 | assert@^1.1.1: | 287 | assert@^1.1.1: |
194 | version "1.4.1" | 288 | version "1.4.1" |
195 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" | 289 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" |
290 | integrity sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE= | ||
196 | dependencies: | 291 | dependencies: |
197 | util "0.10.3" | 292 | util "0.10.3" |
198 | 293 | ||
294 | assign-symbols@^1.0.0: | ||
295 | version "1.0.0" | ||
296 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" | ||
297 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= | ||
298 | |||
199 | async-each@^1.0.0: | 299 | async-each@^1.0.0: |
200 | version "1.0.1" | 300 | version "1.0.1" |
201 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" | 301 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" |
302 | integrity sha1-GdOGodntxufByF04iu28xW0zYC0= | ||
202 | 303 | ||
203 | async-foreach@^0.1.3: | 304 | async-foreach@^0.1.3: |
204 | version "0.1.3" | 305 | version "0.1.3" |
205 | resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" | 306 | resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" |
307 | integrity sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI= | ||
206 | 308 | ||
207 | async@^1.5.2: | 309 | async@^1.5.2: |
208 | version "1.5.2" | 310 | version "1.5.2" |
209 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" | 311 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" |
312 | integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= | ||
210 | 313 | ||
211 | async@^2.1.2, async@^2.1.5: | 314 | async@^2.1.2: |
212 | version "2.4.1" | 315 | version "2.6.1" |
213 | resolved "https://registry.yarnpkg.com/async/-/async-2.4.1.tgz#62a56b279c98a11d0987096a01cc3eeb8eb7bbd7" | 316 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" |
317 | integrity sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ== | ||
214 | dependencies: | 318 | dependencies: |
215 | lodash "^4.14.0" | 319 | lodash "^4.17.10" |
216 | 320 | ||
217 | asynckit@^0.4.0: | 321 | asynckit@^0.4.0: |
218 | version "0.4.0" | 322 | version "0.4.0" |
219 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" | 323 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" |
324 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= | ||
325 | |||
326 | atob@^2.1.1: | ||
327 | version "2.1.2" | ||
328 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" | ||
329 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== | ||
220 | 330 | ||
221 | autoprefixer@^6.0.0, autoprefixer@^6.3.1: | 331 | autoprefixer@^6.0.0, autoprefixer@^6.3.1: |
222 | version "6.7.7" | 332 | version "6.7.7" |
223 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" | 333 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" |
334 | integrity sha1-Hb0cg1ZY41zj+ZhAmdsAWFx4IBQ= | ||
224 | dependencies: | 335 | dependencies: |
225 | browserslist "^1.7.6" | 336 | browserslist "^1.7.6" |
226 | caniuse-db "^1.0.30000634" | 337 | caniuse-db "^1.0.30000634" |
@@ -230,81 +341,89 @@ autoprefixer@^6.0.0, autoprefixer@^6.3.1: | |||
230 | postcss-value-parser "^3.2.3" | 341 | postcss-value-parser "^3.2.3" |
231 | 342 | ||
232 | autoprefixer@^7.1.1: | 343 | autoprefixer@^7.1.1: |
233 | version "7.1.1" | 344 | version "7.2.6" |
234 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-7.1.1.tgz#97bc854c7d0b979f8d6489de547a0d17fb307f6d" | 345 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-7.2.6.tgz#256672f86f7c735da849c4f07d008abb056067dc" |
346 | integrity sha512-Iq8TRIB+/9eQ8rbGhcP7ct5cYb/3qjNYAR2SnzLCEcwF6rvVOax8+9+fccgXk4bEhQGjOZd5TLhsksmAdsbGqQ== | ||
235 | dependencies: | 347 | dependencies: |
236 | browserslist "^2.1.3" | 348 | browserslist "^2.11.3" |
237 | caniuse-lite "^1.0.30000670" | 349 | caniuse-lite "^1.0.30000805" |
238 | normalize-range "^0.1.2" | 350 | normalize-range "^0.1.2" |
239 | num2fraction "^1.2.2" | 351 | num2fraction "^1.2.2" |
240 | postcss "^6.0.1" | 352 | postcss "^6.0.17" |
241 | postcss-value-parser "^3.2.3" | 353 | postcss-value-parser "^3.2.3" |
242 | 354 | ||
243 | aws-sign2@~0.6.0: | 355 | aws-sign2@~0.7.0: |
244 | version "0.6.0" | 356 | version "0.7.0" |
245 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" | 357 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" |
358 | integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= | ||
246 | 359 | ||
247 | aws4@^1.2.1: | 360 | aws4@^1.8.0: |
248 | version "1.6.0" | 361 | version "1.8.0" |
249 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" | 362 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" |
363 | integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ== | ||
250 | 364 | ||
251 | babel-code-frame@^6.11.0, babel-code-frame@^6.22.0: | 365 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: |
252 | version "6.22.0" | 366 | version "6.26.0" |
253 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" | 367 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" |
368 | integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= | ||
254 | dependencies: | 369 | dependencies: |
255 | chalk "^1.1.0" | 370 | chalk "^1.1.3" |
256 | esutils "^2.0.2" | 371 | esutils "^2.0.2" |
257 | js-tokens "^3.0.0" | 372 | js-tokens "^3.0.2" |
258 | 373 | ||
259 | babel-core@^6.24.1: | 374 | babel-core@^6.24.1, babel-core@^6.26.0: |
260 | version "6.25.0" | 375 | version "6.26.3" |
261 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" | 376 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" |
377 | integrity sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA== | ||
262 | dependencies: | 378 | dependencies: |
263 | babel-code-frame "^6.22.0" | 379 | babel-code-frame "^6.26.0" |
264 | babel-generator "^6.25.0" | 380 | babel-generator "^6.26.0" |
265 | babel-helpers "^6.24.1" | 381 | babel-helpers "^6.24.1" |
266 | babel-messages "^6.23.0" | 382 | babel-messages "^6.23.0" |
267 | babel-register "^6.24.1" | 383 | babel-register "^6.26.0" |
268 | babel-runtime "^6.22.0" | 384 | babel-runtime "^6.26.0" |
269 | babel-template "^6.25.0" | 385 | babel-template "^6.26.0" |
270 | babel-traverse "^6.25.0" | 386 | babel-traverse "^6.26.0" |
271 | babel-types "^6.25.0" | 387 | babel-types "^6.26.0" |
272 | babylon "^6.17.2" | 388 | babylon "^6.18.0" |
273 | convert-source-map "^1.1.0" | 389 | convert-source-map "^1.5.1" |
274 | debug "^2.1.1" | 390 | debug "^2.6.9" |
275 | json5 "^0.5.0" | 391 | json5 "^0.5.1" |
276 | lodash "^4.2.0" | 392 | lodash "^4.17.4" |
277 | minimatch "^3.0.2" | 393 | minimatch "^3.0.4" |
278 | path-is-absolute "^1.0.0" | 394 | path-is-absolute "^1.0.1" |
279 | private "^0.1.6" | 395 | private "^0.1.8" |
280 | slash "^1.0.0" | 396 | slash "^1.0.0" |
281 | source-map "^0.5.0" | 397 | source-map "^0.5.7" |
282 | 398 | ||
283 | babel-eslint@^7.2.3: | 399 | babel-eslint@^7.2.3: |
284 | version "7.2.3" | 400 | version "7.2.3" |
285 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827" | 401 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827" |
402 | integrity sha1-sv4tgBJkcPXBlELcdXJTqJdxCCc= | ||
286 | dependencies: | 403 | dependencies: |
287 | babel-code-frame "^6.22.0" | 404 | babel-code-frame "^6.22.0" |
288 | babel-traverse "^6.23.1" | 405 | babel-traverse "^6.23.1" |
289 | babel-types "^6.23.0" | 406 | babel-types "^6.23.0" |
290 | babylon "^6.17.0" | 407 | babylon "^6.17.0" |
291 | 408 | ||
292 | babel-generator@^6.25.0: | 409 | babel-generator@^6.26.0: |
293 | version "6.25.0" | 410 | version "6.26.1" |
294 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" | 411 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" |
412 | integrity sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA== | ||
295 | dependencies: | 413 | dependencies: |
296 | babel-messages "^6.23.0" | 414 | babel-messages "^6.23.0" |
297 | babel-runtime "^6.22.0" | 415 | babel-runtime "^6.26.0" |
298 | babel-types "^6.25.0" | 416 | babel-types "^6.26.0" |
299 | detect-indent "^4.0.0" | 417 | detect-indent "^4.0.0" |
300 | jsesc "^1.3.0" | 418 | jsesc "^1.3.0" |
301 | lodash "^4.2.0" | 419 | lodash "^4.17.4" |
302 | source-map "^0.5.0" | 420 | source-map "^0.5.7" |
303 | trim-right "^1.0.1" | 421 | trim-right "^1.0.1" |
304 | 422 | ||
305 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: | 423 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: |
306 | version "6.24.1" | 424 | version "6.24.1" |
307 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" | 425 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" |
426 | integrity sha1-zORReto1b0IgvK6KAsKzRvmlZmQ= | ||
308 | dependencies: | 427 | dependencies: |
309 | babel-helper-explode-assignable-expression "^6.24.1" | 428 | babel-helper-explode-assignable-expression "^6.24.1" |
310 | babel-runtime "^6.22.0" | 429 | babel-runtime "^6.22.0" |
@@ -313,6 +432,7 @@ babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: | |||
313 | babel-helper-call-delegate@^6.24.1: | 432 | babel-helper-call-delegate@^6.24.1: |
314 | version "6.24.1" | 433 | version "6.24.1" |
315 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" | 434 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" |
435 | integrity sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340= | ||
316 | dependencies: | 436 | dependencies: |
317 | babel-helper-hoist-variables "^6.24.1" | 437 | babel-helper-hoist-variables "^6.24.1" |
318 | babel-runtime "^6.22.0" | 438 | babel-runtime "^6.22.0" |
@@ -320,17 +440,19 @@ babel-helper-call-delegate@^6.24.1: | |||
320 | babel-types "^6.24.1" | 440 | babel-types "^6.24.1" |
321 | 441 | ||
322 | babel-helper-define-map@^6.24.1: | 442 | babel-helper-define-map@^6.24.1: |
323 | version "6.24.1" | 443 | version "6.26.0" |
324 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" | 444 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" |
445 | integrity sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8= | ||
325 | dependencies: | 446 | dependencies: |
326 | babel-helper-function-name "^6.24.1" | 447 | babel-helper-function-name "^6.24.1" |
327 | babel-runtime "^6.22.0" | 448 | babel-runtime "^6.26.0" |
328 | babel-types "^6.24.1" | 449 | babel-types "^6.26.0" |
329 | lodash "^4.2.0" | 450 | lodash "^4.17.4" |
330 | 451 | ||
331 | babel-helper-explode-assignable-expression@^6.24.1: | 452 | babel-helper-explode-assignable-expression@^6.24.1: |
332 | version "6.24.1" | 453 | version "6.24.1" |
333 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" | 454 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" |
455 | integrity sha1-8luCz33BBDPFX3BZLVdGQArCLKo= | ||
334 | dependencies: | 456 | dependencies: |
335 | babel-runtime "^6.22.0" | 457 | babel-runtime "^6.22.0" |
336 | babel-traverse "^6.24.1" | 458 | babel-traverse "^6.24.1" |
@@ -339,6 +461,7 @@ babel-helper-explode-assignable-expression@^6.24.1: | |||
339 | babel-helper-function-name@^6.24.1: | 461 | babel-helper-function-name@^6.24.1: |
340 | version "6.24.1" | 462 | version "6.24.1" |
341 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" | 463 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" |
464 | integrity sha1-00dbjAPtmCQqJbSDUasYOZ01gKk= | ||
342 | dependencies: | 465 | dependencies: |
343 | babel-helper-get-function-arity "^6.24.1" | 466 | babel-helper-get-function-arity "^6.24.1" |
344 | babel-runtime "^6.22.0" | 467 | babel-runtime "^6.22.0" |
@@ -349,6 +472,7 @@ babel-helper-function-name@^6.24.1: | |||
349 | babel-helper-get-function-arity@^6.24.1: | 472 | babel-helper-get-function-arity@^6.24.1: |
350 | version "6.24.1" | 473 | version "6.24.1" |
351 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" | 474 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" |
475 | integrity sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0= | ||
352 | dependencies: | 476 | dependencies: |
353 | babel-runtime "^6.22.0" | 477 | babel-runtime "^6.22.0" |
354 | babel-types "^6.24.1" | 478 | babel-types "^6.24.1" |
@@ -356,6 +480,7 @@ babel-helper-get-function-arity@^6.24.1: | |||
356 | babel-helper-hoist-variables@^6.24.1: | 480 | babel-helper-hoist-variables@^6.24.1: |
357 | version "6.24.1" | 481 | version "6.24.1" |
358 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" | 482 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" |
483 | integrity sha1-HssnaJydJVE+rbyZFKc/VAi+enY= | ||
359 | dependencies: | 484 | dependencies: |
360 | babel-runtime "^6.22.0" | 485 | babel-runtime "^6.22.0" |
361 | babel-types "^6.24.1" | 486 | babel-types "^6.24.1" |
@@ -363,21 +488,24 @@ babel-helper-hoist-variables@^6.24.1: | |||
363 | babel-helper-optimise-call-expression@^6.24.1: | 488 | babel-helper-optimise-call-expression@^6.24.1: |
364 | version "6.24.1" | 489 | version "6.24.1" |
365 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" | 490 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" |
491 | integrity sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc= | ||
366 | dependencies: | 492 | dependencies: |
367 | babel-runtime "^6.22.0" | 493 | babel-runtime "^6.22.0" |
368 | babel-types "^6.24.1" | 494 | babel-types "^6.24.1" |
369 | 495 | ||
370 | babel-helper-regex@^6.24.1: | 496 | babel-helper-regex@^6.24.1: |
371 | version "6.24.1" | 497 | version "6.26.0" |
372 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" | 498 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" |
499 | integrity sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI= | ||
373 | dependencies: | 500 | dependencies: |
374 | babel-runtime "^6.22.0" | 501 | babel-runtime "^6.26.0" |
375 | babel-types "^6.24.1" | 502 | babel-types "^6.26.0" |
376 | lodash "^4.2.0" | 503 | lodash "^4.17.4" |
377 | 504 | ||
378 | babel-helper-remap-async-to-generator@^6.24.1: | 505 | babel-helper-remap-async-to-generator@^6.24.1: |
379 | version "6.24.1" | 506 | version "6.24.1" |
380 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" | 507 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" |
508 | integrity sha1-XsWBgnrXI/7N04HxySg5BnbkVRs= | ||
381 | dependencies: | 509 | dependencies: |
382 | babel-helper-function-name "^6.24.1" | 510 | babel-helper-function-name "^6.24.1" |
383 | babel-runtime "^6.22.0" | 511 | babel-runtime "^6.22.0" |
@@ -388,6 +516,7 @@ babel-helper-remap-async-to-generator@^6.24.1: | |||
388 | babel-helper-replace-supers@^6.24.1: | 516 | babel-helper-replace-supers@^6.24.1: |
389 | version "6.24.1" | 517 | version "6.24.1" |
390 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" | 518 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" |
519 | integrity sha1-v22/5Dk40XNpohPKiov3S2qQqxo= | ||
391 | dependencies: | 520 | dependencies: |
392 | babel-helper-optimise-call-expression "^6.24.1" | 521 | babel-helper-optimise-call-expression "^6.24.1" |
393 | babel-messages "^6.23.0" | 522 | babel-messages "^6.23.0" |
@@ -399,45 +528,53 @@ babel-helper-replace-supers@^6.24.1: | |||
399 | babel-helpers@^6.24.1: | 528 | babel-helpers@^6.24.1: |
400 | version "6.24.1" | 529 | version "6.24.1" |
401 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" | 530 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" |
531 | integrity sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI= | ||
402 | dependencies: | 532 | dependencies: |
403 | babel-runtime "^6.22.0" | 533 | babel-runtime "^6.22.0" |
404 | babel-template "^6.24.1" | 534 | babel-template "^6.24.1" |
405 | 535 | ||
406 | babel-loader@^7.0.0: | 536 | babel-loader@^7.0.0: |
407 | version "7.0.0" | 537 | version "7.1.5" |
408 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.0.0.tgz#2e43a66bee1fff4470533d0402c8a4532fafbaf7" | 538 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.5.tgz#e3ee0cd7394aa557e013b02d3e492bfd07aa6d68" |
539 | integrity sha512-iCHfbieL5d1LfOQeeVJEUyD9rTwBcP/fcEbRCfempxTDuqrKpu0AZjLAQHEQa3Yqyj9ORKe2iHfoj4rHLf7xpw== | ||
409 | dependencies: | 540 | dependencies: |
410 | find-cache-dir "^0.1.1" | 541 | find-cache-dir "^1.0.0" |
411 | loader-utils "^1.0.2" | 542 | loader-utils "^1.0.2" |
412 | mkdirp "^0.5.1" | 543 | mkdirp "^0.5.1" |
413 | 544 | ||
414 | babel-messages@^6.23.0: | 545 | babel-messages@^6.23.0: |
415 | version "6.23.0" | 546 | version "6.23.0" |
416 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" | 547 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" |
548 | integrity sha1-8830cDhYA1sqKVHG7F7fbGLyYw4= | ||
417 | dependencies: | 549 | dependencies: |
418 | babel-runtime "^6.22.0" | 550 | babel-runtime "^6.22.0" |
419 | 551 | ||
420 | babel-plugin-check-es2015-constants@^6.22.0: | 552 | babel-plugin-check-es2015-constants@^6.22.0: |
421 | version "6.22.0" | 553 | version "6.22.0" |
422 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" | 554 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" |
555 | integrity sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o= | ||
423 | dependencies: | 556 | dependencies: |
424 | babel-runtime "^6.22.0" | 557 | babel-runtime "^6.22.0" |
425 | 558 | ||
426 | babel-plugin-syntax-async-functions@^6.8.0: | 559 | babel-plugin-syntax-async-functions@^6.8.0: |
427 | version "6.13.0" | 560 | version "6.13.0" |
428 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" | 561 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" |
562 | integrity sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU= | ||
429 | 563 | ||
430 | babel-plugin-syntax-exponentiation-operator@^6.8.0: | 564 | babel-plugin-syntax-exponentiation-operator@^6.8.0: |
431 | version "6.13.0" | 565 | version "6.13.0" |
432 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" | 566 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" |
567 | integrity sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4= | ||
433 | 568 | ||
434 | babel-plugin-syntax-trailing-function-commas@^6.22.0: | 569 | babel-plugin-syntax-trailing-function-commas@^6.22.0: |
435 | version "6.22.0" | 570 | version "6.22.0" |
436 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" | 571 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" |
572 | integrity sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM= | ||
437 | 573 | ||
438 | babel-plugin-transform-async-to-generator@^6.22.0: | 574 | babel-plugin-transform-async-to-generator@^6.22.0: |
439 | version "6.24.1" | 575 | version "6.24.1" |
440 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" | 576 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" |
577 | integrity sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E= | ||
441 | dependencies: | 578 | dependencies: |
442 | babel-helper-remap-async-to-generator "^6.24.1" | 579 | babel-helper-remap-async-to-generator "^6.24.1" |
443 | babel-plugin-syntax-async-functions "^6.8.0" | 580 | babel-plugin-syntax-async-functions "^6.8.0" |
@@ -446,28 +583,32 @@ babel-plugin-transform-async-to-generator@^6.22.0: | |||
446 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: | 583 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: |
447 | version "6.22.0" | 584 | version "6.22.0" |
448 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" | 585 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" |
586 | integrity sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE= | ||
449 | dependencies: | 587 | dependencies: |
450 | babel-runtime "^6.22.0" | 588 | babel-runtime "^6.22.0" |
451 | 589 | ||
452 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: | 590 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: |
453 | version "6.22.0" | 591 | version "6.22.0" |
454 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" | 592 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" |
593 | integrity sha1-u8UbSflk1wy42OC5ToICRs46YUE= | ||
455 | dependencies: | 594 | dependencies: |
456 | babel-runtime "^6.22.0" | 595 | babel-runtime "^6.22.0" |
457 | 596 | ||
458 | babel-plugin-transform-es2015-block-scoping@^6.23.0: | 597 | babel-plugin-transform-es2015-block-scoping@^6.23.0: |
459 | version "6.24.1" | 598 | version "6.26.0" |
460 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" | 599 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" |
461 | dependencies: | 600 | integrity sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8= |
462 | babel-runtime "^6.22.0" | 601 | dependencies: |
463 | babel-template "^6.24.1" | 602 | babel-runtime "^6.26.0" |
464 | babel-traverse "^6.24.1" | 603 | babel-template "^6.26.0" |
465 | babel-types "^6.24.1" | 604 | babel-traverse "^6.26.0" |
466 | lodash "^4.2.0" | 605 | babel-types "^6.26.0" |
606 | lodash "^4.17.4" | ||
467 | 607 | ||
468 | babel-plugin-transform-es2015-classes@^6.23.0: | 608 | babel-plugin-transform-es2015-classes@^6.23.0: |
469 | version "6.24.1" | 609 | version "6.24.1" |
470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" | 610 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" |
611 | integrity sha1-WkxYpQyclGHlZLSyo7+ryXolhNs= | ||
471 | dependencies: | 612 | dependencies: |
472 | babel-helper-define-map "^6.24.1" | 613 | babel-helper-define-map "^6.24.1" |
473 | babel-helper-function-name "^6.24.1" | 614 | babel-helper-function-name "^6.24.1" |
@@ -482,6 +623,7 @@ babel-plugin-transform-es2015-classes@^6.23.0: | |||
482 | babel-plugin-transform-es2015-computed-properties@^6.22.0: | 623 | babel-plugin-transform-es2015-computed-properties@^6.22.0: |
483 | version "6.24.1" | 624 | version "6.24.1" |
484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" | 625 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" |
626 | integrity sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM= | ||
485 | dependencies: | 627 | dependencies: |
486 | babel-runtime "^6.22.0" | 628 | babel-runtime "^6.22.0" |
487 | babel-template "^6.24.1" | 629 | babel-template "^6.24.1" |
@@ -489,12 +631,14 @@ babel-plugin-transform-es2015-computed-properties@^6.22.0: | |||
489 | babel-plugin-transform-es2015-destructuring@^6.23.0: | 631 | babel-plugin-transform-es2015-destructuring@^6.23.0: |
490 | version "6.23.0" | 632 | version "6.23.0" |
491 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" | 633 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" |
634 | integrity sha1-mXux8auWf2gtKwh2/jWNYOdlxW0= | ||
492 | dependencies: | 635 | dependencies: |
493 | babel-runtime "^6.22.0" | 636 | babel-runtime "^6.22.0" |
494 | 637 | ||
495 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: | 638 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: |
496 | version "6.24.1" | 639 | version "6.24.1" |
497 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" | 640 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" |
641 | integrity sha1-c+s9MQypaePvnskcU3QabxV2Qj4= | ||
498 | dependencies: | 642 | dependencies: |
499 | babel-runtime "^6.22.0" | 643 | babel-runtime "^6.22.0" |
500 | babel-types "^6.24.1" | 644 | babel-types "^6.24.1" |
@@ -502,12 +646,14 @@ babel-plugin-transform-es2015-duplicate-keys@^6.22.0: | |||
502 | babel-plugin-transform-es2015-for-of@^6.23.0: | 646 | babel-plugin-transform-es2015-for-of@^6.23.0: |
503 | version "6.23.0" | 647 | version "6.23.0" |
504 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" | 648 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" |
649 | integrity sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE= | ||
505 | dependencies: | 650 | dependencies: |
506 | babel-runtime "^6.22.0" | 651 | babel-runtime "^6.22.0" |
507 | 652 | ||
508 | babel-plugin-transform-es2015-function-name@^6.22.0: | 653 | babel-plugin-transform-es2015-function-name@^6.22.0: |
509 | version "6.24.1" | 654 | version "6.24.1" |
510 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" | 655 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" |
656 | integrity sha1-g0yJhTvDaxrw86TF26qU/Y6sqos= | ||
511 | dependencies: | 657 | dependencies: |
512 | babel-helper-function-name "^6.24.1" | 658 | babel-helper-function-name "^6.24.1" |
513 | babel-runtime "^6.22.0" | 659 | babel-runtime "^6.22.0" |
@@ -516,29 +662,33 @@ babel-plugin-transform-es2015-function-name@^6.22.0: | |||
516 | babel-plugin-transform-es2015-literals@^6.22.0: | 662 | babel-plugin-transform-es2015-literals@^6.22.0: |
517 | version "6.22.0" | 663 | version "6.22.0" |
518 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" | 664 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" |
665 | integrity sha1-T1SgLWzWbPkVKAAZox0xklN3yi4= | ||
519 | dependencies: | 666 | dependencies: |
520 | babel-runtime "^6.22.0" | 667 | babel-runtime "^6.22.0" |
521 | 668 | ||
522 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: | 669 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: |
523 | version "6.24.1" | 670 | version "6.24.1" |
524 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" | 671 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" |
672 | integrity sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ= | ||
525 | dependencies: | 673 | dependencies: |
526 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" | 674 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" |
527 | babel-runtime "^6.22.0" | 675 | babel-runtime "^6.22.0" |
528 | babel-template "^6.24.1" | 676 | babel-template "^6.24.1" |
529 | 677 | ||
530 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: | 678 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: |
531 | version "6.24.1" | 679 | version "6.26.2" |
532 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" | 680 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" |
681 | integrity sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q== | ||
533 | dependencies: | 682 | dependencies: |
534 | babel-plugin-transform-strict-mode "^6.24.1" | 683 | babel-plugin-transform-strict-mode "^6.24.1" |
535 | babel-runtime "^6.22.0" | 684 | babel-runtime "^6.26.0" |
536 | babel-template "^6.24.1" | 685 | babel-template "^6.26.0" |
537 | babel-types "^6.24.1" | 686 | babel-types "^6.26.0" |
538 | 687 | ||
539 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: | 688 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: |
540 | version "6.24.1" | 689 | version "6.24.1" |
541 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" | 690 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" |
691 | integrity sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM= | ||
542 | dependencies: | 692 | dependencies: |
543 | babel-helper-hoist-variables "^6.24.1" | 693 | babel-helper-hoist-variables "^6.24.1" |
544 | babel-runtime "^6.22.0" | 694 | babel-runtime "^6.22.0" |
@@ -547,6 +697,7 @@ babel-plugin-transform-es2015-modules-systemjs@^6.23.0: | |||
547 | babel-plugin-transform-es2015-modules-umd@^6.23.0: | 697 | babel-plugin-transform-es2015-modules-umd@^6.23.0: |
548 | version "6.24.1" | 698 | version "6.24.1" |
549 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" | 699 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" |
700 | integrity sha1-rJl+YoXNGO1hdq22B9YCNErThGg= | ||
550 | dependencies: | 701 | dependencies: |
551 | babel-plugin-transform-es2015-modules-amd "^6.24.1" | 702 | babel-plugin-transform-es2015-modules-amd "^6.24.1" |
552 | babel-runtime "^6.22.0" | 703 | babel-runtime "^6.22.0" |
@@ -555,6 +706,7 @@ babel-plugin-transform-es2015-modules-umd@^6.23.0: | |||
555 | babel-plugin-transform-es2015-object-super@^6.22.0: | 706 | babel-plugin-transform-es2015-object-super@^6.22.0: |
556 | version "6.24.1" | 707 | version "6.24.1" |
557 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" | 708 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" |
709 | integrity sha1-JM72muIcuDp/hgPa0CH1cusnj40= | ||
558 | dependencies: | 710 | dependencies: |
559 | babel-helper-replace-supers "^6.24.1" | 711 | babel-helper-replace-supers "^6.24.1" |
560 | babel-runtime "^6.22.0" | 712 | babel-runtime "^6.22.0" |
@@ -562,6 +714,7 @@ babel-plugin-transform-es2015-object-super@^6.22.0: | |||
562 | babel-plugin-transform-es2015-parameters@^6.23.0: | 714 | babel-plugin-transform-es2015-parameters@^6.23.0: |
563 | version "6.24.1" | 715 | version "6.24.1" |
564 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" | 716 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" |
717 | integrity sha1-V6w1GrScrxSpfNE7CfZv3wpiXys= | ||
565 | dependencies: | 718 | dependencies: |
566 | babel-helper-call-delegate "^6.24.1" | 719 | babel-helper-call-delegate "^6.24.1" |
567 | babel-helper-get-function-arity "^6.24.1" | 720 | babel-helper-get-function-arity "^6.24.1" |
@@ -573,6 +726,7 @@ babel-plugin-transform-es2015-parameters@^6.23.0: | |||
573 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: | 726 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: |
574 | version "6.24.1" | 727 | version "6.24.1" |
575 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" | 728 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" |
729 | integrity sha1-JPh11nIch2YbvZmkYi5R8U3jiqA= | ||
576 | dependencies: | 730 | dependencies: |
577 | babel-runtime "^6.22.0" | 731 | babel-runtime "^6.22.0" |
578 | babel-types "^6.24.1" | 732 | babel-types "^6.24.1" |
@@ -580,12 +734,14 @@ babel-plugin-transform-es2015-shorthand-properties@^6.22.0: | |||
580 | babel-plugin-transform-es2015-spread@^6.22.0: | 734 | babel-plugin-transform-es2015-spread@^6.22.0: |
581 | version "6.22.0" | 735 | version "6.22.0" |
582 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" | 736 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" |
737 | integrity sha1-1taKmfia7cRTbIGlQujdnxdG+NE= | ||
583 | dependencies: | 738 | dependencies: |
584 | babel-runtime "^6.22.0" | 739 | babel-runtime "^6.22.0" |
585 | 740 | ||
586 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: | 741 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: |
587 | version "6.24.1" | 742 | version "6.24.1" |
588 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" | 743 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" |
744 | integrity sha1-AMHNsaynERLN8M9hJsLta0V8zbw= | ||
589 | dependencies: | 745 | dependencies: |
590 | babel-helper-regex "^6.24.1" | 746 | babel-helper-regex "^6.24.1" |
591 | babel-runtime "^6.22.0" | 747 | babel-runtime "^6.22.0" |
@@ -594,18 +750,21 @@ babel-plugin-transform-es2015-sticky-regex@^6.22.0: | |||
594 | babel-plugin-transform-es2015-template-literals@^6.22.0: | 750 | babel-plugin-transform-es2015-template-literals@^6.22.0: |
595 | version "6.22.0" | 751 | version "6.22.0" |
596 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" | 752 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" |
753 | integrity sha1-qEs0UPfp+PH2g51taH2oS7EjbY0= | ||
597 | dependencies: | 754 | dependencies: |
598 | babel-runtime "^6.22.0" | 755 | babel-runtime "^6.22.0" |
599 | 756 | ||
600 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: | 757 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: |
601 | version "6.23.0" | 758 | version "6.23.0" |
602 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" | 759 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" |
760 | integrity sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I= | ||
603 | dependencies: | 761 | dependencies: |
604 | babel-runtime "^6.22.0" | 762 | babel-runtime "^6.22.0" |
605 | 763 | ||
606 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: | 764 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: |
607 | version "6.24.1" | 765 | version "6.24.1" |
608 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" | 766 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" |
767 | integrity sha1-04sS9C6nMj9yk4fxinxa4frrNek= | ||
609 | dependencies: | 768 | dependencies: |
610 | babel-helper-regex "^6.24.1" | 769 | babel-helper-regex "^6.24.1" |
611 | babel-runtime "^6.22.0" | 770 | babel-runtime "^6.22.0" |
@@ -614,27 +773,31 @@ babel-plugin-transform-es2015-unicode-regex@^6.22.0: | |||
614 | babel-plugin-transform-exponentiation-operator@^6.22.0: | 773 | babel-plugin-transform-exponentiation-operator@^6.22.0: |
615 | version "6.24.1" | 774 | version "6.24.1" |
616 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" | 775 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" |
776 | integrity sha1-KrDJx/MJj6SJB3cruBP+QejeOg4= | ||
617 | dependencies: | 777 | dependencies: |
618 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" | 778 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" |
619 | babel-plugin-syntax-exponentiation-operator "^6.8.0" | 779 | babel-plugin-syntax-exponentiation-operator "^6.8.0" |
620 | babel-runtime "^6.22.0" | 780 | babel-runtime "^6.22.0" |
621 | 781 | ||
622 | babel-plugin-transform-regenerator@^6.22.0: | 782 | babel-plugin-transform-regenerator@^6.22.0: |
623 | version "6.24.1" | 783 | version "6.26.0" |
624 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" | 784 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" |
785 | integrity sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8= | ||
625 | dependencies: | 786 | dependencies: |
626 | regenerator-transform "0.9.11" | 787 | regenerator-transform "^0.10.0" |
627 | 788 | ||
628 | babel-plugin-transform-strict-mode@^6.24.1: | 789 | babel-plugin-transform-strict-mode@^6.24.1: |
629 | version "6.24.1" | 790 | version "6.24.1" |
630 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" | 791 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" |
792 | integrity sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g= | ||
631 | dependencies: | 793 | dependencies: |
632 | babel-runtime "^6.22.0" | 794 | babel-runtime "^6.22.0" |
633 | babel-types "^6.24.1" | 795 | babel-types "^6.24.1" |
634 | 796 | ||
635 | babel-preset-env@^1.4.0: | 797 | babel-preset-env@^1.4.0: |
636 | version "1.5.2" | 798 | version "1.7.0" |
637 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.5.2.tgz#cd4ae90a6e94b709f97374b33e5f8b983556adef" | 799 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a" |
800 | integrity sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg== | ||
638 | dependencies: | 801 | dependencies: |
639 | babel-plugin-check-es2015-constants "^6.22.0" | 802 | babel-plugin-check-es2015-constants "^6.22.0" |
640 | babel-plugin-syntax-trailing-function-commas "^6.22.0" | 803 | babel-plugin-syntax-trailing-function-commas "^6.22.0" |
@@ -663,119 +826,171 @@ babel-preset-env@^1.4.0: | |||
663 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" | 826 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" |
664 | babel-plugin-transform-exponentiation-operator "^6.22.0" | 827 | babel-plugin-transform-exponentiation-operator "^6.22.0" |
665 | babel-plugin-transform-regenerator "^6.22.0" | 828 | babel-plugin-transform-regenerator "^6.22.0" |
666 | browserslist "^2.1.2" | 829 | browserslist "^3.2.6" |
667 | invariant "^2.2.2" | 830 | invariant "^2.2.2" |
668 | semver "^5.3.0" | 831 | semver "^5.3.0" |
669 | 832 | ||
670 | babel-register@^6.24.1: | 833 | babel-register@^6.26.0: |
671 | version "6.24.1" | 834 | version "6.26.0" |
672 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" | 835 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" |
836 | integrity sha1-btAhFz4vy0htestFxgCahW9kcHE= | ||
673 | dependencies: | 837 | dependencies: |
674 | babel-core "^6.24.1" | 838 | babel-core "^6.26.0" |
675 | babel-runtime "^6.22.0" | 839 | babel-runtime "^6.26.0" |
676 | core-js "^2.4.0" | 840 | core-js "^2.5.0" |
677 | home-or-tmp "^2.0.0" | 841 | home-or-tmp "^2.0.0" |
678 | lodash "^4.2.0" | 842 | lodash "^4.17.4" |
679 | mkdirp "^0.5.1" | 843 | mkdirp "^0.5.1" |
680 | source-map-support "^0.4.2" | 844 | source-map-support "^0.4.15" |
681 | 845 | ||
682 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: | 846 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: |
683 | version "6.23.0" | 847 | version "6.26.0" |
684 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" | 848 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" |
849 | integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= | ||
685 | dependencies: | 850 | dependencies: |
686 | core-js "^2.4.0" | 851 | core-js "^2.4.0" |
687 | regenerator-runtime "^0.10.0" | 852 | regenerator-runtime "^0.11.0" |
688 | 853 | ||
689 | babel-template@^6.24.1, babel-template@^6.25.0: | 854 | babel-template@^6.24.1, babel-template@^6.26.0: |
690 | version "6.25.0" | 855 | version "6.26.0" |
691 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" | 856 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" |
857 | integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI= | ||
692 | dependencies: | 858 | dependencies: |
693 | babel-runtime "^6.22.0" | 859 | babel-runtime "^6.26.0" |
694 | babel-traverse "^6.25.0" | 860 | babel-traverse "^6.26.0" |
695 | babel-types "^6.25.0" | 861 | babel-types "^6.26.0" |
696 | babylon "^6.17.2" | 862 | babylon "^6.18.0" |
697 | lodash "^4.2.0" | 863 | lodash "^4.17.4" |
698 | 864 | ||
699 | babel-traverse@^6.23.1, babel-traverse@^6.24.1, babel-traverse@^6.25.0: | 865 | babel-traverse@^6.23.1, babel-traverse@^6.24.1, babel-traverse@^6.26.0: |
700 | version "6.25.0" | 866 | version "6.26.0" |
701 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" | 867 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" |
868 | integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4= | ||
702 | dependencies: | 869 | dependencies: |
703 | babel-code-frame "^6.22.0" | 870 | babel-code-frame "^6.26.0" |
704 | babel-messages "^6.23.0" | 871 | babel-messages "^6.23.0" |
705 | babel-runtime "^6.22.0" | 872 | babel-runtime "^6.26.0" |
706 | babel-types "^6.25.0" | 873 | babel-types "^6.26.0" |
707 | babylon "^6.17.2" | 874 | babylon "^6.18.0" |
708 | debug "^2.2.0" | 875 | debug "^2.6.8" |
709 | globals "^9.0.0" | 876 | globals "^9.18.0" |
710 | invariant "^2.2.0" | 877 | invariant "^2.2.2" |
711 | lodash "^4.2.0" | 878 | lodash "^4.17.4" |
712 | 879 | ||
713 | babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.25.0: | 880 | babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.26.0: |
714 | version "6.25.0" | 881 | version "6.26.0" |
715 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" | 882 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" |
883 | integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc= | ||
716 | dependencies: | 884 | dependencies: |
717 | babel-runtime "^6.22.0" | 885 | babel-runtime "^6.26.0" |
718 | esutils "^2.0.2" | 886 | esutils "^2.0.2" |
719 | lodash "^4.2.0" | 887 | lodash "^4.17.4" |
720 | to-fast-properties "^1.0.1" | 888 | to-fast-properties "^1.0.3" |
721 | 889 | ||
722 | babylon@^6.17.0, babylon@^6.17.2: | 890 | babylon@^6.17.0, babylon@^6.18.0: |
723 | version "6.17.3" | 891 | version "6.18.0" |
724 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.3.tgz#1327d709950b558f204e5352587fd0290f8d8e48" | 892 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" |
893 | integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== | ||
725 | 894 | ||
726 | backbone-extend-standalone@^0.1.2: | 895 | backbone-extend-standalone@^0.1.2: |
727 | version "0.1.2" | 896 | version "0.1.2" |
728 | resolved "https://registry.yarnpkg.com/backbone-extend-standalone/-/backbone-extend-standalone-0.1.2.tgz#2476cba773f67cf2a9dca388bfa2df8d73fe7edf" | 897 | resolved "https://registry.yarnpkg.com/backbone-extend-standalone/-/backbone-extend-standalone-0.1.2.tgz#2476cba773f67cf2a9dca388bfa2df8d73fe7edf" |
898 | integrity sha1-JHbLp3P2fPKp3KOIv6LfjXP+ft8= | ||
729 | 899 | ||
730 | balanced-match@^0.4.0, balanced-match@^0.4.2: | 900 | balanced-match@^0.4.0, balanced-match@^0.4.2: |
731 | version "0.4.2" | 901 | version "0.4.2" |
732 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" | 902 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" |
903 | integrity sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg= | ||
733 | 904 | ||
734 | balanced-match@^1.0.0: | 905 | balanced-match@^1.0.0: |
735 | version "1.0.0" | 906 | version "1.0.0" |
736 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" | 907 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" |
908 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= | ||
737 | 909 | ||
738 | base64-js@^1.0.2: | 910 | base64-js@^1.0.2: |
739 | version "1.2.0" | 911 | version "1.3.0" |
740 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" | 912 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" |
913 | integrity sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw== | ||
914 | |||
915 | base@^0.11.1: | ||
916 | version "0.11.2" | ||
917 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" | ||
918 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== | ||
919 | dependencies: | ||
920 | cache-base "^1.0.1" | ||
921 | class-utils "^0.3.5" | ||
922 | component-emitter "^1.2.1" | ||
923 | define-property "^1.0.0" | ||
924 | isobject "^3.0.1" | ||
925 | mixin-deep "^1.2.0" | ||
926 | pascalcase "^0.1.1" | ||
741 | 927 | ||
742 | batch@0.6.1: | 928 | batch@0.6.1: |
743 | version "0.6.1" | 929 | version "0.6.1" |
744 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" | 930 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" |
931 | integrity sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY= | ||
745 | 932 | ||
746 | bcrypt-pbkdf@^1.0.0: | 933 | bcrypt-pbkdf@^1.0.0: |
747 | version "1.0.1" | 934 | version "1.0.2" |
748 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" | 935 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" |
936 | integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= | ||
749 | dependencies: | 937 | dependencies: |
750 | tweetnacl "^0.14.3" | 938 | tweetnacl "^0.14.3" |
751 | 939 | ||
752 | big.js@^3.1.3: | 940 | big.js@^3.1.3: |
753 | version "3.1.3" | 941 | version "3.2.0" |
754 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" | 942 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" |
943 | integrity sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q== | ||
755 | 944 | ||
756 | binary-extensions@^1.0.0: | 945 | binary-extensions@^1.0.0: |
757 | version "1.8.0" | 946 | version "1.12.0" |
758 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" | 947 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.12.0.tgz#c2d780f53d45bba8317a8902d4ceeaf3a6385b14" |
948 | integrity sha512-DYWGk01lDcxeS/K9IHPGWfT8PsJmbXRtRd2Sx72Tnb8pcYZQFF1oSDb8hJtS1vhp212q1Rzi5dUf9+nq0o9UIg== | ||
759 | 949 | ||
760 | block-stream@*: | 950 | block-stream@*: |
761 | version "0.0.9" | 951 | version "0.0.9" |
762 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" | 952 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" |
953 | integrity sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo= | ||
763 | dependencies: | 954 | dependencies: |
764 | inherits "~2.0.0" | 955 | inherits "~2.0.0" |
765 | 956 | ||
766 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: | 957 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: |
767 | version "4.11.6" | 958 | version "4.11.8" |
768 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" | 959 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" |
769 | 960 | integrity sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA== | |
770 | boom@2.x.x: | 961 | |
771 | version "2.10.1" | 962 | body-parser@1.18.3: |
772 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" | 963 | version "1.18.3" |
773 | dependencies: | 964 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.3.tgz#5b292198ffdd553b3a0f20ded0592b956955c8b4" |
774 | hoek "2.x.x" | 965 | integrity sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ= |
966 | dependencies: | ||
967 | bytes "3.0.0" | ||
968 | content-type "~1.0.4" | ||
969 | debug "2.6.9" | ||
970 | depd "~1.1.2" | ||
971 | http-errors "~1.6.3" | ||
972 | iconv-lite "0.4.23" | ||
973 | on-finished "~2.3.0" | ||
974 | qs "6.5.2" | ||
975 | raw-body "2.3.3" | ||
976 | type-is "~1.6.16" | ||
977 | |||
978 | bonjour@^3.5.0: | ||
979 | version "3.5.0" | ||
980 | resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5" | ||
981 | integrity sha1-jokKGD2O6aI5OzhExpGkK897yfU= | ||
982 | dependencies: | ||
983 | array-flatten "^2.1.0" | ||
984 | deep-equal "^1.0.1" | ||
985 | dns-equal "^1.0.0" | ||
986 | dns-txt "^2.0.2" | ||
987 | multicast-dns "^6.0.1" | ||
988 | multicast-dns-service-types "^1.1.0" | ||
775 | 989 | ||
776 | brace-expansion@^1.1.7: | 990 | brace-expansion@^1.1.7: |
777 | version "1.1.8" | 991 | version "1.1.11" |
778 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" | 992 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" |
993 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== | ||
779 | dependencies: | 994 | dependencies: |
780 | balanced-match "^1.0.0" | 995 | balanced-match "^1.0.0" |
781 | concat-map "0.0.1" | 996 | concat-map "0.0.1" |
@@ -783,44 +998,68 @@ brace-expansion@^1.1.7: | |||
783 | braces@^1.8.2: | 998 | braces@^1.8.2: |
784 | version "1.8.5" | 999 | version "1.8.5" |
785 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" | 1000 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" |
1001 | integrity sha1-uneWLhLf+WnWt2cR6RS3N4V79qc= | ||
786 | dependencies: | 1002 | dependencies: |
787 | expand-range "^1.8.1" | 1003 | expand-range "^1.8.1" |
788 | preserve "^0.2.0" | 1004 | preserve "^0.2.0" |
789 | repeat-element "^1.1.2" | 1005 | repeat-element "^1.1.2" |
790 | 1006 | ||
1007 | braces@^2.3.0, braces@^2.3.1: | ||
1008 | version "2.3.2" | ||
1009 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" | ||
1010 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== | ||
1011 | dependencies: | ||
1012 | arr-flatten "^1.1.0" | ||
1013 | array-unique "^0.3.2" | ||
1014 | extend-shallow "^2.0.1" | ||
1015 | fill-range "^4.0.0" | ||
1016 | isobject "^3.0.1" | ||
1017 | repeat-element "^1.1.2" | ||
1018 | snapdragon "^0.8.1" | ||
1019 | snapdragon-node "^2.0.1" | ||
1020 | split-string "^3.0.2" | ||
1021 | to-regex "^3.0.1" | ||
1022 | |||
791 | brorand@^1.0.1: | 1023 | brorand@^1.0.1: |
792 | version "1.1.0" | 1024 | version "1.1.0" |
793 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" | 1025 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" |
1026 | integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= | ||
794 | 1027 | ||
795 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: | 1028 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: |
796 | version "1.0.6" | 1029 | version "1.2.0" |
797 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" | 1030 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" |
1031 | integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== | ||
798 | dependencies: | 1032 | dependencies: |
799 | buffer-xor "^1.0.2" | 1033 | buffer-xor "^1.0.3" |
800 | cipher-base "^1.0.0" | 1034 | cipher-base "^1.0.0" |
801 | create-hash "^1.1.0" | 1035 | create-hash "^1.1.0" |
802 | evp_bytestokey "^1.0.0" | 1036 | evp_bytestokey "^1.0.3" |
803 | inherits "^2.0.1" | 1037 | inherits "^2.0.1" |
1038 | safe-buffer "^5.0.1" | ||
804 | 1039 | ||
805 | browserify-cipher@^1.0.0: | 1040 | browserify-cipher@^1.0.0: |
806 | version "1.0.0" | 1041 | version "1.0.1" |
807 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" | 1042 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" |
1043 | integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== | ||
808 | dependencies: | 1044 | dependencies: |
809 | browserify-aes "^1.0.4" | 1045 | browserify-aes "^1.0.4" |
810 | browserify-des "^1.0.0" | 1046 | browserify-des "^1.0.0" |
811 | evp_bytestokey "^1.0.0" | 1047 | evp_bytestokey "^1.0.0" |
812 | 1048 | ||
813 | browserify-des@^1.0.0: | 1049 | browserify-des@^1.0.0: |
814 | version "1.0.0" | 1050 | version "1.0.2" |
815 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" | 1051 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" |
1052 | integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== | ||
816 | dependencies: | 1053 | dependencies: |
817 | cipher-base "^1.0.1" | 1054 | cipher-base "^1.0.1" |
818 | des.js "^1.0.0" | 1055 | des.js "^1.0.0" |
819 | inherits "^2.0.1" | 1056 | inherits "^2.0.1" |
1057 | safe-buffer "^5.1.2" | ||
820 | 1058 | ||
821 | browserify-rsa@^4.0.0: | 1059 | browserify-rsa@^4.0.0: |
822 | version "4.0.1" | 1060 | version "4.0.1" |
823 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" | 1061 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" |
1062 | integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= | ||
824 | dependencies: | 1063 | dependencies: |
825 | bn.js "^4.1.0" | 1064 | bn.js "^4.1.0" |
826 | randombytes "^2.0.1" | 1065 | randombytes "^2.0.1" |
@@ -828,6 +1067,7 @@ browserify-rsa@^4.0.0: | |||
828 | browserify-sign@^4.0.0: | 1067 | browserify-sign@^4.0.0: |
829 | version "4.0.4" | 1068 | version "4.0.4" |
830 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" | 1069 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" |
1070 | integrity sha1-qk62jl17ZYuqa/alfmMMvXqT0pg= | ||
831 | dependencies: | 1071 | dependencies: |
832 | bn.js "^4.1.1" | 1072 | bn.js "^4.1.1" |
833 | browserify-rsa "^4.0.0" | 1073 | browserify-rsa "^4.0.0" |
@@ -837,63 +1077,107 @@ browserify-sign@^4.0.0: | |||
837 | inherits "^2.0.1" | 1077 | inherits "^2.0.1" |
838 | parse-asn1 "^5.0.0" | 1078 | parse-asn1 "^5.0.0" |
839 | 1079 | ||
840 | browserify-zlib@^0.1.4: | 1080 | browserify-zlib@^0.2.0: |
841 | version "0.1.4" | 1081 | version "0.2.0" |
842 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" | 1082 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" |
1083 | integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== | ||
843 | dependencies: | 1084 | dependencies: |
844 | pako "~0.2.0" | 1085 | pako "~1.0.5" |
845 | 1086 | ||
846 | browserslist@^1.1.1, browserslist@^1.1.3, browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6: | 1087 | browserslist@^1.1.1, browserslist@^1.1.3, browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6: |
847 | version "1.7.7" | 1088 | version "1.7.7" |
848 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" | 1089 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" |
1090 | integrity sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk= | ||
849 | dependencies: | 1091 | dependencies: |
850 | caniuse-db "^1.0.30000639" | 1092 | caniuse-db "^1.0.30000639" |
851 | electron-to-chromium "^1.2.7" | 1093 | electron-to-chromium "^1.2.7" |
852 | 1094 | ||
853 | browserslist@^2.1.2, browserslist@^2.1.3: | 1095 | browserslist@^2.11.3: |
854 | version "2.1.5" | 1096 | version "2.11.3" |
855 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.1.5.tgz#e882550df3d1cd6d481c1a3e0038f2baf13a4711" | 1097 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.11.3.tgz#fe36167aed1bbcde4827ebfe71347a2cc70b99b2" |
1098 | integrity sha512-yWu5cXT7Av6mVwzWc8lMsJMHWn4xyjSuGYi4IozbVTLUOEYPSagUB8kiMDUHA1fS3zjr8nkxkn9jdvug4BBRmA== | ||
856 | dependencies: | 1099 | dependencies: |
857 | caniuse-lite "^1.0.30000684" | 1100 | caniuse-lite "^1.0.30000792" |
858 | electron-to-chromium "^1.3.14" | 1101 | electron-to-chromium "^1.3.30" |
859 | 1102 | ||
860 | buffer-xor@^1.0.2: | 1103 | browserslist@^3.2.6: |
1104 | version "3.2.8" | ||
1105 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6" | ||
1106 | integrity sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ== | ||
1107 | dependencies: | ||
1108 | caniuse-lite "^1.0.30000844" | ||
1109 | electron-to-chromium "^1.3.47" | ||
1110 | |||
1111 | buffer-from@^1.0.0: | ||
1112 | version "1.1.1" | ||
1113 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" | ||
1114 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== | ||
1115 | |||
1116 | buffer-indexof@^1.0.0: | ||
1117 | version "1.1.1" | ||
1118 | resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c" | ||
1119 | integrity sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g== | ||
1120 | |||
1121 | buffer-xor@^1.0.3: | ||
861 | version "1.0.3" | 1122 | version "1.0.3" |
862 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" | 1123 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" |
1124 | integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= | ||
863 | 1125 | ||
864 | buffer@^4.3.0: | 1126 | buffer@^4.3.0: |
865 | version "4.9.1" | 1127 | version "4.9.1" |
866 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" | 1128 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" |
1129 | integrity sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg= | ||
867 | dependencies: | 1130 | dependencies: |
868 | base64-js "^1.0.2" | 1131 | base64-js "^1.0.2" |
869 | ieee754 "^1.1.4" | 1132 | ieee754 "^1.1.4" |
870 | isarray "^1.0.0" | 1133 | isarray "^1.0.0" |
871 | 1134 | ||
872 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: | 1135 | builtin-modules@^1.0.0: |
873 | version "1.1.1" | 1136 | version "1.1.1" |
874 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" | 1137 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" |
1138 | integrity sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8= | ||
875 | 1139 | ||
876 | builtin-status-codes@^3.0.0: | 1140 | builtin-status-codes@^3.0.0: |
877 | version "3.0.0" | 1141 | version "3.0.0" |
878 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" | 1142 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" |
1143 | integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= | ||
879 | 1144 | ||
880 | bytes@2.3.0: | 1145 | bytes@3.0.0: |
881 | version "2.3.0" | 1146 | version "3.0.0" |
882 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.3.0.tgz#d5b680a165b6201739acb611542aabc2d8ceb070" | 1147 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" |
1148 | integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= | ||
1149 | |||
1150 | cache-base@^1.0.1: | ||
1151 | version "1.0.1" | ||
1152 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" | ||
1153 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== | ||
1154 | dependencies: | ||
1155 | collection-visit "^1.0.0" | ||
1156 | component-emitter "^1.2.1" | ||
1157 | get-value "^2.0.6" | ||
1158 | has-value "^1.0.0" | ||
1159 | isobject "^3.0.1" | ||
1160 | set-value "^2.0.0" | ||
1161 | to-object-path "^0.3.0" | ||
1162 | union-value "^1.0.0" | ||
1163 | unset-value "^1.0.0" | ||
883 | 1164 | ||
884 | caller-path@^0.1.0: | 1165 | caller-path@^0.1.0: |
885 | version "0.1.0" | 1166 | version "0.1.0" |
886 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" | 1167 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" |
1168 | integrity sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8= | ||
887 | dependencies: | 1169 | dependencies: |
888 | callsites "^0.2.0" | 1170 | callsites "^0.2.0" |
889 | 1171 | ||
890 | callsites@^0.2.0: | 1172 | callsites@^0.2.0: |
891 | version "0.2.0" | 1173 | version "0.2.0" |
892 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" | 1174 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" |
1175 | integrity sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo= | ||
893 | 1176 | ||
894 | camelcase-keys@^2.0.0: | 1177 | camelcase-keys@^2.0.0: |
895 | version "2.1.0" | 1178 | version "2.1.0" |
896 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" | 1179 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" |
1180 | integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc= | ||
897 | dependencies: | 1181 | dependencies: |
898 | camelcase "^2.0.0" | 1182 | camelcase "^2.0.0" |
899 | map-obj "^1.0.0" | 1183 | map-obj "^1.0.0" |
@@ -901,18 +1185,22 @@ camelcase-keys@^2.0.0: | |||
901 | camelcase@^1.0.2: | 1185 | camelcase@^1.0.2: |
902 | version "1.2.1" | 1186 | version "1.2.1" |
903 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" | 1187 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" |
1188 | integrity sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk= | ||
904 | 1189 | ||
905 | camelcase@^2.0.0, camelcase@^2.0.1: | 1190 | camelcase@^2.0.0, camelcase@^2.0.1: |
906 | version "2.1.1" | 1191 | version "2.1.1" |
907 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" | 1192 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" |
1193 | integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= | ||
908 | 1194 | ||
909 | camelcase@^3.0.0: | 1195 | camelcase@^3.0.0: |
910 | version "3.0.0" | 1196 | version "3.0.0" |
911 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" | 1197 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" |
1198 | integrity sha1-MvxLn82vhF/N9+c7uXysImHwqwo= | ||
912 | 1199 | ||
913 | caniuse-api@^1.5.2: | 1200 | caniuse-api@^1.5.2: |
914 | version "1.6.1" | 1201 | version "1.6.1" |
915 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c" | 1202 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c" |
1203 | integrity sha1-tTTnxzTE+B7F++isoq0kNUuWLGw= | ||
916 | dependencies: | 1204 | dependencies: |
917 | browserslist "^1.3.6" | 1205 | browserslist "^1.3.6" |
918 | caniuse-db "^1.0.30000529" | 1206 | caniuse-db "^1.0.30000529" |
@@ -920,27 +1208,32 @@ caniuse-api@^1.5.2: | |||
920 | lodash.uniq "^4.5.0" | 1208 | lodash.uniq "^4.5.0" |
921 | 1209 | ||
922 | caniuse-db@^1.0.30000187, caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: | 1210 | caniuse-db@^1.0.30000187, caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: |
923 | version "1.0.30000684" | 1211 | version "1.0.30000910" |
924 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000684.tgz#99acb0118b8fd1fdd601a15e0c0f2dfc15a81680" | 1212 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000910.tgz#58cca84780223291c28e92d97a9b1512260a9a8e" |
1213 | integrity sha512-eysv5eAsXCBnfnhTZsKBtCZKdgeFaRqOlTN74kCfzdHdz0In3E5Aop7PyqPI757DsdjVwJOWrFHIrTPYzmll6g== | ||
925 | 1214 | ||
926 | caniuse-lite@^1.0.30000670, caniuse-lite@^1.0.30000684: | 1215 | caniuse-lite@^1.0.30000792, caniuse-lite@^1.0.30000805, caniuse-lite@^1.0.30000844: |
927 | version "1.0.30000684" | 1216 | version "1.0.30000910" |
928 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000684.tgz#0c1032d0b36e14d1ac199f93ef2d1c42d3f03fd7" | 1217 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000910.tgz#755d5181d4b006e5a2b59b1ffa05d0a0470039f5" |
1218 | integrity sha512-u/nxtHGAzCGZzIxt3dA/tpSPOcirBZFWKwz1EPz4aaupnBI2XR0Rbr74g0zc6Hzy41OEM4uMoZ38k56TpYAWjQ== | ||
929 | 1219 | ||
930 | caseless@~0.12.0: | 1220 | caseless@~0.12.0: |
931 | version "0.12.0" | 1221 | version "0.12.0" |
932 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" | 1222 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" |
1223 | integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= | ||
933 | 1224 | ||
934 | center-align@^0.1.1: | 1225 | center-align@^0.1.1: |
935 | version "0.1.3" | 1226 | version "0.1.3" |
936 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" | 1227 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" |
1228 | integrity sha1-qg0yYptu6XIgBBHL1EYckHvCt60= | ||
937 | dependencies: | 1229 | dependencies: |
938 | align-text "^0.1.3" | 1230 | align-text "^0.1.3" |
939 | lazy-cache "^1.0.3" | 1231 | lazy-cache "^1.0.3" |
940 | 1232 | ||
941 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: | 1233 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: |
942 | version "1.1.3" | 1234 | version "1.1.3" |
943 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" | 1235 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" |
1236 | integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= | ||
944 | dependencies: | 1237 | dependencies: |
945 | ansi-styles "^2.2.1" | 1238 | ansi-styles "^2.2.1" |
946 | escape-string-regexp "^1.0.2" | 1239 | escape-string-regexp "^1.0.2" |
@@ -948,40 +1241,79 @@ chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: | |||
948 | strip-ansi "^3.0.0" | 1241 | strip-ansi "^3.0.0" |
949 | supports-color "^2.0.0" | 1242 | supports-color "^2.0.0" |
950 | 1243 | ||
951 | chokidar@^1.4.3, chokidar@^1.6.0: | 1244 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1: |
952 | version "1.7.0" | 1245 | version "2.4.1" |
953 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" | 1246 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" |
1247 | integrity sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ== | ||
954 | dependencies: | 1248 | dependencies: |
955 | anymatch "^1.3.0" | 1249 | ansi-styles "^3.2.1" |
1250 | escape-string-regexp "^1.0.5" | ||
1251 | supports-color "^5.3.0" | ||
1252 | |||
1253 | chardet@^0.4.0: | ||
1254 | version "0.4.2" | ||
1255 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" | ||
1256 | integrity sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I= | ||
1257 | |||
1258 | chokidar@^2.0.0, chokidar@^2.0.2: | ||
1259 | version "2.0.4" | ||
1260 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.4.tgz#356ff4e2b0e8e43e322d18a372460bbcf3accd26" | ||
1261 | integrity sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ== | ||
1262 | dependencies: | ||
1263 | anymatch "^2.0.0" | ||
956 | async-each "^1.0.0" | 1264 | async-each "^1.0.0" |
957 | glob-parent "^2.0.0" | 1265 | braces "^2.3.0" |
1266 | glob-parent "^3.1.0" | ||
958 | inherits "^2.0.1" | 1267 | inherits "^2.0.1" |
959 | is-binary-path "^1.0.0" | 1268 | is-binary-path "^1.0.0" |
960 | is-glob "^2.0.0" | 1269 | is-glob "^4.0.0" |
1270 | lodash.debounce "^4.0.8" | ||
1271 | normalize-path "^2.1.1" | ||
961 | path-is-absolute "^1.0.0" | 1272 | path-is-absolute "^1.0.0" |
962 | readdirp "^2.0.0" | 1273 | readdirp "^2.0.0" |
1274 | upath "^1.0.5" | ||
963 | optionalDependencies: | 1275 | optionalDependencies: |
964 | fsevents "^1.0.0" | 1276 | fsevents "^1.2.2" |
1277 | |||
1278 | chownr@^1.1.1: | ||
1279 | version "1.1.1" | ||
1280 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" | ||
1281 | integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g== | ||
965 | 1282 | ||
966 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: | 1283 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: |
967 | version "1.0.3" | 1284 | version "1.0.4" |
968 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" | 1285 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" |
1286 | integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== | ||
969 | dependencies: | 1287 | dependencies: |
970 | inherits "^2.0.1" | 1288 | inherits "^2.0.1" |
1289 | safe-buffer "^5.0.1" | ||
971 | 1290 | ||
972 | circular-json@^0.3.1: | 1291 | circular-json@^0.3.1: |
973 | version "0.3.1" | 1292 | version "0.3.3" |
974 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" | 1293 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" |
1294 | integrity sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A== | ||
975 | 1295 | ||
976 | clap@^1.0.9: | 1296 | clap@^1.0.9: |
977 | version "1.2.0" | 1297 | version "1.2.3" |
978 | resolved "https://registry.yarnpkg.com/clap/-/clap-1.2.0.tgz#59c90fe3e137104746ff19469a27a634ff68c857" | 1298 | resolved "https://registry.yarnpkg.com/clap/-/clap-1.2.3.tgz#4f36745b32008492557f46412d66d50cb99bce51" |
1299 | integrity sha512-4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA== | ||
979 | dependencies: | 1300 | dependencies: |
980 | chalk "^1.1.3" | 1301 | chalk "^1.1.3" |
981 | 1302 | ||
1303 | class-utils@^0.3.5: | ||
1304 | version "0.3.6" | ||
1305 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" | ||
1306 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== | ||
1307 | dependencies: | ||
1308 | arr-union "^3.1.0" | ||
1309 | define-property "^0.2.5" | ||
1310 | isobject "^3.0.0" | ||
1311 | static-extend "^0.1.1" | ||
1312 | |||
982 | clean-css@^3.4.4: | 1313 | clean-css@^3.4.4: |
983 | version "3.4.27" | 1314 | version "3.4.28" |
984 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-3.4.27.tgz#adef75b31c160ffa5d72f4de67966e2660c1a255" | 1315 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-3.4.28.tgz#bf1945e82fc808f55695e6ddeaec01400efd03ff" |
1316 | integrity sha1-vxlF6C/ICPVWlebd6uwBQA79A/8= | ||
985 | dependencies: | 1317 | dependencies: |
986 | commander "2.8.x" | 1318 | commander "2.8.x" |
987 | source-map "0.4.x" | 1319 | source-map "0.4.x" |
@@ -989,16 +1321,19 @@ clean-css@^3.4.4: | |||
989 | cli-cursor@^2.1.0: | 1321 | cli-cursor@^2.1.0: |
990 | version "2.1.0" | 1322 | version "2.1.0" |
991 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" | 1323 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" |
1324 | integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= | ||
992 | dependencies: | 1325 | dependencies: |
993 | restore-cursor "^2.0.0" | 1326 | restore-cursor "^2.0.0" |
994 | 1327 | ||
995 | cli-width@^2.0.0: | 1328 | cli-width@^2.0.0: |
996 | version "2.1.0" | 1329 | version "2.2.0" |
997 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" | 1330 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" |
1331 | integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= | ||
998 | 1332 | ||
999 | cliui@^2.1.0: | 1333 | cliui@^2.1.0: |
1000 | version "2.1.0" | 1334 | version "2.1.0" |
1001 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" | 1335 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" |
1336 | integrity sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE= | ||
1002 | dependencies: | 1337 | dependencies: |
1003 | center-align "^0.1.1" | 1338 | center-align "^0.1.1" |
1004 | right-align "^0.1.1" | 1339 | right-align "^0.1.1" |
@@ -1007,77 +1342,102 @@ cliui@^2.1.0: | |||
1007 | cliui@^3.0.3, cliui@^3.2.0: | 1342 | cliui@^3.0.3, cliui@^3.2.0: |
1008 | version "3.2.0" | 1343 | version "3.2.0" |
1009 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" | 1344 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" |
1345 | integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= | ||
1010 | dependencies: | 1346 | dependencies: |
1011 | string-width "^1.0.1" | 1347 | string-width "^1.0.1" |
1012 | strip-ansi "^3.0.1" | 1348 | strip-ansi "^3.0.1" |
1013 | wrap-ansi "^2.0.0" | 1349 | wrap-ansi "^2.0.0" |
1014 | 1350 | ||
1015 | clone-deep@^0.2.4: | 1351 | clone-deep@^2.0.1: |
1016 | version "0.2.4" | 1352 | version "2.0.2" |
1017 | resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-0.2.4.tgz#4e73dd09e9fb971cc38670c5dced9c1896481cc6" | 1353 | resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-2.0.2.tgz#00db3a1e173656730d1188c3d6aced6d7ea97713" |
1354 | integrity sha512-SZegPTKjCgpQH63E+eN6mVEEPdQBOUzjyJm5Pora4lrwWRFS8I0QAxV/KD6vV/i0WuijHZWQC1fMsPEdxfdVCQ== | ||
1018 | dependencies: | 1355 | dependencies: |
1019 | for-own "^0.1.3" | 1356 | for-own "^1.0.0" |
1020 | is-plain-object "^2.0.1" | 1357 | is-plain-object "^2.0.4" |
1021 | kind-of "^3.0.2" | 1358 | kind-of "^6.0.0" |
1022 | lazy-cache "^1.0.3" | 1359 | shallow-clone "^1.0.0" |
1023 | shallow-clone "^0.1.2" | ||
1024 | 1360 | ||
1025 | clone-regexp@^1.0.0: | 1361 | clone-regexp@^1.0.0: |
1026 | version "1.0.0" | 1362 | version "1.0.1" |
1027 | resolved "https://registry.yarnpkg.com/clone-regexp/-/clone-regexp-1.0.0.tgz#eae0a2413f55c0942f818c229fefce845d7f3b1c" | 1363 | resolved "https://registry.yarnpkg.com/clone-regexp/-/clone-regexp-1.0.1.tgz#051805cd33173375d82118fc0918606da39fd60f" |
1364 | integrity sha512-Fcij9IwRW27XedRIJnSOEupS7RVcXtObJXbcUOX93UCLqqOdRpkvzKywOOSizmEK/Is3S/RHX9dLdfo6R1Q1mw== | ||
1028 | dependencies: | 1365 | dependencies: |
1029 | is-regexp "^1.0.0" | 1366 | is-regexp "^1.0.0" |
1030 | is-supported-regexp-flag "^1.0.0" | 1367 | is-supported-regexp-flag "^1.0.0" |
1031 | 1368 | ||
1032 | clone@^1.0.2: | 1369 | clone@^1.0.2: |
1033 | version "1.0.2" | 1370 | version "1.0.4" |
1034 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" | 1371 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" |
1372 | integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= | ||
1035 | 1373 | ||
1036 | co@^4.6.0: | 1374 | co@^4.6.0: |
1037 | version "4.6.0" | 1375 | version "4.6.0" |
1038 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" | 1376 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" |
1377 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= | ||
1039 | 1378 | ||
1040 | coa@~1.0.1: | 1379 | coa@~1.0.1: |
1041 | version "1.0.3" | 1380 | version "1.0.4" |
1042 | resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.3.tgz#1b54a5e1dcf77c990455d4deea98c564416dc893" | 1381 | resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd" |
1382 | integrity sha1-qe8VNmDWqGqL3sAomlxoTSF0Mv0= | ||
1043 | dependencies: | 1383 | dependencies: |
1044 | q "^1.1.2" | 1384 | q "^1.1.2" |
1045 | 1385 | ||
1046 | code-point-at@^1.0.0: | 1386 | code-point-at@^1.0.0: |
1047 | version "1.1.0" | 1387 | version "1.1.0" |
1048 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" | 1388 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" |
1389 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= | ||
1049 | 1390 | ||
1050 | color-convert@^1.3.0: | 1391 | collection-visit@^1.0.0: |
1051 | version "1.9.0" | 1392 | version "1.0.0" |
1052 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" | 1393 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" |
1394 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= | ||
1395 | dependencies: | ||
1396 | map-visit "^1.0.0" | ||
1397 | object-visit "^1.0.0" | ||
1398 | |||
1399 | color-convert@^1.3.0, color-convert@^1.9.0: | ||
1400 | version "1.9.3" | ||
1401 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" | ||
1402 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== | ||
1053 | dependencies: | 1403 | dependencies: |
1054 | color-name "^1.1.1" | 1404 | color-name "1.1.3" |
1055 | 1405 | ||
1056 | color-diff@^0.1.3: | 1406 | color-diff@^0.1.3: |
1057 | version "0.1.7" | 1407 | version "0.1.7" |
1058 | resolved "https://registry.yarnpkg.com/color-diff/-/color-diff-0.1.7.tgz#6db78cd9482a8e459d40821eaf4b503283dcb8e2" | 1408 | resolved "https://registry.yarnpkg.com/color-diff/-/color-diff-0.1.7.tgz#6db78cd9482a8e459d40821eaf4b503283dcb8e2" |
1409 | integrity sha1-bbeM2UgqjkWdQIIer0tQMoPcuOI= | ||
1059 | 1410 | ||
1060 | color-name@^1.0.0, color-name@^1.1.1: | 1411 | color-name@1.1.3: |
1061 | version "1.1.2" | 1412 | version "1.1.3" |
1062 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" | 1413 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" |
1414 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= | ||
1415 | |||
1416 | color-name@^1.0.0: | ||
1417 | version "1.1.4" | ||
1418 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" | ||
1419 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== | ||
1063 | 1420 | ||
1064 | color-string@^0.3.0: | 1421 | color-string@^0.3.0: |
1065 | version "0.3.0" | 1422 | version "0.3.0" |
1066 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" | 1423 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" |
1424 | integrity sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE= | ||
1067 | dependencies: | 1425 | dependencies: |
1068 | color-name "^1.0.0" | 1426 | color-name "^1.0.0" |
1069 | 1427 | ||
1070 | color@^0.11.0: | 1428 | color@^0.11.0: |
1071 | version "0.11.4" | 1429 | version "0.11.4" |
1072 | resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" | 1430 | resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" |
1431 | integrity sha1-bXtcdPtl6EHNSHkq0e1eB7kE12Q= | ||
1073 | dependencies: | 1432 | dependencies: |
1074 | clone "^1.0.2" | 1433 | clone "^1.0.2" |
1075 | color-convert "^1.3.0" | 1434 | color-convert "^1.3.0" |
1076 | color-string "^0.3.0" | 1435 | color-string "^0.3.0" |
1077 | 1436 | ||
1078 | colorguard@^1.2.0: | 1437 | colorguard@^1.2.0: |
1079 | version "1.2.0" | 1438 | version "1.2.1" |
1080 | resolved "https://registry.yarnpkg.com/colorguard/-/colorguard-1.2.0.tgz#f3facaf5caaeba4ef54653d9fb25bb73177c0d84" | 1439 | resolved "https://registry.yarnpkg.com/colorguard/-/colorguard-1.2.1.tgz#249647c9702481d9143384fc9813662311afde98" |
1440 | integrity sha512-qYVKTg626qpDg4/eBnPXidEPXn5+krbYqHVfyyEFBWV5z3IF4p44HKY/eE2t1ohlcrlIkDgHmFJMfQ8qMLnSFw== | ||
1081 | dependencies: | 1441 | dependencies: |
1082 | chalk "^1.1.1" | 1442 | chalk "^1.1.1" |
1083 | color-diff "^0.1.3" | 1443 | color-diff "^0.1.3" |
@@ -1093,6 +1453,7 @@ colorguard@^1.2.0: | |||
1093 | colormin@^1.0.5: | 1453 | colormin@^1.0.5: |
1094 | version "1.1.2" | 1454 | version "1.1.2" |
1095 | resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" | 1455 | resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" |
1456 | integrity sha1-6i90IKcrlogaOKrlnsEkpvcpgTM= | ||
1096 | dependencies: | 1457 | dependencies: |
1097 | color "^0.11.0" | 1458 | color "^0.11.0" |
1098 | css-color-names "0.0.4" | 1459 | css-color-names "0.0.4" |
@@ -1101,109 +1462,145 @@ colormin@^1.0.5: | |||
1101 | colors@~1.1.2: | 1462 | colors@~1.1.2: |
1102 | version "1.1.2" | 1463 | version "1.1.2" |
1103 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" | 1464 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" |
1465 | integrity sha1-FopHAXVran9RoSzgyXv6KMCE7WM= | ||
1104 | 1466 | ||
1105 | combined-stream@^1.0.5, combined-stream@~1.0.5: | 1467 | combined-stream@^1.0.6, combined-stream@~1.0.6: |
1106 | version "1.0.5" | 1468 | version "1.0.7" |
1107 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" | 1469 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz#2d1d24317afb8abe95d6d2c0b07b57813539d828" |
1470 | integrity sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w== | ||
1108 | dependencies: | 1471 | dependencies: |
1109 | delayed-stream "~1.0.0" | 1472 | delayed-stream "~1.0.0" |
1110 | 1473 | ||
1111 | commander@2.1.x: | 1474 | commander@2.1.x: |
1112 | version "2.1.0" | 1475 | version "2.1.0" |
1113 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.1.0.tgz#d121bbae860d9992a3d517ba96f56588e47c6781" | 1476 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.1.0.tgz#d121bbae860d9992a3d517ba96f56588e47c6781" |
1477 | integrity sha1-0SG7roYNmZKj1Re6lvVliOR8Z4E= | ||
1114 | 1478 | ||
1115 | commander@2.8.x: | 1479 | commander@2.8.x: |
1116 | version "2.8.1" | 1480 | version "2.8.1" |
1117 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.8.1.tgz#06be367febfda0c330aa1e2a072d3dc9762425d4" | 1481 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.8.1.tgz#06be367febfda0c330aa1e2a072d3dc9762425d4" |
1482 | integrity sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ= | ||
1118 | dependencies: | 1483 | dependencies: |
1119 | graceful-readlink ">= 1.0.0" | 1484 | graceful-readlink ">= 1.0.0" |
1120 | 1485 | ||
1121 | commondir@^1.0.1: | 1486 | commondir@^1.0.1: |
1122 | version "1.0.1" | 1487 | version "1.0.1" |
1123 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" | 1488 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" |
1489 | integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= | ||
1124 | 1490 | ||
1125 | compressible@~2.0.8: | 1491 | component-emitter@^1.2.1: |
1126 | version "2.0.10" | 1492 | version "1.2.1" |
1127 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.10.tgz#feda1c7f7617912732b29bf8cf26252a20b9eecd" | 1493 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" |
1494 | integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= | ||
1495 | |||
1496 | compressible@~2.0.14: | ||
1497 | version "2.0.15" | ||
1498 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.15.tgz#857a9ab0a7e5a07d8d837ed43fe2defff64fe212" | ||
1499 | integrity sha512-4aE67DL33dSW9gw4CI2H/yTxqHLNcxp0yS6jB+4h+wr3e43+1z7vm0HU9qXOH8j+qjKuL8+UtkOxYQSMq60Ylw== | ||
1128 | dependencies: | 1500 | dependencies: |
1129 | mime-db ">= 1.27.0 < 2" | 1501 | mime-db ">= 1.36.0 < 2" |
1130 | 1502 | ||
1131 | compression@^1.5.2: | 1503 | compression@^1.5.2: |
1132 | version "1.6.2" | 1504 | version "1.7.3" |
1133 | resolved "https://registry.yarnpkg.com/compression/-/compression-1.6.2.tgz#cceb121ecc9d09c52d7ad0c3350ea93ddd402bc3" | 1505 | resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.3.tgz#27e0e176aaf260f7f2c2813c3e440adb9f1993db" |
1134 | dependencies: | 1506 | integrity sha512-HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg== |
1135 | accepts "~1.3.3" | 1507 | dependencies: |
1136 | bytes "2.3.0" | 1508 | accepts "~1.3.5" |
1137 | compressible "~2.0.8" | 1509 | bytes "3.0.0" |
1138 | debug "~2.2.0" | 1510 | compressible "~2.0.14" |
1511 | debug "2.6.9" | ||
1139 | on-headers "~1.0.1" | 1512 | on-headers "~1.0.1" |
1140 | vary "~1.1.0" | 1513 | safe-buffer "5.1.2" |
1514 | vary "~1.1.2" | ||
1141 | 1515 | ||
1142 | concat-map@0.0.1: | 1516 | concat-map@0.0.1: |
1143 | version "0.0.1" | 1517 | version "0.0.1" |
1144 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" | 1518 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" |
1519 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= | ||
1145 | 1520 | ||
1146 | concat-stream@^1.6.0: | 1521 | concat-stream@^1.6.0: |
1147 | version "1.6.0" | 1522 | version "1.6.2" |
1148 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" | 1523 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" |
1524 | integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== | ||
1149 | dependencies: | 1525 | dependencies: |
1526 | buffer-from "^1.0.0" | ||
1150 | inherits "^2.0.3" | 1527 | inherits "^2.0.3" |
1151 | readable-stream "^2.2.2" | 1528 | readable-stream "^2.2.2" |
1152 | typedarray "^0.0.6" | 1529 | typedarray "^0.0.6" |
1153 | 1530 | ||
1154 | connect-history-api-fallback@^1.3.0: | 1531 | connect-history-api-fallback@^1.3.0: |
1155 | version "1.3.0" | 1532 | version "1.5.0" |
1156 | resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169" | 1533 | resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz#b06873934bc5e344fef611a196a6faae0aee015a" |
1534 | integrity sha1-sGhzk0vF40T+9hGhlqb6rgruAVo= | ||
1157 | 1535 | ||
1158 | console-browserify@^1.1.0: | 1536 | console-browserify@^1.1.0: |
1159 | version "1.1.0" | 1537 | version "1.1.0" |
1160 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" | 1538 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" |
1539 | integrity sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA= | ||
1161 | dependencies: | 1540 | dependencies: |
1162 | date-now "^0.1.4" | 1541 | date-now "^0.1.4" |
1163 | 1542 | ||
1164 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: | 1543 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: |
1165 | version "1.1.0" | 1544 | version "1.1.0" |
1166 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" | 1545 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" |
1546 | integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= | ||
1167 | 1547 | ||
1168 | constants-browserify@^1.0.0: | 1548 | constants-browserify@^1.0.0: |
1169 | version "1.0.0" | 1549 | version "1.0.0" |
1170 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" | 1550 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" |
1551 | integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= | ||
1171 | 1552 | ||
1172 | contains-path@^0.1.0: | 1553 | contains-path@^0.1.0: |
1173 | version "0.1.0" | 1554 | version "0.1.0" |
1174 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" | 1555 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" |
1556 | integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= | ||
1175 | 1557 | ||
1176 | content-disposition@0.5.2: | 1558 | content-disposition@0.5.2: |
1177 | version "0.5.2" | 1559 | version "0.5.2" |
1178 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" | 1560 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" |
1561 | integrity sha1-DPaLud318r55YcOoUXjLhdunjLQ= | ||
1179 | 1562 | ||
1180 | content-type@~1.0.2: | 1563 | content-type@~1.0.4: |
1181 | version "1.0.2" | 1564 | version "1.0.4" |
1182 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" | 1565 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" |
1566 | integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== | ||
1183 | 1567 | ||
1184 | convert-source-map@^1.1.0: | 1568 | convert-source-map@^1.5.1: |
1185 | version "1.5.0" | 1569 | version "1.6.0" |
1186 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" | 1570 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" |
1571 | integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== | ||
1572 | dependencies: | ||
1573 | safe-buffer "~5.1.1" | ||
1187 | 1574 | ||
1188 | cookie-signature@1.0.6: | 1575 | cookie-signature@1.0.6: |
1189 | version "1.0.6" | 1576 | version "1.0.6" |
1190 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" | 1577 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" |
1578 | integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= | ||
1191 | 1579 | ||
1192 | cookie@0.3.1: | 1580 | cookie@0.3.1: |
1193 | version "0.3.1" | 1581 | version "0.3.1" |
1194 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" | 1582 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" |
1583 | integrity sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s= | ||
1195 | 1584 | ||
1196 | core-js@^2.4.0: | 1585 | copy-descriptor@^0.1.0: |
1197 | version "2.4.1" | 1586 | version "0.1.1" |
1198 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" | 1587 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" |
1588 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= | ||
1199 | 1589 | ||
1200 | core-util-is@~1.0.0: | 1590 | core-js@^2.4.0, core-js@^2.5.0: |
1591 | version "2.5.7" | ||
1592 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" | ||
1593 | integrity sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw== | ||
1594 | |||
1595 | core-util-is@1.0.2, core-util-is@~1.0.0: | ||
1201 | version "1.0.2" | 1596 | version "1.0.2" |
1202 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" | 1597 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" |
1598 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= | ||
1203 | 1599 | ||
1204 | cosmiconfig@^2.1.0, cosmiconfig@^2.1.1: | 1600 | cosmiconfig@^2.1.1: |
1205 | version "2.1.3" | 1601 | version "2.2.2" |
1206 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.1.3.tgz#952771eb0dddc1cb3fa2f6fbe51a522e93b3ee0a" | 1602 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.2.2.tgz#6173cebd56fac042c1f4390edf7af6c07c7cb892" |
1603 | integrity sha512-GiNXLwAFPYHy25XmTPpafYvn3CLAkJ8FLsscq78MQd1Kh0OU6Yzhn4eV2MVF4G9WEQZoWEGltatdR+ntGPMl5A== | ||
1207 | dependencies: | 1604 | dependencies: |
1208 | is-directory "^0.3.1" | 1605 | is-directory "^0.3.1" |
1209 | js-yaml "^3.4.3" | 1606 | js-yaml "^3.4.3" |
@@ -1213,25 +1610,39 @@ cosmiconfig@^2.1.0, cosmiconfig@^2.1.1: | |||
1213 | parse-json "^2.2.0" | 1610 | parse-json "^2.2.0" |
1214 | require-from-string "^1.1.0" | 1611 | require-from-string "^1.1.0" |
1215 | 1612 | ||
1216 | create-ecdh@^4.0.0: | 1613 | cosmiconfig@^4.0.0: |
1217 | version "4.0.0" | 1614 | version "4.0.0" |
1218 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" | 1615 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-4.0.0.tgz#760391549580bbd2df1e562bc177b13c290972dc" |
1616 | integrity sha512-6e5vDdrXZD+t5v0L8CrurPeybg4Fmf+FCSYxXKYVAqLUtyCSbuyqE059d0kDthTNRzKVjL7QMgNpEUlsoYH3iQ== | ||
1617 | dependencies: | ||
1618 | is-directory "^0.3.1" | ||
1619 | js-yaml "^3.9.0" | ||
1620 | parse-json "^4.0.0" | ||
1621 | require-from-string "^2.0.1" | ||
1622 | |||
1623 | create-ecdh@^4.0.0: | ||
1624 | version "4.0.3" | ||
1625 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" | ||
1626 | integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== | ||
1219 | dependencies: | 1627 | dependencies: |
1220 | bn.js "^4.1.0" | 1628 | bn.js "^4.1.0" |
1221 | elliptic "^6.0.0" | 1629 | elliptic "^6.0.0" |
1222 | 1630 | ||
1223 | create-hash@^1.1.0, create-hash@^1.1.1, create-hash@^1.1.2: | 1631 | create-hash@^1.1.0, create-hash@^1.1.2: |
1224 | version "1.1.3" | 1632 | version "1.2.0" |
1225 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" | 1633 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" |
1634 | integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== | ||
1226 | dependencies: | 1635 | dependencies: |
1227 | cipher-base "^1.0.1" | 1636 | cipher-base "^1.0.1" |
1228 | inherits "^2.0.1" | 1637 | inherits "^2.0.1" |
1229 | ripemd160 "^2.0.0" | 1638 | md5.js "^1.3.4" |
1639 | ripemd160 "^2.0.1" | ||
1230 | sha.js "^2.4.0" | 1640 | sha.js "^2.4.0" |
1231 | 1641 | ||
1232 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: | 1642 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: |
1233 | version "1.1.6" | 1643 | version "1.1.7" |
1234 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" | 1644 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" |
1645 | integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== | ||
1235 | dependencies: | 1646 | dependencies: |
1236 | cipher-base "^1.0.3" | 1647 | cipher-base "^1.0.3" |
1237 | create-hash "^1.1.0" | 1648 | create-hash "^1.1.0" |
@@ -1243,19 +1654,24 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: | |||
1243 | cross-spawn@^3.0.0: | 1654 | cross-spawn@^3.0.0: |
1244 | version "3.0.1" | 1655 | version "3.0.1" |
1245 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" | 1656 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" |
1657 | integrity sha1-ElYDfsufDF9549bvE14wdwGEuYI= | ||
1246 | dependencies: | 1658 | dependencies: |
1247 | lru-cache "^4.0.1" | 1659 | lru-cache "^4.0.1" |
1248 | which "^1.2.9" | 1660 | which "^1.2.9" |
1249 | 1661 | ||
1250 | cryptiles@2.x.x: | 1662 | cross-spawn@^5.1.0: |
1251 | version "2.0.5" | 1663 | version "5.1.0" |
1252 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" | 1664 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" |
1665 | integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= | ||
1253 | dependencies: | 1666 | dependencies: |
1254 | boom "2.x.x" | 1667 | lru-cache "^4.0.1" |
1668 | shebang-command "^1.2.0" | ||
1669 | which "^1.2.9" | ||
1255 | 1670 | ||
1256 | crypto-browserify@^3.11.0: | 1671 | crypto-browserify@^3.11.0: |
1257 | version "3.11.0" | 1672 | version "3.12.0" |
1258 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" | 1673 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" |
1674 | integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== | ||
1259 | dependencies: | 1675 | dependencies: |
1260 | browserify-cipher "^1.0.0" | 1676 | browserify-cipher "^1.0.0" |
1261 | browserify-sign "^4.0.0" | 1677 | browserify-sign "^4.0.0" |
@@ -1267,37 +1683,42 @@ crypto-browserify@^3.11.0: | |||
1267 | pbkdf2 "^3.0.3" | 1683 | pbkdf2 "^3.0.3" |
1268 | public-encrypt "^4.0.0" | 1684 | public-encrypt "^4.0.0" |
1269 | randombytes "^2.0.0" | 1685 | randombytes "^2.0.0" |
1686 | randomfill "^1.0.3" | ||
1270 | 1687 | ||
1271 | css-color-names@0.0.3: | 1688 | css-color-names@0.0.3: |
1272 | version "0.0.3" | 1689 | version "0.0.3" |
1273 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.3.tgz#de0cef16f4d8aa8222a320d5b6d7e9bbada7b9f6" | 1690 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.3.tgz#de0cef16f4d8aa8222a320d5b6d7e9bbada7b9f6" |
1691 | integrity sha1-3gzvFvTYqoIioyDVttfpu62nufY= | ||
1274 | 1692 | ||
1275 | css-color-names@0.0.4: | 1693 | css-color-names@0.0.4: |
1276 | version "0.0.4" | 1694 | version "0.0.4" |
1277 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" | 1695 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" |
1696 | integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA= | ||
1278 | 1697 | ||
1279 | css-loader@^0.28.0: | 1698 | css-loader@^0.28.0: |
1280 | version "0.28.4" | 1699 | version "0.28.11" |
1281 | resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.28.4.tgz#6cf3579192ce355e8b38d5f42dd7a1f2ec898d0f" | 1700 | resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.28.11.tgz#c3f9864a700be2711bb5a2462b2389b1a392dab7" |
1701 | integrity sha512-wovHgjAx8ZIMGSL8pTys7edA1ClmzxHeY6n/d97gg5odgsxEgKjULPR0viqyC+FWMCL9sfqoC/QCUBo62tLvPg== | ||
1282 | dependencies: | 1702 | dependencies: |
1283 | babel-code-frame "^6.11.0" | 1703 | babel-code-frame "^6.26.0" |
1284 | css-selector-tokenizer "^0.7.0" | 1704 | css-selector-tokenizer "^0.7.0" |
1285 | cssnano ">=2.6.1 <4" | 1705 | cssnano "^3.10.0" |
1286 | icss-utils "^2.1.0" | 1706 | icss-utils "^2.1.0" |
1287 | loader-utils "^1.0.2" | 1707 | loader-utils "^1.0.2" |
1288 | lodash.camelcase "^4.3.0" | 1708 | lodash.camelcase "^4.3.0" |
1289 | object-assign "^4.0.1" | 1709 | object-assign "^4.1.1" |
1290 | postcss "^5.0.6" | 1710 | postcss "^5.0.6" |
1291 | postcss-modules-extract-imports "^1.0.0" | 1711 | postcss-modules-extract-imports "^1.2.0" |
1292 | postcss-modules-local-by-default "^1.0.1" | 1712 | postcss-modules-local-by-default "^1.2.0" |
1293 | postcss-modules-scope "^1.0.0" | 1713 | postcss-modules-scope "^1.1.0" |
1294 | postcss-modules-values "^1.1.0" | 1714 | postcss-modules-values "^1.3.0" |
1295 | postcss-value-parser "^3.3.0" | 1715 | postcss-value-parser "^3.3.0" |
1296 | source-list-map "^0.1.7" | 1716 | source-list-map "^2.0.0" |
1297 | 1717 | ||
1298 | css-rule-stream@^1.1.0: | 1718 | css-rule-stream@^1.1.0: |
1299 | version "1.1.0" | 1719 | version "1.1.0" |
1300 | resolved "https://registry.yarnpkg.com/css-rule-stream/-/css-rule-stream-1.1.0.tgz#3786e7198983d965a26e31957e09078cbb7705a2" | 1720 | resolved "https://registry.yarnpkg.com/css-rule-stream/-/css-rule-stream-1.1.0.tgz#3786e7198983d965a26e31957e09078cbb7705a2" |
1721 | integrity sha1-N4bnGYmD2WWibjGVfgkHjLt3BaI= | ||
1301 | dependencies: | 1722 | dependencies: |
1302 | css-tokenize "^1.0.1" | 1723 | css-tokenize "^1.0.1" |
1303 | duplexer2 "0.0.2" | 1724 | duplexer2 "0.0.2" |
@@ -1305,8 +1726,9 @@ css-rule-stream@^1.1.0: | |||
1305 | through2 "^0.6.3" | 1726 | through2 "^0.6.3" |
1306 | 1727 | ||
1307 | css-selector-tokenizer@^0.7.0: | 1728 | css-selector-tokenizer@^0.7.0: |
1308 | version "0.7.0" | 1729 | version "0.7.1" |
1309 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" | 1730 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.1.tgz#a177271a8bca5019172f4f891fc6eed9cbf68d5d" |
1731 | integrity sha512-xYL0AMZJ4gFzJQsHUKa5jiWWi2vH77WVNg7JYRyewwj6oPh4yb/y6Y9ZCw9dsj/9UauMhtuxR+ogQd//EdEVNA== | ||
1310 | dependencies: | 1732 | dependencies: |
1311 | cssesc "^0.1.0" | 1733 | cssesc "^0.1.0" |
1312 | fastparse "^1.1.1" | 1734 | fastparse "^1.1.1" |
@@ -1315,6 +1737,7 @@ css-selector-tokenizer@^0.7.0: | |||
1315 | css-tokenize@^1.0.1: | 1737 | css-tokenize@^1.0.1: |
1316 | version "1.0.1" | 1738 | version "1.0.1" |
1317 | resolved "https://registry.yarnpkg.com/css-tokenize/-/css-tokenize-1.0.1.tgz#4625cb1eda21c143858b7f81d6803c1d26fc14be" | 1739 | resolved "https://registry.yarnpkg.com/css-tokenize/-/css-tokenize-1.0.1.tgz#4625cb1eda21c143858b7f81d6803c1d26fc14be" |
1740 | integrity sha1-RiXLHtohwUOFi3+B1oA8HSb8FL4= | ||
1318 | dependencies: | 1741 | dependencies: |
1319 | inherits "^2.0.1" | 1742 | inherits "^2.0.1" |
1320 | readable-stream "^1.0.33" | 1743 | readable-stream "^1.0.33" |
@@ -1322,10 +1745,12 @@ css-tokenize@^1.0.1: | |||
1322 | cssesc@^0.1.0: | 1745 | cssesc@^0.1.0: |
1323 | version "0.1.0" | 1746 | version "0.1.0" |
1324 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" | 1747 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" |
1748 | integrity sha1-yBSQPkViM3GgR3tAEJqq++6t27Q= | ||
1325 | 1749 | ||
1326 | "cssnano@>=2.6.1 <4": | 1750 | cssnano@^3.10.0: |
1327 | version "3.10.0" | 1751 | version "3.10.0" |
1328 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" | 1752 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" |
1753 | integrity sha1-Tzj2zqK5sX+gFJDyPx3GjqZcHDg= | ||
1329 | dependencies: | 1754 | dependencies: |
1330 | autoprefixer "^6.3.1" | 1755 | autoprefixer "^6.3.1" |
1331 | decamelize "^1.1.2" | 1756 | decamelize "^1.1.2" |
@@ -1363,6 +1788,7 @@ cssesc@^0.1.0: | |||
1363 | csso@~2.3.1: | 1788 | csso@~2.3.1: |
1364 | version "2.3.2" | 1789 | version "2.3.2" |
1365 | resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" | 1790 | resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" |
1791 | integrity sha1-3dUsWHAz9J6Utx/FVWnyUuj/X4U= | ||
1366 | dependencies: | 1792 | dependencies: |
1367 | clap "^1.0.9" | 1793 | clap "^1.0.9" |
1368 | source-map "^0.5.3" | 1794 | source-map "^0.5.3" |
@@ -1370,80 +1796,133 @@ csso@~2.3.1: | |||
1370 | currently-unhandled@^0.4.1: | 1796 | currently-unhandled@^0.4.1: |
1371 | version "0.4.1" | 1797 | version "0.4.1" |
1372 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" | 1798 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" |
1799 | integrity sha1-mI3zP+qxke95mmE2nddsF635V+o= | ||
1373 | dependencies: | 1800 | dependencies: |
1374 | array-find-index "^1.0.1" | 1801 | array-find-index "^1.0.1" |
1375 | 1802 | ||
1376 | dashdash@^1.12.0: | 1803 | dashdash@^1.12.0: |
1377 | version "1.14.1" | 1804 | version "1.14.1" |
1378 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" | 1805 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" |
1806 | integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= | ||
1379 | dependencies: | 1807 | dependencies: |
1380 | assert-plus "^1.0.0" | 1808 | assert-plus "^1.0.0" |
1381 | 1809 | ||
1382 | date-now@^0.1.4: | 1810 | date-now@^0.1.4: |
1383 | version "0.1.4" | 1811 | version "0.1.4" |
1384 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" | 1812 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" |
1813 | integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs= | ||
1385 | 1814 | ||
1386 | debug@2.2.0, debug@~2.2.0: | 1815 | debug@2.6.9, debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.6, debug@^2.6.8, debug@^2.6.9: |
1387 | version "2.2.0" | 1816 | version "2.6.9" |
1388 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" | 1817 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" |
1818 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== | ||
1389 | dependencies: | 1819 | dependencies: |
1390 | ms "0.7.1" | 1820 | ms "2.0.0" |
1391 | 1821 | ||
1392 | debug@2.6.7: | 1822 | debug@=3.1.0: |
1393 | version "2.6.7" | 1823 | version "3.1.0" |
1394 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.7.tgz#92bad1f6d05bbb6bba22cca88bcd0ec894c2861e" | 1824 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" |
1825 | integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== | ||
1395 | dependencies: | 1826 | dependencies: |
1396 | ms "2.0.0" | 1827 | ms "2.0.0" |
1397 | 1828 | ||
1398 | debug@2.6.8, debug@^2.1.1, debug@^2.2.0, debug@^2.6.0, debug@^2.6.8: | 1829 | debug@^3.1.0: |
1399 | version "2.6.8" | 1830 | version "3.2.6" |
1400 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" | 1831 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" |
1832 | integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== | ||
1401 | dependencies: | 1833 | dependencies: |
1402 | ms "2.0.0" | 1834 | ms "^2.1.1" |
1403 | 1835 | ||
1404 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: | 1836 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: |
1405 | version "1.2.0" | 1837 | version "1.2.0" |
1406 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" | 1838 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" |
1839 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= | ||
1407 | 1840 | ||
1408 | deep-extend@~0.4.0: | 1841 | decode-uri-component@^0.2.0: |
1409 | version "0.4.2" | 1842 | version "0.2.0" |
1410 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" | 1843 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" |
1844 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= | ||
1845 | |||
1846 | deep-equal@^1.0.1: | ||
1847 | version "1.0.1" | ||
1848 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" | ||
1849 | integrity sha1-9dJgKStmDghO/0zbyfCK0yR0SLU= | ||
1850 | |||
1851 | deep-extend@^0.6.0: | ||
1852 | version "0.6.0" | ||
1853 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" | ||
1854 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== | ||
1411 | 1855 | ||
1412 | deep-is@~0.1.3: | 1856 | deep-is@~0.1.3: |
1413 | version "0.1.3" | 1857 | version "0.1.3" |
1414 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" | 1858 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" |
1859 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= | ||
1860 | |||
1861 | define-properties@^1.1.2: | ||
1862 | version "1.1.3" | ||
1863 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" | ||
1864 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== | ||
1865 | dependencies: | ||
1866 | object-keys "^1.0.12" | ||
1867 | |||
1868 | define-property@^0.2.5: | ||
1869 | version "0.2.5" | ||
1870 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" | ||
1871 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= | ||
1872 | dependencies: | ||
1873 | is-descriptor "^0.1.0" | ||
1874 | |||
1875 | define-property@^1.0.0: | ||
1876 | version "1.0.0" | ||
1877 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" | ||
1878 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= | ||
1879 | dependencies: | ||
1880 | is-descriptor "^1.0.0" | ||
1881 | |||
1882 | define-property@^2.0.2: | ||
1883 | version "2.0.2" | ||
1884 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" | ||
1885 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== | ||
1886 | dependencies: | ||
1887 | is-descriptor "^1.0.2" | ||
1888 | isobject "^3.0.1" | ||
1415 | 1889 | ||
1416 | defined@^1.0.0: | 1890 | defined@^1.0.0: |
1417 | version "1.0.0" | 1891 | version "1.0.0" |
1418 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" | 1892 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" |
1893 | integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= | ||
1419 | 1894 | ||
1420 | del@^2.0.2: | 1895 | del@^3.0.0: |
1421 | version "2.2.2" | 1896 | version "3.0.0" |
1422 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" | 1897 | resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5" |
1898 | integrity sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU= | ||
1423 | dependencies: | 1899 | dependencies: |
1424 | globby "^5.0.0" | 1900 | globby "^6.1.0" |
1425 | is-path-cwd "^1.0.0" | 1901 | is-path-cwd "^1.0.0" |
1426 | is-path-in-cwd "^1.0.0" | 1902 | is-path-in-cwd "^1.0.0" |
1427 | object-assign "^4.0.1" | 1903 | p-map "^1.1.1" |
1428 | pify "^2.0.0" | 1904 | pify "^3.0.0" |
1429 | pinkie-promise "^2.0.0" | ||
1430 | rimraf "^2.2.8" | 1905 | rimraf "^2.2.8" |
1431 | 1906 | ||
1432 | delayed-stream@~1.0.0: | 1907 | delayed-stream@~1.0.0: |
1433 | version "1.0.0" | 1908 | version "1.0.0" |
1434 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" | 1909 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" |
1910 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= | ||
1435 | 1911 | ||
1436 | delegates@^1.0.0: | 1912 | delegates@^1.0.0: |
1437 | version "1.0.0" | 1913 | version "1.0.0" |
1438 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" | 1914 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" |
1915 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= | ||
1439 | 1916 | ||
1440 | depd@1.1.0, depd@~1.1.0: | 1917 | depd@~1.1.2: |
1441 | version "1.1.0" | 1918 | version "1.1.2" |
1442 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" | 1919 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" |
1920 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= | ||
1443 | 1921 | ||
1444 | des.js@^1.0.0: | 1922 | des.js@^1.0.0: |
1445 | version "1.0.0" | 1923 | version "1.0.0" |
1446 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" | 1924 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" |
1925 | integrity sha1-wHTS4qpqipoH29YfmhXCzYPsjsw= | ||
1447 | dependencies: | 1926 | dependencies: |
1448 | inherits "^2.0.1" | 1927 | inherits "^2.0.1" |
1449 | minimalistic-assert "^1.0.0" | 1928 | minimalistic-assert "^1.0.0" |
@@ -1451,42 +1930,73 @@ des.js@^1.0.0: | |||
1451 | destroy@~1.0.4: | 1930 | destroy@~1.0.4: |
1452 | version "1.0.4" | 1931 | version "1.0.4" |
1453 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" | 1932 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" |
1933 | integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= | ||
1454 | 1934 | ||
1455 | detect-indent@^4.0.0: | 1935 | detect-indent@^4.0.0: |
1456 | version "4.0.0" | 1936 | version "4.0.0" |
1457 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" | 1937 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" |
1938 | integrity sha1-920GQ1LN9Docts5hnE7jqUdd4gg= | ||
1458 | dependencies: | 1939 | dependencies: |
1459 | repeating "^2.0.0" | 1940 | repeating "^2.0.0" |
1460 | 1941 | ||
1942 | detect-libc@^1.0.2: | ||
1943 | version "1.0.3" | ||
1944 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" | ||
1945 | integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= | ||
1946 | |||
1461 | detect-node@^2.0.3: | 1947 | detect-node@^2.0.3: |
1462 | version "2.0.3" | 1948 | version "2.0.4" |
1463 | resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.3.tgz#a2033c09cc8e158d37748fbde7507832bd6ce127" | 1949 | resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" |
1950 | integrity sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw== | ||
1464 | 1951 | ||
1465 | diffie-hellman@^5.0.0: | 1952 | diffie-hellman@^5.0.0: |
1466 | version "5.0.2" | 1953 | version "5.0.3" |
1467 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" | 1954 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" |
1955 | integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== | ||
1468 | dependencies: | 1956 | dependencies: |
1469 | bn.js "^4.1.0" | 1957 | bn.js "^4.1.0" |
1470 | miller-rabin "^4.0.0" | 1958 | miller-rabin "^4.0.0" |
1471 | randombytes "^2.0.0" | 1959 | randombytes "^2.0.0" |
1472 | 1960 | ||
1961 | dns-equal@^1.0.0: | ||
1962 | version "1.0.0" | ||
1963 | resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" | ||
1964 | integrity sha1-s55/HabrCnW6nBcySzR1PEfgZU0= | ||
1965 | |||
1966 | dns-packet@^1.3.1: | ||
1967 | version "1.3.1" | ||
1968 | resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.3.1.tgz#12aa426981075be500b910eedcd0b47dd7deda5a" | ||
1969 | integrity sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg== | ||
1970 | dependencies: | ||
1971 | ip "^1.1.0" | ||
1972 | safe-buffer "^5.0.1" | ||
1973 | |||
1974 | dns-txt@^2.0.2: | ||
1975 | version "2.0.2" | ||
1976 | resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6" | ||
1977 | integrity sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY= | ||
1978 | dependencies: | ||
1979 | buffer-indexof "^1.0.0" | ||
1980 | |||
1473 | doctrine@1.5.0: | 1981 | doctrine@1.5.0: |
1474 | version "1.5.0" | 1982 | version "1.5.0" |
1475 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" | 1983 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" |
1984 | integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= | ||
1476 | dependencies: | 1985 | dependencies: |
1477 | esutils "^2.0.2" | 1986 | esutils "^2.0.2" |
1478 | isarray "^1.0.0" | 1987 | isarray "^1.0.0" |
1479 | 1988 | ||
1480 | doctrine@^2.0.0: | 1989 | doctrine@^2.1.0: |
1481 | version "2.0.0" | 1990 | version "2.1.0" |
1482 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" | 1991 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" |
1992 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== | ||
1483 | dependencies: | 1993 | dependencies: |
1484 | esutils "^2.0.2" | 1994 | esutils "^2.0.2" |
1485 | isarray "^1.0.0" | ||
1486 | 1995 | ||
1487 | doiuse@^2.4.1: | 1996 | doiuse@^2.4.1: |
1488 | version "2.6.0" | 1997 | version "2.6.0" |
1489 | resolved "https://registry.yarnpkg.com/doiuse/-/doiuse-2.6.0.tgz#1892d10b61a9a356addbf2b614933e81f8bb3834" | 1998 | resolved "https://registry.yarnpkg.com/doiuse/-/doiuse-2.6.0.tgz#1892d10b61a9a356addbf2b614933e81f8bb3834" |
1999 | integrity sha1-GJLRC2Gpo1at2/K2FJM+gfi7ODQ= | ||
1490 | dependencies: | 2000 | dependencies: |
1491 | browserslist "^1.1.1" | 2001 | browserslist "^1.1.1" |
1492 | caniuse-db "^1.0.30000187" | 2002 | caniuse-db "^1.0.30000187" |
@@ -1502,36 +2012,44 @@ doiuse@^2.4.1: | |||
1502 | yargs "^3.5.4" | 2012 | yargs "^3.5.4" |
1503 | 2013 | ||
1504 | domain-browser@^1.1.1: | 2014 | domain-browser@^1.1.1: |
1505 | version "1.1.7" | 2015 | version "1.2.0" |
1506 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" | 2016 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" |
2017 | integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== | ||
1507 | 2018 | ||
1508 | duplexer2@0.0.2: | 2019 | duplexer2@0.0.2: |
1509 | version "0.0.2" | 2020 | version "0.0.2" |
1510 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" | 2021 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" |
2022 | integrity sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds= | ||
1511 | dependencies: | 2023 | dependencies: |
1512 | readable-stream "~1.1.9" | 2024 | readable-stream "~1.1.9" |
1513 | 2025 | ||
1514 | duplexer@~0.1.1: | 2026 | duplexer@~0.1.1: |
1515 | version "0.1.1" | 2027 | version "0.1.1" |
1516 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" | 2028 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" |
2029 | integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= | ||
1517 | 2030 | ||
1518 | ecc-jsbn@~0.1.1: | 2031 | ecc-jsbn@~0.1.1: |
1519 | version "0.1.1" | 2032 | version "0.1.2" |
1520 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" | 2033 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" |
2034 | integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= | ||
1521 | dependencies: | 2035 | dependencies: |
1522 | jsbn "~0.1.0" | 2036 | jsbn "~0.1.0" |
2037 | safer-buffer "^2.1.0" | ||
1523 | 2038 | ||
1524 | ee-first@1.1.1: | 2039 | ee-first@1.1.1: |
1525 | version "1.1.1" | 2040 | version "1.1.1" |
1526 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" | 2041 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" |
2042 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= | ||
1527 | 2043 | ||
1528 | electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.14: | 2044 | electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.30, electron-to-chromium@^1.3.47: |
1529 | version "1.3.14" | 2045 | version "1.3.84" |
1530 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.14.tgz#64af0f9efd3c3c6acd57d71f83b49ca7ee9c4b43" | 2046 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.84.tgz#2e55df59e818f150a9f61b53471ebf4f0feecc65" |
2047 | integrity sha512-IYhbzJYOopiTaNWMBp7RjbecUBsbnbDneOP86f3qvS0G0xfzwNSvMJpTrvi5/Y1gU7tg2NAgeg8a8rCYvW9Whw== | ||
1531 | 2048 | ||
1532 | elliptic@^6.0.0: | 2049 | elliptic@^6.0.0: |
1533 | version "6.4.0" | 2050 | version "6.4.1" |
1534 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" | 2051 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.1.tgz#c2d0b7776911b86722c632c3c06c60f2f819939a" |
2052 | integrity sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ== | ||
1535 | dependencies: | 2053 | dependencies: |
1536 | bn.js "^4.4.0" | 2054 | bn.js "^4.4.0" |
1537 | brorand "^1.0.1" | 2055 | brorand "^1.0.1" |
@@ -1544,314 +2062,453 @@ elliptic@^6.0.0: | |||
1544 | emojis-list@^2.0.0: | 2062 | emojis-list@^2.0.0: |
1545 | version "2.1.0" | 2063 | version "2.1.0" |
1546 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" | 2064 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" |
2065 | integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k= | ||
1547 | 2066 | ||
1548 | encodeurl@~1.0.1: | 2067 | encodeurl@~1.0.2: |
1549 | version "1.0.1" | 2068 | version "1.0.2" |
1550 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" | 2069 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" |
2070 | integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= | ||
1551 | 2071 | ||
1552 | enhance-css@^1.1.0: | 2072 | enhance-css@^1.1.0: |
1553 | version "1.1.0" | 2073 | version "1.1.0" |
1554 | resolved "https://registry.yarnpkg.com/enhance-css/-/enhance-css-1.1.0.tgz#518edad3d96fca18dff60eaf43b188d4b395c211" | 2074 | resolved "https://registry.yarnpkg.com/enhance-css/-/enhance-css-1.1.0.tgz#518edad3d96fca18dff60eaf43b188d4b395c211" |
2075 | integrity sha1-UY7a09lvyhjf9g6vQ7GI1LOVwhE= | ||
1555 | dependencies: | 2076 | dependencies: |
1556 | commander "2.1.x" | 2077 | commander "2.1.x" |
1557 | 2078 | ||
1558 | enhanced-resolve@^3.0.0: | 2079 | enhanced-resolve@^3.3.0: |
1559 | version "3.1.0" | 2080 | version "3.4.1" |
1560 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.1.0.tgz#9f4b626f577245edcf4b2ad83d86e17f4f421dec" | 2081 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" |
2082 | integrity sha1-BCHjOf1xQZs9oT0Smzl5BAIwR24= | ||
1561 | dependencies: | 2083 | dependencies: |
1562 | graceful-fs "^4.1.2" | 2084 | graceful-fs "^4.1.2" |
1563 | memory-fs "^0.4.0" | 2085 | memory-fs "^0.4.0" |
1564 | object-assign "^4.0.1" | 2086 | object-assign "^4.0.1" |
1565 | tapable "^0.2.5" | 2087 | tapable "^0.2.7" |
1566 | 2088 | ||
1567 | errno@^0.1.3: | 2089 | errno@^0.1.3: |
1568 | version "0.1.4" | 2090 | version "0.1.7" |
1569 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" | 2091 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" |
2092 | integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== | ||
1570 | dependencies: | 2093 | dependencies: |
1571 | prr "~0.0.0" | 2094 | prr "~1.0.1" |
1572 | 2095 | ||
1573 | error-ex@^1.2.0: | 2096 | error-ex@^1.2.0, error-ex@^1.3.1: |
1574 | version "1.3.1" | 2097 | version "1.3.2" |
1575 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" | 2098 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" |
2099 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== | ||
1576 | dependencies: | 2100 | dependencies: |
1577 | is-arrayish "^0.2.1" | 2101 | is-arrayish "^0.2.1" |
1578 | 2102 | ||
2103 | es-abstract@^1.7.0: | ||
2104 | version "1.12.0" | ||
2105 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" | ||
2106 | integrity sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA== | ||
2107 | dependencies: | ||
2108 | es-to-primitive "^1.1.1" | ||
2109 | function-bind "^1.1.1" | ||
2110 | has "^1.0.1" | ||
2111 | is-callable "^1.1.3" | ||
2112 | is-regex "^1.0.4" | ||
2113 | |||
2114 | es-to-primitive@^1.1.1: | ||
2115 | version "1.2.0" | ||
2116 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" | ||
2117 | integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== | ||
2118 | dependencies: | ||
2119 | is-callable "^1.1.4" | ||
2120 | is-date-object "^1.0.1" | ||
2121 | is-symbol "^1.0.2" | ||
2122 | |||
1579 | es6-promise@^3.0.2: | 2123 | es6-promise@^3.0.2: |
1580 | version "3.3.1" | 2124 | version "3.3.1" |
1581 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" | 2125 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" |
2126 | integrity sha1-oIzd6EzNvzTQJ6FFG8kdS80ophM= | ||
1582 | 2127 | ||
1583 | escape-html@~1.0.3: | 2128 | escape-html@~1.0.3: |
1584 | version "1.0.3" | 2129 | version "1.0.3" |
1585 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" | 2130 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" |
2131 | integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= | ||
1586 | 2132 | ||
1587 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: | 2133 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: |
1588 | version "1.0.5" | 2134 | version "1.0.5" |
1589 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" | 2135 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" |
2136 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= | ||
1590 | 2137 | ||
1591 | eslint-config-airbnb-base@^11.1.3: | 2138 | eslint-config-airbnb-base@^11.1.3: |
1592 | version "11.2.0" | 2139 | version "11.3.2" |
1593 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.2.0.tgz#19a9dc4481a26f70904545ec040116876018f853" | 2140 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.3.2.tgz#8703b11abe3c88ac7ec2b745b7fdf52e00ae680a" |
2141 | integrity sha512-/fhjt/VqzBA2SRsx7ErDtv6Ayf+XLw9LIOqmpBuHFCVwyJo2EtzGWMB9fYRFBoWWQLxmNmCpenNiH0RxyeS41w== | ||
2142 | dependencies: | ||
2143 | eslint-restricted-globals "^0.1.1" | ||
1594 | 2144 | ||
1595 | eslint-import-resolver-node@^0.2.0: | 2145 | eslint-import-resolver-node@^0.3.1: |
1596 | version "0.2.3" | 2146 | version "0.3.2" |
1597 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" | 2147 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" |
2148 | integrity sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q== | ||
1598 | dependencies: | 2149 | dependencies: |
1599 | debug "^2.2.0" | 2150 | debug "^2.6.9" |
1600 | object-assign "^4.0.1" | 2151 | resolve "^1.5.0" |
1601 | resolve "^1.1.6" | ||
1602 | 2152 | ||
1603 | eslint-loader@^1.7.1: | 2153 | eslint-loader@^1.7.1: |
1604 | version "1.7.1" | 2154 | version "1.9.0" |
1605 | resolved "https://registry.yarnpkg.com/eslint-loader/-/eslint-loader-1.7.1.tgz#50b158dd6272dcefb97e984254837f81a5802ce0" | 2155 | resolved "https://registry.yarnpkg.com/eslint-loader/-/eslint-loader-1.9.0.tgz#7e1be9feddca328d3dcfaef1ad49d5beffe83a13" |
2156 | integrity sha512-40aN976qSNPyb9ejTqjEthZITpls1SVKtwguahmH1dzGCwQU/vySE+xX33VZmD8csU0ahVNCtFlsPgKqRBiqgg== | ||
1606 | dependencies: | 2157 | dependencies: |
1607 | find-cache-dir "^0.1.1" | ||
1608 | loader-fs-cache "^1.0.0" | 2158 | loader-fs-cache "^1.0.0" |
1609 | loader-utils "^1.0.2" | 2159 | loader-utils "^1.0.2" |
1610 | object-assign "^4.0.1" | 2160 | object-assign "^4.0.1" |
1611 | object-hash "^1.1.4" | 2161 | object-hash "^1.1.4" |
1612 | rimraf "^2.6.1" | 2162 | rimraf "^2.6.1" |
1613 | 2163 | ||
1614 | eslint-module-utils@^2.0.0: | 2164 | eslint-module-utils@^2.2.0: |
1615 | version "2.0.0" | 2165 | version "2.2.0" |
1616 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce" | 2166 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz#b270362cd88b1a48ad308976ce7fa54e98411746" |
2167 | integrity sha1-snA2LNiLGkitMIl2zn+lTphBF0Y= | ||
1617 | dependencies: | 2168 | dependencies: |
1618 | debug "2.2.0" | 2169 | debug "^2.6.8" |
1619 | pkg-dir "^1.0.0" | 2170 | pkg-dir "^1.0.0" |
1620 | 2171 | ||
1621 | eslint-plugin-import@^2.2.0: | 2172 | eslint-plugin-import@^2.2.0: |
1622 | version "2.3.0" | 2173 | version "2.14.0" |
1623 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.3.0.tgz#37c801e0ada0e296cbdf20c3f393acb5b52af36b" | 2174 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.14.0.tgz#6b17626d2e3e6ad52cfce8807a845d15e22111a8" |
2175 | integrity sha512-FpuRtniD/AY6sXByma2Wr0TXvXJ4nA/2/04VPlfpmUDPOpOY264x+ILiwnrk/k4RINgDAyFZByxqPUbSQ5YE7g== | ||
1624 | dependencies: | 2176 | dependencies: |
1625 | builtin-modules "^1.1.1" | ||
1626 | contains-path "^0.1.0" | 2177 | contains-path "^0.1.0" |
1627 | debug "^2.2.0" | 2178 | debug "^2.6.8" |
1628 | doctrine "1.5.0" | 2179 | doctrine "1.5.0" |
1629 | eslint-import-resolver-node "^0.2.0" | 2180 | eslint-import-resolver-node "^0.3.1" |
1630 | eslint-module-utils "^2.0.0" | 2181 | eslint-module-utils "^2.2.0" |
1631 | has "^1.0.1" | 2182 | has "^1.0.1" |
1632 | lodash.cond "^4.3.0" | 2183 | lodash "^4.17.4" |
1633 | minimatch "^3.0.3" | 2184 | minimatch "^3.0.3" |
1634 | read-pkg-up "^2.0.0" | 2185 | read-pkg-up "^2.0.0" |
2186 | resolve "^1.6.0" | ||
2187 | |||
2188 | eslint-restricted-globals@^0.1.1: | ||
2189 | version "0.1.1" | ||
2190 | resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7" | ||
2191 | integrity sha1-NfDVy8ZMLj7WLpO0saevBbp+1Nc= | ||
1635 | 2192 | ||
1636 | eslint-scope@^3.7.1: | 2193 | eslint-scope@^3.7.1: |
1637 | version "3.7.1" | 2194 | version "3.7.3" |
1638 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" | 2195 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.3.tgz#bb507200d3d17f60247636160b4826284b108535" |
2196 | integrity sha512-W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA== | ||
1639 | dependencies: | 2197 | dependencies: |
1640 | esrecurse "^4.1.0" | 2198 | esrecurse "^4.1.0" |
1641 | estraverse "^4.1.1" | 2199 | estraverse "^4.1.1" |
1642 | 2200 | ||
2201 | eslint-visitor-keys@^1.0.0: | ||
2202 | version "1.0.0" | ||
2203 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" | ||
2204 | integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ== | ||
2205 | |||
1643 | eslint@^4.0.0: | 2206 | eslint@^4.0.0: |
1644 | version "4.0.0" | 2207 | version "4.19.1" |
1645 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.0.0.tgz#7277c01437fdf41dccd168d5aa0e49b75ca1f260" | 2208 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" |
2209 | integrity sha512-bT3/1x1EbZB7phzYu7vCr1v3ONuzDtX8WjuM9c0iYxe+cq+pwcKEoQjl7zd3RpC6YOLgnSy3cTN58M2jcoPDIQ== | ||
1646 | dependencies: | 2210 | dependencies: |
2211 | ajv "^5.3.0" | ||
1647 | babel-code-frame "^6.22.0" | 2212 | babel-code-frame "^6.22.0" |
1648 | chalk "^1.1.3" | 2213 | chalk "^2.1.0" |
1649 | concat-stream "^1.6.0" | 2214 | concat-stream "^1.6.0" |
1650 | debug "^2.6.8" | 2215 | cross-spawn "^5.1.0" |
1651 | doctrine "^2.0.0" | 2216 | debug "^3.1.0" |
2217 | doctrine "^2.1.0" | ||
1652 | eslint-scope "^3.7.1" | 2218 | eslint-scope "^3.7.1" |
1653 | espree "^3.4.3" | 2219 | eslint-visitor-keys "^1.0.0" |
2220 | espree "^3.5.4" | ||
1654 | esquery "^1.0.0" | 2221 | esquery "^1.0.0" |
1655 | estraverse "^4.2.0" | ||
1656 | esutils "^2.0.2" | 2222 | esutils "^2.0.2" |
1657 | file-entry-cache "^2.0.0" | 2223 | file-entry-cache "^2.0.0" |
2224 | functional-red-black-tree "^1.0.1" | ||
1658 | glob "^7.1.2" | 2225 | glob "^7.1.2" |
1659 | globals "^9.17.0" | 2226 | globals "^11.0.1" |
1660 | ignore "^3.3.3" | 2227 | ignore "^3.3.3" |
1661 | imurmurhash "^0.1.4" | 2228 | imurmurhash "^0.1.4" |
1662 | inquirer "^3.0.6" | 2229 | inquirer "^3.0.6" |
1663 | is-my-json-valid "^2.16.0" | ||
1664 | is-resolvable "^1.0.0" | 2230 | is-resolvable "^1.0.0" |
1665 | js-yaml "^3.8.4" | 2231 | js-yaml "^3.9.1" |
1666 | json-stable-stringify "^1.0.1" | 2232 | json-stable-stringify-without-jsonify "^1.0.1" |
1667 | levn "^0.3.0" | 2233 | levn "^0.3.0" |
1668 | lodash "^4.17.4" | 2234 | lodash "^4.17.4" |
2235 | minimatch "^3.0.2" | ||
1669 | mkdirp "^0.5.1" | 2236 | mkdirp "^0.5.1" |
1670 | natural-compare "^1.4.0" | 2237 | natural-compare "^1.4.0" |
1671 | optionator "^0.8.2" | 2238 | optionator "^0.8.2" |
1672 | path-is-inside "^1.0.2" | 2239 | path-is-inside "^1.0.2" |
1673 | pluralize "^4.0.0" | 2240 | pluralize "^7.0.0" |
1674 | progress "^2.0.0" | 2241 | progress "^2.0.0" |
2242 | regexpp "^1.0.1" | ||
1675 | require-uncached "^1.0.3" | 2243 | require-uncached "^1.0.3" |
2244 | semver "^5.3.0" | ||
2245 | strip-ansi "^4.0.0" | ||
1676 | strip-json-comments "~2.0.1" | 2246 | strip-json-comments "~2.0.1" |
1677 | table "^4.0.1" | 2247 | table "4.0.2" |
1678 | text-table "~0.2.0" | 2248 | text-table "~0.2.0" |
1679 | 2249 | ||
1680 | espree@^3.4.3: | 2250 | espree@^3.5.4: |
1681 | version "3.4.3" | 2251 | version "3.5.4" |
1682 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" | 2252 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" |
2253 | integrity sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A== | ||
1683 | dependencies: | 2254 | dependencies: |
1684 | acorn "^5.0.1" | 2255 | acorn "^5.5.0" |
1685 | acorn-jsx "^3.0.0" | 2256 | acorn-jsx "^3.0.0" |
1686 | 2257 | ||
1687 | esprima@^2.6.0: | 2258 | esprima@^2.6.0: |
1688 | version "2.7.3" | 2259 | version "2.7.3" |
1689 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" | 2260 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" |
2261 | integrity sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE= | ||
1690 | 2262 | ||
1691 | esprima@^3.1.1: | 2263 | esprima@^4.0.0: |
1692 | version "3.1.3" | 2264 | version "4.0.1" |
1693 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" | 2265 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" |
2266 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== | ||
1694 | 2267 | ||
1695 | esquery@^1.0.0: | 2268 | esquery@^1.0.0: |
1696 | version "1.0.0" | 2269 | version "1.0.1" |
1697 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" | 2270 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" |
2271 | integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== | ||
1698 | dependencies: | 2272 | dependencies: |
1699 | estraverse "^4.0.0" | 2273 | estraverse "^4.0.0" |
1700 | 2274 | ||
1701 | esrecurse@^4.1.0: | 2275 | esrecurse@^4.1.0: |
1702 | version "4.1.0" | 2276 | version "4.2.1" |
1703 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" | 2277 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" |
2278 | integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== | ||
1704 | dependencies: | 2279 | dependencies: |
1705 | estraverse "~4.1.0" | 2280 | estraverse "^4.1.0" |
1706 | object-assign "^4.0.1" | ||
1707 | 2281 | ||
1708 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: | 2282 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: |
1709 | version "4.2.0" | 2283 | version "4.2.0" |
1710 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" | 2284 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" |
1711 | 2285 | integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= | |
1712 | estraverse@~4.1.0: | ||
1713 | version "4.1.1" | ||
1714 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" | ||
1715 | 2286 | ||
1716 | esutils@^2.0.2: | 2287 | esutils@^2.0.2: |
1717 | version "2.0.2" | 2288 | version "2.0.2" |
1718 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" | 2289 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" |
2290 | integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= | ||
1719 | 2291 | ||
1720 | etag@~1.8.0: | 2292 | etag@~1.8.1: |
1721 | version "1.8.0" | 2293 | version "1.8.1" |
1722 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.0.tgz#6f631aef336d6c46362b51764044ce216be3c051" | 2294 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" |
2295 | integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= | ||
1723 | 2296 | ||
1724 | eventemitter3@1.x.x: | 2297 | eventemitter3@^3.0.0: |
1725 | version "1.2.0" | 2298 | version "3.1.0" |
1726 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" | 2299 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.0.tgz#090b4d6cdbd645ed10bf750d4b5407942d7ba163" |
2300 | integrity sha512-ivIvhpq/Y0uSjcHDcOIccjmYjGLcP09MFGE7ysAwkAvkXfpZlC985pH2/ui64DKazbTW/4kN3yqozUxlXzI6cA== | ||
1727 | 2301 | ||
1728 | events@^1.0.0: | 2302 | events@^1.0.0: |
1729 | version "1.1.1" | 2303 | version "1.1.1" |
1730 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" | 2304 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" |
2305 | integrity sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ= | ||
1731 | 2306 | ||
1732 | eventsource@0.1.6: | 2307 | eventsource@0.1.6: |
1733 | version "0.1.6" | 2308 | version "0.1.6" |
1734 | resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232" | 2309 | resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232" |
2310 | integrity sha1-Cs7ehJ7X3RzMMsgRuxG5RNTykjI= | ||
1735 | dependencies: | 2311 | dependencies: |
1736 | original ">=0.0.5" | 2312 | original ">=0.0.5" |
1737 | 2313 | ||
1738 | evp_bytestokey@^1.0.0: | 2314 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: |
1739 | version "1.0.0" | 2315 | version "1.0.3" |
1740 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" | 2316 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" |
2317 | integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== | ||
1741 | dependencies: | 2318 | dependencies: |
1742 | create-hash "^1.1.1" | 2319 | md5.js "^1.3.4" |
2320 | safe-buffer "^5.1.1" | ||
1743 | 2321 | ||
1744 | execall@^1.0.0: | 2322 | execall@^1.0.0: |
1745 | version "1.0.0" | 2323 | version "1.0.0" |
1746 | resolved "https://registry.yarnpkg.com/execall/-/execall-1.0.0.tgz#73d0904e395b3cab0658b08d09ec25307f29bb73" | 2324 | resolved "https://registry.yarnpkg.com/execall/-/execall-1.0.0.tgz#73d0904e395b3cab0658b08d09ec25307f29bb73" |
2325 | integrity sha1-c9CQTjlbPKsGWLCNCewlMH8pu3M= | ||
1747 | dependencies: | 2326 | dependencies: |
1748 | clone-regexp "^1.0.0" | 2327 | clone-regexp "^1.0.0" |
1749 | 2328 | ||
1750 | expand-brackets@^0.1.4: | 2329 | expand-brackets@^0.1.4: |
1751 | version "0.1.5" | 2330 | version "0.1.5" |
1752 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" | 2331 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" |
2332 | integrity sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s= | ||
1753 | dependencies: | 2333 | dependencies: |
1754 | is-posix-bracket "^0.1.0" | 2334 | is-posix-bracket "^0.1.0" |
1755 | 2335 | ||
2336 | expand-brackets@^2.1.4: | ||
2337 | version "2.1.4" | ||
2338 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" | ||
2339 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= | ||
2340 | dependencies: | ||
2341 | debug "^2.3.3" | ||
2342 | define-property "^0.2.5" | ||
2343 | extend-shallow "^2.0.1" | ||
2344 | posix-character-classes "^0.1.0" | ||
2345 | regex-not "^1.0.0" | ||
2346 | snapdragon "^0.8.1" | ||
2347 | to-regex "^3.0.1" | ||
2348 | |||
1756 | expand-range@^1.8.1: | 2349 | expand-range@^1.8.1: |
1757 | version "1.8.2" | 2350 | version "1.8.2" |
1758 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" | 2351 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" |
2352 | integrity sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc= | ||
1759 | dependencies: | 2353 | dependencies: |
1760 | fill-range "^2.1.0" | 2354 | fill-range "^2.1.0" |
1761 | 2355 | ||
1762 | express@^4.13.3: | 2356 | express@^4.16.2: |
1763 | version "4.15.3" | 2357 | version "4.16.4" |
1764 | resolved "https://registry.yarnpkg.com/express/-/express-4.15.3.tgz#bab65d0f03aa80c358408972fc700f916944b662" | 2358 | resolved "https://registry.yarnpkg.com/express/-/express-4.16.4.tgz#fddef61926109e24c515ea97fd2f1bdbf62df12e" |
2359 | integrity sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg== | ||
1765 | dependencies: | 2360 | dependencies: |
1766 | accepts "~1.3.3" | 2361 | accepts "~1.3.5" |
1767 | array-flatten "1.1.1" | 2362 | array-flatten "1.1.1" |
2363 | body-parser "1.18.3" | ||
1768 | content-disposition "0.5.2" | 2364 | content-disposition "0.5.2" |
1769 | content-type "~1.0.2" | 2365 | content-type "~1.0.4" |
1770 | cookie "0.3.1" | 2366 | cookie "0.3.1" |
1771 | cookie-signature "1.0.6" | 2367 | cookie-signature "1.0.6" |
1772 | debug "2.6.7" | 2368 | debug "2.6.9" |
1773 | depd "~1.1.0" | 2369 | depd "~1.1.2" |
1774 | encodeurl "~1.0.1" | 2370 | encodeurl "~1.0.2" |
1775 | escape-html "~1.0.3" | 2371 | escape-html "~1.0.3" |
1776 | etag "~1.8.0" | 2372 | etag "~1.8.1" |
1777 | finalhandler "~1.0.3" | 2373 | finalhandler "1.1.1" |
1778 | fresh "0.5.0" | 2374 | fresh "0.5.2" |
1779 | merge-descriptors "1.0.1" | 2375 | merge-descriptors "1.0.1" |
1780 | methods "~1.1.2" | 2376 | methods "~1.1.2" |
1781 | on-finished "~2.3.0" | 2377 | on-finished "~2.3.0" |
1782 | parseurl "~1.3.1" | 2378 | parseurl "~1.3.2" |
1783 | path-to-regexp "0.1.7" | 2379 | path-to-regexp "0.1.7" |
1784 | proxy-addr "~1.1.4" | 2380 | proxy-addr "~2.0.4" |
1785 | qs "6.4.0" | 2381 | qs "6.5.2" |
1786 | range-parser "~1.2.0" | 2382 | range-parser "~1.2.0" |
1787 | send "0.15.3" | 2383 | safe-buffer "5.1.2" |
1788 | serve-static "1.12.3" | 2384 | send "0.16.2" |
1789 | setprototypeof "1.0.3" | 2385 | serve-static "1.13.2" |
1790 | statuses "~1.3.1" | 2386 | setprototypeof "1.1.0" |
1791 | type-is "~1.6.15" | 2387 | statuses "~1.4.0" |
1792 | utils-merge "1.0.0" | 2388 | type-is "~1.6.16" |
1793 | vary "~1.1.1" | 2389 | utils-merge "1.0.1" |
1794 | 2390 | vary "~1.1.2" | |
1795 | extend@~3.0.0: | 2391 | |
1796 | version "3.0.1" | 2392 | extend-shallow@^2.0.1: |
1797 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" | 2393 | version "2.0.1" |
2394 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" | ||
2395 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= | ||
2396 | dependencies: | ||
2397 | is-extendable "^0.1.0" | ||
2398 | |||
2399 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: | ||
2400 | version "3.0.2" | ||
2401 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" | ||
2402 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= | ||
2403 | dependencies: | ||
2404 | assign-symbols "^1.0.0" | ||
2405 | is-extendable "^1.0.1" | ||
2406 | |||
2407 | extend@~3.0.2: | ||
2408 | version "3.0.2" | ||
2409 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" | ||
2410 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== | ||
1798 | 2411 | ||
1799 | external-editor@^2.0.4: | 2412 | external-editor@^2.0.4: |
1800 | version "2.0.4" | 2413 | version "2.2.0" |
1801 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" | 2414 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" |
2415 | integrity sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A== | ||
1802 | dependencies: | 2416 | dependencies: |
2417 | chardet "^0.4.0" | ||
1803 | iconv-lite "^0.4.17" | 2418 | iconv-lite "^0.4.17" |
1804 | jschardet "^1.4.2" | 2419 | tmp "^0.0.33" |
1805 | tmp "^0.0.31" | ||
1806 | 2420 | ||
1807 | extglob@^0.3.1: | 2421 | extglob@^0.3.1: |
1808 | version "0.3.2" | 2422 | version "0.3.2" |
1809 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" | 2423 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" |
2424 | integrity sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE= | ||
1810 | dependencies: | 2425 | dependencies: |
1811 | is-extglob "^1.0.0" | 2426 | is-extglob "^1.0.0" |
1812 | 2427 | ||
2428 | extglob@^2.0.4: | ||
2429 | version "2.0.4" | ||
2430 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" | ||
2431 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== | ||
2432 | dependencies: | ||
2433 | array-unique "^0.3.2" | ||
2434 | define-property "^1.0.0" | ||
2435 | expand-brackets "^2.1.4" | ||
2436 | extend-shallow "^2.0.1" | ||
2437 | fragment-cache "^0.2.1" | ||
2438 | regex-not "^1.0.0" | ||
2439 | snapdragon "^0.8.1" | ||
2440 | to-regex "^3.0.1" | ||
2441 | |||
1813 | extract-text-webpack-plugin@^2.1.0: | 2442 | extract-text-webpack-plugin@^2.1.0: |
1814 | version "2.1.2" | 2443 | version "2.1.2" |
1815 | resolved "https://registry.yarnpkg.com/extract-text-webpack-plugin/-/extract-text-webpack-plugin-2.1.2.tgz#756ef4efa8155c3681833fbc34da53b941746d6c" | 2444 | resolved "https://registry.yarnpkg.com/extract-text-webpack-plugin/-/extract-text-webpack-plugin-2.1.2.tgz#756ef4efa8155c3681833fbc34da53b941746d6c" |
2445 | integrity sha1-dW7076gVXDaBgz+8NNpTuUF0bWw= | ||
1816 | dependencies: | 2446 | dependencies: |
1817 | async "^2.1.2" | 2447 | async "^2.1.2" |
1818 | loader-utils "^1.0.2" | 2448 | loader-utils "^1.0.2" |
1819 | schema-utils "^0.3.0" | 2449 | schema-utils "^0.3.0" |
1820 | webpack-sources "^1.0.1" | 2450 | webpack-sources "^1.0.1" |
1821 | 2451 | ||
1822 | extsprintf@1.0.2: | 2452 | extsprintf@1.3.0: |
1823 | version "1.0.2" | 2453 | version "1.3.0" |
1824 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" | 2454 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" |
2455 | integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= | ||
2456 | |||
2457 | extsprintf@^1.2.0: | ||
2458 | version "1.4.0" | ||
2459 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" | ||
2460 | integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= | ||
2461 | |||
2462 | fast-deep-equal@^1.0.0: | ||
2463 | version "1.1.0" | ||
2464 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" | ||
2465 | integrity sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ= | ||
2466 | |||
2467 | fast-deep-equal@^2.0.1: | ||
2468 | version "2.0.1" | ||
2469 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" | ||
2470 | integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= | ||
2471 | |||
2472 | fast-json-stable-stringify@^2.0.0: | ||
2473 | version "2.0.0" | ||
2474 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" | ||
2475 | integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= | ||
1825 | 2476 | ||
1826 | fast-levenshtein@~2.0.4: | 2477 | fast-levenshtein@~2.0.4: |
1827 | version "2.0.6" | 2478 | version "2.0.6" |
1828 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" | 2479 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" |
2480 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= | ||
1829 | 2481 | ||
1830 | fastparse@^1.1.1: | 2482 | fastparse@^1.1.1: |
1831 | version "1.1.1" | 2483 | version "1.1.2" |
1832 | resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" | 2484 | resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9" |
2485 | integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ== | ||
1833 | 2486 | ||
1834 | faye-websocket@^0.10.0: | 2487 | faye-websocket@^0.10.0: |
1835 | version "0.10.0" | 2488 | version "0.10.0" |
1836 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" | 2489 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" |
2490 | integrity sha1-TkkvjQTftviQA1B/btvy1QHnxvQ= | ||
1837 | dependencies: | 2491 | dependencies: |
1838 | websocket-driver ">=0.5.1" | 2492 | websocket-driver ">=0.5.1" |
1839 | 2493 | ||
1840 | faye-websocket@~0.11.0: | 2494 | faye-websocket@~0.11.0: |
1841 | version "0.11.1" | 2495 | version "0.11.1" |
1842 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" | 2496 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" |
2497 | integrity sha1-8O/hjE9W5PQK/H4Gxxn9XuYYjzg= | ||
1843 | dependencies: | 2498 | dependencies: |
1844 | websocket-driver ">=0.5.1" | 2499 | websocket-driver ">=0.5.1" |
1845 | 2500 | ||
1846 | figures@^2.0.0: | 2501 | figures@^2.0.0: |
1847 | version "2.0.0" | 2502 | version "2.0.0" |
1848 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" | 2503 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" |
2504 | integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= | ||
1849 | dependencies: | 2505 | dependencies: |
1850 | escape-string-regexp "^1.0.5" | 2506 | escape-string-regexp "^1.0.5" |
1851 | 2507 | ||
1852 | file-entry-cache@^2.0.0: | 2508 | file-entry-cache@^2.0.0: |
1853 | version "2.0.0" | 2509 | version "2.0.0" |
1854 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" | 2510 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" |
2511 | integrity sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E= | ||
1855 | dependencies: | 2512 | dependencies: |
1856 | flat-cache "^1.2.1" | 2513 | flat-cache "^1.2.1" |
1857 | object-assign "^4.0.1" | 2514 | object-assign "^4.0.1" |
@@ -1859,106 +2516,163 @@ file-entry-cache@^2.0.0: | |||
1859 | file-loader@^0.11.0: | 2516 | file-loader@^0.11.0: |
1860 | version "0.11.2" | 2517 | version "0.11.2" |
1861 | resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-0.11.2.tgz#4ff1df28af38719a6098093b88c82c71d1794a34" | 2518 | resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-0.11.2.tgz#4ff1df28af38719a6098093b88c82c71d1794a34" |
2519 | integrity sha512-N+uhF3mswIFeziHQjGScJ/yHXYt3DiLBeC+9vWW+WjUBiClMSOlV1YrXQi+7KM2aA3Rn4Bybgv+uXFQbfkzpvg== | ||
1862 | dependencies: | 2520 | dependencies: |
1863 | loader-utils "^1.0.2" | 2521 | loader-utils "^1.0.2" |
1864 | 2522 | ||
1865 | filename-regex@^2.0.0: | 2523 | filename-regex@^2.0.0: |
1866 | version "2.0.1" | 2524 | version "2.0.1" |
1867 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" | 2525 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" |
2526 | integrity sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY= | ||
1868 | 2527 | ||
1869 | fill-range@^2.1.0: | 2528 | fill-range@^2.1.0: |
1870 | version "2.2.3" | 2529 | version "2.2.4" |
1871 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" | 2530 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" |
2531 | integrity sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q== | ||
1872 | dependencies: | 2532 | dependencies: |
1873 | is-number "^2.1.0" | 2533 | is-number "^2.1.0" |
1874 | isobject "^2.0.0" | 2534 | isobject "^2.0.0" |
1875 | randomatic "^1.1.3" | 2535 | randomatic "^3.0.0" |
1876 | repeat-element "^1.1.2" | 2536 | repeat-element "^1.1.2" |
1877 | repeat-string "^1.5.2" | 2537 | repeat-string "^1.5.2" |
1878 | 2538 | ||
1879 | finalhandler@~1.0.3: | 2539 | fill-range@^4.0.0: |
1880 | version "1.0.3" | 2540 | version "4.0.0" |
1881 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.3.tgz#ef47e77950e999780e86022a560e3217e0d0cc89" | 2541 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" |
2542 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= | ||
2543 | dependencies: | ||
2544 | extend-shallow "^2.0.1" | ||
2545 | is-number "^3.0.0" | ||
2546 | repeat-string "^1.6.1" | ||
2547 | to-regex-range "^2.1.0" | ||
2548 | |||
2549 | finalhandler@1.1.1: | ||
2550 | version "1.1.1" | ||
2551 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.1.tgz#eebf4ed840079c83f4249038c9d703008301b105" | ||
2552 | integrity sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg== | ||
1882 | dependencies: | 2553 | dependencies: |
1883 | debug "2.6.7" | 2554 | debug "2.6.9" |
1884 | encodeurl "~1.0.1" | 2555 | encodeurl "~1.0.2" |
1885 | escape-html "~1.0.3" | 2556 | escape-html "~1.0.3" |
1886 | on-finished "~2.3.0" | 2557 | on-finished "~2.3.0" |
1887 | parseurl "~1.3.1" | 2558 | parseurl "~1.3.2" |
1888 | statuses "~1.3.1" | 2559 | statuses "~1.4.0" |
1889 | unpipe "~1.0.0" | 2560 | unpipe "~1.0.0" |
1890 | 2561 | ||
1891 | find-cache-dir@^0.1.1: | 2562 | find-cache-dir@^0.1.1: |
1892 | version "0.1.1" | 2563 | version "0.1.1" |
1893 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" | 2564 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" |
2565 | integrity sha1-yN765XyKUqinhPnjHFfHQumToLk= | ||
1894 | dependencies: | 2566 | dependencies: |
1895 | commondir "^1.0.1" | 2567 | commondir "^1.0.1" |
1896 | mkdirp "^0.5.1" | 2568 | mkdirp "^0.5.1" |
1897 | pkg-dir "^1.0.0" | 2569 | pkg-dir "^1.0.0" |
1898 | 2570 | ||
2571 | find-cache-dir@^1.0.0: | ||
2572 | version "1.0.0" | ||
2573 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" | ||
2574 | integrity sha1-kojj6ePMN0hxfTnq3hfPcfww7m8= | ||
2575 | dependencies: | ||
2576 | commondir "^1.0.1" | ||
2577 | make-dir "^1.0.0" | ||
2578 | pkg-dir "^2.0.0" | ||
2579 | |||
1899 | find-up@^1.0.0: | 2580 | find-up@^1.0.0: |
1900 | version "1.1.2" | 2581 | version "1.1.2" |
1901 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" | 2582 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" |
2583 | integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= | ||
1902 | dependencies: | 2584 | dependencies: |
1903 | path-exists "^2.0.0" | 2585 | path-exists "^2.0.0" |
1904 | pinkie-promise "^2.0.0" | 2586 | pinkie-promise "^2.0.0" |
1905 | 2587 | ||
1906 | find-up@^2.0.0: | 2588 | find-up@^2.0.0, find-up@^2.1.0: |
1907 | version "2.1.0" | 2589 | version "2.1.0" |
1908 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" | 2590 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" |
2591 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= | ||
1909 | dependencies: | 2592 | dependencies: |
1910 | locate-path "^2.0.0" | 2593 | locate-path "^2.0.0" |
1911 | 2594 | ||
1912 | flat-cache@^1.2.1: | 2595 | flat-cache@^1.2.1: |
1913 | version "1.2.2" | 2596 | version "1.3.4" |
1914 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" | 2597 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.4.tgz#2c2ef77525cc2929007dfffa1dd314aa9c9dee6f" |
2598 | integrity sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg== | ||
1915 | dependencies: | 2599 | dependencies: |
1916 | circular-json "^0.3.1" | 2600 | circular-json "^0.3.1" |
1917 | del "^2.0.2" | ||
1918 | graceful-fs "^4.1.2" | 2601 | graceful-fs "^4.1.2" |
2602 | rimraf "~2.6.2" | ||
1919 | write "^0.2.1" | 2603 | write "^0.2.1" |
1920 | 2604 | ||
1921 | flatten@^1.0.2: | 2605 | flatten@^1.0.2: |
1922 | version "1.0.2" | 2606 | version "1.0.2" |
1923 | resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" | 2607 | resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" |
2608 | integrity sha1-2uRqnXj74lKSJYzB54CkHZXAN4I= | ||
2609 | |||
2610 | follow-redirects@^1.0.0: | ||
2611 | version "1.5.10" | ||
2612 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a" | ||
2613 | integrity sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ== | ||
2614 | dependencies: | ||
2615 | debug "=3.1.0" | ||
1924 | 2616 | ||
1925 | for-in@^0.1.3: | 2617 | for-in@^0.1.3: |
1926 | version "0.1.8" | 2618 | version "0.1.8" |
1927 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" | 2619 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" |
2620 | integrity sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE= | ||
1928 | 2621 | ||
1929 | for-in@^1.0.1: | 2622 | for-in@^1.0.1, for-in@^1.0.2: |
1930 | version "1.0.2" | 2623 | version "1.0.2" |
1931 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" | 2624 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" |
2625 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= | ||
1932 | 2626 | ||
1933 | for-own@^0.1.3, for-own@^0.1.4: | 2627 | for-own@^0.1.4: |
1934 | version "0.1.5" | 2628 | version "0.1.5" |
1935 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" | 2629 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" |
2630 | integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4= | ||
2631 | dependencies: | ||
2632 | for-in "^1.0.1" | ||
2633 | |||
2634 | for-own@^1.0.0: | ||
2635 | version "1.0.0" | ||
2636 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" | ||
2637 | integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs= | ||
1936 | dependencies: | 2638 | dependencies: |
1937 | for-in "^1.0.1" | 2639 | for-in "^1.0.1" |
1938 | 2640 | ||
1939 | forever-agent@~0.6.1: | 2641 | forever-agent@~0.6.1: |
1940 | version "0.6.1" | 2642 | version "0.6.1" |
1941 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" | 2643 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" |
2644 | integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= | ||
1942 | 2645 | ||
1943 | form-data@~2.1.1: | 2646 | form-data@~2.3.2: |
1944 | version "2.1.4" | 2647 | version "2.3.3" |
1945 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" | 2648 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" |
2649 | integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== | ||
1946 | dependencies: | 2650 | dependencies: |
1947 | asynckit "^0.4.0" | 2651 | asynckit "^0.4.0" |
1948 | combined-stream "^1.0.5" | 2652 | combined-stream "^1.0.6" |
1949 | mime-types "^2.1.12" | 2653 | mime-types "^2.1.12" |
1950 | 2654 | ||
1951 | forwarded@~0.1.0: | 2655 | forwarded@~0.1.2: |
1952 | version "0.1.0" | 2656 | version "0.1.2" |
1953 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" | 2657 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" |
2658 | integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= | ||
1954 | 2659 | ||
1955 | fresh@0.5.0: | 2660 | fragment-cache@^0.2.1: |
1956 | version "0.5.0" | 2661 | version "0.2.1" |
1957 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e" | 2662 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" |
2663 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= | ||
2664 | dependencies: | ||
2665 | map-cache "^0.2.2" | ||
2666 | |||
2667 | fresh@0.5.2: | ||
2668 | version "0.5.2" | ||
2669 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" | ||
2670 | integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= | ||
1958 | 2671 | ||
1959 | fs-extra@^0.30.0: | 2672 | fs-extra@^0.30.0: |
1960 | version "0.30.0" | 2673 | version "0.30.0" |
1961 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" | 2674 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" |
2675 | integrity sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A= | ||
1962 | dependencies: | 2676 | dependencies: |
1963 | graceful-fs "^4.1.2" | 2677 | graceful-fs "^4.1.2" |
1964 | jsonfile "^2.1.0" | 2678 | jsonfile "^2.1.0" |
@@ -1966,45 +2680,55 @@ fs-extra@^0.30.0: | |||
1966 | path-is-absolute "^1.0.0" | 2680 | path-is-absolute "^1.0.0" |
1967 | rimraf "^2.2.8" | 2681 | rimraf "^2.2.8" |
1968 | 2682 | ||
2683 | fs-minipass@^1.2.5: | ||
2684 | version "1.2.5" | ||
2685 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" | ||
2686 | integrity sha512-JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ== | ||
2687 | dependencies: | ||
2688 | minipass "^2.2.1" | ||
2689 | |||
1969 | fs.realpath@^1.0.0: | 2690 | fs.realpath@^1.0.0: |
1970 | version "1.0.0" | 2691 | version "1.0.0" |
1971 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" | 2692 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" |
2693 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= | ||
1972 | 2694 | ||
1973 | fsevents@^1.0.0: | 2695 | fsevents@^1.2.2: |
1974 | version "1.1.2" | 2696 | version "1.2.4" |
1975 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" | 2697 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" |
1976 | dependencies: | 2698 | integrity sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg== |
1977 | nan "^2.3.0" | ||
1978 | node-pre-gyp "^0.6.36" | ||
1979 | |||
1980 | fstream-ignore@^1.0.5: | ||
1981 | version "1.0.5" | ||
1982 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" | ||
1983 | dependencies: | 2699 | dependencies: |
1984 | fstream "^1.0.0" | 2700 | nan "^2.9.2" |
1985 | inherits "2" | 2701 | node-pre-gyp "^0.10.0" |
1986 | minimatch "^3.0.0" | ||
1987 | 2702 | ||
1988 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: | 2703 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: |
1989 | version "1.0.11" | 2704 | version "1.0.11" |
1990 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" | 2705 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" |
2706 | integrity sha1-XB+x8RdHcRTwYyoOtLcbPLD9MXE= | ||
1991 | dependencies: | 2707 | dependencies: |
1992 | graceful-fs "^4.1.2" | 2708 | graceful-fs "^4.1.2" |
1993 | inherits "~2.0.0" | 2709 | inherits "~2.0.0" |
1994 | mkdirp ">=0.5 0" | 2710 | mkdirp ">=0.5 0" |
1995 | rimraf "2" | 2711 | rimraf "2" |
1996 | 2712 | ||
1997 | function-bind@^1.0.2: | 2713 | function-bind@^1.1.1: |
1998 | version "1.1.0" | 2714 | version "1.1.1" |
1999 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" | 2715 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" |
2716 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== | ||
2717 | |||
2718 | functional-red-black-tree@^1.0.1: | ||
2719 | version "1.0.1" | ||
2720 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" | ||
2721 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= | ||
2000 | 2722 | ||
2001 | gather-stream@^1.0.0: | 2723 | gather-stream@^1.0.0: |
2002 | version "1.0.0" | 2724 | version "1.0.0" |
2003 | resolved "https://registry.yarnpkg.com/gather-stream/-/gather-stream-1.0.0.tgz#b33994af457a8115700d410f317733cbe7a0904b" | 2725 | resolved "https://registry.yarnpkg.com/gather-stream/-/gather-stream-1.0.0.tgz#b33994af457a8115700d410f317733cbe7a0904b" |
2726 | integrity sha1-szmUr0V6gRVwDUEPMXczy+egkEs= | ||
2004 | 2727 | ||
2005 | gauge@~2.7.3: | 2728 | gauge@~2.7.3: |
2006 | version "2.7.4" | 2729 | version "2.7.4" |
2007 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" | 2730 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" |
2731 | integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= | ||
2008 | dependencies: | 2732 | dependencies: |
2009 | aproba "^1.0.3" | 2733 | aproba "^1.0.3" |
2010 | console-control-strings "^1.0.0" | 2734 | console-control-strings "^1.0.0" |
@@ -2016,42 +2740,43 @@ gauge@~2.7.3: | |||
2016 | wide-align "^1.1.0" | 2740 | wide-align "^1.1.0" |
2017 | 2741 | ||
2018 | gaze@^1.0.0: | 2742 | gaze@^1.0.0: |
2019 | version "1.1.2" | 2743 | version "1.1.3" |
2020 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.2.tgz#847224677adb8870d679257ed3388fdb61e40105" | 2744 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a" |
2745 | integrity sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g== | ||
2021 | dependencies: | 2746 | dependencies: |
2022 | globule "^1.0.0" | 2747 | globule "^1.0.0" |
2023 | 2748 | ||
2024 | generate-function@^2.0.0: | ||
2025 | version "2.0.0" | ||
2026 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" | ||
2027 | |||
2028 | generate-object-property@^1.1.0: | ||
2029 | version "1.2.0" | ||
2030 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" | ||
2031 | dependencies: | ||
2032 | is-property "^1.0.0" | ||
2033 | |||
2034 | get-caller-file@^1.0.1: | 2749 | get-caller-file@^1.0.1: |
2035 | version "1.0.2" | 2750 | version "1.0.3" |
2036 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" | 2751 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" |
2752 | integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== | ||
2037 | 2753 | ||
2038 | get-stdin@^4.0.1: | 2754 | get-stdin@^4.0.1: |
2039 | version "4.0.1" | 2755 | version "4.0.1" |
2040 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" | 2756 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" |
2757 | integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4= | ||
2041 | 2758 | ||
2042 | get-stdin@^5.0.0: | 2759 | get-stdin@^5.0.0: |
2043 | version "5.0.1" | 2760 | version "5.0.1" |
2044 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" | 2761 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" |
2762 | integrity sha1-Ei4WFZHiH/TFJTAwVpPyDmOTo5g= | ||
2763 | |||
2764 | get-value@^2.0.3, get-value@^2.0.6: | ||
2765 | version "2.0.6" | ||
2766 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" | ||
2767 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= | ||
2045 | 2768 | ||
2046 | getpass@^0.1.1: | 2769 | getpass@^0.1.1: |
2047 | version "0.1.7" | 2770 | version "0.1.7" |
2048 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" | 2771 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" |
2772 | integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= | ||
2049 | dependencies: | 2773 | dependencies: |
2050 | assert-plus "^1.0.0" | 2774 | assert-plus "^1.0.0" |
2051 | 2775 | ||
2052 | glob-base@^0.3.0: | 2776 | glob-base@^0.3.0: |
2053 | version "0.3.0" | 2777 | version "0.3.0" |
2054 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" | 2778 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" |
2779 | integrity sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q= | ||
2055 | dependencies: | 2780 | dependencies: |
2056 | glob-parent "^2.0.0" | 2781 | glob-parent "^2.0.0" |
2057 | is-glob "^2.0.0" | 2782 | is-glob "^2.0.0" |
@@ -2059,12 +2784,22 @@ glob-base@^0.3.0: | |||
2059 | glob-parent@^2.0.0: | 2784 | glob-parent@^2.0.0: |
2060 | version "2.0.0" | 2785 | version "2.0.0" |
2061 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" | 2786 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" |
2787 | integrity sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg= | ||
2062 | dependencies: | 2788 | dependencies: |
2063 | is-glob "^2.0.0" | 2789 | is-glob "^2.0.0" |
2064 | 2790 | ||
2791 | glob-parent@^3.1.0: | ||
2792 | version "3.1.0" | ||
2793 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" | ||
2794 | integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= | ||
2795 | dependencies: | ||
2796 | is-glob "^3.1.0" | ||
2797 | path-dirname "^1.0.0" | ||
2798 | |||
2065 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.2, glob@~7.1.1: | 2799 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.2, glob@~7.1.1: |
2066 | version "7.1.2" | 2800 | version "7.1.3" |
2067 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" | 2801 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" |
2802 | integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== | ||
2068 | dependencies: | 2803 | dependencies: |
2069 | fs.realpath "^1.0.0" | 2804 | fs.realpath "^1.0.0" |
2070 | inflight "^1.0.4" | 2805 | inflight "^1.0.4" |
@@ -2073,24 +2808,20 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.2, glob@~7.1.1: | |||
2073 | once "^1.3.0" | 2808 | once "^1.3.0" |
2074 | path-is-absolute "^1.0.0" | 2809 | path-is-absolute "^1.0.0" |
2075 | 2810 | ||
2076 | globals@^9.0.0, globals@^9.17.0: | 2811 | globals@^11.0.1: |
2812 | version "11.9.0" | ||
2813 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.9.0.tgz#bde236808e987f290768a93d065060d78e6ab249" | ||
2814 | integrity sha512-5cJVtyXWH8PiJPVLZzzoIizXx944O4OmRro5MWKx5fT4MgcN7OfaMutPeaTdJCCURwbWdhhcCWcKIffPnmTzBg== | ||
2815 | |||
2816 | globals@^9.18.0: | ||
2077 | version "9.18.0" | 2817 | version "9.18.0" |
2078 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" | 2818 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" |
2819 | integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== | ||
2079 | 2820 | ||
2080 | globby@^5.0.0: | 2821 | globby@^6.0.0, globby@^6.1.0: |
2081 | version "5.0.0" | ||
2082 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" | ||
2083 | dependencies: | ||
2084 | array-union "^1.0.1" | ||
2085 | arrify "^1.0.0" | ||
2086 | glob "^7.0.3" | ||
2087 | object-assign "^4.0.1" | ||
2088 | pify "^2.0.0" | ||
2089 | pinkie-promise "^2.0.0" | ||
2090 | |||
2091 | globby@^6.0.0: | ||
2092 | version "6.1.0" | 2822 | version "6.1.0" |
2093 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" | 2823 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" |
2824 | integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw= | ||
2094 | dependencies: | 2825 | dependencies: |
2095 | array-union "^1.0.1" | 2826 | array-union "^1.0.1" |
2096 | glob "^7.0.3" | 2827 | glob "^7.0.3" |
@@ -2101,113 +2832,162 @@ globby@^6.0.0: | |||
2101 | globjoin@^0.1.4: | 2832 | globjoin@^0.1.4: |
2102 | version "0.1.4" | 2833 | version "0.1.4" |
2103 | resolved "https://registry.yarnpkg.com/globjoin/-/globjoin-0.1.4.tgz#2f4494ac8919e3767c5cbb691e9f463324285d43" | 2834 | resolved "https://registry.yarnpkg.com/globjoin/-/globjoin-0.1.4.tgz#2f4494ac8919e3767c5cbb691e9f463324285d43" |
2835 | integrity sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM= | ||
2104 | 2836 | ||
2105 | globule@^1.0.0: | 2837 | globule@^1.0.0: |
2106 | version "1.2.0" | 2838 | version "1.2.1" |
2107 | resolved "https://registry.yarnpkg.com/globule/-/globule-1.2.0.tgz#1dc49c6822dd9e8a2fa00ba2a295006e8664bd09" | 2839 | resolved "https://registry.yarnpkg.com/globule/-/globule-1.2.1.tgz#5dffb1b191f22d20797a9369b49eab4e9839696d" |
2840 | integrity sha512-g7QtgWF4uYSL5/dn71WxubOrS7JVGCnFPEnoeChJmBnyR9Mw8nGoEwOgJL/RC2Te0WhbsEUCejfH8SZNJ+adYQ== | ||
2108 | dependencies: | 2841 | dependencies: |
2109 | glob "~7.1.1" | 2842 | glob "~7.1.1" |
2110 | lodash "~4.17.4" | 2843 | lodash "~4.17.10" |
2111 | minimatch "~3.0.2" | 2844 | minimatch "~3.0.2" |
2112 | 2845 | ||
2113 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: | 2846 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: |
2114 | version "4.1.11" | 2847 | version "4.1.15" |
2115 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" | 2848 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" |
2849 | integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== | ||
2116 | 2850 | ||
2117 | "graceful-readlink@>= 1.0.0": | 2851 | "graceful-readlink@>= 1.0.0": |
2118 | version "1.0.1" | 2852 | version "1.0.1" |
2119 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" | 2853 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" |
2854 | integrity sha1-TK+tdrxi8C+gObL5Tpo906ORpyU= | ||
2120 | 2855 | ||
2121 | hammerjs@^2.0.4, hammerjs@^2.0.8: | 2856 | hammerjs@^2.0.4, hammerjs@^2.0.8: |
2122 | version "2.0.8" | 2857 | version "2.0.8" |
2123 | resolved "https://registry.yarnpkg.com/hammerjs/-/hammerjs-2.0.8.tgz#04ef77862cff2bb79d30f7692095930222bf60f1" | 2858 | resolved "https://registry.yarnpkg.com/hammerjs/-/hammerjs-2.0.8.tgz#04ef77862cff2bb79d30f7692095930222bf60f1" |
2859 | integrity sha1-BO93hiz/K7edMPdpIJWTAiK/YPE= | ||
2124 | 2860 | ||
2125 | handle-thing@^1.2.5: | 2861 | handle-thing@^1.2.5: |
2126 | version "1.2.5" | 2862 | version "1.2.5" |
2127 | resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-1.2.5.tgz#fd7aad726bf1a5fd16dfc29b2f7a6601d27139c4" | 2863 | resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-1.2.5.tgz#fd7aad726bf1a5fd16dfc29b2f7a6601d27139c4" |
2864 | integrity sha1-/Xqtcmvxpf0W38KbL3pmAdJxOcQ= | ||
2128 | 2865 | ||
2129 | har-schema@^1.0.5: | 2866 | har-schema@^2.0.0: |
2130 | version "1.0.5" | 2867 | version "2.0.0" |
2131 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" | 2868 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" |
2869 | integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= | ||
2132 | 2870 | ||
2133 | har-validator@~4.2.1: | 2871 | har-validator@~5.1.0: |
2134 | version "4.2.1" | 2872 | version "5.1.3" |
2135 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" | 2873 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" |
2874 | integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== | ||
2136 | dependencies: | 2875 | dependencies: |
2137 | ajv "^4.9.1" | 2876 | ajv "^6.5.5" |
2138 | har-schema "^1.0.5" | 2877 | har-schema "^2.0.0" |
2139 | 2878 | ||
2140 | has-ansi@^2.0.0: | 2879 | has-ansi@^2.0.0: |
2141 | version "2.0.0" | 2880 | version "2.0.0" |
2142 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" | 2881 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" |
2882 | integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= | ||
2143 | dependencies: | 2883 | dependencies: |
2144 | ansi-regex "^2.0.0" | 2884 | ansi-regex "^2.0.0" |
2145 | 2885 | ||
2146 | has-flag@^1.0.0: | 2886 | has-flag@^1.0.0: |
2147 | version "1.0.0" | 2887 | version "1.0.0" |
2148 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" | 2888 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" |
2889 | integrity sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo= | ||
2890 | |||
2891 | has-flag@^3.0.0: | ||
2892 | version "3.0.0" | ||
2893 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" | ||
2894 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= | ||
2895 | |||
2896 | has-symbols@^1.0.0: | ||
2897 | version "1.0.0" | ||
2898 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" | ||
2899 | integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= | ||
2149 | 2900 | ||
2150 | has-unicode@^2.0.0: | 2901 | has-unicode@^2.0.0: |
2151 | version "2.0.1" | 2902 | version "2.0.1" |
2152 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" | 2903 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" |
2904 | integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= | ||
2153 | 2905 | ||
2154 | has@^1.0.1: | 2906 | has-value@^0.3.1: |
2155 | version "1.0.1" | 2907 | version "0.3.1" |
2156 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" | 2908 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" |
2909 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= | ||
2157 | dependencies: | 2910 | dependencies: |
2158 | function-bind "^1.0.2" | 2911 | get-value "^2.0.3" |
2912 | has-values "^0.1.4" | ||
2913 | isobject "^2.0.0" | ||
2159 | 2914 | ||
2160 | hash-base@^2.0.0: | 2915 | has-value@^1.0.0: |
2161 | version "2.0.2" | 2916 | version "1.0.0" |
2162 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" | 2917 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" |
2918 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= | ||
2163 | dependencies: | 2919 | dependencies: |
2164 | inherits "^2.0.1" | 2920 | get-value "^2.0.6" |
2921 | has-values "^1.0.0" | ||
2922 | isobject "^3.0.0" | ||
2165 | 2923 | ||
2166 | hash.js@^1.0.0, hash.js@^1.0.3: | 2924 | has-values@^0.1.4: |
2925 | version "0.1.4" | ||
2926 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" | ||
2927 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= | ||
2928 | |||
2929 | has-values@^1.0.0: | ||
2930 | version "1.0.0" | ||
2931 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" | ||
2932 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= | ||
2933 | dependencies: | ||
2934 | is-number "^3.0.0" | ||
2935 | kind-of "^4.0.0" | ||
2936 | |||
2937 | has@^1.0.1: | ||
2167 | version "1.0.3" | 2938 | version "1.0.3" |
2168 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" | 2939 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" |
2940 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== | ||
2941 | dependencies: | ||
2942 | function-bind "^1.1.1" | ||
2943 | |||
2944 | hash-base@^3.0.0: | ||
2945 | version "3.0.4" | ||
2946 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" | ||
2947 | integrity sha1-X8hoaEfs1zSZQDMZprCj8/auSRg= | ||
2169 | dependencies: | 2948 | dependencies: |
2170 | inherits "^2.0.1" | 2949 | inherits "^2.0.1" |
2950 | safe-buffer "^5.0.1" | ||
2171 | 2951 | ||
2172 | hawk@~3.1.3: | 2952 | hash.js@^1.0.0, hash.js@^1.0.3: |
2173 | version "3.1.3" | 2953 | version "1.1.5" |
2174 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" | 2954 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.5.tgz#e38ab4b85dfb1e0c40fe9265c0e9b54854c23812" |
2955 | integrity sha512-eWI5HG9Np+eHV1KQhisXWwM+4EPPYe5dFX1UZZH7k/E3JzDEazVH+VGlZi6R94ZqImq+A3D1mCEtrFIfg/E7sA== | ||
2175 | dependencies: | 2956 | dependencies: |
2176 | boom "2.x.x" | 2957 | inherits "^2.0.3" |
2177 | cryptiles "2.x.x" | 2958 | minimalistic-assert "^1.0.1" |
2178 | hoek "2.x.x" | ||
2179 | sntp "1.x.x" | ||
2180 | 2959 | ||
2181 | highlight.js@^9.12.0: | 2960 | highlight.js@^9.12.0: |
2182 | version "9.12.0" | 2961 | version "9.13.1" |
2183 | resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.12.0.tgz#e6d9dbe57cbefe60751f02af336195870c90c01e" | 2962 | resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.13.1.tgz#054586d53a6863311168488a0f58d6c505ce641e" |
2963 | integrity sha512-Sc28JNQNDzaH6PORtRLMvif9RSn1mYuOoX3omVjnb0+HbpPygU2ALBI0R/wsiqCb4/fcp07Gdo8g+fhtFrQl6A== | ||
2184 | 2964 | ||
2185 | hmac-drbg@^1.0.0: | 2965 | hmac-drbg@^1.0.0: |
2186 | version "1.0.1" | 2966 | version "1.0.1" |
2187 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" | 2967 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" |
2968 | integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= | ||
2188 | dependencies: | 2969 | dependencies: |
2189 | hash.js "^1.0.3" | 2970 | hash.js "^1.0.3" |
2190 | minimalistic-assert "^1.0.0" | 2971 | minimalistic-assert "^1.0.0" |
2191 | minimalistic-crypto-utils "^1.0.1" | 2972 | minimalistic-crypto-utils "^1.0.1" |
2192 | 2973 | ||
2193 | hoek@2.x.x: | ||
2194 | version "2.16.3" | ||
2195 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" | ||
2196 | |||
2197 | home-or-tmp@^2.0.0: | 2974 | home-or-tmp@^2.0.0: |
2198 | version "2.0.0" | 2975 | version "2.0.0" |
2199 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" | 2976 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" |
2977 | integrity sha1-42w/LSyufXRqhX440Y1fMqeILbg= | ||
2200 | dependencies: | 2978 | dependencies: |
2201 | os-homedir "^1.0.0" | 2979 | os-homedir "^1.0.0" |
2202 | os-tmpdir "^1.0.1" | 2980 | os-tmpdir "^1.0.1" |
2203 | 2981 | ||
2204 | hosted-git-info@^2.1.4: | 2982 | hosted-git-info@^2.1.4: |
2205 | version "2.4.2" | 2983 | version "2.7.1" |
2206 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" | 2984 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" |
2985 | integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w== | ||
2207 | 2986 | ||
2208 | hpack.js@^2.1.6: | 2987 | hpack.js@^2.1.6: |
2209 | version "2.1.6" | 2988 | version "2.1.6" |
2210 | resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" | 2989 | resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" |
2990 | integrity sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI= | ||
2211 | dependencies: | 2991 | dependencies: |
2212 | inherits "^2.0.1" | 2992 | inherits "^2.0.1" |
2213 | obuf "^1.0.0" | 2993 | obuf "^1.0.0" |
@@ -2215,33 +2995,44 @@ hpack.js@^2.1.6: | |||
2215 | wbuf "^1.1.0" | 2995 | wbuf "^1.1.0" |
2216 | 2996 | ||
2217 | html-comment-regex@^1.1.0: | 2997 | html-comment-regex@^1.1.0: |
2218 | version "1.1.1" | 2998 | version "1.1.2" |
2219 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" | 2999 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" |
3000 | integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== | ||
2220 | 3001 | ||
2221 | html-entities@^1.2.0: | 3002 | html-entities@^1.2.0: |
2222 | version "1.2.1" | 3003 | version "1.2.1" |
2223 | resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f" | 3004 | resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f" |
3005 | integrity sha1-DfKTUfByEWNRXfueVUPl9u7VFi8= | ||
2224 | 3006 | ||
2225 | html-tags@^1.1.1: | 3007 | html-tags@^2.0.0: |
2226 | version "1.1.1" | 3008 | version "2.0.0" |
2227 | resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-1.1.1.tgz#869f43859f12d9bdc3892419e494a628aa1b204e" | 3009 | resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-2.0.0.tgz#10b30a386085f43cede353cc8fa7cb0deeea668b" |
3010 | integrity sha1-ELMKOGCF9Dzt41PMj6fLDe7qZos= | ||
2228 | 3011 | ||
2229 | http-deceiver@^1.2.7: | 3012 | http-deceiver@^1.2.7: |
2230 | version "1.2.7" | 3013 | version "1.2.7" |
2231 | resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" | 3014 | resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" |
3015 | integrity sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc= | ||
2232 | 3016 | ||
2233 | http-errors@~1.6.1: | 3017 | http-errors@1.6.3, http-errors@~1.6.2, http-errors@~1.6.3: |
2234 | version "1.6.1" | 3018 | version "1.6.3" |
2235 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.1.tgz#5f8b8ed98aca545656bf572997387f904a722257" | 3019 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" |
3020 | integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= | ||
2236 | dependencies: | 3021 | dependencies: |
2237 | depd "1.1.0" | 3022 | depd "~1.1.2" |
2238 | inherits "2.0.3" | 3023 | inherits "2.0.3" |
2239 | setprototypeof "1.0.3" | 3024 | setprototypeof "1.1.0" |
2240 | statuses ">= 1.3.1 < 2" | 3025 | statuses ">= 1.4.0 < 2" |
3026 | |||
3027 | http-parser-js@>=0.4.0: | ||
3028 | version "0.5.0" | ||
3029 | resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.0.tgz#d65edbede84349d0dc30320815a15d39cc3cbbd8" | ||
3030 | integrity sha512-cZdEF7r4gfRIq7ezX9J0T+kQmJNOub71dWbgAXVHDct80TKP4MCETtZQ31xyv38UwgzkWPYF/Xc0ge55dW9Z9w== | ||
2241 | 3031 | ||
2242 | http-proxy-middleware@~0.17.4: | 3032 | http-proxy-middleware@~0.17.4: |
2243 | version "0.17.4" | 3033 | version "0.17.4" |
2244 | resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz#642e8848851d66f09d4f124912846dbaeb41b833" | 3034 | resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz#642e8848851d66f09d4f124912846dbaeb41b833" |
3035 | integrity sha1-ZC6ISIUdZvCdTxJJEoRtuutBuDM= | ||
2245 | dependencies: | 3036 | dependencies: |
2246 | http-proxy "^1.16.2" | 3037 | http-proxy "^1.16.2" |
2247 | is-glob "^3.1.0" | 3038 | is-glob "^3.1.0" |
@@ -2249,97 +3040,155 @@ http-proxy-middleware@~0.17.4: | |||
2249 | micromatch "^2.3.11" | 3040 | micromatch "^2.3.11" |
2250 | 3041 | ||
2251 | http-proxy@^1.16.2: | 3042 | http-proxy@^1.16.2: |
2252 | version "1.16.2" | 3043 | version "1.17.0" |
2253 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" | 3044 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.17.0.tgz#7ad38494658f84605e2f6db4436df410f4e5be9a" |
3045 | integrity sha512-Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g== | ||
2254 | dependencies: | 3046 | dependencies: |
2255 | eventemitter3 "1.x.x" | 3047 | eventemitter3 "^3.0.0" |
2256 | requires-port "1.x.x" | 3048 | follow-redirects "^1.0.0" |
3049 | requires-port "^1.0.0" | ||
2257 | 3050 | ||
2258 | http-signature@~1.1.0: | 3051 | http-signature@~1.2.0: |
2259 | version "1.1.1" | 3052 | version "1.2.0" |
2260 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" | 3053 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" |
3054 | integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= | ||
2261 | dependencies: | 3055 | dependencies: |
2262 | assert-plus "^0.2.0" | 3056 | assert-plus "^1.0.0" |
2263 | jsprim "^1.2.2" | 3057 | jsprim "^1.2.2" |
2264 | sshpk "^1.7.0" | 3058 | sshpk "^1.7.0" |
2265 | 3059 | ||
2266 | https-browserify@0.0.1: | 3060 | https-browserify@^1.0.0: |
2267 | version "0.0.1" | 3061 | version "1.0.0" |
2268 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" | 3062 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" |
3063 | integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= | ||
2269 | 3064 | ||
2270 | icomoon-free-npm@^0.0.0: | 3065 | icomoon-free-npm@^0.0.0: |
2271 | version "0.0.0" | 3066 | version "0.0.0" |
2272 | resolved "https://registry.yarnpkg.com/icomoon-free-npm/-/icomoon-free-npm-0.0.0.tgz#991417a58727e4053d89edd6717370cbe4e19206" | 3067 | resolved "https://registry.yarnpkg.com/icomoon-free-npm/-/icomoon-free-npm-0.0.0.tgz#991417a58727e4053d89edd6717370cbe4e19206" |
3068 | integrity sha1-mRQXpYcn5AU9ie3WcXNwy+ThkgY= | ||
2273 | 3069 | ||
2274 | iconv-lite@^0.4.17: | 3070 | iconv-lite@0.4.23: |
2275 | version "0.4.18" | 3071 | version "0.4.23" |
2276 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2" | 3072 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" |
3073 | integrity sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA== | ||
3074 | dependencies: | ||
3075 | safer-buffer ">= 2.1.2 < 3" | ||
3076 | |||
3077 | iconv-lite@^0.4.17, iconv-lite@^0.4.4: | ||
3078 | version "0.4.24" | ||
3079 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" | ||
3080 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== | ||
3081 | dependencies: | ||
3082 | safer-buffer ">= 2.1.2 < 3" | ||
2277 | 3083 | ||
2278 | icss-replace-symbols@^1.1.0: | 3084 | icss-replace-symbols@^1.1.0: |
2279 | version "1.1.0" | 3085 | version "1.1.0" |
2280 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" | 3086 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" |
3087 | integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= | ||
2281 | 3088 | ||
2282 | icss-utils@^2.1.0: | 3089 | icss-utils@^2.1.0: |
2283 | version "2.1.0" | 3090 | version "2.1.0" |
2284 | resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962" | 3091 | resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962" |
3092 | integrity sha1-g/Cg7DeL8yRheLbCrZE28TWxyWI= | ||
2285 | dependencies: | 3093 | dependencies: |
2286 | postcss "^6.0.1" | 3094 | postcss "^6.0.1" |
2287 | 3095 | ||
2288 | ieee754@^1.1.4: | 3096 | ieee754@^1.1.4: |
2289 | version "1.1.8" | 3097 | version "1.1.12" |
2290 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" | 3098 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.12.tgz#50bf24e5b9c8bb98af4964c941cdb0918da7b60b" |
3099 | integrity sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA== | ||
3100 | |||
3101 | ignore-walk@^3.0.1: | ||
3102 | version "3.0.1" | ||
3103 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" | ||
3104 | integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ== | ||
3105 | dependencies: | ||
3106 | minimatch "^3.0.4" | ||
2291 | 3107 | ||
2292 | ignore@^3.2.0, ignore@^3.3.3: | 3108 | ignore@^3.2.0, ignore@^3.3.3: |
2293 | version "3.3.3" | 3109 | version "3.3.10" |
2294 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" | 3110 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" |
3111 | integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug== | ||
3112 | |||
3113 | import-cwd@^2.0.0: | ||
3114 | version "2.1.0" | ||
3115 | resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9" | ||
3116 | integrity sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk= | ||
3117 | dependencies: | ||
3118 | import-from "^2.1.0" | ||
3119 | |||
3120 | import-from@^2.1.0: | ||
3121 | version "2.1.0" | ||
3122 | resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1" | ||
3123 | integrity sha1-M1238qev/VOqpHHUuAId7ja387E= | ||
3124 | dependencies: | ||
3125 | resolve-from "^3.0.0" | ||
3126 | |||
3127 | import-local@^1.0.0: | ||
3128 | version "1.0.0" | ||
3129 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc" | ||
3130 | integrity sha512-vAaZHieK9qjGo58agRBg+bhHX3hoTZU/Oa3GESWLz7t1U62fk63aHuDJJEteXoDeTCcPmUT+z38gkHPZkkmpmQ== | ||
3131 | dependencies: | ||
3132 | pkg-dir "^2.0.0" | ||
3133 | resolve-cwd "^2.0.0" | ||
2295 | 3134 | ||
2296 | imurmurhash@^0.1.4: | 3135 | imurmurhash@^0.1.4: |
2297 | version "0.1.4" | 3136 | version "0.1.4" |
2298 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" | 3137 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" |
3138 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= | ||
2299 | 3139 | ||
2300 | in-publish@^2.0.0: | 3140 | in-publish@^2.0.0: |
2301 | version "2.0.0" | 3141 | version "2.0.0" |
2302 | resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51" | 3142 | resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51" |
3143 | integrity sha1-4g/146KvwmkDILbcVSaCqcf631E= | ||
2303 | 3144 | ||
2304 | indent-string@^2.1.0: | 3145 | indent-string@^2.1.0: |
2305 | version "2.1.0" | 3146 | version "2.1.0" |
2306 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" | 3147 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" |
3148 | integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA= | ||
2307 | dependencies: | 3149 | dependencies: |
2308 | repeating "^2.0.0" | 3150 | repeating "^2.0.0" |
2309 | 3151 | ||
2310 | indexes-of@^1.0.1: | 3152 | indexes-of@^1.0.1: |
2311 | version "1.0.1" | 3153 | version "1.0.1" |
2312 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" | 3154 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" |
3155 | integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= | ||
2313 | 3156 | ||
2314 | indexof@0.0.1: | 3157 | indexof@0.0.1: |
2315 | version "0.0.1" | 3158 | version "0.0.1" |
2316 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" | 3159 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" |
3160 | integrity sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10= | ||
2317 | 3161 | ||
2318 | inflight@^1.0.4: | 3162 | inflight@^1.0.4: |
2319 | version "1.0.6" | 3163 | version "1.0.6" |
2320 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" | 3164 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" |
3165 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= | ||
2321 | dependencies: | 3166 | dependencies: |
2322 | once "^1.3.0" | 3167 | once "^1.3.0" |
2323 | wrappy "1" | 3168 | wrappy "1" |
2324 | 3169 | ||
2325 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: | 3170 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: |
2326 | version "2.0.3" | 3171 | version "2.0.3" |
2327 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" | 3172 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" |
3173 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= | ||
2328 | 3174 | ||
2329 | inherits@2.0.1: | 3175 | inherits@2.0.1: |
2330 | version "2.0.1" | 3176 | version "2.0.1" |
2331 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" | 3177 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" |
3178 | integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= | ||
2332 | 3179 | ||
2333 | ini@~1.3.0: | 3180 | ini@~1.3.0: |
2334 | version "1.3.4" | 3181 | version "1.3.5" |
2335 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" | 3182 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" |
3183 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== | ||
2336 | 3184 | ||
2337 | inquirer@^3.0.6: | 3185 | inquirer@^3.0.6: |
2338 | version "3.1.0" | 3186 | version "3.3.0" |
2339 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.1.0.tgz#e05400d48b94937c2d3caa7038663ba9189aab01" | 3187 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" |
3188 | integrity sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ== | ||
2340 | dependencies: | 3189 | dependencies: |
2341 | ansi-escapes "^2.0.0" | 3190 | ansi-escapes "^3.0.0" |
2342 | chalk "^1.0.0" | 3191 | chalk "^2.0.0" |
2343 | cli-cursor "^2.1.0" | 3192 | cli-cursor "^2.1.0" |
2344 | cli-width "^2.0.0" | 3193 | cli-width "^2.0.0" |
2345 | external-editor "^2.0.4" | 3194 | external-editor "^2.0.4" |
@@ -2349,269 +3198,423 @@ inquirer@^3.0.6: | |||
2349 | run-async "^2.2.0" | 3198 | run-async "^2.2.0" |
2350 | rx-lite "^4.0.8" | 3199 | rx-lite "^4.0.8" |
2351 | rx-lite-aggregates "^4.0.8" | 3200 | rx-lite-aggregates "^4.0.8" |
2352 | string-width "^2.0.0" | 3201 | string-width "^2.1.0" |
2353 | strip-ansi "^3.0.0" | 3202 | strip-ansi "^4.0.0" |
2354 | through "^2.3.6" | 3203 | through "^2.3.6" |
2355 | 3204 | ||
2356 | insert-css@^0.2.0: | 3205 | insert-css@^0.2.0: |
2357 | version "0.2.0" | 3206 | version "0.2.0" |
2358 | resolved "https://registry.yarnpkg.com/insert-css/-/insert-css-0.2.0.tgz#d15789971662d9899c28977fb6220d5381d2451a" | 3207 | resolved "https://registry.yarnpkg.com/insert-css/-/insert-css-0.2.0.tgz#d15789971662d9899c28977fb6220d5381d2451a" |
3208 | integrity sha1-0VeJlxZi2YmcKJd/tiINU4HSRRo= | ||
3209 | |||
3210 | internal-ip@1.2.0: | ||
3211 | version "1.2.0" | ||
3212 | resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-1.2.0.tgz#ae9fbf93b984878785d50a8de1b356956058cf5c" | ||
3213 | integrity sha1-rp+/k7mEh4eF1QqN4bNWlWBYz1w= | ||
3214 | dependencies: | ||
3215 | meow "^3.3.0" | ||
2359 | 3216 | ||
2360 | interpret@^1.0.0: | 3217 | interpret@^1.0.0: |
2361 | version "1.0.3" | 3218 | version "1.1.0" |
2362 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" | 3219 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" |
3220 | integrity sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ= | ||
2363 | 3221 | ||
2364 | invariant@^2.2.0, invariant@^2.2.2: | 3222 | invariant@^2.2.2: |
2365 | version "2.2.2" | 3223 | version "2.2.4" |
2366 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" | 3224 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" |
3225 | integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== | ||
2367 | dependencies: | 3226 | dependencies: |
2368 | loose-envify "^1.0.0" | 3227 | loose-envify "^1.0.0" |
2369 | 3228 | ||
2370 | invert-kv@^1.0.0: | 3229 | invert-kv@^1.0.0: |
2371 | version "1.0.0" | 3230 | version "1.0.0" |
2372 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" | 3231 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" |
3232 | integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= | ||
2373 | 3233 | ||
2374 | ipaddr.js@1.3.0: | 3234 | ip@^1.1.0, ip@^1.1.5: |
2375 | version "1.3.0" | 3235 | version "1.1.5" |
2376 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.3.0.tgz#1e03a52fdad83a8bbb2b25cbf4998b4cffcd3dec" | 3236 | resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" |
3237 | integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= | ||
3238 | |||
3239 | ipaddr.js@1.8.0: | ||
3240 | version "1.8.0" | ||
3241 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.8.0.tgz#eaa33d6ddd7ace8f7f6fe0c9ca0440e706738b1e" | ||
3242 | integrity sha1-6qM9bd16zo9/b+DJygRA5wZzix4= | ||
2377 | 3243 | ||
2378 | irregular-plurals@^1.0.0: | 3244 | irregular-plurals@^1.0.0: |
2379 | version "1.2.0" | 3245 | version "1.4.0" |
2380 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac" | 3246 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.4.0.tgz#2ca9b033651111855412f16be5d77c62a458a766" |
3247 | integrity sha1-LKmwM2UREYVUEvFr5dd8YqRYp2Y= | ||
2381 | 3248 | ||
2382 | is-absolute-url@^2.0.0: | 3249 | is-absolute-url@^2.0.0: |
2383 | version "2.1.0" | 3250 | version "2.1.0" |
2384 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" | 3251 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" |
3252 | integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY= | ||
3253 | |||
3254 | is-accessor-descriptor@^0.1.6: | ||
3255 | version "0.1.6" | ||
3256 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" | ||
3257 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= | ||
3258 | dependencies: | ||
3259 | kind-of "^3.0.2" | ||
3260 | |||
3261 | is-accessor-descriptor@^1.0.0: | ||
3262 | version "1.0.0" | ||
3263 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" | ||
3264 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== | ||
3265 | dependencies: | ||
3266 | kind-of "^6.0.0" | ||
2385 | 3267 | ||
2386 | is-arrayish@^0.2.1: | 3268 | is-arrayish@^0.2.1: |
2387 | version "0.2.1" | 3269 | version "0.2.1" |
2388 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" | 3270 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" |
3271 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= | ||
2389 | 3272 | ||
2390 | is-binary-path@^1.0.0: | 3273 | is-binary-path@^1.0.0: |
2391 | version "1.0.1" | 3274 | version "1.0.1" |
2392 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" | 3275 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" |
3276 | integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= | ||
2393 | dependencies: | 3277 | dependencies: |
2394 | binary-extensions "^1.0.0" | 3278 | binary-extensions "^1.0.0" |
2395 | 3279 | ||
2396 | is-buffer@^1.0.2, is-buffer@^1.1.5: | 3280 | is-buffer@^1.1.5: |
2397 | version "1.1.5" | 3281 | version "1.1.6" |
2398 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" | 3282 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" |
3283 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== | ||
2399 | 3284 | ||
2400 | is-builtin-module@^1.0.0: | 3285 | is-builtin-module@^1.0.0: |
2401 | version "1.0.0" | 3286 | version "1.0.0" |
2402 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" | 3287 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" |
3288 | integrity sha1-VAVy0096wxGfj3bDDLwbHgN6/74= | ||
2403 | dependencies: | 3289 | dependencies: |
2404 | builtin-modules "^1.0.0" | 3290 | builtin-modules "^1.0.0" |
2405 | 3291 | ||
3292 | is-callable@^1.1.3, is-callable@^1.1.4: | ||
3293 | version "1.1.4" | ||
3294 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" | ||
3295 | integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== | ||
3296 | |||
3297 | is-data-descriptor@^0.1.4: | ||
3298 | version "0.1.4" | ||
3299 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" | ||
3300 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= | ||
3301 | dependencies: | ||
3302 | kind-of "^3.0.2" | ||
3303 | |||
3304 | is-data-descriptor@^1.0.0: | ||
3305 | version "1.0.0" | ||
3306 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" | ||
3307 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== | ||
3308 | dependencies: | ||
3309 | kind-of "^6.0.0" | ||
3310 | |||
3311 | is-date-object@^1.0.1: | ||
3312 | version "1.0.1" | ||
3313 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" | ||
3314 | integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= | ||
3315 | |||
3316 | is-descriptor@^0.1.0: | ||
3317 | version "0.1.6" | ||
3318 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" | ||
3319 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== | ||
3320 | dependencies: | ||
3321 | is-accessor-descriptor "^0.1.6" | ||
3322 | is-data-descriptor "^0.1.4" | ||
3323 | kind-of "^5.0.0" | ||
3324 | |||
3325 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: | ||
3326 | version "1.0.2" | ||
3327 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" | ||
3328 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== | ||
3329 | dependencies: | ||
3330 | is-accessor-descriptor "^1.0.0" | ||
3331 | is-data-descriptor "^1.0.0" | ||
3332 | kind-of "^6.0.2" | ||
3333 | |||
2406 | is-directory@^0.3.1: | 3334 | is-directory@^0.3.1: |
2407 | version "0.3.1" | 3335 | version "0.3.1" |
2408 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" | 3336 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" |
3337 | integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= | ||
2409 | 3338 | ||
2410 | is-dotfile@^1.0.0: | 3339 | is-dotfile@^1.0.0: |
2411 | version "1.0.3" | 3340 | version "1.0.3" |
2412 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" | 3341 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" |
3342 | integrity sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE= | ||
2413 | 3343 | ||
2414 | is-equal-shallow@^0.1.3: | 3344 | is-equal-shallow@^0.1.3: |
2415 | version "0.1.3" | 3345 | version "0.1.3" |
2416 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" | 3346 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" |
3347 | integrity sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ= | ||
2417 | dependencies: | 3348 | dependencies: |
2418 | is-primitive "^2.0.0" | 3349 | is-primitive "^2.0.0" |
2419 | 3350 | ||
2420 | is-extendable@^0.1.1: | 3351 | is-extendable@^0.1.0, is-extendable@^0.1.1: |
2421 | version "0.1.1" | 3352 | version "0.1.1" |
2422 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" | 3353 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" |
3354 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= | ||
3355 | |||
3356 | is-extendable@^1.0.1: | ||
3357 | version "1.0.1" | ||
3358 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" | ||
3359 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== | ||
3360 | dependencies: | ||
3361 | is-plain-object "^2.0.4" | ||
2423 | 3362 | ||
2424 | is-extglob@^1.0.0: | 3363 | is-extglob@^1.0.0: |
2425 | version "1.0.0" | 3364 | version "1.0.0" |
2426 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" | 3365 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" |
3366 | integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA= | ||
2427 | 3367 | ||
2428 | is-extglob@^2.1.0: | 3368 | is-extglob@^2.1.0, is-extglob@^2.1.1: |
2429 | version "2.1.1" | 3369 | version "2.1.1" |
2430 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" | 3370 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" |
3371 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= | ||
2431 | 3372 | ||
2432 | is-finite@^1.0.0: | 3373 | is-finite@^1.0.0: |
2433 | version "1.0.2" | 3374 | version "1.0.2" |
2434 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" | 3375 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" |
3376 | integrity sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko= | ||
2435 | dependencies: | 3377 | dependencies: |
2436 | number-is-nan "^1.0.0" | 3378 | number-is-nan "^1.0.0" |
2437 | 3379 | ||
2438 | is-fullwidth-code-point@^1.0.0: | 3380 | is-fullwidth-code-point@^1.0.0: |
2439 | version "1.0.0" | 3381 | version "1.0.0" |
2440 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" | 3382 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" |
3383 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= | ||
2441 | dependencies: | 3384 | dependencies: |
2442 | number-is-nan "^1.0.0" | 3385 | number-is-nan "^1.0.0" |
2443 | 3386 | ||
2444 | is-fullwidth-code-point@^2.0.0: | 3387 | is-fullwidth-code-point@^2.0.0: |
2445 | version "2.0.0" | 3388 | version "2.0.0" |
2446 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" | 3389 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" |
3390 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= | ||
2447 | 3391 | ||
2448 | is-glob@^2.0.0, is-glob@^2.0.1: | 3392 | is-glob@^2.0.0, is-glob@^2.0.1: |
2449 | version "2.0.1" | 3393 | version "2.0.1" |
2450 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" | 3394 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" |
3395 | integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM= | ||
2451 | dependencies: | 3396 | dependencies: |
2452 | is-extglob "^1.0.0" | 3397 | is-extglob "^1.0.0" |
2453 | 3398 | ||
2454 | is-glob@^3.1.0: | 3399 | is-glob@^3.1.0: |
2455 | version "3.1.0" | 3400 | version "3.1.0" |
2456 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" | 3401 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" |
3402 | integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= | ||
2457 | dependencies: | 3403 | dependencies: |
2458 | is-extglob "^2.1.0" | 3404 | is-extglob "^2.1.0" |
2459 | 3405 | ||
2460 | is-my-json-valid@^2.16.0: | 3406 | is-glob@^4.0.0: |
2461 | version "2.16.0" | 3407 | version "4.0.0" |
2462 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" | 3408 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" |
3409 | integrity sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A= | ||
2463 | dependencies: | 3410 | dependencies: |
2464 | generate-function "^2.0.0" | 3411 | is-extglob "^2.1.1" |
2465 | generate-object-property "^1.1.0" | ||
2466 | jsonpointer "^4.0.0" | ||
2467 | xtend "^4.0.0" | ||
2468 | 3412 | ||
2469 | is-number@^2.1.0: | 3413 | is-number@^2.1.0: |
2470 | version "2.1.0" | 3414 | version "2.1.0" |
2471 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" | 3415 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" |
3416 | integrity sha1-Afy7s5NGOlSPL0ZszhbezknbkI8= | ||
2472 | dependencies: | 3417 | dependencies: |
2473 | kind-of "^3.0.2" | 3418 | kind-of "^3.0.2" |
2474 | 3419 | ||
2475 | is-number@^3.0.0: | 3420 | is-number@^3.0.0: |
2476 | version "3.0.0" | 3421 | version "3.0.0" |
2477 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" | 3422 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" |
3423 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= | ||
2478 | dependencies: | 3424 | dependencies: |
2479 | kind-of "^3.0.2" | 3425 | kind-of "^3.0.2" |
2480 | 3426 | ||
3427 | is-number@^4.0.0: | ||
3428 | version "4.0.0" | ||
3429 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" | ||
3430 | integrity sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ== | ||
3431 | |||
2481 | is-path-cwd@^1.0.0: | 3432 | is-path-cwd@^1.0.0: |
2482 | version "1.0.0" | 3433 | version "1.0.0" |
2483 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" | 3434 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" |
3435 | integrity sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0= | ||
2484 | 3436 | ||
2485 | is-path-in-cwd@^1.0.0: | 3437 | is-path-in-cwd@^1.0.0: |
2486 | version "1.0.0" | 3438 | version "1.0.1" |
2487 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" | 3439 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" |
3440 | integrity sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ== | ||
2488 | dependencies: | 3441 | dependencies: |
2489 | is-path-inside "^1.0.0" | 3442 | is-path-inside "^1.0.0" |
2490 | 3443 | ||
2491 | is-path-inside@^1.0.0: | 3444 | is-path-inside@^1.0.0: |
2492 | version "1.0.0" | 3445 | version "1.0.1" |
2493 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" | 3446 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" |
3447 | integrity sha1-jvW33lBDej/cprToZe96pVy0gDY= | ||
2494 | dependencies: | 3448 | dependencies: |
2495 | path-is-inside "^1.0.1" | 3449 | path-is-inside "^1.0.1" |
2496 | 3450 | ||
2497 | is-plain-obj@^1.0.0: | 3451 | is-plain-obj@^1.0.0: |
2498 | version "1.1.0" | 3452 | version "1.1.0" |
2499 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" | 3453 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" |
3454 | integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= | ||
2500 | 3455 | ||
2501 | is-plain-object@^2.0.1: | 3456 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: |
2502 | version "2.0.3" | 3457 | version "2.0.4" |
2503 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.3.tgz#c15bf3e4b66b62d72efaf2925848663ecbc619b6" | 3458 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" |
3459 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== | ||
2504 | dependencies: | 3460 | dependencies: |
2505 | isobject "^3.0.0" | 3461 | isobject "^3.0.1" |
2506 | 3462 | ||
2507 | is-posix-bracket@^0.1.0: | 3463 | is-posix-bracket@^0.1.0: |
2508 | version "0.1.1" | 3464 | version "0.1.1" |
2509 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" | 3465 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" |
3466 | integrity sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q= | ||
2510 | 3467 | ||
2511 | is-primitive@^2.0.0: | 3468 | is-primitive@^2.0.0: |
2512 | version "2.0.0" | 3469 | version "2.0.0" |
2513 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" | 3470 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" |
3471 | integrity sha1-IHurkWOEmcB7Kt8kCkGochADRXU= | ||
2514 | 3472 | ||
2515 | is-promise@^2.1.0: | 3473 | is-promise@^2.1.0: |
2516 | version "2.1.0" | 3474 | version "2.1.0" |
2517 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" | 3475 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" |
3476 | integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= | ||
2518 | 3477 | ||
2519 | is-property@^1.0.0: | 3478 | is-regex@^1.0.4: |
2520 | version "1.0.2" | 3479 | version "1.0.4" |
2521 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" | 3480 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" |
3481 | integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= | ||
3482 | dependencies: | ||
3483 | has "^1.0.1" | ||
2522 | 3484 | ||
2523 | is-regexp@^1.0.0: | 3485 | is-regexp@^1.0.0: |
2524 | version "1.0.0" | 3486 | version "1.0.0" |
2525 | resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" | 3487 | resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" |
3488 | integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk= | ||
2526 | 3489 | ||
2527 | is-resolvable@^1.0.0: | 3490 | is-resolvable@^1.0.0: |
2528 | version "1.0.0" | 3491 | version "1.1.0" |
2529 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" | 3492 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" |
2530 | dependencies: | 3493 | integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== |
2531 | tryit "^1.0.1" | ||
2532 | 3494 | ||
2533 | is-supported-regexp-flag@^1.0.0: | 3495 | is-supported-regexp-flag@^1.0.0: |
2534 | version "1.0.0" | 3496 | version "1.0.1" |
2535 | resolved "https://registry.yarnpkg.com/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.0.tgz#8b520c85fae7a253382d4b02652e045576e13bb8" | 3497 | resolved "https://registry.yarnpkg.com/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.1.tgz#21ee16518d2c1dd3edd3e9a0d57e50207ac364ca" |
3498 | integrity sha512-3vcJecUUrpgCqc/ca0aWeNu64UGgxcvO60K/Fkr1N6RSvfGCTU60UKN68JDmKokgba0rFFJs12EnzOQa14ubKQ== | ||
2536 | 3499 | ||
2537 | is-svg@^2.0.0: | 3500 | is-svg@^2.0.0: |
2538 | version "2.1.0" | 3501 | version "2.1.0" |
2539 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" | 3502 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" |
3503 | integrity sha1-z2EJDaDZ77yrhyLeum8DIgjbsOk= | ||
2540 | dependencies: | 3504 | dependencies: |
2541 | html-comment-regex "^1.1.0" | 3505 | html-comment-regex "^1.1.0" |
2542 | 3506 | ||
3507 | is-symbol@^1.0.2: | ||
3508 | version "1.0.2" | ||
3509 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" | ||
3510 | integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== | ||
3511 | dependencies: | ||
3512 | has-symbols "^1.0.0" | ||
3513 | |||
2543 | is-typedarray@~1.0.0: | 3514 | is-typedarray@~1.0.0: |
2544 | version "1.0.0" | 3515 | version "1.0.0" |
2545 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" | 3516 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" |
3517 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= | ||
2546 | 3518 | ||
2547 | is-utf8@^0.2.0: | 3519 | is-utf8@^0.2.0: |
2548 | version "0.2.1" | 3520 | version "0.2.1" |
2549 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" | 3521 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" |
3522 | integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= | ||
3523 | |||
3524 | is-windows@^1.0.2: | ||
3525 | version "1.0.2" | ||
3526 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" | ||
3527 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== | ||
3528 | |||
3529 | is-wsl@^1.1.0: | ||
3530 | version "1.1.0" | ||
3531 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" | ||
3532 | integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= | ||
2550 | 3533 | ||
2551 | isarray@0.0.1: | 3534 | isarray@0.0.1: |
2552 | version "0.0.1" | 3535 | version "0.0.1" |
2553 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" | 3536 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" |
3537 | integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= | ||
2554 | 3538 | ||
2555 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: | 3539 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: |
2556 | version "1.0.0" | 3540 | version "1.0.0" |
2557 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" | 3541 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" |
3542 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= | ||
2558 | 3543 | ||
2559 | isexe@^2.0.0: | 3544 | isexe@^2.0.0: |
2560 | version "2.0.0" | 3545 | version "2.0.0" |
2561 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" | 3546 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" |
3547 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= | ||
2562 | 3548 | ||
2563 | isobject@^2.0.0: | 3549 | isobject@^2.0.0: |
2564 | version "2.1.0" | 3550 | version "2.1.0" |
2565 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" | 3551 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" |
3552 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= | ||
2566 | dependencies: | 3553 | dependencies: |
2567 | isarray "1.0.0" | 3554 | isarray "1.0.0" |
2568 | 3555 | ||
2569 | isobject@^3.0.0: | 3556 | isobject@^3.0.0, isobject@^3.0.1: |
2570 | version "3.0.0" | 3557 | version "3.0.1" |
2571 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.0.tgz#39565217f3661789e8a0a0c080d5f7e6bc46e1a0" | 3558 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" |
3559 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= | ||
2572 | 3560 | ||
2573 | isstream@~0.1.2: | 3561 | isstream@~0.1.2: |
2574 | version "0.1.2" | 3562 | version "0.1.2" |
2575 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" | 3563 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" |
3564 | integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= | ||
2576 | 3565 | ||
2577 | jquery.cookie@^1.4.1: | 3566 | jquery.cookie@^1.4.1: |
2578 | version "1.4.1" | 3567 | version "1.4.1" |
2579 | resolved "https://registry.yarnpkg.com/jquery.cookie/-/jquery.cookie-1.4.1.tgz#d63dce209eab691fe63316db08ca9e47e0f9385b" | 3568 | resolved "https://registry.yarnpkg.com/jquery.cookie/-/jquery.cookie-1.4.1.tgz#d63dce209eab691fe63316db08ca9e47e0f9385b" |
3569 | integrity sha1-1j3OIJ6raR/mMxbbCMqeR+D5OFs= | ||
2580 | 3570 | ||
2581 | jquery@^1.11.3: | 3571 | jquery@^1.11.3: |
2582 | version "1.12.4" | 3572 | version "1.12.4" |
2583 | resolved "https://registry.yarnpkg.com/jquery/-/jquery-1.12.4.tgz#01e1dfba290fe73deba77ceeacb0f9ba2fec9e0c" | 3573 | resolved "https://registry.yarnpkg.com/jquery/-/jquery-1.12.4.tgz#01e1dfba290fe73deba77ceeacb0f9ba2fec9e0c" |
3574 | integrity sha1-AeHfuikP5z3rp3zurLD5ui/sngw= | ||
2584 | 3575 | ||
2585 | jquery@^2.1.4: | 3576 | jquery@^2.1.4: |
2586 | version "2.2.4" | 3577 | version "2.2.4" |
2587 | resolved "https://registry.yarnpkg.com/jquery/-/jquery-2.2.4.tgz#2c89d6889b5eac522a7eea32c14521559c6cbf02" | 3578 | resolved "https://registry.yarnpkg.com/jquery/-/jquery-2.2.4.tgz#2c89d6889b5eac522a7eea32c14521559c6cbf02" |
3579 | integrity sha1-LInWiJterFIqfuoywUUhVZxsvwI= | ||
2588 | 3580 | ||
2589 | jquery@~1.11.0: | 3581 | jquery@~1.11.0: |
2590 | version "1.11.3" | 3582 | version "1.11.3" |
2591 | resolved "https://registry.yarnpkg.com/jquery/-/jquery-1.11.3.tgz#dd8b74278b27102d29df63eae28308a8cfa1b583" | 3583 | resolved "https://registry.yarnpkg.com/jquery/-/jquery-1.11.3.tgz#dd8b74278b27102d29df63eae28308a8cfa1b583" |
3584 | integrity sha1-3Yt0J4snEC0p32Pq4oMIqM+htYM= | ||
2592 | 3585 | ||
2593 | jr-qrcode@^1.0.7: | 3586 | jr-qrcode@^1.0.7: |
2594 | version "1.1.0" | 3587 | version "1.1.4" |
2595 | resolved "https://registry.yarnpkg.com/jr-qrcode/-/jr-qrcode-1.1.0.tgz#fd75a9c9a0b24b770efc1000966581021848128f" | 3588 | resolved "https://registry.yarnpkg.com/jr-qrcode/-/jr-qrcode-1.1.4.tgz#c419bf3ab655f3233360308939d71b13849690be" |
3589 | integrity sha512-041B7axC/tzKRFbCc4g5QCaPzga2IgyBGmUBkWQ+t4CMl83DBzFv9tq9XdJr7uIqe9X6zYZC7Cy5J9ttiBNxrw== | ||
2596 | 3590 | ||
2597 | js-base64@^2.1.8, js-base64@^2.1.9: | 3591 | js-base64@^2.1.8, js-base64@^2.1.9: |
2598 | version "2.1.9" | 3592 | version "2.4.9" |
2599 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" | 3593 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.4.9.tgz#748911fb04f48a60c4771b375cac45a80df11c03" |
3594 | integrity sha512-xcinL3AuDJk7VSzsHgb9DvvIXayBbadtMZ4HFPx8rUszbW1MuNMlwYVC4zzCZ6e1sqZpnNS5ZFYOhXqA39T7LQ== | ||
2600 | 3595 | ||
2601 | js-tokens@^3.0.0: | 3596 | "js-tokens@^3.0.0 || ^4.0.0": |
2602 | version "3.0.1" | 3597 | version "4.0.0" |
2603 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" | 3598 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" |
3599 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== | ||
3600 | |||
3601 | js-tokens@^3.0.2: | ||
3602 | version "3.0.2" | ||
3603 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" | ||
3604 | integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= | ||
2604 | 3605 | ||
2605 | js-yaml@^3.4.3, js-yaml@^3.8.4: | 3606 | js-yaml@^3.4.3, js-yaml@^3.9.0, js-yaml@^3.9.1: |
2606 | version "3.8.4" | 3607 | version "3.12.0" |
2607 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" | 3608 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" |
3609 | integrity sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A== | ||
2608 | dependencies: | 3610 | dependencies: |
2609 | argparse "^1.0.7" | 3611 | argparse "^1.0.7" |
2610 | esprima "^3.1.1" | 3612 | esprima "^4.0.0" |
2611 | 3613 | ||
2612 | js-yaml@~3.7.0: | 3614 | js-yaml@~3.7.0: |
2613 | version "3.7.0" | 3615 | version "3.7.0" |
2614 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" | 3616 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" |
3617 | integrity sha1-XJZ93YN6m/3KXy3oQlOr6KHAO4A= | ||
2615 | dependencies: | 3618 | dependencies: |
2616 | argparse "^1.0.7" | 3619 | argparse "^1.0.7" |
2617 | esprima "^2.6.0" | 3620 | esprima "^2.6.0" |
@@ -2619,54 +3622,81 @@ js-yaml@~3.7.0: | |||
2619 | jsbn@~0.1.0: | 3622 | jsbn@~0.1.0: |
2620 | version "0.1.1" | 3623 | version "0.1.1" |
2621 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" | 3624 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" |
2622 | 3625 | integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= | |
2623 | jschardet@^1.4.2: | ||
2624 | version "1.4.2" | ||
2625 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.4.2.tgz#2aa107f142af4121d145659d44f50830961e699a" | ||
2626 | 3626 | ||
2627 | jsesc@^1.3.0: | 3627 | jsesc@^1.3.0: |
2628 | version "1.3.0" | 3628 | version "1.3.0" |
2629 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" | 3629 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" |
3630 | integrity sha1-RsP+yMGJKxKwgz25vHYiF226s0s= | ||
2630 | 3631 | ||
2631 | jsesc@~0.5.0: | 3632 | jsesc@~0.5.0: |
2632 | version "0.5.0" | 3633 | version "0.5.0" |
2633 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" | 3634 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" |
3635 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= | ||
2634 | 3636 | ||
2635 | json-loader@^0.5.4: | 3637 | json-loader@^0.5.4: |
2636 | version "0.5.4" | 3638 | version "0.5.7" |
2637 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de" | 3639 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" |
3640 | integrity sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w== | ||
3641 | |||
3642 | json-parse-better-errors@^1.0.1: | ||
3643 | version "1.0.2" | ||
3644 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" | ||
3645 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== | ||
3646 | |||
3647 | json-schema-traverse@^0.3.0: | ||
3648 | version "0.3.1" | ||
3649 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" | ||
3650 | integrity sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A= | ||
3651 | |||
3652 | json-schema-traverse@^0.4.1: | ||
3653 | version "0.4.1" | ||
3654 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" | ||
3655 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== | ||
2638 | 3656 | ||
2639 | json-schema@0.2.3: | 3657 | json-schema@0.2.3: |
2640 | version "0.2.3" | 3658 | version "0.2.3" |
2641 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" | 3659 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" |
3660 | integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= | ||
3661 | |||
3662 | json-stable-stringify-without-jsonify@^1.0.1: | ||
3663 | version "1.0.1" | ||
3664 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" | ||
3665 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= | ||
2642 | 3666 | ||
2643 | json-stable-stringify@^1.0.1: | 3667 | json-stable-stringify@^1.0.1: |
2644 | version "1.0.1" | 3668 | version "1.0.1" |
2645 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" | 3669 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" |
3670 | integrity sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8= | ||
2646 | dependencies: | 3671 | dependencies: |
2647 | jsonify "~0.0.0" | 3672 | jsonify "~0.0.0" |
2648 | 3673 | ||
2649 | json-stringify-safe@~5.0.1: | 3674 | json-stringify-safe@~5.0.1: |
2650 | version "5.0.1" | 3675 | version "5.0.1" |
2651 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" | 3676 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" |
3677 | integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= | ||
2652 | 3678 | ||
2653 | json3@^3.3.2: | 3679 | json3@^3.3.2: |
2654 | version "3.3.2" | 3680 | version "3.3.2" |
2655 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" | 3681 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" |
3682 | integrity sha1-PAQ0dD35Pi9cQq7nsZvLSDV19OE= | ||
2656 | 3683 | ||
2657 | json5@^0.5.0, json5@^0.5.1: | 3684 | json5@^0.5.0, json5@^0.5.1: |
2658 | version "0.5.1" | 3685 | version "0.5.1" |
2659 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" | 3686 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" |
3687 | integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE= | ||
2660 | 3688 | ||
2661 | jsonfile@^2.1.0: | 3689 | jsonfile@^2.1.0: |
2662 | version "2.4.0" | 3690 | version "2.4.0" |
2663 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" | 3691 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" |
3692 | integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug= | ||
2664 | optionalDependencies: | 3693 | optionalDependencies: |
2665 | graceful-fs "^4.1.6" | 3694 | graceful-fs "^4.1.6" |
2666 | 3695 | ||
2667 | jsonfilter@^1.1.2: | 3696 | jsonfilter@^1.1.2: |
2668 | version "1.1.2" | 3697 | version "1.1.2" |
2669 | resolved "https://registry.yarnpkg.com/jsonfilter/-/jsonfilter-1.1.2.tgz#21ef7cedc75193813c75932e96a98be205ba5a11" | 3698 | resolved "https://registry.yarnpkg.com/jsonfilter/-/jsonfilter-1.1.2.tgz#21ef7cedc75193813c75932e96a98be205ba5a11" |
3699 | integrity sha1-Ie987cdRk4E8dZMulqmL4gW6WhE= | ||
2670 | dependencies: | 3700 | dependencies: |
2671 | JSONStream "^0.8.4" | 3701 | JSONStream "^0.8.4" |
2672 | minimist "^1.1.0" | 3702 | minimist "^1.1.0" |
@@ -2676,73 +3706,85 @@ jsonfilter@^1.1.2: | |||
2676 | jsonify@~0.0.0: | 3706 | jsonify@~0.0.0: |
2677 | version "0.0.0" | 3707 | version "0.0.0" |
2678 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" | 3708 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" |
3709 | integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM= | ||
2679 | 3710 | ||
2680 | jsonparse@0.0.5: | 3711 | jsonparse@0.0.5: |
2681 | version "0.0.5" | 3712 | version "0.0.5" |
2682 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-0.0.5.tgz#330542ad3f0a654665b778f3eb2d9a9fa507ac64" | 3713 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-0.0.5.tgz#330542ad3f0a654665b778f3eb2d9a9fa507ac64" |
2683 | 3714 | integrity sha1-MwVCrT8KZUZlt3jz6y2an6UHrGQ= | |
2684 | jsonpointer@^4.0.0: | ||
2685 | version "4.0.1" | ||
2686 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" | ||
2687 | 3715 | ||
2688 | jsprim@^1.2.2: | 3716 | jsprim@^1.2.2: |
2689 | version "1.4.0" | 3717 | version "1.4.1" |
2690 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" | 3718 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" |
3719 | integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= | ||
2691 | dependencies: | 3720 | dependencies: |
2692 | assert-plus "1.0.0" | 3721 | assert-plus "1.0.0" |
2693 | extsprintf "1.0.2" | 3722 | extsprintf "1.3.0" |
2694 | json-schema "0.2.3" | 3723 | json-schema "0.2.3" |
2695 | verror "1.3.6" | 3724 | verror "1.10.0" |
2696 | 3725 | ||
2697 | kind-of@^2.0.1: | 3726 | killable@^1.0.0: |
2698 | version "2.0.1" | 3727 | version "1.0.1" |
2699 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-2.0.1.tgz#018ec7a4ce7e3a86cb9141be519d24c8faa981b5" | 3728 | resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.1.tgz#4c8ce441187a061c7474fb87ca08e2a638194892" |
2700 | dependencies: | 3729 | integrity sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg== |
2701 | is-buffer "^1.0.2" | ||
2702 | 3730 | ||
2703 | kind-of@^3.0.2: | 3731 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: |
2704 | version "3.2.2" | 3732 | version "3.2.2" |
2705 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" | 3733 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" |
3734 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= | ||
2706 | dependencies: | 3735 | dependencies: |
2707 | is-buffer "^1.1.5" | 3736 | is-buffer "^1.1.5" |
2708 | 3737 | ||
2709 | kind-of@^4.0.0: | 3738 | kind-of@^4.0.0: |
2710 | version "4.0.0" | 3739 | version "4.0.0" |
2711 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" | 3740 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" |
3741 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= | ||
2712 | dependencies: | 3742 | dependencies: |
2713 | is-buffer "^1.1.5" | 3743 | is-buffer "^1.1.5" |
2714 | 3744 | ||
3745 | kind-of@^5.0.0: | ||
3746 | version "5.1.0" | ||
3747 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" | ||
3748 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== | ||
3749 | |||
3750 | kind-of@^6.0.0, kind-of@^6.0.2: | ||
3751 | version "6.0.2" | ||
3752 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" | ||
3753 | integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== | ||
3754 | |||
2715 | klaw@^1.0.0: | 3755 | klaw@^1.0.0: |
2716 | version "1.3.1" | 3756 | version "1.3.1" |
2717 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" | 3757 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" |
3758 | integrity sha1-QIhDO0azsbolnXh4XY6W9zugJDk= | ||
2718 | optionalDependencies: | 3759 | optionalDependencies: |
2719 | graceful-fs "^4.1.9" | 3760 | graceful-fs "^4.1.9" |
2720 | 3761 | ||
2721 | known-css-properties@^0.2.0: | 3762 | known-css-properties@^0.2.0: |
2722 | version "0.2.0" | 3763 | version "0.2.0" |
2723 | resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.2.0.tgz#899c94be368e55b42d7db8d5be7d73a4a4a41454" | 3764 | resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.2.0.tgz#899c94be368e55b42d7db8d5be7d73a4a4a41454" |
3765 | integrity sha512-UTCzU28rRI9wkb8qSGoZa9pgWvxr4LjP2MEhi9XHb/1XMOJy0uTnIxaxzj8My/PORG+kQG6VzAcGvRw66eIOfA== | ||
2724 | 3766 | ||
2725 | lato-font@^3.0.0: | 3767 | lato-font@^3.0.0: |
2726 | version "3.0.0" | 3768 | version "3.0.0" |
2727 | resolved "https://registry.yarnpkg.com/lato-font/-/lato-font-3.0.0.tgz#91b837e2374b668fb7331d44c894d37a2d9f8e11" | 3769 | resolved "https://registry.yarnpkg.com/lato-font/-/lato-font-3.0.0.tgz#91b837e2374b668fb7331d44c894d37a2d9f8e11" |
2728 | 3770 | integrity sha1-kbg34jdLZo+3Mx1EyJTTei2fjhE= | |
2729 | lazy-cache@^0.2.3: | ||
2730 | version "0.2.7" | ||
2731 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65" | ||
2732 | 3771 | ||
2733 | lazy-cache@^1.0.3: | 3772 | lazy-cache@^1.0.3: |
2734 | version "1.0.4" | 3773 | version "1.0.4" |
2735 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" | 3774 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" |
3775 | integrity sha1-odePw6UEdMuAhF07O24dpJpEbo4= | ||
2736 | 3776 | ||
2737 | lcid@^1.0.0: | 3777 | lcid@^1.0.0: |
2738 | version "1.0.0" | 3778 | version "1.0.0" |
2739 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" | 3779 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" |
3780 | integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= | ||
2740 | dependencies: | 3781 | dependencies: |
2741 | invert-kv "^1.0.0" | 3782 | invert-kv "^1.0.0" |
2742 | 3783 | ||
2743 | ldjson-stream@^1.2.1: | 3784 | ldjson-stream@^1.2.1: |
2744 | version "1.2.1" | 3785 | version "1.2.1" |
2745 | resolved "https://registry.yarnpkg.com/ldjson-stream/-/ldjson-stream-1.2.1.tgz#91beceda5ac4ed2b17e649fb777e7abfa0189c2b" | 3786 | resolved "https://registry.yarnpkg.com/ldjson-stream/-/ldjson-stream-1.2.1.tgz#91beceda5ac4ed2b17e649fb777e7abfa0189c2b" |
3787 | integrity sha1-kb7O2lrE7SsX5kn7d356v6AYnCs= | ||
2746 | dependencies: | 3788 | dependencies: |
2747 | split2 "^0.2.1" | 3789 | split2 "^0.2.1" |
2748 | through2 "^0.6.1" | 3790 | through2 "^0.6.1" |
@@ -2750,6 +3792,7 @@ ldjson-stream@^1.2.1: | |||
2750 | levn@^0.3.0, levn@~0.3.0: | 3792 | levn@^0.3.0, levn@~0.3.0: |
2751 | version "0.3.0" | 3793 | version "0.3.0" |
2752 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" | 3794 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" |
3795 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= | ||
2753 | dependencies: | 3796 | dependencies: |
2754 | prelude-ls "~1.1.2" | 3797 | prelude-ls "~1.1.2" |
2755 | type-check "~0.3.2" | 3798 | type-check "~0.3.2" |
@@ -2757,6 +3800,7 @@ levn@^0.3.0, levn@~0.3.0: | |||
2757 | load-json-file@^1.0.0: | 3800 | load-json-file@^1.0.0: |
2758 | version "1.1.0" | 3801 | version "1.1.0" |
2759 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" | 3802 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" |
3803 | integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= | ||
2760 | dependencies: | 3804 | dependencies: |
2761 | graceful-fs "^4.1.2" | 3805 | graceful-fs "^4.1.2" |
2762 | parse-json "^2.2.0" | 3806 | parse-json "^2.2.0" |
@@ -2767,6 +3811,7 @@ load-json-file@^1.0.0: | |||
2767 | load-json-file@^2.0.0: | 3811 | load-json-file@^2.0.0: |
2768 | version "2.0.0" | 3812 | version "2.0.0" |
2769 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" | 3813 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" |
3814 | integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= | ||
2770 | dependencies: | 3815 | dependencies: |
2771 | graceful-fs "^4.1.2" | 3816 | graceful-fs "^4.1.2" |
2772 | parse-json "^2.2.0" | 3817 | parse-json "^2.2.0" |
@@ -2776,26 +3821,30 @@ load-json-file@^2.0.0: | |||
2776 | loader-fs-cache@^1.0.0: | 3821 | loader-fs-cache@^1.0.0: |
2777 | version "1.0.1" | 3822 | version "1.0.1" |
2778 | resolved "https://registry.yarnpkg.com/loader-fs-cache/-/loader-fs-cache-1.0.1.tgz#56e0bf08bd9708b26a765b68509840c8dec9fdbc" | 3823 | resolved "https://registry.yarnpkg.com/loader-fs-cache/-/loader-fs-cache-1.0.1.tgz#56e0bf08bd9708b26a765b68509840c8dec9fdbc" |
3824 | integrity sha1-VuC/CL2XCLJqdltoUJhAyN7J/bw= | ||
2779 | dependencies: | 3825 | dependencies: |
2780 | find-cache-dir "^0.1.1" | 3826 | find-cache-dir "^0.1.1" |
2781 | mkdirp "0.5.1" | 3827 | mkdirp "0.5.1" |
2782 | 3828 | ||
2783 | loader-runner@^2.3.0: | 3829 | loader-runner@^2.3.0: |
2784 | version "2.3.0" | 3830 | version "2.3.1" |
2785 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" | 3831 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.1.tgz#026f12fe7c3115992896ac02ba022ba92971b979" |
3832 | integrity sha512-By6ZFY7ETWOc9RFaAIb23IjJVcM4dvJC/N57nmdz9RSkMXvAXGI7SyVlAw3v8vjtDRlqThgVDVmTnr9fqMlxkw== | ||
2786 | 3833 | ||
2787 | loader-utils@^0.2.16: | 3834 | loader-utils@^0.2.16: |
2788 | version "0.2.17" | 3835 | version "0.2.17" |
2789 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" | 3836 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" |
3837 | integrity sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g= | ||
2790 | dependencies: | 3838 | dependencies: |
2791 | big.js "^3.1.3" | 3839 | big.js "^3.1.3" |
2792 | emojis-list "^2.0.0" | 3840 | emojis-list "^2.0.0" |
2793 | json5 "^0.5.0" | 3841 | json5 "^0.5.0" |
2794 | object-assign "^4.0.1" | 3842 | object-assign "^4.0.1" |
2795 | 3843 | ||
2796 | loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.x: | 3844 | loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1.0: |
2797 | version "1.1.0" | 3845 | version "1.1.0" |
2798 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" | 3846 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" |
3847 | integrity sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0= | ||
2799 | dependencies: | 3848 | dependencies: |
2800 | big.js "^3.1.3" | 3849 | big.js "^3.1.3" |
2801 | emojis-list "^2.0.0" | 3850 | emojis-list "^2.0.0" |
@@ -2804,6 +3853,7 @@ loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.x: | |||
2804 | locate-path@^2.0.0: | 3853 | locate-path@^2.0.0: |
2805 | version "2.0.0" | 3854 | version "2.0.0" |
2806 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" | 3855 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" |
3856 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= | ||
2807 | dependencies: | 3857 | dependencies: |
2808 | p-locate "^2.0.0" | 3858 | p-locate "^2.0.0" |
2809 | path-exists "^3.0.0" | 3859 | path-exists "^3.0.0" |
@@ -2811,84 +3861,121 @@ locate-path@^2.0.0: | |||
2811 | lodash.assign@^4.2.0: | 3861 | lodash.assign@^4.2.0: |
2812 | version "4.2.0" | 3862 | version "4.2.0" |
2813 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" | 3863 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" |
3864 | integrity sha1-DZnzzNem0mHRm9rrkkUAXShYCOc= | ||
2814 | 3865 | ||
2815 | lodash.camelcase@^4.3.0: | 3866 | lodash.camelcase@^4.3.0: |
2816 | version "4.3.0" | 3867 | version "4.3.0" |
2817 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" | 3868 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" |
3869 | integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= | ||
2818 | 3870 | ||
2819 | lodash.clonedeep@^4.3.2: | 3871 | lodash.clonedeep@^4.3.2: |
2820 | version "4.5.0" | 3872 | version "4.5.0" |
2821 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" | 3873 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" |
3874 | integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= | ||
2822 | 3875 | ||
2823 | lodash.cond@^4.3.0: | 3876 | lodash.debounce@^4.0.8: |
2824 | version "4.5.2" | 3877 | version "4.0.8" |
2825 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" | 3878 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" |
3879 | integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= | ||
2826 | 3880 | ||
2827 | lodash.memoize@^4.1.2: | 3881 | lodash.memoize@^4.1.2: |
2828 | version "4.1.2" | 3882 | version "4.1.2" |
2829 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" | 3883 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" |
3884 | integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= | ||
2830 | 3885 | ||
2831 | lodash.mergewith@^4.6.0: | 3886 | lodash.mergewith@^4.6.0: |
2832 | version "4.6.0" | 3887 | version "4.6.1" |
2833 | resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz#150cf0a16791f5903b8891eab154609274bdea55" | 3888 | resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz#639057e726c3afbdb3e7d42741caa8d6e4335927" |
3889 | integrity sha512-eWw5r+PYICtEBgrBE5hhlT6aAa75f411bgDz/ZL2KZqYV03USvucsxcHUIlGTDTECs1eunpI7HOV7U+WLDvNdQ== | ||
2834 | 3890 | ||
2835 | lodash.tail@^4.1.1: | 3891 | lodash.tail@^4.1.1: |
2836 | version "4.1.1" | 3892 | version "4.1.1" |
2837 | resolved "https://registry.yarnpkg.com/lodash.tail/-/lodash.tail-4.1.1.tgz#d2333a36d9e7717c8ad2f7cacafec7c32b444664" | 3893 | resolved "https://registry.yarnpkg.com/lodash.tail/-/lodash.tail-4.1.1.tgz#d2333a36d9e7717c8ad2f7cacafec7c32b444664" |
3894 | integrity sha1-0jM6NtnncXyK0vfKyv7HwytERmQ= | ||
2838 | 3895 | ||
2839 | lodash.uniq@^4.5.0: | 3896 | lodash.uniq@^4.5.0: |
2840 | version "4.5.0" | 3897 | version "4.5.0" |
2841 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" | 3898 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" |
3899 | integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= | ||
2842 | 3900 | ||
2843 | "lodash@>=3.5 <5", lodash@^4.0.0, lodash@^4.1.0, lodash@^4.14.0, lodash@^4.17.2, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0, lodash@~4.17.4: | 3901 | "lodash@>=3.5 <5", lodash@^4.0.0, lodash@^4.1.0, lodash@^4.17.10, lodash@^4.17.2, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0, lodash@~4.17.10: |
2844 | version "4.17.4" | 3902 | version "4.17.11" |
2845 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" | 3903 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" |
3904 | integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== | ||
2846 | 3905 | ||
2847 | log-symbols@^1.0.2: | 3906 | log-symbols@^1.0.2: |
2848 | version "1.0.2" | 3907 | version "1.0.2" |
2849 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" | 3908 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" |
3909 | integrity sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg= | ||
2850 | dependencies: | 3910 | dependencies: |
2851 | chalk "^1.0.0" | 3911 | chalk "^1.0.0" |
2852 | 3912 | ||
3913 | loglevel@^1.4.1: | ||
3914 | version "1.6.1" | ||
3915 | resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.1.tgz#e0fc95133b6ef276cdc8887cdaf24aa6f156f8fa" | ||
3916 | integrity sha1-4PyVEztu8nbNyIh82vJKpvFW+Po= | ||
3917 | |||
2853 | longest@^1.0.1: | 3918 | longest@^1.0.1: |
2854 | version "1.0.1" | 3919 | version "1.0.1" |
2855 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" | 3920 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" |
3921 | integrity sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc= | ||
2856 | 3922 | ||
2857 | loose-envify@^1.0.0: | 3923 | loose-envify@^1.0.0: |
2858 | version "1.3.1" | 3924 | version "1.4.0" |
2859 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" | 3925 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" |
3926 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== | ||
2860 | dependencies: | 3927 | dependencies: |
2861 | js-tokens "^3.0.0" | 3928 | js-tokens "^3.0.0 || ^4.0.0" |
2862 | 3929 | ||
2863 | loud-rejection@^1.0.0: | 3930 | loud-rejection@^1.0.0: |
2864 | version "1.6.0" | 3931 | version "1.6.0" |
2865 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" | 3932 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" |
3933 | integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8= | ||
2866 | dependencies: | 3934 | dependencies: |
2867 | currently-unhandled "^0.4.1" | 3935 | currently-unhandled "^0.4.1" |
2868 | signal-exit "^3.0.0" | 3936 | signal-exit "^3.0.0" |
2869 | 3937 | ||
2870 | lru-cache@^4.0.1: | 3938 | lru-cache@^4.0.1: |
2871 | version "4.1.1" | 3939 | version "4.1.4" |
2872 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" | 3940 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.4.tgz#51cc46e8e6d9530771c857e24ccc720ecdbcc031" |
3941 | integrity sha512-EPstzZ23znHUVLKj+lcXO1KvZkrlw+ZirdwvOmnAnA/1PB4ggyXJ77LRkCqkff+ShQ+cqoxCxLQOh4cKITO5iA== | ||
2873 | dependencies: | 3942 | dependencies: |
2874 | pseudomap "^1.0.2" | 3943 | pseudomap "^1.0.2" |
2875 | yallist "^2.1.2" | 3944 | yallist "^3.0.2" |
2876 | 3945 | ||
2877 | macaddress@^0.2.8: | 3946 | make-dir@^1.0.0: |
2878 | version "0.2.8" | 3947 | version "1.3.0" |
2879 | resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" | 3948 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" |
3949 | integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== | ||
3950 | dependencies: | ||
3951 | pify "^3.0.0" | ||
3952 | |||
3953 | map-cache@^0.2.2: | ||
3954 | version "0.2.2" | ||
3955 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" | ||
3956 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= | ||
2880 | 3957 | ||
2881 | map-obj@^1.0.0, map-obj@^1.0.1: | 3958 | map-obj@^1.0.0, map-obj@^1.0.1: |
2882 | version "1.0.1" | 3959 | version "1.0.1" |
2883 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" | 3960 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" |
3961 | integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= | ||
3962 | |||
3963 | map-visit@^1.0.0: | ||
3964 | version "1.0.0" | ||
3965 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" | ||
3966 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= | ||
3967 | dependencies: | ||
3968 | object-visit "^1.0.0" | ||
2884 | 3969 | ||
2885 | material-design-icons-iconfont@^3.0.3: | 3970 | material-design-icons-iconfont@^3.0.3: |
2886 | version "3.0.3" | 3971 | version "3.0.3" |
2887 | resolved "https://registry.yarnpkg.com/material-design-icons-iconfont/-/material-design-icons-iconfont-3.0.3.tgz#154a1084047d4e27237fa7f5a37e1075ceea6df2" | 3972 | resolved "https://registry.yarnpkg.com/material-design-icons-iconfont/-/material-design-icons-iconfont-3.0.3.tgz#154a1084047d4e27237fa7f5a37e1075ceea6df2" |
3973 | integrity sha1-FUoQhAR9Ticjf6f1o34Qdc7qbfI= | ||
2888 | 3974 | ||
2889 | materialize-css@^0.98.1: | 3975 | materialize-css@^0.98.1: |
2890 | version "0.98.2" | 3976 | version "0.98.2" |
2891 | resolved "https://registry.yarnpkg.com/materialize-css/-/materialize-css-0.98.2.tgz#f9e4239fd27e2a917a0de379d74d508e2d92ec8e" | 3977 | resolved "https://registry.yarnpkg.com/materialize-css/-/materialize-css-0.98.2.tgz#f9e4239fd27e2a917a0de379d74d508e2d92ec8e" |
3978 | integrity sha1-+eQjn9J+KpF6DeN5101Qji2S7I4= | ||
2892 | dependencies: | 3979 | dependencies: |
2893 | hammerjs "^2.0.4" | 3980 | hammerjs "^2.0.4" |
2894 | jquery "^2.1.4" | 3981 | jquery "^2.1.4" |
@@ -2897,18 +3984,36 @@ materialize-css@^0.98.1: | |||
2897 | math-expression-evaluator@^1.2.14: | 3984 | math-expression-evaluator@^1.2.14: |
2898 | version "1.2.17" | 3985 | version "1.2.17" |
2899 | resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" | 3986 | resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" |
3987 | integrity sha1-3oGf282E3M2PrlnGrreWFbnSZqw= | ||
3988 | |||
3989 | math-random@^1.0.1: | ||
3990 | version "1.0.1" | ||
3991 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" | ||
3992 | integrity sha1-izqsWIuKZuSXXjzepn97sylgH6w= | ||
2900 | 3993 | ||
2901 | mathml-tag-names@^2.0.0: | 3994 | mathml-tag-names@^2.0.0: |
2902 | version "2.0.0" | 3995 | version "2.1.0" |
2903 | resolved "https://registry.yarnpkg.com/mathml-tag-names/-/mathml-tag-names-2.0.0.tgz#eee615112a2b127e70f558d69c9ebe14076503d7" | 3996 | resolved "https://registry.yarnpkg.com/mathml-tag-names/-/mathml-tag-names-2.1.0.tgz#490b70e062ee24636536e3d9481e333733d00f2c" |
3997 | integrity sha512-3Zs9P/0zzwTob2pdgT0CHZuMbnSUSp8MB1bddfm+HDmnFWHGT4jvEZRf+2RuPoa+cjdn/z25SEt5gFTqdhvJAg== | ||
3998 | |||
3999 | md5.js@^1.3.4: | ||
4000 | version "1.3.5" | ||
4001 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" | ||
4002 | integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== | ||
4003 | dependencies: | ||
4004 | hash-base "^3.0.0" | ||
4005 | inherits "^2.0.1" | ||
4006 | safe-buffer "^5.1.2" | ||
2904 | 4007 | ||
2905 | media-typer@0.3.0: | 4008 | media-typer@0.3.0: |
2906 | version "0.3.0" | 4009 | version "0.3.0" |
2907 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" | 4010 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" |
4011 | integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= | ||
2908 | 4012 | ||
2909 | memory-fs@^0.4.0, memory-fs@~0.4.1: | 4013 | memory-fs@^0.4.0, memory-fs@~0.4.1: |
2910 | version "0.4.1" | 4014 | version "0.4.1" |
2911 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" | 4015 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" |
4016 | integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI= | ||
2912 | dependencies: | 4017 | dependencies: |
2913 | errno "^0.1.3" | 4018 | errno "^0.1.3" |
2914 | readable-stream "^2.0.1" | 4019 | readable-stream "^2.0.1" |
@@ -2916,6 +4021,7 @@ memory-fs@^0.4.0, memory-fs@~0.4.1: | |||
2916 | meow@^3.3.0, meow@^3.7.0: | 4021 | meow@^3.3.0, meow@^3.7.0: |
2917 | version "3.7.0" | 4022 | version "3.7.0" |
2918 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" | 4023 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" |
4024 | integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs= | ||
2919 | dependencies: | 4025 | dependencies: |
2920 | camelcase-keys "^2.0.0" | 4026 | camelcase-keys "^2.0.0" |
2921 | decamelize "^1.1.2" | 4027 | decamelize "^1.1.2" |
@@ -2931,14 +4037,17 @@ meow@^3.3.0, meow@^3.7.0: | |||
2931 | merge-descriptors@1.0.1: | 4037 | merge-descriptors@1.0.1: |
2932 | version "1.0.1" | 4038 | version "1.0.1" |
2933 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" | 4039 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" |
4040 | integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= | ||
2934 | 4041 | ||
2935 | methods@~1.1.2: | 4042 | methods@~1.1.2: |
2936 | version "1.1.2" | 4043 | version "1.1.2" |
2937 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" | 4044 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" |
4045 | integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= | ||
2938 | 4046 | ||
2939 | micromatch@^2.1.5, micromatch@^2.3.11: | 4047 | micromatch@^2.3.11: |
2940 | version "2.3.11" | 4048 | version "2.3.11" |
2941 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" | 4049 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" |
4050 | integrity sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU= | ||
2942 | dependencies: | 4051 | dependencies: |
2943 | arr-diff "^2.0.0" | 4052 | arr-diff "^2.0.0" |
2944 | array-unique "^0.2.1" | 4053 | array-unique "^0.2.1" |
@@ -2954,60 +4063,119 @@ micromatch@^2.1.5, micromatch@^2.3.11: | |||
2954 | parse-glob "^3.0.4" | 4063 | parse-glob "^3.0.4" |
2955 | regex-cache "^0.4.2" | 4064 | regex-cache "^0.4.2" |
2956 | 4065 | ||
4066 | micromatch@^3.1.10, micromatch@^3.1.4: | ||
4067 | version "3.1.10" | ||
4068 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" | ||
4069 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== | ||
4070 | dependencies: | ||
4071 | arr-diff "^4.0.0" | ||
4072 | array-unique "^0.3.2" | ||
4073 | braces "^2.3.1" | ||
4074 | define-property "^2.0.2" | ||
4075 | extend-shallow "^3.0.2" | ||
4076 | extglob "^2.0.4" | ||
4077 | fragment-cache "^0.2.1" | ||
4078 | kind-of "^6.0.2" | ||
4079 | nanomatch "^1.2.9" | ||
4080 | object.pick "^1.3.0" | ||
4081 | regex-not "^1.0.0" | ||
4082 | snapdragon "^0.8.1" | ||
4083 | to-regex "^3.0.2" | ||
4084 | |||
2957 | miller-rabin@^4.0.0: | 4085 | miller-rabin@^4.0.0: |
2958 | version "4.0.0" | 4086 | version "4.0.1" |
2959 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" | 4087 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" |
4088 | integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== | ||
2960 | dependencies: | 4089 | dependencies: |
2961 | bn.js "^4.0.0" | 4090 | bn.js "^4.0.0" |
2962 | brorand "^1.0.1" | 4091 | brorand "^1.0.1" |
2963 | 4092 | ||
2964 | "mime-db@>= 1.27.0 < 2", mime-db@~1.27.0: | 4093 | "mime-db@>= 1.36.0 < 2", mime-db@~1.37.0: |
2965 | version "1.27.0" | 4094 | version "1.37.0" |
2966 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" | 4095 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.37.0.tgz#0b6a0ce6fdbe9576e25f1f2d2fde8830dc0ad0d8" |
4096 | integrity sha512-R3C4db6bgQhlIhPU48fUtdVmKnflq+hRdad7IyKhtFj06VPNVdk2RhiYL3UjQIlso8L+YxAtFkobT0VK+S/ybg== | ||
2967 | 4097 | ||
2968 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.15, mime-types@~2.1.7: | 4098 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.18, mime-types@~2.1.19: |
2969 | version "2.1.15" | 4099 | version "2.1.21" |
2970 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" | 4100 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.21.tgz#28995aa1ecb770742fe6ae7e58f9181c744b3f96" |
4101 | integrity sha512-3iL6DbwpyLzjR3xHSFNFeb9Nz/M8WDkX33t1GFQnFOllWk8pOrh/LSrB5OXlnlW5P9LH73X6loW/eogc+F5lJg== | ||
2971 | dependencies: | 4102 | dependencies: |
2972 | mime-db "~1.27.0" | 4103 | mime-db "~1.37.0" |
2973 | |||
2974 | mime@1.3.4: | ||
2975 | version "1.3.4" | ||
2976 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" | ||
2977 | 4104 | ||
2978 | mime@1.3.x, mime@^1.3.4: | 4105 | mime@1.3.x: |
2979 | version "1.3.6" | 4106 | version "1.3.6" |
2980 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.6.tgz#591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0" | 4107 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.6.tgz#591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0" |
4108 | integrity sha1-WR2E02U6awtKO5343lqoEI5y5eA= | ||
4109 | |||
4110 | mime@1.4.1: | ||
4111 | version "1.4.1" | ||
4112 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" | ||
4113 | integrity sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ== | ||
4114 | |||
4115 | mime@^1.5.0: | ||
4116 | version "1.6.0" | ||
4117 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" | ||
4118 | integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== | ||
2981 | 4119 | ||
2982 | mimic-fn@^1.0.0: | 4120 | mimic-fn@^1.0.0: |
2983 | version "1.1.0" | 4121 | version "1.2.0" |
2984 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" | 4122 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" |
4123 | integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== | ||
2985 | 4124 | ||
2986 | minimalistic-assert@^1.0.0: | 4125 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: |
2987 | version "1.0.0" | 4126 | version "1.0.1" |
2988 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" | 4127 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" |
4128 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== | ||
2989 | 4129 | ||
2990 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: | 4130 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: |
2991 | version "1.0.1" | 4131 | version "1.0.1" |
2992 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" | 4132 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" |
4133 | integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= | ||
2993 | 4134 | ||
2994 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4, minimatch@~3.0.2: | 4135 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4, minimatch@~3.0.2: |
2995 | version "3.0.4" | 4136 | version "3.0.4" |
2996 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" | 4137 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" |
4138 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== | ||
2997 | dependencies: | 4139 | dependencies: |
2998 | brace-expansion "^1.1.7" | 4140 | brace-expansion "^1.1.7" |
2999 | 4141 | ||
3000 | minimist@0.0.8: | 4142 | minimist@0.0.8: |
3001 | version "0.0.8" | 4143 | version "0.0.8" |
3002 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" | 4144 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" |
4145 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= | ||
3003 | 4146 | ||
3004 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: | 4147 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: |
3005 | version "1.2.0" | 4148 | version "1.2.0" |
3006 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" | 4149 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" |
4150 | integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= | ||
4151 | |||
4152 | minipass@^2.2.1, minipass@^2.3.4: | ||
4153 | version "2.3.5" | ||
4154 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" | ||
4155 | integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA== | ||
4156 | dependencies: | ||
4157 | safe-buffer "^5.1.2" | ||
4158 | yallist "^3.0.0" | ||
4159 | |||
4160 | minizlib@^1.1.1: | ||
4161 | version "1.1.1" | ||
4162 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.1.tgz#6734acc045a46e61d596a43bb9d9cd326e19cc42" | ||
4163 | integrity sha512-TrfjCjk4jLhcJyGMYymBH6oTXcWjYbUAXTHDbtnWHjZC25h0cdajHuPE1zxb4DVmu8crfh+HwH/WMuyLG0nHBg== | ||
4164 | dependencies: | ||
4165 | minipass "^2.2.1" | ||
4166 | |||
4167 | mixin-deep@^1.2.0: | ||
4168 | version "1.3.1" | ||
4169 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" | ||
4170 | integrity sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ== | ||
4171 | dependencies: | ||
4172 | for-in "^1.0.2" | ||
4173 | is-extendable "^1.0.1" | ||
3007 | 4174 | ||
3008 | mixin-object@^2.0.1: | 4175 | mixin-object@^2.0.1: |
3009 | version "2.0.1" | 4176 | version "2.0.1" |
3010 | resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e" | 4177 | resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e" |
4178 | integrity sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4= | ||
3011 | dependencies: | 4179 | dependencies: |
3012 | for-in "^0.1.3" | 4180 | for-in "^0.1.3" |
3013 | is-extendable "^0.1.1" | 4181 | is-extendable "^0.1.1" |
@@ -3015,24 +4183,42 @@ mixin-object@^2.0.1: | |||
3015 | mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: | 4183 | mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: |
3016 | version "0.5.1" | 4184 | version "0.5.1" |
3017 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" | 4185 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" |
4186 | integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= | ||
3018 | dependencies: | 4187 | dependencies: |
3019 | minimist "0.0.8" | 4188 | minimist "0.0.8" |
3020 | 4189 | ||
3021 | mousetrap@^1.6.0: | 4190 | mousetrap@^1.6.0: |
3022 | version "1.6.1" | 4191 | version "1.6.2" |
3023 | resolved "https://registry.yarnpkg.com/mousetrap/-/mousetrap-1.6.1.tgz#2a085f5c751294c75e7e81f6ec2545b29cbf42d9" | 4192 | resolved "https://registry.yarnpkg.com/mousetrap/-/mousetrap-1.6.2.tgz#caadd9cf886db0986fb2fee59a82f6bd37527587" |
3024 | 4193 | integrity sha512-jDjhi7wlHwdO6q6DS7YRmSHcuI+RVxadBkLt3KHrhd3C2b+w5pKefg3oj5beTcHZyVFA9Aksf+yEE1y5jxUjVA== | |
3025 | ms@0.7.1: | ||
3026 | version "0.7.1" | ||
3027 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" | ||
3028 | 4194 | ||
3029 | ms@2.0.0: | 4195 | ms@2.0.0: |
3030 | version "2.0.0" | 4196 | version "2.0.0" |
3031 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" | 4197 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" |
4198 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= | ||
4199 | |||
4200 | ms@^2.1.1: | ||
4201 | version "2.1.1" | ||
4202 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" | ||
4203 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== | ||
4204 | |||
4205 | multicast-dns-service-types@^1.1.0: | ||
4206 | version "1.1.0" | ||
4207 | resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901" | ||
4208 | integrity sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE= | ||
4209 | |||
4210 | multicast-dns@^6.0.1: | ||
4211 | version "6.2.3" | ||
4212 | resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.2.3.tgz#a0ec7bd9055c4282f790c3c82f4e28db3b31b229" | ||
4213 | integrity sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g== | ||
4214 | dependencies: | ||
4215 | dns-packet "^1.3.1" | ||
4216 | thunky "^1.0.2" | ||
3032 | 4217 | ||
3033 | multimatch@^2.0.0: | 4218 | multimatch@^2.0.0: |
3034 | version "2.1.0" | 4219 | version "2.1.0" |
3035 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" | 4220 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" |
4221 | integrity sha1-nHkGoi+0wCkZ4vX3UWG0zb1LKis= | ||
3036 | dependencies: | 4222 | dependencies: |
3037 | array-differ "^1.0.0" | 4223 | array-differ "^1.0.0" |
3038 | array-union "^1.0.1" | 4224 | array-union "^1.0.1" |
@@ -3042,89 +4228,134 @@ multimatch@^2.0.0: | |||
3042 | mute-stream@0.0.7: | 4228 | mute-stream@0.0.7: |
3043 | version "0.0.7" | 4229 | version "0.0.7" |
3044 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" | 4230 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" |
3045 | 4231 | integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= | |
3046 | nan@^2.3.0, nan@^2.3.2: | 4232 | |
3047 | version "2.6.2" | 4233 | nan@^2.10.0, nan@^2.9.2: |
3048 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" | 4234 | version "2.11.1" |
4235 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.11.1.tgz#90e22bccb8ca57ea4cd37cc83d3819b52eea6766" | ||
4236 | integrity sha512-iji6k87OSXa0CcrLl9z+ZiYSuR2o+c0bGuNmXdrhTQTakxytAFsC56SArGYoiHlJlFoHSnvmhpceZJaXkVuOtA== | ||
4237 | |||
4238 | nanomatch@^1.2.9: | ||
4239 | version "1.2.13" | ||
4240 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" | ||
4241 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== | ||
4242 | dependencies: | ||
4243 | arr-diff "^4.0.0" | ||
4244 | array-unique "^0.3.2" | ||
4245 | define-property "^2.0.2" | ||
4246 | extend-shallow "^3.0.2" | ||
4247 | fragment-cache "^0.2.1" | ||
4248 | is-windows "^1.0.2" | ||
4249 | kind-of "^6.0.2" | ||
4250 | object.pick "^1.3.0" | ||
4251 | regex-not "^1.0.0" | ||
4252 | snapdragon "^0.8.1" | ||
4253 | to-regex "^3.0.1" | ||
3049 | 4254 | ||
3050 | natural-compare@^1.4.0: | 4255 | natural-compare@^1.4.0: |
3051 | version "1.4.0" | 4256 | version "1.4.0" |
3052 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" | 4257 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" |
4258 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= | ||
4259 | |||
4260 | needle@^2.2.1: | ||
4261 | version "2.2.4" | ||
4262 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e" | ||
4263 | integrity sha512-HyoqEb4wr/rsoaIDfTH2aVL9nWtQqba2/HvMv+++m8u0dz808MaagKILxtfeSN7QU7nvbQ79zk3vYOJp9zsNEA== | ||
4264 | dependencies: | ||
4265 | debug "^2.1.2" | ||
4266 | iconv-lite "^0.4.4" | ||
4267 | sax "^1.2.4" | ||
3053 | 4268 | ||
3054 | negotiator@0.6.1: | 4269 | negotiator@0.6.1: |
3055 | version "0.6.1" | 4270 | version "0.6.1" |
3056 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" | 4271 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" |
4272 | integrity sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk= | ||
4273 | |||
4274 | neo-async@^2.5.0: | ||
4275 | version "2.6.0" | ||
4276 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.0.tgz#b9d15e4d71c6762908654b5183ed38b753340835" | ||
4277 | integrity sha512-MFh0d/Wa7vkKO3Y3LlacqAEeHK0mckVqzDieUKTT+KGxi+zIpeVsFxymkIiRpbpDziHc290Xr9A1O4Om7otoRA== | ||
3057 | 4278 | ||
3058 | node-archiver@^0.3.0: | 4279 | node-archiver@^0.3.0: |
3059 | version "0.3.0" | 4280 | version "0.3.0" |
3060 | resolved "https://registry.yarnpkg.com/node-archiver/-/node-archiver-0.3.0.tgz#b9f1afe5006d0bdf29260181833a070978bc6947" | 4281 | resolved "https://registry.yarnpkg.com/node-archiver/-/node-archiver-0.3.0.tgz#b9f1afe5006d0bdf29260181833a070978bc6947" |
4282 | integrity sha1-ufGv5QBtC98pJgGBgzoHCXi8aUc= | ||
3061 | dependencies: | 4283 | dependencies: |
3062 | fstream "^1.0.10" | 4284 | fstream "^1.0.10" |
3063 | tar "^2.2.1" | 4285 | tar "^2.2.1" |
3064 | 4286 | ||
3065 | node-gyp@^3.3.1: | 4287 | node-forge@0.7.5: |
3066 | version "3.6.2" | 4288 | version "0.7.5" |
3067 | resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.6.2.tgz#9bfbe54562286284838e750eac05295853fa1c60" | 4289 | resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.7.5.tgz#6c152c345ce11c52f465c2abd957e8639cd674df" |
4290 | integrity sha512-MmbQJ2MTESTjt3Gi/3yG1wGpIMhUfcIypUCGtTizFR9IiccFwxSpfp0vtIZlkFclEqERemxfnSdZEMR9VqqEFQ== | ||
4291 | |||
4292 | node-gyp@^3.8.0: | ||
4293 | version "3.8.0" | ||
4294 | resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.8.0.tgz#540304261c330e80d0d5edce253a68cb3964218c" | ||
4295 | integrity sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA== | ||
3068 | dependencies: | 4296 | dependencies: |
3069 | fstream "^1.0.0" | 4297 | fstream "^1.0.0" |
3070 | glob "^7.0.3" | 4298 | glob "^7.0.3" |
3071 | graceful-fs "^4.1.2" | 4299 | graceful-fs "^4.1.2" |
3072 | minimatch "^3.0.2" | ||
3073 | mkdirp "^0.5.0" | 4300 | mkdirp "^0.5.0" |
3074 | nopt "2 || 3" | 4301 | nopt "2 || 3" |
3075 | npmlog "0 || 1 || 2 || 3 || 4" | 4302 | npmlog "0 || 1 || 2 || 3 || 4" |
3076 | osenv "0" | 4303 | osenv "0" |
3077 | request "2" | 4304 | request "^2.87.0" |
3078 | rimraf "2" | 4305 | rimraf "2" |
3079 | semver "~5.3.0" | 4306 | semver "~5.3.0" |
3080 | tar "^2.0.0" | 4307 | tar "^2.0.0" |
3081 | which "1" | 4308 | which "1" |
3082 | 4309 | ||
3083 | node-libs-browser@^2.0.0: | 4310 | node-libs-browser@^2.0.0: |
3084 | version "2.0.0" | 4311 | version "2.1.0" |
3085 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" | 4312 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df" |
4313 | integrity sha512-5AzFzdoIMb89hBGMZglEegffzgRg+ZFoUmisQ8HI4j1KDdpx13J0taNp2y9xPbur6W61gepGDDotGBVQ7mfUCg== | ||
3086 | dependencies: | 4314 | dependencies: |
3087 | assert "^1.1.1" | 4315 | assert "^1.1.1" |
3088 | browserify-zlib "^0.1.4" | 4316 | browserify-zlib "^0.2.0" |
3089 | buffer "^4.3.0" | 4317 | buffer "^4.3.0" |
3090 | console-browserify "^1.1.0" | 4318 | console-browserify "^1.1.0" |
3091 | constants-browserify "^1.0.0" | 4319 | constants-browserify "^1.0.0" |
3092 | crypto-browserify "^3.11.0" | 4320 | crypto-browserify "^3.11.0" |
3093 | domain-browser "^1.1.1" | 4321 | domain-browser "^1.1.1" |
3094 | events "^1.0.0" | 4322 | events "^1.0.0" |
3095 | https-browserify "0.0.1" | 4323 | https-browserify "^1.0.0" |
3096 | os-browserify "^0.2.0" | 4324 | os-browserify "^0.3.0" |
3097 | path-browserify "0.0.0" | 4325 | path-browserify "0.0.0" |
3098 | process "^0.11.0" | 4326 | process "^0.11.10" |
3099 | punycode "^1.2.4" | 4327 | punycode "^1.2.4" |
3100 | querystring-es3 "^0.2.0" | 4328 | querystring-es3 "^0.2.0" |
3101 | readable-stream "^2.0.5" | 4329 | readable-stream "^2.3.3" |
3102 | stream-browserify "^2.0.1" | 4330 | stream-browserify "^2.0.1" |
3103 | stream-http "^2.3.1" | 4331 | stream-http "^2.7.2" |
3104 | string_decoder "^0.10.25" | 4332 | string_decoder "^1.0.0" |
3105 | timers-browserify "^2.0.2" | 4333 | timers-browserify "^2.0.4" |
3106 | tty-browserify "0.0.0" | 4334 | tty-browserify "0.0.0" |
3107 | url "^0.11.0" | 4335 | url "^0.11.0" |
3108 | util "^0.10.3" | 4336 | util "^0.10.3" |
3109 | vm-browserify "0.0.4" | 4337 | vm-browserify "0.0.4" |
3110 | 4338 | ||
3111 | node-pre-gyp@^0.6.36: | 4339 | node-pre-gyp@^0.10.0: |
3112 | version "0.6.36" | 4340 | version "0.10.3" |
3113 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" | 4341 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" |
4342 | integrity sha512-d1xFs+C/IPS8Id0qPTZ4bUT8wWryfR/OzzAFxweG+uLN85oPzyo2Iw6bVlLQ/JOdgNonXLCoRyqDzDWq4iw72A== | ||
3114 | dependencies: | 4343 | dependencies: |
4344 | detect-libc "^1.0.2" | ||
3115 | mkdirp "^0.5.1" | 4345 | mkdirp "^0.5.1" |
4346 | needle "^2.2.1" | ||
3116 | nopt "^4.0.1" | 4347 | nopt "^4.0.1" |
4348 | npm-packlist "^1.1.6" | ||
3117 | npmlog "^4.0.2" | 4349 | npmlog "^4.0.2" |
3118 | rc "^1.1.7" | 4350 | rc "^1.2.7" |
3119 | request "^2.81.0" | ||
3120 | rimraf "^2.6.1" | 4351 | rimraf "^2.6.1" |
3121 | semver "^5.3.0" | 4352 | semver "^5.3.0" |
3122 | tar "^2.2.1" | 4353 | tar "^4" |
3123 | tar-pack "^3.4.0" | ||
3124 | 4354 | ||
3125 | node-sass@^4.5.2: | 4355 | node-sass@^4.5.2: |
3126 | version "4.5.3" | 4356 | version "4.10.0" |
3127 | resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.5.3.tgz#d09c9d1179641239d1b97ffc6231fdcec53e1568" | 4357 | resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.10.0.tgz#dcc2b364c0913630945ccbf7a2bbf1f926effca4" |
4358 | integrity sha512-fDQJfXszw6vek63Fe/ldkYXmRYK/QS6NbvM3i5oEo9ntPDy4XX7BcKZyTKv+/kSSxRtXXc7l+MSwEmYc0CSy6Q== | ||
3128 | dependencies: | 4359 | dependencies: |
3129 | async-foreach "^0.1.3" | 4360 | async-foreach "^0.1.3" |
3130 | chalk "^1.1.1" | 4361 | chalk "^1.1.1" |
@@ -3138,61 +4369,83 @@ node-sass@^4.5.2: | |||
3138 | lodash.mergewith "^4.6.0" | 4369 | lodash.mergewith "^4.6.0" |
3139 | meow "^3.7.0" | 4370 | meow "^3.7.0" |
3140 | mkdirp "^0.5.1" | 4371 | mkdirp "^0.5.1" |
3141 | nan "^2.3.2" | 4372 | nan "^2.10.0" |
3142 | node-gyp "^3.3.1" | 4373 | node-gyp "^3.8.0" |
3143 | npmlog "^4.0.0" | 4374 | npmlog "^4.0.0" |
3144 | request "^2.79.0" | 4375 | request "^2.88.0" |
3145 | sass-graph "^2.1.1" | 4376 | sass-graph "^2.2.4" |
3146 | stdout-stream "^1.4.0" | 4377 | stdout-stream "^1.4.0" |
4378 | "true-case-path" "^1.0.2" | ||
3147 | 4379 | ||
3148 | "nopt@2 || 3": | 4380 | "nopt@2 || 3": |
3149 | version "3.0.6" | 4381 | version "3.0.6" |
3150 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" | 4382 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" |
4383 | integrity sha1-xkZdvwirzU2zWTF/eaxopkayj/k= | ||
3151 | dependencies: | 4384 | dependencies: |
3152 | abbrev "1" | 4385 | abbrev "1" |
3153 | 4386 | ||
3154 | nopt@^4.0.1: | 4387 | nopt@^4.0.1: |
3155 | version "4.0.1" | 4388 | version "4.0.1" |
3156 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" | 4389 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" |
4390 | integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= | ||
3157 | dependencies: | 4391 | dependencies: |
3158 | abbrev "1" | 4392 | abbrev "1" |
3159 | osenv "^0.1.4" | 4393 | osenv "^0.1.4" |
3160 | 4394 | ||
3161 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: | 4395 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: |
3162 | version "2.3.8" | 4396 | version "2.4.0" |
3163 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" | 4397 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" |
4398 | integrity sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw== | ||
3164 | dependencies: | 4399 | dependencies: |
3165 | hosted-git-info "^2.1.4" | 4400 | hosted-git-info "^2.1.4" |
3166 | is-builtin-module "^1.0.0" | 4401 | is-builtin-module "^1.0.0" |
3167 | semver "2 || 3 || 4 || 5" | 4402 | semver "2 || 3 || 4 || 5" |
3168 | validate-npm-package-license "^3.0.1" | 4403 | validate-npm-package-license "^3.0.1" |
3169 | 4404 | ||
3170 | normalize-path@^2.0.1: | 4405 | normalize-path@^2.0.1, normalize-path@^2.1.1: |
3171 | version "2.1.1" | 4406 | version "2.1.1" |
3172 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" | 4407 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" |
4408 | integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= | ||
3173 | dependencies: | 4409 | dependencies: |
3174 | remove-trailing-separator "^1.0.1" | 4410 | remove-trailing-separator "^1.0.1" |
3175 | 4411 | ||
3176 | normalize-range@^0.1.2: | 4412 | normalize-range@^0.1.2: |
3177 | version "0.1.2" | 4413 | version "0.1.2" |
3178 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" | 4414 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" |
4415 | integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= | ||
3179 | 4416 | ||
3180 | normalize-selector@^0.2.0: | 4417 | normalize-selector@^0.2.0: |
3181 | version "0.2.0" | 4418 | version "0.2.0" |
3182 | resolved "https://registry.yarnpkg.com/normalize-selector/-/normalize-selector-0.2.0.tgz#d0b145eb691189c63a78d201dc4fdb1293ef0c03" | 4419 | resolved "https://registry.yarnpkg.com/normalize-selector/-/normalize-selector-0.2.0.tgz#d0b145eb691189c63a78d201dc4fdb1293ef0c03" |
4420 | integrity sha1-0LFF62kRicY6eNIB3E/bEpPvDAM= | ||
3183 | 4421 | ||
3184 | normalize-url@^1.4.0: | 4422 | normalize-url@^1.4.0: |
3185 | version "1.9.1" | 4423 | version "1.9.1" |
3186 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" | 4424 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" |
4425 | integrity sha1-LMDWazHqIwNkWENuNiDYWVTGbDw= | ||
3187 | dependencies: | 4426 | dependencies: |
3188 | object-assign "^4.0.1" | 4427 | object-assign "^4.0.1" |
3189 | prepend-http "^1.0.0" | 4428 | prepend-http "^1.0.0" |
3190 | query-string "^4.1.0" | 4429 | query-string "^4.1.0" |
3191 | sort-keys "^1.0.0" | 4430 | sort-keys "^1.0.0" |
3192 | 4431 | ||
4432 | npm-bundled@^1.0.1: | ||
4433 | version "1.0.5" | ||
4434 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979" | ||
4435 | integrity sha512-m/e6jgWu8/v5niCUKQi9qQl8QdeEduFA96xHDDzFGqly0OOjI7c+60KM/2sppfnUU9JJagf+zs+yGhqSOFj71g== | ||
4436 | |||
4437 | npm-packlist@^1.1.6: | ||
4438 | version "1.1.12" | ||
4439 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.12.tgz#22bde2ebc12e72ca482abd67afc51eb49377243a" | ||
4440 | integrity sha512-WJKFOVMeAlsU/pjXuqVdzU0WfgtIBCupkEVwn+1Y0ERAbUfWw8R4GjgVbaKnUjRoD2FoQbHOCbOyT5Mbs9Lw4g== | ||
4441 | dependencies: | ||
4442 | ignore-walk "^3.0.1" | ||
4443 | npm-bundled "^1.0.1" | ||
4444 | |||
3193 | "npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.0.2: | 4445 | "npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.0.2: |
3194 | version "4.1.0" | 4446 | version "4.1.2" |
3195 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" | 4447 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" |
4448 | integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== | ||
3196 | dependencies: | 4449 | dependencies: |
3197 | are-we-there-yet "~1.1.2" | 4450 | are-we-there-yet "~1.1.2" |
3198 | console-control-strings "~1.1.0" | 4451 | console-control-strings "~1.1.0" |
@@ -3202,70 +4455,111 @@ normalize-url@^1.4.0: | |||
3202 | num2fraction@^1.2.2: | 4455 | num2fraction@^1.2.2: |
3203 | version "1.2.2" | 4456 | version "1.2.2" |
3204 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" | 4457 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" |
4458 | integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= | ||
3205 | 4459 | ||
3206 | number-is-nan@^1.0.0: | 4460 | number-is-nan@^1.0.0: |
3207 | version "1.0.1" | 4461 | version "1.0.1" |
3208 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" | 4462 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" |
4463 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= | ||
3209 | 4464 | ||
3210 | oauth-sign@~0.8.1: | 4465 | oauth-sign@~0.9.0: |
3211 | version "0.8.2" | 4466 | version "0.9.0" |
3212 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" | 4467 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" |
4468 | integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== | ||
3213 | 4469 | ||
3214 | object-assign@^4.0.1, object-assign@^4.1.0: | 4470 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: |
3215 | version "4.1.1" | 4471 | version "4.1.1" |
3216 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" | 4472 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" |
4473 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= | ||
4474 | |||
4475 | object-copy@^0.1.0: | ||
4476 | version "0.1.0" | ||
4477 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" | ||
4478 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= | ||
4479 | dependencies: | ||
4480 | copy-descriptor "^0.1.0" | ||
4481 | define-property "^0.2.5" | ||
4482 | kind-of "^3.0.3" | ||
3217 | 4483 | ||
3218 | object-hash@^1.1.4: | 4484 | object-hash@^1.1.4: |
3219 | version "1.1.8" | 4485 | version "1.3.1" |
3220 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.1.8.tgz#28a659cf987d96a4dabe7860289f3b5326c4a03c" | 4486 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.3.1.tgz#fde452098a951cb145f039bb7d455449ddc126df" |
4487 | integrity sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA== | ||
4488 | |||
4489 | object-keys@^1.0.12: | ||
4490 | version "1.0.12" | ||
4491 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" | ||
4492 | integrity sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag== | ||
4493 | |||
4494 | object-visit@^1.0.0: | ||
4495 | version "1.0.1" | ||
4496 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" | ||
4497 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= | ||
4498 | dependencies: | ||
4499 | isobject "^3.0.0" | ||
3221 | 4500 | ||
3222 | object.omit@^2.0.0: | 4501 | object.omit@^2.0.0: |
3223 | version "2.0.1" | 4502 | version "2.0.1" |
3224 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" | 4503 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" |
4504 | integrity sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo= | ||
3225 | dependencies: | 4505 | dependencies: |
3226 | for-own "^0.1.4" | 4506 | for-own "^0.1.4" |
3227 | is-extendable "^0.1.1" | 4507 | is-extendable "^0.1.1" |
3228 | 4508 | ||
4509 | object.pick@^1.3.0: | ||
4510 | version "1.3.0" | ||
4511 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" | ||
4512 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= | ||
4513 | dependencies: | ||
4514 | isobject "^3.0.1" | ||
4515 | |||
3229 | obuf@^1.0.0, obuf@^1.1.1: | 4516 | obuf@^1.0.0, obuf@^1.1.1: |
3230 | version "1.1.1" | 4517 | version "1.1.2" |
3231 | resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.1.tgz#104124b6c602c6796881a042541d36db43a5264e" | 4518 | resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" |
4519 | integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== | ||
3232 | 4520 | ||
3233 | on-finished@~2.3.0: | 4521 | on-finished@~2.3.0: |
3234 | version "2.3.0" | 4522 | version "2.3.0" |
3235 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" | 4523 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" |
4524 | integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= | ||
3236 | dependencies: | 4525 | dependencies: |
3237 | ee-first "1.1.1" | 4526 | ee-first "1.1.1" |
3238 | 4527 | ||
3239 | on-headers@~1.0.1: | 4528 | on-headers@~1.0.1: |
3240 | version "1.0.1" | 4529 | version "1.0.1" |
3241 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" | 4530 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" |
4531 | integrity sha1-ko9dD0cNSTQmUepnlLCFfBAGk/c= | ||
3242 | 4532 | ||
3243 | once@^1.3.0, once@^1.3.3: | 4533 | once@^1.3.0: |
3244 | version "1.4.0" | 4534 | version "1.4.0" |
3245 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" | 4535 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" |
4536 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= | ||
3246 | dependencies: | 4537 | dependencies: |
3247 | wrappy "1" | 4538 | wrappy "1" |
3248 | 4539 | ||
3249 | onecolor@^3.0.4: | 4540 | onecolor@^3.0.4: |
3250 | version "3.0.4" | 4541 | version "3.1.0" |
3251 | resolved "https://registry.yarnpkg.com/onecolor/-/onecolor-3.0.4.tgz#75a46f80da6c7aaa5b4daae17a47198bd9652494" | 4542 | resolved "https://registry.yarnpkg.com/onecolor/-/onecolor-3.1.0.tgz#b72522270a49569ac20d244b3cd40fe157fda4d2" |
4543 | integrity sha512-YZSypViXzu3ul5LMu/m6XjJ9ol8qAy9S2VjHl5E6UlhUH1KGKWabyEJifn0Jjpw23bYDzC2ucKMPGiH5kfwSGQ== | ||
3252 | 4544 | ||
3253 | onetime@^2.0.0: | 4545 | onetime@^2.0.0: |
3254 | version "2.0.1" | 4546 | version "2.0.1" |
3255 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" | 4547 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" |
4548 | integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= | ||
3256 | dependencies: | 4549 | dependencies: |
3257 | mimic-fn "^1.0.0" | 4550 | mimic-fn "^1.0.0" |
3258 | 4551 | ||
3259 | opn@4.0.2: | 4552 | opn@^5.1.0: |
3260 | version "4.0.2" | 4553 | version "5.4.0" |
3261 | resolved "https://registry.yarnpkg.com/opn/-/opn-4.0.2.tgz#7abc22e644dff63b0a96d5ab7f2790c0f01abc95" | 4554 | resolved "https://registry.yarnpkg.com/opn/-/opn-5.4.0.tgz#cb545e7aab78562beb11aa3bfabc7042e1761035" |
4555 | integrity sha512-YF9MNdVy/0qvJvDtunAOzFw9iasOQHpVthTCvGzxt61Il64AYSGdK+rYwld7NAfk9qJ7dt+hymBNSc9LNYS+Sw== | ||
3262 | dependencies: | 4556 | dependencies: |
3263 | object-assign "^4.0.1" | 4557 | is-wsl "^1.1.0" |
3264 | pinkie-promise "^2.0.0" | ||
3265 | 4558 | ||
3266 | optionator@^0.8.2: | 4559 | optionator@^0.8.2: |
3267 | version "0.8.2" | 4560 | version "0.8.2" |
3268 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" | 4561 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" |
4562 | integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= | ||
3269 | dependencies: | 4563 | dependencies: |
3270 | deep-is "~0.1.3" | 4564 | deep-is "~0.1.3" |
3271 | fast-levenshtein "~2.0.4" | 4565 | fast-levenshtein "~2.0.4" |
@@ -3275,53 +4569,75 @@ optionator@^0.8.2: | |||
3275 | wordwrap "~1.0.0" | 4569 | wordwrap "~1.0.0" |
3276 | 4570 | ||
3277 | original@>=0.0.5: | 4571 | original@>=0.0.5: |
3278 | version "1.0.0" | 4572 | version "1.0.2" |
3279 | resolved "https://registry.yarnpkg.com/original/-/original-1.0.0.tgz#9147f93fa1696d04be61e01bd50baeaca656bd3b" | 4573 | resolved "https://registry.yarnpkg.com/original/-/original-1.0.2.tgz#e442a61cffe1c5fd20a65f3261c26663b303f25f" |
4574 | integrity sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg== | ||
3280 | dependencies: | 4575 | dependencies: |
3281 | url-parse "1.0.x" | 4576 | url-parse "^1.4.3" |
3282 | 4577 | ||
3283 | os-browserify@^0.2.0: | 4578 | os-browserify@^0.3.0: |
3284 | version "0.2.1" | 4579 | version "0.3.0" |
3285 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" | 4580 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" |
4581 | integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= | ||
3286 | 4582 | ||
3287 | os-homedir@^1.0.0, os-homedir@^1.0.1: | 4583 | os-homedir@^1.0.0, os-homedir@^1.0.1: |
3288 | version "1.0.2" | 4584 | version "1.0.2" |
3289 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" | 4585 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" |
4586 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= | ||
3290 | 4587 | ||
3291 | os-locale@^1.4.0: | 4588 | os-locale@^1.4.0: |
3292 | version "1.4.0" | 4589 | version "1.4.0" |
3293 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" | 4590 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" |
4591 | integrity sha1-IPnxeuKe00XoveWDsT0gCYA8FNk= | ||
3294 | dependencies: | 4592 | dependencies: |
3295 | lcid "^1.0.0" | 4593 | lcid "^1.0.0" |
3296 | 4594 | ||
3297 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: | 4595 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: |
3298 | version "1.0.2" | 4596 | version "1.0.2" |
3299 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" | 4597 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" |
4598 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= | ||
3300 | 4599 | ||
3301 | osenv@0, osenv@^0.1.4: | 4600 | osenv@0, osenv@^0.1.4: |
3302 | version "0.1.4" | 4601 | version "0.1.5" |
3303 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" | 4602 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" |
4603 | integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== | ||
3304 | dependencies: | 4604 | dependencies: |
3305 | os-homedir "^1.0.0" | 4605 | os-homedir "^1.0.0" |
3306 | os-tmpdir "^1.0.0" | 4606 | os-tmpdir "^1.0.0" |
3307 | 4607 | ||
3308 | p-limit@^1.1.0: | 4608 | p-limit@^1.1.0: |
3309 | version "1.1.0" | 4609 | version "1.3.0" |
3310 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" | 4610 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" |
4611 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== | ||
4612 | dependencies: | ||
4613 | p-try "^1.0.0" | ||
3311 | 4614 | ||
3312 | p-locate@^2.0.0: | 4615 | p-locate@^2.0.0: |
3313 | version "2.0.0" | 4616 | version "2.0.0" |
3314 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" | 4617 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" |
4618 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= | ||
3315 | dependencies: | 4619 | dependencies: |
3316 | p-limit "^1.1.0" | 4620 | p-limit "^1.1.0" |
3317 | 4621 | ||
3318 | pako@~0.2.0: | 4622 | p-map@^1.1.1: |
3319 | version "0.2.9" | 4623 | version "1.2.0" |
3320 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" | 4624 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" |
4625 | integrity sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA== | ||
4626 | |||
4627 | p-try@^1.0.0: | ||
4628 | version "1.0.0" | ||
4629 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" | ||
4630 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= | ||
4631 | |||
4632 | pako@~1.0.5: | ||
4633 | version "1.0.6" | ||
4634 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" | ||
4635 | integrity sha512-lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg== | ||
3321 | 4636 | ||
3322 | parse-asn1@^5.0.0: | 4637 | parse-asn1@^5.0.0: |
3323 | version "5.1.0" | 4638 | version "5.1.1" |
3324 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" | 4639 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.1.tgz#f6bf293818332bd0dab54efb16087724745e6ca8" |
4640 | integrity sha512-KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw== | ||
3325 | dependencies: | 4641 | dependencies: |
3326 | asn1.js "^4.0.0" | 4642 | asn1.js "^4.0.0" |
3327 | browserify-aes "^1.0.0" | 4643 | browserify-aes "^1.0.0" |
@@ -3332,6 +4648,7 @@ parse-asn1@^5.0.0: | |||
3332 | parse-glob@^3.0.4: | 4648 | parse-glob@^3.0.4: |
3333 | version "3.0.4" | 4649 | version "3.0.4" |
3334 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" | 4650 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" |
4651 | integrity sha1-ssN2z7EfNVE7rdFz7wu246OIORw= | ||
3335 | dependencies: | 4652 | dependencies: |
3336 | glob-base "^0.3.0" | 4653 | glob-base "^0.3.0" |
3337 | is-dotfile "^1.0.0" | 4654 | is-dotfile "^1.0.0" |
@@ -3341,46 +4658,74 @@ parse-glob@^3.0.4: | |||
3341 | parse-json@^2.2.0: | 4658 | parse-json@^2.2.0: |
3342 | version "2.2.0" | 4659 | version "2.2.0" |
3343 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" | 4660 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" |
4661 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= | ||
3344 | dependencies: | 4662 | dependencies: |
3345 | error-ex "^1.2.0" | 4663 | error-ex "^1.2.0" |
3346 | 4664 | ||
3347 | parseurl@~1.3.1: | 4665 | parse-json@^4.0.0: |
3348 | version "1.3.1" | 4666 | version "4.0.0" |
3349 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" | 4667 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" |
4668 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= | ||
4669 | dependencies: | ||
4670 | error-ex "^1.3.1" | ||
4671 | json-parse-better-errors "^1.0.1" | ||
4672 | |||
4673 | parseurl@~1.3.2: | ||
4674 | version "1.3.2" | ||
4675 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" | ||
4676 | integrity sha1-/CidTtiZMRlGDBViUyYs3I3mW/M= | ||
4677 | |||
4678 | pascalcase@^0.1.1: | ||
4679 | version "0.1.1" | ||
4680 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" | ||
4681 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= | ||
3350 | 4682 | ||
3351 | path-browserify@0.0.0: | 4683 | path-browserify@0.0.0: |
3352 | version "0.0.0" | 4684 | version "0.0.0" |
3353 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" | 4685 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" |
4686 | integrity sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo= | ||
4687 | |||
4688 | path-dirname@^1.0.0: | ||
4689 | version "1.0.2" | ||
4690 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" | ||
4691 | integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= | ||
3354 | 4692 | ||
3355 | path-exists@^2.0.0: | 4693 | path-exists@^2.0.0: |
3356 | version "2.1.0" | 4694 | version "2.1.0" |
3357 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" | 4695 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" |
4696 | integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= | ||
3358 | dependencies: | 4697 | dependencies: |
3359 | pinkie-promise "^2.0.0" | 4698 | pinkie-promise "^2.0.0" |
3360 | 4699 | ||
3361 | path-exists@^3.0.0: | 4700 | path-exists@^3.0.0: |
3362 | version "3.0.0" | 4701 | version "3.0.0" |
3363 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" | 4702 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" |
4703 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= | ||
3364 | 4704 | ||
3365 | path-is-absolute@^1.0.0: | 4705 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: |
3366 | version "1.0.1" | 4706 | version "1.0.1" |
3367 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" | 4707 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" |
4708 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= | ||
3368 | 4709 | ||
3369 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: | 4710 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: |
3370 | version "1.0.2" | 4711 | version "1.0.2" |
3371 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" | 4712 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" |
4713 | integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= | ||
3372 | 4714 | ||
3373 | path-parse@^1.0.5: | 4715 | path-parse@^1.0.5: |
3374 | version "1.0.5" | 4716 | version "1.0.6" |
3375 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" | 4717 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" |
4718 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== | ||
3376 | 4719 | ||
3377 | path-to-regexp@0.1.7: | 4720 | path-to-regexp@0.1.7: |
3378 | version "0.1.7" | 4721 | version "0.1.7" |
3379 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" | 4722 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" |
4723 | integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= | ||
3380 | 4724 | ||
3381 | path-type@^1.0.0: | 4725 | path-type@^1.0.0: |
3382 | version "1.1.0" | 4726 | version "1.1.0" |
3383 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" | 4727 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" |
4728 | integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= | ||
3384 | dependencies: | 4729 | dependencies: |
3385 | graceful-fs "^4.1.2" | 4730 | graceful-fs "^4.1.2" |
3386 | pify "^2.0.0" | 4731 | pify "^2.0.0" |
@@ -3389,12 +4734,14 @@ path-type@^1.0.0: | |||
3389 | path-type@^2.0.0: | 4734 | path-type@^2.0.0: |
3390 | version "2.0.0" | 4735 | version "2.0.0" |
3391 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" | 4736 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" |
4737 | integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= | ||
3392 | dependencies: | 4738 | dependencies: |
3393 | pify "^2.0.0" | 4739 | pify "^2.0.0" |
3394 | 4740 | ||
3395 | pbkdf2@^3.0.3: | 4741 | pbkdf2@^3.0.3: |
3396 | version "3.0.12" | 4742 | version "3.0.17" |
3397 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.12.tgz#be36785c5067ea48d806ff923288c5f750b6b8a2" | 4743 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" |
4744 | integrity sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA== | ||
3398 | dependencies: | 4745 | dependencies: |
3399 | create-hash "^1.1.2" | 4746 | create-hash "^1.1.2" |
3400 | create-hmac "^1.1.4" | 4747 | create-hmac "^1.1.4" |
@@ -3402,27 +4749,37 @@ pbkdf2@^3.0.3: | |||
3402 | safe-buffer "^5.0.1" | 4749 | safe-buffer "^5.0.1" |
3403 | sha.js "^2.4.8" | 4750 | sha.js "^2.4.8" |
3404 | 4751 | ||
3405 | performance-now@^0.2.0: | 4752 | performance-now@^2.1.0: |
3406 | version "0.2.0" | 4753 | version "2.1.0" |
3407 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" | 4754 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" |
4755 | integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= | ||
3408 | 4756 | ||
3409 | pify@^2.0.0, pify@^2.3.0: | 4757 | pify@^2.0.0, pify@^2.3.0: |
3410 | version "2.3.0" | 4758 | version "2.3.0" |
3411 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" | 4759 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" |
4760 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= | ||
4761 | |||
4762 | pify@^3.0.0: | ||
4763 | version "3.0.0" | ||
4764 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" | ||
4765 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= | ||
3412 | 4766 | ||
3413 | pinkie-promise@^2.0.0: | 4767 | pinkie-promise@^2.0.0: |
3414 | version "2.0.1" | 4768 | version "2.0.1" |
3415 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" | 4769 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" |
4770 | integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= | ||
3416 | dependencies: | 4771 | dependencies: |
3417 | pinkie "^2.0.0" | 4772 | pinkie "^2.0.0" |
3418 | 4773 | ||
3419 | pinkie@^2.0.0: | 4774 | pinkie@^2.0.0: |
3420 | version "2.0.4" | 4775 | version "2.0.4" |
3421 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" | 4776 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" |
4777 | integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= | ||
3422 | 4778 | ||
3423 | pipetteur@^2.0.0: | 4779 | pipetteur@^2.0.0: |
3424 | version "2.0.3" | 4780 | version "2.0.3" |
3425 | resolved "https://registry.yarnpkg.com/pipetteur/-/pipetteur-2.0.3.tgz#1955760959e8d1a11cb2a50ec83eec470633e49f" | 4781 | resolved "https://registry.yarnpkg.com/pipetteur/-/pipetteur-2.0.3.tgz#1955760959e8d1a11cb2a50ec83eec470633e49f" |
4782 | integrity sha1-GVV2CVno0aEcsqUOyD7sRwYz5J8= | ||
3426 | dependencies: | 4783 | dependencies: |
3427 | onecolor "^3.0.4" | 4784 | onecolor "^3.0.4" |
3428 | synesthesia "^1.0.1" | 4785 | synesthesia "^1.0.1" |
@@ -3430,30 +4787,47 @@ pipetteur@^2.0.0: | |||
3430 | pkg-dir@^1.0.0: | 4787 | pkg-dir@^1.0.0: |
3431 | version "1.0.0" | 4788 | version "1.0.0" |
3432 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" | 4789 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" |
4790 | integrity sha1-ektQio1bstYp1EcFb/TpyTFM89Q= | ||
3433 | dependencies: | 4791 | dependencies: |
3434 | find-up "^1.0.0" | 4792 | find-up "^1.0.0" |
3435 | 4793 | ||
4794 | pkg-dir@^2.0.0: | ||
4795 | version "2.0.0" | ||
4796 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" | ||
4797 | integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= | ||
4798 | dependencies: | ||
4799 | find-up "^2.1.0" | ||
4800 | |||
3436 | plur@^2.0.0, plur@^2.1.2: | 4801 | plur@^2.0.0, plur@^2.1.2: |
3437 | version "2.1.2" | 4802 | version "2.1.2" |
3438 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" | 4803 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" |
4804 | integrity sha1-dIJFLBoPUI4+NE6uwxLJHCncZVo= | ||
3439 | dependencies: | 4805 | dependencies: |
3440 | irregular-plurals "^1.0.0" | 4806 | irregular-plurals "^1.0.0" |
3441 | 4807 | ||
3442 | pluralize@^4.0.0: | 4808 | pluralize@^7.0.0: |
3443 | version "4.0.0" | 4809 | version "7.0.0" |
3444 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762" | 4810 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" |
4811 | integrity sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow== | ||
3445 | 4812 | ||
3446 | portfinder@^1.0.9: | 4813 | portfinder@^1.0.9: |
3447 | version "1.0.13" | 4814 | version "1.0.19" |
3448 | resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9" | 4815 | resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.19.tgz#07e87914a55242dcda5b833d42f018d6875b595f" |
4816 | integrity sha512-23aeQKW9KgHe6citUrG3r9HjeX6vls0h713TAa+CwTKZwNIr/pD2ApaxYF4Um3ZZyq4ar+Siv3+fhoHaIwSOSw== | ||
3449 | dependencies: | 4817 | dependencies: |
3450 | async "^1.5.2" | 4818 | async "^1.5.2" |
3451 | debug "^2.2.0" | 4819 | debug "^2.2.0" |
3452 | mkdirp "0.5.x" | 4820 | mkdirp "0.5.x" |
3453 | 4821 | ||
4822 | posix-character-classes@^0.1.0: | ||
4823 | version "0.1.1" | ||
4824 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" | ||
4825 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= | ||
4826 | |||
3454 | postcss-calc@^5.2.0: | 4827 | postcss-calc@^5.2.0: |
3455 | version "5.3.1" | 4828 | version "5.3.1" |
3456 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" | 4829 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" |
4830 | integrity sha1-d7rnypKK2FcW4v2kLyYb98HWW14= | ||
3457 | dependencies: | 4831 | dependencies: |
3458 | postcss "^5.0.2" | 4832 | postcss "^5.0.2" |
3459 | postcss-message-helpers "^2.0.0" | 4833 | postcss-message-helpers "^2.0.0" |
@@ -3462,6 +4836,7 @@ postcss-calc@^5.2.0: | |||
3462 | postcss-colormin@^2.1.8: | 4836 | postcss-colormin@^2.1.8: |
3463 | version "2.2.2" | 4837 | version "2.2.2" |
3464 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" | 4838 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" |
4839 | integrity sha1-ZjFBfV8OkJo9fsJrJMio0eT5bks= | ||
3465 | dependencies: | 4840 | dependencies: |
3466 | colormin "^1.0.5" | 4841 | colormin "^1.0.5" |
3467 | postcss "^5.0.13" | 4842 | postcss "^5.0.13" |
@@ -3470,6 +4845,7 @@ postcss-colormin@^2.1.8: | |||
3470 | postcss-convert-values@^2.3.4: | 4845 | postcss-convert-values@^2.3.4: |
3471 | version "2.6.1" | 4846 | version "2.6.1" |
3472 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" | 4847 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" |
4848 | integrity sha1-u9hZPFwf0uPRwyK7kl3K6Nrk1i0= | ||
3473 | dependencies: | 4849 | dependencies: |
3474 | postcss "^5.0.11" | 4850 | postcss "^5.0.11" |
3475 | postcss-value-parser "^3.1.2" | 4851 | postcss-value-parser "^3.1.2" |
@@ -3477,86 +4853,80 @@ postcss-convert-values@^2.3.4: | |||
3477 | postcss-discard-comments@^2.0.4: | 4853 | postcss-discard-comments@^2.0.4: |
3478 | version "2.0.4" | 4854 | version "2.0.4" |
3479 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" | 4855 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" |
4856 | integrity sha1-vv6J+v1bPazlzM5Rt2uBUUvgDj0= | ||
3480 | dependencies: | 4857 | dependencies: |
3481 | postcss "^5.0.14" | 4858 | postcss "^5.0.14" |
3482 | 4859 | ||
3483 | postcss-discard-duplicates@^2.0.1: | 4860 | postcss-discard-duplicates@^2.0.1: |
3484 | version "2.1.0" | 4861 | version "2.1.0" |
3485 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932" | 4862 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932" |
4863 | integrity sha1-uavye4isGIFYpesSq8riAmO5GTI= | ||
3486 | dependencies: | 4864 | dependencies: |
3487 | postcss "^5.0.4" | 4865 | postcss "^5.0.4" |
3488 | 4866 | ||
3489 | postcss-discard-empty@^2.0.1: | 4867 | postcss-discard-empty@^2.0.1: |
3490 | version "2.1.0" | 4868 | version "2.1.0" |
3491 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" | 4869 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" |
4870 | integrity sha1-0rS9nVztXr2Nyt52QMfXzX9PkrU= | ||
3492 | dependencies: | 4871 | dependencies: |
3493 | postcss "^5.0.14" | 4872 | postcss "^5.0.14" |
3494 | 4873 | ||
3495 | postcss-discard-overridden@^0.1.1: | 4874 | postcss-discard-overridden@^0.1.1: |
3496 | version "0.1.1" | 4875 | version "0.1.1" |
3497 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" | 4876 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" |
4877 | integrity sha1-ix6vVU9ob7KIzYdMVWZ7CqNmjVg= | ||
3498 | dependencies: | 4878 | dependencies: |
3499 | postcss "^5.0.16" | 4879 | postcss "^5.0.16" |
3500 | 4880 | ||
3501 | postcss-discard-unused@^2.2.1: | 4881 | postcss-discard-unused@^2.2.1: |
3502 | version "2.2.3" | 4882 | version "2.2.3" |
3503 | resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" | 4883 | resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" |
4884 | integrity sha1-vOMLLMWR/8Y0Mitfs0ZLbZNPRDM= | ||
3504 | dependencies: | 4885 | dependencies: |
3505 | postcss "^5.0.14" | 4886 | postcss "^5.0.14" |
3506 | uniqs "^2.0.0" | 4887 | uniqs "^2.0.0" |
3507 | 4888 | ||
3508 | postcss-filter-plugins@^2.0.0: | 4889 | postcss-filter-plugins@^2.0.0: |
3509 | version "2.0.2" | 4890 | version "2.0.3" |
3510 | resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" | 4891 | resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz#82245fdf82337041645e477114d8e593aa18b8ec" |
4892 | integrity sha512-T53GVFsdinJhgwm7rg1BzbeBRomOg9y5MBVhGcsV0CxurUdVj1UlPdKtn7aqYA/c/QVkzKMjq2bSV5dKG5+AwQ== | ||
3511 | dependencies: | 4893 | dependencies: |
3512 | postcss "^5.0.4" | 4894 | postcss "^5.0.4" |
3513 | uniqid "^4.0.0" | ||
3514 | 4895 | ||
3515 | postcss-less@^0.14.0: | 4896 | postcss-less@^0.14.0: |
3516 | version "0.14.0" | 4897 | version "0.14.0" |
3517 | resolved "https://registry.yarnpkg.com/postcss-less/-/postcss-less-0.14.0.tgz#c631b089c6cce422b9a10f3a958d2bedd3819324" | 4898 | resolved "https://registry.yarnpkg.com/postcss-less/-/postcss-less-0.14.0.tgz#c631b089c6cce422b9a10f3a958d2bedd3819324" |
4899 | integrity sha1-xjGwicbM5CK5oQ86lY0r7dOBkyQ= | ||
3518 | dependencies: | 4900 | dependencies: |
3519 | postcss "^5.0.21" | 4901 | postcss "^5.0.21" |
3520 | 4902 | ||
3521 | postcss-load-config@^1.x: | 4903 | postcss-load-config@^2.0.0: |
3522 | version "1.2.0" | 4904 | version "2.0.0" |
3523 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a" | 4905 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.0.0.tgz#f1312ddbf5912cd747177083c5ef7a19d62ee484" |
3524 | dependencies: | 4906 | integrity sha512-V5JBLzw406BB8UIfsAWSK2KSwIJ5yoEIVFb4gVkXci0QdKgA24jLmHZ/ghe/GgX0lJ0/D1uUK1ejhzEY94MChQ== |
3525 | cosmiconfig "^2.1.0" | ||
3526 | object-assign "^4.1.0" | ||
3527 | postcss-load-options "^1.2.0" | ||
3528 | postcss-load-plugins "^2.3.0" | ||
3529 | |||
3530 | postcss-load-options@^1.2.0: | ||
3531 | version "1.2.0" | ||
3532 | resolved "https://registry.yarnpkg.com/postcss-load-options/-/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c" | ||
3533 | dependencies: | 4907 | dependencies: |
3534 | cosmiconfig "^2.1.0" | 4908 | cosmiconfig "^4.0.0" |
3535 | object-assign "^4.1.0" | 4909 | import-cwd "^2.0.0" |
3536 | |||
3537 | postcss-load-plugins@^2.3.0: | ||
3538 | version "2.3.0" | ||
3539 | resolved "https://registry.yarnpkg.com/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92" | ||
3540 | dependencies: | ||
3541 | cosmiconfig "^2.1.1" | ||
3542 | object-assign "^4.1.0" | ||
3543 | 4910 | ||
3544 | postcss-loader@^2.0.5: | 4911 | postcss-loader@^2.0.5: |
3545 | version "2.0.5" | 4912 | version "2.1.6" |
3546 | resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-2.0.5.tgz#c19d3e8b83eb1ac316f5621ef4c0ef5b3d1b8b3a" | 4913 | resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-2.1.6.tgz#1d7dd7b17c6ba234b9bed5af13e0bea40a42d740" |
4914 | integrity sha512-hgiWSc13xVQAq25cVw80CH0l49ZKlAnU1hKPOdRrNj89bokRr/bZF2nT+hebPPF9c9xs8c3gw3Fr2nxtmXYnNg== | ||
3547 | dependencies: | 4915 | dependencies: |
3548 | loader-utils "^1.x" | 4916 | loader-utils "^1.1.0" |
3549 | postcss "^6.x" | 4917 | postcss "^6.0.0" |
3550 | postcss-load-config "^1.x" | 4918 | postcss-load-config "^2.0.0" |
3551 | schema-utils "^0.x" | 4919 | schema-utils "^0.4.0" |
3552 | 4920 | ||
3553 | postcss-media-query-parser@^0.2.0: | 4921 | postcss-media-query-parser@^0.2.0: |
3554 | version "0.2.3" | 4922 | version "0.2.3" |
3555 | resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244" | 4923 | resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244" |
4924 | integrity sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ= | ||
3556 | 4925 | ||
3557 | postcss-merge-idents@^2.1.5: | 4926 | postcss-merge-idents@^2.1.5: |
3558 | version "2.1.7" | 4927 | version "2.1.7" |
3559 | resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" | 4928 | resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" |
4929 | integrity sha1-TFUwMTwI4dWzu/PSu8dH4njuonA= | ||
3560 | dependencies: | 4930 | dependencies: |
3561 | has "^1.0.1" | 4931 | has "^1.0.1" |
3562 | postcss "^5.0.10" | 4932 | postcss "^5.0.10" |
@@ -3565,12 +4935,14 @@ postcss-merge-idents@^2.1.5: | |||
3565 | postcss-merge-longhand@^2.0.1: | 4935 | postcss-merge-longhand@^2.0.1: |
3566 | version "2.0.2" | 4936 | version "2.0.2" |
3567 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" | 4937 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" |
4938 | integrity sha1-I9kM0Sewp3mUkVMyc5A0oaTz1lg= | ||
3568 | dependencies: | 4939 | dependencies: |
3569 | postcss "^5.0.4" | 4940 | postcss "^5.0.4" |
3570 | 4941 | ||
3571 | postcss-merge-rules@^2.0.3: | 4942 | postcss-merge-rules@^2.0.3: |
3572 | version "2.1.2" | 4943 | version "2.1.2" |
3573 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721" | 4944 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721" |
4945 | integrity sha1-0d9d+qexrMO+VT8OnhDofGG19yE= | ||
3574 | dependencies: | 4946 | dependencies: |
3575 | browserslist "^1.5.2" | 4947 | browserslist "^1.5.2" |
3576 | caniuse-api "^1.5.2" | 4948 | caniuse-api "^1.5.2" |
@@ -3581,10 +4953,12 @@ postcss-merge-rules@^2.0.3: | |||
3581 | postcss-message-helpers@^2.0.0: | 4953 | postcss-message-helpers@^2.0.0: |
3582 | version "2.0.0" | 4954 | version "2.0.0" |
3583 | resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" | 4955 | resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" |
4956 | integrity sha1-pPL0+rbk/gAvCu0ABHjN9S+bpg4= | ||
3584 | 4957 | ||
3585 | postcss-minify-font-values@^1.0.2: | 4958 | postcss-minify-font-values@^1.0.2: |
3586 | version "1.0.5" | 4959 | version "1.0.5" |
3587 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" | 4960 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" |
4961 | integrity sha1-S1jttWZB66fIR0qzUmyv17vey2k= | ||
3588 | dependencies: | 4962 | dependencies: |
3589 | object-assign "^4.0.1" | 4963 | object-assign "^4.0.1" |
3590 | postcss "^5.0.4" | 4964 | postcss "^5.0.4" |
@@ -3593,6 +4967,7 @@ postcss-minify-font-values@^1.0.2: | |||
3593 | postcss-minify-gradients@^1.0.1: | 4967 | postcss-minify-gradients@^1.0.1: |
3594 | version "1.0.5" | 4968 | version "1.0.5" |
3595 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" | 4969 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" |
4970 | integrity sha1-Xb2hE3NwP4PPtKPqOIHY11/15uE= | ||
3596 | dependencies: | 4971 | dependencies: |
3597 | postcss "^5.0.12" | 4972 | postcss "^5.0.12" |
3598 | postcss-value-parser "^3.3.0" | 4973 | postcss-value-parser "^3.3.0" |
@@ -3600,6 +4975,7 @@ postcss-minify-gradients@^1.0.1: | |||
3600 | postcss-minify-params@^1.0.4: | 4975 | postcss-minify-params@^1.0.4: |
3601 | version "1.2.2" | 4976 | version "1.2.2" |
3602 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" | 4977 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" |
4978 | integrity sha1-rSzgcTc7lDs9kwo/pZo1jCjW8fM= | ||
3603 | dependencies: | 4979 | dependencies: |
3604 | alphanum-sort "^1.0.1" | 4980 | alphanum-sort "^1.0.1" |
3605 | postcss "^5.0.2" | 4981 | postcss "^5.0.2" |
@@ -3609,35 +4985,40 @@ postcss-minify-params@^1.0.4: | |||
3609 | postcss-minify-selectors@^2.0.4: | 4985 | postcss-minify-selectors@^2.0.4: |
3610 | version "2.1.1" | 4986 | version "2.1.1" |
3611 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" | 4987 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" |
4988 | integrity sha1-ssapjAByz5G5MtGkllCBFDEXNb8= | ||
3612 | dependencies: | 4989 | dependencies: |
3613 | alphanum-sort "^1.0.2" | 4990 | alphanum-sort "^1.0.2" |
3614 | has "^1.0.1" | 4991 | has "^1.0.1" |
3615 | postcss "^5.0.14" | 4992 | postcss "^5.0.14" |
3616 | postcss-selector-parser "^2.0.0" | 4993 | postcss-selector-parser "^2.0.0" |
3617 | 4994 | ||
3618 | postcss-modules-extract-imports@^1.0.0: | 4995 | postcss-modules-extract-imports@^1.2.0: |
3619 | version "1.2.0" | 4996 | version "1.2.1" |
3620 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz#66140ecece38ef06bf0d3e355d69bf59d141ea85" | 4997 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz#dc87e34148ec7eab5f791f7cd5849833375b741a" |
4998 | integrity sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw== | ||
3621 | dependencies: | 4999 | dependencies: |
3622 | postcss "^6.0.1" | 5000 | postcss "^6.0.1" |
3623 | 5001 | ||
3624 | postcss-modules-local-by-default@^1.0.1: | 5002 | postcss-modules-local-by-default@^1.2.0: |
3625 | version "1.2.0" | 5003 | version "1.2.0" |
3626 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" | 5004 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" |
5005 | integrity sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk= | ||
3627 | dependencies: | 5006 | dependencies: |
3628 | css-selector-tokenizer "^0.7.0" | 5007 | css-selector-tokenizer "^0.7.0" |
3629 | postcss "^6.0.1" | 5008 | postcss "^6.0.1" |
3630 | 5009 | ||
3631 | postcss-modules-scope@^1.0.0: | 5010 | postcss-modules-scope@^1.1.0: |
3632 | version "1.1.0" | 5011 | version "1.1.0" |
3633 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" | 5012 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" |
5013 | integrity sha1-1upkmUx5+XtipytCb75gVqGUu5A= | ||
3634 | dependencies: | 5014 | dependencies: |
3635 | css-selector-tokenizer "^0.7.0" | 5015 | css-selector-tokenizer "^0.7.0" |
3636 | postcss "^6.0.1" | 5016 | postcss "^6.0.1" |
3637 | 5017 | ||
3638 | postcss-modules-values@^1.1.0: | 5018 | postcss-modules-values@^1.3.0: |
3639 | version "1.3.0" | 5019 | version "1.3.0" |
3640 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" | 5020 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" |
5021 | integrity sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA= | ||
3641 | dependencies: | 5022 | dependencies: |
3642 | icss-replace-symbols "^1.1.0" | 5023 | icss-replace-symbols "^1.1.0" |
3643 | postcss "^6.0.1" | 5024 | postcss "^6.0.1" |
@@ -3645,12 +5026,14 @@ postcss-modules-values@^1.1.0: | |||
3645 | postcss-normalize-charset@^1.1.0: | 5026 | postcss-normalize-charset@^1.1.0: |
3646 | version "1.1.1" | 5027 | version "1.1.1" |
3647 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" | 5028 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" |
5029 | integrity sha1-757nEhLX/nWceO0WL2HtYrXLk/E= | ||
3648 | dependencies: | 5030 | dependencies: |
3649 | postcss "^5.0.5" | 5031 | postcss "^5.0.5" |
3650 | 5032 | ||
3651 | postcss-normalize-url@^3.0.7: | 5033 | postcss-normalize-url@^3.0.7: |
3652 | version "3.0.8" | 5034 | version "3.0.8" |
3653 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" | 5035 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" |
5036 | integrity sha1-EI90s/L82viRov+j6kWSJ5/HgiI= | ||
3654 | dependencies: | 5037 | dependencies: |
3655 | is-absolute-url "^2.0.0" | 5038 | is-absolute-url "^2.0.0" |
3656 | normalize-url "^1.4.0" | 5039 | normalize-url "^1.4.0" |
@@ -3660,6 +5043,7 @@ postcss-normalize-url@^3.0.7: | |||
3660 | postcss-ordered-values@^2.1.0: | 5043 | postcss-ordered-values@^2.1.0: |
3661 | version "2.2.3" | 5044 | version "2.2.3" |
3662 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" | 5045 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" |
5046 | integrity sha1-7sbCpntsQSqNsgQud/6NpD+VwR0= | ||
3663 | dependencies: | 5047 | dependencies: |
3664 | postcss "^5.0.4" | 5048 | postcss "^5.0.4" |
3665 | postcss-value-parser "^3.0.1" | 5049 | postcss-value-parser "^3.0.1" |
@@ -3667,6 +5051,7 @@ postcss-ordered-values@^2.1.0: | |||
3667 | postcss-reduce-idents@^2.2.2: | 5051 | postcss-reduce-idents@^2.2.2: |
3668 | version "2.4.0" | 5052 | version "2.4.0" |
3669 | resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" | 5053 | resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" |
5054 | integrity sha1-wsbSDMlYKE9qv75j92Cb9AkFmtM= | ||
3670 | dependencies: | 5055 | dependencies: |
3671 | postcss "^5.0.4" | 5056 | postcss "^5.0.4" |
3672 | postcss-value-parser "^3.0.2" | 5057 | postcss-value-parser "^3.0.2" |
@@ -3674,12 +5059,14 @@ postcss-reduce-idents@^2.2.2: | |||
3674 | postcss-reduce-initial@^1.0.0: | 5059 | postcss-reduce-initial@^1.0.0: |
3675 | version "1.0.1" | 5060 | version "1.0.1" |
3676 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" | 5061 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" |
5062 | integrity sha1-aPgGlfBF0IJjqHmtJA343WT2ROo= | ||
3677 | dependencies: | 5063 | dependencies: |
3678 | postcss "^5.0.4" | 5064 | postcss "^5.0.4" |
3679 | 5065 | ||
3680 | postcss-reduce-transforms@^1.0.3: | 5066 | postcss-reduce-transforms@^1.0.3: |
3681 | version "1.0.4" | 5067 | version "1.0.4" |
3682 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" | 5068 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" |
5069 | integrity sha1-/3b02CEkN7McKYpC0uFEQCV3GuE= | ||
3683 | dependencies: | 5070 | dependencies: |
3684 | has "^1.0.1" | 5071 | has "^1.0.1" |
3685 | postcss "^5.0.8" | 5072 | postcss "^5.0.8" |
@@ -3688,6 +5075,7 @@ postcss-reduce-transforms@^1.0.3: | |||
3688 | postcss-reporter@^1.2.1, postcss-reporter@^1.3.3: | 5075 | postcss-reporter@^1.2.1, postcss-reporter@^1.3.3: |
3689 | version "1.4.1" | 5076 | version "1.4.1" |
3690 | resolved "https://registry.yarnpkg.com/postcss-reporter/-/postcss-reporter-1.4.1.tgz#c136f0a5b161915f379dd3765c61075f7e7b9af2" | 5077 | resolved "https://registry.yarnpkg.com/postcss-reporter/-/postcss-reporter-1.4.1.tgz#c136f0a5b161915f379dd3765c61075f7e7b9af2" |
5078 | integrity sha1-wTbwpbFhkV83ndN2XGEHX357mvI= | ||
3691 | dependencies: | 5079 | dependencies: |
3692 | chalk "^1.0.0" | 5080 | chalk "^1.0.0" |
3693 | lodash "^4.1.0" | 5081 | lodash "^4.1.0" |
@@ -3697,6 +5085,7 @@ postcss-reporter@^1.2.1, postcss-reporter@^1.3.3: | |||
3697 | postcss-reporter@^3.0.0: | 5085 | postcss-reporter@^3.0.0: |
3698 | version "3.0.0" | 5086 | version "3.0.0" |
3699 | resolved "https://registry.yarnpkg.com/postcss-reporter/-/postcss-reporter-3.0.0.tgz#09ea0f37a444c5693878606e09b018ebeff7cf8f" | 5087 | resolved "https://registry.yarnpkg.com/postcss-reporter/-/postcss-reporter-3.0.0.tgz#09ea0f37a444c5693878606e09b018ebeff7cf8f" |
5088 | integrity sha1-CeoPN6RExWk4eGBuCbAY6+/3z48= | ||
3700 | dependencies: | 5089 | dependencies: |
3701 | chalk "^1.0.0" | 5090 | chalk "^1.0.0" |
3702 | lodash "^4.1.0" | 5091 | lodash "^4.1.0" |
@@ -3706,16 +5095,19 @@ postcss-reporter@^3.0.0: | |||
3706 | postcss-resolve-nested-selector@^0.1.1: | 5095 | postcss-resolve-nested-selector@^0.1.1: |
3707 | version "0.1.1" | 5096 | version "0.1.1" |
3708 | resolved "https://registry.yarnpkg.com/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz#29ccbc7c37dedfac304e9fff0bf1596b3f6a0e4e" | 5097 | resolved "https://registry.yarnpkg.com/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz#29ccbc7c37dedfac304e9fff0bf1596b3f6a0e4e" |
5098 | integrity sha1-Kcy8fDfe36wwTp//C/FZaz9qDk4= | ||
3709 | 5099 | ||
3710 | postcss-scss@^0.4.0: | 5100 | postcss-scss@^0.4.0: |
3711 | version "0.4.1" | 5101 | version "0.4.1" |
3712 | resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-0.4.1.tgz#ad771b81f0f72f5f4845d08aa60f93557653d54c" | 5102 | resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-0.4.1.tgz#ad771b81f0f72f5f4845d08aa60f93557653d54c" |
5103 | integrity sha1-rXcbgfD3L19IRdCKpg+TVXZT1Uw= | ||
3713 | dependencies: | 5104 | dependencies: |
3714 | postcss "^5.2.13" | 5105 | postcss "^5.2.13" |
3715 | 5106 | ||
3716 | postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.1.1, postcss-selector-parser@^2.2.2: | 5107 | postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.1.1, postcss-selector-parser@^2.2.2: |
3717 | version "2.2.3" | 5108 | version "2.2.3" |
3718 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90" | 5109 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90" |
5110 | integrity sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A= | ||
3719 | dependencies: | 5111 | dependencies: |
3720 | flatten "^1.0.2" | 5112 | flatten "^1.0.2" |
3721 | indexes-of "^1.0.1" | 5113 | indexes-of "^1.0.1" |
@@ -3724,6 +5116,7 @@ postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.1.1, postcss-selector | |||
3724 | postcss-svgo@^2.1.1: | 5116 | postcss-svgo@^2.1.1: |
3725 | version "2.1.6" | 5117 | version "2.1.6" |
3726 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" | 5118 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" |
5119 | integrity sha1-tt8YqmE7Zm4TPwittSGcJoSsEI0= | ||
3727 | dependencies: | 5120 | dependencies: |
3728 | is-svg "^2.0.0" | 5121 | is-svg "^2.0.0" |
3729 | postcss "^5.0.14" | 5122 | postcss "^5.0.14" |
@@ -3733,116 +5126,149 @@ postcss-svgo@^2.1.1: | |||
3733 | postcss-unique-selectors@^2.0.2: | 5126 | postcss-unique-selectors@^2.0.2: |
3734 | version "2.0.2" | 5127 | version "2.0.2" |
3735 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" | 5128 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" |
5129 | integrity sha1-mB1X0p3csz57Hf4f1DuGSfkzyh0= | ||
3736 | dependencies: | 5130 | dependencies: |
3737 | alphanum-sort "^1.0.1" | 5131 | alphanum-sort "^1.0.1" |
3738 | postcss "^5.0.4" | 5132 | postcss "^5.0.4" |
3739 | uniqs "^2.0.0" | 5133 | uniqs "^2.0.0" |
3740 | 5134 | ||
3741 | postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0: | 5135 | postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0: |
3742 | version "3.3.0" | 5136 | version "3.3.1" |
3743 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" | 5137 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" |
5138 | integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== | ||
3744 | 5139 | ||
3745 | postcss-zindex@^2.0.1: | 5140 | postcss-zindex@^2.0.1: |
3746 | version "2.2.0" | 5141 | version "2.2.0" |
3747 | resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" | 5142 | resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" |
5143 | integrity sha1-0hCd3AVbka9n/EyzsCWUZjnSryI= | ||
3748 | dependencies: | 5144 | dependencies: |
3749 | has "^1.0.1" | 5145 | has "^1.0.1" |
3750 | postcss "^5.0.4" | 5146 | postcss "^5.0.4" |
3751 | uniqs "^2.0.0" | 5147 | uniqs "^2.0.0" |
3752 | 5148 | ||
3753 | postcss@^5.0.0, postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.18, postcss@^5.0.2, postcss@^5.0.20, postcss@^5.0.21, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.13, postcss@^5.2.16, postcss@^5.2.4: | 5149 | postcss@^5.0.0, postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.18, postcss@^5.0.2, postcss@^5.0.20, postcss@^5.0.21, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.13, postcss@^5.2.16, postcss@^5.2.4: |
3754 | version "5.2.17" | 5150 | version "5.2.18" |
3755 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.17.tgz#cf4f597b864d65c8a492b2eabe9d706c879c388b" | 5151 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" |
5152 | integrity sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg== | ||
3756 | dependencies: | 5153 | dependencies: |
3757 | chalk "^1.1.3" | 5154 | chalk "^1.1.3" |
3758 | js-base64 "^2.1.9" | 5155 | js-base64 "^2.1.9" |
3759 | source-map "^0.5.6" | 5156 | source-map "^0.5.6" |
3760 | supports-color "^3.2.3" | 5157 | supports-color "^3.2.3" |
3761 | 5158 | ||
3762 | postcss@^6.0.1, postcss@^6.x: | 5159 | postcss@^6.0.0, postcss@^6.0.1, postcss@^6.0.17: |
3763 | version "6.0.2" | 5160 | version "6.0.23" |
3764 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.2.tgz#5c4fea589f0ac3b00caa75b1cbc3a284195b7e5d" | 5161 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" |
5162 | integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag== | ||
3765 | dependencies: | 5163 | dependencies: |
3766 | chalk "^1.1.3" | 5164 | chalk "^2.4.1" |
3767 | source-map "^0.5.6" | 5165 | source-map "^0.6.1" |
3768 | supports-color "^3.2.3" | 5166 | supports-color "^5.4.0" |
3769 | 5167 | ||
3770 | prelude-ls@~1.1.2: | 5168 | prelude-ls@~1.1.2: |
3771 | version "1.1.2" | 5169 | version "1.1.2" |
3772 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" | 5170 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" |
5171 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= | ||
3773 | 5172 | ||
3774 | prepend-http@^1.0.0: | 5173 | prepend-http@^1.0.0: |
3775 | version "1.0.4" | 5174 | version "1.0.4" |
3776 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" | 5175 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" |
5176 | integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= | ||
3777 | 5177 | ||
3778 | preserve@^0.2.0: | 5178 | preserve@^0.2.0: |
3779 | version "0.2.0" | 5179 | version "0.2.0" |
3780 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" | 5180 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" |
5181 | integrity sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks= | ||
3781 | 5182 | ||
3782 | private@^0.1.6: | 5183 | private@^0.1.6, private@^0.1.8: |
3783 | version "0.1.7" | 5184 | version "0.1.8" |
3784 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" | 5185 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" |
5186 | integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== | ||
3785 | 5187 | ||
3786 | process-nextick-args@~1.0.6: | 5188 | process-nextick-args@~2.0.0: |
3787 | version "1.0.7" | 5189 | version "2.0.0" |
3788 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" | 5190 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" |
5191 | integrity sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw== | ||
3789 | 5192 | ||
3790 | process@^0.11.0: | 5193 | process@^0.11.10: |
3791 | version "0.11.10" | 5194 | version "0.11.10" |
3792 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" | 5195 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" |
5196 | integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= | ||
3793 | 5197 | ||
3794 | progress@^2.0.0: | 5198 | progress@^2.0.0: |
3795 | version "2.0.0" | 5199 | version "2.0.1" |
3796 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" | 5200 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.1.tgz#c9242169342b1c29d275889c95734621b1952e31" |
5201 | integrity sha512-OE+a6vzqazc+K6LxJrX5UPyKFvGnL5CYmq2jFGNIBWHpc4QyE49/YOumcrpQFJpfejmvRtbJzgO1zPmMCqlbBg== | ||
3797 | 5202 | ||
3798 | proxy-addr@~1.1.4: | 5203 | proxy-addr@~2.0.4: |
3799 | version "1.1.4" | 5204 | version "2.0.4" |
3800 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.4.tgz#27e545f6960a44a627d9b44467e35c1b6b4ce2f3" | 5205 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.4.tgz#ecfc733bf22ff8c6f407fa275327b9ab67e48b93" |
5206 | integrity sha512-5erio2h9jp5CHGwcybmxmVqHmnCBZeewlfJ0pex+UW7Qny7OOZXTtH56TGNyBizkgiOwhJtMKrVzDTeKcySZwA== | ||
3801 | dependencies: | 5207 | dependencies: |
3802 | forwarded "~0.1.0" | 5208 | forwarded "~0.1.2" |
3803 | ipaddr.js "1.3.0" | 5209 | ipaddr.js "1.8.0" |
3804 | 5210 | ||
3805 | prr@~0.0.0: | 5211 | prr@~1.0.1: |
3806 | version "0.0.0" | 5212 | version "1.0.1" |
3807 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" | 5213 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" |
5214 | integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= | ||
3808 | 5215 | ||
3809 | pseudomap@^1.0.2: | 5216 | pseudomap@^1.0.2: |
3810 | version "1.0.2" | 5217 | version "1.0.2" |
3811 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" | 5218 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" |
5219 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= | ||
5220 | |||
5221 | psl@^1.1.24: | ||
5222 | version "1.1.29" | ||
5223 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.29.tgz#60f580d360170bb722a797cc704411e6da850c67" | ||
5224 | integrity sha512-AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ== | ||
3812 | 5225 | ||
3813 | ptsans-npm-webfont@^0.0.4: | 5226 | ptsans-npm-webfont@^0.0.4: |
3814 | version "0.0.4" | 5227 | version "0.0.4" |
3815 | resolved "https://registry.yarnpkg.com/ptsans-npm-webfont/-/ptsans-npm-webfont-0.0.4.tgz#c0232128200c130d188bb490301fdeb00a041138" | 5228 | resolved "https://registry.yarnpkg.com/ptsans-npm-webfont/-/ptsans-npm-webfont-0.0.4.tgz#c0232128200c130d188bb490301fdeb00a041138" |
5229 | integrity sha1-wCMhKCAMEw0Yi7SQMB/esAoEETg= | ||
3816 | 5230 | ||
3817 | public-encrypt@^4.0.0: | 5231 | public-encrypt@^4.0.0: |
3818 | version "4.0.0" | 5232 | version "4.0.3" |
3819 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" | 5233 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" |
5234 | integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== | ||
3820 | dependencies: | 5235 | dependencies: |
3821 | bn.js "^4.1.0" | 5236 | bn.js "^4.1.0" |
3822 | browserify-rsa "^4.0.0" | 5237 | browserify-rsa "^4.0.0" |
3823 | create-hash "^1.1.0" | 5238 | create-hash "^1.1.0" |
3824 | parse-asn1 "^5.0.0" | 5239 | parse-asn1 "^5.0.0" |
3825 | randombytes "^2.0.1" | 5240 | randombytes "^2.0.1" |
5241 | safe-buffer "^5.1.2" | ||
3826 | 5242 | ||
3827 | punycode@1.3.2: | 5243 | punycode@1.3.2: |
3828 | version "1.3.2" | 5244 | version "1.3.2" |
3829 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" | 5245 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" |
5246 | integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= | ||
3830 | 5247 | ||
3831 | punycode@^1.2.4, punycode@^1.4.1: | 5248 | punycode@^1.2.4, punycode@^1.4.1: |
3832 | version "1.4.1" | 5249 | version "1.4.1" |
3833 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" | 5250 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" |
5251 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= | ||
5252 | |||
5253 | punycode@^2.1.0: | ||
5254 | version "2.1.1" | ||
5255 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" | ||
5256 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== | ||
3834 | 5257 | ||
3835 | q@^1.1.2: | 5258 | q@^1.1.2: |
3836 | version "1.5.0" | 5259 | version "1.5.1" |
3837 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" | 5260 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" |
5261 | integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= | ||
3838 | 5262 | ||
3839 | qs@6.4.0, qs@~6.4.0: | 5263 | qs@6.5.2, qs@~6.5.2: |
3840 | version "6.4.0" | 5264 | version "6.5.2" |
3841 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" | 5265 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" |
5266 | integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== | ||
3842 | 5267 | ||
3843 | query-string@^4.1.0: | 5268 | query-string@^4.1.0: |
3844 | version "4.3.4" | 5269 | version "4.3.4" |
3845 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" | 5270 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" |
5271 | integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s= | ||
3846 | dependencies: | 5272 | dependencies: |
3847 | object-assign "^4.1.0" | 5273 | object-assign "^4.1.0" |
3848 | strict-uri-encode "^1.0.0" | 5274 | strict-uri-encode "^1.0.0" |
@@ -3850,45 +5276,68 @@ query-string@^4.1.0: | |||
3850 | querystring-es3@^0.2.0: | 5276 | querystring-es3@^0.2.0: |
3851 | version "0.2.1" | 5277 | version "0.2.1" |
3852 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" | 5278 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" |
5279 | integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= | ||
3853 | 5280 | ||
3854 | querystring@0.2.0: | 5281 | querystring@0.2.0: |
3855 | version "0.2.0" | 5282 | version "0.2.0" |
3856 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" | 5283 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" |
5284 | integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= | ||
3857 | 5285 | ||
3858 | querystringify@0.0.x: | 5286 | querystringify@^2.0.0: |
3859 | version "0.0.4" | 5287 | version "2.1.0" |
3860 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-0.0.4.tgz#0cf7f84f9463ff0ae51c4c4b142d95be37724d9c" | 5288 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.0.tgz#7ded8dfbf7879dcc60d0a644ac6754b283ad17ef" |
5289 | integrity sha512-sluvZZ1YiTLD5jsqZcDmFyV2EwToyXZBfpoVOmktMmW+VEnhgakFHnasVph65fOjGPTWN0Nw3+XQaSeMayr0kg== | ||
3861 | 5290 | ||
3862 | querystringify@~1.0.0: | 5291 | ramda@^0.24.1: |
3863 | version "1.0.0" | 5292 | version "0.24.1" |
3864 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-1.0.0.tgz#6286242112c5b712fa654e526652bf6a13ff05cb" | 5293 | resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.24.1.tgz#c3b7755197f35b8dc3502228262c4c91ddb6b857" |
5294 | integrity sha1-w7d1UZfzW43DUCIoJixMkd22uFc= | ||
3865 | 5295 | ||
3866 | ramda@^0.23.0: | 5296 | randomatic@^3.0.0: |
3867 | version "0.23.0" | 5297 | version "3.1.1" |
3868 | resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.23.0.tgz#ccd13fff73497a93974e3e86327bfd87bd6e8e2b" | 5298 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed" |
5299 | integrity sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw== | ||
5300 | dependencies: | ||
5301 | is-number "^4.0.0" | ||
5302 | kind-of "^6.0.0" | ||
5303 | math-random "^1.0.1" | ||
3869 | 5304 | ||
3870 | randomatic@^1.1.3: | 5305 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: |
3871 | version "1.1.7" | 5306 | version "2.0.6" |
3872 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" | 5307 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80" |
5308 | integrity sha512-CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A== | ||
3873 | dependencies: | 5309 | dependencies: |
3874 | is-number "^3.0.0" | 5310 | safe-buffer "^5.1.0" |
3875 | kind-of "^4.0.0" | ||
3876 | 5311 | ||
3877 | randombytes@^2.0.0, randombytes@^2.0.1: | 5312 | randomfill@^1.0.3: |
3878 | version "2.0.5" | 5313 | version "1.0.4" |
3879 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" | 5314 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" |
5315 | integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== | ||
3880 | dependencies: | 5316 | dependencies: |
5317 | randombytes "^2.0.5" | ||
3881 | safe-buffer "^5.1.0" | 5318 | safe-buffer "^5.1.0" |
3882 | 5319 | ||
3883 | range-parser@^1.0.3, range-parser@~1.2.0: | 5320 | range-parser@^1.0.3, range-parser@~1.2.0: |
3884 | version "1.2.0" | 5321 | version "1.2.0" |
3885 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" | 5322 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" |
5323 | integrity sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4= | ||
3886 | 5324 | ||
3887 | rc@^1.1.7: | 5325 | raw-body@2.3.3: |
3888 | version "1.2.1" | 5326 | version "2.3.3" |
3889 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" | 5327 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.3.tgz#1b324ece6b5706e153855bc1148c65bb7f6ea0c3" |
5328 | integrity sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw== | ||
5329 | dependencies: | ||
5330 | bytes "3.0.0" | ||
5331 | http-errors "1.6.3" | ||
5332 | iconv-lite "0.4.23" | ||
5333 | unpipe "1.0.0" | ||
5334 | |||
5335 | rc@^1.2.7: | ||
5336 | version "1.2.8" | ||
5337 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" | ||
5338 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== | ||
3890 | dependencies: | 5339 | dependencies: |
3891 | deep-extend "~0.4.0" | 5340 | deep-extend "^0.6.0" |
3892 | ini "~1.3.0" | 5341 | ini "~1.3.0" |
3893 | minimist "^1.2.0" | 5342 | minimist "^1.2.0" |
3894 | strip-json-comments "~2.0.1" | 5343 | strip-json-comments "~2.0.1" |
@@ -3896,12 +5345,14 @@ rc@^1.1.7: | |||
3896 | read-file-stdin@^0.2.1: | 5345 | read-file-stdin@^0.2.1: |
3897 | version "0.2.1" | 5346 | version "0.2.1" |
3898 | resolved "https://registry.yarnpkg.com/read-file-stdin/-/read-file-stdin-0.2.1.tgz#25eccff3a153b6809afacb23ee15387db9e0ee61" | 5347 | resolved "https://registry.yarnpkg.com/read-file-stdin/-/read-file-stdin-0.2.1.tgz#25eccff3a153b6809afacb23ee15387db9e0ee61" |
5348 | integrity sha1-JezP86FTtoCa+ssj7hU4fbng7mE= | ||
3899 | dependencies: | 5349 | dependencies: |
3900 | gather-stream "^1.0.0" | 5350 | gather-stream "^1.0.0" |
3901 | 5351 | ||
3902 | read-pkg-up@^1.0.1: | 5352 | read-pkg-up@^1.0.1: |
3903 | version "1.0.1" | 5353 | version "1.0.1" |
3904 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" | 5354 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" |
5355 | integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= | ||
3905 | dependencies: | 5356 | dependencies: |
3906 | find-up "^1.0.0" | 5357 | find-up "^1.0.0" |
3907 | read-pkg "^1.0.0" | 5358 | read-pkg "^1.0.0" |
@@ -3909,6 +5360,7 @@ read-pkg-up@^1.0.1: | |||
3909 | read-pkg-up@^2.0.0: | 5360 | read-pkg-up@^2.0.0: |
3910 | version "2.0.0" | 5361 | version "2.0.0" |
3911 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" | 5362 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" |
5363 | integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= | ||
3912 | dependencies: | 5364 | dependencies: |
3913 | find-up "^2.0.0" | 5365 | find-up "^2.0.0" |
3914 | read-pkg "^2.0.0" | 5366 | read-pkg "^2.0.0" |
@@ -3916,6 +5368,7 @@ read-pkg-up@^2.0.0: | |||
3916 | read-pkg@^1.0.0: | 5368 | read-pkg@^1.0.0: |
3917 | version "1.1.0" | 5369 | version "1.1.0" |
3918 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" | 5370 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" |
5371 | integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= | ||
3919 | dependencies: | 5372 | dependencies: |
3920 | load-json-file "^1.0.0" | 5373 | load-json-file "^1.0.0" |
3921 | normalize-package-data "^2.3.2" | 5374 | normalize-package-data "^2.3.2" |
@@ -3924,6 +5377,7 @@ read-pkg@^1.0.0: | |||
3924 | read-pkg@^2.0.0: | 5377 | read-pkg@^2.0.0: |
3925 | version "2.0.0" | 5378 | version "2.0.0" |
3926 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" | 5379 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" |
5380 | integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= | ||
3927 | dependencies: | 5381 | dependencies: |
3928 | load-json-file "^2.0.0" | 5382 | load-json-file "^2.0.0" |
3929 | normalize-package-data "^2.3.2" | 5383 | normalize-package-data "^2.3.2" |
@@ -3932,6 +5386,7 @@ read-pkg@^2.0.0: | |||
3932 | "readable-stream@>=1.0.33-1 <1.1.0-0": | 5386 | "readable-stream@>=1.0.33-1 <1.1.0-0": |
3933 | version "1.0.34" | 5387 | version "1.0.34" |
3934 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" | 5388 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" |
5389 | integrity sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw= | ||
3935 | dependencies: | 5390 | dependencies: |
3936 | core-util-is "~1.0.0" | 5391 | core-util-is "~1.0.0" |
3937 | inherits "~2.0.1" | 5392 | inherits "~2.0.1" |
@@ -3941,36 +5396,39 @@ read-pkg@^2.0.0: | |||
3941 | readable-stream@^1.0.33, readable-stream@~1.1.9: | 5396 | readable-stream@^1.0.33, readable-stream@~1.1.9: |
3942 | version "1.1.14" | 5397 | version "1.1.14" |
3943 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" | 5398 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" |
5399 | integrity sha1-fPTFTvZI44EwhMY23SB54WbAgdk= | ||
3944 | dependencies: | 5400 | dependencies: |
3945 | core-util-is "~1.0.0" | 5401 | core-util-is "~1.0.0" |
3946 | inherits "~2.0.1" | 5402 | inherits "~2.0.1" |
3947 | isarray "0.0.1" | 5403 | isarray "0.0.1" |
3948 | string_decoder "~0.10.x" | 5404 | string_decoder "~0.10.x" |
3949 | 5405 | ||
3950 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2, readable-stream@^2.2.6, readable-stream@^2.2.9: | 5406 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.2.2, readable-stream@^2.2.9, readable-stream@^2.3.3, readable-stream@^2.3.6: |
3951 | version "2.2.11" | 5407 | version "2.3.6" |
3952 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.11.tgz#0796b31f8d7688007ff0b93a8088d34aa17c0f72" | 5408 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" |
5409 | integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== | ||
3953 | dependencies: | 5410 | dependencies: |
3954 | core-util-is "~1.0.0" | 5411 | core-util-is "~1.0.0" |
3955 | inherits "~2.0.1" | 5412 | inherits "~2.0.3" |
3956 | isarray "~1.0.0" | 5413 | isarray "~1.0.0" |
3957 | process-nextick-args "~1.0.6" | 5414 | process-nextick-args "~2.0.0" |
3958 | safe-buffer "~5.0.1" | 5415 | safe-buffer "~5.1.1" |
3959 | string_decoder "~1.0.0" | 5416 | string_decoder "~1.1.1" |
3960 | util-deprecate "~1.0.1" | 5417 | util-deprecate "~1.0.1" |
3961 | 5418 | ||
3962 | readdirp@^2.0.0: | 5419 | readdirp@^2.0.0: |
3963 | version "2.1.0" | 5420 | version "2.2.1" |
3964 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" | 5421 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" |
5422 | integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== | ||
3965 | dependencies: | 5423 | dependencies: |
3966 | graceful-fs "^4.1.2" | 5424 | graceful-fs "^4.1.11" |
3967 | minimatch "^3.0.2" | 5425 | micromatch "^3.1.10" |
3968 | readable-stream "^2.0.2" | 5426 | readable-stream "^2.0.2" |
3969 | set-immediate-shim "^1.0.1" | ||
3970 | 5427 | ||
3971 | redent@^1.0.0: | 5428 | redent@^1.0.0: |
3972 | version "1.0.0" | 5429 | version "1.0.0" |
3973 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" | 5430 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" |
5431 | integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94= | ||
3974 | dependencies: | 5432 | dependencies: |
3975 | indent-string "^2.1.0" | 5433 | indent-string "^2.1.0" |
3976 | strip-indent "^1.0.1" | 5434 | strip-indent "^1.0.1" |
@@ -3978,6 +5436,7 @@ redent@^1.0.0: | |||
3978 | reduce-css-calc@^1.2.6: | 5436 | reduce-css-calc@^1.2.6: |
3979 | version "1.3.0" | 5437 | version "1.3.0" |
3980 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" | 5438 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" |
5439 | integrity sha1-dHyRTgSWFKTJz7umKYca0dKSdxY= | ||
3981 | dependencies: | 5440 | dependencies: |
3982 | balanced-match "^0.4.2" | 5441 | balanced-match "^0.4.2" |
3983 | math-expression-evaluator "^1.2.14" | 5442 | math-expression-evaluator "^1.2.14" |
@@ -3986,35 +5445,53 @@ reduce-css-calc@^1.2.6: | |||
3986 | reduce-function-call@^1.0.1: | 5445 | reduce-function-call@^1.0.1: |
3987 | version "1.0.2" | 5446 | version "1.0.2" |
3988 | resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" | 5447 | resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" |
5448 | integrity sha1-WiAL+S4ON3UXUv5FsKszD9S2vpk= | ||
3989 | dependencies: | 5449 | dependencies: |
3990 | balanced-match "^0.4.2" | 5450 | balanced-match "^0.4.2" |
3991 | 5451 | ||
3992 | regenerate@^1.2.1: | 5452 | regenerate@^1.2.1: |
3993 | version "1.3.2" | 5453 | version "1.4.0" |
3994 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" | 5454 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" |
5455 | integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== | ||
3995 | 5456 | ||
3996 | regenerator-runtime@^0.10.0: | 5457 | regenerator-runtime@^0.11.0: |
3997 | version "0.10.5" | 5458 | version "0.11.1" |
3998 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" | 5459 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" |
5460 | integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== | ||
3999 | 5461 | ||
4000 | regenerator-transform@0.9.11: | 5462 | regenerator-transform@^0.10.0: |
4001 | version "0.9.11" | 5463 | version "0.10.1" |
4002 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" | 5464 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" |
5465 | integrity sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q== | ||
4003 | dependencies: | 5466 | dependencies: |
4004 | babel-runtime "^6.18.0" | 5467 | babel-runtime "^6.18.0" |
4005 | babel-types "^6.19.0" | 5468 | babel-types "^6.19.0" |
4006 | private "^0.1.6" | 5469 | private "^0.1.6" |
4007 | 5470 | ||
4008 | regex-cache@^0.4.2: | 5471 | regex-cache@^0.4.2: |
4009 | version "0.4.3" | 5472 | version "0.4.4" |
4010 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" | 5473 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" |
5474 | integrity sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ== | ||
4011 | dependencies: | 5475 | dependencies: |
4012 | is-equal-shallow "^0.1.3" | 5476 | is-equal-shallow "^0.1.3" |
4013 | is-primitive "^2.0.0" | 5477 | |
5478 | regex-not@^1.0.0, regex-not@^1.0.2: | ||
5479 | version "1.0.2" | ||
5480 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" | ||
5481 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== | ||
5482 | dependencies: | ||
5483 | extend-shallow "^3.0.2" | ||
5484 | safe-regex "^1.1.0" | ||
5485 | |||
5486 | regexpp@^1.0.1: | ||
5487 | version "1.1.0" | ||
5488 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" | ||
5489 | integrity sha512-LOPw8FpgdQF9etWMaAfG/WRthIdXJGYp4mJ2Jgn/2lpkbod9jPn0t9UqN7AxBOKNfzRbYyVfgc7Vk4t/MpnXgw== | ||
4014 | 5490 | ||
4015 | regexpu-core@^1.0.0: | 5491 | regexpu-core@^1.0.0: |
4016 | version "1.0.0" | 5492 | version "1.0.0" |
4017 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" | 5493 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" |
5494 | integrity sha1-hqdj9Y7k18L2sQLkdkBQ3n7ZDGs= | ||
4018 | dependencies: | 5495 | dependencies: |
4019 | regenerate "^1.2.1" | 5496 | regenerate "^1.2.1" |
4020 | regjsgen "^0.2.0" | 5497 | regjsgen "^0.2.0" |
@@ -4023,6 +5500,7 @@ regexpu-core@^1.0.0: | |||
4023 | regexpu-core@^2.0.0: | 5500 | regexpu-core@^2.0.0: |
4024 | version "2.0.0" | 5501 | version "2.0.0" |
4025 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" | 5502 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" |
5503 | integrity sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA= | ||
4026 | dependencies: | 5504 | dependencies: |
4027 | regenerate "^1.2.1" | 5505 | regenerate "^1.2.1" |
4028 | regjsgen "^0.2.0" | 5506 | regjsgen "^0.2.0" |
@@ -4031,152 +5509,205 @@ regexpu-core@^2.0.0: | |||
4031 | regjsgen@^0.2.0: | 5509 | regjsgen@^0.2.0: |
4032 | version "0.2.0" | 5510 | version "0.2.0" |
4033 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" | 5511 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" |
5512 | integrity sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc= | ||
4034 | 5513 | ||
4035 | regjsparser@^0.1.4: | 5514 | regjsparser@^0.1.4: |
4036 | version "0.1.5" | 5515 | version "0.1.5" |
4037 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" | 5516 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" |
5517 | integrity sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw= | ||
4038 | dependencies: | 5518 | dependencies: |
4039 | jsesc "~0.5.0" | 5519 | jsesc "~0.5.0" |
4040 | 5520 | ||
4041 | remove-trailing-separator@^1.0.1: | 5521 | remove-trailing-separator@^1.0.1: |
4042 | version "1.0.2" | 5522 | version "1.1.0" |
4043 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" | 5523 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" |
5524 | integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= | ||
4044 | 5525 | ||
4045 | repeat-element@^1.1.2: | 5526 | repeat-element@^1.1.2: |
4046 | version "1.1.2" | 5527 | version "1.1.3" |
4047 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" | 5528 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" |
5529 | integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== | ||
4048 | 5530 | ||
4049 | repeat-string@^1.5.2: | 5531 | repeat-string@^1.5.2, repeat-string@^1.6.1: |
4050 | version "1.6.1" | 5532 | version "1.6.1" |
4051 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" | 5533 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" |
5534 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= | ||
4052 | 5535 | ||
4053 | repeating@^2.0.0: | 5536 | repeating@^2.0.0: |
4054 | version "2.0.1" | 5537 | version "2.0.1" |
4055 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" | 5538 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" |
5539 | integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= | ||
4056 | dependencies: | 5540 | dependencies: |
4057 | is-finite "^1.0.0" | 5541 | is-finite "^1.0.0" |
4058 | 5542 | ||
4059 | request@2, request@^2.79.0, request@^2.81.0: | 5543 | request@^2.87.0, request@^2.88.0: |
4060 | version "2.81.0" | 5544 | version "2.88.0" |
4061 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" | 5545 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" |
5546 | integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== | ||
4062 | dependencies: | 5547 | dependencies: |
4063 | aws-sign2 "~0.6.0" | 5548 | aws-sign2 "~0.7.0" |
4064 | aws4 "^1.2.1" | 5549 | aws4 "^1.8.0" |
4065 | caseless "~0.12.0" | 5550 | caseless "~0.12.0" |
4066 | combined-stream "~1.0.5" | 5551 | combined-stream "~1.0.6" |
4067 | extend "~3.0.0" | 5552 | extend "~3.0.2" |
4068 | forever-agent "~0.6.1" | 5553 | forever-agent "~0.6.1" |
4069 | form-data "~2.1.1" | 5554 | form-data "~2.3.2" |
4070 | har-validator "~4.2.1" | 5555 | har-validator "~5.1.0" |
4071 | hawk "~3.1.3" | 5556 | http-signature "~1.2.0" |
4072 | http-signature "~1.1.0" | ||
4073 | is-typedarray "~1.0.0" | 5557 | is-typedarray "~1.0.0" |
4074 | isstream "~0.1.2" | 5558 | isstream "~0.1.2" |
4075 | json-stringify-safe "~5.0.1" | 5559 | json-stringify-safe "~5.0.1" |
4076 | mime-types "~2.1.7" | 5560 | mime-types "~2.1.19" |
4077 | oauth-sign "~0.8.1" | 5561 | oauth-sign "~0.9.0" |
4078 | performance-now "^0.2.0" | 5562 | performance-now "^2.1.0" |
4079 | qs "~6.4.0" | 5563 | qs "~6.5.2" |
4080 | safe-buffer "^5.0.1" | 5564 | safe-buffer "^5.1.2" |
4081 | stringstream "~0.0.4" | 5565 | tough-cookie "~2.4.3" |
4082 | tough-cookie "~2.3.0" | ||
4083 | tunnel-agent "^0.6.0" | 5566 | tunnel-agent "^0.6.0" |
4084 | uuid "^3.0.0" | 5567 | uuid "^3.3.2" |
4085 | 5568 | ||
4086 | require-directory@^2.1.1: | 5569 | require-directory@^2.1.1: |
4087 | version "2.1.1" | 5570 | version "2.1.1" |
4088 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" | 5571 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" |
5572 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= | ||
4089 | 5573 | ||
4090 | require-from-string@^1.1.0: | 5574 | require-from-string@^1.1.0: |
4091 | version "1.2.1" | 5575 | version "1.2.1" |
4092 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" | 5576 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" |
5577 | integrity sha1-UpyczvJzgK3+yaL5ZbZJu+5jZBg= | ||
5578 | |||
5579 | require-from-string@^2.0.1: | ||
5580 | version "2.0.2" | ||
5581 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" | ||
5582 | integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== | ||
4093 | 5583 | ||
4094 | require-main-filename@^1.0.1: | 5584 | require-main-filename@^1.0.1: |
4095 | version "1.0.1" | 5585 | version "1.0.1" |
4096 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" | 5586 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" |
5587 | integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= | ||
4097 | 5588 | ||
4098 | require-uncached@^1.0.3: | 5589 | require-uncached@^1.0.3: |
4099 | version "1.0.3" | 5590 | version "1.0.3" |
4100 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" | 5591 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" |
5592 | integrity sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM= | ||
4101 | dependencies: | 5593 | dependencies: |
4102 | caller-path "^0.1.0" | 5594 | caller-path "^0.1.0" |
4103 | resolve-from "^1.0.0" | 5595 | resolve-from "^1.0.0" |
4104 | 5596 | ||
4105 | requires-port@1.0.x, requires-port@1.x.x: | 5597 | requires-port@^1.0.0: |
4106 | version "1.0.0" | 5598 | version "1.0.0" |
4107 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" | 5599 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" |
5600 | integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= | ||
5601 | |||
5602 | resolve-cwd@^2.0.0: | ||
5603 | version "2.0.0" | ||
5604 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" | ||
5605 | integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= | ||
5606 | dependencies: | ||
5607 | resolve-from "^3.0.0" | ||
4108 | 5608 | ||
4109 | resolve-from@^1.0.0: | 5609 | resolve-from@^1.0.0: |
4110 | version "1.0.1" | 5610 | version "1.0.1" |
4111 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" | 5611 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" |
5612 | integrity sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY= | ||
4112 | 5613 | ||
4113 | resolve-from@^3.0.0: | 5614 | resolve-from@^3.0.0: |
4114 | version "3.0.0" | 5615 | version "3.0.0" |
4115 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" | 5616 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" |
5617 | integrity sha1-six699nWiBvItuZTM17rywoYh0g= | ||
4116 | 5618 | ||
4117 | resolve@^1.1.6: | 5619 | resolve-url@^0.2.1: |
4118 | version "1.3.3" | 5620 | version "0.2.1" |
4119 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" | 5621 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" |
5622 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= | ||
5623 | |||
5624 | resolve@^1.5.0, resolve@^1.6.0: | ||
5625 | version "1.8.1" | ||
5626 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" | ||
5627 | integrity sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA== | ||
4120 | dependencies: | 5628 | dependencies: |
4121 | path-parse "^1.0.5" | 5629 | path-parse "^1.0.5" |
4122 | 5630 | ||
4123 | restore-cursor@^2.0.0: | 5631 | restore-cursor@^2.0.0: |
4124 | version "2.0.0" | 5632 | version "2.0.0" |
4125 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" | 5633 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" |
5634 | integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= | ||
4126 | dependencies: | 5635 | dependencies: |
4127 | onetime "^2.0.0" | 5636 | onetime "^2.0.0" |
4128 | signal-exit "^3.0.2" | 5637 | signal-exit "^3.0.2" |
4129 | 5638 | ||
5639 | ret@~0.1.10: | ||
5640 | version "0.1.15" | ||
5641 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" | ||
5642 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== | ||
5643 | |||
4130 | right-align@^0.1.1: | 5644 | right-align@^0.1.1: |
4131 | version "0.1.3" | 5645 | version "0.1.3" |
4132 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" | 5646 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" |
5647 | integrity sha1-YTObci/mo1FWiSENJOFMlhSGE+8= | ||
4133 | dependencies: | 5648 | dependencies: |
4134 | align-text "^0.1.1" | 5649 | align-text "^0.1.1" |
4135 | 5650 | ||
4136 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: | 5651 | rimraf@2, rimraf@^2.2.8, rimraf@^2.6.1, rimraf@~2.6.2: |
4137 | version "2.6.1" | 5652 | version "2.6.2" |
4138 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" | 5653 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" |
5654 | integrity sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w== | ||
4139 | dependencies: | 5655 | dependencies: |
4140 | glob "^7.0.5" | 5656 | glob "^7.0.5" |
4141 | 5657 | ||
4142 | ripemd160@^2.0.0, ripemd160@^2.0.1: | 5658 | ripemd160@^2.0.0, ripemd160@^2.0.1: |
4143 | version "2.0.1" | 5659 | version "2.0.2" |
4144 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" | 5660 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" |
5661 | integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== | ||
4145 | dependencies: | 5662 | dependencies: |
4146 | hash-base "^2.0.0" | 5663 | hash-base "^3.0.0" |
4147 | inherits "^2.0.1" | 5664 | inherits "^2.0.1" |
4148 | 5665 | ||
4149 | roboto-fontface@^0.7.0: | 5666 | roboto-fontface@^0.7.0: |
4150 | version "0.7.0" | 5667 | version "0.7.1" |
4151 | resolved "https://registry.yarnpkg.com/roboto-fontface/-/roboto-fontface-0.7.0.tgz#2f36464e5c99353e8427f55f1fca7be1a8a417d9" | 5668 | resolved "https://registry.yarnpkg.com/roboto-fontface/-/roboto-fontface-0.7.1.tgz#94f97b7ee999b11dd0711092a26425826cb282f7" |
5669 | integrity sha512-nMrOlRrGc1lHfIgW1kpw7IYh0EZ98YZtNA5aSKbVBL4y+1DfqASRkB2qB4/5f1yM4gn7sPtMjLgXngUe4mqR9Q== | ||
4152 | 5670 | ||
4153 | run-async@^2.2.0: | 5671 | run-async@^2.2.0: |
4154 | version "2.3.0" | 5672 | version "2.3.0" |
4155 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" | 5673 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" |
5674 | integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= | ||
4156 | dependencies: | 5675 | dependencies: |
4157 | is-promise "^2.1.0" | 5676 | is-promise "^2.1.0" |
4158 | 5677 | ||
4159 | rx-lite-aggregates@^4.0.8: | 5678 | rx-lite-aggregates@^4.0.8: |
4160 | version "4.0.8" | 5679 | version "4.0.8" |
4161 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" | 5680 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" |
5681 | integrity sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74= | ||
4162 | dependencies: | 5682 | dependencies: |
4163 | rx-lite "*" | 5683 | rx-lite "*" |
4164 | 5684 | ||
4165 | rx-lite@*, rx-lite@^4.0.8: | 5685 | rx-lite@*, rx-lite@^4.0.8: |
4166 | version "4.0.8" | 5686 | version "4.0.8" |
4167 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" | 5687 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" |
5688 | integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ= | ||
4168 | 5689 | ||
4169 | safe-buffer@^5.0.1, safe-buffer@^5.1.0: | 5690 | safe-buffer@5.1.2, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: |
4170 | version "5.1.0" | 5691 | version "5.1.2" |
4171 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.0.tgz#fe4c8460397f9eaaaa58e73be46273408a45e223" | 5692 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" |
5693 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== | ||
4172 | 5694 | ||
4173 | safe-buffer@~5.0.1: | 5695 | safe-regex@^1.1.0: |
4174 | version "5.0.1" | 5696 | version "1.1.0" |
4175 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" | 5697 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" |
5698 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= | ||
5699 | dependencies: | ||
5700 | ret "~0.1.10" | ||
5701 | |||
5702 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: | ||
5703 | version "2.1.2" | ||
5704 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" | ||
5705 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== | ||
4176 | 5706 | ||
4177 | sass-graph@^2.1.1: | 5707 | sass-graph@^2.2.4: |
4178 | version "2.2.4" | 5708 | version "2.2.4" |
4179 | resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.4.tgz#13fbd63cd1caf0908b9fd93476ad43a51d1e0b49" | 5709 | resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.4.tgz#13fbd63cd1caf0908b9fd93476ad43a51d1e0b49" |
5710 | integrity sha1-E/vWPNHK8JCLn9k0dq1DpR0eC0k= | ||
4180 | dependencies: | 5711 | dependencies: |
4181 | glob "^7.0.0" | 5712 | glob "^7.0.0" |
4182 | lodash "^4.0.0" | 5713 | lodash "^4.0.0" |
@@ -4184,28 +5715,40 @@ sass-graph@^2.1.1: | |||
4184 | yargs "^7.0.0" | 5715 | yargs "^7.0.0" |
4185 | 5716 | ||
4186 | sass-loader@^6.0.3: | 5717 | sass-loader@^6.0.3: |
4187 | version "6.0.5" | 5718 | version "6.0.7" |
4188 | resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-6.0.5.tgz#a847910f36442aa56c5985879d54eb519e24a328" | 5719 | resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-6.0.7.tgz#dd2fdb3e7eeff4a53f35ba6ac408715488353d00" |
5720 | integrity sha512-JoiyD00Yo1o61OJsoP2s2kb19L1/Y2p3QFcCdWdF6oomBGKVYuZyqHWemRBfQ2uGYsk+CH3eCguXNfpjzlcpaA== | ||
4189 | dependencies: | 5721 | dependencies: |
4190 | async "^2.1.5" | 5722 | clone-deep "^2.0.1" |
4191 | clone-deep "^0.2.4" | ||
4192 | loader-utils "^1.0.1" | 5723 | loader-utils "^1.0.1" |
4193 | lodash.tail "^4.1.1" | 5724 | lodash.tail "^4.1.1" |
4194 | pify "^2.3.0" | 5725 | neo-async "^2.5.0" |
5726 | pify "^3.0.0" | ||
4195 | 5727 | ||
4196 | sax@~1.2.1: | 5728 | sax@^1.2.4, sax@~1.2.1: |
4197 | version "1.2.2" | 5729 | version "1.2.4" |
4198 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" | 5730 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" |
5731 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== | ||
4199 | 5732 | ||
4200 | schema-utils@^0.3.0, schema-utils@^0.x: | 5733 | schema-utils@^0.3.0: |
4201 | version "0.3.0" | 5734 | version "0.3.0" |
4202 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf" | 5735 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf" |
5736 | integrity sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8= | ||
4203 | dependencies: | 5737 | dependencies: |
4204 | ajv "^5.0.0" | 5738 | ajv "^5.0.0" |
4205 | 5739 | ||
5740 | schema-utils@^0.4.0: | ||
5741 | version "0.4.7" | ||
5742 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.7.tgz#ba74f597d2be2ea880131746ee17d0a093c68187" | ||
5743 | integrity sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ== | ||
5744 | dependencies: | ||
5745 | ajv "^6.1.0" | ||
5746 | ajv-keywords "^3.1.0" | ||
5747 | |||
4206 | scss-tokenizer@^0.2.3: | 5748 | scss-tokenizer@^0.2.3: |
4207 | version "0.2.3" | 5749 | version "0.2.3" |
4208 | resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1" | 5750 | resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1" |
5751 | integrity sha1-jrBtualyMzOCTT9VMGQRSYR85dE= | ||
4209 | dependencies: | 5752 | dependencies: |
4210 | js-base64 "^2.1.8" | 5753 | js-base64 "^2.1.8" |
4211 | source-map "^0.4.2" | 5754 | source-map "^0.4.2" |
@@ -4213,168 +5756,280 @@ scss-tokenizer@^0.2.3: | |||
4213 | select-hose@^2.0.0: | 5756 | select-hose@^2.0.0: |
4214 | version "2.0.0" | 5757 | version "2.0.0" |
4215 | resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" | 5758 | resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" |
5759 | integrity sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo= | ||
5760 | |||
5761 | selfsigned@^1.9.1: | ||
5762 | version "1.10.4" | ||
5763 | resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.4.tgz#cdd7eccfca4ed7635d47a08bf2d5d3074092e2cd" | ||
5764 | integrity sha512-9AukTiDmHXGXWtWjembZ5NDmVvP2695EtpgbCsxCa68w3c88B+alqbmZ4O3hZ4VWGXeGWzEVdvqgAJD8DQPCDw== | ||
5765 | dependencies: | ||
5766 | node-forge "0.7.5" | ||
5767 | |||
5768 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: | ||
5769 | version "5.6.0" | ||
5770 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" | ||
5771 | integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg== | ||
4216 | 5772 | ||
4217 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@~5.3.0: | 5773 | semver@~5.3.0: |
4218 | version "5.3.0" | 5774 | version "5.3.0" |
4219 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" | 5775 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" |
5776 | integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8= | ||
4220 | 5777 | ||
4221 | send@0.15.3: | 5778 | send@0.16.2: |
4222 | version "0.15.3" | 5779 | version "0.16.2" |
4223 | resolved "https://registry.yarnpkg.com/send/-/send-0.15.3.tgz#5013f9f99023df50d1bd9892c19e3defd1d53309" | 5780 | resolved "https://registry.yarnpkg.com/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1" |
5781 | integrity sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw== | ||
4224 | dependencies: | 5782 | dependencies: |
4225 | debug "2.6.7" | 5783 | debug "2.6.9" |
4226 | depd "~1.1.0" | 5784 | depd "~1.1.2" |
4227 | destroy "~1.0.4" | 5785 | destroy "~1.0.4" |
4228 | encodeurl "~1.0.1" | 5786 | encodeurl "~1.0.2" |
4229 | escape-html "~1.0.3" | 5787 | escape-html "~1.0.3" |
4230 | etag "~1.8.0" | 5788 | etag "~1.8.1" |
4231 | fresh "0.5.0" | 5789 | fresh "0.5.2" |
4232 | http-errors "~1.6.1" | 5790 | http-errors "~1.6.2" |
4233 | mime "1.3.4" | 5791 | mime "1.4.1" |
4234 | ms "2.0.0" | 5792 | ms "2.0.0" |
4235 | on-finished "~2.3.0" | 5793 | on-finished "~2.3.0" |
4236 | range-parser "~1.2.0" | 5794 | range-parser "~1.2.0" |
4237 | statuses "~1.3.1" | 5795 | statuses "~1.4.0" |
4238 | 5796 | ||
4239 | serve-index@^1.7.2: | 5797 | serve-index@^1.7.2: |
4240 | version "1.9.0" | 5798 | version "1.9.1" |
4241 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.0.tgz#d2b280fc560d616ee81b48bf0fa82abed2485ce7" | 5799 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" |
5800 | integrity sha1-03aNabHn2C5c4FD/9bRTvqEqkjk= | ||
4242 | dependencies: | 5801 | dependencies: |
4243 | accepts "~1.3.3" | 5802 | accepts "~1.3.4" |
4244 | batch "0.6.1" | 5803 | batch "0.6.1" |
4245 | debug "2.6.8" | 5804 | debug "2.6.9" |
4246 | escape-html "~1.0.3" | 5805 | escape-html "~1.0.3" |
4247 | http-errors "~1.6.1" | 5806 | http-errors "~1.6.2" |
4248 | mime-types "~2.1.15" | 5807 | mime-types "~2.1.17" |
4249 | parseurl "~1.3.1" | 5808 | parseurl "~1.3.2" |
4250 | 5809 | ||
4251 | serve-static@1.12.3: | 5810 | serve-static@1.13.2: |
4252 | version "1.12.3" | 5811 | version "1.13.2" |
4253 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.12.3.tgz#9f4ba19e2f3030c547f8af99107838ec38d5b1e2" | 5812 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1" |
5813 | integrity sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw== | ||
4254 | dependencies: | 5814 | dependencies: |
4255 | encodeurl "~1.0.1" | 5815 | encodeurl "~1.0.2" |
4256 | escape-html "~1.0.3" | 5816 | escape-html "~1.0.3" |
4257 | parseurl "~1.3.1" | 5817 | parseurl "~1.3.2" |
4258 | send "0.15.3" | 5818 | send "0.16.2" |
4259 | 5819 | ||
4260 | set-blocking@^2.0.0, set-blocking@~2.0.0: | 5820 | set-blocking@^2.0.0, set-blocking@~2.0.0: |
4261 | version "2.0.0" | 5821 | version "2.0.0" |
4262 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" | 5822 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" |
5823 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= | ||
4263 | 5824 | ||
4264 | set-immediate-shim@^1.0.1: | 5825 | set-value@^0.4.3: |
4265 | version "1.0.1" | 5826 | version "0.4.3" |
4266 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" | 5827 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" |
5828 | integrity sha1-fbCPnT0i3H945Trzw79GZuzfzPE= | ||
5829 | dependencies: | ||
5830 | extend-shallow "^2.0.1" | ||
5831 | is-extendable "^0.1.1" | ||
5832 | is-plain-object "^2.0.1" | ||
5833 | to-object-path "^0.3.0" | ||
5834 | |||
5835 | set-value@^2.0.0: | ||
5836 | version "2.0.0" | ||
5837 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" | ||
5838 | integrity sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg== | ||
5839 | dependencies: | ||
5840 | extend-shallow "^2.0.1" | ||
5841 | is-extendable "^0.1.1" | ||
5842 | is-plain-object "^2.0.3" | ||
5843 | split-string "^3.0.1" | ||
4267 | 5844 | ||
4268 | setimmediate@^1.0.4: | 5845 | setimmediate@^1.0.4: |
4269 | version "1.0.5" | 5846 | version "1.0.5" |
4270 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" | 5847 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" |
5848 | integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= | ||
4271 | 5849 | ||
4272 | setprototypeof@1.0.3: | 5850 | setprototypeof@1.1.0: |
4273 | version "1.0.3" | 5851 | version "1.1.0" |
4274 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" | 5852 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" |
5853 | integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== | ||
4275 | 5854 | ||
4276 | sha.js@^2.4.0, sha.js@^2.4.8: | 5855 | sha.js@^2.4.0, sha.js@^2.4.8: |
4277 | version "2.4.8" | 5856 | version "2.4.11" |
4278 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" | 5857 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" |
5858 | integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== | ||
4279 | dependencies: | 5859 | dependencies: |
4280 | inherits "^2.0.1" | 5860 | inherits "^2.0.1" |
5861 | safe-buffer "^5.0.1" | ||
4281 | 5862 | ||
4282 | shallow-clone@^0.1.2: | 5863 | shallow-clone@^1.0.0: |
4283 | version "0.1.2" | 5864 | version "1.0.0" |
4284 | resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-0.1.2.tgz#5909e874ba77106d73ac414cfec1ffca87d97060" | 5865 | resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-1.0.0.tgz#4480cd06e882ef68b2ad88a3ea54832e2c48b571" |
5866 | integrity sha512-oeXreoKR/SyNJtRJMAKPDSvd28OqEwG4eR/xc856cRGBII7gX9lvAqDxusPm0846z/w/hWYjI1NpKwJ00NHzRA== | ||
4285 | dependencies: | 5867 | dependencies: |
4286 | is-extendable "^0.1.1" | 5868 | is-extendable "^0.1.1" |
4287 | kind-of "^2.0.1" | 5869 | kind-of "^5.0.0" |
4288 | lazy-cache "^0.2.3" | ||
4289 | mixin-object "^2.0.1" | 5870 | mixin-object "^2.0.1" |
4290 | 5871 | ||
5872 | shebang-command@^1.2.0: | ||
5873 | version "1.2.0" | ||
5874 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" | ||
5875 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= | ||
5876 | dependencies: | ||
5877 | shebang-regex "^1.0.0" | ||
5878 | |||
5879 | shebang-regex@^1.0.0: | ||
5880 | version "1.0.0" | ||
5881 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" | ||
5882 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= | ||
5883 | |||
4291 | signal-exit@^3.0.0, signal-exit@^3.0.2: | 5884 | signal-exit@^3.0.0, signal-exit@^3.0.2: |
4292 | version "3.0.2" | 5885 | version "3.0.2" |
4293 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" | 5886 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" |
5887 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= | ||
4294 | 5888 | ||
4295 | slash@^1.0.0: | 5889 | slash@^1.0.0: |
4296 | version "1.0.0" | 5890 | version "1.0.0" |
4297 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" | 5891 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" |
5892 | integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU= | ||
4298 | 5893 | ||
4299 | slice-ansi@0.0.4: | 5894 | slice-ansi@1.0.0: |
4300 | version "0.0.4" | 5895 | version "1.0.0" |
4301 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" | 5896 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" |
5897 | integrity sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg== | ||
5898 | dependencies: | ||
5899 | is-fullwidth-code-point "^2.0.0" | ||
4302 | 5900 | ||
4303 | sntp@1.x.x: | 5901 | snapdragon-node@^2.0.1: |
4304 | version "1.0.9" | 5902 | version "2.1.1" |
4305 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" | 5903 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" |
5904 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== | ||
4306 | dependencies: | 5905 | dependencies: |
4307 | hoek "2.x.x" | 5906 | define-property "^1.0.0" |
5907 | isobject "^3.0.0" | ||
5908 | snapdragon-util "^3.0.1" | ||
4308 | 5909 | ||
4309 | sockjs-client@1.1.2: | 5910 | snapdragon-util@^3.0.1: |
4310 | version "1.1.2" | 5911 | version "3.0.1" |
4311 | resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.2.tgz#f0212a8550e4c9468c8cceaeefd2e3493c033ad5" | 5912 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" |
5913 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== | ||
4312 | dependencies: | 5914 | dependencies: |
5915 | kind-of "^3.2.0" | ||
5916 | |||
5917 | snapdragon@^0.8.1: | ||
5918 | version "0.8.2" | ||
5919 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" | ||
5920 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== | ||
5921 | dependencies: | ||
5922 | base "^0.11.1" | ||
4313 | debug "^2.2.0" | 5923 | debug "^2.2.0" |
5924 | define-property "^0.2.5" | ||
5925 | extend-shallow "^2.0.1" | ||
5926 | map-cache "^0.2.2" | ||
5927 | source-map "^0.5.6" | ||
5928 | source-map-resolve "^0.5.0" | ||
5929 | use "^3.1.0" | ||
5930 | |||
5931 | sockjs-client@1.1.5: | ||
5932 | version "1.1.5" | ||
5933 | resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.5.tgz#1bb7c0f7222c40f42adf14f4442cbd1269771a83" | ||
5934 | integrity sha1-G7fA9yIsQPQq3xT0RCy9Eml3GoM= | ||
5935 | dependencies: | ||
5936 | debug "^2.6.6" | ||
4314 | eventsource "0.1.6" | 5937 | eventsource "0.1.6" |
4315 | faye-websocket "~0.11.0" | 5938 | faye-websocket "~0.11.0" |
4316 | inherits "^2.0.1" | 5939 | inherits "^2.0.1" |
4317 | json3 "^3.3.2" | 5940 | json3 "^3.3.2" |
4318 | url-parse "^1.1.1" | 5941 | url-parse "^1.1.8" |
4319 | 5942 | ||
4320 | sockjs@0.3.18: | 5943 | sockjs@0.3.19: |
4321 | version "0.3.18" | 5944 | version "0.3.19" |
4322 | resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.18.tgz#d9b289316ca7df77595ef299e075f0f937eb4207" | 5945 | resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.19.tgz#d976bbe800af7bd20ae08598d582393508993c0d" |
5946 | integrity sha512-V48klKZl8T6MzatbLlzzRNhMepEys9Y4oGFpypBFFn1gLI/QQ9HtLLyWJNbPlwGLelOVOEijUbTTJeLLI59jLw== | ||
4323 | dependencies: | 5947 | dependencies: |
4324 | faye-websocket "^0.10.0" | 5948 | faye-websocket "^0.10.0" |
4325 | uuid "^2.0.2" | 5949 | uuid "^3.0.1" |
4326 | 5950 | ||
4327 | sort-keys@^1.0.0: | 5951 | sort-keys@^1.0.0: |
4328 | version "1.1.2" | 5952 | version "1.1.2" |
4329 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" | 5953 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" |
5954 | integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0= | ||
4330 | dependencies: | 5955 | dependencies: |
4331 | is-plain-obj "^1.0.0" | 5956 | is-plain-obj "^1.0.0" |
4332 | 5957 | ||
4333 | source-list-map@^0.1.7: | ||
4334 | version "0.1.8" | ||
4335 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" | ||
4336 | |||
4337 | source-list-map@^1.1.1: | ||
4338 | version "1.1.2" | ||
4339 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-1.1.2.tgz#9889019d1024cce55cdc069498337ef6186a11a1" | ||
4340 | |||
4341 | source-list-map@^2.0.0: | 5958 | source-list-map@^2.0.0: |
4342 | version "2.0.0" | 5959 | version "2.0.1" |
4343 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" | 5960 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" |
5961 | integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== | ||
4344 | 5962 | ||
4345 | source-map-support@^0.4.2: | 5963 | source-map-resolve@^0.5.0: |
4346 | version "0.4.15" | 5964 | version "0.5.2" |
4347 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" | 5965 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" |
5966 | integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== | ||
5967 | dependencies: | ||
5968 | atob "^2.1.1" | ||
5969 | decode-uri-component "^0.2.0" | ||
5970 | resolve-url "^0.2.1" | ||
5971 | source-map-url "^0.4.0" | ||
5972 | urix "^0.1.0" | ||
5973 | |||
5974 | source-map-support@^0.4.15: | ||
5975 | version "0.4.18" | ||
5976 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" | ||
5977 | integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA== | ||
4348 | dependencies: | 5978 | dependencies: |
4349 | source-map "^0.5.6" | 5979 | source-map "^0.5.6" |
4350 | 5980 | ||
5981 | source-map-url@^0.4.0: | ||
5982 | version "0.4.0" | ||
5983 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" | ||
5984 | integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= | ||
5985 | |||
4351 | source-map@0.4.x, source-map@^0.4.2: | 5986 | source-map@0.4.x, source-map@^0.4.2: |
4352 | version "0.4.4" | 5987 | version "0.4.4" |
4353 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" | 5988 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" |
5989 | integrity sha1-66T12pwNyZneaAMti092FzZSA2s= | ||
4354 | dependencies: | 5990 | dependencies: |
4355 | amdefine ">=0.0.4" | 5991 | amdefine ">=0.0.4" |
4356 | 5992 | ||
4357 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3: | 5993 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1: |
4358 | version "0.5.6" | 5994 | version "0.5.7" |
4359 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" | 5995 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" |
5996 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= | ||
4360 | 5997 | ||
4361 | spdx-correct@~1.0.0: | 5998 | source-map@^0.6.1, source-map@~0.6.1: |
4362 | version "1.0.2" | 5999 | version "0.6.1" |
4363 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" | 6000 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" |
6001 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== | ||
6002 | |||
6003 | spdx-correct@^3.0.0: | ||
6004 | version "3.0.2" | ||
6005 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.2.tgz#19bb409e91b47b1ad54159243f7312a858db3c2e" | ||
6006 | integrity sha512-q9hedtzyXHr5S0A1vEPoK/7l8NpfkFYTq6iCY+Pno2ZbdZR6WexZFtqeVGkGxW3TEJMN914Z55EnAGMmenlIQQ== | ||
4364 | dependencies: | 6007 | dependencies: |
4365 | spdx-license-ids "^1.0.2" | 6008 | spdx-expression-parse "^3.0.0" |
6009 | spdx-license-ids "^3.0.0" | ||
4366 | 6010 | ||
4367 | spdx-expression-parse@~1.0.0: | 6011 | spdx-exceptions@^2.1.0: |
4368 | version "1.0.4" | 6012 | version "2.2.0" |
4369 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" | 6013 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" |
6014 | integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== | ||
4370 | 6015 | ||
4371 | spdx-license-ids@^1.0.2: | 6016 | spdx-expression-parse@^3.0.0: |
4372 | version "1.2.2" | 6017 | version "3.0.0" |
4373 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" | 6018 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" |
6019 | integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== | ||
6020 | dependencies: | ||
6021 | spdx-exceptions "^2.1.0" | ||
6022 | spdx-license-ids "^3.0.0" | ||
6023 | |||
6024 | spdx-license-ids@^3.0.0: | ||
6025 | version "3.0.2" | ||
6026 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.2.tgz#a59efc09784c2a5bada13cfeaf5c75dd214044d2" | ||
6027 | integrity sha512-qky9CVt0lVIECkEsYbNILVnPvycuEBkXoMFLRWsREkomQLevYhtRKC+R91a5TOAQ3bCMjikRwhyaRqj1VYatYg== | ||
4374 | 6028 | ||
4375 | spdy-transport@^2.0.18: | 6029 | spdy-transport@^2.0.18: |
4376 | version "2.0.20" | 6030 | version "2.1.1" |
4377 | resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-2.0.20.tgz#735e72054c486b2354fe89e702256004a39ace4d" | 6031 | resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-2.1.1.tgz#c54815d73858aadd06ce63001e7d25fa6441623b" |
6032 | integrity sha512-q7D8c148escoB3Z7ySCASadkegMmUZW8Wb/Q1u0/XBgDKMO880rLQDj8Twiew/tYi7ghemKUi/whSYOwE17f5Q== | ||
4378 | dependencies: | 6033 | dependencies: |
4379 | debug "^2.6.8" | 6034 | debug "^2.6.8" |
4380 | detect-node "^2.0.3" | 6035 | detect-node "^2.0.3" |
@@ -4387,6 +6042,7 @@ spdy-transport@^2.0.18: | |||
4387 | spdy@^3.4.1: | 6042 | spdy@^3.4.1: |
4388 | version "3.4.7" | 6043 | version "3.4.7" |
4389 | resolved "https://registry.yarnpkg.com/spdy/-/spdy-3.4.7.tgz#42ff41ece5cc0f99a3a6c28aabb73f5c3b03acbc" | 6044 | resolved "https://registry.yarnpkg.com/spdy/-/spdy-3.4.7.tgz#42ff41ece5cc0f99a3a6c28aabb73f5c3b03acbc" |
6045 | integrity sha1-Qv9B7OXMD5mjpsKKq7c/XDsDrLw= | ||
4390 | dependencies: | 6046 | dependencies: |
4391 | debug "^2.6.8" | 6047 | debug "^2.6.8" |
4392 | handle-thing "^1.2.5" | 6048 | handle-thing "^1.2.5" |
@@ -4396,46 +6052,73 @@ spdy@^3.4.1: | |||
4396 | spdy-transport "^2.0.18" | 6052 | spdy-transport "^2.0.18" |
4397 | 6053 | ||
4398 | specificity@^0.3.0: | 6054 | specificity@^0.3.0: |
4399 | version "0.3.0" | 6055 | version "0.3.2" |
4400 | resolved "https://registry.yarnpkg.com/specificity/-/specificity-0.3.0.tgz#332472d4e5eb5af20821171933998a6bc3b1ce6f" | 6056 | resolved "https://registry.yarnpkg.com/specificity/-/specificity-0.3.2.tgz#99e6511eceef0f8d9b57924937aac2cb13d13c42" |
6057 | integrity sha512-Nc/QN/A425Qog7j9aHmwOrlwX2e7pNI47ciwxwy4jOlvbbMHkNNJchit+FX+UjF3IAdiaaV5BKeWuDUnws6G1A== | ||
6058 | |||
6059 | split-string@^3.0.1, split-string@^3.0.2: | ||
6060 | version "3.1.0" | ||
6061 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" | ||
6062 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== | ||
6063 | dependencies: | ||
6064 | extend-shallow "^3.0.0" | ||
4401 | 6065 | ||
4402 | split2@^0.2.1: | 6066 | split2@^0.2.1: |
4403 | version "0.2.1" | 6067 | version "0.2.1" |
4404 | resolved "https://registry.yarnpkg.com/split2/-/split2-0.2.1.tgz#02ddac9adc03ec0bb78c1282ec079ca6e85ae900" | 6068 | resolved "https://registry.yarnpkg.com/split2/-/split2-0.2.1.tgz#02ddac9adc03ec0bb78c1282ec079ca6e85ae900" |
6069 | integrity sha1-At2smtwD7Au3jBKC7Aecpuha6QA= | ||
4405 | dependencies: | 6070 | dependencies: |
4406 | through2 "~0.6.1" | 6071 | through2 "~0.6.1" |
4407 | 6072 | ||
4408 | sprintf-js@~1.0.2: | 6073 | sprintf-js@~1.0.2: |
4409 | version "1.0.3" | 6074 | version "1.0.3" |
4410 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" | 6075 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" |
6076 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= | ||
4411 | 6077 | ||
4412 | sshpk@^1.7.0: | 6078 | sshpk@^1.7.0: |
4413 | version "1.13.1" | 6079 | version "1.15.2" |
4414 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" | 6080 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.15.2.tgz#c946d6bd9b1a39d0e8635763f5242d6ed6dcb629" |
6081 | integrity sha512-Ra/OXQtuh0/enyl4ETZAfTaeksa6BXks5ZcjpSUNrjBr0DvrJKX+1fsKDPpT9TBXgHAFsa4510aNVgI8g/+SzA== | ||
4415 | dependencies: | 6082 | dependencies: |
4416 | asn1 "~0.2.3" | 6083 | asn1 "~0.2.3" |
4417 | assert-plus "^1.0.0" | 6084 | assert-plus "^1.0.0" |
4418 | dashdash "^1.12.0" | ||
4419 | getpass "^0.1.1" | ||
4420 | optionalDependencies: | ||
4421 | bcrypt-pbkdf "^1.0.0" | 6085 | bcrypt-pbkdf "^1.0.0" |
6086 | dashdash "^1.12.0" | ||
4422 | ecc-jsbn "~0.1.1" | 6087 | ecc-jsbn "~0.1.1" |
6088 | getpass "^0.1.1" | ||
4423 | jsbn "~0.1.0" | 6089 | jsbn "~0.1.0" |
6090 | safer-buffer "^2.0.2" | ||
4424 | tweetnacl "~0.14.0" | 6091 | tweetnacl "~0.14.0" |
4425 | 6092 | ||
4426 | "statuses@>= 1.3.1 < 2", statuses@~1.3.1: | 6093 | static-extend@^0.1.1: |
4427 | version "1.3.1" | 6094 | version "0.1.2" |
4428 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" | 6095 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" |
6096 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= | ||
6097 | dependencies: | ||
6098 | define-property "^0.2.5" | ||
6099 | object-copy "^0.1.0" | ||
4429 | 6100 | ||
4430 | stdout-stream@^1.4.0: | 6101 | "statuses@>= 1.4.0 < 2": |
6102 | version "1.5.0" | ||
6103 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" | ||
6104 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= | ||
6105 | |||
6106 | statuses@~1.4.0: | ||
4431 | version "1.4.0" | 6107 | version "1.4.0" |
4432 | resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.0.tgz#a2c7c8587e54d9427ea9edb3ac3f2cd522df378b" | 6108 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" |
6109 | integrity sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew== | ||
6110 | |||
6111 | stdout-stream@^1.4.0: | ||
6112 | version "1.4.1" | ||
6113 | resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.1.tgz#5ac174cdd5cd726104aa0c0b2bd83815d8d535de" | ||
6114 | integrity sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA== | ||
4433 | dependencies: | 6115 | dependencies: |
4434 | readable-stream "^2.0.1" | 6116 | readable-stream "^2.0.1" |
4435 | 6117 | ||
4436 | stream-browserify@^2.0.1: | 6118 | stream-browserify@^2.0.1: |
4437 | version "2.0.1" | 6119 | version "2.0.1" |
4438 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" | 6120 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" |
6121 | integrity sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds= | ||
4439 | dependencies: | 6122 | dependencies: |
4440 | inherits "~2.0.1" | 6123 | inherits "~2.0.1" |
4441 | readable-stream "^2.0.2" | 6124 | readable-stream "^2.0.2" |
@@ -4443,82 +6126,98 @@ stream-browserify@^2.0.1: | |||
4443 | stream-combiner@^0.2.1: | 6126 | stream-combiner@^0.2.1: |
4444 | version "0.2.2" | 6127 | version "0.2.2" |
4445 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.2.2.tgz#aec8cbac177b56b6f4fa479ced8c1912cee52858" | 6128 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.2.2.tgz#aec8cbac177b56b6f4fa479ced8c1912cee52858" |
6129 | integrity sha1-rsjLrBd7Vrb0+kec7YwZEs7lKFg= | ||
4446 | dependencies: | 6130 | dependencies: |
4447 | duplexer "~0.1.1" | 6131 | duplexer "~0.1.1" |
4448 | through "~2.3.4" | 6132 | through "~2.3.4" |
4449 | 6133 | ||
4450 | stream-http@^2.3.1: | 6134 | stream-http@^2.7.2: |
4451 | version "2.7.2" | 6135 | version "2.8.3" |
4452 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" | 6136 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" |
6137 | integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== | ||
4453 | dependencies: | 6138 | dependencies: |
4454 | builtin-status-codes "^3.0.0" | 6139 | builtin-status-codes "^3.0.0" |
4455 | inherits "^2.0.1" | 6140 | inherits "^2.0.1" |
4456 | readable-stream "^2.2.6" | 6141 | readable-stream "^2.3.6" |
4457 | to-arraybuffer "^1.0.0" | 6142 | to-arraybuffer "^1.0.0" |
4458 | xtend "^4.0.0" | 6143 | xtend "^4.0.0" |
4459 | 6144 | ||
4460 | strict-uri-encode@^1.0.0: | 6145 | strict-uri-encode@^1.0.0: |
4461 | version "1.1.0" | 6146 | version "1.1.0" |
4462 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" | 6147 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" |
6148 | integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM= | ||
4463 | 6149 | ||
4464 | string-width@^1.0.1, string-width@^1.0.2: | 6150 | string-width@^1.0.1, string-width@^1.0.2: |
4465 | version "1.0.2" | 6151 | version "1.0.2" |
4466 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" | 6152 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" |
6153 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= | ||
4467 | dependencies: | 6154 | dependencies: |
4468 | code-point-at "^1.0.0" | 6155 | code-point-at "^1.0.0" |
4469 | is-fullwidth-code-point "^1.0.0" | 6156 | is-fullwidth-code-point "^1.0.0" |
4470 | strip-ansi "^3.0.0" | 6157 | strip-ansi "^3.0.0" |
4471 | 6158 | ||
4472 | string-width@^2.0.0: | 6159 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: |
4473 | version "2.0.0" | 6160 | version "2.1.1" |
4474 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" | 6161 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" |
6162 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== | ||
4475 | dependencies: | 6163 | dependencies: |
4476 | is-fullwidth-code-point "^2.0.0" | 6164 | is-fullwidth-code-point "^2.0.0" |
4477 | strip-ansi "^3.0.0" | 6165 | strip-ansi "^4.0.0" |
4478 | 6166 | ||
4479 | string_decoder@^0.10.25, string_decoder@~0.10.x: | 6167 | string_decoder@^1.0.0, string_decoder@~1.1.1: |
4480 | version "0.10.31" | 6168 | version "1.1.1" |
4481 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" | 6169 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" |
4482 | 6170 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== | |
4483 | string_decoder@~1.0.0: | ||
4484 | version "1.0.2" | ||
4485 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.2.tgz#b29e1f4e1125fa97a10382b8a533737b7491e179" | ||
4486 | dependencies: | 6171 | dependencies: |
4487 | safe-buffer "~5.0.1" | 6172 | safe-buffer "~5.1.0" |
4488 | 6173 | ||
4489 | stringstream@~0.0.4: | 6174 | string_decoder@~0.10.x: |
4490 | version "0.0.5" | 6175 | version "0.10.31" |
4491 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" | 6176 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" |
6177 | integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= | ||
4492 | 6178 | ||
4493 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: | 6179 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: |
4494 | version "3.0.1" | 6180 | version "3.0.1" |
4495 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" | 6181 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" |
6182 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= | ||
4496 | dependencies: | 6183 | dependencies: |
4497 | ansi-regex "^2.0.0" | 6184 | ansi-regex "^2.0.0" |
4498 | 6185 | ||
6186 | strip-ansi@^4.0.0: | ||
6187 | version "4.0.0" | ||
6188 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" | ||
6189 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= | ||
6190 | dependencies: | ||
6191 | ansi-regex "^3.0.0" | ||
6192 | |||
4499 | strip-bom@^2.0.0: | 6193 | strip-bom@^2.0.0: |
4500 | version "2.0.0" | 6194 | version "2.0.0" |
4501 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" | 6195 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" |
6196 | integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= | ||
4502 | dependencies: | 6197 | dependencies: |
4503 | is-utf8 "^0.2.0" | 6198 | is-utf8 "^0.2.0" |
4504 | 6199 | ||
4505 | strip-bom@^3.0.0: | 6200 | strip-bom@^3.0.0: |
4506 | version "3.0.0" | 6201 | version "3.0.0" |
4507 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" | 6202 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" |
6203 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= | ||
4508 | 6204 | ||
4509 | strip-indent@^1.0.1: | 6205 | strip-indent@^1.0.1: |
4510 | version "1.0.1" | 6206 | version "1.0.1" |
4511 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" | 6207 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" |
6208 | integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI= | ||
4512 | dependencies: | 6209 | dependencies: |
4513 | get-stdin "^4.0.1" | 6210 | get-stdin "^4.0.1" |
4514 | 6211 | ||
4515 | strip-json-comments@~2.0.1: | 6212 | strip-json-comments@~2.0.1: |
4516 | version "2.0.1" | 6213 | version "2.0.1" |
4517 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" | 6214 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" |
6215 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= | ||
4518 | 6216 | ||
4519 | style-loader@^0.18.2: | 6217 | style-loader@^0.18.2: |
4520 | version "0.18.2" | 6218 | version "0.18.2" |
4521 | resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.18.2.tgz#cc31459afbcd6d80b7220ee54b291a9fd66ff5eb" | 6219 | resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.18.2.tgz#cc31459afbcd6d80b7220ee54b291a9fd66ff5eb" |
6220 | integrity sha512-WPpJPZGUxWYHWIUMNNOYqql7zh85zGmr84FdTVWq52WTIkqlW9xSxD3QYWi/T31cqn9UNSsietVEgGn2aaSCzw== | ||
4522 | dependencies: | 6221 | dependencies: |
4523 | loader-utils "^1.0.2" | 6222 | loader-utils "^1.0.2" |
4524 | schema-utils "^0.3.0" | 6223 | schema-utils "^0.3.0" |
@@ -4526,10 +6225,12 @@ style-loader@^0.18.2: | |||
4526 | style-search@^0.1.0: | 6225 | style-search@^0.1.0: |
4527 | version "0.1.0" | 6226 | version "0.1.0" |
4528 | resolved "https://registry.yarnpkg.com/style-search/-/style-search-0.1.0.tgz#7958c793e47e32e07d2b5cafe5c0bf8e12e77902" | 6227 | resolved "https://registry.yarnpkg.com/style-search/-/style-search-0.1.0.tgz#7958c793e47e32e07d2b5cafe5c0bf8e12e77902" |
6228 | integrity sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI= | ||
4529 | 6229 | ||
4530 | stylehacks@^2.3.2: | 6230 | stylehacks@^2.3.2: |
4531 | version "2.3.2" | 6231 | version "2.3.2" |
4532 | resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-2.3.2.tgz#64c83e0438a68c9edf449e8c552a7d9ab6009b0b" | 6232 | resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-2.3.2.tgz#64c83e0438a68c9edf449e8c552a7d9ab6009b0b" |
6233 | integrity sha1-ZMg+BDimjJ7fRJ6MVSp9mrYAmws= | ||
4533 | dependencies: | 6234 | dependencies: |
4534 | browserslist "^1.1.3" | 6235 | browserslist "^1.1.3" |
4535 | chalk "^1.1.1" | 6236 | chalk "^1.1.1" |
@@ -4546,25 +6247,28 @@ stylehacks@^2.3.2: | |||
4546 | stylelint-config-standard@^16.0.0: | 6247 | stylelint-config-standard@^16.0.0: |
4547 | version "16.0.0" | 6248 | version "16.0.0" |
4548 | resolved "https://registry.yarnpkg.com/stylelint-config-standard/-/stylelint-config-standard-16.0.0.tgz#bb7387bff1d7dd7186a52b3ebf885b2405d691bf" | 6249 | resolved "https://registry.yarnpkg.com/stylelint-config-standard/-/stylelint-config-standard-16.0.0.tgz#bb7387bff1d7dd7186a52b3ebf885b2405d691bf" |
6250 | integrity sha1-u3OHv/HX3XGGpSs+v4hbJAXWkb8= | ||
4549 | 6251 | ||
4550 | stylelint-webpack-plugin@^0.7.0: | 6252 | stylelint-webpack-plugin@^0.7.0: |
4551 | version "0.7.0" | 6253 | version "0.7.1" |
4552 | resolved "https://registry.yarnpkg.com/stylelint-webpack-plugin/-/stylelint-webpack-plugin-0.7.0.tgz#48d6683fddf93b758e194c4468fada4771230c39" | 6254 | resolved "https://registry.yarnpkg.com/stylelint-webpack-plugin/-/stylelint-webpack-plugin-0.7.1.tgz#e21624097aa4d4774158d2dd8a5067880f841831" |
6255 | integrity sha512-LEdUXKhspuxoYO13ZUH5N1aCP6tWnVyk0RUoKPt7ITBu9xNZ5NKEsAsx9qwMk1s8TA6/WtP2HbEJOHQof8yDbg== | ||
4553 | dependencies: | 6256 | dependencies: |
4554 | arrify "^1.0.1" | 6257 | arrify "^1.0.1" |
4555 | chalk "^1.1.3" | 6258 | chalk "^1.1.3" |
4556 | minimatch "^3.0.3" | 6259 | minimatch "^3.0.3" |
4557 | object-assign "^4.1.0" | 6260 | object-assign "^4.1.0" |
4558 | ramda "^0.23.0" | 6261 | ramda "^0.24.1" |
4559 | stylelint "^7.7.0" | 6262 | stylelint "^7.7.0" |
4560 | 6263 | ||
4561 | stylelint@^7.7.0, stylelint@^7.9.0: | 6264 | stylelint@^7.7.0, stylelint@^7.9.0: |
4562 | version "7.11.0" | 6265 | version "7.13.0" |
4563 | resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-7.11.0.tgz#4816372ecd0afd2c30fe53f4f6a00eb04960dbfc" | 6266 | resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-7.13.0.tgz#111f97b6da72e775c80800d6bb6f5f869997785d" |
6267 | integrity sha1-ER+Xttpy53XICADWu29fhpmXeF0= | ||
4564 | dependencies: | 6268 | dependencies: |
4565 | autoprefixer "^6.0.0" | 6269 | autoprefixer "^6.0.0" |
4566 | balanced-match "^0.4.0" | 6270 | balanced-match "^0.4.0" |
4567 | chalk "^1.1.1" | 6271 | chalk "^2.0.1" |
4568 | colorguard "^1.2.0" | 6272 | colorguard "^1.2.0" |
4569 | cosmiconfig "^2.1.1" | 6273 | cosmiconfig "^2.1.1" |
4570 | debug "^2.6.0" | 6274 | debug "^2.6.0" |
@@ -4574,7 +6278,7 @@ stylelint@^7.7.0, stylelint@^7.9.0: | |||
4574 | get-stdin "^5.0.0" | 6278 | get-stdin "^5.0.0" |
4575 | globby "^6.0.0" | 6279 | globby "^6.0.0" |
4576 | globjoin "^0.1.4" | 6280 | globjoin "^0.1.4" |
4577 | html-tags "^1.1.1" | 6281 | html-tags "^2.0.0" |
4578 | ignore "^3.2.0" | 6282 | ignore "^3.2.0" |
4579 | imurmurhash "^0.1.4" | 6283 | imurmurhash "^0.1.4" |
4580 | known-css-properties "^0.2.0" | 6284 | known-css-properties "^0.2.0" |
@@ -4605,26 +6309,38 @@ stylelint@^7.7.0, stylelint@^7.9.0: | |||
4605 | sugarss@^0.2.0: | 6309 | sugarss@^0.2.0: |
4606 | version "0.2.0" | 6310 | version "0.2.0" |
4607 | resolved "https://registry.yarnpkg.com/sugarss/-/sugarss-0.2.0.tgz#ac34237563327c6ff897b64742bf6aec190ad39e" | 6311 | resolved "https://registry.yarnpkg.com/sugarss/-/sugarss-0.2.0.tgz#ac34237563327c6ff897b64742bf6aec190ad39e" |
6312 | integrity sha1-rDQjdWMyfG/4l7ZHQr9q7BkK054= | ||
4608 | dependencies: | 6313 | dependencies: |
4609 | postcss "^5.2.4" | 6314 | postcss "^5.2.4" |
4610 | 6315 | ||
4611 | supports-color@^2.0.0: | 6316 | supports-color@^2.0.0: |
4612 | version "2.0.0" | 6317 | version "2.0.0" |
4613 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" | 6318 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" |
6319 | integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= | ||
4614 | 6320 | ||
4615 | supports-color@^3.1.0, supports-color@^3.1.1, supports-color@^3.2.3: | 6321 | supports-color@^3.1.0, supports-color@^3.2.3: |
4616 | version "3.2.3" | 6322 | version "3.2.3" |
4617 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" | 6323 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" |
6324 | integrity sha1-ZawFBLOVQXHYpklGsq48u4pfVPY= | ||
4618 | dependencies: | 6325 | dependencies: |
4619 | has-flag "^1.0.0" | 6326 | has-flag "^1.0.0" |
4620 | 6327 | ||
6328 | supports-color@^5.1.0, supports-color@^5.3.0, supports-color@^5.4.0: | ||
6329 | version "5.5.0" | ||
6330 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" | ||
6331 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== | ||
6332 | dependencies: | ||
6333 | has-flag "^3.0.0" | ||
6334 | |||
4621 | svg-tags@^1.0.0: | 6335 | svg-tags@^1.0.0: |
4622 | version "1.0.0" | 6336 | version "1.0.0" |
4623 | resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764" | 6337 | resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764" |
6338 | integrity sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q= | ||
4624 | 6339 | ||
4625 | svgo@^0.7.0: | 6340 | svgo@^0.7.0: |
4626 | version "0.7.2" | 6341 | version "0.7.2" |
4627 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" | 6342 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" |
6343 | integrity sha1-n1dyQTlSE1xv779Ar+ak+qiLS7U= | ||
4628 | dependencies: | 6344 | dependencies: |
4629 | coa "~1.0.1" | 6345 | coa "~1.0.1" |
4630 | colors "~1.1.2" | 6346 | colors "~1.1.2" |
@@ -4637,52 +6353,70 @@ svgo@^0.7.0: | |||
4637 | synesthesia@^1.0.1: | 6353 | synesthesia@^1.0.1: |
4638 | version "1.0.1" | 6354 | version "1.0.1" |
4639 | resolved "https://registry.yarnpkg.com/synesthesia/-/synesthesia-1.0.1.tgz#5ef95ea548c0d5c6e6f9bb4b0d0731dff864a777" | 6355 | resolved "https://registry.yarnpkg.com/synesthesia/-/synesthesia-1.0.1.tgz#5ef95ea548c0d5c6e6f9bb4b0d0731dff864a777" |
6356 | integrity sha1-XvlepUjA1cbm+btLDQcx3/hkp3c= | ||
4640 | dependencies: | 6357 | dependencies: |
4641 | css-color-names "0.0.3" | 6358 | css-color-names "0.0.3" |
4642 | 6359 | ||
4643 | table@^4.0.1: | 6360 | table@4.0.2: |
4644 | version "4.0.1" | 6361 | version "4.0.2" |
4645 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435" | 6362 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" |
6363 | integrity sha512-UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA== | ||
4646 | dependencies: | 6364 | dependencies: |
4647 | ajv "^4.7.0" | 6365 | ajv "^5.2.3" |
4648 | ajv-keywords "^1.0.0" | 6366 | ajv-keywords "^2.1.0" |
4649 | chalk "^1.1.1" | 6367 | chalk "^2.1.0" |
4650 | lodash "^4.0.0" | 6368 | lodash "^4.17.4" |
4651 | slice-ansi "0.0.4" | 6369 | slice-ansi "1.0.0" |
4652 | string-width "^2.0.0" | 6370 | string-width "^2.1.1" |
4653 | |||
4654 | tapable@^0.2.5, tapable@~0.2.5: | ||
4655 | version "0.2.6" | ||
4656 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.6.tgz#206be8e188860b514425375e6f1ae89bfb01fd8d" | ||
4657 | 6371 | ||
4658 | tar-pack@^3.4.0: | 6372 | table@^4.0.1: |
4659 | version "3.4.0" | 6373 | version "4.0.3" |
4660 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" | 6374 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.3.tgz#00b5e2b602f1794b9acaf9ca908a76386a7813bc" |
6375 | integrity sha512-S7rnFITmBH1EnyKcvxBh1LjYeQMmnZtCXSEbHcH6S0NoKit24ZuFO/T1vDcLdYsLQkM188PVVhQmzKIuThNkKg== | ||
4661 | dependencies: | 6376 | dependencies: |
4662 | debug "^2.2.0" | 6377 | ajv "^6.0.1" |
4663 | fstream "^1.0.10" | 6378 | ajv-keywords "^3.0.0" |
4664 | fstream-ignore "^1.0.5" | 6379 | chalk "^2.1.0" |
4665 | once "^1.3.3" | 6380 | lodash "^4.17.4" |
4666 | readable-stream "^2.1.4" | 6381 | slice-ansi "1.0.0" |
4667 | rimraf "^2.5.1" | 6382 | string-width "^2.1.1" |
4668 | tar "^2.2.1" | 6383 | |
4669 | uid-number "^0.0.6" | 6384 | tapable@^0.2.7, tapable@~0.2.5: |
6385 | version "0.2.8" | ||
6386 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" | ||
6387 | integrity sha1-mTcqXJmb8t8WCvwNdL7U9HlIzSI= | ||
4670 | 6388 | ||
4671 | tar@^2.0.0, tar@^2.2.1: | 6389 | tar@^2.0.0, tar@^2.2.1: |
4672 | version "2.2.1" | 6390 | version "2.2.1" |
4673 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" | 6391 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" |
6392 | integrity sha1-jk0qJWwOIYXGsYrWlK7JaLg8sdE= | ||
4674 | dependencies: | 6393 | dependencies: |
4675 | block-stream "*" | 6394 | block-stream "*" |
4676 | fstream "^1.0.2" | 6395 | fstream "^1.0.2" |
4677 | inherits "2" | 6396 | inherits "2" |
4678 | 6397 | ||
6398 | tar@^4: | ||
6399 | version "4.4.8" | ||
6400 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d" | ||
6401 | integrity sha512-LzHF64s5chPQQS0IYBn9IN5h3i98c12bo4NCO7e0sGM2llXQ3p2FGC5sdENN4cTW48O915Sh+x+EXx7XW96xYQ== | ||
6402 | dependencies: | ||
6403 | chownr "^1.1.1" | ||
6404 | fs-minipass "^1.2.5" | ||
6405 | minipass "^2.3.4" | ||
6406 | minizlib "^1.1.1" | ||
6407 | mkdirp "^0.5.0" | ||
6408 | safe-buffer "^5.1.2" | ||
6409 | yallist "^3.0.2" | ||
6410 | |||
4679 | text-table@^0.2.0, text-table@~0.2.0: | 6411 | text-table@^0.2.0, text-table@~0.2.0: |
4680 | version "0.2.0" | 6412 | version "0.2.0" |
4681 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" | 6413 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" |
6414 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= | ||
4682 | 6415 | ||
4683 | through2@^0.6.1, through2@^0.6.3, through2@~0.6.1: | 6416 | through2@^0.6.1, through2@^0.6.3, through2@~0.6.1: |
4684 | version "0.6.5" | 6417 | version "0.6.5" |
4685 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" | 6418 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" |
6419 | integrity sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg= | ||
4686 | dependencies: | 6420 | dependencies: |
4687 | readable-stream ">=1.0.33-1 <1.1.0-0" | 6421 | readable-stream ">=1.0.33-1 <1.1.0-0" |
4688 | xtend ">=4.0.0 <4.1.0-0" | 6422 | xtend ">=4.0.0 <4.1.0-0" |
@@ -4690,79 +6424,133 @@ through2@^0.6.1, through2@^0.6.3, through2@~0.6.1: | |||
4690 | "through@>=2.2.7 <3", through@^2.3.6, through@~2.3.4: | 6424 | "through@>=2.2.7 <3", through@^2.3.6, through@~2.3.4: |
4691 | version "2.3.8" | 6425 | version "2.3.8" |
4692 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" | 6426 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" |
6427 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= | ||
4693 | 6428 | ||
4694 | timers-browserify@^2.0.2: | 6429 | thunky@^1.0.2: |
4695 | version "2.0.2" | 6430 | version "1.0.3" |
4696 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86" | 6431 | resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.0.3.tgz#f5df732453407b09191dae73e2a8cc73f381a826" |
6432 | integrity sha512-YwT8pjmNcAXBZqrubu22P4FYsh2D4dxRmnWBOL8Jk8bUcRUtc5326kx32tuTmFDAZtLOGEVNl8POAR8j896Iow== | ||
6433 | |||
6434 | time-stamp@^2.0.0: | ||
6435 | version "2.2.0" | ||
6436 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-2.2.0.tgz#917e0a66905688790ec7bbbde04046259af83f57" | ||
6437 | integrity sha512-zxke8goJQpBeEgD82CXABeMh0LSJcj7CXEd0OHOg45HgcofF7pxNwZm9+RknpxpDhwN4gFpySkApKfFYfRQnUA== | ||
6438 | |||
6439 | timers-browserify@^2.0.4: | ||
6440 | version "2.0.10" | ||
6441 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae" | ||
6442 | integrity sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg== | ||
4697 | dependencies: | 6443 | dependencies: |
4698 | setimmediate "^1.0.4" | 6444 | setimmediate "^1.0.4" |
4699 | 6445 | ||
4700 | tmp@^0.0.31: | 6446 | tmp@^0.0.33: |
4701 | version "0.0.31" | 6447 | version "0.0.33" |
4702 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" | 6448 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" |
6449 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== | ||
4703 | dependencies: | 6450 | dependencies: |
4704 | os-tmpdir "~1.0.1" | 6451 | os-tmpdir "~1.0.2" |
4705 | 6452 | ||
4706 | to-arraybuffer@^1.0.0: | 6453 | to-arraybuffer@^1.0.0: |
4707 | version "1.0.1" | 6454 | version "1.0.1" |
4708 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" | 6455 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" |
6456 | integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= | ||
4709 | 6457 | ||
4710 | to-fast-properties@^1.0.1: | 6458 | to-fast-properties@^1.0.3: |
4711 | version "1.0.3" | 6459 | version "1.0.3" |
4712 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" | 6460 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" |
6461 | integrity sha1-uDVx+k2MJbguIxsG46MFXeTKGkc= | ||
4713 | 6462 | ||
4714 | tough-cookie@~2.3.0: | 6463 | to-object-path@^0.3.0: |
4715 | version "2.3.2" | 6464 | version "0.3.0" |
4716 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" | 6465 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" |
6466 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= | ||
6467 | dependencies: | ||
6468 | kind-of "^3.0.2" | ||
6469 | |||
6470 | to-regex-range@^2.1.0: | ||
6471 | version "2.1.1" | ||
6472 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" | ||
6473 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= | ||
6474 | dependencies: | ||
6475 | is-number "^3.0.0" | ||
6476 | repeat-string "^1.6.1" | ||
6477 | |||
6478 | to-regex@^3.0.1, to-regex@^3.0.2: | ||
6479 | version "3.0.2" | ||
6480 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" | ||
6481 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== | ||
4717 | dependencies: | 6482 | dependencies: |
6483 | define-property "^2.0.2" | ||
6484 | extend-shallow "^3.0.2" | ||
6485 | regex-not "^1.0.2" | ||
6486 | safe-regex "^1.1.0" | ||
6487 | |||
6488 | tough-cookie@~2.4.3: | ||
6489 | version "2.4.3" | ||
6490 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" | ||
6491 | integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== | ||
6492 | dependencies: | ||
6493 | psl "^1.1.24" | ||
4718 | punycode "^1.4.1" | 6494 | punycode "^1.4.1" |
4719 | 6495 | ||
4720 | trim-newlines@^1.0.0: | 6496 | trim-newlines@^1.0.0: |
4721 | version "1.0.0" | 6497 | version "1.0.0" |
4722 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" | 6498 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" |
6499 | integrity sha1-WIeWa7WCpFA6QetST301ARgVphM= | ||
4723 | 6500 | ||
4724 | trim-right@^1.0.1: | 6501 | trim-right@^1.0.1: |
4725 | version "1.0.1" | 6502 | version "1.0.1" |
4726 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" | 6503 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" |
6504 | integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= | ||
4727 | 6505 | ||
4728 | tryit@^1.0.1: | 6506 | "true-case-path@^1.0.2": |
4729 | version "1.0.3" | 6507 | version "1.0.3" |
4730 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" | 6508 | resolved "https://registry.yarnpkg.com/true-case-path/-/true-case-path-1.0.3.tgz#f813b5a8c86b40da59606722b144e3225799f47d" |
6509 | integrity sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew== | ||
6510 | dependencies: | ||
6511 | glob "^7.1.2" | ||
4731 | 6512 | ||
4732 | tty-browserify@0.0.0: | 6513 | tty-browserify@0.0.0: |
4733 | version "0.0.0" | 6514 | version "0.0.0" |
4734 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" | 6515 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" |
6516 | integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= | ||
4735 | 6517 | ||
4736 | tunnel-agent@^0.6.0: | 6518 | tunnel-agent@^0.6.0: |
4737 | version "0.6.0" | 6519 | version "0.6.0" |
4738 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" | 6520 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" |
6521 | integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= | ||
4739 | dependencies: | 6522 | dependencies: |
4740 | safe-buffer "^5.0.1" | 6523 | safe-buffer "^5.0.1" |
4741 | 6524 | ||
4742 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: | 6525 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: |
4743 | version "0.14.5" | 6526 | version "0.14.5" |
4744 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" | 6527 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" |
6528 | integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= | ||
4745 | 6529 | ||
4746 | type-check@~0.3.2: | 6530 | type-check@~0.3.2: |
4747 | version "0.3.2" | 6531 | version "0.3.2" |
4748 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" | 6532 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" |
6533 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= | ||
4749 | dependencies: | 6534 | dependencies: |
4750 | prelude-ls "~1.1.2" | 6535 | prelude-ls "~1.1.2" |
4751 | 6536 | ||
4752 | type-is@~1.6.15: | 6537 | type-is@~1.6.16: |
4753 | version "1.6.15" | 6538 | version "1.6.16" |
4754 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" | 6539 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.16.tgz#f89ce341541c672b25ee7ae3c73dee3b2be50194" |
6540 | integrity sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q== | ||
4755 | dependencies: | 6541 | dependencies: |
4756 | media-typer "0.3.0" | 6542 | media-typer "0.3.0" |
4757 | mime-types "~2.1.15" | 6543 | mime-types "~2.1.18" |
4758 | 6544 | ||
4759 | typedarray@^0.0.6: | 6545 | typedarray@^0.0.6: |
4760 | version "0.0.6" | 6546 | version "0.0.6" |
4761 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" | 6547 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" |
6548 | integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= | ||
4762 | 6549 | ||
4763 | uglify-js@^2.8.27: | 6550 | uglify-js@^2.8.27: |
4764 | version "2.8.29" | 6551 | version "2.8.29" |
4765 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" | 6552 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" |
6553 | integrity sha1-KcVzMUgFe7Th913zW3qcty5qWd0= | ||
4766 | dependencies: | 6554 | dependencies: |
4767 | source-map "~0.5.1" | 6555 | source-map "~0.5.1" |
4768 | yargs "~3.10.0" | 6556 | yargs "~3.10.0" |
@@ -4772,192 +6560,249 @@ uglify-js@^2.8.27: | |||
4772 | uglify-to-browserify@~1.0.0: | 6560 | uglify-to-browserify@~1.0.0: |
4773 | version "1.0.2" | 6561 | version "1.0.2" |
4774 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" | 6562 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" |
6563 | integrity sha1-bgkk1r2mta/jSeOabWMoUKD4grc= | ||
4775 | 6564 | ||
4776 | uid-number@^0.0.6: | 6565 | union-value@^1.0.0: |
4777 | version "0.0.6" | 6566 | version "1.0.0" |
4778 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" | 6567 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" |
6568 | integrity sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ= | ||
6569 | dependencies: | ||
6570 | arr-union "^3.1.0" | ||
6571 | get-value "^2.0.6" | ||
6572 | is-extendable "^0.1.1" | ||
6573 | set-value "^0.4.3" | ||
4779 | 6574 | ||
4780 | uniq@^1.0.1: | 6575 | uniq@^1.0.1: |
4781 | version "1.0.1" | 6576 | version "1.0.1" |
4782 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" | 6577 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" |
4783 | 6578 | integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= | |
4784 | uniqid@^4.0.0: | ||
4785 | version "4.1.1" | ||
4786 | resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1" | ||
4787 | dependencies: | ||
4788 | macaddress "^0.2.8" | ||
4789 | 6579 | ||
4790 | uniqs@^2.0.0: | 6580 | uniqs@^2.0.0: |
4791 | version "2.0.0" | 6581 | version "2.0.0" |
4792 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" | 6582 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" |
6583 | integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI= | ||
4793 | 6584 | ||
4794 | unpipe@~1.0.0: | 6585 | unpipe@1.0.0, unpipe@~1.0.0: |
4795 | version "1.0.0" | 6586 | version "1.0.0" |
4796 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" | 6587 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" |
6588 | integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= | ||
6589 | |||
6590 | unset-value@^1.0.0: | ||
6591 | version "1.0.0" | ||
6592 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" | ||
6593 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= | ||
6594 | dependencies: | ||
6595 | has-value "^0.3.1" | ||
6596 | isobject "^3.0.0" | ||
6597 | |||
6598 | upath@^1.0.5: | ||
6599 | version "1.1.0" | ||
6600 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.0.tgz#35256597e46a581db4793d0ce47fa9aebfc9fabd" | ||
6601 | integrity sha512-bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw== | ||
6602 | |||
6603 | uri-js@^4.2.2: | ||
6604 | version "4.2.2" | ||
6605 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" | ||
6606 | integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== | ||
6607 | dependencies: | ||
6608 | punycode "^2.1.0" | ||
6609 | |||
6610 | urix@^0.1.0: | ||
6611 | version "0.1.0" | ||
6612 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" | ||
6613 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= | ||
4797 | 6614 | ||
4798 | url-loader@^0.5.8: | 6615 | url-loader@^0.5.8: |
4799 | version "0.5.9" | 6616 | version "0.5.9" |
4800 | resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-0.5.9.tgz#cc8fea82c7b906e7777019250869e569e995c295" | 6617 | resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-0.5.9.tgz#cc8fea82c7b906e7777019250869e569e995c295" |
6618 | integrity sha512-B7QYFyvv+fOBqBVeefsxv6koWWtjmHaMFT6KZWti4KRw8YUD/hOU+3AECvXuzyVawIBx3z7zQRejXCDSO5kk1Q== | ||
4801 | dependencies: | 6619 | dependencies: |
4802 | loader-utils "^1.0.2" | 6620 | loader-utils "^1.0.2" |
4803 | mime "1.3.x" | 6621 | mime "1.3.x" |
4804 | 6622 | ||
4805 | url-parse@1.0.x: | 6623 | url-parse@^1.1.8, url-parse@^1.4.3: |
4806 | version "1.0.5" | 6624 | version "1.4.4" |
4807 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.0.5.tgz#0854860422afdcfefeb6c965c662d4800169927b" | 6625 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.4.tgz#cac1556e95faa0303691fec5cf9d5a1bc34648f8" |
4808 | dependencies: | 6626 | integrity sha512-/92DTTorg4JjktLNLe6GPS2/RvAd/RGr6LuktmWSMLEOa6rjnlrFXNgSbSmkNvCoL2T028A0a1JaJLzRMlFoHg== |
4809 | querystringify "0.0.x" | ||
4810 | requires-port "1.0.x" | ||
4811 | |||
4812 | url-parse@^1.1.1: | ||
4813 | version "1.1.9" | ||
4814 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.1.9.tgz#c67f1d775d51f0a18911dd7b3ffad27bb9e5bd19" | ||
4815 | dependencies: | 6627 | dependencies: |
4816 | querystringify "~1.0.0" | 6628 | querystringify "^2.0.0" |
4817 | requires-port "1.0.x" | 6629 | requires-port "^1.0.0" |
4818 | 6630 | ||
4819 | url@^0.11.0: | 6631 | url@^0.11.0: |
4820 | version "0.11.0" | 6632 | version "0.11.0" |
4821 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" | 6633 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" |
6634 | integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= | ||
4822 | dependencies: | 6635 | dependencies: |
4823 | punycode "1.3.2" | 6636 | punycode "1.3.2" |
4824 | querystring "0.2.0" | 6637 | querystring "0.2.0" |
4825 | 6638 | ||
6639 | use@^3.1.0: | ||
6640 | version "3.1.1" | ||
6641 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" | ||
6642 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== | ||
6643 | |||
4826 | util-deprecate@~1.0.1: | 6644 | util-deprecate@~1.0.1: |
4827 | version "1.0.2" | 6645 | version "1.0.2" |
4828 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" | 6646 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" |
6647 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= | ||
4829 | 6648 | ||
4830 | util@0.10.3, util@^0.10.3: | 6649 | util@0.10.3: |
4831 | version "0.10.3" | 6650 | version "0.10.3" |
4832 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" | 6651 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" |
6652 | integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= | ||
4833 | dependencies: | 6653 | dependencies: |
4834 | inherits "2.0.1" | 6654 | inherits "2.0.1" |
4835 | 6655 | ||
4836 | utils-merge@1.0.0: | 6656 | util@^0.10.3: |
4837 | version "1.0.0" | 6657 | version "0.10.4" |
4838 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" | 6658 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" |
6659 | integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A== | ||
6660 | dependencies: | ||
6661 | inherits "2.0.3" | ||
4839 | 6662 | ||
4840 | uuid@^2.0.2: | 6663 | utils-merge@1.0.1: |
4841 | version "2.0.3" | 6664 | version "1.0.1" |
4842 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" | 6665 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" |
6666 | integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= | ||
4843 | 6667 | ||
4844 | uuid@^3.0.0: | 6668 | uuid@^3.0.1, uuid@^3.3.2: |
4845 | version "3.0.1" | 6669 | version "3.3.2" |
4846 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" | 6670 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" |
6671 | integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== | ||
4847 | 6672 | ||
4848 | validate-npm-package-license@^3.0.1: | 6673 | validate-npm-package-license@^3.0.1: |
4849 | version "3.0.1" | 6674 | version "3.0.4" |
4850 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" | 6675 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" |
6676 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== | ||
4851 | dependencies: | 6677 | dependencies: |
4852 | spdx-correct "~1.0.0" | 6678 | spdx-correct "^3.0.0" |
4853 | spdx-expression-parse "~1.0.0" | 6679 | spdx-expression-parse "^3.0.0" |
4854 | 6680 | ||
4855 | vary@~1.1.0, vary@~1.1.1: | 6681 | vary@~1.1.2: |
4856 | version "1.1.1" | 6682 | version "1.1.2" |
4857 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.1.tgz#67535ebb694c1d52257457984665323f587e8d37" | 6683 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" |
6684 | integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= | ||
4858 | 6685 | ||
4859 | vendors@^1.0.0: | 6686 | vendors@^1.0.0: |
4860 | version "1.0.1" | 6687 | version "1.0.2" |
4861 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" | 6688 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.2.tgz#7fcb5eef9f5623b156bcea89ec37d63676f21801" |
6689 | integrity sha512-w/hry/368nO21AN9QljsaIhb9ZiZtZARoVH5f3CsFbawdLdayCgKRPup7CggujvySMxx0I91NOyxdVENohprLQ== | ||
4862 | 6690 | ||
4863 | verror@1.3.6: | 6691 | verror@1.10.0: |
4864 | version "1.3.6" | 6692 | version "1.10.0" |
4865 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" | 6693 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" |
6694 | integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= | ||
4866 | dependencies: | 6695 | dependencies: |
4867 | extsprintf "1.0.2" | 6696 | assert-plus "^1.0.0" |
6697 | core-util-is "1.0.2" | ||
6698 | extsprintf "^1.2.0" | ||
4868 | 6699 | ||
4869 | vm-browserify@0.0.4: | 6700 | vm-browserify@0.0.4: |
4870 | version "0.0.4" | 6701 | version "0.0.4" |
4871 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" | 6702 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" |
6703 | integrity sha1-XX6kW7755Kb/ZflUOOCofDV9WnM= | ||
4872 | dependencies: | 6704 | dependencies: |
4873 | indexof "0.0.1" | 6705 | indexof "0.0.1" |
4874 | 6706 | ||
4875 | watchpack@^1.3.1: | 6707 | watchpack@^1.3.1: |
4876 | version "1.3.1" | 6708 | version "1.6.0" |
4877 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.3.1.tgz#7d8693907b28ce6013e7f3610aa2a1acf07dad87" | 6709 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" |
6710 | integrity sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA== | ||
4878 | dependencies: | 6711 | dependencies: |
4879 | async "^2.1.2" | 6712 | chokidar "^2.0.2" |
4880 | chokidar "^1.4.3" | ||
4881 | graceful-fs "^4.1.2" | 6713 | graceful-fs "^4.1.2" |
6714 | neo-async "^2.5.0" | ||
4882 | 6715 | ||
4883 | waypoints@^4.0.1: | 6716 | waypoints@^4.0.1: |
4884 | version "4.0.1" | 6717 | version "4.0.1" |
4885 | resolved "https://registry.yarnpkg.com/waypoints/-/waypoints-4.0.1.tgz#09979a0573810b29627cba4366a284a062ec69c8" | 6718 | resolved "https://registry.yarnpkg.com/waypoints/-/waypoints-4.0.1.tgz#09979a0573810b29627cba4366a284a062ec69c8" |
6719 | integrity sha1-CZeaBXOBCylifLpDZqKEoGLsacg= | ||
4886 | 6720 | ||
4887 | wbuf@^1.1.0, wbuf@^1.7.2: | 6721 | wbuf@^1.1.0, wbuf@^1.7.2: |
4888 | version "1.7.2" | 6722 | version "1.7.3" |
4889 | resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.2.tgz#d697b99f1f59512df2751be42769c1580b5801fe" | 6723 | resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" |
6724 | integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== | ||
4890 | dependencies: | 6725 | dependencies: |
4891 | minimalistic-assert "^1.0.0" | 6726 | minimalistic-assert "^1.0.0" |
4892 | 6727 | ||
4893 | webpack-dev-middleware@^1.10.2: | 6728 | webpack-dev-middleware@1.12.2: |
4894 | version "1.10.2" | 6729 | version "1.12.2" |
4895 | resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.10.2.tgz#2e252ce1dfb020dbda1ccb37df26f30ab014dbd1" | 6730 | resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.12.2.tgz#f8fc1120ce3b4fc5680ceecb43d777966b21105e" |
6731 | integrity sha512-FCrqPy1yy/sN6U/SaEZcHKRXGlqU0DUaEBL45jkUYoB8foVb6wCnbIJ1HKIx+qUFTW+3JpVcCJCxZ8VATL4e+A== | ||
4896 | dependencies: | 6732 | dependencies: |
4897 | memory-fs "~0.4.1" | 6733 | memory-fs "~0.4.1" |
4898 | mime "^1.3.4" | 6734 | mime "^1.5.0" |
4899 | path-is-absolute "^1.0.0" | 6735 | path-is-absolute "^1.0.0" |
4900 | range-parser "^1.0.3" | 6736 | range-parser "^1.0.3" |
6737 | time-stamp "^2.0.0" | ||
4901 | 6738 | ||
4902 | webpack-dev-server@^2.4.4: | 6739 | webpack-dev-server@^2.4.4: |
4903 | version "2.4.5" | 6740 | version "2.11.3" |
4904 | resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-2.4.5.tgz#31384ce81136be1080b4b4cde0eb9b90e54ee6cf" | 6741 | resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-2.11.3.tgz#3fd48a402164a6569d94d3d17f131432631b4873" |
6742 | integrity sha512-Qz22YEFhWx+M2vvJ+rQppRv39JA0h5NNbOOdODApdX6iZ52Diz7vTPXjF7kJlfn+Uc24Qr48I3SZ9yncQwRycg== | ||
4905 | dependencies: | 6743 | dependencies: |
4906 | ansi-html "0.0.7" | 6744 | ansi-html "0.0.7" |
4907 | chokidar "^1.6.0" | 6745 | array-includes "^3.0.3" |
6746 | bonjour "^3.5.0" | ||
6747 | chokidar "^2.0.0" | ||
4908 | compression "^1.5.2" | 6748 | compression "^1.5.2" |
4909 | connect-history-api-fallback "^1.3.0" | 6749 | connect-history-api-fallback "^1.3.0" |
4910 | express "^4.13.3" | 6750 | debug "^3.1.0" |
6751 | del "^3.0.0" | ||
6752 | express "^4.16.2" | ||
4911 | html-entities "^1.2.0" | 6753 | html-entities "^1.2.0" |
4912 | http-proxy-middleware "~0.17.4" | 6754 | http-proxy-middleware "~0.17.4" |
4913 | opn "4.0.2" | 6755 | import-local "^1.0.0" |
6756 | internal-ip "1.2.0" | ||
6757 | ip "^1.1.5" | ||
6758 | killable "^1.0.0" | ||
6759 | loglevel "^1.4.1" | ||
6760 | opn "^5.1.0" | ||
4914 | portfinder "^1.0.9" | 6761 | portfinder "^1.0.9" |
6762 | selfsigned "^1.9.1" | ||
4915 | serve-index "^1.7.2" | 6763 | serve-index "^1.7.2" |
4916 | sockjs "0.3.18" | 6764 | sockjs "0.3.19" |
4917 | sockjs-client "1.1.2" | 6765 | sockjs-client "1.1.5" |
4918 | spdy "^3.4.1" | 6766 | spdy "^3.4.1" |
4919 | strip-ansi "^3.0.0" | 6767 | strip-ansi "^3.0.0" |
4920 | supports-color "^3.1.1" | 6768 | supports-color "^5.1.0" |
4921 | webpack-dev-middleware "^1.10.2" | 6769 | webpack-dev-middleware "1.12.2" |
4922 | yargs "^6.0.0" | 6770 | yargs "6.6.0" |
4923 | 6771 | ||
4924 | webpack-manifest-plugin@^1.1.0: | 6772 | webpack-manifest-plugin@^1.1.0: |
4925 | version "1.1.0" | 6773 | version "1.3.2" |
4926 | resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.1.0.tgz#6b6c718aade8a2537995784b46bd2e9836057caa" | 6774 | resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.3.2.tgz#5ea8ee5756359ddc1d98814324fe43496349a7d4" |
6775 | integrity sha512-MX60Bv2G83Zks9pi3oLOmRgnPAnwrlMn+lftMrWBm199VQjk46/xgzBi9lPfpZldw2+EI2S+OevuLIaDuxCWRw== | ||
4927 | dependencies: | 6776 | dependencies: |
4928 | fs-extra "^0.30.0" | 6777 | fs-extra "^0.30.0" |
4929 | lodash ">=3.5 <5" | 6778 | lodash ">=3.5 <5" |
4930 | 6779 | ||
4931 | webpack-merge@^4.1.0: | 6780 | webpack-merge@^4.1.0: |
4932 | version "4.1.0" | 6781 | version "4.1.4" |
4933 | resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.1.0.tgz#6ad72223b3e0b837e531e4597c199f909361511e" | 6782 | resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.1.4.tgz#0fde38eabf2d5fd85251c24a5a8c48f8a3f4eb7b" |
6783 | integrity sha512-TmSe1HZKeOPey3oy1Ov2iS3guIZjWvMT2BBJDzzT5jScHTjVC3mpjJofgueEzaEd6ibhxRDD6MIblDr8tzh8iQ== | ||
4934 | dependencies: | 6784 | dependencies: |
4935 | lodash "^4.17.4" | 6785 | lodash "^4.17.5" |
4936 | |||
4937 | webpack-sources@^0.2.3: | ||
4938 | version "0.2.3" | ||
4939 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.2.3.tgz#17c62bfaf13c707f9d02c479e0dcdde8380697fb" | ||
4940 | dependencies: | ||
4941 | source-list-map "^1.1.1" | ||
4942 | source-map "~0.5.3" | ||
4943 | 6786 | ||
4944 | webpack-sources@^1.0.1: | 6787 | webpack-sources@^1.0.1: |
4945 | version "1.0.1" | 6788 | version "1.3.0" |
4946 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.0.1.tgz#c7356436a4d13123be2e2426a05d1dad9cbe65cf" | 6789 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.3.0.tgz#2a28dcb9f1f45fe960d8f1493252b5ee6530fa85" |
6790 | integrity sha512-OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA== | ||
4947 | dependencies: | 6791 | dependencies: |
4948 | source-list-map "^2.0.0" | 6792 | source-list-map "^2.0.0" |
4949 | source-map "~0.5.3" | 6793 | source-map "~0.6.1" |
4950 | 6794 | ||
4951 | webpack@^2.3.2: | 6795 | webpack@^2.3.2: |
4952 | version "2.6.1" | 6796 | version "2.7.0" |
4953 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.6.1.tgz#2e0457f0abb1ac5df3ab106c69c672f236785f07" | 6797 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.7.0.tgz#b2a1226804373ffd3d03ea9c6bd525067034f6b1" |
6798 | integrity sha512-MjAA0ZqO1ba7ZQJRnoCdbM56mmFpipOPUv/vQpwwfSI42p5PVDdoiuK2AL2FwFUVgT859Jr43bFZXRg/LNsqvg== | ||
4954 | dependencies: | 6799 | dependencies: |
4955 | acorn "^5.0.0" | 6800 | acorn "^5.0.0" |
4956 | acorn-dynamic-import "^2.0.0" | 6801 | acorn-dynamic-import "^2.0.0" |
4957 | ajv "^4.7.0" | 6802 | ajv "^4.7.0" |
4958 | ajv-keywords "^1.1.1" | 6803 | ajv-keywords "^1.1.1" |
4959 | async "^2.1.2" | 6804 | async "^2.1.2" |
4960 | enhanced-resolve "^3.0.0" | 6805 | enhanced-resolve "^3.3.0" |
4961 | interpret "^1.0.0" | 6806 | interpret "^1.0.0" |
4962 | json-loader "^0.5.4" | 6807 | json-loader "^0.5.4" |
4963 | json5 "^0.5.1" | 6808 | json5 "^0.5.1" |
@@ -4971,58 +6816,70 @@ webpack@^2.3.2: | |||
4971 | tapable "~0.2.5" | 6816 | tapable "~0.2.5" |
4972 | uglify-js "^2.8.27" | 6817 | uglify-js "^2.8.27" |
4973 | watchpack "^1.3.1" | 6818 | watchpack "^1.3.1" |
4974 | webpack-sources "^0.2.3" | 6819 | webpack-sources "^1.0.1" |
4975 | yargs "^6.0.0" | 6820 | yargs "^6.0.0" |
4976 | 6821 | ||
4977 | websocket-driver@>=0.5.1: | 6822 | websocket-driver@>=0.5.1: |
4978 | version "0.6.5" | 6823 | version "0.7.0" |
4979 | resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" | 6824 | resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb" |
6825 | integrity sha1-DK+dLXVdk67gSdS90NP+LMoqJOs= | ||
4980 | dependencies: | 6826 | dependencies: |
6827 | http-parser-js ">=0.4.0" | ||
4981 | websocket-extensions ">=0.1.1" | 6828 | websocket-extensions ">=0.1.1" |
4982 | 6829 | ||
4983 | websocket-extensions@>=0.1.1: | 6830 | websocket-extensions@>=0.1.1: |
4984 | version "0.1.1" | 6831 | version "0.1.3" |
4985 | resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.1.tgz#76899499c184b6ef754377c2dbb0cd6cb55d29e7" | 6832 | resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29" |
6833 | integrity sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg== | ||
4986 | 6834 | ||
4987 | whet.extend@~0.9.9: | 6835 | whet.extend@~0.9.9: |
4988 | version "0.9.9" | 6836 | version "0.9.9" |
4989 | resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" | 6837 | resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" |
6838 | integrity sha1-+HfVv2SMl+WqVC+twW1qJZucEaE= | ||
4990 | 6839 | ||
4991 | which-module@^1.0.0: | 6840 | which-module@^1.0.0: |
4992 | version "1.0.0" | 6841 | version "1.0.0" |
4993 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" | 6842 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" |
6843 | integrity sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8= | ||
4994 | 6844 | ||
4995 | which@1, which@^1.2.9: | 6845 | which@1, which@^1.2.9: |
4996 | version "1.2.14" | 6846 | version "1.3.1" |
4997 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" | 6847 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" |
6848 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== | ||
4998 | dependencies: | 6849 | dependencies: |
4999 | isexe "^2.0.0" | 6850 | isexe "^2.0.0" |
5000 | 6851 | ||
5001 | wide-align@^1.1.0: | 6852 | wide-align@^1.1.0: |
5002 | version "1.1.2" | 6853 | version "1.1.3" |
5003 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" | 6854 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" |
6855 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== | ||
5004 | dependencies: | 6856 | dependencies: |
5005 | string-width "^1.0.2" | 6857 | string-width "^1.0.2 || 2" |
5006 | 6858 | ||
5007 | window-size@0.1.0: | 6859 | window-size@0.1.0: |
5008 | version "0.1.0" | 6860 | version "0.1.0" |
5009 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" | 6861 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" |
6862 | integrity sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0= | ||
5010 | 6863 | ||
5011 | window-size@^0.1.4: | 6864 | window-size@^0.1.4: |
5012 | version "0.1.4" | 6865 | version "0.1.4" |
5013 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" | 6866 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" |
6867 | integrity sha1-+OGqHuWlPsW/FR/6CXQqatdpeHY= | ||
5014 | 6868 | ||
5015 | wordwrap@0.0.2: | 6869 | wordwrap@0.0.2: |
5016 | version "0.0.2" | 6870 | version "0.0.2" |
5017 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" | 6871 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" |
6872 | integrity sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8= | ||
5018 | 6873 | ||
5019 | wordwrap@~1.0.0: | 6874 | wordwrap@~1.0.0: |
5020 | version "1.0.0" | 6875 | version "1.0.0" |
5021 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" | 6876 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" |
6877 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= | ||
5022 | 6878 | ||
5023 | wrap-ansi@^2.0.0: | 6879 | wrap-ansi@^2.0.0: |
5024 | version "2.1.0" | 6880 | version "2.1.0" |
5025 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" | 6881 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" |
6882 | integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= | ||
5026 | dependencies: | 6883 | dependencies: |
5027 | string-width "^1.0.1" | 6884 | string-width "^1.0.1" |
5028 | strip-ansi "^3.0.1" | 6885 | strip-ansi "^3.0.1" |
@@ -5030,66 +6887,60 @@ wrap-ansi@^2.0.0: | |||
5030 | wrappy@1: | 6887 | wrappy@1: |
5031 | version "1.0.2" | 6888 | version "1.0.2" |
5032 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" | 6889 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" |
6890 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= | ||
5033 | 6891 | ||
5034 | write-file-stdout@0.0.2: | 6892 | write-file-stdout@0.0.2: |
5035 | version "0.0.2" | 6893 | version "0.0.2" |
5036 | resolved "https://registry.yarnpkg.com/write-file-stdout/-/write-file-stdout-0.0.2.tgz#c252d7c7c5b1b402897630e3453c7bfe690d9ca1" | 6894 | resolved "https://registry.yarnpkg.com/write-file-stdout/-/write-file-stdout-0.0.2.tgz#c252d7c7c5b1b402897630e3453c7bfe690d9ca1" |
6895 | integrity sha1-wlLXx8WxtAKJdjDjRTx7/mkNnKE= | ||
5037 | 6896 | ||
5038 | write@^0.2.1: | 6897 | write@^0.2.1: |
5039 | version "0.2.1" | 6898 | version "0.2.1" |
5040 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" | 6899 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" |
6900 | integrity sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c= | ||
5041 | dependencies: | 6901 | dependencies: |
5042 | mkdirp "^0.5.1" | 6902 | mkdirp "^0.5.1" |
5043 | 6903 | ||
5044 | xpath-range@0.0.5: | 6904 | xpath-range@0.0.5: |
5045 | version "0.0.5" | 6905 | version "0.0.5" |
5046 | resolved "https://registry.yarnpkg.com/xpath-range/-/xpath-range-0.0.5.tgz#45d3379555c72c2f218abb8ba424d42e0665d911" | 6906 | resolved "https://registry.yarnpkg.com/xpath-range/-/xpath-range-0.0.5.tgz#45d3379555c72c2f218abb8ba424d42e0665d911" |
6907 | integrity sha1-RdM3lVXHLC8hiruLpCTULgZl2RE= | ||
5047 | dependencies: | 6908 | dependencies: |
5048 | jquery "~1.11.0" | 6909 | jquery "~1.11.0" |
5049 | 6910 | ||
5050 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0: | 6911 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0: |
5051 | version "4.0.1" | 6912 | version "4.0.1" |
5052 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" | 6913 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" |
6914 | integrity sha1-pcbVMr5lbiPbgg77lDofBJmNY68= | ||
5053 | 6915 | ||
5054 | y18n@^3.2.0, y18n@^3.2.1: | 6916 | y18n@^3.2.0, y18n@^3.2.1: |
5055 | version "3.2.1" | 6917 | version "3.2.1" |
5056 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" | 6918 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" |
6919 | integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= | ||
5057 | 6920 | ||
5058 | yallist@^2.1.2: | 6921 | yallist@^3.0.0, yallist@^3.0.2: |
5059 | version "2.1.2" | 6922 | version "3.0.3" |
5060 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" | 6923 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" |
6924 | integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== | ||
5061 | 6925 | ||
5062 | yargs-parser@^4.2.0: | 6926 | yargs-parser@^4.2.0: |
5063 | version "4.2.1" | 6927 | version "4.2.1" |
5064 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" | 6928 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" |
6929 | integrity sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw= | ||
5065 | dependencies: | 6930 | dependencies: |
5066 | camelcase "^3.0.0" | 6931 | camelcase "^3.0.0" |
5067 | 6932 | ||
5068 | yargs-parser@^5.0.0: | 6933 | yargs-parser@^5.0.0: |
5069 | version "5.0.0" | 6934 | version "5.0.0" |
5070 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" | 6935 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" |
6936 | integrity sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo= | ||
5071 | dependencies: | 6937 | dependencies: |
5072 | camelcase "^3.0.0" | 6938 | camelcase "^3.0.0" |
5073 | 6939 | ||
5074 | yargs@^1.2.6: | 6940 | yargs@6.6.0, yargs@^6.0.0: |
5075 | version "1.3.3" | ||
5076 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-1.3.3.tgz#054de8b61f22eefdb7207059eaef9d6b83fb931a" | ||
5077 | |||
5078 | yargs@^3.5.4: | ||
5079 | version "3.32.0" | ||
5080 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995" | ||
5081 | dependencies: | ||
5082 | camelcase "^2.0.1" | ||
5083 | cliui "^3.0.3" | ||
5084 | decamelize "^1.1.1" | ||
5085 | os-locale "^1.4.0" | ||
5086 | string-width "^1.0.1" | ||
5087 | window-size "^0.1.4" | ||
5088 | y18n "^3.2.0" | ||
5089 | |||
5090 | yargs@^6.0.0: | ||
5091 | version "6.6.0" | 6941 | version "6.6.0" |
5092 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" | 6942 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" |
6943 | integrity sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg= | ||
5093 | dependencies: | 6944 | dependencies: |
5094 | camelcase "^3.0.0" | 6945 | camelcase "^3.0.0" |
5095 | cliui "^3.2.0" | 6946 | cliui "^3.2.0" |
@@ -5105,9 +6956,28 @@ yargs@^6.0.0: | |||
5105 | y18n "^3.2.1" | 6956 | y18n "^3.2.1" |
5106 | yargs-parser "^4.2.0" | 6957 | yargs-parser "^4.2.0" |
5107 | 6958 | ||
6959 | yargs@^1.2.6: | ||
6960 | version "1.3.3" | ||
6961 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-1.3.3.tgz#054de8b61f22eefdb7207059eaef9d6b83fb931a" | ||
6962 | integrity sha1-BU3oth8i7v23IHBZ6u+da4P7kxo= | ||
6963 | |||
6964 | yargs@^3.5.4: | ||
6965 | version "3.32.0" | ||
6966 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995" | ||
6967 | integrity sha1-AwiOnr+edWtpdRYR0qXvWRSCyZU= | ||
6968 | dependencies: | ||
6969 | camelcase "^2.0.1" | ||
6970 | cliui "^3.0.3" | ||
6971 | decamelize "^1.1.1" | ||
6972 | os-locale "^1.4.0" | ||
6973 | string-width "^1.0.1" | ||
6974 | window-size "^0.1.4" | ||
6975 | y18n "^3.2.0" | ||
6976 | |||
5108 | yargs@^7.0.0: | 6977 | yargs@^7.0.0: |
5109 | version "7.1.0" | 6978 | version "7.1.0" |
5110 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" | 6979 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" |
6980 | integrity sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg= | ||
5111 | dependencies: | 6981 | dependencies: |
5112 | camelcase "^3.0.0" | 6982 | camelcase "^3.0.0" |
5113 | cliui "^3.2.0" | 6983 | cliui "^3.2.0" |
@@ -5126,6 +6996,7 @@ yargs@^7.0.0: | |||
5126 | yargs@~3.10.0: | 6996 | yargs@~3.10.0: |
5127 | version "3.10.0" | 6997 | version "3.10.0" |
5128 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" | 6998 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" |
6999 | integrity sha1-9+572FfdfB0tOMDnTvvWgdFDH9E= | ||
5129 | dependencies: | 7000 | dependencies: |
5130 | camelcase "^1.0.2" | 7001 | camelcase "^1.0.2" |
5131 | cliui "^2.1.0" | 7002 | cliui "^2.1.0" |